From 7a352186543734863a7ca7c0f525ebe3028a9b81 Mon Sep 17 00:00:00 2001 From: Jasmine-404 Date: Thu, 19 Dec 2024 22:30:51 -0500 Subject: [PATCH 1/2] Jingmiao Fei_Koala Observation --- Jingmiao Fei_Koala observation/css/style.css | 247 + Jingmiao Fei_Koala observation/data/koala.png | Bin 0 -> 1124 bytes .../data/koalaRecords.cpg | 1 + .../data/koalaRecords.csv | 75467 +++++++++++++++ .../data/koalaRecords.dbf | Bin 0 -> 25143756 bytes .../data/koalaRecords.geojson | 75513 ++++++++++++++++ .../data/koalaRecords.prj | 1 + .../data/koalaRecords.qmd | 27 + .../data/koalaRecords.sbn | Bin 0 -> 746324 bytes .../data/koalaRecords.sbx | Bin 0 -> 12324 bytes .../data/koalaRecords.shp | Bin 0 -> 2114268 bytes .../data/koalaRecords.shp.xml | 1 + .../data/koalaRecords.shx | Bin 0 -> 604148 bytes .../data/locationMarker.png | Bin 0 -> 1887 bytes .../data/records-2024-11-27.csv | 75507 +++++++++++++++ Jingmiao Fei_Koala observation/index.html | 117 + Jingmiao Fei_Koala observation/js/chart.js | 47 + Jingmiao Fei_Koala observation/js/filter.js | 39 + .../js/firebase-config.js | 18 + Jingmiao Fei_Koala observation/js/main.js | 94 + Jingmiao Fei_Koala observation/js/map.js | 169 + Jingmiao Fei_Koala observation/js/report.js | 150 + .../js/ui-controller.js | 41 + 23 files changed, 227439 insertions(+) create mode 100644 Jingmiao Fei_Koala observation/css/style.css create mode 100644 Jingmiao Fei_Koala observation/data/koala.png create mode 100644 Jingmiao Fei_Koala observation/data/koalaRecords.cpg create mode 100644 Jingmiao Fei_Koala observation/data/koalaRecords.csv create mode 100644 Jingmiao Fei_Koala observation/data/koalaRecords.dbf create mode 100644 Jingmiao Fei_Koala observation/data/koalaRecords.geojson create mode 100644 Jingmiao Fei_Koala observation/data/koalaRecords.prj create mode 100644 Jingmiao Fei_Koala observation/data/koalaRecords.qmd create mode 100644 Jingmiao Fei_Koala observation/data/koalaRecords.sbn create mode 100644 Jingmiao Fei_Koala observation/data/koalaRecords.sbx create mode 100644 Jingmiao Fei_Koala observation/data/koalaRecords.shp create mode 100644 Jingmiao Fei_Koala observation/data/koalaRecords.shp.xml create mode 100644 Jingmiao Fei_Koala observation/data/koalaRecords.shx create mode 100644 Jingmiao Fei_Koala observation/data/locationMarker.png create mode 100644 Jingmiao Fei_Koala observation/data/records-2024-11-27.csv create mode 100644 Jingmiao Fei_Koala observation/index.html create mode 100644 Jingmiao Fei_Koala observation/js/chart.js create mode 100644 Jingmiao Fei_Koala observation/js/filter.js create mode 100644 Jingmiao Fei_Koala observation/js/firebase-config.js create mode 100644 Jingmiao Fei_Koala observation/js/main.js create mode 100644 Jingmiao Fei_Koala observation/js/map.js create mode 100644 Jingmiao Fei_Koala observation/js/report.js create mode 100644 Jingmiao Fei_Koala observation/js/ui-controller.js diff --git a/Jingmiao Fei_Koala observation/css/style.css b/Jingmiao Fei_Koala observation/css/style.css new file mode 100644 index 0000000..53054dc --- /dev/null +++ b/Jingmiao Fei_Koala observation/css/style.css @@ -0,0 +1,247 @@ +/* 设置页面整体样式 */ +body { + cursor: url('../data/koala.png') 16 16, auto; /* 'auto' is the fallback cursor */ + margin: 0; + padding: 0; + display: flex; + flex-direction: column; + height: 100vh; /* 必须保证页面高度占满视口 */ + font-family: Arial, sans-serif; +} + +/* 标题容器 */ +#title-container { + flex-shrink: 0; /* 确保标题容器高度固定 */ + background-color:#91A3B0; + padding: 10px 20px; + display: flex; + justify-content: space-between; + align-items: center; + color: white; + height: 50px; /* 固定标题高度 */ + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); +} + +/* 主内容容器 (info-panel 和 map 的父级) */ +#content { + flex: 1; /* 剩余空间用于内容区域 */ + display: flex; + height: calc(100vh - 50px); /* 剩余高度 */ +} + +/* 信息面板样式 */ +#info-panel { + flex: 2.5; /* 占 25% 宽度 */ + background-color: #f9f9f9; + padding: 20px; + box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); + overflow-y: auto; +} + +/* 地图容器样式 */ +#map { + flex: 7.5; /* 占 75% 宽度 */ + position: relative; + height: 100%; /* 必须确保地图高度占满父级 */ +} + +.mapboxgl-canvas { + cursor: url('../data/koala.png') 16 16, auto !important; + } + +#map-controls { + position: absolute; + top: 10px; + right: 50px; + z-index: 10; /* 确保按钮显示在地图之上 */ + } + +#layer-toggle-select { + background-color: white; + border: 1px solid #ccc; + padding: 5px 15px; + border-radius: 4px; + cursor: pointer; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); + } + +#layer-toggle-select:hover { + cursor: url('../data/koala.png') 16 16, pointer; + background-color: #f0f0f0; + } + + +#title-container h1 { + margin: 0; + font-size: 1.8rem; +} + +#button-container { + display: flex; + gap: 10px; +} + +#button-container button { + padding: 10px 20px; + background-color: #718D99; + color: white; + border: none; + border-radius: 5px; + cursor: pointer; +} + +#button-container button:hover { + cursor: url('../data/koala.png') 16 16 , pointer; + background-color: #a6bfd1; /* 悬停时颜色稍微变浅,呼应标题容器 */ + transform: scale(1.05); /* 鼠标悬停时略微放大,增加交互感 */} + +#button-container button:active { + background-color: #5D7580; /* 点击时颜色更深,增加按压效果 */ + transform: scale(0.95); /* 点击时稍微缩小,增强反馈 */ +} + +#info-panel h2 { + font-size: 1.5rem; + color: #333; +} + + +/* 滑动条样式 */ +#year-slider { + width: 100%; + margin: 10px 0; +} + +#year-label { + margin-top: 10px; + font-size: 16px; + color: #333; +} + +#chart-container { + height: 300px; /* 固定高度,确保不会无限延伸 */ + width: 100%; /* 宽度保持 100% */ + margin-top: 20px; + position: relative; /* 防止嵌套问题 */ + } + +#bar-chart { + width: 100%; + height: 100%; /* 条形图填充父容器 */ + } + + +#chart-description { + margin-top: 10px; /* 与条形图的间距 */ + text-align: left; /* 居中显示文字 */ + font-size: 14px; /* 调整文字大小 */ + color: #555; /* 设置温和的颜色 */ + font-style: italic; + font-family: Arial, sans-serif; /* 确保与页面整体风格统一 */ + } + +/* Form样式 */ +#report-form { + margin-top: 20px; +} + +#report-form form { + display: flex; + flex-direction: column; +} + +#report-form label { + margin-bottom: 5px; +} + +#report-form input, #report-form select, #report-form textarea { + margin-bottom: 15px; + padding: 8px; + font-size: 14px; +} + +.location-group { + display: flex; + justify-content: space-between; + margin-bottom: 15px; +} + +#click-on-map, #get-location { + margin-top: 10px; + padding: 5px 8px; + background-color: #68B0AB; + color: white; + border: none; + border-radius: 5px; + cursor: pointer; +} + +#click-on-map:hover, #get-location:hover { + cursor: url('../data/koala.png') 16 16 , pointer; + background-color: #4E8E8B; /* 悬停时颜色更深 */ +} + +#submit-report { + margin-top: 10px; + padding: 10px 15px; + background-color: #68B0AB; /* 温和的蓝绿色 */ + color: white; + border: none; + border-radius: 5px; + cursor: pointer; +} + +#submit-report:hover { + cursor: url('../data/koala.png') 16 16 , pointer; + background-color: #4E8E8B; /* 悬停时颜色更深 */ +} + +.form-group { + width: 48%; /* 每个输入框占一半的宽度 */ +} + +.form-group label { + display: block; + margin-bottom: 5px; +} + +.form-group input { + width: 100%; /* 输入框占满父容器的宽度 */ + padding: 5px; + box-sizing: border-box; /* 保证padding不影响宽度计算 */ +} + +.custom-marker { + width: 32px; + height: 32px; + background-image: url('../data/locationMarker.png'); /* Custom image */ + background-size: cover; + } + + +.legend { + position: absolute; + bottom: 50px; + right: 10px; + background-color: rgba(249, 249, 249, 0.7); + padding: 10px; + border-radius: 5px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); + font-family: Arial, sans-serif; + font-size: 12px; + display: flex; + flex-direction: column; +} + +.legend-item { + display: flex; + align-items: center; + margin-bottom: 5px; +} + +.color-box { + width: 10px; + height: 10px; + border-radius: 50%; + margin-right: 5px; +} diff --git a/Jingmiao Fei_Koala observation/data/koala.png b/Jingmiao Fei_Koala observation/data/koala.png new file mode 100644 index 0000000000000000000000000000000000000000..83a687b4bd2b359b7df2b2dd80ed54a1df20ec30 GIT binary patch literal 1124 zcmV-q1e^PbP)G_gsI2NN&$U|N$k!GMKcNHm6<2M?w-7--`KNENU)X@w?eDg(}n z%>J4Ad1!atof)8|BzWle^xp69C-3FWdqd2O!<0DG?oR;z4*>Fh6X)mWCzj_Gz7w%xW6(h0DrP__wMI?eSK%kh2l99 zA{vXuAj^9!9AkzBKAM`Ey3(FXod)PV0PO(EV0=TwqnT{>+bY2L7vtxM@Ugp&BuQv% zYcn0kiN@n`1OkEG8@p7n3JW)Wy3y@8j+c?~{=neCd8xg<{WJj={hFszDaUb~KvPo_ zG);S?<^Ukea!V{4Ev&Dv%kHfvLf_o{+#iA%Lw?E0WD>S*i+DT^RaGCkc}3w!L`$Vo zzCL0M34lD+W3d>R8LFxx7!2;ac}305%?O9Xeh8`{n@%tz=LP@(UDqGGIRFq5T3TA_ zY|O}!O(#TVD6s- z%nVJ_Ktu-yAcPRQu7iLz0w1?5YXoq8h$hCzmy)f?gb<=p*Y&zBxOL|aj&^j^%_qM6 z3IK5O?YBI>+IdB*tE<1Q{l2z+a$w;3Dp+lR!`vGT1%G)!T$lXW#O3PP%;#}obPV?l z1NRIA7e>cm=JUR>wMr&izjl~=>sF?AlFeof0>%6Q&YT*oju#e}P%f9N^K!Y2g~cV` z*t%wttY@=XV@Ci0V88@`%GN|SZKQ4%&=qQ}#{7Ewwx@Wltt-@u)Xf4Sn|56cfi^r) zZi6J~7691x{bVaF@YfL;R^-3X=Z-$>0jRZEkq0^9`tk(FL+-g%Bq6>7@J_K<1OSv3 zLcUR|i#gWajeoW+{5U@c0C?r4mvOASyXr5ggpw-<09c4Qx6N}M1HkuJu9~G%Nlzpa zd*6HyDFUv&knZYn+kIa|0Zsi708G>LbMHrG7W9Fi!x!My-rkF$P;kVutb>4X2%PbI zqyRf?K}EB(v!@E%R!)*6?V%nbUM)J{!E`!(ZKr@;AEiA#J!5|w>rqva-_4um^^MJq zjjgS%>Iv}|{|wN12zqUCdFjR7nge^RfS;zPr=M07!)}j9wJOMa#fPVq6)N3vfn-aVL0000mjy%s literal 0 HcmV?d00001 diff --git a/Jingmiao Fei_Koala observation/data/koalaRecords.cpg b/Jingmiao Fei_Koala observation/data/koalaRecords.cpg new file mode 100644 index 0000000..3ad133c --- /dev/null +++ b/Jingmiao Fei_Koala observation/data/koalaRecords.cpg @@ -0,0 +1 @@ +UTF-8 \ No newline at end of file diff --git a/Jingmiao Fei_Koala observation/data/koalaRecords.csv b/Jingmiao Fei_Koala observation/data/koalaRecords.csv new file mode 100644 index 0000000..9830050 --- /dev/null +++ b/Jingmiao Fei_Koala observation/data/koalaRecords.csv @@ -0,0 +1,75467 @@ +year,month,day,individualCount,stateProvince,decimalLongitude,decimalLatitude +2020,6,27,1,Victoria,144.00772,-38.39723 +2020,10,30,1,Victoria,144.33779,-37.65856 +2021,1,30,1,Victoria,143.61883,-38.78802 +2021,8,21,1,Victoria,144.19096,-37.86565 +2020,3,18,1,Victoria,144.44272,-37.4573 +2020,11,25,1,Victoria,144.14492,-37.80499 +2020,7,9,1,Victoria,144.27966,-37.76743 +2021,5,17,1,Victoria,144.16742,-37.8908 +2022,5,9,37,Victoria,141.79763,-38.08213 +2022,10,31,36,South Australia,138.6954,-34.96562 +2021,10,26,1,Victoria,144.1492,-37.80807 +2021,5,1,35,South Australia,138.696,-34.967 +2020,11,26,1,Victoria,144.14492,-37.80501 +2021,12,13,1,Victoria,143.85199,-38.67222 +2021,9,23,1,Victoria,144.50081,-37.66679 +2021,1,29,1,Victoria,143.53771,-38.78152 +2020,6,20,33,Victoria,143.85212,-38.6724 +2022,5,9,32,Victoria,141.76754,-38.19541 +2021,9,23,1,Victoria,144.36999,-37.71956 +2022,5,9,29,Victoria,141.85227,-38.02968 +2020,3,22,1,Victoria,143.629,-38.61583 +2021,9,26,1,Victoria,144.41144,-37.6034 +2021,10,30,1,Victoria,144.1492,-37.80807 +2021,2,2,1,Victoria,148.20167,-37.2582 +2020,6,4,1,Victoria,146.91217,-38.2312 +2023,12,5,1,Victoria,143.25562,-37.07769 +2022,10,7,1,Victoria,141.48599,-37.92797 +2022,5,16,1,Victoria,146.88433,-38.42491 +2021,10,5,1,Victoria,145.32423,-38.3209 +2021,3,15,1,Victoria,146.32812,-38.48723 +2023,6,6,1,Victoria,147.45244,-37.64368 +2020,2,20,1,Victoria,143.15287,-37.35669 +2020,9,29,1,Victoria,145.90368,-36.9013 +2022,3,29,1,Victoria,145.71474,-37.89051 +2023,11,14,1,Victoria,141.54876,-38.21827 +2020,3,5,1,Victoria,142.36597,-38.31444 +2022,11,28,1,Victoria,144.27902,-37.39978 +2022,3,9,1,Victoria,146.40261,-38.02849 +2023,3,8,1,Victoria,144.21973,-37.37201 +2020,7,16,1,Victoria,144.3504,-37.5016 +2021,7,6,1,Victoria,146.88559,-38.42812 +2023,2,7,1,Victoria,144.16489,-37.4181 +2022,10,14,1,Victoria,141.09528,-38.0195 +2020,12,23,1,Victoria,147.18135,-38.27617 +2021,11,16,1,Victoria,146.78338,-38.32552 +2022,1,16,1,Victoria,143.24579,-37.29629 +2021,3,9,1,Victoria,144.2265,-37.3445 +2021,12,8,1,Victoria,145.4419,-38.31278 +2020,7,15,1,Victoria,145.14652,-37.02036 +2021,10,14,1,Victoria,145.32867,-38.39979 +2022,1,17,1,Victoria,143.24908,-37.05844 +2022,6,27,1,Victoria,146.25012,-36.86843 +2020,3,15,1,Victoria,145.27834,-38.38066 +2023,4,6,1,Victoria,146.1276,-37.86258 +2021,10,25,1,Victoria,145.79577,-37.94998 +2022,10,12,1,Victoria,141.27128,-38.04037 +2022,12,7,1,Victoria,144.24504,-37.44615 +2020,11,1,1,Victoria,143.84634,-38.6735 +2020,12,9,1,Victoria,146.50133,-38.59787 +2022,5,11,1,Victoria,145.99515,-37.58447 +2021,8,2,1,Victoria,146.87857,-38.42991 +2022,3,23,1,Victoria,146.39789,-38.02788 +2020,5,17,1,Victoria,146.31372,-38.51018 +2020,1,17,1,Victoria,146.16711,-38.35647 +2021,4,6,1,Victoria,146.75887,-38.4835 +2021,10,25,1,Victoria,145.79577,-37.94998 +2023,5,12,1,Victoria,144.26568,-37.26785 +2023,1,25,1,Victoria,144.26118,-37.4562 +2023,2,1,1,Victoria,141.61346,-38.36032 +2020,12,23,1,Victoria,147.19769,-38.27831 +2021,11,30,1,Victoria,145.29319,-38.28588 +2022,11,23,1,Victoria,145.15654,-37.16288 +2021,11,28,1,Victoria,145.43045,-38.33311 +2020,2,6,1,Victoria,147.48777,-37.6687 +2021,7,11,1,Victoria,146.10638,-36.63986 +2020,3,5,1,Victoria,142.36358,-38.31803 +2020,11,4,1,Victoria,147.48638,-37.67591 +2021,10,7,1,Victoria,145.34197,-38.31077 +2022,10,5,1,Victoria,141.62143,-37.99623 +2020,2,3,1,Victoria,146.25237,-38.29828 +2020,12,18,1,Victoria,145.93833,-36.89139 +2021,9,28,1,Victoria,146.21394,-37.93009 +2022,12,3,1,Victoria,144.28214,-37.34507 +2021,1,21,1,Victoria,143.5655,-38.8308 +2021,6,22,1,Victoria,145.68789,-37.57717 +2022,4,11,1,Victoria,145.68756,-37.8339 +2023,5,4,1,Victoria,145.58903,-37.26916 +2023,9,19,1,Victoria,143.44217,-38.47386 +2023,6,30,1,Victoria,144.30918,-37.293 +2023,6,6,1,Victoria,145.57925,-37.30282 +2022,10,3,27,South Australia,138.5556,-34.96383 +2020,12,23,1,Victoria,147.26898,-38.24594 +2021,9,4,1,Victoria,145.29438,-38.31301 +2021,6,19,14,Victoria,143.85212,-38.6724 +2022,5,10,1,Victoria,146.89711,-38.46076 +2023,4,21,1,Victoria,143.8374,-37.72449 +2021,7,12,1,Victoria,146.91461,-38.4225 +2020,2,6,1,Victoria,143.94836,-38.5566 +2021,10,31,1,Victoria,146.58284,-38.54256 +2022,6,23,1,Victoria,145.71134,-37.8679 +2021,10,14,1,Victoria,145.4231,-38.31191 +2022,3,29,1,Victoria,144.28174,-37.38223 +2021,10,30,1,Victoria,145.27715,-38.35076 +2022,12,21,1,Victoria,144.22718,-37.3919 +2021,4,19,1,Victoria,146.7463,-38.46091 +2022,12,8,1,Victoria,144.19476,-37.41036 +2020,1,17,1,Victoria,146.15509,-38.36371 +2021,1,22,1,Victoria,143.5432,-38.8424 +2021,7,6,1,Victoria,146.87326,-38.43203 +2020,3,9,1,Victoria,146.24455,-38.28755 +2020,1,21,1,Victoria,145.53876,-37.44489 +2023,2,4,1,Victoria,144.1853,-37.4071 +2023,6,6,1,Victoria,147.45221,-37.65338 +2022,1,20,1,Victoria,144.30122,-37.3286 +2022,7,4,1,Victoria,146.8391,-38.45668 +2020,9,15,1,Victoria,145.89508,-36.88223 +2022,12,7,1,Victoria,144.1939,-37.41219 +2021,10,25,1,Victoria,145.48335,-38.33789 +2021,6,28,1,Victoria,145.69024,-37.57693 +2022,5,12,1,Victoria,148.2903,-37.30606 +2020,5,24,1,Victoria,146.31051,-38.48286 +2023,4,17,1,Victoria,144.10436,-37.43326 +2020,4,15,1,Victoria,144.218,-37.281 +2020,8,11,1,Victoria,145.89355,-36.89708 +2021,7,12,1,Victoria,146.84478,-38.41 +2023,12,6,1,Victoria,143.25575,-37.07861 +2022,10,12,1,Victoria,141.13881,-38.02435 +2020,3,16,1,Victoria,147.54845,-38.06695 +2022,10,11,1,Victoria,143.51334,-38.53968 +2020,12,14,1,Victoria,145.80694,-36.68889 +2021,1,22,1,Victoria,145.39027,-37.83943 +2020,1,17,1,Victoria,146.15796,-38.36166 +2020,7,21,1,Victoria,143.97198,-38.54215 +2021,4,8,11,South Australia,138.7011,-34.9676 +2020,5,3,1,Victoria,144.13419,-37.35468 +2022,11,8,1,Victoria,145.69513,-37.89757 +2021,2,2,1,Victoria,148.20167,-37.2582 +2022,9,20,1,Victoria,146.37466,-37.94524 +2023,2,21,1,Victoria,145.39259,-37.81755 +2021,1,19,1,Victoria,146.44279,-38.33708 +2020,7,24,9,Victoria,143.97174,-38.53928 +2020,12,16,1,Victoria,145.68206,-37.87672 +2020,2,23,1,Victoria,146.22584,-37.90366 +2021,2,21,1,Victoria,143.94433,-38.55382 +2021,8,2,1,Victoria,146.82872,-38.39678 +2021,5,18,1,Victoria,146.8936,-38.45919 +2021,10,11,1,Victoria,145.31951,-38.29359 +2023,6,6,1,Victoria,144.27336,-35.77322 +2024,9,25,8,New South Wales,153.31611,-28.654424 +2023,6,8,1,Victoria,144.08979,-37.39753 +2022,12,20,1,Victoria,144.22404,-37.38709 +2021,11,21,1,Victoria,146.77624,-38.32122 +2020,12,3,1,Victoria,146.16385,-37.36517 +2023,1,20,1,Victoria,145.91459,-36.93238 +2020,3,9,1,Victoria,146.21972,-38.23838 +2022,10,13,1,Victoria,141.28463,-38.0728 +2020,2,27,1,Victoria,146.59898,-38.46015 +2023,9,20,1,Victoria,143.41678,-38.48833 +2023,5,30,1,Victoria,144.3598,-37.44273 +2020,4,17,1,Victoria,145.59794,-37.95795 +2022,3,20,1,Victoria,144.32581,-37.44482 +2021,9,16,1,Victoria,145.43921,-38.36688 +2021,6,7,1,Victoria,144.1434,-35.70607 +2020,9,29,1,Victoria,148.21851,-37.17522 +2022,10,12,1,Victoria,141.1572,-38.03621 +2020,8,4,1,Victoria,144.37935,-37.49796 +2021,12,16,1,Victoria,148.28934,-37.30833 +2022,11,7,7,Victoria,141.84869,-38.06589 +2021,8,2,1,Victoria,146.84543,-38.45538 +2020,1,17,1,Victoria,146.16708,-38.36341 +2023,10,4,1,Victoria,143.48188,-38.45977 +2021,11,9,1,Victoria,145.33125,-38.32534 +2022,11,16,1,Victoria,144.26241,-37.44989 +2022,8,8,1,Victoria,146.25623,-38.32847 +2023,6,27,1,Victoria,143.94153,-37.43644 +2022,12,15,1,Victoria,144.23568,-37.37063 +2021,1,21,1,Victoria,143.5548,-38.8134 +2022,10,12,1,Victoria,141.19349,-38.0393 +2021,8,12,1,Victoria,145.27591,-38.36571 +2022,11,8,1,Victoria,145.69513,-37.89757 +2022,8,29,1,Victoria,145.37118,-38.37124 +2022,6,28,1,Victoria,145.71302,-37.86817 +2023,9,19,1,Victoria,143.44535,-38.46077 +2021,3,9,1,Victoria,147.54437,-38.0749 +2022,12,14,1,Victoria,144.23301,-37.36974 +2021,12,6,1,Victoria,145.41868,-38.32681 +2020,11,20,1,Victoria,145.2018,-37.14057 +2021,8,23,1,Victoria,145.30369,-38.32996 +2020,11,13,1,Victoria,146.27662,-38.30498 +2021,9,15,1,Victoria,145.42206,-38.32719 +2023,2,16,1,Victoria,144.07199,-37.45254 +2021,4,30,1,Victoria,146.71612,-38.54398 +2023,1,7,1,Victoria,144.18475,-37.46706 +2023,3,8,1,Victoria,144.21973,-37.37201 +2022,12,21,1,Victoria,144.21933,-37.38736 +2021,10,25,1,Victoria,145.79577,-37.94998 +2021,3,15,1,Victoria,146.32943,-38.4982 +2021,10,26,1,Victoria,145.48336,-38.33793 +2021,10,21,1,Victoria,145.31097,-38.36259 +2022,12,2,1,Victoria,144.28188,-37.34633 +2022,10,8,7,South Australia,138.55022,-35.13817 +2022,10,3,1,Victoria,141.53068,-37.97577 +2023,4,28,1,Victoria,144.17928,-37.42164 +2023,11,14,1,Victoria,141.55041,-38.21786 +2020,12,15,1,Victoria,145.91333,-36.84861 +2021,4,19,1,Victoria,146.6298,-38.44012 +2023,12,6,1,Victoria,143.25249,-37.0749 +2021,1,21,1,Victoria,143.567,-38.7978 +2021,8,2,1,Victoria,146.84147,-38.46329 +2023,1,3,1,Victoria,144.18428,-37.46688 +2021,10,6,1,Victoria,145.27885,-38.37979 +2022,11,8,1,Victoria,145.69553,-37.89669 +2021,9,7,1,Victoria,145.69368,-37.82902 +2022,10,12,1,Victoria,141.18714,-38.02785 +2024,9,25,7,New South Wales,153.277428,-28.59695 +2022,10,13,1,Victoria,141.15061,-38.06282 +2023,5,22,1,Victoria,145.58754,-37.26762 +2021,10,11,1,Victoria,145.65177,-37.02633 +2023,9,20,1,Victoria,143.42276,-38.48752 +2022,10,6,1,Victoria,141.4202,-37.90486 +2020,6,9,1,Victoria,146.87202,-38.23789 +2023,9,19,1,Victoria,143.44126,-38.47441 +2021,10,11,1,Victoria,145.65177,-37.02633 +2021,1,29,1,Victoria,146.25943,-36.85402 +2020,9,29,1,Victoria,148.21851,-37.17522 +2020,6,28,1,Victoria,144.72303,-37.54623 +2020,10,13,1,Victoria,145.20643,-37.17228 +2021,4,28,1,Victoria,145.94397,-37.85138 +2020,12,23,1,Victoria,147.18912,-38.26018 +2020,3,2,1,Victoria,143.86094,-38.6677 +2023,6,29,1,Victoria,144.26018,-37.34098 +2020,6,30,6,Victoria,143.9799,-38.55382 +2022,7,11,1,Victoria,146.86793,-38.43857 +2020,9,16,1,Victoria,145.13171,-38.17606 +2021,9,15,1,Victoria,148.19497,-37.19951 +2023,3,8,1,Victoria,144.2252,-37.37434 +2023,3,8,1,Victoria,144.22764,-37.36495 +2021,10,11,1,Victoria,145.34986,-38.36474 +2023,5,1,1,Victoria,146.74341,-38.51573 +2023,6,2,1,Victoria,144.34115,-37.46642 +2020,4,28,1,Victoria,146.51205,-38.6047 +2020,4,24,1,Victoria,146.51162,-38.60687 +2022,2,16,1,Victoria,147.47768,-37.71441 +2020,6,13,1,Victoria,143.27997,-37.29633 +2022,3,28,1,Victoria,148.2903,-37.30606 +2022,9,7,1,Victoria,146.02373,-37.85996 +2022,12,20,1,Victoria,144.3066,-37.42904 +2021,5,12,1,Victoria,145.94406,-37.34302 +2021,8,2,1,Victoria,146.83918,-38.39855 +2020,5,29,1,Victoria,146.90121,-38.23836 +2022,11,8,1,Victoria,145.69553,-37.89669 +2021,8,14,1,Victoria,145.41869,-38.32683 +2022,12,15,1,Victoria,145.70187,-37.57843 +2021,1,7,5,Victoria,143.56109,-38.831 +2023,4,14,1,Victoria,146.9889,-38.24458 +2022,9,20,1,Victoria,145.28754,-38.32518 +2023,1,3,1,Victoria,144.18854,-37.46263 +2020,12,23,1,Victoria,147.09167,-38.25438 +2022,9,20,1,Victoria,146.37466,-37.94524 +2020,3,12,1,Victoria,145.222,-36.216 +2022,10,13,1,Victoria,141.04627,-38.00094 +2020,11,2,1,Victoria,148.21921,-37.17589 +2022,5,2,1,Victoria,145.64015,-37.33524 +2023,2,27,1,Victoria,146.34608,-37.96712 +2021,6,3,1,Victoria,148.63834,-36.99493 +2023,3,9,1,Victoria,144.09159,-37.47272 +2023,12,5,1,Victoria,143.25249,-37.0749 +2021,9,8,1,Victoria,145.29346,-38.31046 +2022,7,18,5,Victoria,142.36193,-38.31881 +2020,10,1,1,Victoria,145.19469,-37.17389 +2020,3,1,1,Victoria,143.85998,-38.67086 +2022,6,11,1,Victoria,145.2788,-38.37964 +2023,4,22,1,Victoria,149.83276,-37.72815 +2021,8,25,1,Victoria,145.65335,-37.33545 +2021,11,11,1,Victoria,145.41848,-38.32672 +2023,7,4,1,Victoria,144.36892,-37.43413 +2020,6,30,1,Victoria,147.11062,-38.33619 +2021,12,11,1,Victoria,145.31413,-38.39398 +2022,1,31,1,Victoria,145.27667,-38.36793 +2023,6,5,1,Victoria,147.45651,-37.65299 +2021,11,9,1,Victoria,145.42314,-38.31203 +2022,3,17,1,Victoria,144.24602,-37.36987 +2020,12,4,1,Victoria,144.00599,-37.6681 +2020,11,27,1,Victoria,144.3002,-37.4893 +2022,2,22,1,Victoria,146.48932,-37.66862 +2023,3,15,1,Victoria,145.70337,-37.5743 +2021,7,6,1,Victoria,146.87943,-38.44579 +2022,1,31,1,Victoria,145.43549,-38.3635 +2020,4,14,1,Victoria,146.04177,-38.37467 +2022,11,16,1,Victoria,144.26208,-37.44946 +2022,9,28,1,Victoria,146.3735,-37.94445 +2020,12,3,1,Victoria,145.38605,-37.83669 +2023,7,5,1,Victoria,144.18024,-37.39506 +2022,2,22,1,Victoria,146.48932,-37.66862 +2023,2,11,1,Victoria,144.1763,-37.4357 +2023,5,22,1,Victoria,145.58763,-37.26716 +2023,9,20,1,Victoria,143.41833,-38.49181 +2020,12,16,1,Victoria,145.68365,-37.59647 +2021,10,28,1,Victoria,145.42314,-38.31207 +2021,1,19,1,Victoria,146.44831,-38.33452 +2021,1,14,1,Victoria,148.12427,-37.26588 +2021,12,8,1,Victoria,145.41847,-38.32671 +2020,4,21,1,Victoria,146.33921,-38.61984 +2023,1,21,1,Victoria,143.72057,-37.24717 +2023,7,17,1,Victoria,144.26847,-37.26566 +2022,5,10,1,Victoria,145.29438,-38.31324 +2020,12,23,1,Victoria,147.26946,-38.24381 +2020,12,18,1,Victoria,145.93472,-36.90028 +2023,1,6,1,Victoria,144.28335,-37.44579 +2021,1,20,1,Victoria,143.5582,-38.8459 +2020,1,11,1,Victoria,146.13925,-38.36314 +2022,1,20,1,Victoria,144.29949,-37.32623 +2022,12,21,1,Victoria,144.22895,-37.39083 +2020,11,13,1,Victoria,146.26048,-38.29712 +2021,9,7,1,Victoria,145.69582,-37.8312 +2022,4,13,1,Victoria,144.32917,-37.39889 +2022,12,7,1,Victoria,144.24607,-37.44235 +2022,11,23,1,Victoria,145.16406,-37.16198 +2022,4,6,1,Victoria,144.27898,-37.37651 +2022,5,11,1,Victoria,145.29437,-38.31331 +2020,9,29,1,Victoria,143.93952,-38.57641 +2021,10,18,1,Victoria,145.29337,-38.33545 +2022,1,16,1,Victoria,143.25645,-37.29108 +2021,9,11,1,Victoria,147.47051,-38.10298 +2023,1,6,1,Victoria,144.18716,-37.46319 +2022,6,20,1,Victoria,145.42313,-38.31192 +2023,2,13,1,Victoria,143.47901,-38.54308 +2021,12,3,1,Victoria,145.41868,-38.32681 +2021,3,9,1,Victoria,146.28181,-38.29993 +2022,11,23,1,Victoria,144.17753,-37.42414 +2020,1,5,1,Victoria,146.13137,-38.35869 +2020,3,27,1,Victoria,146.94349,-38.44596 +2022,4,12,1,Victoria,146.92597,-38.42054 +2023,3,8,1,Victoria,143.48071,-38.56708 +2022,10,5,1,Victoria,141.62142,-38.01084 +2023,3,7,1,Victoria,145.75434,-37.85886 +2023,6,9,1,Victoria,143.82973,-37.73034 +2022,11,28,1,Victoria,144.27251,-37.46698 +2022,11,23,1,Victoria,144.17656,-37.42323 +2022,12,13,1,Victoria,144.21249,-37.38251 +2023,2,10,1,Victoria,144.09181,-37.47616 +2022,3,17,1,Victoria,144.24602,-37.36987 +2021,6,18,1,Victoria,146.64296,-38.41888 +2022,12,1,1,Victoria,144.3064,-37.32371 +2022,1,20,5,Australian Capital Territory,148.91,-35.46 +2020,6,21,1,Victoria,145.27641,-38.1374 +2021,6,30,1,Victoria,148.57185,-36.9945 +2022,1,15,1,Victoria,143.27946,-37.33101 +2022,5,2,1,Victoria,148.30312,-37.27575 +2021,9,13,1,Victoria,145.65933,-37.88052 +2023,2,13,1,Victoria,145.98441,-37.8833 +2021,4,6,1,Victoria,146.77528,-38.48008 +2021,11,26,1,Victoria,145.48333,-38.33792 +2020,11,4,1,Victoria,147.48638,-37.67591 +2022,11,16,1,Victoria,144.21155,-37.44074 +2020,5,12,1,Victoria,145.58181,-37.29951 +2022,3,23,1,Victoria,146.39789,-38.02788 +2022,4,13,1,Victoria,145.68926,-37.83417 +2020,9,2,1,Victoria,145.68993,-37.58257 +2021,1,19,1,Victoria,146.44841,-38.3267 +2023,8,15,1,Victoria,147.49538,-37.6642 +2020,12,5,4,Victoria,143.75752,-38.55212 +2020,3,27,1,Victoria,146.98235,-38.33125 +2023,3,8,1,Victoria,143.48848,-38.5637 +2020,6,13,1,Victoria,145.27092,-38.1367 +2023,2,9,1,Victoria,144.11426,-37.44695 +2021,7,9,1,Victoria,145.49707,-38.34938 +2021,9,1,1,Victoria,145.29438,-38.31301 +2023,2,10,1,Victoria,144.08447,-37.47477 +2021,11,10,1,Victoria,143.72115,-38.55454 +2020,11,26,1,Victoria,146.99047,-38.20261 +2020,1,17,1,Victoria,146.17625,-38.36192 +2022,11,25,4,Queensland,153.35641,-27.93914 +2021,8,18,1,Victoria,145.30954,-38.2963 +2021,6,6,1,Victoria,148.33573,-37.07237 +2020,10,22,1,Victoria,144.3006,-37.4885 +2020,5,22,1,Victoria,145.59794,-37.95795 +2020,11,26,1,Victoria,145.70708,-37.78672 +2020,6,24,1,Victoria,147.03468,-38.39186 +2022,10,13,1,Victoria,141.20415,-38.05193 +2022,7,2,1,Victoria,145.28764,-38.32102 +2021,3,9,1,Victoria,147.54437,-38.0749 +2021,5,6,1,Victoria,144.12263,-37.9007 +2023,4,2,1,Victoria,141.60459,-38.33997 +2022,10,13,1,Victoria,141.01048,-38.02716 +2022,10,4,1,Victoria,141.55467,-37.98443 +2022,6,25,1,Victoria,145.29437,-38.31328 +2021,11,28,1,Victoria,145.436,-38.31357 +2022,11,8,1,Victoria,145.69513,-37.89757 +2022,3,1,1,Victoria,145.67996,-37.81151 +2020,5,17,1,Victoria,146.31758,-38.51399 +2022,10,6,1,Victoria,141.51689,-37.92349 +2020,6,30,1,Victoria,146.95334,-38.43487 +2020,3,30,1,Victoria,146.24733,-38.23097 +2023,2,19,4,Queensland,153.37666,-28.0986 +2020,1,5,1,Victoria,146.14166,-38.36862 +2020,4,27,1,Victoria,145.59794,-37.95795 +2022,12,8,1,Victoria,144.24095,-37.3657 +2023,12,5,1,Victoria,143.26147,-37.07956 +2020,12,9,1,Victoria,146.28518,-36.95386 +2020,4,17,1,Victoria,146.22835,-38.56586 +2021,1,18,1,Victoria,145.68932,-37.83508 +2020,5,17,1,Victoria,146.31212,-38.50914 +2021,12,16,1,Victoria,148.32553,-37.29356 +2020,12,23,1,Victoria,147.15509,-38.24438 +2022,4,13,1,Victoria,145.68916,-37.83423 +2021,11,1,1,Victoria,145.29321,-38.28592 +2023,6,17,1,Victoria,145.38333,-37.48291 +2020,12,23,1,Victoria,147.21514,-38.28339 +2020,12,8,1,Victoria,147.04023,-38.48475 +2022,10,13,1,Victoria,141.15797,-38.0534 +2022,5,2,1,Victoria,145.64015,-37.33524 +2022,8,23,1,Victoria,146.14842,-37.91635 +2022,10,4,1,Victoria,141.58379,-38.00952 +2023,2,22,1,Victoria,145.94126,-36.91677 +2020,10,13,1,Victoria,145.20429,-37.17146 +2023,1,4,1,Victoria,144.1931,-37.43318 +2021,5,4,1,Victoria,145.6163,-38.31517 +2022,9,7,1,Victoria,146.02382,-37.8599 +2023,11,15,1,Victoria,143.25557,-37.07781 +2021,1,18,1,Victoria,145.68961,-37.83524 +2023,2,22,1,Victoria,144.10302,-37.50187 +2021,11,3,1,Victoria,145.41869,-38.32678 +2020,7,3,1,Victoria,146.65196,-36.1626 +2020,2,27,1,Victoria,146.6222,-38.36137 +2022,9,1,1,Victoria,145.37108,-38.3712 +2022,9,10,1,Victoria,145.37115,-38.37124 +2021,7,12,1,Victoria,146.85066,-38.40657 +2022,11,24,1,Victoria,144.259,-37.4433 +2021,7,8,1,Victoria,145.49707,-38.34938 +2022,12,6,1,Victoria,144.24854,-37.44482 +2022,8,26,1,Victoria,145.64963,-37.02372 +2020,2,28,1,Victoria,144.342,-37.4594 +2023,5,23,1,Victoria,145.58712,-37.26648 +2022,11,8,1,Victoria,143.72115,-38.55454 +2022,10,13,1,Victoria,141.08213,-38.01045 +2022,1,17,1,Victoria,141.96235,-37.64806 +2023,2,3,1,Victoria,146.89382,-38.45906 +2021,6,28,1,Victoria,145.69033,-37.57712 +2021,9,27,1,Victoria,146.21782,-37.9298 +2022,1,31,1,Victoria,145.43545,-38.3636 +2023,1,29,1,Victoria,144.17537,-37.42964 +2020,5,12,1,Victoria,146.36721,-38.51672 +2023,2,14,1,Victoria,144.1001,-37.40403 +2021,11,17,1,Victoria,147.44619,-38.138 +2021,2,3,1,Victoria,144.2603,-37.5162 +2022,10,6,1,Victoria,141.52091,-37.91606 +2021,7,13,1,Victoria,143.52018,-38.80639 +2020,1,17,1,Victoria,146.50995,-38.60378 +2022,10,6,1,Victoria,141.64146,-38.19674 +2022,11,26,4,Queensland,153.35641,-27.93914 +2021,10,22,1,Victoria,145.43563,-38.36352 +2022,1,30,1,Victoria,144.25093,-37.44621 +2023,2,16,1,Victoria,144.07233,-37.45255 +2022,1,16,1,Victoria,143.29312,-37.0892 +2021,12,16,1,Victoria,148.27004,-37.30715 +2020,3,23,1,Victoria,146.09509,-38.34151 +2023,6,6,1,Victoria,147.45221,-37.65338 +2022,2,14,1,Victoria,146.32333,-38.21222 +2023,2,15,1,Victoria,144.07216,-37.45264 +2022,8,25,1,Victoria,145.91366,-37.33807 +2021,11,19,1,Victoria,145.29435,-38.31301 +2022,6,20,1,Victoria,144.10159,-37.47416 +2021,5,26,1,Victoria,143.64474,-38.49269 +2023,3,8,1,Victoria,144.22681,-37.37042 +2022,4,26,1,Victoria,146.89119,-38.46983 +2023,7,11,1,Victoria,144.30712,-37.29521 +2022,1,16,1,Victoria,143.25948,-37.30084 +2022,7,22,1,Victoria,143.64474,-38.49269 +2020,12,23,1,Victoria,147.13624,-38.2614 +2022,10,5,1,Victoria,141.67013,-38.00846 +2021,10,7,1,Victoria,145.28152,-38.38817 +2022,7,15,1,Victoria,145.29349,-38.31039 +2022,1,1,1,Victoria,141.1863,-38.06022 +2023,2,14,1,Victoria,144.09966,-37.4013 +2023,6,20,1,Victoria,144.35612,-37.45559 +2023,5,30,1,Victoria,144.35343,-37.43864 +2021,9,13,1,Victoria,145.88974,-36.89344 +2023,6,23,1,Victoria,145.71135,-37.83244 +2022,10,3,1,Victoria,141.59923,-38.01573 +2022,1,16,1,Victoria,143.25006,-37.06148 +2022,11,9,1,Victoria,144.27705,-37.47023 +2022,10,7,1,Victoria,141.68226,-38.19882 +2020,12,23,1,Victoria,147.2378,-38.28659 +2023,12,5,1,Victoria,143.25678,-37.08221 +2023,3,9,1,Victoria,144.09159,-37.47272 +2022,10,3,1,Victoria,141.53206,-37.98239 +2021,3,11,1,Victoria,147.49357,-38.07614 +2021,2,9,1,Victoria,146.78885,-36.45154 +2020,5,17,1,Victoria,146.32614,-38.51776 +2020,6,30,1,Victoria,147.12098,-38.34345 +2020,7,23,1,Victoria,146.256,-37.96022 +2023,6,2,1,Victoria,144.24387,-37.37812 +2022,12,15,1,Victoria,145.70187,-37.57843 +2021,2,20,1,Victoria,143.96303,-38.54241 +2022,9,16,1,Victoria,145.37112,-38.37124 +2022,3,23,1,Victoria,146.39789,-38.02788 +2020,3,12,1,Victoria,145.66921,-37.59273 +2023,2,14,1,Victoria,144.09968,-37.41146 +2022,3,1,1,Victoria,145.67996,-37.81151 +2021,6,2,1,Victoria,148.2969,-37.10019 +2022,2,22,1,Victoria,146.48932,-37.66862 +2021,2,2,1,Victoria,145.91978,-37.36129 +2023,1,3,1,Victoria,144.18589,-37.46525 +2020,7,8,1,Victoria,146.926,-38.50598 +2022,6,2,1,Victoria,147.48029,-37.72599 +2020,4,17,1,Victoria,146.23523,-38.5619 +2022,10,5,1,Victoria,141.43276,-38.17134 +2021,3,19,1,Victoria,147.49084,-38.09544 +2020,3,22,1,Victoria,143.62788,-38.6188 +2020,3,23,1,Victoria,145.93548,-38.28063 +2023,3,8,1,Victoria,144.2252,-37.37434 +2022,11,16,1,Victoria,144.2624,-37.44962 +2022,1,17,1,Victoria,143.28509,-37.0881 +2020,6,28,1,Victoria,145.27574,-38.1347 +2022,12,11,4,Queensland,152.544945,-27.350309 +2021,3,29,1,Victoria,146.67365,-38.37856 +2021,6,29,1,Victoria,145.17242,-37.04285 +2022,8,20,1,Victoria,145.37107,-38.37121 +2023,2,14,1,Victoria,144.09834,-37.41134 +2023,1,25,1,Victoria,144.26138,-37.45483 +2021,7,19,4,Queensland,153.269271,-27.527925 +2023,2,24,1,Victoria,145.92524,-36.79873 +2022,10,12,1,Victoria,141.20535,-38.04568 +2022,3,18,1,Victoria,144.32581,-37.44482 +2020,6,24,1,Victoria,147.01121,-38.38098 +2022,10,14,1,Victoria,141.06541,-38.01393 +2020,12,9,1,Victoria,146.50082,-38.59823 +2021,12,6,1,Victoria,145.49804,-38.35004 +2022,12,15,1,Victoria,145.70187,-37.57843 +2021,12,8,1,Victoria,145.49803,-38.34995 +2021,4,27,1,Victoria,146.68182,-38.65962 +2020,3,30,1,Victoria,146.27649,-38.2425 +2023,2,12,4,South Australia,138.70654,-34.99039 +2022,11,8,1,Victoria,149.67873,-37.47884 +2020,9,15,1,Victoria,144.1924,-37.427 +2020,10,3,3,Victoria,144.27217,-37.78976 +2022,6,28,1,Victoria,145.71117,-37.8679 +2023,6,5,1,Victoria,147.45651,-37.65299 +2022,10,12,1,Victoria,141.14034,-38.01607 +2022,10,5,1,Victoria,141.60643,-38.03115 +2023,3,9,1,Victoria,144.09159,-37.47272 +2023,6,6,1,Victoria,147.45244,-37.64368 +2023,2,9,1,Victoria,144.10213,-37.44746 +2021,4,30,1,Victoria,146.7773,-38.39513 +2022,8,9,1,Victoria,143.50873,-38.55414 +2022,4,26,1,Victoria,146.86214,-38.47536 +2022,10,12,1,Victoria,141.17144,-38.02017 +2022,1,20,1,Victoria,144.29962,-37.32881 +2021,9,1,1,Victoria,145.43077,-38.33339 +2020,3,9,1,Victoria,146.23035,-38.22155 +2023,3,8,1,Victoria,144.2707,-37.34417 +2021,5,12,1,Victoria,145.73497,-36.72648 +2020,4,14,1,Victoria,146.04162,-38.3739 +2022,11,23,1,Victoria,144.17699,-37.42545 +2022,6,28,1,Victoria,145.71117,-37.8679 +2021,2,21,3,Victoria,143.94433,-38.55382 +2021,1,19,1,Victoria,146.45029,-38.3337 +2021,11,28,1,Victoria,145.43752,-38.36663 +2020,9,15,1,Victoria,145.89508,-36.88223 +2020,9,1,1,Victoria,145.61177,-37.50058 +2020,11,20,1,Victoria,145.20042,-37.13766 +2020,3,20,1,Victoria,147.5269,-37.44594 +2022,1,31,1,Victoria,145.27667,-38.36793 +2020,1,28,1,Victoria,141.6323,-38.25278 +2022,12,7,1,Victoria,144.24586,-37.44493 +2022,6,23,1,Victoria,145.71134,-37.8679 +2022,4,15,1,Victoria,148.26513,-37.30284 +2022,1,15,1,Victoria,143.27741,-37.31903 +2022,12,22,1,Victoria,144.22566,-37.38928 +2022,1,26,1,Victoria,145.37954,-37.83637 +2020,1,22,1,Victoria,141.61666,-38.36668 +2023,2,9,1,Victoria,144.09135,-37.43981 +2022,6,28,1,Victoria,145.71302,-37.86817 +2021,3,15,1,Victoria,146.42549,-38.48123 +2022,8,19,1,Victoria,145.37107,-38.37122 +2021,2,3,1,Victoria,145.19156,-37.16918 +2021,6,2,1,Victoria,148.29162,-37.11337 +2023,4,17,1,Victoria,144.11136,-37.44063 +2022,10,6,1,Victoria,141.65222,-38.17715 +2022,4,12,1,Victoria,146.93596,-38.42514 +2020,7,8,3,Victoria,143.96959,-38.5395 +2020,6,30,3,Victoria,143.97029,-38.54325 +2022,12,9,1,Victoria,144.19437,-37.41014 +2020,4,17,1,Victoria,146.17788,-38.51634 +2021,6,11,1,Victoria,145.64234,-37.32466 +2021,6,2,1,Victoria,148.29235,-37.14578 +2020,8,9,1,Victoria,145.2753,-35.87985 +2020,6,30,1,Victoria,147.03439,-38.33562 +2023,4,20,1,Victoria,143.83243,-37.72557 +2023,1,25,1,Victoria,141.61682,-38.36674 +2023,1,25,1,Victoria,144.25722,-37.46026 +2020,5,21,1,Victoria,148.26948,-37.3075 +2021,9,23,1,Victoria,145.36848,-38.34936 +2020,10,14,1,Victoria,145.45953,-37.48231 +2022,8,31,1,Victoria,145.92927,-37.33648 +2023,2,13,1,Victoria,145.98441,-37.8833 +2020,11,24,1,Victoria,145.20003,-37.16903 +2023,1,29,1,Victoria,144.17848,-37.42848 +2020,8,24,1,Victoria,145.69032,-37.58375 +2020,10,13,1,Victoria,145.20143,-37.17004 +2022,3,17,1,Victoria,144.24602,-37.36987 +2020,11,21,1,Victoria,145.20574,-37.14551 +2020,11,24,1,Victoria,145.2032,-37.17126 +2022,12,22,1,Victoria,144.22572,-37.3904 +2021,7,30,1,Victoria,146.84251,-38.39233 +2022,2,21,1,Victoria,146.30726,-38.22102 +2021,12,8,1,Victoria,144.0541,-37.2678 +2023,3,8,1,Victoria,144.22681,-37.37042 +2022,6,27,1,Victoria,145.29435,-38.31329 +2023,1,25,1,Victoria,145.18823,-37.13964 +2020,8,11,1,Victoria,143.96091,-38.5442 +2020,12,10,1,Victoria,146.50553,-38.60641 +2022,5,10,1,Victoria,146.85035,-38.44293 +2020,12,11,1,Victoria,144.3002,-37.4937 +2021,1,20,1,Victoria,145.67073,-37.89597 +2022,3,9,1,Victoria,146.40261,-38.02849 +2020,5,5,3,Victoria,145.9223,-36.8559 +2021,3,4,1,Victoria,145.70922,-37.83541 +2023,12,11,1,Victoria,143.39599,-38.67168 +2022,3,17,1,Victoria,144.24602,-37.36987 +2022,12,5,1,Victoria,144.1867,-37.39299 +2020,11,24,3,Victoria,145.7186,-37.8558 +2022,10,4,1,Victoria,141.54254,-37.96258 +2022,6,28,1,Victoria,145.71302,-37.86817 +2020,4,3,1,Victoria,147.4501,-38.12826 +2021,7,12,1,Victoria,146.84507,-38.41084 +2023,7,11,1,Victoria,144.30436,-37.30115 +2020,10,13,1,Victoria,145.20231,-37.17073 +2023,2,2,1,Victoria,148.5213,-36.94633 +2020,8,5,1,Victoria,145.44287,-35.85559 +2022,9,28,1,Victoria,146.3735,-37.94445 +2021,8,2,1,Victoria,146.84472,-38.45749 +2021,11,21,1,Victoria,146.78281,-38.3238 +2021,10,11,1,Victoria,145.64975,-37.02652 +2022,10,3,1,Victoria,141.51572,-37.98235 +2023,3,8,1,Victoria,144.21973,-37.37201 +2021,11,12,1,Victoria,145.4355,-38.36342 +2023,3,8,1,Victoria,144.2707,-37.34417 +2020,3,16,1,Victoria,144.2987,-37.4851 +2020,2,20,1,Victoria,146.49149,-38.4419 +2021,11,16,1,Victoria,146.78787,-38.35727 +2021,5,18,1,Victoria,146.89176,-38.46006 +2022,5,16,1,Victoria,146.88475,-38.42048 +2020,11,4,1,Victoria,147.48832,-37.66895 +2023,5,23,1,Victoria,145.58869,-37.2656 +2020,6,30,1,Victoria,147.023,-38.38917 +2022,1,20,1,Victoria,144.30172,-37.32497 +2022,10,13,1,Victoria,141.11464,-38.05006 +2020,4,28,1,Victoria,147.56105,-37.65955 +2020,5,6,1,Victoria,146.56232,-38.64518 +2021,12,16,1,Victoria,148.34568,-37.34702 +2023,6,8,1,Victoria,144.143,-37.42297 +2022,10,5,1,Victoria,141.64628,-37.99474 +2021,9,5,1,Victoria,145.31299,-38.36284 +2021,12,6,3,Victoria,143.35138,-37.06926 +2022,6,23,1,Victoria,145.71134,-37.8679 +2021,11,27,1,Victoria,145.28372,-38.32709 +2021,12,17,1,Victoria,148.26723,-37.29684 +2023,12,16,1,Victoria,141.55171,-38.2184 +2020,6,30,1,Victoria,146.31799,-39.01515 +2022,4,12,1,Victoria,146.91953,-38.42528 +2020,5,12,1,Victoria,146.43774,-38.5593 +2021,11,28,1,Victoria,145.32298,-38.35849 +2023,2,13,1,Victoria,145.98763,-37.88608 +2022,10,4,1,Victoria,141.51011,-38.15037 +2021,11,30,1,Victoria,145.43033,-38.33317 +2023,1,10,1,Victoria,144.26982,-37.4588 +2022,12,13,1,Victoria,144.2118,-37.38005 +2020,11,7,3,New South Wales,153.523046,-28.711473 +2021,9,27,1,Victoria,146.21294,-37.93215 +2022,12,21,1,Victoria,144.22045,-37.38754 +2022,10,6,1,Victoria,141.4666,-37.93063 +2023,6,28,1,Victoria,144.26551,-37.26995 +2020,11,26,1,Victoria,146.97145,-38.18889 +2020,11,4,1,Victoria,147.48832,-37.66895 +2020,9,1,1,Victoria,143.96756,-38.53028 +2020,6,29,1,Victoria,146.27451,-37.92095 +2021,8,2,1,Victoria,146.83247,-38.39951 +2021,2,16,1,Victoria,145.58285,-37.30191 +2021,11,24,1,Victoria,145.4856,-38.33947 +2022,10,6,1,Victoria,141.44907,-38.15916 +2021,8,18,1,Victoria,148.19546,-37.19441 +2022,2,25,1,Victoria,143.71482,-38.48108 +2022,6,20,1,Victoria,146.83416,-38.42053 +2022,12,7,1,Victoria,144.21141,-37.38147 +2020,5,13,1,Victoria,146.43632,-38.48691 +2022,7,11,1,Victoria,146.8734,-38.43447 +2022,11,28,1,Victoria,146.1831,-36.79809 +2020,4,21,1,Victoria,146.36245,-38.61755 +2021,11,1,1,Victoria,147.47756,-37.71714 +2020,3,12,1,Victoria,144.4724,-37.364 +2023,3,22,1,Victoria,144.10507,-37.44251 +2023,7,11,1,Victoria,144.30847,-37.295 +2020,12,23,1,Victoria,147.16983,-38.25951 +2022,3,17,1,Victoria,144.24602,-37.36987 +2022,9,20,1,Victoria,146.37466,-37.94524 +2022,3,9,1,Victoria,146.40261,-38.02849 +2023,2,11,1,Victoria,144.08662,-37.48693 +2022,12,3,1,Victoria,144.28322,-37.343 +2022,6,20,1,Victoria,146.83919,-38.43892 +2022,10,6,1,Victoria,141.69413,-38.19931 +2023,3,7,1,Victoria,145.75434,-37.85886 +2020,5,11,1,Victoria,146.259,-38.59371 +2023,1,23,1,Victoria,143.43692,-38.56711 +2021,9,27,1,Victoria,147.47626,-38.07479 +2023,1,6,1,Victoria,144.18836,-37.46216 +2022,3,25,1,Victoria,148.2903,-37.30606 +2022,10,13,1,Victoria,141.046,-38.0331 +2021,11,16,1,Victoria,147.2581,-38.2297 +2022,1,31,1,Victoria,145.43549,-38.3635 +2022,12,14,1,Victoria,144.212,-37.37739 +2023,5,23,1,Victoria,145.58888,-37.26635 +2022,7,29,1,Victoria,145.3699,-38.3693 +2021,12,7,1,Victoria,145.41847,-38.32671 +2020,3,27,1,Victoria,146.90203,-38.28437 +2021,5,13,1,Victoria,146.80239,-38.4784 +2022,12,8,1,Victoria,146.11253,-37.93103 +2022,12,9,1,Victoria,144.26341,-37.46236 +2020,5,31,1,Victoria,142.36253,-38.31832 +2022,10,2,1,Victoria,143.94433,-38.55382 +2022,10,14,1,Victoria,140.98819,-37.99937 +2021,10,6,1,Victoria,148.27713,-37.2685 +2020,3,16,1,Victoria,147.54438,-38.07489 +2020,12,3,1,Victoria,144.2601,-37.5129 +2021,10,27,1,Victoria,146.24853,-38.04672 +2022,10,3,1,Victoria,141.52483,-37.98465 +2023,2,13,1,Victoria,145.98763,-37.88608 +2021,10,6,1,Victoria,148.27894,-37.27684 +2022,5,20,1,Victoria,145.69237,-37.83509 +2021,2,3,1,Victoria,146.48826,-36.94494 +2020,2,6,1,Victoria,147.48777,-37.6687 +2023,5,17,1,Victoria,146.80808,-38.38077 +2022,12,7,1,Victoria,144.19919,-37.41174 +2020,7,12,1,Victoria,144.29777,-37.48662 +2020,6,17,1,Victoria,146.81767,-38.3441 +2020,7,26,3,New South Wales,153.497,-28.685 +2022,10,4,1,Victoria,141.59391,-38.02692 +2021,11,24,1,Victoria,145.48245,-38.33854 +2022,6,1,1,Victoria,145.31342,-38.38078 +2022,3,17,1,Victoria,144.24602,-37.36987 +2020,5,11,1,Victoria,145.27092,-38.1367 +2020,2,27,1,Victoria,146.58162,-38.45087 +2022,8,26,1,Victoria,145.37122,-38.37118 +2022,9,3,1,Victoria,145.37113,-38.37121 +2021,3,11,1,Victoria,147.49357,-38.07614 +2021,11,5,1,Victoria,144.61355,-37.37203 +2022,10,19,1,Victoria,146.72176,-38.3135 +2021,9,13,1,Victoria,147.47845,-38.08896 +2023,3,22,1,Victoria,144.08732,-37.46575 +2021,10,21,1,Victoria,145.33852,-38.37522 +2023,6,6,1,Victoria,147.453,-37.64819 +2022,2,4,1,Victoria,144.4006,-37.4992 +2020,6,30,1,Victoria,147.0394,-38.47905 +2020,12,23,1,Victoria,147.19053,-38.27732 +2022,10,6,1,Victoria,141.70009,-38.20272 +2021,5,13,1,Victoria,146.79504,-38.44815 +2023,7,4,1,Victoria,144.37039,-37.43754 +2020,1,13,3,Queensland,153.33447,-27.8927 +2020,12,3,1,Victoria,146.16403,-37.36519 +2023,2,9,1,Victoria,144.09216,-37.43933 +2023,2,20,1,Victoria,144.10323,-37.50069 +2023,6,6,1,Victoria,147.453,-37.64819 +2021,4,6,1,Victoria,146.74612,-38.45241 +2020,8,28,3,Queensland,153.44433,-28.14514 +2022,8,31,1,Victoria,143.52018,-38.80639 +2023,5,23,1,Victoria,145.58869,-37.2656 +2021,5,18,1,Victoria,146.89162,-38.46519 +2021,7,30,1,Victoria,146.86527,-38.38489 +2020,3,30,1,Victoria,146.20766,-38.21041 +2021,2,3,1,Victoria,146.47705,-36.93344 +2022,9,13,1,Victoria,144.40487,-37.61261 +2021,1,19,1,Victoria,146.44267,-38.33809 +2022,11,28,1,Victoria,144.28101,-37.40037 +2020,4,17,1,Victoria,146.13229,-38.59369 +2020,4,21,1,Victoria,146.47278,-38.68411 +2022,1,21,1,Victoria,143.6197,-38.4695 +2022,8,28,1,Victoria,145.37109,-38.37116 +2022,10,13,1,Victoria,141.11707,-38.04098 +2020,3,23,1,Victoria,146.04246,-38.31205 +2020,3,30,1,Victoria,146.26787,-38.2558 +2020,4,14,1,Victoria,146.05186,-38.37919 +2021,2,26,1,Victoria,146.36946,-38.41969 +2022,8,31,1,Victoria,145.3695,-38.36938 +2021,6,5,1,Victoria,144.27868,-37.28735 +2022,7,9,1,Victoria,145.29425,-38.31104 +2022,12,7,1,Victoria,144.24702,-37.44593 +2021,10,8,1,Victoria,145.31947,-38.29376 +2021,4,12,1,Victoria,146.74229,-38.50142 +2023,4,28,1,Victoria,144.17928,-37.42164 +2020,4,24,1,Victoria,146.48262,-38.68304 +2020,7,8,1,Victoria,146.94879,-38.4672 +2022,3,1,1,Victoria,145.67996,-37.81151 +2022,1,17,1,Victoria,143.25558,-37.08084 +2022,10,5,1,Victoria,141.63781,-38.02177 +2022,4,11,1,Victoria,145.69282,-37.83522 +2021,10,22,3,Queensland,153.45014,-28.1009 +2023,6,5,1,Victoria,147.45613,-37.65504 +2020,8,23,1,Victoria,145.10485,-35.87259 +2021,5,3,1,Victoria,145.52845,-38.59676 +2020,6,9,1,Victoria,147.0125,-38.32955 +2022,10,6,1,Victoria,141.51301,-37.93183 +2023,2,3,1,Victoria,145.83058,-36.92737 +2021,4,30,1,Victoria,146.78049,-38.397 +2023,3,15,1,Victoria,145.70337,-37.5743 +2023,5,22,1,Victoria,145.58763,-37.26716 +2023,3,8,1,Victoria,144.2707,-37.34417 +2021,3,10,1,Victoria,149.7493,-37.5618 +2022,10,14,1,Victoria,140.99564,-38.02388 +2022,1,31,1,Victoria,145.43545,-38.3636 +2020,6,18,1,Victoria,147.95715,-37.7101 +2021,1,15,1,Victoria,146.26,-36.24222 +2023,1,21,1,Victoria,143.72057,-37.24717 +2021,12,4,1,Victoria,146.79123,-38.32815 +2020,4,21,1,Victoria,146.34445,-38.61929 +2022,5,6,1,Victoria,148.31403,-37.29361 +2020,12,23,1,Victoria,147.17065,-38.27476 +2022,11,14,1,Victoria,147.29991,-38.23237 +2021,5,3,1,Victoria,145.56683,-38.64616 +2023,2,27,1,Victoria,146.35205,-37.96683 +2020,11,1,1,Victoria,143.83986,-38.67093 +2021,12,11,1,Victoria,145.43599,-38.31353 +2021,2,3,1,Victoria,146.28862,-38.22037 +2021,3,31,1,Victoria,146.17252,-37.91373 +2021,12,15,1,Victoria,148.3029,-37.27999 +2020,1,17,1,Victoria,146.1638,-38.36779 +2023,3,15,1,Victoria,145.70337,-37.5743 +2020,11,24,1,Victoria,145.20323,-37.17126 +2022,8,22,1,Victoria,145.37111,-38.37125 +2022,10,4,1,Victoria,141.55233,-37.96252 +2021,7,30,1,Victoria,146.84539,-38.39351 +2023,2,13,1,Victoria,145.98763,-37.88608 +2021,4,6,1,Victoria,146.75929,-38.48415 +2022,12,20,1,Victoria,144.30648,-37.42909 +2020,5,17,1,Victoria,146.23231,-38.57223 +2020,11,26,1,Victoria,146.98947,-38.19976 +2022,5,10,1,Victoria,148.27339,-37.31806 +2023,9,18,1,Victoria,143.41095,-38.49166 +2020,6,18,1,Victoria,143.26639,-37.31139 +2022,1,15,1,Victoria,143.27838,-37.33008 +2023,4,6,3,Queensland,153.3717,-28.11533 +2021,4,30,1,Victoria,146.79088,-38.39458 +2023,2,3,1,Victoria,146.89382,-38.45906 +2021,9,12,1,Victoria,141.55695,-37.93425 +2022,9,9,1,Victoria,145.37125,-38.37135 +2021,7,12,1,Victoria,146.85087,-38.41497 +2020,2,3,1,Victoria,146.22834,-38.33978 +2021,1,9,3,Queensland,153.35717,-27.94998 +2022,3,10,1,Victoria,144.4234,-37.4105 +2021,10,27,1,Victoria,145.30266,-38.34471 +2021,1,21,1,Victoria,143.5599,-38.8307 +2022,5,2,1,Victoria,145.64015,-37.33524 +2020,4,30,1,Victoria,146.30199,-38.23437 +2022,5,27,1,Victoria,145.31631,-38.30506 +2023,3,8,1,Victoria,144.2252,-37.37434 +2023,2,15,1,Victoria,144.07224,-37.45297 +2022,12,14,1,Victoria,144.23203,-37.36501 +2022,1,16,1,Victoria,143.24861,-37.06065 +2023,1,6,1,Victoria,144.28582,-37.44201 +2021,10,15,1,Victoria,145.43551,-38.36354 +2020,12,10,1,Victoria,145.36719,-36.83966 +2020,5,17,1,Victoria,146.32919,-38.51334 +2022,3,10,1,Victoria,144.29328,-37.32759 +2022,6,28,1,Victoria,145.71117,-37.8679 +2020,4,24,1,Victoria,146.5084,-38.67751 +2023,5,18,1,Victoria,144.07526,-37.46733 +2022,10,3,1,Victoria,141.50522,-37.9823 +2022,11,29,1,Victoria,146.18151,-36.80919 +2021,8,19,1,Victoria,148.18617,-37.19261 +2023,5,23,1,Victoria,145.58712,-37.26648 +2022,5,16,1,Victoria,146.85612,-38.41602 +2022,12,13,1,Victoria,144.21195,-37.37895 +2020,8,24,1,Victoria,145.69048,-37.57732 +2020,8,28,3,Queensland,153.44458,-28.14517 +2021,9,28,1,Victoria,147.48777,-38.07252 +2020,11,4,1,Victoria,145.13611,-38.17613 +2020,3,9,1,Victoria,143.93016,-37.45369 +2021,7,22,1,Victoria,146.46128,-38.08994 +2020,3,9,1,Victoria,146.2171,-38.27292 +2023,2,8,1,Victoria,141.6177,-38.36718 +2021,11,26,1,Victoria,145.48336,-38.33796 +2022,5,9,1,Victoria,145.29333,-38.33553 +2020,3,30,1,Victoria,145.80399,-37.3618 +2021,6,6,1,Victoria,148.32462,-37.06807 +2022,8,8,1,Victoria,143.42613,-38.55123 +2020,12,23,1,Victoria,147.27083,-38.23759 +2020,4,21,1,Victoria,146.46893,-38.68386 +2022,9,28,1,Victoria,146.3735,-37.94445 +2021,3,15,1,Victoria,146.32469,-38.48367 +2023,9,18,1,Victoria,143.41214,-38.49197 +2020,2,27,1,Victoria,146.62743,-38.46123 +2022,10,12,1,Victoria,141.26562,-38.03486 +2022,12,8,1,Victoria,144.18515,-37.3927 +2020,2,19,1,Victoria,146.27795,-38.52203 +2022,9,2,1,Victoria,145.36989,-38.36948 +2020,11,13,1,Victoria,146.26058,-38.28099 +2023,3,8,1,Victoria,144.22764,-37.36495 +2022,8,17,1,Victoria,146.84668,-38.46531 +2023,3,8,1,Victoria,144.22764,-37.36495 +2022,10,13,1,Victoria,141.25155,-38.04784 +2021,9,14,1,Victoria,145.6981,-37.82821 +2022,2,4,1,Victoria,145.64755,-37.02649 +2022,7,2,1,Victoria,145.28496,-38.34772 +2023,4,19,1,Victoria,143.83595,-37.72521 +2020,2,19,1,Victoria,146.28803,-38.5315 +2022,10,6,1,Victoria,141.45833,-38.13507 +2020,8,31,1,Victoria,143.96636,-38.54658 +2020,12,10,1,Victoria,145.35388,-36.84388 +2021,1,17,1,Victoria,145.83093,-37.78796 +2022,10,5,1,Victoria,141.44225,-37.87548 +2021,6,22,1,Victoria,145.68794,-37.57705 +2022,10,4,1,Victoria,141.53067,-37.96648 +2022,12,5,1,Victoria,144.28536,-37.34419 +2022,12,7,1,Victoria,144.23898,-37.36747 +2020,4,24,1,Victoria,146.40158,-38.6265 +2020,4,9,1,Victoria,145.59794,-37.95795 +2022,5,23,1,Victoria,148.29031,-37.30262 +2023,1,29,1,Victoria,144.17528,-37.43032 +2020,2,3,1,Victoria,146.23444,-38.31546 +2021,6,15,3,Queensland,153.27776,-27.978 +2023,3,8,1,Victoria,144.22681,-37.37042 +2023,6,6,1,Victoria,144.25205,-35.74597 +2020,8,24,1,Victoria,143.25426,-38.30507 +2022,10,6,1,Victoria,141.73755,-38.20905 +2023,6,5,1,Victoria,147.45613,-37.65504 +2022,10,13,1,Victoria,141.11381,-38.04566 +2021,3,19,1,Victoria,147.49084,-38.09544 +2021,11,2,1,Victoria,145.43549,-38.3634 +2021,11,6,1,Victoria,145.40994,-38.36183 +2022,10,8,1,Victoria,141.45636,-37.95098 +2020,5,6,1,Victoria,146.54511,-38.64966 +2022,11,8,1,Victoria,145.69553,-37.89669 +2023,5,23,1,Victoria,145.58888,-37.26635 +2023,2,13,1,Victoria,145.98441,-37.8833 +2022,1,16,1,Victoria,143.29235,-37.08782 +2023,5,22,1,Victoria,145.58754,-37.26762 +2020,1,17,1,Victoria,146.17408,-38.36072 +2020,9,30,1,Victoria,146.28231,-38.29999 +2021,1,19,1,Victoria,146.46824,-38.34318 +2023,2,14,1,Victoria,144.09971,-37.40039 +2022,11,29,1,Victoria,144.25305,-37.34915 +2021,9,27,1,Victoria,145.36895,-38.32961 +2021,11,21,1,Victoria,146.77975,-38.3257 +2023,2,21,1,Victoria,145.39259,-37.81755 +2023,6,17,1,Victoria,145.38333,-37.48291 +2021,8,20,1,Victoria,145.27579,-38.36573 +2020,4,7,1,Victoria,149.7373,-37.5501 +2021,7,10,1,Queensland,151.996658,-27.6617 +2020,8,16,1,Queensland,152.34149,-27.83211 +2020,9,15,1,Queensland,152.346775,-27.82761 +2020,9,15,1,Queensland,152.34396,-27.83218 +2020,6,21,1,Queensland,152.91544,-27.38155 +2020,8,16,1,Queensland,152.346094,-27.834955 +2021,8,25,1,Queensland,152.08715,-27.695383 +2020,9,15,1,Queensland,152.34387,-27.832323 +2020,8,5,1,Queensland,151.652,-28.048 +2020,8,16,1,Queensland,152.344792,-27.832568 +2020,11,30,1,Queensland,152.9614,-27.27645 +2020,8,29,1,Queensland,152.906334,-25.368472 +2020,8,16,1,Queensland,152.343517,-27.833216 +2020,8,30,1,Queensland,152.345279,-27.828226 +2021,3,28,1,Queensland,152.067754,-27.691474 +2020,8,16,1,Queensland,152.342691,-27.835358 +2020,8,16,1,Queensland,152.34258,-27.83294 +2021,8,25,1,Queensland,152.08237,-27.70093 +2020,8,30,1,Queensland,152.345763,-27.82643 +2020,5,24,1,Queensland,153.0416,-26.3822 +2020,8,16,1,Queensland,152.34555,-27.83329 +2021,7,11,1,Queensland,151.986113,-27.636392 +2020,11,6,1,Queensland,152.40304,-27.547967 +2020,8,30,1,Queensland,152.3446,-27.83185 +2021,3,7,1,Queensland,152.09119,-27.67891 +2020,9,14,1,Queensland,152.247423,-27.495892 +2020,1,26,1,Queensland,152.19263,-27.262091 +2021,3,29,1,Queensland,152.8084,-26.4256 +2020,9,30,1,Queensland,152.8054,-26.4256 +2020,9,7,1,Queensland,152.9856,-26.432 +2020,8,16,1,Queensland,152.34073,-27.83319 +2020,7,1,1,Queensland,152.8641,-26.3777 +2020,1,8,1,Queensland,152.6734,-26.320189 +2020,8,8,1,Queensland,153.05286,-27.54013 +2020,1,13,1,Queensland,152.288056,-27.516389 +2020,9,1,1,Queensland,153.0295,-26.3785 +2020,8,16,1,Queensland,152.34291,-27.8336 +2020,11,10,1,Queensland,152.8823,-26.4302 +2020,8,30,1,Queensland,152.34761,-27.82537 +2021,3,7,1,Queensland,152.09126,-27.67781 +2021,2,20,1,Queensland,152.9803,-26.314 +2020,9,15,1,Queensland,152.3441,-27.83231 +2020,9,6,1,Queensland,153.0127,-26.3497 +2020,9,15,1,Queensland,152.34599,-27.82655 +2021,9,24,1,Queensland,152.64671,-27.61103 +2020,9,15,1,Queensland,152.34473,-27.8294 +2021,4,24,1,Queensland,152.386078,-27.784097 +2020,1,20,1,Queensland,152.249513,-27.496634 +2020,8,30,1,Queensland,152.347435,-27.825054 +2020,9,15,1,Queensland,152.344089,-27.831982 +2020,8,30,1,Queensland,152.344607,-27.830468 +2020,8,30,1,Queensland,152.34756,-27.82642 +2020,9,15,1,Queensland,152.34422,-27.83225 +2020,8,30,1,Queensland,152.344573,-27.829882 +2020,8,30,1,Queensland,152.34666,-27.82574 +2020,1,25,1,Queensland,153.019726,-26.37824 +2020,8,16,1,Queensland,152.343842,-27.833397 +2020,1,11,1,Queensland,152.250014,-27.495256 +2020,7,18,1,Queensland,152.9842,-26.3983 +2020,8,30,1,Queensland,152.34465,-27.83026 +2020,8,30,1,Queensland,152.34401,-27.83196 +2020,8,30,1,Queensland,152.3476,-27.82438 +2020,9,14,1,Queensland,152.139254,-27.572391 +2020,8,16,1,Queensland,152.341037,-27.832925 +2020,8,1,1,Queensland,152.9297,-26.3666 +2020,8,16,1,Queensland,152.341864,-27.830204 +2021,5,19,1,Queensland,152.9148,-26.4474 +2021,9,13,1,Queensland,152.8152,-26.3474 +2020,6,27,1,Queensland,152.8151,-26.3612 +2020,1,5,1,Queensland,152.243087,-27.488974 +2020,8,30,1,Queensland,152.082855,-27.546171 +2021,2,22,1,Queensland,153.0335,-26.33 +2020,10,18,1,Queensland,152.9055,-26.274 +2020,8,30,1,Queensland,152.34476,-27.829369 +2021,7,19,1,Queensland,152.9875,-26.3482 +2021,7,10,1,Queensland,151.992367,-27.65965 +2020,9,15,1,Queensland,152.34442,-27.83216 +2020,8,16,1,Queensland,152.33936,-27.83242 +2020,8,30,1,Queensland,152.34749,-27.82582 +2021,3,7,1,Queensland,152.09187,-27.6776 +2020,9,15,1,Queensland,152.34605,-27.82658 +2020,8,25,1,Queensland,153.04677,-26.46924 +2020,9,3,1,Queensland,152.944802,-26.479631 +2020,8,16,1,Queensland,152.34586,-27.83535 +2020,1,3,1,Queensland,152.183727,-27.533879 +2020,3,29,1,Queensland,152.44037,-27.41488 +2021,3,7,1,Queensland,152.053136,-27.722035 +2021,9,27,1,Queensland,152.260841,-27.580246 +2021,3,28,1,Queensland,152.068253,-27.690957 +2020,8,16,1,Queensland,152.339441,-27.832238 +2020,8,16,1,Queensland,152.343817,-27.832166 +2020,9,27,1,Queensland,152.247495,-27.496009 +2020,10,28,1,Queensland,153.0098,-26.4441 +2020,1,13,1,Queensland,151.9891,-27.6613 +2020,11,6,1,Queensland,153.058,-27.547 +2020,8,30,1,Queensland,152.34738,-27.824575 +2020,8,30,1,Queensland,152.346207,-27.826645 +2020,8,19,1,Queensland,152.343993,-27.831947 +2020,12,27,1,Queensland,152.9265,-27.2841 +2020,1,16,1,Queensland,152.714081,-26.219686 +2020,2,3,1,Queensland,152.256567,-26.072733 +2020,8,30,1,Queensland,152.346031,-27.826623 +2020,8,30,1,Queensland,152.344586,-27.830645 +2020,10,8,1,Queensland,152.089933,-27.703844 +2020,9,15,1,Queensland,152.139444,-27.571699 +2020,6,,1,Queensland,153.0055,-26.4344 +2020,11,5,1,Queensland,152.264254,-27.572691 +2020,1,6,1,Queensland,153.0052,-26.4347 +2020,7,16,1,Queensland,152.8244,-25.3435 +2020,8,30,1,Queensland,152.34453,-27.8308 +2020,8,30,1,Queensland,152.34695,-27.82682 +2020,8,30,1,Queensland,152.344905,-27.829095 +2020,9,15,1,Queensland,152.34593,-27.8266 +2021,7,1,1,Queensland,153.0028,-26.4216 +2020,8,16,1,Queensland,152.34625,-27.83441 +2020,8,16,1,Queensland,152.33946,-27.83342 +2020,8,31,1,Queensland,152.40141,-27.456986 +2021,3,7,1,Queensland,152.09142,-27.67764 +2020,9,9,1,Queensland,152.9838,-26.4035 +2020,10,10,1,Queensland,152.138528,-27.572007 +2021,7,10,1,Queensland,151.99214,-27.659452 +2020,8,3,1,Queensland,153.05286,-27.54013 +2020,1,31,1,Queensland,152.782317,-26.040383 +2020,10,8,1,Queensland,152.090698,-27.704376 +2020,9,14,1,Queensland,152.247305,-27.495829 +2021,8,28,1,Queensland,151.988682,-27.595212 +2020,7,1,1,Queensland,152.8645,-26.3772 +2020,8,30,1,Queensland,152.34451,-27.83191 +2020,9,15,1,Queensland,152.34427,-27.83235 +2021,8,25,1,Queensland,152.08675,-27.695017 +2020,9,15,1,Queensland,152.34407,-27.83245 +2020,1,17,1,Queensland,152.8739,-26.3875 +2020,9,15,1,Queensland,152.34482,-27.82932 +2020,5,2,1,Queensland,152.043198,-27.648624 +2020,8,30,1,Queensland,152.345834,-27.827648 +2021,8,25,1,Queensland,152.08235,-27.70095 +2020,8,29,1,Queensland,152.339462,-27.833432 +2020,8,16,1,Queensland,152.345211,-27.833903 +2020,8,16,1,Queensland,152.345412,-27.833231 +2020,9,15,1,Queensland,152.34596,-27.82656 +2020,8,30,1,Queensland,152.344716,-27.829213 +2020,8,16,1,Queensland,152.339143,-27.833104 +2020,8,30,1,Queensland,152.34637,-27.82652 +2020,9,15,1,Queensland,152.34578,-27.82644 +2020,8,30,1,Queensland,152.34448,-27.83147 +2020,1,25,1,Queensland,153.105672,-26.379671 +2020,7,22,1,Queensland,152.055,-27.643611 +2020,8,30,1,Queensland,152.34409,-27.83197 +2020,1,5,1,Queensland,152.9407,-26.3695 +2020,1,3,1,Queensland,152.9406,-26.3696 +2020,3,29,1,Queensland,152.59024,-27.4694 +2021,5,8,1,Queensland,152.04334,-27.649093 +2020,8,30,1,Queensland,152.34491,-27.82929 +2020,9,15,1,Queensland,152.344645,-27.829193 +2020,3,8,1,Queensland,152.4751,-27.5525 +2020,9,15,1,Queensland,152.34464,-27.82941 +2021,7,10,1,Queensland,151.995221,-27.658951 +2020,9,15,1,Queensland,152.345907,-27.826346 +2020,7,29,1,Queensland,153.05929,-26.47856 +2020,8,30,1,Queensland,152.34492,-27.83179 +2020,9,15,1,Queensland,152.345847,-27.826345 +2021,8,25,1,Queensland,152.086983,-27.695367 +2020,9,15,1,Queensland,152.34616,-27.82639 +2020,8,30,1,Queensland,152.34544,-27.83109 +2021,8,25,1,Queensland,152.082205,-27.700785 +2020,6,15,1,Queensland,152.8044,-26.4258 +2021,5,30,1,Queensland,152.086861,-27.718983 +2020,8,31,1,Queensland,152.9449,-26.3002 +2021,9,15,1,Queensland,152.383653,-27.781212 +2021,8,25,1,Queensland,152.0869,-27.69505 +2020,1,8,1,Queensland,152.368532,-27.451318 +2020,1,10,1,Queensland,152.087415,-27.530585 +2020,8,30,1,Queensland,152.345943,-27.826654 +2020,8,30,1,Queensland,152.8074,-26.4264 +2021,8,25,1,Queensland,152.400742,-27.474217 +2020,3,28,1,Queensland,152.9043,-27.12888 +2020,1,18,1,Queensland,151.9564,-27.6495 +2020,9,30,1,Queensland,151.576014,-27.823225 +2020,9,15,1,Queensland,152.34473,-27.82916 +2020,8,30,1,Queensland,152.344572,-27.82943 +2020,1,2,1,Queensland,152.677894,-26.35855 +2020,9,15,1,Queensland,152.34464,-27.82937 +2020,1,20,1,Queensland,152.440975,-26.204831 +2020,10,9,1,Queensland,153.083,-27.7008 +2020,8,30,1,Queensland,152.34732,-27.82593 +2021,5,29,1,Queensland,152.420284,-27.24317 +2020,9,14,1,Queensland,152.246571,-27.494927 +2021,1,4,1,Queensland,152.95805,-27.26691 +2021,5,8,1,Queensland,152.04343,-27.64864 +2020,4,29,1,Queensland,152.9457,-26.369 +2021,9,23,1,Queensland,152.538969,-27.469653 +2020,3,31,1,Queensland,149.032883,-25.219035 +2020,8,30,1,Queensland,152.345813,-27.826472 +2020,1,9,1,Queensland,152.426806,-28.225833 +2020,8,30,1,Queensland,152.34445,-27.83173 +2020,8,16,1,Queensland,152.344678,-27.832327 +2021,3,7,1,Queensland,152.053524,-27.722206 +2020,8,16,1,Queensland,152.3436,-27.83434 +2020,1,18,1,Queensland,152.662969,-26.242361 +2020,9,26,1,Queensland,152.248252,-27.496345 +2020,8,30,1,Queensland,152.34746,-27.82594 +2020,5,14,1,Queensland,152.139254,-27.572391 +2020,8,16,1,Queensland,152.344879,-27.835484 +2020,1,16,1,Queensland,152.714081,-26.219686 +2020,8,30,1,Queensland,152.344449,-27.829295 +2020,12,20,1,Queensland,153.04891,-27.54156 +2020,1,25,1,Queensland,153.027582,-26.38778 +2020,11,6,1,Queensland,153.058,-27.547 +2020,7,13,1,Queensland,145.452496,-17.535123 +2020,7,1,1,Queensland,152.8638,-26.38 +2021,4,23,1,Queensland,152.7818,-26.3632 +2020,9,15,1,Queensland,152.34445,-27.83216 +2021,4,24,1,Queensland,152.95778,-27.26712 +2021,3,7,1,Queensland,152.01619,-27.6737 +2020,9,15,1,Queensland,152.344414,-27.832173 +2020,9,15,1,Queensland,152.34425,-27.83232 +2021,4,26,1,Queensland,152.076107,-27.666437 +2020,8,30,1,Queensland,152.344575,-27.831286 +2020,10,17,1,Queensland,152.9406,-26.3696 +2021,6,25,1,Queensland,152.8059,-26.4291 +2020,9,20,1,Queensland,152.020556,-27.651667 +2020,5,2,1,Queensland,152.0469,-27.64895 +2020,8,30,1,Queensland,152.34689,-27.82558 +2020,8,6,1,Queensland,152.983389,-26.470192 +2020,9,6,1,Queensland,152.8384,-26.3713 +2020,1,26,1,Queensland,152.192894,-27.262304 +2021,6,19,1,Queensland,151.63063,-27.36513 +2020,8,16,1,Queensland,152.342732,-27.834383 +2020,9,22,1,Queensland,152.01529,-27.67385 +2020,11,5,1,Queensland,150.38849,-27.85068 +2021,8,16,1,Queensland,152.815,-26.3613 +2020,8,29,1,Queensland,152.339471,-27.833192 +2020,7,9,1,Queensland,153.06665,-27.215553 +2020,9,15,1,Queensland,152.139444,-27.571699 +2020,8,16,1,Queensland,152.342157,-27.830304 +2020,1,20,1,Queensland,152.827689,-26.363159 +2020,1,24,1,Queensland,153.105644,-26.37968 +2020,8,30,1,Queensland,152.34457,-27.829335 +2020,4,23,1,Queensland,152.9406,-26.3696 +2020,9,15,1,Queensland,152.34418,-27.83231 +2020,8,30,1,Queensland,152.346173,-27.826681 +2021,6,30,1,Queensland,152.669935,-25.59219 +2020,8,30,1,Queensland,152.3463,-27.82643 +2020,9,14,1,Queensland,152.246644,-27.495039 +2020,9,15,1,Queensland,152.34467,-27.82929 +2020,6,18,1,Queensland,153.1105,-26.3988 +2020,8,30,1,Queensland,152.344942,-27.828931 +2021,5,8,1,Queensland,152.04329,-27.6488 +2021,8,29,1,Queensland,152.52467,-27.37071 +2020,8,4,1,Queensland,152.1833,-27.53118 +2020,8,16,1,Queensland,152.339007,-27.832768 +2020,8,14,1,Queensland,151.843413,-28.760322 +2020,8,30,1,Queensland,152.3459,-27.82633 +2020,1,26,1,Queensland,153.105796,-26.379675 +2020,8,16,1,Queensland,152.34277,-27.83249 +2020,6,1,1,Queensland,152.8044,-26.4258 +2020,2,15,1,Queensland,152.4739,-27.5506 +2020,1,25,1,Queensland,153.019726,-26.37824 +2020,8,20,1,Queensland,152.88143,-26.40096 +2021,8,25,1,Queensland,152.086983,-27.695033 +2020,9,15,1,Queensland,152.34459,-27.82939 +2020,11,16,1,Queensland,152.49315,-27.51508 +2021,8,25,1,Queensland,152.086983,-27.6953 +2020,1,11,1,Queensland,152.250185,-27.495132 +2020,8,16,1,Queensland,152.8074,-26.4264 +2020,2,2,1,Queensland,153.03792,-26.37806 +2021,3,7,1,Queensland,152.052974,-27.722131 +2021,10,18,1,Queensland,151.993864,-27.503392 +2020,8,30,1,Queensland,152.34418,-27.83197 +2021,3,24,1,Queensland,152.95805,-27.26702 +2020,9,15,1,Queensland,152.3447,-27.82925 +2020,1,29,1,Queensland,152.10828,-27.65907 +2020,8,30,1,Queensland,152.345019,-27.8285 +2020,9,15,1,Queensland,152.34615,-27.82657 +2020,11,1,1,Queensland,152.012908,-27.675122 +2020,7,11,1,Queensland,153.1096,-26.3979 +2020,8,25,1,Queensland,152.18343,-27.554031 +2020,8,30,1,Queensland,152.346584,-27.825701 +2021,1,5,1,Queensland,153.059722,-27.531389 +2020,10,11,1,Queensland,151.986684,-27.645184 +2020,8,30,1,Queensland,152.346339,-27.825935 +2020,8,16,1,Queensland,152.343204,-27.833652 +2021,3,7,1,Queensland,152.01173,-27.67454 +2020,8,30,1,Queensland,152.34456,-27.83006 +2020,9,15,1,Queensland,152.3441,-27.83205 +2021,3,13,1,Queensland,153.0862,-27.50661 +2021,7,10,1,Queensland,151.9967,-27.661707 +2020,8,30,1,Queensland,152.34454,-27.83114 +2021,9,25,1,Queensland,152.8059,-26.4291 +2020,8,30,1,Queensland,152.344909,-27.828916 +2020,2,5,1,Queensland,152.665842,-26.410239 +2020,8,16,1,Queensland,152.3427,-27.83425 +2020,8,30,1,Queensland,152.3472,-27.82548 +2021,9,17,1,Queensland,152.68843,-27.681513 +2020,8,16,1,Queensland,152.34308,-27.83372 +2020,7,3,1,Queensland,153.0388,-26.3741 +2020,8,30,1,Queensland,152.34427,-27.830722 +2020,8,30,1,Queensland,152.34453,-27.83009 +2020,8,12,1,Queensland,152.7812,-26.3617 +2020,9,15,1,Queensland,152.34576,-27.8264 +2020,9,,1,Queensland,145.335111,-18.189889 +2020,12,16,1,Queensland,153.0284,-26.3822 +2020,9,15,1,Queensland,152.345943,-27.826347 +2020,8,30,1,Queensland,152.3445,-27.82996 +2020,8,28,1,Queensland,152.7925,-26.39 +2021,3,7,1,Queensland,152.012803,-27.674797 +2021,3,28,1,Queensland,152.067839,-27.691852 +2020,8,16,1,Queensland,152.343767,-27.835246 +2021,9,5,1,Queensland,152.92256,-27.38561 +2020,8,30,1,Queensland,152.344161,-27.831923 +2020,1,25,1,Queensland,153.0532,-26.4181 +2020,8,30,1,Queensland,152.34464,-27.83169 +2020,4,17,1,Queensland,152.401805,-27.457201 +2020,8,16,1,Queensland,152.34628,-27.834168 +2020,11,30,1,Queensland,152.8597,-26.4548 +2020,9,15,1,Queensland,152.34396,-27.832102 +2020,9,15,1,Queensland,152.3459,-27.82662 +2021,4,10,1,Queensland,152.060257,-27.714831 +2020,7,14,1,Queensland,152.311113,-27.532045 +2020,9,24,1,Queensland,151.947427,-27.628364 +2020,8,16,1,Queensland,152.34419,-27.83239 +2020,1,7,1,Queensland,152.666044,-26.395531 +2020,9,15,1,Queensland,152.34438,-27.83224 +2020,8,30,1,Queensland,152.346549,-27.825871 +2020,8,30,1,Queensland,152.347591,-27.825213 +2020,8,22,1,Queensland,152.8502,-26.3971 +2020,8,30,1,Queensland,152.347927,-27.824243 +2021,3,28,1,Queensland,152.068275,-27.690883 +2020,9,12,1,Queensland,151.891891,-27.710759 +2020,8,16,1,Queensland,152.34294,-27.83502 +2020,10,8,1,Queensland,153.27689,-27.837638 +2020,8,27,1,Queensland,152.017505,-27.379184 +2021,9,16,1,Queensland,152.815,-26.3613 +2021,5,8,1,Queensland,152.043255,-27.648861 +2020,12,23,1,Queensland,152.075671,-27.725696 +2020,1,24,1,Queensland,153.027662,-26.38779 +2020,9,15,1,Queensland,152.34431,-27.83237 +2021,4,19,1,Queensland,152.075121,-27.687196 +2021,5,30,1,Queensland,152.086803,-27.719116 +2020,1,21,1,Queensland,152.788997,-26.058706 +2020,11,17,1,Queensland,152.4743,-27.5289 +2021,9,27,1,Queensland,152.11112,-27.566148 +2020,9,3,1,Queensland,152.1924,-27.8329 +2020,5,4,1,Queensland,153.04533,-27.55123 +2020,8,16,1,Queensland,152.34518,-27.832329 +2020,8,30,1,Queensland,152.347614,-27.825779 +2021,6,29,1,Queensland,151.278411,-27.167539 +2021,3,16,1,Queensland,152.469768,-27.635562 +2021,5,30,1,Queensland,152.086921,-27.718067 +2021,8,7,1,Queensland,152.815,-26.3613 +2020,11,19,1,Queensland,152.439167,-27.531945 +2020,8,30,1,Queensland,152.34595,-27.82775 +2021,9,2,1,Queensland,153.0028,-26.4216 +2020,8,30,1,Queensland,152.34641,-27.82675 +2021,9,27,1,Queensland,152.9603,-26.4046 +2020,10,15,1,Queensland,152.807,-26.4297 +2020,8,16,1,Queensland,152.34131,-27.83215 +2020,8,16,1,Queensland,152.345877,-27.835493 +2020,8,16,1,Queensland,152.342843,-27.832662 +2020,9,15,1,Queensland,152.34459,-27.82926 +2020,9,3,1,Queensland,151.58032,-27.361137 +2020,8,16,1,Queensland,152.34265,-27.83319 +2020,1,8,1,Queensland,152.369909,-27.455387 +2020,8,16,1,Queensland,152.34375,-27.83376 +2020,9,15,1,Queensland,152.34402,-27.83204 +2020,10,18,1,Queensland,152.811,-26.4242 +2020,8,14,1,Queensland,152.247373,-27.495756 +2021,3,10,1,Queensland,152.084073,-27.535116 +2020,9,15,1,Queensland,152.34399,-27.83223 +2021,5,16,1,Queensland,152.8072,-26.4261 +2020,8,30,1,Queensland,152.344683,-27.830067 +2021,2,7,1,Queensland,153.053,-27.54 +2021,3,7,1,Queensland,152.01167,-27.67452 +2020,1,22,1,Queensland,152.575753,-26.202875 +2020,8,16,1,Queensland,152.346171,-27.83401 +2021,8,25,1,Queensland,152.087003,-27.695155 +2020,1,22,1,Queensland,152.575753,-26.202875 +2021,8,29,1,Queensland,152.251552,-27.535329 +2020,11,7,1,Queensland,152.09124,-27.531528 +2020,4,10,1,Queensland,150.4838,-26.814289 +2020,8,16,1,Queensland,152.340548,-27.833115 +2020,11,24,1,Queensland,148.23574,-25.060133 +2020,12,23,1,Queensland,152.07098,-27.72605 +2020,9,15,1,Queensland,152.344121,-27.832249 +2020,8,16,1,Queensland,152.34447,-27.83207 +2022,10,8,1,Queensland,153.08099,-27.510022 +2024,4,1,1,Queensland,153.092078,-27.527056 +2023,10,1,1,Queensland,153.093543,-27.524683 +2024,5,6,1,Queensland,152.60907,-27.39632 +2020,7,24,1,Victoria,146.16382,-38.671253 +2020,2,5,1,New South Wales,153.367526,-28.259 +2023,2,18,1,Queensland,152.24933,-27.49628 +2020,4,13,1,Queensland,153.08429,-27.5124 +2024,9,18,1,Queensland,153.042423,-27.53711 +2022,9,10,1,Queensland,153.378882,-27.917746 +2023,3,30,1,Victoria,146.71514,-36.36651 +2023,12,31,1,Queensland,153.07542,-27.541165 +2024,7,8,1,South Australia,138.732753,-34.89008 +2022,4,27,1,Queensland,152.842855,-28.091609 +2024,9,7,1,Queensland,153.448252,-28.10129 +2022,10,29,1,Victoria,144.664262,-37.43513 +2022,7,2,1,New South Wales,153.485,-28.578853 +2024,8,26,1,Queensland,151.80221,-26.156575 +2024,4,15,1,Queensland,151.935317,-27.32545 +2024,11,23,1,Queensland,153.10334,-27.529252 +2024,1,28,1,Victoria,146.164214,-38.6713 +2021,2,26,1,Queensland,152.992858,-27.241873 +2023,12,18,1,Queensland,152.598212,-28.167314 +2023,2,26,1,Queensland,151.889374,-27.597174 +2023,12,25,1,Queensland,153.091443,-27.527332 +2023,10,30,1,Queensland,153.18715,-28.195481 +2023,12,23,1,Queensland,153.087697,-27.511247 +2023,11,24,1,Queensland,151.749848,-26.155061 +2024,4,22,1,Victoria,143.512725,-38.83362 +2020,12,10,1,Queensland,153.068944,-27.525904 +2020,12,4,1,Queensland,153.055679,-27.537782 +2020,11,3,1,Queensland,153.058527,-27.551409 +2022,4,30,1,Queensland,151.698213,-26.17879 +2024,11,17,1,Queensland,153.090545,-27.526046 +2023,8,20,1,Queensland,152.03325,-27.648108 +2020,2,9,1,Victoria,146.672032,-36.385547 +2021,11,16,1,Victoria,143.582405,-38.827487 +2021,4,20,1,Queensland,153.456543,-28.094746 +2023,11,16,1,Queensland,151.566135,-27.79596 +2023,10,27,1,Queensland,151.851777,-27.428351 +2020,7,22,1,Victoria,146.16382,-38.671263 +2024,6,1,1,Queensland,153.074671,-27.546837 +2024,5,11,1,Queensland,153.090386,-27.526781 +2023,9,18,1,Queensland,153.111638,-27.529179 +2024,2,11,1,Queensland,153.092369,-27.525152 +2023,11,8,1,Queensland,153.192573,-27.703054 +2024,11,17,1,Queensland,153.092777,-27.52813 +2020,1,2,1,New South Wales,153.555985,-28.371821 +2024,10,5,1,Queensland,153.19019,-27.701741 +2022,10,8,1,South Australia,138.65507,-35.00565 +2023,10,22,1,South Australia,138.826933,-34.692015 +2022,1,9,1,Victoria,144.087006,-37.630375 +2024,2,21,1,Queensland,152.656845,-28.106754 +2024,9,19,1,Queensland,153.092014,-27.524688 +2021,8,5,1,Queensland,152.95375,-27.279713 +2024,10,29,1,South Australia,138.637498,-35.004945 +2023,2,4,1,South Australia,138.72697,-34.912955 +2022,7,10,1,Queensland,152.18901,-27.456754 +2020,7,29,1,New South Wales,149.79567,-30.829557 +2024,11,5,1,Victoria,145.296083,-38.382837 +2024,2,25,1,Queensland,153.091695,-27.527132 +2024,8,31,1,Queensland,153.03847,-27.532599 +2023,6,14,1,Queensland,153.07515,-27.506812 +2021,5,8,1,New South Wales,153.401718,-28.259903 +2024,6,23,1,Queensland,153.09109,-27.526898 +2024,9,29,1,South Australia,138.601196,-35.46043 +2024,5,13,1,Queensland,153.082947,-27.510502 +2023,10,19,1,Queensland,153.440789,-27.393467 +2021,2,10,1,Queensland,153.059824,-27.550408 +2024,7,14,1,Queensland,153.091355,-27.5271 +2024,3,17,1,Victoria,143.915059,-38.48199 +2022,12,9,1,Queensland,153.11256,-27.527927 +2024,3,9,1,Queensland,153.092595,-27.527552 +2024,8,23,1,New South Wales,151.407319,-32.973207 +2024,11,4,1,New South Wales,150.900923,-34.002369 +2024,3,22,1,Queensland,153.07314,-27.545735 +2023,10,14,1,South Australia,138.826933,-34.692015 +2024,9,13,1,South Australia,138.708286,-34.93271 +2023,10,4,1,South Australia,138.72231,-34.88983 +2024,6,18,1,Queensland,152.612644,-27.338633 +2021,3,15,1,South Australia,138.636708,-34.990545 +2023,10,29,1,Queensland,153.092045,-27.527168 +2022,1,10,1,Queensland,153.086488,-27.509237 +2020,1,11,1,Victoria,142.97785,-38.498491 +2023,10,12,1,Queensland,153.1221,-27.781462 +2023,3,15,1,South Australia,138.67047,-35.015931 +2023,10,15,1,Queensland,153.03605,-27.535159 +2020,9,15,1,Queensland,153.057987,-27.550899 +2024,4,8,1,New South Wales,153.306642,-28.816045 +2022,10,29,1,South Australia,138.604668,-35.01417 +2020,9,12,1,Queensland,153.059553,-27.548953 +2024,10,16,1,Queensland,152.993576,-27.823506 +2023,4,30,1,Queensland,153.00101,-27.284697 +2023,12,30,1,South Australia,136.808184,-35.960526 +2023,11,18,1,Queensland,153.19019,-27.701741 +2022,11,23,1,Queensland,151.906508,-27.459393 +2022,10,1,1,Victoria,147.754464,-37.90878 +2024,1,13,1,Queensland,152.046465,-27.257145 +2024,11,6,1,Queensland,151.99382,-27.557308 +2023,1,11,1,Queensland,153.0992,-27.56598 +2024,10,7,1,Queensland,153.103072,-27.527937 +2023,5,20,1,Queensland,153.368468,-27.901418 +2024,4,25,1,Queensland,153.10668,-27.528921 +2023,3,24,1,New South Wales,152.90535,-31.44325 +2024,7,14,1,Queensland,153.090482,-27.526908 +2022,12,30,1,New South Wales,146.595397,-34.773438 +2024,1,4,1,Queensland,152.051147,-27.26722 +2024,6,23,1,New South Wales,150.6015,-29.870286 +2022,1,12,1,Victoria,143.884406,-37.585154 +2024,9,14,1,Queensland,153.090767,-27.526752 +2023,7,9,1,Queensland,153.092036,-27.527035 +2020,12,23,1,Victoria,141.582362,-38.01889 +2022,8,7,1,Victoria,143.882689,-37.58597 +2023,12,16,1,Queensland,153.108202,-27.52723 +2023,12,18,1,Victoria,145.25327,-38.135703 +2023,9,21,1,New South Wales,153.401521,-28.260205 +2024,2,12,1,Queensland,153.105216,-27.529213 +2023,11,2,1,Queensland,151.880686,-27.425042 +2023,1,28,1,Queensland,153.09227,-27.524947 +2021,3,24,1,Victoria,143.97476,-38.386628 +2023,3,27,1,Queensland,153.10923,-27.527279 +2022,5,21,1,New South Wales,152.073595,-32.722253 +2020,9,26,1,South Australia,138.736844,-34.804894 +2021,8,28,1,South Australia,138.773711,-34.878983 +2024,9,20,1,South Australia,138.671264,-35.022412 +2021,12,25,1,Victoria,149.757913,-37.563085 +2020,11,29,1,South Australia,138.706249,-34.902456 +2024,9,20,1,Queensland,153.082727,-27.506664 +2020,10,27,1,New South Wales,153.377476,-28.25408 +2023,10,14,1,Queensland,153.090716,-27.525877 +2022,7,27,1,Queensland,153.065602,-27.539385 +2024,3,2,1,Queensland,153.093556,-27.524531 +2023,7,19,1,Queensland,152.102433,-27.568828 +2023,7,1,1,Queensland,153.091466,-27.527362 +2022,10,30,1,Queensland,153.085728,-27.51025 +2022,6,5,1,South Australia,138.70685,-34.903257 +2022,4,15,1,South Australia,138.826933,-34.692015 +2024,10,30,1,Queensland,153.05467,-27.552137 +2024,7,13,1,Queensland,153.090512,-27.527049 +2020,2,3,1,Queensland,153.058617,-27.548209 +2022,10,15,1,Queensland,146.871548,-19.123466 +2020,4,1,1,South Australia,138.695029,-34.957443 +2023,10,2,1,Queensland,153.092166,-27.52549 +2023,9,3,1,Victoria,144.165694,-37.866714 +2023,6,2,1,Queensland,153.108208,-27.529281 +2022,11,29,1,South Australia,138.64363,-34.884838 +2023,8,14,1,Queensland,153.111768,-27.524393 +2023,10,2,1,Queensland,153.188853,-27.725513 +2024,11,8,1,Queensland,153.39958,-27.497734 +2024,10,17,1,Victoria,144.105005,-37.570955 +2024,8,16,1,Queensland,153.070087,-27.510652 +2022,5,2,1,Queensland,153.282573,-27.533451 +2023,11,4,1,Queensland,153.093282,-27.526012 +2024,3,23,1,Victoria,146.400422,-38.517594 +2024,6,11,1,Queensland,153.268527,-28.007401 +2023,4,24,1,New South Wales,149.287553,-36.056717 +2024,1,13,1,Queensland,151.762506,-26.16856 +2024,10,21,1,Queensland,153.091666,-27.527047 +2024,11,16,1,Queensland,152.048553,-27.260263 +2024,4,1,1,Queensland,153.106752,-27.528802 +2024,5,2,1,South Australia,138.623428,-34.858712 +2021,12,21,1,Queensland,153.083922,-27.50543 +2024,10,5,1,Queensland,151.967182,-26.240115 +2024,4,2,1,Victoria,141.543066,-38.410426 +2024,4,19,1,Queensland,151.762506,-26.16856 +2023,5,25,1,South Australia,138.620556,-34.996417 +2023,4,8,1,Queensland,153.107807,-27.526978 +2022,3,31,1,South Australia,138.579818,-35.058652 +2023,3,2,1,Victoria,147.730451,-37.924429 +2022,9,30,1,Queensland,153.43834,-27.401123 +2023,9,16,1,Queensland,152.046022,-27.25609 +2024,7,29,1,Victoria,145.754962,-38.635187 +2021,9,29,1,New South Wales,152.897763,-30.442998 +2022,6,10,1,Victoria,144.26795,-37.390828 +2023,12,31,1,Queensland,153.090381,-27.52575 +2023,1,25,1,Victoria,145.958556,-38.827605 +2024,4,12,1,Queensland,152.869565,-27.359061 +2024,4,9,1,South Australia,138.733453,-34.888734 +2024,2,18,1,Queensland,153.092929,-27.526424 +2020,3,2,1,Queensland,153.057486,-27.551875 +2021,2,20,1,Queensland,153.008383,-27.653652 +2024,9,12,1,South Australia,138.705617,-34.936974 +2023,12,1,1,New South Wales,152.972143,-30.43198 +2024,8,27,1,Queensland,153.391949,-28.116107 +2024,9,21,1,Queensland,152.916185,-27.122257 +2023,8,22,1,Victoria,149.73732,-37.526319 +2024,10,13,1,Queensland,152.991752,-27.823275 +2024,5,28,1,Queensland,153.10332,-27.528775 +2024,1,1,1,South Australia,138.6667,-35.004059 +2024,11,1,1,Victoria,142.291129,-37.874433 +2023,8,2,1,Queensland,153.3785,-27.920713 +2022,10,25,1,South Australia,138.672856,-34.935061 +2022,12,2,1,Queensland,153.112483,-27.527946 +2024,8,16,1,Queensland,151.92208,-26.220979 +2023,4,12,1,New South Wales,151.095245,-33.076389 +2024,11,16,1,Queensland,152.043257,-27.260975 +2024,4,15,1,Victoria,141.062911,-38.0052 +2024,4,6,1,Queensland,153.251968,-27.51395 +2022,12,30,1,Queensland,153.107866,-27.526909 +2023,8,26,1,Queensland,153.513747,-27.423217 +2023,2,27,1,Queensland,153.057831,-27.551526 +2023,6,4,1,South Australia,138.616925,-34.903793 +2023,9,9,1,Queensland,152.074617,-27.358603 +2023,5,29,1,Victoria,145.667175,-37.792225 +2023,11,12,1,Queensland,153.037417,-27.53259 +2024,4,18,1,Queensland,153.352718,-27.915327 +2021,3,4,1,Victoria,143.92803,-37.541326 +2024,1,27,1,South Australia,138.732312,-35.013391 +2022,12,14,1,Queensland,153.104628,-27.52989 +2024,9,21,1,Queensland,153.374011,-27.916603 +2023,11,15,1,Queensland,153.103428,-27.530193 +2023,1,23,1,Queensland,153.065583,-27.54457 +2023,2,24,1,New South Wales,153.40077,-28.259602 +2021,12,18,1,Victoria,146.16431,-38.671301 +2024,4,18,1,South Australia,137.216421,-35.951654 +2022,3,31,1,South Australia,138.709492,-34.877289 +2021,10,24,1,South Australia,138.650458,-35.053775 +2024,10,23,1,Queensland,153.073177,-27.545928 +2023,4,19,1,Queensland,153.051209,-27.54904 +2022,4,3,1,New South Wales,153.402074,-28.259866 +2024,10,21,1,New South Wales,153.397734,-28.261887 +2022,10,5,1,Queensland,153.058961,-27.551533 +2024,7,13,1,Queensland,152.605286,-28.123148 +2021,10,25,1,South Australia,138.729421,-34.889784 +2021,6,16,1,Queensland,153.054533,-27.550959 +2023,9,12,1,Queensland,151.691356,-26.1772 +2024,1,28,1,Victoria,146.388712,-38.35779 +2021,3,16,1,Queensland,153.05744,-27.551108 +2022,12,8,1,Queensland,153.073292,-27.545825 +2021,12,23,1,Victoria,141.921525,-38.056665 +2024,3,10,1,Queensland,153.092632,-27.527615 +2023,2,7,1,Queensland,151.731676,-27.591878 +2022,9,30,1,Queensland,151.775294,-26.182073 +2020,9,27,1,Victoria,147.754464,-37.90878 +2023,3,6,1,Queensland,153.107383,-27.52873 +2023,4,1,1,Queensland,153.090979,-27.527531 +2022,12,2,1,Queensland,153.073278,-27.545829 +2021,12,12,1,Queensland,153.088106,-27.510422 +2023,2,17,1,Victoria,145.532853,-36.943878 +2023,12,3,1,Queensland,153.090992,-27.527499 +2022,9,29,1,Queensland,153.058333,-27.550597 +2022,4,17,1,New South Wales,146.58541,-34.764473 +2020,5,8,1,Queensland,153.05773,-27.551201 +2023,7,19,1,Queensland,153.113416,-27.528536 +2023,10,7,1,Victoria,146.388712,-38.35779 +2022,11,16,1,Queensland,153.437575,-27.400738 +2024,10,29,1,Queensland,153.110562,-27.527941 +2023,6,25,1,Queensland,151.933828,-27.325276 +2024,9,15,1,Queensland,153.150069,-27.712197 +2023,12,4,1,New South Wales,150.060182,-34.61656 +2024,11,3,1,Queensland,153.09307,-27.527976 +2022,4,4,1,Queensland,152.898758,-27.65262 +2020,10,9,1,Queensland,153.373869,-27.912075 +2022,11,18,1,Victoria,142.366438,-38.315058 +2023,11,18,1,Victoria,145.361145,-37.061378 +2023,6,7,1,Queensland,153.104622,-27.530277 +2024,6,12,1,New South Wales,151.243575,-33.127514 +2023,4,29,1,Victoria,144.206075,-37.89159 +2022,2,11,1,Queensland,152.94542,-28.12513 +2023,7,15,1,South Australia,136.81007,-35.96043 +2023,10,11,1,Queensland,153.108104,-27.527092 +2023,11,29,1,Queensland,151.749845,-26.155011 +2023,10,15,1,Queensland,153.000331,-27.284151 +2023,9,27,1,Queensland,151.651066,-27.628967 +2023,12,31,1,Queensland,153.092391,-27.52817 +2021,11,14,1,Queensland,153.037868,-27.54708 +2021,3,4,1,South Australia,138.581082,-35.04677 +2023,5,11,1,Victoria,145.31643,-38.363904 +2020,7,23,1,South Australia,138.708208,-34.902573 +2023,10,4,1,Queensland,153.001203,-27.284983 +2024,9,22,1,Queensland,153.40288,-27.493894 +2023,10,9,1,Queensland,153.372665,-27.903879 +2024,10,30,1,Queensland,152.714507,-26.829613 +2023,1,21,1,South Australia,138.64805,-34.876741 +2023,10,20,1,New South Wales,152.90663,-31.441192 +2022,6,30,1,Queensland,143.864217,-18.619416 +2023,6,8,1,Queensland,152.004472,-27.414713 +2024,7,7,1,Queensland,151.780329,-26.309065 +2020,5,26,1,Queensland,153.057524,-27.551021 +2023,6,10,1,New South Wales,150.979683,-34.126959 +2023,11,28,1,Victoria,147.66874,-37.953847 +2021,10,12,1,Queensland,153.078103,-27.8742 +2024,10,4,1,Queensland,152.67645,-27.986042 +2023,1,26,1,Queensland,153.109439,-27.529416 +2021,12,1,1,Queensland,153.541946,-27.433038 +2022,1,2,1,Queensland,152.012617,-27.602008 +2021,10,25,1,Victoria,146.1642,-38.671325 +2024,10,25,1,New South Wales,150.76361,-29.558637 +2022,11,30,1,South Australia,138.65916,-34.864482 +2023,5,11,1,Queensland,153.058179,-27.551659 +2024,9,15,1,New South Wales,150.600457,-29.869591 +2023,1,9,1,Queensland,153.072177,-27.543928 +2024,1,26,1,Queensland,153.093563,-27.524677 +2024,10,6,1,Queensland,153.092144,-27.528066 +2021,12,4,1,Victoria,146.91445,-38.360881 +2023,9,15,1,Queensland,153.10517,-27.531565 +2023,8,5,1,Queensland,153.11207,-27.529847 +2024,11,13,1,Queensland,152.003267,-27.413513 +2023,12,29,1,Victoria,146.243484,-38.857295 +2021,1,6,1,Victoria,147.731623,-37.922982 +2020,11,10,1,Queensland,153.080567,-27.837717 +2023,10,8,1,Queensland,153.090756,-27.527149 +2024,4,4,1,Victoria,141.92336,-38.056322 +2022,11,11,1,South Australia,138.6628,-34.866713 +2024,4,2,1,Queensland,153.399319,-27.497294 +2024,4,25,1,Queensland,153.10913,-27.527234 +2024,4,1,1,Queensland,153.103278,-27.528285 +2024,3,23,1,Victoria,146.386957,-38.527329 +2021,9,24,1,Queensland,152.906692,-28.173889 +2024,3,29,1,Queensland,153.092247,-27.527254 +2024,10,13,1,Queensland,152.06042,-26.161068 +2023,8,9,1,Queensland,153.105259,-27.531082 +2021,10,24,1,Queensland,152.907282,-28.174429 +2021,9,8,1,Queensland,153.057396,-27.551382 +2024,6,16,1,Queensland,153.090822,-27.527065 +2024,7,16,1,Queensland,153.070528,-27.509539 +2024,2,5,1,Queensland,153.054912,-27.550138 +2022,10,29,1,Queensland,153.077764,-27.54235 +2024,1,22,1,Queensland,153.048947,-27.54977 +2023,12,25,1,Queensland,153.09044,-27.526827 +2022,2,10,1,South Australia,138.68209,-34.953827 +2023,2,19,1,Queensland,153.09159,-27.526791 +2023,11,30,1,Queensland,153.102701,-27.529297 +2022,6,4,1,Queensland,153.072275,-27.226381 +2022,10,1,1,New South Wales,146.568113,-34.758572 +2023,5,21,1,South Australia,139.16564,-35.091427 +2024,5,18,1,Queensland,153.091588,-27.52736 +2024,3,28,1,Queensland,151.762506,-26.16856 +2022,10,29,1,Victoria,143.860713,-38.668577 +2020,6,8,1,South Australia,138.637635,-35.005263 +2023,3,2,1,Queensland,153.093208,-27.527012 +2024,8,5,1,Queensland,146.870648,-19.131458 +2024,10,14,1,Queensland,152.365508,-27.455511 +2022,11,8,1,Queensland,153.083946,-27.510947 +2023,1,27,1,Queensland,153.09205,-27.527048 +2023,6,24,1,Queensland,151.990056,-26.623809 +2024,11,23,1,Queensland,152.55403,-28.029503 +2024,4,19,1,New South Wales,150.170662,-34.782122 +2022,3,12,1,New South Wales,153.466556,-28.192267 +2022,10,1,1,Victoria,144.431944,-37.932778 +2024,3,30,1,Queensland,153.090343,-27.525545 +2021,3,8,1,South Australia,138.70194,-34.902658 +2020,11,7,1,Queensland,153.052024,-27.548291 +2023,11,6,1,Queensland,153.106688,-27.529219 +2024,4,13,1,Queensland,153.112693,-27.52833 +2021,9,29,1,Victoria,146.164092,-38.671463 +2024,1,4,1,South Australia,138.679277,-35.023007 +2024,7,20,1,Queensland,153.090445,-27.526587 +2022,5,7,1,New South Wales,151.517939,-30.520949 +2020,7,12,1,New South Wales,153.377566,-28.254084 +2022,6,12,1,Queensland,153.17213,-27.575218 +2023,11,3,1,Queensland,151.594096,-27.800382 +2020,2,3,1,New South Wales,151.521444,-30.51972 +2022,12,3,1,Queensland,153.112929,-27.527392 +2023,11,18,1,Queensland,153.072803,-27.542185 +2024,5,11,1,Queensland,153.092126,-27.527163 +2022,10,30,1,Queensland,153.084817,-27.510515 +2023,8,4,1,Queensland,153.090602,-27.526994 +2020,8,1,1,New South Wales,151.521444,-30.51972 +2020,12,25,1,Queensland,153.457606,-28.152156 +2023,12,25,1,Queensland,153.094654,-27.510381 +2023,8,25,1,Victoria,141.774777,-38.073746 +2023,9,11,1,Queensland,151.947633,-27.423847 +2022,11,9,1,Queensland,153.196389,-27.848546 +2023,11,19,1,Queensland,153.090926,-27.526523 +2020,10,6,1,Victoria,145.31662,-35.871053 +2024,7,2,1,Queensland,151.808305,-26.139886 +2024,10,4,1,Victoria,143.856187,-38.670637 +2024,5,27,1,South Australia,138.732281,-34.881999 +2024,7,9,1,Queensland,153.062642,-27.560116 +2022,1,24,1,South Australia,138.679817,-34.84302 +2023,5,1,1,Queensland,153.092364,-27.525634 +2022,10,13,1,Queensland,152.985611,-26.452669 +2023,1,27,1,Victoria,144.25027,-37.871198 +2020,1,25,1,Queensland,153.103795,-26.379567 +2022,4,4,1,Queensland,149.365217,-21.745417 +2024,10,22,1,Queensland,152.394333,-27.414947 +2022,8,16,1,Queensland,152.899813,-27.482163 +2024,11,2,1,Victoria,143.860662,-38.66705 +2023,6,30,1,New South Wales,152.921827,-31.459893 +2022,1,17,1,Queensland,153.073262,-27.543084 +2024,8,10,1,Queensland,153.090364,-27.526868 +2021,8,21,1,New South Wales,153.376935,-28.253886 +2022,8,7,1,New South Wales,153.108917,-28.644547 +2023,1,22,1,Victoria,146.388194,-38.354877 +2023,6,9,1,Queensland,153.108969,-27.52721 +2023,4,3,1,New South Wales,151.64095,-30.488699 +2023,4,15,1,Queensland,153.093204,-27.527833 +2024,10,29,1,Queensland,153.092234,-27.527242 +2023,12,27,1,Queensland,153.103749,-27.529637 +2023,11,25,1,Victoria,144.556541,-37.515152 +2023,2,6,1,Queensland,153.108924,-27.528718 +2021,12,23,1,Victoria,146.011543,-38.578383 +2022,8,9,1,Victoria,145.235947,-38.2272 +2022,4,22,1,New South Wales,153.403897,-28.260484 +2023,12,5,1,New South Wales,153.399521,-28.260553 +2024,5,6,1,Queensland,153.090831,-27.525837 +2024,3,24,1,Queensland,153.092999,-27.525928 +2022,3,19,1,Victoria,143.535193,-38.791788 +2023,11,4,1,Queensland,153.091586,-27.527015 +2021,2,12,1,Victoria,146.1642,-38.671337 +2022,11,12,1,Queensland,152.16144,-27.50254 +2022,8,23,1,New South Wales,150.823212,-34.10168 +2023,11,18,1,Victoria,145.555908,-37.048094 +2024,2,15,1,Victoria,144.222472,-37.802867 +2023,11,13,1,Queensland,153.091622,-27.527125 +2022,10,24,1,Queensland,152.857453,-27.254807 +2023,11,29,1,Queensland,153.403016,-27.498347 +2024,7,14,1,Queensland,152.86575,-26.14881 +2024,10,27,1,South Australia,138.78649,-34.877295 +2023,4,23,1,Queensland,153.086782,-27.509328 +2024,8,10,1,Queensland,153.090306,-27.526862 +2021,11,28,1,Queensland,151.522174,-27.714922 +2020,10,15,1,Victoria,145.132179,-38.175467 +2024,8,19,1,Victoria,146.403998,-38.345214 +2024,6,23,1,Queensland,153.090679,-27.526976 +2023,5,11,1,Victoria,146.890197,-36.16508 +2022,11,7,1,Victoria,144.594668,-37.331108 +2020,9,14,1,New South Wales,150.842873,-29.661518 +2023,11,10,1,Queensland,153.109994,-27.527111 +2020,2,3,1,Queensland,153.059213,-27.545076 +2020,10,4,1,South Australia,138.741556,-34.830529 +2024,10,25,1,Queensland,153.10572,-27.530098 +2023,8,24,1,Victoria,143.51477,-38.835812 +2023,11,15,1,Queensland,151.716203,-27.567963 +2020,2,8,1,Queensland,153.377058,-27.919485 +2022,11,16,1,Queensland,153.437622,-27.400742 +2023,5,2,1,New South Wales,152.865706,-31.362261 +2024,2,20,1,Queensland,153.103737,-27.529741 +2024,6,25,1,Queensland,152.923498,-28.14209 +2023,5,13,1,Queensland,153.091532,-27.5273 +2024,5,15,1,Queensland,153.058884,-27.547089 +2022,4,30,1,Queensland,151.698513,-26.179022 +2021,6,10,1,Victoria,145.273369,-38.127245 +2023,9,16,1,Queensland,153.054153,-27.549902 +2023,3,9,1,Queensland,153.090499,-27.526865 +2024,1,4,1,Queensland,153.101767,-27.734033 +2021,10,3,1,Victoria,145.134322,-38.387325 +2021,7,12,1,Victoria,145.166371,-38.26085 +2024,3,1,1,Queensland,152.591541,-26.895113 +2023,10,3,1,New South Wales,150.625466,-33.568807 +2024,3,23,1,Queensland,153.074492,-27.546305 +2023,10,4,1,South Australia,138.709987,-34.890807 +2024,1,21,1,South Australia,138.717193,-34.894163 +2023,11,19,1,Queensland,152.999675,-27.284041 +2023,10,11,1,Queensland,153.091307,-27.527192 +2023,6,27,1,Queensland,153.103072,-27.52907 +2023,4,15,1,Queensland,153.105307,-27.530116 +2024,3,25,1,Queensland,152.04235,-27.297474 +2023,2,10,1,Queensland,153.106664,-27.528536 +2023,9,22,1,Queensland,153.103478,-27.529805 +2024,5,20,1,South Australia,138.620254,-34.894608 +2024,2,1,1,Queensland,153.095865,-27.509836 +2020,1,9,1,Queensland,152.249657,-27.495734 +2021,10,1,1,New South Wales,149.383101,-36.17004 +2022,11,9,1,Victoria,147.713625,-37.923295 +2024,6,1,1,Queensland,153.19019,-27.701741 +2023,11,5,1,Queensland,153.092948,-27.528601 +2024,1,16,1,Queensland,153.091637,-27.527238 +2024,11,11,1,Victoria,144.684233,-37.370542 +2024,5,26,1,New South Wales,151.095427,-33.076853 +2024,6,3,1,South Australia,138.719245,-34.891344 +2023,9,17,1,Queensland,153.074897,-27.548335 +2023,12,31,1,Victoria,147.729647,-37.923077 +2024,4,17,1,Queensland,153.19019,-27.701741 +2020,10,2,1,Queensland,152.618937,-27.313872 +2024,3,12,1,Queensland,153.054109,-27.558189 +2024,4,21,1,South Australia,138.645821,-35.003945 +2022,9,22,1,Victoria,141.178706,-38.04846 +2023,3,11,1,Victoria,142.035413,-37.736661 +2022,5,20,1,Queensland,146.868549,-19.117437 +2024,10,9,1,Queensland,153.19019,-27.701741 +2023,11,22,1,Queensland,151.880834,-27.424793 +2024,11,15,1,Queensland,153.105678,-27.530306 +2024,6,15,1,Queensland,153.109385,-27.529464 +2021,11,20,1,Victoria,145.307915,-38.38475 +2022,10,9,1,Queensland,152.867654,-28.220394 +2023,9,4,1,Queensland,153.109069,-27.527077 +2020,9,22,1,New South Wales,152.946944,-30.422281 +2024,4,5,1,Queensland,153.090539,-27.526762 +2024,11,15,1,Queensland,153.160433,-27.659889 +2021,11,13,1,Victoria,146.163789,-38.671037 +2020,6,17,1,Queensland,152.6224,-27.451769 +2023,5,11,1,Victoria,145.533369,-37.018593 +2020,10,26,1,Queensland,153.053192,-27.542113 +2021,2,16,1,Victoria,145.13221,-38.175528 +2024,1,9,1,South Australia,138.824677,-34.670924 +2024,6,6,1,New South Wales,152.378538,-31.910405 +2024,2,10,1,Queensland,152.58525,-27.372908 +2023,11,26,1,Queensland,153.091811,-27.527028 +2023,3,31,1,Queensland,153.107265,-27.527341 +2020,6,6,1,New South Wales,153.377294,-28.254282 +2020,10,20,1,Queensland,153.060462,-27.549837 +2024,6,12,1,Queensland,151.446139,-26.104681 +2024,5,20,1,South Australia,138.725773,-34.875738 +2024,8,25,1,Queensland,153.09331,-27.528557 +2022,11,11,1,Queensland,153.399601,-27.496558 +2024,11,14,1,Queensland,153.069897,-27.510492 +2024,7,11,1,Queensland,153.082225,-27.515279 +2023,12,5,1,Queensland,153.060776,-27.544065 +2020,10,28,1,South Australia,138.767908,-35.016551 +2023,12,8,1,Queensland,153.092621,-27.528462 +2024,11,11,1,Queensland,153.103981,-27.529013 +2022,6,10,1,Queensland,146.873362,-19.12283 +2024,4,7,1,Victoria,143.900685,-37.639799 +2023,1,13,1,Queensland,152.368591,-27.910376 +2023,3,15,1,Queensland,153.111602,-27.527942 +2020,8,26,1,New South Wales,153.376603,-28.25321 +2022,10,9,1,Queensland,152.864903,-28.214114 +2020,9,15,1,Queensland,153.058707,-27.547393 +2023,4,8,1,Queensland,153.111357,-27.527187 +2023,11,25,1,Queensland,152.046386,-27.263097 +2023,10,29,1,Victoria,145.27565,-38.362566 +2023,7,20,1,Queensland,153.445392,-28.105789 +2022,1,14,1,South Australia,138.614851,-34.905347 +2024,4,12,1,Victoria,145.314484,-38.374504 +2021,9,21,1,Queensland,153.058142,-27.550665 +2022,1,1,1,Victoria,144.910225,-38.376073 +2020,11,6,1,Victoria,145.271615,-38.133642 +2020,1,31,1,Queensland,153.056383,-27.544357 +2023,10,1,1,Queensland,153.119495,-27.523019 +2024,4,14,1,Queensland,153.093629,-27.524718 +2024,9,14,1,Victoria,141.864492,-38.152033 +2021,9,18,1,Queensland,153.053782,-27.736553 +2024,8,25,1,Queensland,153.040324,-27.536284 +2023,11,9,1,Victoria,143.538467,-38.518822 +2020,5,4,1,New South Wales,151.717494,-32.66296 +2024,9,5,1,Victoria,144.434617,-37.640953 +2022,12,20,1,South Australia,138.601756,-34.961021 +2020,10,23,1,Queensland,153.058949,-27.551534 +2020,11,7,1,Queensland,153.058963,-27.547938 +2024,7,27,1,Queensland,153.090956,-27.527072 +2020,11,26,1,New South Wales,153.377456,-28.253991 +2024,6,21,1,South Australia,138.729981,-34.890079 +2023,11,7,1,South Australia,138.608394,-35.012289 +2024,10,5,1,Queensland,153.092179,-27.527392 +2024,5,3,1,Queensland,153.093052,-27.524369 +2021,11,22,1,Victoria,145.307883,-38.384727 +2024,11,9,1,Queensland,153.074966,-27.546099 +2023,5,26,1,Queensland,153.111265,-27.52719 +2024,2,24,1,South Australia,138.719531,-34.860384 +2020,10,8,1,Queensland,145.456847,-17.961042 +2024,5,1,1,Queensland,153.110403,-27.527601 +2023,6,25,1,Queensland,153.091468,-27.527341 +2023,12,17,1,Victoria,145.256445,-38.137799 +2023,6,5,1,Queensland,153.102847,-27.527308 +2024,7,12,1,Queensland,153.104591,-27.530854 +2023,10,7,1,Queensland,153.070433,-27.509411 +2021,7,30,1,New South Wales,153.377382,-28.254203 +2022,12,23,1,Queensland,153.073379,-27.542685 +2023,5,29,1,New South Wales,153.489962,-28.709547 +2023,9,9,1,Queensland,153.450049,-28.094804 +2023,4,27,1,Queensland,152.86022,-27.493706 +2024,1,1,1,South Australia,137.494587,-35.706851 +2024,5,26,1,Queensland,153.093727,-27.524889 +2020,1,18,1,Victoria,146.163589,-38.670976 +2021,9,8,1,Queensland,153.057524,-27.551011 +2021,7,17,1,Queensland,151.93139,-26.250646 +2023,3,19,1,Queensland,153.093685,-27.526989 +2024,9,15,1,Queensland,153.091784,-27.525543 +2023,12,31,1,Victoria,147.731292,-37.923255 +2024,6,23,1,Queensland,153.091068,-27.527101 +2023,1,28,1,Queensland,151.724992,-27.428708 +2024,11,6,1,Queensland,153.160433,-27.659889 +2021,10,26,1,Victoria,143.915468,-37.65313 +2024,4,12,1,Queensland,153.103276,-27.528525 +2021,11,9,1,Queensland,153.054832,-27.538663 +2021,7,15,1,Queensland,153.054602,-27.550325 +2021,4,18,1,Victoria,141.603419,-38.329333 +2020,8,9,1,Queensland,153.072832,-27.544028 +2024,7,18,1,South Australia,138.720998,-34.892572 +2024,1,5,1,Victoria,142.365659,-38.313615 +2024,4,12,1,Victoria,145.731837,-38.62932 +2024,9,8,1,Queensland,153.19019,-27.701741 +2023,8,15,1,Queensland,153.105189,-27.529613 +2024,7,29,1,Queensland,151.912203,-27.649418 +2024,11,4,1,Victoria,142.363592,-38.319278 +2020,5,18,1,South Australia,138.711531,-34.904707 +2024,9,24,1,Queensland,153.069915,-27.225155 +2024,7,16,1,Queensland,153.107724,-27.526872 +2023,9,12,1,Queensland,153.104084,-27.530159 +2021,4,19,1,Queensland,153.057593,-27.551715 +2022,12,14,1,Queensland,153.112433,-27.528114 +2023,11,4,1,Queensland,153.092413,-27.527648 +2023,5,11,1,Queensland,153.092335,-27.524929 +2021,10,25,1,Queensland,153.112769,-27.527673 +2024,11,22,1,New South Wales,150.849399,-34.080524 +2024,1,19,1,Queensland,153.103744,-27.530424 +2024,7,14,1,Queensland,153.090281,-27.526661 +2024,8,25,1,Queensland,153.091755,-27.526815 +2020,3,3,1,South Australia,138.687637,-34.924553 +2024,7,21,1,South Australia,138.698849,-34.96265 +2021,10,14,1,Victoria,145.268323,-38.131041 +2024,10,1,1,Queensland,152.007203,-26.671719 +2020,1,30,1,South Australia,138.689912,-34.929553 +2022,3,7,1,Queensland,146.867247,-19.142892 +2024,8,2,1,Queensland,152.424423,-27.240016 +2020,11,7,1,Queensland,153.057031,-27.551014 +2022,11,16,1,Queensland,151.549728,-27.716108 +2023,8,31,1,Queensland,153.094654,-27.510381 +2023,11,14,1,Queensland,153.110696,-27.527607 +2023,2,9,1,Queensland,153.073027,-27.543404 +2021,2,27,1,Victoria,145.794091,-36.793808 +2024,2,16,1,South Australia,138.720566,-34.887151 +2020,12,31,1,New South Wales,146.573013,-34.768947 +2020,7,17,1,Queensland,153.067814,-27.544315 +2021,7,29,1,South Australia,138.733292,-34.890867 +2024,7,30,1,South Australia,138.744166,-34.831308 +2024,3,23,1,South Australia,138.686004,-35.130765 +2024,9,17,1,Queensland,153.19019,-27.701741 +2023,12,7,1,Victoria,147.753818,-37.913235 +2022,11,24,1,Queensland,153.073892,-27.545896 +2024,10,16,1,Queensland,152.992373,-27.822698 +2023,3,14,1,South Australia,138.719293,-34.986404 +2020,2,8,1,South Australia,138.691347,-34.899727 +2024,8,19,1,South Australia,138.720914,-34.892659 +2024,11,12,1,Queensland,151.954645,-26.515852 +2023,8,30,1,Queensland,151.905242,-26.589626 +2024,7,1,1,Queensland,152.858401,-28.09199 +2023,2,15,1,Queensland,153.103673,-27.530675 +2024,5,9,1,South Australia,138.730717,-34.868979 +2023,11,2,1,Victoria,144.088528,-37.633621 +2023,2,24,1,New South Wales,153.402001,-28.256991 +2024,7,23,1,South Australia,138.732236,-34.890074 +2022,9,11,1,New South Wales,151.073639,-33.144183 +2024,8,27,1,South Australia,138.633604,-35.007928 +2023,8,19,1,Queensland,153.107273,-27.52732 +2024,8,25,1,Queensland,153.040418,-27.536294 +2020,8,16,1,Victoria,143.901148,-37.641822 +2024,7,27,1,Queensland,153.092515,-27.528509 +2024,6,8,1,Victoria,144.183644,-37.882561 +2020,11,22,1,Queensland,152.865477,-27.527298 +2023,5,1,1,Queensland,153.091692,-27.527099 +2022,4,2,1,New South Wales,146.57408,-34.766962 +2022,1,9,1,Queensland,153.085239,-27.506961 +2020,1,4,1,Queensland,152.267369,-27.314778 +2024,2,29,1,Queensland,153.103327,-28.255358 +2020,11,4,1,South Australia,138.675034,-34.793435 +2022,12,5,1,South Australia,138.559433,-35.032867 +2022,8,21,1,South Australia,138.739585,-35.146771 +2024,9,27,1,South Australia,138.656193,-35.001122 +2024,3,8,1,Queensland,153.103643,-27.53006 +2021,1,10,1,Queensland,153.078383,-27.513113 +2023,2,14,1,Victoria,144.273393,-37.873175 +2024,8,10,1,Queensland,153.092492,-27.526832 +2024,11,6,1,Queensland,153.110188,-27.527412 +2023,4,13,1,Queensland,153.090677,-27.526453 +2023,12,27,1,Queensland,153.092997,-27.524277 +2024,10,29,1,Queensland,153.19019,-27.701741 +2023,8,20,1,Queensland,151.851394,-26.492269 +2022,9,12,1,Queensland,153.068085,-27.545172 +2024,11,19,1,New South Wales,150.852496,-34.070002 +2023,10,15,1,Queensland,152.994244,-27.823476 +2023,11,26,1,Queensland,153.19019,-27.701741 +2024,1,16,1,New South Wales,153.112961,-30.263303 +2024,3,24,1,South Australia,138.709142,-34.904197 +2020,5,9,1,Queensland,153.082525,-27.51045 +2024,5,25,1,Queensland,153.046574,-27.274817 +2021,5,13,1,New South Wales,153.401372,-28.260433 +2024,1,5,1,Victoria,142.363203,-38.318505 +2023,9,17,1,Queensland,146.868441,-19.125673 +2022,10,30,1,Queensland,153.066312,-27.539681 +2022,7,3,1,Queensland,152.944093,-27.140473 +2023,9,23,1,Queensland,153.108179,-27.527255 +2023,10,18,1,Queensland,153.108178,-27.527196 +2024,11,5,1,Queensland,152.632479,-27.437048 +2023,10,14,1,Queensland,153.090661,-27.527043 +2023,8,5,1,New South Wales,151.245163,-33.171947 +2022,9,25,1,Queensland,151.94325,-27.394846 +2023,2,17,1,Queensland,153.071747,-27.540054 +2023,11,5,1,Queensland,152.045485,-27.258725 +2024,6,28,1,Queensland,153.057799,-27.551125 +2024,9,19,1,Queensland,153.085483,-27.506808 +2024,4,13,1,Queensland,153.109717,-27.529731 +2023,5,11,1,New South Wales,151.094986,-33.076233 +2020,1,1,1,Queensland,151.870885,-26.556562 +2024,9,17,1,Queensland,153.19019,-27.701741 +2023,9,22,1,Queensland,153.108289,-27.527148 +2024,10,6,1,Queensland,153.092342,-27.528335 +2022,6,25,1,Queensland,153.522063,-27.425988 +2021,8,28,1,Queensland,152.966278,-28.069569 +2022,12,21,1,Victoria,143.524481,-38.826513 +2024,11,23,1,Queensland,153.10413,-27.527466 +2024,10,6,1,Queensland,153.093098,-27.523891 +2023,9,18,1,Queensland,153.109003,-27.527194 +2022,11,3,1,Victoria,141.922078,-38.059011 +2021,8,31,1,South Australia,138.712419,-34.893147 +2022,11,18,1,New South Wales,151.734587,-31.540287 +2023,2,3,1,Queensland,153.084469,-27.523801 +2024,2,17,1,Queensland,153.092174,-27.527228 +2023,3,14,1,Queensland,153.092041,-27.525945 +2023,8,19,1,Queensland,146.870498,-19.125314 +2020,5,27,1,Queensland,153.244503,-27.517772 +2024,5,19,1,Queensland,153.076105,-27.555762 +2024,9,21,1,Queensland,153.091636,-27.527145 +2023,1,28,1,Queensland,153.538495,-27.431817 +2021,1,22,1,Victoria,145.269738,-38.132196 +2023,11,8,1,Queensland,152.03444,-27.358838 +2021,6,21,1,Queensland,153.059465,-27.548436 +2023,4,8,1,Queensland,151.896046,-27.592569 +2022,1,27,1,Victoria,143.750632,-38.552103 +2024,4,25,1,Queensland,153.103378,-27.529951 +2023,1,4,1,Queensland,153.111818,-27.529122 +2024,10,8,1,Queensland,153.106533,-27.529102 +2024,8,22,1,New South Wales,153.401969,-28.260205 +2024,9,11,1,Queensland,153.046545,-27.53927 +2024,1,2,1,Queensland,153.082703,-27.506238 +2020,3,7,1,Queensland,153.068401,-27.545612 +2021,12,12,1,Victoria,146.388004,-38.358244 +2023,8,24,1,Queensland,146.783352,-19.133877 +2020,5,11,1,Queensland,153.06012,-27.549462 +2024,8,31,1,Queensland,153.085997,-27.479947 +2023,11,14,1,Queensland,153.091761,-27.527131 +2024,1,1,1,Queensland,153.088167,-27.61558 +2023,9,30,1,Queensland,153.072326,-27.545368 +2024,6,26,1,Victoria,143.553567,-38.752798 +2023,7,11,1,Queensland,153.151142,-27.583787 +2022,10,12,1,Queensland,152.160717,-27.546956 +2021,10,7,1,Victoria,143.896224,-37.657298 +2024,8,31,1,Queensland,153.036536,-27.533028 +2024,10,4,1,Queensland,153.092272,-27.525372 +2024,5,27,1,Victoria,142.978078,-38.497294 +2024,7,14,1,Queensland,153.092273,-27.525595 +2023,11,16,1,Queensland,151.652312,-27.670569 +2024,1,14,1,Queensland,153.092044,-27.527192 +2023,12,31,1,Queensland,153.092491,-27.528164 +2022,5,26,1,Queensland,152.412003,-27.828676 +2023,10,6,1,South Australia,138.716692,-34.89316 +2021,11,28,1,Queensland,151.506725,-27.708539 +2023,11,2,1,Victoria,144.072861,-37.718722 +2022,11,11,1,Queensland,152.058333,-27.267634 +2022,4,6,1,Victoria,146.302196,-38.952397 +2023,6,9,1,Queensland,153.106816,-27.528992 +2023,11,19,1,Queensland,153.093208,-27.524063 +2024,3,3,1,South Australia,138.720097,-34.892223 +2024,1,6,1,Queensland,153.072222,-27.54367 +2024,8,3,1,Queensland,153.090878,-27.526603 +2023,6,7,1,Queensland,153.113472,-27.528551 +2024,10,28,1,Queensland,153.054403,-27.552235 +2021,10,27,1,New South Wales,153.377204,-28.253572 +2024,11,23,1,Queensland,152.462802,-27.355949 +2021,10,26,1,Queensland,153.111206,-27.528813 +2024,2,4,1,Queensland,153.077052,-27.541203 +2021,3,8,1,Victoria,146.163716,-38.671036 +2020,10,6,1,Queensland,153.058366,-27.548372 +2023,3,4,1,New South Wales,151.095061,-33.076242 +2022,4,10,1,Queensland,153.082748,-27.507638 +2024,10,30,1,South Australia,138.668343,-34.961348 +2023,8,28,1,Queensland,153.234329,-27.500264 +2024,5,26,1,Queensland,153.092521,-27.52742 +2020,10,11,1,Queensland,153.076661,-27.509067 +2024,9,4,1,Queensland,152.074647,-27.358627 +2021,11,26,1,Queensland,151.955021,-27.445983 +2022,10,30,1,Victoria,143.668092,-38.764328 +2022,5,29,1,South Australia,138.703766,-34.903183 +2022,4,28,1,Victoria,145.274952,-38.134977 +2020,11,10,1,Queensland,153.083719,-27.52979 +2023,8,13,1,Queensland,153.057538,-27.550942 +2024,8,2,1,Queensland,146.870403,-19.125104 +2024,3,15,1,Queensland,153.073251,-27.547353 +2024,5,13,1,Queensland,153.082428,-27.507881 +2024,1,24,1,Queensland,151.762506,-26.16856 +2023,1,28,1,Queensland,151.892013,-27.597528 +2021,11,15,1,Victoria,143.886829,-37.590772 +2024,9,13,1,Victoria,145.047639,-38.266128 +2024,4,4,1,South Australia,138.722302,-34.889829 +2022,2,4,1,Victoria,146.280124,-38.941543 +2023,5,26,1,Queensland,153.110196,-27.529866 +2023,1,9,1,Victoria,143.607637,-38.772445 +2021,10,9,1,Victoria,141.429756,-38.35018 +2024,10,2,1,New South Wales,151.106658,-33.129579 +2024,6,29,1,Queensland,152.526271,-27.942439 +2023,7,5,1,Queensland,153.341528,-27.909062 +2023,8,26,1,Queensland,153.084601,-27.50948 +2022,8,26,1,Queensland,152.867128,-27.330048 +2024,7,1,1,Victoria,145.314079,-38.376773 +2021,11,8,1,Queensland,153.058264,-27.545966 +2020,1,11,1,Victoria,143.635453,-38.75553 +2024,4,7,1,Victoria,143.852782,-38.670725 +2024,7,25,1,Queensland,152.401765,-27.456952 +2021,10,22,1,Victoria,146.164122,-38.671445 +2024,4,5,1,Queensland,151.813862,-26.36489 +2020,2,12,1,Victoria,145.284191,-38.139088 +2023,3,5,1,Queensland,153.090706,-27.526308 +2024,10,7,1,South Australia,138.79029,-34.876642 +2024,10,23,1,Queensland,153.105117,-27.531293 +2020,5,4,1,Queensland,153.084031,-27.507198 +2024,6,5,1,Victoria,146.769792,-38.479095 +2021,4,14,1,South Australia,138.689025,-34.953705 +2024,3,14,1,South Australia,138.722808,-34.889719 +2024,9,1,1,New South Wales,153.39738,-28.261821 +2023,12,27,1,Queensland,153.092117,-27.525503 +2024,10,28,1,Victoria,145.391888,-38.392214 +2024,7,15,1,Queensland,153.103656,-27.529924 +2023,11,15,1,New South Wales,153.30223,-28.8198 +2023,3,5,1,Queensland,153.09216,-27.526902 +2023,7,21,1,Queensland,153.111427,-27.527627 +2024,6,8,1,Queensland,152.987788,-27.295025 +2024,7,31,1,Victoria,142.362917,-38.31859 +2024,5,15,1,Victoria,144.065428,-38.467549 +2023,7,16,1,Queensland,153.091039,-27.526411 +2024,5,13,1,Victoria,145.26736,-38.13149 +2023,11,27,1,Queensland,153.063241,-27.810184 +2024,10,7,1,Queensland,153.093384,-27.52389 +2023,10,15,1,Queensland,153.037539,-27.532079 +2024,5,28,1,South Australia,138.777265,-34.879648 +2020,4,19,1,South Australia,138.652791,-35.008749 +2024,9,25,1,Queensland,153.198106,-27.728117 +2023,7,4,1,New South Wales,153.305625,-28.822499 +2021,11,21,1,Victoria,145.168306,-37.0514 +2021,12,17,1,Queensland,153.083603,-27.529358 +2024,8,24,1,Queensland,153.090822,-27.52589 +2020,4,21,1,Queensland,153.059902,-27.550534 +2023,3,30,1,Queensland,153.091436,-27.527266 +2023,9,2,1,Queensland,153.090683,-27.033573 +2022,9,25,1,Queensland,146.868408,-19.126733 +2024,3,3,1,Queensland,153.092335,-27.527738 +2024,5,19,1,Queensland,152.999609,-27.284095 +2024,11,19,1,Queensland,151.710755,-27.649212 +2024,8,1,1,Queensland,152.473001,-27.543584 +2021,3,6,1,Victoria,146.164143,-38.671361 +2023,8,5,1,Queensland,153.093726,-27.524877 +2022,12,22,1,Queensland,153.053131,-27.834183 +2024,6,8,1,Queensland,153.104691,-27.529066 +2023,12,6,1,Queensland,151.716338,-27.567305 +2022,10,16,1,New South Wales,151.077147,-33.147258 +2024,1,27,1,Queensland,153.092361,-27.528272 +2024,2,22,1,Queensland,152.584507,-28.138653 +2022,2,11,1,South Australia,138.663547,-34.866243 +2024,10,31,1,South Australia,138.716767,-34.871288 +2023,10,11,1,Queensland,153.074464,-27.579547 +2022,5,28,1,Queensland,152.108111,-27.253597 +2023,4,9,1,Victoria,142.36363,-38.318565 +2020,10,13,1,Queensland,153.158998,-27.808844 +2023,3,7,1,Victoria,143.758595,-38.552937 +2023,7,30,1,Queensland,152.677142,-27.98616 +2024,9,27,1,New South Wales,146.595337,-34.773363 +2024,9,28,1,Victoria,145.039801,-38.265321 +2023,7,8,1,Queensland,153.001166,-27.284735 +2021,4,13,1,Queensland,153.429956,-28.106414 +2023,2,22,1,New South Wales,152.996658,-28.524387 +2023,12,6,1,Queensland,151.762506,-26.16856 +2024,8,22,1,South Australia,138.726864,-34.864404 +2024,10,26,1,New South Wales,146.563675,-34.757417 +2023,4,8,1,South Australia,138.542074,-34.917817 +2024,4,26,1,South Australia,138.826933,-34.692015 +2020,2,18,1,Queensland,153.062155,-27.550076 +2022,10,14,1,Australian Capital Territory,148.91,-35.46 +2023,12,29,1,Queensland,151.762506,-26.16856 +2021,10,2,1,Queensland,153.439133,-27.397679 +2023,11,8,1,Queensland,152.003633,-27.413832 +2024,1,15,1,New South Wales,150.849273,-34.08205 +2023,4,30,1,Queensland,152.552032,-27.978598 +2023,11,10,1,Victoria,144.594386,-37.331252 +2023,5,25,1,Queensland,153.09093,-27.526974 +2023,12,29,1,Queensland,151.762506,-26.16856 +2022,6,12,1,New South Wales,153.110895,-28.542246 +2024,7,10,1,Queensland,151.837421,-26.534694 +2024,6,10,1,Queensland,153.081027,-27.482701 +2023,9,4,1,Victoria,142.361754,-38.318353 +2024,7,7,1,Queensland,153.066816,-27.250419 +2023,11,16,1,Queensland,151.550031,-27.814342 +2021,8,11,1,Queensland,153.16885,-27.624766 +2024,4,17,1,New South Wales,152.172683,-32.737187 +2024,1,24,1,Queensland,151.762506,-26.16856 +2023,8,15,1,Queensland,152.401146,-27.457305 +2024,4,6,1,Queensland,153.090933,-27.526937 +2021,9,22,1,Queensland,152.393143,-27.288935 +2024,8,24,1,Queensland,153.448638,-28.094664 +2022,11,23,1,South Australia,136.73737,-35.952031 +2023,11,27,1,Queensland,151.929397,-27.419547 +2022,12,7,1,Queensland,152.993392,-27.283925 +2024,6,9,1,Queensland,146.868225,-19.128711 +2023,9,12,1,Queensland,153.109031,-27.527264 +2023,10,11,1,Queensland,153.081476,-27.507982 +2023,3,25,1,Victoria,144.274812,-37.746433 +2022,8,7,1,New South Wales,152.89493,-30.440675 +2024,2,5,1,Queensland,153.072487,-27.544785 +2023,9,25,1,Queensland,153.108169,-27.527235 +2023,11,21,1,Queensland,153.142778,-27.624803 +2021,11,7,1,Queensland,153.233411,-27.939345 +2023,5,20,1,Queensland,153.376424,-27.901511 +2022,10,17,1,South Australia,138.670916,-34.944089 +2022,1,17,1,Victoria,143.86078,-38.667992 +2024,3,9,1,Queensland,153.104553,-27.529452 +2023,11,18,1,Queensland,153.092969,-27.528335 +2023,12,10,1,Queensland,152.111283,-27.566475 +2024,6,26,1,Queensland,153.068692,-27.225178 +2023,12,29,1,Queensland,153.105219,-27.531409 +2024,2,2,1,Queensland,151.738701,-26.356027 +2024,3,1,1,Queensland,153.09089,-27.52689 +2023,9,7,1,Queensland,151.840879,-26.513626 +2020,8,19,1,Queensland,153.058327,-27.547268 +2021,4,26,1,South Australia,138.736198,-34.831007 +2023,11,23,1,Queensland,153.19019,-27.701741 +2024,4,12,1,Victoria,145.296158,-38.382971 +2024,10,10,1,Victoria,142.767686,-38.406519 +2023,11,19,1,Queensland,153.09354,-27.528381 +2024,9,11,1,Queensland,153.043725,-27.537769 +2024,5,18,1,Queensland,153.090639,-27.526504 +2024,2,15,1,South Australia,138.701665,-34.902589 +2021,12,5,1,Victoria,148.269577,-37.208679 +2024,9,16,1,Queensland,146.869233,-19.125169 +2021,5,18,1,New South Wales,153.400582,-28.260501 +2024,2,24,1,Queensland,152.746035,-28.259195 +2024,8,22,1,South Australia,138.729627,-34.86719 +2022,1,26,1,Queensland,151.818252,-26.582475 +2020,2,17,1,Queensland,153.058107,-27.551941 +2024,10,17,1,Queensland,152.992632,-27.822928 +2022,10,30,1,Queensland,153.086628,-27.505998 +2022,4,18,1,Queensland,153.082261,-27.508325 +2020,5,21,1,New South Wales,153.375181,-28.252245 +2023,4,2,1,Queensland,153.09072,-27.526257 +2024,11,3,1,Queensland,151.559508,-27.809713 +2024,8,3,1,Queensland,152.631775,-27.43797 +2024,5,2,1,South Australia,138.672869,-34.866131 +2021,5,9,1,Queensland,153.233063,-27.533495 +2024,2,11,1,Queensland,153.093105,-27.526508 +2020,9,24,1,New South Wales,153.400596,-28.257714 +2021,11,2,1,Victoria,146.164306,-38.671263 +2023,7,24,1,Queensland,153.10897,-27.526601 +2023,1,5,1,Victoria,141.476649,-37.794699 +2023,10,28,1,Queensland,151.749938,-26.154991 +2020,9,23,1,Queensland,153.072385,-27.543777 +2021,4,10,1,Queensland,152.060928,-27.715061 +2024,3,7,1,South Australia,138.617461,-34.901251 +2024,1,26,1,Queensland,153.093139,-27.52634 +2023,1,28,1,South Australia,139.156417,-34.722653 +2024,5,20,1,Queensland,153.11278,-27.527947 +2023,11,6,1,Queensland,152.489583,-27.507885 +2024,9,18,1,Queensland,153.37402,-27.915002 +2024,8,28,1,Queensland,151.930405,-27.324788 +2023,11,18,1,Queensland,153.092803,-27.525347 +2023,11,15,1,Victoria,147.731383,-37.923613 +2022,1,7,1,New South Wales,153.376944,-28.253987 +2020,10,20,1,Queensland,153.107345,-27.527138 +2021,5,24,1,Queensland,153.061419,-27.534614 +2023,12,3,1,South Australia,138.637767,-35.005672 +2023,4,18,1,Queensland,153.107473,-27.527144 +2022,7,17,1,Queensland,153.381149,-27.955166 +2024,9,20,1,New South Wales,150.574512,-29.862266 +2023,4,30,1,Queensland,153.090438,-27.526801 +2021,10,30,1,Victoria,146.163711,-38.671188 +2023,7,27,1,Queensland,146.869978,-19.119282 +2020,10,13,1,Victoria,141.601592,-38.348275 +2024,5,23,1,Victoria,148.269272,-37.204342 +2023,11,6,1,Queensland,152.003193,-27.412727 +2022,9,8,1,Queensland,153.072682,-27.543345 +2023,6,10,1,Queensland,153.103615,-27.529943 +2023,4,2,1,South Australia,138.707114,-34.905362 +2023,7,5,1,New South Wales,150.799637,-34.150154 +2023,6,25,1,Queensland,153.093202,-27.52408 +2022,12,17,1,Queensland,152.003068,-27.413092 +2023,5,28,1,New South Wales,153.448373,-28.67688 +2024,10,25,1,Queensland,153.110994,-27.529811 +2023,12,27,1,Queensland,151.762506,-26.16856 +2023,8,12,1,Queensland,153.082656,-27.507213 +2024,1,14,1,Queensland,153.092748,-27.528263 +2023,12,14,1,Queensland,153.092811,-27.528043 +2023,11,11,1,Queensland,151.651094,-27.629057 +2024,4,14,1,Victoria,143.901148,-37.641822 +2023,7,21,1,Victoria,143.653566,-38.774255 +2023,1,23,1,Queensland,152.866004,-28.211604 +2024,10,23,1,Queensland,153.072261,-27.545573 +2023,5,13,1,South Australia,138.617204,-34.903883 +2023,3,17,1,Queensland,152.004442,-27.414775 +2020,2,4,1,Queensland,153.057878,-27.551222 +2022,12,25,1,Queensland,151.892651,-27.603 +2023,9,24,1,Queensland,153.192658,-27.700883 +2022,1,11,1,South Australia,135.512208,-34.582303 +2023,11,15,1,Queensland,153.110236,-27.527456 +2023,6,11,1,Queensland,153.071645,-27.510848 +2021,10,21,1,Victoria,146.164036,-38.671453 +2022,12,10,1,Queensland,153.10439,-27.52967 +2022,12,8,1,New South Wales,149.987808,-36.571112 +2023,12,31,1,Queensland,153.091308,-27.527456 +2022,10,28,1,New South Wales,152.972171,-30.428338 +2023,1,6,1,Queensland,153.107641,-27.527147 +2021,5,28,1,Victoria,145.047056,-38.265063 +2023,5,20,1,South Australia,138.691662,-34.971413 +2020,5,18,1,New South Wales,153.376056,-28.252755 +2024,6,18,1,Queensland,152.611274,-27.332844 +2024,9,17,1,New South Wales,146.585663,-34.764713 +2021,12,5,1,Queensland,153.190944,-27.70065 +2021,2,3,1,Queensland,152.989503,-27.169883 +2020,6,17,1,Victoria,146.163942,-38.671192 +2024,11,14,1,South Australia,138.721086,-34.892675 +2020,1,29,1,Queensland,153.059846,-27.549888 +2022,11,21,1,Victoria,145.999307,-38.825202 +2021,8,12,1,Queensland,151.387619,-26.455694 +2023,11,15,1,Victoria,144.127413,-37.899015 +2023,8,1,1,Victoria,143.515025,-38.832387 +2023,8,23,1,Queensland,153.061019,-27.548431 +2021,12,24,1,South Australia,138.733157,-34.887417 +2023,2,18,1,Victoria,143.613666,-38.791767 +2022,11,25,1,Victoria,145.174374,-38.388434 +2024,6,4,1,Queensland,153.109389,-27.529661 +2021,10,2,1,New South Wales,153.400765,-28.257909 +2021,1,2,1,Queensland,153.071156,-27.544339 +2022,6,12,1,New South Wales,153.400148,-28.258419 +2020,2,28,1,Queensland,153.51327,-27.422333 +2024,3,6,1,Queensland,153.091109,-27.526653 +2024,9,29,1,Queensland,153.090598,-27.526431 +2024,10,12,1,Victoria,143.536147,-38.809662 +2021,11,1,1,Victoria,145.218781,-38.136794 +2022,4,16,1,Queensland,152.99373,-27.823715 +2024,7,20,1,Queensland,152.999904,-27.284138 +2024,4,13,1,Victoria,145.610206,-36.941383 +2020,9,5,1,Queensland,151.894935,-27.597987 +2023,4,1,1,Queensland,153.357987,-27.941617 +2023,4,25,1,Queensland,153.108892,-27.527006 +2021,6,13,1,Queensland,153.08284,-27.515392 +2023,9,15,1,Queensland,152.952805,-27.258808 +2021,1,13,1,New South Wales,153.398496,-28.258996 +2022,11,30,1,Queensland,151.948256,-27.469832 +2022,1,19,1,Victoria,144.151477,-37.806893 +2022,12,6,1,Queensland,153.189153,-27.702277 +2021,10,29,1,Victoria,146.163772,-38.671038 +2021,10,17,1,Victoria,143.888202,-37.587033 +2023,3,18,1,New South Wales,152.901213,-31.443092 +2023,6,17,1,Victoria,143.51323,-38.834988 +2021,12,17,1,Queensland,153.08432,-27.509378 +2020,5,17,1,Victoria,146.164003,-38.671167 +2022,10,8,1,Queensland,153.19873,-27.491395 +2023,7,1,1,Victoria,146.014677,-38.577737 +2024,6,23,1,Queensland,153.090743,-27.526893 +2024,1,17,1,South Australia,138.722375,-34.892413 +2023,11,18,1,Queensland,152.045229,-27.258265 +2021,10,25,1,New South Wales,153.01339,-30.416829 +2023,9,23,1,Queensland,153.10818,-27.527048 +2023,5,31,1,Queensland,153.108185,-27.527315 +2023,6,20,1,Queensland,152.934309,-27.572242 +2024,5,3,1,South Australia,138.731423,-34.890928 +2023,5,15,1,Victoria,145.999339,-38.825171 +2022,9,21,1,Queensland,153.012348,-26.397543 +2023,11,4,1,Queensland,152.106501,-27.560887 +2021,8,8,1,Queensland,151.44957,-26.103565 +2021,8,8,1,Queensland,153.070002,-27.509388 +2024,6,14,1,Queensland,153.19019,-27.701741 +2024,9,13,1,Victoria,141.773719,-38.201218 +2024,3,16,1,Queensland,153.053732,-27.543282 +2024,9,26,1,South Australia,138.674667,-35.083928 +2024,6,9,1,Queensland,152.677936,-27.987469 +2024,9,10,1,South Australia,138.727231,-34.86476 +2022,7,17,1,New South Wales,150.983305,-34.093661 +2023,9,23,1,Queensland,153.451179,-28.09669 +2021,5,16,1,New South Wales,153.403431,-28.260659 +2021,9,16,1,Victoria,145.131453,-38.175227 +2024,7,12,1,Queensland,153.111963,-27.529139 +2021,5,20,1,New South Wales,153.400174,-28.260447 +2023,10,27,1,Queensland,151.92735,-27.462985 +2024,10,12,1,Queensland,153.093032,-27.52372 +2024,11,1,1,Queensland,151.762506,-26.16856 +2024,1,12,1,Queensland,151.835785,-26.544369 +2024,10,13,1,Queensland,152.993145,-27.823785 +2020,10,12,1,Queensland,153.06288,-27.549667 +2022,8,19,1,New South Wales,150.729492,-33.428038 +2024,9,6,1,South Australia,138.521101,-34.9273 +2023,10,5,1,Queensland,153.373367,-27.91063 +2024,2,17,1,Queensland,153.059277,-27.548453 +2024,4,25,1,Queensland,153.110137,-27.527428 +2024,9,3,1,South Australia,138.731544,-34.889837 +2023,6,11,1,South Australia,138.680094,-34.961231 +2024,4,11,1,Victoria,145.274963,-38.133308 +2024,5,24,1,Queensland,153.109952,-27.529247 +2024,11,14,1,Queensland,151.773637,-27.374888 +2022,11,21,1,Queensland,153.068535,-27.542575 +2024,3,18,1,Queensland,152.854125,-28.082343 +2022,9,27,1,Queensland,153.399225,-27.497102 +2022,10,1,1,Queensland,152.091003,-27.678639 +2022,2,6,1,Queensland,153.430007,-27.492664 +2024,2,20,1,Queensland,151.63821,-27.792154 +2024,1,20,1,Queensland,151.780555,-26.134773 +2020,7,29,1,Queensland,153.058147,-27.547368 +2023,9,16,1,Victoria,145.047271,-38.26762 +2023,12,12,1,Queensland,153.103868,-27.528463 +2024,4,18,1,South Australia,138.722243,-34.89054 +2022,4,10,1,Queensland,153.079497,-27.506684 +2024,9,14,1,Queensland,153.09089,-27.52682 +2024,10,26,1,Victoria,141.544962,-38.05549 +2024,1,22,1,Queensland,153.05731,-27.552732 +2024,7,8,1,South Australia,138.733402,-34.885956 +2024,1,9,1,Queensland,153.1083,-27.527254 +2024,8,31,1,South Australia,138.627875,-34.891957 +2022,10,3,1,Queensland,152.905077,-28.173591 +2024,7,18,1,South Australia,138.713826,-34.892425 +2023,3,22,1,South Australia,138.672027,-34.936612 +2024,4,20,1,Queensland,153.05737,-27.551178 +2023,10,6,1,Queensland,153.11053,-27.527715 +2024,8,3,1,South Australia,138.624905,-34.893541 +2024,11,2,1,Queensland,153.05341,-27.546883 +2024,2,6,1,Queensland,153.106629,-27.528438 +2022,9,26,1,Queensland,153.06782,-27.508754 +2022,11,19,1,Queensland,151.538422,-27.711563 +2023,5,7,1,South Australia,138.647505,-35.008662 +2020,11,22,1,Queensland,152.108697,-27.666545 +2021,9,13,1,New South Wales,153.377617,-28.254198 +2022,12,30,1,Queensland,151.890309,-27.597909 +2023,4,10,1,Queensland,153.093568,-27.527644 +2022,8,15,1,Queensland,152.945495,-28.125097 +2021,8,8,1,Queensland,153.058953,-27.546268 +2022,1,10,1,South Australia,138.742078,-35.01928 +2024,9,15,1,Victoria,144.690383,-37.415403 +2022,6,29,1,New South Wales,153.402146,-28.259897 +2023,2,9,1,South Australia,138.570212,-35.02537 +2023,3,17,1,Queensland,153.052266,-27.553539 +2024,9,28,1,Queensland,153.07638,-27.504203 +2024,5,23,1,South Australia,135.914236,-34.854982 +2021,11,18,1,Queensland,153.152482,-27.760059 +2024,9,24,1,Queensland,151.830723,-26.037292 +2024,9,13,1,Queensland,153.169656,-27.550387 +2024,9,14,1,Queensland,153.091966,-27.524309 +2023,12,24,1,Queensland,146.86798,-19.128405 +2022,5,26,1,New South Wales,150.24059,-30.99214 +2023,6,10,1,Queensland,153.091174,-27.527844 +2023,11,18,1,Victoria,145.310578,-38.38495 +2021,8,11,1,Victoria,145.128281,-38.384855 +2020,3,12,1,Queensland,153.069846,-27.544873 +2023,3,19,1,Queensland,153.00092,-27.284639 +2024,7,1,1,Queensland,146.868057,-19.128481 +2023,2,18,1,Victoria,144.26823,-37.816977 +2024,5,11,1,Victoria,142.978219,-38.4971 +2022,9,28,1,Queensland,153.073406,-27.545696 +2023,9,25,1,Queensland,152.992589,-27.82388 +2022,8,26,1,Victoria,142.290727,-37.874171 +2022,6,9,1,New South Wales,153.400733,-28.260297 +2020,9,20,1,Queensland,152.987174,-26.490952 +2024,5,7,1,Queensland,153.103508,-27.530435 +2024,11,5,1,Queensland,153.1031,-27.529047 +2024,4,9,1,Victoria,143.903333,-37.638581 +2022,2,11,1,Queensland,153.18009,-27.491583 +2024,9,1,1,Queensland,153.073691,-27.547397 +2021,8,5,1,South Australia,138.656747,-34.865317 +2023,5,1,1,South Australia,138.680925,-34.972889 +2023,4,17,1,Queensland,152.61505,-27.614747 +2024,5,10,1,South Australia,138.72229,-34.8922 +2022,7,3,1,Queensland,152.84552,-27.33973 +2020,6,19,1,Queensland,153.049481,-27.549479 +2023,10,20,1,Queensland,153.092239,-27.524945 +2024,10,6,1,New South Wales,152.336808,-32.303904 +2023,10,17,1,Victoria,143.857335,-38.666747 +2021,12,21,1,Queensland,153.109134,-27.527232 +2024,10,21,1,Queensland,153.276567,-27.526647 +2023,8,19,1,Queensland,146.85685,-19.13856 +2023,4,2,1,Queensland,153.09092,-27.527066 +2024,5,26,1,South Australia,138.625042,-34.893601 +2020,11,30,1,Queensland,151.994675,-26.304521 +2024,8,17,1,Queensland,153.092368,-27.5251 +2022,8,3,1,Queensland,153.14377,-27.658355 +2023,5,28,1,Queensland,146.870438,-19.123105 +2023,9,11,1,New South Wales,152.90187,-31.4424 +2024,11,14,1,South Australia,140.862477,-37.183293 +2020,2,14,1,Queensland,153.056842,-27.551504 +2022,11,17,1,Queensland,152.868877,-28.106086 +2024,5,29,1,Queensland,153.110435,-27.529041 +2024,10,26,1,Victoria,146.640275,-36.175592 +2024,3,7,1,Victoria,144.268345,-37.84194 +2024,9,18,1,Queensland,153.192314,-27.701285 +2024,3,6,1,New South Wales,150.586201,-29.857315 +2022,1,21,1,Queensland,153.364933,-27.922822 +2020,10,14,1,South Australia,138.755377,-34.878631 +2023,2,22,1,Queensland,153.370712,-27.83293 +2024,10,6,1,Victoria,144.409866,-38.004395 +2021,2,28,1,South Australia,138.587897,-35.045074 +2020,1,18,1,Queensland,153.066835,-27.546851 +2021,10,16,1,Queensland,152.027209,-27.650609 +2024,2,14,1,Victoria,142.013961,-37.746425 +2024,3,1,1,New South Wales,146.835717,-34.879411 +2023,11,26,1,Queensland,152.237762,-27.316438 +2023,11,2,1,Queensland,151.970421,-27.42837 +2020,1,4,1,Queensland,153.1682,-27.546843 +2024,10,18,1,Queensland,152.801957,-27.541217 +2022,12,12,1,Queensland,153.074736,-27.545961 +2023,1,8,1,Queensland,153.074155,-27.545944 +2023,12,10,1,Queensland,153.093478,-27.525266 +2022,9,26,1,Queensland,153.073122,-27.545558 +2024,8,23,1,Victoria,147.73468,-37.9222 +2024,3,29,1,Queensland,153.092461,-27.527 +2021,12,25,1,Queensland,153.375597,-27.916936 +2021,2,11,1,Queensland,153.069977,-27.510651 +2024,6,22,1,Queensland,153.112202,-27.527798 +2024,11,9,1,Queensland,153.072982,-27.542176 +2020,8,7,1,Queensland,153.06455,-27.5485 +2023,2,25,1,Queensland,153.03832,-27.26029 +2021,7,13,1,Queensland,153.08653,-27.51002 +2021,9,1,1,Queensland,152.08695,-27.69515 +2024,11,9,1,Queensland,153.092558,-27.542722 +2024,11,14,1,Queensland,153.197708,-27.736797 +2024,10,10,1,Victoria,143.899463,-37.552429 +2021,4,9,1,South Australia,138.734126,-34.932707 +2023,8,25,1,Queensland,152.004319,-27.1395 +2021,12,11,1,Australian Capital Territory,149.11,-35.42 +2020,6,18,1,New South Wales,153.376623,-28.252994 +2023,7,31,1,Australian Capital Territory,148.91,-35.46 +2023,7,23,1,Queensland,153.090673,-27.526711 +2024,2,18,1,Queensland,153.09283,-27.527671 +2023,10,2,1,Queensland,151.933625,-27.329225 +2024,6,3,1,New South Wales,153.307817,-29.052694 +2024,10,5,1,Queensland,152.31733,-26.6029 +2024,9,18,1,South Australia,138.722264,-34.890668 +2023,7,21,1,Victoria,145.270252,-38.12652 +2024,2,15,1,South Australia,138.733576,-34.890109 +2024,3,27,1,South Australia,138.740447,-34.836901 +2020,1,6,1,Victoria,141.550735,-38.388238 +2022,11,30,1,Queensland,153.072673,-27.543574 +2023,7,12,1,Queensland,153.074966,-27.542065 +2024,2,5,1,Queensland,153.093099,-27.528026 +2023,10,3,1,Queensland,151.975418,-27.395798 +2024,10,14,1,Queensland,153.108247,-27.526983 +2020,2,21,1,Queensland,153.057486,-27.551068 +2024,2,6,1,Queensland,153.109648,-27.529699 +2023,12,14,1,Queensland,153.091692,-27.527188 +2022,1,24,1,Queensland,151.868462,-26.52166 +2024,4,24,1,New South Wales,153.40069,-28.258198 +2023,10,14,1,Queensland,153.108964,-27.527262 +2022,2,26,1,New South Wales,153.393979,-28.959215 +2023,2,1,1,Victoria,143.897335,-37.613486 +2023,9,4,1,Victoria,142.363321,-38.318533 +2020,6,13,1,New South Wales,153.40065,-28.257764 +2020,2,19,1,Queensland,153.058009,-27.551571 +2020,7,29,1,New South Wales,153.402412,-28.260564 +2021,11,27,1,South Australia,138.682799,-34.856346 +2023,5,27,1,Queensland,153.091612,-27.527075 +2022,11,27,1,Queensland,151.716308,-27.567187 +2023,7,21,1,Queensland,153.353509,-27.909001 +2023,9,24,1,Victoria,143.860674,-38.66855 +2022,2,28,1,Queensland,152.807466,-27.527999 +2024,7,24,1,South Australia,138.722418,-34.89104 +2020,11,28,1,New South Wales,151.519282,-30.520446 +2023,1,2,1,Queensland,153.103469,-27.529661 +2023,8,22,1,Victoria,144.109915,-37.858163 +2023,7,1,1,Victoria,144.037416,-37.656941 +2024,11,6,1,Queensland,153.110894,-27.528933 +2020,11,10,1,Victoria,145.408328,-36.744916 +2023,8,5,1,Queensland,153.091705,-27.527229 +2021,2,26,1,Victoria,146.163766,-38.671237 +2023,5,14,1,Queensland,152.076692,-27.257769 +2020,6,2,1,Queensland,153.047898,-27.552259 +2024,11,23,1,Queensland,153.103744,-27.528483 +2024,8,24,1,Victoria,146.387771,-38.354832 +2023,1,17,1,Queensland,153.073156,-27.545513 +2022,8,24,1,Queensland,152.082083,-27.701139 +2023,12,22,1,New South Wales,153.294467,-28.864571 +2024,7,12,1,Queensland,153.109827,-27.529481 +2023,1,12,1,Victoria,143.71452,-38.521329 +2024,2,28,1,Queensland,151.749888,-26.155079 +2024,1,6,1,Queensland,152.999035,-27.283743 +2022,1,21,1,Victoria,144.051406,-37.455383 +2020,10,4,1,New South Wales,153.377504,-28.253961 +2023,10,20,1,Queensland,151.562513,-27.792013 +2024,1,7,1,Queensland,153.093067,-27.526246 +2020,11,3,1,South Australia,138.572548,-35.065804 +2024,5,24,1,Queensland,153.103799,-27.529334 +2021,2,1,1,Queensland,153.055987,-27.552159 +2023,8,20,1,Victoria,146.40423,-38.358506 +2024,8,24,1,Queensland,153.093184,-27.528434 +2024,5,21,1,South Australia,138.722603,-34.889588 +2022,5,19,1,Victoria,142.365829,-38.318239 +2024,6,13,1,Queensland,153.069,-27.525372 +2024,11,3,1,South Australia,138.721309,-34.890204 +2022,11,30,1,Queensland,153.058611,-27.551544 +2023,6,17,1,Queensland,153.134139,-27.565408 +2023,8,21,1,Queensland,153.092238,-27.52748 +2022,3,31,1,Queensland,151.882563,-26.313279 +2022,11,5,1,Queensland,152.976972,-27.241846 +2021,3,2,1,Queensland,153.057149,-27.551085 +2022,10,18,1,South Australia,138.719476,-34.891368 +2022,12,31,1,Queensland,153.437718,-27.400175 +2023,7,22,1,New South Wales,152.05922,-32.737903 +2023,1,17,1,Queensland,153.073556,-27.54711 +2024,4,27,1,New South Wales,145.674899,-35.921689 +2023,7,26,1,Queensland,153.111008,-27.527133 +2024,5,17,1,South Australia,138.722575,-34.889683 +2023,11,5,1,Queensland,153.093061,-27.527761 +2024,4,2,1,Queensland,153.105295,-27.531528 +2023,3,25,1,Queensland,153.092423,-27.528481 +2020,9,15,1,Queensland,153.059537,-27.54879 +2021,11,15,1,Victoria,146.164183,-38.671345 +2024,3,17,1,Victoria,144.189692,-37.859714 +2020,9,28,1,Victoria,145.124891,-38.390728 +2024,6,3,1,New South Wales,153.283212,-29.029327 +2021,10,23,1,South Australia,138.697867,-34.933036 +2023,11,6,1,Queensland,153.10258,-27.52952 +2022,1,26,1,Victoria,145.70177,-37.76548 +2024,9,16,1,Queensland,151.743591,-26.463545 +2024,3,10,1,Queensland,153.091816,-27.527104 +2024,3,13,1,Queensland,153.104465,-27.530609 +2024,8,18,1,Queensland,153.091964,-27.527196 +2021,10,23,1,South Australia,138.698228,-34.932917 +2021,9,19,1,South Australia,138.645938,-35.005057 +2023,7,9,1,Queensland,153.091871,-27.528292 +2024,3,16,1,Queensland,153.09162,-27.52705 +2024,7,28,1,Queensland,153.092412,-27.528258 +2023,6,2,1,Queensland,152.896045,-25.355972 +2023,12,26,1,Queensland,152.074634,-27.358394 +2024,3,1,1,Queensland,153.104926,-27.529803 +2024,4,18,1,South Australia,138.716882,-34.893435 +2023,2,6,1,South Australia,138.665253,-34.866092 +2023,9,8,1,Queensland,153.115112,-27.528623 +2024,10,14,1,Queensland,151.777039,-26.389495 +2024,9,11,1,New South Wales,152.825246,-29.507805 +2023,11,7,1,Queensland,152.102753,-27.569922 +2022,11,19,1,South Australia,138.671642,-35.016328 +2022,12,11,1,Queensland,153.073083,-27.546799 +2023,9,12,1,Queensland,152.004272,-27.414663 +2020,12,8,1,Queensland,153.056453,-27.546663 +2024,7,29,1,Queensland,151.913641,-27.648875 +2021,6,23,1,Victoria,143.886309,-37.661268 +2024,5,13,1,South Australia,138.727334,-34.889746 +2024,5,11,1,Queensland,153.092243,-27.525062 +2024,5,10,1,Victoria,142.978194,-38.497075 +2023,9,20,1,Queensland,151.546988,-26.084729 +2024,9,17,1,Queensland,151.595567,-27.696388 +2021,5,25,1,Queensland,153.048732,-27.526113 +2021,4,5,1,South Australia,138.673287,-35.013922 +2021,1,20,1,Queensland,153.055379,-27.55219 +2022,8,9,1,South Australia,138.648531,-34.883873 +2024,11,1,1,Queensland,152.058822,-27.260042 +2024,2,8,1,Victoria,145.302428,-38.38399 +2024,10,13,1,Queensland,153.085556,-27.507786 +2024,2,17,1,Queensland,152.654799,-26.401998 +2023,4,16,1,Victoria,146.387718,-38.354801 +2023,1,2,1,Queensland,151.972461,-26.165098 +2024,11,14,1,Queensland,152.993582,-27.823732 +2022,6,4,1,Queensland,152.310088,-27.444467 +2024,3,9,1,Victoria,143.841094,-37.59851 +2023,11,24,1,Victoria,146.387584,-38.354645 +2024,2,2,1,Queensland,153.107625,-27.527231 +2022,5,23,1,Queensland,152.789137,-27.510273 +2022,9,3,1,New South Wales,146.518702,-34.746659 +2023,8,30,1,Queensland,153.075571,-27.543567 +2021,9,5,1,Queensland,152.402932,-27.462439 +2024,6,26,1,Queensland,153.068692,-27.225178 +2023,7,28,1,Queensland,153.093352,-27.524157 +2021,2,6,1,Queensland,153.085412,-27.507298 +2024,7,10,1,South Australia,138.627002,-34.891675 +2023,12,31,1,Victoria,147.731057,-37.923154 +2020,5,10,1,New South Wales,153.376891,-28.255031 +2020,7,8,1,Queensland,153.054282,-27.538842 +2024,2,21,1,Queensland,152.732162,-27.779587 +2020,10,13,1,Queensland,153.056505,-27.544696 +2021,8,14,1,South Australia,138.700231,-34.997014 +2024,5,27,1,Victoria,142.977633,-38.497639 +2023,11,24,1,South Australia,138.714842,-34.893805 +2022,11,10,1,Queensland,151.991822,-27.428314 +2024,5,22,1,Queensland,153.067255,-27.861501 +2024,3,13,1,Victoria,143.514542,-38.835617 +2023,1,5,1,Queensland,151.991554,-27.533461 +2021,10,24,1,Queensland,153.081671,-27.508355 +2020,4,24,1,Victoria,145.046182,-38.433031 +2021,12,6,1,Queensland,153.058422,-27.547299 +2024,4,13,1,Queensland,153.109328,-27.529857 +2020,2,14,1,South Australia,138.733277,-34.874546 +2023,10,2,1,Queensland,153.086574,-27.507984 +2022,3,23,1,New South Wales,153.40089,-28.26038 +2024,3,17,1,Queensland,151.892277,-27.601408 +2023,11,3,1,Queensland,153.110731,-27.527502 +2021,1,26,1,New South Wales,150.822328,-34.101897 +2023,3,27,1,Queensland,153.059141,-27.552009 +2023,4,17,1,Queensland,153.234727,-27.971311 +2023,9,6,1,Queensland,153.103348,-27.529091 +2023,1,14,1,Queensland,153.112319,-27.528847 +2023,5,22,1,Queensland,153.429529,-28.157351 +2024,8,12,1,South Australia,138.690077,-34.954297 +2023,10,17,1,Queensland,153.371203,-27.906278 +2024,5,26,1,Queensland,153.092064,-27.527129 +2024,8,13,1,South Australia,138.732117,-34.890411 +2024,9,30,1,Queensland,151.749888,-26.155079 +2024,5,14,1,Queensland,152.743106,-27.881453 +2024,7,15,1,Queensland,153.112687,-27.528653 +2024,11,5,1,Queensland,153.090439,-27.526987 +2024,4,28,1,South Australia,138.673436,-34.930914 +2020,9,7,1,Victoria,145.124444,-37.741667 +2020,3,11,1,Queensland,153.060283,-27.546283 +2024,10,6,1,Queensland,153.092976,-27.524635 +2023,11,2,1,Victoria,141.549657,-37.720503 +2024,9,18,1,Queensland,153.378563,-27.906045 +2024,10,17,1,Victoria,141.668921,-38.037138 +2023,10,8,1,Queensland,153.090871,-27.527835 +2023,9,2,1,New South Wales,153.406817,-28.980069 +2020,12,6,1,Queensland,151.496007,-28.051814 +2024,10,2,1,South Australia,138.718701,-34.932539 +2024,6,12,1,Queensland,153.108665,-27.527213 +2020,2,16,1,Victoria,144.310002,-37.312829 +2022,11,19,1,South Australia,138.702408,-34.900618 +2022,5,17,1,Victoria,142.367001,-38.315479 +2022,8,6,1,New South Wales,146.565181,-34.759306 +2023,3,26,1,New South Wales,150.825642,-34.098762 +2023,2,25,1,Victoria,145.452419,-37.018442 +2024,3,8,1,South Australia,138.656862,-34.865275 +2024,4,4,1,Queensland,151.749888,-26.155079 +2020,11,20,1,Queensland,152.938737,-27.162881 +2022,9,10,1,Queensland,152.942869,-27.140329 +2024,6,12,1,Queensland,153.111126,-27.527891 +2024,8,16,1,South Australia,138.626807,-34.89154 +2023,5,28,1,New South Wales,153.316871,-28.944287 +2022,11,24,1,Victoria,145.108237,-38.398323 +2020,7,1,1,New South Wales,153.377041,-28.254178 +2023,2,27,1,Queensland,153.092497,-27.527201 +2020,1,23,1,New South Wales,150.551952,-29.872848 +2022,11,1,1,Victoria,145.275077,-38.138377 +2021,10,10,1,Victoria,146.164078,-38.671622 +2023,8,15,1,Victoria,146.387721,-38.354735 +2022,7,16,1,Queensland,152.187968,-27.260483 +2020,6,17,1,Victoria,145.726143,-36.523711 +2020,11,6,1,New South Wales,153.3774,-28.253919 +2022,10,6,1,Victoria,143.860876,-38.668089 +2024,4,21,1,Queensland,153.092334,-27.527277 +2023,5,31,1,Queensland,153.105013,-27.530055 +2022,11,26,1,Queensland,151.544977,-27.792798 +2023,1,12,1,Queensland,153.110719,-27.529794 +2021,10,28,1,Queensland,148.687907,-21.687433 +2024,7,5,1,Queensland,153.103774,-27.529705 +2023,9,8,1,Queensland,152.04642,-27.25722 +2023,1,2,1,Queensland,153.103302,-27.529989 +2024,7,2,1,Queensland,153.377058,-27.919485 +2023,10,23,1,Queensland,151.660845,-27.671925 +2023,10,2,1,Queensland,153.091693,-27.526922 +2024,5,21,1,Queensland,153.109042,-27.528867 +2022,12,6,1,Queensland,153.190467,-27.701955 +2021,3,12,1,New South Wales,146.570708,-34.762416 +2024,11,17,1,New South Wales,152.141436,-32.7208 +2023,4,25,1,Queensland,151.5177,-27.735642 +2023,4,4,1,Queensland,153.111174,-27.527204 +2022,8,6,1,Queensland,151.261058,-28.102751 +2024,7,26,1,Queensland,153.092153,-27.525534 +2020,6,1,1,Queensland,153.033124,-27.539547 +2024,4,10,1,Queensland,153.104584,-27.530648 +2024,7,21,1,Queensland,153.090942,-27.526827 +2024,6,16,1,Queensland,153.092609,-27.528658 +2024,5,1,1,South Australia,138.722565,-34.891881 +2023,10,25,1,New South Wales,150.803556,-34.109422 +2023,3,4,1,South Australia,138.650735,-34.967168 +2021,7,23,1,Victoria,142.023619,-37.752195 +2021,12,27,1,Victoria,149.67778,-37.478538 +2024,10,21,1,Victoria,143.859057,-38.6665 +2024,4,13,1,Victoria,144.17603,-37.864367 +2020,9,15,1,Queensland,153.059605,-27.548933 +2024,10,5,1,Queensland,153.104993,-27.529487 +2023,4,3,1,South Australia,138.722725,-34.9935 +2020,12,26,1,Victoria,143.899032,-37.616585 +2022,9,8,1,Queensland,153.072254,-27.542563 +2023,12,7,1,South Australia,138.733956,-34.88744 +2024,10,20,1,South Australia,138.82888,-34.781419 +2022,2,4,1,Victoria,143.860741,-38.66886 +2024,7,6,1,South Australia,137.337522,-35.722198 +2020,2,17,1,Queensland,153.057839,-27.551062 +2023,1,1,1,Victoria,143.481767,-38.80042 +2024,3,23,1,South Australia,138.702174,-34.902398 +2023,12,27,1,Victoria,145.979095,-38.530922 +2023,12,27,1,Queensland,153.081957,-27.246129 +2023,2,10,1,Queensland,153.085135,-27.510225 +2023,10,20,1,Queensland,153.11176,-27.52778 +2024,6,4,1,Queensland,153.110183,-27.527644 +2022,10,16,1,Victoria,146.388213,-38.362113 +2023,9,28,1,South Australia,135.780687,-34.810775 +2023,7,23,1,Queensland,152.973936,-26.251336 +2024,11,11,1,Queensland,153.106914,-27.529027 +2023,1,29,1,Queensland,153.091054,-27.52709 +2024,5,28,1,Queensland,152.991342,-27.270859 +2020,9,14,1,Queensland,153.056978,-27.544685 +2022,11,25,1,Queensland,153.356672,-27.939195 +2024,6,23,1,Queensland,153.092998,-27.524955 +2021,11,4,1,Victoria,145.27145,-38.133232 +2022,4,11,1,Victoria,145.32942,-36.946751 +2023,4,24,1,Queensland,151.503403,-27.726645 +2021,2,5,1,Queensland,153.055622,-27.536928 +2024,7,28,1,Victoria,143.857365,-38.669776 +2020,10,17,1,Queensland,153.058232,-27.546483 +2022,1,22,1,Victoria,146.389805,-38.356617 +2021,9,26,1,Victoria,145.216828,-38.372963 +2020,5,17,1,South Australia,138.649917,-35.004093 +2023,10,14,1,Queensland,153.09072,-27.526042 +2024,6,8,1,Queensland,153.092745,-27.527804 +2024,3,7,1,Queensland,151.762506,-26.16856 +2023,2,25,1,Queensland,151.895508,-27.597925 +2023,2,16,1,Queensland,153.092333,-27.525213 +2022,11,11,1,Queensland,151.536121,-27.711387 +2021,11,30,1,Queensland,152.994055,-27.823168 +2023,10,29,1,Victoria,145.72792,-38.62808 +2022,11,6,1,Victoria,143.239242,-37.286578 +2021,5,24,1,Queensland,153.062168,-27.534504 +2023,10,4,1,Queensland,149.103205,-22.348814 +2022,5,8,1,Queensland,153.014105,-26.395997 +2024,8,17,1,Queensland,153.091952,-27.526892 +2024,7,6,1,Queensland,151.863155,-26.490041 +2024,8,17,1,Victoria,146.387107,-38.35818 +2023,11,13,1,Queensland,153.381713,-27.963622 +2023,2,7,1,Queensland,153.108759,-27.526869 +2022,11,7,1,Queensland,151.259858,-28.101319 +2020,4,1,1,Queensland,153.052842,-27.550321 +2023,3,30,1,Victoria,142.536412,-38.392824 +2024,7,13,1,Queensland,153.090242,-27.526541 +2024,11,15,1,South Australia,138.683747,-34.92867 +2022,6,4,1,Queensland,153.072234,-27.226229 +2020,6,7,1,Queensland,153.070429,-27.225187 +2021,11,20,1,Victoria,146.164139,-38.671712 +2024,10,12,1,Queensland,153.091335,-27.526814 +2024,5,23,1,Victoria,143.901148,-37.641822 +2024,3,1,1,Queensland,153.074673,-27.554485 +2022,1,20,1,South Australia,138.572564,-35.048885 +2024,10,20,1,Queensland,153.092283,-27.528045 +2024,7,1,1,Queensland,153.367564,-27.898047 +2023,8,19,1,Queensland,153.091745,-27.526877 +2022,8,1,1,Queensland,152.932674,-27.975989 +2024,8,29,1,Queensland,151.808855,-26.384822 +2020,5,22,1,Queensland,152.991771,-27.258379 +2021,3,10,1,Queensland,153.007796,-27.232858 +2023,3,22,1,Queensland,153.060108,-27.551072 +2023,4,23,1,Queensland,151.775294,-26.182073 +2024,10,19,1,Queensland,153.090156,-27.526276 +2024,10,15,1,Queensland,152.992687,-27.822701 +2023,2,6,1,Queensland,153.071358,-27.544278 +2021,5,19,1,Queensland,153.057811,-27.55112 +2023,6,27,1,New South Wales,153.324319,-28.839674 +2023,7,22,1,New South Wales,153.400736,-28.258199 +2023,10,23,1,Queensland,153.110729,-27.529801 +2021,3,17,1,Victoria,147.748591,-37.914052 +2020,3,21,1,Victoria,143.481888,-38.799642 +2024,3,28,1,Queensland,153.073301,-27.547203 +2021,10,5,1,Queensland,153.05895,-27.546467 +2024,7,7,1,Queensland,153.090794,-27.526672 +2024,2,11,1,Queensland,153.092249,-27.528434 +2023,8,20,1,Queensland,153.090749,-27.526329 +2022,11,17,1,Queensland,153.073837,-27.545575 +2023,2,13,1,Queensland,153.109066,-27.529297 +2022,9,28,1,Queensland,153.072463,-27.544613 +2020,11,18,1,South Australia,138.715646,-35.015793 +2024,3,20,1,Queensland,153.108338,-27.52895 +2022,4,8,1,Victoria,143.890733,-37.584267 +2022,6,21,1,Queensland,152.106528,-27.562496 +2024,7,3,1,Victoria,143.607096,-38.768083 +2023,9,5,1,Queensland,153.103047,-27.529067 +2024,7,26,1,South Australia,138.720555,-34.88719 +2022,10,22,1,South Australia,138.691324,-34.958634 +2022,8,6,1,New South Wales,146.566833,-34.756983 +2021,3,29,1,Queensland,153.078469,-27.514486 +2024,5,11,1,Victoria,142.974914,-38.499803 +2024,9,11,1,Queensland,153.19019,-27.701741 +2020,9,9,1,Queensland,153.085319,-27.507099 +2023,7,1,1,New South Wales,149.301124,-31.584591 +2021,2,25,1,Queensland,153.052046,-27.548399 +2024,9,12,1,Queensland,152.993755,-27.82343 +2024,4,2,1,Queensland,151.762506,-26.16856 +2024,7,14,1,Queensland,152.86915,-26.15117 +2023,3,27,1,Queensland,153.05919,-27.551618 +2024,10,31,1,New South Wales,150.63993,-29.793324 +2021,7,15,1,Queensland,153.060487,-27.550233 +2022,2,5,1,Victoria,146.526342,-38.432183 +2021,5,23,1,South Australia,138.637617,-35.0057 +2023,2,23,1,New South Wales,153.40112,-28.25823 +2024,8,3,1,Queensland,153.09095,-27.526541 +2023,2,27,1,Queensland,153.112067,-27.52905 +2021,8,15,1,Queensland,152.997736,-27.434525 +2024,1,17,1,South Australia,138.707262,-34.90442 +2024,4,27,1,New South Wales,150.983907,-34.096899 +2023,12,26,1,Queensland,153.092019,-27.527226 +2024,2,5,1,South Australia,138.72477,-34.889365 +2023,11,18,1,Queensland,153.091516,-27.526775 +2023,10,17,1,Victoria,143.857335,-38.666747 +2022,1,9,1,Queensland,153.083708,-27.505854 +2023,7,8,1,Queensland,153.093342,-27.524164 +2022,6,5,1,Queensland,152.845353,-27.344663 +2021,4,11,1,South Australia,138.740905,-34.838304 +2023,11,4,1,Queensland,151.841054,-26.561671 +2024,10,1,1,New South Wales,146.495972,-34.721703 +2024,2,29,1,Queensland,153.066228,-27.539272 +2023,3,18,1,Queensland,153.10904,-27.527098 +2024,2,10,1,Victoria,147.731445,-37.923633 +2024,11,15,1,Queensland,153.10711,-27.528787 +2023,1,24,1,Queensland,153.068729,-27.541726 +2024,9,21,1,New South Wales,146.589888,-34.76995 +2021,9,19,1,New South Wales,151.518403,-30.520863 +2023,12,9,1,Queensland,153.399322,-27.496178 +2024,8,1,1,Queensland,153.290158,-27.982947 +2023,10,11,1,Queensland,152.627861,-27.870082 +2024,10,29,1,Queensland,153.187287,-28.194692 +2024,1,23,1,Victoria,145.171067,-38.17307 +2024,9,20,1,Queensland,152.021535,-26.293881 +2022,11,15,1,Queensland,148.474418,-21.410485 +2023,3,27,1,Queensland,153.059176,-27.551578 +2022,1,6,1,New South Wales,153.376817,-28.254076 +2020,8,9,1,New South Wales,153.392799,-28.268988 +2023,3,4,1,Victoria,141.046859,-37.998279 +2022,7,12,1,Queensland,152.18901,-27.456754 +2023,2,17,1,Queensland,152.249519,-27.495775 +2023,9,17,1,South Australia,138.662024,-35.007958 +2024,2,5,1,South Australia,138.730168,-34.890269 +2021,12,30,1,Queensland,153.037797,-27.533424 +2024,6,8,1,Queensland,153.090763,-27.525875 +2024,7,25,1,Queensland,152.993242,-27.82352 +2024,7,27,1,Queensland,146.869378,-19.127443 +2024,10,30,1,Queensland,153.054341,-27.551945 +2024,2,19,1,Queensland,153.104372,-27.529713 +2022,12,18,1,Queensland,153.377058,-27.919485 +2024,5,13,1,Queensland,152.589021,-27.949121 +2022,2,9,1,Queensland,153.058601,-27.534128 +2024,10,31,1,Victoria,145.650477,-37.025778 +2024,10,13,1,Queensland,152.993049,-27.82374 +2024,7,18,1,New South Wales,151.640253,-30.486581 +2023,11,15,1,Queensland,150.674545,-26.71854 +2023,3,28,1,Queensland,153.091957,-27.527153 +2024,2,15,1,Queensland,153.057943,-27.551691 +2023,8,7,1,Queensland,153.113758,-27.528541 +2021,3,11,1,Victoria,145.281429,-38.128005 +2023,3,21,1,Queensland,153.091562,-27.526994 +2020,4,23,1,Queensland,153.37139,-27.926284 +2024,7,25,1,Queensland,153.054073,-27.524077 +2024,4,23,1,Queensland,153.372151,-27.908931 +2024,10,14,1,Queensland,153.104837,-27.529141 +2023,3,2,1,Queensland,152.183432,-27.531002 +2024,2,14,1,Victoria,143.883587,-37.587485 +2023,10,17,1,Queensland,153.090198,-27.525557 +2023,12,29,1,Queensland,153.103784,-27.529569 +2024,10,22,1,New South Wales,153.389714,-28.28456 +2020,10,12,1,Queensland,153.060528,-27.549552 +2021,2,11,1,Queensland,153.059374,-27.550725 +2020,3,2,1,Victoria,143.541468,-38.797562 +2024,7,13,1,South Australia,138.694288,-34.921878 +2021,9,9,1,New South Wales,152.899511,-30.461312 +2024,7,5,1,Queensland,152.365814,-27.453128 +2024,6,18,1,Queensland,152.614414,-27.339773 +2023,6,3,1,Queensland,153.091777,-27.527032 +2023,5,9,1,South Australia,138.573822,-35.028938 +2024,4,12,1,New South Wales,150.601369,-29.870236 +2024,4,3,1,Victoria,141.921794,-38.057382 +2024,1,19,1,Queensland,153.104006,-27.530347 +2023,10,29,1,Queensland,153.093076,-27.526263 +2024,4,18,1,Victoria,143.97522,-38.552616 +2024,10,14,1,Queensland,152.455122,-27.530272 +2022,5,24,1,Victoria,146.387677,-38.354151 +2024,10,31,1,Queensland,151.706573,-26.166315 +2024,3,30,1,Queensland,153.103362,-27.528452 +2020,8,14,1,South Australia,138.702499,-34.903119 +2022,10,27,1,New South Wales,150.302367,-31.191682 +2023,10,13,1,Queensland,153.111416,-27.528077 +2023,12,29,1,Queensland,153.092954,-27.525995 +2024,8,10,1,Victoria,142.010213,-38.183723 +2023,11,4,1,Queensland,152.67747,-27.986118 +2023,11,14,1,Queensland,153.110132,-27.527511 +2024,10,21,1,Queensland,151.957428,-27.444395 +2020,10,19,1,Queensland,153.058166,-27.550934 +2023,11,13,1,Queensland,153.102968,-27.526836 +2021,7,29,1,Queensland,153.058905,-27.551379 +2022,5,4,1,Queensland,153.061067,-27.534003 +2023,10,18,1,Victoria,143.860733,-38.667964 +2020,5,24,1,South Australia,138.750341,-34.997629 +2023,12,8,1,Queensland,153.104436,-27.530734 +2022,10,12,1,Queensland,153.073411,-27.545864 +2021,7,11,1,Queensland,153.082691,-27.506259 +2022,9,21,1,New South Wales,153.126071,-30.29535 +2023,12,3,1,Queensland,153.000519,-27.284776 +2024,6,15,1,Queensland,153.092274,-27.52833 +2021,11,30,1,Queensland,152.994186,-27.823161 +2021,11,20,1,Victoria,145.384688,-37.097564 +2022,4,9,1,New South Wales,153.402261,-28.260126 +2021,4,1,1,Queensland,153.095967,-27.566908 +2024,2,28,1,Queensland,153.105451,-27.529753 +2022,10,21,1,South Australia,137.595543,-35.595972 +2023,4,12,1,Queensland,153.079117,-27.515603 +2022,3,15,1,Queensland,152.872747,-28.213276 +2023,11,5,1,Queensland,151.530455,-27.722595 +2022,7,23,1,New South Wales,153.035984,-28.601786 +2023,12,30,1,South Australia,138.56021,-35.26028 +2024,9,19,1,Queensland,151.813065,-26.13111 +2020,12,3,1,Victoria,145.267139,-38.131072 +2022,6,15,1,Queensland,146.868438,-19.126572 +2023,4,20,1,Victoria,145.501603,-37.034825 +2021,10,21,1,Queensland,151.448752,-26.103964 +2024,8,25,1,Queensland,152.853424,-28.303959 +2023,11,15,1,Victoria,147.731338,-37.923962 +2023,8,5,1,Queensland,153.062103,-27.53713 +2022,10,3,1,Victoria,143.893816,-37.620158 +2024,7,12,1,Queensland,152.401375,-27.456833 +2023,12,19,1,Queensland,153.092039,-27.525905 +2022,9,25,1,Victoria,144.101143,-37.564119 +2021,6,20,1,Queensland,153.050648,-27.552005 +2024,1,27,1,Queensland,152.102695,-27.569652 +2024,10,5,1,Queensland,152.524017,-28.194553 +2021,6,3,1,Queensland,153.05221,-27.548216 +2023,3,9,1,South Australia,138.656527,-34.959642 +2024,5,13,1,South Australia,138.734752,-34.888776 +2021,10,10,1,Queensland,153.081298,-27.508123 +2024,1,14,1,South Australia,138.656585,-34.869105 +2023,2,3,1,Queensland,153.068125,-27.545078 +2020,9,5,1,New South Wales,150.868999,-29.624528 +2021,10,19,1,Victoria,146.16385,-38.671158 +2024,4,26,1,Victoria,143.29335,-38.753597 +2021,10,15,1,Queensland,151.973062,-27.645043 +2024,4,18,1,South Australia,138.721339,-34.892671 +2024,9,24,1,Queensland,152.835693,-26.277538 +2020,7,23,1,South Australia,138.710407,-34.909476 +2023,6,17,1,Queensland,153.134186,-27.565422 +2021,9,26,1,Queensland,153.078726,-27.5068 +2024,9,7,1,Queensland,152.997475,-27.287914 +2022,12,30,1,Queensland,151.895057,-27.599273 +2024,10,5,1,Queensland,153.108764,-27.526925 +2021,11,15,1,Queensland,153.069245,-27.504505 +2022,4,1,1,New South Wales,146.535095,-34.755897 +2023,3,28,1,Victoria,144.068681,-37.76158 +2023,9,15,1,Queensland,153.158674,-27.656227 +2021,11,10,1,Victoria,144.03315,-38.068643 +2021,7,29,1,South Australia,138.733291,-34.890466 +2022,11,23,1,Queensland,151.713519,-27.261001 +2021,2,11,1,Queensland,153.059424,-27.548746 +2024,2,11,1,Queensland,152.102906,-27.569017 +2023,3,14,1,Queensland,153.368384,-27.897685 +2024,4,13,1,Queensland,153.072702,-27.54916 +2020,3,3,1,Victoria,141.77501,-38.202791 +2024,3,6,1,Queensland,153.104444,-27.530431 +2021,12,5,1,Queensland,152.344529,-27.831775 +2023,12,12,1,Queensland,152.920596,-26.745014 +2024,3,21,1,South Australia,138.568958,-35.095342 +2023,9,9,1,Queensland,153.091078,-27.526446 +2024,7,3,1,Queensland,153.091929,-27.525538 +2023,1,8,1,Queensland,153.072229,-27.545112 +2023,9,22,1,Queensland,153.103448,-27.530529 +2021,11,16,1,Queensland,152.063781,-27.261908 +2020,3,16,1,Queensland,153.058405,-27.546316 +2023,4,28,1,Victoria,144.286,-37.849117 +2021,10,13,1,Queensland,152.971309,-27.288737 +2024,8,29,1,South Australia,138.72259,-34.891817 +2022,8,3,1,Queensland,153.086808,-27.034114 +2023,10,15,1,Queensland,153.090428,-27.527195 +2023,10,10,1,Queensland,153.110401,-27.527023 +2020,9,27,1,South Australia,138.72184,-34.936362 +2023,12,12,1,Victoria,146.304017,-38.952295 +2020,9,20,1,Queensland,152.569872,-27.243756 +2022,4,15,1,South Australia,138.713339,-34.874458 +2024,1,21,1,New South Wales,150.854341,-34.07774 +2023,12,27,1,Queensland,153.375406,-27.911913 +2022,2,23,1,Victoria,144.281852,-37.842258 +2023,5,14,1,Queensland,152.07677,-27.257798 +2022,2,11,1,Queensland,152.945617,-28.125314 +2020,11,19,1,South Australia,138.735106,-34.893372 +2022,12,27,1,Queensland,152.047303,-27.262487 +2024,5,17,1,South Australia,138.722604,-34.891584 +2024,10,2,1,Queensland,152.6409,-27.452792 +2023,8,11,1,Queensland,153.10471,-27.529883 +2020,1,9,1,Queensland,151.854125,-26.506533 +2024,4,18,1,Queensland,153.051611,-27.548758 +2022,12,25,1,Queensland,151.889159,-27.600747 +2024,10,18,1,Queensland,153.10553,-27.529644 +2024,11,8,1,South Australia,138.514136,-35.132078 +2024,11,9,1,Queensland,153.090346,-27.527013 +2023,7,31,1,Queensland,151.9368,-27.622184 +2021,4,9,1,Queensland,153.056747,-27.544172 +2024,7,23,1,Queensland,153.11116,-27.528801 +2023,5,20,1,Queensland,153.375028,-27.917318 +2021,11,28,1,Queensland,151.734673,-27.594649 +2023,8,6,1,Queensland,153.373203,-27.917407 +2023,3,23,1,Queensland,153.090697,-27.526422 +2021,11,28,1,Queensland,151.520442,-27.715401 +2023,5,29,1,Queensland,153.10937,-27.528938 +2024,3,1,1,Queensland,153.084285,-27.609306 +2024,4,12,1,South Australia,138.7227,-34.891963 +2022,11,12,1,Queensland,151.865226,-27.193142 +2020,8,7,1,Victoria,146.040574,-38.58811 +2021,1,23,1,Queensland,153.058479,-27.54761 +2022,9,28,1,Queensland,151.946912,-25.947737 +2023,12,16,1,Queensland,153.107263,-27.527377 +2024,10,10,1,Queensland,153.08625,-27.506236 +2024,10,26,1,Queensland,153.091948,-27.527035 +2021,4,12,1,Victoria,146.163742,-38.67128 +2022,9,22,1,Queensland,153.068361,-27.525343 +2022,11,19,1,Queensland,151.525547,-27.713907 +2022,11,24,1,Queensland,152.057976,-27.264912 +2023,3,9,1,New South Wales,153.450764,-28.266486 +2021,6,28,1,Queensland,146.842355,-19.135861 +2023,10,31,1,Queensland,153.192545,-27.703321 +2020,1,18,1,Queensland,153.068704,-27.54523 +2021,11,29,1,Queensland,151.576001,-27.80776 +2024,1,9,1,Queensland,151.523012,-27.709575 +2020,9,16,1,Victoria,145.132204,-38.175466 +2020,1,22,1,Victoria,143.86159,-38.667657 +2022,10,29,1,Victoria,143.871709,-37.603695 +2024,1,27,1,Queensland,153.091661,-27.527196 +2023,5,18,1,Queensland,152.249435,-27.496763 +2023,10,20,1,Queensland,151.568023,-27.691839 +2023,3,30,1,Queensland,152.860815,-27.54869 +2023,8,28,1,New South Wales,151.235197,-33.118283 +2024,3,27,1,Victoria,143.49568,-38.803422 +2024,8,17,1,Queensland,153.091416,-27.52693 +2024,3,10,1,Queensland,153.092982,-27.527129 +2024,10,7,1,Queensland,153.093599,-27.527873 +2021,2,27,1,Queensland,153.038582,-27.535191 +2022,3,12,1,Queensland,153.085421,-27.510404 +2024,7,29,1,Queensland,153.103787,-27.529889 +2021,10,23,1,South Australia,138.698322,-34.933097 +2023,9,24,1,Queensland,153.438747,-27.397143 +2020,6,1,1,Queensland,153.033118,-27.539771 +2021,3,6,1,Victoria,145.497195,-35.815829 +2022,10,30,1,Victoria,143.925668,-37.653072 +2021,5,2,1,South Australia,138.671331,-35.012661 +2020,11,21,1,New South Wales,153.377107,-28.25432 +2023,10,1,1,Queensland,152.39267,-27.92274 +2022,6,11,1,Victoria,147.731387,-37.923603 +2020,10,31,1,South Australia,138.874388,-34.988505 +2022,8,31,1,Victoria,144.219118,-37.833687 +2020,4,6,1,South Australia,138.694021,-34.956986 +2024,5,3,1,South Australia,138.727439,-34.889628 +2023,11,10,1,Queensland,153.105688,-27.529332 +2023,12,5,1,Queensland,153.401723,-27.496583 +2023,5,3,1,Queensland,152.249514,-27.496771 +2024,6,1,1,South Australia,138.662988,-35.002263 +2023,1,30,1,Queensland,153.090633,-27.525991 +2023,11,26,1,Victoria,144.28475,-37.836923 +2023,7,6,1,Queensland,153.090976,-27.527611 +2023,11,1,1,Queensland,153.112064,-27.5292 +2022,11,6,1,Victoria,143.996806,-37.688518 +2023,11,15,1,Victoria,147.727005,-37.92017 +2023,10,6,1,South Australia,138.583281,-35.09938 +2024,4,16,1,South Australia,138.733943,-34.890129 +2023,8,27,1,Queensland,153.00078,-27.284444 +2024,11,11,1,Queensland,151.940737,-27.643708 +2023,12,14,1,Victoria,143.341228,-38.322317 +2024,4,24,1,Queensland,153.10347,-27.530036 +2023,8,15,1,Queensland,153.093602,-27.524214 +2024,2,14,1,New South Wales,149.330733,-33.689112 +2024,4,28,1,South Australia,138.832124,-34.889307 +2023,7,25,1,Queensland,153.103401,-27.528921 +2022,12,10,1,Victoria,149.73732,-37.526319 +2021,3,2,1,Queensland,153.054742,-27.550804 +2020,9,9,1,South Australia,138.657846,-35.011955 +2021,7,12,1,South Australia,137.639878,-35.647675 +2023,12,27,1,South Australia,138.729243,-34.889826 +2024,8,24,1,Queensland,153.091418,-27.527111 +2024,6,16,1,Queensland,153.092476,-27.527496 +2020,7,11,1,South Australia,138.613816,-34.903278 +2021,4,28,1,Victoria,143.890604,-37.584539 +2021,12,4,1,Queensland,153.324167,-27.90447 +2024,9,3,1,New South Wales,150.585771,-29.857121 +2022,11,8,1,Queensland,153.399338,-27.496128 +2024,2,6,1,South Australia,138.73686,-34.827229 +2023,6,10,1,Queensland,153.090816,-27.527586 +2020,12,15,1,South Australia,138.650422,-35.01953 +2023,10,30,1,New South Wales,146.535538,-34.745395 +2022,1,5,1,Queensland,153.139232,-27.623044 +2024,7,6,1,South Australia,137.262462,-35.69921 +2024,3,21,1,Queensland,153.065108,-27.557072 +2023,9,2,1,Queensland,152.958816,-27.26616 +2023,4,16,1,Queensland,153.092387,-27.528264 +2024,3,23,1,Queensland,153.060641,-27.555612 +2024,11,7,1,Queensland,152.003281,-27.414463 +2024,9,21,1,Queensland,152.61325,-27.339457 +2024,10,23,1,Queensland,153.091507,-27.527254 +2023,7,29,1,Queensland,153.10934,-27.529418 +2024,9,21,1,Queensland,153.090906,-27.527454 +2022,8,22,1,Queensland,153.190233,-28.173391 +2022,11,5,1,Queensland,151.943705,-27.390965 +2023,9,26,1,Victoria,143.667585,-38.755128 +2024,8,19,1,Queensland,151.774812,-27.392103 +2023,12,27,1,Victoria,143.157648,-38.246999 +2024,2,11,1,Queensland,153.092455,-27.528522 +2023,10,30,1,Queensland,153.190179,-27.701275 +2023,10,20,1,Queensland,151.521133,-27.719775 +2024,10,12,1,Queensland,153.090126,-27.220534 +2023,4,23,1,Queensland,153.091641,-27.527175 +2024,3,24,1,New South Wales,150.57722,-29.8624 +2023,6,8,1,Queensland,152.391076,-27.742261 +2020,10,3,1,New South Wales,151.520217,-30.520347 +2023,12,31,1,Victoria,147.726745,-37.924247 +2023,4,4,1,Queensland,153.110512,-27.528248 +2021,12,13,1,Victoria,146.163925,-38.671197 +2023,11,1,1,South Australia,138.72968,-34.890007 +2022,7,5,1,South Australia,138.657088,-34.865118 +2021,4,9,1,Queensland,153.05865,-27.547217 +2023,11,15,1,Victoria,147.72722,-37.921937 +2023,1,3,1,Queensland,146.877392,-19.120763 +2022,11,18,1,Victoria,142.364328,-38.320294 +2023,10,31,1,Queensland,153.090604,-27.526311 +2022,9,7,1,Queensland,152.373271,-28.339709 +2023,1,17,1,Queensland,153.085905,-27.51039 +2024,3,31,1,Queensland,153.092819,-27.525392 +2023,10,13,1,Queensland,153.094538,-27.53281 +2023,10,3,1,Queensland,153.102843,-27.527419 +2024,2,7,1,Queensland,153.111378,-27.528002 +2023,9,24,1,Queensland,153.081858,-27.508042 +2023,1,22,1,South Australia,138.654347,-35.006602 +2023,2,12,1,Queensland,151.889206,-27.597401 +2024,9,21,1,Queensland,152.63176,-27.437973 +2024,11,5,1,New South Wales,153.421618,-28.872411 +2024,11,5,1,Queensland,153.40013,-27.496633 +2021,1,24,1,Queensland,152.377092,-27.081683 +2024,4,13,1,Queensland,153.093342,-27.528248 +2023,12,23,1,Queensland,153.078522,-27.506393 +2023,10,7,1,Queensland,153.092913,-27.528161 +2024,11,8,1,Victoria,143.290947,-37.19048 +2022,9,29,1,Queensland,153.073433,-27.545671 +2022,11,12,1,Queensland,153.438316,-27.401021 +2023,9,30,1,Victoria,142.363542,-38.318677 +2023,3,18,1,Queensland,153.092781,-27.527112 +2024,10,7,1,Queensland,153.103024,-27.529206 +2024,8,20,1,Victoria,146.387408,-38.356988 +2022,8,20,1,South Australia,138.65763,-35.017497 +2022,11,27,1,Queensland,153.073253,-27.546333 +2024,2,19,1,Victoria,148.259828,-37.232683 +2023,9,1,1,Queensland,153.087231,-27.510708 +2022,3,6,1,Victoria,141.753931,-38.090515 +2023,11,25,1,South Australia,138.580984,-35.144981 +2022,10,29,1,South Australia,138.637074,-35.006358 +2023,10,4,1,Queensland,153.111412,-27.529732 +2024,4,25,1,Queensland,153.103582,-27.529353 +2024,10,10,1,Queensland,153.034542,-27.525228 +2020,6,6,1,Queensland,153.071608,-27.546087 +2024,3,31,1,New South Wales,152.887791,-31.455321 +2024,9,30,1,South Australia,138.725094,-34.932817 +2020,10,28,1,South Australia,138.710404,-34.859099 +2023,11,24,1,South Australia,138.720366,-34.89242 +2023,11,5,1,Queensland,153.090354,-27.52544 +2020,5,29,1,Victoria,145.136471,-38.388959 +2023,9,19,1,Queensland,153.379657,-27.91718 +2023,7,8,1,Queensland,151.791652,-26.136584 +2023,2,12,1,South Australia,138.725191,-34.881538 +2023,1,28,1,Queensland,153.437901,-27.400168 +2022,12,3,1,Queensland,153.10524,-27.529907 +2020,12,1,1,Queensland,153.058361,-27.545748 +2024,3,19,1,South Australia,138.730446,-34.8856 +2024,5,22,1,Queensland,152.587746,-27.918109 +2024,7,7,1,Queensland,153.092528,-27.527706 +2023,10,25,1,Queensland,153.090919,-27.526459 +2020,11,5,1,Queensland,153.079042,-27.515025 +2023,10,18,1,Queensland,152.642531,-28.14367 +2023,2,16,1,Queensland,153.37608,-27.956848 +2024,9,30,1,South Australia,138.721831,-34.8924 +2024,5,2,1,Queensland,153.09105,-27.52692 +2024,8,15,1,Queensland,153.091195,-27.527283 +2023,3,16,1,Queensland,153.090749,-27.525846 +2023,8,29,1,Queensland,151.958775,-27.413135 +2020,5,31,1,South Australia,138.6367,-34.989361 +2023,9,25,1,Queensland,152.993867,-27.82382 +2022,9,22,1,Victoria,147.725722,-37.921139 +2022,12,6,1,New South Wales,150.820165,-34.101467 +2024,10,22,1,Queensland,153.092071,-27.527117 +2024,7,16,1,Queensland,153.104095,-27.530245 +2021,5,2,1,South Australia,138.674434,-35.013319 +2024,5,4,1,Queensland,146.864461,-19.12457 +2023,9,9,1,Queensland,152.00435,-27.414605 +2020,12,1,1,Queensland,153.058446,-27.548121 +2020,4,26,1,South Australia,138.696033,-34.89787 +2024,11,17,1,Queensland,153.090971,-27.526492 +2024,5,6,1,Queensland,153.103304,-27.527603 +2022,11,10,1,Queensland,151.935487,-27.325453 +2023,12,1,1,Queensland,153.102606,-27.529464 +2022,10,8,1,South Australia,138.659132,-35.00438 +2021,2,20,1,Queensland,153.059472,-27.54929 +2022,11,25,1,New South Wales,151.519445,-30.520513 +2020,4,5,1,Queensland,153.069479,-27.544048 +2020,9,19,1,Victoria,143.729413,-38.535378 +2023,2,18,1,Queensland,153.090782,-27.527071 +2023,9,19,1,Queensland,153.381796,-27.918578 +2024,6,24,1,South Australia,138.733111,-34.873063 +2024,11,6,1,Queensland,151.987991,-27.577639 +2021,4,5,1,South Australia,138.67259,-35.016054 +2021,10,6,1,Victoria,143.925212,-37.653524 +2022,9,6,1,New South Wales,152.882065,-31.461336 +2024,9,21,1,New South Wales,146.595376,-34.772026 +2022,7,2,1,Victoria,142.630491,-38.321162 +2024,4,29,1,Queensland,153.105174,-27.530012 +2023,10,11,1,Queensland,153.110715,-27.527524 +2020,4,10,1,Victoria,144.262877,-37.393305 +2023,4,11,1,Queensland,153.092112,-27.525119 +2023,9,14,1,Queensland,153.033967,-27.54997 +2024,8,23,1,Queensland,151.556488,-27.613522 +2023,10,28,1,Queensland,153.102516,-27.529469 +2021,10,10,1,Queensland,153.081672,-27.508171 +2022,1,19,1,New South Wales,153.075091,-30.897186 +2023,6,18,1,Queensland,152.249435,-27.496763 +2023,4,1,1,Queensland,153.092614,-27.525711 +2024,7,29,1,Queensland,152.597595,-27.28068 +2023,5,2,1,Queensland,153.262767,-27.890857 +2022,4,16,1,South Australia,138.912175,-34.730324 +2023,7,30,1,Queensland,153.151142,-27.583787 +2023,1,29,1,Queensland,153.05779,-27.550945 +2022,8,17,1,New South Wales,152.117693,-32.765455 +2024,11,12,1,Queensland,153.073311,-27.545105 +2023,9,15,1,Queensland,153.074881,-27.548607 +2024,7,1,1,Queensland,153.092507,-27.527869 +2021,12,1,1,Victoria,143.874222,-37.602342 +2022,11,17,1,Queensland,153.057545,-27.550942 +2023,8,3,1,Queensland,151.937758,-26.174661 +2023,11,28,1,Queensland,151.931275,-27.407762 +2023,10,29,1,Queensland,153.093557,-27.52441 +2024,9,14,1,Queensland,153.090318,-27.526778 +2023,5,31,1,South Australia,138.65636,-35.022502 +2020,2,4,1,Queensland,153.058974,-27.548401 +2024,3,16,1,Queensland,153.10516,-27.529657 +2023,9,13,1,Queensland,153.537522,-27.429375 +2023,4,19,1,Queensland,153.090779,-27.525789 +2021,9,14,1,Queensland,153.059974,-27.550249 +2024,8,23,1,South Australia,138.62631,-34.893141 +2023,9,2,1,Queensland,152.826697,-26.256118 +2024,5,17,1,South Australia,138.71553,-34.893195 +2024,11,8,1,Queensland,151.568313,-27.798703 +2024,3,23,1,South Australia,138.700161,-34.90339 +2022,7,6,1,Victoria,143.900151,-37.656657 +2020,12,16,1,Victoria,146.163667,-38.670928 +2024,11,2,1,Queensland,151.716338,-27.567313 +2023,5,2,1,Queensland,152.249514,-27.496771 +2024,11,2,1,Queensland,151.079358,-26.705455 +2024,3,22,1,Queensland,153.110267,-27.529719 +2020,3,15,1,New South Wales,153.609972,-28.662362 +2024,7,24,1,Victoria,144.562952,-37.427823 +2024,9,8,1,Queensland,153.092883,-27.525059 +2023,11,19,1,Queensland,153.091635,-27.527013 +2023,6,25,1,Queensland,153.09167,-27.527199 +2023,12,20,1,Queensland,153.103656,-27.530151 +2022,12,6,1,Queensland,153.074085,-27.546118 +2024,10,7,1,Queensland,153.076425,-27.817442 +2023,4,19,1,Queensland,153.109249,-27.526664 +2024,7,13,1,Queensland,153.069741,-27.510502 +2020,10,26,1,Victoria,143.883627,-37.613657 +2024,11,1,1,Queensland,153.074808,-27.546361 +2023,10,20,1,Queensland,151.938911,-27.411426 +2024,10,10,1,Queensland,152.684072,-27.996854 +2024,11,24,1,Queensland,152.004928,-27.412605 +2024,6,18,1,Queensland,152.615331,-27.340392 +2024,1,3,1,Victoria,144.248659,-37.810927 +2020,5,31,1,Queensland,153.055514,-27.544227 +2023,5,20,1,Queensland,153.09225,-27.527735 +2024,6,18,1,Queensland,152.611805,-27.338364 +2024,8,12,1,Queensland,151.585515,-28.917259 +2024,5,30,1,Queensland,152.617217,-27.318847 +2023,3,31,1,South Australia,138.705658,-34.903253 +2023,9,10,1,Queensland,153.085797,-27.510384 +2024,5,17,1,South Australia,138.717848,-34.89145 +2024,11,4,1,Victoria,144.354161,-37.845322 +2020,7,30,1,Queensland,153.058568,-27.545502 +2021,5,2,1,South Australia,138.656587,-35.019345 +2023,2,15,1,Queensland,151.928863,-27.33488 +2023,7,9,1,Victoria,142.363663,-38.318753 +2021,10,23,1,South Australia,138.698986,-34.936472 +2024,10,5,1,Queensland,153.10371,-27.529504 +2021,5,11,1,New South Wales,151.520479,-30.520765 +2022,6,16,1,Victoria,143.512475,-38.832769 +2023,8,19,1,Queensland,153.113644,-27.528474 +2024,10,15,1,Queensland,153.089139,-27.220697 +2023,10,10,1,Queensland,153.102387,-27.519586 +2023,11,17,1,Queensland,152.003087,-27.413915 +2024,5,21,1,Queensland,151.782954,-26.309719 +2021,3,24,1,Queensland,153.090535,-27.633533 +2024,10,7,1,Queensland,153.111572,-27.524331 +2022,2,15,1,Victoria,144.271943,-37.843945 +2024,9,22,1,South Australia,138.706313,-34.937517 +2021,10,23,1,Queensland,153.073583,-27.519145 +2020,11,20,1,Queensland,153.060288,-27.551888 +2024,8,16,1,Queensland,153.072232,-27.545679 +2024,10,23,1,Victoria,143.519212,-38.830852 +2023,1,3,1,Queensland,153.104224,-27.52977 +2023,11,4,1,Queensland,153.075745,-27.50515 +2023,7,27,1,Victoria,145.501405,-37.034861 +2020,5,26,1,Queensland,153.063319,-27.550162 +2022,12,16,1,Queensland,152.003263,-27.413598 +2023,5,8,1,Queensland,149.79825,-22.778533 +2024,11,17,1,Queensland,153.092404,-27.525254 +2023,11,4,1,Queensland,152.003478,-27.413917 +2024,3,5,1,Victoria,145.553938,-37.015219 +2022,9,27,1,Queensland,153.400347,-27.498852 +2022,8,18,1,Queensland,152.945341,-28.125262 +2020,9,28,1,South Australia,138.705586,-34.936431 +2020,4,5,1,Queensland,153.080406,-27.512353 +2024,11,19,1,Queensland,151.709167,-27.64875 +2021,7,25,1,Queensland,152.904896,-27.456337 +2023,2,17,1,Victoria,142.072189,-38.235242 +2023,7,12,1,Queensland,151.937525,-26.175366 +2022,11,17,1,Queensland,153.073835,-27.545712 +2024,1,6,1,Queensland,153.090658,-27.527154 +2020,9,28,1,South Australia,138.653357,-34.963136 +2024,6,19,1,New South Wales,153.401014,-28.258193 +2024,4,10,1,Queensland,153.102762,-27.52673 +2023,4,16,1,Queensland,153.090941,-27.527168 +2021,3,6,1,Victoria,145.456038,-35.828945 +2021,4,14,1,South Australia,138.631239,-34.991033 +2023,10,15,1,Queensland,153.439356,-27.394409 +2023,12,31,1,Queensland,153.092686,-27.525794 +2024,10,23,1,Queensland,146.865722,-19.142339 +2024,7,28,1,Queensland,153.090216,-27.526742 +2023,11,19,1,Queensland,153.092372,-27.528167 +2021,11,28,1,Queensland,151.734689,-27.594316 +2020,2,26,1,Queensland,153.057918,-27.551936 +2024,6,15,1,Queensland,153.106734,-27.529347 +2020,2,28,1,Queensland,153.056305,-27.552045 +2023,11,16,1,Queensland,151.560484,-27.789645 +2023,2,10,1,Queensland,153.085423,-27.510284 +2022,1,22,1,Queensland,152.928122,-27.27475 +2024,11,18,1,Victoria,144.594864,-37.330909 +2024,10,27,1,South Australia,138.657613,-34.864996 +2024,8,4,1,Queensland,153.380781,-27.903888 +2023,5,1,1,Queensland,153.090824,-27.525835 +2023,9,9,1,Queensland,153.102888,-27.527731 +2023,6,28,1,Queensland,153.107605,-27.527224 +2024,7,7,1,Victoria,143.901148,-37.641822 +2024,5,2,1,Queensland,153.092288,-27.527295 +2021,4,11,1,New South Wales,151.517939,-30.520949 +2021,9,20,1,Queensland,153.083343,-27.516969 +2023,5,19,1,Queensland,153.091139,-27.527313 +2024,10,26,1,Queensland,153.092374,-27.527295 +2024,11,14,1,Queensland,151.692123,-26.176948 +2021,6,25,1,Victoria,144.182072,-37.840237 +2024,4,22,1,Queensland,153.080561,-27.508314 +2023,11,20,1,Queensland,151.526367,-27.632733 +2021,9,26,1,Queensland,153.081361,-27.508148 +2024,5,4,1,Queensland,152.611328,-27.332808 +2023,5,29,1,Queensland,153.103528,-27.529953 +2024,6,7,1,Queensland,152.901914,-27.621192 +2024,9,21,1,New South Wales,146.595462,-34.773142 +2020,10,6,1,Victoria,143.934322,-38.560083 +2024,6,23,1,Queensland,153.090936,-27.52685 +2020,7,8,1,Queensland,153.059481,-27.541804 +2024,3,31,1,Queensland,153.092669,-27.528192 +2020,10,16,1,New South Wales,151.519431,-30.522595 +2024,6,8,1,Queensland,153.091593,-27.527059 +2022,8,6,1,Queensland,153.050215,-27.53996 +2023,12,8,1,Victoria,146.541815,-36.406769 +2024,4,8,1,South Australia,138.722213,-34.890676 +2024,4,17,1,Queensland,153.104014,-27.529885 +2024,1,4,1,Victoria,149.741172,-37.554052 +2022,9,18,1,Queensland,153.036828,-27.532359 +2022,6,16,1,Victoria,143.951522,-37.726937 +2023,9,10,1,Queensland,152.377006,-27.081761 +2024,5,22,1,Queensland,153.112544,-27.527973 +2021,8,22,1,Queensland,153.083637,-27.505904 +2024,5,11,1,Victoria,146.262878,-36.223362 +2024,9,22,1,Queensland,153.0934,-27.52491 +2023,7,13,1,Queensland,151.937892,-27.416758 +2021,7,17,1,Queensland,153.060057,-27.549617 +2023,10,8,1,New South Wales,152.91425,-30.496679 +2023,8,8,1,Victoria,144.526567,-37.484424 +2020,8,26,1,Queensland,152.248252,-27.496345 +2024,9,26,1,South Australia,138.610272,-35.024745 +2024,4,2,1,Queensland,153.092606,-27.527098 +2023,1,1,1,Queensland,153.090547,-27.52598 +2020,6,8,1,South Australia,138.649798,-35.015539 +2023,11,21,1,Victoria,144.589645,-37.521808 +2023,1,5,1,Queensland,153.072842,-27.549327 +2024,1,9,1,South Australia,138.59709,-35.022687 +2024,5,22,1,Queensland,153.109872,-27.528243 +2020,7,12,1,South Australia,138.70249,-34.903158 +2022,3,6,1,Queensland,153.070399,-27.509598 +2023,10,15,1,New South Wales,151.095047,-33.076428 +2020,3,13,1,Queensland,153.06135,-27.549755 +2020,8,12,1,New South Wales,153.376871,-28.253745 +2023,11,3,1,New South Wales,153.124126,-30.294154 +2024,3,14,1,South Australia,138.722822,-34.889926 +2024,9,21,1,Queensland,146.862431,-19.151424 +2021,3,14,1,New South Wales,146.567342,-34.76224 +2024,1,26,1,Queensland,153.090959,-27.527441 +2023,5,17,1,Queensland,152.249435,-27.496763 +2023,3,3,1,South Australia,138.71445,-34.926405 +2024,9,25,1,Queensland,153.514085,-27.422308 +2023,12,5,1,Queensland,153.079773,-27.545193 +2021,11,29,1,Queensland,153.078086,-27.736192 +2022,9,20,1,New South Wales,153.377051,-28.254111 +2021,1,3,1,Queensland,153.0547,-27.541525 +2023,9,10,1,Queensland,153.092893,-27.528607 +2023,11,5,1,Queensland,153.091416,-27.527314 +2024,8,8,1,Queensland,151.746928,-26.362934 +2024,5,5,1,Victoria,143.748432,-38.551862 +2023,7,22,1,Queensland,153.092012,-27.527188 +2020,9,13,1,New South Wales,152.414489,-31.931904 +2024,5,27,1,Victoria,142.977653,-38.498061 +2023,4,24,1,Victoria,143.709437,-38.537581 +2024,2,2,1,Victoria,143.851209,-38.672289 +2024,2,20,1,Queensland,153.103973,-27.530318 +2024,4,13,1,Queensland,153.092186,-27.528233 +2023,9,9,1,Queensland,152.045235,-27.25702 +2020,4,2,1,Queensland,153.067655,-27.546569 +2023,8,6,1,Queensland,153.093136,-27.524414 +2023,4,11,1,Queensland,153.090703,-27.526802 +2024,4,1,1,South Australia,138.574131,-35.080038 +2024,7,5,1,South Australia,138.738058,-34.826169 +2023,3,22,1,Victoria,144.086152,-37.633227 +2024,11,14,1,South Australia,138.722746,-34.891005 +2023,7,10,1,Queensland,153.335698,-27.984705 +2023,12,7,1,South Australia,138.730675,-34.890986 +2023,6,11,1,Queensland,153.091653,-27.527196 +2023,12,24,1,Victoria,143.883756,-37.587216 +2023,9,20,1,Queensland,152.046526,-27.257202 +2023,7,21,1,Queensland,153.109707,-27.529441 +2020,10,15,1,Queensland,153.058236,-27.547288 +2024,1,2,1,Queensland,152.9458,-28.1258 +2021,4,5,1,South Australia,138.670721,-35.015947 +2023,10,21,1,Victoria,143.537054,-38.812525 +2023,7,10,1,Queensland,153.104965,-27.530076 +2024,11,10,1,Queensland,153.090533,-27.526741 +2021,3,11,1,Victoria,145.715505,-38.637893 +2022,10,8,1,South Australia,138.652636,-35.003297 +2023,10,7,1,Queensland,153.000516,-27.240945 +2023,11,6,1,Queensland,153.111831,-27.527778 +2022,12,16,1,Queensland,153.07224,-27.545149 +2022,11,15,1,Victoria,145.737442,-38.63134 +2022,9,3,1,South Australia,138.682065,-35.086972 +2020,8,29,1,Queensland,152.807309,-27.530525 +2024,11,23,1,Victoria,143.404576,-38.773424 +2023,5,18,1,Queensland,152.989605,-27.277909 +2022,9,12,1,Queensland,153.073299,-27.54565 +2023,2,1,1,Victoria,145.44588,-37.018788 +2021,9,27,1,Queensland,152.907639,-28.174202 +2024,8,18,1,Queensland,153.143111,-27.828987 +2024,9,21,1,New South Wales,153.161926,-28.874607 +2023,8,8,1,South Australia,140.749772,-34.074764 +2023,6,22,1,Queensland,152.987097,-27.292184 +2023,11,18,1,Queensland,153.093124,-27.526383 +2024,9,3,1,Queensland,153.101661,-27.734401 +2023,9,23,1,Queensland,153.111199,-27.527134 +2020,6,7,1,Queensland,152.432806,-26.640237 +2021,11,5,1,Victoria,142.737455,-38.339655 +2021,11,28,1,Victoria,146.605389,-38.521989 +2020,2,8,1,Queensland,153.060597,-27.543949 +2024,2,10,1,South Australia,138.569421,-35.080743 +2023,8,21,1,Queensland,153.057848,-27.551863 +2023,9,10,1,Queensland,153.090966,-27.526469 +2024,11,1,1,Queensland,153.069678,-27.510482 +2021,6,21,1,Queensland,153.057358,-27.551375 +2023,1,7,1,Queensland,153.084343,-27.516703 +2024,3,25,1,South Australia,138.706546,-34.903214 +2024,3,1,1,New South Wales,151.519203,-30.520654 +2024,8,9,1,New South Wales,150.826844,-34.101551 +2023,11,13,1,South Australia,138.721874,-34.889788 +2023,4,3,1,Queensland,153.036916,-27.533822 +2023,2,19,1,Queensland,153.036833,-27.549905 +2024,10,25,1,Queensland,153.111662,-27.524725 +2023,10,20,1,Queensland,151.561447,-27.799242 +2024,3,30,1,Queensland,153.103624,-27.529082 +2024,4,7,1,Queensland,153.091596,-27.527161 +2024,10,12,1,Queensland,152.993267,-27.823584 +2023,12,9,1,Queensland,152.046503,-27.257246 +2024,3,3,1,South Australia,138.720798,-34.892425 +2024,11,4,1,Queensland,153.054339,-27.552781 +2023,10,28,1,Queensland,152.61802,-27.892616 +2024,8,29,1,Queensland,146.870019,-19.125043 +2023,9,4,1,Queensland,153.106872,-27.529074 +2023,8,19,1,Queensland,153.093578,-27.524499 +2024,11,8,1,Queensland,152.048643,-26.040694 +2024,3,23,1,Queensland,153.092938,-27.526131 +2024,1,13,1,Victoria,142.364288,-38.318845 +2021,12,30,1,Victoria,142.361567,-38.318722 +2021,5,18,1,Queensland,153.117461,-27.50807 +2024,2,15,1,South Australia,135.684722,-34.825556 +2020,10,5,1,New South Wales,153.377198,-28.253559 +2024,10,20,1,Queensland,153.092094,-27.526914 +2022,1,4,1,South Australia,138.732551,-34.887121 +2023,12,16,1,Victoria,142.363678,-38.318795 +2024,5,12,1,Queensland,153.092571,-27.527629 +2024,11,23,1,Queensland,151.78183,-27.392905 +2021,9,30,1,South Australia,138.653738,-34.869197 +2023,6,1,1,Victoria,146.834288,-36.235355 +2022,12,29,1,Queensland,153.103916,-27.528887 +2023,7,31,1,New South Wales,150.978678,-29.778998 +2022,2,18,1,Victoria,144.284803,-37.849112 +2020,5,27,1,Victoria,146.164231,-38.671628 +2022,12,2,1,Queensland,153.07369,-27.545697 +2023,3,26,1,South Australia,137.503883,-35.589197 +2022,8,9,1,Queensland,153.056867,-27.546775 +2024,4,24,1,Queensland,152.681337,-28.000436 +2024,7,28,1,Queensland,152.993298,-27.823214 +2022,11,17,1,South Australia,138.667106,-34.938511 +2023,11,19,1,Queensland,153.400453,-27.496605 +2020,5,22,1,Queensland,153.05393,-27.550635 +2022,9,26,1,Queensland,152.054546,-27.256754 +2023,12,4,1,Victoria,143.524903,-38.835695 +2020,7,11,1,Victoria,146.163789,-38.671355 +2023,1,21,1,South Australia,138.648317,-34.876943 +2024,10,10,1,Queensland,153.054722,-27.552049 +2024,1,6,1,Queensland,153.105349,-27.529401 +2022,3,11,1,Victoria,145.966773,-37.88441 +2021,10,31,1,Queensland,152.438501,-27.417534 +2024,10,12,1,Queensland,152.110322,-27.566467 +2023,2,10,1,Victoria,145.861604,-36.954012 +2023,8,14,1,Queensland,152.933734,-27.274184 +2024,8,15,1,Victoria,142.035418,-38.201375 +2024,7,27,1,Queensland,153.093135,-27.523957 +2024,7,9,1,Queensland,153.103657,-27.530029 +2021,1,25,1,Queensland,153.027701,-27.251352 +2021,4,4,1,Victoria,143.874892,-37.595429 +2022,10,27,1,New South Wales,153.126129,-30.296092 +2023,5,7,1,Queensland,151.338279,-26.401586 +2024,9,7,1,Queensland,153.092561,-27.525016 +2022,12,31,1,Queensland,153.105384,-27.530377 +2021,7,19,1,Queensland,153.057936,-27.550802 +2023,3,1,1,Victoria,143.222367,-38.34318 +2024,10,28,1,Queensland,153.082824,-27.507249 +2021,3,27,1,South Australia,138.749252,-34.794916 +2024,10,11,1,Queensland,152.993413,-27.823743 +2024,11,4,1,Victoria,141.476152,-37.793464 +2022,4,28,1,Queensland,151.531447,-27.724522 +2023,10,27,1,South Australia,138.649356,-35.085522 +2024,9,18,1,New South Wales,150.831788,-34.100276 +2023,5,7,1,South Australia,138.6526,-35.009181 +2023,8,8,1,Victoria,143.895874,-37.712899 +2023,9,24,1,Victoria,143.969303,-38.53252 +2023,8,21,1,Victoria,143.512322,-38.834462 +2022,3,26,1,New South Wales,153.401909,-28.259845 +2022,11,6,1,Queensland,151.989616,-27.579304 +2023,10,2,1,Victoria,142.834636,-38.392216 +2020,1,2,1,Queensland,153.112716,-27.542484 +2022,5,22,1,Queensland,152.853808,-28.07537 +2020,8,17,1,Queensland,153.058406,-27.551377 +2024,11,2,1,Victoria,146.164628,-38.671045 +2021,11,17,1,Queensland,151.944664,-27.324325 +2023,12,21,1,South Australia,138.734087,-34.887307 +2024,1,28,1,Queensland,153.091661,-27.527238 +2023,8,26,1,Queensland,152.380343,-26.608275 +2024,3,6,1,Queensland,153.094514,-27.0397 +2024,9,29,1,Queensland,153.000639,-27.284482 +2023,9,4,1,Queensland,152.054183,-27.267988 +2024,2,12,1,Queensland,153.104672,-27.530563 +2021,10,3,1,Queensland,153.070634,-27.50255 +2023,9,17,1,Victoria,146.405785,-38.351539 +2022,6,5,1,Queensland,153.070394,-27.509592 +2021,11,20,1,Victoria,145.351498,-38.37826 +2020,8,23,1,Queensland,153.073624,-27.513686 +2024,10,2,1,Queensland,151.762506,-26.16856 +2022,4,2,1,New South Wales,146.577055,-34.766842 +2022,12,17,1,South Australia,138.753766,-34.995311 +2022,8,28,1,Queensland,153.375978,-27.918712 +2021,6,28,1,Queensland,146.871368,-19.123665 +2024,11,15,1,Queensland,153.10505,-27.528269 +2022,8,27,1,New South Wales,153.394057,-28.959144 +2023,8,6,1,Queensland,153.000818,-27.284989 +2021,5,8,1,Victoria,144.266669,-37.39149 +2020,10,13,1,Queensland,153.055217,-27.550436 +2022,11,18,1,Victoria,142.363649,-38.31819 +2024,4,24,1,Victoria,143.895827,-37.643061 +2024,10,26,1,Queensland,153.091632,-27.527161 +2024,9,21,1,Victoria,145.234817,-38.263569 +2023,12,24,1,South Australia,138.72226,-34.892265 +2024,6,19,1,New South Wales,151.095387,-33.076681 +2020,10,18,1,Queensland,153.07245,-27.54923 +2024,3,29,1,Victoria,145.727797,-38.628158 +2024,11,9,1,Queensland,153.090492,-27.525926 +2022,4,15,1,Queensland,152.106514,-27.561218 +2020,8,16,1,Victoria,146.163799,-38.671178 +2023,1,26,1,Queensland,152.613458,-27.340154 +2023,1,22,1,Victoria,146.3884,-38.354696 +2023,1,19,1,Victoria,145.169662,-37.061222 +2023,2,6,1,Queensland,152.003108,-27.413176 +2024,1,23,1,Queensland,153.110315,-27.527764 +2024,7,20,1,Queensland,153.090894,-27.526468 +2020,12,19,1,South Australia,137.221026,-35.964313 +2023,9,15,1,Queensland,152.004394,-27.41465 +2024,1,26,1,Queensland,153.091715,-27.527094 +2023,8,16,1,Queensland,153.103494,-27.529762 +2024,5,6,1,Victoria,142.9777,-38.497775 +2024,2,17,1,Queensland,153.092217,-27.52724 +2022,1,24,1,New South Wales,153.401309,-28.256241 +2023,10,1,1,Queensland,153.092384,-27.525111 +2024,2,23,1,Queensland,151.625852,-27.43987 +2022,12,16,1,Queensland,153.11238,-27.529061 +2024,10,2,1,New South Wales,153.564058,-28.380797 +2021,1,26,1,New South Wales,150.82193,-34.101853 +2024,6,15,1,Queensland,153.103109,-27.529763 +2023,4,23,1,Queensland,149.169646,-21.456596 +2022,3,15,1,Victoria,141.246167,-38.038579 +2023,6,14,1,Queensland,153.086728,-27.510464 +2024,2,12,1,Victoria,143.881249,-37.616457 +2024,10,6,1,Queensland,152.074666,-27.358581 +2022,11,5,1,Queensland,153.039689,-27.536895 +2020,11,16,1,New South Wales,149.559821,-33.689449 +2024,5,19,1,Queensland,153.092707,-27.527616 +2022,9,27,1,Queensland,153.073467,-27.545648 +2021,10,4,1,Victoria,145.999199,-38.825259 +2020,11,19,1,Queensland,153.055263,-27.536917 +2020,7,14,1,Victoria,146.163697,-38.671367 +2023,3,9,1,Queensland,153.001963,-26.393662 +2023,6,8,1,Queensland,152.998116,-27.433067 +2024,5,21,1,South Australia,138.72537,-34.893588 +2021,3,24,1,Queensland,153.054597,-27.552317 +2024,6,2,1,Queensland,152.828215,-28.092026 +2022,10,25,1,Queensland,153.0834,-27.509225 +2023,3,17,1,Queensland,153.091616,-27.525921 +2024,3,1,1,New South Wales,146.594803,-34.773328 +2023,11,15,1,Victoria,147.729492,-37.92437 +2022,3,27,1,Queensland,153.084005,-27.509704 +2022,11,5,1,Queensland,153.164317,-27.571135 +2023,1,18,1,New South Wales,152.483021,-32.397595 +2024,9,21,1,Queensland,153.091634,-27.527214 +2023,9,5,1,Queensland,146.842355,-19.135861 +2023,1,25,1,Queensland,152.002992,-27.413456 +2023,7,22,1,Queensland,151.792799,-26.13385 +2021,12,11,1,South Australia,138.575217,-35.079787 +2024,5,19,1,Queensland,153.090889,-27.525838 +2024,6,23,1,Queensland,153.092388,-27.527886 +2023,12,1,1,Queensland,153.253041,-27.529812 +2023,11,30,1,Queensland,153.151408,-27.748031 +2024,9,24,1,Queensland,153.062165,-27.221882 +2024,6,18,1,Queensland,152.61328,-27.339374 +2023,10,6,1,Queensland,152.246472,-27.498205 +2023,12,12,1,Queensland,152.010728,-26.505493 +2023,4,23,1,Queensland,153.092241,-27.528038 +2022,3,9,1,Queensland,153.059747,-27.548476 +2023,10,12,1,New South Wales,151.095031,-33.076453 +2024,5,19,1,South Australia,138.647215,-35.003886 +2023,4,27,1,Victoria,144.286182,-37.849138 +2024,4,15,1,South Australia,138.715655,-34.891793 +2020,8,3,1,Queensland,153.26003,-27.502371 +2023,12,3,1,Victoria,144.314562,-37.296708 +2024,7,7,1,Queensland,152.999933,-27.284465 +2022,12,13,1,Queensland,153.073258,-27.545801 +2024,10,3,1,Queensland,153.030718,-27.245398 +2024,9,11,1,South Australia,140.057401,-36.782363 +2020,2,22,1,Queensland,153.130158,-27.591767 +2024,3,17,1,Queensland,153.092459,-27.527253 +2024,4,27,1,Queensland,151.799133,-26.152405 +2024,8,8,1,Victoria,141.726499,-38.080116 +2024,10,25,1,Queensland,152.853588,-28.0676 +2024,9,10,1,Queensland,153.09071,-27.526539 +2023,4,9,1,Queensland,153.076641,-27.232143 +2020,12,8,1,New South Wales,153.377271,-28.253634 +2023,6,12,1,South Australia,138.516089,-35.13305 +2022,9,12,1,South Australia,137.49411,-35.707269 +2023,2,13,1,Victoria,142.578783,-38.329841 +2022,9,27,1,Victoria,144.93554,-38.395529 +2021,2,27,1,Queensland,152.80818,-27.820985 +2020,9,24,1,Queensland,153.157272,-28.17353 +2020,11,4,1,Queensland,153.132151,-27.563622 +2024,5,23,1,South Australia,138.715703,-34.890488 +2023,12,23,1,Queensland,153.092279,-27.5254 +2024,10,4,1,Queensland,153.058504,-27.55498 +2023,11,3,1,Queensland,151.772557,-27.376052 +2023,9,25,1,Queensland,153.115062,-27.52906 +2023,5,6,1,Queensland,152.249435,-27.496763 +2024,10,3,1,Victoria,141.49707,-38.08901 +2022,11,25,1,South Australia,138.617938,-34.991022 +2024,9,17,1,New South Wales,146.592326,-34.757499 +2024,9,30,1,South Australia,138.724786,-34.932733 +2023,11,1,1,Queensland,151.95723,-26.237975 +2024,1,22,1,Queensland,153.057925,-27.550794 +2023,8,29,1,New South Wales,150.28079,-31.066162 +2023,7,16,1,New South Wales,152.921133,-31.45951 +2023,12,29,1,South Australia,138.713578,-34.788313 +2022,10,28,1,South Australia,138.655826,-35.020845 +2024,11,2,1,Queensland,153.091522,-27.527228 +2024,7,20,1,Queensland,153.090363,-27.525791 +2024,1,3,1,Queensland,153.110338,-27.527638 +2023,8,27,1,Queensland,151.811754,-26.362977 +2024,4,1,1,Victoria,144.284172,-37.512786 +2024,5,13,1,South Australia,138.730564,-34.891302 +2021,8,17,1,Victoria,144.948028,-38.421938 +2021,9,23,1,Victoria,145.68964,-38.649586 +2022,1,8,1,Victoria,143.89099,-37.617771 +2024,4,22,1,South Australia,138.721659,-34.891641 +2023,5,11,1,Queensland,153.09176,-27.527128 +2024,4,17,1,Queensland,152.046351,-27.257102 +2024,5,17,1,South Australia,138.721822,-34.891909 +2024,3,16,1,Queensland,151.934997,-27.32542 +2023,12,22,1,Victoria,144.218413,-37.898393 +2022,3,31,1,Queensland,152.972635,-28.32328 +2020,7,29,1,New South Wales,153.403914,-28.26064 +2023,5,11,1,Victoria,143.859458,-38.671542 +2024,9,28,1,Victoria,143.715492,-38.721949 +2021,9,5,1,South Australia,138.554007,-34.913063 +2023,1,29,1,Queensland,152.799422,-27.181111 +2022,5,10,1,New South Wales,146.58525,-34.774272 +2024,10,5,1,Victoria,143.528533,-38.82515 +2023,8,4,1,Queensland,153.134981,-27.48798 +2023,7,21,1,Queensland,153.103056,-27.529145 +2020,7,8,1,Queensland,153.060133,-27.54954 +2024,5,22,1,New South Wales,153.289897,-28.998398 +2023,4,13,1,Queensland,153.001266,-27.310919 +2022,12,19,1,Victoria,141.605587,-38.337187 +2022,12,16,1,New South Wales,152.924117,-31.4445 +2024,11,16,1,Queensland,152.044603,-27.295192 +2024,8,25,1,Queensland,153.092203,-27.527104 +2022,1,9,1,South Australia,138.697119,-34.990486 +2024,9,8,1,Queensland,153.091004,-27.526447 +2021,12,24,1,Queensland,152.989502,-26.407442 +2021,10,16,1,Victoria,143.90464,-37.64101 +2020,5,29,1,New South Wales,153.376673,-28.253646 +2024,4,1,1,Queensland,151.692215,-26.183208 +2023,2,12,1,Queensland,151.888809,-27.599764 +2024,11,4,1,Queensland,153.109294,-27.526978 +2024,10,12,1,South Australia,137.468583,-35.715422 +2023,11,11,1,Queensland,153.092035,-27.527123 +2020,7,13,1,New South Wales,152.90652,-31.43877 +2020,2,20,1,Victoria,146.307246,-38.597649 +2023,10,6,1,Queensland,152.246541,-27.503235 +2023,12,18,1,South Australia,138.734915,-34.887886 +2023,10,11,1,Queensland,153.115462,-27.529551 +2024,5,8,1,Queensland,152.936588,-27.275519 +2020,5,16,1,South Australia,138.497355,-35.160124 +2021,8,14,1,Queensland,153.03281,-27.54004 +2022,3,15,1,Queensland,151.937714,-27.416831 +2022,12,11,1,Queensland,153.072481,-27.544929 +2024,6,8,1,Queensland,153.090595,-27.52574 +2023,11,12,1,Queensland,151.621022,-25.629632 +2022,10,2,1,Victoria,145.986142,-38.888404 +2023,9,3,1,Queensland,151.974655,-26.161042 +2024,7,28,1,Victoria,143.860809,-38.668824 +2024,5,6,1,Victoria,142.981531,-38.496233 +2023,1,27,1,New South Wales,152.972154,-30.43224 +2024,4,11,1,Victoria,142.360924,-38.317801 +2022,12,17,1,Queensland,152.003187,-27.41318 +2021,10,21,1,South Australia,138.671369,-34.928711 +2024,10,11,1,Queensland,153.073819,-27.545627 +2024,5,3,1,South Australia,138.572424,-35.036344 +2021,2,14,1,Victoria,146.163728,-38.671272 +2021,1,8,1,Queensland,153.053098,-27.544998 +2022,11,12,1,Victoria,142.64183,-38.327049 +2022,9,5,1,New South Wales,152.921661,-31.460705 +2023,8,27,1,Queensland,152.424606,-28.000969 +2023,3,2,1,Queensland,152.398626,-27.166782 +2024,6,7,1,South Australia,137.793641,-35.763209 +2023,11,4,1,Queensland,153.093756,-27.527985 +2020,4,11,1,South Australia,138.648467,-35.00397 +2022,6,4,1,South Australia,138.688478,-34.875439 +2022,9,5,1,South Australia,138.616416,-35.016862 +2023,9,15,1,Queensland,153.112802,-27.528292 +2020,10,20,1,Queensland,153.055423,-27.544065 +2022,7,27,1,Queensland,153.234212,-27.971895 +2020,6,10,1,Queensland,153.260697,-27.502342 +2023,2,5,1,Victoria,145.23971,-38.254414 +2023,11,27,1,South Australia,138.730458,-34.890878 +2024,10,12,1,Queensland,153.093128,-27.526377 +2023,10,11,1,Victoria,146.681245,-36.348055 +2023,10,23,1,Queensland,152.587561,-26.873778 +2022,8,19,1,Victoria,144.182153,-37.913747 +2023,11,2,1,Queensland,152.102372,-27.568742 +2021,7,10,1,Victoria,143.883209,-37.586559 +2024,9,19,1,Queensland,151.972994,-26.573273 +2022,6,22,1,Queensland,153.049583,-27.527528 +2024,1,27,1,Queensland,153.090322,-27.52681 +2023,9,3,1,Queensland,153.000912,-27.285092 +2023,3,7,1,Queensland,153.103311,-27.530334 +2023,5,27,1,Queensland,153.057916,-27.551008 +2021,2,24,1,New South Wales,153.399568,-28.259983 +2022,9,13,1,Queensland,153.070378,-27.509552 +2022,11,12,1,Queensland,153.072174,-27.544272 +2024,5,4,1,Queensland,152.612612,-27.338663 +2023,12,14,1,Queensland,153.09271,-27.527776 +2024,6,10,1,Victoria,144.733647,-37.376519 +2020,3,1,1,Victoria,143.53332,-38.811596 +2024,8,3,1,Victoria,142.636682,-38.341387 +2023,4,15,1,Queensland,153.102443,-27.519395 +2023,4,30,1,Queensland,153.000854,-27.284458 +2020,9,24,1,New South Wales,153.40056,-28.257678 +2023,2,13,1,Victoria,142.578556,-38.330081 +2021,8,15,1,Queensland,153.05912,-27.556102 +2023,5,8,1,Victoria,143.870252,-37.596103 +2021,12,5,1,Queensland,153.103632,-27.529129 +2021,5,2,1,South Australia,138.645198,-34.884307 +2023,11,26,1,Queensland,153.034648,-27.52863 +2022,3,4,1,Victoria,144.183612,-37.707711 +2022,12,29,1,Queensland,153.437857,-27.400379 +2020,10,19,1,Victoria,143.886444,-37.63409 +2024,4,27,1,Victoria,144.286022,-37.849108 +2023,8,12,1,Queensland,153.08287,-27.51202 +2022,9,15,1,Queensland,153.186391,-27.724136 +2024,11,17,1,Queensland,151.821299,-26.458113 +2024,6,11,1,Queensland,146.868914,-19.13079 +2022,7,15,1,Queensland,153.092239,-27.565309 +2023,9,17,1,Queensland,153.000426,-27.285261 +2020,6,5,1,New South Wales,149.987428,-29.281753 +2023,12,22,1,Queensland,151.756112,-26.128011 +2023,12,5,1,New South Wales,146.789319,-34.78906 +2021,10,24,1,Queensland,153.158058,-27.624886 +2024,4,15,1,Queensland,153.082678,-27.512075 +2024,2,26,1,Queensland,153.10589,-27.529477 +2022,2,26,1,Victoria,142.368242,-38.302322 +2024,6,7,1,Queensland,153.103624,-27.530496 +2021,3,27,1,Queensland,153.161309,-27.718697 +2022,7,18,1,Queensland,153.054916,-27.537293 +2021,1,19,1,New South Wales,151.520196,-30.52073 +2020,12,27,1,Queensland,153.072916,-27.542664 +2023,12,8,1,Queensland,153.082575,-27.507578 +2020,10,24,1,Victoria,145.002793,-38.296532 +2020,3,4,1,Queensland,153.080475,-27.512263 +2021,11,1,1,New South Wales,153.377422,-28.253998 +2024,1,25,1,Queensland,153.092355,-27.528245 +2020,10,12,1,Queensland,153.063446,-27.550864 +2023,11,2,1,Queensland,153.093137,-27.526359 +2022,12,24,1,Queensland,153.071986,-27.544834 +2020,9,2,1,New South Wales,151.519082,-30.520808 +2024,1,22,1,Queensland,153.103644,-27.53 +2024,6,22,1,Queensland,153.086381,-27.510462 +2022,5,1,1,Queensland,146.868508,-19.126275 +2022,1,24,1,Victoria,143.801744,-37.733624 +2023,3,11,1,South Australia,140.868605,-37.182075 +2024,11,7,1,Victoria,143.61855,-38.78545 +2023,2,2,1,New South Wales,152.971828,-30.433085 +2024,5,12,1,Victoria,142.974992,-38.500061 +2021,12,10,1,Queensland,151.866114,-26.52471 +2023,12,18,1,Victoria,145.383238,-37.483008 +2023,7,12,1,Queensland,153.107595,-27.527096 +2022,6,8,1,Queensland,153.072831,-27.545947 +2023,5,12,1,Queensland,152.957374,-27.484933 +2024,4,22,1,Queensland,152.93695,-27.275333 +2024,5,1,1,Queensland,153.109021,-27.527055 +2022,8,13,1,Victoria,144.286383,-37.838992 +2024,6,25,1,Victoria,142.971256,-38.476358 +2024,11,15,1,Queensland,153.104427,-27.529231 +2023,8,13,1,Queensland,153.080781,-27.248705 +2023,1,19,1,Queensland,153.073164,-27.519561 +2023,9,9,1,Queensland,151.97653,-26.155908 +2024,6,17,1,Queensland,153.104504,-27.53055 +2022,8,17,1,Queensland,152.867166,-28.075276 +2020,10,22,1,Queensland,153.058284,-27.547348 +2022,4,7,1,Queensland,153.438277,-27.40104 +2020,10,15,1,Queensland,153.058509,-27.548118 +2020,10,16,1,New South Wales,151.519431,-30.522595 +2022,11,13,1,Queensland,153.034286,-27.5281 +2024,4,16,1,South Australia,138.729628,-34.88968 +2024,11,11,1,Queensland,151.65097,-27.628963 +2024,7,7,1,Queensland,153.09277,-27.526981 +2020,9,7,1,Queensland,152.991915,-27.176591 +2024,2,13,1,South Australia,138.722467,-34.889559 +2023,12,1,1,Queensland,153.403783,-27.499171 +2021,4,16,1,Victoria,142.365485,-38.323316 +2023,1,17,1,Queensland,152.18373,-27.53098 +2020,11,9,1,Victoria,143.886444,-37.63409 +2023,11,25,1,Queensland,153.085532,-27.507087 +2022,12,1,1,South Australia,136.80942,-35.960385 +2023,9,29,1,Queensland,152.003703,-27.41132 +2024,4,2,1,Queensland,153.090654,-27.525649 +2023,5,15,1,New South Wales,150.892848,-34.0506 +2022,4,15,1,New South Wales,151.518403,-30.520863 +2020,5,29,1,Queensland,153.058136,-27.545325 +2023,12,8,1,South Australia,138.558512,-35.25993 +2020,9,4,1,Victoria,145.237185,-38.135009 +2024,7,10,1,Queensland,153.107694,-27.527068 +2024,3,20,1,Queensland,153.103228,-27.528242 +2022,10,26,1,Queensland,153.071607,-27.502529 +2022,8,24,1,Queensland,152.08258,-27.70157 +2022,12,27,1,Queensland,153.437941,-27.401607 +2024,6,23,1,Queensland,153.437802,-27.400131 +2020,5,29,1,Queensland,153.054004,-27.544655 +2024,4,24,1,Queensland,153.103452,-27.528894 +2024,1,26,1,Queensland,153.093244,-27.525852 +2023,11,3,1,Queensland,151.93648,-27.512056 +2024,9,14,1,Queensland,153.092799,-27.528517 +2024,9,29,1,Queensland,153.093303,-27.525537 +2024,3,24,1,Queensland,153.09083,-27.526844 +2023,8,5,1,Queensland,153.090698,-27.526015 +2021,9,13,1,Queensland,153.059686,-27.549843 +2023,6,10,1,Queensland,152.11185,-27.566543 +2022,12,28,1,Queensland,152.062673,-27.348402 +2024,11,17,1,Queensland,151.779764,-26.674952 +2023,8,14,1,Queensland,153.107388,-27.527269 +2021,12,9,1,Queensland,153.078909,-27.506252 +2023,7,12,1,Queensland,153.109003,-27.527083 +2024,6,23,1,Queensland,153.091789,-27.526905 +2024,1,20,1,Queensland,153.092673,-27.525811 +2021,9,22,1,Victoria,143.901148,-37.641822 +2023,10,1,1,Queensland,151.45221,-26.102688 +2023,11,6,1,Queensland,153.19019,-27.701741 +2021,12,18,1,Queensland,153.038505,-27.532734 +2022,9,26,1,Queensland,152.048961,-27.267989 +2024,10,5,1,Queensland,153.088975,-27.509773 +2024,8,1,1,Queensland,152.991812,-27.82383 +2024,11,9,1,Queensland,153.076945,-27.543189 +2024,4,9,1,Victoria,144.252565,-37.859328 +2020,6,20,1,New South Wales,153.377444,-28.25403 +2021,12,22,1,Victoria,146.202117,-38.65152 +2024,8,16,1,Queensland,153.070057,-27.510634 +2024,7,26,1,Queensland,152.993061,-27.823414 +2022,10,1,1,Victoria,143.732692,-38.545853 +2023,3,1,1,South Australia,138.712012,-34.87396 +2023,11,14,1,Queensland,153.11145,-27.527953 +2023,9,16,1,Queensland,151.874817,-27.483677 +2023,3,21,1,South Australia,138.584569,-35.096675 +2023,7,23,1,Queensland,153.000952,-27.284595 +2022,2,7,1,Victoria,142.991272,-38.398875 +2022,5,5,1,Victoria,141.417437,-38.268262 +2024,7,24,1,New South Wales,153.17408,-28.891611 +2020,3,4,1,Queensland,153.057898,-27.551184 +2023,7,29,1,Queensland,153.103361,-27.527797 +2023,10,15,1,Queensland,153.090282,-27.525449 +2023,7,23,1,Queensland,152.29367,-26.894525 +2020,4,19,1,South Australia,138.651757,-35.007917 +2022,1,14,1,South Australia,138.683931,-34.865683 +2024,10,12,1,South Australia,138.637482,-35.005276 +2023,11,10,1,Queensland,146.868083,-19.126917 +2024,2,12,1,South Australia,136.809402,-35.96032 +2023,5,30,1,Queensland,153.093342,-27.526754 +2020,11,28,1,Queensland,151.664842,-28.254267 +2024,4,23,1,Queensland,151.762506,-26.16856 +2021,11,10,1,South Australia,138.721252,-35.176127 +2020,11,9,1,Victoria,146.181779,-38.627043 +2021,3,2,1,Queensland,153.06051,-27.550633 +2024,4,6,1,Queensland,152.991133,-27.822378 +2023,1,27,1,Victoria,144.474713,-37.685101 +2024,10,30,1,Queensland,152.960102,-27.465413 +2023,4,9,1,Queensland,153.092336,-27.528054 +2023,11,14,1,Queensland,153.107727,-27.527248 +2024,4,22,1,Queensland,153.10609,-27.529251 +2021,10,31,1,Victoria,145.736417,-38.631333 +2021,11,24,1,Queensland,151.935013,-27.329022 +2023,11,14,1,Queensland,153.091497,-27.52699 +2023,1,2,1,Queensland,153.092147,-27.527201 +2023,12,16,1,Queensland,153.1104,-27.5275 +2021,2,13,1,South Australia,138.652906,-35.013932 +2022,2,11,1,Victoria,145.559476,-37.061315 +2024,4,22,1,Queensland,153.080561,-27.508314 +2024,7,10,1,Queensland,153.111295,-27.529527 +2023,8,5,1,New South Wales,151.246095,-33.169853 +2023,9,23,1,Victoria,143.877408,-37.599598 +2023,10,2,1,New South Wales,152.901543,-31.442307 +2024,1,30,1,South Australia,138.732072,-34.890452 +2022,12,30,1,South Australia,137.494975,-35.707286 +2023,7,28,1,Queensland,153.104093,-27.528877 +2023,2,28,1,Queensland,152.24933,-27.49628 +2022,1,8,1,Victoria,145.282539,-38.139051 +2023,6,29,1,Queensland,153.151142,-27.583787 +2024,6,14,1,Queensland,152.662787,-26.393532 +2024,7,31,1,Victoria,142.36361,-38.318662 +2023,9,2,1,Queensland,153.000851,-27.284485 +2021,11,14,1,Queensland,152.401655,-27.457563 +2024,9,21,1,New South Wales,153.162292,-28.875798 +2022,10,30,1,Victoria,146.387667,-38.358693 +2024,9,15,1,Victoria,146.387489,-38.360263 +2022,5,29,1,Queensland,152.1833,-27.53118 +2023,4,25,1,Queensland,153.372697,-27.911922 +2024,9,24,1,Queensland,153.06955,-27.224047 +2023,10,3,1,New South Wales,152.901505,-31.442345 +2024,9,20,1,Queensland,153.085294,-27.508776 +2022,6,29,1,Queensland,153.105524,-27.505109 +2022,12,6,1,Queensland,153.072707,-27.543561 +2023,10,6,1,Queensland,151.980172,-26.509306 +2020,3,17,1,South Australia,135.682525,-34.825 +2023,6,4,1,Queensland,153.05401,-27.550926 +2022,2,23,1,Victoria,144.377039,-37.679616 +2024,4,27,1,Queensland,153.092286,-27.527921 +2021,7,23,1,South Australia,138.511244,-34.933675 +2023,7,3,1,Victoria,144.304401,-37.772496 +2021,2,15,1,Queensland,153.090909,-27.516782 +2021,6,19,1,Queensland,153.054849,-27.543777 +2023,11,24,1,South Australia,138.718884,-34.891691 +2024,1,28,1,Victoria,143.516073,-38.833038 +2023,9,18,1,Queensland,153.109417,-27.52942 +2022,8,5,1,Queensland,153.282641,-27.526185 +2020,8,23,1,Victoria,143.919774,-37.650408 +2024,1,21,1,Queensland,153.092488,-27.527683 +2023,12,8,1,Victoria,144.245493,-37.864889 +2023,4,8,1,Queensland,153.38145,-27.922134 +2024,7,27,1,Queensland,153.443218,-28.127324 +2023,7,25,1,Queensland,151.86171,-27.323957 +2023,11,11,1,Queensland,153.093018,-27.527867 +2023,11,18,1,Queensland,153.09161,-27.527278 +2021,12,26,1,Queensland,153.036656,-27.5364 +2023,2,26,1,New South Wales,152.9021,-31.44227 +2023,4,5,1,Victoria,145.387534,-37.051797 +2024,7,21,1,Queensland,153.10967,-27.529659 +2022,11,27,1,Queensland,152.049101,-27.265864 +2020,5,26,1,New South Wales,151.520479,-30.520765 +2023,9,24,1,Queensland,153.082786,-27.507569 +2024,9,15,1,Queensland,153.09102,-27.526484 +2023,11,10,1,Queensland,152.555437,-27.18757 +2023,11,25,1,South Australia,137.493442,-35.706873 +2021,10,10,1,New South Wales,153.401823,-28.25848 +2023,2,6,1,Queensland,152.003178,-27.413336 +2023,8,20,1,Queensland,153.302391,-27.96093 +2024,6,9,1,Queensland,153.090942,-27.527493 +2024,9,21,1,New South Wales,146.587803,-34.76584 +2023,6,2,1,Queensland,153.071645,-27.510886 +2023,5,26,1,Queensland,153.102999,-27.527534 +2022,11,24,1,Queensland,151.88333,-27.559855 +2023,7,2,1,Queensland,153.373963,-27.914843 +2024,11,3,1,Queensland,153.091028,-27.525953 +2023,12,1,1,Victoria,143.932051,-37.653024 +2021,12,12,1,Queensland,153.085319,-27.509074 +2023,5,18,1,South Australia,138.634411,-34.887824 +2023,12,24,1,South Australia,138.723081,-34.890106 +2021,12,13,1,Queensland,153.076706,-27.540147 +2024,11,21,1,Queensland,152.108311,-27.28358 +2020,11,7,1,South Australia,138.67187,-34.951234 +2024,3,24,1,Queensland,153.092867,-27.528465 +2024,9,29,1,Queensland,153.093743,-27.527853 +2022,10,27,1,Victoria,149.760391,-37.563316 +2024,6,22,1,Queensland,153.112807,-27.528385 +2023,12,11,1,Queensland,151.949888,-26.544575 +2021,11,28,1,Queensland,151.737356,-27.598737 +2020,3,31,1,Victoria,143.874747,-37.595255 +2024,4,3,1,South Australia,138.721374,-34.890375 +2023,9,23,1,Queensland,153.110703,-27.529866 +2020,10,20,1,Victoria,143.893367,-37.593995 +2020,11,21,1,Queensland,153.06237,-27.540722 +2023,2,25,1,Queensland,152.18373,-27.53098 +2023,8,20,1,Queensland,152.059333,-27.264707 +2023,1,20,1,Queensland,152.993598,-27.284646 +2023,11,15,1,Victoria,147.729263,-37.922488 +2023,6,10,1,Queensland,153.084563,-27.52376 +2023,8,13,1,Queensland,153.000797,-27.284347 +2024,5,26,1,Queensland,153.091235,-27.527339 +2023,1,16,1,Queensland,153.104808,-27.529713 +2021,2,11,1,South Australia,138.574746,-35.02011 +2023,3,17,1,Queensland,153.057571,-27.550959 +2021,12,20,1,South Australia,138.703553,-34.903008 +2021,11,1,1,Queensland,152.58853,-27.16358 +2024,10,4,1,Victoria,145.638222,-37.94035 +2024,6,19,1,Queensland,153.105381,-27.529388 +2023,11,26,1,South Australia,138.693772,-34.922337 +2023,12,5,1,Queensland,153.35501,-27.985017 +2024,2,9,1,New South Wales,151.095122,-33.076503 +2021,2,7,1,Victoria,142.367258,-38.316153 +2020,10,22,1,New South Wales,149.384275,-36.168217 +2023,6,18,1,Queensland,153.09241,-27.52842 +2022,8,28,1,Queensland,151.820923,-26.399767 +2023,2,24,1,Queensland,153.103406,-27.528763 +2023,9,26,1,New South Wales,146.586999,-34.753796 +2022,5,2,1,South Australia,138.656896,-34.8593 +2024,8,24,1,Queensland,153.084458,-27.510928 +2023,4,6,1,Victoria,144.272522,-37.75238 +2020,7,4,1,Queensland,152.641229,-27.454285 +2024,3,21,1,Queensland,153.058549,-27.547835 +2024,2,6,1,Queensland,153.110464,-27.529845 +2023,10,29,1,Queensland,151.512847,-27.552138 +2023,7,10,1,Queensland,153.10482,-27.529448 +2023,1,24,1,Queensland,151.732557,-27.587939 +2024,11,6,1,Queensland,153.104801,-27.521063 +2023,2,20,1,South Australia,138.688876,-34.953798 +2020,4,6,1,South Australia,138.705905,-34.931865 +2020,12,30,1,Victoria,146.163772,-38.671105 +2023,10,10,1,Queensland,153.108266,-27.527118 +2023,10,22,1,Queensland,153.090541,-27.526855 +2020,6,25,1,New South Wales,153.376666,-28.252995 +2023,10,18,1,Queensland,153.107267,-27.527247 +2024,3,17,1,Victoria,143.915367,-38.481553 +2024,11,4,1,Queensland,153.104488,-27.529707 +2022,10,16,1,South Australia,138.570949,-35.035222 +2023,7,26,1,Victoria,144.031142,-37.691048 +2023,8,9,1,Queensland,152.044708,-27.256998 +2024,3,31,1,Queensland,153.093706,-27.524978 +2023,6,18,1,Queensland,153.057848,-27.551863 +2024,7,20,1,Queensland,152.747787,-28.236213 +2024,6,20,1,Queensland,152.514944,-27.850113 +2021,8,21,1,South Australia,138.650375,-35.015767 +2023,8,22,1,Queensland,153.052864,-27.553274 +2024,10,16,1,Queensland,153.103727,-27.529773 +2023,3,10,1,Queensland,153.000985,-26.394889 +2023,4,11,1,Queensland,153.090761,-27.527038 +2020,5,8,1,Queensland,153.061049,-27.538031 +2022,4,10,1,Queensland,153.082812,-27.506273 +2024,4,22,1,South Australia,138.713728,-34.892726 +2021,8,28,1,New South Wales,152.898072,-30.465162 +2023,1,22,1,Queensland,151.944917,-27.385276 +2023,6,7,1,Queensland,153.102756,-27.527541 +2020,8,26,1,New South Wales,153.376614,-28.253838 +2024,9,7,1,South Australia,138.714506,-34.844521 +2024,1,8,1,Queensland,151.737979,-26.314643 +2024,1,20,1,Queensland,153.104834,-27.529699 +2024,2,21,1,Queensland,153.105822,-27.529205 +2024,9,21,1,Queensland,152.562943,-27.180677 +2022,11,10,1,Queensland,151.710785,-27.649204 +2020,1,14,1,New South Wales,153.394861,-28.275582 +2024,1,6,1,Victoria,143.854296,-38.668088 +2023,12,13,1,Queensland,151.779174,-26.112093 +2023,11,14,1,New South Wales,150.822845,-34.101905 +2024,2,12,1,Queensland,153.104042,-27.530555 +2022,3,3,1,South Australia,140.702896,-34.205486 +2023,12,5,1,Queensland,153.109566,-27.527938 +2024,6,15,1,Queensland,153.09078,-27.527089 +2024,3,10,1,Queensland,153.090349,-27.526669 +2020,12,20,1,Victoria,146.163803,-38.671178 +2024,5,5,1,Queensland,146.869694,-19.12525 +2024,2,16,1,Victoria,146.118402,-38.826817 +2024,2,11,1,Queensland,153.091611,-27.526878 +2024,1,31,1,South Australia,138.730258,-34.890237 +2021,10,13,1,Queensland,153.057551,-27.551619 +2020,5,3,1,Queensland,153.058017,-27.547945 +2024,10,25,1,Queensland,151.846364,-26.22482 +2021,1,22,1,Queensland,152.267375,-27.311774 +2023,1,13,1,New South Wales,150.646973,-33.447762 +2022,1,10,1,Queensland,152.824358,-27.249316 +2020,5,29,1,South Australia,138.701717,-34.902689 +2021,11,10,1,Queensland,152.055269,-27.273434 +2023,9,24,1,Queensland,152.999062,-27.283681 +2024,9,29,1,Queensland,153.09169,-27.527196 +2022,10,23,1,Queensland,153.084462,-27.524008 +2024,1,20,1,Queensland,153.092532,-27.527674 +2023,1,28,1,Victoria,146.773733,-38.481041 +2020,5,16,1,New South Wales,151.520666,-30.520908 +2023,4,22,1,New South Wales,149.229492,-36.093794 +2020,5,21,1,New South Wales,153.400813,-28.257928 +2022,8,22,1,Queensland,153.059191,-27.549144 +2024,1,20,1,New South Wales,151.084863,-29.73011 +2024,9,21,1,Victoria,145.232925,-38.264253 +2023,3,7,1,Queensland,153.092405,-27.527283 +2023,9,10,1,Queensland,152.917929,-27.709042 +2020,1,5,1,Queensland,151.8156,-26.409729 +2020,4,27,1,South Australia,138.602495,-35.002042 +2024,7,30,1,Victoria,143.919083,-37.653061 +2024,2,17,1,Queensland,153.059574,-27.545424 +2021,8,22,1,New South Wales,150.567222,-33.635833 +2023,5,21,1,Queensland,153.103818,-27.529251 +2023,1,22,1,Queensland,153.037102,-27.536211 +2023,3,17,1,Queensland,153.111487,-27.529454 +2024,8,29,1,South Australia,138.721331,-34.892709 +2023,2,19,1,New South Wales,152.063203,-32.706138 +2024,9,8,1,Queensland,153.068808,-27.510098 +2023,4,15,1,Queensland,149.169603,-21.453861 +2024,11,1,1,Queensland,153.092034,-27.525846 +2023,11,5,1,Queensland,152.102858,-27.570475 +2024,8,15,1,Queensland,151.749065,-26.154302 +2020,8,4,1,Queensland,153.033118,-27.539771 +2022,7,6,1,Queensland,153.442232,-27.393478 +2023,1,31,1,Queensland,153.103774,-27.528908 +2021,8,30,1,New South Wales,153.4021,-28.258863 +2024,7,17,1,Victoria,142.983536,-38.502644 +2023,8,20,1,Queensland,153.099674,-27.531856 +2023,2,19,1,Queensland,152.921655,-26.721647 +2024,8,25,1,Queensland,151.572997,-27.62997 +2021,7,3,1,Queensland,153.379641,-28.219027 +2023,3,5,1,Queensland,153.059086,-27.544911 +2023,7,15,1,Queensland,153.044471,-27.539354 +2024,10,27,1,Queensland,153.0914,-27.527287 +2023,9,13,1,Queensland,148.836585,-21.7566 +2023,4,8,1,New South Wales,151.095139,-33.076467 +2023,10,30,1,Queensland,153.187791,-28.19339 +2024,10,6,1,Queensland,153.09329,-27.524037 +2024,4,9,1,Victoria,143.896463,-37.6435 +2023,11,15,1,Victoria,147.730562,-37.924183 +2022,1,3,1,Victoria,143.66835,-38.75853 +2022,6,5,1,Victoria,144.11989,-37.336988 +2023,10,23,1,Queensland,153.151142,-27.583787 +2021,9,10,1,New South Wales,153.000275,-28.525812 +2024,9,18,1,Queensland,151.83715,-26.256383 +2021,5,2,1,South Australia,138.689223,-35.08766 +2022,10,1,1,Victoria,147.73359,-37.91057 +2024,3,23,1,Queensland,153.059291,-27.55629 +2024,4,22,1,South Australia,138.722209,-34.890591 +2024,10,28,1,Queensland,152.680448,-27.851109 +2022,12,5,1,Victoria,142.363197,-38.318633 +2020,7,6,1,New South Wales,153.376691,-28.25287 +2023,12,12,1,Victoria,143.89601,-37.579232 +2023,6,2,1,Queensland,153.109002,-27.527049 +2024,4,29,1,Queensland,153.05394,-27.539173 +2023,12,7,1,South Australia,138.727714,-34.887707 +2022,10,9,1,Queensland,152.945922,-28.125575 +2021,11,4,1,Victoria,146.164159,-38.671492 +2024,6,19,1,Queensland,153.103312,-27.529018 +2024,11,16,1,Queensland,153.535508,-27.429829 +2023,12,16,1,Queensland,153.11048,-27.527507 +2020,4,24,1,South Australia,138.654496,-34.965054 +2021,7,17,1,Queensland,153.057439,-27.551297 +2022,10,27,1,Queensland,151.954588,-27.444527 +2021,7,10,1,South Australia,138.702963,-34.903078 +2020,8,23,1,New South Wales,153.377304,-28.25385 +2023,8,27,1,Queensland,151.753515,-26.15951 +2024,9,18,1,Queensland,153.373631,-27.916619 +2023,12,7,1,Queensland,153.19019,-27.701741 +2020,12,1,1,Queensland,153.181864,-27.499442 +2020,12,22,1,Victoria,149.744307,-37.540278 +2022,3,16,1,Queensland,153.403251,-27.493922 +2022,2,22,1,Victoria,146.304703,-38.687915 +2024,4,12,1,Victoria,145.314194,-38.376148 +2023,8,26,1,New South Wales,151.004525,-33.207552 +2024,2,11,1,Queensland,153.092315,-27.528424 +2021,11,28,1,Queensland,152.862672,-27.3194 +2023,8,20,1,Queensland,153.093074,-27.528025 +2023,9,20,1,Queensland,152.624412,-27.406219 +2020,12,29,1,Victoria,142.366175,-38.3141 +2024,8,18,1,Queensland,153.092112,-27.525483 +2020,6,24,1,New South Wales,153.377458,-28.25425 +2024,4,25,1,Queensland,153.073383,-27.545911 +2024,10,5,1,Queensland,153.10417,-27.52824 +2021,10,20,1,Victoria,146.16362,-38.671167 +2020,4,23,1,Queensland,153.050963,-27.558239 +2023,2,10,1,Queensland,153.110737,-27.529816 +2023,6,18,1,Queensland,146.871082,-19.124135 +2023,1,10,1,Queensland,152.18373,-27.53098 +2023,4,4,1,Queensland,152.18373,-27.53098 +2024,1,27,1,Victoria,145.509888,-36.9682 +2023,11,24,1,Queensland,150.920364,-26.674371 +2020,2,6,1,New South Wales,150.840979,-34.062977 +2024,9,18,1,Queensland,153.373463,-27.917027 +2023,6,18,1,Queensland,153.000312,-27.284601 +2023,12,27,1,Queensland,153.091462,-27.527109 +2024,3,10,1,Queensland,153.072342,-27.544489 +2023,7,15,1,Victoria,144.264732,-37.3939 +2024,1,15,1,Queensland,148.688128,-21.687472 +2021,10,14,1,New South Wales,153.377263,-28.254182 +2022,11,17,1,Queensland,152.111389,-27.371389 +2024,9,20,1,Queensland,153.074816,-27.546516 +2023,3,6,1,Queensland,146.868729,-19.125463 +2023,10,16,1,Queensland,153.115413,-27.529229 +2020,8,6,1,Queensland,153.046925,-27.54971 +2022,12,16,1,Queensland,153.107863,-27.526662 +2021,8,11,1,Queensland,153.057757,-27.551766 +2020,10,2,1,Queensland,153.057497,-27.54663 +2023,9,8,1,Queensland,153.093132,-27.524147 +2023,6,4,1,Queensland,153.054011,-27.550931 +2021,4,6,1,South Australia,138.50617,-35.120678 +2024,4,17,1,Queensland,152.544756,-27.971665 +2024,10,19,1,Queensland,153.402988,-27.493645 +2022,3,23,1,Victoria,143.718189,-38.722582 +2024,8,18,1,Queensland,153.092122,-27.527353 +2020,7,23,1,Queensland,153.057505,-27.551685 +2021,10,1,1,Queensland,153.454542,-27.38986 +2024,3,17,1,Queensland,153.07262,-27.549098 +2020,4,16,1,New South Wales,153.376912,-28.254041 +2023,10,13,1,New South Wales,151.095091,-33.076325 +2023,12,26,1,Queensland,153.093318,-27.524162 +2021,2,18,1,New South Wales,151.518633,-30.521032 +2024,4,18,1,South Australia,138.715482,-34.891742 +2023,4,17,1,Victoria,144.291167,-37.079684 +2023,11,3,1,South Australia,138.724218,-34.896258 +2021,9,26,1,Queensland,152.10716,-27.562821 +2024,4,28,1,South Australia,138.542938,-35.209918 +2024,1,17,1,Victoria,146.692853,-36.358478 +2023,11,19,1,Queensland,153.055099,-27.545951 +2024,11,17,1,Queensland,152.606868,-28.164285 +2024,11,16,1,Queensland,152.060822,-27.259925 +2022,1,9,1,South Australia,135.671606,-34.898546 +2023,6,17,1,Queensland,153.09356,-27.524418 +2024,9,19,1,Queensland,152.252604,-27.513976 +2022,12,8,1,Victoria,145.273378,-38.127628 +2024,11,23,1,Victoria,147.038396,-38.269242 +2022,6,6,1,South Australia,138.657117,-34.865227 +2022,12,8,1,Queensland,153.057378,-27.551692 +2020,3,22,1,Victoria,145.267586,-38.133389 +2021,1,25,1,New South Wales,150.822036,-34.101683 +2024,5,27,1,Victoria,144.991468,-38.366608 +2024,3,19,1,Queensland,153.109526,-27.529002 +2023,9,22,1,Queensland,153.08498,-27.509204 +2023,3,15,1,Victoria,141.760635,-38.061806 +2024,5,2,1,Queensland,153.057596,-27.551268 +2023,8,13,1,Queensland,153.093703,-27.524917 +2020,8,3,1,Queensland,153.05941,-27.548248 +2020,10,21,1,Queensland,152.925522,-27.314492 +2021,9,6,1,Victoria,143.998651,-37.692515 +2021,6,27,1,Queensland,153.068525,-27.545104 +2023,11,19,1,Queensland,152.999718,-27.284035 +2023,11,5,1,Queensland,153.090703,-27.525814 +2022,9,15,1,Queensland,153.378855,-27.917736 +2021,9,27,1,New South Wales,153.377676,-28.253958 +2020,7,12,1,South Australia,138.70516,-34.903108 +2023,8,20,1,Queensland,152.401214,-27.456932 +2022,8,12,1,New South Wales,151.644072,-30.437579 +2023,6,17,1,Queensland,152.828224,-28.093447 +2024,3,11,1,South Australia,138.673106,-35.008294 +2021,6,11,1,Victoria,145.255067,-38.139133 +2024,3,9,1,Queensland,153.090632,-27.526484 +2024,2,17,1,Queensland,153.055467,-27.550729 +2022,10,9,1,Queensland,152.860105,-28.220302 +2023,5,26,1,Queensland,153.109699,-27.528253 +2022,12,21,1,Victoria,145.017867,-38.470653 +2023,12,8,1,Queensland,153.091107,-27.526973 +2023,3,10,1,Queensland,151.0701,-28.013943 +2021,7,12,1,Queensland,153.105295,-27.529913 +2024,8,17,1,South Australia,138.625991,-34.893256 +2024,10,12,1,Queensland,153.091655,-27.527221 +2022,10,9,1,Queensland,152.860105,-28.220302 +2024,9,6,1,South Australia,138.722912,-34.889984 +2024,2,2,1,South Australia,138.727266,-34.995017 +2024,4,1,1,Queensland,153.090914,-27.525827 +2023,11,22,1,Queensland,152.996781,-27.304636 +2024,3,3,1,Queensland,153.091679,-27.526947 +2020,6,9,1,Queensland,153.057958,-27.550838 +2024,4,20,1,Queensland,153.103365,-27.5295 +2023,9,9,1,Queensland,153.109197,-27.527217 +2020,10,14,1,New South Wales,153.377492,-28.254076 +2023,12,7,1,South Australia,138.732485,-34.890294 +2022,11,4,1,South Australia,138.326222,-35.44546 +2021,8,3,1,Queensland,153.247138,-27.604868 +2021,10,20,1,Victoria,146.163758,-38.671092 +2023,1,10,1,Queensland,153.074041,-27.546001 +2023,9,22,1,South Australia,138.708075,-34.905984 +2023,8,13,1,Queensland,153.093216,-27.524039 +2022,3,16,1,Queensland,153.40342,-27.493791 +2024,1,14,1,New South Wales,150.601537,-29.87032 +2020,7,24,1,South Australia,138.695144,-34.957707 +2021,6,30,1,New South Wales,150.248415,-30.988959 +2021,9,6,1,Victoria,145.047778,-38.265833 +2023,10,10,1,Victoria,145.484362,-37.031379 +2020,2,28,1,Queensland,153.058676,-27.547867 +2023,12,27,1,Victoria,145.724328,-38.630977 +2024,2,5,1,South Australia,138.72806,-34.89067 +2024,5,18,1,Queensland,153.09106,-27.525961 +2022,6,22,1,Queensland,151.943741,-27.392485 +2024,3,14,1,Queensland,151.527296,-26.349158 +2024,2,11,1,South Australia,138.690407,-34.946247 +2024,3,24,1,South Australia,138.703766,-34.903719 +2023,5,4,1,Queensland,153.151142,-27.583787 +2023,2,21,1,Queensland,153.092478,-27.525429 +2021,9,26,1,Queensland,153.086402,-27.506185 +2024,9,18,1,South Australia,138.713772,-34.892227 +2023,3,21,1,Queensland,153.091462,-27.526704 +2023,2,16,1,Victoria,145.268364,-38.131094 +2023,8,12,1,Queensland,152.849975,-28.088218 +2024,11,15,1,Queensland,153.358506,-27.917234 +2024,2,15,1,Victoria,143.513495,-38.833162 +2023,9,5,1,Queensland,152.618109,-27.896005 +2023,10,30,1,Victoria,147.733166,-37.920153 +2024,6,9,1,New South Wales,151.095322,-33.025855 +2020,10,5,1,Queensland,153.049177,-27.540728 +2022,3,21,1,Victoria,142.630498,-38.321222 +2021,9,13,1,Queensland,152.807541,-27.531846 +2022,8,24,1,Queensland,152.866174,-28.211501 +2023,12,22,1,Queensland,153.11127,-27.529123 +2023,10,11,1,Queensland,153.084375,-27.510903 +2020,11,16,1,Victoria,144.492393,-37.707034 +2023,10,22,1,Queensland,152.8552,-28.076926 +2023,2,10,1,Victoria,145.263096,-38.487214 +2023,7,22,1,Queensland,153.093517,-27.524086 +2023,6,14,1,Queensland,151.766354,-26.17259 +2023,7,12,1,Queensland,153.103276,-27.52797 +2023,10,3,1,Queensland,153.112405,-27.528764 +2023,1,14,1,South Australia,137.641037,-35.645478 +2021,11,27,1,Victoria,145.671423,-37.94456 +2024,6,3,1,South Australia,138.722703,-34.889737 +2024,7,23,1,Queensland,151.883976,-26.25944 +2023,11,15,1,Queensland,153.110216,-27.527492 +2023,11,24,1,Queensland,153.112025,-27.52793 +2024,10,5,1,Queensland,153.376199,-27.920167 +2024,11,1,1,Queensland,152.063356,-27.262258 +2020,9,17,1,Victoria,144.948741,-38.424107 +2020,5,20,1,Queensland,153.068282,-27.547097 +2023,12,16,1,Queensland,153.09256,-27.528157 +2021,10,9,1,Queensland,151.584571,-28.915196 +2024,3,15,1,Queensland,153.103444,-27.528153 +2021,8,22,1,Queensland,153.082961,-27.51227 +2023,11,9,1,Queensland,152.045052,-27.258335 +2023,12,4,1,Queensland,152.454483,-27.529244 +2023,6,30,1,Queensland,151.985004,-26.538368 +2022,5,5,1,Victoria,147.765913,-37.906588 +2021,4,5,1,Victoria,146.163728,-38.671213 +2023,12,23,1,Queensland,153.09218,-27.527667 +2022,11,8,1,Queensland,153.057679,-27.55184 +2020,2,16,1,Queensland,153.069528,-27.54547 +2023,5,28,1,New South Wales,153.317177,-28.949206 +2023,11,6,1,Victoria,141.929175,-38.061049 +2020,3,16,1,Victoria,145.308462,-38.384707 +2020,2,20,1,Queensland,153.057608,-27.551889 +2023,6,18,1,Queensland,153.059187,-27.551254 +2020,7,31,1,New South Wales,151.521444,-30.51972 +2020,8,31,1,Queensland,153.259788,-27.501873 +2022,5,1,1,Queensland,146.870348,-19.124823 +2022,9,3,1,Queensland,152.937487,-27.164136 +2020,11,23,1,New South Wales,152.897466,-31.458007 +2024,4,22,1,Victoria,143.51207,-38.83305 +2022,2,13,1,South Australia,138.589766,-35.172197 +2022,3,19,1,Queensland,152.108095,-27.564025 +2022,11,18,1,Victoria,145.403563,-36.868725 +2024,7,8,1,Queensland,153.192195,-27.703164 +2020,8,5,1,Queensland,151.098859,-25.066874 +2020,7,24,1,South Australia,138.694258,-34.957256 +2023,8,14,1,Queensland,146.870848,-19.124286 +2023,9,10,1,Queensland,152.999813,-27.284005 +2023,1,15,1,Victoria,144.011724,-37.693694 +2024,2,25,1,Queensland,153.092227,-27.527264 +2022,2,10,1,Victoria,146.375013,-39.066967 +2024,8,11,1,Queensland,153.072528,-27.541332 +2022,5,8,1,Victoria,144.094986,-37.623917 +2023,3,2,1,Victoria,145.406158,-37.089589 +2023,6,16,1,Victoria,146.017171,-38.355067 +2020,9,30,1,South Australia,138.679042,-34.951585 +2023,3,29,1,Queensland,153.111596,-27.527716 +2020,9,17,1,Queensland,153.08996,-27.63701 +2024,5,13,1,Queensland,153.081879,-27.504993 +2021,10,25,1,Queensland,153.084822,-27.509703 +2020,8,14,1,South Australia,138.712128,-34.908923 +2022,3,5,1,South Australia,138.646824,-34.975477 +2021,5,2,1,South Australia,138.668747,-35.016996 +2021,10,30,1,Victoria,146.163758,-38.671122 +2022,9,30,1,Victoria,145.293658,-38.310517 +2022,11,8,1,Victoria,145.950352,-38.881561 +2022,12,22,1,Victoria,146.162261,-38.670698 +2024,3,12,1,Queensland,153.057373,-27.55951 +2024,3,12,1,Queensland,153.057874,-27.559479 +2023,7,11,1,Queensland,153.084452,-27.505228 +2024,11,15,1,Queensland,153.058163,-27.549314 +2023,10,28,1,Queensland,151.917461,-26.557753 +2020,12,25,1,Victoria,146.202337,-38.651249 +2024,5,27,1,Queensland,152.961442,-27.275222 +2024,2,18,1,Victoria,142.978531,-38.50085 +2024,3,12,1,Queensland,153.105362,-27.529238 +2023,12,2,1,Victoria,144.207868,-37.854002 +2024,1,9,1,Queensland,151.565963,-27.795938 +2024,4,27,1,Queensland,153.102629,-27.529443 +2022,7,9,1,Victoria,144.314838,-37.385688 +2023,12,23,1,New South Wales,149.893453,-34.819998 +2023,2,26,1,Queensland,153.169944,-27.586456 +2024,1,15,1,Queensland,151.769051,-26.175532 +2024,7,3,1,Victoria,143.66951,-38.756445 +2024,10,19,1,Queensland,151.937203,-26.630161 +2024,9,9,1,Queensland,151.787977,-26.137203 +2024,1,30,1,New South Wales,151.318989,-33.107509 +2023,12,5,1,South Australia,138.722886,-34.892008 +2022,9,28,1,South Australia,138.701118,-34.902006 +2024,6,2,1,Queensland,153.091271,-27.527182 +2021,11,17,1,South Australia,138.644459,-34.962859 +2023,3,23,1,Queensland,152.18373,-27.53098 +2024,8,19,1,South Australia,138.721954,-34.890991 +2021,9,11,1,Victoria,145.125832,-38.178211 +2021,10,11,1,Queensland,152.610458,-27.153244 +2023,9,17,1,South Australia,138.656613,-35.001638 +2023,3,19,1,Queensland,153.090881,-27.526816 +2023,2,4,1,New South Wales,150.810679,-34.107528 +2023,1,5,1,South Australia,138.694047,-34.921792 +2024,5,24,1,South Australia,138.715872,-34.891149 +2024,7,28,1,Queensland,153.092201,-27.528328 +2024,9,1,1,South Australia,138.575741,-35.080441 +2023,6,18,1,Victoria,145.4283,-36.890655 +2024,8,2,1,South Australia,138.569006,-35.095906 +2023,9,10,1,South Australia,138.57781,-35.057518 +2020,12,8,1,Queensland,151.987165,-24.985621 +2023,10,12,1,Victoria,146.667158,-36.391503 +2024,6,7,1,Victoria,144.200333,-37.62742 +2021,9,28,1,Victoria,146.142945,-38.245862 +2022,10,19,1,New South Wales,153.395427,-28.266887 +2022,9,11,1,Victoria,142.363145,-38.318672 +2023,12,3,1,New South Wales,153.333569,-28.821972 +2023,10,24,1,Victoria,143.894158,-37.644514 +2023,11,15,1,Victoria,147.727463,-37.922255 +2020,3,15,1,New South Wales,151.932569,-32.038488 +2024,8,1,1,Victoria,142.072356,-38.2353 +2023,12,29,1,Queensland,153.092021,-27.525499 +2023,8,19,1,Queensland,153.092362,-27.527899 +2020,8,20,1,New South Wales,153.375272,-28.252556 +2021,10,4,1,Queensland,149.77069,-25.61977 +2022,9,6,1,Victoria,145.750176,-38.631832 +2024,9,11,1,Queensland,152.046151,-27.255535 +2023,12,19,1,Queensland,153.111683,-27.527766 +2023,2,20,1,Queensland,152.398579,-28.055634 +2023,12,26,1,Queensland,153.092979,-27.524749 +2021,9,9,1,Victoria,142.025013,-37.736232 +2022,9,16,1,Victoria,141.131418,-38.06523 +2024,1,18,1,Queensland,153.439466,-27.396767 +2024,11,9,1,Queensland,153.093922,-27.527569 +2024,1,7,1,Queensland,153.093673,-27.528254 +2024,5,10,1,Victoria,142.974903,-38.499858 +2024,1,27,1,New South Wales,153.022178,-28.412442 +2021,2,9,1,Queensland,153.058676,-27.55038 +2024,1,22,1,Victoria,146.577197,-38.473891 +2023,10,15,1,South Australia,138.914611,-34.581891 +2023,10,14,1,Queensland,153.077269,-27.545966 +2023,10,28,1,Queensland,153.103457,-27.529389 +2022,7,15,1,Queensland,153.104021,-27.544534 +2020,7,27,1,Queensland,153.060127,-27.549638 +2023,10,16,1,Queensland,153.1108,-27.527253 +2021,3,3,1,Queensland,151.793747,-26.429063 +2023,11,13,1,Queensland,152.764962,-27.773621 +2022,5,14,1,New South Wales,151.091626,-33.144967 +2022,11,13,1,Queensland,146.869293,-19.125223 +2024,11,17,1,Queensland,153.071032,-27.543939 +2022,8,13,1,New South Wales,151.014811,-34.066761 +2023,11,4,1,Queensland,152.116608,-27.229763 +2024,10,7,1,Queensland,152.992215,-27.8235 +2023,1,22,1,Queensland,153.089287,-27.822383 +2020,7,17,1,Queensland,153.060636,-27.543505 +2023,12,28,1,Queensland,151.944566,-26.545036 +2024,6,25,1,Queensland,151.913233,-28.784186 +2024,5,19,1,Queensland,153.091754,-27.527124 +2024,4,9,1,Queensland,152.992192,-27.822584 +2022,8,30,1,Queensland,152.865975,-28.211518 +2020,10,10,1,Queensland,152.970833,-27.288502 +2024,2,5,1,Queensland,153.090817,-27.526835 +2023,5,21,1,Queensland,151.724153,-27.429497 +2022,12,31,1,New South Wales,150.831853,-34.100478 +2022,7,23,1,New South Wales,153.479472,-28.236275 +2024,9,6,1,Queensland,153.074512,-27.546788 +2024,4,25,1,Queensland,153.110101,-27.529282 +2024,9,19,1,Queensland,153.09274,-27.525312 +2023,8,27,1,New South Wales,149.338137,-31.5848 +2024,3,7,1,Queensland,152.382853,-27.449595 +2023,12,26,1,Queensland,153.092336,-27.525423 +2020,9,12,1,Queensland,153.281531,-27.532064 +2023,5,11,1,South Australia,138.754268,-34.976401 +2022,12,10,1,Queensland,153.103248,-27.529037 +2023,9,25,1,Queensland,153.105502,-27.529179 +2024,1,6,1,Queensland,153.09133,-27.527333 +2022,7,19,1,Victoria,142.367295,-38.316203 +2022,1,4,1,Victoria,145.755892,-38.635506 +2021,10,22,1,South Australia,138.576145,-35.018528 +2024,8,16,1,Queensland,153.070066,-27.510642 +2020,7,2,1,Queensland,153.45376,-27.397251 +2022,5,10,1,New South Wales,146.570512,-34.766158 +2024,6,8,1,Queensland,153.091933,-27.527016 +2024,5,23,1,South Australia,138.732351,-34.882199 +2024,9,18,1,Queensland,151.992916,-28.810538 +2024,5,23,1,South Australia,138.735142,-34.887033 +2024,10,13,1,Victoria,141.635876,-38.281103 +2023,11,19,1,Queensland,153.09081,-27.526559 +2024,10,30,1,Queensland,153.091727,-27.521807 +2024,10,5,1,Queensland,152.31733,-26.6029 +2021,10,3,1,New South Wales,153.376856,-28.254229 +2024,1,25,1,Queensland,152.727097,-27.711487 +2020,3,21,1,South Australia,138.650985,-34.963309 +2021,2,8,1,Queensland,153.062669,-27.550304 +2024,10,13,1,Queensland,153.0862,-27.508525 +2020,4,6,1,Victoria,143.878536,-37.63247 +2022,12,2,1,Queensland,153.108328,-27.52732 +2024,11,5,1,Victoria,142.639415,-38.330011 +2023,12,13,1,Queensland,151.761921,-26.139709 +2020,9,15,1,New South Wales,153.395157,-28.275076 +2021,6,15,1,South Australia,138.669972,-34.913422 +2024,7,24,1,South Australia,138.721311,-34.89244 +2024,3,13,1,Queensland,153.057684,-27.55173 +2022,9,17,1,South Australia,138.55542,-35.30874 +2023,12,21,1,South Australia,138.730333,-34.890531 +2023,12,11,1,Victoria,144.047769,-37.725398 +2022,2,4,1,Victoria,142.291003,-37.874695 +2023,9,14,1,New South Wales,150.598731,-29.868639 +2024,10,2,1,Queensland,152.0047,-27.411858 +2021,12,3,1,Queensland,153.063619,-27.54998 +2021,7,26,1,Queensland,152.946687,-28.123653 +2021,8,8,1,Queensland,153.070788,-27.509598 +2024,11,16,1,Queensland,152.060822,-27.259925 +2022,2,14,1,Queensland,153.060379,-27.534287 +2024,1,20,1,Queensland,153.103756,-27.52971 +2023,10,29,1,Queensland,151.995698,-27.395296 +2023,12,14,1,Queensland,153.09314,-27.525025 +2023,1,17,1,Queensland,152.451688,-27.420513 +2021,11,28,1,Queensland,151.522174,-27.714466 +2023,8,15,1,Queensland,153.095091,-27.533476 +2024,11,1,1,Queensland,153.06482,-27.220592 +2020,7,12,1,South Australia,138.719209,-34.98688 +2022,10,6,1,Queensland,153.071051,-26.675805 +2020,5,31,1,South Australia,138.6367,-34.989361 +2021,9,8,1,Queensland,153.242197,-27.514573 +2023,10,24,1,Queensland,153.276394,-27.954955 +2021,9,1,1,Victoria,143.895432,-37.590119 +2021,10,21,1,Victoria,145.952349,-38.493134 +2024,8,17,1,Queensland,153.091405,-27.527388 +2023,12,15,1,Queensland,153.1034,-27.530186 +2024,7,20,1,Queensland,153.110382,-27.528981 +2023,3,6,1,Queensland,153.092211,-27.527033 +2022,12,16,1,Queensland,153.439467,-27.396839 +2020,12,7,1,Queensland,151.691557,-26.17693 +2023,11,15,1,Victoria,147.731537,-37.92388 +2023,7,28,1,Queensland,153.109141,-27.527236 +2020,7,14,1,Queensland,153.130275,-27.591124 +2023,8,9,1,Queensland,153.1155,-27.529475 +2024,6,12,1,South Australia,138.734277,-34.887652 +2024,3,19,1,Queensland,153.103895,-27.529452 +2023,1,12,1,South Australia,138.742033,-35.019951 +2023,9,12,1,Queensland,153.107669,-27.527155 +2024,1,23,1,Queensland,153.11143,-27.527829 +2023,8,24,1,Queensland,152.6291,-26.503862 +2023,8,14,1,Queensland,153.104256,-27.528529 +2024,8,23,1,Victoria,145.256292,-38.240855 +2023,12,5,1,Queensland,153.110405,-27.529738 +2022,11,25,1,Victoria,143.519882,-38.83152 +2024,7,28,1,South Australia,138.698528,-34.933842 +2023,11,19,1,Queensland,153.055099,-27.545951 +2024,3,9,1,Queensland,153.103306,-27.528486 +2021,5,2,1,South Australia,138.672614,-35.022564 +2022,11,1,1,Queensland,151.847222,-26.554167 +2022,11,12,1,Queensland,152.16219,-27.50071 +2024,2,17,1,New South Wales,149.408161,-33.753478 +2023,1,31,1,Queensland,153.090241,-27.525503 +2024,8,31,1,Queensland,153.079494,-27.493945 +2020,5,27,1,New South Wales,153.376989,-28.254347 +2024,8,11,1,New South Wales,150.601329,-29.870293 +2023,11,15,1,Queensland,153.10787,-27.52719 +2023,10,11,1,Queensland,153.37315,-27.912043 +2022,5,3,1,South Australia,138.653825,-34.86895 +2023,1,18,1,Queensland,153.10845,-27.527288 +2023,11,2,1,Queensland,152.981018,-27.276517 +2021,3,19,1,South Australia,138.647918,-35.006489 +2023,10,24,1,New South Wales,151.095061,-33.076364 +2024,7,7,1,Queensland,153.091042,-27.52663 +2020,9,24,1,New South Wales,153.400686,-28.257627 +2023,10,29,1,Queensland,153.0905,-27.527154 +2021,10,28,1,Queensland,153.04671,-27.544388 +2023,7,28,1,Queensland,153.090486,-27.526096 +2023,10,27,1,South Australia,138.698713,-34.934322 +2024,7,2,1,Victoria,142.974792,-38.481769 +2023,12,3,1,Queensland,153.092697,-27.525488 +2023,10,18,1,Victoria,145.302367,-38.384077 +2020,3,30,1,Queensland,152.8,-27.266667 +2020,10,9,1,Queensland,153.059938,-27.550082 +2022,8,15,1,Queensland,152.958362,-27.484854 +2024,2,11,1,South Australia,138.576807,-35.079178 +2023,7,9,1,Queensland,153.09194,-27.527018 +2022,6,18,1,Queensland,152.1833,-27.53118 +2023,7,31,1,Queensland,153.111258,-27.528758 +2024,7,7,1,Queensland,151.778183,-26.308911 +2023,12,10,1,Queensland,153.092549,-27.527703 +2022,12,14,1,Queensland,153.020541,-27.439118 +2022,10,10,1,South Australia,138.721809,-34.89276 +2023,8,19,1,Queensland,153.090296,-27.526544 +2023,7,28,1,Queensland,151.74856,-26.15484 +2023,8,1,1,Queensland,153.109387,-27.527015 +2024,1,28,1,Victoria,143.662283,-38.755355 +2023,9,29,1,Queensland,153.10724,-27.527289 +2024,6,11,1,South Australia,138.714442,-34.892477 +2023,12,3,1,Queensland,153.09147,-27.526943 +2023,11,11,1,South Australia,137.493556,-35.70654 +2021,10,23,1,Queensland,151.977,-26.161014 +2024,9,27,1,New South Wales,146.595032,-34.773244 +2022,11,23,1,Victoria,145.121166,-38.388611 +2023,7,30,1,Queensland,153.318695,-27.8948 +2023,10,8,1,Queensland,153.191728,-27.70137 +2023,10,26,1,Victoria,142.971014,-38.495522 +2023,5,17,1,Queensland,151.542525,-27.792608 +2023,10,21,1,Queensland,153.094621,-27.532901 +2021,9,26,1,Queensland,151.977,-26.161014 +2020,10,14,1,South Australia,138.662523,-35.007705 +2024,9,14,1,Queensland,153.092383,-27.524359 +2023,11,19,1,Queensland,153.19019,-27.701741 +2024,11,18,1,Queensland,151.595215,-27.673297 +2023,7,19,1,Victoria,143.38022,-38.68598 +2023,8,16,1,New South Wales,153.41981,-29.077999 +2023,12,5,1,South Australia,138.720567,-34.8929 +2022,11,26,1,Victoria,145.60443,-37.95883 +2021,11,18,1,South Australia,138.707031,-34.879733 +2023,3,26,1,Victoria,143.532242,-38.800275 +2023,11,6,1,Queensland,153.19019,-27.701741 +2022,12,12,1,Queensland,153.068274,-27.542384 +2021,3,5,1,Queensland,152.171018,-27.257688 +2022,10,21,1,Queensland,153.441545,-27.392272 +2023,12,20,1,Queensland,151.895396,-27.600052 +2024,6,30,1,Queensland,153.297928,-27.569353 +2024,11,23,1,Queensland,151.718842,-27.263083 +2024,4,7,1,Queensland,153.09234,-27.524976 +2022,6,4,1,Queensland,153.07295,-27.226667 +2024,5,26,1,Queensland,153.090458,-27.526549 +2020,5,29,1,Queensland,153.055075,-27.54403 +2023,11,25,1,Victoria,143.5203,-38.832089 +2024,3,30,1,Victoria,142.363581,-38.318429 +2022,5,10,1,New South Wales,146.594758,-34.773197 +2023,9,26,1,Queensland,153.166336,-27.611678 +2024,4,10,1,Queensland,152.989067,-27.291712 +2024,3,24,1,Queensland,153.403092,-27.493697 +2024,2,13,1,Queensland,152.56122,-27.078455 +2024,7,27,1,Queensland,151.820008,-26.239171 +2023,7,24,1,Queensland,153.103159,-27.52919 +2023,5,16,1,Queensland,152.003522,-27.411413 +2022,10,29,1,Queensland,153.077764,-27.54235 +2023,11,11,1,Queensland,153.093046,-27.524878 +2022,11,27,1,Queensland,153.10085,-27.52985 +2023,10,27,1,New South Wales,151.095297,-33.07668 +2023,8,6,1,Queensland,153.086012,-27.510299 +2024,9,20,1,New South Wales,152.874962,-30.230414 +2021,6,27,1,Queensland,153.086811,-27.506122 +2023,3,13,1,Queensland,153.091894,-27.527117 +2023,2,7,1,Queensland,153.073165,-27.546647 +2022,7,26,1,South Australia,138.733241,-34.89033 +2022,7,21,1,Queensland,153.063553,-27.53815 +2024,4,22,1,Victoria,143.5132,-38.833488 +2023,12,2,1,Victoria,145.318938,-35.854605 +2023,2,24,1,Queensland,152.992187,-27.823686 +2022,12,23,1,Queensland,153.10875,-27.527233 +2024,5,23,1,South Australia,138.726976,-34.887967 +2023,11,29,1,South Australia,138.715293,-34.89272 +2023,10,24,1,Queensland,149.805527,-26.00399 +2024,9,7,1,Queensland,153.09225,-27.527725 +2023,10,30,1,Victoria,143.859633,-38.671708 +2021,12,7,1,New South Wales,151.519445,-30.520513 +2020,7,9,1,Victoria,146.163976,-38.671312 +2021,10,15,1,Queensland,153.046636,-27.54436 +2023,8,23,1,Queensland,152.003348,-27.41402 +2023,2,16,1,Queensland,152.18373,-27.53098 +2024,8,4,1,New South Wales,153.43454,-28.870862 +2022,6,27,1,Queensland,153.245372,-27.490362 +2020,11,4,1,Queensland,153.058641,-27.548144 +2022,12,5,1,Queensland,146.872192,-19.123214 +2021,10,24,1,Queensland,153.074876,-27.513713 +2024,4,6,1,Queensland,153.09256,-27.525475 +2024,9,11,1,Queensland,153.090624,-27.527503 +2023,7,31,1,Queensland,153.109254,-27.526628 +2023,12,20,1,South Australia,138.664939,-34.959297 +2023,11,2,1,Queensland,153.077578,-27.507608 +2022,12,19,1,Queensland,153.072036,-27.543967 +2020,4,6,1,Queensland,153.056554,-27.539433 +2023,3,3,1,South Australia,138.65675,-34.865293 +2023,2,3,1,Queensland,153.072246,-27.544384 +2023,11,5,1,South Australia,138.666971,-34.863725 +2024,10,27,1,South Australia,138.656802,-34.865274 +2023,12,30,1,New South Wales,153.392627,-28.269277 +2024,1,27,1,Queensland,153.092231,-27.527278 +2023,6,8,1,South Australia,138.649955,-35.05106 +2022,9,3,1,New South Wales,146.522033,-34.743347 +2024,4,27,1,Queensland,153.092322,-27.52798 +2021,11,29,1,Queensland,151.559811,-27.808274 +2021,11,28,1,Queensland,151.528966,-27.721471 +2023,7,1,1,Queensland,153.091669,-27.52711 +2024,6,8,1,Queensland,153.093541,-27.527531 +2022,7,9,1,Victoria,142.290719,-37.874611 +2023,5,9,1,Queensland,153.091546,-27.527043 +2022,8,20,1,South Australia,138.657146,-35.017549 +2024,6,17,1,Queensland,153.19019,-27.701741 +2021,9,5,1,Queensland,152.683542,-27.995196 +2023,1,28,1,Queensland,153.109156,-27.527039 +2024,1,30,1,South Australia,138.730186,-34.890403 +2023,9,24,1,Queensland,148.184776,-25.043668 +2023,2,19,1,Victoria,144.14395,-38.053648 +2023,1,26,1,Queensland,153.092063,-27.524758 +2022,2,6,1,Victoria,147.727078,-37.923179 +2023,12,26,1,Victoria,142.628477,-38.340527 +2022,4,18,1,Queensland,153.052368,-27.543093 +2022,1,5,1,Queensland,153.083708,-27.51005 +2024,2,11,1,Queensland,153.093289,-27.52484 +2023,4,23,1,Queensland,153.09238,-27.527458 +2021,6,20,1,Queensland,153.05352,-27.545853 +2023,9,30,1,Queensland,151.962282,-27.50194 +2023,10,7,1,Queensland,153.09278,-27.525314 +2023,1,14,1,Victoria,143.860553,-38.668473 +2024,5,24,1,Queensland,153.103242,-27.529019 +2020,1,5,1,Queensland,153.068871,-27.546896 +2024,10,11,1,South Australia,138.626415,-34.893179 +2023,12,24,1,South Australia,138.713936,-34.89248 +2024,6,19,1,South Australia,138.720194,-34.89256 +2023,2,17,1,Queensland,153.08591,-27.510502 +2024,3,25,1,New South Wales,151.095445,-33.076367 +2022,6,14,1,New South Wales,146.563228,-34.758029 +2021,9,8,1,New South Wales,153.377546,-28.254105 +2024,5,26,1,Queensland,153.092693,-27.525531 +2022,9,29,1,Queensland,153.071842,-27.54257 +2022,4,8,1,Queensland,153.193263,-27.546158 +2022,11,13,1,Queensland,151.568613,-27.799141 +2024,4,9,1,Victoria,143.66658,-38.749944 +2022,11,20,1,Victoria,145.315184,-38.378546 +2024,3,16,1,Victoria,144.405517,-37.401997 +2021,10,24,1,South Australia,138.702672,-34.930695 +2020,2,3,1,Queensland,153.060814,-27.54404 +2024,9,17,1,Victoria,142.293246,-37.87421 +2024,3,16,1,Queensland,153.110242,-27.52759 +2024,4,4,1,Queensland,151.73851,-26.356881 +2024,4,17,1,Victoria,143.512682,-38.832721 +2024,10,19,1,Queensland,153.40299,-27.493653 +2024,4,5,1,Queensland,152.678748,-27.98969 +2024,7,14,1,Queensland,152.86575,-26.14881 +2024,5,1,1,South Australia,138.722438,-34.892721 +2024,5,10,1,Queensland,153.092046,-27.527166 +2023,1,14,1,Victoria,141.610644,-38.354382 +2023,12,16,1,Queensland,153.110963,-27.52993 +2023,7,6,1,New South Wales,150.794661,-34.1461 +2023,11,29,1,South Australia,138.714389,-34.89323 +2023,5,11,1,Queensland,152.24925,-27.496538 +2020,6,6,1,South Australia,138.655642,-35.005258 +2021,2,6,1,Queensland,153.084617,-27.506633 +2023,7,28,1,Queensland,153.103255,-27.529548 +2024,7,3,1,Queensland,153.092368,-27.52487 +2023,10,7,1,Queensland,153.034912,-27.52778 +2021,8,2,1,Queensland,153.04469,-27.54506 +2024,10,19,1,Queensland,153.09331,-27.526931 +2023,11,25,1,Victoria,145.454955,-36.869208 +2023,1,23,1,Queensland,153.034133,-27.550203 +2023,12,1,1,Queensland,153.103186,-27.528464 +2022,12,2,1,New South Wales,151.095108,-33.076481 +2024,9,1,1,Queensland,153.070025,-27.510472 +2023,6,16,1,South Australia,138.689473,-34.947226 +2021,6,30,1,Queensland,146.855198,-19.129334 +2020,11,3,1,Queensland,153.049182,-27.528335 +2021,10,11,1,Queensland,152.610092,-27.15318 +2023,9,25,1,Queensland,152.377778,-27.079819 +2024,5,8,1,Queensland,153.373785,-27.914143 +2024,11,15,1,Victoria,145.755191,-38.634432 +2024,11,15,1,Queensland,151.84508,-26.492359 +2022,10,23,1,Queensland,152.829253,-28.09528 +2023,1,7,1,Queensland,152.903899,-28.180228 +2020,9,16,1,South Australia,138.642746,-35.004822 +2021,1,8,1,New South Wales,151.520074,-30.519512 +2023,9,18,1,Victoria,143.796636,-37.839464 +2020,8,1,1,Queensland,153.37883,-27.915122 +2024,4,13,1,Queensland,153.091524,-27.527297 +2021,4,29,1,Queensland,153.183393,-27.583817 +2023,12,25,1,Queensland,153.090561,-27.526924 +2020,7,4,1,Queensland,152.645846,-27.453732 +2024,6,16,1,Queensland,153.092557,-27.528635 +2024,7,6,1,Queensland,153.091741,-27.52706 +2022,11,12,1,New South Wales,153.392986,-28.269796 +2021,11,28,1,Queensland,152.992722,-27.822645 +2024,9,18,1,New South Wales,151.798225,-32.312169 +2023,12,23,1,Queensland,153.087697,-27.511247 +2023,7,31,1,Victoria,143.86949,-37.600266 +2023,3,21,1,Victoria,145.395265,-37.042965 +2022,5,3,1,Victoria,145.108764,-38.39895 +2024,5,9,1,South Australia,138.733423,-34.87139 +2020,7,27,1,Queensland,151.793747,-26.428994 +2023,10,3,1,Queensland,152.624508,-27.869872 +2024,7,21,1,Queensland,151.710008,-26.083261 +2023,10,6,1,Queensland,152.175712,-26.872647 +2023,11,19,1,Queensland,153.000108,-27.284739 +2021,9,22,1,New South Wales,153.31979,-28.646462 +2024,9,5,1,Queensland,153.072823,-27.546015 +2023,11,26,1,New South Wales,153.076584,-30.362774 +2022,10,27,1,South Australia,138.630203,-34.89173 +2021,9,28,1,Victoria,146.165166,-38.671059 +2020,2,3,1,Queensland,153.221384,-27.535138 +2023,8,13,1,Queensland,153.078811,-27.506153 +2024,4,17,1,Queensland,153.103322,-27.528544 +2022,7,25,1,Queensland,153.0595,-27.551504 +2022,10,16,1,Queensland,146.872147,-19.123225 +2023,4,29,1,Queensland,153.075842,-27.663114 +2024,7,6,1,Queensland,152.824157,-26.793974 +2023,8,5,1,Queensland,153.110646,-27.529801 +2023,10,22,1,Queensland,153.092883,-27.528503 +2023,1,14,1,Queensland,153.111571,-27.528174 +2024,7,28,1,Queensland,151.259239,-27.077426 +2024,1,1,1,South Australia,137.493669,-35.706443 +2024,7,7,1,Queensland,151.83207,-26.505089 +2022,9,22,1,Queensland,152.062606,-27.348312 +2024,10,15,1,Queensland,152.04943,-27.26295 +2024,5,7,1,South Australia,138.732312,-34.891771 +2023,11,1,1,Queensland,152.003188,-27.41242 +2022,6,26,1,Queensland,153.083663,-27.511709 +2020,9,21,1,Queensland,152.605706,-28.16671 +2023,8,5,1,Queensland,153.093018,-27.524775 +2022,11,24,1,South Australia,138.70195,-34.955933 +2020,9,7,1,Victoria,146.424429,-38.314959 +2020,12,9,1,Queensland,153.058153,-27.547258 +2022,9,5,1,Queensland,152.681471,-28.000459 +2024,10,30,1,Queensland,153.175444,-27.548803 +2023,9,9,1,Queensland,153.03507,-27.52783 +2023,11,27,1,Queensland,153.111886,-27.527817 +2021,8,15,1,New South Wales,153.401121,-28.255786 +2020,8,28,1,New South Wales,151.754167,-32.57108 +2024,8,4,1,New South Wales,150.852047,-34.083489 +2021,1,15,1,Queensland,152.803627,-27.532621 +2020,2,5,1,Queensland,153.058677,-27.551308 +2024,6,23,1,Queensland,152.898971,-28.206105 +2024,6,28,1,Queensland,153.33525,-27.984617 +2024,10,26,1,Queensland,153.090922,-27.526893 +2024,11,5,1,Victoria,144.037963,-37.646416 +2024,3,10,1,New South Wales,150.849412,-34.077081 +2023,8,22,1,Queensland,152.68222,-26.167755 +2024,3,24,1,Victoria,143.58307,-38.828026 +2023,11,25,1,Queensland,151.762033,-26.14005 +2023,5,2,1,Queensland,152.597131,-27.963212 +2023,1,29,1,Queensland,153.058072,-27.546257 +2022,12,2,1,South Australia,138.647454,-35.007579 +2024,2,25,1,Queensland,153.090795,-27.526914 +2023,8,9,1,Queensland,152.004883,-27.41128 +2024,10,12,1,Queensland,153.091509,-27.527313 +2024,10,23,1,Queensland,153.10558,-27.541719 +2023,12,9,1,Queensland,151.737684,-26.361757 +2020,2,1,1,Queensland,153.040095,-27.539458 +2022,1,30,1,Queensland,153.245199,-27.488305 +2023,4,22,1,Queensland,153.09182,-27.525922 +2024,5,3,1,Queensland,153.090872,-27.525839 +2022,7,8,1,Victoria,145.778941,-36.799196 +2022,11,17,1,Queensland,153.186447,-27.72033 +2024,7,7,1,Queensland,153.092349,-27.528233 +2023,10,19,1,New South Wales,150.713031,-29.782038 +2024,10,17,1,Queensland,152.992562,-27.823117 +2024,8,24,1,Queensland,152.988817,-27.169978 +2024,11,5,1,Victoria,145.273007,-38.383257 +2023,6,27,1,New South Wales,150.875938,-34.060569 +2024,4,14,1,Queensland,151.691557,-26.17693 +2024,7,26,1,Queensland,153.073436,-27.545928 +2024,7,23,1,Queensland,153.104426,-27.529642 +2023,1,12,1,Queensland,153.102063,-27.527101 +2021,7,4,1,South Australia,138.638429,-35.001947 +2023,1,3,1,South Australia,138.705887,-35.004669 +2023,12,27,1,Queensland,153.09076,-27.52639 +2022,10,28,1,South Australia,138.63725,-34.989698 +2024,9,17,1,Queensland,153.090456,-27.525946 +2023,3,22,1,Queensland,153.05959,-27.548626 +2024,7,3,1,Queensland,153.192068,-27.703185 +2020,1,31,1,Queensland,153.05455,-27.537824 +2022,2,24,1,Victoria,142.363909,-38.317772 +2021,11,25,1,Queensland,153.282505,-27.526205 +2023,1,16,1,Queensland,151.890652,-27.597332 +2022,10,4,1,Victoria,142.290882,-37.874531 +2024,1,14,1,South Australia,138.666262,-34.95768 +2023,4,22,1,New South Wales,149.230779,-36.077476 +2021,9,12,1,Queensland,153.133911,-27.56555 +2023,1,26,1,Queensland,152.61323,-27.339347 +2024,11,8,1,Queensland,151.713058,-27.649258 +2021,1,5,1,New South Wales,153.610337,-28.663075 +2022,9,13,1,Queensland,153.37893,-27.917869 +2023,11,16,1,Queensland,152.003175,-27.413553 +2021,5,2,1,South Australia,138.672365,-35.016036 +2021,4,5,1,South Australia,138.670714,-35.012446 +2023,5,20,1,Queensland,153.450049,-28.094804 +2023,7,31,1,Queensland,152.927345,-26.279398 +2023,9,10,1,Queensland,152.044867,-27.258321 +2021,9,12,1,New South Wales,150.976369,-34.075418 +2020,2,18,1,Queensland,153.058126,-27.550911 +2024,4,15,1,Queensland,153.069214,-27.223494 +2022,11,27,1,Victoria,143.888866,-38.636691 +2020,11,17,1,Queensland,153.058303,-27.54671 +2023,5,2,1,Queensland,153.101097,-27.53035 +2023,6,24,1,Queensland,153.091664,-27.527218 +2023,1,14,1,Queensland,153.105401,-27.531519 +2023,7,19,1,Queensland,153.111271,-27.527278 +2024,9,16,1,New South Wales,146.566781,-34.759399 +2023,11,26,1,New South Wales,153.002982,-30.533507 +2024,10,14,1,Queensland,151.828005,-26.408549 +2023,10,4,1,Queensland,153.081803,-27.54253 +2024,5,26,1,South Australia,138.84393,-34.735377 +2023,7,14,1,Queensland,153.072285,-27.226223 +2023,10,17,1,Queensland,152.045282,-27.256916 +2020,12,1,1,New South Wales,151.518981,-30.520915 +2021,9,9,1,Queensland,153.042229,-27.558822 +2022,7,28,1,Queensland,153.033417,-27.208567 +2024,7,2,1,Victoria,141.582717,-38.019019 +2024,10,5,1,Queensland,153.19017,-27.701075 +2024,11,13,1,South Australia,137.493906,-35.706774 +2023,4,22,1,Victoria,145.449634,-37.016558 +2023,2,26,1,Queensland,151.896474,-27.596429 +2021,11,28,1,Queensland,152.057744,-27.231139 +2022,5,10,1,New South Wales,146.576997,-34.766778 +2020,1,28,1,Queensland,153.049669,-27.549525 +2024,7,1,1,Queensland,153.093354,-27.524982 +2020,8,3,1,Queensland,153.057285,-27.551318 +2023,5,14,1,Queensland,153.091519,-27.526971 +2024,5,27,1,South Australia,138.732419,-34.889201 +2023,10,30,1,Queensland,153.107975,-27.529081 +2021,9,3,1,Victoria,145.132219,-38.175532 +2023,1,29,1,Queensland,153.057809,-27.551208 +2020,4,3,1,Queensland,153.073486,-27.54709 +2023,6,18,1,Queensland,153.000533,-27.284528 +2024,6,17,1,Queensland,153.111741,-27.529329 +2021,6,11,1,Victoria,145.127253,-38.175873 +2020,2,14,1,Queensland,153.058755,-27.547107 +2024,3,22,1,South Australia,138.708329,-34.932732 +2020,9,14,1,Victoria,144.088434,-37.633637 +2022,9,20,1,Queensland,151.517883,-28.037483 +2022,6,28,1,New South Wales,153.437424,-29.025558 +2023,12,10,1,Queensland,153.093462,-27.525302 +2024,9,17,1,Queensland,151.761422,-26.140902 +2024,10,24,1,Victoria,144.284306,-37.835179 +2020,11,4,1,New South Wales,153.087782,-30.279091 +2024,11,12,1,Queensland,151.790113,-26.621947 +2022,1,13,1,Victoria,146.164558,-38.671034 +2022,11,3,1,Victoria,145.130364,-38.177141 +2024,3,31,1,Victoria,141.716013,-38.24903 +2023,1,4,1,Queensland,153.109731,-27.527213 +2023,12,5,1,Queensland,153.105226,-27.531571 +2024,10,6,1,New South Wales,150.972319,-29.7386 +2024,10,13,1,Queensland,153.090988,-27.525856 +2022,1,11,1,Victoria,143.973358,-38.525422 +2020,4,26,1,New South Wales,151.518877,-30.519927 +2023,4,19,1,Queensland,153.090816,-27.526819 +2024,9,15,1,Queensland,153.091684,-27.527274 +2023,5,21,1,Victoria,144.279377,-37.842137 +2020,2,8,1,Queensland,153.053835,-27.543337 +2024,9,10,1,Victoria,145.653061,-37.824654 +2020,2,15,1,South Australia,138.699915,-34.958037 +2021,4,11,1,South Australia,138.620953,-34.979128 +2023,8,7,1,Queensland,153.053109,-27.554563 +2024,8,29,1,Queensland,146.871857,-19.123157 +2023,2,4,1,Queensland,153.10039,-27.531289 +2022,12,4,1,Queensland,153.020455,-26.378658 +2020,10,1,1,Queensland,153.232805,-27.503953 +2024,9,23,1,New South Wales,153.105909,-30.328033 +2020,3,7,1,Queensland,153.068298,-27.546262 +2020,5,17,1,South Australia,138.654008,-35.007238 +2021,8,17,1,New South Wales,153.377552,-28.254067 +2022,11,15,1,Queensland,153.437616,-27.40038 +2023,5,6,1,Victoria,144.172907,-37.913982 +2023,1,6,1,Victoria,144.59504,-37.33235 +2024,11,5,1,Queensland,152.003189,-27.413545 +2023,2,17,1,Victoria,144.310897,-37.276958 +2021,5,2,1,South Australia,138.738208,-34.987811 +2024,4,26,1,Victoria,146.164689,-38.671087 +2023,8,15,1,Queensland,153.104042,-27.530654 +2023,5,29,1,Queensland,152.249435,-27.496763 +2022,12,31,1,Victoria,144.594178,-37.331167 +2022,1,21,1,Queensland,153.180828,-27.888094 +2024,5,19,1,Queensland,153.000846,-27.284941 +2020,10,9,1,Queensland,153.057577,-27.551438 +2021,4,5,1,South Australia,138.670674,-35.015755 +2023,12,23,1,Victoria,143.85766,-38.667946 +2023,3,22,1,Victoria,146.128581,-38.831765 +2024,4,13,1,Queensland,153.109338,-27.528834 +2024,10,7,1,Queensland,152.992995,-27.823807 +2020,11,13,1,Queensland,153.072866,-27.540136 +2024,10,23,1,Victoria,144.108047,-37.873767 +2022,12,11,1,Queensland,153.070406,-27.543927 +2024,1,7,1,Queensland,153.092869,-27.528072 +2023,1,7,1,Queensland,153.105713,-27.529535 +2020,1,31,1,Queensland,153.058681,-27.548459 +2023,10,21,1,Victoria,145.660538,-37.859905 +2022,11,25,1,Victoria,142.028422,-37.869399 +2023,7,8,1,Queensland,153.093515,-27.524154 +2024,7,26,1,South Australia,138.626745,-34.892577 +2023,8,2,1,Victoria,143.65846,-38.771407 +2023,11,25,1,Victoria,141.394568,-38.14039 +2021,5,26,1,Queensland,151.428514,-25.271728 +2024,3,9,1,Queensland,153.105609,-27.531432 +2023,11,4,1,Victoria,143.523089,-38.829811 +2024,6,9,1,Queensland,153.072946,-27.545957 +2021,5,7,1,Queensland,153.061277,-27.549712 +2022,1,2,1,New South Wales,152.372239,-28.569461 +2023,12,27,1,Victoria,149.740601,-37.553611 +2023,10,24,1,Queensland,153.109063,-27.526905 +2024,8,5,1,Victoria,141.924202,-38.056593 +2023,9,29,1,Queensland,153.105203,-27.53154 +2024,5,10,1,South Australia,138.721185,-34.892599 +2024,7,12,1,Victoria,144.432797,-37.951429 +2024,1,6,1,Victoria,143.618923,-38.790584 +2022,10,6,1,Queensland,153.070921,-26.676136 +2023,12,9,1,Queensland,153.111122,-27.528172 +2023,4,2,1,Queensland,151.895261,-27.422176 +2022,11,24,1,Queensland,153.073367,-27.545781 +2024,4,6,1,Queensland,153.090658,-27.526711 +2023,12,7,1,Queensland,151.749524,-26.154241 +2024,6,4,1,Queensland,152.619835,-27.419634 +2024,3,13,1,Queensland,153.103271,-27.528425 +2023,3,17,1,Queensland,153.110486,-27.527005 +2023,9,30,1,Queensland,152.456955,-27.715013 +2021,5,11,1,Queensland,153.069279,-27.510405 +2022,11,16,1,South Australia,138.655742,-35.010942 +2021,1,17,1,Queensland,153.221208,-27.534947 +2023,2,13,1,South Australia,138.677592,-35.188439 +2020,6,2,1,Queensland,153.045433,-27.548012 +2021,10,18,1,South Australia,138.721851,-34.892377 +2023,3,21,1,Queensland,153.438551,-27.399529 +2021,5,9,1,Queensland,153.082882,-27.510428 +2022,11,13,1,Queensland,151.563013,-27.792849 +2020,8,9,1,Queensland,152.60724,-28.165365 +2022,1,8,1,Victoria,143.834121,-38.689479 +2023,7,14,1,Queensland,153.109185,-27.526702 +2024,1,31,1,Queensland,153.105001,-27.529419 +2024,3,9,1,Queensland,153.091366,-27.527276 +2024,1,25,1,Queensland,152.988877,-27.291584 +2023,12,4,1,Queensland,152.614603,-26.390271 +2024,10,4,1,Queensland,153.105784,-27.527314 +2024,9,24,1,Queensland,152.727338,-27.711683 +2024,6,9,1,Queensland,153.092615,-27.525333 +2024,1,3,1,Queensland,152.074576,-27.358575 +2024,10,29,1,Queensland,153.081908,-27.512705 +2022,4,20,1,Queensland,153.540046,-27.426969 +2023,1,6,1,Queensland,153.112409,-27.528384 +2024,3,1,1,Queensland,153.091635,-27.527025 +2021,10,31,1,New South Wales,153.377272,-28.253809 +2023,12,4,1,Queensland,151.610694,-27.17903 +2022,5,16,1,Victoria,146.407582,-38.357055 +2024,10,27,1,South Australia,138.796714,-34.882925 +2023,1,28,1,New South Wales,153.045228,-30.237544 +2024,5,7,1,South Australia,138.730888,-34.890918 +2023,3,12,1,Victoria,145.46245,-37.01961 +2024,6,4,1,Queensland,153.112721,-27.528795 +2021,11,1,1,South Australia,138.659665,-34.864439 +2020,11,3,1,New South Wales,149.532455,-33.564638 +2023,11,25,1,Queensland,152.064084,-27.261997 +2022,11,11,1,Queensland,153.069698,-27.510421 +2021,10,30,1,New South Wales,153.377401,-28.253955 +2024,6,2,1,Queensland,152.416667,-28.066667 +2023,11,8,1,New South Wales,153.366303,-28.985063 +2020,11,26,1,Queensland,153.057941,-27.550927 +2023,10,30,1,South Australia,138.559556,-35.032647 +2023,12,8,1,Victoria,144.125859,-37.905945 +2021,12,4,1,Queensland,152.344529,-27.831775 +2023,9,21,1,Queensland,152.04467,-27.257 +2024,9,18,1,Victoria,141.774992,-38.203097 +2024,11,4,1,New South Wales,153.629524,-28.637419 +2023,1,3,1,South Australia,138.637756,-34.9706 +2020,2,15,1,South Australia,138.697601,-34.957072 +2021,4,15,1,Victoria,146.163895,-38.671378 +2023,10,22,1,Queensland,153.092001,-27.527275 +2023,1,9,1,Victoria,143.511033,-38.774628 +2021,8,29,1,Victoria,144.929466,-38.44748 +2023,11,23,1,Victoria,144.127649,-37.902359 +2023,12,23,1,Queensland,153.084242,-27.511158 +2022,11,24,1,Victoria,146.950353,-38.277171 +2020,3,5,1,South Australia,137.021342,-35.982919 +2024,1,21,1,South Australia,138.719614,-34.892011 +2024,8,25,1,Queensland,153.092055,-27.524418 +2024,8,3,1,Queensland,153.091135,-27.526796 +2024,8,4,1,Queensland,153.091001,-27.526623 +2020,11,11,1,Queensland,153.053682,-27.537466 +2024,4,7,1,South Australia,140.062253,-36.766482 +2021,1,15,1,South Australia,138.637363,-35.005027 +2024,7,27,1,Queensland,152.994033,-27.823682 +2023,6,9,1,Queensland,153.108873,-27.527077 +2022,9,12,1,Queensland,153.058813,-27.548392 +2024,11,20,1,New South Wales,151.050675,-31.781467 +2024,10,18,1,Queensland,152.993117,-27.82363 +2023,7,27,1,Queensland,153.377078,-27.919058 +2022,9,24,1,South Australia,138.712928,-34.903875 +2024,11,15,1,Queensland,153.105427,-27.530532 +2021,12,5,1,Queensland,152.344529,-27.831775 +2023,9,16,1,Queensland,153.057582,-27.550947 +2023,8,5,1,Queensland,153.403024,-27.493313 +2021,12,8,1,Queensland,153.103586,-27.528339 +2021,4,20,1,Queensland,153.057973,-27.54731 +2021,12,31,1,Victoria,146.165106,-38.671428 +2023,2,12,1,Queensland,151.892944,-27.597326 +2024,2,12,1,South Australia,136.809636,-35.959944 +2024,5,5,1,Queensland,153.091684,-27.526869 +2020,11,23,1,Queensland,153.070685,-27.510819 +2024,8,3,1,Queensland,153.092801,-27.528405 +2024,6,9,1,South Australia,138.826933,-34.692015 +2021,1,26,1,New South Wales,150.82222,-34.101939 +2024,4,26,1,Queensland,151.910256,-26.203851 +2021,12,4,1,Victoria,146.892969,-38.441906 +2023,12,16,1,Queensland,153.091384,-27.527351 +2024,1,9,1,South Australia,138.720972,-34.892869 +2023,11,12,1,Queensland,153.000516,-27.284754 +2024,8,24,1,Queensland,153.093055,-27.526296 +2024,2,12,1,Queensland,153.106381,-27.528954 +2024,2,6,1,Queensland,153.111423,-27.527924 +2021,3,22,1,Victoria,145.132216,-38.175487 +2023,12,28,1,Queensland,153.108182,-27.527086 +2022,10,13,1,New South Wales,153.391506,-28.267204 +2021,1,12,1,Victoria,146.163772,-38.671222 +2023,1,26,1,Queensland,152.614503,-27.339063 +2024,5,13,1,Queensland,153.082367,-27.512711 +2023,3,11,1,Queensland,153.00118,-27.311678 +2023,9,8,1,Queensland,153.109016,-27.527209 +2023,3,1,1,Queensland,153.109137,-27.526797 +2023,11,26,1,Queensland,153.090511,-27.526726 +2021,11,20,1,Victoria,145.306458,-38.384495 +2020,6,19,1,Queensland,152.860121,-27.484156 +2022,10,19,1,New South Wales,153.395738,-28.266574 +2024,11,17,1,South Australia,138.689745,-34.924903 +2020,2,14,1,South Australia,138.513611,-35.175278 +2022,6,21,1,Queensland,153.226361,-27.498671 +2024,1,12,1,Queensland,153.071909,-27.542569 +2024,9,3,1,South Australia,138.734229,-34.886567 +2023,12,25,1,Queensland,153.092199,-27.525484 +2021,10,23,1,South Australia,138.703455,-34.901555 +2024,11,3,1,Victoria,142.363164,-38.318341 +2023,8,31,1,Queensland,151.994675,-26.304521 +2022,12,19,1,Victoria,145.570983,-37.916562 +2022,10,27,1,Victoria,145.270966,-38.133057 +2024,5,6,1,South Australia,138.720528,-34.892237 +2021,2,20,1,South Australia,138.706172,-34.98265 +2023,5,29,1,Queensland,153.108976,-27.526998 +2023,9,21,1,Queensland,152.046392,-27.257185 +2023,10,22,1,Queensland,153.092402,-27.526999 +2024,10,18,1,Queensland,153.103692,-27.53041 +2023,10,14,1,Queensland,153.092483,-27.525712 +2020,8,12,1,New South Wales,153.377401,-28.253933 +2022,11,13,1,Queensland,151.554261,-27.781471 +2024,3,21,1,South Australia,137.071075,-35.732483 +2023,1,29,1,Queensland,153.090663,-27.526082 +2023,1,30,1,Victoria,144.934983,-38.393508 +2023,6,27,1,Queensland,146.870833,-19.123325 +2024,7,1,1,Queensland,153.093156,-27.525745 +2023,9,19,1,New South Wales,152.413055,-31.940478 +2024,11,3,1,South Australia,138.722445,-34.892624 +2023,7,21,1,Queensland,153.104648,-27.529759 +2022,12,20,1,Victoria,144.270339,-37.875458 +2023,11,4,1,Queensland,153.092987,-27.527736 +2023,12,19,1,South Australia,138.509142,-35.121295 +2024,7,14,1,Victoria,142.364971,-38.321532 +2022,12,31,1,Queensland,153.437937,-27.403436 +2024,4,22,1,Queensland,153.103765,-27.52979 +2020,2,10,1,Queensland,153.059921,-27.550237 +2021,10,22,1,Victoria,143.996858,-37.688766 +2023,1,29,1,Victoria,141.285424,-37.925966 +2022,11,18,1,Victoria,142.363864,-38.318324 +2024,9,1,1,Queensland,153.086666,-27.510391 +2021,11,4,1,Queensland,153.058561,-27.545506 +2024,3,23,1,Queensland,153.072128,-27.545291 +2023,10,7,1,Queensland,153.091013,-27.526499 +2021,7,22,1,Queensland,153.053866,-27.543468 +2023,11,29,1,Queensland,152.003022,-27.412988 +2023,9,8,1,Queensland,151.824814,-26.109297 +2022,4,4,1,New South Wales,153.559525,-28.388351 +2024,3,5,1,South Australia,138.886447,-35.071136 +2024,2,4,1,Victoria,143.89732,-37.613507 +2022,9,4,1,Queensland,152.292211,-26.892022 +2023,3,31,1,Queensland,153.113263,-27.528603 +2024,4,12,1,Victoria,145.314285,-38.37553 +2023,12,27,1,Queensland,153.091428,-27.527362 +2022,6,4,1,Queensland,153.072075,-27.2264 +2020,5,17,1,South Australia,138.639171,-34.997905 +2021,9,1,1,Queensland,151.868462,-26.52166 +2024,8,17,1,Queensland,153.091418,-27.527067 +2022,8,28,1,Victoria,144.09555,-37.623345 +2021,5,2,1,South Australia,138.63875,-34.988435 +2023,3,5,1,Victoria,142.290874,-37.874561 +2023,4,22,1,Queensland,153.092174,-27.525072 +2024,5,22,1,Victoria,141.530738,-37.802888 +2021,5,23,1,Queensland,153.084903,-27.506689 +2024,9,24,1,New South Wales,146.546661,-34.75195 +2023,9,29,1,Queensland,152.993317,-27.823756 +2021,11,18,1,Queensland,153.152772,-27.760126 +2020,11,30,1,New South Wales,153.39438,-28.271322 +2023,3,12,1,Victoria,145.457941,-37.013948 +2024,11,18,1,New South Wales,149.335725,-31.58425 +2024,3,22,1,Queensland,153.073399,-27.547093 +2023,4,2,1,Queensland,153.090422,-27.526872 +2021,9,11,1,Queensland,152.129584,-26.87078 +2024,7,13,1,Queensland,152.288668,-26.866705 +2024,3,15,1,Queensland,153.110584,-27.527476 +2021,7,13,1,Queensland,153.087768,-27.510608 +2020,7,17,1,South Australia,138.736167,-34.830996 +2021,5,7,1,Queensland,153.06,-27.550414 +2024,2,17,1,Queensland,153.090983,-27.526822 +2020,11,7,1,South Australia,138.594939,-35.136087 +2024,10,14,1,Victoria,145.282415,-38.381327 +2023,4,18,1,Victoria,144.363487,-37.664608 +2024,8,5,1,Queensland,153.037022,-27.536859 +2024,11,23,1,Queensland,152.001784,-27.410565 +2023,11,6,1,Queensland,152.003098,-27.412708 +2022,10,19,1,South Australia,138.694145,-34.897602 +2020,1,31,1,Queensland,153.05931,-27.540683 +2024,9,14,1,Queensland,153.072369,-27.544552 +2023,12,24,1,Queensland,153.09087,-27.526749 +2021,10,1,1,Queensland,153.115111,-27.528563 +2021,12,7,1,New South Wales,153.375187,-28.252481 +2020,2,23,1,Queensland,152.999751,-27.434717 +2024,4,22,1,Queensland,153.080561,-27.508314 +2021,4,8,1,Queensland,153.215081,-27.563401 +2020,7,29,1,New South Wales,153.403635,-28.260583 +2023,11,16,1,Queensland,151.550173,-27.793776 +2020,1,28,1,New South Wales,151.520238,-30.519171 +2022,8,14,1,Queensland,152.573878,-28.104462 +2023,4,30,1,Queensland,153.000484,-27.284279 +2022,12,21,1,Queensland,153.058979,-27.551543 +2023,5,14,1,Victoria,143.371788,-38.732215 +2022,1,23,1,Queensland,153.079251,-27.500148 +2021,4,26,1,Victoria,145.372234,-36.930531 +2020,6,1,1,New South Wales,153.376682,-28.253021 +2022,4,26,1,Queensland,153.095036,-27.515436 +2020,4,7,1,Queensland,153.035211,-27.538752 +2021,1,23,1,Victoria,146.699039,-36.358922 +2023,6,28,1,Queensland,152.778272,-26.793728 +2023,1,21,1,Victoria,145.304458,-38.384317 +2024,8,17,1,Queensland,153.318926,-27.897405 +2020,3,15,1,New South Wales,153.374145,-28.25745 +2024,10,14,1,Queensland,153.000564,-27.284595 +2024,2,6,1,South Australia,138.729912,-34.890565 +2023,11,8,1,Queensland,151.525878,-27.633512 +2020,2,2,1,Queensland,153.058543,-27.546955 +2021,10,17,1,Victoria,143.920792,-37.653182 +2023,1,22,1,Victoria,146.388188,-38.354852 +2024,10,23,1,Queensland,152.991551,-27.822733 +2023,10,15,1,Queensland,153.280866,-28.010885 +2020,4,14,1,Queensland,153.247,-28.047 +2024,1,20,1,Queensland,152.074543,-27.358509 +2021,12,12,1,Queensland,153.085457,-27.509199 +2024,11,4,1,Victoria,142.363592,-38.319278 +2024,10,2,1,Victoria,143.861717,-38.669359 +2022,6,9,1,New South Wales,153.403162,-28.260674 +2024,4,26,1,Queensland,153.090925,-27.527395 +2021,8,11,1,Queensland,152.962993,-28.14326 +2024,3,17,1,New South Wales,149.331878,-33.677155 +2024,5,13,1,Queensland,153.059262,-27.551901 +2022,1,30,1,New South Wales,152.843868,-30.186865 +2024,2,24,1,Queensland,151.782334,-26.136001 +2024,8,7,1,Queensland,153.064287,-27.538561 +2021,3,8,1,Queensland,153.057931,-27.546129 +2024,8,25,1,Queensland,152.567765,-27.17228 +2021,4,9,1,Queensland,153.058762,-27.54708 +2024,1,16,1,Queensland,153.070121,-27.51059 +2023,11,8,1,Victoria,143.877301,-37.595337 +2024,5,8,1,Queensland,151.986942,-27.651248 +2020,5,13,1,New South Wales,153.375948,-28.254747 +2024,7,13,1,Queensland,153.090701,-27.526875 +2020,10,17,1,Victoria,144.072523,-37.165858 +2020,10,24,1,New South Wales,153.396421,-28.619973 +2024,5,27,1,South Australia,138.730735,-34.88304 +2020,7,28,1,Queensland,152.184277,-27.530654 +2023,4,10,1,Queensland,146.862146,-19.120286 +2023,12,12,1,Queensland,153.10913,-27.5269 +2024,4,22,1,Victoria,143.513962,-38.832283 +2022,11,9,1,Victoria,145.998163,-38.826967 +2023,12,18,1,South Australia,138.732391,-34.890172 +2021,4,10,1,New South Wales,152.070297,-32.707267 +2023,5,28,1,Queensland,151.789069,-26.389428 +2024,10,15,1,Victoria,141.562867,-38.3429 +2022,10,1,1,Victoria,143.709699,-38.653731 +2021,9,15,1,New South Wales,153.377397,-28.254262 +2024,7,20,1,Queensland,153.000493,-27.284209 +2023,8,12,1,Queensland,153.092711,-27.52847 +2022,7,14,1,Victoria,144.195608,-37.838333 +2023,6,10,1,Queensland,153.107307,-27.527028 +2021,3,14,1,South Australia,138.736167,-34.830996 +2024,9,14,1,Queensland,153.092658,-27.524865 +2020,9,6,1,Queensland,152.614735,-27.326505 +2023,1,30,1,Queensland,153.091218,-27.526857 +2021,8,21,1,Queensland,153.529802,-27.427327 +2020,2,7,1,Victoria,144.112795,-37.544809 +2020,4,20,1,Victoria,146.678501,-36.353933 +2022,9,12,1,South Australia,138.63605,-34.990596 +2023,1,31,1,Queensland,153.104623,-27.529409 +2024,2,8,1,Victoria,145.489412,-37.071655 +2024,11,9,1,Queensland,152.102251,-27.567957 +2024,11,14,1,Queensland,153.069928,-27.510488 +2021,9,5,1,Queensland,152.246133,-27.496382 +2023,12,7,1,New South Wales,151.558592,-30.266607 +2023,12,5,1,Queensland,152.07462,-27.358622 +2024,5,6,1,Queensland,153.092264,-27.52805 +2022,12,14,1,Queensland,153.110986,-27.530543 +2024,4,1,1,Victoria,147.728863,-37.921857 +2023,11,2,1,Queensland,153.093226,-27.525929 +2023,12,13,1,Queensland,152.074506,-27.358409 +2023,1,22,1,Queensland,153.111413,-27.527938 +2021,2,2,1,Queensland,153.05442,-27.539146 +2023,5,13,1,Queensland,152.86036,-27.546537 +2024,4,1,1,Victoria,147.728863,-37.921857 +2024,7,4,1,Victoria,143.605513,-38.763397 +2021,8,8,1,Queensland,153.083779,-27.508124 +2021,10,3,1,South Australia,138.636141,-34.997898 +2024,2,18,1,Queensland,153.092948,-27.528014 +2022,11,29,1,New South Wales,150.85457,-34.076308 +2023,2,13,1,South Australia,138.705158,-34.903631 +2020,11,21,1,New South Wales,151.519702,-30.520139 +2023,11,16,1,Queensland,146.868248,-19.128854 +2024,1,14,1,Queensland,153.092286,-27.525364 +2024,3,5,1,Victoria,143.895829,-37.615255 +2024,8,10,1,Queensland,153.090923,-27.526968 +2024,6,20,1,New South Wales,153.398659,-28.258326 +2020,2,21,1,Queensland,153.059001,-27.547721 +2022,5,7,1,New South Wales,153.125528,-30.294758 +2022,9,2,1,Queensland,153.0732,-27.545638 +2020,12,11,1,Queensland,153.271028,-27.540033 +2020,7,14,1,Queensland,153.057544,-27.551043 +2021,1,10,1,South Australia,138.707854,-34.860292 +2023,6,2,1,Queensland,153.103392,-27.529088 +2023,11,24,1,South Australia,138.720025,-34.892174 +2023,8,31,1,Queensland,151.708038,-27.554792 +2023,3,5,1,Queensland,153.090546,-27.526103 +2022,3,31,1,New South Wales,146.594688,-34.773204 +2022,10,28,1,New South Wales,151.093405,-33.073923 +2022,8,20,1,South Australia,138.665408,-35.019168 +2023,10,7,1,Victoria,146.388486,-38.357996 +2020,7,26,1,Victoria,146.163798,-38.671401 +2024,8,16,1,Victoria,143.926595,-37.653812 +2020,4,26,1,Victoria,145.133151,-38.176266 +2024,8,30,1,Victoria,144.266741,-37.393283 +2021,4,30,1,South Australia,138.651514,-34.965488 +2023,1,11,1,New South Wales,153.393347,-28.269252 +2023,2,24,1,Queensland,153.386285,-27.900039 +2023,1,19,1,Queensland,153.037247,-27.533622 +2023,11,19,1,Queensland,153.000388,-27.28472 +2020,9,14,1,Queensland,153.057425,-27.543167 +2024,8,29,1,Victoria,146.583398,-36.307017 +2022,3,20,1,South Australia,138.927975,-35.037296 +2023,9,28,1,Queensland,152.991819,-27.823279 +2023,12,4,1,Queensland,152.892052,-27.635537 +2023,12,3,1,Queensland,153.417259,-27.492547 +2024,3,19,1,South Australia,138.729613,-34.889601 +2023,5,28,1,New South Wales,153.31827,-28.945593 +2020,11,19,1,New South Wales,153.377,-28.254254 +2023,10,8,1,New South Wales,152.916372,-30.497168 +2022,6,15,1,Queensland,153.056964,-27.551985 +2023,11,16,1,Queensland,151.701189,-27.652237 +2022,12,26,1,Victoria,145.60765,-38.667167 +2023,2,17,1,Queensland,152.24933,-27.49628 +2023,2,18,1,Queensland,153.093256,-27.526043 +2024,5,24,1,South Australia,135.874372,-34.862396 +2023,10,13,1,Queensland,153.108816,-27.528965 +2023,8,15,1,Queensland,149.432922,-20.925413 +2023,5,1,1,Queensland,153.090553,-27.526811 +2022,9,21,1,South Australia,138.585897,-35.17122 +2020,4,3,1,Queensland,153.069218,-27.510271 +2024,3,12,1,Queensland,153.105243,-27.529228 +2022,5,4,1,New South Wales,153.401711,-28.257 +2022,10,10,1,South Australia,138.637297,-34.970464 +2020,10,22,1,Queensland,153.058412,-27.546717 +2024,10,6,1,Queensland,153.440385,-27.392752 +2024,9,3,1,Queensland,153.085665,-27.507459 +2021,1,17,1,South Australia,138.693792,-34.962926 +2024,8,16,1,South Australia,138.744119,-34.83122 +2020,8,10,1,Queensland,153.052071,-27.548372 +2024,8,10,1,South Australia,138.627324,-34.892759 +2020,10,13,1,Victoria,144.960464,-38.369222 +2023,10,6,1,Queensland,153.110004,-27.52673 +2023,10,30,1,Queensland,152.923247,-27.258222 +2023,3,12,1,New South Wales,153.399929,-28.260654 +2024,5,18,1,Queensland,153.092357,-27.527472 +2023,11,1,1,Queensland,153.103666,-27.529986 +2022,1,8,1,Queensland,152.824358,-27.249316 +2020,11,22,1,Queensland,152.108719,-27.666586 +2021,9,13,1,Queensland,153.060061,-27.532072 +2020,11,30,1,New South Wales,151.518403,-30.520863 +2024,10,26,1,Victoria,141.7352,-37.969208 +2023,11,13,1,Queensland,153.381617,-27.963551 +2023,1,2,1,Queensland,152.692415,-28.33131 +2022,11,29,1,Queensland,151.560876,-27.803363 +2024,10,22,1,Victoria,145.707336,-37.759288 +2024,7,15,1,Queensland,152.92,-27.28 +2024,9,29,1,Queensland,153.091006,-27.5263 +2024,6,16,1,Queensland,153.191606,-27.703166 +2023,11,8,1,Victoria,144.148806,-37.946646 +2024,10,11,1,Queensland,153.105059,-27.529566 +2023,12,25,1,Queensland,153.092328,-27.527484 +2024,2,5,1,Queensland,153.092206,-27.527341 +2021,10,21,1,Queensland,143.855565,-18.619419 +2024,2,19,1,Queensland,153.10382,-27.530137 +2023,2,8,1,Queensland,153.05768,-27.552711 +2021,11,20,1,South Australia,138.653224,-35.142624 +2024,3,24,1,South Australia,138.70162,-34.902241 +2023,8,10,1,Queensland,151.697433,-27.554378 +2024,11,2,1,Queensland,152.376053,-26.430912 +2024,5,12,1,Queensland,153.091669,-27.527143 +2024,10,2,1,Queensland,153.288697,-28.00251 +2024,3,19,1,Victoria,141.445111,-38.309967 +2024,11,6,1,Victoria,144.250339,-37.811245 +2024,9,4,1,Queensland,146.870025,-19.125111 +2023,5,1,1,Queensland,153.093066,-27.527706 +2021,6,12,1,Victoria,143.738396,-38.552651 +2024,6,6,1,Victoria,144.279212,-37.863278 +2023,9,25,1,Queensland,153.19017,-27.699411 +2023,5,21,1,Queensland,153.091665,-27.527163 +2024,11,9,1,Queensland,153.091659,-27.527214 +2022,1,18,1,South Australia,138.732109,-34.887171 +2021,2,5,1,Queensland,153.054718,-27.537878 +2024,3,16,1,Queensland,153.090566,-27.526471 +2021,2,16,1,Victoria,146.164153,-38.671353 +2024,7,16,1,New South Wales,153.40071,-28.258565 +2023,9,15,1,Queensland,153.103911,-27.530441 +2023,1,8,1,New South Wales,150.822465,-34.101052 +2023,8,24,1,Victoria,142.356076,-38.317157 +2020,4,24,1,Queensland,153.058076,-27.55132 +2023,11,29,1,South Australia,138.722661,-34.892174 +2023,11,29,1,Queensland,153.401037,-27.497115 +2024,9,7,1,Queensland,153.091916,-27.525455 +2023,10,20,1,New South Wales,152.907054,-31.434668 +2024,2,23,1,New South Wales,150.798672,-34.190301 +2023,3,19,1,Queensland,153.000857,-27.284499 +2023,9,16,1,Queensland,153.107967,-27.527296 +2024,6,16,1,Queensland,152.902038,-27.629436 +2023,11,19,1,Queensland,153.092353,-27.527985 +2021,11,4,1,Queensland,153.061242,-27.547672 +2024,4,22,1,South Australia,138.72006,-34.891989 +2023,8,15,1,Queensland,153.102949,-27.527314 +2024,2,17,1,Queensland,153.092736,-27.528505 +2022,7,17,1,Queensland,153.38115,-27.955166 +2023,5,27,1,Queensland,153.090755,-27.52582 +2022,10,12,1,Victoria,147.192949,-38.218358 +2024,8,25,1,Victoria,146.387367,-38.356997 +2023,11,11,1,Queensland,153.092996,-27.526166 +2023,8,6,1,Queensland,153.091173,-27.527328 +2023,10,4,1,Queensland,153.108133,-27.527243 +2021,11,17,1,Victoria,145.13053,-38.180087 +2024,1,4,1,Queensland,152.99383,-27.823017 +2023,11,26,1,South Australia,138.734697,-35.336167 +2024,11,21,1,Victoria,141.610567,-38.354587 +2022,10,22,1,Victoria,145.715395,-38.63787 +2023,10,6,1,Queensland,153.104188,-27.528618 +2023,4,16,1,Queensland,153.093015,-27.528302 +2022,8,29,1,Queensland,153.017087,-26.372539 +2021,4,20,1,Queensland,152.191727,-27.24331 +2023,12,3,1,Queensland,153.091665,-27.527152 +2023,8,5,1,Queensland,153.105166,-27.529928 +2023,8,19,1,Queensland,153.090545,-27.526697 +2020,12,19,1,Victoria,146.163667,-38.671013 +2024,9,9,1,Queensland,151.781745,-26.309411 +2024,9,29,1,Queensland,151.706863,-27.648437 +2022,11,6,1,Victoria,145.503026,-37.000013 +2023,12,28,1,Queensland,153.11228,-27.528958 +2021,12,3,1,Queensland,153.054393,-27.54984 +2024,11,1,1,Queensland,153.291032,-27.974612 +2023,12,18,1,Queensland,151.640983,-27.730584 +2022,12,30,1,Queensland,152.681987,-27.998882 +2023,11,5,1,Queensland,153.090746,-27.525043 +2023,1,6,1,Queensland,153.108179,-27.527273 +2020,6,4,1,New South Wales,153.153957,-28.373856 +2024,10,28,1,Queensland,153.19019,-27.701741 +2021,3,5,1,Queensland,153.057833,-27.550968 +2024,11,7,1,Queensland,151.789749,-26.566616 +2023,12,31,1,Queensland,153.091517,-27.526954 +2024,2,4,1,Victoria,143.89732,-37.613507 +2023,11,29,1,Queensland,152.074548,-27.358429 +2022,5,3,1,Victoria,141.82333,-38.069771 +2023,7,23,1,Queensland,153.090917,-27.527519 +2024,7,7,1,Queensland,153.19019,-27.701741 +2022,11,7,1,Queensland,152.962631,-27.256351 +2023,10,12,1,Queensland,152.978126,-26.724452 +2023,1,29,1,Queensland,153.071902,-27.544757 +2024,5,26,1,Victoria,145.29715,-38.383442 +2024,7,5,1,Queensland,153.108142,-27.527352 +2024,9,19,1,Queensland,152.61325,-27.339428 +2021,11,22,1,Queensland,153.083861,-27.509813 +2023,3,18,1,Queensland,152.004242,-27.414708 +2023,8,11,1,Queensland,153.103842,-27.530648 +2023,1,9,1,Victoria,143.424928,-38.770355 +2024,2,17,1,Queensland,153.090718,-27.526455 +2024,4,2,1,Queensland,153.103303,-27.528461 +2022,5,3,1,Queensland,153.404317,-27.493566 +2024,11,6,1,Victoria,144.249907,-37.81149 +2024,8,15,1,South Australia,138.679844,-34.867718 +2024,1,10,1,South Australia,138.560215,-35.260284 +2023,12,5,1,South Australia,138.722562,-34.890314 +2022,11,25,1,Queensland,153.073304,-27.545854 +2022,12,17,1,Queensland,153.072368,-27.542368 +2024,4,1,1,Queensland,153.092424,-27.526811 +2020,5,26,1,Queensland,153.060953,-27.544634 +2024,1,20,1,Queensland,153.091551,-27.527319 +2024,5,10,1,Victoria,143.722961,-38.530384 +2022,10,11,1,Victoria,145.716039,-38.637776 +2024,5,5,1,Victoria,145.72022,-36.521659 +2023,8,14,1,Queensland,148.698213,-21.806094 +2023,12,14,1,Queensland,153.090663,-27.525868 +2023,7,6,1,Queensland,151.8177,-26.362907 +2021,9,7,1,South Australia,138.883392,-35.071022 +2022,9,27,1,Queensland,153.399505,-27.497405 +2021,11,28,1,Victoria,146.164235,-38.671563 +2023,11,10,1,Queensland,153.111626,-27.527866 +2023,1,24,1,Queensland,153.070364,-27.543528 +2021,4,21,1,Queensland,153.057432,-27.551052 +2024,10,11,1,Queensland,153.072493,-27.54569 +2024,3,16,1,Queensland,153.090937,-27.527022 +2023,4,4,1,Queensland,153.109995,-27.529735 +2024,8,18,1,Queensland,153.082773,-27.514854 +2024,3,17,1,Victoria,147.735483,-37.908561 +2024,10,10,1,South Australia,138.627137,-34.892836 +2021,9,7,1,Queensland,153.058936,-27.551265 +2024,7,14,1,Queensland,146.868713,-19.12539 +2024,2,14,1,South Australia,138.712798,-34.87553 +2022,11,16,1,Queensland,148.694014,-21.726375 +2022,9,25,1,Queensland,152.15976,-27.361481 +2024,6,16,1,Queensland,153.046783,-27.524378 +2021,12,18,1,South Australia,138.559433,-35.032733 +2020,4,3,1,Queensland,153.063702,-27.552599 +2023,3,12,1,Queensland,153.090891,-27.526961 +2021,5,11,1,New South Wales,153.401663,-28.260384 +2024,7,5,1,Queensland,152.3658,-27.453139 +2021,6,6,1,Victoria,145.220507,-37.746616 +2023,11,19,1,Queensland,151.931945,-27.325612 +2022,8,28,1,Queensland,152.379655,-28.053518 +2022,3,3,1,Victoria,144.277431,-37.841098 +2022,3,19,1,Victoria,143.535193,-38.791788 +2020,8,29,1,South Australia,138.706198,-34.936102 +2023,11,15,1,Victoria,147.729492,-37.924375 +2023,9,7,1,Queensland,151.82024,-26.390373 +2022,12,8,1,Victoria,144.277248,-37.873632 +2021,8,22,1,Queensland,153.530328,-27.42842 +2023,3,1,1,Queensland,153.381213,-27.963679 +2023,3,13,1,Queensland,153.090326,-27.526007 +2023,11,26,1,New South Wales,153.124878,-30.295483 +2022,4,2,1,New South Wales,153.401988,-28.259925 +2021,7,13,1,Queensland,153.09172,-27.515762 +2024,11,10,1,Queensland,153.090374,-27.527008 +2024,9,25,1,Queensland,153.035912,-27.530151 +2020,1,2,1,New South Wales,145.678847,-35.919162 +2022,11,8,1,Queensland,153.39937,-27.496113 +2023,11,15,1,Queensland,153.111664,-27.527843 +2023,5,13,1,Queensland,152.802707,-26.757511 +2020,4,9,1,Queensland,151.821613,-26.580756 +2024,5,9,1,Victoria,142.978278,-38.497133 +2022,10,30,1,Queensland,153.083275,-27.510493 +2021,9,2,1,Queensland,153.037468,-27.546677 +2020,2,5,1,Queensland,153.372097,-27.90979 +2022,12,13,1,Victoria,142.365708,-38.324658 +2023,12,22,1,Queensland,153.109825,-27.528207 +2023,10,18,1,Queensland,153.109439,-27.527778 +2021,12,18,1,Queensland,153.046382,-27.544367 +2021,7,10,1,Queensland,152.8704,-28.097252 +2023,2,16,1,Queensland,153.21267,-27.927497 +2022,11,27,1,Queensland,153.068427,-27.542433 +2020,10,19,1,Queensland,153.247161,-27.490726 +2023,10,15,1,New South Wales,151.06752,-33.150928 +2024,6,14,1,Queensland,152.655471,-26.390343 +2024,4,3,1,New South Wales,151.095397,-33.076706 +2023,12,18,1,South Australia,138.73252,-34.890164 +2024,4,26,1,South Australia,138.624532,-34.89358 +2024,10,21,1,Queensland,153.074751,-27.546729 +2024,7,15,1,Queensland,153.111481,-27.528955 +2024,5,15,1,Queensland,153.037376,-26.375305 +2020,8,2,1,Queensland,153.001464,-27.166525 +2021,2,12,1,Queensland,153.055785,-27.544252 +2024,11,1,1,Queensland,151.969533,-26.580242 +2024,2,25,1,Queensland,153.09171,-27.527189 +2024,7,4,1,South Australia,138.715319,-34.892154 +2022,6,27,1,South Australia,138.657483,-34.865075 +2023,10,26,1,Queensland,153.2555,-27.545571 +2023,12,23,1,Queensland,153.084022,-27.51145 +2020,4,28,1,Queensland,153.044629,-27.551668 +2020,8,27,1,Queensland,152.247495,-27.496009 +2024,5,6,1,Queensland,153.092335,-27.525674 +2024,3,14,1,South Australia,138.719712,-34.891995 +2024,5,27,1,Queensland,153.114269,-27.528502 +2023,7,14,1,Queensland,153.057832,-27.550974 +2023,11,15,1,Queensland,152.454861,-27.529306 +2023,11,13,1,South Australia,138.720951,-34.892185 +2024,11,3,1,Queensland,153.092936,-27.526567 +2024,11,17,1,Queensland,153.091744,-27.527153 +2023,12,16,1,Queensland,153.092767,-27.528315 +2020,5,3,1,South Australia,135.681228,-34.824322 +2024,8,9,1,New South Wales,153.400668,-28.258036 +2024,10,31,1,Queensland,151.687686,-26.17301 +2024,3,8,1,Victoria,142.630853,-38.341499 +2021,8,8,1,Queensland,152.807148,-27.529496 +2024,7,1,1,Queensland,153.107722,-27.527023 +2024,10,8,1,Queensland,148.453138,-26.328117 +2023,10,1,1,Queensland,153.091738,-27.526906 +2020,11,11,1,Queensland,153.080857,-27.509382 +2021,11,7,1,South Australia,138.597596,-35.146825 +2024,4,1,1,Victoria,147.728863,-37.921857 +2023,12,4,1,Queensland,153.110135,-27.528269 +2023,9,1,1,Queensland,153.087855,-27.510903 +2024,7,6,1,Queensland,146.868988,-19.12533 +2024,8,12,1,Victoria,145.268517,-38.130148 +2024,5,9,1,Victoria,142.974964,-38.500031 +2024,9,13,1,South Australia,138.641892,-35.111405 +2023,1,12,1,Queensland,153.111462,-27.528123 +2021,12,8,1,South Australia,138.720748,-34.886949 +2023,12,19,1,South Australia,135.673553,-34.875488 +2021,2,11,1,Victoria,142.626259,-38.281898 +2020,8,22,1,New South Wales,153.376801,-28.25392 +2023,10,31,1,Queensland,151.72644,-26.353608 +2023,10,26,1,Queensland,151.873873,-26.507413 +2021,12,22,1,South Australia,138.656872,-34.865183 +2023,10,22,1,Queensland,145.465053,-17.96026 +2024,8,4,1,Queensland,153.090354,-27.527345 +2022,11,7,1,Victoria,143.996858,-37.688766 +2023,11,8,1,Queensland,151.996551,-27.406319 +2022,7,27,1,South Australia,138.637438,-34.970553 +2023,2,18,1,Queensland,153.092257,-27.525 +2024,7,10,1,Queensland,153.112084,-27.529113 +2020,11,20,1,South Australia,138.668337,-34.782047 +2024,2,17,1,Queensland,153.058812,-27.551388 +2022,9,26,1,Queensland,152.062256,-27.348637 +2021,10,11,1,Victoria,143.839917,-37.566217 +2021,9,7,1,New South Wales,153.402625,-28.258537 +2024,8,11,1,Queensland,153.092955,-27.523979 +2024,6,23,1,New South Wales,153.400798,-28.258016 +2024,9,16,1,New South Wales,146.579853,-34.766636 +2020,11,3,1,South Australia,138.638136,-34.971335 +2023,6,24,1,Queensland,153.111904,-27.528907 +2024,4,18,1,South Australia,138.715136,-34.891918 +2024,3,1,1,Queensland,153.092748,-27.525637 +2023,4,10,1,Queensland,153.108953,-27.528818 +2024,10,20,1,South Australia,138.703186,-34.903537 +2020,9,27,1,Queensland,153.247942,-27.490363 +2024,6,22,1,Victoria,144.268702,-37.84187 +2023,10,3,1,Queensland,153.109958,-27.527079 +2024,3,11,1,Queensland,153.054228,-27.557961 +2021,8,23,1,Queensland,153.057558,-27.551583 +2024,10,14,1,Queensland,153.106406,-27.529241 +2024,11,20,1,South Australia,138.663497,-35.008189 +2024,7,23,1,South Australia,138.728764,-34.887328 +2021,12,29,1,New South Wales,153.39507,-28.266494 +2023,11,12,1,Queensland,151.723328,-27.429883 +2024,8,28,1,Queensland,152.010033,-27.244846 +2023,1,7,1,Queensland,153.078283,-27.507328 +2020,11,13,1,Queensland,153.074484,-27.540141 +2024,11,12,1,Queensland,152.630855,-27.438204 +2023,4,28,1,Queensland,153.090398,-27.525515 +2023,11,30,1,Victoria,145.682678,-37.758012 +2024,1,23,1,Queensland,153.11039,-27.527407 +2020,2,19,1,Queensland,153.072906,-27.540425 +2023,3,2,1,Queensland,153.070174,-27.510717 +2023,11,24,1,South Australia,138.715381,-34.893092 +2023,10,26,1,Queensland,151.939243,-27.439623 +2024,4,24,1,Queensland,151.841378,-26.345032 +2021,8,19,1,Queensland,152.906937,-27.45489 +2020,12,29,1,New South Wales,153.400888,-28.256373 +2024,9,24,1,Queensland,153.062347,-27.220407 +2023,9,29,1,Queensland,153.11066,-27.529892 +2024,10,12,1,Queensland,152.991619,-27.822651 +2022,9,11,1,South Australia,138.637485,-35.001919 +2024,6,25,1,New South Wales,153.393874,-28.275067 +2024,9,23,1,Queensland,153.06328,-27.540401 +2022,10,1,1,Victoria,143.65338,-38.773339 +2024,3,6,1,Victoria,144.271918,-37.843195 +2023,1,14,1,Victoria,143.528406,-38.813838 +2020,5,3,1,Queensland,153.062688,-27.537591 +2020,11,23,1,Victoria,146.163803,-38.671055 +2024,10,30,1,Queensland,153.07224,-27.545488 +2020,3,16,1,Queensland,153.063172,-27.547503 +2023,1,26,1,Queensland,153.09208,-27.526886 +2024,2,25,1,South Australia,138.73462,-34.826406 +2020,4,1,1,South Australia,138.700309,-34.963041 +2024,9,11,1,Queensland,152.992971,-27.823501 +2022,8,20,1,South Australia,138.658876,-35.017367 +2023,12,23,1,Victoria,145.255597,-38.140556 +2021,3,27,1,South Australia,138.647321,-35.01143 +2024,4,12,1,South Australia,138.719943,-34.891939 +2020,1,11,1,New South Wales,151.52071,-30.519482 +2024,7,7,1,Queensland,146.868025,-19.129051 +2023,12,1,1,Queensland,153.111292,-27.528883 +2024,9,14,1,Queensland,153.090613,-27.526756 +2021,4,1,1,Victoria,146.163833,-38.671183 +2021,7,21,1,Victoria,143.90928,-37.670442 +2022,9,8,1,Victoria,144.041363,-37.367566 +2024,3,3,1,Queensland,152.599982,-28.164772 +2024,7,11,1,Queensland,151.680976,-26.376749 +2023,3,2,1,Queensland,153.090679,-27.526763 +2022,1,3,1,Queensland,153.075505,-27.546591 +2024,3,17,1,Victoria,145.457786,-37.014051 +2024,1,6,1,Queensland,153.091787,-27.527131 +2021,11,10,1,South Australia,138.72151,-34.89257 +2020,6,23,1,Queensland,153.063393,-27.550181 +2024,9,4,1,Queensland,153.45001,-28.101346 +2023,9,25,1,Queensland,151.996681,-27.565441 +2024,7,1,1,Victoria,142.748812,-38.073361 +2024,9,29,1,Queensland,152.962645,-27.276791 +2023,7,15,1,Queensland,153.090873,-27.526826 +2023,6,28,1,Queensland,152.986512,-27.2963 +2023,3,21,1,Queensland,153.091957,-27.527117 +2023,5,14,1,Victoria,143.346199,-37.124623 +2024,6,8,1,Queensland,153.090971,-27.527546 +2022,12,3,1,Victoria,143.886818,-37.590768 +2022,11,23,1,South Australia,136.811421,-35.959406 +2022,12,4,1,Queensland,153.106675,-27.52787 +2022,8,23,1,Queensland,152.9888,-27.169858 +2021,3,19,1,Queensland,151.717549,-26.061882 +2024,4,8,1,Queensland,153.106307,-27.529473 +2024,6,9,1,Queensland,153.092053,-27.527196 +2022,6,26,1,Queensland,151.450822,-28.077433 +2020,10,11,1,Queensland,153.076661,-27.509067 +2023,11,8,1,Queensland,151.920072,-27.380488 +2023,1,28,1,Queensland,153.538623,-27.431784 +2024,9,4,1,Queensland,151.97584,-27.646007 +2023,4,30,1,Queensland,153.091952,-27.52696 +2024,2,29,1,Queensland,152.891749,-27.63575 +2024,9,2,1,New South Wales,151.095078,-33.076619 +2023,4,7,1,New South Wales,151.069781,-33.146292 +2023,12,5,1,Queensland,153.10397,-27.529955 +2021,1,9,1,Victoria,146.68399,-36.348228 +2023,6,3,1,Queensland,153.091593,-27.527133 +2024,6,28,1,Victoria,146.388216,-38.354816 +2023,9,4,1,Queensland,152.003525,-27.416947 +2024,3,11,1,New South Wales,153.478645,-28.275698 +2023,11,4,1,Queensland,153.092993,-27.528283 +2024,1,21,1,South Australia,138.721144,-34.892921 +2021,12,26,1,Queensland,153.036306,-27.535713 +2021,1,5,1,Victoria,147.729725,-37.925209 +2024,2,12,1,Queensland,153.103131,-27.530021 +2022,8,11,1,Victoria,146.293193,-38.951738 +2023,8,16,1,Queensland,152.046292,-27.255399 +2022,9,29,1,Queensland,153.07286,-27.546065 +2024,6,12,1,South Australia,138.705445,-34.90315 +2024,6,22,1,Queensland,153.109403,-27.527268 +2022,10,10,1,Queensland,152.401547,-27.457379 +2023,12,26,1,Queensland,153.07657,-27.540257 +2024,11,5,1,Queensland,153.091704,-27.527266 +2023,11,29,1,Queensland,153.404897,-27.499388 +2022,9,30,1,Queensland,153.073412,-27.545699 +2020,7,5,1,South Australia,138.650552,-35.019577 +2023,11,9,1,New South Wales,153.274416,-28.943305 +2024,9,30,1,South Australia,138.722267,-34.891429 +2023,2,11,1,Queensland,152.18373,-27.53098 +2023,1,30,1,Queensland,153.072518,-27.542214 +2022,12,19,1,Queensland,153.104277,-27.529398 +2024,4,25,1,Queensland,153.110945,-27.529981 +2022,9,6,1,Queensland,153.199158,-27.491392 +2022,7,27,1,New South Wales,146.543603,-34.758908 +2021,12,4,1,New South Wales,153.378052,-28.255107 +2020,8,25,1,Queensland,153.069763,-27.508092 +2024,10,27,1,Queensland,152.721173,-28.201188 +2023,3,6,1,Queensland,152.056572,-27.256021 +2021,4,21,1,Queensland,153.057317,-27.551277 +2022,10,30,1,New South Wales,153.400343,-28.260203 +2022,12,9,1,Queensland,153.0737,-27.545777 +2023,8,13,1,Queensland,153.000794,-27.284453 +2024,4,21,1,Queensland,153.092022,-27.525531 +2020,10,12,1,Queensland,153.182572,-27.498344 +2024,2,11,1,Queensland,152.124008,-27.288695 +2023,9,22,1,Queensland,153.108897,-27.526953 +2021,4,29,1,Victoria,143.905405,-37.576334 +2023,8,9,1,Queensland,153.381013,-27.963658 +2024,4,20,1,Queensland,153.092458,-27.525853 +2024,2,17,1,Queensland,153.111375,-27.527958 +2023,10,11,1,Queensland,153.111294,-27.528976 +2023,11,11,1,Victoria,143.882706,-37.594622 +2024,2,29,1,Queensland,153.101127,-28.257891 +2023,7,18,1,New South Wales,151.446239,-33.017526 +2023,12,24,1,Queensland,146.871978,-19.123155 +2021,8,22,1,Queensland,153.083389,-27.517037 +2020,3,10,1,Queensland,153.061835,-27.550283 +2024,8,21,1,New South Wales,151.344961,-29.776225 +2021,4,28,1,Queensland,153.056514,-27.550773 +2022,9,18,1,New South Wales,151.547918,-32.823738 +2024,7,23,1,Queensland,153.104951,-27.529508 +2024,6,28,1,Queensland,153.103606,-27.529857 +2024,3,20,1,Victoria,143.957648,-38.52221 +2024,3,29,1,Queensland,153.091125,-27.526475 +2023,10,8,1,Queensland,153.091422,-27.52735 +2024,6,19,1,South Australia,138.724572,-34.890965 +2021,5,17,1,South Australia,138.686051,-34.951973 +2022,2,5,1,Victoria,144.376998,-37.679722 +2023,4,22,1,Victoria,144.147359,-37.927919 +2024,10,11,1,Queensland,153.10479,-27.529948 +2024,1,28,1,Queensland,153.091284,-27.52737 +2023,1,31,1,Queensland,153.074464,-27.546059 +2023,12,31,1,Queensland,153.090774,-27.52693 +2023,6,9,1,Queensland,153.004316,-27.298859 +2021,10,12,1,Victoria,146.164153,-38.671245 +2021,5,9,1,Queensland,153.085139,-27.510497 +2023,3,21,1,South Australia,135.673492,-34.875521 +2022,10,22,1,Victoria,145.960913,-37.523083 +2024,11,20,1,Queensland,152.902457,-27.647172 +2021,2,4,1,Victoria,145.127778,-38.180833 +2023,8,18,1,Queensland,153.092862,-27.525099 +2024,11,14,1,Queensland,151.771158,-26.208854 +2022,12,29,1,Victoria,142.363542,-38.318572 +2021,11,14,1,Queensland,153.037458,-27.5467 +2024,10,20,1,Queensland,153.092905,-27.525741 +2024,8,11,1,Queensland,151.93553,-27.32545 +2024,8,3,1,Queensland,153.000639,-27.284506 +2020,12,16,1,Queensland,153.440812,-27.401322 +2024,5,26,1,Queensland,146.829944,-19.139494 +2023,11,10,1,South Australia,138.707447,-34.90423 +2020,11,23,1,Queensland,153.078976,-27.514144 +2020,9,23,1,Queensland,153.06995,-27.542445 +2021,4,23,1,Queensland,153.056785,-27.551463 +2021,6,23,1,Queensland,153.052807,-27.549708 +2020,1,5,1,Queensland,153.070532,-27.544684 +2023,9,6,1,New South Wales,150.999637,-29.153604 +2021,8,22,1,Queensland,153.083093,-27.503782 +2024,10,25,1,Queensland,151.825842,-27.465597 +2020,8,11,1,Queensland,153.058267,-27.547049 +2022,5,1,1,South Australia,138.628191,-35.032564 +2020,5,26,1,Queensland,153.056897,-27.551581 +2021,2,14,1,Victoria,146.163856,-38.671185 +2021,8,8,1,Queensland,153.083661,-27.507068 +2022,11,29,1,New South Wales,150.855906,-34.053305 +2024,10,20,1,South Australia,138.675063,-34.976658 +2024,7,29,1,Queensland,153.103792,-27.530097 +2021,12,28,1,Victoria,144.503023,-37.376055 +2024,5,13,1,Victoria,143.874233,-37.579183 +2023,9,24,1,Victoria,145.502959,-37.005839 +2022,12,16,1,Queensland,151.259003,-28.103114 +2024,1,6,1,Queensland,153.092818,-27.528413 +2022,11,7,1,South Australia,138.659592,-34.864987 +2024,6,3,1,New South Wales,153.281211,-29.001609 +2021,11,29,1,Queensland,151.562064,-27.791476 +2023,8,13,1,Queensland,153.078828,-27.50615 +2024,6,30,1,Queensland,153.090314,-27.526648 +2020,8,18,1,New South Wales,153.377187,-28.253604 +2021,8,25,1,Queensland,152.086983,-27.6953 +2024,6,17,1,Queensland,153.109154,-27.527194 +2024,10,31,1,Queensland,153.248642,-28.098194 +2020,6,21,1,South Australia,138.706746,-34.903096 +2023,7,22,1,New South Wales,152.063825,-32.699577 +2022,7,6,1,Victoria,144.290141,-37.481084 +2024,6,12,1,New South Wales,152.31333,-31.870605 +2024,9,30,1,Victoria,141.565756,-37.996107 +2022,10,26,1,New South Wales,152.212788,-31.625213 +2022,8,28,1,Queensland,153.375972,-27.918742 +2024,4,12,1,Queensland,153.165005,-27.943955 +2020,7,28,1,Queensland,153.05753,-27.551071 +2024,5,13,1,Queensland,153.08316,-27.512472 +2022,4,19,1,South Australia,138.638144,-34.971148 +2023,7,29,1,Queensland,153.440771,-27.393229 +2020,3,3,1,South Australia,138.623706,-34.982631 +2023,3,6,1,Victoria,146.854915,-36.154681 +2022,12,8,1,Queensland,153.068942,-27.541946 +2023,9,25,1,Queensland,153.10262,-27.529458 +2023,12,26,1,Queensland,153.076757,-27.540277 +2020,12,20,1,Queensland,152.989058,-27.169842 +2024,6,24,1,Queensland,153.057739,-27.543286 +2023,10,1,1,Queensland,152.07492,-27.358553 +2023,4,14,1,South Australia,138.911648,-34.683476 +2020,1,21,1,Victoria,143.860672,-38.668633 +2022,11,17,1,Victoria,147.730637,-37.923964 +2021,7,12,1,Victoria,145.31721,-38.355224 +2023,12,1,1,New South Wales,152.97214,-30.433187 +2023,10,17,1,Victoria,145.368713,-38.371795 +2020,1,6,1,Queensland,153.059794,-27.550773 +2021,9,17,1,South Australia,138.657697,-34.865025 +2023,9,10,1,Queensland,153.091273,-27.527241 +2024,4,26,1,Queensland,153.091652,-27.527211 +2020,2,26,1,Queensland,153.057999,-27.550753 +2024,10,17,1,Victoria,143.022539,-38.350475 +2022,2,17,1,Victoria,142.290997,-37.874526 +2022,10,27,1,Queensland,153.073621,-27.54546 +2022,5,17,1,Queensland,153.057951,-27.55103 +2023,9,28,1,Queensland,152.678222,-27.987112 +2023,3,4,1,Queensland,153.111465,-27.525034 +2021,2,24,1,Queensland,153.055889,-27.552019 +2023,11,15,1,Victoria,147.730195,-37.924192 +2021,10,6,1,Queensland,153.067334,-27.508216 +2023,5,31,1,Queensland,153.103484,-27.529725 +2022,7,26,1,New South Wales,145.554249,-35.813178 +2023,2,28,1,Queensland,153.092735,-27.52546 +2024,7,8,1,Queensland,151.893443,-27.31149 +2022,3,18,1,Victoria,141.59872,-38.350463 +2024,10,12,1,Queensland,153.090874,-27.525851 +2022,11,11,1,Queensland,153.057613,-27.551767 +2023,11,16,1,Queensland,146.868242,-19.12883 +2022,10,6,1,Queensland,152.86348,-28.211903 +2024,6,16,1,Queensland,152.999407,-27.283994 +2020,12,25,1,Queensland,153.457662,-28.15224 +2022,10,28,1,Queensland,153.072919,-27.54599 +2023,10,2,1,New South Wales,152.9022,-31.441935 +2020,11,5,1,Queensland,153.042827,-27.559017 +2024,2,5,1,Victoria,143.508788,-38.768978 +2020,3,29,1,Queensland,153.221398,-27.53504 +2020,7,18,1,New South Wales,153.377568,-28.254108 +2024,3,15,1,Victoria,141.923364,-38.05654 +2024,3,22,1,South Australia,138.705044,-34.9367 +2024,8,23,1,Queensland,153.074098,-27.545727 +2024,1,12,1,Queensland,153.107397,-27.527119 +2021,1,22,1,Queensland,153.070169,-27.545547 +2020,9,17,1,Queensland,153.089885,-27.637043 +2020,11,6,1,Queensland,151.549317,-27.006958 +2024,5,13,1,South Australia,138.730178,-34.886115 +2020,11,20,1,New South Wales,153.377,-28.254245 +2023,5,1,1,Queensland,153.112504,-27.519837 +2024,8,24,1,Queensland,153.107789,-27.526975 +2023,9,20,1,Queensland,151.58459,-27.641437 +2024,7,1,1,Victoria,145.293985,-38.382745 +2023,5,24,1,Queensland,153.090926,-27.52583 +2024,5,20,1,Victoria,147.729675,-37.920987 +2021,12,31,1,Queensland,153.5298,-27.428155 +2023,4,19,1,Queensland,153.072692,-27.52372 +2024,10,23,1,Queensland,153.092117,-27.527247 +2022,12,30,1,Queensland,153.356852,-27.93734 +2020,10,30,1,Queensland,153.050914,-27.527925 +2024,11,9,1,Queensland,151.556533,-27.612903 +2021,10,12,1,Queensland,152.590697,-27.166762 +2023,10,31,1,Queensland,152.618042,-27.892826 +2024,5,28,1,Queensland,153.10339,-27.529939 +2024,7,18,1,Queensland,153.074,-27.545933 +2023,8,22,1,Victoria,143.512682,-38.832721 +2023,1,11,1,Queensland,153.081086,-27.51432 +2023,10,12,1,Queensland,153.189646,-27.701124 +2023,3,12,1,Victoria,142.36377,-38.318329 +2023,6,24,1,Queensland,153.103352,-27.529639 +2022,1,23,1,Queensland,153.083688,-27.505751 +2024,11,2,1,Queensland,153.090724,-27.527567 +2021,7,3,1,Queensland,152.9304,-27.374178 +2023,9,6,1,Queensland,151.809454,-26.363365 +2023,7,30,1,Victoria,143.855181,-38.670472 +2024,1,5,1,New South Wales,152.91217,-31.45545 +2023,7,2,1,Queensland,153.00112,-27.284289 +2024,8,29,1,Queensland,152.555094,-28.010439 +2021,12,27,1,Victoria,144.278367,-38.096046 +2022,11,5,1,New South Wales,152.949647,-31.171355 +2021,10,6,1,Victoria,143.925555,-37.652741 +2024,7,14,1,Queensland,153.090881,-27.527477 +2024,10,12,1,Queensland,153.0909,-27.526459 +2021,6,14,1,Queensland,153.054203,-27.550119 +2024,2,15,1,South Australia,138.674875,-35.085686 +2024,7,28,1,New South Wales,153.400504,-28.258359 +2022,4,5,1,New South Wales,153.394272,-28.959176 +2023,10,22,1,Australian Capital Territory,148.91,-35.46 +2024,11,3,1,Queensland,153.082438,-27.514927 +2020,8,12,1,New South Wales,153.375199,-28.252473 +2020,10,26,1,Queensland,153.059498,-27.548698 +2024,6,24,1,South Australia,138.732499,-34.872437 +2022,10,1,1,Queensland,152.157745,-27.514559 +2023,12,15,1,Queensland,153.103491,-27.530327 +2023,4,22,1,Queensland,153.050063,-27.549208 +2024,3,16,1,Queensland,153.090934,-27.526591 +2024,11,8,1,Queensland,153.104878,-27.52969 +2021,12,27,1,Victoria,146.164197,-38.671277 +2021,5,18,1,Queensland,153.048707,-27.525078 +2020,8,9,1,Queensland,153.073117,-27.546806 +2021,3,24,1,Queensland,152.83438,-25.47562 +2020,2,4,1,Victoria,145.27062,-38.130645 +2022,6,22,1,South Australia,138.653748,-34.869113 +2022,11,21,1,South Australia,138.6446,-34.975958 +2020,12,9,1,Queensland,153.057853,-27.551131 +2021,7,2,1,Victoria,145.996522,-38.847078 +2022,11,5,1,Victoria,143.995351,-37.694566 +2023,8,6,1,Queensland,153.000997,-27.28444 +2024,9,21,1,Queensland,153.090276,-27.525527 +2023,7,11,1,Queensland,151.792488,-26.135977 +2023,9,10,1,South Australia,138.637961,-35.006095 +2020,9,15,1,Queensland,153.059542,-27.548913 +2021,12,31,1,South Australia,138.655816,-34.866312 +2023,2,17,1,Queensland,153.093935,-27.525958 +2024,5,11,1,South Australia,138.640458,-35.006286 +2022,1,10,1,Victoria,141.242112,-38.04917 +2022,12,29,1,South Australia,138.642741,-35.004219 +2023,7,8,1,Queensland,153.058975,-27.548721 +2023,8,17,1,Victoria,144.894833,-38.47436 +2024,8,12,1,South Australia,138.686433,-34.953482 +2022,5,28,1,Victoria,142.291031,-37.874468 +2022,8,24,1,Queensland,153.378159,-27.918358 +2021,10,21,1,Victoria,144.103306,-37.572849 +2023,7,11,1,New South Wales,152.993802,-30.560105 +2024,7,29,1,Queensland,151.689227,-26.171536 +2024,5,18,1,Queensland,153.093127,-27.527895 +2024,5,19,1,Queensland,153.045193,-27.550063 +2021,10,11,1,Victoria,146.164017,-38.671622 +2024,8,11,1,Queensland,153.09198,-27.525335 +2023,11,16,1,Queensland,151.563228,-27.795472 +2023,11,26,1,Queensland,153.091605,-27.527101 +2020,5,18,1,South Australia,138.711691,-34.905462 +2023,2,19,1,Queensland,153.080483,-27.508662 +2021,5,2,1,South Australia,138.670593,-35.012793 +2024,4,2,1,Queensland,153.053162,-27.544901 +2020,10,14,1,South Australia,138.662523,-35.007705 +2023,1,24,1,Queensland,153.073291,-27.546719 +2024,4,8,1,South Australia,138.719918,-34.891964 +2023,6,17,1,Queensland,153.004297,-27.29872 +2024,10,30,1,South Australia,138.539615,-35.323721 +2021,10,30,1,Queensland,152.449002,-27.421912 +2023,9,19,1,Queensland,151.998012,-27.409733 +2021,12,17,1,Queensland,153.081956,-27.508292 +2023,10,22,1,Queensland,153.092468,-27.527498 +2023,4,9,1,Queensland,153.086069,-27.508882 +2021,12,27,1,Victoria,143.873135,-37.596026 +2022,11,3,1,Queensland,152.865939,-28.211454 +2023,12,13,1,Queensland,151.789428,-27.18722 +2023,8,3,1,Queensland,153.06985,-27.523886 +2023,10,28,1,South Australia,137.206772,-35.622647 +2021,2,19,1,New South Wales,152.083759,-32.729224 +2024,5,27,1,Queensland,152.993193,-27.822883 +2020,4,27,1,South Australia,138.690111,-34.954322 +2023,8,14,1,Queensland,153.10908,-27.526803 +2023,11,18,1,Queensland,153.091798,-27.527137 +2022,6,3,1,Queensland,153.083373,-27.516665 +2023,8,23,1,Queensland,153.154898,-27.61488 +2021,2,20,1,South Australia,138.614962,-34.902268 +2024,5,14,1,Queensland,151.691557,-26.17693 +2022,12,19,1,Victoria,145.048508,-38.26572 +2023,9,15,1,Queensland,153.105619,-27.531507 +2023,8,26,1,Queensland,153.094654,-27.510381 +2022,4,25,1,Victoria,141.450409,-38.292622 +2023,10,17,1,Queensland,152.377363,-27.081997 +2024,8,12,1,Queensland,152.424872,-28.296406 +2023,11,19,1,Queensland,151.749824,-26.155079 +2020,8,22,1,Queensland,151.821027,-28.750644 +2022,8,30,1,Queensland,153.380004,-27.918634 +2020,10,7,1,Queensland,153.055919,-27.550688 +2022,4,18,1,Queensland,153.061616,-27.534499 +2024,10,4,1,Queensland,153.09207,-27.524855 +2023,9,6,1,Queensland,153.108941,-27.527187 +2024,4,14,1,Queensland,153.090956,-27.527162 +2024,11,17,1,Queensland,153.091919,-27.527137 +2023,4,13,1,Queensland,153.092272,-27.527252 +2023,10,31,1,Queensland,152.830145,-28.094776 +2022,10,18,1,Queensland,153.082794,-27.51233 +2023,5,26,1,Queensland,153.112286,-27.528868 +2021,6,6,1,Queensland,153.070312,-27.509519 +2023,11,8,1,Queensland,153.086717,-27.827703 +2024,7,29,1,Victoria,144.278672,-38.096161 +2023,4,8,1,South Australia,139.177872,-34.726783 +2024,2,25,1,Queensland,153.093193,-27.524189 +2022,4,24,1,Victoria,145.536753,-37.152403 +2024,4,28,1,Queensland,153.09292,-27.526979 +2021,5,2,1,Queensland,153.001542,-27.165147 +2023,11,13,1,Queensland,152.779812,-27.791357 +2020,11,7,1,Queensland,152.968766,-27.378041 +2023,3,29,1,Queensland,153.069225,-27.224019 +2024,2,5,1,Queensland,153.090913,-27.527101 +2024,11,13,1,Queensland,152.003144,-27.41265 +2023,11,28,1,Victoria,143.902773,-37.525637 +2024,7,5,1,Queensland,153.09056,-27.526908 +2024,6,17,1,Victoria,145.368212,-36.34193 +2024,9,11,1,Queensland,152.99409,-27.823668 +2021,1,30,1,Victoria,146.163765,-38.671092 +2024,9,10,1,Victoria,145.653042,-37.824654 +2024,6,23,1,Queensland,153.091743,-27.526836 +2021,4,16,1,Victoria,146.16385,-38.67125 +2022,12,11,1,New South Wales,150.934997,-33.359755 +2023,10,31,1,New South Wales,153.62888,-28.63957 +2022,9,21,1,Victoria,143.870666,-37.62519 +2021,4,9,1,South Australia,138.736167,-34.830996 +2024,11,6,1,Queensland,152.003281,-27.41362 +2023,8,23,1,Queensland,153.051798,-27.552594 +2023,1,11,1,Queensland,153.072474,-27.54596 +2024,10,6,1,Queensland,152.074666,-27.358581 +2021,7,17,1,Queensland,153.05701,-27.54671 +2020,11,11,1,Queensland,153.053146,-27.542919 +2024,11,23,1,Queensland,152.852025,-28.092531 +2020,3,10,1,Victoria,143.520538,-38.834399 +2023,2,21,1,Victoria,142.68259,-38.151186 +2021,12,28,1,Victoria,143.875545,-37.595037 +2023,10,8,1,Queensland,153.092059,-27.527324 +2023,11,28,1,South Australia,138.560197,-35.26028 +2024,2,6,1,South Australia,138.696105,-34.897737 +2022,1,25,1,Queensland,148.68791,-21.687696 +2020,2,16,1,South Australia,138.730453,-34.872753 +2020,9,12,1,Queensland,153.06019,-27.549795 +2021,7,16,1,Victoria,144.282138,-37.843024 +2020,10,4,1,South Australia,138.740556,-34.831389 +2023,7,27,1,Queensland,153.075248,-27.662848 +2024,1,13,1,Queensland,152.285649,-26.896054 +2020,4,12,1,Queensland,153.233436,-27.533034 +2022,10,9,1,Victoria,146.325072,-38.65342 +2023,10,18,1,Victoria,143.860747,-38.667989 +2024,7,1,1,Queensland,146.867935,-19.128515 +2020,10,2,1,South Australia,138.618438,-35.020672 +2024,10,4,1,Queensland,151.881547,-27.37887 +2023,7,22,1,South Australia,138.687731,-34.875853 +2022,12,31,1,Queensland,153.073677,-27.545818 +2024,5,5,1,Queensland,153.057273,-27.551508 +2021,10,18,1,Queensland,152.807027,-27.529765 +2024,2,5,1,South Australia,138.732509,-34.891496 +2023,11,3,1,Queensland,153.091322,-27.527378 +2021,4,22,1,Queensland,153.070206,-27.214678 +2021,11,9,1,Queensland,153.058269,-27.550789 +2023,12,30,1,Victoria,149.741856,-37.554436 +2024,10,1,1,Queensland,152.445868,-26.208548 +2024,1,11,1,Queensland,153.108151,-27.527334 +2023,5,2,1,Queensland,152.249514,-27.496771 +2022,11,13,1,South Australia,138.69307,-34.959872 +2021,1,5,1,Victoria,147.724648,-37.926555 +2023,7,16,1,Queensland,152.605011,-28.164282 +2023,3,3,1,Queensland,153.090782,-27.526535 +2021,10,27,1,Queensland,153.053341,-27.834599 +2024,4,27,1,Queensland,153.093521,-27.525313 +2021,9,28,1,New South Wales,153.375466,-28.252197 +2024,10,4,1,Victoria,143.553243,-38.823262 +2022,8,26,1,South Australia,138.733112,-34.887251 +2023,5,30,1,New South Wales,151.069071,-33.144506 +2024,4,9,1,South Australia,138.731711,-34.891014 +2021,8,25,1,Queensland,152.0867,-27.697067 +2020,2,22,1,Victoria,143.854188,-37.772869 +2021,11,22,1,Victoria,145.308866,-38.384807 +2023,9,4,1,New South Wales,151.234829,-33.117934 +2022,11,23,1,Queensland,153.403229,-27.493876 +2023,3,19,1,Queensland,153.09044,-27.526864 +2020,1,2,1,Victoria,145.675404,-35.921141 +2022,12,14,1,Queensland,153.103851,-27.528527 +2023,1,26,1,South Australia,138.826933,-34.692015 +2024,4,10,1,Queensland,153.1107,-27.527181 +2024,1,31,1,Queensland,153.105272,-27.530279 +2022,6,12,1,Queensland,153.169549,-27.55068 +2024,4,9,1,South Australia,138.721969,-34.889774 +2024,10,28,1,Queensland,151.846541,-26.224931 +2023,2,25,1,Queensland,152.992236,-27.824105 +2022,11,13,1,Queensland,153.033743,-27.5282 +2020,12,31,1,Victoria,147.724808,-37.926207 +2022,4,15,1,South Australia,138.648128,-34.964258 +2024,9,7,1,New South Wales,151.517692,-30.520348 +2020,7,21,1,Queensland,151.548556,-27.018181 +2022,4,21,1,Victoria,143.996942,-37.688488 +2023,2,26,1,Victoria,145.10987,-38.399416 +2022,2,21,1,Queensland,153.049867,-27.544845 +2021,7,11,1,Victoria,144.203988,-37.853542 +2024,8,18,1,Queensland,153.090284,-27.526344 +2023,2,19,1,South Australia,138.703902,-34.902977 +2023,10,31,1,Queensland,153.113596,-27.528429 +2022,3,6,1,South Australia,138.695653,-34.95484 +2022,6,20,1,New South Wales,153.400076,-28.26001 +2024,2,17,1,Queensland,152.654799,-26.401998 +2023,12,10,1,Queensland,152.110367,-27.56627 +2024,7,4,1,South Australia,138.580707,-35.145383 +2023,9,14,1,Queensland,153.073113,-27.545897 +2021,7,13,1,Queensland,153.083775,-27.516288 +2021,1,9,1,Queensland,153.076632,-27.550987 +2023,6,8,1,Queensland,151.608486,-27.371459 +2023,11,23,1,South Australia,138.545167,-35.121919 +2023,5,1,1,Queensland,151.889481,-27.599087 +2020,12,13,1,Queensland,151.81984,-26.171233 +2023,2,2,1,New South Wales,152.971824,-30.433096 +2023,3,6,1,South Australia,138.67017,-34.928897 +2021,12,21,1,Queensland,152.608286,-27.41936 +2024,8,10,1,Queensland,152.678058,-27.99112 +2021,8,27,1,Queensland,152.916465,-28.131476 +2024,5,25,1,Queensland,153.03695,-27.536147 +2024,3,31,1,Victoria,145.297981,-38.383445 +2020,3,14,1,Victoria,146.164629,-38.671092 +2024,2,13,1,Queensland,153.148275,-27.790605 +2020,2,16,1,Queensland,152.99782,-27.434271 +2022,5,8,1,Victoria,143.526978,-38.829687 +2024,5,12,1,Victoria,142.363752,-38.31827 +2024,7,3,1,Victoria,143.618794,-38.78468 +2023,5,11,1,Victoria,145.289466,-38.3827 +2024,7,6,1,South Australia,138.614228,-34.907464 +2023,1,14,1,Queensland,153.107707,-27.526991 +2021,8,8,1,Queensland,153.075454,-27.506826 +2023,8,29,1,New South Wales,150.280748,-31.06617 +2024,5,3,1,South Australia,138.572507,-35.033596 +2024,3,6,1,South Australia,138.664679,-35.063007 +2024,11,2,1,Queensland,153.091247,-27.527261 +2024,10,11,1,Queensland,153.090036,-27.219496 +2022,10,15,1,Queensland,153.111939,-27.496728 +2023,11,6,1,Queensland,153.105591,-27.530026 +2023,8,23,1,Queensland,152.937408,-27.575133 +2022,12,31,1,Queensland,153.072212,-27.543688 +2024,9,15,1,New South Wales,146.567291,-34.759009 +2021,11,16,1,Victoria,146.164256,-38.671288 +2024,8,9,1,New South Wales,153.39962,-28.26095 +2023,10,26,1,Queensland,151.811972,-26.167219 +2023,1,4,1,Queensland,152.003022,-27.413481 +2023,12,6,1,Queensland,153.40241,-27.495821 +2023,11,14,1,Queensland,153.1116,-27.527836 +2020,12,14,1,South Australia,138.638016,-34.971358 +2024,10,29,1,Queensland,153.082245,-27.512653 +2023,10,22,1,Queensland,153.266081,-28.008883 +2023,9,1,1,South Australia,138.614357,-34.902815 +2020,10,23,1,Queensland,153.05771,-27.551426 +2020,5,17,1,South Australia,138.652992,-35.005851 +2020,5,18,1,South Australia,138.70495,-34.903074 +2023,9,30,1,Queensland,153.093008,-27.524676 +2024,11,19,1,Victoria,143.583735,-38.82926 +2024,1,31,1,South Australia,138.729366,-34.887079 +2023,4,22,1,Queensland,153.091718,-27.52692 +2022,1,23,1,Queensland,153.085359,-27.508572 +2023,10,17,1,Queensland,153.371557,-27.904248 +2023,11,11,1,Queensland,153.091524,-27.527121 +2024,5,3,1,Queensland,153.105083,-27.529313 +2024,7,26,1,Queensland,152.99306,-27.823417 +2022,12,21,1,Queensland,153.112422,-27.528131 +2024,10,7,1,Queensland,151.879825,-26.232667 +2024,10,26,1,Queensland,153.09138,-27.526724 +2023,5,10,1,Queensland,151.655937,-27.643694 +2020,9,13,1,Queensland,151.97322,-26.163805 +2022,8,17,1,Queensland,153.055196,-27.538115 +2024,11,1,1,Victoria,146.151053,-38.841265 +2020,11,21,1,New South Wales,153.376892,-28.254216 +2023,3,25,1,Victoria,143.85783,-38.670316 +2024,3,29,1,Queensland,153.073324,-27.547193 +2021,10,19,1,New South Wales,153.376911,-28.254121 +2022,1,15,1,Queensland,153.053683,-27.543535 +2021,11,10,1,South Australia,138.718265,-34.8917 +2023,12,23,1,Queensland,153.102629,-27.529438 +2024,8,13,1,South Australia,138.6265,-34.89265 +2022,9,18,1,Queensland,153.163927,-27.621018 +2023,1,7,1,Queensland,151.890013,-27.599081 +2022,5,12,1,Queensland,152.681012,-28.003948 +2022,6,21,1,Queensland,153.105628,-27.506395 +2022,10,10,1,New South Wales,150.640394,-33.347898 +2023,7,20,1,Victoria,146.593386,-36.284132 +2023,2,5,1,Queensland,152.003885,-27.414008 +2021,9,6,1,Queensland,152.08652,-27.69687 +2024,3,8,1,Queensland,152.846085,-27.33905 +2021,11,22,1,Victoria,145.314349,-38.375009 +2024,5,1,1,South Australia,140.865722,-37.807655 +2022,9,22,1,Queensland,152.050125,-27.269838 +2024,3,10,1,Queensland,153.073172,-27.546761 +2024,5,13,1,Queensland,153.081604,-27.507936 +2022,10,10,1,Victoria,145.554062,-36.983833 +2023,12,19,1,Queensland,153.091221,-27.52728 +2020,9,10,1,Queensland,152.511708,-28.062761 +2024,3,2,1,Queensland,153.09237,-27.527145 +2021,6,1,1,Queensland,153.115556,-27.529567 +2023,6,26,1,Queensland,151.937342,-26.176018 +2021,1,1,1,Queensland,153.221346,-27.535185 +2023,1,20,1,Queensland,153.072694,-27.544997 +2024,7,18,1,South Australia,138.722649,-34.889719 +2024,8,7,1,Victoria,144.02483,-37.685591 +2023,6,30,1,Queensland,151.710312,-27.649033 +2021,11,15,1,Queensland,153.14371,-27.775238 +2021,4,2,1,Queensland,153.057406,-27.546873 +2022,3,13,1,Victoria,146.141742,-38.703894 +2023,10,19,1,Queensland,153.429914,-27.492428 +2020,10,20,1,Queensland,152.621917,-27.451705 +2023,12,3,1,New South Wales,151.335492,-29.780644 +2023,7,13,1,New South Wales,152.709371,-31.78274 +2022,11,23,1,Queensland,152.064577,-27.262203 +2020,2,21,1,Queensland,153.061131,-27.549539 +2023,4,18,1,Queensland,153.103851,-27.52873 +2021,2,5,1,Queensland,153.070144,-27.545523 +2021,12,25,1,South Australia,138.715439,-35.015072 +2024,10,30,1,Queensland,153.105124,-27.530422 +2023,11,12,1,Queensland,153.092782,-27.528551 +2020,4,19,1,South Australia,138.652235,-35.009231 +2024,10,21,1,Queensland,152.993094,-27.823503 +2024,11,22,1,Queensland,153.448031,-27.395463 +2022,12,30,1,Queensland,153.103265,-27.52784 +2022,9,29,1,Queensland,153.068386,-27.54238 +2022,2,26,1,Victoria,144.28225,-37.841957 +2024,10,29,1,Queensland,153.111554,-27.527383 +2021,8,11,1,Queensland,153.060748,-27.550147 +2024,10,9,1,Queensland,152.684103,-27.996872 +2023,1,14,1,South Australia,138.560209,-35.260275 +2022,3,16,1,New South Wales,153.547945,-28.600028 +2023,3,10,1,South Australia,138.7056,-34.90328 +2023,1,2,1,Queensland,151.97113,-26.164481 +2021,10,7,1,Queensland,153.057419,-27.553058 +2023,11,13,1,Queensland,153.10763,-27.527332 +2020,6,22,1,New South Wales,153.377878,-28.25471 +2023,9,6,1,Queensland,151.691201,-26.176967 +2023,8,4,1,Queensland,153.104681,-27.529973 +2021,12,29,1,Queensland,153.037823,-27.533409 +2023,7,15,1,Victoria,144.025779,-38.050363 +2024,3,11,1,New South Wales,150.728139,-33.427932 +2021,7,30,1,Queensland,153.058787,-27.54729 +2024,6,19,1,South Australia,138.72204,-34.890119 +2024,2,2,1,Queensland,152.074783,-27.35882 +2022,4,2,1,Queensland,153.439412,-27.400286 +2021,2,3,1,Queensland,153.060059,-27.55033 +2024,6,29,1,Queensland,153.065156,-27.550663 +2024,3,10,1,Queensland,153.092145,-27.526975 +2022,1,17,1,Queensland,153.105064,-27.529821 +2024,10,5,1,Victoria,145.262833,-38.484067 +2023,11,30,1,New South Wales,153.629428,-28.637374 +2021,10,24,1,South Australia,138.671995,-34.951139 +2021,3,28,1,Queensland,153.052213,-27.548757 +2024,10,3,1,New South Wales,150.853728,-34.08208 +2023,8,18,1,Queensland,153.109028,-27.526657 +2020,7,26,1,Queensland,153.171428,-27.547419 +2023,11,7,1,Queensland,152.677567,-27.986008 +2023,11,24,1,Queensland,153.108232,-27.527234 +2022,1,25,1,Victoria,141.095854,-38.00088 +2023,8,19,1,South Australia,138.70627,-34.903235 +2023,5,29,1,Queensland,153.052392,-27.553517 +2020,11,5,1,Victoria,146.163697,-38.67105 +2022,11,25,1,Queensland,153.356803,-27.938923 +2023,12,23,1,Queensland,153.08082,-27.507687 +2021,3,12,1,Victoria,141.581501,-38.359493 +2023,1,9,1,Victoria,142.36328,-38.318833 +2021,9,21,1,Queensland,153.055913,-27.550805 +2021,10,20,1,Queensland,153.239633,-27.481946 +2024,8,2,1,New South Wales,151.811643,-31.987893 +2023,12,3,1,Queensland,152.999294,-27.283863 +2022,1,13,1,South Australia,138.679612,-34.952396 +2022,9,14,1,Queensland,152.960262,-27.485288 +2023,11,3,1,Queensland,153.103187,-27.529075 +2022,11,18,1,Victoria,144.26559,-37.39417 +2020,8,28,1,Victoria,146.017651,-38.354595 +2024,11,9,1,Queensland,153.092658,-27.525653 +2020,1,8,1,Queensland,153.180773,-27.489139 +2020,10,21,1,Queensland,153.059081,-27.549701 +2023,11,3,1,Queensland,153.092368,-27.527486 +2021,7,13,1,Queensland,153.089412,-27.516437 +2023,12,28,1,Queensland,153.108531,-27.527343 +2023,12,16,1,Queensland,153.091372,-27.526984 +2023,8,26,1,Victoria,144.223443,-38.040326 +2024,11,14,1,South Australia,138.70605,-35.00474 +2022,8,15,1,Queensland,152.956971,-27.484672 +2020,8,21,1,Queensland,153.001114,-27.165492 +2024,8,17,1,Queensland,151.588028,-27.7993 +2024,7,14,1,Queensland,153.090308,-27.526673 +2023,1,2,1,Victoria,143.889362,-37.584133 +2023,5,20,1,Queensland,153.369962,-27.900518 +2023,9,5,1,Queensland,153.113472,-27.528415 +2023,8,27,1,Queensland,151.821349,-26.381908 +2022,11,12,1,Queensland,152.1618,-27.50038 +2022,12,30,1,Queensland,153.437708,-27.402699 +2023,9,6,1,Queensland,153.098544,-27.566708 +2022,8,25,1,Queensland,152.070734,-26.034828 +2024,8,17,1,Queensland,151.529053,-27.720137 +2023,7,11,1,New South Wales,152.993279,-30.55957 +2024,3,9,1,Queensland,153.092944,-27.524501 +2023,12,24,1,Queensland,153.091486,-27.527365 +2021,4,8,1,Queensland,153.405662,-27.493519 +2021,11,26,1,Queensland,153.189863,-27.736883 +2024,11,7,1,Queensland,152.591213,-27.948416 +2023,9,1,1,New South Wales,153.000099,-28.525666 +2023,12,25,1,Victoria,149.757613,-37.560438 +2024,9,14,1,Queensland,153.09062,-27.52635 +2023,10,13,1,Queensland,152.00395,-27.414649 +2020,1,31,1,Queensland,153.058745,-27.544772 +2023,7,16,1,Queensland,153.429795,-27.492162 +2021,9,24,1,Queensland,151.691557,-26.17693 +2023,12,5,1,Queensland,153.103397,-27.530273 +2024,7,7,1,Queensland,153.091677,-27.526757 +2023,6,16,1,Queensland,153.07508,-27.647707 +2020,9,26,1,South Australia,138.647177,-35.010205 +2023,10,7,1,Queensland,153.057848,-27.551863 +2024,8,31,1,South Australia,140.644505,-37.728478 +2023,10,14,1,Queensland,151.855721,-26.558542 +2024,3,3,1,Queensland,153.090148,-27.525642 +2024,6,30,1,Queensland,151.89405,-26.241664 +2023,4,8,1,Queensland,153.091681,-27.527128 +2020,4,28,1,Queensland,153.048936,-27.5501 +2024,10,10,1,Queensland,152.67824,-27.987692 +2023,4,8,1,Queensland,153.090658,-27.526525 +2020,12,26,1,Victoria,143.888191,-37.581877 +2022,9,20,1,Victoria,144.275717,-37.839637 +2024,11,2,1,Queensland,153.09203,-27.527185 +2023,2,19,1,South Australia,138.719876,-35.006028 +2023,9,28,1,Queensland,152.677657,-27.986047 +2023,12,15,1,Victoria,144.094667,-37.623812 +2023,9,3,1,Queensland,152.044018,-27.257541 +2024,5,19,1,Queensland,153.092312,-27.524336 +2023,7,21,1,Queensland,153.108853,-27.526733 +2023,3,20,1,Queensland,153.112428,-27.528751 +2020,10,4,1,South Australia,138.740454,-34.831495 +2024,2,8,1,New South Wales,150.822678,-34.101714 +2023,11,3,1,Queensland,153.111041,-27.528193 +2020,5,27,1,Queensland,151.832016,-26.02242 +2024,8,10,1,South Australia,138.614917,-34.905533 +2024,11,9,1,Queensland,153.092326,-27.527889 +2021,11,28,1,Victoria,146.164231,-38.671345 +2020,12,11,1,Queensland,153.271056,-27.540108 +2024,2,2,1,Queensland,153.057658,-27.552941 +2020,11,19,1,Queensland,153.0551,-27.538579 +2022,12,21,1,Queensland,153.109727,-27.528984 +2022,12,21,1,Queensland,153.073501,-27.547118 +2024,3,9,1,Queensland,153.092415,-27.527207 +2024,2,15,1,South Australia,138.729884,-34.890702 +2020,3,1,1,Queensland,153.070208,-27.510611 +2023,11,17,1,Queensland,153.001788,-27.314587 +2023,10,20,1,Queensland,151.527803,-27.717778 +2024,10,22,1,Victoria,141.541867,-38.049833 +2023,9,6,1,South Australia,138.760977,-35.009026 +2022,2,15,1,Victoria,145.268511,-38.131247 +2024,5,7,1,South Australia,138.732757,-34.886485 +2023,9,10,1,Victoria,145.219026,-38.13841 +2021,10,8,1,Queensland,151.963157,-26.236603 +2024,7,28,1,Queensland,151.98331,-26.255161 +2020,10,4,1,New South Wales,153.377466,-28.254032 +2024,10,18,1,Queensland,151.58632,-27.799138 +2020,11,3,1,Queensland,152.339059,-27.832712 +2023,9,16,1,Queensland,151.685778,-27.320211 +2023,10,6,1,Queensland,151.774795,-27.39218 +2022,7,20,1,Queensland,146.842356,-19.135865 +2024,5,24,1,Queensland,153.111488,-27.528075 +2024,2,13,1,South Australia,138.724803,-34.895051 +2024,1,13,1,Victoria,142.363568,-38.318498 +2021,12,5,1,Victoria,143.531506,-38.81447 +2022,11,1,1,Queensland,152.681459,-28.001287 +2024,2,11,1,Victoria,146.164489,-38.6718 +2022,9,26,1,Queensland,153.067721,-27.50879 +2022,4,29,1,Queensland,153.077695,-27.513388 +2021,1,4,1,Victoria,147.72479,-37.926202 +2024,8,21,1,Queensland,152.610662,-28.066336 +2024,6,20,1,Queensland,152.739122,-27.873035 +2023,8,19,1,Queensland,153.000844,-27.28446 +2023,9,30,1,Queensland,153.09161,-27.527155 +2024,7,25,1,Queensland,152.991402,-27.82323 +2023,10,10,1,Queensland,153.107232,-27.527403 +2022,7,6,1,Victoria,143.895883,-38.430647 +2021,11,16,1,Victoria,143.515721,-38.837042 +2024,10,29,1,Queensland,153.091692,-27.527198 +2023,10,4,1,Queensland,152.958024,-27.933157 +2024,9,22,1,Queensland,153.401628,-27.49478 +2022,9,15,1,Queensland,153.071771,-27.544824 +2020,1,30,1,Queensland,153.05672,-27.538361 +2020,4,27,1,South Australia,138.689375,-34.953894 +2024,1,23,1,South Australia,138.616861,-34.906092 +2020,5,17,1,South Australia,138.657523,-35.005839 +2024,10,15,1,Queensland,153.103721,-27.529964 +2023,10,20,1,Queensland,153.158721,-27.656246 +2020,11,8,1,South Australia,138.70904,-34.973906 +2022,10,29,1,New South Wales,152.972394,-30.428368 +2023,4,12,1,Queensland,151.556275,-27.615042 +2024,6,13,1,Queensland,153.371292,-27.904068 +2024,10,27,1,Victoria,146.124331,-38.830015 +2020,4,25,1,South Australia,138.643579,-35.008354 +2024,6,15,1,Queensland,153.092046,-27.524998 +2023,9,9,1,Queensland,152.91883,-28.043766 +2023,7,14,1,Queensland,153.110459,-27.526889 +2024,10,12,1,Queensland,146.86924,-19.13088 +2023,1,13,1,Queensland,153.071308,-27.544661 +2023,12,8,1,Queensland,153.08583,-27.510413 +2024,6,21,1,South Australia,138.646365,-34.972195 +2023,9,15,1,Queensland,153.111519,-27.527844 +2021,4,22,1,New South Wales,152.639594,-31.82769 +2024,10,19,1,Queensland,153.003006,-27.278022 +2023,11,19,1,Victoria,145.113838,-38.395776 +2021,9,26,1,Queensland,153.079358,-27.506595 +2022,11,30,1,Queensland,153.072551,-27.544598 +2021,3,13,1,South Australia,138.756328,-35.359036 +2023,5,4,1,Queensland,153.046692,-27.547347 +2021,8,29,1,Victoria,142.073912,-38.235146 +2024,8,19,1,South Australia,138.722564,-34.892458 +2023,11,4,1,South Australia,138.71748,-34.871286 +2022,10,5,1,Queensland,153.07362,-27.545768 +2023,11,5,1,Queensland,153.092252,-27.528267 +2024,11,9,1,Queensland,153.113429,-27.528411 +2023,10,21,1,Queensland,153.092378,-27.525004 +2024,4,22,1,Queensland,153.111696,-27.528008 +2020,2,2,1,Queensland,153.071943,-27.545312 +2023,7,28,1,Queensland,153.093167,-27.523991 +2022,6,30,1,Victoria,144.095122,-37.622783 +2020,6,13,1,Queensland,153.228726,-27.502704 +2024,5,22,1,New South Wales,150.825771,-34.100324 +2022,11,16,1,Victoria,144.088587,-37.633677 +2022,3,22,1,Queensland,152.898912,-27.652587 +2024,4,9,1,South Australia,138.728409,-34.889934 +2023,9,5,1,Queensland,152.857899,-28.218819 +2022,1,25,1,Queensland,151.868462,-26.52166 +2023,12,27,1,Queensland,153.104147,-27.528782 +2024,8,31,1,Queensland,153.033357,-27.52748 +2021,1,30,1,Queensland,153.059008,-27.545952 +2022,11,25,1,Queensland,152.062721,-27.348364 +2023,4,17,1,Queensland,153.109806,-27.526696 +2023,10,3,1,New South Wales,151.095017,-33.076367 +2023,11,4,1,Queensland,153.091597,-27.527194 +2023,8,19,1,South Australia,138.7029,-34.903532 +2021,12,30,1,Queensland,152.824358,-27.249316 +2022,10,11,1,Queensland,153.052822,-27.553317 +2023,9,17,1,Victoria,145.522474,-37.134068 +2021,6,10,1,Queensland,153.052148,-27.549157 +2020,2,15,1,South Australia,138.693865,-34.956653 +2022,11,5,1,South Australia,138.941483,-34.722427 +2021,1,5,1,Victoria,147.724747,-37.925969 +2023,8,4,1,Victoria,142.290962,-37.87456 +2022,5,1,1,Queensland,153.069801,-27.51038 +2024,6,9,1,Queensland,153.070845,-27.54538 +2022,9,30,1,South Australia,138.675054,-35.085758 +2023,2,16,1,South Australia,138.634127,-34.998154 +2023,10,12,1,South Australia,137.596283,-35.779202 +2024,5,28,1,South Australia,138.777432,-34.878637 +2021,8,7,1,Queensland,153.057277,-27.55699 +2024,3,16,1,Queensland,153.091611,-27.527073 +2024,10,5,1,Queensland,153.093354,-27.526994 +2024,7,25,1,Queensland,152.677383,-27.985785 +2024,3,25,1,South Australia,138.711119,-34.904838 +2024,10,22,1,Queensland,151.990485,-26.622447 +2020,11,7,1,Queensland,153.058164,-27.547541 +2023,4,9,1,Queensland,153.402467,-27.501542 +2022,2,6,1,Queensland,153.429937,-27.491905 +2023,7,1,1,Queensland,153.092086,-27.527226 +2023,7,19,1,Queensland,153.107365,-27.527239 +2024,8,5,1,Queensland,153.102307,-27.734904 +2021,7,1,1,Queensland,152.11458,-27.550103 +2024,8,8,1,South Australia,138.619306,-35.007956 +2023,3,4,1,Victoria,149.75794,-37.562591 +2020,7,18,1,Queensland,153.253854,-27.508932 +2021,10,10,1,Queensland,153.036669,-27.528278 +2023,11,23,1,Queensland,153.296547,-27.568553 +2023,7,31,1,Queensland,153.104473,-27.529925 +2024,2,18,1,New South Wales,150.822672,-34.101612 +2024,5,31,1,Queensland,152.579692,-27.960074 +2024,2,21,1,Queensland,153.105276,-27.52922 +2022,10,11,1,Queensland,153.069138,-27.511139 +2023,11,16,1,Queensland,152.003167,-27.413657 +2024,3,10,1,Queensland,153.072188,-27.543713 +2023,10,20,1,New South Wales,152.906783,-31.440997 +2024,6,2,1,Queensland,153.092247,-27.527282 +2024,1,28,1,Victoria,145.290899,-38.307199 +2024,6,18,1,Queensland,152.613558,-27.339295 +2020,3,3,1,Queensland,153.057877,-27.551845 +2023,11,18,1,Queensland,153.090913,-27.526458 +2024,4,30,1,New South Wales,150.575045,-33.715948 +2020,10,22,1,Queensland,153.053778,-27.54159 +2024,10,2,1,New South Wales,153.63001,-28.63748 +2023,8,23,1,Victoria,143.51434,-38.836951 +2024,10,7,1,Queensland,153.092609,-27.528496 +2023,5,7,1,Queensland,153.091041,-27.527278 +2024,10,18,1,Queensland,153.105169,-27.529817 +2024,7,8,1,Queensland,153.074606,-27.207006 +2022,8,20,1,Queensland,153.286341,-27.989867 +2020,11,25,1,Queensland,153.358993,-27.777242 +2023,1,10,1,Queensland,152.967052,-28.027191 +2024,9,11,1,New South Wales,150.563625,-29.859599 +2023,11,12,1,Queensland,153.092177,-27.527413 +2022,8,31,1,Victoria,142.977458,-38.500008 +2020,7,16,1,Queensland,153.053591,-27.550577 +2023,12,26,1,Queensland,152.93367,-27.572403 +2022,7,29,1,Victoria,145.79698,-36.959197 +2022,7,17,1,Queensland,153.358488,-27.917508 +2021,11,18,1,Queensland,153.152696,-27.760083 +2024,6,17,1,New South Wales,152.935895,-30.406102 +2023,10,12,1,New South Wales,150.979297,-29.780365 +2020,11,8,1,South Australia,138.739466,-34.987368 +2023,9,17,1,Queensland,152.939019,-27.16535 +2023,7,25,1,Queensland,153.112301,-27.529486 +2024,9,1,1,Queensland,152.261153,-27.58959 +2023,1,29,1,Queensland,153.058384,-27.545558 +2021,1,31,1,South Australia,138.499198,-35.164538 +2024,11,4,1,Queensland,153.054337,-27.552799 +2024,1,22,1,Queensland,153.103762,-27.527465 +2024,9,8,1,South Australia,138.719301,-34.908318 +2024,3,30,1,Victoria,144.25304,-37.859437 +2023,9,9,1,Queensland,153.054047,-27.542707 +2023,9,13,1,Victoria,145.304973,-37.08408 +2024,8,18,1,Queensland,153.093916,-27.527913 +2022,1,28,1,Victoria,143.879634,-37.593442 +2021,6,21,1,Queensland,153.058103,-27.551095 +2024,3,17,1,Victoria,144.190121,-37.85976 +2022,11,28,1,South Australia,138.715924,-34.892216 +2024,10,4,1,Victoria,145.226805,-37.750253 +2021,11,15,1,Queensland,153.143716,-27.775233 +2020,6,24,1,Queensland,153.082949,-27.505804 +2024,11,19,1,New South Wales,149.337937,-31.579428 +2021,11,7,1,Victoria,146.16417,-38.671342 +2024,1,15,1,South Australia,135.673576,-34.875801 +2022,9,11,1,Victoria,143.875158,-37.604221 +2024,2,24,1,Queensland,152.901851,-27.621928 +2024,8,11,1,Queensland,153.091474,-27.527276 +2020,1,29,1,Queensland,151.775294,-26.182073 +2022,9,19,1,Queensland,153.073291,-27.545647 +2023,1,29,1,Queensland,153.021791,-26.379745 +2023,11,10,1,Queensland,146.871469,-19.123284 +2022,10,7,1,Queensland,152.865985,-28.211244 +2024,3,13,1,Queensland,153.072481,-27.544023 +2022,11,5,1,New South Wales,151.123077,-33.114396 +2022,11,11,1,Queensland,153.39957,-27.49679 +2022,6,5,1,South Australia,138.704877,-34.903217 +2022,8,15,1,Queensland,152.321992,-27.302887 +2024,2,1,1,Queensland,153.187769,-27.911931 +2020,2,24,1,Queensland,153.057465,-27.550991 +2020,12,11,1,New South Wales,152.354796,-31.950154 +2022,6,26,1,Queensland,153.083114,-27.514766 +2022,1,5,1,Queensland,151.845188,-26.226805 +2023,9,27,1,Queensland,152.424472,-27.999745 +2024,7,20,1,Queensland,151.556258,-27.614875 +2023,7,17,1,Victoria,145.283037,-38.382167 +2024,8,7,1,New South Wales,153.400496,-28.258305 +2024,8,13,1,South Australia,138.51463,-35.174651 +2024,4,17,1,Victoria,145.293791,-38.378745 +2023,8,23,1,Victoria,143.901148,-37.641822 +2023,5,24,1,Victoria,143.689539,-38.72773 +2023,12,10,1,Victoria,143.33962,-38.321862 +2021,9,22,1,Victoria,145.00929,-38.477306 +2024,11,3,1,Victoria,143.65918,-38.77155 +2023,12,9,1,Queensland,153.090726,-27.52628 +2024,5,9,1,South Australia,138.728794,-34.866658 +2022,11,15,1,Queensland,151.862602,-27.329305 +2022,5,2,1,Queensland,153.234235,-27.500323 +2023,9,8,1,Queensland,153.094654,-27.510381 +2020,6,13,1,Victoria,143.925556,-37.652778 +2024,11,21,1,Queensland,153.057175,-27.552448 +2021,12,1,1,Victoria,143.886759,-37.60091 +2023,12,30,1,South Australia,138.557059,-35.255391 +2024,5,25,1,Queensland,151.819922,-26.364023 +2023,11,14,1,Queensland,153.103265,-27.530237 +2024,7,26,1,Queensland,151.783676,-26.309911 +2023,12,22,1,New South Wales,153.294467,-28.864571 +2023,12,22,1,Victoria,144.286087,-37.845313 +2024,10,7,1,New South Wales,149.408161,-33.753478 +2024,10,13,1,New South Wales,146.549972,-34.751554 +2020,9,9,1,South Australia,138.638245,-35.005982 +2023,3,28,1,Queensland,153.090428,-27.525693 +2023,1,20,1,Queensland,153.073309,-27.545824 +2023,11,30,1,South Australia,138.722483,-34.891255 +2022,3,12,1,Queensland,152.681711,-27.995104 +2023,10,3,1,New South Wales,150.625466,-33.568807 +2024,2,21,1,Queensland,153.103409,-27.530508 +2024,4,29,1,Queensland,152.896301,-27.641814 +2020,10,5,1,Queensland,151.812287,-26.529895 +2024,8,22,1,South Australia,138.731998,-34.871779 +2024,6,30,1,Queensland,151.935487,-27.32565 +2023,9,16,1,Victoria,145.048507,-38.26719 +2024,2,5,1,Queensland,153.093056,-27.526383 +2022,11,23,1,Queensland,152.063142,-27.262855 +2024,1,26,1,Victoria,144.398247,-37.420822 +2022,11,9,1,Victoria,143.885657,-37.624321 +2023,12,2,1,Queensland,152.395503,-27.154603 +2024,2,23,1,Victoria,144.494639,-37.647013 +2024,1,14,1,Queensland,153.091762,-27.527041 +2020,4,7,1,South Australia,138.544678,-34.914991 +2021,1,23,1,Queensland,152.998426,-27.436175 +2022,12,19,1,Victoria,147.724128,-37.923053 +2023,11,19,1,Queensland,153.091377,-27.527193 +2020,12,23,1,New South Wales,146.585403,-34.753892 +2022,10,1,1,Queensland,152.145431,-27.509882 +2024,6,29,1,Queensland,153.440941,-27.400083 +2020,1,29,1,Queensland,151.775294,-26.182073 +2020,12,5,1,Queensland,151.775294,-26.182073 +2022,3,25,1,Queensland,145.747505,-18.831485 +2024,9,8,1,Queensland,153.092062,-27.525912 +2024,10,5,1,Queensland,153.090652,-27.527071 +2023,6,19,1,Queensland,152.811052,-26.106567 +2022,1,27,1,South Australia,138.713972,-34.910651 +2023,10,30,1,Queensland,153.091207,-27.527202 +2021,12,5,1,Queensland,153.103563,-27.529442 +2023,9,11,1,New South Wales,150.817448,-34.107768 +2020,1,15,1,Victoria,143.978617,-38.552145 +2024,5,5,1,Queensland,153.058393,-27.551321 +2023,5,12,1,Queensland,152.925198,-27.339295 +2022,10,20,1,South Australia,138.572128,-35.027634 +2024,3,29,1,Queensland,153.074077,-27.546005 +2024,5,8,1,Queensland,152.936296,-27.275367 +2023,1,11,1,Queensland,153.073263,-27.545709 +2023,8,23,1,Victoria,143.512437,-38.834767 +2024,2,12,1,South Australia,138.512178,-35.121761 +2024,4,7,1,Queensland,153.090868,-27.526335 +2024,9,10,1,New South Wales,152.926603,-31.44589 +2024,10,18,1,Victoria,142.364912,-38.318493 +2022,11,18,1,Queensland,151.561505,-27.799312 +2024,7,3,1,Queensland,153.092426,-27.527641 +2024,10,7,1,New South Wales,149.408161,-33.753478 +2023,9,4,1,Queensland,153.109151,-27.526793 +2024,8,11,1,Queensland,153.090842,-27.526986 +2023,6,25,1,Victoria,145.379822,-36.84525 +2021,12,4,1,Victoria,146.163742,-38.671112 +2021,12,5,1,Victoria,148.269577,-37.208679 +2020,10,5,1,Queensland,153.049177,-27.540728 +2024,1,27,1,New South Wales,150.82263,-34.101661 +2023,11,12,1,Victoria,141.611878,-38.353322 +2023,3,19,1,Queensland,153.093337,-27.528083 +2020,1,31,1,Queensland,153.059222,-27.549282 +2022,11,4,1,Queensland,152.888383,-27.647292 +2024,9,24,1,Queensland,152.722445,-27.716092 +2022,4,4,1,New South Wales,153.399469,-28.260409 +2023,12,27,1,Queensland,153.105494,-27.529861 +2021,3,11,1,Queensland,153.048845,-27.525184 +2023,11,21,1,New South Wales,150.601702,-29.866838 +2020,11,27,1,Queensland,153.058142,-27.547056 +2020,9,21,1,Queensland,153.283943,-27.979572 +2024,11,4,1,New South Wales,151.735675,-31.540089 +2022,8,24,1,Queensland,153.158343,-27.656584 +2020,11,14,1,Victoria,143.542388,-38.842322 +2024,9,6,1,Victoria,145.996949,-38.826311 +2024,3,24,1,Victoria,145.673945,-35.921924 +2022,1,15,1,Victoria,146.164642,-38.671087 +2021,11,16,1,New South Wales,153.394944,-28.276042 +2023,10,15,1,Queensland,153.002686,-27.888953 +2020,5,26,1,New South Wales,153.377048,-28.254337 +2022,2,19,1,Queensland,153.102003,-27.532615 +2023,2,20,1,South Australia,138.768595,-35.103414 +2023,12,24,1,South Australia,138.722009,-34.891771 +2024,9,26,1,Queensland,146.870895,-19.120564 +2023,11,1,1,Queensland,152.003322,-27.412453 +2024,6,7,1,South Australia,138.809749,-35.239947 +2022,11,12,1,Queensland,152.079469,-26.974237 +2024,9,24,1,New South Wales,146.546662,-34.751878 +2020,7,13,1,Victoria,146.163895,-38.671325 +2023,7,9,1,Victoria,143.664715,-38.748048 +2023,12,26,1,Victoria,145.453795,-36.869204 +2024,6,30,1,Queensland,152.510788,-28.085875 +2024,1,25,1,Queensland,153.09279,-27.527062 +2021,11,2,1,Queensland,153.049662,-27.528483 +2023,11,4,1,Queensland,153.093378,-27.524107 +2023,12,29,1,Queensland,152.073532,-27.359273 +2024,10,2,1,New South Wales,151.102276,-33.133084 +2024,11,3,1,South Australia,138.72256,-34.890978 +2022,6,28,1,Queensland,153.245467,-27.490334 +2024,7,21,1,Queensland,153.091538,-27.527141 +2024,3,13,1,Queensland,153.105331,-27.531303 +2021,10,15,1,Queensland,153.085586,-27.506895 +2022,11,9,1,Victoria,143.887554,-37.673795 +2023,5,6,1,Queensland,153.092429,-27.525065 +2024,8,18,1,Queensland,153.090107,-27.526321 +2024,5,23,1,New South Wales,151.24286,-33.126803 +2024,6,8,1,Queensland,153.104513,-27.530055 +2023,2,13,1,South Australia,138.711272,-34.901192 +2021,1,6,1,South Australia,138.718557,-34.872283 +2023,10,19,1,Victoria,145.454987,-36.868305 +2024,3,9,1,Queensland,153.092813,-27.527642 +2022,4,5,1,Australian Capital Territory,148.91,-35.46 +2024,1,2,1,Queensland,153.092493,-27.527242 +2023,1,25,1,Queensland,152.060378,-27.260139 +2024,2,13,1,Queensland,152.042192,-27.300092 +2024,6,28,1,New South Wales,150.824722,-34.101905 +2021,10,12,1,New South Wales,153.400562,-28.257567 +2022,11,25,1,Queensland,153.073951,-27.54603 +2023,5,18,1,Queensland,152.865697,-28.211702 +2021,11,22,1,South Australia,138.58027,-35.059373 +2023,12,10,1,New South Wales,153.629249,-28.637345 +2022,7,14,1,Victoria,143.858882,-38.666529 +2023,11,26,1,Queensland,153.078992,-27.512871 +2022,6,2,1,Queensland,152.906577,-28.173872 +2021,10,15,1,Queensland,151.852372,-26.542001 +2022,9,20,1,Queensland,151.743672,-26.585584 +2024,7,8,1,South Australia,138.733504,-34.885997 +2023,11,24,1,New South Wales,153.125149,-30.294112 +2024,6,9,1,Queensland,153.091835,-27.526959 +2021,8,23,1,Victoria,143.902979,-37.590268 +2024,9,10,1,Queensland,153.092464,-27.528046 +2022,12,17,1,Queensland,153.107263,-27.528943 +2023,6,11,1,Queensland,153.091831,-27.526842 +2024,8,10,1,Queensland,153.093042,-27.523981 +2022,7,6,1,Victoria,144.31122,-37.290881 +2020,10,30,1,Queensland,153.051009,-27.527878 +2023,10,14,1,Queensland,153.11091,-27.528997 +2022,2,13,1,Queensland,152.924682,-27.441749 +2023,4,16,1,Queensland,153.091557,-27.527279 +2023,1,11,1,Queensland,153.073379,-27.542689 +2021,7,15,1,Victoria,143.664862,-38.77901 +2022,11,18,1,Victoria,142.364894,-38.320109 +2020,9,28,1,Queensland,153.326691,-28.012574 +2024,8,1,1,Queensland,153.192068,-27.703176 +2022,12,30,1,Victoria,146.110503,-38.682414 +2022,4,1,1,Queensland,151.692055,-26.177143 +2024,5,12,1,Victoria,142.860225,-38.471392 +2024,3,8,1,Queensland,153.10378,-27.529486 +2021,9,19,1,South Australia,138.734756,-34.933272 +2021,6,17,1,Queensland,153.057313,-27.551588 +2022,5,22,1,New South Wales,146.569141,-34.756202 +2024,2,25,1,Queensland,153.093222,-27.524894 +2024,10,12,1,Queensland,153.092364,-27.527959 +2020,8,29,1,Queensland,153.059058,-27.548428 +2024,9,29,1,Queensland,152.999596,-27.284072 +2024,3,19,1,Queensland,153.103736,-27.530019 +2021,10,31,1,Queensland,153.055499,-27.535901 +2023,10,31,1,Queensland,153.108257,-27.52711 +2023,10,11,1,Queensland,153.092125,-27.525729 +2023,8,21,1,Queensland,152.992447,-27.824263 +2020,10,15,1,Victoria,145.132158,-38.175529 +2024,5,21,1,South Australia,138.712801,-34.893822 +2024,6,3,1,New South Wales,153.280619,-29.019583 +2024,3,31,1,Victoria,145.10025,-38.401028 +2024,10,1,1,Queensland,153.104141,-27.816931 +2024,1,19,1,Queensland,153.103061,-27.527828 +2024,9,28,1,Queensland,153.090961,-27.525814 +2022,11,19,1,Queensland,151.56102,-27.801395 +2022,8,28,1,Queensland,153.375956,-27.918719 +2023,7,14,1,Victoria,146.131272,-38.824178 +2022,9,19,1,Queensland,152.1833,-27.53118 +2020,1,27,1,Queensland,153.068539,-27.546135 +2023,4,16,1,Victoria,142.631937,-38.341217 +2020,12,31,1,Queensland,153.51701,-27.424828 +2023,12,10,1,Victoria,147.083446,-38.148803 +2022,10,27,1,New South Wales,153.399708,-28.260555 +2021,5,6,1,Queensland,153.048223,-27.525728 +2022,10,6,1,Queensland,152.1833,-27.53118 +2023,5,6,1,Queensland,153.093665,-27.525131 +2024,1,14,1,Victoria,141.477305,-37.795548 +2024,10,29,1,Queensland,152.042209,-27.300324 +2023,12,21,1,New South Wales,150.822179,-34.101886 +2024,11,5,1,Queensland,153.104866,-27.529583 +2020,10,26,1,Queensland,153.001603,-27.165158 +2023,11,26,1,Queensland,153.072189,-27.544136 +2024,11,1,1,Queensland,152.70288,-27.093644 +2024,9,23,1,South Australia,138.701937,-34.903003 +2021,10,23,1,Queensland,151.9474,-27.3191 +2020,1,17,1,South Australia,137.196223,-35.701956 +2021,10,4,1,Victoria,146.164122,-38.671525 +2024,1,6,1,Queensland,153.072582,-27.543522 +2023,5,11,1,Victoria,145.314597,-38.374195 +2021,6,21,1,Queensland,153.053338,-27.550012 +2023,3,19,1,Queensland,153.439072,-27.394178 +2023,7,5,1,Queensland,153.114963,-27.689332 +2024,11,5,1,Victoria,145.273063,-38.382953 +2022,11,25,1,Queensland,151.536083,-27.711354 +2020,4,10,1,Queensland,152.859615,-27.542516 +2024,10,12,1,New South Wales,153.397818,-28.26152 +2024,10,27,1,Queensland,151.819833,-26.39493 +2022,11,3,1,Queensland,153.057525,-27.551722 +2022,5,22,1,New South Wales,146.570236,-34.755821 +2020,2,25,1,Queensland,153.058004,-27.550742 +2021,3,29,1,Queensland,153.102325,-27.734433 +2021,12,14,1,Queensland,153.211957,-27.948807 +2021,9,24,1,New South Wales,151.095292,-33.076764 +2023,5,27,1,Queensland,152.05992,-27.260153 +2024,8,18,1,Queensland,153.091726,-27.526895 +2023,12,8,1,Queensland,146.866043,-19.105785 +2023,7,28,1,Queensland,153.111767,-27.528889 +2022,10,1,1,South Australia,138.653884,-34.976412 +2023,11,16,1,Queensland,153.187472,-28.193347 +2022,7,11,1,South Australia,138.702857,-34.899652 +2023,8,24,1,Victoria,142.363478,-38.318946 +2024,3,31,1,Queensland,153.09096,-27.52642 +2021,11,23,1,Victoria,143.891295,-37.644661 +2022,9,21,1,Queensland,153.036541,-27.532382 +2023,12,15,1,Queensland,148.337468,-20.363394 +2020,8,13,1,New South Wales,153.377437,-28.253965 +2022,6,12,1,Victoria,145.263377,-38.129441 +2024,4,13,1,Queensland,153.091378,-27.527331 +2023,11,16,1,Queensland,151.551622,-27.812939 +2021,2,6,1,Queensland,153.07839,-27.506432 +2024,2,6,1,South Australia,138.740371,-34.829087 +2023,3,5,1,South Australia,138.683601,-34.94844 +2022,2,15,1,Queensland,152.924098,-27.477119 +2021,6,3,1,Queensland,153.056157,-27.551658 +2023,11,7,1,Queensland,152.045341,-27.258905 +2022,8,8,1,Queensland,153.245362,-27.489847 +2024,5,12,1,Queensland,153.093137,-27.528347 +2021,8,5,1,Queensland,153.072583,-27.542402 +2024,2,19,1,Victoria,143.874876,-37.596488 +2020,2,9,1,South Australia,138.632447,-35.02833 +2023,10,29,1,Queensland,153.091807,-27.527155 +2023,12,16,1,Queensland,153.092424,-27.524966 +2023,1,7,1,Victoria,146.396288,-38.557064 +2022,11,28,1,Queensland,151.615321,-27.698725 +2021,10,12,1,South Australia,138.718712,-34.891917 +2023,2,26,1,Queensland,153.053611,-27.54945 +2023,7,12,1,Queensland,146.831449,-19.142249 +2024,3,12,1,Queensland,152.103042,-27.570433 +2023,1,7,1,Victoria,146.703611,-36.360278 +2021,3,14,1,Victoria,146.164183,-38.671283 +2023,10,22,1,South Australia,138.658788,-35.004625 +2023,10,30,1,Queensland,153.082466,-27.510907 +2023,6,25,1,Victoria,141.464065,-38.180159 +2023,8,26,1,Queensland,152.046291,-27.255695 +2024,4,19,1,Victoria,143.535645,-38.805878 +2023,1,10,1,Queensland,153.073429,-27.547078 +2022,1,17,1,Victoria,145.12766,-38.18085 +2023,7,1,1,Victoria,145.262742,-38.483938 +2022,10,16,1,South Australia,138.570949,-35.035222 +2024,4,26,1,Victoria,143.750685,-37.796177 +2022,11,13,1,Victoria,144.135181,-37.861426 +2024,4,28,1,Victoria,144.289159,-37.849417 +2021,12,6,1,New South Wales,151.095379,-33.076684 +2023,12,4,1,Queensland,152.648396,-26.645435 +2024,6,21,1,South Australia,138.730167,-34.886509 +2021,12,31,1,South Australia,138.655767,-34.866338 +2024,5,20,1,South Australia,138.71426,-34.873809 +2024,10,6,1,Queensland,153.096401,-27.848554 +2022,2,8,1,Victoria,144.093933,-37.624162 +2021,11,20,1,New South Wales,151.769516,-32.204145 +2022,9,1,1,South Australia,138.706376,-34.940519 +2022,9,25,1,Victoria,145.763337,-38.537155 +2022,10,9,1,Queensland,152.868356,-28.219507 +2023,4,14,1,Queensland,152.419728,-27.247098 +2022,12,31,1,Queensland,153.073748,-27.545739 +2023,1,19,1,Victoria,143.665121,-38.779051 +2023,3,16,1,Queensland,151.997394,-26.678302 +2022,1,5,1,South Australia,138.656903,-34.865315 +2020,5,8,1,Queensland,153.063312,-27.550293 +2023,11,27,1,Victoria,141.476932,-37.793532 +2021,9,24,1,Queensland,151.689454,-26.179395 +2024,7,14,1,Queensland,153.093266,-27.528251 +2022,8,27,1,Victoria,145.301543,-38.311822 +2023,1,3,1,Victoria,144.470477,-37.475005 +2024,10,30,1,Queensland,152.714507,-26.829613 +2023,3,26,1,Queensland,153.001239,-27.284861 +2024,9,17,1,New South Wales,146.597472,-34.770283 +2021,4,29,1,Victoria,146.163728,-38.671253 +2021,10,13,1,Queensland,153.057567,-27.551572 +2021,10,18,1,South Australia,138.718305,-34.891729 +2021,12,13,1,New South Wales,152.379579,-31.908772 +2023,11,5,1,Queensland,152.897078,-28.203106 +2021,1,6,1,New South Wales,153.375144,-28.252489 +2023,3,28,1,Victoria,145.538112,-36.940346 +2023,9,5,1,Queensland,153.111517,-27.527891 +2023,8,7,1,New South Wales,152.926743,-31.460873 +2023,1,28,1,Queensland,151.889236,-27.597017 +2023,12,21,1,South Australia,138.732501,-34.889936 +2024,8,26,1,Queensland,146.868331,-19.127242 +2024,1,2,1,Queensland,153.092506,-27.527191 +2021,6,13,1,Victoria,145.171431,-38.171057 +2024,10,16,1,Queensland,151.757442,-26.163312 +2024,2,17,1,Queensland,151.820706,-26.363167 +2024,8,3,1,Queensland,153.092404,-27.528459 +2022,10,19,1,New South Wales,153.396811,-28.266404 +2023,4,8,1,Queensland,153.091537,-27.527244 +2021,8,24,1,Queensland,152.865934,-28.211403 +2024,2,18,1,South Australia,137.319488,-35.775497 +2024,7,3,1,Victoria,143.617237,-38.778229 +2024,10,5,1,Queensland,153.11001,-27.527698 +2024,1,6,1,Queensland,153.103325,-27.529854 +2022,9,18,1,Queensland,151.804143,-26.447243 +2024,7,3,1,Victoria,145.449142,-36.830208 +2023,7,30,1,Queensland,153.000786,-27.284331 +2023,7,22,1,Queensland,153.000538,-27.284711 +2024,2,14,1,South Australia,136.882026,-35.763601 +2021,10,1,1,Victoria,143.876783,-37.599065 +2023,11,5,1,Queensland,152.003053,-27.413588 +2020,7,30,1,Queensland,153.058321,-27.551373 +2021,9,7,1,Queensland,152.400926,-27.457853 +2022,10,5,1,Queensland,153.430117,-27.492509 +2023,10,30,1,Queensland,153.103275,-27.530245 +2024,5,19,1,Queensland,153.092548,-27.527671 +2020,10,13,1,Queensland,153.057506,-27.551471 +2024,9,2,1,Victoria,142.022098,-37.749545 +2023,10,14,1,Victoria,145.302503,-38.384102 +2024,6,9,1,Queensland,153.090894,-27.527442 +2024,3,20,1,Queensland,153.10344,-27.530201 +2024,3,31,1,Victoria,145.312516,-38.383798 +2023,10,10,1,Queensland,153.110267,-27.528139 +2024,5,3,1,Queensland,153.072977,-27.546376 +2024,8,24,1,Queensland,152.93623,-27.5716 +2022,4,2,1,Victoria,143.552855,-38.7463 +2022,8,7,1,South Australia,138.703053,-34.903012 +2023,10,22,1,New South Wales,153.003494,-30.533482 +2024,10,7,1,Queensland,153.092265,-27.52841 +2020,1,1,1,Victoria,147.724969,-37.926106 +2024,9,12,1,Queensland,152.993938,-27.823538 +2024,6,23,1,Queensland,153.034016,-27.528269 +2020,11,3,1,Queensland,153.048846,-27.550337 +2023,6,17,1,Queensland,153.091376,-27.527286 +2023,7,29,1,Queensland,153.000661,-27.284816 +2024,8,23,1,Victoria,147.727158,-37.921775 +2023,4,10,1,Queensland,153.093352,-27.52746 +2022,9,12,1,South Australia,138.731874,-34.890621 +2023,10,2,1,Queensland,153.191404,-27.702621 +2024,6,3,1,South Australia,138.720583,-34.892005 +2023,2,7,1,Queensland,153.105314,-27.531437 +2023,11,2,1,Queensland,153.078211,-27.507317 +2023,10,25,1,Queensland,153.093116,-27.527807 +2024,9,21,1,Queensland,146.863805,-19.150448 +2022,11,19,1,Queensland,151.543503,-27.67137 +2024,1,13,1,Victoria,142.363482,-38.318439 +2023,1,17,1,South Australia,138.594124,-35.014789 +2023,10,22,1,Queensland,153.282046,-27.556806 +2023,10,6,1,Queensland,151.78296,-26.652899 +2021,11,25,1,Queensland,152.988006,-27.778343 +2024,7,28,1,Queensland,153.090301,-27.526732 +2024,4,18,1,Queensland,153.0522,-27.548978 +2024,7,26,1,Queensland,153.091251,-27.526978 +2024,11,6,1,Queensland,153.160433,-27.659889 +2024,8,5,1,South Australia,138.710376,-34.857284 +2024,3,11,1,South Australia,138.608057,-35.015046 +2022,6,19,1,New South Wales,153.400202,-28.260562 +2024,11,9,1,Queensland,151.918061,-27.320753 +2023,11,26,1,Queensland,153.06901,-27.541455 +2023,3,28,1,Queensland,153.109704,-27.52968 +2023,11,12,1,South Australia,138.683584,-34.948516 +2021,2,24,1,Queensland,153.055108,-27.55049 +2023,3,15,1,Queensland,153.103565,-27.529819 +2024,9,10,1,Queensland,151.698264,-26.173674 +2021,10,4,1,South Australia,138.654407,-34.873055 +2024,3,23,1,Queensland,153.074546,-27.546393 +2024,3,19,1,South Australia,138.729049,-34.88749 +2021,8,5,1,Queensland,153.076835,-27.541188 +2022,11,22,1,Queensland,153.072487,-27.543309 +2023,8,3,1,Queensland,152.249225,-27.495004 +2023,11,26,1,Queensland,153.072189,-27.544136 +2024,6,30,1,Queensland,152.614288,-27.33782 +2023,12,9,1,Queensland,153.109035,-27.527981 +2023,4,23,1,Queensland,152.897449,-27.632467 +2024,7,7,1,Queensland,153.090408,-27.526879 +2024,4,4,1,Victoria,143.900693,-37.639952 +2020,8,16,1,Victoria,142.308167,-38.012484 +2021,9,12,1,New South Wales,153.375547,-28.252318 +2023,10,29,1,Victoria,143.996813,-37.689641 +2024,5,6,1,Victoria,142.974197,-38.498481 +2023,7,29,1,Queensland,152.963993,-27.276545 +2024,6,16,1,Victoria,144.248018,-37.816377 +2023,11,24,1,New South Wales,153.125528,-30.294758 +2021,6,1,1,South Australia,138.775992,-34.883009 +2022,3,11,1,South Australia,138.593695,-35.201272 +2024,4,6,1,Queensland,153.092315,-27.525554 +2022,3,21,1,South Australia,138.638119,-34.97137 +2024,5,11,1,South Australia,138.6398,-35.006378 +2023,5,11,1,Queensland,153.082954,-27.514732 +2024,3,7,1,New South Wales,150.586163,-29.857325 +2024,7,14,1,Queensland,153.0922,-27.527749 +2023,9,24,1,Queensland,153.443671,-27.394677 +2023,5,5,1,Queensland,153.281741,-28.047466 +2024,4,1,1,Queensland,153.066589,-27.541071 +2022,7,7,1,New South Wales,149.921822,-34.922658 +2020,8,14,1,South Australia,138.702341,-34.903114 +2023,5,21,1,Queensland,153.092819,-27.525356 +2021,2,7,1,South Australia,138.707174,-35.216263 +2023,2,8,1,Queensland,153.155023,-27.750573 +2022,8,2,1,New South Wales,151.100297,-33.134433 +2024,8,25,1,Queensland,153.091965,-27.526938 +2023,9,8,1,Queensland,153.108438,-27.527294 +2021,7,2,1,New South Wales,151.650537,-32.503533 +2024,7,13,1,Queensland,153.111125,-27.528847 +2023,9,24,1,Queensland,153.43898,-27.397337 +2023,4,22,1,Queensland,153.092225,-27.528095 +2024,8,11,1,Victoria,141.927332,-38.084781 +2020,5,17,1,Queensland,152.989212,-27.170088 +2022,2,28,1,Victoria,145.132388,-38.175573 +2023,12,27,1,Queensland,152.939287,-27.572022 +2021,10,6,1,Queensland,153.079518,-27.515019 +2024,5,7,1,South Australia,138.732236,-34.889603 +2024,1,29,1,Victoria,142.584718,-38.331148 +2024,5,21,1,Queensland,153.103355,-27.530319 +2021,8,25,1,Queensland,152.086633,-27.697117 +2023,10,27,1,Queensland,153.26325,-27.649104 +2021,5,13,1,Victoria,146.163697,-38.671295 +2023,9,19,1,Queensland,153.383276,-27.920346 +2022,11,18,1,Victoria,142.364936,-38.314729 +2023,10,14,1,Queensland,152.278733,-27.562075 +2024,7,12,1,Queensland,153.103752,-27.529646 +2022,10,25,1,Victoria,145.312078,-38.321682 +2023,4,9,1,Queensland,153.09068,-27.526513 +2024,5,3,1,Queensland,153.059047,-27.551367 +2022,8,24,1,Queensland,153.069608,-27.509963 +2022,4,5,1,Queensland,153.102416,-27.734818 +2024,11,8,1,Queensland,151.751202,-26.156562 +2023,12,22,1,South Australia,138.700411,-34.90159 +2023,11,15,1,Victoria,147.731567,-37.923047 +2023,8,8,1,Victoria,143.880151,-37.607851 +2023,7,9,1,Queensland,153.001281,-27.284523 +2023,12,6,1,Victoria,145.050203,-38.266262 +2020,7,16,1,Queensland,144.436507,-20.409652 +2021,8,13,1,Victoria,141.580933,-37.829692 +2024,1,10,1,South Australia,138.643447,-35.081989 +2023,10,9,1,Queensland,151.828978,-27.39072 +2023,11,6,1,Victoria,148.257278,-37.155175 +2022,2,23,1,South Australia,138.714538,-34.812283 +2020,9,21,1,Queensland,153.069027,-27.545432 +2024,9,8,1,Queensland,152.998912,-27.283729 +2024,2,26,1,South Australia,138.722542,-34.889551 +2024,4,6,1,Queensland,153.10327,-27.528428 +2024,5,5,1,Queensland,146.870711,-19.131614 +2023,9,24,1,Victoria,143.860697,-38.668042 +2023,9,24,1,Queensland,153.378983,-27.916068 +2023,10,15,1,Queensland,153.106767,-27.527446 +2021,11,14,1,Queensland,152.863892,-27.320038 +2024,8,3,1,Queensland,153.092329,-27.528499 +2024,3,3,1,Queensland,153.09222,-27.52737 +2021,10,20,1,Victoria,145.676936,-37.762978 +2022,12,3,1,Queensland,153.109927,-27.529307 +2024,11,5,1,Queensland,153.054756,-27.552004 +2020,2,23,1,South Australia,138.717595,-35.013265 +2024,11,14,1,South Australia,138.716243,-34.892406 +2024,1,25,1,Queensland,153.092347,-27.525765 +2020,8,3,1,Queensland,146.031856,-18.977257 +2023,5,6,1,Queensland,152.249514,-27.496771 +2024,8,13,1,Victoria,143.666261,-38.752298 +2022,12,23,1,Queensland,153.104469,-27.529638 +2023,10,24,1,Queensland,153.111447,-27.527841 +2023,3,13,1,Queensland,153.091832,-27.527187 +2022,11,1,1,Victoria,142.026952,-37.74849 +2023,2,28,1,Queensland,153.105326,-27.530064 +2023,10,23,1,Queensland,153.110029,-27.527078 +2023,6,24,1,Queensland,153.111129,-27.527278 +2022,4,27,1,Queensland,153.055304,-27.536758 +2020,5,19,1,Queensland,153.063956,-27.550695 +2024,7,7,1,Queensland,151.778183,-26.308988 +2021,1,11,1,Queensland,152.949102,-27.368394 +2022,9,4,1,New South Wales,152.901886,-31.442446 +2021,10,23,1,Queensland,152.807851,-27.527759 +2023,6,16,1,Queensland,152.0045,-27.414663 +2023,6,18,1,Queensland,153.091056,-27.526484 +2020,9,15,1,Queensland,153.055915,-27.544228 +2024,11,10,1,Victoria,143.899417,-37.640954 +2024,10,2,1,New South Wales,150.013244,-34.805347 +2024,9,2,1,Queensland,152.632138,-28.068656 +2022,3,13,1,Victoria,146.387244,-38.358395 +2022,11,27,1,Queensland,152.046333,-27.25525 +2022,3,13,1,Queensland,153.078233,-27.500362 +2024,10,7,1,Queensland,152.993203,-27.823815 +2024,11,3,1,Queensland,153.082011,-27.507806 +2023,12,9,1,Queensland,153.090682,-27.526327 +2023,3,27,1,Queensland,153.090758,-27.526865 +2023,4,14,1,Queensland,153.113593,-27.528453 +2023,2,6,1,Victoria,143.640092,-38.777583 +2021,9,18,1,Queensland,153.374655,-27.914064 +2023,10,9,1,South Australia,138.733184,-34.890824 +2023,8,14,1,Queensland,153.094489,-27.533108 +2023,6,17,1,Queensland,153.092299,-27.528137 +2020,11,11,1,Queensland,153.054133,-27.539283 +2024,5,2,1,Queensland,153.092982,-27.527661 +2024,3,6,1,New South Wales,150.586043,-29.857284 +2023,10,13,1,Queensland,152.279358,-27.562186 +2022,5,13,1,Victoria,148.266113,-37.218937 +2023,12,30,1,Queensland,153.080684,-27.511525 +2023,11,13,1,Queensland,153.091928,-27.525151 +2023,9,12,1,Victoria,146.528952,-36.307275 +2020,8,24,1,Victoria,145.132201,-38.175455 +2021,7,19,1,New South Wales,151.518981,-30.520915 +2022,8,8,1,Queensland,153.18909,-28.172364 +2023,12,7,1,South Australia,138.730142,-34.89037 +2023,2,23,1,Queensland,152.860743,-27.546292 +2023,6,14,1,Queensland,153.075143,-27.506708 +2020,11,12,1,Queensland,152.989028,-27.171367 +2024,3,17,1,New South Wales,153.629497,-28.637567 +2022,8,27,1,New South Wales,153.401353,-28.256257 +2024,4,13,1,South Australia,138.729642,-34.98871 +2024,11,2,1,Queensland,151.99682,-26.302906 +2024,5,2,1,Victoria,143.729958,-37.641513 +2023,7,7,1,Queensland,153.057718,-27.546338 +2024,7,14,1,Victoria,142.363497,-38.318812 +2020,9,18,1,Queensland,153.069677,-27.510535 +2024,9,28,1,New South Wales,146.590072,-34.75657 +2022,3,15,1,South Australia,138.684765,-34.957534 +2024,8,12,1,Queensland,151.58393,-28.917913 +2022,5,24,1,Queensland,152.1833,-27.53118 +2023,11,3,1,Queensland,153.092684,-27.528464 +2023,12,16,1,South Australia,138.702029,-34.930017 +2020,7,24,1,South Australia,138.700849,-34.959701 +2023,4,22,1,New South Wales,151.095047,-33.076436 +2024,10,11,1,Victoria,144.253904,-37.903064 +2024,10,27,1,Queensland,151.388962,-27.9486 +2024,5,3,1,South Australia,138.730235,-34.890773 +2024,8,4,1,Queensland,153.091046,-27.526436 +2023,5,31,1,Queensland,153.111693,-27.527843 +2023,7,8,1,Queensland,153.051551,-27.549026 +2024,7,23,1,Queensland,152.991828,-27.824094 +2022,6,26,1,Queensland,153.083114,-27.514766 +2022,3,14,1,Queensland,153.060915,-27.534151 +2024,9,13,1,Queensland,152.315033,-27.444313 +2023,3,10,1,Victoria,145.619767,-37.098105 +2024,10,5,1,Queensland,153.093393,-27.524906 +2021,11,29,1,Queensland,151.546582,-27.79311 +2022,9,23,1,Victoria,143.653068,-38.773025 +2024,7,29,1,Queensland,152.67734,-27.985757 +2022,12,10,1,Queensland,152.833386,-28.094954 +2024,2,20,1,New South Wales,151.518981,-30.520915 +2023,3,24,1,Queensland,153.092838,-27.528572 +2021,12,24,1,New South Wales,145.581238,-35.848312 +2024,4,29,1,Queensland,153.104336,-27.529903 +2023,6,28,1,Queensland,153.107597,-27.527275 +2020,2,15,1,South Australia,138.695256,-34.957897 +2024,2,5,1,Victoria,143.86113,-38.669925 +2024,9,22,1,South Australia,138.723271,-34.904087 +2023,10,30,1,Victoria,145.70062,-36.821569 +2020,10,6,1,Queensland,153.058259,-27.547518 +2024,10,6,1,Queensland,153.09234,-27.525755 +2024,1,3,1,Queensland,153.111504,-27.527731 +2021,6,2,1,Queensland,153.060163,-27.53323 +2024,2,18,1,Queensland,153.091069,-27.526308 +2024,2,16,1,Victoria,141.92453,-38.060875 +2023,1,7,1,Queensland,153.108324,-27.527063 +2022,10,14,1,South Australia,138.71119,-35.021159 +2023,4,26,1,Queensland,153.538392,-27.431688 +2020,9,12,1,Queensland,153.05617,-27.544413 +2023,4,6,1,Queensland,153.282317,-27.5263 +2022,11,25,1,Queensland,151.564892,-27.693821 +2024,1,26,1,South Australia,138.55987,-35.260503 +2023,12,21,1,South Australia,138.730625,-34.890531 +2023,11,5,1,Queensland,153.000498,-27.284806 +2023,12,7,1,Queensland,151.773557,-26.193736 +2020,9,15,1,Queensland,153.057511,-27.551016 +2023,12,25,1,Queensland,153.0927,-27.525828 +2023,7,3,1,Queensland,151.822478,-27.62471 +2024,6,3,1,Queensland,153.109712,-27.529164 +2022,8,20,1,New South Wales,150.793656,-34.13796 +2023,1,2,1,Queensland,153.073211,-27.545678 +2020,10,5,1,Victoria,143.89601,-37.579232 +2023,11,22,1,Queensland,152.078767,-26.975 +2023,8,14,1,Victoria,144.365298,-37.667436 +2024,11,6,1,Queensland,153.160433,-27.659889 +2023,3,26,1,Queensland,153.050251,-27.549311 +2023,4,3,1,Queensland,153.036191,-27.535913 +2024,9,6,1,Victoria,144.659469,-37.442094 +2023,5,6,1,Queensland,153.092642,-27.5285 +2022,9,3,1,Queensland,153.08194,-27.54452 +2024,3,10,1,Victoria,147.732055,-37.913825 +2023,10,10,1,Queensland,152.045334,-27.258093 +2022,10,1,1,South Australia,138.576511,-35.061154 +2021,9,11,1,Victoria,145.130609,-38.174675 +2024,5,18,1,Queensland,153.058273,-27.551573 +2023,3,13,1,South Australia,137.49395,-35.708153 +2022,11,17,1,Queensland,153.072833,-27.545433 +2023,10,15,1,Queensland,153.0902,-27.525586 +2021,1,31,1,South Australia,138.499276,-35.164444 +2020,9,29,1,Queensland,152.929083,-27.278453 +2022,5,31,1,Queensland,153.082686,-27.50717 +2021,2,7,1,Victoria,142.366772,-38.31558 +2021,10,28,1,Victoria,146.163742,-38.671112 +2024,7,18,1,Queensland,153.09045,-27.526837 +2022,6,8,1,Australian Capital Territory,148.91,-35.46 +2024,3,3,1,Queensland,153.09093,-27.526952 +2024,6,20,1,Queensland,152.80005,-26.099611 +2023,11,3,1,Queensland,153.091726,-27.527136 +2022,12,12,1,Queensland,153.356811,-27.938965 +2023,11,7,1,Queensland,151.940649,-27.388909 +2021,8,27,1,Queensland,152.449594,-26.637332 +2024,2,2,1,Victoria,145.267762,-38.131168 +2021,7,9,1,Queensland,153.058064,-27.551394 +2024,7,7,1,Queensland,153.066816,-27.250419 +2023,8,20,1,Queensland,153.090271,-27.526582 +2023,6,18,1,Victoria,143.857885,-38.670082 +2023,1,1,1,Queensland,153.090622,-27.526363 +2024,4,22,1,Victoria,143.513078,-38.833917 +2022,11,29,1,New South Wales,150.858044,-34.052718 +2024,1,13,1,Queensland,152.102704,-27.569664 +2023,8,27,1,Victoria,147.731936,-37.922846 +2021,12,9,1,Queensland,153.442105,-27.39848 +2024,10,11,1,Queensland,152.226099,-27.29638 +2022,10,20,1,Queensland,152.928702,-27.574537 +2021,1,13,1,Victoria,146.163614,-38.671153 +2024,2,19,1,Victoria,143.874597,-37.596399 +2024,10,5,1,Victoria,145.26158,-38.48412 +2023,1,5,1,Queensland,153.092693,-27.525729 +2020,10,16,1,Victoria,146.163789,-38.671112 +2021,10,5,1,New South Wales,153.377367,-28.254254 +2023,7,6,1,Queensland,152.627474,-27.910416 +2024,4,28,1,Queensland,152.856047,-26.644437 +2022,1,4,1,South Australia,138.656825,-34.865203 +2024,2,14,1,Victoria,146.118596,-38.691996 +2024,10,27,1,Queensland,153.091874,-27.526931 +2023,5,26,1,Queensland,153.10717,-27.527427 +2022,9,7,1,Queensland,153.052005,-27.538514 +2023,9,17,1,Victoria,145.371818,-38.385195 +2022,12,10,1,Queensland,153.103422,-27.529944 +2020,10,8,1,Queensland,153.063943,-27.540165 +2022,11,22,1,South Australia,137.493488,-35.707125 +2023,1,17,1,South Australia,138.614144,-34.907555 +2024,10,24,1,South Australia,138.638829,-35.004532 +2023,5,10,1,Queensland,153.059998,-27.550667 +2024,8,7,1,Queensland,151.79896,-26.138698 +2021,10,20,1,New South Wales,153.402553,-28.258941 +2023,9,15,1,Queensland,153.106773,-27.527849 +2022,2,8,1,Victoria,145.271663,-38.13354 +2023,4,1,1,Queensland,153.282301,-27.526299 +2024,9,26,1,Queensland,152.852971,-28.066304 +2024,9,7,1,Victoria,146.387952,-38.356961 +2024,4,25,1,Queensland,153.091766,-27.527198 +2024,9,10,1,Victoria,144.410449,-37.961293 +2020,4,6,1,Queensland,153.060763,-27.532906 +2022,8,16,1,Victoria,143.85878,-38.666583 +2024,10,5,1,Queensland,153.104277,-27.52815 +2023,7,23,1,Queensland,151.766256,-26.172552 +2024,2,10,1,Queensland,153.091861,-27.527141 +2024,8,10,1,Victoria,145.044917,-38.265751 +2021,1,22,1,Queensland,153.057324,-27.551139 +2022,1,9,1,Victoria,146.164153,-38.671322 +2020,4,9,1,Queensland,153.068226,-27.545981 +2024,4,14,1,Queensland,153.350273,-27.936386 +2024,4,18,1,Victoria,143.514723,-38.836998 +2024,11,2,1,Victoria,143.653947,-38.769958 +2024,3,23,1,Queensland,153.057173,-27.550596 +2024,4,28,1,Queensland,153.092271,-27.528001 +2024,9,15,1,New South Wales,146.576422,-34.753547 +2023,7,25,1,Queensland,153.109751,-27.529645 +2023,9,2,1,Queensland,152.045213,-27.258107 +2021,5,13,1,New South Wales,153.401382,-28.260223 +2023,9,8,1,Queensland,153.092042,-27.527055 +2024,4,20,1,Queensland,153.090848,-27.527387 +2021,9,16,1,Victoria,142.363418,-38.318924 +2024,10,23,1,Queensland,146.86453,-19.140086 +2024,2,24,1,Victoria,141.632387,-38.128167 +2024,11,9,1,Queensland,153.092494,-27.528633 +2023,9,17,1,Victoria,145.521103,-37.135658 +2022,10,10,1,Victoria,146.468705,-36.359867 +2023,9,22,1,Queensland,153.440994,-27.393408 +2024,1,6,1,Queensland,153.092173,-27.525635 +2022,9,13,1,South Australia,138.687247,-34.782661 +2023,8,22,1,Queensland,153.090797,-27.526808 +2020,1,17,1,South Australia,138.747425,-34.893833 +2020,9,14,1,New South Wales,149.368806,-36.013869 +2022,12,17,1,Queensland,153.076209,-27.545867 +2023,11,11,1,Queensland,151.65214,-27.633634 +2022,11,27,1,Queensland,153.073089,-27.545991 +2023,2,12,1,Queensland,152.954154,-27.971869 +2023,1,2,1,Queensland,151.971774,-26.165406 +2022,10,11,1,Queensland,151.261026,-28.102067 +2024,5,10,1,Victoria,145.268385,-38.131123 +2020,9,30,1,South Australia,138.692651,-34.955859 +2022,7,18,1,Queensland,153.05731,-27.543322 +2024,1,20,1,New South Wales,153.077359,-30.928599 +2023,11,24,1,Queensland,153.105221,-27.529154 +2024,10,20,1,Queensland,151.945388,-27.613895 +2024,10,4,1,Victoria,147.729028,-37.924543 +2021,2,20,1,Victoria,143.912665,-37.651986 +2022,11,14,1,Queensland,146.868392,-19.125836 +2022,2,7,1,Victoria,144.023397,-38.397488 +2024,10,20,1,Queensland,153.090552,-27.525872 +2021,10,8,1,Victoria,147.715758,-37.648903 +2024,11,10,1,Queensland,152.003206,-27.414197 +2023,10,12,1,New South Wales,151.245788,-33.169068 +2023,11,17,1,Queensland,153.072753,-27.54233 +2023,2,23,1,Queensland,151.89396,-27.596929 +2020,8,7,1,Queensland,153.057655,-27.534829 +2022,3,15,1,Victoria,149.758998,-37.561116 +2024,6,8,1,Queensland,153.091787,-27.52691 +2023,10,31,1,Queensland,152.044954,-27.258271 +2023,1,5,1,Queensland,151.987443,-27.577977 +2023,7,16,1,New South Wales,152.993035,-30.559812 +2022,3,20,1,New South Wales,152.892033,-31.438386 +2023,8,21,1,Queensland,153.101548,-27.567089 +2022,10,18,1,New South Wales,153.396349,-28.265076 +2024,8,7,1,Queensland,153.034739,-27.528624 +2022,8,5,1,New South Wales,150.89034,-34.048389 +2023,12,31,1,Queensland,153.092634,-27.528276 +2024,4,18,1,South Australia,138.713754,-34.892027 +2023,2,24,1,Queensland,153.090818,-27.526895 +2020,2,8,1,Queensland,153.059645,-27.544207 +2020,7,21,1,Queensland,153.063748,-27.552562 +2024,8,24,1,Queensland,153.090814,-27.525917 +2022,11,19,1,Queensland,152.055498,-27.258362 +2024,10,8,1,New South Wales,151.014965,-34.06601 +2023,12,31,1,Victoria,147.730547,-37.924188 +2024,5,12,1,Queensland,153.092504,-27.528091 +2020,10,14,1,Victoria,143.903482,-37.573099 +2022,11,6,1,Queensland,153.073564,-27.545771 +2024,1,22,1,Queensland,153.103112,-27.530213 +2022,11,14,1,Queensland,146.868212,-19.127547 +2023,7,8,1,Queensland,151.874817,-27.483677 +2022,4,24,1,Queensland,151.261093,-28.102052 +2023,4,23,1,Queensland,153.092929,-27.528337 +2020,5,29,1,South Australia,138.702385,-34.903066 +2023,11,25,1,New South Wales,150.822708,-34.1017 +2023,9,9,1,Queensland,151.977,-26.161014 +2023,3,28,1,Queensland,153.325012,-27.904217 +2023,10,30,1,Queensland,153.103113,-27.52655 +2024,10,27,1,Victoria,145.253929,-38.132301 +2022,11,25,1,Queensland,151.53609,-27.711343 +2022,2,9,1,South Australia,138.717282,-34.892232 +2024,11,8,1,Queensland,151.559325,-27.809713 +2020,11,29,1,Queensland,152.945588,-27.195168 +2020,9,13,1,Queensland,153.059867,-27.54956 +2023,7,11,1,New South Wales,152.993516,-30.559811 +2022,12,15,1,Victoria,146.404824,-38.347816 +2021,5,3,1,South Australia,138.688368,-34.928143 +2024,1,13,1,Victoria,143.840729,-37.704971 +2024,8,17,1,Queensland,153.091657,-27.526838 +2024,6,28,1,Victoria,146.567344,-38.428362 +2024,7,9,1,Queensland,153.104116,-27.529509 +2024,4,6,1,Queensland,153.092824,-27.528474 +2023,9,29,1,Queensland,153.101374,-27.528501 +2022,10,12,1,Victoria,144.088539,-37.633598 +2023,5,28,1,Queensland,153.0921,-27.527132 +2020,2,11,1,Victoria,141.443658,-38.10681 +2024,2,27,1,Queensland,153.105425,-27.529768 +2023,4,19,1,Victoria,143.889871,-37.615161 +2021,11,6,1,Queensland,153.233153,-27.939025 +2023,4,17,1,Queensland,153.109074,-27.527172 +2020,12,4,1,Queensland,153.283375,-27.5342 +2023,1,20,1,Queensland,153.069851,-27.542929 +2022,9,25,1,Queensland,153.042343,-27.548334 +2022,7,11,1,Queensland,152.890849,-27.647261 +2023,1,14,1,Queensland,153.102775,-27.527692 +2023,4,15,1,Queensland,153.090522,-27.525534 +2024,5,13,1,Queensland,153.08306,-27.514015 +2024,9,19,1,Queensland,153.092773,-27.525393 +2022,12,6,1,South Australia,138.71315,-34.893092 +2021,7,15,1,Queensland,146.934776,-19.42854 +2022,12,25,1,Queensland,152.430222,-27.300536 +2022,5,6,1,South Australia,138.722345,-34.858751 +2024,6,23,1,Queensland,152.641005,-27.453805 +2024,9,30,1,Queensland,153.090832,-27.901827 +2023,10,14,1,Queensland,153.091646,-27.52699 +2023,8,24,1,Queensland,152.00322,-27.41405 +2020,10,3,1,New South Wales,150.60137,-29.865961 +2023,1,7,1,Queensland,153.083544,-27.514118 +2023,8,6,1,Queensland,153.091246,-27.527364 +2022,11,27,1,Queensland,153.068377,-27.542554 +2024,6,8,1,Queensland,153.110873,-27.529756 +2023,8,6,1,Queensland,153.09192,-27.525819 +2022,9,14,1,Queensland,151.258087,-28.103719 +2023,12,6,1,Queensland,152.003236,-27.412767 +2024,3,1,1,New South Wales,146.547055,-34.750541 +2021,3,16,1,South Australia,138.721531,-34.890128 +2021,2,24,1,Queensland,153.055838,-27.550726 +2020,9,30,1,New South Wales,153.377433,-28.254249 +2024,8,15,1,Victoria,142.038187,-38.205872 +2024,1,3,1,Queensland,153.110687,-27.527499 +2024,10,7,1,New South Wales,146.55031,-34.736002 +2023,4,10,1,Queensland,153.108335,-27.527242 +2024,9,27,1,Queensland,152.447711,-26.210711 +2024,5,19,1,Queensland,153.000646,-27.28448 +2023,4,14,1,Queensland,153.108295,-27.527114 +2020,6,20,1,South Australia,138.6863,-34.866431 +2024,9,8,1,Queensland,153.090794,-27.525083 +2024,4,8,1,Queensland,152.992798,-27.823136 +2021,5,29,1,New South Wales,153.378113,-28.255192 +2020,6,2,1,Queensland,153.058754,-27.548204 +2020,9,12,1,Queensland,153.060485,-27.549918 +2021,8,27,1,Queensland,152.916429,-28.131891 +2024,9,4,1,Queensland,153.192164,-27.703185 +2023,9,21,1,Queensland,143.882842,-18.619673 +2024,8,28,1,Queensland,153.37485,-27.916849 +2024,5,13,1,South Australia,138.733074,-34.885995 +2024,4,12,1,Victoria,145.307938,-38.384712 +2024,4,14,1,Queensland,153.090294,-27.525602 +2020,12,13,1,Victoria,146.164251,-38.67184 +2023,2,26,1,Queensland,153.091478,-27.526658 +2024,3,26,1,New South Wales,151.0952,-33.07658 +2020,1,30,1,Queensland,153.054732,-27.538667 +2024,5,8,1,Victoria,142.977656,-38.498028 +2020,5,2,1,New South Wales,153.376548,-28.254426 +2020,6,2,1,Queensland,153.05896,-27.548476 +2023,4,15,1,Queensland,153.107938,-27.529068 +2024,2,5,1,Queensland,153.092528,-27.527498 +2024,1,19,1,Queensland,153.090015,-27.523318 +2021,10,2,1,Victoria,146.164044,-38.671525 +2020,10,8,1,Queensland,153.057418,-27.551205 +2020,7,30,1,Queensland,153.05791,-27.550955 +2023,6,3,1,Queensland,153.090879,-27.525858 +2024,11,24,1,Victoria,142.836167,-38.391514 +2023,1,20,1,Queensland,152.79223,-28.252291 +2023,8,7,1,Queensland,153.112449,-27.528815 +2023,9,26,1,New South Wales,150.821638,-34.101928 +2023,4,25,1,Queensland,153.09166,-27.527275 +2023,1,24,1,Victoria,142.370667,-38.324212 +2024,3,20,1,Queensland,153.103073,-27.529944 +2023,9,3,1,Queensland,153.094139,-27.566056 +2024,6,14,1,Queensland,153.14819,-27.763877 +2023,1,27,1,South Australia,138.862118,-34.615393 +2023,10,22,1,Queensland,152.939495,-27.214568 +2024,2,22,1,New South Wales,151.095336,-33.076375 +2023,3,24,1,Victoria,144.079615,-37.285593 +2020,2,17,1,Victoria,143.885331,-37.654354 +2023,5,5,1,Queensland,152.822862,-27.820365 +2024,10,2,1,Queensland,152.935363,-27.275383 +2020,10,6,1,Victoria,143.891778,-37.590056 +2022,12,30,1,Queensland,153.109866,-27.526834 +2020,9,30,1,South Australia,138.678514,-34.950439 +2022,11,27,1,Queensland,153.074013,-27.546036 +2021,8,28,1,Queensland,152.247078,-27.49628 +2022,12,16,1,Queensland,152.003166,-27.413705 +2024,9,19,1,Queensland,153.082872,-27.506839 +2024,1,30,1,Victoria,142.831746,-38.385431 +2022,6,18,1,Queensland,153.247987,-27.490773 +2023,11,26,1,South Australia,138.826933,-34.692015 +2023,8,19,1,Queensland,153.092501,-27.52753 +2020,9,30,1,South Australia,138.681402,-34.953743 +2023,12,23,1,Queensland,153.093157,-27.527787 +2020,4,28,1,Queensland,153.059606,-27.551026 +2023,10,16,1,Queensland,151.510895,-27.555467 +2023,10,8,1,Queensland,153.09217,-27.524206 +2023,4,26,1,Queensland,153.05862,-27.55123 +2024,1,21,1,Queensland,153.092707,-27.525579 +2022,10,19,1,New South Wales,152.825158,-31.653519 +2021,6,7,1,Victoria,146.164017,-38.671642 +2020,4,28,1,Queensland,153.057554,-27.551658 +2023,11,15,1,Queensland,153.111642,-27.527867 +2024,10,11,1,Queensland,152.226238,-27.297063 +2021,3,18,1,South Australia,138.597901,-35.015008 +2024,3,3,1,New South Wales,152.919753,-31.443267 +2024,3,28,1,New South Wales,151.095122,-33.076706 +2024,11,12,1,Queensland,152.061906,-27.262978 +2023,12,3,1,South Australia,138.721985,-34.890186 +2020,5,31,1,Queensland,153.056747,-27.543688 +2022,5,24,1,Victoria,142.068889,-37.738018 +2023,12,7,1,South Australia,138.732118,-34.89048 +2024,1,4,1,New South Wales,152.907717,-31.450771 +2023,11,14,1,Queensland,153.103437,-27.530489 +2023,8,6,1,Queensland,153.090901,-27.527538 +2021,10,28,1,Victoria,146.077561,-38.514569 +2020,4,25,1,South Australia,138.642466,-35.006913 +2024,2,28,1,South Australia,138.718516,-34.872327 +2023,3,11,1,Queensland,153.111095,-27.529901 +2021,10,23,1,New South Wales,153.376877,-28.254249 +2021,10,30,1,Queensland,152.246676,-27.496005 +2022,12,5,1,New South Wales,153.400832,-28.258621 +2024,8,10,1,Queensland,153.371262,-27.905955 +2024,3,31,1,Queensland,153.093437,-27.525354 +2023,10,22,1,South Australia,138.664624,-34.867165 +2023,10,4,1,Queensland,153.111073,-27.527183 +2020,4,9,1,Queensland,153.06764,-27.546541 +2024,4,14,1,Queensland,153.090762,-27.526118 +2024,3,27,1,Queensland,153.060258,-27.555555 +2022,6,27,1,South Australia,138.717001,-34.892016 +2022,11,22,1,Queensland,153.069918,-27.510559 +2020,4,19,1,South Australia,138.642197,-35.004931 +2024,6,13,1,Queensland,153.05756,-27.55123 +2021,5,2,1,South Australia,138.725019,-34.918188 +2023,8,16,1,Victoria,142.290922,-37.87478 +2022,5,5,1,New South Wales,153.401956,-28.960353 +2023,3,19,1,Queensland,153.093523,-27.528452 +2022,10,28,1,Queensland,153.192128,-27.653275 +2024,4,11,1,Victoria,142.360924,-38.317801 +2022,6,27,1,New South Wales,153.394252,-28.275333 +2024,1,14,1,Queensland,153.092521,-27.527871 +2023,11,4,1,Queensland,152.106845,-27.562326 +2023,7,11,1,Queensland,152.666292,-27.914463 +2024,5,29,1,New South Wales,151.095467,-33.076755 +2023,4,1,1,Queensland,153.090671,-27.527077 +2024,9,28,1,South Australia,138.733943,-35.037992 +2024,5,11,1,Queensland,153.091938,-27.525728 +2021,12,5,1,Queensland,151.868709,-26.493446 +2021,11,16,1,Victoria,146.164121,-38.671478 +2024,5,26,1,South Australia,138.64783,-35.004135 +2023,10,18,1,Queensland,152.045051,-27.258378 +2023,11,1,1,Victoria,141.480515,-38.311913 +2021,10,18,1,Victoria,146.163728,-38.671017 +2023,12,18,1,Queensland,151.772632,-26.199667 +2022,9,21,1,Queensland,153.038565,-27.533404 +2020,9,7,1,New South Wales,153.376807,-28.254001 +2023,1,14,1,Queensland,152.078767,-26.975038 +2024,3,4,1,Queensland,153.084778,-27.038894 +2023,11,14,1,Queensland,153.110051,-27.527451 +2020,5,22,1,Queensland,153.057528,-27.551018 +2021,5,3,1,South Australia,138.718003,-34.855913 +2024,10,29,1,Queensland,152.997163,-27.287668 +2024,3,6,1,Queensland,152.001389,-27.9784 +2024,3,7,1,New South Wales,150.564192,-29.546282 +2024,6,12,1,Queensland,153.105252,-27.529528 +2023,6,4,1,Queensland,151.93283,-27.330788 +2024,8,12,1,Queensland,152.992516,-27.823612 +2024,2,17,1,Queensland,153.092997,-27.524455 +2022,12,8,1,Queensland,153.072635,-27.544745 +2024,10,5,1,Queensland,152.073966,-26.188289 +2024,5,28,1,South Australia,138.78328,-34.87622 +2024,6,9,1,Victoria,144.411769,-38.005427 +2023,7,8,1,New South Wales,152.997868,-30.561986 +2022,3,20,1,Victoria,146.387939,-38.360103 +2021,12,1,1,South Australia,138.704371,-34.903152 +2023,4,2,1,Queensland,153.036636,-27.538186 +2023,11,13,1,New South Wales,153.302054,-28.82162 +2020,2,18,1,Victoria,143.885331,-37.654354 +2024,3,8,1,Queensland,151.864085,-26.147144 +2024,1,19,1,Victoria,145.269183,-38.13045 +2024,11,16,1,Queensland,152.046905,-27.262533 +2023,12,2,1,Victoria,144.549013,-37.491522 +2021,11,26,1,Queensland,153.189971,-27.736511 +2024,5,26,1,Queensland,146.828209,-19.138966 +2023,4,25,1,Queensland,153.091284,-27.52736 +2021,7,13,1,Queensland,153.084122,-27.51129 +2022,12,23,1,Queensland,153.073268,-27.545974 +2024,10,19,1,Queensland,152.992553,-27.82327 +2023,7,16,1,New South Wales,152.992851,-30.559916 +2023,7,11,1,New South Wales,152.993555,-30.559935 +2023,7,22,1,New South Wales,152.059036,-32.737703 +2023,5,27,1,Queensland,153.091717,-27.52717 +2022,6,1,1,Queensland,153.075426,-27.554812 +2020,8,1,1,Victoria,146.164556,-38.671141 +2020,6,12,1,Queensland,153.044265,-27.551096 +2023,3,1,1,Queensland,153.114326,-27.527197 +2023,7,11,1,New South Wales,152.993723,-30.560181 +2023,7,13,1,Queensland,151.937784,-27.416781 +2024,3,24,1,Victoria,143.63768,-38.786945 +2022,11,24,1,New South Wales,150.884931,-29.430515 +2023,9,9,1,South Australia,138.693237,-34.924012 +2020,5,29,1,Queensland,153.057294,-27.55009 +2022,12,9,1,Queensland,153.055938,-27.552378 +2022,3,16,1,Victoria,141.246167,-38.038579 +2023,11,24,1,Queensland,153.108856,-27.527275 +2023,4,10,1,Queensland,153.092717,-27.528418 +2024,8,14,1,Queensland,151.449032,-26.103026 +2023,12,15,1,Victoria,141.604767,-38.355205 +2023,12,3,1,New South Wales,150.821665,-34.10159 +2022,10,1,1,Victoria,145.276514,-38.383205 +2024,10,16,1,Queensland,151.795193,-26.387789 +2023,8,10,1,Victoria,145.275552,-37.049759 +2023,10,2,1,Queensland,153.09275,-27.52755 +2022,8,24,1,Queensland,152.586432,-26.874379 +2024,3,24,1,Queensland,153.090841,-27.527087 +2023,7,9,1,Queensland,152.999934,-27.284096 +2023,11,12,1,Queensland,151.531067,-27.724378 +2022,12,8,1,Queensland,153.07328,-27.545808 +2021,11,28,1,Queensland,151.535232,-27.726306 +2023,1,11,1,Queensland,153.086717,-27.510917 +2023,1,6,1,Victoria,143.860706,-38.668038 +2022,12,23,1,Queensland,153.534622,-27.429088 +2024,5,5,1,Queensland,153.092807,-27.528075 +2024,4,14,1,Queensland,153.093542,-27.524877 +2021,3,24,1,Victoria,149.739797,-37.550652 +2022,1,14,1,Queensland,152.69783,-25.294935 +2022,12,15,1,Queensland,152.83699,-28.094988 +2024,11,7,1,South Australia,138.571595,-35.028811 +2024,7,3,1,Queensland,153.093016,-27.52617 +2024,1,17,1,South Australia,138.721332,-34.892976 +2021,12,11,1,South Australia,138.575211,-35.079501 +2024,3,17,1,New South Wales,153.629186,-28.637181 +2021,10,17,1,New South Wales,150.987609,-34.121139 +2022,6,4,1,Queensland,153.072619,-27.2262 +2023,1,22,1,Victoria,147.078922,-38.134102 +2023,12,4,1,South Australia,138.685653,-34.915488 +2023,6,27,1,Queensland,153.109249,-27.526602 +2024,3,15,1,Queensland,153.105237,-27.52973 +2022,11,27,1,South Australia,138.711541,-34.891032 +2023,1,10,1,Victoria,145.407745,-36.8777 +2024,6,23,1,Queensland,153.092187,-27.52726 +2023,1,24,1,Queensland,152.003067,-27.41375 +2023,9,9,1,Queensland,152.924016,-27.282517 +2024,11,3,1,South Australia,138.71919,-34.891458 +2020,10,14,1,New South Wales,151.519396,-30.520827 +2023,6,30,1,Queensland,152.992097,-27.823428 +2020,8,27,1,South Australia,138.643676,-34.998466 +2024,6,1,1,Victoria,144.275745,-37.859965 +2024,5,13,1,South Australia,138.728089,-34.888734 +2023,2,18,1,Victoria,143.616219,-38.792152 +2023,7,16,1,Queensland,153.071821,-27.544261 +2023,9,26,1,New South Wales,150.821655,-34.101917 +2024,2,25,1,Queensland,152.892157,-27.635454 +2023,12,26,1,New South Wales,152.905966,-31.44039 +2024,7,31,1,Victoria,146.391113,-38.360163 +2023,7,30,1,Queensland,152.93514,-27.274941 +2020,3,21,1,Victoria,143.27182,-38.746872 +2022,10,8,1,Queensland,151.997803,-27.565731 +2024,9,12,1,Victoria,143.85878,-38.666595 +2021,12,21,1,South Australia,138.741225,-34.838875 +2023,4,26,1,Queensland,151.517792,-27.732862 +2024,6,24,1,Queensland,152.04045,-27.1768 +2024,1,6,1,Queensland,153.09354,-27.527698 +2023,1,23,1,South Australia,138.655361,-34.868723 +2024,11,5,1,Queensland,153.398728,-27.496503 +2023,11,2,1,Queensland,151.771143,-27.376072 +2024,10,4,1,South Australia,138.915244,-34.711863 +2023,8,22,1,Queensland,153.093641,-27.52471 +2020,1,9,1,Victoria,145.255769,-36.19391 +2023,11,19,1,Queensland,151.93373,-27.325928 +2021,12,30,1,Queensland,153.079066,-27.87442 +2021,11,21,1,Queensland,153.038073,-27.54682 +2021,9,6,1,South Australia,138.677174,-34.914107 +2024,8,6,1,Queensland,151.716478,-27.649963 +2022,11,20,1,Queensland,151.893686,-27.424801 +2021,9,16,1,New South Wales,153.444305,-28.274384 +2022,2,27,1,Victoria,143.629508,-38.551811 +2023,10,20,1,South Australia,138.72194,-34.892326 +2024,2,19,1,Queensland,152.074583,-27.358436 +2023,5,17,1,South Australia,136.85792,-35.771973 +2023,7,30,1,Queensland,151.526337,-27.632697 +2023,12,19,1,Queensland,153.091568,-27.527115 +2021,5,13,1,Queensland,152.10663,-27.562278 +2023,10,25,1,Queensland,153.102601,-27.52951 +2023,7,6,1,Queensland,152.627876,-27.908664 +2020,8,20,1,Queensland,153.048593,-27.528156 +2024,10,30,1,Queensland,151.691441,-26.177982 +2024,9,13,1,Victoria,141.772587,-38.203006 +2024,5,12,1,Queensland,153.093382,-27.528002 +2023,5,11,1,Victoria,145.314683,-38.373424 +2023,7,18,1,Queensland,146.870437,-19.124196 +2023,11,14,1,Queensland,153.092807,-27.528378 +2022,12,22,1,Queensland,153.073212,-27.54589 +2023,10,11,1,Queensland,153.106203,-27.528998 +2024,7,6,1,Queensland,153.090923,-27.52666 +2023,4,12,1,Queensland,153.059548,-27.551257 +2024,5,6,1,South Australia,138.716617,-34.893207 +2023,8,10,1,Queensland,151.16237,-26.797726 +2023,12,7,1,Victoria,145.475113,-36.922567 +2024,1,10,1,Queensland,151.814643,-26.36268 +2024,7,8,1,South Australia,138.731564,-34.8917 +2023,1,2,1,Queensland,152.012821,-26.637757 +2023,10,22,1,New South Wales,153.399107,-28.260838 +2023,11,26,1,Queensland,153.090414,-27.526694 +2024,7,17,1,South Australia,138.70853,-34.991376 +2020,7,30,1,Queensland,153.059278,-27.549207 +2024,2,17,1,Queensland,153.057672,-27.551714 +2024,4,12,1,Victoria,145.313217,-38.38128 +2021,10,5,1,Queensland,153.05895,-27.54623 +2021,11,28,1,Queensland,151.517539,-27.707019 +2023,11,14,1,Queensland,151.572287,-27.688948 +2024,7,21,1,Queensland,153.07414,-27.546924 +2024,11,23,1,Victoria,147.754463,-37.908777 +2024,3,22,1,Queensland,153.092204,-27.527231 +2024,11,5,1,Victoria,149.760733,-37.561313 +2023,10,1,1,Queensland,153.069469,-27.508962 +2023,1,3,1,South Australia,138.671007,-34.953594 +2024,3,1,1,New South Wales,146.551605,-34.751112 +2023,10,29,1,Queensland,153.092537,-27.52842 +2023,10,11,1,Queensland,153.081211,-27.508246 +2024,11,13,1,Queensland,153.104808,-27.528997 +2022,11,12,1,Queensland,152.16197,-27.49988 +2023,9,1,1,Queensland,152.046377,-27.257246 +2021,3,3,1,Queensland,152.184528,-27.245117 +2024,5,19,1,Queensland,146.868869,-19.132276 +2023,12,21,1,South Australia,138.734187,-34.887016 +2022,1,31,1,Queensland,151.882616,-26.31327 +2023,8,29,1,Queensland,152.8809,-27.22268 +2023,11,26,1,Queensland,153.078398,-27.51301 +2023,9,12,1,Queensland,153.086853,-27.537783 +2024,2,10,1,Queensland,152.028978,-27.370953 +2021,2,26,1,Queensland,153.057869,-27.55152 +2020,1,11,1,Queensland,152.250014,-27.495256 +2023,1,28,1,Queensland,153.090625,-27.52615 +2023,1,21,1,South Australia,138.64811,-34.876748 +2023,2,18,1,Queensland,152.18373,-27.53098 +2020,5,6,1,Victoria,143.147295,-38.628343 +2023,7,25,1,Queensland,153.0448,-27.548397 +2023,7,9,1,Victoria,145.533467,-36.944812 +2023,8,21,1,Queensland,151.872734,-26.317833 +2024,11,8,1,Queensland,153.069695,-27.510462 +2023,10,15,1,Queensland,153.090976,-27.526422 +2023,11,2,1,Queensland,152.98075,-27.275661 +2021,12,16,1,South Australia,138.657203,-34.86521 +2023,4,18,1,Victoria,143.905189,-37.751359 +2023,6,18,1,Queensland,153.079084,-27.50641 +2023,1,30,1,Queensland,152.354338,-27.075114 +2021,10,3,1,South Australia,138.643693,-35.001262 +2022,11,6,1,Victoria,144.27626,-37.84075 +2021,1,15,1,Queensland,153.530452,-27.43465 +2023,12,24,1,Queensland,153.091849,-27.52713 +2022,1,1,1,Victoria,144.262827,-37.392962 +2024,7,21,1,Queensland,153.092252,-27.52811 +2024,9,6,1,South Australia,138.716819,-34.893463 +2024,5,5,1,Queensland,153.092151,-27.527186 +2020,10,7,1,New South Wales,153.376616,-28.253645 +2023,10,12,1,Victoria,145.455003,-36.86838 +2023,8,5,1,New South Wales,151.24893,-33.165669 +2023,9,24,1,Queensland,153.244662,-27.490845 +2022,6,12,1,Queensland,152.835778,-28.075221 +2020,11,7,1,Queensland,153.059709,-27.550648 +2024,7,12,1,Victoria,145.086136,-38.28542 +2022,1,2,1,Queensland,152.824358,-27.249316 +2021,1,6,1,Victoria,147.735358,-37.923252 +2024,11,4,1,Queensland,151.886053,-26.203681 +2021,11,28,1,Queensland,151.522689,-27.71553 +2023,8,22,1,Queensland,153.092056,-27.527376 +2022,9,5,1,Queensland,152.681412,-28.000184 +2023,6,16,1,Queensland,152.774648,-27.928507 +2023,7,16,1,South Australia,136.809699,-35.960359 +2023,9,21,1,New South Wales,151.095047,-33.07652 +2020,8,16,1,Victoria,143.902979,-37.590268 +2021,5,9,1,Queensland,153.335015,-27.98275 +2023,9,2,1,Queensland,152.004472,-27.414713 +2020,11,15,1,Victoria,143.723219,-38.521312 +2023,1,9,1,Queensland,153.074626,-27.546649 +2023,3,4,1,Queensland,153.108142,-27.527254 +2023,12,23,1,Queensland,153.092984,-27.528054 +2023,10,5,1,Queensland,153.059891,-27.550486 +2023,8,16,1,Queensland,152.00434,-27.414632 +2020,5,25,1,New South Wales,150.020247,-31.302037 +2023,10,19,1,Queensland,151.773251,-26.366665 +2021,11,4,1,Queensland,153.058658,-27.551496 +2023,7,13,1,New South Wales,153.40033,-28.26029 +2023,1,26,1,Queensland,153.103292,-27.529699 +2023,11,13,1,Queensland,153.113403,-27.528412 +2023,1,28,1,Queensland,153.108931,-27.529203 +2023,9,24,1,Victoria,142.363119,-38.319015 +2023,1,7,1,Queensland,152.944058,-27.14051 +2024,9,8,1,Queensland,153.091715,-27.527042 +2022,12,12,1,Queensland,153.103232,-27.530253 +2022,9,11,1,South Australia,138.638452,-34.998903 +2022,3,3,1,Queensland,153.083366,-27.514047 +2021,1,11,1,Victoria,146.164187,-38.671263 +2022,12,29,1,Queensland,153.437519,-27.403585 +2022,1,14,1,South Australia,138.614948,-34.90517 +2024,10,20,1,Queensland,153.092113,-27.527072 +2021,11,28,1,Queensland,151.520934,-27.715276 +2022,10,9,1,Queensland,152.865285,-28.216728 +2022,10,12,1,Queensland,153.072287,-27.545147 +2024,7,1,1,Victoria,145.314079,-38.376753 +2023,3,15,1,Queensland,153.053979,-27.552963 +2024,10,3,1,Queensland,153.191568,-27.700378 +2023,2,17,1,Queensland,153.237488,-27.922575 +2022,11,5,1,Queensland,151.943759,-27.391244 +2024,3,17,1,Queensland,153.092416,-27.525189 +2020,7,31,1,Queensland,153.063541,-27.53907 +2020,12,11,1,South Australia,138.655211,-35.007143 +2024,11,4,1,Queensland,153.10986,-27.527676 +2022,12,5,1,Victoria,144.284107,-37.838327 +2022,12,24,1,South Australia,138.608628,-35.058589 +2023,3,14,1,Queensland,153.092053,-27.527325 +2024,9,20,1,Queensland,153.09295,-27.526057 +2024,10,14,1,South Australia,138.645057,-34.88508 +2023,11,14,1,Victoria,145.553938,-37.016178 +2024,10,23,1,Queensland,153.091417,-27.527111 +2022,12,9,1,Queensland,153.072558,-27.544505 +2024,3,28,1,Queensland,152.010284,-26.217537 +2024,1,28,1,Queensland,153.090636,-27.527087 +2023,10,6,1,Queensland,153.072972,-27.514006 +2020,11,8,1,Victoria,144.988815,-38.355221 +2023,9,23,1,Queensland,153.069888,-27.510526 +2024,4,10,1,Queensland,153.111402,-27.527283 +2022,11,21,1,Queensland,153.073386,-27.542645 +2020,6,5,1,Queensland,153.068644,-27.225192 +2023,1,14,1,Victoria,141.603241,-38.354312 +2022,12,16,1,South Australia,138.66641,-34.864123 +2024,3,11,1,South Australia,138.673836,-35.007924 +2021,12,17,1,Victoria,144.095214,-37.623067 +2024,9,15,1,New South Wales,146.569703,-34.755787 +2023,1,27,1,Queensland,153.074375,-27.545958 +2021,1,13,1,Victoria,148.263035,-37.224033 +2021,3,28,1,Victoria,146.164151,-38.67151 +2024,6,2,1,Queensland,153.090763,-27.52635 +2023,1,19,1,Queensland,153.073491,-27.545841 +2024,2,2,1,Victoria,144.088539,-37.633631 +2022,11,16,1,New South Wales,152.203155,-32.024708 +2022,5,27,1,Queensland,152.130525,-26.869707 +2023,11,5,1,Queensland,153.000139,-27.284797 +2024,3,10,1,Queensland,153.090499,-27.526451 +2022,9,21,1,Victoria,143.904038,-37.585991 +2024,6,18,1,South Australia,138.73374,-34.836144 +2020,11,3,1,Queensland,152.339059,-27.832712 +2024,1,2,1,Queensland,152.227416,-27.295758 +2024,9,24,1,Queensland,153.062165,-27.221882 +2021,2,7,1,South Australia,138.708339,-35.213959 +2024,2,18,1,Victoria,144.314781,-37.522775 +2024,10,20,1,Queensland,153.092241,-27.528067 +2024,7,28,1,Victoria,145.675912,-35.919654 +2023,1,14,1,Queensland,152.941391,-26.736536 +2023,4,8,1,Queensland,153.092654,-27.527806 +2024,7,7,1,Queensland,153.066816,-27.250419 +2020,6,15,1,New South Wales,153.458758,-28.264777 +2024,6,9,1,Queensland,151.812767,-28.545567 +2024,8,25,1,Queensland,152.677963,-27.766212 +2020,3,22,1,Victoria,143.481974,-38.799865 +2020,4,25,1,South Australia,138.692012,-34.894668 +2024,1,11,1,Victoria,145.103394,-38.398932 +2023,10,28,1,New South Wales,151.095078,-33.076364 +2021,1,3,1,Queensland,153.126878,-27.515829 +2023,3,19,1,Queensland,153.070133,-27.510921 +2023,12,26,1,Victoria,145.531375,-36.897185 +2023,12,9,1,Queensland,153.093175,-27.526613 +2023,3,17,1,Queensland,153.090897,-27.527179 +2023,1,19,1,Queensland,153.069769,-27.542991 +2024,9,1,1,Queensland,153.070025,-27.510472 +2024,7,31,1,South Australia,138.722078,-34.89147 +2023,2,1,1,Queensland,153.1037,-27.530024 +2024,1,3,1,Queensland,153.108151,-27.527277 +2023,12,27,1,Victoria,145.750333,-38.631112 +2023,11,13,1,Queensland,153.110343,-27.52754 +2020,8,29,1,Queensland,153.058622,-27.547583 +2023,3,21,1,Queensland,152.18373,-27.53098 +2022,3,10,1,Victoria,144.483865,-37.710738 +2024,1,18,1,Queensland,151.738444,-26.356143 +2024,5,3,1,South Australia,138.570388,-35.031669 +2024,4,28,1,South Australia,138.568556,-35.158429 +2023,1,2,1,South Australia,138.686572,-34.953441 +2022,11,19,1,Queensland,151.560242,-27.805517 +2024,6,22,1,Queensland,152.046285,-27.255755 +2023,12,20,1,Victoria,143.554299,-38.755881 +2023,8,5,1,Queensland,153.107374,-27.527044 +2024,4,5,1,Queensland,146.873537,-19.120958 +2023,7,11,1,New South Wales,152.993624,-30.560091 +2024,4,1,1,Victoria,147.728863,-37.921857 +2024,6,15,1,New South Wales,151.243713,-33.127431 +2024,10,26,1,Queensland,152.935081,-27.70799 +2023,10,6,1,Queensland,153.107201,-27.527253 +2023,9,9,1,South Australia,138.737455,-35.031267 +2023,11,16,1,Queensland,153.37072,-27.898677 +2024,4,12,1,Victoria,145.31311,-38.385292 +2023,9,28,1,South Australia,135.791614,-34.814394 +2022,11,6,1,Queensland,151.779573,-27.339692 +2024,10,4,1,Victoria,142.782745,-38.420162 +2023,10,13,1,Queensland,153.10536,-27.531871 +2021,8,3,1,Queensland,153.079736,-27.507743 +2021,2,24,1,South Australia,138.629603,-34.990619 +2020,10,17,1,Victoria,145.372105,-36.930565 +2024,4,12,1,Victoria,145.314438,-38.374699 +2024,6,18,1,Queensland,152.61388,-27.33966 +2023,11,11,1,Queensland,153.09289,-27.528525 +2024,11,2,1,Queensland,151.957445,-27.44475 +2023,12,4,1,Queensland,153.108984,-27.528741 +2024,8,1,1,Queensland,153.065514,-27.539965 +2024,7,26,1,South Australia,138.722663,-34.889783 +2020,8,15,1,Queensland,153.05953,-27.548977 +2024,9,21,1,New South Wales,146.56328,-34.762636 +2021,9,11,1,New South Wales,151.520092,-30.518807 +2023,1,18,1,Queensland,153.105619,-27.506572 +2022,4,5,1,New South Wales,153.400804,-28.259876 +2020,6,6,1,Victoria,147.729592,-37.925314 +2024,10,17,1,Queensland,152.992775,-27.82282 +2021,8,31,1,Queensland,152.08695,-27.69515 +2023,10,13,1,Queensland,153.188298,-27.700662 +2020,11,15,1,Queensland,152.339059,-27.832712 +2024,6,19,1,Queensland,153.111322,-27.528787 +2022,6,23,1,Victoria,142.36318,-38.318711 +2022,10,4,1,Queensland,153.054536,-27.550583 +2020,11,16,1,Queensland,153.001664,-27.165117 +2022,5,9,1,New South Wales,146.598412,-34.767968 +2023,10,10,1,Queensland,152.567014,-27.145517 +2021,10,26,1,Victoria,146.163895,-38.671213 +2020,9,16,1,South Australia,138.648306,-34.999038 +2023,1,12,1,New South Wales,150.833467,-34.094325 +2020,10,21,1,Victoria,143.893234,-37.578886 +2021,10,25,1,South Australia,138.638092,-34.970367 +2023,1,7,1,Victoria,146.211242,-38.665558 +2024,3,16,1,Queensland,153.090909,-27.52685 +2023,9,9,1,Queensland,153.112446,-27.528915 +2021,11,28,1,Queensland,151.554704,-27.723887 +2023,8,4,1,Queensland,152.9304,-27.374178 +2024,11,10,1,Queensland,153.092434,-27.525833 +2020,11,25,1,Victoria,143.87503,-37.577982 +2020,9,27,1,New South Wales,153.376965,-28.253895 +2020,1,22,1,New South Wales,151.517939,-30.520949 +2020,5,2,1,Queensland,152.926966,-27.328295 +2024,3,30,1,Queensland,153.107438,-27.529098 +2022,10,6,1,Victoria,143.861147,-38.670077 +2023,3,4,1,Queensland,153.090731,-27.525843 +2021,10,19,1,New South Wales,153.376963,-28.254197 +2024,4,25,1,Queensland,153.09134,-27.527445 +2020,7,12,1,Victoria,146.163728,-38.671405 +2024,8,31,1,New South Wales,153.376882,-28.254154 +2023,9,19,1,New South Wales,150.625656,-29.893499 +2024,5,31,1,Queensland,152.106414,-27.56237 +2024,11,23,1,Victoria,146.388533,-38.357587 +2021,7,15,1,Queensland,153.051508,-27.549193 +2023,11,3,1,Queensland,153.103605,-27.529948 +2023,10,7,1,Queensland,153.276206,-27.535437 +2023,3,17,1,Queensland,153.057814,-27.55156 +2022,11,12,1,Queensland,151.520404,-27.728897 +2023,7,22,1,Queensland,153.091996,-27.524041 +2023,9,25,1,New South Wales,151.095,-33.076344 +2020,4,11,1,Queensland,153.037345,-27.534134 +2023,6,18,1,Victoria,143.857908,-38.670192 +2020,2,29,1,New South Wales,153.374145,-28.25745 +2024,2,29,1,Queensland,151.763965,-26.170486 +2023,1,20,1,Queensland,153.057898,-27.553123 +2023,10,18,1,Victoria,142.027138,-37.750648 +2023,7,29,1,Queensland,151.959969,-27.37511 +2020,4,9,1,Queensland,153.044413,-27.552385 +2024,4,29,1,Queensland,153.055984,-27.542547 +2024,9,18,1,South Australia,138.719347,-34.891521 +2023,12,3,1,Queensland,152.046265,-27.257483 +2023,3,24,1,Queensland,152.858214,-27.543438 +2023,2,6,1,Victoria,146.164689,-38.67105 +2020,6,8,1,Victoria,147.725136,-37.926147 +2021,1,18,1,Queensland,152.988663,-27.1699 +2022,2,17,1,South Australia,138.718581,-34.872211 +2024,2,7,1,Queensland,153.148386,-27.790578 +2023,9,4,1,Queensland,152.046071,-27.255986 +2022,9,10,1,South Australia,138.739505,-35.009517 +2023,11,18,1,South Australia,138.681668,-35.044142 +2021,6,11,1,South Australia,138.722661,-34.993764 +2023,5,27,1,Queensland,153.091062,-27.526464 +2024,6,16,1,Queensland,152.90127,-27.620698 +2021,5,11,1,Queensland,153.105038,-27.475746 +2024,10,20,1,Queensland,153.091086,-27.527473 +2022,11,17,1,Queensland,153.05738,-27.551341 +2024,1,3,1,Queensland,151.814643,-26.36268 +2024,10,29,1,Queensland,152.901505,-27.62202 +2022,2,4,1,Victoria,144.113097,-37.545048 +2024,11,9,1,Queensland,153.073374,-27.54594 +2020,9,19,1,South Australia,138.711029,-34.764082 +2023,11,12,1,Queensland,153.092702,-27.528451 +2024,2,15,1,South Australia,135.686944,-34.826944 +2023,6,5,1,New South Wales,152.381844,-31.945322 +2023,8,6,1,New South Wales,153.458084,-28.651857 +2022,8,20,1,South Australia,138.65726,-35.017479 +2023,10,19,1,Victoria,143.901108,-37.641448 +2024,10,21,1,Victoria,143.855025,-38.67038 +2021,5,19,1,Victoria,146.269463,-38.387027 +2024,6,22,1,Queensland,153.070033,-27.510701 +2023,9,24,1,Queensland,152.599609,-28.166261 +2024,10,2,1,Queensland,153.092332,-27.528305 +2023,8,30,1,Queensland,153.07544,-27.54413 +2022,3,25,1,South Australia,138.577411,-35.05391 +2023,5,1,1,Victoria,143.860085,-38.671536 +2023,12,26,1,Queensland,152.07455,-27.358393 +2024,7,20,1,Queensland,153.092659,-27.525576 +2024,8,3,1,Queensland,153.073654,-27.545619 +2023,10,11,1,Queensland,153.08684,-27.5091 +2024,8,6,1,Queensland,151.716488,-27.649976 +2023,6,17,1,Queensland,153.090676,-27.527115 +2024,5,26,1,South Australia,138.707798,-34.932681 +2022,8,27,1,Queensland,153.053805,-27.54306 +2021,11,5,1,Victoria,144.595065,-37.384367 +2023,10,10,1,Queensland,153.110445,-27.527722 +2021,5,21,1,South Australia,138.734669,-34.833733 +2023,10,13,1,New South Wales,149.381533,-33.585988 +2024,11,14,1,South Australia,138.64148,-35.009783 +2021,5,2,1,South Australia,138.673014,-35.015836 +2024,10,26,1,New South Wales,152.908114,-31.446622 +2023,12,17,1,South Australia,138.720228,-34.892554 +2024,6,1,1,Queensland,153.091053,-27.526427 +2020,7,18,1,Queensland,153.258212,-27.502169 +2021,1,31,1,Queensland,152.180975,-27.365938 +2024,6,21,1,Queensland,152.112528,-27.258167 +2023,1,6,1,South Australia,138.706742,-34.903237 +2022,12,27,1,Queensland,153.438686,-27.40143 +2023,3,17,1,Queensland,153.091829,-27.526965 +2024,9,7,1,Queensland,153.093046,-27.52841 +2021,2,12,1,Queensland,153.039527,-27.536373 +2023,6,6,1,Victoria,144.088453,-37.633679 +2024,5,4,1,Queensland,152.61255,-27.33853 +2023,3,16,1,Queensland,153.09049,-27.526044 +2021,7,30,1,Queensland,152.840742,-27.528783 +2022,3,17,1,Queensland,151.93683,-27.412157 +2023,1,1,1,Victoria,142.698262,-38.240926 +2020,4,25,1,South Australia,138.644688,-34.974736 +2023,7,7,1,Victoria,146.387664,-38.354143 +2023,8,15,1,Queensland,153.109639,-27.527895 +2024,1,2,1,Queensland,153.09266,-27.527154 +2023,3,6,1,South Australia,138.66639,-34.864108 +2021,9,12,1,Queensland,152.179832,-27.367816 +2024,11,14,1,Queensland,153.163347,-27.600956 +2023,10,9,1,South Australia,137.494533,-35.615388 +2024,10,22,1,Queensland,153.080428,-27.514119 +2023,10,26,1,Queensland,153.189646,-27.701124 +2024,7,17,1,Queensland,153.103551,-27.530137 +2023,9,23,1,Queensland,153.108031,-27.526817 +2023,2,18,1,Queensland,153.092676,-27.525435 +2022,2,6,1,Queensland,153.439202,-27.40016 +2022,11,3,1,Queensland,152.262629,-26.403267 +2023,12,26,1,Queensland,153.091752,-27.527196 +2023,11,2,1,Queensland,153.091683,-27.527117 +2020,9,28,1,South Australia,138.674307,-34.950531 +2021,4,24,1,Victoria,144.310805,-37.27693 +2022,9,13,1,Queensland,153.378866,-27.917864 +2024,10,20,1,Queensland,153.399635,-27.497796 +2020,10,3,1,Queensland,152.549081,-26.790077 +2024,5,11,1,Queensland,153.090995,-27.527393 +2024,9,8,1,Queensland,153.090734,-27.527327 +2023,8,2,1,Victoria,144.41803,-37.947855 +2023,11,21,1,Queensland,151.344716,-26.526248 +2021,11,28,1,Queensland,151.506038,-27.708083 +2020,11,10,1,Queensland,152.988983,-27.169187 +2021,12,28,1,Queensland,151.295824,-28.122101 +2023,12,1,1,Queensland,151.749835,-26.155059 +2020,9,30,1,New South Wales,153.377579,-28.254074 +2023,12,2,1,Queensland,151.567505,-27.797997 +2021,11,16,1,New South Wales,153.30608,-28.850306 +2021,10,28,1,Queensland,152.854818,-27.240482 +2023,11,25,1,South Australia,138.582034,-35.145573 +2022,10,26,1,Queensland,153.221192,-27.582813 +2024,3,22,1,Queensland,153.072621,-27.549094 +2024,7,3,1,Queensland,152.677913,-27.987377 +2024,8,3,1,Queensland,153.07446,-27.546345 +2023,3,30,1,Queensland,153.05862,-27.55123 +2020,11,16,1,New South Wales,150.828628,-34.097136 +2021,8,30,1,New South Wales,151.519282,-30.520446 +2022,9,19,1,Queensland,152.1833,-27.53118 +2023,5,24,1,Queensland,153.04905,-27.548717 +2023,4,23,1,Queensland,153.087121,-27.510946 +2020,3,25,1,New South Wales,151.520646,-30.52016 +2023,8,5,1,Queensland,152.866225,-28.211335 +2022,11,25,1,South Australia,138.656039,-35.012666 +2024,5,7,1,South Australia,138.730715,-34.89099 +2022,4,21,1,Queensland,152.1833,-27.53118 +2023,10,18,1,Victoria,147.732762,-37.921368 +2023,11,4,1,Queensland,148.70233,-21.71062 +2022,11,12,1,Queensland,152.112036,-27.372359 +2022,12,19,1,Queensland,152.009215,-27.557665 +2023,12,24,1,New South Wales,150.822678,-34.101697 +2024,4,2,1,Queensland,153.092194,-27.527039 +2024,2,17,1,Queensland,153.10664,-27.528427 +2024,9,8,1,Queensland,152.999392,-27.283831 +2022,3,3,1,South Australia,138.655269,-34.868468 +2022,8,17,1,Queensland,148.7007,-21.722981 +2023,12,16,1,New South Wales,150.884797,-34.02373 +2023,2,13,1,Queensland,152.18373,-27.53098 +2020,2,22,1,New South Wales,145.451932,-35.821447 +2021,3,15,1,Victoria,142.051549,-37.892249 +2023,6,24,1,Queensland,152.675003,-28.121114 +2023,11,13,1,Queensland,153.090658,-27.526143 +2021,10,31,1,Victoria,146.202392,-38.651463 +2020,5,22,1,New South Wales,153.376619,-28.253036 +2024,9,13,1,Queensland,153.371586,-27.899878 +2024,1,17,1,Victoria,142.834918,-38.390781 +2024,11,2,1,Queensland,153.26665,-28.009206 +2022,6,5,1,South Australia,138.701535,-34.902362 +2024,10,16,1,Queensland,153.105778,-27.530026 +2022,10,15,1,South Australia,138.657029,-35.011856 +2022,4,9,1,Victoria,146.19849,-38.656352 +2023,9,8,1,Queensland,153.110391,-27.529831 +2023,11,15,1,Victoria,147.731308,-37.923122 +2022,8,28,1,Queensland,153.376018,-27.91869 +2024,4,26,1,Victoria,143.282438,-38.756962 +2021,11,7,1,Victoria,146.203407,-38.48782 +2023,3,17,1,Queensland,153.092059,-27.525749 +2023,11,24,1,Queensland,153.318551,-27.899753 +2024,3,30,1,Queensland,153.105445,-27.529979 +2023,2,12,1,Queensland,151.889343,-27.597237 +2023,3,8,1,Queensland,153.090722,-27.526574 +2024,1,31,1,New South Wales,150.853083,-34.059699 +2024,11,16,1,South Australia,138.54132,-35.31988 +2023,7,7,1,Queensland,153.058928,-27.55141 +2024,6,7,1,Queensland,153.112385,-27.52877 +2020,10,11,1,Queensland,153.053909,-27.53725 +2023,8,21,1,Queensland,153.054639,-27.552149 +2024,3,22,1,South Australia,138.708259,-34.932646 +2020,5,17,1,South Australia,138.65626,-35.007155 +2024,9,10,1,Queensland,153.0931,-27.526368 +2023,10,29,1,Queensland,151.51732,-27.566295 +2023,9,22,1,Queensland,152.997334,-27.436108 +2023,2,26,1,Queensland,151.89609,-27.596888 +2021,8,7,1,Queensland,152.528623,-26.182702 +2024,10,13,1,Queensland,153.084789,-27.510706 +2021,9,13,1,Queensland,153.217303,-27.852309 +2024,4,1,1,Victoria,147.728863,-37.921857 +2024,10,5,1,Queensland,153.095627,-27.83785 +2024,6,8,1,Queensland,153.091795,-27.526884 +2021,8,12,1,Queensland,146.868665,-19.129978 +2021,10,3,1,Victoria,145.131456,-38.387312 +2023,7,15,1,Queensland,153.044412,-27.539213 +2023,1,20,1,Queensland,152.401382,-27.45717 +2024,4,19,1,Queensland,151.513683,-27.285249 +2024,9,30,1,Queensland,152.102692,-27.569583 +2024,4,26,1,Queensland,153.090703,-27.52679 +2023,1,23,1,Queensland,152.18373,-27.53098 +2023,10,30,1,Queensland,153.108068,-27.527245 +2022,10,16,1,South Australia,138.826933,-34.692015 +2024,8,5,1,Queensland,153.072205,-27.545289 +2024,5,27,1,South Australia,138.729462,-34.887168 +2023,7,14,1,Queensland,152.804466,-26.750442 +2020,10,9,1,Queensland,153.05986,-27.550073 +2021,4,5,1,South Australia,138.673323,-35.015174 +2021,4,28,1,Queensland,153.052608,-27.550268 +2022,10,14,1,South Australia,138.656079,-34.865973 +2023,12,23,1,Queensland,153.103187,-27.528445 +2023,10,13,1,Queensland,153.109858,-27.527164 +2024,4,1,1,Victoria,147.728863,-37.921857 +2020,9,12,1,Queensland,153.059803,-27.54387 +2024,8,10,1,Queensland,153.091489,-27.52732 +2021,12,12,1,Queensland,152.928023,-27.277654 +2023,10,8,1,New South Wales,152.914823,-30.496838 +2024,3,21,1,Victoria,144.023019,-37.671753 +2024,9,5,1,Queensland,153.072713,-27.546061 +2023,10,31,1,Queensland,152.003097,-27.412663 +2022,11,4,1,Queensland,152.898459,-27.652554 +2023,8,19,1,Queensland,153.091836,-27.527003 +2022,8,22,1,Queensland,153.061062,-27.550348 +2022,4,3,1,Queensland,153.443342,-27.402293 +2021,4,6,1,South Australia,138.506139,-35.120535 +2021,8,5,1,Queensland,153.076835,-27.541188 +2023,11,14,1,Queensland,153.092052,-27.527287 +2023,11,4,1,Queensland,153.077523,-27.50788 +2024,6,9,1,Queensland,152.579385,-27.917737 +2023,8,14,1,Queensland,153.110354,-27.527716 +2023,12,12,1,Queensland,153.103838,-27.530012 +2022,8,8,1,Queensland,152.933041,-28.038584 +2023,7,16,1,Queensland,152.075164,-27.3588 +2023,4,2,1,Victoria,143.90378,-37.750665 +2023,11,26,1,Queensland,153.092269,-27.527209 +2024,9,27,1,Queensland,153.004093,-27.156922 +2024,5,14,1,Queensland,152.02729,-26.677008 +2021,2,22,1,South Australia,138.681379,-35.045324 +2020,6,23,1,Queensland,153.057512,-27.550936 +2023,12,4,1,Queensland,153.103336,-27.526601 +2024,6,26,1,Queensland,151.821431,-28.526999 +2022,2,19,1,Victoria,145.345282,-35.904273 +2023,2,17,1,Queensland,153.082907,-27.51496 +2024,7,31,1,South Australia,138.719949,-34.890426 +2023,10,7,1,Queensland,153.082544,-27.510852 +2024,2,5,1,South Australia,138.730815,-34.890525 +2020,3,23,1,New South Wales,150.542274,-34.513297 +2022,12,21,1,Queensland,153.073851,-27.54557 +2024,6,14,1,Queensland,152.664025,-26.394898 +2024,8,5,1,Queensland,153.072355,-27.543109 +2024,10,25,1,Queensland,153.054747,-27.552139 +2021,9,10,1,New South Wales,153.377338,-28.25385 +2024,11,1,1,Queensland,152.635617,-28.235111 +2024,9,6,1,South Australia,138.718791,-34.891739 +2020,6,12,1,Queensland,153.04629,-27.549124 +2024,4,16,1,Victoria,143.896025,-37.643605 +2023,4,7,1,Queensland,153.086187,-27.510152 +2022,1,19,1,Queensland,152.029073,-26.207567 +2023,2,4,1,Victoria,145.447205,-36.863853 +2022,12,9,1,Queensland,153.0579,-27.551396 +2024,2,23,1,Victoria,143.403612,-38.773392 +2021,12,20,1,South Australia,138.714652,-34.908954 +2023,7,6,1,Queensland,151.937342,-26.176018 +2023,9,16,1,Queensland,151.946827,-27.423595 +2020,4,19,1,Queensland,153.451448,-28.161184 +2022,5,26,1,New South Wales,153.400447,-28.257754 +2024,6,23,1,Queensland,153.403179,-27.493428 +2022,8,12,1,Queensland,153.101558,-27.734704 +2023,11,15,1,Queensland,152.044985,-27.258352 +2021,6,9,1,Queensland,151.862967,-26.481111 +2022,5,5,1,Victoria,147.729613,-37.925012 +2024,3,21,1,Victoria,141.245483,-38.037853 +2020,10,1,1,Queensland,152.248252,-27.496345 +2021,9,20,1,New South Wales,151.517344,-30.522216 +2023,11,24,1,Victoria,144.436593,-37.955359 +2022,12,19,1,Queensland,153.104528,-27.529632 +2022,2,17,1,Victoria,144.25797,-37.873663 +2024,11,1,1,Queensland,153.103259,-27.528061 +2021,1,19,1,Victoria,145.597224,-37.83437 +2020,8,23,1,Queensland,152.34441,-27.832215 +2023,12,3,1,Queensland,153.091568,-27.526974 +2023,9,6,1,New South Wales,151.644207,-30.48686 +2024,9,30,1,New South Wales,151.520276,-30.520486 +2024,2,5,1,Queensland,153.092076,-27.526994 +2022,8,10,1,Queensland,153.377058,-27.919485 +2023,10,3,1,Queensland,152.004748,-27.411938 +2023,10,7,1,Queensland,152.193314,-27.553208 +2021,5,5,1,Victoria,143.664066,-38.761946 +2024,9,26,1,Queensland,152.042556,-27.29743 +2023,10,7,1,Queensland,152.60936,-27.396276 +2022,5,10,1,South Australia,138.656877,-34.865196 +2023,1,9,1,Queensland,153.071112,-27.54386 +2024,3,6,1,Queensland,153.103639,-27.530279 +2024,1,6,1,Queensland,151.815377,-26.166034 +2024,3,1,1,Queensland,153.104554,-27.530665 +2024,8,13,1,Victoria,143.883287,-37.639101 +2024,6,30,1,Queensland,153.092783,-27.525315 +2023,8,22,1,New South Wales,151.234426,-33.169968 +2020,11,27,1,Victoria,146.388564,-38.354311 +2023,2,8,1,Victoria,146.277022,-38.931203 +2023,4,6,1,Queensland,153.134292,-27.563412 +2021,12,17,1,Victoria,149.76051,-37.563204 +2020,5,15,1,Victoria,143.618466,-38.554355 +2023,8,12,1,Queensland,153.000144,-27.284172 +2023,10,22,1,New South Wales,152.904037,-31.441981 +2024,1,3,1,Queensland,153.107727,-27.527094 +2021,12,11,1,Victoria,146.771383,-38.479531 +2023,4,16,1,South Australia,138.70584,-34.903296 +2024,7,1,1,New South Wales,153.400813,-28.258216 +2023,6,17,1,Queensland,153.091627,-27.527269 +2024,4,14,1,Queensland,153.091647,-27.527162 +2024,11,1,1,Victoria,146.00515,-38.80985 +2020,10,11,1,Queensland,153.055047,-27.539189 +2024,1,28,1,Victoria,143.520093,-38.834472 +2024,1,28,1,New South Wales,150.821945,-34.101742 +2024,10,23,1,Queensland,153.092673,-27.525578 +2024,3,6,1,Queensland,153.090647,-27.525978 +2022,10,10,1,Queensland,153.073672,-27.545741 +2022,4,14,1,Victoria,145.789672,-36.805703 +2022,10,12,1,Queensland,146.869445,-19.125194 +2023,5,8,1,Victoria,144.375928,-37.876623 +2024,5,7,1,Queensland,152.85731,-27.544032 +2024,10,1,1,Queensland,153.095171,-27.532747 +2024,2,8,1,Victoria,145.497728,-37.068972 +2024,5,6,1,South Australia,138.720037,-34.891815 +2023,7,23,1,Queensland,152.983872,-26.242312 +2023,2,15,1,Queensland,153.370621,-27.837719 +2024,7,17,1,Queensland,153.103474,-27.5305 +2024,9,14,1,Queensland,153.090655,-27.526837 +2024,5,29,1,Queensland,151.786925,-27.496283 +2024,9,11,1,Queensland,153.090705,-27.525766 +2023,3,14,1,Queensland,153.103357,-27.53014 +2023,2,15,1,Victoria,142.346977,-38.286255 +2020,2,27,1,South Australia,137.199125,-35.9091 +2024,1,16,1,Queensland,153.092373,-27.527798 +2021,10,14,1,New South Wales,153.377351,-28.254173 +2024,2,22,1,New South Wales,150.851267,-34.080512 +2024,10,18,1,Victoria,142.363733,-38.318792 +2024,6,3,1,Queensland,153.103679,-27.530469 +2021,10,24,1,Queensland,153.086041,-27.506383 +2024,3,9,1,Queensland,153.103378,-27.53013 +2023,2,20,1,New South Wales,152.173263,-32.73558 +2020,5,12,1,Queensland,153.054186,-27.537686 +2024,1,29,1,South Australia,138.722552,-34.891724 +2021,12,26,1,Victoria,146.164746,-38.6711 +2024,11,17,1,Queensland,153.057055,-27.549681 +2023,6,28,1,Queensland,152.042253,-27.653075 +2023,11,30,1,South Australia,138.722268,-34.892546 +2023,12,24,1,South Australia,138.61785,-34.903661 +2020,1,3,1,New South Wales,153.402031,-28.260886 +2020,9,9,1,South Australia,138.657688,-35.012212 +2020,9,23,1,Victoria,148.263947,-37.222 +2020,9,19,1,Victoria,143.684193,-38.529255 +2024,1,31,1,South Australia,138.731874,-34.889212 +2023,2,20,1,Victoria,145.336462,-37.006274 +2024,4,14,1,New South Wales,151.538003,-32.89085 +2023,10,6,1,Queensland,153.108924,-27.527201 +2023,3,27,1,Queensland,153.109669,-27.529632 +2024,5,13,1,Queensland,153.078347,-27.505169 +2023,12,19,1,Victoria,143.899634,-37.573988 +2021,4,15,1,South Australia,138.66653,-34.864238 +2021,9,2,1,New South Wales,153.377542,-28.254062 +2020,5,17,1,Queensland,153.072203,-27.545317 +2023,7,29,1,Queensland,152.902391,-27.621631 +2020,8,1,1,New South Wales,151.520479,-30.520765 +2024,2,22,1,Queensland,151.814158,-26.165707 +2021,11,28,1,Victoria,146.656471,-38.552982 +2020,3,11,1,Queensland,153.316742,-28.033172 +2024,11,2,1,Queensland,153.090532,-27.52685 +2022,2,1,1,Queensland,153.069907,-27.510498 +2023,10,2,1,New South Wales,150.599459,-29.869625 +2024,3,22,1,South Australia,138.705517,-34.935799 +2024,10,25,1,Queensland,153.103723,-27.529588 +2020,4,22,1,Queensland,153.358521,-28.093855 +2020,3,4,1,Queensland,153.058113,-27.552 +2023,11,5,1,Queensland,153.000124,-27.284158 +2023,1,1,1,South Australia,136.809119,-35.960489 +2021,2,12,1,Queensland,153.057035,-27.544517 +2020,6,26,1,Victoria,146.164078,-38.671263 +2022,4,14,1,Queensland,153.372034,-27.914926 +2024,3,7,1,South Australia,138.715387,-34.892758 +2024,6,22,1,Queensland,153.090643,-27.526399 +2023,11,14,1,Queensland,151.610612,-27.811079 +2023,10,15,1,Queensland,152.901959,-27.656519 +2023,7,12,1,Queensland,153.109701,-27.527594 +2024,9,22,1,Queensland,153.091006,-27.527536 +2024,9,23,1,New South Wales,146.880211,-36.085168 +2023,2,17,1,Queensland,153.057542,-27.551499 +2020,11,6,1,Victoria,146.162124,-38.670601 +2023,1,13,1,Queensland,152.831674,-28.070817 +2020,6,7,1,Victoria,145.673118,-35.921747 +2024,11,9,1,Queensland,152.003661,-27.413612 +2023,9,30,1,South Australia,138.685395,-34.953855 +2023,9,2,1,Victoria,146.196887,-38.577281 +2022,10,30,1,New South Wales,153.399462,-28.260471 +2024,5,8,1,South Australia,138.940294,-34.999804 +2023,8,15,1,New South Wales,150.821405,-34.102752 +2023,10,11,1,Queensland,153.11002,-27.527181 +2022,9,22,1,Queensland,152.005852,-26.165776 +2023,10,2,1,New South Wales,150.998947,-34.047889 +2020,11,9,1,New South Wales,153.377075,-28.254443 +2023,6,6,1,Queensland,153.085263,-27.510403 +2024,2,3,1,South Australia,138.56022,-35.260287 +2024,2,2,1,Victoria,143.868715,-38.661087 +2023,1,18,1,Queensland,153.110273,-27.526977 +2023,9,3,1,Queensland,153.036636,-27.534179 +2024,11,2,1,Queensland,153.092277,-27.527076 +2024,11,8,1,Queensland,152.103395,-27.381247 +2023,11,5,1,Queensland,153.069864,-27.510405 +2021,11,6,1,Victoria,146.164428,-38.67122 +2024,4,20,1,South Australia,138.731696,-34.891105 +2021,5,2,1,South Australia,138.670219,-35.020609 +2023,7,11,1,Queensland,152.907428,-28.1741 +2023,10,26,1,Queensland,151.70128,-26.170845 +2024,8,10,1,New South Wales,151.095214,-33.076733 +2022,12,18,1,Queensland,152.00348,-27.413985 +2024,8,14,1,South Australia,138.852118,-34.729521 +2022,11,27,1,Queensland,151.252762,-28.102578 +2024,4,11,1,Queensland,153.079621,-27.514858 +2023,8,3,1,Victoria,143.636047,-38.783908 +2023,9,14,1,Queensland,153.073212,-27.5471 +2023,7,17,1,Queensland,153.058423,-27.781237 +2022,10,17,1,South Australia,138.65764,-34.868997 +2023,5,8,1,Victoria,142.360646,-38.318408 +2024,2,7,1,Queensland,152.591797,-26.894878 +2022,6,30,1,Queensland,151.382105,-27.890182 +2023,11,7,1,Queensland,153.381744,-27.952442 +2023,5,22,1,Victoria,143.850923,-38.668251 +2022,1,26,1,South Australia,138.749319,-34.991879 +2023,12,16,1,Victoria,143.376795,-38.68861 +2024,7,10,1,Victoria,143.630126,-38.761297 +2024,10,19,1,Queensland,152.739349,-28.22348 +2023,4,26,1,Queensland,153.108872,-27.526826 +2023,4,1,1,Victoria,142.627545,-38.340237 +2020,10,17,1,Queensland,151.61072,-27.381851 +2023,6,28,1,Queensland,153.103622,-27.530045 +2023,7,11,1,New South Wales,152.993655,-30.559891 +2023,6,1,1,Queensland,152.343408,-27.401804 +2023,11,5,1,Queensland,152.892328,-27.635564 +2023,10,4,1,Queensland,153.107383,-27.527283 +2023,1,26,1,Queensland,152.614245,-27.338413 +2023,11,7,1,Queensland,152.002933,-27.413905 +2022,9,10,1,Victoria,144.593504,-37.331094 +2023,2,24,1,Queensland,152.18373,-27.53098 +2023,10,29,1,Queensland,151.510925,-27.554842 +2020,3,20,1,Queensland,153.237972,-27.526899 +2024,3,9,1,Queensland,153.105331,-27.529134 +2024,8,31,1,Queensland,152.046493,-27.257024 +2022,11,19,1,Queensland,153.447228,-28.095665 +2024,10,13,1,Queensland,152.993725,-27.8238 +2023,2,17,1,Queensland,153.082975,-27.515683 +2022,4,30,1,Victoria,142.007447,-37.730908 +2023,1,21,1,Victoria,143.721606,-37.250084 +2024,8,11,1,South Australia,138.614203,-34.908602 +2021,4,10,1,South Australia,138.696485,-34.958516 +2021,3,13,1,Queensland,153.061647,-27.538212 +2023,9,26,1,Queensland,152.041906,-27.297637 +2021,9,21,1,Queensland,153.051418,-27.548366 +2024,8,24,1,Queensland,152.642226,-28.144933 +2022,4,20,1,Victoria,143.998367,-37.692515 +2023,6,10,1,Queensland,152.103071,-27.570377 +2024,7,2,1,Victoria,142.971231,-38.477069 +2023,11,20,1,Queensland,151.588264,-27.675954 +2023,11,17,1,Queensland,152.859815,-27.271775 +2021,4,19,1,Queensland,153.104875,-27.810725 +2023,3,28,1,Queensland,153.111895,-27.52784 +2023,4,2,1,Queensland,153.091925,-27.527145 +2022,2,19,1,Victoria,141.600403,-38.352378 +2024,5,29,1,Queensland,153.112608,-27.528238 +2020,11,1,1,New South Wales,153.078645,-30.927708 +2023,12,7,1,Queensland,152.045113,-27.258337 +2022,2,20,1,Queensland,153.076257,-27.498906 +2020,10,25,1,Victoria,146.164139,-38.671447 +2024,10,5,1,Queensland,153.104172,-27.528197 +2021,6,15,1,Victoria,145.127659,-38.177495 +2020,11,17,1,New South Wales,153.123872,-30.295235 +2024,5,21,1,South Australia,138.722534,-34.892044 +2022,1,25,1,Queensland,151.818252,-26.582475 +2022,12,17,1,Queensland,153.105607,-27.529631 +2023,10,31,1,Queensland,153.091717,-27.527117 +2024,10,13,1,Queensland,153.08911,-27.220584 +2023,12,25,1,Victoria,143.838958,-38.683544 +2021,3,10,1,Queensland,153.255037,-27.507872 +2020,4,27,1,South Australia,138.689406,-34.953903 +2023,3,24,1,Queensland,152.858214,-27.543438 +2023,12,12,1,South Australia,138.636308,-34.968851 +2020,8,24,1,New South Wales,153.375286,-28.252449 +2024,5,19,1,Queensland,153.092479,-27.527796 +2023,9,18,1,Queensland,152.827215,-28.127751 +2024,2,12,1,South Australia,136.809497,-35.960413 +2024,2,26,1,Victoria,147.725819,-37.921987 +2023,11,1,1,Queensland,153.103294,-27.529443 +2022,10,5,1,Victoria,143.619855,-38.781235 +2020,1,26,1,South Australia,138.369907,-35.466071 +2022,11,30,1,Queensland,151.647443,-27.276266 +2023,10,8,1,New South Wales,152.914078,-30.490154 +2023,3,21,1,Queensland,153.091526,-27.527102 +2023,3,25,1,South Australia,138.826933,-34.692015 +2024,1,28,1,New South Wales,150.876029,-34.056797 +2021,11,14,1,Queensland,152.003935,-26.684561 +2023,1,5,1,Queensland,153.090805,-27.52694 +2020,7,31,1,Queensland,151.853333,-28.756389 +2023,3,31,1,Queensland,153.110335,-27.529116 +2021,10,26,1,Victoria,146.163925,-38.671222 +2023,12,18,1,Victoria,145.221483,-37.742318 +2021,11,7,1,Queensland,148.687802,-21.687499 +2024,3,3,1,Queensland,153.002571,-27.297549 +2021,10,3,1,Queensland,152.248159,-27.496388 +2024,11,9,1,Queensland,152.003284,-27.413926 +2023,6,3,1,Queensland,153.109147,-27.528867 +2023,10,7,1,Victoria,143.860686,-38.667966 +2024,3,14,1,Queensland,153.036033,-27.530702 +2023,11,4,1,Queensland,153.092499,-27.528285 +2023,8,9,1,Queensland,153.109002,-27.527001 +2024,6,12,1,South Australia,138.731498,-34.891698 +2023,10,28,1,Queensland,153.109327,-27.519186 +2021,7,13,1,Queensland,153.085778,-27.516975 +2023,3,31,1,Queensland,153.437988,-27.400258 +2024,2,8,1,South Australia,138.732738,-34.890572 +2023,9,21,1,South Australia,138.716955,-34.892378 +2023,11,4,1,Queensland,152.110878,-27.566252 +2023,2,26,1,Queensland,153.056448,-27.550611 +2024,1,21,1,Victoria,145.616614,-38.670911 +2024,3,30,1,Queensland,153.103918,-27.529717 +2024,10,13,1,Queensland,153.089242,-27.221284 +2021,11,21,1,New South Wales,153.378216,-28.255464 +2023,9,25,1,South Australia,138.575003,-35.024082 +2024,3,12,1,Queensland,153.103306,-27.528371 +2024,5,25,1,South Australia,138.678772,-35.007839 +2024,5,12,1,Victoria,142.975003,-38.500058 +2024,8,23,1,South Australia,138.720299,-34.862727 +2021,6,3,1,New South Wales,153.323694,-28.830138 +2023,3,27,1,Queensland,153.090762,-27.525848 +2024,2,11,1,South Australia,138.63644,-35.008008 +2024,1,4,1,Victoria,143.10295,-38.143394 +2023,10,11,1,Victoria,141.592622,-38.359969 +2023,2,22,1,Queensland,153.090761,-27.525862 +2023,12,25,1,Queensland,153.090503,-27.525871 +2024,6,12,1,New South Wales,151.095092,-33.076542 +2021,5,13,1,Queensland,151.953222,-27.475871 +2022,10,29,1,New South Wales,153.400465,-28.257904 +2024,8,29,1,Victoria,143.89078,-37.583977 +2021,11,29,1,Victoria,142.638988,-38.330547 +2023,12,19,1,Victoria,145.267537,-38.131095 +2023,8,19,1,Queensland,153.104458,-27.530532 +2024,7,23,1,Victoria,145.476722,-36.938743 +2024,11,5,1,Queensland,152.609603,-27.402722 +2024,10,25,1,Queensland,146.864822,-19.137469 +2024,4,10,1,Queensland,153.103282,-27.528484 +2023,12,26,1,South Australia,138.63957,-34.987887 +2021,1,26,1,New South Wales,150.821931,-34.101853 +2023,5,9,1,South Australia,138.514241,-35.175498 +2021,10,12,1,New South Wales,153.378345,-28.255192 +2022,11,18,1,Victoria,142.363803,-38.32055 +2024,9,7,1,Queensland,153.092529,-27.527602 +2023,8,2,1,Queensland,152.865292,-26.379903 +2020,6,27,1,Queensland,152.802621,-26.757665 +2024,2,29,1,New South Wales,151.522976,-30.627219 +2024,3,9,1,South Australia,138.56021,-35.260289 +2024,1,7,1,Queensland,153.092972,-27.528041 +2024,11,6,1,Queensland,153.033118,-27.539771 +2024,11,14,1,New South Wales,150.858764,-34.078103 +2020,5,18,1,Victoria,146.163833,-38.671395 +2020,7,29,1,Queensland,153.059895,-27.54948 +2024,11,16,1,South Australia,138.6931,-34.919845 +2020,2,24,1,Queensland,153.061499,-27.549867 +2020,2,28,1,Queensland,153.508828,-27.425509 +2024,10,9,1,Queensland,153.375127,-27.918394 +2021,4,15,1,Queensland,152.997765,-27.287858 +2022,4,5,1,New South Wales,146.5694,-34.756295 +2022,9,26,1,Queensland,151.708508,-27.416454 +2024,2,6,1,Victoria,143.971273,-38.551922 +2022,1,11,1,Queensland,152.103011,-27.570395 +2023,3,5,1,Victoria,146.3879,-38.354901 +2024,10,5,1,New South Wales,151.497497,-32.950328 +2023,12,31,1,Queensland,153.092485,-27.525675 +2024,9,21,1,Queensland,153.092255,-27.524754 +2023,8,9,1,Queensland,153.105988,-27.529611 +2021,4,21,1,Victoria,144.170494,-37.507938 +2024,3,3,1,New South Wales,151.095061,-33.076605 +2022,10,23,1,Queensland,153.071632,-27.502555 +2023,4,2,1,Queensland,153.093054,-27.526162 +2020,8,4,1,South Australia,138.826933,-34.692015 +2023,1,1,1,Queensland,153.438719,-27.402164 +2023,11,6,1,Queensland,153.10542,-27.531301 +2024,3,6,1,Queensland,153.104475,-27.530314 +2024,10,13,1,Queensland,153.052426,-27.55047 +2021,5,16,1,New South Wales,153.400506,-28.260442 +2023,3,9,1,Queensland,152.18373,-27.53098 +2024,7,12,1,Queensland,153.073888,-27.546088 +2024,9,12,1,Queensland,152.992275,-27.824058 +2024,8,11,1,Victoria,142.363093,-38.318477 +2022,1,31,1,Victoria,144.506205,-37.649555 +2023,11,2,1,Queensland,153.090961,-27.526928 +2023,6,30,1,Queensland,153.44915,-28.101966 +2021,4,11,1,Queensland,152.377272,-27.0817 +2024,4,7,1,Queensland,153.07426,-27.546273 +2023,11,14,1,Queensland,153.091027,-27.527117 +2024,8,9,1,Queensland,153.373429,-27.912437 +2024,1,23,1,Queensland,153.186332,-27.897178 +2022,12,29,1,Queensland,151.876623,-27.585871 +2024,8,28,1,Victoria,143.861558,-38.667222 +2023,12,31,1,Queensland,153.090571,-27.526969 +2023,12,24,1,Queensland,153.090863,-27.527357 +2024,4,9,1,Victoria,143.90373,-37.640797 +2023,1,7,1,Queensland,153.085696,-27.509693 +2022,11,15,1,Queensland,153.037223,-27.531892 +2023,2,16,1,Queensland,152.900327,-27.653022 +2023,11,3,1,Victoria,145.533555,-37.01267 +2023,12,31,1,Queensland,153.092196,-27.527146 +2024,3,13,1,Queensland,153.058968,-27.55 +2023,11,14,1,Queensland,153.091991,-27.527254 +2020,7,27,1,Queensland,153.059283,-27.548433 +2024,6,18,1,Queensland,152.936269,-27.275537 +2022,11,7,1,Queensland,151.885021,-27.412992 +2024,3,23,1,New South Wales,151.093886,-33.074272 +2024,2,20,1,Queensland,153.105234,-27.530125 +2022,6,20,1,Victoria,145.314338,-38.375101 +2022,11,19,1,Queensland,153.175394,-27.695709 +2021,9,28,1,South Australia,138.685955,-34.82773 +2024,7,21,1,Queensland,153.091553,-27.527202 +2024,6,21,1,Victoria,143.539138,-38.775958 +2024,10,20,1,Queensland,153.09146,-27.527257 +2023,12,10,1,Queensland,152.110886,-27.566528 +2024,8,22,1,South Australia,138.733511,-34.874122 +2024,6,22,1,Queensland,153.092975,-27.526338 +2023,2,11,1,Victoria,145.612013,-38.673622 +2020,12,18,1,Victoria,146.163789,-38.671038 +2021,10,12,1,Queensland,153.057718,-27.551722 +2023,12,12,1,Queensland,153.1117,-27.527863 +2020,1,26,1,Victoria,143.653747,-38.769749 +2023,4,30,1,Queensland,153.092394,-27.528319 +2021,8,19,1,Queensland,153.430603,-27.488119 +2022,10,31,1,Queensland,153.072279,-27.544912 +2024,7,3,1,Victoria,143.618161,-38.778726 +2024,11,14,1,Queensland,151.756396,-26.162209 +2023,7,14,1,Queensland,151.820291,-26.516003 +2023,3,14,1,Queensland,153.092114,-27.525065 +2024,11,17,1,Queensland,151.678883,-26.691803 +2024,10,5,1,Queensland,153.190108,-27.701317 +2020,12,25,1,New South Wales,153.400633,-28.257664 +2024,9,7,1,Queensland,153.09091,-27.527542 +2023,8,19,1,New South Wales,151.639413,-30.487891 +2024,8,31,1,New South Wales,152.904647,-31.436158 +2023,2,20,1,Queensland,153.090521,-27.526823 +2023,7,9,1,Queensland,153.093032,-27.52436 +2023,11,12,1,Queensland,153.072833,-27.543234 +2024,9,24,1,Queensland,153.069421,-27.223303 +2022,9,15,1,Queensland,151.691055,-26.58894 +2024,11,10,1,Queensland,151.9218,-27.381972 +2020,8,26,1,Queensland,152.248252,-27.496345 +2024,4,1,1,Victoria,147.728863,-37.921857 +2023,12,8,1,Queensland,152.501587,-27.35053 +2022,8,4,1,Victoria,143.896612,-37.629829 +2024,3,12,1,New South Wales,150.822905,-34.101733 +2023,3,24,1,Victoria,144.111843,-37.30696 +2023,8,20,1,Queensland,153.32028,-28.014672 +2020,10,26,1,New South Wales,153.377456,-28.254034 +2023,9,25,1,Queensland,153.109485,-27.526922 +2023,1,25,1,Queensland,153.10967,-27.529375 +2023,11,25,1,Victoria,145.298518,-37.046532 +2023,11,8,1,Queensland,151.937848,-27.41542 +2024,4,16,1,Queensland,153.107257,-27.528873 +2022,5,9,1,New South Wales,146.586442,-34.754772 +2020,2,16,1,Queensland,153.067881,-27.546446 +2023,4,2,1,South Australia,138.705016,-34.903147 +2022,4,7,1,South Australia,137.49587,-35.715852 +2021,6,12,1,New South Wales,150.148626,-32.693202 +2023,12,31,1,Victoria,147.729624,-37.925394 +2023,2,25,1,Queensland,152.994206,-27.823347 +2024,7,3,1,Victoria,143.626249,-38.783717 +2023,7,31,1,Queensland,153.075408,-27.548198 +2024,6,16,1,Queensland,153.091645,-27.527156 +2023,5,14,1,Queensland,153.092158,-27.527323 +2024,10,19,1,Queensland,153.090749,-27.527522 +2023,2,8,1,Queensland,153.402896,-27.493912 +2024,8,19,1,Queensland,153.059974,-27.549317 +2023,1,9,1,Victoria,145.31437,-38.375751 +2022,10,2,1,Victoria,145.316507,-38.363738 +2024,9,17,1,Queensland,153.065654,-27.540339 +2023,10,8,1,New South Wales,152.914652,-30.496479 +2023,10,2,1,Queensland,153.103714,-27.528652 +2024,1,28,1,New South Wales,150.854783,-34.0748 +2022,11,5,1,Queensland,151.932862,-27.33027 +2020,8,14,1,Queensland,152.068352,-27.544598 +2022,12,6,1,Victoria,142.363114,-38.317797 +2020,2,22,1,New South Wales,150.850041,-34.081068 +2024,7,17,1,Queensland,146.871197,-19.130482 +2023,4,19,1,Queensland,146.866732,-19.126134 +2022,10,11,1,South Australia,136.750642,-36.039698 +2023,11,7,1,Queensland,153.113061,-27.528552 +2020,1,17,1,New South Wales,151.520624,-30.520784 +2024,3,16,1,Queensland,153.091822,-27.527142 +2024,10,14,1,Queensland,153.110298,-27.527168 +2024,1,17,1,Queensland,153.090412,-27.523014 +2023,12,3,1,Queensland,153.090848,-27.527461 +2023,9,8,1,Queensland,151.971677,-27.589755 +2024,9,2,1,Victoria,141.600899,-38.281173 +2022,1,11,1,Victoria,143.807771,-38.623711 +2023,1,15,1,Queensland,152.846053,-27.340437 +2020,9,27,1,Queensland,153.249793,-27.489854 +2023,6,17,1,Queensland,151.889359,-27.599035 +2024,11,3,1,Queensland,153.05466,-27.552445 +2023,11,17,1,Queensland,151.63629,-27.712818 +2024,10,19,1,Queensland,153.403051,-27.493604 +2023,5,9,1,Queensland,153.092251,-27.527995 +2024,1,5,1,Victoria,142.363354,-38.318667 +2024,6,28,1,Queensland,153.104604,-27.529915 +2023,9,24,1,South Australia,138.68178,-34.855594 +2022,1,30,1,South Australia,137.493058,-35.70703 +2024,8,10,1,Queensland,152.637208,-28.06274 +2023,1,29,1,Queensland,153.093256,-27.526722 +2022,7,1,1,New South Wales,153.401953,-28.256614 +2023,3,19,1,Queensland,153.092518,-27.527507 +2023,11,14,1,Queensland,151.571107,-27.689155 +2020,8,15,1,Queensland,153.072881,-27.547157 +2022,12,22,1,South Australia,138.740892,-35.025906 +2024,6,17,1,Queensland,153.104927,-27.52981 +2023,7,2,1,Queensland,153.092684,-27.524923 +2023,8,5,1,Queensland,153.071004,-27.509561 +2023,3,24,1,Queensland,153.091839,-27.527221 +2023,5,24,1,Victoria,142.362528,-38.318369 +2024,10,22,1,New South Wales,151.586975,-32.890203 +2020,6,3,1,Queensland,153.054269,-27.539587 +2020,2,24,1,Victoria,143.885331,-37.654354 +2023,8,24,1,Queensland,153.07785,-27.248145 +2022,11,18,1,Victoria,145.764892,-36.804755 +2022,12,22,1,Queensland,153.234561,-27.500628 +2024,7,7,1,Queensland,153.0916,-27.526886 +2021,11,1,1,Victoria,143.925126,-37.656536 +2023,4,10,1,South Australia,138.706097,-34.931987 +2020,7,27,1,Victoria,146.741013,-36.388675 +2024,1,2,1,Queensland,153.090667,-27.526898 +2024,11,1,1,Queensland,153.187255,-28.194745 +2020,2,14,1,Victoria,141.052037,-37.961587 +2020,8,8,1,Queensland,153.066515,-27.542353 +2024,10,19,1,Queensland,146.876903,-19.123539 +2023,2,19,1,Victoria,147.754464,-37.90878 +2023,10,25,1,Queensland,153.111649,-27.527907 +2024,9,20,1,New South Wales,151.095441,-33.076711 +2023,9,9,1,Queensland,153.105295,-27.532251 +2021,9,10,1,Queensland,153.101033,-27.566633 +2020,4,13,1,Queensland,153.118928,-27.492722 +2024,10,17,1,Queensland,152.640883,-27.453805 +2020,1,31,1,Queensland,153.052859,-27.542191 +2024,7,7,1,Queensland,153.091469,-27.527123 +2023,6,25,1,Victoria,142.036972,-38.20395 +2023,2,15,1,Queensland,151.732925,-27.587118 +2023,10,27,1,Queensland,151.816006,-26.362522 +2021,7,13,1,Queensland,153.087068,-27.511205 +2024,4,14,1,Queensland,153.092509,-27.527203 +2024,1,1,1,New South Wales,151.636459,-30.475357 +2024,11,9,1,Queensland,153.093047,-27.523807 +2023,3,6,1,Queensland,153.10968,-27.527122 +2023,11,26,1,Victoria,144.127198,-37.899092 +2023,4,25,1,New South Wales,146.545156,-34.752746 +2024,4,27,1,Queensland,153.090985,-27.527141 +2023,1,9,1,Victoria,145.31476,-38.372215 +2024,3,18,1,Victoria,147.735138,-37.908685 +2023,10,14,1,Queensland,153.112501,-27.52895 +2023,12,7,1,Victoria,145.71492,-38.637755 +2023,3,30,1,Queensland,153.09176,-27.527112 +2024,6,1,1,South Australia,137.230163,-35.787303 +2021,10,17,1,Queensland,153.134095,-27.565113 +2023,7,16,1,Queensland,153.092421,-27.52499 +2024,4,27,1,Victoria,143.511465,-38.828863 +2023,11,18,1,Queensland,153.093432,-27.526147 +2023,11,8,1,New South Wales,152.975203,-28.335562 +2023,12,17,1,New South Wales,151.095143,-33.076349 +2024,9,22,1,Queensland,153.091834,-27.525328 +2023,12,26,1,Queensland,153.090585,-27.527537 +2024,10,14,1,Queensland,151.904854,-26.598259 +2022,12,23,1,Queensland,153.073214,-27.545903 +2021,12,4,1,South Australia,138.648894,-34.879786 +2021,10,22,1,Victoria,146.38731,-38.354789 +2022,5,4,1,Queensland,153.099783,-27.53181 +2020,5,31,1,South Australia,138.635367,-34.990247 +2023,4,22,1,Queensland,153.092431,-27.525063 +2020,7,21,1,Queensland,153.062768,-27.550337 +2023,2,26,1,Queensland,153.091906,-27.524526 +2020,9,20,1,Queensland,153.07249,-27.549207 +2023,1,20,1,Queensland,153.072114,-27.545675 +2022,10,12,1,Queensland,153.073673,-27.545615 +2023,9,8,1,Queensland,151.801169,-26.154592 +2024,1,7,1,Queensland,153.092545,-27.527553 +2023,1,6,1,Queensland,153.104725,-27.530054 +2024,5,7,1,Queensland,153.359461,-27.916565 +2023,11,13,1,Queensland,153.110823,-27.528281 +2023,8,11,1,Queensland,152.003586,-27.41387 +2024,9,28,1,Victoria,146.388712,-38.35779 +2023,7,2,1,Queensland,153.092259,-27.527601 +2024,7,28,1,Queensland,153.090953,-27.526759 +2024,6,4,1,South Australia,138.680044,-35.033534 +2024,2,15,1,Queensland,152.854434,-28.08208 +2023,11,26,1,Queensland,153.093401,-27.524899 +2023,1,25,1,Queensland,153.132828,-27.564262 +2024,10,13,1,Queensland,153.083035,-27.516238 +2023,1,26,1,South Australia,138.581539,-35.059156 +2022,4,30,1,Victoria,143.654238,-38.778231 +2023,3,5,1,Queensland,153.090743,-27.527234 +2020,7,11,1,New South Wales,153.400982,-28.25779 +2024,10,9,1,Queensland,152.993544,-27.822678 +2021,10,29,1,Victoria,146.163711,-38.671105 +2020,12,15,1,Queensland,153.072311,-27.213111 +2023,12,3,1,Queensland,151.690103,-26.175549 +2022,4,30,1,South Australia,138.656705,-35.011115 +2024,7,5,1,Queensland,153.104669,-27.530589 +2023,1,4,1,Queensland,153.092405,-27.52504 +2024,9,24,1,Queensland,153.069395,-27.223304 +2020,8,27,1,Queensland,153.158592,-27.656398 +2022,11,28,1,Queensland,153.073741,-27.546059 +2023,6,10,1,Queensland,153.092234,-27.524962 +2024,11,3,1,Queensland,153.353365,-27.934301 +2022,12,29,1,Queensland,153.10389,-27.529123 +2024,5,18,1,Queensland,153.09249,-27.527776 +2024,10,23,1,Queensland,146.865692,-19.142114 +2024,11,21,1,Queensland,152.049575,-27.276933 +2023,12,24,1,Queensland,153.090843,-27.526916 +2022,1,10,1,Queensland,153.054473,-27.542551 +2023,5,22,1,Queensland,152.012821,-26.637757 +2023,3,5,1,Queensland,153.091995,-27.524038 +2023,7,13,1,Victoria,143.343552,-38.707032 +2023,6,11,1,Victoria,142.290897,-37.874752 +2024,1,31,1,Queensland,153.079068,-27.506347 +2021,1,1,1,Victoria,147.72951,-37.925848 +2023,9,23,1,Queensland,153.102631,-27.529476 +2021,10,31,1,Queensland,151.256988,-28.104443 +2023,11,8,1,Victoria,143.860293,-38.668552 +2022,12,20,1,Victoria,147.7247,-37.923692 +2023,8,5,1,Queensland,153.034456,-27.540342 +2023,3,7,1,Queensland,153.109897,-27.527038 +2024,10,21,1,Victoria,143.698833,-38.565395 +2022,2,19,1,Victoria,147.754464,-37.90878 +2024,6,16,1,Queensland,153.09162,-27.527204 +2023,12,11,1,Queensland,153.296041,-28.017451 +2023,10,30,1,Queensland,153.112649,-27.528721 +2022,7,17,1,Queensland,146.86197,-19.142098 +2022,12,18,1,Queensland,153.356764,-27.938953 +2024,11,18,1,Queensland,153.082983,-27.516033 +2023,8,18,1,Queensland,146.871145,-19.128028 +2023,7,10,1,Queensland,153.103268,-27.529339 +2022,12,31,1,Queensland,152.845763,-27.340372 +2022,12,5,1,Victoria,144.274045,-37.87303 +2024,9,11,1,Queensland,153.09088,-27.527347 +2022,12,21,1,Queensland,153.074329,-27.54685 +2023,1,26,1,Queensland,153.092195,-27.525012 +2024,10,5,1,Queensland,153.091997,-27.524509 +2024,7,25,1,Victoria,145.002847,-38.297784 +2021,9,14,1,Queensland,153.374664,-27.913354 +2020,7,5,1,Queensland,152.857672,-27.544569 +2021,4,16,1,Victoria,143.582521,-38.82722 +2023,7,17,1,Queensland,152.227265,-27.297562 +2023,12,12,1,South Australia,138.569421,-35.080743 +2023,10,1,1,Victoria,145.207414,-38.3017 +2024,2,9,1,Victoria,148.196281,-37.158569 +2024,7,5,1,Queensland,153.092494,-27.526776 +2023,11,15,1,Victoria,147.730592,-37.924172 +2023,11,4,1,Queensland,153.093053,-27.524609 +2024,3,23,1,Victoria,146.386887,-38.52737 +2021,6,3,1,Queensland,153.05633,-27.551285 +2024,4,16,1,South Australia,138.732753,-34.890013 +2022,6,18,1,Queensland,152.608002,-27.418861 +2021,1,4,1,New South Wales,153.375165,-28.252455 +2022,12,16,1,Queensland,153.072209,-27.545204 +2021,7,29,1,Queensland,152.840742,-27.528783 +2020,11,7,1,Queensland,153.450275,-28.101751 +2024,5,13,1,South Australia,138.734488,-34.889446 +2024,4,5,1,South Australia,138.665977,-35.013974 +2023,11,26,1,South Australia,138.826933,-34.692015 +2023,12,1,1,Queensland,153.109559,-27.528045 +2020,7,17,1,New South Wales,153.377476,-28.254053 +2024,5,13,1,Queensland,153.081619,-27.510033 +2023,11,19,1,Queensland,153.19019,-27.701741 +2023,11,15,1,Queensland,153.103892,-27.530155 +2022,12,14,1,Victoria,145.657408,-38.068675 +2022,12,29,1,Victoria,143.874704,-37.595442 +2023,1,19,1,Queensland,152.639825,-26.234862 +2022,1,12,1,Queensland,146.870558,-19.123122 +2023,5,24,1,Queensland,153.09157,-27.527298 +2024,10,20,1,Queensland,153.091594,-27.527083 +2024,3,14,1,Queensland,153.063053,-27.541894 +2023,11,2,1,South Australia,138.579297,-35.053938 +2023,4,19,1,Queensland,153.072708,-27.523703 +2021,2,24,1,Queensland,153.054659,-27.550096 +2024,7,6,1,Queensland,153.090405,-27.526473 +2022,12,2,1,Queensland,148.678838,-21.681693 +2024,7,7,1,Queensland,153.19019,-27.701741 +2022,2,18,1,Victoria,145.331083,-38.371904 +2021,3,28,1,South Australia,138.709367,-35.03536 +2023,10,4,1,South Australia,138.72174,-34.892703 +2022,10,27,1,Queensland,153.073584,-27.54536 +2023,4,10,1,Queensland,152.898134,-27.632727 +2022,2,4,1,Victoria,144.09484,-37.623664 +2024,11,4,1,Queensland,153.19019,-27.701741 +2024,10,5,1,Queensland,151.974172,-27.537431 +2022,10,17,1,Victoria,141.641329,-38.209867 +2023,2,22,1,Queensland,153.092966,-27.525892 +2021,8,11,1,New South Wales,153.402368,-28.257634 +2020,5,9,1,Queensland,153.048222,-27.548925 +2022,7,31,1,Queensland,153.087892,-27.507282 +2021,3,13,1,Queensland,153.260972,-27.523087 +2022,7,31,1,New South Wales,151.083345,-33.130917 +2022,5,11,1,Victoria,148.267717,-37.189328 +2023,1,31,1,Queensland,153.105356,-27.532137 +2023,2,21,1,Victoria,141.066756,-38.004837 +2023,10,27,1,Queensland,151.960144,-27.43205 +2023,5,4,1,Queensland,153.09146,-27.527244 +2023,2,5,1,Victoria,144.338114,-37.692415 +2021,12,16,1,Victoria,146.202408,-38.651463 +2023,3,19,1,South Australia,138.6595,-35.004831 +2024,7,13,1,Queensland,153.09081,-27.526772 +2023,2,23,1,Queensland,152.978063,-26.72462 +2024,7,28,1,Queensland,153.066816,-27.250419 +2024,7,28,1,Queensland,153.093225,-27.524869 +2020,4,24,1,Queensland,153.059998,-27.55087 +2021,10,22,1,New South Wales,152.907703,-31.450804 +2023,6,7,1,Queensland,153.111174,-27.527112 +2023,8,3,1,Queensland,153.07927,-27.22478 +2023,12,16,1,Queensland,153.111505,-27.529177 +2021,12,14,1,Queensland,153.069673,-27.51049 +2021,11,8,1,South Australia,138.733017,-34.886758 +2022,12,28,1,Victoria,145.12207,-38.377688 +2021,11,13,1,Victoria,143.910666,-37.664068 +2024,7,27,1,Queensland,153.04797,-27.273298 +2024,8,26,1,Queensland,153.072493,-27.54906 +2023,12,1,1,Queensland,151.343306,-26.527061 +2024,5,19,1,Queensland,153.04354,-27.551523 +2022,4,27,1,Queensland,153.056158,-27.53716 +2024,2,19,1,Queensland,153.104438,-27.530434 +2023,5,19,1,Victoria,144.310638,-37.276917 +2023,10,11,1,Queensland,152.00296,-27.413697 +2023,12,1,1,South Australia,138.692178,-34.899118 +2023,9,22,1,Victoria,145.665803,-37.773792 +2022,2,10,1,South Australia,138.69704,-34.958685 +2023,12,23,1,Queensland,153.093808,-27.524777 +2023,12,24,1,Queensland,153.092962,-27.528226 +2024,1,6,1,Queensland,153.103623,-27.529837 +2022,12,31,1,Queensland,152.652468,-27.446931 +2024,5,20,1,South Australia,137.202603,-35.629158 +2021,2,4,1,Queensland,153.054823,-27.550113 +2024,3,1,1,Victoria,144.114794,-37.553794 +2023,10,9,1,Queensland,153.073731,-27.525433 +2023,4,14,1,Victoria,145.300568,-38.361471 +2024,10,20,1,Queensland,153.090975,-27.52634 +2021,2,26,1,Queensland,153.037578,-27.548058 +2021,4,2,1,Victoria,142.62931,-38.317739 +2022,12,8,1,Queensland,153.070368,-27.54367 +2024,5,5,1,Queensland,146.868422,-19.126625 +2021,12,21,1,Queensland,153.084045,-27.510003 +2024,2,3,1,South Australia,138.596413,-35.085193 +2023,4,17,1,Queensland,152.51137,-27.137819 +2023,12,22,1,Queensland,153.107299,-27.527394 +2023,12,2,1,Victoria,144.249498,-37.811318 +2022,1,1,1,Victoria,144.91027,-38.375747 +2023,8,19,1,Queensland,153.091934,-27.527221 +2023,8,18,1,Queensland,153.093389,-27.52408 +2021,12,22,1,Queensland,153.08435,-27.505828 +2022,8,7,1,South Australia,138.711017,-34.902571 +2022,11,19,1,Queensland,151.520699,-27.719672 +2023,4,22,1,Queensland,153.092273,-27.528165 +2024,8,10,1,Queensland,153.091785,-27.526898 +2024,9,20,1,Queensland,151.804578,-26.129862 +2024,8,13,1,South Australia,138.733201,-34.888785 +2024,3,6,1,Queensland,153.091143,-27.527261 +2020,10,10,1,New South Wales,152.918473,-31.442202 +2023,10,30,1,Queensland,153.102727,-27.518284 +2021,10,3,1,Queensland,152.106453,-27.5625 +2023,8,1,1,Queensland,153.111375,-27.527309 +2022,10,19,1,Victoria,145.08104,-38.286999 +2023,12,19,1,Queensland,153.092968,-27.528036 +2022,11,2,1,Queensland,152.888331,-27.647827 +2022,9,23,1,Victoria,145.715745,-38.637762 +2023,6,28,1,New South Wales,150.822053,-34.101872 +2023,3,3,1,South Australia,138.717804,-34.929568 +2023,11,26,1,South Australia,138.693955,-34.921537 +2024,9,28,1,Victoria,144.20862,-37.34573 +2024,10,20,1,Victoria,143.667225,-38.763514 +2023,6,11,1,Queensland,153.093744,-27.524784 +2024,8,23,1,Queensland,152.630912,-27.438473 +2022,8,27,1,Queensland,153.063166,-27.538882 +2024,3,21,1,Queensland,152.042206,-27.300205 +2023,9,26,1,New South Wales,152.293862,-28.915806 +2023,5,26,1,Queensland,153.109661,-27.529337 +2022,1,19,1,Queensland,151.863433,-26.594261 +2024,4,12,1,Queensland,153.109254,-27.528797 +2024,1,5,1,Queensland,153.110236,-27.527648 +2024,1,3,1,Victoria,146.116532,-38.824175 +2020,5,15,1,Queensland,153.042445,-27.551748 +2023,11,26,1,Queensland,153.092727,-27.528231 +2024,6,12,1,New South Wales,151.095438,-33.076733 +2024,11,10,1,Queensland,152.003617,-27.413588 +2024,2,7,1,Victoria,143.994868,-37.716147 +2024,6,10,1,Queensland,151.781858,-26.309113 +2024,11,2,1,South Australia,138.667378,-34.958397 +2021,8,22,1,Queensland,153.08288,-27.506333 +2021,3,5,1,Queensland,153.060784,-27.549843 +2024,3,19,1,South Australia,138.730434,-34.887155 +2024,10,30,1,Queensland,153.054174,-27.552027 +2024,1,30,1,Queensland,152.042235,-27.299273 +2023,11,15,1,Victoria,147.730728,-37.923805 +2023,1,28,1,Queensland,153.437926,-27.400283 +2024,2,28,1,Queensland,153.105148,-27.531588 +2023,2,3,1,Queensland,153.073548,-27.54712 +2020,2,8,1,South Australia,138.694111,-34.897319 +2024,4,27,1,Queensland,153.110343,-27.527519 +2024,1,29,1,Queensland,152.901422,-27.623468 +2023,9,22,1,Queensland,153.439361,-27.394281 +2023,12,25,1,Queensland,153.091737,-27.527092 +2022,10,25,1,Victoria,145.295235,-38.324837 +2022,9,30,1,Queensland,151.5032,-27.68304 +2024,9,6,1,South Australia,138.722167,-34.889629 +2021,7,11,1,Queensland,153.084841,-27.506624 +2021,6,15,1,Victoria,143.925556,-37.652778 +2023,11,11,1,Queensland,152.111283,-27.566662 +2023,10,12,1,South Australia,138.7184,-34.891711 +2020,1,10,1,Queensland,146.872107,-19.122495 +2023,4,30,1,Queensland,153.091306,-27.526859 +2021,6,17,1,Queensland,153.057521,-27.550949 +2022,1,29,1,Victoria,142.290831,-37.874676 +2024,5,28,1,South Australia,138.783569,-34.876083 +2023,5,21,1,Queensland,153.090396,-27.526857 +2023,12,22,1,South Australia,138.709258,-34.904233 +2023,10,24,1,Queensland,153.110144,-27.52771 +2024,10,5,1,Queensland,153.091824,-27.524373 +2023,9,17,1,Queensland,153.229183,-27.956967 +2021,7,30,1,Queensland,152.697394,-27.990554 +2020,10,20,1,New South Wales,153.377364,-28.253323 +2023,4,12,1,Queensland,153.109159,-27.527196 +2024,10,27,1,Queensland,153.090902,-27.525815 +2020,9,30,1,South Australia,138.687998,-34.953659 +2024,7,22,1,Victoria,145.789719,-36.805636 +2024,9,14,1,Queensland,153.092628,-27.524727 +2021,2,15,1,Victoria,146.164661,-38.671099 +2021,9,2,1,New South Wales,151.64525,-32.614969 +2024,11,3,1,Queensland,153.091983,-27.527005 +2023,8,12,1,Queensland,152.957947,-27.499203 +2023,9,6,1,Queensland,151.697305,-27.554711 +2020,1,11,1,New South Wales,151.519282,-30.520446 +2020,9,17,1,New South Wales,152.922872,-31.477597 +2021,2,24,1,Queensland,153.083922,-27.527713 +2024,3,8,1,Queensland,153.103511,-27.530196 +2021,5,2,1,South Australia,138.665641,-35.014095 +2023,12,23,1,Queensland,153.085377,-27.50677 +2024,10,20,1,Queensland,153.091609,-27.527231 +2024,9,26,1,Queensland,152.965181,-27.278309 +2023,10,23,1,Queensland,153.10335,-27.530167 +2024,7,24,1,Queensland,151.820162,-26.175006 +2024,7,23,1,Victoria,143.605483,-38.763356 +2021,10,1,1,South Australia,138.712144,-34.892257 +2024,11,9,1,Queensland,153.093231,-27.527168 +2021,10,24,1,Queensland,153.082859,-27.507077 +2023,8,21,1,Queensland,153.104048,-27.530565 +2023,9,9,1,Queensland,153.093415,-27.525302 +2023,1,27,1,Queensland,153.092405,-27.525442 +2024,10,8,1,South Australia,138.573288,-35.029578 +2024,9,10,1,Victoria,144.540162,-37.489492 +2020,11,19,1,Queensland,153.056032,-27.53917 +2022,1,13,1,South Australia,138.685589,-34.953812 +2022,11,17,1,Queensland,152.750762,-28.182685 +2024,11,21,1,Queensland,153.057572,-27.551372 +2024,1,28,1,Queensland,153.092966,-27.526153 +2024,9,12,1,Queensland,152.994051,-27.823454 +2021,10,7,1,Queensland,152.425397,-27.99982 +2022,1,5,1,Queensland,152.814529,-26.714273 +2023,7,1,1,Queensland,153.092302,-27.528081 +2023,7,30,1,Queensland,151.830282,-26.041071 +2024,2,2,1,Victoria,143.477273,-38.80269 +2023,10,8,1,New South Wales,152.91387,-30.490626 +2024,4,7,1,Queensland,153.091091,-27.527237 +2022,12,27,1,New South Wales,146.581405,-34.761475 +2023,10,2,1,New South Wales,150.625174,-33.56895 +2024,8,24,1,Queensland,153.038152,-27.532726 +2023,5,20,1,Queensland,153.091085,-27.527558 +2023,12,31,1,Victoria,147.729395,-37.926331 +2022,7,30,1,Queensland,153.109708,-27.529444 +2024,9,18,1,South Australia,138.721967,-34.892025 +2022,2,19,1,South Australia,140.770535,-34.185479 +2021,1,5,1,Victoria,147.729722,-37.925278 +2023,1,31,1,Queensland,153.01502,-27.746111 +2022,12,4,1,Victoria,143.948399,-38.574861 +2021,3,3,1,New South Wales,153.553497,-28.588097 +2023,7,25,1,Queensland,153.124237,-27.777695 +2021,5,2,1,South Australia,138.673699,-35.012698 +2023,7,23,1,Queensland,145.261977,-17.961973 +2023,12,4,1,Queensland,153.103315,-27.530215 +2023,12,31,1,Victoria,147.731698,-37.923484 +2021,8,19,1,Queensland,153.121312,-27.512057 +2022,1,10,1,South Australia,138.656845,-34.865222 +2021,7,12,1,Queensland,153.103422,-27.52821 +2023,8,13,1,Queensland,153.092806,-27.524547 +2020,3,22,1,Victoria,145.672625,-36.839969 +2021,2,26,1,Queensland,152.838829,-27.237073 +2022,12,16,1,New South Wales,153.400253,-28.25928 +2022,3,6,1,Victoria,143.521216,-38.853654 +2024,5,23,1,South Australia,138.731477,-34.89122 +2023,10,14,1,Queensland,153.092245,-27.524986 +2021,8,25,1,Queensland,152.08235,-27.70095 +2023,10,6,1,South Australia,138.590692,-35.137115 +2023,10,30,1,New South Wales,150.726945,-33.426278 +2024,3,12,1,Queensland,153.059299,-27.556731 +2023,9,2,1,Queensland,153.092985,-27.52477 +2022,11,22,1,Queensland,152.287287,-26.39763 +2020,9,27,1,Victoria,147.754464,-37.90878 +2023,10,22,1,Queensland,153.197467,-28.205072 +2022,2,26,1,Victoria,144.094646,-37.623141 +2020,1,1,1,Queensland,153.056617,-27.536858 +2023,9,10,1,Queensland,152.04632,-27.257014 +2022,10,30,1,New South Wales,153.030598,-30.215406 +2024,1,26,1,Queensland,153.090855,-27.527401 +2023,8,24,1,Victoria,143.583267,-38.82817 +2022,12,25,1,Queensland,151.889413,-27.600133 +2021,1,5,1,New South Wales,153.375176,-28.252479 +2024,1,23,1,Victoria,145.26884,-38.130747 +2022,2,13,1,Queensland,153.31335,-27.974715 +2020,9,16,1,Queensland,152.248252,-27.496345 +2023,8,13,1,Queensland,153.001118,-27.284299 +2023,3,5,1,Victoria,143.376637,-38.689215 +2023,3,5,1,Queensland,153.05762,-27.550981 +2020,3,11,1,Victoria,141.608226,-38.338071 +2024,1,18,1,New South Wales,151.819076,-32.319849 +2024,4,1,1,Victoria,147.728863,-37.921857 +2022,1,7,1,Victoria,145.469451,-37.977771 +2024,2,11,1,Queensland,151.996462,-26.227911 +2023,4,25,1,South Australia,138.63807,-35.006017 +2023,11,3,1,Queensland,152.988875,-27.170805 +2020,3,12,1,Queensland,153.068271,-27.544901 +2023,9,4,1,Queensland,152.046364,-27.257125 +2024,6,9,1,Queensland,153.055452,-27.543897 +2021,2,1,1,Victoria,146.163833,-38.671292 +2023,10,14,1,Queensland,153.191599,-27.702482 +2022,2,1,1,Queensland,153.104274,-27.530441 +2023,11,19,1,Queensland,153.092382,-27.524863 +2023,10,12,1,Queensland,152.854949,-28.308736 +2023,12,16,1,Victoria,142.365117,-38.322214 +2022,3,13,1,South Australia,138.597596,-35.146825 +2023,1,5,1,Victoria,145.26807,-38.130876 +2021,12,30,1,Victoria,146.387998,-38.354012 +2021,3,13,1,Queensland,153.062195,-27.541995 +2023,7,8,1,Queensland,152.857309,-27.544032 +2022,9,20,1,Queensland,152.744112,-27.575445 +2023,4,8,1,Victoria,143.911921,-37.651258 +2023,3,3,1,New South Wales,151.813478,-31.989313 +2022,5,11,1,Victoria,145.132056,-38.175629 +2020,10,8,1,Queensland,153.05206,-27.548439 +2021,1,19,1,Queensland,146.855847,-19.128648 +2023,10,26,1,Queensland,152.044728,-27.25791 +2021,1,15,1,South Australia,138.736167,-34.830996 +2023,5,1,1,Queensland,153.092509,-27.52746 +2024,5,13,1,South Australia,138.73225,-34.891356 +2024,7,23,1,Victoria,142.633549,-38.334815 +2021,12,28,1,Queensland,153.104553,-27.53062 +2023,1,17,1,Queensland,153.103828,-27.530639 +2023,10,20,1,New South Wales,152.90735,-31.434775 +2024,5,22,1,Queensland,151.77355,-26.179374 +2023,8,9,1,Queensland,152.249225,-27.495004 +2023,10,19,1,Queensland,153.441419,-27.394611 +2023,10,28,1,Queensland,153.101306,-27.524026 +2020,2,24,1,Queensland,153.201381,-27.733111 +2021,10,21,1,New South Wales,153.37674,-28.254167 +2023,11,9,1,Queensland,153.072033,-27.848935 +2023,5,13,1,Queensland,152.249435,-27.496763 +2022,3,21,1,South Australia,138.638051,-34.971441 +2022,12,30,1,Queensland,151.895396,-27.600052 +2022,12,28,1,Queensland,153.14215,-27.533792 +2022,2,10,1,South Australia,138.673624,-34.950787 +2021,10,22,1,Victoria,145.243763,-38.251851 +2022,3,18,1,New South Wales,150.911757,-34.000119 +2020,5,25,1,Queensland,146.868969,-19.137299 +2023,3,12,1,Queensland,153.092179,-27.527446 +2023,2,10,1,Victoria,145.263561,-38.486596 +2020,11,6,1,New South Wales,153.376758,-28.253788 +2024,10,4,1,Victoria,143.856156,-38.670551 +2023,12,26,1,Queensland,151.565545,-27.648024 +2020,5,19,1,New South Wales,153.377645,-28.254299 +2023,8,20,1,Queensland,153.101801,-27.52972 +2020,2,5,1,Queensland,153.05966,-27.549627 +2024,5,27,1,Queensland,151.784653,-26.612043 +2024,9,22,1,Victoria,141.55601,-37.936023 +2020,9,25,1,South Australia,138.542784,-34.917751 +2023,10,14,1,Queensland,153.101559,-27.528883 +2024,6,8,1,Queensland,151.556488,-27.61347 +2024,3,3,1,Queensland,153.090902,-27.527451 +2024,7,20,1,Queensland,153.103557,-27.5292 +2022,11,22,1,New South Wales,153.399622,-28.260678 +2021,9,20,1,Queensland,153.377016,-27.919592 +2022,8,1,1,Queensland,151.258889,-28.103119 +2023,7,21,1,Queensland,153.103351,-27.528244 +2024,6,11,1,Queensland,152.99995,-27.28436 +2023,2,26,1,Queensland,152.992633,-27.824287 +2024,5,9,1,South Australia,138.733423,-34.874369 +2020,9,15,1,Queensland,151.443241,-24.857677 +2024,2,25,1,Queensland,153.09127,-27.527078 +2024,10,13,1,New South Wales,153.390097,-28.281303 +2024,3,23,1,New South Wales,151.095506,-33.07655 +2022,9,17,1,New South Wales,150.972024,-34.100564 +2022,11,9,1,New South Wales,151.095428,-33.076733 +2023,12,6,1,Queensland,153.19019,-27.701741 +2024,9,20,1,Victoria,146.387545,-38.354719 +2020,10,9,1,New South Wales,153.377096,-28.254227 +2023,3,10,1,Queensland,152.18373,-27.53098 +2023,12,30,1,Queensland,153.091137,-27.52707 +2021,2,23,1,Queensland,153.121139,-27.493855 +2024,3,16,1,Queensland,153.091748,-27.527146 +2024,9,18,1,South Australia,138.72197,-34.891982 +2021,3,23,1,Queensland,152.669829,-25.592426 +2024,9,26,1,South Australia,138.584315,-35.037253 +2024,4,21,1,Queensland,153.092288,-27.525007 +2021,11,6,1,Queensland,153.101944,-27.734289 +2023,7,9,1,Queensland,153.09304,-27.524269 +2024,3,10,1,Queensland,153.090583,-27.526537 +2020,9,16,1,Victoria,145.132266,-38.175496 +2024,11,4,1,Queensland,153.19029,-27.701238 +2020,1,16,1,New South Wales,151.520661,-30.520064 +2023,6,12,1,Queensland,151.766353,-26.17259 +2024,11,3,1,Queensland,153.083656,-27.516139 +2020,6,18,1,New South Wales,153.377369,-28.253922 +2024,6,1,1,Queensland,153.092593,-27.527874 +2024,1,15,1,Queensland,153.104088,-27.53044 +2024,8,10,1,Queensland,153.093151,-27.523884 +2024,5,10,1,Victoria,142.975014,-38.500075 +2021,4,12,1,New South Wales,151.648977,-32.654893 +2020,2,16,1,Queensland,153.068855,-27.545859 +2024,8,3,1,Victoria,145.689,-37.757382 +2024,5,13,1,South Australia,138.734182,-34.886321 +2020,10,8,1,Queensland,153.063136,-27.539646 +2023,9,24,1,Queensland,152.065247,-27.26833 +2020,10,1,1,Queensland,153.162807,-27.812013 +2024,1,4,1,Queensland,153.092171,-27.527209 +2023,11,8,1,Queensland,153.075423,-27.662956 +2024,2,5,1,South Australia,138.731562,-34.889727 +2023,3,1,1,Queensland,152.18373,-27.53098 +2024,11,23,1,Queensland,153.105308,-27.529934 +2024,10,1,1,Queensland,153.19019,-27.701741 +2024,4,18,1,South Australia,138.721882,-34.889935 +2023,2,4,1,Queensland,153.163871,-27.570645 +2023,9,23,1,Victoria,143.534515,-38.803999 +2024,10,5,1,Queensland,152.308992,-27.448862 +2022,11,10,1,Queensland,151.547954,-27.699665 +2023,8,12,1,New South Wales,150.82564,-34.1004 +2023,2,19,1,South Australia,138.839648,-34.852779 +2024,5,19,1,South Australia,138.686968,-34.933233 +2023,12,12,1,Queensland,153.112639,-27.527709 +2022,4,24,1,Queensland,153.094528,-27.806672 +2022,1,15,1,Victoria,145.127537,-38.178276 +2021,8,6,1,Queensland,152.835517,-28.118477 +2023,12,23,1,Queensland,153.091602,-27.527199 +2024,5,13,1,South Australia,138.730982,-34.89133 +2023,2,6,1,Victoria,145.261577,-38.484212 +2022,2,14,1,Victoria,143.481831,-38.800562 +2023,12,21,1,Queensland,153.223572,-27.509111 +2024,2,22,1,South Australia,138.730671,-34.890851 +2024,11,14,1,Queensland,153.069613,-27.510447 +2023,2,16,1,Queensland,152.900414,-27.654295 +2024,8,22,1,Victoria,146.404142,-38.345764 +2021,8,18,1,Victoria,145.130436,-38.179692 +2023,9,26,1,Victoria,146.144133,-38.225617 +2024,1,19,1,Victoria,145.267866,-38.130666 +2024,5,13,1,Queensland,152.591286,-27.948395 +2024,2,10,1,Queensland,153.111314,-27.529357 +2024,4,13,1,Queensland,153.105186,-27.531112 +2020,6,10,1,Queensland,151.548543,-27.018405 +2023,10,26,1,Queensland,146.872045,-19.123795 +2023,10,6,1,Queensland,151.692383,-26.177354 +2024,3,9,1,Queensland,153.092137,-27.527156 +2023,9,10,1,Queensland,153.093097,-27.524316 +2020,9,29,1,Queensland,153.069882,-27.510335 +2024,6,5,1,Victoria,149.757378,-37.5626 +2023,6,30,1,Queensland,152.650244,-27.387998 +2024,4,27,1,Queensland,153.108232,-27.527246 +2023,4,24,1,Queensland,153.091452,-27.527194 +2020,4,19,1,South Australia,138.639125,-35.009444 +2023,2,11,1,South Australia,138.826933,-34.692015 +2020,11,11,1,South Australia,138.584078,-35.170347 +2024,9,16,1,New South Wales,146.566458,-34.757195 +2024,4,20,1,Queensland,153.092002,-27.525758 +2023,3,15,1,Queensland,153.381147,-27.963527 +2024,9,24,1,South Australia,138.638688,-34.970323 +2020,8,7,1,Queensland,153.059827,-27.549425 +2024,11,3,1,Queensland,153.091781,-27.527144 +2024,6,27,1,New South Wales,153.400785,-28.257976 +2023,10,15,1,Victoria,145.717317,-36.926638 +2023,1,14,1,South Australia,138.590056,-35.002344 +2024,7,12,1,Queensland,153.108857,-27.526887 +2023,9,8,1,Queensland,153.110213,-27.527548 +2024,4,30,1,South Australia,138.731679,-34.881096 +2020,1,31,1,Queensland,153.051169,-27.549136 +2021,5,19,1,Queensland,153.0587,-27.5519 +2023,9,25,1,Queensland,152.749177,-27.886315 +2023,2,25,1,Victoria,143.335595,-37.198 +2024,8,19,1,Victoria,141.726796,-38.081626 +2024,8,23,1,Queensland,152.632028,-27.437549 +2022,12,19,1,Queensland,153.073276,-27.545831 +2021,10,22,1,Queensland,153.102483,-27.734787 +2023,8,3,1,Queensland,153.090929,-27.526617 +2022,7,23,1,Queensland,146.868195,-19.12793 +2024,5,9,1,South Australia,138.729295,-34.871821 +2024,4,28,1,South Australia,138.656348,-35.001711 +2023,11,4,1,Queensland,153.090432,-27.525975 +2023,5,3,1,Queensland,153.059827,-27.549204 +2023,4,9,1,Queensland,153.187191,-28.196394 +2023,2,5,1,Victoria,144.105482,-37.570987 +2024,3,27,1,Victoria,144.30385,-37.827783 +2024,10,5,1,Queensland,153.091465,-27.526905 +2020,8,4,1,Queensland,153.058148,-27.551142 +2023,3,18,1,South Australia,138.688933,-34.947804 +2023,6,20,1,Queensland,151.821061,-26.505141 +2024,2,15,1,South Australia,138.733348,-34.890277 +2020,9,9,1,New South Wales,153.40062,-28.257748 +2023,11,5,1,Queensland,153.093036,-27.524556 +2022,12,4,1,Queensland,152.062627,-27.348381 +2024,6,11,1,South Australia,138.715394,-34.892802 +2022,9,25,1,New South Wales,150.822983,-34.101753 +2020,2,14,1,Queensland,153.058031,-27.551163 +2023,10,6,1,Queensland,151.61625,-27.385972 +2021,8,8,1,New South Wales,153.401523,-28.260373 +2024,1,4,1,Queensland,153.092114,-27.527137 +2023,9,19,1,New South Wales,152.919373,-31.443032 +2022,12,27,1,New South Wales,153.229042,-28.889395 +2024,1,26,1,Queensland,153.0931,-27.526287 +2024,4,18,1,Victoria,143.512968,-38.834065 +2021,5,14,1,Victoria,146.163697,-38.671167 +2023,5,1,1,Queensland,152.249514,-27.496771 +2024,4,25,1,Queensland,153.102836,-27.527529 +2024,9,18,1,Queensland,153.097,-27.837805 +2023,4,8,1,Queensland,153.441942,-27.39523 +2023,10,21,1,Queensland,152.592987,-27.158067 +2024,3,17,1,Queensland,153.091788,-27.527126 +2023,6,14,1,Queensland,153.075142,-27.506851 +2024,3,7,1,New South Wales,150.564426,-29.547058 +2023,12,26,1,Queensland,151.794672,-26.38855 +2021,2,26,1,Queensland,153.054904,-27.542287 +2022,7,30,1,South Australia,138.826181,-34.989 +2020,12,1,1,Queensland,151.921227,-26.546061 +2023,11,19,1,South Australia,138.884801,-35.071298 +2021,1,31,1,Queensland,153.082795,-27.514507 +2020,1,17,1,South Australia,138.650922,-34.963253 +2023,10,22,1,Queensland,153.189646,-27.701124 +2023,1,8,1,New South Wales,151.519445,-30.520513 +2024,3,22,1,South Australia,138.705275,-34.936978 +2024,11,2,1,Queensland,153.092556,-27.527928 +2024,9,7,1,Queensland,153.092884,-27.525433 +2023,1,26,1,Victoria,145.497497,-37.0386 +2023,10,31,1,Queensland,152.003838,-27.412028 +2021,10,27,1,Queensland,153.052286,-27.834752 +2021,2,23,1,New South Wales,153.400825,-28.258081 +2023,8,9,1,Queensland,151.747217,-26.148682 +2024,10,6,1,Queensland,153.059576,-27.550249 +2023,9,24,1,Queensland,152.854949,-28.308732 +2024,7,13,1,Queensland,153.092287,-27.527791 +2023,10,29,1,Queensland,153.400058,-27.49658 +2024,4,12,1,Victoria,145.309082,-38.384823 +2024,1,31,1,Victoria,144.248992,-37.811045 +2024,2,6,1,New South Wales,150.563969,-29.546651 +2024,6,12,1,Queensland,153.103045,-27.530576 +2022,12,5,1,Queensland,153.036592,-27.535408 +2022,11,3,1,Victoria,145.279049,-38.134349 +2023,9,6,1,Queensland,153.104829,-27.52981 +2021,1,23,1,Victoria,142.29159,-37.874318 +2023,7,31,1,Queensland,153.106413,-27.529377 +2023,7,23,1,Victoria,142.291211,-37.874662 +2020,5,17,1,South Australia,138.656425,-35.00272 +2024,6,16,1,South Australia,138.684858,-34.95724 +2020,7,8,1,Queensland,151.13289,-24.967152 +2024,6,2,1,Queensland,153.091332,-27.527291 +2023,5,15,1,Queensland,153.09168,-27.527123 +2024,1,20,1,Queensland,153.090878,-27.527323 +2021,10,27,1,Victoria,146.164003,-38.67162 +2023,1,25,1,Queensland,152.740662,-26.66948 +2023,10,30,1,Queensland,153.09125,-27.527227 +2021,9,17,1,Victoria,146.386293,-38.354295 +2022,11,24,1,Queensland,153.073289,-27.545977 +2023,12,22,1,South Australia,138.70662,-34.903595 +2023,4,16,1,Queensland,153.092212,-27.527903 +2020,3,17,1,Queensland,153.058553,-27.547262 +2022,9,25,1,Queensland,146.871353,-19.123525 +2020,7,16,1,Victoria,145.103078,-38.399394 +2023,12,6,1,Queensland,153.40241,-27.495821 +2022,6,23,1,Queensland,153.06969,-27.510485 +2024,1,10,1,Queensland,151.762506,-26.16856 +2024,11,18,1,Queensland,152.430276,-26.51423 +2024,7,16,1,New South Wales,151.095322,-33.076622 +2024,8,4,1,Queensland,153.093157,-27.526841 +2023,10,9,1,Queensland,152.67903,-27.852263 +2022,9,20,1,Queensland,152.735581,-28.279851 +2022,12,20,1,Queensland,151.572433,-27.63027 +2023,10,16,1,Queensland,153.103652,-27.530628 +2023,6,4,1,Queensland,153.090754,-27.527478 +2023,4,15,1,Queensland,153.109391,-27.527347 +2023,7,21,1,Queensland,153.109351,-27.529399 +2023,3,18,1,Queensland,153.109496,-27.527148 +2023,9,16,1,Queensland,151.547853,-27.766288 +2024,10,29,1,Queensland,153.085053,-27.509192 +2024,7,1,1,Queensland,153.112246,-27.528043 +2023,7,9,1,Queensland,153.101454,-27.530284 +2023,10,31,1,Queensland,153.456542,-28.09673 +2023,1,23,1,New South Wales,151.252647,-29.801455 +2023,3,18,1,South Australia,138.718722,-34.912635 +2023,6,1,1,Queensland,143.943865,-18.622496 +2023,11,28,1,Queensland,151.564187,-27.628952 +2024,6,26,1,South Australia,138.721342,-34.858354 +2024,4,3,1,Queensland,153.073904,-27.547326 +2024,6,22,1,Queensland,153.103184,-27.528477 +2024,5,27,1,South Australia,138.730899,-34.885521 +2023,9,6,1,Queensland,152.005176,-26.559585 +2024,5,5,1,Queensland,153.092335,-27.52811 +2023,9,26,1,Queensland,151.997441,-27.564462 +2022,2,19,1,Victoria,147.762188,-37.911556 +2021,10,2,1,Queensland,153.104068,-27.530518 +2023,1,17,1,Queensland,153.073407,-27.546173 +2024,5,3,1,Queensland,153.074407,-27.546187 +2024,7,20,1,Queensland,153.090852,-27.527067 +2024,3,15,1,Queensland,153.073115,-27.546024 +2024,9,17,1,New South Wales,146.587633,-34.757719 +2023,2,17,1,Queensland,153.05092,-27.544853 +2024,4,2,1,Victoria,141.542748,-38.41078 +2024,5,15,1,Queensland,151.762506,-26.16856 +2022,4,3,1,Queensland,152.928296,-28.062578 +2023,6,20,1,New South Wales,150.800264,-34.192565 +2024,8,11,1,Victoria,146.680892,-36.347888 +2024,1,22,1,Queensland,151.815231,-26.166516 +2022,3,11,1,South Australia,138.649276,-35.013263 +2020,6,8,1,South Australia,138.637716,-35.004977 +2021,8,28,1,New South Wales,150.550482,-34.507421 +2022,11,1,1,Victoria,143.996858,-37.688766 +2021,5,31,1,Queensland,153.061693,-27.534306 +2023,1,31,1,Queensland,153.092788,-27.527079 +2023,9,16,1,Queensland,153.059979,-27.544681 +2023,11,19,1,Queensland,153.19019,-27.701741 +2024,4,12,1,Victoria,145.297012,-38.383266 +2023,10,11,1,Queensland,153.374581,-27.916126 +2024,3,31,1,Victoria,142.631588,-38.341403 +2023,7,22,1,Victoria,145.313756,-38.377516 +2022,2,7,1,Queensland,153.268234,-28.007122 +2024,10,4,1,Victoria,144.281162,-37.840084 +2023,7,16,1,Queensland,151.792799,-26.13385 +2022,4,19,1,Queensland,152.992999,-27.823741 +2021,5,2,1,South Australia,138.656444,-35.019039 +2022,8,11,1,Queensland,153.174469,-27.871711 +2024,10,11,1,New South Wales,146.59485,-34.760563 +2021,11,28,1,Queensland,153.086408,-27.505926 +2024,8,5,1,Queensland,152.042022,-27.297578 +2022,9,18,1,South Australia,138.652908,-35.012256 +2022,8,1,1,Queensland,153.453353,-28.096203 +2022,2,1,1,South Australia,138.731586,-34.889695 +2023,11,9,1,New South Wales,151.537154,-32.88857 +2022,9,25,1,Queensland,153.053273,-27.544769 +2024,9,7,1,Queensland,152.677277,-27.985931 +2024,3,22,1,South Australia,138.705046,-34.934965 +2022,10,18,1,South Australia,138.719081,-34.891845 +2021,12,22,1,New South Wales,152.071533,-32.707295 +2022,12,31,1,New South Wales,150.822445,-34.102073 +2024,4,1,1,Queensland,153.103626,-27.529884 +2024,8,23,1,Queensland,153.19019,-27.701741 +2021,4,30,1,South Australia,138.653605,-34.963425 +2022,7,16,1,Queensland,152.928218,-28.061285 +2023,10,6,1,Queensland,153.108669,-27.526695 +2020,2,24,1,Queensland,153.066066,-27.55124 +2021,7,10,1,New South Wales,153.390229,-28.281744 +2021,12,30,1,Queensland,152.996063,-27.432787 +2022,9,1,1,Queensland,152.1833,-27.53118 +2024,8,6,1,Victoria,141.726796,-38.081626 +2022,9,30,1,Queensland,152.876467,-28.057931 +2023,6,3,1,Queensland,153.109026,-27.527269 +2022,10,31,1,Queensland,153.073853,-27.54524 +2024,10,7,1,Queensland,153.105207,-27.529931 +2024,2,4,1,Queensland,150.979318,-24.723634 +2023,11,27,1,Victoria,144.275912,-37.860145 +2022,10,9,1,Queensland,152.945372,-28.125842 +2022,10,26,1,Victoria,145.267911,-38.13058 +2023,7,31,1,Queensland,153.057692,-27.551827 +2021,11,26,1,Queensland,151.932708,-27.330345 +2024,6,25,1,Victoria,142.974828,-38.481689 +2024,10,24,1,Queensland,153.19019,-27.701741 +2021,11,29,1,Queensland,151.570937,-27.812862 +2023,10,10,1,South Australia,136.808619,-35.959072 +2022,12,12,1,Queensland,153.103889,-27.528736 +2021,9,27,1,Victoria,145.134115,-38.173466 +2022,11,1,1,Queensland,151.539177,-27.654271 +2021,9,30,1,Queensland,151.980027,-27.556855 +2021,11,29,1,Queensland,151.569151,-27.756378 +2023,11,20,1,Queensland,153.19019,-27.701741 +2023,5,13,1,Queensland,153.090453,-27.526043 +2022,7,25,1,Queensland,153.05855,-27.547731 +2021,7,29,1,South Australia,138.731676,-34.890343 +2024,8,18,1,Victoria,144.15518,-38.352304 +2023,3,3,1,Victoria,144.419744,-37.958541 +2024,6,1,1,Queensland,153.069153,-27.223163 +2023,10,9,1,Victoria,145.654433,-37.75712 +2023,10,31,1,Queensland,153.108617,-27.527281 +2024,9,23,1,New South Wales,153.397638,-28.261625 +2024,10,28,1,South Australia,140.773023,-34.183908 +2020,5,26,1,Victoria,146.164078,-38.671562 +2021,11,21,1,Victoria,146.208859,-38.622633 +2024,8,16,1,Queensland,151.320398,-27.618251 +2023,9,15,1,Queensland,152.854949,-28.308732 +2024,3,23,1,Victoria,143.861194,-38.668211 +2024,1,12,1,Queensland,153.092007,-27.52554 +2023,1,23,1,Queensland,153.074459,-27.546007 +2020,1,21,1,Queensland,153.374968,-27.914379 +2021,11,21,1,South Australia,138.530158,-35.138445 +2024,9,1,1,Queensland,152.2612,-27.590392 +2022,1,13,1,Victoria,143.857513,-37.640192 +2023,4,7,1,Queensland,153.083229,-27.513873 +2024,10,1,1,Queensland,153.000641,-27.284487 +2023,9,9,1,New South Wales,150.601251,-29.86718 +2024,3,14,1,South Australia,138.722429,-34.891339 +2022,8,4,1,Queensland,152.612992,-27.34011 +2024,7,29,1,Queensland,151.905877,-27.650796 +2023,4,23,1,New South Wales,149.328159,-36.20924 +2023,11,18,1,Queensland,153.058679,-27.546415 +2020,7,20,1,Victoria,143.877716,-37.697475 +2024,6,8,1,Queensland,153.093153,-27.528492 +2023,11,3,1,Queensland,153.093055,-27.528061 +2024,7,10,1,Queensland,153.004613,-27.298679 +2023,8,20,1,Victoria,143.998414,-37.692538 +2024,7,3,1,Victoria,143.601859,-38.762571 +2023,11,8,1,Queensland,151.391904,-28.001374 +2024,11,17,1,Queensland,153.092726,-27.527638 +2023,3,12,1,Victoria,147.727969,-37.922906 +2023,2,6,1,Queensland,153.072568,-27.54327 +2021,10,8,1,Queensland,152.760237,-28.240512 +2022,6,8,1,Queensland,153.054701,-27.538373 +2022,4,29,1,South Australia,138.635944,-34.99006 +2021,4,11,1,South Australia,138.740915,-34.83935 +2023,6,10,1,Queensland,153.091732,-27.527161 +2024,11,9,1,Queensland,153.077138,-27.543132 +2024,5,6,1,South Australia,138.722727,-34.889565 +2023,1,6,1,Victoria,144.594465,-37.331937 +2023,11,21,1,Queensland,153.19019,-27.701741 +2023,11,3,1,Queensland,153.093448,-27.525434 +2022,10,13,1,New South Wales,153.394487,-28.266663 +2022,10,27,1,Queensland,151.8803,-27.424591 +2024,4,26,1,Victoria,143.29335,-38.753597 +2024,2,7,1,Queensland,153.111461,-27.52833 +2024,9,26,1,Queensland,153.06035,-27.55952 +2022,2,14,1,Victoria,144.953195,-38.428993 +2024,9,7,1,Victoria,142.356434,-38.333708 +2023,2,25,1,Queensland,153.090516,-27.526002 +2022,10,10,1,Queensland,153.135101,-27.565216 +2022,3,30,1,New South Wales,146.519958,-34.745628 +2023,11,11,1,Queensland,153.092091,-27.52706 +2022,5,27,1,Victoria,145.08104,-38.286999 +2021,9,9,1,Queensland,152.954103,-28.075911 +2024,9,5,1,Queensland,153.074781,-27.546176 +2021,10,30,1,Queensland,152.107545,-27.5637 +2021,11,24,1,Queensland,153.361935,-27.903962 +2021,9,5,1,South Australia,138.714791,-34.98703 +2024,6,22,1,Queensland,153.090967,-27.526471 +2022,11,4,1,Victoria,145.124251,-37.741977 +2023,10,7,1,Queensland,152.102434,-27.5687 +2020,6,24,1,New South Wales,153.37706,-28.254206 +2024,8,14,1,Queensland,152.95802,-27.310235 +2023,10,8,1,Queensland,152.90214,-27.620514 +2021,5,11,1,New South Wales,153.401521,-28.260455 +2024,10,2,1,South Australia,138.717578,-34.931619 +2021,9,28,1,New South Wales,153.396103,-28.275088 +2022,8,24,1,Victoria,144.409522,-37.962314 +2022,9,3,1,New South Wales,146.515397,-34.740788 +2024,9,12,1,Queensland,151.94962,-26.283744 +2024,9,13,1,Victoria,141.774895,-38.202745 +2021,9,11,1,New South Wales,153.377676,-28.254288 +2021,3,25,1,Queensland,152.722703,-26.989088 +2020,8,14,1,South Australia,138.70334,-34.903004 +2024,9,15,1,Queensland,153.092287,-27.525734 +2024,1,22,1,New South Wales,150.57293,-29.541992 +2024,4,14,1,Queensland,153.090716,-27.525984 +2023,10,30,1,Queensland,153.115408,-27.529336 +2022,11,24,1,Queensland,151.871372,-27.326297 +2024,7,24,1,Queensland,152.992718,-27.82402 +2024,4,12,1,Victoria,145.309984,-38.384945 +2023,5,21,1,Queensland,153.103667,-27.529714 +2024,1,16,1,Queensland,153.09206,-27.527193 +2023,12,21,1,South Australia,138.731048,-34.890227 +2023,3,18,1,Queensland,153.092275,-27.527275 +2020,5,19,1,Queensland,153.058201,-27.547369 +2023,12,3,1,Queensland,153.371829,-27.91064 +2020,1,30,1,Queensland,153.057932,-27.550819 +2023,4,24,1,Queensland,152.015381,-26.699369 +2020,9,10,1,Queensland,147.522643,-22.596606 +2023,12,1,1,Queensland,153.403783,-27.499171 +2023,8,2,1,Queensland,152.828946,-26.373343 +2024,10,14,1,South Australia,138.634369,-34.888328 +2022,11,27,1,Queensland,153.070516,-27.543561 +2023,6,11,1,Victoria,144.143994,-38.05283 +2022,12,3,1,Queensland,151.892916,-27.602107 +2022,7,11,1,Queensland,146.870542,-19.131922 +2023,7,22,1,Queensland,146.827388,-19.128562 +2023,11,5,1,Queensland,152.999854,-27.284521 +2023,5,27,1,Queensland,153.069398,-27.511985 +2021,10,12,1,Queensland,153.057731,-27.551715 +2024,5,10,1,South Australia,138.722258,-34.890694 +2024,9,18,1,New South Wales,151.095441,-33.076711 +2020,7,8,1,Queensland,153.059215,-27.546192 +2021,12,23,1,Victoria,145.134296,-38.178694 +2023,10,22,1,Queensland,153.09303,-27.524463 +2023,2,25,1,Queensland,153.092396,-27.524797 +2021,9,4,1,Victoria,145.130955,-38.175094 +2024,3,3,1,Queensland,151.843129,-26.539756 +2020,7,29,1,New South Wales,153.40518,-28.260772 +2024,6,23,1,Queensland,152.999921,-27.284544 +2021,5,22,1,Queensland,153.094842,-27.513825 +2021,11,27,1,New South Wales,153.550241,-28.657903 +2023,3,27,1,New South Wales,150.846405,-34.145867 +2021,7,13,1,Queensland,153.084012,-27.512497 +2023,12,5,1,Queensland,153.357574,-27.983128 +2024,6,6,1,Queensland,152.992301,-27.82348 +2024,8,13,1,South Australia,138.731975,-34.890229 +2020,4,2,1,South Australia,138.701203,-34.901662 +2024,9,25,1,New South Wales,150.013668,-34.806076 +2024,7,3,1,Victoria,143.626217,-38.784656 +2022,2,10,1,Victoria,144.311492,-37.664088 +2024,1,17,1,South Australia,138.721392,-34.89275 +2024,9,25,1,Queensland,152.04468,-27.257758 +2024,1,10,1,Queensland,151.814643,-26.36268 +2024,10,28,1,Victoria,147.727538,-37.920637 +2024,1,20,1,Queensland,153.104615,-27.529714 +2023,3,22,1,Queensland,153.090698,-27.526469 +2020,9,15,1,South Australia,138.682753,-35.086363 +2020,11,20,1,Victoria,147.72585,-37.926806 +2021,9,23,1,New South Wales,153.377978,-28.254511 +2023,10,10,1,Queensland,153.115363,-27.529197 +2023,1,28,1,Queensland,153.10334,-27.530131 +2020,11,21,1,Queensland,153.061022,-27.546063 +2024,2,3,1,Queensland,153.079895,-27.513038 +2022,6,15,1,Queensland,153.057773,-27.551127 +2024,5,6,1,Queensland,153.091003,-27.527095 +2023,11,5,1,Queensland,153.092197,-27.527738 +2024,4,5,1,Queensland,153.090704,-27.526737 +2024,6,9,1,Queensland,153.091551,-27.526749 +2020,3,11,1,Victoria,141.401948,-38.275213 +2023,10,10,1,Queensland,153.11038,-27.527512 +2023,1,26,1,South Australia,138.595394,-35.076037 +2020,9,15,1,Queensland,153.058582,-27.544852 +2023,12,31,1,Victoria,147.729395,-37.926331 +2023,7,14,1,Queensland,153.103376,-27.529086 +2023,8,19,1,Queensland,153.090102,-27.526698 +2024,5,21,1,New South Wales,151.095536,-33.076472 +2023,11,27,1,Queensland,153.110021,-27.527396 +2023,10,30,1,Queensland,152.852017,-27.543528 +2020,10,24,1,Victoria,141.833445,-38.151948 +2024,11,3,1,Victoria,146.658594,-36.247843 +2021,8,24,1,Queensland,152.404198,-27.453729 +2023,4,25,1,Queensland,153.112659,-27.527931 +2024,8,18,1,Queensland,153.092675,-27.527487 +2024,2,10,1,New South Wales,151.957655,-32.337238 +2022,7,22,1,Queensland,152.905083,-28.173541 +2020,10,26,1,Queensland,153.057487,-27.551295 +2023,8,17,1,Queensland,153.190207,-27.70089 +2021,12,6,1,Queensland,152.344529,-27.831775 +2024,2,17,1,Queensland,153.093659,-27.525328 +2022,4,14,1,Victoria,143.561577,-38.825019 +2022,3,9,1,Queensland,153.059527,-27.55106 +2024,5,27,1,Victoria,143.889298,-37.671158 +2023,9,10,1,Queensland,153.090726,-27.526027 +2020,12,10,1,South Australia,138.715923,-35.016456 +2023,10,13,1,Queensland,153.188377,-27.700713 +2022,12,24,1,Queensland,152.959719,-27.249639 +2024,5,10,1,South Australia,138.722435,-34.892718 +2023,11,3,1,Queensland,151.597107,-27.800797 +2022,5,19,1,Queensland,153.03752,-26.375482 +2023,10,26,1,Queensland,151.866519,-26.169442 +2023,3,20,1,Queensland,153.201997,-27.631028 +2023,4,15,1,Queensland,153.092448,-27.528334 +2023,10,11,1,Queensland,153.10427,-27.528679 +2022,11,28,1,Queensland,152.855975,-28.077068 +2022,10,18,1,Queensland,153.08308,-27.516538 +2024,11,1,1,Queensland,151.769885,-26.215839 +2024,5,28,1,Queensland,153.102691,-27.529456 +2021,12,3,1,New South Wales,152.872695,-31.473463 +2023,10,18,1,New South Wales,153.406351,-28.976688 +2024,7,3,1,Victoria,143.618925,-38.788478 +2023,11,27,1,Queensland,153.103257,-27.528501 +2024,10,5,1,New South Wales,151.499313,-32.949538 +2022,2,26,1,South Australia,138.677231,-34.950061 +2020,10,18,1,Victoria,146.060456,-38.363914 +2023,3,22,1,Victoria,144.158966,-38.176525 +2024,9,21,1,Queensland,152.403117,-27.237725 +2023,9,10,1,Victoria,144.330265,-37.696561 +2023,8,30,1,Queensland,153.074005,-27.545958 +2024,6,12,1,South Australia,138.728498,-34.890131 +2024,7,24,1,South Australia,138.722346,-34.889845 +2022,11,18,1,Queensland,151.550849,-27.813264 +2020,7,30,1,Queensland,153.057885,-27.551089 +2020,9,30,1,South Australia,138.690613,-34.954348 +2023,2,26,1,Queensland,153.058977,-27.547716 +2023,10,2,1,Queensland,153.109085,-27.526735 +2021,6,20,1,Queensland,153.047417,-27.545129 +2021,3,20,1,Victoria,146.164781,-38.671105 +2021,10,25,1,South Australia,138.638562,-34.97007 +2022,4,30,1,South Australia,138.65593,-35.019247 +2020,11,24,1,New South Wales,153.37524,-28.252536 +2022,11,13,1,Queensland,153.073886,-27.519128 +2020,2,17,1,Queensland,153.058176,-27.551428 +2024,5,26,1,Queensland,153.092749,-27.527545 +2022,11,19,1,Victoria,146.01743,-38.608447 +2024,3,8,1,Queensland,153.103746,-27.528183 +2024,11,8,1,Queensland,152.062592,-27.26313 +2023,4,20,1,Queensland,153.091918,-27.527059 +2024,9,7,1,New South Wales,151.095441,-33.076711 +2024,10,29,1,Queensland,152.997152,-27.287641 +2022,10,9,1,Queensland,152.867267,-28.222061 +2024,7,27,1,Queensland,152.046158,-27.255483 +2022,2,5,1,Victoria,146.196354,-38.572854 +2020,7,24,1,South Australia,138.700303,-34.96203 +2024,6,11,1,Queensland,153.033828,-27.527938 +2021,12,1,1,Victoria,143.874434,-37.601773 +2024,5,11,1,South Australia,138.585783,-35.169842 +2021,8,22,1,Queensland,153.078779,-27.506239 +2020,8,11,1,New South Wales,153.377301,-28.253858 +2021,11,17,1,Victoria,146.176484,-36.217902 +2023,6,25,1,Queensland,153.369093,-27.833022 +2024,9,29,1,Queensland,153.09106,-27.526351 +2022,12,22,1,Queensland,153.058689,-27.551349 +2024,1,18,1,South Australia,138.713945,-34.959922 +2023,9,2,1,Queensland,153.091945,-27.525028 +2023,3,8,1,Queensland,153.108088,-27.526792 +2023,3,24,1,Queensland,152.284841,-26.894481 +2023,11,26,1,Queensland,153.170288,-27.582925 +2023,11,14,1,Queensland,153.19019,-27.701741 +2024,3,2,1,Queensland,153.091121,-27.527541 +2023,4,26,1,Queensland,153.057761,-27.551543 +2023,10,9,1,New South Wales,146.403563,-34.671938 +2023,6,18,1,Victoria,143.857413,-38.669925 +2023,3,19,1,Victoria,145.295958,-38.384467 +2020,4,4,1,New South Wales,151.521594,-30.519724 +2024,3,2,1,South Australia,138.724425,-34.865098 +2024,5,27,1,Queensland,153.441222,-27.3935 +2023,12,17,1,South Australia,138.900178,-34.976859 +2023,9,4,1,Queensland,153.110741,-27.529814 +2024,10,27,1,Queensland,152.763563,-27.269725 +2021,9,6,1,Queensland,151.789262,-27.402547 +2024,5,24,1,Victoria,143.925632,-37.65306 +2024,4,15,1,Victoria,146.197342,-38.757603 +2021,6,18,1,Queensland,152.73656,-28.201111 +2023,8,15,1,Queensland,153.093399,-27.524138 +2023,8,4,1,Queensland,153.091675,-27.527114 +2023,8,20,1,Queensland,153.000565,-27.284239 +2024,4,27,1,Victoria,143.511465,-38.828863 +2023,5,21,1,Queensland,153.091739,-27.527151 +2023,12,27,1,Queensland,153.092079,-27.52573 +2024,9,7,1,Victoria,144.597393,-37.370924 +2020,5,22,1,New South Wales,153.377471,-28.254097 +2020,2,13,1,Queensland,152.249747,-27.496789 +2020,6,10,1,Victoria,146.710954,-36.353547 +2022,11,23,1,South Australia,136.811691,-35.959464 +2024,7,25,1,Queensland,152.260719,-27.589162 +2023,9,1,1,New South Wales,151.8258,-32.32651 +2020,11,24,1,New South Wales,149.408161,-33.753478 +2023,3,29,1,Queensland,153.103892,-27.529678 +2023,7,7,1,Queensland,153.107506,-27.527047 +2022,1,18,1,Victoria,144.310837,-37.276937 +2023,9,22,1,South Australia,138.589997,-35.137108 +2023,11,14,1,Queensland,151.78003,-27.392737 +2022,12,17,1,Queensland,153.109327,-27.527221 +2021,4,24,1,Victoria,141.536755,-38.148607 +2023,12,7,1,Queensland,151.751388,-26.363404 +2023,3,21,1,Queensland,153.091777,-27.527131 +2020,9,25,1,Victoria,145.131848,-38.175571 +2023,3,1,1,Queensland,153.102926,-27.528969 +2023,1,23,1,Victoria,147.728088,-37.922303 +2024,2,29,1,Queensland,151.791974,-26.1446 +2023,11,24,1,Queensland,153.102608,-27.529462 +2023,8,6,1,South Australia,138.702567,-34.903095 +2024,6,9,1,Queensland,152.618422,-27.88937 +2022,8,30,1,Queensland,153.379969,-27.918638 +2022,10,28,1,South Australia,138.658206,-35.003503 +2020,9,8,1,Queensland,153.158906,-27.716628 +2023,6,13,1,Queensland,153.16351,-27.62049 +2021,5,2,1,South Australia,138.656811,-35.018471 +2023,5,25,1,South Australia,138.656875,-34.865238 +2024,9,5,1,Queensland,152.074653,-27.358635 +2023,8,12,1,Queensland,153.073208,-27.545619 +2023,8,20,1,Victoria,145.302108,-36.897383 +2020,6,20,1,Queensland,153.060293,-27.538572 +2023,9,21,1,New South Wales,146.550848,-34.754636 +2023,1,3,1,Queensland,153.109971,-27.529295 +2023,12,6,1,Victoria,145.715653,-38.637795 +2021,6,1,1,Queensland,153.05483,-27.55031 +2020,1,14,1,New South Wales,153.394689,-28.275677 +2020,6,25,1,Queensland,153.070828,-27.509689 +2024,4,6,1,Queensland,153.092538,-27.525461 +2023,7,7,1,Victoria,146.387718,-38.354703 +2024,11,11,1,Queensland,153.104104,-27.531088 +2020,9,18,1,Queensland,153.08554,-27.625599 +2022,12,21,1,Queensland,153.070308,-27.543468 +2024,10,29,1,Queensland,153.108856,-27.529119 +2024,11,14,1,Queensland,151.716417,-27.568672 +2023,10,5,1,Queensland,152.044342,-27.257481 +2020,10,15,1,Queensland,149.43425,-20.923028 +2022,9,14,1,Queensland,152.898437,-27.652831 +2023,7,28,1,Queensland,153.092251,-27.527961 +2024,4,12,1,South Australia,138.716848,-34.893376 +2024,10,9,1,Queensland,153.103219,-27.528996 +2023,5,4,1,South Australia,138.658277,-34.959683 +2024,6,19,1,Queensland,153.110117,-27.527389 +2024,2,6,1,South Australia,138.738927,-34.827487 +2024,11,18,1,Victoria,149.749675,-37.567248 +2024,10,6,1,New South Wales,146.568478,-34.761568 +2024,10,2,1,South Australia,138.626078,-34.893254 +2021,2,15,1,Queensland,153.086022,-27.516366 +2024,9,13,1,Queensland,152.994066,-27.823552 +2022,12,4,1,Queensland,153.052176,-27.538842 +2021,7,29,1,South Australia,138.724811,-34.875561 +2023,12,15,1,Queensland,151.761171,-26.141183 +2021,10,3,1,New South Wales,153.376817,-28.254193 +2022,3,18,1,Queensland,153.102422,-27.735248 +2023,10,4,1,Queensland,153.111426,-27.527927 +2023,10,22,1,Victoria,142.363218,-38.318936 +2023,7,14,1,Queensland,153.098586,-27.501119 +2024,3,3,1,Queensland,153.09196,-27.525539 +2022,8,31,1,Queensland,153.037063,-27.547292 +2023,1,21,1,Queensland,153.104484,-27.530855 +2023,3,13,1,Queensland,153.09254,-27.527069 +2024,1,21,1,Queensland,153.092552,-27.527268 +2020,2,11,1,Queensland,153.059871,-27.54999 +2024,3,6,1,Queensland,153.090867,-27.527105 +2022,9,6,1,South Australia,138.559844,-35.093692 +2022,2,11,1,Victoria,146.208859,-38.622633 +2020,9,13,1,New South Wales,152.413706,-31.931883 +2024,9,20,1,Queensland,152.459853,-26.959617 +2024,5,3,1,Queensland,153.093248,-27.528493 +2024,1,2,1,Queensland,153.092018,-27.527251 +2024,11,21,1,Queensland,152.071361,-27.260484 +2022,6,9,1,New South Wales,153.399437,-28.260618 +2022,9,25,1,South Australia,138.7142,-34.8685 +2024,10,29,1,Queensland,153.187163,-28.195347 +2024,11,3,1,Queensland,153.092253,-27.527804 +2022,11,24,1,Queensland,152.026898,-27.353384 +2023,6,17,1,Queensland,152.249435,-27.496763 +2020,9,27,1,Queensland,153.155014,-27.522661 +2022,11,23,1,Queensland,152.057471,-27.268302 +2023,3,28,1,Queensland,153.092197,-27.52548 +2023,10,15,1,Queensland,153.105285,-27.527182 +2020,12,3,1,Queensland,153.054895,-27.539382 +2020,4,24,1,South Australia,138.647222,-35.01 +2021,12,1,1,Queensland,151.925969,-26.538987 +2022,11,4,1,South Australia,138.581872,-35.095714 +2023,4,12,1,Victoria,143.90784,-37.746468 +2023,1,24,1,Queensland,153.071771,-27.544293 +2023,1,1,1,New South Wales,151.639921,-30.486778 +2023,6,27,1,Queensland,153.111331,-27.526953 +2024,10,10,1,Victoria,146.389755,-38.356647 +2022,1,26,1,New South Wales,152.0701,-32.707645 +2021,8,28,1,Queensland,153.439061,-27.397866 +2023,10,6,1,Queensland,153.102609,-27.529534 +2024,6,1,1,Queensland,153.107772,-27.5268 +2022,4,30,1,New South Wales,153.400014,-28.260312 +2021,7,11,1,Queensland,153.084935,-27.506908 +2022,3,31,1,New South Wales,146.58615,-34.773212 +2024,11,12,1,Queensland,151.586058,-27.799172 +2021,12,26,1,South Australia,138.73221,-34.889666 +2024,4,8,1,New South Wales,150.84787,-34.078785 +2023,11,14,1,Queensland,153.093371,-27.525451 +2024,3,23,1,South Australia,138.70256,-34.903933 +2023,6,7,1,Queensland,153.104627,-27.529175 +2023,10,5,1,New South Wales,151.0952,-33.076675 +2023,10,6,1,Queensland,153.11158,-27.529257 +2022,2,21,1,Queensland,152.608048,-27.420005 +2021,12,24,1,Victoria,146.5883,-38.253706 +2023,8,2,1,Queensland,153.111997,-27.529337 +2023,10,14,1,Queensland,153.093052,-27.524248 +2021,11,29,1,Queensland,151.573337,-27.837743 +2024,7,30,1,Queensland,152.993012,-27.823655 +2023,12,31,1,Victoria,147.738369,-37.920631 +2022,6,22,1,Queensland,151.985666,-26.685525 +2024,6,22,1,Queensland,152.594027,-28.068571 +2024,4,21,1,Queensland,153.091596,-27.527118 +2024,4,12,1,South Australia,138.722722,-34.889468 +2023,11,22,1,Queensland,152.996558,-27.304556 +2022,7,9,1,Victoria,145.780475,-36.798388 +2024,5,22,1,Queensland,152.598633,-27.46973 +2023,11,2,1,Queensland,152.980971,-27.276539 +2023,10,28,1,Queensland,151.874817,-27.483677 +2024,8,24,1,Queensland,153.192413,-27.728608 +2023,1,16,1,Queensland,153.084298,-27.510458 +2023,8,13,1,Queensland,153.040966,-27.537374 +2024,4,12,1,Victoria,145.314758,-38.373161 +2023,1,10,1,Queensland,151.998241,-27.436496 +2023,6,27,1,Queensland,151.748898,-26.154356 +2024,10,12,1,Queensland,153.092739,-27.527647 +2022,10,8,1,Queensland,152.102525,-27.568725 +2021,11,3,1,Queensland,153.059932,-27.550248 +2020,7,24,1,South Australia,138.686027,-34.953584 +2023,12,5,1,Queensland,153.110556,-27.527339 +2023,7,10,1,Queensland,153.111312,-27.526988 +2020,8,6,1,Queensland,153.045768,-27.548695 +2023,7,15,1,Queensland,153.399278,-27.497203 +2023,1,2,1,Queensland,153.090659,-27.526452 +2024,6,15,1,Queensland,153.19019,-27.701741 +2024,1,21,1,Queensland,153.092526,-27.525584 +2023,6,29,1,Queensland,152.831715,-28.071929 +2024,7,4,1,South Australia,138.713851,-34.891674 +2024,7,20,1,Queensland,153.109742,-27.529577 +2023,12,4,1,Victoria,143.532427,-38.841434 +2024,10,16,1,New South Wales,153.389182,-28.282675 +2021,11,23,1,Queensland,152.899999,-27.261314 +2023,11,20,1,Queensland,153.19019,-27.701741 +2022,4,27,1,Queensland,153.069936,-27.509442 +2024,5,13,1,Queensland,152.580991,-27.960683 +2024,9,21,1,New South Wales,146.586005,-34.764952 +2022,11,3,1,Queensland,153.351081,-27.93795 +2024,11,13,1,Queensland,153.104237,-27.527748 +2024,5,11,1,South Australia,138.559678,-35.031587 +2023,3,29,1,Victoria,142.364003,-38.318526 +2024,5,10,1,Queensland,153.082777,-27.51085 +2023,4,30,1,Queensland,153.092919,-27.527879 +2024,4,3,1,South Australia,138.729412,-34.889967 +2022,6,16,1,South Australia,138.633697,-34.998067 +2024,10,13,1,Queensland,153.072083,-27.553225 +2024,3,22,1,Queensland,153.112035,-27.529137 +2023,4,19,1,Queensland,153.111225,-27.527277 +2020,11,3,1,South Australia,138.611082,-35.049764 +2024,6,12,1,Queensland,151.690915,-27.442186 +2024,7,14,1,Victoria,142.363433,-38.318812 +2022,5,3,1,Queensland,153.543551,-27.433674 +2024,11,15,1,Queensland,153.19019,-27.701741 +2023,11,24,1,Victoria,144.436702,-37.953823 +2024,7,6,1,Queensland,153.0768,-27.540875 +2024,10,12,1,Queensland,152.992582,-27.822636 +2024,7,14,1,Queensland,153.090798,-27.525892 +2024,6,25,1,Queensland,151.781967,-26.309604 +2021,11,10,1,Victoria,145.655478,-37.026706 +2024,11,16,1,Queensland,153.19019,-27.701741 +2020,11,10,1,Queensland,153.194856,-27.729189 +2024,10,15,1,Queensland,153.10537,-27.529837 +2023,2,28,1,Victoria,144.251865,-37.81971 +2023,8,16,1,Queensland,152.962876,-27.273422 +2024,7,17,1,Queensland,151.943302,-26.531361 +2024,8,3,1,Queensland,152.999373,-27.28399 +2024,4,18,1,Victoria,144.432479,-37.960008 +2022,10,26,1,Queensland,153.05678,-27.551728 +2023,6,6,1,Queensland,152.249353,-27.496289 +2023,6,28,1,Queensland,153.103315,-27.52905 +2023,11,4,1,Queensland,153.092127,-27.527147 +2024,5,5,1,Queensland,153.090733,-27.526755 +2024,1,22,1,Queensland,153.145645,-27.893011 +2021,11,9,1,Victoria,143.902414,-37.640257 +2023,7,28,1,Queensland,151.950212,-26.548663 +2024,4,8,1,Queensland,153.10337,-27.530311 +2024,7,6,1,Queensland,153.03385,-27.528346 +2024,6,1,1,Queensland,153.111563,-27.527907 +2024,3,17,1,Queensland,153.092381,-27.527796 +2023,12,20,1,Queensland,151.895396,-27.600052 +2024,4,27,1,Queensland,153.103475,-27.529854 +2023,12,19,1,South Australia,138.540372,-35.230002 +2023,7,11,1,New South Wales,152.99336,-30.559703 +2023,11,14,1,Queensland,151.569954,-27.692305 +2022,2,22,1,South Australia,138.62587,-35.020803 +2023,12,22,1,Queensland,153.112328,-27.528714 +2023,10,22,1,New South Wales,153.002588,-30.533768 +2023,1,18,1,Queensland,153.108774,-27.527214 +2024,1,31,1,South Australia,138.728491,-34.887054 +2022,10,14,1,Victoria,143.925556,-37.652778 +2021,8,15,1,Queensland,153.054697,-27.551068 +2022,9,24,1,New South Wales,153.376974,-28.254163 +2023,12,5,1,South Australia,138.681612,-34.855378 +2023,10,31,1,South Australia,138.961516,-34.709514 +2020,10,15,1,Queensland,152.812857,-27.824168 +2024,9,15,1,Queensland,153.092708,-27.524987 +2024,2,19,1,Queensland,153.368909,-27.832436 +2021,11,28,1,New South Wales,150.822787,-34.1017 +2023,8,10,1,Queensland,153.09174,-27.527162 +2022,10,26,1,Victoria,143.655544,-38.780924 +2022,9,15,1,Queensland,152.1833,-27.53118 +2020,7,29,1,Queensland,153.052373,-27.548104 +2024,4,1,1,Queensland,153.093523,-27.525278 +2023,10,16,1,Queensland,153.110473,-27.527913 +2023,3,2,1,Queensland,153.09164,-27.524287 +2021,2,9,1,Victoria,143.050141,-38.444331 +2024,11,11,1,New South Wales,150.585827,-29.857173 +2023,6,12,1,Victoria,143.873171,-37.602093 +2024,2,6,1,New South Wales,150.564161,-29.545735 +2024,10,27,1,South Australia,138.776539,-34.880518 +2024,4,9,1,South Australia,138.731933,-34.89021 +2023,11,5,1,Queensland,152.897078,-28.203106 +2024,5,3,1,Queensland,153.105126,-27.529548 +2021,9,15,1,New South Wales,153.377246,-28.254294 +2023,9,30,1,Queensland,152.266737,-27.311111 +2023,12,18,1,South Australia,138.733912,-34.889654 +2024,8,24,1,New South Wales,153.401146,-28.258268 +2024,10,27,1,Queensland,153.091574,-27.527103 +2023,4,9,1,Queensland,153.092441,-27.528266 +2021,10,25,1,South Australia,138.7317,-34.890616 +2024,10,19,1,Queensland,153.090696,-27.52755 +2023,10,29,1,Queensland,153.091507,-27.527271 +2024,9,19,1,Queensland,152.613358,-27.339197 +2023,11,26,1,New South Wales,150.821962,-34.101342 +2022,5,23,1,Queensland,152.386914,-27.457754 +2021,2,9,1,Queensland,153.050141,-27.548459 +2021,10,24,1,New South Wales,153.377455,-28.253948 +2021,12,31,1,Victoria,146.308435,-38.688953 +2024,10,25,1,Victoria,145.110516,-38.300035 +2023,3,17,1,Queensland,153.105942,-27.529509 +2022,12,3,1,Queensland,153.103779,-27.528808 +2020,4,24,1,Queensland,153.058411,-27.548028 +2023,12,26,1,Queensland,151.895396,-27.600052 +2024,6,3,1,Queensland,146.868378,-19.126278 +2024,2,15,1,South Australia,135.685924,-34.83217 +2023,8,21,1,Queensland,153.090444,-27.526074 +2022,8,3,1,South Australia,138.586914,-35.008228 +2020,11,19,1,Queensland,152.946396,-28.12476 +2023,6,10,1,Victoria,145.453145,-37.019056 +2023,11,24,1,South Australia,138.720828,-34.890132 +2024,8,17,1,New South Wales,150.831823,-29.651105 +2024,7,6,1,Queensland,152.999508,-27.284058 +2024,4,22,1,Queensland,153.103398,-27.528967 +2023,9,30,1,Queensland,153.091374,-27.527196 +2022,11,14,1,Queensland,153.069834,-27.543403 +2020,11,8,1,New South Wales,153.37737,-28.2539 +2021,11,11,1,New South Wales,153.375144,-28.252428 +2023,3,31,1,Queensland,153.091724,-27.527182 +2023,7,2,1,Victoria,144.037053,-37.701176 +2023,9,23,1,Queensland,153.291617,-27.579965 +2024,3,17,1,Queensland,151.976588,-27.533092 +2024,2,7,1,Victoria,143.848189,-38.673618 +2024,5,21,1,South Australia,138.722832,-34.890913 +2023,3,29,1,Queensland,153.05787,-27.551548 +2022,11,10,1,Queensland,153.101646,-27.734552 +2023,10,15,1,Queensland,153.000814,-27.284463 +2024,5,9,1,South Australia,138.724622,-34.865349 +2024,3,16,1,Queensland,153.103269,-27.530238 +2024,1,31,1,South Australia,138.731252,-34.886742 +2022,12,30,1,Queensland,153.105123,-27.529816 +2022,12,8,1,Victoria,145.791408,-36.778678 +2024,4,3,1,Victoria,143.902966,-37.638528 +2024,3,2,1,Queensland,153.091744,-27.526957 +2023,4,9,1,Queensland,153.073155,-27.226775 +2022,3,27,1,Queensland,153.081995,-27.508135 +2020,9,21,1,New South Wales,153.377061,-28.254308 +2024,1,5,1,Victoria,142.364728,-38.317417 +2022,4,29,1,South Australia,138.637029,-34.990975 +2021,10,27,1,South Australia,138.638531,-34.969798 +2020,9,29,1,Victoria,141.371522,-38.143147 +2023,9,30,1,Victoria,142.363542,-38.318677 +2024,6,6,1,Victoria,145.996475,-38.827648 +2023,11,1,1,Queensland,153.110234,-27.527612 +2023,8,19,1,Queensland,152.9304,-27.374178 +2024,2,5,1,Queensland,153.091707,-27.527191 +2023,10,22,1,New South Wales,153.207178,-28.829234 +2024,10,31,1,South Australia,138.976705,-34.733275 +2021,8,7,1,New South Wales,153.401709,-28.256104 +2022,10,31,1,Victoria,146.388227,-38.354812 +2024,10,25,1,Queensland,146.864058,-19.138825 +2023,1,3,1,Queensland,153.112152,-27.528324 +2021,11,22,1,Victoria,145.314579,-38.373899 +2024,8,11,1,Queensland,152.629686,-28.064761 +2024,4,12,1,Queensland,153.136002,-27.899192 +2023,11,1,1,South Australia,138.731801,-34.890269 +2023,4,25,1,Queensland,153.09152,-27.527189 +2021,7,27,1,Queensland,152.946396,-28.12476 +2023,3,25,1,Victoria,143.875043,-37.60419 +2021,8,10,1,Victoria,143.898409,-37.616456 +2022,11,4,1,Victoria,143.872853,-37.634542 +2023,9,12,1,Queensland,153.111943,-27.529118 +2023,9,25,1,Queensland,152.041547,-27.563007 +2020,10,23,1,Victoria,144.502517,-37.701687 +2023,10,15,1,Queensland,151.904076,-26.172433 +2023,1,30,1,Queensland,152.629703,-28.207198 +2022,1,7,1,Queensland,153.05457,-27.542597 +2022,3,20,1,Queensland,151.884333,-26.31377 +2022,9,8,1,New South Wales,149.367574,-36.151464 +2023,11,15,1,Victoria,142.36258,-38.318224 +2023,3,26,1,Queensland,152.110733,-27.566497 +2022,11,18,1,Queensland,151.55078,-27.814422 +2022,12,9,1,New South Wales,149.408161,-33.753478 +2022,12,14,1,Queensland,152.933126,-27.27726 +2023,8,7,1,Queensland,153.109195,-27.526683 +2024,6,30,1,Queensland,151.747217,-26.148682 +2024,5,27,1,South Australia,138.734109,-34.887395 +2023,3,6,1,Queensland,153.103275,-27.530268 +2024,9,22,1,Queensland,146.842512,-19.173296 +2023,11,15,1,Victoria,147.73117,-37.922763 +2023,1,6,1,Queensland,153.056341,-27.551994 +2023,3,31,1,Queensland,152.858913,-26.878983 +2024,11,19,1,Queensland,151.523742,-27.720883 +2021,5,2,1,South Australia,138.589426,-35.035452 +2024,4,17,1,South Australia,138.665213,-34.86621 +2023,12,17,1,New South Wales,153.393481,-28.271412 +2021,7,28,1,Queensland,153.11705,-27.512072 +2022,1,3,1,Queensland,153.08772,-27.511286 +2023,2,6,1,Queensland,153.105031,-27.52976 +2024,10,29,1,Victoria,146.610249,-36.126229 +2024,10,18,1,Queensland,151.927231,-28.736812 +2023,9,26,1,Queensland,151.932518,-27.406106 +2024,10,25,1,Queensland,153.073501,-27.546729 +2022,12,6,1,Victoria,143.995862,-37.690034 +2022,11,16,1,South Australia,136.809468,-35.960111 +2022,12,6,1,Victoria,143.996588,-37.689816 +2023,8,21,1,Victoria,143.513012,-38.833898 +2020,11,1,1,New South Wales,149.408161,-33.753478 +2024,4,6,1,Queensland,153.091013,-27.527653 +2022,3,3,1,Queensland,153.08257,-27.51474 +2024,2,3,1,Queensland,153.111397,-27.525702 +2023,6,13,1,Queensland,152.974868,-27.299048 +2024,10,20,1,Queensland,153.093279,-27.526748 +2023,9,10,1,South Australia,138.650192,-35.004482 +2024,6,7,1,Queensland,153.108164,-27.527095 +2021,3,7,1,Queensland,152.994518,-27.176968 +2024,9,24,1,Queensland,153.154189,-27.622508 +2020,9,25,1,New South Wales,150.061065,-30.269391 +2022,2,17,1,Victoria,145.727807,-38.628155 +2024,4,22,1,Victoria,143.51442,-38.832338 +2024,11,12,1,Queensland,152.618588,-27.421786 +2023,11,30,1,South Australia,138.716361,-34.891685 +2024,7,11,1,Victoria,145.996995,-38.829138 +2023,9,16,1,South Australia,138.635748,-35.004858 +2023,8,9,1,Victoria,145.048207,-38.265771 +2023,11,25,1,Queensland,152.05002,-27.266317 +2023,11,11,1,Queensland,153.091002,-27.526831 +2023,9,19,1,Victoria,145.124497,-38.380072 +2020,10,12,1,Queensland,153.058126,-27.551233 +2020,12,3,1,South Australia,138.699813,-35.068755 +2023,3,15,1,Queensland,153.057721,-27.551168 +2021,1,13,1,New South Wales,151.520745,-30.520925 +2023,7,24,1,Queensland,153.1032,-27.529117 +2024,6,3,1,South Australia,138.714331,-34.892569 +2020,2,21,1,Queensland,153.069367,-27.546137 +2023,11,27,1,Queensland,153.110649,-27.527864 +2022,2,22,1,Victoria,145.272095,-38.133912 +2020,12,5,1,Queensland,153.270737,-28.149664 +2024,10,16,1,Queensland,152.991598,-27.822665 +2021,4,21,1,Queensland,153.062062,-27.534481 +2024,10,9,1,New South Wales,146.532982,-34.745192 +2022,12,10,1,Victoria,145.293258,-38.3106 +2024,5,20,1,Queensland,153.109259,-27.527013 +2022,4,10,1,Victoria,142.987244,-38.500419 +2023,9,4,1,Queensland,152.805222,-26.749683 +2022,10,30,1,Victoria,146.387667,-38.358693 +2024,10,15,1,Queensland,153.112124,-27.528515 +2024,8,17,1,Queensland,153.091274,-27.52719 +2022,12,21,1,Queensland,153.073255,-27.54593 +2022,11,23,1,South Australia,136.811691,-35.959464 +2024,8,26,1,Queensland,151.801618,-26.155884 +2021,4,17,1,Victoria,148.268728,-37.200355 +2020,12,8,1,Queensland,151.987165,-24.985621 +2022,9,29,1,New South Wales,153.290403,-28.83287 +2023,4,18,1,Queensland,153.092364,-27.528233 +2022,12,5,1,Victoria,143.543034,-38.813612 +2024,9,14,1,Victoria,141.026909,-38.04892 +2023,11,26,1,South Australia,138.69383,-34.922325 +2023,8,1,1,Queensland,153.106639,-27.529091 +2023,11,29,1,South Australia,138.722292,-34.892731 +2024,7,7,1,Queensland,153.092708,-27.528068 +2024,9,18,1,South Australia,138.715022,-34.893055 +2021,10,15,1,Queensland,153.38043,-27.963892 +2022,11,3,1,Queensland,153.056717,-27.551783 +2022,4,30,1,South Australia,138.628788,-34.987641 +2021,9,28,1,Queensland,151.782318,-27.392939 +2020,9,22,1,New South Wales,152.946303,-30.418008 +2020,10,17,1,Queensland,153.046535,-27.549997 +2020,4,9,1,Queensland,153.044227,-27.552652 +2020,9,30,1,Queensland,146.871386,-19.123233 +2023,9,17,1,Victoria,145.549365,-37.001218 +2023,9,2,1,Queensland,153.09223,-27.524925 +2024,11,10,1,Queensland,151.684612,-26.588336 +2023,3,7,1,Queensland,153.092456,-27.52727 +2024,5,13,1,Queensland,153.04907,-27.544619 +2022,12,9,1,Queensland,153.073655,-27.545829 +2024,11,14,1,Queensland,153.052424,-27.553247 +2022,3,19,1,South Australia,138.65744,-35.017584 +2023,1,22,1,Queensland,151.945184,-27.385979 +2023,5,10,1,Victoria,143.870984,-37.598586 +2024,3,30,1,Queensland,153.090672,-27.525964 +2020,3,16,1,New South Wales,153.377208,-28.25405 +2023,6,10,1,Queensland,153.109982,-27.529349 +2024,2,19,1,Queensland,153.103516,-27.528233 +2020,9,11,1,South Australia,138.6375,-35.005833 +2024,9,28,1,Queensland,153.091524,-27.527345 +2022,12,23,1,South Australia,138.56895,-35.100399 +2024,11,10,1,Queensland,151.684612,-26.588336 +2023,1,25,1,Queensland,153.103298,-27.527895 +2023,5,28,1,Queensland,153.092202,-27.525081 +2022,12,27,1,Queensland,151.886229,-27.602689 +2024,1,20,1,South Australia,138.539368,-35.323248 +2024,8,18,1,Queensland,153.04828,-27.547733 +2024,10,20,1,Queensland,153.091115,-27.526445 +2024,9,6,1,Queensland,153.092081,-27.527065 +2023,11,19,1,Queensland,153.09243,-27.528072 +2022,5,29,1,Queensland,146.868205,-19.128317 +2024,7,24,1,Queensland,152.99324,-27.823693 +2024,2,13,1,Queensland,153.090946,-27.526934 +2023,11,1,1,Queensland,153.114629,-27.529633 +2020,6,1,1,New South Wales,153.377357,-28.253927 +2020,9,7,1,Queensland,153.084665,-27.50924 +2023,4,15,1,Queensland,153.090771,-27.527257 +2023,7,30,1,Queensland,153.316861,-27.894535 +2024,7,24,1,South Australia,138.626148,-34.893104 +2024,10,25,1,Victoria,144.280133,-37.842517 +2022,7,30,1,Queensland,152.18223,-27.546753 +2021,3,21,1,Victoria,145.13221,-38.175484 +2024,1,15,1,New South Wales,151.084877,-29.729215 +2023,6,24,1,Victoria,142.290932,-37.874758 +2023,11,19,1,Queensland,153.093563,-27.524929 +2023,12,27,1,Victoria,147.729361,-37.921329 +2024,2,4,1,Queensland,151.78503,-26.309919 +2021,11,26,1,Queensland,151.627281,-25.63577 +2023,6,25,1,Queensland,153.077803,-27.542775 +2023,2,22,1,New South Wales,153.400893,-28.258051 +2021,1,17,1,Queensland,153.060167,-27.549768 +2022,9,18,1,Queensland,152.422053,-28.0647 +2023,5,28,1,Queensland,153.091723,-27.527159 +2024,5,15,1,Victoria,145.530856,-36.870426 +2022,9,8,1,Queensland,153.071677,-27.544744 +2024,11,21,1,Queensland,153.19019,-27.701741 +2021,10,16,1,South Australia,136.809039,-35.960164 +2024,3,13,1,Queensland,153.05986,-27.550499 +2024,4,12,1,Victoria,145.312744,-38.383903 +2023,10,25,1,Queensland,151.79153,-26.308257 +2023,6,18,1,Queensland,153.056435,-27.551767 +2024,2,11,1,Queensland,153.091826,-27.52692 +2024,6,29,1,Queensland,153.37278,-27.91273 +2022,11,29,1,Queensland,151.561648,-27.791029 +2023,8,29,1,Queensland,152.927988,-27.327172 +2024,9,20,1,Queensland,153.091522,-27.527325 +2023,5,13,1,Queensland,152.953375,-27.283532 +2024,2,3,1,Queensland,152.67868,-27.989778 +2023,1,5,1,Queensland,146.868551,-19.129238 +2024,7,30,1,Queensland,152.993293,-27.823709 +2023,4,2,1,Victoria,143.888317,-37.605937 +2023,2,25,1,Queensland,151.954482,-27.472712 +2020,9,29,1,New South Wales,153.37683,-28.253153 +2023,9,22,1,Queensland,153.111435,-27.529769 +2023,9,10,1,Queensland,153.000858,-27.284475 +2023,10,11,1,Queensland,153.103347,-27.529093 +2023,5,28,1,Queensland,153.090999,-27.52741 +2020,11,7,1,Queensland,153.058057,-27.551517 +2023,10,15,1,Queensland,153.092639,-27.528458 +2020,1,4,1,New South Wales,152.005919,-32.727413 +2023,10,22,1,Queensland,153.092205,-27.525289 +2020,5,20,1,Queensland,153.062779,-27.537585 +2023,11,4,1,Queensland,152.111746,-27.566085 +2022,11,25,1,New South Wales,151.038912,-33.197916 +2020,11,10,1,Queensland,153.061272,-27.221047 +2023,3,19,1,Queensland,153.092828,-27.525388 +2020,10,20,1,New South Wales,149.408161,-33.753478 +2023,1,4,1,Victoria,145.10269,-38.283598 +2023,12,27,1,South Australia,138.726793,-34.888214 +2024,10,6,1,Queensland,153.101979,-27.522287 +2024,4,16,1,South Australia,138.733203,-34.888228 +2024,7,6,1,Queensland,151.518953,-27.719042 +2020,12,26,1,New South Wales,153.380675,-28.280463 +2023,7,2,1,Queensland,153.091685,-27.527212 +2021,11,11,1,South Australia,138.581369,-35.150905 +2023,2,17,1,Queensland,153.444165,-28.107917 +2022,4,3,1,Victoria,142.315424,-38.271797 +2024,10,6,1,South Australia,138.60451,-34.913699 +2020,7,11,1,Queensland,152.178999,-27.566322 +2023,10,10,1,Queensland,153.103512,-27.529669 +2021,6,21,1,Queensland,148.124602,-23.867545 +2023,11,25,1,Queensland,152.064189,-27.262584 +2023,10,30,1,Queensland,152.854949,-28.308736 +2023,4,16,1,Queensland,153.093045,-27.527714 +2023,9,30,1,Queensland,152.994085,-27.823556 +2024,4,13,1,Queensland,153.103553,-27.53001 +2022,11,19,1,Queensland,151.716233,-27.568238 +2023,12,28,1,Queensland,153.111292,-27.527936 +2022,10,12,1,Queensland,152.907652,-28.173704 +2024,8,4,1,Queensland,153.090689,-27.526963 +2023,11,8,1,Queensland,153.19019,-27.701741 +2023,11,12,1,Queensland,152.045315,-27.258693 +2020,5,5,1,Victoria,144.039788,-38.067713 +2024,3,28,1,Queensland,153.05922,-27.555406 +2023,12,23,1,Queensland,153.080872,-27.508655 +2023,11,2,1,Victoria,145.553979,-36.992452 +2024,8,3,1,Queensland,153.09161,-27.527206 +2024,6,17,1,Queensland,153.102898,-27.530408 +2024,5,14,1,Victoria,145.122744,-38.383101 +2023,12,24,1,Victoria,147.740751,-37.903559 +2023,10,30,1,Queensland,153.091482,-27.527357 +2024,2,24,1,New South Wales,152.060242,-32.709553 +2020,9,8,1,Queensland,147.522653,-22.632951 +2022,8,22,1,Queensland,153.05959,-27.54951 +2021,2,24,1,Queensland,153.05297,-27.550074 +2021,10,17,1,Victoria,143.883848,-37.587467 +2020,4,6,1,South Australia,138.653657,-35.069155 +2022,12,29,1,Victoria,141.975447,-38.227842 +2024,9,12,1,Queensland,151.89653,-26.24082 +2024,2,20,1,Victoria,143.563493,-38.831332 +2023,8,19,1,New South Wales,150.821104,-34.102225 +2020,9,21,1,Queensland,153.247936,-27.49006 +2022,11,11,1,Queensland,152.178427,-27.241127 +2022,3,3,1,Queensland,153.08209,-27.514233 +2024,10,1,1,New South Wales,146.535295,-34.745742 +2021,12,18,1,Victoria,146.164658,-38.670995 +2024,3,1,1,Queensland,153.102671,-27.529398 +2024,6,24,1,Queensland,153.055684,-27.537468 +2023,12,14,1,South Australia,138.55626,-35.036998 +2020,1,20,1,Queensland,152.828705,-26.363599 +2021,10,21,1,Queensland,152.86501,-28.214142 +2023,12,10,1,Victoria,145.679665,-37.763667 +2024,9,24,1,Queensland,153.03099,-26.387868 +2023,7,19,1,South Australia,138.562638,-35.154586 +2021,3,23,1,South Australia,138.658247,-34.936723 +2022,2,16,1,Queensland,153.057407,-27.551041 +2022,12,29,1,Queensland,153.103375,-27.530139 +2021,2,22,1,New South Wales,153.5643,-28.380633 +2024,10,29,1,Queensland,152.996612,-27.287598 +2021,12,4,1,Queensland,153.22319,-27.499896 +2023,11,5,1,Victoria,141.774895,-38.202745 +2024,4,12,1,Victoria,142.799667,-38.408022 +2024,11,2,1,Queensland,153.091091,-27.527433 +2023,11,14,1,Queensland,153.090556,-27.525454 +2024,5,21,1,Queensland,153.055274,-27.54404 +2020,4,19,1,South Australia,138.652505,-35.00856 +2023,11,5,1,Queensland,152.067443,-27.487004 +2020,7,12,1,Queensland,152.988937,-27.170528 +2023,11,30,1,Victoria,142.356434,-38.333708 +2023,11,25,1,Victoria,146.387401,-38.354514 +2022,10,18,1,Queensland,152.82114,-27.533553 +2024,6,14,1,Queensland,153.147399,-27.765534 +2020,6,10,1,Victoria,146.163895,-38.6712 +2024,2,2,1,New South Wales,151.520217,-30.520347 +2020,3,21,1,South Australia,138.532516,-34.918518 +2021,7,13,1,Queensland,153.090885,-27.512613 +2021,12,5,1,New South Wales,153.378044,-28.25509 +2024,11,9,1,Queensland,153.093581,-27.5277 +2023,12,1,1,Victoria,143.955333,-37.646493 +2023,11,24,1,Queensland,151.44601,-27.302528 +2022,8,25,1,Queensland,153.013456,-26.364389 +2023,5,31,1,Queensland,152.591251,-27.948346 +2022,9,24,1,Queensland,146.831449,-19.142249 +2022,12,8,1,Queensland,153.073828,-27.545785 +2022,11,13,1,Queensland,151.551105,-27.77425 +2022,11,30,1,Victoria,145.999237,-38.82519 +2021,5,2,1,South Australia,138.656887,-35.018122 +2022,11,3,1,Victoria,141.798858,-38.059561 +2023,4,7,1,Queensland,153.086801,-27.510351 +2024,7,14,1,Victoria,142.365604,-38.324844 +2022,11,25,1,Victoria,144.317637,-37.87881 +2024,5,5,1,Queensland,146.8685,-19.125603 +2024,11,24,1,Victoria,142.836528,-38.392203 +2023,6,26,1,Victoria,143.873232,-37.601866 +2022,11,12,1,Queensland,152.768748,-28.275592 +2023,4,28,1,South Australia,138.708296,-34.90672 +2021,7,24,1,New South Wales,153.561824,-28.385528 +2020,9,15,1,Queensland,153.058705,-27.547668 +2023,1,26,1,South Australia,138.587153,-35.074108 +2021,11,21,1,New South Wales,153.37818,-28.255426 +2024,5,15,1,Queensland,151.814892,-26.363737 +2024,10,11,1,Queensland,153.110078,-27.527446 +2021,1,29,1,Victoria,146.163716,-38.671019 +2024,3,10,1,Queensland,153.093037,-27.527119 +2022,7,1,1,Victoria,145.713267,-37.203522 +2023,9,24,1,Queensland,153.079965,-27.225739 +2024,11,6,1,Queensland,153.19019,-27.701741 +2023,12,16,1,Queensland,151.774236,-26.135635 +2022,9,12,1,South Australia,137.494527,-35.707414 +2023,10,13,1,Queensland,153.105224,-27.531659 +2024,11,14,1,Queensland,152.003464,-27.413655 +2022,1,3,1,Queensland,153.075488,-27.546565 +2023,4,24,1,South Australia,138.62974,-35.033193 +2024,9,8,1,Queensland,153.19019,-27.701741 +2024,10,9,1,Queensland,153.10487,-27.530584 +2020,1,24,1,Queensland,153.059459,-27.549146 +2020,5,7,1,New South Wales,151.799336,-32.571858 +2024,8,26,1,New South Wales,153.376904,-28.253992 +2020,10,21,1,Queensland,153.057369,-27.551366 +2023,11,16,1,Queensland,153.19019,-27.701741 +2023,11,23,1,Queensland,153.19019,-27.701741 +2024,10,27,1,South Australia,138.783633,-34.876093 +2024,7,14,1,South Australia,138.650914,-34.873364 +2020,5,21,1,New South Wales,153.377565,-28.254181 +2021,6,28,1,Queensland,151.753819,-26.159515 +2021,2,11,1,Queensland,153.05984,-27.550389 +2023,7,6,1,New South Wales,151.641983,-30.4889 +2022,12,21,1,Queensland,153.071016,-27.54386 +2023,11,1,1,Queensland,152.003188,-27.41265 +2024,10,12,1,Queensland,153.092194,-27.525398 +2020,7,13,1,Victoria,146.163811,-38.671391 +2020,4,24,1,South Australia,138.656491,-35.015851 +2023,12,27,1,Queensland,153.102784,-27.529663 +2024,2,19,1,Queensland,153.105521,-27.531393 +2022,11,18,1,New South Wales,151.735621,-31.540499 +2024,7,24,1,South Australia,138.722131,-34.891224 +2021,10,11,1,Queensland,152.610458,-27.153228 +2020,6,30,1,Queensland,152.567367,-28.020503 +2023,10,22,1,South Australia,138.623017,-34.89307 +2024,4,13,1,Queensland,153.090497,-27.526937 +2023,9,3,1,Queensland,153.036756,-27.532309 +2021,11,29,1,Queensland,151.559369,-27.811086 +2024,7,20,1,New South Wales,151.095486,-33.076717 +2024,6,30,1,Queensland,151.743429,-26.327914 +2024,2,1,1,South Australia,138.666144,-35.018607 +2024,11,13,1,Victoria,145.007855,-38.28852 +2023,8,1,1,Victoria,143.514105,-38.832435 +2022,4,21,1,Queensland,152.843489,-28.092853 +2024,3,5,1,South Australia,138.830865,-35.161663 +2024,7,28,1,Queensland,153.090859,-27.526744 +2024,6,21,1,Victoria,144.507492,-37.66148 +2024,7,31,1,Victoria,144.266266,-37.863889 +2024,2,7,1,Queensland,153.111493,-27.528158 +2024,10,12,1,Queensland,153.091766,-27.527169 +2024,3,31,1,Queensland,153.092968,-27.527873 +2023,12,5,1,South Australia,138.721673,-34.892933 +2024,6,27,1,South Australia,138.694645,-34.97091 +2024,2,5,1,South Australia,138.73334,-34.889239 +2023,11,16,1,New South Wales,150.841977,-34.150506 +2022,12,11,1,Queensland,153.07372,-27.545741 +2024,4,26,1,Victoria,144.584092,-37.519117 +2023,4,22,1,Queensland,153.049458,-27.549373 +2023,8,7,1,Queensland,153.057537,-27.551228 +2023,12,4,1,Queensland,152.074154,-27.35795 +2024,2,26,1,South Australia,138.719699,-34.892257 +2024,7,27,1,Queensland,146.869378,-19.127443 +2020,6,21,1,Victoria,147.730466,-37.918384 +2022,11,13,1,Victoria,144.181133,-37.881238 +2024,11,20,1,Queensland,153.19019,-27.701741 +2024,7,11,1,Victoria,146.389818,-38.360941 +2023,2,10,1,Queensland,153.068502,-27.541002 +2022,12,13,1,Queensland,153.072544,-27.542233 +2022,11,27,1,Queensland,151.570478,-27.750292 +2022,9,22,1,South Australia,138.597596,-35.146825 +2024,2,15,1,South Australia,135.685833,-34.831944 +2020,1,4,1,South Australia,138.643571,-35.081484 +2020,5,9,1,Queensland,153.085019,-27.51056 +2024,9,27,1,Queensland,152.046593,-27.25833 +2021,12,13,1,Queensland,153.076645,-27.539933 +2024,2,6,1,Queensland,153.109641,-27.529641 +2023,10,10,1,Queensland,153.102159,-27.527331 +2021,6,30,1,Victoria,145.246672,-38.238742 +2022,6,12,1,New South Wales,152.917527,-31.464076 +2024,5,14,1,Queensland,153.063217,-27.219938 +2023,9,11,1,Victoria,145.046019,-38.264419 +2022,12,4,1,Queensland,153.054509,-27.541575 +2021,9,26,1,Queensland,153.084901,-27.506681 +2020,11,8,1,South Australia,138.702519,-34.902855 +2023,5,29,1,Queensland,153.111324,-27.527288 +2022,4,9,1,Victoria,146.388712,-38.35779 +2023,12,11,1,Queensland,152.987103,-27.291637 +2023,11,24,1,Victoria,144.265738,-37.390609 +2023,11,4,1,Queensland,153.09139,-27.527218 +2024,7,31,1,South Australia,138.721846,-34.890902 +2024,4,12,1,Victoria,145.297226,-38.383479 +2023,7,17,1,Queensland,153.092448,-27.525089 +2024,8,4,1,Queensland,153.093167,-27.526665 +2023,11,13,1,Queensland,153.321855,-27.912917 +2024,2,5,1,South Australia,138.729886,-34.890582 +2023,1,7,1,Queensland,153.083076,-27.512431 +2024,9,10,1,Queensland,153.091873,-27.527031 +2023,1,24,1,Victoria,145.284072,-38.347825 +2023,12,31,1,Victoria,147.729797,-37.92529 +2023,1,29,1,Queensland,153.074407,-27.545985 +2023,1,25,1,Queensland,153.106565,-27.528883 +2024,11,6,1,Queensland,151.784614,-26.612672 +2024,5,3,1,South Australia,138.731365,-34.890043 +2021,1,8,1,South Australia,138.659301,-34.864781 +2024,6,17,1,Queensland,153.110183,-27.527735 +2023,11,4,1,Queensland,152.106642,-27.561757 +2024,5,3,1,South Australia,138.733292,-34.890501 +2022,3,6,1,South Australia,138.694192,-34.957168 +2024,3,30,1,Queensland,153.103414,-27.530192 +2024,5,26,1,Queensland,153.092068,-27.527182 +2024,8,24,1,Queensland,153.086961,-27.509905 +2023,6,6,1,Queensland,153.086788,-27.51052 +2024,6,24,1,South Australia,138.726649,-34.862781 +2020,2,15,1,South Australia,138.697095,-34.958048 +2024,1,25,1,Queensland,152.727097,-27.711497 +2021,9,27,1,New South Wales,153.37838,-28.255003 +2022,9,18,1,Queensland,151.804635,-26.44714 +2023,8,21,1,Queensland,153.101548,-27.567089 +2021,10,11,1,Queensland,153.543546,-27.433545 +2024,10,9,1,Queensland,153.103829,-27.527999 +2024,6,9,1,Queensland,153.052153,-27.542198 +2021,1,30,1,Queensland,153.053287,-27.544825 +2021,1,13,1,South Australia,138.736169,-34.80465 +2023,12,19,1,South Australia,135.673462,-34.875637 +2023,11,14,1,Queensland,153.092215,-27.527424 +2024,2,29,1,Victoria,144.659422,-37.371184 +2023,6,4,1,Queensland,153.092095,-27.525675 +2023,7,6,1,Queensland,153.091731,-27.526965 +2021,11,27,1,New South Wales,151.645937,-30.484945 +2023,11,22,1,Queensland,153.19019,-27.701741 +2023,1,6,1,Queensland,153.109772,-27.529707 +2023,9,9,1,Queensland,153.093118,-27.527878 +2024,8,18,1,Queensland,153.092006,-27.526993 +2024,6,26,1,Victoria,142.975047,-38.481706 +2023,9,1,1,Queensland,153.087001,-27.510668 +2022,9,21,1,Queensland,153.068532,-27.542417 +2022,5,18,1,New South Wales,153.40074,-28.260125 +2023,11,4,1,Queensland,152.111889,-27.56611 +2024,4,25,1,New South Wales,151.09497,-33.076336 +2024,2,23,1,Queensland,153.103477,-27.530443 +2024,9,7,1,Queensland,153.092294,-27.525417 +2024,5,3,1,South Australia,138.73339,-34.890223 +2022,3,17,1,Victoria,149.753403,-37.553717 +2023,11,10,1,Victoria,141.824708,-38.05925 +2024,8,29,1,Queensland,146.868089,-19.128652 +2023,4,16,1,Queensland,153.090476,-27.526038 +2023,10,14,1,New South Wales,152.903409,-31.444133 +2022,12,13,1,Queensland,153.437706,-27.400617 +2023,5,20,1,Queensland,153.3714,-27.905602 +2024,7,21,1,Queensland,153.073711,-27.547429 +2024,9,28,1,Queensland,153.090899,-27.526591 +2023,7,7,1,Queensland,153.111237,-27.527212 +2022,7,4,1,Queensland,153.445394,-27.391796 +2023,1,4,1,Queensland,153.074253,-27.545958 +2024,9,5,1,Queensland,152.074653,-27.358635 +2024,5,1,1,South Australia,138.718905,-34.891514 +2024,5,26,1,Queensland,153.091054,-27.526776 +2021,11,25,1,Queensland,151.946228,-27.335288 +2024,6,15,1,Queensland,153.112882,-27.528289 +2024,1,19,1,Queensland,152.989662,-27.292966 +2020,12,15,1,Victoria,148.26415,-37.221781 +2022,9,13,1,Queensland,153.071713,-27.544827 +2020,2,25,1,Queensland,153.037304,-27.538863 +2023,2,9,1,Queensland,153.063894,-27.551516 +2023,11,12,1,Queensland,152.999874,-27.284494 +2024,3,17,1,Victoria,143.915347,-38.481547 +2023,7,16,1,Queensland,153.000194,-27.28422 +2021,8,18,1,Queensland,153.056171,-27.550963 +2022,10,13,1,New South Wales,153.392503,-28.268897 +2024,11,5,1,Queensland,152.823724,-27.163742 +2024,4,24,1,Queensland,152.939347,-27.275488 +2024,1,31,1,South Australia,138.72735,-34.888338 +2021,2,5,1,New South Wales,153.377622,-28.254661 +2024,1,3,1,Queensland,153.10964,-27.527971 +2023,11,24,1,Queensland,151.749856,-26.155069 +2024,2,26,1,Queensland,153.103475,-27.530261 +2021,11,19,1,Queensland,152.988314,-27.777949 +2021,2,1,1,Queensland,153.057599,-27.551255 +2023,12,5,1,New South Wales,153.629416,-28.637288 +2024,10,21,1,New South Wales,146.584992,-34.775345 +2023,5,3,1,New South Wales,151.095231,-33.076236 +2024,9,29,1,South Australia,138.731308,-34.875271 +2024,1,20,1,Queensland,151.733466,-26.161431 +2023,3,4,1,Victoria,145.476536,-36.937701 +2021,2,6,1,Queensland,152.248789,-27.525208 +2024,10,6,1,Queensland,153.093303,-27.52514 +2023,7,14,1,Queensland,153.11093,-27.527784 +2020,4,16,1,Queensland,153.349434,-27.927723 +2024,9,22,1,Queensland,153.093431,-27.527842 +2021,4,11,1,South Australia,138.745577,-34.838759 +2023,12,31,1,Victoria,147.729811,-37.924297 +2020,3,23,1,Victoria,143.484105,-38.801346 +2021,6,3,1,Queensland,153.151952,-27.747252 +2022,12,27,1,New South Wales,153.410344,-28.575906 +2024,5,25,1,Queensland,153.037342,-27.532106 +2023,11,27,1,Queensland,153.103246,-27.53034 +2022,12,14,1,Queensland,152.866015,-28.211452 +2023,10,17,1,Queensland,152.102478,-27.568758 +2023,1,28,1,Queensland,151.895645,-27.595147 +2023,1,10,1,South Australia,138.657013,-34.935325 +2023,2,17,1,Queensland,153.057579,-27.551636 +2023,5,19,1,Queensland,153.091399,-27.52739 +2021,11,4,1,South Australia,138.714792,-34.892408 +2024,2,28,1,New South Wales,150.585921,-29.857205 +2023,11,4,1,Queensland,153.092982,-27.524659 +2022,7,13,1,Queensland,153.043469,-27.551582 +2024,6,12,1,South Australia,138.734687,-34.889028 +2023,10,7,1,Queensland,153.091965,-27.527215 +2024,5,21,1,South Australia,138.722231,-34.890675 +2024,10,12,1,Queensland,153.092404,-27.527395 +2022,8,2,1,New South Wales,151.65898,-30.451467 +2022,12,24,1,Queensland,151.895396,-27.600052 +2024,1,22,1,Queensland,151.761361,-26.141015 +2023,11,10,1,Queensland,153.123038,-28.157039 +2024,7,26,1,Victoria,147.728919,-37.920838 +2024,8,11,1,Queensland,151.64591,-27.362549 +2024,10,3,1,New South Wales,150.835922,-34.069561 +2024,3,19,1,Queensland,152.050156,-27.263278 +2024,8,22,1,Queensland,153.43767,-27.400813 +2024,10,13,1,Queensland,152.651478,-26.400859 +2023,10,28,1,Queensland,151.770084,-26.178987 +2024,6,14,1,Queensland,152.611109,-27.397195 +2021,12,17,1,Queensland,153.082856,-27.510395 +2022,4,14,1,Victoria,143.527953,-38.824622 +2020,6,29,1,New South Wales,153.401162,-28.257882 +2021,2,3,1,Queensland,153.057607,-27.551279 +2022,10,1,1,Queensland,152.1833,-27.53118 +2024,2,3,1,New South Wales,150.242331,-30.994364 +2024,10,6,1,Queensland,151.659347,-27.672787 +2022,5,23,1,Queensland,151.623501,-25.632782 +2023,5,9,1,Victoria,142.363516,-38.317737 +2024,4,10,1,Queensland,153.103759,-27.529949 +2023,6,5,1,Queensland,153.111205,-27.527244 +2023,3,8,1,Queensland,151.732376,-27.587479 +2021,10,20,1,Victoria,146.163742,-38.671045 +2022,11,24,1,Queensland,152.072604,-27.35903 +2021,1,19,1,Victoria,145.597255,-37.834389 +2022,12,23,1,Victoria,142.363769,-38.318329 +2023,7,12,1,Queensland,153.05638,-27.551903 +2022,12,24,1,Victoria,149.759322,-37.56122 +2022,4,4,1,Queensland,153.056958,-27.544316 +2023,1,10,1,Victoria,145.264468,-38.133067 +2024,9,7,1,Queensland,153.090695,-27.52715 +2023,12,28,1,New South Wales,149.410596,-33.756284 +2023,10,14,1,New South Wales,152.904328,-31.443808 +2024,11,14,1,Queensland,152.57007,-27.239487 +2021,4,10,1,South Australia,138.689808,-34.929478 +2022,11,25,1,Victoria,143.520096,-38.831436 +2023,7,2,1,Queensland,153.086643,-27.510981 +2023,9,29,1,Queensland,152.913111,-27.322882 +2024,9,5,1,Queensland,153.074519,-27.546828 +2023,11,25,1,Queensland,151.539872,-27.599187 +2024,9,15,1,New South Wales,146.586287,-34.753741 +2020,6,7,1,Queensland,153.072456,-27.2261 +2024,7,3,1,Victoria,143.61142,-38.774447 +2020,10,29,1,Queensland,153.051511,-27.548835 +2024,8,18,1,Queensland,153.092296,-27.525603 +2024,9,13,1,Victoria,144.023036,-37.671452 +2023,8,11,1,Victoria,143.860858,-38.668317 +2021,3,13,1,South Australia,138.755033,-35.35882 +2024,8,24,1,Queensland,153.093561,-27.52767 +2023,1,4,1,Queensland,153.072206,-27.545184 +2023,10,6,1,Queensland,152.247776,-27.503323 +2024,8,17,1,Queensland,153.092407,-27.525121 +2024,9,4,1,Queensland,153.103649,-27.530534 +2024,9,7,1,Queensland,153.073472,-27.541287 +2021,12,5,1,Victoria,144.383097,-37.95056 +2020,4,1,1,Queensland,153.115906,-27.508017 +2023,11,19,1,New South Wales,146.537492,-34.745675 +2024,1,31,1,Queensland,153.105569,-27.529744 +2021,6,27,1,South Australia,138.667232,-34.861768 +2024,4,9,1,South Australia,138.731302,-34.889658 +2024,9,19,1,Queensland,146.867797,-19.128186 +2023,7,29,1,Queensland,153.111499,-27.528015 +2021,4,9,1,Victoria,143.900997,-37.641346 +2024,11,5,1,Queensland,153.089663,-27.526021 +2023,1,4,1,Victoria,143.582855,-38.827513 +2024,10,16,1,Victoria,141.574403,-38.346397 +2024,11,2,1,Queensland,151.994128,-26.617172 +2023,11,8,1,New South Wales,151.073528,-33.14805 +2020,3,30,1,New South Wales,153.377208,-28.25405 +2024,7,1,1,Victoria,145.313501,-38.380437 +2023,9,24,1,Queensland,153.000827,-27.284447 +2023,7,29,1,Queensland,153.382365,-27.906698 +2022,10,13,1,Victoria,145.999541,-38.825259 +2024,6,2,1,Queensland,153.093335,-27.525003 +2024,8,10,1,Queensland,153.09173,-27.526944 +2024,7,5,1,Queensland,152.901734,-27.625214 +2024,10,15,1,Queensland,152.644395,-27.4508 +2022,4,20,1,Queensland,151.835414,-26.529859 +2020,10,13,1,Queensland,153.054875,-27.538915 +2024,11,10,1,Queensland,151.817949,-26.489686 +2021,8,11,1,New South Wales,153.393184,-28.269226 +2024,7,3,1,Queensland,153.092295,-27.527389 +2021,9,2,1,Victoria,146.163882,-38.671173 +2021,1,3,1,South Australia,138.704352,-34.965542 +2023,7,2,1,Queensland,153.131653,-27.779097 +2023,5,27,1,New South Wales,153.401825,-28.26037 +2024,11,6,1,Queensland,153.111871,-27.525279 +2023,12,21,1,South Australia,138.604868,-35.042914 +2022,5,7,1,Queensland,153.069939,-27.510538 +2024,5,4,1,Queensland,152.612397,-27.329983 +2023,7,17,1,Queensland,152.227627,-27.29762 +2023,1,23,1,Queensland,153.108811,-27.5287 +2024,7,24,1,South Australia,138.721549,-34.891602 +2023,10,12,1,Queensland,153.164069,-27.620859 +2023,8,9,1,Queensland,151.750039,-26.155358 +2022,9,29,1,Queensland,153.068013,-27.542482 +2023,10,5,1,Queensland,153.450212,-28.100778 +2024,10,7,1,Queensland,153.067733,-27.222883 +2023,10,1,1,Victoria,143.905901,-37.528399 +2024,7,6,1,Queensland,153.091782,-27.527113 +2022,11,2,1,Victoria,143.555573,-38.754787 +2024,9,29,1,Queensland,153.19019,-27.701741 +2022,4,9,1,Victoria,146.388712,-38.35779 +2020,12,13,1,Victoria,145.133413,-38.176277 +2023,8,10,1,Queensland,152.856039,-27.525448 +2021,9,5,1,Queensland,152.082283,-27.700883 +2024,3,9,1,Queensland,153.103402,-27.530073 +2021,9,15,1,New South Wales,150.876091,-34.058141 +2022,10,4,1,Queensland,153.073601,-27.545761 +2023,12,27,1,Queensland,153.091272,-27.527131 +2022,11,23,1,Queensland,152.767099,-28.227243 +2024,7,12,1,Queensland,153.111257,-27.53003 +2021,8,14,1,South Australia,138.70987,-35.049855 +2023,11,20,1,New South Wales,150.810766,-34.098984 +2021,9,25,1,Victoria,146.240866,-38.64301 +2022,6,6,1,New South Wales,153.393973,-28.275825 +2022,3,8,1,Queensland,151.930263,-26.209689 +2024,5,1,1,Victoria,143.220114,-38.292731 +2022,3,31,1,New South Wales,153.402028,-28.260145 +2022,12,28,1,Queensland,153.069562,-27.541691 +2023,4,18,1,Queensland,153.090739,-27.525802 +2023,8,6,1,Queensland,153.000913,-27.284418 +2023,1,1,1,Queensland,151.88986,-27.597105 +2020,10,12,1,Victoria,145.272888,-38.126775 +2022,5,22,1,South Australia,138.656913,-34.85849 +2022,2,12,1,New South Wales,151.521026,-30.520709 +2021,7,17,1,South Australia,137.12735,-35.890888 +2021,3,20,1,South Australia,138.647918,-35.006489 +2023,2,27,1,Queensland,153.111668,-27.527837 +2023,11,1,1,South Australia,138.732485,-34.890042 +2024,5,6,1,South Australia,138.722306,-34.890552 +2024,1,28,1,Queensland,153.093002,-27.528232 +2022,11,24,1,Queensland,152.05827,-27.268226 +2022,10,10,1,Queensland,153.073217,-27.545619 +2020,12,17,1,South Australia,138.702042,-35.067428 +2024,8,30,1,New South Wales,151.09575,-33.076692 +2023,10,13,1,South Australia,139.012411,-35.189452 +2022,10,13,1,New South Wales,153.395287,-28.266533 +2024,10,29,1,Queensland,153.084944,-27.506911 +2022,9,3,1,Queensland,152.677774,-25.306194 +2024,8,4,1,Queensland,153.093572,-27.527888 +2020,1,17,1,Queensland,146.868242,-19.126092 +2023,3,20,1,Queensland,153.107994,-27.527213 +2023,8,24,1,Queensland,151.733477,-26.159092 +2020,11,24,1,South Australia,138.529154,-35.114626 +2023,5,15,1,New South Wales,153.230757,-28.891319 +2024,3,9,1,Queensland,153.105237,-27.531679 +2023,4,8,1,Queensland,151.893913,-27.596718 +2024,10,23,1,Queensland,153.091497,-27.5271 +2023,3,12,1,Victoria,145.45757,-37.013548 +2023,1,12,1,Queensland,153.104413,-27.531179 +2024,9,21,1,Queensland,152.511453,-27.137108 +2021,3,6,1,Victoria,146.641443,-36.159482 +2021,10,19,1,South Australia,138.573255,-35.049954 +2023,1,28,1,Queensland,153.067149,-27.507945 +2023,8,7,1,Victoria,144.16845,-37.838253 +2021,2,14,1,Victoria,145.118483,-38.390898 +2022,11,5,1,Queensland,153.073932,-27.545518 +2024,3,1,1,Queensland,153.074379,-27.554153 +2023,3,16,1,Queensland,153.092138,-27.525707 +2024,9,15,1,Queensland,153.091034,-27.526334 +2021,2,6,1,Queensland,153.078115,-27.505698 +2024,10,11,1,Queensland,153.06106,-27.55065 +2024,11,7,1,Queensland,152.599626,-27.233698 +2020,2,7,1,Queensland,153.058152,-27.55114 +2023,1,17,1,Queensland,151.257999,-28.103895 +2024,10,8,1,South Australia,138.702959,-34.933265 +2024,9,13,1,Queensland,151.584142,-28.917105 +2022,2,5,1,South Australia,138.637529,-35.007847 +2022,12,27,1,Queensland,153.451042,-27.453231 +2024,7,8,1,Queensland,153.192106,-27.703251 +2021,1,30,1,South Australia,140.773091,-34.183907 +2023,9,27,1,Queensland,153.090342,-27.526003 +2024,9,20,1,New South Wales,151.077198,-33.147037 +2023,3,5,1,Queensland,153.104181,-27.529326 +2021,12,3,1,Queensland,153.059271,-27.547627 +2023,11,26,1,Queensland,153.092248,-27.527308 +2024,8,17,1,Queensland,151.561462,-27.795228 +2023,12,8,1,Queensland,153.092468,-27.526947 +2021,1,30,1,Queensland,153.056803,-27.54444 +2024,4,12,1,South Australia,138.723055,-34.89 +2023,4,17,1,Queensland,153.104996,-27.530072 +2022,11,12,1,Queensland,153.42993,-27.492372 +2022,5,5,1,Queensland,153.1026,-27.526147 +2022,4,19,1,Queensland,151.80715,-26.595115 +2020,2,19,1,Queensland,153.061729,-27.550303 +2024,5,5,1,Queensland,153.090716,-27.525812 +2023,11,30,1,Queensland,151.762506,-26.16856 +2024,2,6,1,Victoria,143.508848,-38.768839 +2022,9,24,1,Queensland,151.584793,-28.917009 +2023,3,15,1,Queensland,153.092473,-27.525646 +2024,2,29,1,Victoria,142.363358,-38.318367 +2024,8,19,1,Queensland,153.075361,-27.554745 +2024,11,12,1,Queensland,151.530137,-27.722147 +2023,12,16,1,Victoria,146.389571,-38.357472 +2024,9,24,1,Queensland,153.06955,-27.224047 +2023,10,18,1,Queensland,153.115075,-27.529047 +2023,8,21,1,Queensland,153.22761,-27.633214 +2024,9,6,1,Queensland,152.833351,-26.369964 +2022,9,10,1,Queensland,151.744513,-26.58522 +2023,4,14,1,Queensland,153.109965,-27.529788 +2024,10,2,1,Queensland,151.802967,-26.139193 +2024,7,27,1,Queensland,153.092037,-27.525732 +2021,9,11,1,Queensland,152.812257,-27.53646 +2023,6,2,1,Queensland,153.110383,-27.529794 +2024,10,8,1,Queensland,148.453338,-26.328128 +2022,11,15,1,Queensland,151.626126,-27.392546 +2023,3,26,1,New South Wales,151.095047,-33.076203 +2022,1,23,1,South Australia,138.577542,-35.154956 +2024,1,13,1,Queensland,153.099642,-27.5317 +2024,9,17,1,Queensland,151.53212,-27.726533 +2021,5,2,1,South Australia,138.689223,-35.08766 +2023,9,15,1,Victoria,147.727921,-37.920792 +2023,8,15,1,Queensland,152.427047,-28.073308 +2022,11,29,1,Queensland,151.553658,-27.812786 +2024,4,2,1,Queensland,151.895396,-27.600052 +2020,11,8,1,Queensland,153.077675,-27.230097 +2024,4,1,1,Queensland,151.692816,-26.184133 +2024,10,25,1,Queensland,152.60693,-28.164891 +2022,9,19,1,Queensland,153.422258,-28.121431 +2023,5,7,1,Queensland,153.091019,-27.527417 +2024,2,6,1,New South Wales,151.095122,-33.076695 +2023,4,11,1,South Australia,138.508858,-35.121542 +2024,4,2,1,Queensland,153.399673,-27.497717 +2023,9,8,1,Queensland,153.109019,-27.529025 +2023,8,26,1,Queensland,153.083774,-27.509098 +2024,4,13,1,Queensland,153.103651,-27.52994 +2024,7,4,1,South Australia,138.713597,-34.891444 +2020,1,6,1,New South Wales,151.519675,-30.519709 +2021,11,19,1,Queensland,152.988242,-27.778026 +2024,2,29,1,Queensland,153.092116,-27.520455 +2022,9,14,1,Queensland,153.073275,-27.545709 +2021,4,27,1,Queensland,152.403972,-27.454497 +2023,9,1,1,Queensland,144.112431,-18.484028 +2023,1,2,1,Queensland,153.070339,-27.543753 +2023,7,28,1,Queensland,153.402775,-27.493733 +2023,11,3,1,Queensland,153.09195,-27.527207 +2022,8,11,1,Victoria,145.213491,-38.24624 +2024,3,28,1,South Australia,138.5717,-35.027478 +2024,5,7,1,South Australia,138.734112,-34.887471 +2023,3,1,1,South Australia,138.828637,-35.247078 +2021,3,29,1,Queensland,153.05805,-27.545612 +2022,12,27,1,Queensland,151.891435,-27.597899 +2020,7,28,1,Queensland,153.374506,-27.91437 +2024,1,5,1,Queensland,151.895396,-27.600052 +2024,10,25,1,Queensland,153.103724,-27.528565 +2023,11,5,1,Victoria,143.883811,-37.587456 +2022,12,29,1,Queensland,151.955934,-27.446471 +2024,11,23,1,Victoria,143.60557,-38.763436 +2023,9,26,1,Queensland,151.112829,-26.785652 +2024,3,15,1,Queensland,146.863442,-19.137747 +2022,9,24,1,South Australia,137.351853,-35.616872 +2022,7,3,1,Queensland,153.070025,-27.510472 +2024,5,28,1,New South Wales,150.540405,-33.681672 +2023,10,2,1,Queensland,153.086145,-27.510324 +2024,10,29,1,Queensland,152.90142,-27.622257 +2021,11,27,1,Victoria,146.164089,-38.67138 +2024,10,2,1,Queensland,153.19019,-27.701741 +2022,11,25,1,Queensland,152.989644,-27.292703 +2022,3,24,1,South Australia,137.462576,-35.814727 +2020,8,11,1,Victoria,146.164339,-38.671234 +2021,1,28,1,Victoria,146.162193,-38.67071 +2024,1,21,1,Queensland,152.074565,-27.358453 +2021,12,19,1,Victoria,146.296814,-38.598474 +2021,1,15,1,Queensland,152.455094,-27.420866 +2023,11,9,1,Queensland,153.19019,-27.701741 +2022,5,17,1,Queensland,153.057848,-27.551026 +2024,7,23,1,South Australia,138.733742,-34.888534 +2024,5,29,1,Queensland,153.11183,-27.527893 +2024,10,16,1,Queensland,153.107733,-27.526952 +2024,7,6,1,Queensland,153.000366,-27.284701 +2023,10,16,1,Queensland,153.110671,-27.527647 +2023,10,28,1,Queensland,153.19019,-27.701741 +2024,1,13,1,Queensland,151.898826,-26.197039 +2023,1,4,1,Queensland,153.108696,-27.52699 +2022,9,15,1,Victoria,145.598083,-37.98038 +2023,8,20,1,New South Wales,151.235925,-33.159047 +2020,12,13,1,New South Wales,153.377584,-28.25416 +2022,12,29,1,New South Wales,146.472808,-34.72017 +2021,7,12,1,Queensland,153.058539,-27.551314 +2024,4,16,1,Queensland,153.09102,-27.526359 +2023,2,11,1,Victoria,143.858818,-38.666462 +2023,9,26,1,Victoria,143.77903,-38.631853 +2022,12,2,1,Queensland,153.056856,-27.551584 +2022,2,19,1,Victoria,147.72865,-37.922068 +2023,1,23,1,Victoria,146.667983,-36.287705 +2023,7,15,1,Queensland,153.092016,-27.527267 +2023,6,6,1,Queensland,153.084939,-27.510004 +2022,7,31,1,South Australia,138.714994,-34.878111 +2021,12,24,1,New South Wales,150.824981,-34.101894 +2023,1,12,1,Victoria,143.711267,-38.721208 +2021,12,18,1,Queensland,151.25995,-28.102879 +2022,12,5,1,Victoria,142.364362,-38.318308 +2023,8,5,1,Queensland,153.093038,-27.528418 +2023,9,9,1,Queensland,151.97502,-26.16097 +2023,10,3,1,Queensland,153.108309,-27.527085 +2024,9,28,1,Queensland,151.933975,-27.332813 +2020,9,21,1,Queensland,153.079065,-27.515177 +2023,12,29,1,Queensland,153.102653,-27.529559 +2020,11,11,1,Victoria,147.723711,-37.926814 +2021,12,18,1,Queensland,153.046321,-27.544507 +2023,11,24,1,South Australia,138.72267,-34.892678 +2024,5,15,1,Queensland,153.058334,-27.545399 +2024,4,1,1,Queensland,153.104637,-27.53054 +2022,3,8,1,New South Wales,153.394289,-28.959125 +2021,4,27,1,South Australia,138.649819,-34.877049 +2023,10,9,1,South Australia,138.731057,-34.890879 +2021,11,11,1,Queensland,153.07655,-27.555823 +2024,3,6,1,New South Wales,153.401875,-28.257077 +2024,6,3,1,South Australia,138.715476,-34.892548 +2024,11,24,1,Queensland,153.091504,-27.526849 +2024,10,13,1,New South Wales,146.548476,-34.752945 +2020,10,26,1,Victoria,143.884611,-37.615364 +2020,9,30,1,New South Wales,153.378125,-28.255295 +2023,4,20,1,Queensland,152.916168,-27.375381 +2021,8,25,1,Queensland,152.0869,-27.69505 +2024,1,21,1,South Australia,138.715811,-34.892977 +2023,11,22,1,Queensland,153.19019,-27.701741 +2021,11,22,1,Victoria,145.308016,-38.38472 +2021,4,16,1,South Australia,138.563547,-35.154475 +2023,11,15,1,Queensland,153.112665,-27.528779 +2023,9,4,1,Queensland,153.107664,-27.526876 +2021,7,27,1,Queensland,146.871368,-19.123665 +2022,9,5,1,Queensland,151.750039,-26.155358 +2023,12,16,1,Victoria,144.136353,-37.321258 +2024,11,9,1,Queensland,153.108367,-27.526922 +2024,7,7,1,Queensland,152.965928,-27.278888 +2023,11,8,1,Queensland,152.42151,-27.239769 +2024,4,23,1,Queensland,153.068358,-27.222861 +2024,7,11,1,Queensland,153.19019,-27.701741 +2024,9,7,1,Queensland,153.192527,-27.701138 +2020,11,14,1,South Australia,138.76599,-35.020756 +2023,1,12,1,Queensland,153.109565,-27.529365 +2022,6,26,1,Queensland,153.072645,-27.523868 +2023,9,1,1,Queensland,153.08368,-27.515938 +2024,8,17,1,Queensland,153.090658,-27.526976 +2023,9,23,1,Victoria,143.893306,-37.619578 +2024,4,29,1,Queensland,153.104059,-27.529686 +2024,7,7,1,Queensland,153.091538,-27.52729 +2023,7,26,1,New South Wales,153.400549,-28.258107 +2023,6,23,1,Queensland,153.10343,-27.528392 +2023,10,17,1,Queensland,153.189646,-27.701124 +2024,1,17,1,South Australia,138.718481,-34.892174 +2023,9,25,1,Queensland,151.985783,-27.563016 +2023,1,7,1,Queensland,152.813638,-26.814913 +2021,2,5,1,Queensland,153.057753,-27.551116 +2024,8,23,1,Queensland,153.19019,-27.701741 +2024,9,1,1,Queensland,153.070025,-27.510472 +2022,5,17,1,Victoria,143.878276,-37.633949 +2024,4,1,1,New South Wales,150.98178,-34.12862 +2023,2,27,1,Queensland,152.18373,-27.53098 +2020,5,3,1,Victoria,143.91346,-37.627285 +2023,12,27,1,Queensland,153.092846,-27.528091 +2020,6,23,1,Queensland,153.059638,-27.551622 +2023,12,30,1,Victoria,144.287686,-37.795353 +2021,8,28,1,Victoria,143.880769,-37.661556 +2024,9,3,1,Queensland,152.834336,-26.26825 +2020,3,6,1,Queensland,153.057863,-27.551835 +2022,6,8,1,Victoria,146.203803,-38.487808 +2020,3,29,1,New South Wales,153.377208,-28.25405 +2020,8,6,1,Queensland,153.05308,-27.539301 +2021,1,22,1,Queensland,153.057874,-27.551041 +2021,11,29,1,Queensland,151.559033,-27.813543 +2021,3,30,1,South Australia,138.519599,-35.224507 +2021,11,26,1,Queensland,151.610627,-25.623632 +2022,9,16,1,New South Wales,151.959167,-32.387195 +2023,11,7,1,Queensland,153.369967,-27.937965 +2021,8,25,1,Queensland,152.08715,-27.695383 +2024,4,13,1,Queensland,153.090867,-27.527171 +2024,7,14,1,Queensland,152.86575,-26.14881 +2022,10,15,1,Queensland,152.943663,-26.816867 +2023,9,24,1,Victoria,145.463228,-37.029093 +2024,2,5,1,South Australia,138.733755,-34.886557 +2023,8,24,1,New South Wales,150.83155,-29.651211 +2023,12,1,1,Queensland,153.19019,-27.701741 +2023,12,8,1,Queensland,153.325064,-27.91365 +2024,10,9,1,Victoria,142.814728,-38.380755 +2020,8,22,1,Queensland,153.528767,-27.430789 +2023,12,3,1,New South Wales,151.335186,-29.779553 +2021,4,28,1,Queensland,153.061874,-27.534404 +2023,4,25,1,Queensland,153.372558,-27.911478 +2024,3,2,1,Queensland,153.090986,-27.526939 +2024,9,22,1,Queensland,153.440766,-27.403776 +2020,4,25,1,Queensland,152.859615,-27.542516 +2020,4,21,1,Queensland,153.058399,-27.547033 +2024,6,27,1,Queensland,153.19019,-27.701741 +2020,9,3,1,Queensland,153.051991,-27.549063 +2023,8,19,1,Queensland,153.111949,-27.529041 +2023,7,23,1,Queensland,153.001134,-27.284706 +2021,12,4,1,New South Wales,151.091356,-33.144458 +2023,11,18,1,Queensland,153.09199,-27.527143 +2020,10,29,1,New South Wales,153.375685,-28.252385 +2024,10,7,1,Queensland,152.582256,-26.494998 +2024,11,9,1,Queensland,153.092208,-27.527649 +2024,9,7,1,Queensland,153.091489,-27.527125 +2023,12,21,1,South Australia,138.729931,-34.890156 +2024,1,16,1,Queensland,153.092268,-27.527346 +2023,4,3,1,Queensland,153.107527,-27.526755 +2024,9,19,1,Queensland,146.86972,-19.124939 +2024,3,16,1,Queensland,153.092864,-27.527558 +2020,7,1,1,New South Wales,153.377492,-28.254077 +2023,8,13,1,Queensland,152.606861,-28.164286 +2022,11,25,1,Queensland,151.567505,-27.693521 +2024,4,29,1,Queensland,153.10918,-27.528787 +2024,8,10,1,Queensland,153.399307,-27.496292 +2020,2,28,1,Queensland,153.4255,-27.46862 +2020,3,17,1,Victoria,146.87487,-36.285812 +2023,11,1,1,Queensland,153.111374,-27.529814 +2024,8,20,1,Queensland,152.93211,-27.57316 +2021,10,4,1,Queensland,152.451885,-27.56567 +2024,4,3,1,Queensland,153.07025,-27.510814 +2022,11,1,1,Queensland,151.260788,-28.102933 +2023,11,26,1,New South Wales,152.907378,-31.470397 +2024,3,25,1,Queensland,152.041584,-27.299223 +2024,11,3,1,South Australia,138.722536,-34.892459 +2023,12,21,1,South Australia,138.657846,-35.003905 +2021,10,3,1,Queensland,152.3852,-27.467544 +2023,8,22,1,Queensland,150.67257,-26.720226 +2024,6,23,1,Queensland,153.093069,-27.5243 +2024,1,31,1,South Australia,138.726814,-34.888441 +2024,10,19,1,Queensland,153.10517,-27.530035 +2023,10,13,1,Queensland,153.103222,-27.529462 +2024,1,26,1,Queensland,153.092308,-27.52729 +2021,7,23,1,Victoria,145.275094,-38.140026 +2022,5,9,1,South Australia,138.64806,-34.880447 +2021,2,4,1,New South Wales,153.377472,-28.254577 +2024,1,16,1,Queensland,153.092362,-27.527819 +2024,1,22,1,Queensland,153.057763,-27.551026 +2023,12,8,1,Victoria,143.277747,-38.75948 +2023,11,23,1,Queensland,152.045239,-27.258325 +2021,1,6,1,South Australia,138.730047,-34.879345 +2024,9,12,1,Queensland,152.994017,-27.823444 +2021,11,23,1,Queensland,152.063872,-27.261942 +2023,12,4,1,Queensland,152.074182,-27.358152 +2024,8,6,1,Queensland,152.102574,-26.853361 +2021,9,28,1,Queensland,151.770813,-27.37647 +2021,2,23,1,Queensland,153.057809,-27.551075 +2023,3,12,1,Victoria,147.73137,-37.922528 +2024,2,1,1,Queensland,151.041858,-26.648594 +2020,6,23,1,Queensland,153.058375,-27.546077 +2023,4,11,1,Queensland,153.090654,-27.525755 +2021,10,10,1,New South Wales,153.402161,-28.257657 +2020,1,3,1,Queensland,152.986188,-27.282989 +2024,5,9,1,Queensland,153.059484,-27.54896 +2023,10,1,1,Queensland,153.090966,-27.526488 +2023,10,14,1,Queensland,152.993756,-27.823121 +2020,5,29,1,Victoria,144.296902,-37.077676 +2024,9,12,1,Victoria,145.74492,-36.816137 +2020,7,18,1,Queensland,151.681985,-27.38914 +2023,10,4,1,Queensland,152.999342,-27.283762 +2024,10,21,1,Queensland,151.93373,-27.329217 +2022,7,31,1,Queensland,151.808335,-26.584528 +2022,12,11,1,Queensland,153.070421,-27.544081 +2024,1,12,1,Victoria,143.900605,-37.64138 +2022,4,9,1,New South Wales,153.377566,-28.25445 +2020,3,25,1,Queensland,153.057657,-27.551282 +2023,7,22,1,Queensland,153.093033,-27.524322 +2024,1,5,1,Victoria,145.051193,-38.26398 +2023,10,8,1,New South Wales,152.913872,-30.494854 +2023,11,14,1,Queensland,153.103181,-27.526611 +2023,10,22,1,New South Wales,153.00345,-30.533724 +2021,7,9,1,Queensland,146.835978,-19.13596 +2024,6,16,1,Queensland,153.090511,-27.526578 +2023,3,30,1,Victoria,143.898625,-37.594638 +2020,10,10,1,Queensland,153.03742,-27.532759 +2023,9,22,1,South Australia,138.567039,-35.086114 +2024,10,13,1,Queensland,153.091364,-27.527051 +2024,7,16,1,Queensland,152.86915,-26.15117 +2024,3,15,1,New South Wales,150.585933,-29.8572 +2023,2,19,1,Victoria,149.74684,-37.554729 +2024,9,21,1,Victoria,141.930851,-38.150932 +2023,1,4,1,South Australia,138.691206,-34.954881 +2024,4,12,1,South Australia,138.72173,-34.891945 +2023,11,4,1,Victoria,143.860922,-38.667782 +2023,10,7,1,Queensland,153.090867,-27.525881 +2023,8,15,1,Queensland,153.437667,-27.40038 +2024,7,9,1,Queensland,153.10537,-27.531369 +2023,10,30,1,Queensland,153.19097,-27.700869 +2024,9,21,1,Queensland,153.374011,-27.916603 +2024,11,18,1,Queensland,152.002961,-27.4141 +2023,12,20,1,Victoria,141.477893,-37.792921 +2022,11,28,1,Queensland,152.609153,-27.332775 +2023,12,2,1,Queensland,151.814846,-26.140737 +2024,7,18,1,Queensland,153.090889,-27.52748 +2024,5,12,1,Victoria,142.974953,-38.500006 +2023,10,9,1,Victoria,142.290871,-37.874169 +2022,12,12,1,Queensland,153.073358,-27.545782 +2024,7,11,1,Queensland,146.867535,-19.142842 +2024,6,22,1,Queensland,153.103471,-27.530145 +2023,5,11,1,Victoria,145.313164,-38.381747 +2022,12,11,1,Queensland,152.940567,-27.272692 +2023,4,15,1,Queensland,153.048974,-27.54968 +2024,4,27,1,South Australia,138.64926,-34.877993 +2024,9,23,1,Queensland,153.375298,-27.914631 +2022,1,23,1,Queensland,153.0698,-27.510435 +2023,7,16,1,Victoria,145.535453,-38.587936 +2022,4,25,1,Victoria,143.925556,-37.652778 +2021,10,26,1,New South Wales,153.377322,-28.254279 +2020,2,4,1,Victoria,145.27237,-38.129436 +2024,10,25,1,Queensland,146.864838,-19.137467 +2023,7,23,1,Queensland,153.090582,-27.525953 +2024,2,29,1,Queensland,151.759652,-26.165729 +2023,9,9,1,Queensland,152.624934,-27.073555 +2024,1,31,1,New South Wales,150.852301,-34.070375 +2020,11,18,1,Victoria,146.164689,-38.671013 +2024,5,12,1,Victoria,142.978303,-38.497158 +2024,9,29,1,Queensland,153.091668,-27.527099 +2021,1,19,1,Queensland,146.868268,-19.127136 +2023,7,15,1,Queensland,153.092189,-27.527383 +2024,7,10,1,Queensland,151.691324,-26.180544 +2024,10,25,1,South Australia,138.728667,-34.864295 +2024,10,4,1,Queensland,153.19019,-27.701741 +2023,12,5,1,Queensland,151.798848,-26.151977 +2023,8,25,1,Queensland,153.081131,-27.509205 +2021,9,8,1,New South Wales,153.442494,-28.273478 +2023,9,2,1,Queensland,152.999949,-27.284502 +2024,5,21,1,Queensland,151.903461,-26.590241 +2023,12,7,1,South Australia,138.732096,-34.890444 +2020,4,29,1,Queensland,153.055105,-27.54378 +2024,6,8,1,Queensland,153.103856,-27.529835 +2024,3,7,1,Victoria,143.401428,-38.341645 +2024,5,22,1,Queensland,153.110618,-27.527467 +2024,11,10,1,Queensland,153.092283,-27.527244 +2022,1,10,1,Queensland,153.139185,-27.622935 +2023,9,15,1,Queensland,152.951334,-27.257249 +2020,7,22,1,Queensland,153.224494,-27.50995 +2024,4,29,1,Queensland,153.103748,-27.530015 +2024,9,9,1,Queensland,153.057968,-27.534647 +2024,7,18,1,Queensland,153.09241,-27.525619 +2023,5,4,1,Queensland,153.058072,-27.550759 +2024,10,21,1,Queensland,151.9357,-27.325512 +2023,7,14,1,Queensland,153.110058,-27.527291 +2023,11,30,1,South Australia,138.721826,-34.89082 +2024,8,2,1,Queensland,152.743102,-28.236923 +2024,6,18,1,New South Wales,150.93507,-33.359477 +2023,1,2,1,Queensland,151.972547,-26.164152 +2023,10,27,1,South Australia,137.506638,-35.594055 +2023,8,5,1,Queensland,153.092887,-27.528369 +2022,12,23,1,Queensland,153.534628,-27.429179 +2022,11,24,1,New South Wales,151.519267,-30.520251 +2020,2,22,1,South Australia,138.656552,-34.93497 +2023,5,17,1,Queensland,151.525772,-27.714822 +2023,1,11,1,Queensland,153.073196,-27.545906 +2024,8,4,1,Queensland,153.515658,-27.422231 +2024,8,3,1,Queensland,153.091311,-27.526745 +2022,7,8,1,Queensland,153.199051,-28.191796 +2022,1,10,1,New South Wales,153.375182,-28.252316 +2023,3,15,1,Queensland,153.106566,-27.528455 +2024,1,17,1,South Australia,138.7184,-34.892118 +2021,12,9,1,Victoria,141.491466,-37.79459 +2024,3,2,1,Queensland,153.092208,-27.5273 +2021,10,9,1,Queensland,152.107368,-27.563269 +2023,3,5,1,Queensland,153.000793,-27.284462 +2021,5,9,1,Queensland,153.085427,-27.508255 +2024,5,19,1,Queensland,153.090966,-27.527095 +2020,4,28,1,Queensland,153.057833,-27.550966 +2023,8,18,1,Queensland,152.992508,-27.823963 +2023,4,23,1,Queensland,153.092104,-27.527191 +2023,9,13,1,Queensland,152.046542,-27.257154 +2020,5,8,1,South Australia,138.645737,-34.884813 +2023,10,22,1,South Australia,138.647313,-35.001368 +2024,9,25,1,Victoria,142.363203,-38.318633 +2023,2,24,1,South Australia,138.88533,-34.93937 +2021,5,11,1,New South Wales,153.4018,-28.260366 +2024,9,26,1,Queensland,153.352707,-27.935557 +2023,12,11,1,Queensland,151.79985,-26.332094 +2023,3,12,1,Queensland,153.000693,-27.284883 +2021,11,15,1,Queensland,152.06395,-27.261838 +2022,1,20,1,Victoria,143.890666,-37.599619 +2021,8,7,1,Queensland,152.906767,-28.173861 +2023,7,30,1,Victoria,142.36377,-38.318329 +2023,1,7,1,Queensland,153.111417,-27.525478 +2024,4,2,1,Queensland,153.101258,-27.530276 +2023,11,13,1,Queensland,153.19019,-27.701741 +2024,11,16,1,Queensland,152.992557,-27.822675 +2020,10,12,1,Queensland,153.062799,-27.550385 +2023,2,6,1,Queensland,152.65918,-28.22169 +2024,10,5,1,Queensland,153.09231,-27.527797 +2023,12,1,1,South Australia,138.609232,-35.054554 +2021,9,25,1,Queensland,153.134033,-27.565197 +2023,10,21,1,Queensland,151.583197,-28.918227 +2024,10,8,1,Queensland,153.054531,-27.552348 +2023,5,29,1,Queensland,153.110564,-27.527942 +2023,9,24,1,Queensland,152.004315,-27.41181 +2020,4,1,1,South Australia,138.697083,-34.958658 +2024,5,26,1,Queensland,146.867925,-19.127992 +2023,11,16,1,Queensland,151.561628,-27.791158 +2024,7,23,1,Queensland,153.102589,-27.529451 +2022,10,27,1,Victoria,142.921662,-38.438512 +2024,4,8,1,Queensland,153.103224,-27.526581 +2024,9,27,1,Queensland,151.449682,-26.103208 +2023,12,22,1,Queensland,153.107673,-27.52724 +2022,9,28,1,Victoria,145.246535,-38.251667 +2020,5,14,1,Queensland,153.058444,-27.546838 +2024,4,16,1,South Australia,138.649798,-34.999543 +2021,12,3,1,Queensland,153.049537,-27.549338 +2024,5,3,1,South Australia,138.731438,-34.890248 +2023,2,7,1,Queensland,153.103239,-27.530124 +2024,10,6,1,Queensland,151.711625,-27.649172 +2023,11,19,1,Queensland,153.092326,-27.528119 +2024,7,10,1,Queensland,151.812496,-26.130214 +2023,9,24,1,New South Wales,151.094533,-33.076269 +2024,4,22,1,South Australia,138.715375,-34.892716 +2024,9,18,1,Queensland,153.42993,-27.492605 +2022,12,27,1,New South Wales,146.595763,-34.77335 +2023,7,26,1,Queensland,153.107239,-27.527213 +2021,8,22,1,South Australia,138.641602,-34.885585 +2020,10,23,1,New South Wales,153.377059,-28.253542 +2023,9,25,1,Queensland,153.17015,-27.583867 +2024,7,11,1,Queensland,146.866522,-19.143517 +2023,1,16,1,Queensland,153.10159,-27.734251 +2023,11,2,1,Queensland,153.103491,-27.529575 +2023,12,6,1,Victoria,145.047925,-38.265745 +2024,7,3,1,Queensland,152.608522,-28.153812 +2024,8,11,1,Queensland,153.073578,-27.54033 +2024,7,3,1,Queensland,153.09035,-27.526599 +2024,9,19,1,Queensland,153.092037,-27.5259 +2021,12,22,1,New South Wales,152.380773,-31.94517 +2024,7,31,1,Victoria,142.363418,-38.318303 +2020,12,19,1,Victoria,144.668808,-37.439975 +2024,2,27,1,Queensland,153.104138,-27.529979 +2020,7,6,1,New South Wales,153.377528,-28.254093 +2024,4,22,1,Victoria,143.512162,-38.833095 +2024,10,16,1,Queensland,153.110112,-27.527065 +2020,3,15,1,Victoria,141.140043,-38.031687 +2024,8,10,1,Queensland,152.674126,-26.321919 +2024,9,9,1,Queensland,153.125654,-27.065206 +2021,5,7,1,Queensland,152.400466,-27.457661 +2022,11,27,1,Queensland,152.049222,-27.266377 +2020,2,25,1,Queensland,153.057473,-27.550933 +2024,11,11,1,Queensland,153.105288,-27.527809 +2023,11,30,1,Queensland,152.003083,-27.413805 +2024,7,13,1,Queensland,153.090454,-27.526694 +2022,11,12,1,Queensland,151.919541,-27.392436 +2023,3,5,1,Queensland,153.057702,-27.551136 +2024,11,10,1,Queensland,153.090692,-27.526092 +2023,5,4,1,Queensland,153.0924,-27.527647 +2022,9,18,1,Victoria,143.860803,-38.668335 +2023,1,1,1,Queensland,151.891114,-27.597933 +2023,9,9,1,New South Wales,153.564429,-28.386166 +2024,9,16,1,Queensland,152.6112,-28.072281 +2024,8,25,1,Queensland,153.091519,-27.52726 +2023,11,15,1,Queensland,152.078614,-26.974855 +2024,7,10,1,Queensland,153.110802,-27.529162 +2024,7,7,1,Queensland,152.61383,-27.339485 +2024,10,6,1,Queensland,153.054597,-27.550508 +2024,9,23,1,Victoria,143.844435,-38.673347 +2022,12,16,1,Queensland,152.003171,-27.413623 +2024,1,6,1,Queensland,151.94435,-27.323683 +2023,11,27,1,Queensland,151.708145,-27.648608 +2024,7,23,1,Queensland,153.108167,-27.526863 +2022,11,3,1,Queensland,153.073017,-27.546068 +2020,10,2,1,New South Wales,153.377005,-28.254188 +2024,5,13,1,South Australia,138.730208,-34.890385 +2023,12,29,1,Queensland,153.092986,-27.524411 +2022,11,15,1,South Australia,138.680144,-34.867243 +2022,8,31,1,Victoria,144.251647,-37.819655 +2023,8,29,1,Queensland,152.046347,-27.257551 +2023,11,30,1,South Australia,138.721814,-34.892749 +2024,4,22,1,Victoria,143.515105,-38.832475 +2022,10,14,1,South Australia,138.719099,-34.89205 +2020,10,6,1,South Australia,138.580048,-35.046527 +2023,9,28,1,Queensland,153.440791,-27.392849 +2021,11,28,1,Queensland,153.082682,-27.507918 +2021,6,8,1,Queensland,151.979875,-26.260405 +2023,11,14,1,Queensland,152.566135,-28.247032 +2023,12,29,1,Queensland,153.091293,-27.527216 +2024,5,1,1,Queensland,153.109916,-27.527126 +2024,6,20,1,Queensland,152.005508,-26.670002 +2020,5,6,1,Queensland,153.058186,-27.550856 +2024,6,3,1,New South Wales,153.274209,-29.007235 +2023,1,2,1,Queensland,153.090748,-27.526895 +2022,4,18,1,Victoria,143.277344,-38.759478 +2024,9,23,1,Queensland,153.071631,-27.544149 +2024,8,18,1,Queensland,153.093176,-27.523988 +2024,11,2,1,Queensland,153.090709,-27.52605 +2022,2,16,1,Victoria,145.648348,-37.769227 +2023,11,3,1,Victoria,145.503617,-37.853338 +2023,6,1,1,Queensland,152.86621,-28.211565 +2024,9,7,1,Queensland,153.086211,-27.540238 +2023,9,29,1,Victoria,146.387575,-38.354401 +2023,2,9,1,Queensland,153.073261,-27.545482 +2023,2,17,1,Queensland,153.086711,-27.510817 +2024,6,8,1,Queensland,153.106818,-27.529406 +2022,3,26,1,South Australia,138.489074,-35.163448 +2024,6,8,1,Queensland,153.103125,-27.530211 +2023,8,19,1,Queensland,146.872015,-19.12344 +2024,2,17,1,Queensland,153.05709,-27.546848 +2022,10,14,1,Queensland,153.030646,-27.303541 +2024,3,21,1,Victoria,143.891362,-37.578718 +2024,9,21,1,Victoria,143.595471,-38.458995 +2020,9,22,1,New South Wales,153.377029,-28.254082 +2023,11,6,1,Queensland,153.10871,-27.527312 +2021,8,21,1,Victoria,145.243692,-38.251898 +2023,2,28,1,Queensland,153.133483,-27.564455 +2024,6,13,1,Queensland,153.06968,-27.526624 +2024,1,20,1,Queensland,153.092604,-27.527552 +2023,2,24,1,Queensland,153.103512,-27.530146 +2021,9,12,1,Queensland,153.076418,-27.555961 +2023,9,7,1,Queensland,146.861303,-19.136034 +2022,8,5,1,New South Wales,150.150816,-33.509551 +2024,3,29,1,Queensland,153.072805,-27.545943 +2021,2,7,1,South Australia,138.708313,-35.21402 +2023,8,16,1,Queensland,151.800937,-26.154581 +2022,3,14,1,Queensland,153.085438,-27.510367 +2024,11,14,1,Victoria,145.734442,-38.627845 +2024,5,12,1,Queensland,153.092516,-27.527596 +2020,4,28,1,Queensland,153.048112,-27.550306 +2020,2,1,1,Queensland,153.072412,-27.545721 +2022,9,13,1,South Australia,138.702312,-34.93032 +2024,5,6,1,Queensland,153.109596,-27.528251 +2023,2,2,1,Queensland,153.090724,-27.52581 +2024,4,6,1,Queensland,153.103326,-27.528268 +2021,3,28,1,Queensland,153.053517,-27.549498 +2024,2,8,1,Victoria,144.191588,-37.859903 +2024,7,31,1,South Australia,138.720914,-34.892641 +2022,5,3,1,Queensland,153.438877,-27.398144 +2024,7,13,1,Queensland,152.07192,-27.357425 +2024,1,3,1,Queensland,151.814643,-26.36268 +2024,11,4,1,Victoria,145.754648,-38.632486 +2024,4,1,1,Queensland,153.103373,-27.528217 +2024,11,13,1,Victoria,144.408806,-37.862466 +2020,11,30,1,Queensland,152.626207,-26.931342 +2024,6,2,1,Victoria,144.127224,-37.898349 +2022,2,24,1,Queensland,153.444068,-28.107407 +2023,2,4,1,Queensland,153.105334,-27.532166 +2023,4,7,1,New South Wales,151.094986,-33.076739 +2023,10,21,1,Victoria,143.861178,-38.670006 +2024,3,23,1,Victoria,143.860797,-38.668869 +2024,8,16,1,Queensland,146.871475,-19.123033 +2023,6,25,1,Queensland,153.427524,-28.155996 +2024,3,30,1,New South Wales,151.095081,-33.076753 +2023,1,6,1,Queensland,152.82778,-28.069572 +2023,12,6,1,Victoria,145.047926,-38.266058 +2021,10,17,1,Queensland,152.803643,-27.538016 +2023,6,6,1,Queensland,152.524445,-27.469494 +2024,1,17,1,South Australia,138.717116,-34.892869 +2023,8,5,1,South Australia,138.69922,-34.936803 +2024,10,14,1,Queensland,152.365753,-27.455422 +2022,9,22,1,Queensland,152.050203,-27.269747 +2024,11,7,1,Queensland,151.768926,-26.255551 +2024,1,11,1,Victoria,145.268686,-38.130704 +2024,6,22,1,Queensland,152.996277,-27.314204 +2024,1,5,1,Victoria,142.363206,-38.318511 +2023,10,17,1,Queensland,153.372116,-27.903923 +2023,9,27,1,Queensland,152.004897,-27.411703 +2021,6,28,1,Queensland,151.987807,-27.633559 +2023,10,18,1,Queensland,153.112564,-27.528771 +2020,10,20,1,New South Wales,153.376878,-28.25308 +2023,3,31,1,South Australia,138.613948,-34.902573 +2020,6,6,1,Queensland,153.066977,-27.546765 +2024,10,7,1,Queensland,152.838012,-28.09476 +2021,10,4,1,Queensland,151.493708,-26.490428 +2021,6,19,1,Queensland,153.059345,-27.54843 +2024,11,19,1,Victoria,141.607483,-38.336605 +2021,7,27,1,New South Wales,153.400645,-28.257813 +2023,11,24,1,South Australia,138.611967,-35.069801 +2023,12,9,1,Victoria,143.859742,-38.67175 +2023,10,16,1,Queensland,153.148454,-27.790381 +2023,5,11,1,Queensland,153.090851,-27.527236 +2024,4,26,1,South Australia,138.627006,-34.891726 +2023,12,29,1,Queensland,153.092842,-27.528028 +2024,9,11,1,New South Wales,151.095441,-33.076711 +2023,7,16,1,Queensland,153.000286,-27.285008 +2023,2,15,1,South Australia,138.710878,-34.905078 +2023,1,29,1,Queensland,153.09329,-27.526573 +2024,4,22,1,Victoria,143.512572,-38.834708 +2023,1,14,1,Victoria,143.877161,-37.537936 +2024,7,3,1,Victoria,143.623269,-38.779977 +2023,10,30,1,Queensland,151.809135,-26.583582 +2024,11,9,1,Queensland,153.090964,-27.527287 +2024,1,21,1,South Australia,138.721264,-34.892602 +2023,12,27,1,South Australia,138.727063,-34.888418 +2022,3,14,1,Victoria,141.607452,-38.343098 +2024,11,24,1,Queensland,153.092074,-27.527168 +2024,7,1,1,Queensland,153.093347,-27.52822 +2020,9,29,1,Queensland,153.091951,-27.49542 +2022,10,31,1,South Australia,138.652627,-35.009685 +2024,6,20,1,Queensland,152.759022,-27.866569 +2020,8,24,1,New South Wales,153.377188,-28.25358 +2024,8,3,1,Queensland,153.093001,-27.526153 +2022,10,9,1,Queensland,152.860105,-28.220302 +2021,2,8,1,Victoria,146.16365,-38.671167 +2024,2,27,1,Queensland,153.265761,-28.010936 +2020,12,28,1,New South Wales,153.564077,-28.380981 +2022,1,14,1,South Australia,138.614975,-34.905079 +2022,10,17,1,New South Wales,153.287891,-28.809431 +2020,1,11,1,New South Wales,150.603333,-29.871389 +2021,11,4,1,South Australia,138.701999,-34.907981 +2023,10,15,1,Victoria,144.248534,-37.423287 +2024,5,3,1,Queensland,153.092923,-27.528155 +2024,9,30,1,Queensland,151.955572,-27.611578 +2021,1,6,1,Victoria,147.729028,-37.925575 +2023,5,11,1,New South Wales,153.399207,-28.260161 +2024,1,2,1,Queensland,153.090624,-27.526024 +2023,9,15,1,New South Wales,151.095031,-33.0766 +2024,10,8,1,Queensland,153.103626,-27.529532 +2020,12,14,1,South Australia,138.638056,-34.971396 +2020,7,27,1,Queensland,153.059173,-27.548603 +2023,12,12,1,Queensland,152.074527,-27.358399 +2023,2,12,1,Queensland,152.401374,-27.457171 +2022,3,24,1,South Australia,137.462583,-35.814758 +2023,11,6,1,Queensland,153.110286,-27.527569 +2023,1,13,1,New South Wales,150.638779,-33.432247 +2024,8,12,1,South Australia,138.594493,-35.021565 +2023,9,22,1,Victoria,145.52977,-36.874278 +2024,6,5,1,Queensland,153.23904,-28.011059 +2022,3,13,1,Queensland,153.082976,-27.514195 +2023,8,7,1,Queensland,152.66036,-28.086765 +2024,1,7,1,Queensland,153.092617,-27.526372 +2021,10,22,1,Victoria,145.134964,-38.177623 +2020,3,8,1,Victoria,149.743263,-37.539073 +2024,4,15,1,Queensland,153.087814,-27.510444 +2023,5,11,1,Queensland,152.249352,-27.496289 +2022,1,4,1,New South Wales,153.378116,-28.25539 +2024,10,8,1,Queensland,153.103282,-27.528983 +2021,11,30,1,Victoria,141.132064,-38.032683 +2020,4,19,1,South Australia,138.651602,-35.009016 +2023,10,11,1,Queensland,153.372193,-27.915792 +2023,12,24,1,Queensland,153.091153,-27.527367 +2022,6,16,1,New South Wales,153.439705,-28.875181 +2023,6,9,1,Queensland,153.101675,-27.734068 +2023,4,23,1,Queensland,153.090422,-27.525533 +2022,11,14,1,Queensland,152.60333,-27.287144 +2024,11,8,1,Queensland,152.003447,-27.41382 +2020,8,6,1,Queensland,153.054096,-27.537597 +2021,10,1,1,Victoria,143.896202,-37.580963 +2021,2,7,1,Victoria,143.884611,-37.615364 +2024,1,7,1,Queensland,152.074531,-27.358479 +2024,10,27,1,Queensland,153.414376,-27.479845 +2023,11,5,1,Queensland,152.897078,-28.203106 +2023,8,13,1,Queensland,153.078353,-27.50563 +2020,5,26,1,Queensland,153.072322,-27.545791 +2021,10,22,1,Queensland,153.227926,-28.191992 +2023,7,2,1,Queensland,153.082765,-27.507504 +2023,11,26,1,Victoria,145.048059,-38.269016 +2024,1,31,1,Queensland,153.10509,-27.529712 +2023,8,16,1,Queensland,151.694395,-26.176446 +2023,8,20,1,New South Wales,151.243422,-33.127564 +2024,10,3,1,Queensland,153.097074,-27.837957 +2024,6,6,1,Queensland,153.102454,-27.735028 +2023,3,17,1,Queensland,153.111789,-27.527826 +2024,7,19,1,Queensland,153.074157,-27.545793 +2024,1,21,1,Queensland,153.092482,-27.527698 +2024,3,16,1,Queensland,153.036878,-27.534075 +2023,6,24,1,Queensland,153.113795,-27.526705 +2024,3,31,1,Victoria,145.303883,-38.384164 +2023,11,18,1,Queensland,153.19019,-27.701741 +2024,2,26,1,Victoria,147.724832,-37.923409 +2023,8,6,1,Queensland,153.092489,-27.527431 +2023,9,28,1,Queensland,152.992962,-27.823698 +2021,12,12,1,Queensland,153.001358,-27.165344 +2020,10,6,1,New South Wales,153.400598,-28.25783 +2022,10,9,1,Queensland,152.860105,-28.220302 +2020,4,15,1,South Australia,138.686214,-34.976856 +2020,11,11,1,Queensland,153.051837,-27.540622 +2024,7,8,1,Victoria,145.997334,-38.828429 +2023,8,7,1,Queensland,153.104746,-27.529665 +2024,9,30,1,Queensland,153.054616,-27.552312 +2023,11,6,1,Victoria,145.776275,-36.764775 +2024,1,22,1,Victoria,142.767557,-38.406182 +2024,11,1,1,Queensland,152.074386,-27.358453 +2022,1,26,1,South Australia,138.69272,-34.955883 +2023,12,29,1,Queensland,153.092682,-27.52555 +2024,6,30,1,Victoria,144.271938,-37.844253 +2021,3,13,1,Queensland,153.062177,-27.539603 +2021,2,23,1,Queensland,153.049132,-27.526006 +2022,5,9,1,New South Wales,146.577117,-34.766808 +2024,1,6,1,Queensland,153.072582,-27.543522 +2024,9,29,1,Queensland,153.092481,-27.528517 +2023,4,8,1,Queensland,153.102814,-27.527545 +2023,11,20,1,Queensland,151.588414,-27.676135 +2023,10,22,1,Queensland,152.999438,-27.283875 +2023,10,20,1,Australian Capital Territory,148.91,-35.46 +2023,5,2,1,New South Wales,151.095153,-33.076417 +2020,2,10,1,Queensland,153.059859,-27.54997 +2023,8,18,1,Queensland,153.110058,-27.529356 +2022,11,19,1,Victoria,143.513356,-38.834222 +2022,5,3,1,Queensland,153.543507,-27.433624 +2022,4,21,1,Queensland,153.076339,-27.817263 +2023,10,2,1,Queensland,153.114975,-27.529069 +2024,3,1,1,South Australia,138.648513,-34.884272 +2022,4,11,1,New South Wales,153.402011,-28.259453 +2023,8,25,1,Victoria,143.512392,-38.834386 +2023,12,19,1,Victoria,144.124328,-37.907056 +2021,7,15,1,Queensland,153.059696,-27.54845 +2020,2,21,1,Queensland,153.067946,-27.545358 +2024,7,14,1,Queensland,153.092513,-27.5255 +2023,4,9,1,Queensland,153.018733,-26.376677 +2023,12,24,1,Queensland,153.092397,-27.525732 +2024,10,16,1,Queensland,151.772632,-26.199667 +2022,6,30,1,South Australia,138.65673,-34.865342 +2024,11,13,1,Queensland,153.104149,-27.528392 +2023,1,28,1,Victoria,146.001283,-38.838705 +2022,12,29,1,South Australia,138.643407,-34.999068 +2024,11,2,1,Queensland,153.073672,-27.54584 +2023,9,1,1,Queensland,151.723787,-27.429572 +2024,11,17,1,Queensland,153.091869,-27.527018 +2023,7,31,1,Queensland,151.995769,-27.407664 +2022,4,15,1,South Australia,138.700171,-34.903579 +2023,12,29,1,Victoria,143.894048,-37.652445 +2022,12,29,1,Victoria,145.307938,-38.38475 +2024,1,21,1,South Australia,138.720177,-34.892412 +2024,4,18,1,Victoria,143.51555,-38.836812 +2024,7,29,1,South Australia,138.737777,-34.832802 +2023,1,24,1,Victoria,143.896371,-37.639787 +2024,4,22,1,New South Wales,151.095414,-33.076828 +2021,4,5,1,South Australia,138.670495,-35.012874 +2022,5,6,1,Victoria,141.607627,-38.337468 +2023,11,9,1,Queensland,152.0495,-27.264008 +2024,9,16,1,Queensland,153.19019,-27.701741 +2021,5,19,1,South Australia,138.625508,-34.979972 +2021,10,21,1,Queensland,153.057819,-27.551096 +2023,3,12,1,New South Wales,153.401033,-28.258228 +2023,4,16,1,Queensland,153.090803,-27.526824 +2023,12,21,1,South Australia,138.635464,-34.969308 +2023,11,3,1,Queensland,153.093506,-27.524594 +2024,1,4,1,Queensland,152.229135,-27.295994 +2022,4,10,1,New South Wales,153.399789,-28.260549 +2023,8,27,1,Queensland,152.046218,-27.256143 +2024,10,4,1,Queensland,153.090984,-27.526636 +2023,6,29,1,South Australia,138.534217,-34.918187 +2024,10,18,1,Queensland,153.19019,-27.701741 +2022,10,14,1,Queensland,153.072259,-27.545178 +2023,1,26,1,South Australia,138.737883,-35.031292 +2024,5,30,1,Queensland,153.243984,-27.987239 +2020,9,15,1,Queensland,153.058425,-27.551492 +2023,12,25,1,Queensland,153.091824,-27.527164 +2024,10,4,1,Victoria,143.85621,-38.670559 +2023,3,14,1,Queensland,153.106736,-27.529428 +2023,11,13,1,Queensland,153.092046,-27.527177 +2020,11,15,1,New South Wales,153.378447,-28.255356 +2020,10,11,1,Queensland,153.059058,-27.548298 +2024,11,23,1,Queensland,152.01265,-27.405908 +2022,2,14,1,Victoria,144.094192,-37.624122 +2024,4,21,1,Queensland,153.090756,-27.526373 +2023,2,8,1,South Australia,138.718696,-34.872254 +2020,2,28,1,Queensland,153.057855,-27.551848 +2024,10,20,1,Queensland,152.917198,-27.475941 +2023,2,1,1,Victoria,145.452197,-37.018071 +2024,9,15,1,South Australia,138.639925,-35.005527 +2023,5,27,1,Queensland,153.267634,-28.008543 +2023,1,14,1,Queensland,153.104253,-27.53005 +2020,10,9,1,South Australia,138.598397,-35.189302 +2024,4,30,1,New South Wales,153.378908,-28.803875 +2023,3,21,1,Victoria,143.534435,-38.803096 +2022,11,22,1,South Australia,137.493488,-35.707125 +2024,11,23,1,Queensland,152.001008,-27.40575 +2024,10,6,1,Queensland,153.092376,-27.525619 +2024,4,6,1,Queensland,153.092828,-27.528489 +2024,10,20,1,Queensland,153.090986,-27.527415 +2022,1,19,1,South Australia,138.96336,-34.816393 +2023,3,7,1,Victoria,143.744645,-38.550125 +2024,9,29,1,Queensland,152.621389,-27.888502 +2024,3,15,1,Queensland,153.057641,-27.551602 +2022,12,19,1,Queensland,153.104293,-27.52904 +2024,8,11,1,Queensland,153.092307,-27.528468 +2023,11,7,1,Queensland,153.107262,-27.527323 +2023,11,10,1,Queensland,153.109872,-27.528107 +2023,5,20,1,Queensland,153.368857,-27.901167 +2024,2,2,1,New South Wales,150.564487,-29.545658 +2021,2,25,1,Victoria,146.163772,-38.671228 +2021,11,20,1,Queensland,153.101956,-27.734287 +2022,2,28,1,South Australia,138.574814,-35.02025 +2024,7,3,1,Victoria,143.610991,-38.775017 +2024,9,9,1,New South Wales,151.579117,-30.411403 +2023,1,7,1,Queensland,153.084074,-27.510538 +2022,12,22,1,Queensland,153.068811,-27.54113 +2024,4,2,1,Queensland,153.100347,-27.530623 +2023,6,25,1,Queensland,153.09325,-27.52492 +2020,7,12,1,New South Wales,153.376892,-28.254207 +2023,11,6,1,Victoria,148.25737,-37.155228 +2022,6,2,1,Victoria,143.910734,-37.613698 +2024,4,12,1,South Australia,138.646183,-35.009544 +2021,8,22,1,New South Wales,150.790886,-34.117957 +2024,9,29,1,South Australia,138.910476,-35.026703 +2023,12,27,1,Victoria,143.901829,-37.641163 +2020,10,20,1,Queensland,153.060375,-27.549787 +2022,12,24,1,Victoria,143.518683,-38.834084 +2020,8,30,1,New South Wales,153.376593,-28.253821 +2021,11,29,1,Victoria,147.754463,-37.908777 +2024,10,21,1,Queensland,153.093223,-27.526608 +2024,11,14,1,Queensland,152.042542,-27.297405 +2022,11,27,1,Queensland,151.994171,-27.585456 +2023,4,14,1,Queensland,153.108116,-27.527217 +2023,4,15,1,Queensland,153.090834,-27.525864 +2023,3,11,1,Queensland,153.06865,-27.525193 +2023,1,3,1,Victoria,145.683655,-38.648857 +2021,4,5,1,South Australia,138.639167,-35.013633 +2020,3,9,1,South Australia,135.681503,-34.824762 +2024,7,28,1,Queensland,152.994026,-27.823536 +2022,12,30,1,Victoria,143.861717,-38.669359 +2024,9,30,1,South Australia,138.716493,-34.892536 +2024,4,19,1,South Australia,138.666433,-34.863963 +2024,9,15,1,Queensland,153.092119,-27.525461 +2024,9,11,1,Queensland,153.092651,-27.525331 +2023,12,18,1,Queensland,153.105259,-27.531495 +2023,8,5,1,Queensland,153.403006,-27.493404 +2024,10,7,1,Queensland,152.993412,-27.823813 +2023,5,28,1,Queensland,153.092422,-27.528439 +2022,12,4,1,Queensland,153.106864,-27.527931 +2022,11,1,1,Queensland,151.932822,-27.432349 +2023,1,6,1,Queensland,152.827695,-28.06992 +2022,3,7,1,Queensland,153.104295,-27.530037 +2020,6,1,1,Queensland,152.184105,-26.118453 +2024,2,3,1,Queensland,152.732484,-27.778049 +2023,11,17,1,South Australia,138.736198,-34.831007 +2024,1,23,1,Queensland,153.110164,-27.527576 +2024,5,13,1,Queensland,153.079788,-27.515026 +2020,1,24,1,Queensland,153.058456,-27.548134 +2024,9,14,1,Queensland,153.09021,-27.526815 +2023,3,19,1,Queensland,152.860693,-27.549426 +2020,1,15,1,New South Wales,151.521037,-30.519748 +2022,4,18,1,Queensland,153.037351,-27.538775 +2023,8,20,1,Victoria,146.113145,-38.825237 +2023,12,3,1,Victoria,146.197055,-38.575448 +2022,12,21,1,Queensland,153.071605,-27.544712 +2020,11,26,1,New South Wales,153.377536,-28.254031 +2022,4,4,1,Queensland,153.052177,-27.542598 +2022,4,15,1,Queensland,151.692618,-26.176979 +2022,12,30,1,Victoria,143.861717,-38.669359 +2020,7,20,1,Queensland,153.059897,-27.54973 +2024,11,11,1,Queensland,151.933563,-27.327713 +2020,6,7,1,Queensland,153.077519,-27.228297 +2024,5,30,1,New South Wales,151.0887,-33.078431 +2023,10,21,1,New South Wales,153.442414,-28.273669 +2021,12,10,1,Victoria,143.860763,-38.668063 +2023,9,22,1,Queensland,152.004714,-27.411337 +2020,9,24,1,New South Wales,153.400658,-28.257898 +2024,11,4,1,Queensland,153.076683,-27.509098 +2021,10,16,1,Queensland,152.779659,-27.789277 +2023,3,28,1,Queensland,153.1055,-27.847703 +2021,11,29,1,Victoria,147.754463,-37.908777 +2022,11,22,1,Queensland,151.542391,-27.673478 +2024,10,29,1,Queensland,152.042204,-27.300235 +2024,2,8,1,South Australia,138.730281,-34.891295 +2024,9,26,1,Victoria,143.996261,-37.689472 +2022,10,30,1,New South Wales,153.399626,-28.260798 +2021,1,17,1,Victoria,144.825003,-37.23722 +2021,4,24,1,New South Wales,151.818629,-32.305351 +2024,10,17,1,Queensland,152.611253,-27.331772 +2024,9,29,1,Queensland,153.091455,-27.527183 +2020,9,25,1,Queensland,153.134125,-27.565205 +2022,11,30,1,Queensland,151.270821,-27.172658 +2024,2,23,1,Queensland,153.104323,-27.530565 +2024,7,29,1,Victoria,143.876915,-37.595519 +2022,8,14,1,New South Wales,151.014797,-34.066781 +2023,11,24,1,Queensland,151.772632,-26.199667 +2024,8,20,1,Queensland,151.935028,-27.32557 +2024,1,25,1,Victoria,142.031539,-37.747322 +2023,4,15,1,Queensland,153.109668,-27.526492 +2022,10,13,1,New South Wales,150.756486,-33.216545 +2021,11,28,1,Queensland,151.522174,-27.714466 +2024,10,23,1,South Australia,138.760469,-35.014033 +2024,1,2,1,Victoria,144.441313,-37.953347 +2023,2,17,1,Queensland,153.311682,-27.859777 +2024,11,6,1,Queensland,152.002992,-27.413733 +2024,8,25,1,Queensland,153.092002,-27.527069 +2022,6,21,1,Queensland,151.619442,-25.629824 +2022,11,19,1,Queensland,151.70752,-27.64865 +2023,5,15,1,Victoria,143.371808,-38.732129 +2024,3,2,1,Queensland,153.092864,-27.528084 +2024,9,3,1,South Australia,138.732029,-34.889168 +2023,1,2,1,Queensland,153.110285,-27.526955 +2024,1,21,1,Queensland,153.090895,-27.527528 +2022,3,27,1,Queensland,153.082836,-27.507529 +2023,10,27,1,Queensland,152.078995,-26.97513 +2022,12,31,1,New South Wales,150.82217,-34.101868 +2023,9,17,1,Queensland,153.000816,-27.284482 +2023,9,27,1,South Australia,138.727032,-34.887912 +2023,10,1,1,South Australia,138.680285,-35.045077 +2024,9,15,1,Queensland,146.868226,-19.129916 +2023,10,4,1,Queensland,152.999354,-27.283799 +2024,10,29,1,Queensland,152.053237,-26.332429 +2024,3,27,1,South Australia,138.549088,-35.06803 +2024,8,6,1,Victoria,145.467054,-36.900722 +2024,8,6,1,Victoria,145.649369,-37.025536 +2022,10,29,1,South Australia,138.714183,-34.963825 +2020,12,29,1,Victoria,141.394801,-38.140404 +2022,5,6,1,Queensland,152.937897,-27.163622 +2023,9,15,1,Queensland,153.110699,-27.528315 +2021,3,30,1,New South Wales,153.398238,-28.261188 +2023,11,9,1,Queensland,153.19019,-27.701741 +2023,11,11,1,Victoria,146.075547,-37.952463 +2023,9,28,1,Queensland,153.033118,-27.539771 +2022,2,20,1,Victoria,145.727418,-38.627997 +2023,11,25,1,Queensland,152.05002,-27.267083 +2021,6,9,1,Queensland,151.86683,-26.477884 +2021,10,11,1,Queensland,152.616081,-27.146062 +2024,11,17,1,South Australia,138.69037,-34.925045 +2023,11,6,1,Queensland,151.678021,-27.641111 +2024,8,4,1,Queensland,151.744913,-26.146953 +2024,6,26,1,Queensland,151.815231,-26.166516 +2023,4,5,1,Queensland,152.938005,-27.370469 +2024,7,29,1,Queensland,152.677444,-27.986515 +2024,7,11,1,Queensland,152.991135,-27.824294 +2020,6,5,1,Queensland,153.072769,-27.226381 +2024,2,21,1,South Australia,137.428025,-35.842097 +2021,10,20,1,South Australia,138.681007,-34.918435 +2024,9,1,1,Queensland,152.997156,-27.287717 +2024,10,15,1,Queensland,152.615121,-27.825204 +2024,3,15,1,Queensland,153.105036,-27.529401 +2023,1,11,1,Queensland,153.070175,-27.225283 +2023,8,21,1,Queensland,151.955845,-27.427871 +2022,8,4,1,Victoria,146.203719,-38.487919 +2023,4,11,1,Queensland,153.090608,-27.526148 +2024,1,30,1,South Australia,138.731213,-34.88958 +2023,9,29,1,Queensland,153.111377,-27.528915 +2021,4,14,1,Victoria,147.730786,-37.922672 +2024,2,5,1,Queensland,153.076867,-27.544928 +2024,5,19,1,Queensland,153.090671,-27.526316 +2020,9,7,1,Queensland,153.148734,-27.528988 +2023,6,13,1,Queensland,153.07014,-27.510543 +2022,3,11,1,South Australia,138.655559,-34.872197 +2021,4,5,1,South Australia,138.656764,-35.018456 +2024,5,20,1,South Australia,138.66838,-34.948058 +2024,8,18,1,Queensland,153.090864,-27.526752 +2023,2,13,1,Victoria,144.958991,-38.421309 +2021,12,14,1,Queensland,153.211682,-27.949053 +2020,2,28,1,Queensland,153.411771,-27.48374 +2024,8,25,1,Victoria,146.388285,-38.357558 +2023,5,20,1,Queensland,153.37362,-27.900849 +2024,11,16,1,Queensland,153.074324,-27.545589 +2022,11,19,1,New South Wales,151.039313,-33.197666 +2021,9,14,1,Victoria,144.276121,-38.094593 +2020,4,26,1,Queensland,152.730754,-27.68477 +2022,9,30,1,New South Wales,153.397518,-28.26158 +2021,6,4,1,Queensland,152.403251,-27.458357 +2022,9,30,1,Queensland,153.073405,-27.545551 +2024,9,23,1,Queensland,151.590897,-27.79983 +2022,11,6,1,Queensland,153.440062,-27.40148 +2023,5,13,1,Queensland,153.09097,-27.527467 +2023,6,11,1,Victoria,145.551912,-37.092042 +2023,4,15,1,Queensland,153.115476,-27.529492 +2022,9,29,1,Queensland,152.1833,-27.53118 +2022,1,8,1,South Australia,138.700072,-35.069047 +2021,1,11,1,New South Wales,153.377568,-28.25416 +2023,1,28,1,Queensland,153.090741,-27.525859 +2023,10,28,1,Queensland,152.94853,-27.341087 +2020,1,1,1,Victoria,143.513423,-38.800582 +2024,5,26,1,Queensland,152.992339,-27.823711 +2024,8,31,1,Queensland,153.377074,-27.918783 +2023,12,26,1,Queensland,152.046337,-27.257221 +2023,12,7,1,Queensland,153.19019,-27.701741 +2023,7,6,1,Queensland,153.369007,-27.832985 +2021,1,26,1,Victoria,144.194465,-37.855206 +2022,9,29,1,Queensland,153.072581,-27.545878 +2022,6,15,1,Queensland,152.523898,-28.195815 +2024,11,7,1,Queensland,152.6136,-27.241482 +2020,10,30,1,Queensland,153.057965,-27.550552 +2023,11,20,1,Queensland,153.19019,-27.701741 +2022,10,30,1,Queensland,152.503635,-27.457602 +2020,2,28,1,Victoria,144.073013,-37.628418 +2023,10,29,1,Queensland,153.093091,-27.524883 +2022,10,30,1,Queensland,152.486746,-27.448836 +2023,6,26,1,Queensland,152.611393,-27.332008 +2024,5,5,1,Queensland,146.868317,-19.127711 +2024,5,24,1,Victoria,145.168167,-38.172413 +2023,7,20,1,New South Wales,153.394335,-28.275605 +2020,7,23,1,South Australia,138.732256,-34.909964 +2021,11,5,1,New South Wales,153.377446,-28.254047 +2023,10,19,1,Victoria,144.414049,-37.957933 +2024,6,20,1,Queensland,152.745547,-27.86769 +2024,5,6,1,Queensland,153.092304,-27.527333 +2024,7,3,1,Victoria,143.610842,-38.775271 +2023,10,28,1,Queensland,153.19019,-27.701741 +2020,3,8,1,Victoria,143.47709,-38.801805 +2024,4,12,1,Victoria,145.316482,-38.363769 +2024,7,13,1,Queensland,153.093116,-27.528052 +2024,5,1,1,Queensland,153.103292,-27.530114 +2021,3,6,1,South Australia,138.631561,-34.991294 +2021,7,27,1,New South Wales,153.40062,-28.2578 +2024,6,1,1,Queensland,153.111718,-27.529058 +2024,11,5,1,Queensland,153.19019,-27.701741 +2020,9,27,1,New South Wales,153.377444,-28.254084 +2024,3,29,1,Queensland,153.073596,-27.546092 +2023,4,20,1,Queensland,153.059178,-27.548873 +2021,11,13,1,Queensland,153.054982,-27.53592 +2023,8,24,1,Queensland,146.868271,-19.128829 +2024,9,28,1,Victoria,146.388922,-38.35737 +2021,10,27,1,Queensland,153.076194,-27.540619 +2020,11,24,1,Queensland,153.058198,-27.551773 +2023,12,1,1,Queensland,151.749835,-26.155059 +2024,5,19,1,Queensland,153.093357,-27.525163 +2021,9,8,1,Victoria,144.959219,-38.42136 +2024,7,21,1,Queensland,153.092783,-27.52801 +2020,11,18,1,Queensland,153.058672,-27.546342 +2024,5,23,1,Victoria,142.10053,-37.877778 +2022,12,6,1,Queensland,153.191922,-27.700763 +2024,10,27,1,South Australia,138.663515,-34.866176 +2022,8,30,1,South Australia,138.708058,-34.903932 +2024,6,9,1,Queensland,153.092007,-27.526919 +2021,6,16,1,Queensland,153.057187,-27.551571 +2024,5,1,1,South Australia,138.716562,-34.892685 +2023,12,28,1,New South Wales,149.408161,-33.753478 +2023,9,10,1,South Australia,138.646133,-35.005194 +2023,12,5,1,Victoria,145.553987,-37.0132 +2023,9,18,1,Queensland,153.109579,-27.528043 +2023,7,4,1,Queensland,151.748892,-26.154357 +2024,7,13,1,Queensland,153.074126,-27.545928 +2022,5,28,1,Queensland,152.562097,-28.026134 +2024,7,12,1,Queensland,152.900786,-27.649679 +2024,4,22,1,Queensland,153.103881,-27.528467 +2020,8,2,1,Queensland,153.058872,-27.5392 +2024,1,16,1,South Australia,138.698595,-34.935875 +2022,9,26,1,New South Wales,152.063308,-32.706028 +2024,6,12,1,New South Wales,151.700401,-32.2349 +2022,12,13,1,South Australia,138.713367,-34.871594 +2024,7,13,1,Queensland,152.92369,-27.287154 +2020,11,17,1,Queensland,153.22121,-27.534973 +2021,10,11,1,Queensland,153.037252,-27.546535 +2023,11,2,1,Queensland,153.088467,-27.510319 +2023,2,1,1,Queensland,153.092864,-27.526817 +2023,11,11,1,Queensland,153.093511,-27.524318 +2021,10,13,1,Queensland,153.046244,-27.544362 +2021,12,31,1,Queensland,153.081956,-27.508105 +2023,5,23,1,Queensland,153.09266,-27.524964 +2024,3,13,1,Queensland,152.114958,-27.55383 +2024,10,12,1,Queensland,152.111438,-27.566372 +2023,12,18,1,South Australia,138.734047,-34.889588 +2020,2,25,1,New South Wales,153.377208,-28.25405 +2023,8,5,1,Queensland,153.107652,-27.52718 +2024,7,19,1,Queensland,152.074445,-27.358333 +2024,1,21,1,Queensland,153.090728,-27.526316 +2023,1,4,1,Queensland,153.090712,-27.526299 +2023,5,11,1,Queensland,153.083274,-27.511997 +2023,5,7,1,Queensland,153.092233,-27.527783 +2022,10,29,1,New South Wales,153.400623,-28.257805 +2022,11,24,1,Queensland,153.073735,-27.545992 +2022,3,18,1,Victoria,144.117782,-37.580314 +2021,5,3,1,Victoria,143.924375,-37.652902 +2024,6,23,1,Queensland,153.090346,-27.526499 +2023,4,25,1,Queensland,153.111164,-27.527262 +2020,1,15,1,Victoria,143.513485,-38.835277 +2023,10,13,1,Queensland,153.03476,-27.550167 +2024,3,31,1,Queensland,153.092408,-27.528327 +2024,8,17,1,Queensland,153.090751,-27.526934 +2022,5,19,1,New South Wales,153.402924,-28.260549 +2023,5,2,1,Queensland,153.090767,-27.525799 +2021,3,9,1,Victoria,146.164658,-38.671045 +2024,7,13,1,Queensland,153.093023,-27.524055 +2021,11,15,1,Queensland,153.189955,-27.736642 +2023,10,23,1,Queensland,153.10517,-27.531538 +2024,8,2,1,Queensland,153.074532,-27.5482 +2021,5,28,1,New South Wales,153.398034,-28.261273 +2023,8,8,1,Queensland,152.85345,-28.09554 +2022,5,16,1,Victoria,143.500686,-38.765948 +2020,8,3,1,Queensland,153.058393,-27.54713 +2024,7,7,1,Queensland,152.47329,-27.532608 +2024,1,17,1,South Australia,138.722389,-34.892724 +2022,4,2,1,South Australia,138.628249,-35.03267 +2024,11,14,1,Queensland,151.21756,-28.301322 +2023,5,31,1,Queensland,153.107671,-27.527052 +2024,9,15,1,Queensland,151.57719,-28.9191 +2022,3,24,1,South Australia,137.462583,-35.814758 +2023,11,15,1,Victoria,147.729813,-37.922433 +2024,2,17,1,Queensland,152.654799,-26.401998 +2024,1,14,1,Queensland,152.733733,-27.776945 +2024,8,9,1,Queensland,153.001931,-27.974706 +2024,6,14,1,Queensland,153.19019,-27.701741 +2024,8,22,1,Queensland,153.142071,-27.822386 +2022,12,17,1,South Australia,138.576865,-35.154184 +2024,2,15,1,Queensland,153.090936,-27.526929 +2020,10,26,1,New South Wales,153.376859,-28.253792 +2023,4,4,1,Queensland,153.108968,-27.527118 +2024,10,5,1,Queensland,153.092315,-27.527769 +2024,4,17,1,Victoria,143.514695,-38.836145 +2024,9,11,1,Queensland,153.19019,-27.701741 +2021,8,28,1,Queensland,152.247078,-27.49628 +2024,10,7,1,Queensland,153.103523,-27.529147 +2024,11,16,1,Queensland,151.772632,-26.199667 +2024,7,28,1,Victoria,142.290977,-37.874563 +2021,11,21,1,Queensland,153.03772,-27.546985 +2023,11,13,1,Queensland,151.591489,-27.698988 +2023,11,13,1,South Australia,138.716227,-34.892146 +2022,9,7,1,Queensland,153.070146,-27.510545 +2024,9,5,1,Queensland,152.074653,-27.358635 +2024,3,27,1,South Australia,138.742924,-34.829634 +2023,2,21,1,Queensland,153.103099,-27.528982 +2023,3,4,1,Victoria,142.362961,-38.318604 +2022,12,4,1,New South Wales,150.647348,-33.737651 +2023,9,9,1,Queensland,152.052506,-27.259595 +2020,7,31,1,Queensland,153.05779,-27.551743 +2024,9,8,1,Queensland,153.092104,-27.525368 +2024,5,25,1,Queensland,152.966585,-27.274569 +2023,9,17,1,Queensland,153.122643,-27.545916 +2022,12,19,1,Queensland,153.072228,-27.545083 +2023,10,31,1,Queensland,153.10925,-27.528936 +2023,12,23,1,Queensland,153.077805,-27.507662 +2024,9,10,1,Victoria,142.799556,-38.407716 +2022,12,6,1,South Australia,137.484803,-35.715295 +2021,5,18,1,Queensland,153.057296,-27.550959 +2022,9,11,1,New South Wales,151.095856,-33.13468 +2024,10,11,1,New South Wales,146.590242,-34.756928 +2022,7,14,1,South Australia,138.757112,-35.065483 +2024,10,30,1,Queensland,153.103271,-27.530052 +2022,8,8,1,New South Wales,150.82225,-34.101722 +2023,6,17,1,Victoria,143.514145,-38.845355 +2022,6,24,1,Queensland,153.101752,-27.735137 +2021,1,3,1,South Australia,138.705411,-34.98774 +2023,9,13,1,Queensland,152.77287,-27.779933 +2024,4,6,1,South Australia,138.702535,-34.930395 +2021,2,14,1,Queensland,152.617538,-27.891403 +2021,8,12,1,Queensland,153.242375,-27.530366 +2021,5,3,1,Victoria,146.163789,-38.671347 +2023,8,25,1,Victoria,141.747656,-38.093278 +2024,6,11,1,New South Wales,153.400792,-28.257904 +2024,5,20,1,Queensland,153.110138,-27.528947 +2023,2,7,1,South Australia,138.593684,-35.014782 +2023,10,22,1,Queensland,153.000822,-27.284463 +2023,4,22,1,Queensland,153.09049,-27.526019 +2023,5,28,1,South Australia,138.720635,-34.873205 +2023,2,18,1,Queensland,153.092851,-27.527008 +2024,10,21,1,New South Wales,146.585372,-34.773903 +2021,5,3,1,Queensland,153.058995,-27.547665 +2024,10,30,1,Queensland,153.105109,-27.530405 +2023,11,5,1,Queensland,153.092217,-27.527246 +2024,6,23,1,Queensland,153.092301,-27.527308 +2024,7,1,1,Victoria,145.316369,-38.364345 +2024,7,14,1,Queensland,153.372848,-27.908003 +2022,10,9,1,Queensland,152.864895,-28.219939 +2024,9,11,1,New South Wales,153.399944,-28.260328 +2023,5,29,1,Queensland,153.094995,-27.783272 +2024,7,30,1,Queensland,152.993058,-27.82372 +2021,1,10,1,Victoria,145.726458,-36.523362 +2023,10,17,1,Queensland,153.363052,-27.901344 +2023,4,20,1,Victoria,144.485358,-37.711791 +2023,11,7,1,Queensland,153.107628,-27.527238 +2023,10,3,1,Queensland,153.23438,-27.500227 +2024,5,23,1,South Australia,138.696197,-34.898695 +2023,8,14,1,Victoria,147.418962,-37.925669 +2023,6,3,1,Queensland,153.10814,-27.529113 +2023,12,23,1,Queensland,153.093498,-27.527763 +2024,11,16,1,Queensland,151.792747,-26.137612 +2023,12,3,1,Queensland,153.091232,-27.526874 +2024,3,6,1,South Australia,138.726682,-35.010708 +2022,12,5,1,New South Wales,151.617845,-31.661553 +2021,12,9,1,Victoria,146.429153,-38.312887 +2021,10,20,1,New South Wales,152.413738,-31.931906 +2021,11,5,1,Victoria,146.164033,-38.67165 +2023,10,11,1,Queensland,153.189646,-27.701124 +2023,11,16,1,Queensland,151.55184,-27.794028 +2023,1,29,1,Queensland,152.860105,-27.546453 +2022,11,12,1,Queensland,152.844637,-27.33957 +2023,10,4,1,Queensland,152.844139,-28.097059 +2021,7,29,1,South Australia,138.730941,-34.890908 +2024,11,14,1,Queensland,151.75123,-26.156689 +2023,10,25,1,Victoria,144.179501,-37.914559 +2023,10,12,1,Queensland,153.091371,-27.52735 +2023,10,30,1,Queensland,153.112693,-27.528815 +2023,1,7,1,Queensland,153.092117,-27.525038 +2024,4,17,1,Victoria,143.514029,-38.83542 +2024,11,21,1,New South Wales,151.095292,-33.076764 +2024,4,14,1,South Australia,138.64134,-35.000356 +2023,10,8,1,New South Wales,152.913492,-30.490455 +2022,11,8,1,Queensland,153.069544,-27.54185 +2024,8,3,1,Queensland,153.090924,-27.526633 +2020,11,28,1,South Australia,138.675172,-34.990437 +2023,11,11,1,Queensland,153.091531,-27.527134 +2023,11,2,1,Victoria,145.372707,-36.932678 +2023,9,23,1,Queensland,153.111044,-27.529953 +2024,7,24,1,South Australia,138.720971,-34.89259 +2023,12,26,1,Queensland,153.091571,-27.527256 +2021,11,18,1,Queensland,153.083786,-27.921933 +2024,4,10,1,Queensland,153.10631,-27.529436 +2024,4,21,1,Queensland,153.058387,-27.551437 +2023,6,19,1,New South Wales,151.085978,-33.139488 +2024,5,10,1,Queensland,153.092735,-27.52843 +2021,2,12,1,Victoria,143.980208,-38.549042 +2020,1,2,1,New South Wales,153.378175,-28.255258 +2023,9,27,1,Queensland,153.437878,-27.400142 +2023,3,15,1,Queensland,153.092409,-27.526946 +2023,11,2,1,Queensland,153.092312,-27.528216 +2024,6,22,1,Queensland,153.090502,-27.526904 +2024,1,26,1,Victoria,141.473237,-38.336647 +2021,11,28,1,Queensland,151.522174,-27.714466 +2023,6,26,1,Queensland,153.111299,-27.527137 +2022,12,14,1,Victoria,143.966563,-38.566839 +2023,11,3,1,Queensland,152.895685,-27.642776 +2024,8,3,1,Queensland,153.000924,-27.284325 +2021,3,3,1,Queensland,153.060564,-27.550555 +2023,11,26,1,Queensland,153.19019,-27.701741 +2023,10,19,1,Victoria,146.278288,-38.94207 +2023,12,27,1,Victoria,142.631379,-38.341726 +2020,7,29,1,Queensland,153.059838,-27.547517 +2022,10,31,1,New South Wales,152.072553,-32.711542 +2023,4,2,1,Queensland,151.895261,-27.422176 +2024,2,22,1,South Australia,138.731304,-34.890298 +2021,11,7,1,Queensland,153.175042,-27.552515 +2024,6,14,1,Queensland,153.091701,-27.527158 +2021,3,31,1,Victoria,146.163728,-38.671347 +2023,1,2,1,South Australia,138.681215,-34.953713 +2023,10,5,1,Queensland,152.681421,-28.000506 +2023,3,11,1,Victoria,144.266428,-37.39147 +2023,7,31,1,Victoria,143.904642,-37.578878 +2021,1,20,1,Queensland,146.855711,-19.128256 +2023,4,5,1,Queensland,153.060044,-27.549675 +2021,8,18,1,Queensland,153.059995,-27.550233 +2023,12,15,1,Queensland,151.920463,-26.143579 +2022,11,18,1,New South Wales,151.715071,-31.537735 +2023,4,22,1,Queensland,153.092516,-27.528446 +2023,10,20,1,Victoria,146.292144,-38.950169 +2024,9,19,1,Queensland,153.082347,-27.507689 +2024,8,18,1,Queensland,152.935348,-27.275239 +2020,11,13,1,Queensland,153.074556,-27.540347 +2022,3,20,1,New South Wales,153.400178,-28.260559 +2020,8,16,1,South Australia,138.580703,-35.039188 +2024,2,20,1,Queensland,153.112549,-27.529637 +2021,2,10,1,Queensland,153.057818,-27.551043 +2023,10,23,1,Queensland,153.109187,-27.52709 +2024,7,13,1,Queensland,153.105054,-27.529801 +2023,5,20,1,Queensland,151.932817,-27.330695 +2024,7,7,1,Queensland,152.614487,-27.338072 +2024,3,17,1,Queensland,153.09072,-27.527122 +2020,3,2,1,Victoria,145.6308,-35.882933 +2021,11,2,1,New South Wales,150.267112,-32.878963 +2023,8,9,1,Queensland,153.11205,-27.529228 +2020,6,7,1,Victoria,147.729867,-37.925084 +2023,8,7,1,Queensland,151.750278,-26.155573 +2024,1,31,1,Queensland,153.086025,-27.508835 +2023,10,15,1,Queensland,153.091678,-27.527194 +2023,4,10,1,Queensland,153.092437,-27.527779 +2023,12,12,1,Queensland,151.772632,-26.199667 +2024,10,30,1,Queensland,153.19019,-27.701741 +2024,10,6,1,Queensland,153.057991,-27.550824 +2023,12,16,1,South Australia,138.582864,-35.16681 +2023,11,2,1,South Australia,138.946845,-34.76103 +2021,12,29,1,Queensland,153.104362,-27.529997 +2023,3,6,1,Queensland,153.108853,-27.529248 +2023,9,2,1,Queensland,152.999223,-27.283767 +2022,11,19,1,Queensland,151.552774,-27.6958 +2022,9,13,1,New South Wales,150.655383,-33.550536 +2021,5,17,1,New South Wales,153.403175,-28.260624 +2023,9,27,1,South Australia,138.643617,-34.99972 +2024,5,19,1,Queensland,153.093095,-27.5275 +2022,10,11,1,Queensland,153.07375,-27.5457 +2022,1,15,1,Victoria,146.38889,-38.36154 +2024,8,1,1,Queensland,152.974372,-27.297681 +2024,3,12,1,Queensland,153.105146,-27.531129 +2022,2,27,1,South Australia,138.719652,-34.89155 +2020,1,31,1,Queensland,153.054084,-27.549861 +2024,7,22,1,Victoria,147.732117,-37.92307 +2024,7,29,1,Victoria,145.755025,-38.634219 +2021,4,3,1,Victoria,145.268291,-38.131178 +2024,4,15,1,Queensland,153.372674,-27.899586 +2023,1,24,1,Queensland,152.18373,-27.53098 +2024,8,27,1,Queensland,152.0928,-27.472059 +2023,11,19,1,Queensland,152.941268,-27.162318 +2024,7,13,1,Queensland,153.111953,-27.527752 +2024,10,6,1,Queensland,151.57968,-27.789688 +2024,2,6,1,Queensland,153.352815,-27.934858 +2023,5,16,1,Queensland,151.986163,-27.636895 +2024,5,22,1,Victoria,143.900805,-37.639952 +2020,9,1,1,Queensland,153.057412,-27.551174 +2020,5,30,1,Victoria,146.163772,-38.671337 +2021,11,16,1,Queensland,152.063781,-27.261908 +2021,1,18,1,South Australia,138.702541,-34.903258 +2024,10,1,1,Queensland,153.4449,-28.105889 +2020,10,29,1,New South Wales,151.519702,-30.520139 +2024,5,24,1,South Australia,138.719712,-34.892264 +2023,1,10,1,Queensland,153.071371,-27.544013 +2021,12,24,1,South Australia,138.73337,-34.887484 +2023,10,10,1,South Australia,138.640927,-34.886176 +2023,8,15,1,Queensland,152.003236,-27.414478 +2023,7,26,1,Queensland,153.103375,-27.529227 +2022,10,20,1,Victoria,145.267212,-38.129233 +2024,8,17,1,Queensland,151.522812,-27.720458 +2024,10,13,1,Queensland,152.99356,-27.82378 +2021,4,29,1,Queensland,153.440869,-27.401459 +2021,6,19,1,Victoria,145.260677,-38.482265 +2022,3,15,1,New South Wales,153.54753,-28.603945 +2024,1,22,1,Queensland,151.762506,-26.16856 +2023,7,25,1,New South Wales,152.905498,-31.436801 +2024,3,30,1,Victoria,143.860869,-38.668064 +2024,1,22,1,Victoria,144.121274,-37.904259 +2023,12,10,1,Queensland,153.19019,-27.701741 +2024,10,26,1,Queensland,153.19551,-27.655304 +2023,12,23,1,Queensland,153.093179,-27.527758 +2022,11,7,1,Victoria,145.921662,-38.668745 +2023,1,15,1,Queensland,152.063575,-27.260565 +2024,1,26,1,Victoria,142.362951,-38.318947 +2021,5,2,1,South Australia,138.673242,-35.015742 +2023,10,20,1,Queensland,153.094543,-27.532854 +2023,11,22,1,Queensland,153.19019,-27.701741 +2023,11,23,1,Victoria,145.370946,-36.919921 +2020,9,28,1,New South Wales,153.37673,-28.25365 +2024,7,23,1,Queensland,153.104416,-27.528811 +2022,3,22,1,Queensland,153.377553,-27.917903 +2022,8,15,1,Victoria,142.364058,-38.313763 +2021,12,22,1,Queensland,153.085175,-27.504972 +2023,10,21,1,Queensland,153.091995,-27.527229 +2022,11,15,1,Queensland,148.474418,-21.410485 +2024,11,3,1,Queensland,153.081473,-27.511456 +2023,7,25,1,Queensland,153.10782,-27.526894 +2024,3,14,1,South Australia,138.716368,-34.89371 +2023,11,26,1,Victoria,143.537311,-38.806043 +2024,4,4,1,South Australia,138.721989,-34.889941 +2024,7,3,1,Victoria,143.617619,-38.777849 +2023,3,11,1,Queensland,153.111809,-27.525193 +2020,9,24,1,New South Wales,153.400709,-28.257707 +2023,11,7,1,Queensland,153.163239,-27.590733 +2022,11,14,1,Queensland,151.54393,-27.671145 +2023,10,6,1,Queensland,152.044174,-27.257508 +2024,10,30,1,South Australia,138.668368,-34.959382 +2022,11,12,1,Queensland,153.073482,-27.542618 +2023,8,25,1,New South Wales,153.395218,-28.274063 +2023,4,21,1,Victoria,142.363328,-38.31842 +2024,4,8,1,New South Wales,151.095061,-33.076397 +2023,10,6,1,Queensland,153.110454,-27.527825 +2022,10,29,1,South Australia,138.605362,-35.043236 +2023,3,15,1,Victoria,141.417547,-38.268496 +2023,9,18,1,New South Wales,151.094925,-33.076267 +2023,10,22,1,Queensland,153.136023,-27.488225 +2023,3,3,1,Queensland,153.132981,-27.563933 +2024,11,7,1,Queensland,152.003006,-27.413855 +2020,4,27,1,South Australia,138.695665,-34.859318 +2022,10,3,1,Victoria,143.588458,-38.780827 +2024,4,27,1,Queensland,153.092348,-27.527917 +2021,11,19,1,Queensland,152.988175,-27.777922 +2020,1,20,1,South Australia,138.705406,-34.903246 +2024,6,2,1,New South Wales,146.53482,-34.743962 +2020,5,20,1,New South Wales,153.375139,-28.252225 +2023,12,31,1,Queensland,153.091459,-27.527196 +2021,9,27,1,South Australia,137.639629,-35.648408 +2020,6,6,1,Victoria,147.72936,-37.925786 +2022,4,28,1,Queensland,152.96115,-28.076992 +2023,4,10,1,Queensland,153.102692,-27.518683 +2024,7,28,1,New South Wales,145.67837,-35.919655 +2024,9,13,1,Queensland,153.174597,-27.552458 +2021,8,5,1,Queensland,153.074775,-27.544245 +2023,6,18,1,Victoria,147.739451,-37.920979 +2020,11,14,1,South Australia,138.646347,-35.010189 +2023,12,6,1,Queensland,153.110017,-27.527771 +2023,4,20,1,Victoria,145.449312,-37.090314 +2023,4,2,1,South Australia,138.72323,-34.862674 +2021,6,13,1,Queensland,153.078382,-27.506488 +2024,7,7,1,Queensland,152.61322,-27.328827 +2022,1,27,1,South Australia,138.712813,-34.911946 +2024,4,20,1,South Australia,138.729452,-34.890038 +2020,1,18,1,New South Wales,152.930516,-31.471048 +2024,10,19,1,Queensland,153.07459,-27.546665 +2022,10,15,1,Queensland,153.106414,-27.508275 +2022,10,22,1,Queensland,153.35681,-27.938951 +2024,6,11,1,Queensland,152.679441,-25.535663 +2023,10,13,1,Queensland,153.070095,-27.51054 +2024,9,22,1,Queensland,153.092395,-27.527119 +2024,5,27,1,South Australia,138.731539,-34.881129 +2024,4,7,1,Queensland,153.092273,-27.525036 +2023,11,8,1,Victoria,146.132692,-38.830044 +2023,4,16,1,New South Wales,151.095154,-33.076308 +2021,6,13,1,South Australia,138.736167,-34.830996 +2021,5,2,1,South Australia,138.670424,-35.015824 +2020,2,15,1,South Australia,138.692738,-34.955893 +2022,11,12,1,Queensland,152.16183,-27.50045 +2020,8,3,1,Queensland,153.180697,-27.489129 +2021,6,17,1,Queensland,153.049205,-27.549723 +2023,6,15,1,Queensland,151.756484,-26.16223 +2021,9,27,1,Queensland,151.78885,-27.400303 +2024,3,2,1,Victoria,143.874189,-37.61605 +2023,11,4,1,Queensland,153.093042,-27.526093 +2021,5,16,1,New South Wales,153.403012,-28.260479 +2024,4,3,1,South Australia,138.727475,-34.889832 +2022,2,19,1,Victoria,146.257949,-38.661935 +2021,7,15,1,Victoria,145.26902,-38.131195 +2023,6,10,1,Queensland,153.090802,-27.525834 +2024,7,16,1,New South Wales,152.403969,-31.9282 +2024,2,11,1,Queensland,153.09139,-27.527352 +2023,8,26,1,Queensland,153.00069,-27.28416 +2023,7,2,1,Queensland,153.057848,-27.551863 +2021,10,29,1,South Australia,138.710106,-34.905883 +2024,4,12,1,Victoria,145.300262,-38.383823 +2024,1,9,1,Victoria,143.901829,-37.641163 +2024,1,21,1,South Australia,138.713923,-34.893133 +2022,4,21,1,New South Wales,153.403393,-28.260451 +2021,10,31,1,New South Wales,153.377302,-28.254186 +2024,1,13,1,Queensland,151.803901,-26.160044 +2020,12,7,1,Victoria,146.1635,-38.671001 +2024,8,17,1,Queensland,153.31848,-27.899017 +2024,8,21,1,New South Wales,153.628751,-28.640675 +2023,3,3,1,Queensland,153.133378,-27.564147 +2022,9,3,1,Victoria,145.756258,-36.877251 +2023,12,10,1,Queensland,153.093562,-27.524865 +2023,2,26,1,Queensland,153.090769,-27.525812 +2021,10,21,1,Queensland,152.864302,-28.219264 +2024,9,6,1,New South Wales,146.565134,-34.759392 +2024,11,10,1,Queensland,153.119095,-28.228153 +2024,3,31,1,Queensland,152.993643,-27.823811 +2024,11,17,1,Queensland,153.092434,-27.527631 +2024,3,30,1,Victoria,142.367667,-38.316219 +2023,5,15,1,Queensland,153.090754,-27.525834 +2021,2,7,1,Queensland,153.221419,-27.535453 +2024,5,15,1,South Australia,135.851717,-34.708231 +2021,7,6,1,Victoria,143.613477,-38.573654 +2022,11,11,1,Queensland,151.987883,-27.59592 +2023,3,6,1,Queensland,152.249519,-27.495775 +2020,12,27,1,New South Wales,153.40067,-28.257744 +2022,12,29,1,Queensland,153.437745,-27.402676 +2022,12,29,1,New South Wales,146.595292,-34.77333 +2023,6,24,1,Queensland,153.075422,-27.503537 +2020,1,26,1,New South Wales,151.521444,-30.51972 +2024,9,19,1,Queensland,153.082533,-27.5073 +2024,1,9,1,South Australia,138.537003,-34.917563 +2023,1,22,1,Queensland,151.80957,-26.529778 +2022,11,25,1,Queensland,153.214942,-28.165963 +2024,1,17,1,South Australia,138.720785,-34.891557 +2023,8,10,1,Queensland,153.090447,-27.526797 +2024,1,25,1,Queensland,153.093081,-27.528164 +2024,6,2,1,Queensland,153.090787,-27.525816 +2022,12,9,1,New South Wales,153.377537,-28.253948 +2024,6,12,1,South Australia,138.730406,-34.890774 +2023,4,25,1,Queensland,153.090853,-27.525873 +2023,11,7,1,Queensland,153.163253,-27.590795 +2023,8,23,1,Queensland,152.899886,-27.635611 +2020,11,13,1,Queensland,152.880743,-27.425895 +2024,10,7,1,Queensland,153.090408,-27.526097 +2024,11,11,1,Queensland,153.103839,-27.527652 +2021,10,12,1,Queensland,152.804601,-27.530968 +2022,9,26,1,Queensland,153.067732,-27.508757 +2024,10,27,1,Queensland,152.991915,-27.823303 +2024,11,18,1,Victoria,144.593946,-37.330553 +2023,7,13,1,Queensland,153.075355,-27.504068 +2024,11,1,1,Queensland,153.187057,-28.196228 +2021,11,20,1,Queensland,152.99243,-27.82335 +2024,8,13,1,Queensland,153.445113,-28.133044 +2024,10,30,1,Queensland,153.165685,-27.560744 +2024,10,9,1,Victoria,141.285861,-37.923804 +2024,2,17,1,Queensland,153.057331,-27.551581 +2020,5,14,1,New South Wales,153.377645,-28.254785 +2024,6,17,1,Queensland,153.112539,-27.528073 +2023,8,23,1,Queensland,153.154863,-27.607067 +2024,1,14,1,Queensland,153.09093,-27.526861 +2024,2,4,1,South Australia,138.69873,-34.934475 +2024,7,11,1,South Australia,138.546308,-34.997089 +2023,11,17,1,Queensland,151.792319,-26.145114 +2024,11,18,1,Victoria,147.722467,-37.925111 +2024,5,5,1,Queensland,153.090754,-27.527119 +2020,11,15,1,New South Wales,153.376777,-28.253774 +2024,8,1,1,Queensland,153.19019,-27.701741 +2024,3,24,1,Victoria,145.676401,-35.919566 +2023,11,18,1,Queensland,153.091618,-27.527231 +2024,4,27,1,Queensland,151.725158,-27.428458 +2021,8,6,1,South Australia,138.667581,-35.005264 +2023,10,7,1,Queensland,153.080301,-27.508499 +2021,10,22,1,Queensland,152.907862,-28.174362 +2024,10,17,1,New South Wales,152.90606,-31.440881 +2023,3,5,1,Victoria,145.278099,-38.381881 +2024,3,14,1,Queensland,151.762506,-26.16856 +2022,1,13,1,Queensland,153.102041,-27.734311 +2024,3,2,1,New South Wales,150.822128,-34.101272 +2023,2,1,1,Queensland,153.092333,-27.52569 +2020,4,9,1,Victoria,143.996858,-37.688766 +2022,6,26,1,Queensland,153.106636,-27.508272 +2024,1,7,1,Queensland,153.090308,-27.526233 +2020,10,28,1,New South Wales,153.377504,-28.254067 +2022,10,13,1,Queensland,151.5244,-27.712022 +2022,11,15,1,Queensland,153.059692,-27.551139 +2023,8,27,1,Queensland,151.753365,-26.159058 +2021,10,17,1,Victoria,143.883848,-37.587467 +2023,12,23,1,Queensland,153.08086,-27.513142 +2023,9,5,1,Queensland,153.102066,-27.527493 +2023,8,26,1,Queensland,153.000512,-27.284966 +2022,9,30,1,Victoria,145.371976,-36.930572 +2021,2,28,1,Queensland,152.899999,-27.261314 +2022,3,24,1,Queensland,152.740022,-27.641587 +2020,11,26,1,Queensland,151.988444,-27.662864 +2023,2,22,1,Queensland,153.091923,-27.526995 +2024,1,8,1,Queensland,152.591659,-26.894947 +2023,11,25,1,Queensland,151.734195,-26.160781 +2022,9,13,1,South Australia,138.689018,-34.784294 +2023,11,24,1,South Australia,138.626542,-35.109128 +2023,4,19,1,Queensland,153.111695,-27.527887 +2020,1,22,1,Queensland,153.074708,-27.503087 +2020,10,23,1,Queensland,153.059963,-27.550539 +2020,3,28,1,Victoria,141.469968,-37.935968 +2023,9,19,1,Queensland,151.57608,-27.807812 +2024,4,22,1,South Australia,138.715145,-34.891861 +2024,9,23,1,Queensland,151.492737,-25.185634 +2023,3,18,1,Queensland,153.070127,-27.51054 +2020,7,6,1,Queensland,153.073092,-27.515042 +2023,11,19,1,Queensland,151.719356,-27.429836 +2024,1,21,1,Queensland,153.093131,-27.527896 +2024,4,12,1,Victoria,145.312622,-38.384392 +2021,1,3,1,South Australia,135.802278,-34.78925 +2021,10,25,1,New South Wales,153.377398,-28.254241 +2024,2,19,1,Victoria,145.00998,-38.476921 +2020,2,1,1,Queensland,152.631729,-27.4083 +2023,12,3,1,Queensland,153.371829,-27.91064 +2022,11,17,1,Queensland,152.745978,-28.234937 +2024,9,19,1,Queensland,153.091905,-27.524443 +2024,9,17,1,Victoria,145.238083,-38.25377 +2024,11,8,1,Queensland,151.935218,-27.431224 +2021,8,21,1,South Australia,138.721822,-35.003519 +2023,3,23,1,Queensland,153.20302,-27.514522 +2023,12,30,1,Victoria,145.531759,-37.01315 +2023,11,1,1,Queensland,153.103453,-27.530264 +2023,3,4,1,Queensland,153.109881,-27.527209 +2024,8,12,1,Victoria,143.898873,-37.641083 +2021,10,17,1,Victoria,143.883676,-37.587348 +2022,9,19,1,South Australia,138.563246,-35.167162 +2024,1,4,1,Victoria,144.52172,-37.370898 +2024,6,15,1,Queensland,153.053069,-27.543817 +2024,10,31,1,Victoria,146.445501,-38.331835 +2021,7,30,1,Queensland,153.058685,-27.544927 +2024,5,5,1,Queensland,153.092885,-27.528055 +2023,9,29,1,Queensland,153.113447,-27.528517 +2023,10,2,1,Queensland,153.102821,-27.527596 +2023,10,13,1,Queensland,153.057882,-27.553293 +2022,11,30,1,Queensland,151.812855,-27.352438 +2023,11,19,1,Queensland,153.091637,-27.526863 +2024,9,8,1,Queensland,153.093416,-27.528119 +2024,10,13,1,Queensland,153.089281,-27.221281 +2020,10,22,1,Queensland,152.858393,-27.269697 +2023,1,10,1,Queensland,153.073367,-27.542714 +2023,7,24,1,Queensland,153.107631,-27.527146 +2023,11,5,1,Queensland,153.069856,-27.510402 +2024,10,12,1,Queensland,153.375255,-27.9141 +2020,11,17,1,Queensland,153.0584,-27.548421 +2023,12,24,1,Queensland,146.868242,-19.127828 +2024,1,16,1,South Australia,138.615318,-34.904254 +2024,8,26,1,Queensland,152.935425,-27.275819 +2024,6,4,1,Queensland,153.075836,-27.536205 +2024,10,3,1,New South Wales,150.83525,-34.070308 +2022,12,17,1,Queensland,153.107695,-27.527117 +2022,12,28,1,South Australia,138.667638,-34.938575 +2024,7,1,1,Victoria,145.276862,-38.381996 +2023,9,11,1,Victoria,145.462449,-37.029334 +2024,10,29,1,Queensland,153.187133,-28.19508 +2020,10,7,1,Queensland,153.05762,-27.550976 +2024,3,15,1,Queensland,153.057617,-27.551242 +2023,2,15,1,Queensland,153.356418,-28.091086 +2021,11,3,1,Queensland,153.189987,-27.73663 +2022,11,16,1,South Australia,137.505718,-35.593033 +2021,6,20,1,Queensland,153.047417,-27.545129 +2024,10,18,1,Queensland,152.615535,-27.824826 +2024,7,23,1,Queensland,153.103722,-27.529505 +2023,7,27,1,Queensland,152.681533,-26.167728 +2023,5,22,1,Queensland,152.995727,-27.431498 +2023,9,28,1,Queensland,152.703292,-27.0962 +2021,4,28,1,Victoria,143.506802,-38.834524 +2022,10,20,1,Queensland,153.283001,-27.525983 +2023,12,31,1,Queensland,153.092435,-27.525704 +2021,9,17,1,Queensland,153.034125,-27.540966 +2024,5,14,1,Victoria,144.129006,-37.861801 +2024,3,15,1,Queensland,153.057761,-27.551478 +2021,6,27,1,South Australia,137.639847,-35.647697 +2020,11,14,1,New South Wales,153.377483,-28.253971 +2023,7,30,1,Queensland,152.24925,-27.496538 +2023,11,13,1,Victoria,145.171555,-38.167112 +2022,11,22,1,South Australia,137.49395,-35.708153 +2023,4,7,1,Queensland,152.764881,-28.216498 +2023,9,8,1,Queensland,151.801976,-26.156066 +2023,5,11,1,Queensland,153.086948,-27.510639 +2024,3,7,1,New South Wales,150.601331,-29.870405 +2024,5,30,1,New South Wales,150.601281,-29.870275 +2024,10,30,1,South Australia,135.787726,-34.772911 +2024,4,30,1,South Australia,138.729342,-34.88738 +2024,11,16,1,Queensland,152.992616,-27.822998 +2024,3,23,1,Victoria,143.860686,-38.668264 +2024,9,22,1,Queensland,153.062622,-27.220637 +2022,9,26,1,Victoria,143.911663,-37.651682 +2024,11,17,1,South Australia,138.693772,-34.921845 +2023,3,29,1,South Australia,138.572859,-35.035978 +2022,1,16,1,South Australia,138.699937,-35.069144 +2023,11,20,1,Queensland,151.826037,-26.21867 +2024,7,21,1,Queensland,153.046484,-27.274808 +2024,11,10,1,Queensland,153.092277,-27.528054 +2023,4,30,1,Victoria,145.999344,-38.825169 +2021,8,17,1,Queensland,152.410508,-27.928363 +2021,2,6,1,Queensland,153.084147,-27.509683 +2024,10,2,1,South Australia,138.923788,-34.750083 +2023,8,8,1,South Australia,138.662223,-35.009337 +2022,9,28,1,Queensland,152.865472,-28.211123 +2023,9,24,1,Queensland,152.992753,-27.82403 +2022,4,27,1,Queensland,153.054408,-27.537874 +2024,10,7,1,New South Wales,153.390095,-28.266461 +2024,3,31,1,Queensland,153.090446,-27.526881 +2024,2,3,1,Queensland,153.111525,-27.52794 +2020,4,21,1,Queensland,153.058767,-27.548774 +2023,3,14,1,Queensland,152.074797,-27.358642 +2021,3,11,1,Victoria,146.163789,-38.671312 +2024,8,24,1,Queensland,153.092188,-27.527104 +2023,12,10,1,Queensland,153.092287,-27.528122 +2024,9,17,1,Queensland,153.091604,-27.527294 +2020,5,8,1,Queensland,153.374043,-27.912073 +2021,10,26,1,Victoria,146.164458,-38.67128 +2024,9,15,1,Victoria,141.586867,-38.343079 +2022,11,13,1,Queensland,153.07315,-27.542345 +2024,9,21,1,Queensland,153.091383,-27.52725 +2023,11,14,1,Queensland,153.09209,-27.527395 +2023,10,21,1,Queensland,153.093578,-27.524224 +2021,4,12,1,South Australia,138.638111,-34.970473 +2021,11,16,1,Queensland,153.069986,-27.510526 +2020,10,17,1,New South Wales,153.376698,-28.253633 +2022,11,14,1,Queensland,151.54393,-27.671145 +2024,9,20,1,Queensland,151.993408,-27.123119 +2023,1,23,1,Queensland,152.401208,-27.457454 +2024,6,22,1,Queensland,153.090786,-27.526839 +2024,5,7,1,Victoria,143.890848,-37.579119 +2023,5,27,1,Queensland,153.060785,-27.547807 +2020,4,9,1,Queensland,151.832395,-26.517364 +2020,12,25,1,New South Wales,153.400783,-28.256431 +2024,4,15,1,South Australia,138.721965,-34.891989 +2024,1,4,1,Queensland,151.958055,-27.444343 +2021,7,4,1,New South Wales,153.377654,-28.254536 +2023,9,9,1,New South Wales,151.242797,-33.127136 +2024,9,13,1,South Australia,138.640272,-35.111344 +2023,7,14,1,Queensland,153.103279,-27.52844 +2023,10,28,1,Queensland,152.370406,-28.340142 +2021,1,7,1,New South Wales,153.392745,-28.268875 +2020,10,15,1,New South Wales,153.375648,-28.252347 +2020,11,7,1,Queensland,153.058788,-27.545855 +2023,3,28,1,Queensland,153.103401,-27.529604 +2023,8,2,1,Victoria,141.655842,-38.263023 +2021,7,6,1,South Australia,138.726936,-34.888181 +2023,10,22,1,Queensland,153.189646,-27.701124 +2021,3,4,1,Queensland,152.972808,-27.271878 +2021,9,28,1,Queensland,151.77137,-27.383112 +2023,7,21,1,Queensland,151.693588,-27.246453 +2021,5,3,1,Queensland,153.4415,-27.401313 +2020,10,12,1,Queensland,153.058603,-27.544777 +2024,1,30,1,South Australia,138.734088,-34.888717 +2023,9,19,1,Queensland,153.376981,-27.918878 +2021,10,16,1,Queensland,152.779755,-27.789287 +2023,9,29,1,Queensland,153.443319,-27.394881 +2021,2,22,1,Queensland,153.051261,-27.549231 +2024,3,15,1,Queensland,153.04118,-27.533646 +2022,11,10,1,Queensland,153.100925,-27.53015 +2022,1,21,1,New South Wales,153.393212,-28.275088 +2020,10,25,1,Victoria,145.242358,-38.160578 +2021,11,11,1,Victoria,143.669219,-38.75595 +2021,2,13,1,Queensland,151.986718,-26.266616 +2021,4,21,1,Queensland,153.102292,-27.734853 +2021,9,28,1,Queensland,153.032532,-27.901122 +2020,9,26,1,South Australia,138.736502,-34.805774 +2024,9,18,1,South Australia,138.637797,-35.005317 +2024,7,31,1,New South Wales,151.095092,-33.076726 +2021,7,13,1,Queensland,153.08597,-27.510047 +2024,8,30,1,New South Wales,153.376949,-28.254179 +2023,4,19,1,Queensland,153.092403,-27.525734 +2024,10,9,1,Queensland,153.19019,-27.701741 +2022,4,30,1,Queensland,151.698127,-26.179022 +2024,3,28,1,Victoria,144.302967,-37.82793 +2024,7,7,1,Queensland,153.066816,-27.250419 +2023,7,24,1,Queensland,153.112132,-27.52945 +2024,3,14,1,Queensland,152.127187,-26.191299 +2023,10,7,1,Victoria,143.861211,-38.666296 +2021,5,5,1,Victoria,143.860696,-38.670066 +2024,7,27,1,Queensland,153.092232,-27.528262 +2023,9,6,1,Queensland,153.111318,-27.528976 +2023,8,16,1,Queensland,152.742463,-27.779992 +2021,10,18,1,Victoria,146.163711,-38.671045 +2023,10,14,1,South Australia,138.826933,-34.692015 +2023,3,4,1,Queensland,153.090819,-27.526926 +2021,10,17,1,Queensland,151.95386,-27.47174 +2024,8,17,1,Queensland,153.092356,-27.525063 +2023,6,22,1,Victoria,145.046652,-38.262879 +2023,8,11,1,South Australia,138.730297,-34.909664 +2024,3,30,1,Victoria,146.118867,-38.691774 +2024,10,16,1,Queensland,151.772555,-26.200712 +2020,10,31,1,South Australia,138.705969,-34.980111 +2021,9,14,1,Queensland,153.374621,-27.913179 +2023,12,9,1,Queensland,152.565583,-27.448211 +2023,7,11,1,Queensland,151.997179,-26.223048 +2023,5,20,1,Queensland,153.092839,-27.528583 +2024,5,6,1,Queensland,153.092298,-27.527374 +2024,9,25,1,Queensland,153.072507,-27.549233 +2024,11,20,1,South Australia,138.659805,-35.007572 +2023,11,25,1,Victoria,146.404806,-38.348645 +2024,1,2,1,Queensland,152.902212,-27.622245 +2020,3,16,1,Victoria,145.304055,-38.384272 +2022,11,1,1,New South Wales,152.885227,-30.461363 +2024,9,28,1,Queensland,153.093116,-27.526223 +2024,9,29,1,Queensland,153.09228,-27.525681 +2022,3,19,1,South Australia,138.608033,-34.90855 +2023,7,2,1,Queensland,153.09277,-27.525351 +2022,11,27,1,New South Wales,153.45431,-28.379526 +2023,2,19,1,Queensland,153.036925,-27.549937 +2022,12,1,1,New South Wales,149.338035,-31.578908 +2023,3,3,1,Queensland,153.133147,-27.564122 +2023,8,19,1,Queensland,152.163777,-26.971645 +2023,5,20,1,Victoria,143.907541,-37.744589 +2024,9,15,1,Queensland,153.092119,-27.525371 +2023,3,11,1,Queensland,153.104957,-27.5296 +2024,8,19,1,Queensland,153.046194,-27.276863 +2023,10,23,1,Queensland,152.967466,-27.270574 +2024,2,1,1,Queensland,153.188172,-27.912167 +2023,10,29,1,Queensland,153.000489,-27.284182 +2024,7,11,1,Queensland,153.057261,-27.552871 +2023,4,23,1,Queensland,153.086836,-27.510717 +2021,1,8,1,Queensland,153.054135,-27.543165 +2022,3,27,1,Victoria,145.330017,-35.874997 +2021,9,21,1,Victoria,145.272201,-38.129532 +2022,11,6,1,Queensland,151.899204,-27.425513 +2024,7,20,1,Queensland,153.091578,-27.52656 +2022,12,30,1,Queensland,152.04767,-27.26303 +2024,7,8,1,South Australia,138.728163,-34.889692 +2024,10,19,1,Queensland,153.09199,-27.524037 +2024,10,30,1,South Australia,138.625801,-34.893457 +2022,11,13,1,Queensland,152.885558,-27.304578 +2024,2,15,1,South Australia,135.685924,-34.83217 +2023,10,8,1,South Australia,137.503785,-35.600665 +2024,4,20,1,Queensland,152.041191,-27.564238 +2023,4,8,1,Queensland,153.442017,-27.395194 +2022,3,14,1,Queensland,153.059451,-27.533554 +2024,6,28,1,Victoria,143.896317,-37.644657 +2024,4,29,1,Queensland,153.103812,-27.530071 +2024,4,1,1,Victoria,143.860718,-38.667877 +2022,9,27,1,Queensland,153.400302,-27.498617 +2023,3,28,1,Queensland,153.053175,-27.550671 +2023,12,5,1,Queensland,152.074708,-27.3588 +2024,3,30,1,Queensland,153.092473,-27.527642 +2021,9,26,1,Queensland,153.082928,-27.506073 +2022,10,22,1,New South Wales,151.117265,-33.113283 +2023,7,16,1,Queensland,153.091991,-27.527194 +2024,3,25,1,New South Wales,150.851988,-34.083368 +2022,12,31,1,Queensland,153.072949,-27.54604 +2023,6,17,1,Queensland,153.004397,-27.298786 +2022,1,12,1,South Australia,138.656885,-34.865267 +2024,8,26,1,Queensland,153.356451,-27.914045 +2023,1,10,1,South Australia,138.692908,-34.959896 +2023,11,4,1,Queensland,153.09036,-27.525633 +2024,10,30,1,Victoria,141.775228,-38.203268 +2024,4,16,1,South Australia,138.729274,-34.889832 +2020,12,26,1,New South Wales,153.37759,-28.25418 +2024,11,23,1,Queensland,152.640435,-27.45319 +2023,10,4,1,Queensland,153.103251,-27.529631 +2023,6,17,1,Victoria,143.852012,-38.671905 +2020,8,16,1,South Australia,138.498949,-35.181457 +2023,7,16,1,Queensland,153.092396,-27.527739 +2021,9,2,1,Queensland,153.001086,-27.311396 +2024,7,22,1,New South Wales,153.201341,-28.823967 +2024,7,16,1,Queensland,153.403503,-27.493458 +2021,12,8,1,Queensland,153.084428,-27.50952 +2024,4,25,1,Queensland,153.091503,-27.527263 +2023,9,9,1,Queensland,153.092627,-27.528228 +2023,10,3,1,Queensland,153.111587,-27.528158 +2023,5,20,1,Queensland,152.478001,-27.743717 +2022,6,20,1,Victoria,143.860706,-38.667967 +2022,3,22,1,Queensland,153.377553,-27.917903 +2024,1,15,1,Queensland,153.090347,-27.522974 +2024,1,2,1,Queensland,153.090607,-27.526077 +2023,12,1,1,Queensland,151.770727,-26.213098 +2022,3,13,1,Queensland,153.084334,-27.517049 +2023,3,9,1,Queensland,153.090757,-27.526307 +2023,1,20,1,Victoria,145.538153,-38.4421 +2020,9,16,1,Victoria,143.88442,-37.628013 +2023,4,15,1,Queensland,153.111333,-27.527207 +2020,7,13,1,New South Wales,153.377495,-28.254102 +2023,11,27,1,Queensland,153.10778,-27.527068 +2022,5,14,1,Victoria,143.583276,-38.480373 +2024,9,19,1,South Australia,138.659383,-34.86458 +2022,11,13,1,Queensland,152.108139,-27.564028 +2023,8,3,1,Queensland,153.057608,-27.551797 +2023,4,24,1,Queensland,153.091123,-27.527453 +2021,9,21,1,New South Wales,149.381783,-36.170699 +2024,2,26,1,Queensland,153.106541,-27.529142 +2024,9,15,1,Victoria,145.261615,-38.484077 +2023,5,6,1,Queensland,153.09105,-27.527454 +2024,1,21,1,Queensland,153.091512,-27.527269 +2024,8,24,1,Queensland,152.567319,-27.3785 +2021,8,16,1,Queensland,152.247078,-27.49628 +2020,6,21,1,Victoria,143.893461,-38.639681 +2021,11,29,1,Queensland,151.570613,-27.801664 +2021,10,23,1,Victoria,146.164122,-38.67157 +2022,12,27,1,Queensland,153.438676,-27.401595 +2024,8,23,1,Queensland,153.166562,-27.481427 +2024,10,27,1,Victoria,145.276581,-38.365852 +2023,5,21,1,Queensland,151.422395,-26.131796 +2023,11,30,1,Queensland,153.10333,-27.528545 +2021,11,19,1,Victoria,143.996638,-37.689805 +2022,9,28,1,New South Wales,153.376963,-28.254173 +2020,11,20,1,Queensland,153.058089,-27.551797 +2022,11,11,1,Queensland,152.635726,-28.02702 +2022,10,8,1,Queensland,152.993775,-27.823813 +2023,12,24,1,Victoria,145.407406,-36.876263 +2020,11,16,1,New South Wales,153.377,-28.254245 +2024,5,1,1,South Australia,138.722552,-34.889714 +2023,3,4,1,Victoria,142.3625,-38.318323 +2023,12,12,1,Queensland,153.105239,-27.531667 +2023,12,5,1,Queensland,153.103132,-27.526544 +2021,5,24,1,Queensland,152.363342,-27.496295 +2023,6,17,1,Queensland,151.887344,-27.60292 +2023,5,23,1,Queensland,153.090818,-27.525871 +2023,12,26,1,Queensland,152.074447,-27.358378 +2023,11,25,1,Queensland,151.697512,-27.249147 +2023,10,22,1,Queensland,152.99968,-27.283994 +2020,2,21,1,Queensland,153.068559,-27.54531 +2023,12,3,1,New South Wales,151.335144,-29.779553 +2021,12,31,1,Victoria,147.771895,-37.909336 +2020,8,25,1,Queensland,153.057884,-27.551807 +2022,2,8,1,Queensland,152.608243,-27.418914 +2024,9,18,1,Queensland,153.054557,-27.551924 +2024,7,13,1,Queensland,152.86672,-26.14974 +2023,11,20,1,Victoria,145.309403,-38.384845 +2023,3,16,1,Queensland,152.00429,-27.414602 +2023,9,16,1,South Australia,138.677978,-34.868583 +2024,7,1,1,Queensland,146.868423,-19.126711 +2022,8,7,1,Queensland,151.977635,-27.608811 +2023,7,16,1,New South Wales,153.285368,-29.027169 +2024,10,15,1,Queensland,152.95811,-27.309878 +2024,11,2,1,New South Wales,146.534012,-34.745208 +2023,4,8,1,Queensland,153.092576,-27.52772 +2022,10,9,1,Queensland,152.860105,-28.220302 +2023,11,25,1,South Australia,138.736167,-34.830996 +2020,9,16,1,South Australia,138.644156,-34.998679 +2024,10,16,1,Queensland,153.104025,-27.528038 +2022,12,5,1,Victoria,142.367085,-38.315837 +2024,8,24,1,Victoria,143.51568,-38.836892 +2023,8,21,1,Queensland,153.092127,-27.525028 +2021,9,4,1,New South Wales,153.40166,-28.256211 +2023,4,9,1,Victoria,141.594345,-38.354401 +2024,10,21,1,Victoria,146.38836,-38.356773 +2023,5,6,1,Queensland,152.24945,-27.496775 +2024,4,13,1,Queensland,152.042384,-28.271215 +2023,4,6,1,South Australia,138.477014,-35.127336 +2023,11,29,1,Queensland,151.772632,-26.199667 +2023,1,4,1,Victoria,145.273248,-38.136717 +2024,8,17,1,Queensland,153.092138,-27.52727 +2024,5,31,1,Queensland,153.333908,-27.98117 +2024,11,15,1,Victoria,144.923094,-38.391861 +2023,11,25,1,Victoria,145.715395,-38.63778 +2023,1,11,1,South Australia,138.613895,-34.909381 +2020,11,25,1,South Australia,138.681825,-35.084308 +2023,9,15,1,Queensland,153.057708,-27.551116 +2023,3,18,1,Queensland,153.110747,-27.529849 +2022,12,21,1,Queensland,153.068284,-27.540086 +2021,12,14,1,Victoria,141.689033,-38.133002 +2021,3,28,1,Queensland,153.044839,-27.545893 +2020,10,2,1,Queensland,153.060022,-27.550042 +2023,1,23,1,Queensland,152.865839,-28.211491 +2022,11,11,1,Queensland,151.543428,-27.671512 +2020,9,16,1,South Australia,138.637886,-35.005973 +2021,4,17,1,Victoria,146.164245,-38.671337 +2021,6,21,1,Queensland,151.862967,-26.481111 +2021,5,13,1,South Australia,138.59845,-35.186607 +2021,10,19,1,South Australia,138.709268,-34.904232 +2024,10,19,1,Queensland,153.10359,-27.529448 +2024,7,13,1,Queensland,151.381133,-27.918851 +2022,3,28,1,New South Wales,146.597197,-34.771075 +2024,3,15,1,New South Wales,151.230842,-33.104267 +2022,12,24,1,Queensland,153.073665,-27.54582 +2024,11,16,1,Queensland,152.99265,-27.82261 +2021,3,30,1,Victoria,146.164259,-38.671329 +2020,1,31,1,Queensland,153.059511,-27.544995 +2024,1,7,1,Victoria,143.554613,-38.755854 +2024,5,1,1,Queensland,153.103313,-27.530701 +2023,8,24,1,Queensland,152.003147,-27.41407 +2020,8,5,1,New South Wales,153.377483,-28.253982 +2020,5,17,1,South Australia,138.657418,-35.006038 +2024,7,8,1,South Australia,138.731234,-34.889557 +2022,5,26,1,South Australia,138.656525,-34.865288 +2023,3,30,1,Queensland,152.732016,-27.780169 +2022,10,26,1,Victoria,141.748917,-38.241725 +2023,2,11,1,Victoria,142.358539,-38.318333 +2024,9,1,1,Queensland,153.086666,-27.510391 +2022,11,12,1,Queensland,152.16237,-27.49504 +2021,8,13,1,Queensland,153.058604,-27.5514 +2021,8,9,1,Queensland,153.084568,-27.51646 +2024,2,18,1,Queensland,153.092614,-27.525441 +2023,9,1,1,Victoria,144.278041,-38.095692 +2023,11,11,1,Queensland,153.090532,-27.525844 +2024,4,25,1,Queensland,152.591692,-26.894997 +2020,12,22,1,Victoria,144.023486,-38.399393 +2023,8,22,1,Queensland,153.19922,-27.613128 +2021,12,24,1,New South Wales,153.402165,-28.258892 +2024,9,24,1,New South Wales,146.590396,-34.75625 +2020,1,19,1,Queensland,152.055131,-27.643611 +2021,9,1,1,New South Wales,153.400553,-28.257425 +2020,1,9,1,South Australia,138.61365,-34.909255 +2023,11,4,1,Queensland,148.70233,-21.71062 +2023,11,24,1,Queensland,151.772632,-26.199667 +2023,4,23,1,New South Wales,149.27852,-36.173022 +2024,4,8,1,Queensland,153.103335,-27.528416 +2024,8,18,1,Queensland,153.092382,-27.527379 +2022,11,6,1,Victoria,141.920811,-38.056779 +2022,12,3,1,Victoria,144.266959,-37.388925 +2020,3,21,1,Queensland,153.072389,-27.545709 +2023,12,16,1,Queensland,153.111335,-27.527892 +2023,12,30,1,Queensland,153.090772,-27.527597 +2020,4,4,1,Queensland,151.895033,-27.599019 +2022,1,3,1,New South Wales,153.376941,-28.25404 +2024,1,15,1,Victoria,144.536477,-37.501456 +2021,7,15,1,Queensland,153.05992,-27.551036 +2024,5,22,1,Queensland,153.105269,-27.529965 +2023,10,24,1,Queensland,153.15429,-27.759826 +2023,1,18,1,Queensland,153.073258,-27.54713 +2024,5,3,1,Victoria,145.280742,-38.12717 +2024,8,4,1,South Australia,138.638881,-35.008742 +2021,5,20,1,New South Wales,153.402604,-28.260569 +2021,3,13,1,Queensland,153.057459,-27.553112 +2023,3,23,1,Queensland,153.069793,-27.510435 +2024,11,14,1,South Australia,138.7154,-34.892261 +2020,9,9,1,Queensland,152.769342,-26.780061 +2023,3,14,1,Victoria,143.481858,-38.799171 +2020,8,20,1,Queensland,153.049316,-27.527793 +2023,11,25,1,Victoria,146.386869,-38.354304 +2021,4,22,1,Victoria,144.973201,-38.348369 +2022,9,13,1,Queensland,152.903586,-28.174211 +2021,6,19,1,Queensland,153.059491,-27.548686 +2023,7,1,1,Queensland,152.836975,-28.093911 +2022,9,24,1,Victoria,143.659813,-38.748909 +2024,4,12,1,Victoria,145.304459,-38.384315 +2024,3,29,1,Queensland,153.103522,-27.528582 +2023,2,10,1,Queensland,153.073257,-27.545605 +2023,3,22,1,Queensland,153.092369,-27.525644 +2021,8,25,1,Queensland,152.086517,-27.697067 +2023,8,3,1,Queensland,152.44632,-27.53897 +2024,5,24,1,South Australia,138.721907,-34.889953 +2021,6,2,1,Queensland,153.05591,-27.552018 +2023,11,21,1,Queensland,151.916005,-26.252326 +2024,1,14,1,Victoria,143.927994,-37.654956 +2020,3,1,1,Queensland,153.07061,-27.510887 +2021,11,3,1,Victoria,144.277343,-38.095136 +2023,1,25,1,Queensland,153.186771,-27.70082 +2022,12,7,1,Victoria,145.534105,-36.978436 +2020,11,3,1,Queensland,153.050383,-27.527893 +2023,11,17,1,Queensland,151.935059,-27.626428 +2022,9,4,1,Queensland,152.898653,-27.652706 +2022,11,5,1,New South Wales,153.400489,-28.258772 +2024,8,21,1,Queensland,152.610578,-28.066173 +2023,1,31,1,Queensland,153.109517,-27.528851 +2023,2,7,1,Victoria,145.998635,-38.826482 +2023,3,4,1,Queensland,153.113613,-27.528528 +2022,9,27,1,Queensland,153.073403,-27.545733 +2024,6,4,1,Queensland,153.102591,-27.529413 +2024,2,15,1,South Australia,135.685924,-34.83217 +2024,6,6,1,South Australia,138.698495,-34.935209 +2023,11,24,1,Queensland,151.288941,-27.212761 +2022,1,8,1,Victoria,141.743144,-37.789997 +2020,5,29,1,Queensland,153.062488,-27.550993 +2024,7,30,1,Queensland,152.359383,-27.515211 +2024,9,26,1,Queensland,152.613512,-27.339313 +2020,9,21,1,Queensland,153.071867,-27.545282 +2020,12,21,1,Victoria,143.910633,-37.651801 +2020,12,28,1,Queensland,152.9984,-27.436187 +2022,10,25,1,Victoria,145.571685,-37.914698 +2024,7,4,1,South Australia,138.719306,-34.891683 +2023,6,24,1,Queensland,153.103308,-27.528452 +2023,12,31,1,Victoria,146.163803,-38.671033 +2020,2,28,1,Queensland,153.059071,-27.546933 +2023,7,29,1,Queensland,153.114079,-27.527681 +2024,7,14,1,Victoria,142.977156,-38.482658 +2024,11,17,1,Queensland,151.933608,-27.329708 +2024,2,9,1,New South Wales,150.573345,-29.800979 +2022,12,30,1,New South Wales,146.594126,-34.776407 +2022,12,8,1,Queensland,153.056084,-27.552269 +2020,2,14,1,Queensland,153.058166,-27.550701 +2023,11,29,1,South Australia,138.714831,-34.892246 +2024,6,15,1,Queensland,153.108951,-27.529273 +2024,7,12,1,New South Wales,152.900182,-31.434898 +2021,8,7,1,Queensland,153.05797,-27.557155 +2023,2,7,1,Victoria,145.505387,-37.038144 +2022,2,17,1,Victoria,142.290961,-37.874658 +2024,9,21,1,Queensland,153.092164,-27.528047 +2022,2,11,1,Victoria,143.922084,-38.478453 +2024,8,13,1,South Australia,138.734437,-34.888147 +2021,10,3,1,Queensland,152.110665,-27.566379 +2023,10,23,1,Queensland,151.825754,-26.450289 +2022,8,19,1,South Australia,138.736198,-34.831004 +2023,10,1,1,Victoria,144.14621,-37.932771 +2021,2,12,1,Queensland,153.057283,-27.551196 +2024,8,30,1,Queensland,151.752819,-26.158424 +2023,11,24,1,Victoria,145.553855,-36.985829 +2021,10,28,1,Queensland,152.613592,-27.339263 +2024,11,5,1,Queensland,153.399672,-27.497622 +2024,3,29,1,Queensland,153.092291,-27.526916 +2022,12,17,1,Queensland,153.377058,-27.919485 +2024,7,27,1,Queensland,153.403089,-27.493703 +2021,10,25,1,South Australia,138.623375,-34.994375 +2022,12,9,1,Queensland,153.072601,-27.544877 +2024,4,20,1,South Australia,138.734429,-34.887641 +2022,11,6,1,Victoria,144.278225,-37.839487 +2022,8,10,1,Queensland,153.377058,-27.919485 +2022,2,9,1,South Australia,138.713649,-34.891685 +2021,9,15,1,Queensland,153.370283,-27.907392 +2024,3,30,1,Queensland,153.10415,-27.530486 +2021,8,3,1,New South Wales,153.377269,-28.254263 +2020,9,27,1,Victoria,147.754464,-37.90878 +2023,11,15,1,Queensland,151.661272,-27.764915 +2023,12,8,1,Queensland,153.085055,-27.51055 +2022,12,27,1,Queensland,151.888844,-27.599864 +2021,3,29,1,Queensland,153.061288,-27.54796 +2023,9,23,1,Queensland,152.004853,-27.411592 +2021,10,26,1,Queensland,152.590326,-27.469541 +2020,7,30,1,Queensland,153.058778,-27.547468 +2023,2,24,1,New South Wales,153.400952,-28.258277 +2022,12,5,1,Queensland,152.063034,-27.348399 +2022,12,15,1,Queensland,152.003227,-27.41355 +2023,9,3,1,South Australia,138.70569,-34.903218 +2022,6,4,1,Queensland,153.072447,-27.226342 +2024,7,19,1,New South Wales,151.095428,-33.076794 +2023,12,8,1,Queensland,153.092277,-27.527776 +2024,9,6,1,Queensland,152.912583,-26.720263 +2023,10,11,1,Queensland,153.107238,-27.527445 +2023,8,24,1,Queensland,153.076264,-27.248912 +2023,12,26,1,Queensland,152.105514,-27.566545 +2023,4,28,1,Victoria,145.400552,-36.846381 +2023,1,2,1,Victoria,143.57785,-38.820278 +2023,1,31,1,Queensland,153.090728,-27.526999 +2024,1,19,1,New South Wales,153.124542,-30.295397 +2022,11,2,1,South Australia,138.579325,-35.062473 +2024,4,17,1,Queensland,152.84614,-27.339616 +2024,7,16,1,New South Wales,152.403883,-31.928103 +2023,2,27,1,Victoria,145.04641,-38.266658 +2021,9,4,1,Queensland,152.247078,-27.49628 +2022,11,25,1,Queensland,153.07382,-27.545553 +2022,3,20,1,Victoria,144.277163,-37.753938 +2024,9,3,1,New South Wales,151.095428,-33.076794 +2022,1,9,1,Queensland,153.07975,-27.507169 +2021,11,22,1,Victoria,145.295928,-38.383136 +2023,10,4,1,Queensland,153.000838,-27.284477 +2024,7,15,1,Queensland,152.802497,-28.209013 +2024,11,21,1,Victoria,141.825263,-38.060662 +2020,8,25,1,Queensland,153.044424,-27.548554 +2023,12,29,1,Queensland,151.801159,-26.348586 +2021,11,14,1,Victoria,143.878838,-37.54472 +2024,4,8,1,South Australia,138.721896,-34.889949 +2023,2,7,1,South Australia,138.587152,-35.073537 +2020,1,21,1,New South Wales,146.562042,-34.762138 +2024,8,17,1,Queensland,153.318953,-27.897569 +2024,10,21,1,New South Wales,153.516933,-28.567211 +2022,11,17,1,New South Wales,151.095122,-33.076589 +2023,4,30,1,Queensland,152.567242,-27.375091 +2023,10,28,1,South Australia,138.71373,-34.963642 +2023,12,18,1,Queensland,153.103393,-27.530098 +2023,12,30,1,South Australia,138.650555,-35.043168 +2020,5,2,1,Queensland,153.056945,-27.546617 +2021,8,7,1,Queensland,153.054297,-27.55593 +2024,10,9,1,Victoria,145.508513,-37.066033 +2022,1,4,1,Queensland,153.070541,-27.509636 +2023,8,5,1,Victoria,149.759262,-37.561947 +2024,9,24,1,Queensland,152.723205,-27.712038 +2020,8,13,1,Queensland,153.0576,-27.551728 +2023,10,20,1,Queensland,153.108328,-27.527169 +2024,8,4,1,Queensland,153.091063,-27.526412 +2024,11,22,1,Queensland,153.441333,-27.392556 +2022,4,29,1,South Australia,138.712655,-34.891283 +2024,4,27,1,South Australia,138.64926,-34.877993 +2020,12,22,1,Queensland,146.868268,-19.12693 +2023,7,1,1,Queensland,151.792829,-26.135908 +2023,10,22,1,New South Wales,153.400706,-28.257909 +2024,7,13,1,Queensland,152.907157,-27.655288 +2023,6,17,1,Queensland,148.68808,-21.687586 +2023,9,25,1,Queensland,152.75011,-27.887434 +2024,7,9,1,Victoria,143.651855,-38.745084 +2023,9,23,1,Queensland,153.103431,-27.53017 +2021,5,2,1,South Australia,138.820453,-34.780183 +2023,4,13,1,Queensland,153.091255,-27.525388 +2024,9,4,1,Queensland,153.105469,-27.531459 +2023,7,22,1,Victoria,145.296638,-38.383297 +2023,7,10,1,Victoria,145.546707,-36.930479 +2024,8,2,1,Queensland,153.073274,-27.545867 +2021,10,22,1,Victoria,145.166046,-38.174706 +2023,12,18,1,Queensland,151.525365,-26.359538 +2023,4,25,1,Queensland,151.515853,-27.737295 +2022,11,27,1,Queensland,151.578762,-27.777764 +2023,10,28,1,Queensland,153.108285,-27.52718 +2023,11,16,1,Queensland,151.569161,-27.800069 +2020,8,17,1,Queensland,152.679909,-28.003416 +2020,1,5,1,Victoria,141.588383,-38.363242 +2021,8,25,1,Queensland,152.08625,-27.696933 +2023,3,13,1,Queensland,153.091859,-27.525849 +2020,9,5,1,Victoria,146.852052,-36.138554 +2024,6,30,1,Queensland,153.093105,-27.524269 +2023,10,2,1,New South Wales,150.598859,-29.868808 +2024,2,2,1,Victoria,143.861924,-38.666962 +2021,5,26,1,Queensland,153.061207,-27.534309 +2021,4,11,1,Victoria,145.499192,-35.811113 +2023,10,27,1,New South Wales,151.095116,-33.07672 +2023,10,14,1,South Australia,135.80606,-34.78565 +2023,7,21,1,Queensland,153.102837,-27.527188 +2024,1,5,1,South Australia,138.714522,-35.202908 +2023,8,21,1,Queensland,153.111217,-27.527164 +2022,7,23,1,New South Wales,153.036399,-28.701735 +2024,3,5,1,Victoria,143.861269,-38.6707 +2021,4,5,1,South Australia,138.670929,-35.015771 +2024,11,12,1,Victoria,145.482562,-36.858283 +2023,12,28,1,Victoria,145.727797,-38.62822 +2024,1,4,1,Queensland,153.091478,-27.527218 +2022,6,26,1,Queensland,153.083114,-27.514766 +2022,1,26,1,New South Wales,151.440355,-33.007714 +2024,1,5,1,Queensland,153.111626,-27.524481 +2021,10,20,1,Queensland,153.06883,-27.525809 +2023,11,26,1,Queensland,153.092628,-27.528311 +2020,2,23,1,South Australia,138.699505,-35.089156 +2024,7,25,1,Queensland,152.992737,-27.824053 +2020,12,3,1,Queensland,153.055563,-27.536728 +2021,10,31,1,Victoria,144.136978,-37.324812 +2024,10,29,1,Queensland,152.053237,-26.332429 +2023,2,16,1,New South Wales,150.060596,-34.956178 +2020,1,14,1,Victoria,148.236635,-37.146232 +2020,4,9,1,Queensland,152.859615,-27.542516 +2023,2,21,1,Victoria,145.729482,-38.63447 +2024,7,28,1,Queensland,151.736471,-26.160237 +2020,9,30,1,New South Wales,152.890873,-30.245816 +2024,1,9,1,Queensland,153.048118,-27.514943 +2022,3,3,1,Queensland,153.082765,-27.5138 +2021,9,5,1,South Australia,138.50717,-35.17822 +2022,9,15,1,Queensland,152.18045,-27.355775 +2021,5,25,1,Queensland,152.398237,-27.458511 +2023,5,2,1,Queensland,153.091326,-27.527087 +2020,10,6,1,Queensland,153.057954,-27.550883 +2024,11,4,1,Queensland,153.455847,-28.097033 +2023,6,24,1,Queensland,153.109512,-27.529404 +2020,3,9,1,Queensland,151.983252,-26.739188 +2024,11,5,1,Queensland,153.399658,-27.497808 +2024,1,5,1,Queensland,153.112283,-27.528992 +2024,5,3,1,South Australia,138.73487,-34.888997 +2023,9,24,1,Victoria,145.463805,-37.029786 +2024,6,26,1,Victoria,149.688339,-37.529677 +2023,7,10,1,New South Wales,146.532745,-34.744858 +2021,9,26,1,Queensland,153.11975,-27.509696 +2024,11,10,1,Queensland,153.092533,-27.527463 +2023,10,9,1,Victoria,145.210647,-38.300956 +2020,9,24,1,New South Wales,153.377611,-28.253838 +2023,11,18,1,Queensland,153.09154,-27.527288 +2022,7,12,1,Victoria,145.125119,-37.748764 +2022,9,14,1,New South Wales,153.377043,-28.254123 +2024,4,27,1,Queensland,153.103256,-27.53029 +2023,10,24,1,Queensland,153.1179,-27.515063 +2021,10,17,1,Victoria,143.88573,-37.585571 +2024,10,29,1,Queensland,152.906579,-28.173647 +2023,4,4,1,Queensland,152.891922,-27.635437 +2023,2,21,1,Queensland,152.18373,-27.53098 +2024,8,17,1,Victoria,144.438019,-37.954511 +2023,7,13,1,Queensland,152.859716,-27.546559 +2023,2,2,1,New South Wales,152.873412,-30.406405 +2020,11,2,1,South Australia,138.712517,-34.959661 +2024,5,26,1,South Australia,138.704221,-34.929505 +2021,11,8,1,Queensland,153.0764,-27.81727 +2024,7,13,1,Queensland,153.090493,-27.527056 +2024,11,10,1,Queensland,153.090379,-27.526836 +2024,6,1,1,Queensland,153.102773,-27.529559 +2021,8,15,1,Victoria,142.069867,-38.237289 +2023,12,3,1,Queensland,152.046276,-27.257225 +2023,12,22,1,Queensland,153.111755,-27.529528 +2023,12,16,1,New South Wales,152.444392,-31.941714 +2024,5,23,1,Queensland,153.071975,-27.545251 +2024,5,3,1,South Australia,138.572237,-35.036309 +2024,10,14,1,Queensland,152.365539,-27.455356 +2023,11,15,1,Queensland,153.103446,-27.530637 +2024,5,10,1,Queensland,153.037339,-26.37518 +2023,7,23,1,Queensland,153.091283,-27.52727 +2021,8,14,1,Queensland,153.067496,-27.508121 +2022,2,14,1,Victoria,143.481831,-38.800562 +2024,6,14,1,Queensland,152.663434,-26.394261 +2024,3,1,1,New South Wales,146.577025,-34.76672 +2024,9,29,1,Queensland,152.999917,-27.284485 +2023,12,7,1,South Australia,138.731099,-34.886408 +2023,9,30,1,Victoria,145.730186,-38.631436 +2024,7,18,1,South Australia,138.715861,-34.892174 +2024,6,21,1,Queensland,153.072233,-27.543891 +2022,7,23,1,Queensland,151.258796,-28.10341 +2022,11,6,1,South Australia,138.626463,-34.894075 +2024,8,18,1,Queensland,153.090658,-27.526714 +2020,12,20,1,Victoria,146.164153,-38.671622 +2021,9,8,1,Queensland,153.072773,-27.513322 +2024,2,13,1,South Australia,138.725353,-34.893273 +2024,7,18,1,Queensland,153.090899,-27.527483 +2024,1,18,1,Queensland,152.074535,-27.358516 +2024,4,21,1,Victoria,143.860637,-38.668532 +2020,7,17,1,Queensland,153.055109,-27.54156 +2021,9,11,1,South Australia,138.657663,-34.947931 +2024,1,15,1,Queensland,151.749888,-26.155079 +2024,2,14,1,South Australia,138.74077,-34.827781 +2024,4,5,1,Queensland,153.074601,-27.546684 +2022,9,14,1,New South Wales,153.377041,-28.254118 +2020,8,3,1,Queensland,153.058279,-27.546418 +2023,11,15,1,Victoria,147.728303,-37.922542 +2024,9,22,1,Queensland,153.092322,-27.527823 +2022,2,9,1,Victoria,145.271896,-38.133761 +2023,2,22,1,Queensland,153.092863,-27.526028 +2024,10,27,1,South Australia,138.77809,-34.88239 +2022,9,28,1,Queensland,153.072322,-27.544087 +2023,11,14,1,Queensland,153.091688,-27.527247 +2023,9,8,1,Queensland,153.093151,-27.525128 +2023,12,12,1,South Australia,138.504983,-35.120364 +2024,11,14,1,Queensland,153.162553,-27.600211 +2023,8,2,1,Queensland,153.107233,-27.527346 +2023,1,7,1,New South Wales,152.451626,-32.2366 +2020,7,24,1,South Australia,138.697321,-34.958131 +2024,7,29,1,Victoria,143.900759,-37.639946 +2021,12,1,1,Queensland,153.001206,-27.165466 +2022,11,13,1,Queensland,151.503861,-27.672299 +2024,8,23,1,Victoria,147.729909,-37.919575 +2023,10,19,1,Queensland,153.441033,-27.393242 +2024,11,10,1,Queensland,153.090745,-27.526667 +2020,1,30,1,Queensland,151.549072,-27.015142 +2021,9,1,1,Queensland,152.08711,-27.69549 +2023,7,2,1,Queensland,153.086008,-27.510169 +2022,10,4,1,Queensland,153.057878,-27.550838 +2024,11,4,1,Queensland,153.081601,-27.510122 +2024,5,19,1,Queensland,153.057714,-27.552978 +2024,10,3,1,New South Wales,151.499608,-32.94889 +2023,11,26,1,Queensland,153.093101,-27.528045 +2020,5,18,1,South Australia,138.712087,-34.905109 +2022,9,15,1,Queensland,153.378796,-27.917807 +2024,1,21,1,Queensland,153.092764,-27.527059 +2024,3,20,1,Queensland,153.10287,-27.527407 +2024,3,1,1,Queensland,153.104449,-27.529738 +2024,10,4,1,Victoria,147.725518,-37.922325 +2024,10,27,1,South Australia,138.77762,-34.882647 +2023,7,16,1,New South Wales,152.992968,-30.559986 +2021,7,30,1,Queensland,152.963013,-27.49304 +2020,10,15,1,New South Wales,153.376872,-28.254366 +2024,10,22,1,Victoria,143.884806,-37.588261 +2024,1,16,1,Queensland,153.092296,-27.527778 +2023,11,25,1,Queensland,152.065883,-27.262647 +2021,10,24,1,New South Wales,149.334733,-33.672312 +2024,5,6,1,Queensland,153.090818,-27.526019 +2021,9,4,1,Queensland,153.085908,-27.508463 +2024,3,11,1,New South Wales,150.886786,-34.044027 +2023,8,16,1,Queensland,148.844701,-21.771811 +2024,8,17,1,Queensland,153.319165,-27.897783 +2024,8,27,1,Queensland,153.064393,-27.54257 +2024,5,30,1,Queensland,152.680494,-28.008003 +2022,11,24,1,Queensland,152.915603,-27.17152 +2023,4,19,1,Queensland,153.091604,-27.527171 +2023,10,30,1,Queensland,152.979958,-27.262897 +2021,9,18,1,Victoria,143.931242,-37.55075 +2023,3,13,1,Queensland,153.092087,-27.527158 +2023,4,23,1,Queensland,153.086762,-27.510812 +2023,3,15,1,Queensland,153.107797,-27.526479 +2023,10,11,1,South Australia,138.728431,-35.12803 +2022,8,22,1,Queensland,153.059689,-27.548318 +2023,2,2,1,Victoria,146.387619,-38.35432 +2024,6,30,1,Queensland,152.638219,-27.452781 +2024,6,2,1,Queensland,153.090849,-27.525808 +2023,12,8,1,Queensland,153.091203,-27.510303 +2023,3,3,1,Queensland,153.133025,-27.563953 +2021,5,27,1,Queensland,151.877898,-26.197906 +2024,9,14,1,Queensland,151.825823,-26.577447 +2023,4,10,1,Queensland,153.111159,-27.530107 +2024,5,11,1,Queensland,153.092533,-27.5278 +2023,7,22,1,Queensland,151.80436,-26.446378 +2024,4,22,1,Queensland,152.935028,-27.27528 +2021,7,12,1,Queensland,153.062057,-27.534554 +2022,5,2,1,Queensland,153.49495,-27.4294 +2022,3,3,1,Queensland,150.977588,-24.929459 +2024,4,12,1,Victoria,145.314194,-38.3764 +2023,3,5,1,Queensland,152.993427,-27.284187 +2023,8,13,1,Queensland,152.24925,-27.496538 +2023,10,29,1,Queensland,153.37593,-27.916803 +2022,8,2,1,Queensland,153.10593,-27.506399 +2024,5,6,1,Queensland,153.093146,-27.528327 +2021,10,24,1,Victoria,146.164078,-38.671545 +2022,4,12,1,Queensland,152.130462,-26.869939 +2023,11,19,1,Queensland,151.543404,-27.6719 +2022,2,1,1,Victoria,144.086717,-37.630578 +2021,11,28,1,Queensland,153.081742,-27.51024 +2020,3,7,1,Queensland,153.068853,-27.545735 +2023,6,23,1,Queensland,153.109805,-27.529782 +2023,8,21,1,New South Wales,153.125077,-30.293311 +2024,10,5,1,Queensland,153.092139,-27.524525 +2022,11,22,1,South Australia,137.49395,-35.708153 +2022,8,7,1,South Australia,138.622528,-34.896287 +2023,4,23,1,Victoria,143.651772,-38.773168 +2021,8,17,1,New South Wales,153.383701,-28.724385 +2024,7,10,1,Queensland,152.993653,-27.823397 +2020,11,23,1,New South Wales,150.83583,-34.068519 +2023,5,25,1,Queensland,153.091568,-27.527269 +2024,3,27,1,South Australia,138.742115,-34.839564 +2024,9,4,1,Queensland,153.080152,-27.508351 +2023,3,14,1,Queensland,153.093033,-27.526069 +2023,2,9,1,Queensland,153.073729,-27.545662 +2020,6,6,1,Victoria,146.16417,-38.67155 +2024,11,9,1,Queensland,153.076264,-27.543866 +2021,7,21,1,Victoria,146.250153,-38.858803 +2024,4,20,1,Queensland,153.093531,-27.528177 +2023,9,28,1,Queensland,152.004768,-27.411557 +2021,5,2,1,South Australia,138.663355,-35.014287 +2020,4,20,1,Victoria,144.825003,-37.23722 +2023,11,3,1,Queensland,153.192438,-27.703298 +2020,11,24,1,Victoria,146.163743,-38.671027 +2022,1,18,1,South Australia,138.656983,-34.86518 +2024,5,11,1,Victoria,142.974875,-38.499892 +2023,9,17,1,Queensland,152.618339,-27.894355 +2022,8,19,1,Queensland,151.604716,-25.627783 +2024,1,20,1,Queensland,153.092411,-27.525132 +2022,3,21,1,Victoria,143.336594,-38.321979 +2023,11,15,1,Victoria,147.729295,-37.925322 +2021,11,16,1,Queensland,151.255781,-28.103221 +2023,6,10,1,Queensland,153.109503,-27.527934 +2024,4,22,1,Queensland,153.111058,-27.528619 +2023,11,7,1,Victoria,142.575524,-38.325482 +2023,11,3,1,Queensland,151.771734,-27.37498 +2023,2,4,1,Queensland,151.977862,-27.384103 +2024,1,6,1,Queensland,153.090634,-27.526045 +2023,9,17,1,Victoria,145.370692,-38.384667 +2024,2,10,1,Victoria,141.562736,-38.342694 +2023,11,8,1,Queensland,152.045407,-27.258278 +2024,9,7,1,Queensland,153.09096,-27.527464 +2021,10,23,1,South Australia,138.697842,-34.932778 +2024,6,15,1,Queensland,153.092344,-27.527823 +2024,11,9,1,Queensland,153.02185,-27.224133 +2024,5,25,1,Victoria,143.158225,-38.24555 +2020,4,26,1,South Australia,138.70427,-34.934933 +2023,6,11,1,Queensland,153.092888,-27.528282 +2022,5,3,1,Queensland,153.442453,-27.395194 +2020,2,19,1,Queensland,153.058036,-27.550789 +2021,1,26,1,Queensland,153.044893,-27.550958 +2023,4,19,1,Queensland,153.109254,-27.527357 +2020,9,21,1,New South Wales,153.377515,-28.254041 +2023,6,18,1,Victoria,143.860662,-38.668033 +2023,10,28,1,Queensland,152.678242,-27.98728 +2023,12,26,1,Queensland,153.091882,-27.527146 +2022,12,26,1,Queensland,153.437692,-27.400575 +2024,6,1,1,Queensland,153.103373,-27.530059 +2020,11,23,1,New South Wales,150.835892,-34.068458 +2023,10,18,1,Queensland,153.108308,-27.528935 +2020,6,20,1,South Australia,138.695174,-34.957424 +2023,4,29,1,South Australia,138.703228,-34.90309 +2024,4,24,1,Queensland,153.056186,-27.553492 +2022,8,31,1,Queensland,153.068778,-27.525775 +2023,8,11,1,Queensland,153.052324,-27.548534 +2024,9,10,1,Queensland,153.090924,-27.527021 +2022,10,1,1,New South Wales,146.567954,-34.758535 +2021,11,28,1,Queensland,151.523547,-27.715986 +2022,1,2,1,Victoria,141.750894,-38.090334 +2024,1,10,1,Queensland,152.226881,-27.296098 +2024,3,21,1,Queensland,152.042192,-27.300312 +2022,6,23,1,New South Wales,153.402184,-28.260113 +2024,7,7,1,Queensland,153.090772,-27.527153 +2024,3,22,1,South Australia,138.704956,-34.935108 +2024,9,22,1,Queensland,153.070237,-27.223603 +2020,3,4,1,Victoria,144.044096,-37.708717 +2022,8,14,1,Queensland,153.115457,-27.483424 +2023,11,13,1,Queensland,151.550038,-27.814368 +2024,10,29,1,Queensland,152.980628,-27.820647 +2020,5,8,1,Queensland,153.058631,-27.546564 +2022,8,22,1,Queensland,153.058714,-27.547334 +2024,5,2,1,Queensland,153.092291,-27.528163 +2023,1,6,1,Queensland,153.109786,-27.529653 +2023,6,5,1,Queensland,153.107593,-27.527128 +2020,2,22,1,South Australia,138.580239,-35.036509 +2021,12,30,1,Queensland,152.076125,-28.262058 +2024,7,1,1,Queensland,153.271352,-28.041832 +2021,10,25,1,New South Wales,153.406932,-28.255958 +2020,7,17,1,Queensland,153.060093,-27.543941 +2020,11,11,1,Queensland,153.058051,-27.551183 +2024,9,18,1,South Australia,138.715362,-34.89185 +2021,12,6,1,Queensland,153.058636,-27.546728 +2021,1,8,1,South Australia,138.710339,-34.85765 +2023,12,29,1,Queensland,153.103381,-27.530137 +2024,11,5,1,Queensland,151.833913,-26.52456 +2023,5,24,1,Queensland,152.866081,-28.211516 +2020,12,29,1,South Australia,138.639555,-35.006436 +2024,9,29,1,Queensland,153.092421,-27.528655 +2022,3,26,1,New South Wales,153.402021,-28.259484 +2020,7,13,1,Victoria,145.268072,-38.130765 +2024,4,13,1,New South Wales,151.136795,-33.087917 +2022,10,29,1,Victoria,143.874484,-37.6175 +2024,2,23,1,Queensland,153.057771,-27.551574 +2023,7,27,1,Queensland,151.94505,-27.412003 +2021,11,28,1,Queensland,153.082523,-27.506578 +2023,8,29,1,Queensland,152.996687,-27.81653 +2023,10,16,1,South Australia,138.731469,-34.886087 +2024,10,19,1,Queensland,153.09216,-27.527138 +2020,12,16,1,Queensland,153.056381,-27.538738 +2021,7,17,1,Queensland,153.059648,-27.548346 +2021,2,11,1,Queensland,153.057663,-27.551272 +2024,7,17,1,South Australia,138.672193,-35.014138 +2023,11,5,1,Queensland,152.897078,-28.203106 +2024,4,16,1,South Australia,138.732475,-34.890361 +2020,10,15,1,Queensland,152.891607,-28.230508 +2021,7,25,1,Queensland,153.082855,-27.506361 +2024,8,5,1,Queensland,146.870469,-19.124235 +2023,11,5,1,Victoria,143.884827,-37.58771 +2022,11,14,1,Queensland,153.081012,-27.513079 +2024,10,23,1,Queensland,153.0542,-27.55218 +2022,8,10,1,Queensland,153.377058,-27.919485 +2022,3,14,1,Victoria,141.28451,-37.925243 +2024,11,23,1,Queensland,152.489126,-27.382543 +2024,5,27,1,South Australia,138.731417,-34.882904 +2021,4,15,1,South Australia,138.736167,-34.830996 +2023,5,19,1,Queensland,153.09228,-27.527471 +2023,5,27,1,Queensland,153.062089,-27.548595 +2024,2,11,1,South Australia,138.688317,-34.811704 +2024,4,10,1,New South Wales,150.059386,-36.438562 +2021,10,7,1,Victoria,146.387703,-38.357108 +2021,12,15,1,South Australia,138.65735,-34.865078 +2021,8,6,1,Queensland,153.071287,-27.779701 +2023,2,28,1,Victoria,143.863282,-38.6643 +2024,8,7,1,Queensland,153.192028,-27.701466 +2022,12,21,1,Queensland,153.234293,-27.500255 +2023,9,5,1,South Australia,138.918743,-35.074042 +2023,2,9,1,Queensland,152.18373,-27.53098 +2021,5,7,1,Queensland,153.079253,-27.51523 +2022,12,24,1,Victoria,142.290988,-37.874649 +2021,7,29,1,South Australia,138.732584,-34.889643 +2024,8,3,1,Queensland,153.085253,-27.510505 +2022,2,18,1,Victoria,145.303241,-38.369088 +2022,6,20,1,Victoria,145.306035,-38.384463 +2022,11,25,1,Queensland,153.356839,-27.938968 +2024,8,23,1,Queensland,153.443663,-28.104364 +2023,9,25,1,Queensland,152.045242,-27.256913 +2022,2,20,1,South Australia,138.576369,-35.063064 +2023,11,4,1,Queensland,153.092065,-27.52713 +2023,9,5,1,Queensland,152.560511,-27.372427 +2024,1,17,1,South Australia,138.719837,-34.892043 +2023,5,30,1,New South Wales,151.082791,-33.137262 +2021,3,20,1,Victoria,143.476629,-38.804048 +2024,5,12,1,Queensland,153.092945,-27.528227 +2020,12,1,1,Queensland,153.05819,-27.546965 +2024,7,26,1,Queensland,153.090966,-27.526616 +2022,12,16,1,Queensland,153.111828,-27.528948 +2022,3,29,1,New South Wales,146.588547,-34.756997 +2024,2,5,1,Victoria,143.870937,-37.648881 +2021,8,23,1,Queensland,153.057122,-27.551511 +2022,3,10,1,Victoria,146.302819,-38.951237 +2022,11,22,1,Queensland,153.071597,-27.509765 +2024,5,6,1,Queensland,153.103817,-27.530545 +2021,5,2,1,South Australia,138.689223,-35.08766 +2024,9,1,1,South Australia,138.628978,-35.033418 +2023,9,9,1,Queensland,153.093107,-27.524948 +2023,12,23,1,Queensland,153.106695,-27.528898 +2023,7,22,1,New South Wales,152.061417,-32.709678 +2022,1,9,1,Queensland,153.081965,-27.507964 +2024,1,4,1,Victoria,149.742121,-37.55443 +2022,11,28,1,Victoria,144.485511,-37.490327 +2024,5,22,1,Queensland,153.111571,-27.528984 +2021,2,28,1,South Australia,138.679773,-34.942151 +2024,11,14,1,South Australia,138.722577,-34.891174 +2023,4,23,1,Queensland,153.083244,-27.51211 +2022,9,30,1,New South Wales,153.397497,-28.261574 +2021,6,27,1,Queensland,153.082868,-27.50621 +2024,11,13,1,Queensland,152.003114,-27.413267 +2023,2,2,1,Queensland,152.737153,-27.693842 +2020,3,20,1,Queensland,153.057327,-27.551369 +2024,1,4,1,Victoria,145.049227,-38.26579 +2023,9,12,1,Victoria,143.925691,-37.654905 +2024,9,13,1,Victoria,141.775406,-38.203322 +2023,12,7,1,Victoria,145.663087,-37.754295 +2023,7,29,1,Queensland,151.750039,-26.155358 +2022,11,9,1,Queensland,152.0594,-27.260088 +2024,1,25,1,Victoria,143.743453,-38.548672 +2024,11,16,1,Queensland,153.194755,-28.198925 +2020,12,11,1,Victoria,142.032348,-37.743026 +2023,4,26,1,South Australia,138.68362,-34.868411 +2024,6,21,1,South Australia,138.621095,-34.894545 +2023,11,3,1,Queensland,153.109102,-27.526827 +2023,9,12,1,Queensland,151.940934,-27.426539 +2024,10,17,1,Queensland,153.439378,-28.138094 +2023,10,22,1,Queensland,153.091977,-27.525757 +2023,10,12,1,Queensland,152.003028,-27.413458 +2023,9,25,1,Queensland,153.104586,-27.529317 +2024,8,21,1,New South Wales,153.629619,-28.637502 +2024,10,19,1,Queensland,153.399893,-27.498222 +2023,4,2,1,New South Wales,152.90139,-31.442501 +2023,11,1,1,Queensland,151.843093,-27.589704 +2023,12,16,1,Victoria,148.269267,-37.191133 +2024,10,13,1,Queensland,152.993348,-27.823805 +2020,5,3,1,Queensland,153.06057,-27.550032 +2022,11,2,1,Queensland,152.108867,-26.808295 +2023,6,26,1,Queensland,152.611764,-27.333328 +2023,12,31,1,South Australia,137.472183,-35.903795 +2023,8,5,1,Queensland,153.091822,-27.526769 +2022,6,20,1,New South Wales,153.103993,-29.48928 +2023,10,7,1,Victoria,145.452388,-37.017162 +2023,8,5,1,Queensland,152.045843,-27.255751 +2024,8,28,1,South Australia,138.70092,-34.799167 +2021,4,2,1,South Australia,138.735511,-34.82575 +2023,7,15,1,South Australia,138.655861,-35.009134 +2023,3,18,1,Queensland,153.103371,-27.530076 +2024,7,28,1,Queensland,153.092093,-27.526544 +2024,10,5,1,Queensland,152.851685,-27.472101 +2023,4,3,1,South Australia,138.620313,-34.996453 +2020,11,13,1,Queensland,153.073134,-27.546384 +2024,8,28,1,Queensland,151.814656,-26.364506 +2024,8,31,1,Queensland,151.863708,-27.340983 +2024,10,4,1,South Australia,138.740102,-35.02509 +2021,5,9,1,Queensland,153.085267,-27.510447 +2022,11,20,1,Queensland,153.053631,-27.543762 +2024,6,16,1,Queensland,152.913272,-28.047705 +2021,11,4,1,New South Wales,152.92636,-30.226729 +2023,1,9,1,Victoria,145.31613,-38.366832 +2021,2,1,1,Victoria,143.904765,-37.581704 +2023,10,7,1,Queensland,153.444096,-28.125171 +2023,9,1,1,New South Wales,151.82374,-32.32704 +2022,9,23,1,Queensland,150.982309,-25.105016 +2024,10,5,1,Queensland,153.093114,-27.528623 +2021,6,4,1,Victoria,145.255165,-38.139677 +2023,10,11,1,Queensland,153.107768,-27.527067 +2023,11,26,1,South Australia,138.693497,-34.921283 +2023,12,5,1,South Australia,138.720275,-34.892869 +2023,1,2,1,Queensland,153.104118,-27.530001 +2022,3,27,1,South Australia,138.590441,-35.146364 +2023,5,22,1,Queensland,152.981237,-27.297467 +2020,7,20,1,South Australia,138.537432,-35.219578 +2023,11,3,1,Queensland,151.958327,-27.461285 +2023,7,6,1,Queensland,153.090774,-27.525129 +2021,10,5,1,New South Wales,150.907653,-33.997212 +2023,2,2,1,Victoria,143.894144,-37.594303 +2024,9,30,1,Queensland,153.061538,-27.221095 +2022,11,23,1,Queensland,153.073353,-27.543133 +2024,11,9,1,Queensland,153.0924,-27.528627 +2021,10,10,1,Queensland,153.083371,-27.511438 +2023,8,18,1,Queensland,151.675872,-26.372772 +2022,12,19,1,Queensland,153.072935,-27.546027 +2022,9,27,1,Victoria,145.393417,-37.470347 +2024,9,8,1,Queensland,153.092041,-27.525753 +2023,12,9,1,Queensland,153.107301,-27.527266 +2020,10,17,1,New South Wales,153.377481,-28.254031 +2023,7,2,1,Queensland,153.091614,-27.526943 +2023,1,29,1,Queensland,153.057538,-27.550736 +2024,4,12,1,Queensland,153.103657,-27.529893 +2024,9,7,1,Queensland,153.092305,-27.525429 +2024,10,18,1,New South Wales,150.822085,-34.101267 +2023,10,13,1,Queensland,153.189646,-27.701124 +2024,3,1,1,New South Wales,146.82933,-34.878097 +2023,4,16,1,Queensland,153.000876,-27.284465 +2022,10,1,1,New South Wales,146.566122,-34.757663 +2023,7,26,1,Queensland,153.353509,-27.909001 +2023,9,12,1,Queensland,152.046061,-27.255412 +2023,9,16,1,Queensland,153.108872,-27.527232 +2021,10,23,1,Queensland,146.868677,-19.126093 +2020,2,8,1,Queensland,153.05778,-27.551285 +2024,1,4,1,Queensland,152.049653,-27.265372 +2023,5,2,1,Queensland,153.10445,-27.529597 +2024,9,21,1,New South Wales,146.595367,-34.77203 +2024,1,4,1,Queensland,151.620829,-25.629485 +2023,5,19,1,Queensland,152.046306,-27.257203 +2023,10,24,1,Queensland,153.109473,-27.526743 +2023,6,14,1,Queensland,151.766353,-26.17259 +2022,1,12,1,Queensland,153.070132,-27.510602 +2024,10,3,1,Queensland,152.6052,-28.163257 +2024,8,17,1,Queensland,153.091623,-27.526956 +2020,8,6,1,New South Wales,153.37708,-28.253552 +2022,9,11,1,Victoria,143.877516,-37.579137 +2021,4,15,1,Queensland,152.221167,-27.23497 +2022,9,2,1,Queensland,151.775294,-26.182073 +2023,11,30,1,Queensland,152.003053,-27.413678 +2024,4,8,1,South Australia,138.632166,-34.990772 +2023,12,21,1,Queensland,151.749888,-26.155079 +2024,5,17,1,South Australia,138.721992,-34.890234 +2022,5,29,1,South Australia,138.720122,-34.873231 +2021,9,1,1,Victoria,143.90182,-37.592436 +2022,6,23,1,Victoria,142.363123,-38.318454 +2023,10,24,1,Queensland,153.109984,-27.527717 +2023,9,23,1,Queensland,153.105388,-27.529883 +2024,1,20,1,Queensland,153.103331,-27.529984 +2023,1,14,1,Queensland,152.24464,-27.492655 +2020,11,7,1,Queensland,153.372739,-27.911561 +2024,5,27,1,Queensland,152.851971,-28.082754 +2023,2,4,1,South Australia,138.73697,-34.912923 +2022,2,1,1,South Australia,138.730089,-34.890985 +2023,5,2,1,Queensland,152.598938,-27.941537 +2021,2,24,1,Victoria,146.16385,-38.671213 +2021,10,24,1,South Australia,138.660196,-34.861586 +2022,11,12,1,Queensland,153.073708,-27.54583 +2024,6,12,1,South Australia,138.734874,-34.88842 +2023,10,1,1,Queensland,153.092146,-27.52727 +2024,1,20,1,Victoria,144.088587,-37.633664 +2020,8,17,1,Queensland,152.965554,-27.268429 +2023,9,16,1,Queensland,151.946749,-27.424819 +2024,1,19,1,New South Wales,153.124589,-30.295612 +2024,5,26,1,Queensland,153.093005,-27.52432 +2021,12,1,1,Queensland,152.062996,-27.262234 +2023,12,17,1,South Australia,138.722521,-34.890181 +2024,11,22,1,New South Wales,150.849395,-34.077179 +2023,9,8,1,Queensland,153.090984,-27.526421 +2024,3,22,1,Queensland,153.092041,-27.527195 +2023,8,23,1,Queensland,152.004411,-27.414678 +2020,4,30,1,Queensland,153.061695,-27.544429 +2023,8,26,1,Queensland,152.482358,-26.540943 +2023,5,6,1,Queensland,153.091406,-27.527734 +2024,8,9,1,Queensland,153.072983,-27.54788 +2021,8,6,1,Queensland,153.030967,-27.936865 +2023,2,17,1,Victoria,144.310387,-37.277009 +2020,9,21,1,Queensland,153.056351,-27.542353 +2020,8,2,1,Queensland,153.001442,-27.166504 +2023,10,1,1,Queensland,152.618164,-27.895745 +2023,12,18,1,South Australia,138.733974,-34.887425 +2024,4,8,1,New South Wales,150.042448,-33.781183 +2021,6,13,1,Queensland,153.047837,-27.554473 +2023,3,26,1,Victoria,142.209432,-37.402225 +2020,5,27,1,Queensland,153.21746,-27.547354 +2024,3,14,1,Queensland,152.127376,-26.191125 +2024,10,1,1,Queensland,153.443055,-28.105739 +2020,9,8,1,Queensland,147.522598,-22.632809 +2023,2,4,1,Queensland,152.003114,-27.413575 +2024,1,22,1,Queensland,153.057796,-27.552753 +2020,2,19,1,Queensland,153.06921,-27.510958 +2024,9,21,1,New South Wales,153.16061,-28.874945 +2022,8,15,1,Queensland,152.1833,-27.53118 +2021,11,21,1,New South Wales,153.401004,-28.256364 +2021,12,22,1,South Australia,138.736583,-35.03678 +2024,3,23,1,Victoria,143.860853,-38.668514 +2020,5,17,1,South Australia,138.6567,-35.006989 +2021,11,21,1,Queensland,153.03747,-27.54804 +2023,8,9,1,Victoria,145.663736,-37.754656 +2023,12,17,1,Victoria,145.261445,-38.484292 +2022,12,28,1,Queensland,153.103731,-27.53008 +2023,8,19,1,Queensland,153.092949,-27.5281 +2022,12,23,1,Queensland,153.073843,-27.545526 +2023,2,23,1,South Australia,138.655203,-34.948238 +2024,10,6,1,Queensland,153.09158,-27.526901 +2024,11,3,1,South Australia,138.721458,-34.891902 +2022,1,1,1,Victoria,141.751118,-38.090085 +2022,6,15,1,Queensland,153.050075,-27.549131 +2020,12,10,1,Victoria,146.267746,-36.226437 +2021,11,15,1,Queensland,153.085603,-27.507075 +2024,4,30,1,South Australia,138.727805,-34.888717 +2021,4,20,1,South Australia,138.679297,-35.000188 +2020,1,24,1,Queensland,153.058239,-27.546702 +2023,11,11,1,Queensland,153.092319,-27.527785 +2023,10,22,1,Queensland,151.716478,-27.5686 +2021,9,19,1,South Australia,138.699858,-35.069114 +2023,9,27,1,South Australia,138.731547,-34.890479 +2020,10,8,1,New South Wales,153.377067,-28.254231 +2024,2,29,1,South Australia,138.75272,-34.994599 +2023,8,16,1,Queensland,153.072691,-27.544899 +2024,6,22,1,Queensland,153.108868,-27.526829 +2021,6,27,1,Queensland,153.084819,-27.506577 +2020,9,26,1,New South Wales,153.377037,-28.254089 +2023,7,25,1,Queensland,153.174967,-27.596876 +2023,5,27,1,Queensland,153.059223,-27.551424 +2023,4,18,1,Queensland,153.093103,-27.527384 +2022,11,1,1,Queensland,148.687923,-21.687571 +2020,5,17,1,South Australia,138.649849,-35.004099 +2023,8,16,1,Queensland,152.556938,-27.226822 +2020,5,26,1,Queensland,153.057187,-27.543275 +2023,11,26,1,South Australia,138.654686,-35.004731 +2024,6,5,1,Queensland,153.241687,-28.006361 +2024,5,24,1,Queensland,153.112737,-27.527876 +2024,7,26,1,Queensland,151.820166,-26.171908 +2022,6,19,1,Victoria,142.63259,-38.321294 +2022,6,19,1,New South Wales,150.069228,-31.133297 +2024,2,17,1,Queensland,152.654799,-26.401998 +2020,8,9,1,New South Wales,153.39312,-28.26957 +2023,5,10,1,Queensland,153.060026,-27.551062 +2024,4,22,1,Queensland,152.936886,-27.275308 +2023,11,27,1,South Australia,138.728717,-34.889841 +2024,9,7,1,Queensland,152.999957,-27.284277 +2023,11,28,1,Queensland,152.003006,-27.41308 +2024,11,6,1,South Australia,137.77171,-35.778817 +2023,3,1,1,Queensland,153.110532,-27.527096 +2024,9,20,1,Victoria,145.487533,-36.948558 +2020,10,6,1,New South Wales,153.377429,-28.253972 +2024,1,15,1,New South Wales,150.853474,-34.08267 +2021,11,29,1,Queensland,151.553341,-27.812771 +2024,5,3,1,Queensland,153.072785,-27.546462 +2024,3,8,1,New South Wales,150.585918,-29.857211 +2020,1,18,1,Victoria,146.163682,-38.671037 +2024,11,4,1,Queensland,151.930388,-27.331117 +2024,10,14,1,Queensland,153.099839,-27.530025 +2020,7,16,1,Queensland,146.870615,-19.124324 +2023,8,17,1,Queensland,152.40481,-27.456817 +2023,11,19,1,Queensland,152.07452,-27.358427 +2021,8,15,1,Victoria,145.266178,-38.13197 +2022,10,29,1,South Australia,138.826933,-34.692015 +2021,9,26,1,South Australia,138.645415,-35.002388 +2020,4,20,1,Victoria,143.890209,-37.619181 +2021,10,12,1,Queensland,152.587937,-27.162508 +2024,10,14,1,Queensland,152.999663,-27.312655 +2022,4,29,1,South Australia,138.57895,-35.153994 +2022,11,8,1,Queensland,153.073707,-27.545828 +2021,12,20,1,Victoria,146.163852,-38.671153 +2023,11,25,1,Queensland,153.19019,-27.701741 +2022,12,24,1,Queensland,151.888844,-27.600156 +2023,2,14,1,Queensland,153.103689,-27.530137 +2024,2,5,1,South Australia,138.734848,-34.887322 +2023,11,25,1,Victoria,143.524548,-38.819212 +2024,7,21,1,Queensland,153.090603,-27.526003 +2023,5,20,1,Queensland,153.364813,-27.901639 +2024,4,4,1,Victoria,144.924867,-38.430125 +2023,7,10,1,Queensland,153.108857,-27.527019 +2021,8,28,1,Queensland,152.906601,-28.17387 +2020,9,10,1,Queensland,153.052313,-27.548353 +2024,7,29,1,Queensland,153.103715,-27.530038 +2024,7,27,1,Queensland,153.093258,-27.525575 +2023,9,3,1,Queensland,153.036836,-27.535816 +2023,12,15,1,Victoria,143.899086,-37.640868 +2023,7,2,1,Queensland,153.001262,-27.284835 +2024,1,12,1,Queensland,153.083876,-27.529445 +2020,12,24,1,South Australia,138.751342,-34.997821 +2023,12,23,1,Queensland,153.092253,-27.525661 +2024,10,1,1,Queensland,153.19019,-27.701741 +2024,10,15,1,New South Wales,146.589172,-34.757328 +2022,6,10,1,Queensland,153.376912,-27.919474 +2023,10,3,1,Queensland,153.108199,-27.527035 +2022,7,13,1,South Australia,138.659287,-34.864596 +2023,3,5,1,Queensland,153.090831,-27.526957 +2024,1,22,1,Queensland,153.106458,-27.529004 +2021,10,3,1,New South Wales,153.37797,-28.254519 +2023,11,5,1,Queensland,153.091788,-27.52697 +2020,4,2,1,Queensland,153.066825,-27.547024 +2020,1,11,1,Queensland,152.138793,-27.572433 +2020,7,13,1,Queensland,153.062907,-27.549628 +2024,10,28,1,Queensland,153.447056,-28.093048 +2023,3,25,1,Queensland,152.179453,-27.564083 +2023,6,25,1,Queensland,152.946971,-28.124575 +2023,3,19,1,Queensland,153.103018,-27.527888 +2024,5,5,1,Queensland,152.891385,-27.373489 +2021,4,7,1,Victoria,145.274537,-38.129442 +2024,3,24,1,South Australia,138.70162,-34.902241 +2023,12,9,1,Queensland,153.09213,-27.527267 +2023,4,20,1,Victoria,145.440004,-37.089156 +2024,6,8,1,Queensland,153.092176,-27.527352 +2023,8,10,1,Victoria,144.58489,-37.521188 +2023,12,5,1,Queensland,153.19019,-27.701741 +2024,2,2,1,Queensland,153.057446,-27.552554 +2022,1,21,1,South Australia,138.636633,-34.990102 +2022,2,15,1,Victoria,144.123294,-37.576957 +2023,11,12,1,Queensland,153.09156,-27.527144 +2022,12,21,1,Queensland,153.073236,-27.545887 +2020,6,16,1,New South Wales,153.377544,-28.254155 +2024,8,24,1,Queensland,153.090632,-27.526835 +2023,11,14,1,Queensland,153.19019,-27.701741 +2021,12,22,1,Queensland,153.084397,-27.509522 +2023,3,2,1,South Australia,138.656945,-34.865213 +2023,12,23,1,Queensland,153.091677,-27.527229 +2024,10,21,1,South Australia,138.961007,-34.816266 +2023,12,12,1,New South Wales,152.408187,-31.932636 +2022,11,17,1,Queensland,153.072365,-27.544588 +2023,11,5,1,Queensland,153.091943,-27.527223 +2023,8,21,1,Victoria,143.53548,-38.79 +2023,4,2,1,Queensland,153.000835,-27.28448 +2024,9,10,1,Victoria,143.579705,-38.742749 +2020,9,19,1,South Australia,138.706847,-34.978211 +2020,1,4,1,Queensland,151.983333,-26.15 +2024,11,5,1,Queensland,152.212885,-26.138775 +2024,9,20,1,Queensland,153.090924,-27.527048 +2024,3,29,1,Queensland,151.95246,-26.544638 +2020,1,6,1,Queensland,153.072033,-27.549243 +2023,3,7,1,Queensland,153.103927,-27.530937 +2023,11,22,1,Queensland,153.425585,-27.468741 +2021,1,22,1,South Australia,138.703251,-34.902917 +2024,1,17,1,Victoria,145.268791,-38.130626 +2024,10,5,1,Queensland,153.090688,-27.52721 +2024,8,18,1,Queensland,153.092295,-27.527434 +2023,11,13,1,Queensland,153.092796,-27.528485 +2021,11,9,1,New South Wales,153.375594,-28.252362 +2022,11,9,1,Queensland,151.932847,-27.330695 +2024,1,9,1,South Australia,138.722344,-34.889762 +2022,10,31,1,Queensland,153.073465,-27.545613 +2023,9,27,1,Victoria,141.217616,-38.05704 +2024,7,21,1,South Australia,138.700438,-34.963271 +2023,12,30,1,Queensland,153.092388,-27.525526 +2021,8,19,1,South Australia,137.639953,-35.647725 +2021,5,4,1,Victoria,146.163789,-38.671322 +2020,7,23,1,Queensland,153.082433,-27.509815 +2023,4,9,1,Victoria,146.209974,-38.699115 +2021,3,28,1,Queensland,153.057376,-27.551379 +2021,4,20,1,Queensland,153.4568,-28.09395 +2020,3,1,1,Victoria,143.53332,-38.811596 +2023,12,22,1,Queensland,151.109974,-26.781357 +2024,4,22,1,South Australia,138.715601,-34.892543 +2023,11,18,1,Queensland,151.783934,-26.307064 +2024,4,12,1,Victoria,145.297226,-38.383388 +2024,8,4,1,Queensland,153.092835,-27.522766 +2021,10,21,1,New South Wales,151.007948,-34.084161 +2023,12,24,1,South Australia,138.721948,-34.890651 +2022,2,6,1,South Australia,138.646937,-35.00394 +2023,9,25,1,Queensland,152.004663,-27.411503 +2022,9,13,1,Queensland,148.688203,-21.687283 +2023,6,17,1,Queensland,153.092245,-27.528026 +2023,5,9,1,South Australia,138.571498,-35.036935 +2024,5,17,1,South Australia,138.714449,-34.892746 +2024,3,10,1,Victoria,142.631763,-38.341303 +2024,9,15,1,New South Wales,146.569659,-34.755807 +2020,11,25,1,New South Wales,153.376828,-28.253845 +2021,11,16,1,Victoria,143.593333,-38.823056 +2022,7,25,1,Victoria,145.767612,-38.510504 +2023,6,9,1,Queensland,153.109778,-27.527989 +2024,3,2,1,Queensland,152.857309,-27.544032 +2023,7,26,1,Queensland,153.109259,-27.529778 +2021,4,17,1,South Australia,138.649363,-35.009079 +2024,8,5,1,Queensland,153.242367,-28.230267 +2024,1,19,1,Queensland,153.105314,-27.530339 +2023,7,17,1,Queensland,153.092343,-27.525033 +2021,11,4,1,South Australia,138.717783,-34.892086 +2023,1,30,1,New South Wales,151.095292,-33.076314 +2021,8,26,1,New South Wales,153.375337,-28.252545 +2024,7,14,1,Queensland,151.969876,-26.165406 +2022,4,21,1,South Australia,138.718026,-34.891679 +2024,10,12,1,Queensland,153.090882,-27.525855 +2023,9,9,1,Queensland,151.937867,-27.416929 +2021,10,17,1,New South Wales,153.394826,-28.274568 +2020,4,26,1,South Australia,138.702817,-34.931111 +2024,3,2,1,Queensland,153.092383,-27.527072 +2023,8,5,1,Queensland,152.838942,-26.371981 +2022,8,28,1,Queensland,153.101707,-27.735147 +2020,11,10,1,New South Wales,150.82695,-34.096097 +2024,10,20,1,South Australia,138.709648,-34.904352 +2023,7,24,1,Queensland,153.110175,-27.529156 +2024,5,3,1,South Australia,138.733756,-34.886288 +2024,6,3,1,New South Wales,153.277645,-29.004116 +2024,4,13,1,Queensland,153.109135,-27.526791 +2024,10,22,1,Queensland,152.115672,-28.318819 +2024,6,6,1,Victoria,145.256697,-38.243153 +2024,1,31,1,Queensland,153.089608,-27.509545 +2020,1,4,1,New South Wales,153.400824,-28.255296 +2023,9,16,1,Queensland,153.151142,-27.583787 +2023,7,22,1,Queensland,153.092256,-27.528026 +2022,5,24,1,Queensland,153.103742,-27.528414 +2023,3,21,1,Victoria,143.860589,-38.668072 +2022,9,18,1,Victoria,144.2095,-37.83026 +2024,11,3,1,Queensland,153.090001,-27.534993 +2024,7,7,1,Queensland,146.864598,-19.145904 +2024,9,9,1,Queensland,152.916687,-27.122186 +2021,12,22,1,Queensland,153.08522,-27.509128 +2024,7,3,1,Victoria,143.613539,-38.775645 +2024,1,31,1,South Australia,138.732092,-34.890551 +2023,4,1,1,Queensland,153.439087,-27.409013 +2020,6,23,1,Queensland,153.058465,-27.547995 +2024,6,1,1,Queensland,153.068025,-27.222728 +2024,10,29,1,Queensland,153.116901,-27.53028 +2024,10,12,1,Queensland,153.09233,-27.527876 +2024,6,4,1,Queensland,153.103914,-27.530383 +2023,3,20,1,Victoria,144.18922,-37.298888 +2023,12,19,1,Queensland,153.110289,-27.527842 +2022,12,19,1,Queensland,153.059628,-27.551377 +2022,1,15,1,Queensland,151.612576,-27.370302 +2024,9,17,1,New South Wales,146.597176,-34.770685 +2021,11,22,1,Victoria,145.314904,-38.372164 +2023,11,25,1,Queensland,152.050186,-27.265967 +2022,12,5,1,Queensland,153.036697,-27.534655 +2023,8,22,1,Queensland,153.091923,-27.526918 +2023,8,10,1,Victoria,144.583924,-37.520313 +2023,12,17,1,Queensland,151.749888,-26.155079 +2024,5,18,1,Queensland,153.444634,-28.101895 +2020,7,20,1,Victoria,146.164139,-38.671453 +2023,8,23,1,Victoria,143.512725,-38.835372 +2024,9,18,1,Queensland,153.058932,-27.551563 +2023,2,28,1,Queensland,153.090616,-27.526019 +2024,4,21,1,Queensland,153.092569,-27.527649 +2022,5,10,1,Queensland,152.976089,-27.271357 +2024,1,15,1,Queensland,151.749888,-26.155079 +2020,3,4,1,Queensland,153.080721,-27.512157 +2024,10,1,1,New South Wales,146.550645,-34.746608 +2020,7,24,1,South Australia,138.697911,-34.958706 +2024,4,17,1,Victoria,143.514296,-38.835615 +2024,4,16,1,Queensland,153.103705,-27.530125 +2024,11,22,1,South Australia,138.653769,-35.016008 +2023,10,12,1,Queensland,152.856012,-28.202536 +2024,2,2,1,Queensland,153.080131,-27.504744 +2024,5,15,1,Queensland,151.772632,-26.199667 +2024,8,17,1,Victoria,146.387359,-38.356991 +2022,11,18,1,Queensland,153.057814,-27.792486 +2022,4,7,1,Queensland,153.438182,-27.400985 +2022,10,6,1,Victoria,143.861147,-38.670077 +2020,2,3,1,Queensland,153.058464,-27.547904 +2023,12,20,1,South Australia,138.551567,-35.245923 +2023,12,27,1,Queensland,153.093353,-27.525591 +2024,10,14,1,Queensland,153.103702,-27.529371 +2020,3,17,1,Queensland,153.123628,-27.533975 +2023,4,7,1,South Australia,140.963809,-37.840852 +2024,11,8,1,Queensland,151.789226,-26.192108 +2024,6,18,1,New South Wales,153.400849,-28.258093 +2023,12,28,1,Victoria,148.269592,-37.209603 +2022,3,16,1,Queensland,153.061445,-27.534492 +2023,12,7,1,Victoria,144.174803,-37.821697 +2022,10,11,1,Queensland,153.069808,-27.510502 +2024,11,23,1,Queensland,152.001922,-27.41068 +2024,4,25,1,Queensland,153.103904,-27.528299 +2022,12,24,1,Queensland,151.893433,-27.599535 +2024,2,12,1,Queensland,153.103299,-27.530296 +2023,3,5,1,Queensland,152.499712,-27.393455 +2024,7,27,1,Queensland,153.449731,-28.119131 +2021,7,13,1,Queensland,153.084037,-27.511905 +2023,9,6,1,Victoria,143.514622,-38.835801 +2020,9,17,1,Queensland,153.09,-27.637047 +2022,10,4,1,Queensland,153.073595,-27.545742 +2024,9,23,1,Victoria,145.213242,-38.246195 +2024,7,7,1,Victoria,145.368218,-36.340323 +2021,11,13,1,Victoria,144.945008,-38.430488 +2024,10,3,1,South Australia,138.617918,-34.905745 +2022,10,27,1,Queensland,153.0575,-27.551389 +2022,11,11,1,Queensland,153.073828,-27.545693 +2023,2,15,1,Queensland,152.988862,-27.169922 +2022,12,3,1,Queensland,153.437761,-27.4043 +2023,7,16,1,Queensland,153.091353,-27.527433 +2024,5,19,1,Queensland,153.058106,-27.546826 +2020,11,4,1,New South Wales,153.377402,-28.253934 +2024,10,2,1,Victoria,141.49031,-38.100748 +2022,6,8,1,Queensland,153.073883,-27.545608 +2023,1,4,1,Queensland,151.716034,-27.568117 +2022,12,11,1,Queensland,153.072849,-27.545938 +2023,11,14,1,Queensland,151.869537,-27.330362 +2024,7,14,1,Queensland,153.090943,-27.525868 +2022,3,16,1,Queensland,153.061417,-27.53439 +2023,12,21,1,Queensland,153.325026,-27.913623 +2021,2,2,1,New South Wales,151.175764,-33.58608 +2023,10,31,1,South Australia,138.707062,-34.905272 +2024,5,6,1,Queensland,153.09235,-27.525607 +2024,6,24,1,Queensland,152.677429,-27.986511 +2024,3,27,1,Victoria,144.299685,-37.827689 +2023,4,8,1,Queensland,153.104013,-27.530808 +2024,4,8,1,Queensland,153.381276,-27.96354 +2024,2,25,1,Queensland,153.091001,-27.526884 +2024,1,6,1,Queensland,153.090822,-27.527693 +2023,8,20,1,Queensland,151.880451,-26.313407 +2024,8,4,1,South Australia,138.644612,-35.004237 +2023,12,12,1,Queensland,151.769552,-26.371076 +2020,3,27,1,Victoria,143.878536,-37.63247 +2024,1,11,1,Victoria,145.268687,-38.130713 +2020,12,17,1,Victoria,146.163673,-38.670995 +2024,1,20,1,Queensland,151.745912,-26.15627 +2024,10,4,1,Queensland,153.059034,-27.555128 +2023,9,10,1,Queensland,153.00068,-27.284152 +2023,4,14,1,Queensland,153.107382,-27.527177 +2023,10,28,1,Victoria,143.899047,-37.616697 +2024,8,10,1,South Australia,138.707409,-34.903824 +2023,11,6,1,Victoria,143.535707,-38.783901 +2021,2,2,1,Victoria,146.163868,-38.671179 +2022,7,17,1,Queensland,153.049812,-27.549455 +2023,11,19,1,Queensland,153.09229,-27.528012 +2024,10,18,1,Queensland,153.090027,-27.537148 +2024,5,23,1,South Australia,138.735019,-34.8887 +2023,12,1,1,Queensland,153.110432,-27.527345 +2023,10,26,1,New South Wales,153.400742,-28.258194 +2023,4,19,1,Queensland,153.090911,-27.526941 +2024,7,27,1,Queensland,146.869378,-19.127443 +2023,9,1,1,Queensland,151.82736,-26.109577 +2024,3,3,1,South Australia,138.713421,-34.892559 +2023,3,19,1,Queensland,153.000846,-27.28448 +2021,2,16,1,Queensland,153.104095,-27.528995 +2021,10,16,1,Queensland,152.026184,-27.653402 +2022,9,20,1,Queensland,151.258928,-28.103128 +2022,2,22,1,Queensland,153.029175,-27.251669 +2023,5,21,1,Queensland,151.422352,-26.131857 +2020,6,28,1,Victoria,144.722621,-37.54541 +2024,9,15,1,Queensland,153.092526,-27.524892 +2023,8,12,1,Queensland,153.092408,-27.528372 +2023,10,30,1,Queensland,153.092749,-27.525272 +2024,6,23,1,Queensland,153.091494,-27.52726 +2021,2,6,1,Queensland,153.086445,-27.505963 +2024,4,10,1,Queensland,152.901787,-27.621833 +2024,4,3,1,Victoria,142.629765,-38.341075 +2024,4,24,1,Queensland,152.72727,-27.879846 +2024,4,12,1,Queensland,153.10345,-27.528258 +2020,8,14,1,Queensland,153.073765,-27.55305 +2020,2,20,1,Queensland,153.058516,-27.551381 +2024,9,3,1,New South Wales,151.233883,-33.119112 +2023,11,13,1,Queensland,153.092757,-27.525348 +2024,6,3,1,Queensland,153.11227,-27.529263 +2021,2,23,1,Queensland,153.112136,-27.52925 +2024,4,13,1,Queensland,153.105369,-27.52992 +2020,11,23,1,Victoria,146.38513,-38.367553 +2021,2,13,1,South Australia,138.656653,-35.004861 +2024,9,24,1,New South Wales,146.541002,-34.753189 +2023,4,11,1,Queensland,153.093437,-27.528253 +2024,1,26,1,Queensland,153.092178,-27.027292 +2020,11,30,1,New South Wales,153.394509,-28.271479 +2023,6,17,1,Victoria,143.852012,-38.671905 +2023,10,22,1,Queensland,151.995885,-27.40545 +2024,3,2,1,New South Wales,149.472779,-33.758096 +2023,8,30,1,Victoria,143.86085,-38.668067 +2020,1,10,1,Victoria,145.257049,-36.193298 +2023,4,23,1,Queensland,152.866218,-28.211399 +2023,5,19,1,New South Wales,146.530092,-34.745175 +2024,9,24,1,Victoria,146.387768,-38.354832 +2024,10,20,1,Queensland,153.093282,-27.526766 +2024,8,22,1,South Australia,138.727407,-34.864681 +2022,6,20,1,South Australia,138.656737,-34.865333 +2024,1,17,1,Queensland,153.078591,-27.555479 +2024,6,30,1,Queensland,146.868438,-19.126164 +2022,12,5,1,Victoria,142.367085,-38.315837 +2021,1,17,1,Victoria,144.271204,-37.860846 +2024,5,1,1,South Australia,138.720029,-34.891777 +2023,5,3,1,Queensland,153.40454,-27.494399 +2024,8,17,1,New South Wales,153.378355,-28.80432 +2023,1,18,1,Victoria,145.411575,-36.876408 +2020,4,3,1,Queensland,153.05315,-27.539504 +2024,8,12,1,Victoria,141.726796,-38.081626 +2022,4,5,1,Victoria,143.88594,-37.620134 +2020,12,17,1,New South Wales,153.376635,-28.253245 +2024,11,17,1,Queensland,153.090975,-27.526448 +2022,11,7,1,Victoria,146.773192,-38.481069 +2020,4,5,1,New South Wales,151.518969,-30.52002 +2024,11,11,1,Queensland,152.074579,-27.358524 +2023,12,14,1,Queensland,152.677987,-27.98732 +2024,4,21,1,Queensland,153.09276,-27.528481 +2023,12,31,1,Queensland,153.092391,-27.527253 +2023,7,14,1,Queensland,153.111169,-27.527188 +2021,5,21,1,New South Wales,153.404606,-28.260781 +2022,12,11,1,Victoria,145.293258,-38.3106 +2020,9,24,1,New South Wales,153.40054,-28.25768 +2021,6,1,1,Queensland,153.055996,-27.550708 +2023,12,18,1,Queensland,151.749888,-26.155079 +2022,10,1,1,Queensland,152.147261,-27.509969 +2024,10,16,1,South Australia,138.624401,-34.89342 +2023,12,15,1,New South Wales,153.124267,-30.294158 +2024,3,16,1,Queensland,153.092414,-27.52507 +2024,6,22,1,Queensland,153.103242,-27.530402 +2023,2,27,1,Queensland,153.093129,-27.526888 +2024,1,11,1,Victoria,145.268483,-38.130675 +2023,2,4,1,Queensland,152.18373,-27.53098 +2022,11,17,1,Queensland,151.63641,-25.646175 +2020,11,6,1,Queensland,153.051861,-27.548558 +2023,10,28,1,Queensland,153.072281,-27.544951 +2020,10,29,1,Queensland,153.05807,-27.550964 +2023,1,21,1,Queensland,153.103752,-27.53016 +2024,10,29,1,Queensland,153.089673,-27.535054 +2023,10,28,1,Queensland,151.749845,-26.155079 +2023,6,9,1,Queensland,152.905587,-27.395745 +2023,10,28,1,Queensland,153.115005,-27.528796 +2023,10,20,1,Queensland,153.109999,-27.527294 +2023,5,13,1,Queensland,153.093025,-27.528542 +2024,10,3,1,Queensland,152.046137,-27.255994 +2023,2,1,1,Queensland,153.090779,-27.526928 +2022,10,4,1,New South Wales,152.902283,-31.44215 +2024,10,9,1,South Australia,138.4928,-35.188177 +2024,4,25,1,Queensland,153.072115,-27.544536 +2023,1,21,1,South Australia,138.639336,-35.069567 +2023,4,12,1,New South Wales,150.305535,-31.186705 +2021,4,8,1,Victoria,145.27426,-38.129222 +2024,1,21,1,South Australia,138.712966,-34.89127 +2024,3,16,1,Queensland,153.072825,-27.546027 +2021,10,31,1,Queensland,152.617308,-28.132469 +2023,11,10,1,Queensland,153.19019,-27.701741 +2024,5,30,1,Queensland,152.61325,-27.328775 +2022,12,28,1,Queensland,153.104073,-27.529093 +2023,10,11,1,Queensland,152.837168,-27.529735 +2023,11,6,1,Queensland,153.108607,-27.527407 +2024,10,7,1,Queensland,153.091534,-27.527022 +2024,1,2,1,Queensland,153.092568,-27.527208 +2024,1,21,1,New South Wales,150.853401,-34.082316 +2024,1,2,1,New South Wales,150.865602,-34.044691 +2021,1,7,1,Victoria,145.269748,-38.13226 +2023,11,20,1,Victoria,144.125674,-37.906457 +2020,4,19,1,South Australia,138.645044,-35.007458 +2024,8,17,1,Queensland,153.091751,-27.526809 +2022,10,2,1,New South Wales,151.00418,-34.048627 +2022,11,8,1,Victoria,145.331765,-36.999584 +2022,2,9,1,South Australia,138.7155,-34.893177 +2023,1,12,1,South Australia,138.644319,-35.004903 +2024,1,3,1,Queensland,152.102403,-27.56893 +2024,1,1,1,South Australia,137.249772,-35.85857 +2020,12,16,1,New South Wales,153.391221,-28.283114 +2024,1,26,1,Queensland,153.105158,-27.531521 +2020,4,6,1,South Australia,138.686729,-34.958244 +2020,3,2,1,Victoria,143.986414,-38.521429 +2023,10,22,1,Queensland,153.072991,-27.542484 +2020,4,12,1,Victoria,143.744415,-38.54982 +2023,7,25,1,Queensland,151.724503,-27.940455 +2023,11,18,1,Victoria,144.250952,-37.868535 +2024,8,24,1,Queensland,153.449005,-28.095164 +2023,10,16,1,Queensland,151.510697,-27.555475 +2023,10,11,1,Queensland,153.091478,-27.527106 +2024,3,2,1,New South Wales,150.60153,-29.87042 +2020,4,19,1,South Australia,138.654017,-35.009445 +2021,9,6,1,Queensland,152.401594,-27.457904 +2024,8,17,1,Queensland,151.93138,-27.33328 +2021,2,2,1,Victoria,146.163874,-38.671202 +2023,7,30,1,Victoria,145.452438,-37.018232 +2024,3,25,1,South Australia,138.70374,-34.902697 +2020,6,6,1,Victoria,147.729452,-37.925538 +2024,10,2,1,Queensland,153.093043,-27.527005 +2020,3,4,1,Victoria,143.925556,-37.652778 +2023,8,14,1,Queensland,153.103349,-27.530647 +2020,2,16,1,Queensland,153.068443,-27.545795 +2024,8,12,1,Queensland,152.992605,-27.823397 +2020,9,19,1,Victoria,143.614358,-38.553754 +2021,10,20,1,Victoria,146.16382,-38.671162 +2024,2,11,1,Queensland,153.091048,-27.527279 +2020,10,5,1,South Australia,138.74344,-35.029349 +2024,3,24,1,South Australia,138.70162,-34.902241 +2024,5,22,1,Queensland,153.103716,-27.530382 +2020,1,24,1,Queensland,153.058907,-27.548749 +2022,11,27,1,Queensland,153.438169,-27.40097 +2021,3,13,1,Queensland,153.260972,-27.523087 +2023,12,23,1,Queensland,153.091617,-27.52705 +2021,11,12,1,Victoria,145.146029,-37.037407 +2023,5,19,1,Queensland,153.091562,-27.526934 +2023,12,29,1,Queensland,153.094001,-27.524876 +2024,3,31,1,Queensland,153.093072,-27.527752 +2020,10,21,1,Queensland,153.05895,-27.549618 +2020,11,20,1,Victoria,146.165193,-38.670992 +2021,6,9,1,Queensland,153.167925,-27.549238 +2023,4,9,1,Queensland,153.090919,-27.526842 +2024,8,11,1,South Australia,138.683544,-34.90235 +2023,1,31,1,Queensland,153.093048,-27.526566 +2021,12,29,1,Queensland,153.085282,-27.516727 +2024,10,12,1,Queensland,153.093237,-27.52404 +2023,5,11,1,Victoria,145.314801,-38.372906 +2021,4,21,1,South Australia,138.629894,-34.991128 +2022,11,13,1,Queensland,153.400114,-27.498302 +2022,8,27,1,Queensland,153.055552,-27.546888 +2023,9,14,1,Queensland,152.004289,-27.414645 +2022,11,30,1,Queensland,151.931625,-27.327197 +2021,12,3,1,Queensland,153.053227,-27.549638 +2023,5,1,1,Queensland,153.090459,-27.526032 +2022,7,9,1,South Australia,138.68268,-35.129813 +2023,4,1,1,Queensland,153.091204,-27.527891 +2023,1,7,1,Victoria,144.143809,-38.054694 +2023,9,2,1,Victoria,142.36265,-38.318365 +2021,2,15,1,Queensland,153.085495,-27.516547 +2022,11,23,1,South Australia,136.737237,-35.952144 +2023,11,8,1,Queensland,152.003022,-27.414533 +2023,2,20,1,Queensland,153.091403,-27.52677 +2024,2,14,1,Queensland,153.107084,-27.527664 +2020,4,17,1,Queensland,151.634059,-27.723968 +2024,3,28,1,Queensland,151.868462,-26.52166 +2024,5,11,1,Queensland,153.185852,-28.192672 +2021,11,28,1,Queensland,151.554232,-27.723622 +2023,10,31,1,Queensland,152.019619,-26.661952 +2021,11,20,1,Victoria,146.164047,-38.671642 +2021,10,23,1,Queensland,146.868737,-19.126181 +2023,10,1,1,New South Wales,151.963632,-28.567739 +2023,10,17,1,Queensland,152.107016,-27.659354 +2020,3,19,1,South Australia,138.628514,-34.989839 +2022,1,4,1,Victoria,146.388445,-38.354369 +2021,12,11,1,South Australia,138.913536,-34.723414 +2022,1,2,1,South Australia,138.69234,-34.959479 +2024,6,4,1,Victoria,144.277113,-37.868619 +2021,10,9,1,Queensland,153.186252,-28.193193 +2023,7,28,1,Queensland,153.404099,-27.494324 +2023,11,17,1,Queensland,153.19019,-27.701741 +2024,4,24,1,South Australia,138.6593,-34.864353 +2023,12,21,1,South Australia,138.72678,-34.888249 +2022,11,25,1,Victoria,143.522736,-38.833992 +2021,10,17,1,Queensland,153.134095,-27.565113 +2021,5,2,1,South Australia,138.660821,-35.015218 +2023,6,23,1,Queensland,153.109051,-27.529319 +2024,6,8,1,South Australia,138.658131,-35.016926 +2023,12,17,1,South Australia,138.722513,-34.892335 +2020,12,29,1,Victoria,145.277664,-38.129457 +2023,12,27,1,Queensland,151.801159,-26.348586 +2021,3,3,1,Queensland,152.17899,-27.242537 +2023,7,1,1,Queensland,153.09059,-27.527239 +2024,3,3,1,New South Wales,150.477282,-29.786119 +2020,10,3,1,New South Wales,153.376774,-28.253857 +2023,6,26,1,Queensland,151.928467,-27.332875 +2023,2,13,1,Queensland,153.103436,-27.528177 +2024,7,7,1,Queensland,153.093076,-27.526577 +2022,5,12,1,Queensland,152.865924,-28.211449 +2023,11,24,1,New South Wales,153.123961,-30.294088 +2022,4,4,1,South Australia,138.718627,-34.891817 +2024,7,4,1,Victoria,145.180083,-37.048094 +2024,4,13,1,Queensland,153.093001,-27.528265 +2023,8,2,1,Queensland,151.710481,-26.103233 +2021,9,28,1,Queensland,151.772249,-27.389375 +2024,5,13,1,South Australia,138.728084,-34.888694 +2023,9,9,1,Queensland,153.053983,-27.538663 +2021,12,2,1,Queensland,153.074965,-27.539081 +2023,5,11,1,Victoria,145.316495,-38.363651 +2021,2,22,1,Queensland,151.845089,-26.107566 +2024,10,23,1,Queensland,151.809023,-26.363564 +2021,12,5,1,Victoria,141.923111,-38.05955 +2020,4,7,1,New South Wales,153.374145,-28.25745 +2021,4,7,1,Victoria,145.273155,-38.130113 +2023,12,10,1,Victoria,144.047641,-37.724673 +2024,10,21,1,Queensland,152.992493,-27.822692 +2024,4,2,1,Queensland,153.090393,-27.526138 +2024,10,29,1,Queensland,153.110024,-27.526948 +2023,11,28,1,Victoria,143.668669,-38.758617 +2023,12,10,1,Queensland,153.092977,-27.524516 +2022,1,28,1,South Australia,138.733473,-34.890247 +2024,11,9,1,Queensland,153.09223,-27.527992 +2023,9,18,1,Queensland,153.103056,-27.527632 +2024,5,16,1,South Australia,138.720645,-34.887221 +2023,3,15,1,Queensland,153.090857,-27.526665 +2023,5,8,1,South Australia,138.688873,-34.867824 +2021,3,18,1,Queensland,153.056014,-27.552313 +2023,9,7,1,Queensland,153.1875,-28.195128 +2023,9,12,1,Queensland,152.902363,-27.620501 +2024,7,20,1,Queensland,153.090423,-27.525886 +2024,9,9,1,Queensland,152.072736,-27.358825 +2024,1,3,1,Queensland,153.108191,-27.527236 +2023,9,22,1,Queensland,153.101197,-27.508772 +2023,8,22,1,Queensland,151.818986,-26.414921 +2020,3,8,1,New South Wales,153.374145,-28.25745 +2020,2,16,1,Queensland,153.176252,-27.548365 +2023,1,28,1,Queensland,153.092117,-27.527163 +2020,7,17,1,Queensland,153.05806,-27.545458 +2020,2,19,1,Queensland,153.066222,-27.539738 +2024,9,22,1,Queensland,153.158421,-27.656747 +2024,11,6,1,New South Wales,152.361575,-31.926603 +2020,4,16,1,Queensland,153.069937,-27.510559 +2024,10,25,1,Victoria,146.961877,-38.400097 +2021,12,12,1,Queensland,152.948609,-27.976567 +2022,12,21,1,Queensland,153.073779,-27.546316 +2023,12,23,1,Queensland,153.105439,-27.529867 +2020,1,21,1,South Australia,138.736188,-34.830996 +2024,6,28,1,Queensland,153.103662,-27.529556 +2024,3,28,1,Queensland,153.110022,-27.529744 +2024,3,13,1,Queensland,151.934097,-27.328833 +2023,12,23,1,Victoria,147.739034,-37.913446 +2024,1,14,1,New South Wales,151.095099,-33.076316 +2024,9,1,1,Queensland,153.073254,-27.54591 +2020,12,28,1,Victoria,146.164139,-38.671322 +2020,5,18,1,South Australia,138.705919,-34.903209 +2024,9,7,1,Queensland,152.280747,-27.536094 +2021,9,11,1,New South Wales,151.520092,-30.518807 +2022,11,12,1,Queensland,153.069876,-27.51036 +2023,6,20,1,Queensland,153.087345,-27.51555 +2023,3,27,1,Queensland,153.059667,-27.552295 +2024,1,23,1,Queensland,152.560237,-27.37263 +2024,10,21,1,Victoria,143.882211,-37.604726 +2021,10,21,1,Queensland,153.057711,-27.551705 +2023,5,11,1,Queensland,152.857381,-27.54407 +2024,7,21,1,Queensland,153.090959,-27.526821 +2023,12,15,1,Victoria,144.223427,-37.901923 +2024,7,5,1,Queensland,153.092389,-27.524988 +2024,2,20,1,Queensland,153.105786,-27.52945 +2023,5,3,1,Queensland,153.059207,-27.551423 +2024,10,20,1,Queensland,153.399781,-27.498219 +2023,12,27,1,Queensland,153.092116,-27.52569 +2023,3,16,1,Queensland,153.090911,-27.526802 +2024,11,11,1,Queensland,152.900405,-27.648608 +2023,9,12,1,Queensland,153.11056,-27.526878 +2023,6,12,1,Queensland,153.102766,-27.518758 +2022,8,28,1,Queensland,153.37602,-27.918728 +2024,1,6,1,Queensland,153.103932,-27.530047 +2024,9,23,1,New South Wales,151.105052,-33.130598 +2024,5,4,1,Queensland,152.611313,-27.332808 +2023,12,23,1,Victoria,143.473939,-38.804104 +2021,3,22,1,South Australia,138.709868,-35.032585 +2021,11,24,1,Queensland,153.045397,-27.548128 +2024,9,23,1,Queensland,153.375298,-27.914631 +2023,11,7,1,Queensland,153.382004,-27.951853 +2022,11,16,1,South Australia,138.573471,-35.022732 +2023,11,13,1,Queensland,153.10783,-27.526971 +2024,7,28,1,Victoria,145.676981,-35.917777 +2024,4,2,1,South Australia,138.702597,-34.903264 +2022,8,7,1,South Australia,138.712626,-34.905704 +2022,6,13,1,Victoria,143.860805,-38.670072 +2023,3,10,1,Victoria,145.737623,-38.632553 +2021,10,9,1,Victoria,145.268403,-38.131144 +2023,4,8,1,Queensland,153.090941,-27.527017 +2022,11,6,1,Queensland,152.023639,-28.681515 +2022,12,14,1,Queensland,152.04712,-27.265547 +2022,11,23,1,Victoria,143.536653,-38.814158 +2024,10,20,1,Queensland,153.19019,-27.701741 +2022,4,9,1,Victoria,147.728144,-37.922292 +2020,7,30,1,Queensland,153.057933,-27.5509 +2020,4,28,1,Victoria,143.878536,-37.63247 +2024,6,9,1,Queensland,153.073214,-27.547904 +2023,11,27,1,Victoria,143.863321,-38.509752 +2023,11,26,1,New South Wales,153.124726,-30.296043 +2021,12,25,1,South Australia,138.733365,-34.888196 +2023,1,23,1,Queensland,153.074498,-27.546115 +2023,11,26,1,Queensland,151.566974,-27.629498 +2022,10,6,1,Victoria,149.751678,-37.54858 +2021,1,21,1,Queensland,153.069807,-27.510406 +2022,1,4,1,Queensland,152.975767,-27.272102 +2020,6,20,1,Queensland,153.069852,-27.510413 +2020,11,15,1,Queensland,153.038273,-27.548265 +2020,11,13,1,Queensland,153.07126,-27.544905 +2024,4,16,1,South Australia,138.730935,-34.889003 +2020,11,7,1,Queensland,153.058197,-27.547187 +2022,6,26,1,Queensland,153.083654,-27.516265 +2022,6,20,1,Queensland,153.062418,-27.546241 +2024,3,17,1,Queensland,153.093052,-27.527699 +2023,3,9,1,Queensland,153.363724,-27.914838 +2024,10,5,1,Queensland,153.150392,-27.712356 +2023,8,27,1,Queensland,151.811778,-26.362941 +2021,8,6,1,Queensland,152.846747,-27.491287 +2020,10,17,1,Victoria,145.268676,-38.131381 +2024,8,8,1,Queensland,153.073747,-27.540181 +2021,10,23,1,Victoria,144.515766,-37.458253 +2024,5,23,1,South Australia,138.735748,-34.88782 +2022,7,5,1,South Australia,138.729445,-34.889864 +2020,6,7,1,New South Wales,153.377448,-28.254282 +2024,4,17,1,Victoria,142.364377,-38.318633 +2020,10,10,1,Queensland,152.971427,-27.288523 +2021,10,19,1,Queensland,152.89619,-27.538248 +2023,6,14,1,Queensland,153.08708,-27.510761 +2024,10,21,1,South Australia,138.69403,-34.86258 +2024,5,20,1,South Australia,138.716654,-34.874985 +2024,6,15,1,Queensland,153.110251,-27.527062 +2024,2,13,1,Queensland,153.092735,-27.528023 +2023,4,28,1,Queensland,153.093141,-27.527847 +2023,9,18,1,Queensland,153.113386,-27.528413 +2020,11,6,1,New South Wales,153.376671,-28.253621 +2020,9,18,1,South Australia,138.745388,-34.829907 +2022,9,27,1,Queensland,152.989472,-27.168653 +2020,4,12,1,Queensland,153.070454,-27.545319 +2023,11,13,1,New South Wales,153.301697,-28.818422 +2022,2,14,1,New South Wales,152.482333,-32.396424 +2024,5,21,1,South Australia,138.722452,-34.891643 +2024,7,27,1,Queensland,153.381234,-27.904407 +2023,3,15,1,Queensland,153.053773,-27.553101 +2024,1,27,1,Queensland,151.624908,-27.631503 +2022,6,9,1,Queensland,153.427674,-27.498313 +2021,2,16,1,South Australia,138.638266,-34.971157 +2021,10,19,1,New South Wales,153.377282,-28.253834 +2020,11,25,1,Queensland,144.733415,-24.740954 +2024,5,25,1,Victoria,144.31108,-37.517192 +2024,9,18,1,Queensland,152.997726,-27.434036 +2023,11,14,1,Queensland,153.093551,-27.525437 +2023,5,22,1,Queensland,153.103566,-27.528276 +2023,6,24,1,Queensland,152.074709,-27.358733 +2023,8,10,1,Queensland,152.04645,-27.256782 +2023,8,27,1,Queensland,146.868972,-19.13123 +2023,4,18,1,Queensland,153.092259,-27.52831 +2023,7,17,1,Queensland,151.716263,-27.56738 +2024,10,28,1,South Australia,138.747999,-34.829332 +2020,9,13,1,Queensland,153.058583,-27.547468 +2020,9,25,1,New South Wales,153.376817,-28.253914 +2023,6,28,1,Queensland,153.057848,-27.551863 +2024,7,13,1,Queensland,153.105165,-27.530444 +2024,4,28,1,Queensland,153.356772,-27.938924 +2022,10,30,1,Queensland,153.08355,-27.513 +2022,3,3,1,Victoria,144.282423,-37.842747 +2024,3,16,1,Victoria,147.730877,-37.925052 +2024,4,18,1,South Australia,138.715217,-34.892644 +2022,2,19,1,Victoria,147.728371,-37.921958 +2021,10,23,1,Victoria,146.164122,-38.671428 +2024,3,22,1,Queensland,153.10733,-27.527386 +2023,8,20,1,Queensland,152.902291,-27.629478 +2024,1,12,1,Queensland,153.072095,-27.542635 +2021,11,21,1,Victoria,146.389846,-38.356608 +2021,9,25,1,South Australia,138.583182,-35.037028 +2024,9,7,1,Queensland,153.090902,-27.527664 +2024,7,18,1,Queensland,153.090265,-27.526605 +2021,3,19,1,Queensland,153.057504,-27.551123 +2020,4,5,1,Queensland,153.068395,-27.546074 +2022,10,13,1,Victoria,143.976638,-38.552587 +2023,1,9,1,Victoria,145.316128,-38.367914 +2023,10,7,1,Queensland,152.102464,-27.568742 +2023,3,18,1,Queensland,153.10764,-27.527127 +2021,9,14,1,South Australia,138.727337,-34.887162 +2023,7,22,1,Queensland,151.974838,-26.161403 +2023,1,14,1,New South Wales,150.916459,-34.040974 +2021,12,23,1,Victoria,143.882733,-37.657846 +2023,8,20,1,Queensland,152.991959,-27.823995 +2020,4,17,1,New South Wales,153.376935,-28.254076 +2023,8,27,1,South Australia,138.704211,-34.93482 +2020,11,18,1,Queensland,153.05452,-27.543757 +2024,5,3,1,South Australia,138.734438,-34.887761 +2021,5,25,1,Queensland,153.060132,-27.550374 +2021,9,28,1,Victoria,145.672493,-38.351106 +2022,8,31,1,Queensland,152.08463,-27.69736 +2023,12,19,1,Queensland,153.109443,-27.528214 +2020,3,1,1,New South Wales,153.374145,-28.25745 +2024,4,6,1,Queensland,153.091978,-27.52587 +2022,12,29,1,Queensland,153.438311,-27.40097 +2023,10,28,1,Queensland,151.771821,-26.179232 +2023,5,27,1,Queensland,152.859895,-27.54652 +2022,8,20,1,South Australia,138.656932,-35.017496 +2022,11,24,1,Queensland,143.911039,-18.628372 +2023,11,30,1,Victoria,143.891846,-38.630697 +2023,1,8,1,Victoria,146.030801,-38.646125 +2024,7,30,1,New South Wales,150.57123,-29.873872 +2021,12,26,1,Victoria,146.164011,-38.671312 +2022,9,30,1,Victoria,145.58628,-37.046972 +2024,1,12,1,Victoria,141.606334,-38.348888 +2024,10,7,1,Queensland,152.993608,-27.823745 +2022,10,12,1,Queensland,153.224913,-27.854513 +2022,11,3,1,Queensland,152.108867,-26.808295 +2024,7,14,1,Queensland,153.371872,-27.905668 +2022,3,13,1,Victoria,142.578583,-38.329819 +2024,7,1,1,South Australia,138.719293,-34.986404 +2024,4,13,1,Queensland,152.620072,-27.3997 +2022,9,18,1,Queensland,151.584867,-28.915914 +2024,11,23,1,Queensland,152.074889,-27.35872 +2024,7,13,1,New South Wales,153.62919,-28.637355 +2020,6,27,1,New South Wales,151.520479,-30.520765 +2022,2,1,1,Queensland,153.070361,-27.509542 +2022,4,29,1,Queensland,153.172266,-27.552625 +2020,7,3,1,Victoria,143.897439,-37.572636 +2024,4,27,1,Queensland,153.112827,-27.527719 +2023,12,12,1,Queensland,153.106545,-27.529007 +2023,10,8,1,New South Wales,152.913792,-30.494295 +2024,7,14,1,Queensland,153.090737,-27.526894 +2024,2,6,1,New South Wales,150.564019,-29.546154 +2023,11,12,1,Queensland,152.616945,-27.305063 +2021,7,12,1,Queensland,153.10436,-27.53046 +2024,1,16,1,Queensland,153.091091,-27.527414 +2021,10,28,1,Victoria,146.163758,-38.670972 +2024,10,18,1,South Australia,138.852439,-34.733638 +2022,11,6,1,Victoria,145.715363,-38.637853 +2023,12,17,1,Queensland,151.749888,-26.155079 +2023,5,29,1,Queensland,153.105336,-27.529364 +2022,11,13,1,Queensland,153.07315,-27.542345 +2021,7,17,1,Queensland,153.05446,-27.550351 +2023,6,4,1,Queensland,153.090798,-27.527153 +2023,6,25,1,Queensland,153.000852,-27.284473 +2024,2,24,1,Victoria,145.412278,-38.32599 +2024,2,25,1,Victoria,144.101327,-37.525653 +2023,12,2,1,Queensland,152.874262,-27.494149 +2023,10,7,1,Queensland,153.07029,-27.509244 +2022,12,31,1,Queensland,153.437806,-27.400244 +2022,12,4,1,Queensland,153.054509,-27.541575 +2024,4,27,1,Queensland,153.093582,-27.52813 +2024,8,10,1,Queensland,152.677643,-27.986088 +2023,6,20,1,Queensland,153.085566,-27.516779 +2021,2,1,1,Queensland,153.054342,-27.552014 +2024,4,10,1,Victoria,144.135963,-37.961855 +2022,6,4,1,Queensland,153.073819,-27.226908 +2024,11,5,1,Queensland,153.091707,-27.527146 +2024,7,7,1,Queensland,151.782282,-26.309007 +2020,3,29,1,South Australia,138.676619,-35.083789 +2023,6,21,1,Victoria,141.9131,-38.063204 +2024,1,5,1,Queensland,153.110378,-27.527733 +2021,2,5,1,Queensland,153.058401,-27.551362 +2023,8,31,1,Queensland,152.04514,-27.256267 +2023,2,28,1,Queensland,153.090832,-27.526873 +2024,2,27,1,Queensland,153.103432,-27.530594 +2022,11,4,1,Queensland,151.527695,-27.717725 +2022,8,8,1,Queensland,152.934061,-28.038718 +2020,8,27,1,Queensland,153.057493,-27.551011 +2021,5,2,1,South Australia,138.671849,-35.015953 +2024,11,11,1,Queensland,152.003922,-27.413678 +2023,11,3,1,Queensland,151.588069,-27.799291 +2021,9,24,1,Queensland,152.246244,-27.49746 +2024,9,22,1,Queensland,153.091717,-27.527221 +2021,8,21,1,Victoria,143.622982,-38.79212 +2024,5,3,1,Queensland,153.09231,-27.52733 +2022,1,15,1,Queensland,151.884333,-26.31377 +2021,5,18,1,Victoria,145.870923,-38.702865 +2024,7,21,1,Queensland,153.092184,-27.528199 +2023,6,21,1,Victoria,145.79155,-36.803439 +2023,7,2,1,Queensland,153.092757,-27.525293 +2024,4,14,1,Queensland,153.09078,-27.527238 +2024,11,5,1,Queensland,153.399628,-27.497712 +2022,9,11,1,New South Wales,153.394343,-28.275774 +2023,5,14,1,Victoria,143.37149,-38.731935 +2020,9,5,1,New South Wales,150.868628,-29.62333 +2020,8,10,1,Queensland,153.057381,-27.551099 +2024,11,9,1,Queensland,153.091802,-27.525864 +2023,10,25,1,Queensland,149.881595,-26.043813 +2023,8,5,1,Queensland,153.111351,-27.527081 +2024,8,24,1,Queensland,153.09373,-27.526073 +2020,7,10,1,South Australia,138.613493,-34.903239 +2020,6,16,1,Queensland,152.859615,-27.542516 +2021,4,17,1,Queensland,153.069741,-27.510503 +2020,3,18,1,Victoria,142.53937,-38.388312 +2020,10,10,1,Queensland,153.037288,-27.53268 +2021,10,23,1,South Australia,138.636317,-34.990131 +2022,9,1,1,Queensland,152.553625,-27.116162 +2024,6,14,1,Queensland,152.058486,-27.298356 +2021,8,31,1,New South Wales,153.395046,-28.27573 +2023,6,10,1,Queensland,153.093397,-27.526119 +2022,4,1,1,New South Wales,146.534697,-34.755847 +2023,10,2,1,Queensland,153.110927,-27.529894 +2023,9,17,1,Queensland,151.94645,-27.423441 +2022,9,3,1,South Australia,138.674889,-35.085776 +2020,3,11,1,Queensland,153.059395,-27.549119 +2021,9,12,1,Queensland,153.488758,-27.534663 +2023,3,22,1,Victoria,143.477311,-38.8021 +2024,11,11,1,Queensland,153.40012,-27.496505 +2024,8,15,1,Victoria,141.733129,-38.081575 +2024,11,17,1,Queensland,153.090589,-27.525965 +2024,8,11,1,Queensland,153.093696,-27.525 +2022,1,22,1,Queensland,152.809814,-26.106639 +2023,3,1,1,New South Wales,151.519469,-30.519123 +2022,12,9,1,Queensland,153.113396,-27.528419 +2024,1,25,1,South Australia,138.68387,-34.866353 +2024,5,23,1,South Australia,138.7354,-34.888844 +2023,11,19,1,Queensland,152.0452,-27.258789 +2023,11,26,1,Queensland,153.093113,-27.528028 +2024,9,30,1,South Australia,138.71881,-34.891902 +2022,1,26,1,Queensland,153.078314,-27.506839 +2022,8,30,1,Queensland,153.072931,-27.545991 +2023,10,18,1,Queensland,151.064812,-25.180047 +2023,2,17,1,Queensland,153.103259,-27.530191 +2024,8,10,1,Queensland,153.090374,-27.526869 +2023,8,12,1,Queensland,153.09362,-27.524975 +2022,2,6,1,South Australia,138.652492,-35.011051 +2024,10,25,1,Queensland,153.070111,-27.510569 +2023,7,16,1,New South Wales,152.99286,-30.559952 +2023,7,6,1,Queensland,152.627741,-27.91123 +2023,3,30,1,New South Wales,153.400609,-28.257962 +2023,10,16,1,Queensland,153.107799,-27.527091 +2024,10,13,1,South Australia,138.729688,-34.988688 +2021,4,24,1,Victoria,141.72554,-38.133911 +2021,12,18,1,Queensland,152.572219,-28.072119 +2022,6,16,1,Queensland,148.695147,-21.628031 +2024,8,17,1,Queensland,153.091619,-27.526931 +2022,11,9,1,Queensland,153.072144,-27.543936 +2024,11,15,1,Queensland,152.974028,-27.297682 +2023,10,14,1,Queensland,153.092241,-27.528223 +2020,10,12,1,Queensland,153.053547,-27.546278 +2020,9,18,1,South Australia,138.727076,-34.83254 +2021,12,12,1,Queensland,153.078662,-27.499555 +2023,12,26,1,Queensland,153.07226,-27.545203 +2021,6,20,1,Queensland,153.055861,-27.544062 +2024,4,1,1,Queensland,153.093231,-27.525106 +2024,9,1,1,New South Wales,150.599326,-29.869445 +2023,12,30,1,Queensland,153.102401,-27.734951 +2020,10,17,1,South Australia,138.744377,-34.8289 +2023,6,24,1,Queensland,148.68862,-21.691184 +2020,10,10,1,Queensland,153.072499,-27.549269 +2023,4,29,1,South Australia,138.734366,-34.886939 +2020,2,17,1,Queensland,153.062251,-27.550167 +2023,10,15,1,Queensland,153.09157,-27.527182 +2020,6,28,1,Victoria,146.025885,-38.658771 +2024,3,21,1,Queensland,153.245023,-27.49036 +2024,5,9,1,South Australia,138.730917,-34.874074 +2021,12,17,1,Victoria,144.444569,-37.961838 +2023,7,6,1,Queensland,152.722353,-27.740362 +2023,6,2,1,Queensland,153.098458,-27.567088 +2020,5,2,1,Queensland,153.062075,-27.54495 +2023,6,25,1,Queensland,153.091701,-27.527165 +2022,10,26,1,Victoria,144.08732,-37.633674 +2022,3,7,1,New South Wales,151.517939,-30.520949 +2023,4,10,1,Queensland,153.103352,-27.527826 +2021,9,21,1,Queensland,153.048821,-27.550049 +2020,12,10,1,New South Wales,151.077558,-29.776204 +2024,4,6,1,Queensland,153.031165,-27.302132 +2022,10,3,1,Queensland,152.15245,-27.4909 +2022,9,26,1,Victoria,145.250611,-38.238802 +2024,5,3,1,Queensland,153.074625,-27.547025 +2022,9,10,1,Queensland,152.620983,-27.418037 +2023,11,17,1,Queensland,151.54195,-27.673333 +2024,1,29,1,Queensland,152.609955,-27.396605 +2024,1,20,1,Queensland,153.093118,-27.524124 +2023,7,28,1,Queensland,153.107366,-27.527332 +2024,10,22,1,Victoria,141.541867,-38.049833 +2022,10,27,1,Queensland,153.073508,-27.545379 +2024,9,3,1,South Australia,138.732213,-34.890056 +2024,9,30,1,Queensland,151.716217,-27.56887 +2023,3,30,1,New South Wales,150.829887,-34.158907 +2024,11,20,1,New South Wales,150.885317,-34.033873 +2021,12,11,1,South Australia,138.575211,-35.079822 +2023,7,22,1,New South Wales,153.400741,-28.257846 +2024,5,28,1,Queensland,153.103905,-27.530309 +2024,8,25,1,Queensland,145.396347,-17.959692 +2024,4,30,1,South Australia,138.733997,-34.887435 +2024,7,21,1,Queensland,153.104707,-27.52972 +2023,8,1,1,Victoria,143.516637,-38.833435 +2024,5,26,1,Queensland,153.091208,-27.527207 +2024,6,3,1,New South Wales,153.289363,-29.042258 +2022,3,2,1,Victoria,145.37699,-37.837069 +2022,11,12,1,Queensland,151.929413,-27.331133 +2022,11,19,1,Victoria,144.592442,-37.329462 +2020,1,4,1,New South Wales,153.400454,-28.258552 +2024,11,8,1,Victoria,145.321668,-37.065486 +2022,12,2,1,Victoria,144.275737,-37.840133 +2023,4,18,1,Queensland,153.103601,-27.530676 +2020,10,5,1,New South Wales,153.377504,-28.254396 +2024,8,14,1,Victoria,146.004089,-38.80913 +2021,9,8,1,New South Wales,153.402724,-28.258361 +2023,3,31,1,Queensland,153.109899,-27.529812 +2023,10,17,1,Queensland,153.371902,-27.90399 +2024,10,28,1,South Australia,138.626886,-34.891618 +2023,8,22,1,Victoria,143.513138,-38.835512 +2024,9,21,1,New South Wales,151.150244,-33.103934 +2023,12,28,1,Queensland,153.111314,-27.52783 +2023,11,21,1,South Australia,138.647469,-34.977588 +2023,6,3,1,Queensland,153.111458,-27.527345 +2023,10,24,1,South Australia,138.63645,-35.007874 +2020,2,8,1,South Australia,138.707324,-34.905615 +2022,11,19,1,Queensland,151.560487,-27.805075 +2023,4,23,1,Queensland,153.092254,-27.528029 +2020,4,22,1,Queensland,152.82703,-26.70477 +2024,8,3,1,Queensland,153.091537,-27.527173 +2024,9,10,1,Victoria,143.888038,-37.655435 +2024,2,24,1,South Australia,138.7202,-34.887322 +2024,5,30,1,New South Wales,150.585835,-29.857165 +2023,7,21,1,Queensland,153.356814,-27.93898 +2023,7,6,1,Queensland,153.091549,-27.527141 +2024,6,20,1,Queensland,152.761372,-27.866582 +2023,11,27,1,Queensland,153.110181,-27.527295 +2021,10,20,1,Victoria,143.996071,-37.689874 +2024,2,21,1,Queensland,151.598562,-27.800783 +2024,10,12,1,Queensland,153.09223,-27.52538 +2024,9,20,1,Queensland,152.074464,-27.358252 +2022,3,26,1,Victoria,146.30818,-38.598545 +2023,4,30,1,Queensland,153.004987,-27.242191 +2024,11,10,1,New South Wales,151.095373,-33.076721 +2024,6,15,1,Queensland,153.105176,-27.53145 +2023,8,22,1,New South Wales,145.563038,-35.81558 +2024,3,10,1,Queensland,153.091288,-27.527327 +2024,5,27,1,Victoria,145.749919,-37.913233 +2023,12,22,1,Queensland,151.245255,-28.164133 +2022,2,17,1,Victoria,144.266602,-37.862318 +2023,8,18,1,Queensland,153.070152,-27.510628 +2023,11,19,1,South Australia,138.814863,-35.282878 +2021,9,1,1,New South Wales,149.825943,-29.463876 +2023,7,6,1,Victoria,143.897181,-37.596126 +2024,10,22,1,Queensland,153.092065,-27.527167 +2023,10,15,1,Queensland,153.036405,-27.534536 +2023,11,4,1,Queensland,153.092377,-27.524908 +2023,6,20,1,Queensland,153.086661,-27.516094 +2021,11,26,1,New South Wales,150.802803,-34.167072 +2024,9,21,1,Queensland,153.09223,-27.527741 +2022,10,15,1,Queensland,152.926264,-27.275294 +2023,11,14,1,Queensland,151.612215,-27.814154 +2024,8,12,1,Queensland,152.992605,-27.823397 +2023,1,26,1,Queensland,151.873794,-26.507657 +2021,10,1,1,Queensland,153.4381,-27.400953 +2024,4,8,1,South Australia,138.649576,-35.00843 +2023,9,10,1,Queensland,151.909219,-26.57322 +2024,4,6,1,Queensland,153.090659,-27.526564 +2022,12,23,1,Queensland,153.073563,-27.545762 +2020,6,6,1,New South Wales,153.376929,-28.254303 +2022,1,22,1,Queensland,152.931103,-27.275748 +2022,3,27,1,New South Wales,146.589783,-34.769853 +2024,1,28,1,New South Wales,152.48843,-32.395327 +2020,5,6,1,Queensland,153.373643,-27.905452 +2024,3,19,1,Queensland,153.104506,-27.52984 +2023,9,9,1,Queensland,153.000846,-27.284458 +2024,10,19,1,Queensland,153.104701,-27.527939 +2024,10,11,1,Queensland,153.104307,-27.52988 +2024,4,30,1,South Australia,138.730019,-34.89026 +2024,7,6,1,Queensland,153.051092,-27.526605 +2024,3,31,1,Victoria,146.386225,-38.354956 +2022,10,15,1,Victoria,143.859695,-38.671713 +2023,6,25,1,Queensland,153.448948,-28.096722 +2021,8,17,1,South Australia,138.514258,-35.13445 +2021,8,28,1,Victoria,145.161224,-38.259739 +2020,1,21,1,Victoria,146.008781,-38.577006 +2024,1,9,1,South Australia,138.718878,-34.891604 +2024,5,28,1,South Australia,138.778216,-34.881371 +2023,5,4,1,Queensland,153.091564,-27.527116 +2022,12,15,1,Queensland,153.073271,-27.54582 +2022,11,26,1,Queensland,152.658589,-26.236147 +2022,6,14,1,South Australia,138.656463,-34.86533 +2020,9,13,1,South Australia,138.917575,-34.750875 +2022,3,22,1,Queensland,153.377553,-27.917903 +2022,4,27,1,Queensland,153.054859,-27.537684 +2024,8,29,1,Queensland,153.113953,-27.528553 +2021,5,15,1,Queensland,153.074621,-27.550112 +2020,10,18,1,Queensland,153.217786,-27.547488 +2024,11,3,1,Queensland,153.092031,-27.527215 +2023,10,7,1,Queensland,153.092,-27.527199 +2024,7,17,1,Queensland,153.053061,-27.543516 +2023,10,23,1,Queensland,151.841184,-26.369191 +2024,1,2,1,Queensland,153.092494,-27.527265 +2024,10,11,1,Queensland,153.073299,-27.546002 +2024,5,7,1,Queensland,153.103384,-27.530504 +2023,1,6,1,Queensland,153.104064,-27.529766 +2022,3,22,1,New South Wales,151.519051,-30.521293 +2022,1,13,1,South Australia,138.672131,-34.951232 +2020,11,23,1,Victoria,143.921124,-37.649804 +2021,12,11,1,South Australia,138.574954,-35.079572 +2022,1,12,1,South Australia,138.65615,-34.866415 +2023,6,18,1,Victoria,143.856628,-38.670467 +2023,1,4,1,Queensland,153.105384,-27.529449 +2024,1,9,1,Queensland,153.108411,-27.527289 +2024,10,20,1,South Australia,138.703098,-34.903203 +2024,11,8,1,Queensland,153.054373,-27.55272 +2024,11,9,1,Queensland,153.07221,-27.54434 +2024,11,3,1,Queensland,153.091546,-27.527193 +2024,10,7,1,Queensland,153.093843,-27.52765 +2024,7,23,1,Queensland,152.678027,-27.9873 +2024,1,7,1,New South Wales,151.638997,-30.474959 +2022,12,12,1,Victoria,143.884329,-37.628514 +2021,8,25,1,Queensland,152.08675,-27.695017 +2022,7,25,1,Queensland,153.058474,-27.547921 +2022,11,23,1,Victoria,143.44372,-38.54212 +2023,6,29,1,South Australia,138.542501,-34.917502 +2024,8,25,1,Queensland,153.092117,-27.524421 +2024,10,1,1,Queensland,153.054523,-27.552293 +2022,8,20,1,Queensland,153.108978,-27.528872 +2022,4,26,1,Queensland,151.94139,-26.242101 +2022,3,29,1,South Australia,138.685923,-34.959749 +2022,10,19,1,Victoria,145.08104,-38.286999 +2023,7,31,1,Queensland,153.112152,-27.529819 +2023,9,9,1,Queensland,152.921172,-27.283225 +2023,1,16,1,South Australia,138.637967,-34.96959 +2023,9,11,1,New South Wales,152.906778,-31.44093 +2024,4,10,1,Victoria,144.421677,-37.939759 +2020,5,15,1,Queensland,152.947388,-27.278278 +2024,8,24,1,Queensland,152.102447,-27.568863 +2024,4,30,1,South Australia,138.731821,-34.890073 +2023,7,7,1,Queensland,153.106547,-27.529269 +2023,7,10,1,South Australia,138.717489,-34.871883 +2020,3,27,1,New South Wales,151.517939,-30.520949 +2022,1,8,1,Victoria,146.090274,-38.238759 +2023,8,21,1,Queensland,153.108127,-27.526922 +2022,10,17,1,Queensland,152.946192,-27.259837 +2023,6,2,1,New South Wales,146.486053,-34.699642 +2020,4,25,1,Queensland,153.045428,-27.547818 +2024,2,13,1,Queensland,151.745912,-26.15627 +2022,11,12,1,Queensland,152.15904,-27.50403 +2023,1,18,1,Queensland,153.105166,-27.529176 +2021,10,3,1,Queensland,153.289845,-27.983143 +2024,10,19,1,Victoria,141.849076,-37.677495 +2021,9,8,1,New South Wales,149.331147,-33.681072 +2023,10,30,1,Queensland,152.003219,-27.41278 +2024,10,5,1,Queensland,153.376199,-27.920167 +2020,6,17,1,New South Wales,153.377385,-28.253958 +2024,5,23,1,South Australia,138.730134,-34.890257 +2023,11,28,1,Victoria,144.989853,-38.401322 +2024,8,24,1,Queensland,153.078414,-27.506313 +2023,12,4,1,Queensland,152.057709,-27.265081 +2021,10,10,1,New South Wales,153.378516,-28.255373 +2021,3,21,1,Victoria,146.163864,-38.67128 +2024,5,25,1,Victoria,143.158264,-38.245531 +2024,10,2,1,Queensland,153.090752,-27.525812 +2020,11,3,1,Queensland,152.248252,-27.496345 +2022,12,21,1,Queensland,153.104063,-27.528447 +2024,6,12,1,South Australia,138.731602,-34.889174 +2020,7,27,1,Queensland,151.7939,-26.428908 +2024,7,6,1,South Australia,137.296183,-35.709086 +2024,3,15,1,Victoria,145.262182,-38.484579 +2023,10,13,1,Queensland,153.108959,-27.527079 +2023,9,25,1,Queensland,153.132031,-27.792254 +2020,11,7,1,New South Wales,151.695687,-32.23974 +2020,9,8,1,Queensland,153.033118,-27.539771 +2023,8,27,1,Queensland,153.247087,-27.490308 +2023,8,1,1,Queensland,151.7974,-26.584787 +2022,10,4,1,Queensland,153.072255,-27.543779 +2023,11,12,1,Victoria,144.310672,-37.268309 +2024,1,9,1,Victoria,145.268433,-38.130478 +2023,11,8,1,Queensland,152.623889,-27.869904 +2023,6,21,1,Queensland,151.519485,-27.718727 +2024,10,11,1,Queensland,153.111494,-27.527713 +2023,4,18,1,Queensland,153.093055,-27.52832 +2024,10,8,1,Queensland,153.373474,-27.917501 +2024,5,5,1,Queensland,146.870697,-19.131619 +2024,3,9,1,Queensland,153.090834,-27.526417 +2022,10,11,1,Queensland,153.073534,-27.545833 +2023,8,22,1,Queensland,151.821721,-26.444526 +2024,4,27,1,Queensland,153.091485,-27.527323 +2022,8,14,1,Victoria,145.241017,-38.256137 +2021,8,21,1,Queensland,153.069691,-27.507273 +2024,7,6,1,Queensland,153.048506,-27.528169 +2024,3,21,1,Victoria,142.038208,-38.205528 +2023,9,18,1,Queensland,152.644816,-27.89984 +2022,5,24,1,Queensland,153.0735,-27.553908 +2020,11,16,1,Queensland,153.057724,-27.553308 +2024,10,29,1,Queensland,152.064042,-27.261822 +2023,2,26,1,Queensland,151.892166,-27.597197 +2022,3,7,1,New South Wales,153.400692,-28.257978 +2024,6,23,1,Queensland,153.092319,-27.525683 +2022,1,22,1,Victoria,146.396651,-38.365195 +2023,12,11,1,Queensland,152.029073,-26.207567 +2021,11,16,1,Queensland,153.051286,-27.542147 +2023,3,7,1,Queensland,153.091867,-27.526926 +2023,10,23,1,Queensland,153.151142,-27.583787 +2021,11,13,1,Queensland,153.076435,-27.817279 +2021,8,25,1,Queensland,152.08734,-27.70049 +2024,3,21,1,Queensland,153.253097,-27.508897 +2024,4,7,1,New South Wales,150.828708,-29.655252 +2024,9,25,1,Victoria,142.363106,-38.319097 +2023,10,31,1,Queensland,153.109427,-27.528074 +2024,1,21,1,Victoria,144.084489,-37.63308 +2021,1,11,1,Victoria,146.164214,-38.671283 +2024,7,7,1,Queensland,153.066816,-27.250419 +2022,7,14,1,Victoria,143.890896,-37.641977 +2024,2,8,1,South Australia,138.733406,-34.890354 +2021,1,5,1,Victoria,147.733783,-37.924577 +2023,11,20,1,Victoria,149.740203,-37.530031 +2023,8,20,1,Queensland,153.084231,-27.511737 +2023,4,17,1,Queensland,153.111113,-27.528253 +2021,11,1,1,Victoria,146.163777,-38.671069 +2023,12,31,1,Queensland,153.091619,-27.527093 +2024,7,14,1,Queensland,153.090736,-27.52614 +2022,8,21,1,Victoria,145.25097,-38.23991 +2023,10,20,1,Queensland,151.710237,-27.649083 +2023,3,27,1,Victoria,143.997013,-37.689564 +2024,3,25,1,Queensland,152.609147,-27.398453 +2022,11,19,1,Victoria,143.033906,-38.492792 +2024,4,30,1,South Australia,138.620945,-34.894579 +2020,7,24,1,South Australia,138.690314,-34.954243 +2023,10,20,1,Queensland,151.563152,-27.694228 +2023,9,9,1,Queensland,153.092304,-27.527327 +2021,4,5,1,South Australia,138.633056,-35.009105 +2024,3,23,1,Queensland,152.074568,-27.358444 +2024,2,7,1,South Australia,138.584508,-35.096814 +2023,3,28,1,Victoria,147.730667,-37.923896 +2024,10,20,1,Queensland,151.583695,-27.643437 +2023,4,16,1,Queensland,153.090356,-27.525993 +2023,12,6,1,Queensland,153.110368,-27.527412 +2023,11,24,1,Victoria,143.860794,-38.668372 +2023,9,2,1,Queensland,152.257149,-27.301966 +2024,11,10,1,Queensland,151.816476,-26.407815 +2022,2,2,1,Queensland,152.844605,-27.344178 +2023,11,26,1,New South Wales,153.628928,-28.639571 +2021,3,7,1,Queensland,153.058262,-27.547984 +2024,4,1,1,Queensland,153.103899,-27.528994 +2024,6,17,1,Queensland,153.102355,-27.529589 +2023,1,17,1,South Australia,138.588589,-35.016612 +2020,11,3,1,Victoria,145.301955,-37.064003 +2023,7,1,1,Queensland,153.092238,-27.527783 +2023,9,22,1,Queensland,153.084718,-27.509151 +2021,8,17,1,New South Wales,151.729656,-32.398247 +2024,2,8,1,South Australia,138.733425,-34.890393 +2020,12,6,1,Queensland,153.058179,-27.547435 +2020,12,22,1,New South Wales,153.377515,-28.254098 +2024,3,3,1,South Australia,138.71482,-34.892208 +2024,2,14,1,South Australia,138.715403,-35.015223 +2021,10,30,1,New South Wales,149.377293,-31.139247 +2022,10,10,1,South Australia,138.721278,-34.892107 +2024,10,17,1,Queensland,152.99193,-27.823057 +2023,10,17,1,Queensland,153.371552,-27.905991 +2021,10,21,1,Queensland,153.058243,-27.551094 +2023,1,22,1,Queensland,152.865973,-28.21145 +2021,7,10,1,Victoria,141.220722,-38.061359 +2021,9,17,1,Queensland,153.034181,-27.540786 +2021,7,17,1,Queensland,153.05734,-27.550799 +2023,12,23,1,Queensland,153.103539,-27.530047 +2024,1,3,1,Queensland,153.108273,-27.527264 +2024,10,12,1,Victoria,142.630255,-38.341508 +2022,3,2,1,Queensland,152.604846,-28.163892 +2024,2,2,1,New South Wales,150.601266,-29.870372 +2022,5,21,1,Queensland,152.859418,-28.216064 +2023,12,26,1,Victoria,144.094772,-37.623783 +2023,11,3,1,Queensland,153.092012,-27.527208 +2024,4,19,1,Victoria,143.524482,-38.836303 +2021,10,22,1,New South Wales,151.518926,-30.520925 +2021,11,4,1,Queensland,153.078042,-27.87286 +2022,2,17,1,Queensland,152.613349,-27.339159 +2024,10,16,1,South Australia,138.648814,-35.004125 +2020,4,19,1,South Australia,138.652201,-35.009201 +2024,8,26,1,Queensland,151.802522,-26.157177 +2024,8,4,1,Queensland,152.892727,-27.635536 +2020,12,18,1,New South Wales,153.400586,-28.257925 +2022,9,25,1,Queensland,152.857309,-27.544032 +2021,11,26,1,Victoria,146.164064,-38.671367 +2022,7,19,1,Victoria,142.363663,-38.31852 +2022,3,27,1,Queensland,153.050485,-27.545217 +2022,2,13,1,Queensland,153.074647,-27.251092 +2022,9,6,1,Queensland,152.897749,-27.655167 +2024,6,2,1,Queensland,153.103742,-27.530315 +2024,3,9,1,Queensland,153.092368,-27.525714 +2023,7,13,1,Queensland,153.052702,-27.553178 +2024,6,18,1,New South Wales,151.095387,-33.076681 +2024,10,20,1,South Australia,138.703036,-34.903199 +2021,12,23,1,Victoria,145.134481,-38.178428 +2024,3,25,1,Queensland,152.613512,-27.33318 +2022,7,30,1,Queensland,153.244963,-27.49027 +2022,12,2,1,Queensland,153.104619,-27.530601 +2020,5,17,1,South Australia,138.658549,-35.00581 +2022,10,1,1,New South Wales,146.56917,-34.756192 +2021,1,2,1,Victoria,149.757193,-37.55572 +2023,3,24,1,Queensland,153.090705,-27.527076 +2023,11,17,1,Queensland,152.619301,-27.423007 +2023,5,23,1,Queensland,153.09184,-27.526777 +2024,7,23,1,South Australia,138.693111,-34.959648 +2024,7,28,1,New South Wales,153.376953,-28.253992 +2023,12,24,1,Victoria,149.759338,-37.561342 +2024,8,12,1,South Australia,138.681166,-34.953701 +2024,11,9,1,Queensland,153.091829,-27.525845 +2023,5,10,1,Queensland,153.090459,-27.525581 +2022,4,3,1,South Australia,138.646775,-35.004181 +2021,11,28,1,Queensland,151.523032,-27.715529 +2024,5,10,1,Victoria,145.268312,-38.131067 +2021,11,27,1,Victoria,143.205358,-37.236611 +2022,7,10,1,Queensland,153.079803,-27.507092 +2023,8,16,1,Queensland,152.95613,-27.48468 +2024,4,12,1,South Australia,138.713738,-34.89203 +2023,10,6,1,Queensland,152.2462,-27.496246 +2021,12,30,1,Victoria,146.163833,-38.671453 +2024,5,13,1,Queensland,153.078733,-27.506659 +2020,7,25,1,South Australia,138.702378,-34.903095 +2023,2,15,1,Queensland,153.371553,-27.83827 +2024,10,3,1,Queensland,153.19228,-27.70249 +2024,9,30,1,Queensland,152.545586,-27.487678 +2023,11,13,1,Queensland,153.106891,-27.529063 +2020,8,14,1,New South Wales,153.30297,-28.682415 +2023,1,18,1,Victoria,145.940688,-38.497969 +2022,1,24,1,Victoria,144.1167,-37.580437 +2022,12,8,1,Queensland,153.072994,-27.546016 +2021,7,5,1,Queensland,152.906531,-28.174268 +2020,7,29,1,New South Wales,153.404879,-28.260621 +2023,9,27,1,Queensland,152.517013,-27.29965 +2021,9,17,1,Queensland,152.247078,-27.49628 +2023,1,13,1,Victoria,144.705733,-37.177728 +2021,9,10,1,South Australia,138.753152,-35.00531 +2022,1,15,1,South Australia,138.789047,-34.9436 +2020,10,4,1,New South Wales,151.520753,-30.524561 +2024,1,5,1,Victoria,142.367254,-38.315184 +2023,2,3,1,Queensland,153.072922,-27.545934 +2024,7,5,1,Queensland,153.050307,-27.525125 +2022,10,28,1,South Australia,138.635211,-35.008107 +2024,7,21,1,Queensland,153.09047,-27.526957 +2024,7,21,1,Queensland,153.103722,-27.529062 +2023,11,23,1,Queensland,151.642793,-27.710726 +2024,10,14,1,Queensland,152.599944,-28.166618 +2023,12,26,1,Queensland,152.6285,-26.500173 +2022,7,23,1,Queensland,153.437402,-27.400882 +2020,5,27,1,Queensland,153.084855,-27.500875 +2024,7,4,1,Queensland,151.687926,-26.172705 +2023,12,10,1,Queensland,153.092009,-27.527123 +2023,11,29,1,South Australia,138.713176,-34.891488 +2022,9,28,1,Queensland,153.072071,-27.54559 +2022,10,24,1,Queensland,153.375637,-27.909124 +2024,11,12,1,Queensland,151.595597,-27.696353 +2021,10,12,1,Victoria,143.883751,-37.586998 +2021,1,2,1,Queensland,153.068724,-27.544695 +2024,3,12,1,Queensland,153.103681,-27.530151 +2023,7,22,1,Queensland,153.090681,-27.526502 +2024,5,17,1,South Australia,138.719491,-34.892094 +2021,9,4,1,Queensland,153.083375,-27.516995 +2020,1,2,1,Victoria,145.673902,-35.921813 +2024,7,18,1,Queensland,153.090457,-27.526846 +2024,4,1,1,Queensland,153.092151,-27.527066 +2023,11,8,1,Queensland,152.781286,-27.801148 +2024,6,8,1,Queensland,151.8244,-28.5302 +2024,3,24,1,Queensland,153.092268,-27.528173 +2022,8,6,1,New South Wales,146.567409,-34.758925 +2023,10,30,1,Queensland,153.090683,-27.526262 +2022,6,2,1,New South Wales,150.165532,-31.187142 +2022,11,23,1,Queensland,153.055198,-27.547378 +2021,5,3,1,Queensland,153.082279,-27.507982 +2024,4,9,1,South Australia,138.730268,-34.886713 +2024,10,15,1,Queensland,152.935167,-27.275622 +2020,5,25,1,New South Wales,153.400729,-28.257882 +2023,4,3,1,Queensland,153.090803,-27.52679 +2021,10,6,1,South Australia,138.576049,-35.030553 +2021,10,5,1,Queensland,153.059122,-27.545162 +2021,10,3,1,Queensland,152.108078,-27.564039 +2023,4,30,1,Queensland,153.092867,-27.527898 +2023,11,21,1,Victoria,144.290695,-37.874278 +2024,10,31,1,New South Wales,152.883375,-30.475892 +2024,5,13,1,Queensland,153.079585,-27.50711 +2020,11,28,1,New South Wales,151.519282,-30.520446 +2023,5,30,1,Queensland,153.057821,-27.551609 +2024,8,10,1,Queensland,153.073731,-27.545974 +2023,9,2,1,New South Wales,153.072748,-30.877933 +2023,6,3,1,Queensland,152.046351,-27.638197 +2024,10,16,1,South Australia,138.751443,-35.10314 +2024,2,10,1,Queensland,153.091592,-27.527252 +2023,5,20,1,Queensland,153.366524,-27.901581 +2021,8,31,1,South Australia,138.712229,-34.891162 +2023,10,14,1,Queensland,151.990985,-27.678507 +2021,12,24,1,Victoria,143.882973,-37.591214 +2022,8,12,1,Victoria,145.283107,-38.137973 +2020,8,15,1,Queensland,153.05962,-27.549157 +2022,3,21,1,Victoria,143.268697,-38.253989 +2023,2,10,1,Queensland,153.111702,-27.527796 +2023,10,24,1,Queensland,151.876363,-26.484234 +2020,7,13,1,Queensland,153.062811,-27.550375 +2021,8,19,1,Queensland,153.048478,-27.526007 +2024,3,17,1,Victoria,145.457715,-37.015095 +2024,11,17,1,South Australia,138.68953,-34.9249 +2020,6,23,1,Queensland,153.057567,-27.550906 +2024,4,12,1,Queensland,152.857815,-27.544068 +2022,11,28,1,Queensland,153.068505,-27.542539 +2022,12,20,1,Queensland,153.072224,-27.545227 +2023,4,19,1,Queensland,153.090934,-27.527243 +2022,12,31,1,Queensland,153.438047,-27.400673 +2023,4,10,1,Queensland,153.10501,-27.53006 +2024,5,22,1,South Australia,135.780284,-34.812769 +2021,9,21,1,Queensland,153.056515,-27.552254 +2023,12,21,1,Victoria,144.125305,-37.262288 +2023,10,9,1,Victoria,145.731903,-38.626347 +2021,2,11,1,South Australia,138.584045,-35.081836 +2024,10,22,1,Queensland,152.058258,-26.1571 +2022,12,17,1,Queensland,153.101739,-27.530077 +2020,5,29,1,Victoria,146.16417,-38.6713 +2020,7,21,1,Queensland,153.050763,-27.549054 +2021,11,21,1,Queensland,153.10519,-27.531445 +2023,8,14,1,Queensland,153.102264,-27.527268 +2021,10,10,1,Queensland,152.063002,-27.262701 +2024,3,17,1,Queensland,153.093174,-27.527737 +2024,11,6,1,Queensland,152.003128,-27.413938 +2024,9,5,1,Queensland,152.9888,-27.169942 +2023,12,5,1,South Australia,138.719906,-34.891983 +2023,1,24,1,Queensland,153.091778,-27.527144 +2020,4,25,1,South Australia,138.694987,-34.897553 +2021,12,28,1,Queensland,152.27656,-27.594162 +2020,7,2,1,South Australia,137.021941,-35.982855 +2023,11,24,1,South Australia,138.716457,-34.891724 +2022,10,16,1,Queensland,152.403247,-27.458381 +2024,11,9,1,Queensland,153.111573,-27.524529 +2022,1,15,1,New South Wales,151.790265,-32.565188 +2024,10,20,1,Queensland,153.399593,-27.497778 +2020,6,7,1,Queensland,153.068256,-27.226759 +2023,10,10,1,Queensland,153.10274,-27.544398 +2023,4,15,1,Queensland,153.091527,-27.526714 +2021,10,23,1,Victoria,145.320745,-35.87115 +2023,3,5,1,Queensland,153.090794,-27.527163 +2024,6,9,1,Queensland,152.869001,-28.280231 +2022,12,2,1,Queensland,153.107594,-27.526951 +2022,1,9,1,South Australia,138.703999,-34.903124 +2024,6,22,1,Queensland,153.103743,-27.52947 +2021,1,10,1,South Australia,138.718528,-34.862885 +2024,3,22,1,Queensland,153.105087,-27.529355 +2022,2,5,1,Victoria,142.291032,-37.874648 +2024,10,5,1,Queensland,153.111619,-27.529111 +2023,1,11,1,Victoria,141.639678,-38.239525 +2024,8,11,1,Queensland,153.09007,-27.52629 +2022,10,30,1,Queensland,153.086288,-27.509067 +2024,9,10,1,Queensland,153.069625,-27.510478 +2023,8,21,1,Queensland,153.06993,-27.510536 +2024,6,3,1,South Australia,138.714472,-34.892519 +2024,3,25,1,Queensland,152.042182,-27.300201 +2023,2,25,1,New South Wales,153.400636,-28.260291 +2022,11,8,1,Queensland,153.083243,-27.510579 +2024,4,10,1,Victoria,145.381165,-38.404854 +2021,12,18,1,Queensland,153.104176,-27.530272 +2023,7,15,1,Queensland,153.091813,-27.526976 +2023,12,23,1,Queensland,153.087792,-27.510157 +2020,12,12,1,South Australia,138.709194,-34.97715 +2024,7,23,1,Queensland,152.47312,-27.532723 +2023,11,15,1,Victoria,147.729233,-37.9249 +2020,9,12,1,Queensland,153.058597,-27.547597 +2023,8,22,1,Queensland,153.093069,-27.524249 +2023,12,10,1,Queensland,153.04853,-27.526073 +2023,7,16,1,Queensland,153.092526,-27.528526 +2023,6,6,1,Queensland,153.083711,-27.516758 +2024,8,10,1,Queensland,153.069214,-27.2231 +2021,10,13,1,Queensland,153.263896,-28.011401 +2023,11,7,1,Queensland,152.003068,-27.413778 +2024,10,12,1,Queensland,153.092379,-27.527402 +2022,6,24,1,Queensland,152.996658,-27.304094 +2020,6,27,1,Victoria,144.008876,-38.397681 +2021,2,23,1,Queensland,153.112122,-27.528297 +2023,11,22,1,Queensland,152.619278,-27.40702 +2021,11,28,1,Queensland,151.508785,-27.708995 +2023,8,4,1,Queensland,152.046419,-27.257097 +2023,8,8,1,Queensland,153.085995,-27.706331 +2023,1,1,1,Queensland,153.092976,-27.526112 +2023,12,29,1,South Australia,138.71844,-34.872116 +2023,11,19,1,Queensland,153.092362,-27.528156 +2024,5,1,1,Queensland,153.045624,-27.547892 +2021,6,2,1,Victoria,145.047765,-38.267438 +2021,3,13,1,Queensland,153.061625,-27.538292 +2023,5,15,1,Queensland,153.090779,-27.526523 +2023,3,20,1,Queensland,153.102782,-27.527631 +2024,3,23,1,Queensland,153.103462,-27.530113 +2021,1,1,1,Victoria,147.729966,-37.924674 +2024,4,12,1,Queensland,153.10933,-27.52717 +2024,7,13,1,Queensland,153.374253,-27.913463 +2024,11,6,1,New South Wales,152.361575,-31.926603 +2024,3,23,1,Queensland,153.103311,-27.52843 +2021,3,7,1,Queensland,153.058262,-27.547984 +2024,10,12,1,Queensland,153.093411,-27.525322 +2022,11,17,1,New South Wales,153.392744,-28.268857 +2023,1,22,1,Queensland,151.948992,-27.38928 +2023,2,27,1,Queensland,153.112677,-27.527349 +2021,5,21,1,New South Wales,153.400089,-28.260532 +2024,10,29,1,Queensland,153.103633,-27.529467 +2024,11,6,1,Queensland,153.054717,-27.55248 +2023,7,25,1,Queensland,153.151142,-27.583787 +2023,4,3,1,Queensland,153.11164,-27.525062 +2021,3,2,1,Queensland,153.052911,-27.550114 +2022,9,4,1,New South Wales,146.590622,-34.755858 +2022,12,5,1,Queensland,153.072827,-27.545779 +2024,11,18,1,Victoria,147.722472,-37.925195 +2021,11,2,1,Victoria,146.772294,-38.479161 +2023,2,4,1,Victoria,147.747701,-37.921407 +2023,11,3,1,Queensland,153.091095,-27.52738 +2024,4,24,1,Queensland,153.102853,-27.527514 +2021,10,18,1,South Australia,138.722008,-34.892402 +2020,4,12,1,New South Wales,151.520646,-30.52016 +2024,3,16,1,Victoria,143.904191,-37.750769 +2023,1,26,1,Queensland,153.090846,-27.526936 +2023,9,18,1,Queensland,153.109524,-27.527294 +2023,8,16,1,Queensland,153.099679,-27.531783 +2024,1,3,1,Victoria,145.592343,-37.784724 +2023,10,8,1,New South Wales,152.914886,-30.496828 +2022,4,2,1,Queensland,152.62059,-27.889094 +2021,4,15,1,Victoria,143.606044,-38.766176 +2024,9,23,1,Queensland,151.520538,-27.719555 +2023,12,24,1,Queensland,153.092744,-27.526533 +2021,9,5,1,Victoria,146.163783,-38.67122 +2021,12,30,1,Queensland,152.076072,-28.262045 +2021,10,31,1,Victoria,146.164003,-38.67155 +2024,5,24,1,Queensland,153.106724,-27.528943 +2024,10,19,1,Queensland,153.0926,-27.528313 +2022,6,27,1,Queensland,152.988983,-27.170367 +2023,9,24,1,Queensland,153.43875,-27.397156 +2022,10,1,1,Queensland,152.153226,-27.514409 +2021,1,19,1,Queensland,152.88618,-27.149764 +2024,10,22,1,Queensland,153.087792,-27.511106 +2023,8,27,1,Victoria,144.108355,-37.331544 +2023,1,16,1,Queensland,153.1047,-27.529617 +2020,12,1,1,New South Wales,153.395449,-28.264354 +2024,5,7,1,Victoria,143.895934,-37.643178 +2024,2,5,1,South Australia,138.729822,-34.889988 +2022,1,15,1,Queensland,153.10405,-27.528558 +2021,3,19,1,Queensland,153.057863,-27.550933 +2024,11,11,1,Queensland,153.119322,-28.22824 +2022,1,9,1,Queensland,153.078256,-27.507144 +2024,10,2,1,Queensland,152.025119,-26.271015 +2024,2,11,1,Queensland,153.091617,-27.52724 +2023,8,6,1,Queensland,153.000997,-27.28444 +2021,10,8,1,Victoria,149.739368,-37.529232 +2023,9,6,1,Queensland,153.107824,-27.526955 +2023,9,12,1,Queensland,153.108151,-27.527083 +2023,3,15,1,Queensland,153.092754,-27.525635 +2020,11,29,1,South Australia,138.706536,-34.900667 +2024,1,31,1,South Australia,138.733676,-34.887659 +2023,4,18,1,Queensland,153.108136,-27.527258 +2024,10,12,1,Queensland,153.093224,-27.524062 +2024,4,21,1,Queensland,153.092991,-27.527683 +2024,1,6,1,Queensland,151.815574,-26.166207 +2022,12,27,1,Queensland,153.437883,-27.400768 +2023,1,2,1,Queensland,153.102091,-27.733776 +2023,10,31,1,Queensland,153.092198,-27.52571 +2024,11,7,1,Queensland,151.691441,-26.177958 +2022,10,25,1,Queensland,151.825397,-26.571833 +2024,2,18,1,Queensland,153.090979,-27.527593 +2020,5,1,1,New South Wales,153.400672,-28.258145 +2024,11,12,1,Queensland,153.058054,-26.669784 +2021,8,11,1,New South Wales,153.375948,-28.252413 +2023,12,16,1,Queensland,153.090383,-27.525669 +2022,4,2,1,New South Wales,153.402218,-28.258787 +2024,1,20,1,Queensland,153.092219,-27.525703 +2024,3,18,1,Queensland,152.042572,-27.297383 +2024,10,29,1,Queensland,152.997092,-27.287694 +2024,4,9,1,New South Wales,153.400308,-28.258315 +2024,10,14,1,Queensland,153.102948,-27.528814 +2023,12,7,1,South Australia,138.727946,-34.888703 +2024,7,22,1,Victoria,145.245743,-38.250173 +2023,12,8,1,Queensland,153.103324,-27.530222 +2024,7,14,1,Queensland,152.999328,-27.283942 +2022,1,2,1,Victoria,144.030088,-37.783594 +2023,11,14,1,South Australia,138.715775,-34.892385 +2023,10,12,1,Queensland,153.092071,-27.527176 +2023,6,8,1,Queensland,153.102858,-27.518644 +2023,10,13,1,South Australia,138.752594,-34.577778 +2023,2,10,1,Queensland,151.731676,-27.591878 +2023,9,28,1,New South Wales,150.926671,-29.790217 +2020,10,15,1,Queensland,153.248632,-27.490642 +2024,5,26,1,Victoria,145.980821,-38.522045 +2023,5,21,1,Queensland,153.090795,-27.525902 +2021,2,4,1,Victoria,145.127718,-38.180976 +2023,8,6,1,Queensland,152.045011,-27.258115 +2024,3,3,1,South Australia,138.719748,-34.891931 +2024,10,6,1,Queensland,153.093349,-27.525415 +2023,10,23,1,Queensland,153.109074,-27.526988 +2023,10,28,1,Queensland,153.110492,-27.52789 +2022,5,8,1,Victoria,141.92469,-38.062705 +2024,5,4,1,Queensland,153.230035,-28.122587 +2021,12,28,1,Victoria,146.15552,-38.376706 +2023,8,30,1,Queensland,152.943459,-27.987487 +2024,10,18,1,South Australia,138.854726,-34.730751 +2024,3,17,1,Queensland,153.092953,-27.526111 +2023,10,31,1,Queensland,153.105795,-27.52954 +2023,8,21,1,Victoria,143.512987,-38.83392 +2022,11,19,1,South Australia,138.671642,-35.016328 +2022,11,11,1,Victoria,145.999328,-38.825169 +2020,7,8,1,Queensland,151.131559,-24.964662 +2020,2,26,1,South Australia,138.637572,-34.968982 +2022,10,3,1,Queensland,152.859395,-27.546422 +2024,2,17,1,Queensland,151.691557,-26.17693 +2024,9,23,1,Queensland,153.073225,-27.545888 +2023,11,15,1,Queensland,153.109009,-27.526759 +2023,2,11,1,Queensland,152.65998,-28.22878 +2021,1,13,1,South Australia,138.638095,-34.971265 +2021,12,12,1,Queensland,152.106493,-27.56232 +2020,9,10,1,Queensland,153.058587,-27.547872 +2024,10,30,1,Queensland,153.372843,-27.909659 +2024,5,1,1,Queensland,153.058546,-27.55151 +2023,11,10,1,Victoria,144.589112,-37.521837 +2024,8,23,1,Queensland,151.614137,-27.714188 +2023,7,22,1,Victoria,145.369622,-36.934926 +2023,11,3,1,New South Wales,153.629436,-28.637385 +2023,12,14,1,Queensland,153.090821,-27.526907 +2024,2,5,1,South Australia,138.733345,-34.886392 +2023,6,20,1,Queensland,153.085251,-27.516902 +2024,5,3,1,South Australia,138.729161,-34.88981 +2022,6,30,1,South Australia,138.65537,-34.867792 +2024,9,8,1,Queensland,152.998927,-27.283761 +2023,6,21,1,Queensland,153.433583,-28.163831 +2024,7,4,1,Queensland,153.102975,-27.564797 +2023,3,29,1,Queensland,152.898685,-27.521564 +2020,9,23,1,Queensland,153.249354,-27.48931 +2024,8,5,1,Queensland,151.947768,-26.224376 +2023,10,6,1,Queensland,151.88144,-26.307089 +2022,1,23,1,Queensland,153.081139,-27.508682 +2024,7,23,1,Queensland,153.104005,-27.529838 +2024,3,30,1,Queensland,153.072442,-27.549146 +2023,4,15,1,Queensland,153.108296,-27.526966 +2024,10,23,1,Queensland,146.86833,-19.1273 +2020,8,2,1,Queensland,153.376836,-27.919428 +2024,7,6,1,Queensland,153.091822,-27.526921 +2021,9,9,1,Queensland,153.042229,-27.558822 +2023,6,12,1,Victoria,141.413637,-38.271928 +2024,7,28,1,Queensland,153.092672,-27.527966 +2023,3,22,1,Queensland,153.091275,-27.526831 +2023,3,13,1,Victoria,145.22517,-38.149385 +2020,1,31,1,Queensland,153.055609,-27.552225 +2023,10,6,1,Queensland,153.10285,-27.527619 +2023,5,27,1,Queensland,153.057367,-27.551479 +2023,12,29,1,Victoria,141.543945,-38.055603 +2024,1,31,1,Queensland,153.086131,-27.510453 +2022,12,11,1,Queensland,153.073575,-27.547352 +2020,9,15,1,Queensland,153.06039,-27.545258 +2023,11,24,1,Queensland,153.112468,-27.528801 +2021,9,15,1,Victoria,145.273925,-38.128422 +2024,1,12,1,Queensland,153.09105,-27.52715 +2024,9,18,1,South Australia,138.72208,-34.889972 +2023,10,14,1,Queensland,153.101334,-27.530219 +2024,4,1,1,Victoria,147.728863,-37.921857 +2020,1,24,1,Queensland,153.027467,-26.387775 +2023,7,14,1,Queensland,153.072681,-27.226442 +2021,1,20,1,Queensland,153.080277,-27.514196 +2023,9,17,1,South Australia,138.658832,-35.007122 +2020,4,29,1,Queensland,152.01559,-26.524044 +2024,5,20,1,Queensland,153.109257,-27.527109 +2024,4,1,1,Victoria,147.728863,-37.921857 +2023,11,3,1,South Australia,138.723099,-34.890536 +2024,8,28,1,South Australia,138.688567,-34.875703 +2023,5,20,1,Queensland,153.371405,-27.905575 +2021,10,24,1,Queensland,153.0837,-27.507443 +2024,5,12,1,Queensland,153.090398,-27.526648 +2023,11,5,1,Victoria,145.425386,-36.894458 +2023,6,2,1,South Australia,136.810517,-35.96022 +2024,5,6,1,Queensland,153.090673,-27.526638 +2024,5,12,1,Queensland,153.092626,-27.525393 +2023,6,25,1,Queensland,153.090824,-27.527353 +2023,10,6,1,New South Wales,152.710976,-31.78285 +2024,10,15,1,Queensland,153.194503,-27.513717 +2020,12,19,1,Queensland,151.948116,-28.597757 +2024,9,30,1,Victoria,146.386893,-38.356062 +2023,5,14,1,Queensland,153.090973,-27.52745 +2022,4,25,1,Victoria,145.372448,-36.93064 +2023,11,12,1,Queensland,151.594437,-27.800312 +2024,5,27,1,South Australia,138.732293,-34.887397 +2021,6,13,1,Queensland,153.08304,-27.513983 +2023,1,11,1,Queensland,153.10344,-27.528332 +2022,11,20,1,Queensland,151.89471,-27.424888 +2023,10,15,1,Queensland,153.18903,-28.172586 +2023,7,12,1,Queensland,146.869613,-19.125192 +2021,10,22,1,South Australia,138.669104,-34.958902 +2023,10,13,1,New South Wales,150.07379,-34.550587 +2024,10,20,1,Queensland,153.091233,-27.527229 +2023,3,3,1,Queensland,153.092924,-27.527116 +2024,6,8,1,Queensland,153.093553,-27.52838 +2023,11,23,1,Queensland,152.77985,-27.78888 +2020,3,6,1,Queensland,153.058136,-27.551441 +2024,7,1,1,Queensland,153.111475,-27.525604 +2023,1,7,1,Queensland,153.091736,-27.527103 +2023,5,20,1,Queensland,153.373009,-27.912762 +2021,12,2,1,New South Wales,153.378076,-28.25518 +2024,6,19,1,Queensland,153.111794,-27.527862 +2024,7,6,1,Queensland,153.090801,-27.527159 +2023,12,4,1,Queensland,151.716587,-27.568838 +2022,11,14,1,Queensland,153.073863,-27.546128 +2023,12,5,1,South Australia,138.716967,-34.892953 +2024,7,6,1,Queensland,153.048558,-27.524989 +2024,2,17,1,Queensland,153.090821,-27.526323 +2024,4,2,1,Queensland,153.103279,-27.530231 +2024,9,14,1,Queensland,153.09274,-27.528547 +2024,4,14,1,Queensland,153.092058,-27.525564 +2024,4,2,1,Queensland,153.42558,-27.468856 +2023,4,10,1,Queensland,153.089296,-27.523752 +2024,1,4,1,Queensland,153.090224,-27.525449 +2023,3,14,1,Queensland,153.092001,-27.527165 +2022,12,10,1,Victoria,144.127472,-37.34477 +2020,11,30,1,Victoria,143.898409,-37.616456 +2024,7,7,1,Queensland,153.0903,-27.526777 +2024,10,17,1,Victoria,143.52182,-38.77558 +2023,11,4,1,Queensland,153.093146,-27.527732 +2022,11,19,1,Queensland,151.561233,-27.800278 +2024,10,22,1,Queensland,152.991842,-27.822649 +2023,10,16,1,Queensland,153.113449,-27.528509 +2020,7,30,1,Queensland,153.05876,-27.551391 +2023,1,28,1,Queensland,151.894046,-27.598196 +2024,2,6,1,New South Wales,150.564286,-29.546377 +2024,2,28,1,Queensland,153.103735,-27.530402 +2020,1,7,1,New South Wales,153.554992,-28.713292 +2024,10,7,1,Queensland,153.090224,-27.526231 +2021,4,28,1,Queensland,152.196154,-27.405367 +2023,1,5,1,Victoria,141.215,-37.724 +2023,10,26,1,New South Wales,151.095288,-33.076702 +2022,12,30,1,Queensland,153.104441,-27.529517 +2023,8,9,1,Queensland,153.108922,-27.52671 +2023,9,6,1,South Australia,138.670487,-34.963078 +2024,10,26,1,Queensland,153.09131,-27.527232 +2022,9,5,1,Queensland,153.440945,-27.392693 +2023,4,3,1,Queensland,153.090741,-27.526466 +2024,6,21,1,South Australia,138.733707,-34.88858 +2023,7,16,1,Queensland,151.852325,-27.327658 +2023,11,24,1,Victoria,146.387175,-38.356021 +2024,9,3,1,Queensland,152.074647,-27.358627 +2024,7,31,1,Queensland,153.127876,-27.820128 +2024,10,2,1,South Australia,138.672638,-34.93747 +2020,10,26,1,Victoria,145.00461,-38.354597 +2023,11,12,1,Queensland,153.09031,-27.525516 +2024,3,25,1,Queensland,152.042261,-27.299171 +2021,10,18,1,South Australia,138.656945,-35.148611 +2023,4,4,1,Queensland,153.11298,-27.529272 +2023,10,15,1,Queensland,153.09029,-27.52546 +2024,8,18,1,Queensland,153.092212,-27.527384 +2024,9,22,1,Queensland,151.33627,-24.713532 +2024,7,12,1,Victoria,145.088579,-38.283465 +2023,9,8,1,Queensland,151.824758,-26.1093 +2023,4,2,1,Queensland,153.090491,-27.526799 +2022,10,9,1,Queensland,152.868119,-28.217796 +2023,9,25,1,New South Wales,151.517939,-30.520949 +2024,3,10,1,New South Wales,153.5183,-28.5675 +2020,9,30,1,Queensland,153.249388,-27.48935 +2022,7,10,1,Victoria,145.603741,-38.314724 +2023,2,25,1,Queensland,152.845747,-27.339103 +2023,3,18,1,Queensland,153.090479,-27.526161 +2022,11,17,1,Queensland,152.750356,-28.181893 +2024,7,12,1,Queensland,153.106039,-27.529304 +2023,12,7,1,South Australia,138.732402,-34.888361 +2023,4,9,1,Queensland,153.09091,-27.526736 +2021,12,12,1,Victoria,144.266924,-37.389015 +2021,9,20,1,Queensland,152.401511,-27.457422 +2024,11,17,1,Queensland,153.092354,-27.528191 +2023,8,2,1,Victoria,143.901148,-37.641822 +2024,11,17,1,Queensland,153.093577,-27.527339 +2021,12,14,1,Victoria,146.16387,-38.671199 +2024,8,18,1,Queensland,153.083671,-27.516493 +2024,4,21,1,Victoria,143.858292,-38.666538 +2023,1,11,1,Queensland,153.104248,-27.530774 +2023,12,11,1,Victoria,146.685531,-36.248753 +2022,3,1,1,New South Wales,146.531993,-34.753069 +2023,10,6,1,Queensland,153.065706,-27.507939 +2024,11,7,1,Queensland,151.755229,-26.161009 +2021,4,16,1,Queensland,152.906209,-28.173366 +2024,1,4,1,Queensland,153.18103,-27.582909 +2020,10,4,1,New South Wales,151.520753,-30.524561 +2023,7,6,1,New South Wales,152.306083,-31.638842 +2021,12,11,1,Victoria,145.131109,-38.174704 +2023,10,4,1,Queensland,153.103169,-27.529021 +2024,6,27,1,Victoria,142.362912,-38.321033 +2022,5,29,1,South Australia,138.635465,-34.99041 +2020,10,29,1,New South Wales,153.37539,-28.252213 +2023,1,26,1,Queensland,152.614425,-27.339255 +2020,2,2,1,Queensland,153.06069,-27.544754 +2024,2,13,1,Queensland,153.111837,-27.527785 +2023,10,14,1,Queensland,153.109025,-27.526974 +2020,9,4,1,New South Wales,153.393389,-28.27573 +2022,12,19,1,Queensland,153.069775,-27.510518 +2023,11,13,1,South Australia,138.720816,-34.892248 +2023,4,22,1,Queensland,153.052205,-27.549179 +2021,11,4,1,Victoria,143.89366,-37.617567 +2023,11,2,1,South Australia,138.946955,-34.760984 +2024,6,6,1,South Australia,138.724552,-34.893439 +2021,9,9,1,Victoria,146.163772,-38.671242 +2023,1,4,1,South Australia,138.66558,-34.865918 +2023,1,2,1,Victoria,143.558258,-38.807828 +2023,12,18,1,Queensland,151.855676,-26.490043 +2023,7,7,1,Queensland,152.959217,-27.273196 +2023,12,3,1,Queensland,153.372406,-27.909385 +2021,2,5,1,Queensland,153.070702,-27.543747 +2021,2,24,1,Queensland,153.05497,-27.550497 +2021,8,31,1,Queensland,152.08695,-27.69515 +2023,7,23,1,Queensland,153.092841,-27.528347 +2021,1,15,1,Victoria,145.648163,-37.769367 +2022,11,12,1,Queensland,151.901047,-27.381513 +2021,2,23,1,Victoria,145.132141,-38.175473 +2024,10,27,1,Queensland,153.072328,-27.550317 +2022,11,19,1,Queensland,151.51817,-27.718608 +2020,12,20,1,Victoria,146.181206,-38.626711 +2023,10,14,1,Queensland,153.372486,-27.911461 +2023,10,5,1,Queensland,152.83584,-27.941827 +2023,10,8,1,New South Wales,152.913358,-30.491774 +2022,8,17,1,Queensland,151.611361,-27.371783 +2022,12,21,1,New South Wales,153.376802,-28.2539 +2020,1,24,1,New South Wales,151.52071,-30.519482 +2022,8,28,1,Victoria,145.091264,-38.295117 +2024,8,24,1,New South Wales,151.095275,-33.076836 +2023,6,20,1,Queensland,153.070274,-27.543032 +2022,10,30,1,Victoria,146.387667,-38.358693 +2020,10,13,1,Victoria,145.268307,-38.131141 +2024,7,10,1,South Australia,138.658112,-35.00394 +2024,10,6,1,Victoria,144.409867,-38.004406 +2020,5,13,1,Queensland,153.054581,-27.546137 +2024,4,7,1,Queensland,153.073389,-27.547356 +2024,10,30,1,Queensland,152.054404,-26.332172 +2020,2,28,1,Queensland,153.061415,-27.54957 +2024,4,24,1,Queensland,153.107091,-27.528828 +2023,1,1,1,Queensland,151.895213,-27.599243 +2024,1,22,1,Queensland,153.10534,-27.530894 +2023,1,9,1,Queensland,153.072518,-27.54335 +2022,1,28,1,New South Wales,150.71519,-33.465085 +2024,7,14,1,South Australia,138.656,-35.017 +2023,2,3,1,Victoria,144.383788,-37.85728 +2022,3,16,1,Victoria,141.560494,-38.004734 +2021,4,2,1,Queensland,153.047417,-27.545129 +2024,11,8,1,Queensland,153.103697,-27.52933 +2024,5,24,1,Queensland,153.085462,-27.510353 +2022,5,29,1,Victoria,145.165122,-38.259756 +2023,7,2,1,Queensland,153.085647,-27.510264 +2024,9,21,1,New South Wales,146.561726,-34.76169 +2024,3,3,1,Queensland,153.091703,-27.527115 +2023,4,28,1,Queensland,153.093312,-27.52787 +2020,6,15,1,Queensland,152.924543,-27.39427 +2024,1,9,1,Queensland,151.814034,-26.362891 +2023,12,23,1,Queensland,153.078523,-27.505658 +2024,6,15,1,Queensland,153.053069,-27.543817 +2023,4,28,1,Queensland,153.090833,-27.526893 +2023,11,18,1,South Australia,138.617737,-34.904437 +2024,9,28,1,New South Wales,146.539612,-34.747997 +2024,9,26,1,Queensland,152.901775,-27.62027 +2022,11,24,1,Queensland,152.944207,-27.140487 +2023,12,8,1,Queensland,153.090419,-27.526655 +2023,3,11,1,New South Wales,153.113997,-30.26336 +2020,6,5,1,Queensland,153.070114,-27.225331 +2024,6,26,1,Queensland,153.077076,-27.226944 +2020,11,29,1,Victoria,143.861492,-38.667281 +2024,7,23,1,South Australia,138.731464,-34.889849 +2022,1,12,1,Victoria,148.264156,-37.221896 +2023,11,6,1,Victoria,145.501755,-37.85262 +2022,7,16,1,Queensland,152.6038,-28.164485 +2021,4,8,1,Queensland,153.037372,-27.546903 +2024,8,11,1,Queensland,153.092562,-27.526873 +2023,8,11,1,Victoria,146.387644,-38.35412 +2023,7,28,1,Queensland,153.109967,-27.529774 +2022,8,31,1,Queensland,152.130321,-26.870236 +2023,8,20,1,Queensland,153.084231,-27.511737 +2021,11,2,1,New South Wales,150.280746,-32.896842 +2020,9,17,1,Queensland,153.531179,-27.431462 +2022,4,1,1,Queensland,152.945179,-28.125152 +2023,12,25,1,Queensland,151.749845,-26.155069 +2024,1,19,1,Queensland,153.256134,-27.546183 +2023,4,12,1,New South Wales,152.929642,-31.459978 +2022,7,12,1,Queensland,153.055862,-27.547171 +2021,4,28,1,Queensland,153.199476,-27.492456 +2024,10,20,1,Victoria,145.274895,-38.136379 +2024,1,2,1,Queensland,153.093009,-27.526242 +2023,3,15,1,Queensland,153.092009,-27.525818 +2024,3,2,1,Queensland,153.445083,-28.133069 +2023,11,12,1,Queensland,153.093045,-27.52623 +2023,9,4,1,Queensland,153.098544,-27.566708 +2023,7,1,1,South Australia,138.542468,-34.917459 +2022,4,27,1,New South Wales,153.399295,-28.26034 +2023,2,6,1,Queensland,153.103672,-27.530146 +2024,11,9,1,Queensland,153.090759,-27.527114 +2023,5,4,1,Victoria,143.903144,-37.638945 +2024,7,18,1,Queensland,153.09312,-27.525734 +2023,7,14,1,Queensland,153.073003,-27.226614 +2024,7,5,1,Queensland,153.109042,-27.528779 +2024,9,23,1,New South Wales,153.1055,-30.328224 +2023,7,9,1,Queensland,153.092623,-27.525328 +2021,12,29,1,Victoria,145.505845,-37.02285 +2024,2,11,1,Queensland,153.09023,-27.526694 +2021,8,15,1,Queensland,153.054738,-27.551182 +2021,12,8,1,Queensland,153.073761,-27.817525 +2023,8,9,1,Queensland,153.110698,-27.529965 +2022,10,6,1,Queensland,153.033969,-27.536904 +2024,6,12,1,South Australia,138.73348,-34.886287 +2023,7,13,1,Queensland,153.178435,-27.634492 +2024,8,13,1,Queensland,152.992478,-27.823605 +2021,2,10,1,Queensland,153.056168,-27.538962 +2024,9,22,1,Victoria,141.73639,-38.244041 +2024,11,21,1,Victoria,141.493978,-38.240004 +2020,8,4,1,South Australia,138.7023,-34.903119 +2024,6,1,1,Queensland,153.108097,-27.529303 +2023,11,25,1,Queensland,152.987929,-27.294005 +2024,5,26,1,South Australia,138.626134,-34.89306 +2020,2,1,1,Queensland,153.038303,-27.537178 +2024,11,4,1,Queensland,153.173888,-27.94415 +2022,3,27,1,Queensland,153.085018,-27.506664 +2023,10,27,1,Victoria,145.388325,-37.049512 +2022,10,3,1,South Australia,138.669939,-35.085298 +2020,4,19,1,South Australia,138.640209,-35.008524 +2023,11,19,1,Queensland,153.092332,-27.52492 +2022,6,23,1,Victoria,142.367292,-38.314745 +2024,11,10,1,Queensland,152.505805,-27.305663 +2023,2,27,1,Queensland,153.09057,-27.526483 +2023,4,10,1,Queensland,153.092509,-27.528249 +2021,12,12,1,Victoria,144.147458,-37.80847 +2024,5,4,1,Queensland,152.614838,-27.32633 +2023,4,29,1,South Australia,138.707239,-34.90367 +2022,9,23,1,South Australia,138.656848,-34.865127 +2023,8,20,1,Queensland,153.091972,-27.526988 +2022,10,1,1,South Australia,138.701325,-34.903912 +2023,10,18,1,Victoria,145.449708,-36.890287 +2021,10,3,1,Victoria,146.164122,-38.67155 +2020,11,29,1,South Australia,138.745586,-34.829707 +2022,8,22,1,Queensland,153.102429,-27.735152 +2024,2,12,1,Queensland,153.103348,-27.528266 +2024,1,31,1,Queensland,153.103703,-27.530846 +2023,9,9,1,Queensland,152.927469,-26.278965 +2023,9,15,1,Queensland,153.151142,-27.583787 +2023,3,28,1,New South Wales,152.181498,-31.577574 +2024,10,20,1,South Australia,138.708089,-34.904027 +2022,7,31,1,Queensland,153.188017,-27.702098 +2020,8,25,1,Queensland,153.04728,-27.548077 +2023,8,23,1,Queensland,146.868512,-19.125625 +2022,7,14,1,Queensland,153.082317,-27.509098 +2020,12,8,1,New South Wales,150.825099,-34.247738 +2024,4,4,1,Victoria,143.901044,-37.638403 +2023,3,13,1,South Australia,138.680103,-34.947664 +2024,3,25,1,Queensland,152.042159,-27.300304 +2022,10,20,1,Queensland,153.197805,-27.86195 +2024,7,27,1,Queensland,152.631408,-27.438053 +2024,1,29,1,Queensland,152.045987,-27.255473 +2021,1,30,1,Queensland,153.043237,-27.552629 +2023,7,13,1,Queensland,153.16678,-27.480072 +2023,10,15,1,Queensland,153.091963,-27.527027 +2023,5,6,1,Queensland,153.090636,-27.526073 +2023,10,12,1,New South Wales,150.979265,-29.780321 +2024,7,3,1,Victoria,143.607605,-38.773651 +2021,9,16,1,New South Wales,150.851888,-34.066161 +2023,9,19,1,Queensland,153.151142,-27.583787 +2023,12,5,1,Queensland,151.975663,-26.239835 +2024,5,27,1,Queensland,152.828034,-28.091936 +2022,12,14,1,New South Wales,151.011847,-29.720314 +2024,4,1,1,Queensland,152.993683,-27.823692 +2024,11,17,1,Queensland,153.513917,-27.422608 +2024,5,7,1,Victoria,142.978292,-38.497083 +2022,1,13,1,Victoria,147.730055,-37.924297 +2023,7,11,1,Queensland,153.151142,-27.583787 +2020,1,2,1,Victoria,145.672362,-35.920378 +2020,12,1,1,Queensland,153.058544,-27.546078 +2020,10,12,1,Queensland,153.060477,-27.5496 +2021,2,13,1,Queensland,153.221407,-27.535041 +2021,1,9,1,New South Wales,152.804047,-31.652387 +2022,11,29,1,Queensland,153.140552,-27.651695 +2021,9,24,1,New South Wales,151.095383,-33.076808 +2024,6,24,1,Queensland,153.05829,-27.54783 +2024,6,5,1,Queensland,152.67783,-27.98736 +2024,11,9,1,Queensland,153.093177,-27.527535 +2022,12,25,1,Queensland,151.893104,-27.601825 +2021,12,29,1,Victoria,146.163911,-38.671342 +2020,1,3,1,Victoria,143.519252,-38.832424 +2024,1,3,1,South Australia,138.627836,-34.892389 +2020,2,4,1,Queensland,153.37207,-27.909958 +2024,2,17,1,Queensland,153.0602,-27.543856 +2024,10,20,1,Queensland,153.092754,-27.525789 +2024,10,5,1,Queensland,153.093747,-27.524934 +2020,12,31,1,Victoria,144.264042,-37.39406 +2021,5,5,1,Queensland,153.444747,-27.400558 +2024,4,18,1,Victoria,143.513503,-38.833492 +2024,6,1,1,Queensland,153.104535,-27.530479 +2023,10,21,1,Queensland,153.091599,-27.52723 +2024,7,3,1,Victoria,143.612762,-38.775023 +2020,3,27,1,New South Wales,149.503967,-33.297962 +2023,5,4,1,Queensland,153.059326,-27.54921 +2021,8,11,1,South Australia,138.63809,-34.971106 +2023,8,24,1,Victoria,143.514145,-38.835953 +2024,5,24,1,South Australia,138.542553,-34.917457 +2023,2,18,1,Queensland,153.165153,-27.740355 +2023,9,29,1,Queensland,153.102799,-27.527298 +2020,11,25,1,Victoria,145.283911,-38.141664 +2024,4,9,1,South Australia,138.731585,-34.890109 +2024,10,6,1,Queensland,152.537872,-28.18912 +2023,5,6,1,Queensland,153.092257,-27.528301 +2021,3,29,1,Queensland,153.057688,-27.551437 +2020,12,13,1,Victoria,144.266789,-37.393514 +2023,6,23,1,Queensland,153.109108,-27.527012 +2023,10,23,1,Queensland,153.115386,-27.529579 +2020,10,18,1,Queensland,153.217786,-27.547488 +2021,9,24,1,Queensland,152.938217,-27.164019 +2020,5,26,1,Queensland,153.058332,-27.546979 +2021,2,6,1,Queensland,153.082632,-27.514842 +2024,11,19,1,Queensland,153.070642,-27.543912 +2024,2,13,1,Queensland,152.553483,-27.05993 +2024,5,3,1,Queensland,153.061862,-27.549395 +2024,9,21,1,Queensland,146.863767,-19.150673 +2023,12,3,1,Queensland,152.919892,-27.385697 +2024,8,11,1,Queensland,152.67717,-27.985847 +2024,6,13,1,South Australia,138.614166,-34.902076 +2023,4,2,1,Queensland,152.961687,-27.456745 +2023,8,22,1,Queensland,151.835277,-26.530784 +2020,1,7,1,New South Wales,149.223192,-31.587728 +2021,10,6,1,Queensland,152.395971,-27.452791 +2023,2,7,1,Queensland,153.372697,-27.914261 +2024,5,26,1,Queensland,153.09229,-27.528129 +2023,7,30,1,Queensland,152.645962,-28.14289 +2020,1,2,1,Queensland,152.249747,-27.496789 +2024,6,13,1,Queensland,153.146727,-27.767048 +2021,9,26,1,Queensland,153.047417,-27.545129 +2022,12,6,1,Queensland,152.945237,-28.125169 +2024,3,23,1,Queensland,153.105179,-27.529106 +2023,6,18,1,Queensland,153.093099,-27.524128 +2024,8,10,1,Queensland,153.090953,-27.527014 +2020,5,3,1,Queensland,153.058418,-27.546812 +2022,2,1,1,South Australia,138.692149,-34.965847 +2023,10,8,1,Queensland,153.078074,-27.509288 +2024,1,11,1,Victoria,144.088475,-37.633672 +2024,8,10,1,New South Wales,153.395475,-28.275083 +2023,10,3,1,Queensland,153.053081,-27.542654 +2024,11,4,1,Queensland,151.724992,-27.429517 +2024,1,6,1,Queensland,153.091726,-27.527196 +2020,1,8,1,Queensland,152.90681,-28.173668 +2020,5,24,1,South Australia,138.522029,-34.924281 +2023,7,9,1,Queensland,153.073272,-27.545862 +2021,5,14,1,South Australia,137.494881,-35.708176 +2024,8,2,1,Queensland,153.073733,-27.54745 +2023,12,27,1,Queensland,153.092023,-27.525502 +2021,10,21,1,Queensland,153.057533,-27.551778 +2024,7,10,1,Queensland,153.108204,-27.527128 +2023,4,8,1,Queensland,151.895396,-27.600052 +2024,3,23,1,Queensland,153.093298,-27.526525 +2022,1,18,1,Queensland,151.863292,-26.594225 +2023,9,4,1,Queensland,151.934145,-27.33272 +2023,10,18,1,Queensland,152.003297,-27.413997 +2024,4,22,1,Queensland,152.989045,-27.170637 +2021,9,13,1,Queensland,153.070669,-27.651468 +2024,1,20,1,Queensland,153.092653,-27.528509 +2022,1,12,1,Queensland,152.80765,-27.531912 +2024,8,5,1,Queensland,152.204392,-26.143123 +2022,6,14,1,New South Wales,153.399574,-28.259798 +2023,3,22,1,Queensland,153.069761,-27.543702 +2022,9,12,1,Queensland,152.952964,-27.371158 +2023,5,1,1,Queensland,152.249352,-27.496289 +2024,7,23,1,South Australia,138.691143,-34.958885 +2023,1,18,1,Queensland,153.10773,-27.527309 +2020,8,13,1,Victoria,143.897507,-37.612959 +2023,5,27,1,Queensland,153.36854,-27.910168 +2022,5,19,1,Queensland,153.222703,-27.554883 +2024,2,22,1,South Australia,138.504509,-34.915296 +2023,6,9,1,Queensland,153.110314,-27.529207 +2024,11,2,1,Queensland,153.092129,-27.527127 +2023,1,2,1,Queensland,153.071831,-27.54466 +2024,8,28,1,Queensland,153.373207,-27.916853 +2023,11,25,1,Victoria,146.388232,-38.355015 +2024,4,27,1,Victoria,145.181429,-37.171459 +2023,1,5,1,Queensland,146.868413,-19.129169 +2023,12,11,1,Queensland,151.819612,-26.364183 +2023,1,13,1,Queensland,153.07258,-27.543499 +2020,8,27,1,Victoria,143.889948,-37.620004 +2022,11,8,1,Queensland,153.08284,-27.512146 +2020,1,9,1,Victoria,145.255769,-36.19391 +2023,1,22,1,New South Wales,150.822983,-34.10178 +2024,4,11,1,Queensland,152.546567,-27.929487 +2021,8,15,1,Queensland,153.105392,-27.529278 +2024,9,30,1,South Australia,138.721539,-34.89205 +2024,3,14,1,South Australia,138.72146,-34.89197 +2024,4,14,1,Queensland,153.091177,-27.527226 +2024,1,4,1,Queensland,151.957947,-27.444345 +2022,11,3,1,Queensland,152.888036,-27.648415 +2023,9,30,1,Queensland,153.000849,-27.284458 +2023,11,7,1,Queensland,153.103402,-27.530182 +2023,5,23,1,South Australia,138.528803,-34.918114 +2024,5,18,1,Queensland,153.092392,-27.527371 +2023,12,14,1,Victoria,146.164642,-38.671028 +2023,9,10,1,Queensland,153.093305,-27.526131 +2021,1,25,1,Victoria,146.388356,-38.35437 +2024,3,30,1,Queensland,153.092011,-27.527034 +2023,7,9,1,Queensland,153.093044,-27.524347 +2023,1,29,1,Queensland,153.057658,-27.546409 +2023,8,5,1,Victoria,141.922381,-38.059297 +2020,5,28,1,New South Wales,153.377149,-28.254289 +2024,5,5,1,Queensland,146.868333,-19.129028 +2021,12,24,1,Victoria,143.899032,-37.616585 +2020,1,30,1,Queensland,153.057867,-27.550717 +2023,9,29,1,Queensland,153.403,-27.493333 +2023,4,30,1,Queensland,153.092756,-27.527633 +2024,11,23,1,Queensland,153.104467,-27.529421 +2024,10,31,1,Queensland,153.160433,-27.659889 +2024,3,4,1,Victoria,143.632383,-38.658355 +2023,8,13,1,Queensland,153.090308,-27.526604 +2024,5,13,1,South Australia,138.730882,-34.886426 +2022,12,24,1,South Australia,138.731669,-34.891642 +2021,12,28,1,Queensland,153.197097,-27.491142 +2020,2,26,1,Queensland,153.051669,-27.549078 +2021,7,4,1,South Australia,138.707843,-35.035641 +2020,5,11,1,Queensland,153.059162,-27.548742 +2023,2,1,1,Victoria,143.897335,-37.613486 +2023,7,14,1,Queensland,153.10887,-27.529196 +2020,5,26,1,Queensland,153.071833,-27.54511 +2023,1,7,1,Queensland,153.085198,-27.510227 +2021,12,28,1,Victoria,146.163881,-38.671372 +2021,3,5,1,Queensland,153.058414,-27.54794 +2020,8,1,1,Victoria,146.164536,-38.671078 +2024,4,24,1,Queensland,153.360778,-27.915987 +2024,2,18,1,Victoria,143.667463,-38.760915 +2023,10,25,1,Queensland,153.091525,-27.527299 +2024,3,30,1,Queensland,152.648858,-26.388082 +2023,10,10,1,Victoria,143.859521,-37.704444 +2023,7,23,1,Queensland,153.09236,-27.528275 +2024,8,22,1,Victoria,146.404859,-38.348182 +2022,5,2,1,Queensland,153.363642,-27.926529 +2023,3,24,1,Queensland,153.091741,-27.527103 +2022,6,21,1,South Australia,138.656844,-34.865207 +2022,4,16,1,Queensland,153.082698,-27.507845 +2023,11,19,1,Queensland,153.091243,-27.527194 +2020,6,21,1,Victoria,147.748823,-37.90592 +2023,3,10,1,South Australia,138.768131,-34.843203 +2023,3,21,1,South Australia,135.678487,-34.861776 +2022,12,3,1,Victoria,147.735245,-37.921845 +2021,10,3,1,Queensland,153.357728,-27.91933 +2021,1,3,1,Queensland,153.054657,-27.541423 +2024,4,16,1,South Australia,138.729704,-34.890656 +2022,1,16,1,New South Wales,153.375393,-28.252285 +2023,4,2,1,Queensland,153.091158,-27.527943 +2022,10,6,1,South Australia,138.656041,-35.001386 +2023,11,12,1,Queensland,153.091619,-27.527155 +2023,10,1,1,Queensland,153.071715,-27.544659 +2023,5,16,1,Queensland,151.523833,-27.720788 +2024,4,9,1,South Australia,138.730476,-34.890118 +2021,10,21,1,New South Wales,151.519884,-30.521812 +2024,9,8,1,Queensland,153.092115,-27.52538 +2024,4,20,1,Victoria,143.897279,-37.643029 +2020,2,15,1,New South Wales,151.518926,-30.520925 +2024,11,6,1,New South Wales,151.095373,-33.076721 +2023,8,14,1,Victoria,144.365697,-37.665745 +2022,6,17,1,Queensland,146.862942,-19.121148 +2023,2,28,1,Queensland,153.109117,-27.526791 +2024,7,3,1,Victoria,143.626801,-38.782326 +2024,1,15,1,Victoria,144.408641,-38.002449 +2023,2,17,1,Victoria,144.288352,-37.83327 +2023,11,12,1,Queensland,153.091514,-27.527099 +2022,9,9,1,New South Wales,150.810787,-34.100123 +2022,11,24,1,Queensland,151.946309,-27.467381 +2023,10,31,1,Queensland,153.090887,-27.526578 +2024,10,15,1,Queensland,151.77323,-26.179137 +2024,3,22,1,Queensland,153.105541,-27.531419 +2022,8,20,1,Queensland,153.070096,-27.51057 +2021,5,9,1,Victoria,144.262345,-37.746742 +2021,7,28,1,Queensland,152.945617,-28.123817 +2022,6,23,1,Victoria,142.363504,-38.31853 +2023,4,8,1,Queensland,151.895396,-27.600052 +2023,6,26,1,Queensland,151.74889,-26.154354 +2020,12,31,1,Victoria,143.860596,-38.668532 +2024,4,12,1,South Australia,138.72229,-34.890951 +2023,8,9,1,Queensland,153.111271,-27.527165 +2023,12,15,1,Queensland,153.105469,-27.531388 +2020,2,11,1,New South Wales,150.831178,-34.076886 +2023,10,25,1,Queensland,153.189646,-27.701124 +2023,4,10,1,Queensland,153.091458,-27.526796 +2021,3,1,1,South Australia,138.56327,-35.026256 +2024,10,6,1,Queensland,151.953841,-27.470337 +2023,12,1,1,Queensland,151.718679,-26.145622 +2024,4,25,1,Queensland,153.072176,-27.544142 +2024,4,25,1,Queensland,153.104908,-27.529069 +2021,11,8,1,Victoria,146.16405,-38.671412 +2023,12,20,1,Queensland,153.104212,-27.530095 +2024,10,29,1,Queensland,153.083694,-27.505883 +2023,12,1,1,Queensland,151.596504,-27.746102 +2024,1,8,1,Queensland,153.108169,-27.52722 +2020,11,17,1,Queensland,153.051902,-27.548694 +2020,5,14,1,Queensland,146.868071,-19.127997 +2021,11,16,1,Queensland,151.882996,-26.196834 +2020,2,10,1,Queensland,153.056859,-27.551598 +2023,11,5,1,Queensland,151.531342,-27.724608 +2023,5,24,1,Queensland,151.821762,-26.483892 +2021,2,9,1,Victoria,146.163687,-38.671165 +2023,8,14,1,Queensland,153.147662,-27.514486 +2024,5,5,1,Victoria,143.894155,-37.578793 +2024,10,8,1,Queensland,151.715433,-27.571089 +2023,2,19,1,Queensland,153.036956,-27.549953 +2024,11,1,1,Victoria,145.834011,-38.436814 +2024,10,14,1,Queensland,153.104182,-27.53036 +2021,8,20,1,South Australia,138.733021,-34.88661 +2023,10,7,1,Queensland,153.092066,-27.525376 +2022,9,23,1,Victoria,144.276697,-37.842814 +2023,6,25,1,Queensland,152.931883,-27.276192 +2022,2,20,1,Queensland,152.866004,-28.211379 +2023,8,18,1,New South Wales,152.925442,-31.451557 +2024,6,13,1,Queensland,153.192393,-27.701846 +2023,11,2,1,Queensland,153.075248,-27.662848 +2021,11,6,1,Victoria,147.727392,-37.920331 +2021,5,8,1,New South Wales,153.4018,-28.259895 +2023,11,11,1,South Australia,138.700028,-34.876522 +2023,2,10,1,Victoria,145.263561,-38.486596 +2020,2,2,1,New South Wales,153.31329,-28.568458 +2024,4,6,1,Queensland,153.091643,-27.526967 +2023,11,8,1,Queensland,153.075248,-27.662848 +2023,10,4,1,Victoria,142.290886,-37.874102 +2020,6,25,1,New South Wales,153.377702,-28.254259 +2022,2,26,1,Queensland,153.077592,-27.542442 +2024,10,22,1,Queensland,153.090553,-27.525896 +2024,6,12,1,South Australia,138.732065,-34.890442 +2023,6,12,1,Victoria,145.141168,-38.38554 +2023,9,22,1,Queensland,153.184519,-27.74779 +2023,10,13,1,Queensland,152.930283,-27.579187 +2024,2,4,1,Victoria,143.708389,-38.645237 +2024,5,6,1,Queensland,153.103692,-27.529126 +2023,1,24,1,South Australia,140.960204,-38.012128 +2023,11,4,1,Queensland,153.375989,-27.917478 +2023,1,23,1,Queensland,153.034125,-27.550154 +2024,6,1,1,Queensland,153.092304,-27.527983 +2023,7,15,1,Queensland,153.091693,-27.526895 +2022,6,24,1,Victoria,142.290735,-37.8743 +2022,1,23,1,New South Wales,150.826365,-34.099573 +2023,12,26,1,Victoria,144.376855,-37.679704 +2023,11,15,1,Queensland,153.192379,-27.702991 +2023,10,1,1,Queensland,152.044701,-27.25616 +2022,4,15,1,New South Wales,153.402462,-28.260321 +2023,7,25,1,Queensland,153.109736,-27.528402 +2024,1,28,1,Queensland,151.621033,-27.620387 +2021,1,24,1,Victoria,143.85208,-38.672047 +2021,9,11,1,New South Wales,153.377783,-28.254367 +2024,10,2,1,South Australia,138.719276,-34.932892 +2021,7,3,1,New South Wales,153.377021,-28.254369 +2024,11,3,1,Queensland,153.142928,-27.624808 +2022,4,3,1,South Australia,138.636607,-35.007563 +2022,11,18,1,Queensland,151.55063,-27.812919 +2021,6,9,1,Queensland,153.168008,-27.549197 +2023,11,12,1,Queensland,153.092204,-27.527314 +2020,8,24,1,Queensland,153.059323,-27.549154 +2023,6,4,1,Queensland,153.369091,-27.833024 +2022,3,9,1,Queensland,153.05854,-27.551325 +2024,8,3,1,South Australia,138.745898,-35.027812 +2023,5,9,1,Queensland,153.090818,-27.525838 +2024,4,18,1,South Australia,138.720373,-34.891803 +2023,11,26,1,Queensland,153.09338,-27.525277 +2021,11,28,1,Queensland,151.523891,-27.716289 +2023,4,25,1,Queensland,151.514145,-27.733547 +2022,1,18,1,Victoria,144.310913,-37.277008 +2024,10,25,1,Queensland,153.073131,-27.519656 +2024,9,22,1,Queensland,153.092244,-27.528359 +2023,9,14,1,Queensland,153.033736,-27.549758 +2023,10,16,1,South Australia,138.733671,-34.887647 +2024,6,29,1,Queensland,152.536569,-27.94551 +2023,8,1,1,Queensland,152.004244,-27.412145 +2024,1,1,1,New South Wales,151.636287,-30.475474 +2024,6,6,1,Queensland,151.929383,-27.328755 +2024,9,5,1,Queensland,151.96548,-26.421045 +2024,7,28,1,Queensland,151.714662,-27.649595 +2024,6,19,1,South Australia,138.725583,-34.89361 +2020,5,6,1,Queensland,153.057776,-27.551158 +2023,12,20,1,Queensland,151.749888,-26.155079 +2023,7,2,1,Queensland,153.092458,-27.528486 +2021,10,2,1,New South Wales,153.400637,-28.257818 +2023,1,19,1,Queensland,152.860299,-28.215891 +2021,2,6,1,Queensland,153.078423,-27.506563 +2020,1,15,1,New South Wales,151.519675,-30.519709 +2024,4,1,1,Victoria,147.728863,-37.921857 +2023,2,1,1,Queensland,152.670095,-28.031558 +2023,2,23,1,Queensland,151.894268,-27.597975 +2020,6,8,1,Queensland,153.084241,-27.512473 +2024,6,15,1,Queensland,153.113438,-27.528387 +2024,4,27,1,Queensland,153.090903,-27.527161 +2023,8,21,1,Queensland,153.092019,-27.527215 +2020,4,6,1,South Australia,138.687021,-34.958464 +2022,2,14,1,Queensland,152.608521,-27.419223 +2024,4,12,1,South Australia,138.713446,-34.892671 +2021,6,24,1,Victoria,141.409052,-38.273839 +2024,10,6,1,Queensland,153.092234,-27.528446 +2023,8,25,1,Queensland,153.085052,-27.51055 +2023,11,12,1,Queensland,153.091593,-27.527149 +2023,8,12,1,Queensland,153.090147,-27.526699 +2020,2,8,1,South Australia,138.700331,-34.900809 +2020,10,6,1,Queensland,153.058321,-27.54652 +2024,6,9,1,Queensland,153.083992,-27.50986 +2020,11,21,1,South Australia,138.634522,-35.018472 +2024,5,23,1,South Australia,138.730144,-34.890725 +2021,3,11,1,Victoria,146.163789,-38.671288 +2023,1,8,1,Queensland,153.073567,-27.545797 +2023,9,14,1,Queensland,151.954487,-27.445485 +2023,7,1,1,Queensland,153.092501,-27.527247 +2024,9,21,1,Queensland,152.97586,-27.251143 +2024,6,7,1,New South Wales,146.586504,-34.776909 +2024,4,15,1,South Australia,138.722307,-34.890797 +2023,5,1,1,Queensland,153.093537,-27.524679 +2020,6,27,1,Queensland,152.882671,-27.139303 +2023,3,3,1,New South Wales,153.393005,-28.269039 +2023,4,26,1,Queensland,153.111406,-27.527208 +2020,1,25,1,Victoria,143.476041,-38.763614 +2023,12,16,1,Queensland,151.939777,-26.241048 +2024,2,24,1,South Australia,138.711672,-34.990837 +2023,12,26,1,Queensland,153.092535,-27.527582 +2023,4,30,1,Queensland,153.092443,-27.527809 +2022,9,27,1,South Australia,138.714655,-34.901871 +2024,5,16,1,South Australia,138.720675,-34.887153 +2023,10,28,1,Victoria,141.967545,-37.933013 +2020,9,6,1,South Australia,138.641325,-34.97764 +2022,11,25,1,Victoria,146.386794,-38.354224 +2024,10,26,1,Victoria,146.643953,-36.174022 +2021,4,11,1,South Australia,138.641824,-35.001941 +2020,5,12,1,Queensland,151.975278,-27.608889 +2024,5,2,1,Queensland,152.939513,-27.273238 +2024,5,19,1,Queensland,153.044601,-27.551799 +2024,11,23,1,Queensland,152.003022,-27.413313 +2024,3,3,1,Queensland,152.860838,-27.54838 +2024,10,17,1,Queensland,152.611297,-27.332145 +2023,9,10,1,Queensland,153.000636,-27.284739 +2023,6,11,1,Queensland,153.090466,-27.526833 +2020,2,2,1,Queensland,153.069544,-27.545519 +2023,2,13,1,South Australia,138.666077,-34.865235 +2024,1,27,1,Queensland,151.5269,-27.716453 +2023,9,29,1,Queensland,153.108212,-27.52705 +2023,2,27,1,Queensland,153.103171,-27.529136 +2021,2,11,1,Queensland,153.058585,-27.551361 +2023,7,31,1,Queensland,153.103147,-27.529077 +2024,6,29,1,Queensland,153.371971,-27.909986 +2021,11,29,1,Victoria,144.173662,-37.898413 +2023,6,12,1,Queensland,153.055239,-27.537925 +2024,10,8,1,Queensland,153.110267,-27.526685 +2022,9,11,1,South Australia,138.637647,-34.997614 +2024,9,3,1,South Australia,138.730162,-34.890478 +2024,11,10,1,Queensland,153.09039,-27.526832 +2022,8,14,1,South Australia,138.753175,-35.008597 +2023,1,7,1,Queensland,153.104132,-27.529431 +2022,10,16,1,New South Wales,151.068497,-33.154686 +2024,4,11,1,Queensland,152.547689,-27.929628 +2024,11,10,1,Queensland,152.078278,-26.974792 +2022,11,19,1,New South Wales,151.077964,-33.147398 +2024,4,14,1,Queensland,153.070186,-27.510825 +2024,9,24,1,Queensland,151.826978,-26.413203 +2022,12,30,1,Queensland,153.092042,-27.527095 +2020,9,5,1,South Australia,138.600056,-35.014797 +2022,4,13,1,New South Wales,152.92752,-31.458242 +2021,10,14,1,Victoria,144.095225,-37.521052 +2023,5,14,1,Queensland,153.090983,-27.52745 +2024,8,30,1,Queensland,152.151,-27.462478 +2023,12,20,1,Queensland,153.102519,-27.529473 +2020,2,11,1,Queensland,153.050178,-27.549239 +2023,8,21,1,Queensland,153.103559,-27.53013 +2023,12,30,1,Queensland,153.092039,-27.527145 +2024,10,30,1,Queensland,153.10339,-27.52846 +2021,10,14,1,Queensland,152.344529,-27.831795 +2023,7,14,1,Queensland,151.822595,-26.44925 +2024,2,28,1,Queensland,151.815231,-26.166516 +2024,10,18,1,Queensland,152.992637,-27.823465 +2023,12,5,1,South Australia,138.720328,-34.892995 +2024,4,22,1,Victoria,143.513887,-38.832353 +2023,8,24,1,Victoria,142.363098,-38.319003 +2023,2,10,1,Queensland,153.108194,-27.527128 +2024,11,11,1,Queensland,152.620063,-27.418207 +2021,7,30,1,Victoria,145.059512,-37.783049 +2024,2,25,1,South Australia,138.702664,-34.903137 +2024,7,15,1,Queensland,153.40068,-27.495833 +2024,10,10,1,Queensland,151.812421,-26.130105 +2024,1,3,1,Queensland,151.93135,-27.333792 +2024,9,16,1,New South Wales,146.581725,-34.766407 +2024,10,5,1,Queensland,153.092906,-27.524065 +2022,10,27,1,Queensland,146.871644,-19.123501 +2022,3,28,1,New South Wales,146.418367,-34.697433 +2024,11,2,1,Queensland,153.070408,-27.511022 +2023,4,5,1,Queensland,153.036596,-27.534119 +2023,11,16,1,South Australia,138.58784,-35.088518 +2023,7,21,1,Victoria,142.834241,-38.393116 +2023,8,8,1,Queensland,151.893834,-26.189596 +2023,9,5,1,Queensland,153.115299,-27.528868 +2024,5,28,1,South Australia,138.794982,-34.882556 +2020,11,6,1,Queensland,153.050643,-27.547896 +2021,11,18,1,Queensland,153.162398,-27.813233 +2023,4,28,1,Queensland,153.438797,-27.401163 +2020,9,9,1,South Australia,138.65723,-35.012279 +2024,1,5,1,Queensland,151.641299,-27.730675 +2022,2,17,1,Queensland,152.613703,-27.338765 +2024,1,8,1,Victoria,141.561501,-37.714663 +2021,12,13,1,Queensland,153.075286,-27.540995 +2024,10,15,1,Queensland,153.103152,-27.527342 +2020,8,3,1,New South Wales,151.813421,-32.559194 +2021,8,15,1,Queensland,153.05478,-27.551183 +2024,7,14,1,Victoria,145.458245,-36.942941 +2022,10,7,1,Queensland,153.054248,-27.552106 +2023,6,24,1,Queensland,153.10766,-27.527222 +2022,12,3,1,Queensland,153.113405,-27.528515 +2024,4,10,1,Victoria,143.853956,-38.668431 +2021,11,29,1,Queensland,151.546549,-27.793083 +2023,6,26,1,Queensland,153.109098,-27.527252 +2022,12,22,1,Queensland,153.111681,-27.527814 +2022,9,29,1,Victoria,142.365376,-38.327388 +2024,3,30,1,New South Wales,152.780766,-31.633069 +2020,12,24,1,New South Wales,153.376667,-28.252729 +2020,4,27,1,South Australia,138.638004,-34.971218 +2023,12,30,1,Queensland,153.08015,-27.508203 +2021,11,8,1,Queensland,152.985024,-27.283522 +2021,11,19,1,New South Wales,153.377088,-28.254212 +2021,6,14,1,South Australia,138.970435,-34.702946 +2022,11,20,1,South Australia,136.881056,-35.770017 +2023,1,4,1,Queensland,152.003022,-27.41348 +2024,9,4,1,Queensland,152.678696,-27.987871 +2023,11,18,1,Queensland,153.092472,-27.52752 +2021,12,29,1,Queensland,153.037101,-27.535172 +2024,6,8,1,Victoria,141.922317,-38.059155 +2021,4,18,1,Victoria,144.410005,-37.962868 +2024,1,20,1,Queensland,153.090835,-27.527287 +2024,1,17,1,South Australia,138.718951,-34.891436 +2024,11,6,1,Victoria,142.979817,-38.496628 +2021,4,7,1,Queensland,153.404444,-27.493607 +2024,8,5,1,Queensland,153.072712,-27.542988 +2020,11,18,1,Queensland,152.703614,-27.093968 +2023,1,31,1,Queensland,153.111017,-27.529982 +2022,1,16,1,South Australia,138.675705,-35.086753 +2020,8,31,1,Queensland,152.082551,-27.546649 +2024,1,31,1,Queensland,153.086131,-27.510453 +2024,10,13,1,Queensland,153.090991,-27.52627 +2023,10,29,1,South Australia,138.768976,-34.881375 +2024,9,21,1,New South Wales,153.38915,-28.285035 +2024,4,27,1,Queensland,153.091884,-27.52701 +2021,11,22,1,Victoria,146.40521,-38.347564 +2024,9,26,1,New South Wales,151.095441,-33.076711 +2023,11,2,1,Queensland,151.925801,-27.524272 +2021,10,27,1,South Australia,138.637949,-34.97019 +2024,5,26,1,Queensland,153.092679,-27.525809 +2021,1,31,1,South Australia,138.678002,-35.033371 +2023,3,19,1,Queensland,153.090845,-27.52582 +2023,1,22,1,South Australia,138.674134,-34.943081 +2023,5,21,1,Queensland,153.09253,-27.525561 +2023,6,11,1,Queensland,153.093737,-27.524918 +2023,11,13,1,South Australia,138.721872,-34.892793 +2023,2,26,1,Queensland,151.895296,-27.597049 +2023,11,16,1,Queensland,151.546826,-27.793138 +2023,11,29,1,South Australia,138.72049,-34.892553 +2024,7,3,1,Victoria,143.606562,-38.768371 +2021,6,11,1,Queensland,153.058894,-27.551682 +2022,10,29,1,Queensland,153.072044,-27.543239 +2023,4,19,1,Queensland,146.859178,-19.131649 +2022,4,2,1,Queensland,152.776298,-27.785431 +2024,9,1,1,Queensland,153.086537,-27.510344 +2022,1,22,1,Victoria,144.185324,-37.825729 +2023,7,23,1,Queensland,153.093094,-27.524942 +2024,10,31,1,Victoria,146.752717,-36.40493 +2024,10,5,1,South Australia,138.614279,-34.902655 +2022,6,20,1,Victoria,145.316007,-38.363214 +2024,1,6,1,Queensland,152.929077,-27.580959 +2024,8,17,1,Queensland,151.714705,-27.649617 +2023,10,22,1,Queensland,153.091481,-27.527311 +2021,11,16,1,Queensland,153.076295,-27.817245 +2021,10,25,1,Victoria,145.330621,-35.874236 +2020,11,9,1,New South Wales,153.377096,-28.254509 +2021,8,30,1,South Australia,138.733246,-34.886951 +2022,12,18,1,Queensland,152.003219,-27.413923 +2020,9,13,1,Queensland,152.998379,-27.436148 +2024,3,23,1,Queensland,153.105515,-27.531473 +2024,6,1,1,Queensland,153.111352,-27.528835 +2023,9,23,1,Queensland,152.554658,-28.012781 +2023,9,9,1,Queensland,152.636244,-26.939372 +2020,3,2,1,Victoria,143.986414,-38.521429 +2024,3,15,1,Queensland,153.103601,-27.530834 +2020,7,5,1,New South Wales,153.3776,-28.254525 +2022,10,12,1,Queensland,153.073544,-27.545834 +2023,7,16,1,South Australia,136.811271,-35.959996 +2024,2,17,1,South Australia,138.822662,-34.666542 +2022,11,27,1,Queensland,152.049013,-27.264957 +2021,4,24,1,Queensland,153.441168,-27.401857 +2022,3,6,1,South Australia,138.712526,-34.886225 +2024,11,5,1,Victoria,145.302251,-38.383892 +2022,10,19,1,Queensland,153.057778,-27.550833 +2024,4,12,1,Victoria,145.314419,-38.375004 +2021,11,20,1,Victoria,145.308042,-38.384733 +2023,3,17,1,Queensland,153.058737,-27.547757 +2024,5,31,1,Queensland,153.073231,-27.545793 +2023,5,29,1,Queensland,153.111289,-27.529984 +2021,11,15,1,New South Wales,152.998892,-28.52427 +2020,4,17,1,Queensland,153.382969,-27.907798 +2024,10,5,1,Queensland,153.09073,-27.527243 +2022,10,16,1,Queensland,153.517285,-27.423853 +2023,10,22,1,South Australia,138.7088,-34.95774 +2024,8,24,1,Queensland,152.818404,-26.252431 +2024,6,22,1,Queensland,153.081308,-27.508225 +2023,10,21,1,Victoria,145.430897,-37.208115 +2024,6,3,1,Queensland,153.108942,-27.529238 +2024,7,7,1,Queensland,153.092929,-27.526557 +2020,4,7,1,Queensland,152.859615,-27.542516 +2024,11,8,1,Queensland,153.054373,-27.55272 +2024,1,29,1,South Australia,138.721984,-34.889652 +2022,2,10,1,South Australia,138.699646,-34.959151 +2021,11,3,1,Queensland,153.058026,-27.550715 +2023,9,24,1,Victoria,145.456542,-37.022636 +2023,12,30,1,Queensland,153.092825,-27.528452 +2023,12,18,1,South Australia,138.731843,-34.891599 +2021,2,15,1,Queensland,153.056023,-27.552165 +2023,11,26,1,Victoria,144.277423,-37.860267 +2020,5,13,1,Queensland,153.056787,-27.537641 +2023,10,28,1,Queensland,153.104941,-27.529717 +2024,9,20,1,New South Wales,152.979609,-30.422992 +2024,4,30,1,South Australia,138.730651,-34.890586 +2024,10,16,1,Victoria,143.89988,-37.617039 +2022,12,16,1,Queensland,152.86581,-28.211403 +2023,5,13,1,Victoria,144.172853,-37.913864 +2023,1,7,1,Queensland,153.112142,-27.528942 +2024,11,23,1,Queensland,151.997408,-27.409529 +2023,11,26,1,Queensland,153.074427,-27.545748 +2023,12,21,1,South Australia,138.691444,-34.903878 +2023,11,25,1,Queensland,152.0668,-27.260844 +2023,8,26,1,New South Wales,151.232955,-33.11913 +2023,4,16,1,Queensland,153.092338,-27.528043 +2021,9,28,1,Queensland,151.774565,-27.398429 +2024,7,6,1,Queensland,153.090883,-27.527182 +2024,3,25,1,South Australia,138.721201,-34.892847 +2022,1,28,1,Victoria,144.295497,-37.074481 +2023,12,30,1,Queensland,153.092669,-27.525581 +2023,9,17,1,Victoria,146.407013,-38.352354 +2023,9,4,1,Victoria,143.860711,-38.667948 +2022,11,24,1,Queensland,153.070312,-27.509711 +2023,3,7,1,Victoria,142.356434,-38.333712 +2023,6,26,1,Queensland,153.10906,-27.526619 +2021,11,29,1,Queensland,151.555996,-27.794422 +2024,11,5,1,Victoria,144.272211,-37.860721 +2022,1,12,1,Queensland,153.544421,-27.435569 +2024,11,8,1,Queensland,151.865454,-26.267582 +2023,1,11,1,Queensland,153.072835,-27.545886 +2023,9,25,1,Queensland,153.10772,-27.527183 +2022,9,5,1,Queensland,153.068919,-27.542084 +2024,10,17,1,South Australia,138.626158,-34.893151 +2023,3,23,1,Queensland,153.092141,-27.524482 +2022,1,23,1,Queensland,151.967688,-26.576088 +2024,10,27,1,South Australia,138.778415,-34.880911 +2021,11,24,1,Queensland,153.068163,-27.524994 +2021,7,15,1,Queensland,153.057576,-27.551411 +2024,9,27,1,Queensland,152.049928,-27.262945 +2023,10,2,1,Queensland,153.080832,-27.508614 +2023,6,2,1,Queensland,153.103062,-27.528917 +2022,12,7,1,South Australia,138.657215,-34.868643 +2021,11,11,1,Queensland,151.8192,-27.4735 +2021,1,12,1,Victoria,145.130477,-38.175806 +2024,11,18,1,Victoria,144.594839,-37.330869 +2020,3,16,1,Victoria,145.309052,-38.384838 +2024,1,21,1,Queensland,153.090633,-27.526296 +2023,9,18,1,Victoria,145.382063,-38.387168 +2024,5,5,1,Queensland,146.868422,-19.126611 +2024,9,1,1,New South Wales,152.456779,-31.937303 +2023,2,20,1,Queensland,153.056533,-27.544355 +2023,9,10,1,Queensland,153.092266,-27.528088 +2023,4,13,1,Queensland,153.091287,-27.525414 +2021,11,22,1,Queensland,151.624204,-25.633838 +2020,10,19,1,Victoria,142.362786,-38.318959 +2023,10,10,1,Queensland,153.109446,-27.529482 +2022,9,24,1,Victoria,143.66038,-38.748927 +2023,10,5,1,Queensland,153.372214,-27.914748 +2021,12,12,1,Queensland,153.08513,-27.509215 +2024,6,2,1,Queensland,153.093341,-27.525009 +2023,5,6,1,Queensland,152.103011,-27.570378 +2024,5,23,1,South Australia,138.715703,-34.890488 +2021,1,2,1,New South Wales,153.377571,-28.254182 +2024,7,4,1,South Australia,138.723704,-34.890283 +2021,10,5,1,Queensland,153.046607,-27.544366 +2024,4,14,1,Queensland,153.092343,-27.527459 +2023,10,22,1,Queensland,153.092257,-27.525368 +2021,5,2,1,Queensland,153.441002,-27.401332 +2024,6,13,1,New South Wales,151.095355,-33.076654 +2024,6,6,1,Victoria,144.960372,-38.423858 +2023,8,13,1,Queensland,151.7229,-27.43013 +2020,1,30,1,Victoria,149.731788,-37.535533 +2021,4,5,1,Queensland,152.402363,-27.46569 +2020,3,2,1,Victoria,143.986414,-38.521429 +2020,1,10,1,Queensland,146.870712,-19.12497 +2021,3,9,1,Victoria,145.236388,-38.23467 +2024,7,13,1,Queensland,151.743955,-26.146371 +2024,4,16,1,Queensland,152.591678,-26.894952 +2021,10,11,1,South Australia,136.808819,-35.960165 +2024,2,11,1,Queensland,153.482208,-27.414995 +2020,11,19,1,Queensland,153.055925,-27.539029 +2024,7,26,1,Queensland,153.091817,-27.527095 +2021,9,4,1,Queensland,153.054552,-27.546645 +2022,3,10,1,Victoria,143.536523,-38.814028 +2024,7,1,1,Victoria,145.295569,-38.378565 +2023,11,18,1,Queensland,152.779892,-27.788917 +2024,2,15,1,Queensland,153.091421,-27.527344 +2023,11,17,1,Victoria,145.802057,-36.788463 +2024,2,15,1,South Australia,135.685924,-34.83217 +2023,7,14,1,Queensland,153.108176,-27.527229 +2023,10,8,1,New South Wales,153.400813,-28.257899 +2023,2,9,1,Queensland,151.750039,-26.155358 +2024,9,21,1,Queensland,152.975678,-27.25195 +2021,10,20,1,South Australia,138.629657,-34.990948 +2021,10,24,1,Queensland,152.907121,-28.174495 +2022,3,14,1,Queensland,153.060855,-27.534244 +2021,5,10,1,Queensland,153.058883,-27.534013 +2021,11,27,1,Victoria,146.164214,-38.67152 +2023,9,6,1,Queensland,152.743565,-28.236194 +2024,11,7,1,Queensland,152.003128,-27.413783 +2024,9,24,1,Queensland,151.976497,-26.156417 +2023,10,11,1,Queensland,153.084375,-27.510903 +2024,7,3,1,Victoria,142.974717,-38.481703 +2023,4,16,1,Queensland,153.092235,-27.527956 +2022,11,12,1,Queensland,153.072108,-27.544095 +2024,1,20,1,New South Wales,150.601489,-29.870496 +2023,4,7,1,Queensland,153.086939,-27.51056 +2022,8,28,1,Queensland,153.375986,-27.918721 +2020,12,12,1,South Australia,138.707916,-34.984595 +2023,8,22,1,Victoria,143.513039,-38.835476 +2024,5,16,1,Queensland,151.851697,-26.492659 +2024,11,17,1,Queensland,153.091897,-27.527118 +2023,2,14,1,Queensland,153.104584,-27.530549 +2024,11,7,1,Queensland,152.581096,-27.956453 +2023,10,7,1,Queensland,153.09094,-27.526561 +2023,4,9,1,Victoria,145.409578,-36.878303 +2023,2,14,1,Victoria,145.612279,-38.675424 +2023,11,11,1,Queensland,153.091457,-27.527301 +2023,9,9,1,Queensland,153.055767,-27.550544 +2021,1,2,1,Queensland,153.069269,-27.546353 +2023,8,22,1,Queensland,153.346988,-28.088302 +2021,11,29,1,Queensland,151.56363,-27.795528 +2023,11,22,1,Queensland,151.716142,-27.568508 +2023,10,2,1,Queensland,152.004542,-27.41164 +2020,7,16,1,Queensland,153.058006,-27.551756 +2023,6,10,1,Victoria,143.536758,-38.813503 +2021,10,5,1,New South Wales,153.377349,-28.254272 +2023,8,7,1,Queensland,153.108358,-27.527205 +2024,4,7,1,Queensland,153.091379,-27.527152 +2023,9,10,1,Queensland,152.910424,-28.030745 +2020,8,9,1,Queensland,153.072097,-27.543838 +2022,12,14,1,Queensland,153.105628,-27.529659 +2021,2,24,1,Queensland,153.05299,-27.550109 +2024,11,11,1,South Australia,138.559417,-35.03265 +2021,10,13,1,Victoria,145.672887,-37.970246 +2024,9,17,1,Queensland,151.55652,-27.613 +2022,4,16,1,Victoria,149.7493,-37.552635 +2024,5,18,1,Queensland,153.092073,-27.527254 +2023,10,30,1,Queensland,152.003181,-27.412788 +2024,4,28,1,Queensland,153.356738,-27.939045 +2024,4,12,1,South Australia,138.722252,-34.89061 +2024,7,20,1,Queensland,153.104866,-27.530543 +2024,10,10,1,Victoria,146.391132,-38.360294 +2023,7,3,1,South Australia,138.665818,-34.8655 +2023,12,29,1,Queensland,153.093081,-27.527767 +2023,9,8,1,Queensland,153.103744,-27.530049 +2024,7,13,1,Victoria,143.311581,-38.288753 +2023,10,9,1,Queensland,153.372772,-27.912937 +2023,12,19,1,Queensland,153.092304,-27.525404 +2023,11,26,1,New South Wales,152.990442,-30.574536 +2023,7,9,1,Queensland,153.092167,-27.527028 +2023,5,19,1,Queensland,152.403426,-27.459143 +2023,1,14,1,Victoria,146.387658,-38.354201 +2022,9,28,1,Queensland,153.07324,-27.545617 +2023,3,5,1,South Australia,137.575683,-35.737297 +2023,1,8,1,Victoria,143.86068,-38.667512 +2023,2,5,1,Queensland,153.142214,-27.747787 +2024,10,10,1,New South Wales,150.853907,-34.079259 +2024,6,19,1,Queensland,153.107808,-27.527084 +2024,10,29,1,Queensland,146.87175,-19.123975 +2021,1,7,1,Queensland,153.072322,-27.549853 +2022,9,19,1,New South Wales,153.400888,-28.258202 +2022,11,25,1,Queensland,152.858021,-27.544119 +2023,7,15,1,Queensland,153.091431,-27.527388 +2024,5,13,1,Queensland,153.08316,-27.512472 +2024,9,23,1,Queensland,152.678589,-27.987843 +2024,7,6,1,Queensland,153.054122,-27.539272 +2024,8,24,1,South Australia,138.674988,-35.016972 +2023,5,18,1,Queensland,152.004051,-27.411715 +2023,12,20,1,Queensland,151.772632,-26.200206 +2021,12,27,1,Queensland,152.68945,-26.383676 +2024,11,16,1,New South Wales,152.06286,-32.700648 +2023,2,28,1,Queensland,153.103371,-27.529066 +2021,11,4,1,Queensland,152.759597,-28.241358 +2023,12,29,1,Queensland,151.762506,-26.16856 +2023,12,11,1,Queensland,151.813606,-26.248632 +2023,3,6,1,Queensland,152.056574,-27.25602 +2023,5,15,1,Queensland,153.092509,-27.52733 +2024,1,4,1,Victoria,142.363266,-38.318733 +2021,11,8,1,Queensland,151.932312,-27.331197 +2022,11,18,1,Queensland,153.062083,-27.543767 +2024,11,3,1,South Australia,138.721365,-34.891901 +2022,4,18,1,Queensland,153.061741,-27.534072 +2023,10,14,1,Queensland,153.375114,-27.916686 +2024,4,4,1,Victoria,142.36283,-38.316593 +2023,3,7,1,South Australia,137.494038,-35.707163 +2021,2,24,1,South Australia,138.672567,-35.019836 +2022,1,20,1,Victoria,145.588668,-36.797886 +2024,6,26,1,New South Wales,150.601458,-29.870421 +2024,7,21,1,South Australia,138.702372,-34.965267 +2023,8,31,1,Queensland,152.940674,-27.163416 +2023,9,4,1,Queensland,153.112849,-27.527518 +2023,12,30,1,New South Wales,152.906892,-31.441022 +2024,9,21,1,New South Wales,146.534365,-34.745023 +2021,12,31,1,Queensland,153.080658,-27.509142 +2020,5,1,1,Queensland,153.436932,-28.129474 +2024,6,16,1,Queensland,153.093432,-27.528137 +2023,7,27,1,Queensland,151.512353,-27.551735 +2021,7,13,1,Queensland,153.09208,-27.515445 +2023,3,11,1,Queensland,153.10804,-27.527196 +2024,1,19,1,Queensland,151.762506,-26.16856 +2024,4,4,1,Queensland,151.762506,-26.16856 +2023,9,19,1,New South Wales,153.565597,-28.387447 +2023,10,4,1,Queensland,153.105084,-27.529848 +2023,10,23,1,Queensland,152.401442,-27.457234 +2023,12,30,1,Queensland,153.091707,-27.527071 +2024,11,15,1,South Australia,138.854688,-34.731528 +2024,4,30,1,South Australia,138.728379,-34.888856 +2023,3,4,1,Queensland,153.103147,-27.528454 +2024,6,3,1,New South Wales,153.307898,-29.052749 +2023,9,13,1,Queensland,153.059075,-27.551466 +2024,10,19,1,Queensland,153.090742,-27.527527 +2023,4,7,1,Queensland,153.080938,-27.507685 +2024,10,6,1,Queensland,153.09224,-27.528426 +2024,5,21,1,South Australia,138.720713,-34.892817 +2024,2,5,1,Queensland,153.092949,-27.526023 +2023,8,23,1,Victoria,143.899871,-37.64192 +2024,6,24,1,South Australia,138.731921,-34.866812 +2021,5,7,1,Queensland,152.400038,-27.457601 +2020,5,29,1,Queensland,153.05635,-27.544243 +2023,11,24,1,Queensland,153.109877,-27.527914 +2020,2,13,1,South Australia,138.765762,-34.912351 +2024,2,8,1,New South Wales,150.816568,-34.155329 +2022,6,16,1,Queensland,146.864523,-19.145868 +2022,2,19,1,Victoria,147.773089,-37.902143 +2024,8,10,1,Queensland,153.091,-27.526912 +2023,12,4,1,Queensland,153.196409,-27.654288 +2024,1,20,1,Queensland,153.103464,-27.530634 +2023,7,3,1,Queensland,152.845773,-28.08609 +2022,2,14,1,Victoria,143.481831,-38.800562 +2024,10,19,1,Queensland,153.092352,-27.527853 +2024,3,15,1,Queensland,153.104592,-27.529554 +2023,1,20,1,Queensland,153.073381,-27.545819 +2024,5,8,1,Victoria,142.975022,-38.499981 +2022,7,30,1,Queensland,152.594235,-27.918813 +2024,3,10,1,Queensland,153.072525,-27.545827 +2021,8,25,1,Queensland,152.0869,-27.69505 +2023,5,6,1,New South Wales,153.12701,-30.294197 +2023,11,6,1,New South Wales,148.401121,-36.832497 +2022,2,16,1,Victoria,143.481831,-38.800562 +2024,1,26,1,Queensland,153.093645,-27.525022 +2023,3,4,1,New South Wales,152.472712,-32.363607 +2020,7,2,1,Victoria,146.163711,-38.671253 +2022,11,22,1,Queensland,153.074222,-27.545979 +2024,11,2,1,Queensland,153.092156,-27.527139 +2022,10,9,1,Queensland,152.868236,-28.218048 +2021,9,4,1,Queensland,152.940714,-27.276637 +2023,11,28,1,Queensland,151.570595,-27.630516 +2024,2,15,1,South Australia,135.684722,-34.825278 +2020,2,8,1,South Australia,138.702971,-34.903011 +2021,8,15,1,Queensland,153.058935,-27.558703 +2022,6,23,1,South Australia,138.73126,-34.88974 +2023,12,20,1,Queensland,151.969179,-27.533556 +2024,9,7,1,Victoria,142.363238,-38.318799 +2024,4,1,1,Queensland,153.063068,-27.541238 +2022,8,11,1,Victoria,144.077725,-37.627945 +2020,1,9,1,Queensland,151.854125,-26.506547 +2024,7,9,1,Queensland,153.103767,-27.52937 +2023,6,4,1,Victoria,144.490985,-37.641263 +2023,1,17,1,Queensland,153.073443,-27.547108 +2020,2,19,1,Queensland,153.278745,-27.5446 +2022,12,12,1,Queensland,152.796108,-28.244419 +2024,8,2,1,Queensland,153.065843,-27.543125 +2024,11,13,1,Queensland,153.329388,-27.979466 +2024,4,12,1,Victoria,145.317734,-38.346443 +2023,11,1,1,New South Wales,150.600266,-29.869158 +2024,5,8,1,Queensland,152.829895,-26.796037 +2021,11,6,1,Victoria,146.38757,-38.3547 +2021,11,28,1,Queensland,151.521156,-27.715511 +2024,2,26,1,New South Wales,150.878084,-34.057667 +2022,12,10,1,Victoria,143.62365,-38.797996 +2023,6,16,1,Victoria,146.387673,-38.35475 +2024,8,11,1,Victoria,145.307539,-38.384619 +2021,10,14,1,Queensland,152.344529,-27.831795 +2022,9,26,1,Queensland,153.081955,-27.507589 +2024,7,17,1,Queensland,153.10339,-27.530088 +2023,1,10,1,Queensland,153.069061,-27.525939 +2020,1,15,1,New South Wales,151.521021,-30.519674 +2023,5,8,1,Queensland,146.871801,-19.128596 +2023,12,29,1,Queensland,153.092303,-27.527277 +2022,2,23,1,Victoria,142.290611,-37.874347 +2024,2,20,1,New South Wales,149.472779,-33.758096 +2020,10,23,1,Queensland,153.037395,-27.549605 +2020,9,25,1,South Australia,138.655631,-35.002861 +2024,4,25,1,Victoria,143.483108,-38.800338 +2023,11,14,1,Queensland,153.090569,-27.525499 +2022,11,27,1,Queensland,152.046237,-27.255233 +2020,12,24,1,New South Wales,153.377201,-28.253584 +2024,3,23,1,South Australia,138.697582,-34.902793 +2022,9,11,1,Victoria,143.895651,-37.581542 +2023,11,4,1,Queensland,151.956551,-27.441018 +2022,11,16,1,Victoria,147.727499,-37.924327 +2024,5,18,1,Queensland,153.091051,-27.526005 +2021,10,24,1,Queensland,151.977,-26.161014 +2022,4,26,1,New South Wales,153.4031,-28.260052 +2024,3,16,1,Queensland,153.09255,-27.528207 +2022,12,13,1,South Australia,138.656722,-34.8667 +2024,2,13,1,South Australia,138.719499,-34.891687 +2024,6,7,1,Queensland,153.107608,-27.527211 +2024,10,20,1,New South Wales,149.531525,-33.563756 +2021,6,24,1,Queensland,153.057466,-27.551161 +2021,9,12,1,Queensland,153.133881,-27.565558 +2024,7,27,1,Queensland,153.399191,-27.497421 +2022,11,28,1,South Australia,138.657025,-34.865175 +2023,10,1,1,Queensland,153.101785,-27.529947 +2023,12,28,1,Victoria,148.269592,-37.209603 +2023,12,12,1,Victoria,146.396857,-38.354635 +2023,7,12,1,Queensland,153.061841,-27.550724 +2022,12,16,1,Victoria,147.04211,-38.493184 +2024,11,17,1,Queensland,153.092675,-27.525469 +2023,10,6,1,Queensland,152.213879,-27.532042 +2021,10,24,1,Queensland,153.081679,-27.508381 +2023,2,23,1,Victoria,144.576905,-37.392655 +2024,11,6,1,Queensland,153.110737,-27.529125 +2024,10,24,1,South Australia,138.712066,-35.005538 +2020,9,6,1,New South Wales,153.377428,-28.253821 +2023,10,4,1,South Australia,138.711351,-34.890791 +2020,8,17,1,Victoria,146.288296,-38.401901 +2024,8,10,1,Queensland,153.090322,-27.526836 +2023,8,19,1,Queensland,153.093572,-27.524354 +2024,11,4,1,Queensland,153.111435,-27.525275 +2020,11,7,1,Queensland,153.058917,-27.548691 +2023,12,23,1,Queensland,153.09299,-27.528232 +2022,9,15,1,Queensland,153.073326,-27.545611 +2023,1,5,1,Queensland,152.109554,-27.254566 +2022,12,30,1,Victoria,141.762619,-38.221236 +2024,10,7,1,Queensland,153.092977,-27.526349 +2023,12,29,1,Queensland,153.093017,-27.528104 +2024,8,11,1,Victoria,146.387708,-38.354828 +2023,8,21,1,Victoria,143.512999,-38.833982 +2024,5,15,1,Queensland,151.762506,-26.16856 +2021,10,22,1,New South Wales,150.814695,-34.095379 +2023,7,30,1,Victoria,145.27248,-38.136697 +2023,4,23,1,New South Wales,149.281762,-36.168236 +2020,2,4,1,Victoria,144.249413,-37.855711 +2022,4,4,1,Queensland,152.865972,-28.211416 +2022,4,12,1,New South Wales,153.401432,-28.25714 +2021,9,27,1,Victoria,146.1642,-38.671322 +2022,8,27,1,Queensland,152.83788,-28.094891 +2024,9,26,1,Victoria,143.538983,-38.781719 +2023,1,11,1,Queensland,153.109739,-27.529571 +2022,10,10,1,South Australia,138.721525,-34.892641 +2020,7,5,1,Queensland,153.145966,-27.746679 +2021,9,11,1,Queensland,152.811926,-27.536765 +2021,4,21,1,Queensland,153.061649,-27.53467 +2020,10,27,1,South Australia,138.92537,-34.751362 +2023,6,4,1,Queensland,153.053603,-27.550991 +2021,9,7,1,Queensland,151.787995,-27.39783 +2024,1,26,1,South Australia,138.650379,-35.017079 +2023,12,8,1,Queensland,153.091827,-27.525792 +2023,10,11,1,Queensland,153.091925,-27.527146 +2020,11,21,1,Queensland,152.9304,-27.374178 +2020,11,14,1,Queensland,152.552026,-28.011346 +2024,3,23,1,Queensland,153.091388,-27.527317 +2021,10,10,1,Queensland,153.08316,-27.516327 +2022,11,30,1,Queensland,151.719208,-27.423477 +2020,9,6,1,Victoria,145.177795,-38.176222 +2024,1,21,1,Queensland,153.092562,-27.525419 +2021,7,27,1,New South Wales,153.400646,-28.257815 +2020,12,4,1,Queensland,153.055002,-27.538697 +2021,10,23,1,Queensland,151.18338,-26.90935 +2021,1,12,1,Victoria,146.163742,-38.671138 +2024,3,31,1,Victoria,145.304555,-38.384246 +2020,5,31,1,Victoria,146.163772,-38.671208 +2022,11,13,1,Queensland,146.869293,-19.125229 +2024,9,30,1,Queensland,153.189813,-27.70208 +2023,10,23,1,Queensland,153.111857,-27.527893 +2024,11,16,1,Queensland,151.771995,-26.137334 +2023,5,6,1,Queensland,153.148961,-27.790025 +2024,3,2,1,Victoria,144.09462,-37.623895 +2024,8,15,1,Queensland,152.074445,-27.358333 +2024,8,17,1,Queensland,152.968825,-27.464688 +2024,1,20,1,Queensland,153.092567,-27.528323 +2022,12,27,1,New South Wales,146.59362,-34.775175 +2024,10,2,1,Victoria,141.775067,-38.203257 +2023,2,1,1,Queensland,153.103464,-27.530172 +2020,6,27,1,Queensland,153.059902,-27.549542 +2024,9,8,1,Queensland,153.090971,-27.526423 +2021,8,11,1,Queensland,153.044799,-27.540188 +2022,11,14,1,South Australia,137.494167,-35.707073 +2024,5,3,1,Queensland,153.091433,-27.527344 +2024,5,27,1,Queensland,152.895649,-27.644416 +2020,11,4,1,Queensland,153.057552,-27.551501 +2021,6,19,1,Queensland,153.05513,-27.543936 +2023,12,7,1,South Australia,138.728876,-34.887045 +2022,12,23,1,Victoria,142.290998,-37.874444 +2024,8,25,1,Queensland,153.091549,-27.527268 +2023,10,25,1,Queensland,153.109958,-27.527587 +2023,1,27,1,Queensland,153.09083,-27.526648 +2023,7,28,1,Queensland,153.404058,-27.494367 +2023,12,16,1,Victoria,147.731689,-37.923261 +2024,1,22,1,Victoria,141.159782,-38.045935 +2022,11,5,1,New South Wales,151.078295,-33.147176 +2021,4,22,1,Queensland,153.069749,-27.510527 +2024,8,11,1,Queensland,153.090907,-27.526325 +2023,4,18,1,Victoria,143.903565,-37.748136 +2023,2,12,1,Queensland,152.799453,-27.181213 +2023,9,8,1,Queensland,153.091349,-27.527353 +2023,4,3,1,Queensland,152.866492,-28.211118 +2024,3,2,1,Victoria,143.965562,-38.441445 +2024,5,27,1,Queensland,153.440995,-27.392708 +2022,12,30,1,Queensland,153.113361,-27.528432 +2020,8,21,1,Queensland,153.001297,-27.165364 +2022,7,17,1,Queensland,153.049103,-27.549883 +2024,4,12,1,Victoria,145.309799,-38.384972 +2023,10,4,1,Queensland,152.844467,-28.097059 +2023,9,12,1,Queensland,153.102868,-27.527319 +2022,12,11,1,Queensland,153.068181,-27.539953 +2024,11,6,1,New South Wales,150.651826,-29.779576 +2023,9,5,1,Queensland,153.109463,-27.527326 +2023,2,26,1,Queensland,151.888855,-27.599857 +2021,6,22,1,Queensland,153.054498,-27.550864 +2024,3,30,1,Queensland,153.093069,-27.526316 +2023,12,22,1,Victoria,144.174383,-37.821707 +2023,12,30,1,Queensland,153.092691,-27.527918 +2024,10,21,1,Victoria,143.419854,-38.756799 +2020,1,31,1,South Australia,138.878498,-34.883442 +2020,11,14,1,New South Wales,150.026568,-33.793269 +2024,3,15,1,Queensland,153.108989,-27.529233 +2022,10,9,1,Queensland,152.868138,-28.219212 +2022,11,13,1,Queensland,146.870255,-19.132298 +2024,8,5,1,Queensland,152.204283,-26.14315 +2022,12,19,1,Queensland,153.109615,-27.529485 +2022,1,9,1,Queensland,153.11134,-27.528413 +2023,7,10,1,Queensland,153.107327,-27.527134 +2022,2,11,1,Queensland,153.109726,-27.541176 +2023,1,22,1,Queensland,153.083853,-27.516761 +2024,11,10,1,Queensland,146.870728,-19.124164 +2024,8,4,1,New South Wales,150.614033,-33.735404 +2022,10,1,1,Queensland,152.146592,-27.509763 +2020,10,9,1,New South Wales,153.377515,-28.254048 +2023,6,19,1,Victoria,145.1239,-38.380403 +2024,3,5,1,Queensland,153.075395,-27.51048 +2021,6,29,1,Victoria,144.233441,-37.865365 +2023,9,25,1,Queensland,153.10902,-27.528912 +2021,3,23,1,South Australia,138.722495,-34.892408 +2020,2,24,1,Queensland,153.057727,-27.551846 +2022,11,21,1,Queensland,153.059595,-27.551243 +2022,3,11,1,New South Wales,152.873301,-30.670426 +2024,10,19,1,Queensland,153.091779,-27.526933 +2024,6,29,1,Queensland,152.64145,-27.453252 +2023,3,26,1,Queensland,153.092183,-27.525045 +2023,11,22,1,Queensland,152.995728,-27.173747 +2024,6,21,1,South Australia,138.729477,-34.890442 +2023,8,20,1,Queensland,153.084231,-27.511737 +2021,3,2,1,Queensland,152.19756,-27.247838 +2020,5,16,1,Queensland,153.456943,-28.092491 +2024,6,1,1,Victoria,144.279273,-37.860548 +2022,10,1,1,Victoria,145.08104,-38.286999 +2024,3,27,1,South Australia,138.656432,-34.868957 +2020,10,5,1,Victoria,145.370989,-36.929611 +2024,7,27,1,Queensland,153.091905,-27.525911 +2023,12,17,1,South Australia,137.469313,-35.805958 +2024,10,29,1,Queensland,153.05455,-27.552203 +2023,7,21,1,Queensland,152.901374,-27.633624 +2023,7,2,1,Victoria,145.156479,-37.036155 +2024,4,20,1,South Australia,138.727495,-34.888553 +2022,11,30,1,Queensland,151.650362,-27.62792 +2023,12,24,1,Queensland,146.86798,-19.128753 +2024,4,21,1,Queensland,153.061595,-27.556261 +2022,9,1,1,Queensland,152.559003,-26.456922 +2021,6,30,1,Queensland,146.855522,-19.128662 +2024,9,28,1,Queensland,153.075941,-27.505145 +2024,5,1,1,South Australia,138.72223,-34.890651 +2024,2,2,1,Victoria,145.500734,-37.86653 +2022,6,18,1,Queensland,153.374489,-27.911248 +2024,4,6,1,Queensland,153.092406,-27.527063 +2024,5,26,1,Queensland,152.044568,-27.257927 +2024,9,5,1,Queensland,152.074653,-27.358635 +2024,6,3,1,South Australia,138.721691,-34.891884 +2024,11,1,1,Queensland,153.160433,-27.659889 +2021,1,5,1,New South Wales,151.520015,-30.521949 +2024,1,23,1,Queensland,153.109429,-27.529422 +2024,7,7,1,Queensland,151.749888,-26.155079 +2022,1,7,1,Victoria,143.892946,-37.619307 +2024,7,12,1,Queensland,153.103108,-27.530051 +2020,1,5,1,Queensland,151.770221,-26.44097 +2023,12,17,1,Queensland,151.749888,-26.155079 +2021,11,23,1,South Australia,138.682704,-35.017935 +2023,3,4,1,Queensland,153.090864,-27.526711 +2024,7,6,1,Queensland,153.090502,-27.526835 +2024,9,14,1,Queensland,153.092505,-27.524416 +2023,10,23,1,Victoria,142.364526,-38.318484 +2024,8,25,1,Queensland,153.090502,-27.526575 +2021,5,15,1,New South Wales,153.403041,-28.260651 +2024,7,31,1,Queensland,153.370582,-27.899135 +2024,2,3,1,Queensland,153.108432,-27.526869 +2024,10,4,1,Queensland,146.870637,-19.123094 +2021,4,29,1,Victoria,144.31067,-37.276967 +2024,10,22,1,Queensland,153.090394,-27.526889 +2024,10,4,1,Queensland,153.192666,-27.653919 +2023,9,4,1,Queensland,153.094465,-27.533153 +2022,7,9,1,South Australia,138.739261,-34.828463 +2023,10,6,1,Queensland,153.110772,-27.529799 +2024,9,26,1,Queensland,153.016997,-26.366203 +2024,6,30,1,Queensland,153.091793,-27.527066 +2023,11,12,1,Queensland,152.999644,-27.284098 +2023,12,31,1,Victoria,144.275424,-37.395358 +2024,6,14,1,Queensland,152.663646,-26.394595 +2023,10,20,1,New South Wales,151.095261,-33.076701 +2023,10,16,1,Queensland,151.973277,-27.50338 +2020,10,9,1,Queensland,153.051469,-27.548643 +2021,7,24,1,Queensland,153.067658,-27.508022 +2024,11,9,1,Queensland,153.092536,-27.527397 +2023,7,15,1,New South Wales,152.865974,-31.345156 +2023,12,22,1,South Australia,138.702055,-34.903038 +2023,12,3,1,South Australia,138.720632,-34.892866 +2021,7,17,1,Queensland,153.060051,-27.54552 +2023,7,29,1,Queensland,153.10905,-27.526724 +2020,7,11,1,Victoria,145.268245,-38.130648 +2020,7,26,1,Victoria,145.053965,-38.266772 +2024,5,8,1,Victoria,142.978194,-38.497272 +2021,7,29,1,South Australia,138.733553,-34.888278 +2020,5,11,1,New South Wales,153.400673,-28.257967 +2024,1,2,1,Queensland,153.090558,-27.525998 +2023,3,4,1,Queensland,148.831871,-21.765116 +2024,10,4,1,Queensland,146.868928,-19.125186 +2021,4,27,1,Queensland,152.403971,-27.454487 +2023,9,30,1,South Australia,138.69314,-34.956128 +2022,11,4,1,Queensland,153.071966,-27.545607 +2024,7,14,1,Queensland,153.091529,-27.52687 +2024,4,19,1,Queensland,153.0733,-27.545804 +2020,10,8,1,Queensland,152.681099,-28.001058 +2022,1,4,1,Queensland,151.809224,-26.109239 +2022,10,26,1,New South Wales,151.095108,-33.076469 +2023,12,18,1,South Australia,138.730289,-34.89092 +2023,3,12,1,New South Wales,151.147206,-33.346947 +2024,1,6,1,Queensland,152.999921,-27.284489 +2024,9,3,1,South Australia,138.733792,-34.886646 +2020,3,25,1,New South Wales,151.520646,-30.52016 +2024,1,25,1,Queensland,151.821621,-26.459153 +2023,10,21,1,Queensland,151.511679,-27.55347 +2024,1,6,1,Queensland,153.090917,-27.527618 +2024,6,17,1,Queensland,153.11129,-27.528001 +2023,10,27,1,South Australia,135.685102,-34.86179 +2024,10,12,1,Queensland,153.433187,-28.111364 +2023,1,6,1,Queensland,153.106733,-27.527817 +2023,12,3,1,Queensland,153.091657,-27.527159 +2020,1,14,1,Victoria,141.557191,-38.369073 +2020,2,20,1,Queensland,153.055697,-27.552138 +2022,6,13,1,Queensland,153.0504,-27.54794 +2024,5,6,1,South Australia,138.641845,-35.082089 +2022,12,14,1,Queensland,152.478395,-27.742575 +2020,12,21,1,Queensland,153.228643,-27.502921 +2024,5,3,1,Victoria,145.998125,-38.827012 +2021,11,12,1,New South Wales,153.377493,-28.254102 +2020,2,5,1,Queensland,153.375033,-27.91417 +2024,2,28,1,New South Wales,152.905593,-31.436984 +2024,3,20,1,Queensland,153.102683,-27.52598 +2024,1,5,1,New South Wales,150.984492,-34.092374 +2020,11,7,1,Queensland,153.051879,-27.548528 +2022,11,18,1,Queensland,151.526567,-27.69292 +2023,3,4,1,Queensland,153.091735,-27.527083 +2021,3,5,1,South Australia,138.733981,-34.887444 +2023,10,19,1,New South Wales,149.60101,-32.576407 +2023,11,30,1,South Australia,138.715616,-34.890841 +2023,8,1,1,Queensland,153.103541,-27.530057 +2023,8,9,1,Queensland,152.003692,-27.411403 +2024,1,9,1,New South Wales,150.849598,-34.081018 +2021,11,13,1,Queensland,151.620933,-25.629627 +2023,11,24,1,South Australia,138.722659,-34.892096 +2024,8,4,1,Queensland,153.090691,-27.526994 +2022,11,12,1,Queensland,152.077175,-26.975691 +2023,7,16,1,South Australia,138.674274,-34.975851 +2023,12,7,1,Queensland,151.749824,-26.155098 +2023,10,22,1,Queensland,153.090456,-27.52692 +2021,4,8,1,Victoria,145.27465,-38.129928 +2024,10,31,1,New South Wales,150.884605,-34.046797 +2021,12,19,1,Victoria,146.164611,-38.670988 +2023,7,29,1,Queensland,153.051782,-27.546633 +2024,11,13,1,Queensland,153.103278,-27.528134 +2024,11,17,1,South Australia,138.693663,-34.922528 +2020,5,24,1,South Australia,138.749992,-34.997536 +2020,7,16,1,Queensland,153.063511,-27.550102 +2022,1,18,1,South Australia,138.732424,-34.887334 +2023,9,28,1,Victoria,147.757058,-37.90576 +2024,9,1,1,Queensland,152.997574,-27.287886 +2023,8,9,1,Queensland,153.109932,-27.52767 +2022,10,31,1,South Australia,138.655063,-35.012303 +2023,1,23,1,Queensland,153.103944,-27.530153 +2022,9,12,1,Queensland,153.074153,-27.545638 +2023,5,29,1,Queensland,152.899996,-27.6357 +2023,6,24,1,Queensland,153.108158,-27.527227 +2024,8,11,1,New South Wales,150.819129,-34.135235 +2022,8,27,1,Queensland,152.1833,-27.53118 +2024,5,3,1,Victoria,145.269183,-38.13045 +2021,9,9,1,South Australia,138.739948,-34.919677 +2023,10,19,1,Victoria,145.454955,-36.868488 +2021,10,15,1,New South Wales,149.984426,-36.548035 +2023,5,7,1,Queensland,153.09226,-27.528043 +2024,10,21,1,New South Wales,146.586013,-34.772055 +2024,4,11,1,Queensland,153.079553,-27.514856 +2022,10,27,1,New South Wales,153.400115,-28.260394 +2024,3,23,1,Victoria,146.386935,-38.527337 +2024,3,16,1,Victoria,142.631542,-38.341674 +2023,10,2,1,Queensland,153.108261,-27.526936 +2023,8,14,1,New South Wales,150.82222,-34.101947 +2022,11,4,1,Queensland,153.058176,-27.551614 +2023,10,8,1,Queensland,153.078175,-27.505801 +2024,9,3,1,South Australia,138.731843,-34.891593 +2022,12,4,1,Queensland,153.054509,-27.541575 +2020,1,27,1,Victoria,144.946089,-38.428525 +2023,8,20,1,Queensland,153.069927,-27.510567 +2023,8,20,1,New South Wales,151.234502,-33.117676 +2022,11,30,1,Queensland,153.073209,-27.545928 +2023,9,9,1,Queensland,153.108064,-27.529072 +2023,11,4,1,Queensland,152.111414,-27.566284 +2024,3,1,1,Queensland,153.057516,-27.551048 +2024,4,9,1,South Australia,138.729746,-34.887268 +2021,9,19,1,South Australia,138.699937,-35.069064 +2023,10,15,1,Queensland,153.090471,-27.527238 +2023,12,22,1,South Australia,138.707458,-34.904025 +2022,2,5,1,South Australia,138.712822,-34.910982 +2022,11,7,1,Victoria,146.282867,-38.957058 +2022,11,12,1,Queensland,152.677846,-27.987405 +2024,5,7,1,Victoria,141.440659,-38.110108 +2022,11,13,1,Victoria,143.87755,-37.637307 +2021,3,19,1,South Australia,138.715376,-35.203819 +2023,8,22,1,Victoria,143.514864,-38.832304 +2024,3,30,1,Queensland,153.092741,-27.527555 +2023,7,4,1,Queensland,151.716947,-26.084854 +2024,4,6,1,Queensland,153.092259,-27.527725 +2021,3,22,1,Victoria,146.163555,-38.671026 +2024,4,8,1,South Australia,138.722573,-34.89246 +2023,10,31,1,South Australia,138.71874,-34.891806 +2023,4,23,1,Queensland,152.079103,-26.974322 +2023,7,7,1,Queensland,153.105058,-27.530181 +2021,11,29,1,Queensland,151.570052,-27.757508 +2024,7,5,1,Queensland,153.091758,-27.526891 +2024,1,22,1,Queensland,151.814029,-26.16528 +2021,8,25,1,Queensland,152.086533,-27.697033 +2024,7,28,1,South Australia,138.698564,-34.933278 +2024,3,15,1,Victoria,141.308578,-38.052539 +2023,7,22,1,Queensland,153.091883,-27.528864 +2021,9,4,1,Victoria,146.16384,-38.67118 +2021,2,10,1,Queensland,153.055807,-27.536997 +2024,7,3,1,Queensland,152.67776,-27.987375 +2024,10,23,1,Queensland,146.865705,-19.142205 +2023,1,24,1,Queensland,153.071626,-27.544731 +2020,1,24,1,Queensland,153.057951,-27.545579 +2020,10,22,1,Queensland,153.058335,-27.547074 +2022,10,23,1,Queensland,151.834431,-26.367642 +2024,4,14,1,Victoria,145.566863,-37.088058 +2024,10,20,1,Queensland,153.091291,-27.527339 +2022,12,10,1,Queensland,152.865733,-28.211503 +2024,6,1,1,Queensland,153.070206,-27.223822 +2022,12,21,1,Queensland,153.106688,-27.508378 +2024,4,9,1,Victoria,143.907236,-37.639534 +2023,8,10,1,Queensland,152.816283,-27.818138 +2023,6,3,1,Queensland,152.249353,-27.496289 +2021,9,15,1,South Australia,138.729269,-34.88977 +2024,7,17,1,Queensland,152.204215,-26.143162 +2020,1,18,1,Queensland,153.068194,-27.546205 +2023,12,19,1,New South Wales,150.822097,-34.101605 +2021,11,22,1,Victoria,145.312542,-38.384725 +2024,1,16,1,Queensland,153.091969,-27.525363 +2024,9,3,1,South Australia,138.728333,-34.889865 +2020,5,28,1,Victoria,146.163956,-38.67153 +2023,10,21,1,Queensland,152.247809,-27.503452 +2024,5,18,1,Queensland,153.450049,-28.094804 +2021,9,27,1,New South Wales,153.395921,-28.275296 +2024,6,14,1,Queensland,153.091523,-27.526729 +2024,1,31,1,South Australia,138.703914,-34.902938 +2024,2,23,1,Queensland,153.103494,-27.530119 +2023,4,19,1,Queensland,153.108514,-27.52731 +2021,11,3,1,Queensland,153.080947,-27.508805 +2021,5,2,1,South Australia,138.667322,-35.017321 +2023,8,6,1,Queensland,153.086291,-27.510338 +2020,11,11,1,Queensland,153.08312,-27.511637 +2022,11,14,1,Victoria,143.543546,-37.289749 +2024,9,28,1,Queensland,153.091607,-27.527214 +2023,10,3,1,Queensland,153.103264,-27.528957 +2021,5,6,1,Queensland,153.078637,-27.513625 +2020,11,5,1,Queensland,153.059502,-27.551602 +2022,4,20,1,Queensland,151.620041,-25.629911 +2021,12,6,1,South Australia,137.124308,-35.984451 +2024,10,9,1,Victoria,142.358486,-38.318183 +2024,9,16,1,New South Wales,153.073806,-30.886345 +2024,10,22,1,Victoria,143.406974,-38.734878 +2020,11,1,1,New South Wales,153.377351,-28.253871 +2023,7,12,1,Queensland,153.111227,-27.527104 +2022,9,20,1,Victoria,144.252033,-37.817972 +2023,4,13,1,Victoria,143.859492,-38.67148 +2020,6,1,1,Victoria,146.163956,-38.67153 +2023,10,15,1,Queensland,153.092318,-27.525742 +2024,7,29,1,Queensland,153.057478,-27.550953 +2022,8,14,1,Victoria,144.177427,-37.304957 +2023,11,21,1,Queensland,152.065722,-27.280765 +2021,9,15,1,Victoria,145.585259,-37.797289 +2022,6,26,1,Queensland,153.106758,-27.508617 +2020,1,5,1,Queensland,151.806022,-26.446494 +2024,6,26,1,Queensland,153.111953,-27.527833 +2022,9,2,1,Victoria,145.73536,-36.736237 +2024,10,2,1,New South Wales,146.548825,-34.747717 +2023,3,20,1,Queensland,153.110998,-27.529936 +2020,11,20,1,New South Wales,153.377043,-28.254443 +2022,10,15,1,Victoria,143.879942,-37.643427 +2023,3,5,1,Queensland,153.093087,-27.526099 +2022,5,11,1,Victoria,148.26822,-37.214358 +2022,9,17,1,Victoria,142.360512,-38.31934 +2024,4,25,1,Queensland,153.072732,-27.543254 +2022,11,25,1,New South Wales,151.052811,-33.19203 +2023,12,3,1,Victoria,146.281382,-38.666415 +2020,9,27,1,South Australia,138.693324,-35.28587 +2022,6,4,1,Victoria,144.146636,-37.808604 +2021,4,23,1,Queensland,153.053787,-27.550829 +2023,8,20,1,Queensland,153.084231,-27.511737 +2024,1,20,1,Queensland,153.103621,-27.529619 +2022,12,23,1,Queensland,153.234306,-27.500395 +2023,10,8,1,New South Wales,151.089661,-33.078389 +2020,4,24,1,Victoria,144.376328,-37.585842 +2022,9,3,1,Queensland,153.456078,-27.411218 +2022,10,16,1,Queensland,146.872178,-19.123236 +2024,2,4,1,Victoria,146.027789,-38.347805 +2024,10,14,1,Queensland,151.74227,-26.3624 +2020,10,12,1,Queensland,153.060127,-27.549822 +2024,10,23,1,Queensland,146.872147,-19.123211 +2024,2,26,1,Victoria,145.522538,-36.883062 +2021,4,5,1,South Australia,138.680319,-34.969705 +2024,9,17,1,New South Wales,146.59221,-34.770827 +2023,7,17,1,Queensland,143.40534,-18.810963 +2024,5,23,1,Victoria,141.484852,-37.792898 +2024,6,19,1,Queensland,153.109707,-27.528815 +2022,1,20,1,Victoria,146.164033,-38.67129 +2021,1,19,1,Queensland,146.855835,-19.128619 +2024,4,1,1,New South Wales,150.601207,-29.870319 +2021,12,5,1,Queensland,153.10356,-27.529449 +2023,12,23,1,Queensland,153.093056,-27.524307 +2024,3,14,1,South Australia,138.722723,-34.889559 +2023,1,5,1,Victoria,143.883856,-37.587254 +2021,7,17,1,Queensland,153.059077,-27.547138 +2023,4,17,1,Queensland,153.111191,-27.527204 +2024,3,12,1,Queensland,153.058585,-27.557142 +2023,8,20,1,New South Wales,151.246314,-33.169133 +2023,8,10,1,Queensland,153.091755,-27.526924 +2023,8,24,1,Victoria,143.512682,-38.832721 +2020,10,24,1,Queensland,152.920852,-27.134933 +2022,8,30,1,New South Wales,152.911666,-31.458043 +2024,3,16,1,Queensland,151.862643,-26.522573 +2022,7,27,1,Queensland,153.127815,-27.581053 +2023,11,13,1,Queensland,153.107773,-27.527011 +2022,3,25,1,South Australia,138.660657,-35.144977 +2023,11,29,1,Queensland,152.074639,-27.358343 +2024,11,9,1,Queensland,153.111781,-27.528377 +2024,7,17,1,Queensland,153.105754,-27.529393 +2024,9,21,1,New South Wales,153.161649,-28.874057 +2021,12,25,1,Victoria,145.134356,-38.178782 +2023,1,26,1,Queensland,153.078339,-27.506011 +2021,3,9,1,Queensland,153.059113,-27.544388 +2020,4,19,1,South Australia,138.641168,-35.005356 +2023,7,19,1,Queensland,153.110479,-27.527008 +2021,7,4,1,South Australia,138.709864,-35.03557 +2022,4,4,1,Queensland,152.825648,-26.712819 +2023,10,7,1,Queensland,151.940341,-27.472827 +2024,3,8,1,Queensland,153.106414,-27.52928 +2024,9,8,1,Queensland,153.372843,-27.909659 +2023,6,2,1,Queensland,153.112721,-27.528288 +2023,3,25,1,Queensland,153.090378,-27.526702 +2024,2,5,1,Queensland,153.107248,-27.527461 +2020,9,25,1,Queensland,153.134139,-27.56522 +2023,10,7,1,Queensland,153.057848,-27.551863 +2022,4,4,1,New South Wales,153.40206,-28.26017 +2020,7,3,1,Queensland,151.843129,-26.539756 +2024,7,5,1,Queensland,153.108971,-27.526812 +2022,12,16,1,New South Wales,151.052764,-33.1918 +2024,5,22,1,Queensland,153.109755,-27.52953 +2023,1,10,1,Queensland,153.0719,-27.544385 +2023,1,3,1,Queensland,153.113737,-27.528284 +2024,11,16,1,Queensland,153.438689,-27.40144 +2024,7,10,1,Queensland,152.990827,-27.823371 +2024,4,12,1,Victoria,145.29715,-38.383331 +2024,11,1,1,Queensland,153.301047,-27.979639 +2023,9,30,1,New South Wales,151.094986,-33.076528 +2022,11,11,1,Queensland,153.07258,-27.543503 +2024,5,2,1,Victoria,141.920662,-38.058367 +2023,9,29,1,Queensland,153.109651,-27.528828 +2022,1,11,1,Queensland,152.110336,-27.566487 +2024,11,5,1,Queensland,153.399688,-27.497803 +2022,11,20,1,South Australia,138.707989,-34.906222 +2023,3,8,1,Victoria,144.493928,-37.714038 +2024,8,24,1,Victoria,143.515157,-38.83569 +2020,1,28,1,Queensland,153.055879,-27.550786 +2022,2,26,1,Queensland,153.077086,-27.542983 +2023,9,10,1,Queensland,153.000892,-27.284473 +2020,7,7,1,New South Wales,153.376683,-28.252932 +2023,11,19,1,Queensland,153.092268,-27.528087 +2022,11,4,1,Queensland,151.529433,-27.720972 +2020,9,9,1,South Australia,138.63851,-35.00608 +2020,8,3,1,Queensland,153.180105,-27.490427 +2024,4,16,1,Victoria,143.51358,-38.833508 +2024,9,25,1,Queensland,152.825484,-26.246729 +2022,12,28,1,Queensland,153.103673,-27.529833 +2024,4,2,1,Queensland,153.103793,-27.529666 +2023,12,24,1,South Australia,138.722043,-34.889956 +2024,4,13,1,Victoria,141.149343,-38.03313 +2023,5,26,1,Victoria,144.54718,-37.49709 +2024,8,3,1,Queensland,153.086747,-27.510851 +2024,2,26,1,South Australia,138.722432,-34.892657 +2024,6,22,1,Victoria,144.252683,-37.817902 +2024,6,20,1,Victoria,143.884054,-37.637331 +2020,11,9,1,Victoria,146.164483,-38.671619 +2021,3,13,1,Queensland,153.260975,-27.523092 +2022,8,10,1,Queensland,153.081609,-27.513952 +2021,10,14,1,Queensland,152.898742,-27.652522 +2023,3,11,1,Queensland,153.092055,-27.525754 +2023,8,6,1,Queensland,152.044695,-27.256186 +2023,8,12,1,Queensland,152.963846,-27.276959 +2021,8,20,1,New South Wales,153.400955,-28.256191 +2022,2,16,1,Victoria,143.481831,-38.800562 +2022,10,25,1,Queensland,153.082792,-27.510694 +2023,6,24,1,Queensland,152.006196,-26.669634 +2021,2,1,1,Queensland,153.038418,-27.547845 +2023,10,22,1,Queensland,152.434766,-27.48784 +2024,5,28,1,Queensland,153.105025,-27.529907 +2023,1,26,1,Queensland,152.612747,-27.34005 +2023,10,10,1,Queensland,153.111149,-27.528246 +2024,11,17,1,Queensland,153.072242,-27.54284 +2021,3,16,1,Victoria,145.329187,-35.875298 +2022,2,9,1,South Australia,138.716674,-34.891973 +2020,10,19,1,Queensland,153.057439,-27.55107 +2024,10,7,1,Queensland,153.09149,-27.527311 +2023,11,15,1,Victoria,147.731278,-37.92355 +2021,2,5,1,Queensland,153.05498,-27.539412 +2023,12,23,1,Queensland,153.070692,-27.509472 +2024,7,22,1,Victoria,145.414064,-36.872553 +2023,11,26,1,Queensland,153.093111,-27.527985 +2024,10,4,1,New South Wales,151.500183,-32.948875 +2024,5,5,1,Victoria,143.897103,-37.57555 +2022,1,15,1,South Australia,138.514025,-35.134689 +2024,3,29,1,Queensland,152.993429,-27.823055 +2024,3,23,1,Queensland,153.091581,-27.52717 +2021,9,23,1,South Australia,138.665875,-34.865453 +2021,8,3,1,South Australia,138.656205,-34.865605 +2024,2,10,1,Queensland,153.166564,-27.584892 +2020,4,24,1,South Australia,138.730534,-34.827112 +2022,5,20,1,Victoria,148.264297,-37.222183 +2024,9,21,1,New South Wales,146.583477,-34.762738 +2024,1,13,1,Victoria,144.24875,-37.81071 +2020,10,30,1,Queensland,153.048937,-27.52783 +2023,7,16,1,Queensland,151.869355,-27.330272 +2024,8,24,1,Queensland,152.103486,-27.570587 +2023,3,11,1,Queensland,153.111302,-27.529824 +2023,5,8,1,Queensland,153.067233,-27.508003 +2021,4,22,1,New South Wales,151.899292,-32.081292 +2023,1,12,1,Victoria,142.641098,-38.326985 +2024,3,22,1,Queensland,153.108267,-27.527275 +2022,12,20,1,New South Wales,153.376931,-28.254108 +2022,9,30,1,Victoria,143.542887,-38.843411 +2023,3,16,1,South Australia,137.264128,-35.786181 +2024,9,9,1,Queensland,153.07446,-27.546861 +2023,11,12,1,Queensland,153.092869,-27.524636 +2024,10,8,1,Victoria,143.540704,-38.52397 +2022,11,9,1,Queensland,153.053349,-27.54857 +2022,12,26,1,Queensland,152.049287,-27.267047 +2024,10,24,1,Queensland,152.991687,-27.822602 +2024,4,13,1,Queensland,153.09057,-27.52676 +2021,8,31,1,New South Wales,149.984603,-36.548388 +2023,12,5,1,New South Wales,153.629046,-28.639428 +2023,8,3,1,New South Wales,150.798844,-34.212301 +2022,9,5,1,Queensland,153.048313,-27.525612 +2024,10,21,1,Victoria,142.223174,-38.389477 +2024,6,26,1,Queensland,152.468718,-27.92762 +2023,11,11,1,Queensland,153.092749,-27.525359 +2020,7,26,1,Victoria,145.045941,-38.265417 +2021,9,2,1,Queensland,151.856714,-26.520612 +2024,10,6,1,Queensland,153.091699,-27.527026 +2023,12,31,1,South Australia,138.74138,-34.83909 +2024,8,13,1,Queensland,153.14395,-27.715645 +2021,1,26,1,Victoria,144.249556,-37.854663 +2023,11,13,1,South Australia,138.716007,-34.890964 +2022,3,2,1,Queensland,153.051044,-27.546065 +2024,5,26,1,Queensland,153.09299,-27.527734 +2024,10,5,1,Queensland,153.376199,-27.920167 +2022,12,29,1,Queensland,153.108925,-27.527232 +2024,6,22,1,Queensland,153.106595,-27.529103 +2021,9,13,1,South Australia,138.660984,-34.86482 +2023,10,26,1,Queensland,151.582017,-28.918442 +2021,10,19,1,Victoria,146.164183,-38.671258 +2020,2,15,1,South Australia,138.697044,-34.95866 +2021,4,5,1,South Australia,138.681031,-34.9703 +2024,10,5,1,Queensland,153.092109,-27.524599 +2021,9,8,1,Queensland,153.058249,-27.551335 +2024,7,21,1,Queensland,153.090531,-27.526926 +2024,11,20,1,Queensland,153.402991,-27.493653 +2022,7,18,1,Queensland,153.05462,-27.543768 +2024,3,29,1,Queensland,153.090995,-27.526459 +2020,7,12,1,South Australia,138.702928,-34.900742 +2022,7,14,1,Queensland,153.104488,-27.544344 +2022,10,3,1,South Australia,138.669786,-35.085611 +2021,11,28,1,Queensland,151.528966,-27.721471 +2024,7,7,1,Queensland,153.03386,-27.530295 +2020,11,26,1,Queensland,153.069795,-27.510478 +2022,8,9,1,Queensland,152.647048,-27.317321 +2023,2,18,1,Queensland,153.090823,-27.526884 +2021,10,13,1,South Australia,138.63815,-34.971276 +2023,10,26,1,Victoria,143.737581,-38.483007 +2024,8,20,1,New South Wales,151.094986,-33.076522 +2024,9,28,1,Queensland,153.093143,-27.526733 +2021,1,21,1,Queensland,153.128812,-27.590987 +2022,7,16,1,Queensland,151.812743,-27.291624 +2024,3,22,1,Queensland,153.103133,-27.529523 +2024,4,28,1,Victoria,145.342654,-37.065515 +2023,6,24,1,Queensland,153.092494,-27.528289 +2022,9,29,1,Victoria,147.669678,-37.952922 +2023,6,28,1,Queensland,153.108969,-27.529042 +2023,4,23,1,New South Wales,149.278428,-36.172597 +2024,7,10,1,Victoria,143.65069,-38.775539 +2023,9,16,1,Victoria,141.420837,-38.276245 +2024,7,3,1,Victoria,143.605921,-38.762335 +2024,1,22,1,Queensland,153.136536,-27.901993 +2022,1,12,1,South Australia,138.657912,-34.868707 +2020,2,21,1,New South Wales,151.521026,-30.520709 +2023,10,21,1,Victoria,145.522107,-37.023178 +2020,3,10,1,Queensland,152.468858,-27.70346 +2024,10,22,1,Queensland,152.063964,-27.261855 +2020,10,8,1,Queensland,153.052151,-27.548505 +2023,8,21,1,Queensland,153.107258,-27.527371 +2021,12,14,1,Victoria,146.163777,-38.671279 +2021,8,29,1,Queensland,153.100261,-27.565643 +2024,3,16,1,Queensland,153.070318,-27.527477 +2024,6,15,1,Queensland,152.925705,-27.575974 +2023,4,2,1,Victoria,146.388491,-38.354354 +2023,11,22,1,Queensland,152.47725,-26.930133 +2021,3,9,1,Queensland,153.057287,-27.546045 +2023,9,30,1,Queensland,153.070494,-27.54313 +2024,7,3,1,Queensland,153.092242,-27.527469 +2021,7,17,1,Queensland,152.607336,-28.164585 +2024,11,4,1,Queensland,153.068655,-27.518283 +2022,5,23,1,New South Wales,151.094222,-33.073514 +2021,10,6,1,Victoria,143.888077,-37.553758 +2024,11,9,1,Queensland,153.090344,-27.526892 +2023,9,24,1,Victoria,144.546338,-37.504071 +2022,5,4,1,Queensland,152.843046,-28.092227 +2023,10,10,1,Queensland,152.361617,-27.40755 +2021,3,3,1,Victoria,143.890604,-37.584539 +2023,4,16,1,Queensland,153.091462,-27.526779 +2024,6,6,1,South Australia,138.724615,-34.891049 +2023,7,11,1,New South Wales,152.993737,-30.56026 +2022,12,7,1,Victoria,143.899209,-37.644971 +2023,12,27,1,Queensland,153.092991,-27.52487 +2023,4,25,1,Queensland,153.372663,-27.91193 +2024,7,11,1,Queensland,152.95627,-27.48443 +2020,2,15,1,South Australia,138.695246,-34.957451 +2024,10,21,1,Queensland,153.090782,-27.526093 +2023,12,7,1,Victoria,145.274379,-38.139963 +2023,12,23,1,Queensland,153.084242,-27.511158 +2020,11,8,1,New South Wales,153.376917,-28.253975 +2024,3,5,1,Victoria,148.26857,-37.187538 +2023,12,18,1,South Australia,138.734588,-34.889011 +2024,2,27,1,Queensland,153.105242,-27.529493 +2020,4,1,1,South Australia,138.700305,-34.962008 +2023,9,6,1,Queensland,151.8094,-26.363365 +2024,1,1,1,Queensland,151.895396,-27.600052 +2024,1,12,1,Queensland,153.090585,-27.526481 +2022,11,16,1,Queensland,151.828786,-27.429168 +2023,2,20,1,Queensland,153.056564,-27.544328 +2020,9,13,1,Queensland,151.97277,-26.16335 +2024,10,13,1,Queensland,153.089221,-27.220608 +2023,9,9,1,Queensland,153.450138,-28.093339 +2024,5,7,1,South Australia,138.731437,-34.890895 +2023,3,5,1,Queensland,153.372062,-27.909745 +2024,3,5,1,Victoria,143.895829,-37.615254 +2022,6,25,1,New South Wales,153.376938,-28.253932 +2020,10,22,1,Queensland,153.058642,-27.54838 +2022,1,19,1,Queensland,153.158727,-27.656238 +2024,3,16,1,New South Wales,151.095367,-33.076633 +2022,7,27,1,Victoria,145.727937,-38.62807 +2024,9,13,1,Victoria,141.775102,-38.203258 +2022,2,8,1,Victoria,144.16815,-37.932528 +2021,8,18,1,Queensland,153.057021,-27.551036 +2023,7,27,1,Queensland,151.663422,-27.673583 +2021,4,16,1,South Australia,137.612458,-35.671986 +2023,9,23,1,Queensland,152.044208,-27.257551 +2022,3,10,1,Queensland,153.248024,-27.490129 +2024,4,25,1,Queensland,153.073508,-27.545712 +2022,7,11,1,New South Wales,150.240719,-30.99372 +2023,10,22,1,Queensland,151.525754,-27.633133 +2024,3,9,1,Victoria,145.617578,-36.962008 +2024,10,4,1,South Australia,138.70799,-34.906189 +2021,3,28,1,Queensland,153.057804,-27.546096 +2024,4,26,1,Victoria,143.634669,-38.786777 +2024,4,9,1,Victoria,143.858142,-38.666596 +2024,9,15,1,Queensland,153.091977,-27.525909 +2023,4,24,1,Queensland,153.090747,-27.525821 +2023,9,9,1,New South Wales,150.601584,-29.866745 +2023,10,10,1,Queensland,153.104953,-27.529788 +2023,8,21,1,Queensland,153.10909,-27.529213 +2020,4,23,1,Victoria,145.176575,-38.392422 +2024,11,5,1,Queensland,152.632349,-27.436739 +2023,5,26,1,Queensland,153.10448,-27.529517 +2024,4,27,1,Queensland,151.657546,-27.642924 +2020,11,19,1,Queensland,152.403241,-27.458365 +2020,8,7,1,Queensland,153.059535,-27.551377 +2022,8,14,1,Queensland,152.536821,-27.476824 +2022,8,29,1,Queensland,153.071969,-27.5449 +2023,7,14,1,Queensland,151.822525,-26.498262 +2020,4,24,1,Queensland,153.057542,-27.551415 +2021,9,21,1,Queensland,153.070308,-27.50958 +2024,4,10,1,Victoria,143.512682,-38.832721 +2022,11,22,1,Victoria,143.421773,-38.552097 +2022,12,30,1,Victoria,147.727403,-37.924322 +2022,6,12,1,Victoria,142.363778,-38.318585 +2024,9,21,1,New South Wales,153.162206,-28.875804 +2023,11,5,1,Queensland,152.897078,-28.203106 +2023,12,1,1,New South Wales,153.123961,-30.293863 +2020,3,11,1,Victoria,141.392916,-38.254199 +2024,6,25,1,Queensland,153.432787,-28.13713 +2021,8,15,1,New South Wales,153.401439,-28.256302 +2023,5,6,1,Queensland,153.021266,-26.379617 +2024,2,18,1,South Australia,137.465347,-35.72798 +2021,11,15,1,Queensland,153.063466,-27.692142 +2023,7,31,1,Queensland,153.112416,-27.529471 +2024,11,9,1,Queensland,153.091606,-27.527108 +2024,3,6,1,Queensland,153.103826,-27.529658 +2020,11,19,1,New South Wales,151.518926,-30.520925 +2023,2,1,1,Victoria,147.644073,-37.909899 +2024,3,3,1,South Australia,138.72241,-34.889813 +2023,11,14,1,Queensland,153.092249,-27.525582 +2024,4,12,1,Queensland,153.110008,-27.52706 +2024,1,7,1,Queensland,153.091741,-27.527171 +2022,9,8,1,Queensland,146.873837,-19.122166 +2024,10,7,1,Queensland,153.212136,-27.932636 +2021,12,11,1,Victoria,144.094192,-37.624122 +2024,7,13,1,Queensland,151.791881,-26.136287 +2023,8,5,1,Queensland,153.085148,-27.510498 +2023,4,13,1,Queensland,153.07542,-27.508889 +2023,2,19,1,Queensland,153.092073,-27.524223 +2024,6,3,1,South Australia,138.713072,-34.89188 +2024,4,18,1,Victoria,143.513058,-38.833725 +2024,11,12,1,Queensland,151.791881,-26.136287 +2024,5,19,1,Queensland,153.090421,-27.526932 +2024,6,22,1,Queensland,153.091747,-27.526914 +2024,10,16,1,Queensland,151.637465,-25.618346 +2024,10,14,1,Queensland,152.641967,-28.14442 +2024,2,25,1,South Australia,138.705663,-34.903189 +2023,12,19,1,Queensland,153.092323,-27.528112 +2023,7,13,1,Queensland,151.81242,-26.597663 +2022,10,9,1,Queensland,153.073192,-27.545894 +2024,11,4,1,Victoria,142.363592,-38.319278 +2023,10,23,1,Queensland,150.697266,-24.99403 +2024,11,5,1,Queensland,153.160433,-27.659889 +2023,3,27,1,Queensland,153.103434,-27.530146 +2021,8,25,1,Queensland,152.08237,-27.70093 +2024,10,20,1,Queensland,152.559595,-27.144396 +2023,7,13,1,New South Wales,153.394965,-28.272918 +2023,11,19,1,Queensland,153.091492,-27.527303 +2022,12,29,1,Victoria,143.996795,-37.689233 +2024,9,30,1,Queensland,153.06558,-27.540475 +2023,8,26,1,Queensland,152.426714,-28.07362 +2024,11,10,1,South Australia,138.780215,-34.917415 +2023,2,28,1,Victoria,144.189445,-37.859222 +2024,8,17,1,Queensland,146.871187,-19.1228 +2024,1,13,1,Victoria,142.356434,-38.333708 +2023,5,6,1,Queensland,152.996719,-27.304157 +2024,2,21,1,New South Wales,152.905401,-31.436887 +2023,11,23,1,Queensland,153.296548,-27.568552 +2023,8,15,1,Victoria,141.596647,-38.350686 +2023,8,6,1,South Australia,138.658301,-35.004205 +2023,3,13,1,Queensland,153.091924,-27.527106 +2021,4,9,1,Victoria,143.901126,-37.641368 +2024,10,6,1,Queensland,153.092989,-27.524551 +2023,9,30,1,Queensland,153.092342,-27.528039 +2024,1,3,1,Queensland,153.101636,-27.734145 +2024,11,10,1,Queensland,146.870742,-19.124108 +2024,9,5,1,Queensland,151.881223,-26.263554 +2024,1,22,1,Queensland,153.103545,-27.530052 +2020,7,23,1,Queensland,152.801932,-27.556722 +2024,9,8,1,Queensland,153.403345,-27.493221 +2021,11,28,1,Queensland,151.528966,-27.721471 +2023,10,11,1,Queensland,153.111361,-27.52804 +2024,5,27,1,South Australia,138.732237,-34.880853 +2022,9,21,1,Queensland,153.07226,-27.545182 +2024,10,19,1,Victoria,146.38992,-38.356583 +2021,10,27,1,Queensland,153.073715,-27.540247 +2023,3,21,1,Victoria,143.487891,-38.799429 +2024,2,26,1,South Australia,138.722435,-34.89085 +2023,11,26,1,Queensland,153.033585,-27.528137 +2022,10,9,1,South Australia,138.881805,-35.067253 +2020,12,4,1,Queensland,153.283375,-27.5342 +2023,9,2,1,Queensland,153.091963,-27.525092 +2024,9,19,1,South Australia,138.691468,-34.904467 +2023,8,6,1,Queensland,153.092271,-27.527727 +2022,6,1,1,Victoria,145.120925,-38.329054 +2020,4,18,1,South Australia,138.553252,-35.30964 +2023,9,8,1,South Australia,138.703557,-34.90107 +2024,2,17,1,Queensland,153.092866,-27.528462 +2022,8,2,1,New South Wales,151.64102,-30.489953 +2022,11,2,1,New South Wales,153.39514,-28.272625 +2023,2,26,1,New South Wales,152.830527,-29.640949 +2024,10,14,1,Victoria,144.959021,-35.954708 +2023,4,26,1,Queensland,153.112007,-27.529413 +2022,9,25,1,Queensland,152.062604,-27.348609 +2024,10,1,1,Victoria,141.60211,-38.349196 +2024,1,26,1,Queensland,151.756112,-26.128936 +2021,3,4,1,Queensland,153.057464,-27.550923 +2023,5,20,1,Queensland,153.37262,-27.914178 +2024,5,11,1,Queensland,152.609375,-27.396357 +2021,5,23,1,Queensland,153.08485,-27.506762 +2024,10,19,1,Queensland,153.092732,-27.525601 +2020,9,3,1,Queensland,153.049614,-27.527485 +2021,9,25,1,South Australia,138.59237,-35.136206 +2023,3,19,1,Queensland,153.093237,-27.526319 +2024,6,16,1,Queensland,153.0908,-27.527244 +2020,6,2,1,Queensland,153.130342,-27.533395 +2021,1,15,1,New South Wales,153.401003,-28.25632 +2024,4,23,1,Victoria,147.74231,-37.912196 +2024,3,31,1,Victoria,145.313393,-38.379762 +2024,6,2,1,Queensland,153.090721,-27.526512 +2024,6,1,1,Queensland,153.090952,-27.526876 +2023,11,29,1,South Australia,138.721922,-34.890643 +2024,6,29,1,Queensland,153.191853,-27.703261 +2024,7,16,1,Queensland,153.105289,-27.529829 +2021,12,26,1,South Australia,138.731127,-34.889583 +2024,3,19,1,New South Wales,150.60142,-29.870458 +2023,8,31,1,Victoria,143.513067,-38.833383 +2024,11,3,1,Queensland,153.091382,-27.527173 +2023,8,5,1,Victoria,144.500252,-37.233869 +2024,6,8,1,Queensland,153.092724,-27.52857 +2023,10,25,1,Queensland,147.66635,-22.723545 +2023,4,25,1,Queensland,153.372973,-27.914132 +2024,9,20,1,Queensland,153.092234,-27.525696 +2024,3,25,1,Victoria,144.179592,-37.914578 +2022,11,16,1,Queensland,153.437572,-27.400707 +2020,11,12,1,Victoria,147.727225,-37.919864 +2023,11,25,1,Queensland,153.086342,-27.510493 +2022,4,19,1,Queensland,152.227102,-27.298696 +2021,10,24,1,Victoria,146.165029,-38.671183 +2023,11,7,1,Queensland,153.105563,-27.531371 +2024,9,7,1,Queensland,153.092922,-27.528374 +2024,4,9,1,South Australia,138.729491,-34.890088 +2023,11,15,1,Victoria,147.730667,-37.924112 +2024,7,24,1,Queensland,153.054764,-27.552027 +2024,8,31,1,Queensland,152.631001,-28.06398 +2024,8,22,1,Queensland,153.072493,-27.549121 +2021,2,4,1,Queensland,153.060108,-27.550511 +2023,3,31,1,Queensland,153.059364,-27.548987 +2023,10,27,1,Queensland,146.870235,-19.123331 +2023,6,5,1,Queensland,153.108928,-27.527021 +2023,9,26,1,Victoria,143.882349,-37.620373 +2024,3,14,1,Queensland,151.924876,-26.233378 +2024,11,14,1,Queensland,153.160433,-27.659889 +2022,10,28,1,South Australia,138.652444,-35.009693 +2023,4,3,1,Queensland,153.05821,-27.547752 +2021,11,30,1,Victoria,143.950715,-37.648727 +2023,11,7,1,Queensland,151.948253,-27.611711 +2024,6,3,1,Victoria,145.996671,-38.827552 +2023,8,5,1,Queensland,152.078964,-26.975555 +2021,9,18,1,Queensland,153.377016,-27.919592 +2022,9,20,1,South Australia,138.884767,-34.939103 +2023,8,11,1,Queensland,153.158747,-27.656247 +2020,11,8,1,New South Wales,153.376656,-28.253668 +2020,2,16,1,Queensland,153.068353,-27.544466 +2023,4,30,1,Victoria,143.90698,-37.748637 +2022,7,27,1,New South Wales,146.547762,-34.752945 +2022,10,29,1,New South Wales,151.643989,-30.501265 +2023,6,11,1,Queensland,153.090479,-27.52567 +2022,1,17,1,Queensland,153.072537,-27.543771 +2021,10,5,1,Queensland,153.052188,-27.54804 +2023,11,22,1,Queensland,151.716278,-27.567855 +2023,12,3,1,Queensland,153.091242,-27.527038 +2023,11,19,1,Queensland,152.999706,-27.284024 +2021,11,1,1,New South Wales,151.095536,-33.076164 +2024,1,6,1,Queensland,151.762506,-26.16856 +2024,8,11,1,Queensland,153.091194,-27.527065 +2023,1,4,1,Victoria,144.277763,-37.860302 +2021,8,14,1,Queensland,153.115295,-27.528928 +2024,10,5,1,Queensland,152.468645,-26.089237 +2024,10,12,1,Queensland,153.090931,-27.526439 +2020,12,1,1,Queensland,153.058092,-27.546755 +2024,11,7,1,Queensland,152.993042,-27.823855 +2024,4,7,1,Queensland,153.091077,-27.526437 +2023,11,25,1,South Australia,138.707113,-34.904816 +2023,4,25,1,Queensland,151.503463,-27.726817 +2024,4,21,1,Queensland,152.187903,-27.260687 +2023,8,24,1,Queensland,152.626688,-26.497711 +2023,7,31,1,Queensland,153.110072,-27.527034 +2020,9,27,1,Victoria,147.754464,-37.90878 +2020,12,11,1,Queensland,153.233733,-27.544765 +2024,6,12,1,Queensland,153.102553,-27.529551 +2023,3,4,1,Queensland,153.092762,-27.526687 +2020,11,21,1,Queensland,153.332948,-27.982414 +2024,6,19,1,Queensland,153.105494,-27.530949 +2020,6,7,1,Victoria,147.729992,-37.925001 +2024,5,4,1,Queensland,152.611237,-27.331878 +2023,3,20,1,Queensland,153.10731,-27.527344 +2023,5,10,1,Queensland,146.871078,-19.123317 +2023,3,7,1,Queensland,153.090621,-27.526828 +2021,6,20,1,Queensland,153.067653,-27.5591 +2021,4,12,1,Queensland,146.869355,-19.12535 +2023,7,13,1,Queensland,152.931412,-27.577572 +2021,11,28,1,Queensland,151.521831,-27.714922 +2023,11,29,1,Victoria,144.60303,-37.483683 +2020,4,1,1,Queensland,153.058156,-27.551891 +2024,7,14,1,Queensland,153.403182,-27.49349 +2021,10,26,1,Victoria,143.916594,-37.653526 +2023,5,30,1,Queensland,153.091624,-27.527216 +2020,4,28,1,Queensland,153.043825,-27.551197 +2023,11,29,1,South Australia,138.722339,-34.88981 +2024,10,30,1,Queensland,153.104373,-27.531008 +2023,2,8,1,New South Wales,152.362756,-31.920647 +2024,6,6,1,South Australia,138.724876,-34.894872 +2020,3,24,1,Victoria,145.75391,-38.633395 +2021,5,29,1,South Australia,138.644116,-35.01031 +2023,9,26,1,Queensland,152.424563,-27.238264 +2022,1,10,1,South Australia,138.71797,-34.836871 +2023,4,19,1,Queensland,153.058255,-27.551421 +2024,4,27,1,Queensland,153.103009,-27.52719 +2024,2,19,1,Victoria,144.40808,-37.964795 +2024,2,14,1,Victoria,144.09552,-37.623992 +2023,9,2,1,New South Wales,151.542697,-32.914195 +2021,4,5,1,South Australia,138.673291,-35.015167 +2023,10,4,1,Queensland,152.999663,-27.240863 +2023,4,23,1,Queensland,153.091964,-27.525371 +2023,9,16,1,Queensland,153.00084,-27.28444 +2023,3,2,1,Queensland,152.703309,-27.094113 +2023,8,11,1,Victoria,144.144227,-37.810841 +2020,8,1,1,Queensland,151.971344,-27.611522 +2023,1,27,1,South Australia,138.614483,-34.907996 +2023,10,31,1,Queensland,153.090229,-27.525427 +2020,3,2,1,Victoria,143.541468,-38.797562 +2022,3,19,1,Victoria,144.365628,-37.665922 +2023,11,19,1,Queensland,151.543384,-27.671893 +2024,5,21,1,Queensland,153.083481,-27.511095 +2021,9,5,1,Victoria,145.125709,-38.174436 +2022,10,17,1,New South Wales,153.393002,-28.269211 +2021,12,30,1,South Australia,137.207663,-35.625383 +2020,6,11,1,Queensland,153.049277,-27.549685 +2023,7,8,1,Queensland,153.091539,-27.52687 +2023,11,4,1,Queensland,153.092879,-27.528295 +2024,11,3,1,Queensland,153.091557,-27.527159 +2022,1,19,1,Victoria,146.163925,-38.671233 +2022,12,29,1,Queensland,153.437781,-27.400683 +2024,10,25,1,Queensland,153.110529,-27.526854 +2024,6,4,1,Queensland,153.10453,-27.530286 +2024,5,24,1,Queensland,153.1045,-27.529619 +2024,6,9,1,Victoria,145.996718,-38.827734 +2022,12,29,1,Victoria,144.594597,-37.330039 +2024,3,15,1,Victoria,141.923273,-38.056492 +2022,5,16,1,South Australia,138.689018,-34.971709 +2023,1,30,1,Queensland,153.092588,-27.525052 +2024,6,24,1,Queensland,153.058972,-27.548843 +2020,1,5,1,Queensland,151.972115,-27.609361 +2024,9,22,1,Queensland,153.062622,-27.220637 +2020,7,23,1,Queensland,153.057366,-27.551304 +2021,10,17,1,New South Wales,153.027278,-30.347312 +2023,11,14,1,Queensland,152.04,-28.26 +2022,1,16,1,Victoria,144.0703,-37.636488 +2024,10,20,1,Queensland,153.090562,-27.526042 +2021,11,27,1,Queensland,151.930038,-27.33117 +2024,4,7,1,Victoria,143.896656,-37.643236 +2023,4,22,1,Queensland,153.092281,-27.528121 +2024,6,23,1,Queensland,153.09244,-27.527759 +2024,6,7,1,Queensland,153.103669,-27.52927 +2024,1,24,1,Queensland,151.762506,-26.16856 +2021,7,18,1,New South Wales,153.376978,-28.254203 +2024,7,6,1,Queensland,152.901313,-27.626553 +2023,8,6,1,Queensland,153.000913,-27.284418 +2022,6,11,1,New South Wales,153.395167,-28.287966 +2020,12,17,1,Queensland,153.054038,-26.672734 +2022,7,11,1,Queensland,146.868778,-19.13028 +2020,8,22,1,Queensland,153.001389,-27.165289 +2024,9,11,1,Queensland,153.092348,-27.528194 +2020,11,6,1,Queensland,153.122916,-27.764249 +2024,1,26,1,Queensland,152.046151,-27.257115 +2021,5,15,1,New South Wales,153.401988,-28.260476 +2024,1,26,1,Queensland,153.093239,-27.525962 +2023,4,15,1,Queensland,153.109457,-27.529502 +2023,1,25,1,Queensland,152.885798,-27.635824 +2022,10,13,1,Queensland,152.896765,-26.712571 +2020,7,2,1,New South Wales,153.376688,-28.252999 +2024,1,13,1,Victoria,142.631686,-38.341307 +2021,2,8,1,New South Wales,146.56757,-34.75654 +2022,5,3,1,South Australia,138.638087,-34.971114 +2021,1,22,1,Queensland,153.057416,-27.551279 +2024,4,30,1,South Australia,138.730279,-34.890894 +2020,6,8,1,Victoria,147.754464,-37.90878 +2023,12,5,1,Queensland,153.110124,-27.528345 +2023,10,23,1,Queensland,153.030818,-26.388809 +2024,6,8,1,Queensland,153.110785,-27.527192 +2023,12,24,1,Queensland,153.093071,-27.524292 +2021,1,11,1,Victoria,143.983356,-38.551688 +2022,2,5,1,Queensland,153.43911,-27.401261 +2023,9,15,1,Queensland,153.108387,-27.527227 +2022,1,6,1,South Australia,138.730103,-34.856546 +2024,2,26,1,Queensland,153.104419,-27.529808 +2023,7,20,1,Queensland,152.044786,-27.257893 +2023,10,7,1,New South Wales,150.836122,-34.067391 +2024,1,15,1,Queensland,151.749888,-26.155079 +2024,6,21,1,Queensland,153.074987,-27.54055 +2020,9,20,1,South Australia,138.579134,-35.145412 +2023,11,7,1,Queensland,153.109367,-27.527165 +2021,9,11,1,New South Wales,153.378362,-28.255323 +2023,12,22,1,South Australia,138.702055,-34.903038 +2022,8,10,1,New South Wales,151.466526,-31.821874 +2024,8,5,1,Queensland,152.875759,-27.625673 +2021,9,20,1,Queensland,152.400684,-27.963018 +2023,11,5,1,South Australia,138.63598,-35.006829 +2023,7,29,1,Queensland,151.750039,-26.155358 +2024,7,14,1,Queensland,153.090695,-27.527153 +2022,11,21,1,New South Wales,151.090119,-33.078397 +2023,10,4,1,South Australia,138.613545,-34.903091 +2023,1,23,1,Victoria,144.290978,-37.874355 +2020,6,26,1,Victoria,145.708808,-36.823054 +2023,6,4,1,Queensland,153.091648,-27.527225 +2024,10,7,1,Queensland,153.186244,-27.987414 +2021,11,8,1,Queensland,152.248214,-27.496295 +2024,8,21,1,New South Wales,151.344861,-29.776436 +2024,4,30,1,South Australia,138.731912,-34.882767 +2021,2,10,1,Victoria,145.278844,-38.380519 +2023,2,8,1,Queensland,151.895396,-27.600052 +2024,9,24,1,Victoria,147.727072,-37.921892 +2021,8,27,1,Queensland,151.953842,-27.474855 +2020,5,31,1,New South Wales,153.376685,-28.25363 +2024,5,28,1,South Australia,138.787309,-34.886734 +2024,11,7,1,Queensland,151.76061,-26.274028 +2024,1,12,1,Queensland,153.091,-27.527365 +2024,10,1,1,New South Wales,146.496033,-34.721755 +2024,5,29,1,New South Wales,153.317177,-28.949206 +2023,1,1,1,Queensland,151.889808,-27.597187 +2023,1,4,1,South Australia,138.690456,-34.954283 +2023,4,6,1,Queensland,153.282324,-27.526298 +2021,9,26,1,Queensland,153.050121,-27.546426 +2024,7,10,1,Queensland,153.109825,-27.529507 +2021,11,4,1,Queensland,152.564459,-27.448689 +2021,10,22,1,New South Wales,153.375649,-28.252275 +2024,2,28,1,Queensland,153.104573,-27.529671 +2024,7,12,1,Queensland,153.104518,-27.530411 +2020,5,31,1,Queensland,153.054026,-27.539429 +2022,5,16,1,Victoria,144.166247,-37.86695 +2020,11,5,1,Queensland,153.060037,-27.550543 +2021,12,29,1,Queensland,152.106506,-27.56225 +2022,3,9,1,Victoria,142.640251,-38.327086 +2022,2,28,1,New South Wales,146.551348,-34.753924 +2024,6,4,1,Queensland,153.104092,-27.529561 +2020,11,26,1,Queensland,153.058233,-27.546768 +2024,7,14,1,Queensland,153.372513,-27.907283 +2024,7,16,1,Queensland,153.11332,-27.528305 +2020,2,9,1,Victoria,142.362946,-38.318978 +2021,9,15,1,South Australia,138.734701,-34.888818 +2023,9,16,1,Queensland,153.058872,-27.548601 +2021,11,22,1,Victoria,145.302922,-38.344837 +2024,7,9,1,Queensland,153.103585,-27.52902 +2024,7,28,1,Queensland,153.093012,-27.523884 +2022,10,18,1,Queensland,153.083239,-27.51308 +2023,11,8,1,South Australia,138.707859,-34.903757 +2021,6,11,1,Queensland,149.572399,-22.370492 +2021,4,18,1,Victoria,144.442348,-37.95416 +2024,6,9,1,Queensland,153.090551,-27.52648 +2024,3,23,1,Victoria,143.508922,-38.768828 +2024,1,11,1,Queensland,153.111473,-27.527914 +2022,8,15,1,Queensland,152.958961,-27.485198 +2023,2,6,1,Queensland,153.105515,-27.529169 +2023,9,24,1,Queensland,152.999762,-27.283998 +2023,4,8,1,Victoria,143.55019,-38.506065 +2022,11,15,1,Queensland,153.060014,-27.551182 +2020,11,24,1,Queensland,153.055081,-27.552107 +2023,4,22,1,New South Wales,152.173307,-32.735217 +2022,4,30,1,Queensland,153.104019,-27.52855 +2021,2,9,1,Queensland,153.046756,-27.552503 +2020,3,25,1,Queensland,153.058105,-27.550734 +2021,9,17,1,New South Wales,153.394328,-28.275801 +2023,7,5,1,Queensland,153.232247,-27.9768 +2023,9,29,1,New South Wales,150.878168,-34.058721 +2024,1,3,1,Queensland,152.074576,-27.358575 +2022,7,30,1,Victoria,146.170483,-36.3012 +2022,11,12,1,Queensland,152.16264,-27.49783 +2023,3,14,1,Victoria,145.700163,-37.765308 +2024,3,16,1,Queensland,153.090499,-27.526583 +2023,2,4,1,Queensland,151.977862,-27.384097 +2024,7,13,1,South Australia,138.718682,-34.872489 +2023,9,22,1,New South Wales,151.094533,-33.076269 +2022,12,21,1,Queensland,153.106635,-27.508419 +2020,11,30,1,Queensland,151.994675,-26.304521 +2024,9,20,1,Victoria,144.942947,-38.36457 +2020,10,25,1,Queensland,153.070546,-27.527676 +2020,4,6,1,South Australia,138.699572,-34.957531 +2020,6,7,1,South Australia,138.807282,-34.883453 +2020,5,8,1,Queensland,153.066753,-27.551228 +2023,7,22,1,New South Wales,152.064133,-32.698738 +2020,5,10,1,Queensland,152.859615,-27.542516 +2021,10,2,1,Queensland,153.449887,-27.406338 +2024,6,1,1,South Australia,138.700819,-34.90125 +2020,9,5,1,New South Wales,153.376862,-28.253017 +2023,10,18,1,Queensland,153.110325,-27.527617 +2024,4,20,1,Queensland,153.09266,-27.527561 +2023,11,17,1,South Australia,138.727805,-34.830364 +2024,7,14,1,Queensland,153.093141,-27.526945 +2021,3,10,1,Victoria,146.163742,-38.671313 +2022,10,16,1,Queensland,146.872147,-19.123228 +2023,2,22,1,South Australia,138.614261,-34.904116 +2022,1,26,1,Victoria,146.388882,-38.354681 +2024,4,12,1,Queensland,153.103674,-27.529894 +2021,11,17,1,Queensland,153.274851,-27.596393 +2024,2,17,1,Queensland,153.093185,-27.52555 +2020,10,27,1,Victoria,146.271308,-38.388921 +2024,7,28,1,Queensland,153.09286,-27.528016 +2023,12,12,1,Queensland,153.10872,-27.526938 +2024,1,27,1,Victoria,145.163857,-38.394834 +2024,11,3,1,Queensland,153.091317,-27.527201 +2023,11,16,1,Queensland,151.543941,-27.792695 +2021,12,11,1,Victoria,146.164214,-38.671283 +2024,6,7,1,Queensland,153.074434,-27.546811 +2022,4,4,1,Queensland,153.053873,-27.53926 +2021,10,23,1,South Australia,138.698669,-34.933992 +2023,4,8,1,Queensland,153.111021,-27.530013 +2024,7,5,1,Queensland,153.103113,-27.530382 +2023,1,21,1,Queensland,152.18373,-27.53098 +2024,8,25,1,Queensland,153.092294,-27.527764 +2024,5,26,1,Queensland,153.092323,-27.528116 +2023,11,24,1,South Australia,138.713046,-34.891402 +2021,1,3,1,New South Wales,151.518629,-30.519607 +2024,6,17,1,South Australia,138.720441,-34.887287 +2022,4,1,1,South Australia,138.700179,-34.956004 +2022,2,22,1,South Australia,138.726396,-34.863461 +2023,11,19,1,New South Wales,150.021847,-33.817848 +2021,12,15,1,South Australia,138.65682,-34.865337 +2023,11,3,1,South Australia,138.713783,-34.892285 +2023,3,26,1,Victoria,149.758986,-37.561837 +2023,5,1,1,Queensland,153.092208,-27.528031 +2022,4,2,1,Queensland,153.038289,-27.53312 +2024,5,13,1,Queensland,153.074649,-27.542666 +2023,6,11,1,Queensland,153.091362,-27.527845 +2022,11,19,1,Queensland,153.038923,-27.533258 +2022,2,5,1,Queensland,153.439377,-27.401307 +2022,9,24,1,New South Wales,152.998887,-28.524145 +2022,11,6,1,Queensland,153.072205,-27.545709 +2024,2,15,1,South Australia,135.685924,-34.83217 +2023,6,17,1,Queensland,153.092811,-27.527614 +2023,6,26,1,New South Wales,150.813595,-34.101124 +2024,7,28,1,Queensland,151.526658,-27.715728 +2024,8,14,1,Victoria,146.394144,-38.363496 +2021,2,8,1,Queensland,153.059593,-27.550124 +2024,9,1,1,Victoria,144.268951,-37.861354 +2020,7,8,1,Queensland,153.058687,-27.547583 +2023,8,22,1,Queensland,152.003772,-27.41378 +2022,3,9,1,Queensland,153.058999,-27.548542 +2023,11,12,1,Queensland,153.092545,-27.527074 +2024,4,25,1,New South Wales,151.518981,-30.520915 +2023,3,2,1,Victoria,142.356434,-38.333708 +2024,4,2,1,Queensland,153.399608,-27.497629 +2023,11,5,1,Queensland,151.630172,-27.715338 +2024,4,22,1,Queensland,152.937897,-27.275638 +2023,1,1,1,South Australia,138.675197,-35.011924 +2022,12,4,1,New South Wales,153.124887,-30.296274 +2024,11,10,1,Victoria,145.445094,-37.018233 +2024,5,2,1,South Australia,138.623398,-34.858716 +2024,6,7,1,Queensland,152.901828,-27.621667 +2023,8,6,1,Queensland,151.678942,-26.431754 +2023,5,9,1,Queensland,151.657261,-27.643469 +2024,3,24,1,Queensland,153.091218,-27.527324 +2024,10,31,1,Victoria,142.291021,-37.874397 +2023,1,7,1,Queensland,153.105348,-27.53144 +2021,12,12,1,Queensland,153.087335,-27.511059 +2021,6,29,1,Queensland,152.404335,-27.453072 +2024,2,13,1,Queensland,153.092457,-27.525655 +2021,2,12,1,Queensland,153.05769,-27.551745 +2023,1,5,1,South Australia,138.694248,-34.926138 +2024,8,15,1,Queensland,153.090687,-27.525804 +2024,11,17,1,South Australia,138.593748,-35.041903 +2024,9,15,1,New South Wales,146.562487,-34.757355 +2024,11,12,1,Queensland,151.847254,-26.187101 +2024,6,23,1,Queensland,153.034994,-27.528497 +2023,7,27,1,Victoria,146.282363,-38.895638 +2024,7,4,1,South Australia,138.72011,-34.892407 +2023,12,16,1,Victoria,142.364685,-38.321272 +2024,11,3,1,Queensland,153.090788,-27.527158 +2024,3,2,1,Queensland,153.093432,-27.527887 +2022,11,27,1,South Australia,138.665463,-35.008635 +2023,1,7,1,Queensland,153.082695,-27.514373 +2023,11,15,1,Victoria,145.565078,-37.089455 +2022,1,14,1,Victoria,146.164581,-38.670997 +2024,8,5,1,Queensland,152.039084,-27.296177 +2021,7,29,1,New South Wales,153.377379,-28.254171 +2023,1,13,1,New South Wales,153.630022,-28.637653 +2023,8,12,1,Queensland,153.053117,-27.550989 +2022,3,1,1,Victoria,145.280483,-38.127306 +2021,9,30,1,Victoria,146.164108,-38.67153 +2022,7,30,1,Queensland,153.107797,-27.529072 +2022,6,22,1,South Australia,138.655885,-34.86725 +2020,6,8,1,Victoria,143.533328,-38.803267 +2023,8,24,1,Queensland,151.93228,-27.33108 +2024,5,8,1,Victoria,142.976433,-38.500056 +2023,4,25,1,Queensland,153.090615,-27.524359 +2022,2,13,1,Victoria,146.223161,-38.501197 +2023,12,10,1,Queensland,153.057848,-27.551863 +2023,10,15,1,South Australia,138.693818,-34.921838 +2024,9,29,1,Queensland,153.372222,-27.91172 +2023,6,17,1,Queensland,153.084686,-27.506308 +2024,11,15,1,Queensland,153.072034,-27.545739 +2020,6,27,1,South Australia,138.644103,-34.980633 +2024,5,3,1,New South Wales,150.240259,-30.993163 +2023,4,13,1,Victoria,143.903626,-37.749445 +2022,1,28,1,Victoria,143.526272,-38.817297 +2022,1,3,1,Victoria,142.361259,-38.318837 +2024,10,17,1,New South Wales,153.302368,-28.819986 +2024,11,9,1,Queensland,151.520645,-27.719697 +2023,3,19,1,Queensland,153.000403,-27.284415 +2023,12,6,1,Queensland,153.108582,-27.527369 +2024,3,29,1,Queensland,153.092218,-27.52691 +2020,7,24,1,South Australia,138.700715,-34.961189 +2024,7,19,1,Queensland,152.865928,-26.14941 +2023,10,18,1,Queensland,153.103187,-27.528985 +2020,3,2,1,Victoria,143.541468,-38.797562 +2023,9,30,1,Queensland,152.999918,-27.284489 +2024,4,20,1,Queensland,153.104769,-27.529555 +2021,10,19,1,Victoria,143.875,-37.604133 +2024,1,5,1,New South Wales,152.907643,-31.451089 +2022,5,6,1,New South Wales,151.168883,-33.585762 +2023,2,8,1,Victoria,145.321709,-38.217568 +2022,2,12,1,South Australia,138.580268,-35.16657 +2024,5,8,1,Victoria,142.980539,-38.496767 +2021,10,16,1,New South Wales,153.375539,-28.252359 +2021,8,10,1,New South Wales,153.375712,-28.252309 +2024,3,14,1,South Australia,138.72225,-34.892314 +2023,8,24,1,Victoria,149.740188,-37.529945 +2023,7,12,1,Queensland,146.868281,-19.129692 +2024,11,3,1,Victoria,145.715275,-36.915878 +2020,12,8,1,New South Wales,153.2207,-28.48631 +2023,10,23,1,Queensland,151.876072,-26.312979 +2020,1,31,1,Victoria,143.671203,-38.744252 +2021,5,10,1,Queensland,153.136672,-27.564628 +2020,8,24,1,Queensland,153.058332,-27.546235 +2024,6,28,1,Queensland,152.991881,-27.822871 +2024,11,10,1,Queensland,152.933794,-27.573913 +2023,6,18,1,Queensland,153.056231,-27.552216 +2020,1,19,1,Queensland,152.055131,-27.643611 +2023,9,22,1,Queensland,153.054075,-27.552298 +2021,5,2,1,South Australia,138.656564,-35.019361 +2021,10,23,1,Queensland,152.164946,-26.968083 +2024,5,3,1,Queensland,153.092336,-27.528314 +2024,1,21,1,South Australia,138.716267,-34.893429 +2021,10,24,1,Queensland,153.08473,-27.506473 +2023,11,28,1,Victoria,143.861211,-38.666296 +2020,12,21,1,Victoria,145.120408,-38.386983 +2024,2,11,1,Queensland,153.090653,-27.526973 +2020,5,27,1,New South Wales,153.37702,-28.254284 +2023,10,18,1,Queensland,153.107259,-27.527427 +2024,1,28,1,Queensland,153.092644,-27.527955 +2024,7,29,1,Queensland,152.994125,-27.823547 +2023,1,2,1,New South Wales,150.82724,-34.09942 +2021,12,6,1,New South Wales,153.375202,-28.252371 +2023,12,28,1,Queensland,153.109998,-27.527431 +2020,11,19,1,Queensland,152.998361,-27.436192 +2022,8,22,1,Victoria,143.271114,-38.297027 +2021,7,30,1,Queensland,153.04954,-27.54962 +2023,6,3,1,Queensland,153.111662,-27.527762 +2023,9,22,1,Queensland,151.940651,-27.389895 +2024,11,3,1,Queensland,151.71463,-27.649572 +2023,11,15,1,Victoria,147.731492,-37.921642 +2023,10,14,1,Queensland,153.370739,-27.89935 +2021,6,19,1,Queensland,146.868956,-19.130725 +2021,7,27,1,New South Wales,153.400585,-28.25785 +2022,6,4,1,Queensland,152.608495,-27.420044 +2024,3,3,1,South Australia,138.717442,-34.892464 +2024,2,17,1,Queensland,153.111111,-27.528477 +2023,11,14,1,Queensland,153.091569,-27.526922 +2023,12,12,1,Queensland,151.749867,-26.155069 +2024,11,3,1,South Australia,138.719181,-34.89159 +2021,7,31,1,Victoria,143.882223,-37.60471 +2023,10,15,1,Queensland,153.091023,-27.526468 +2021,12,23,1,New South Wales,153.402165,-28.258429 +2020,9,23,1,Queensland,153.264872,-27.523965 +2024,4,25,1,Queensland,153.072659,-27.543274 +2023,10,20,1,Queensland,151.573105,-27.629913 +2021,10,21,1,Victoria,146.16362,-38.671397 +2024,4,24,1,Queensland,152.940033,-27.273725 +2021,11,1,1,Queensland,153.220923,-27.502627 +2022,12,18,1,Queensland,152.003232,-27.413992 +2023,10,22,1,South Australia,138.638493,-35.005996 +2024,11,3,1,Victoria,145.240331,-38.254416 +2023,2,7,1,Victoria,144.95897,-38.42177 +2022,12,14,1,Queensland,153.073555,-27.545751 +2023,8,21,1,Queensland,153.091642,-27.526927 +2021,9,4,1,Queensland,153.083283,-27.512275 +2021,2,26,1,Queensland,153.058405,-27.54806 +2022,4,30,1,South Australia,138.655809,-35.019247 +2022,4,13,1,Victoria,144.122233,-37.579699 +2024,10,4,1,Queensland,153.092082,-27.524547 +2024,4,13,1,Queensland,153.090787,-27.527101 +2024,9,17,1,Queensland,151.561295,-27.795137 +2020,11,2,1,New South Wales,151.521058,-30.519321 +2023,5,1,1,Victoria,143.861356,-38.670468 +2023,2,11,1,South Australia,138.566984,-35.038582 +2024,10,27,1,Queensland,153.092805,-27.525292 +2024,4,21,1,South Australia,138.703278,-34.939583 +2021,7,11,1,Queensland,152.44471,-26.794511 +2021,3,31,1,Queensland,153.070432,-27.50956 +2021,2,1,1,Queensland,153.058009,-27.550839 +2023,10,18,1,Queensland,153.057574,-27.551203 +2021,8,16,1,New South Wales,153.376109,-28.252479 +2023,10,20,1,Queensland,153.057754,-27.551021 +2023,11,27,1,Victoria,144.594011,-37.330167 +2024,6,15,1,Queensland,153.091863,-27.526889 +2020,9,22,1,Queensland,153.24875,-27.490447 +2024,2,11,1,Queensland,153.092076,-27.527079 +2023,9,14,1,Queensland,153.099442,-28.290628 +2023,10,16,1,Queensland,151.510776,-27.55491 +2023,9,10,1,New South Wales,152.900969,-31.442903 +2024,4,17,1,Victoria,143.515397,-38.836437 +2020,6,12,1,Queensland,153.043622,-27.550691 +2022,1,22,1,South Australia,138.713841,-35.002011 +2023,9,6,1,New South Wales,151.095031,-33.076592 +2023,9,4,1,Queensland,153.110962,-27.527137 +2024,1,29,1,Victoria,141.311793,-37.940872 +2023,11,25,1,Queensland,152.050203,-27.263513 +2023,6,16,1,Queensland,152.677428,-27.986587 +2024,4,27,1,South Australia,138.69905,-34.875745 +2024,3,31,1,Victoria,145.304162,-38.384213 +2023,4,25,1,Queensland,151.520675,-27.719558 +2024,1,25,1,New South Wales,150.825564,-34.100489 +2024,4,17,1,Queensland,153.375468,-27.91972 +2022,12,21,1,Victoria,145.261644,-38.484304 +2024,7,16,1,Queensland,153.108905,-27.527118 +2022,1,11,1,Queensland,153.00151,-27.16561 +2023,4,22,1,Queensland,146.870984,-19.129095 +2022,11,27,1,Victoria,142.983439,-38.503156 +2020,3,30,1,Victoria,145.790039,-36.803519 +2022,11,16,1,South Australia,138.731349,-34.890902 +2020,5,13,1,Victoria,143.91346,-37.627285 +2023,6,7,1,Queensland,153.108185,-27.527226 +2023,2,27,1,Queensland,153.091827,-27.525793 +2022,1,5,1,South Australia,138.841839,-34.707426 +2021,1,5,1,Victoria,147.734167,-37.9225 +2024,1,29,1,South Australia,138.719169,-34.891909 +2021,9,3,1,Queensland,152.08625,-27.696933 +2024,8,17,1,Queensland,153.092239,-27.527439 +2023,5,7,1,Queensland,152.003669,-27.414538 +2020,10,13,1,Queensland,153.057495,-27.551122 +2024,8,12,1,South Australia,138.626196,-34.893165 +2022,1,3,1,Queensland,151.825394,-26.571302 +2023,8,12,1,Queensland,152.53638,-27.478232 +2024,9,21,1,Queensland,152.401352,-27.457387 +2023,7,2,1,Queensland,153.091021,-27.526322 +2024,6,20,1,Queensland,152.513886,-27.841639 +2021,2,18,1,New South Wales,150.908889,-33.983217 +2020,12,22,1,New South Wales,153.376821,-28.253468 +2024,9,27,1,Victoria,143.476933,-38.80287 +2021,1,5,1,Queensland,153.056075,-27.83122 +2023,8,25,1,Queensland,151.774653,-26.111041 +2023,3,12,1,South Australia,135.659154,-34.621851 +2023,1,2,1,Victoria,141.92343,-38.056283 +2022,8,25,1,Queensland,153.044308,-27.54515 +2023,1,21,1,Victoria,145.309587,-38.384875 +2023,2,23,1,Queensland,152.859833,-27.546555 +2021,7,25,1,New South Wales,153.394272,-28.288588 +2022,3,29,1,New South Wales,146.588622,-34.75705 +2023,10,3,1,Queensland,151.885961,-27.423607 +2023,12,2,1,Queensland,151.762506,-26.16856 +2023,1,16,1,Queensland,151.893923,-27.598761 +2023,12,22,1,Queensland,153.108303,-27.527178 +2021,2,23,1,Queensland,153.193107,-28.203765 +2024,3,31,1,Victoria,145.311923,-38.385085 +2024,10,20,1,Queensland,152.991455,-27.104947 +2023,11,2,1,Queensland,153.09222,-27.527344 +2024,11,1,1,Queensland,152.714507,-26.829613 +2024,7,26,1,Queensland,152.609603,-27.396238 +2023,11,2,1,New South Wales,152.301182,-31.94965 +2023,12,31,1,Queensland,153.093524,-27.526454 +2024,10,7,1,Queensland,153.429962,-27.492703 +2023,3,14,1,Queensland,153.090465,-27.526872 +2020,9,25,1,Victoria,145.132149,-38.175581 +2024,6,3,1,New South Wales,153.286075,-29.023089 +2020,9,2,1,Queensland,153.158342,-27.71648 +2024,10,31,1,Queensland,153.437797,-27.401179 +2020,10,7,1,Queensland,153.446092,-28.103967 +2023,1,13,1,Queensland,153.072853,-27.545858 +2021,5,2,1,South Australia,138.656366,-35.020748 +2024,7,29,1,Queensland,153.111422,-27.528435 +2021,11,15,1,Queensland,152.246676,-27.496005 +2023,9,29,1,Queensland,153.32599,-27.987911 +2024,8,10,1,Queensland,152.623956,-28.068607 +2024,11,24,1,Queensland,153.091743,-27.527131 +2024,9,20,1,Queensland,152.074667,-27.358597 +2024,5,29,1,Queensland,153.109183,-27.527203 +2024,4,27,1,Queensland,153.056172,-27.547111 +2023,11,4,1,Queensland,153.091263,-27.527478 +2020,7,28,1,Victoria,146.163726,-38.671212 +2024,10,19,1,Victoria,146.389741,-38.356506 +2023,6,5,1,Queensland,152.997038,-27.2585 +2024,4,2,1,New South Wales,153.510488,-28.809477 +2023,4,6,1,Queensland,153.059468,-27.551604 +2022,1,10,1,Queensland,153.083903,-27.513382 +2021,9,23,1,New South Wales,153.402339,-28.257658 +2020,1,30,1,Queensland,153.059617,-27.549416 +2023,9,11,1,Queensland,146.868245,-19.128948 +2024,1,30,1,South Australia,138.73367,-34.887683 +2021,12,5,1,Victoria,144.270125,-37.420987 +2021,10,9,1,New South Wales,153.138153,-28.815943 +2024,4,6,1,Queensland,153.105182,-27.528969 +2024,11,12,1,Queensland,152.003769,-27.413747 +2024,7,5,1,South Australia,138.735865,-34.826458 +2024,6,14,1,Queensland,153.093426,-27.528372 +2023,10,22,1,Queensland,153.189646,-27.701124 +2022,11,5,1,Queensland,151.989468,-27.579246 +2024,10,28,1,Victoria,144.941588,-38.433267 +2024,7,14,1,Victoria,142.976761,-38.482594 +2022,8,22,1,Queensland,153.058306,-27.546939 +2023,11,21,1,Queensland,152.710674,-26.831533 +2024,1,16,1,New South Wales,153.107555,-30.261334 +2024,10,21,1,New South Wales,153.39782,-28.261538 +2020,5,4,1,Queensland,153.242128,-27.532787 +2020,4,13,1,New South Wales,153.374145,-28.25745 +2022,11,6,1,Queensland,153.057803,-27.529453 +2021,1,3,1,New South Wales,153.377606,-28.254187 +2024,8,11,1,Queensland,153.091038,-27.527529 +2022,11,18,1,Queensland,152.827889,-28.069726 +2023,8,22,1,South Australia,138.508358,-35.122492 +2023,10,16,1,Queensland,153.102707,-27.527638 +2023,8,11,1,Victoria,144.175093,-37.302864 +2020,5,12,1,New South Wales,151.518894,-30.52057 +2023,8,22,1,Queensland,153.093236,-27.527451 +2023,8,19,1,New South Wales,150.824697,-29.651992 +2021,8,22,1,Queensland,153.084263,-27.505802 +2024,8,15,1,Queensland,153.092267,-27.525335 +2020,3,10,1,Victoria,143.529463,-38.817091 +2020,5,17,1,South Australia,138.656305,-35.007376 +2024,8,24,1,Queensland,153.091514,-27.527135 +2024,11,15,1,New South Wales,146.534028,-34.745342 +2022,12,1,1,Queensland,152.67929,-28.002767 +2020,12,2,1,Victoria,146.164445,-38.671688 +2021,10,17,1,South Australia,138.639198,-35.00985 +2021,10,24,1,Victoria,142.634044,-38.321666 +2023,10,27,1,Queensland,153.189646,-27.701124 +2020,6,30,1,Victoria,143.593333,-38.823056 +2022,3,30,1,Queensland,152.567947,-27.448563 +2023,8,21,1,Queensland,153.09065,-27.52728 +2020,3,15,1,Queensland,153.059246,-27.547992 +2022,7,14,1,Victoria,145.274078,-38.138972 +2023,9,3,1,Queensland,152.046139,-27.256264 +2020,7,19,1,Victoria,145.268258,-38.130662 +2023,1,19,1,Queensland,153.074701,-27.546458 +2023,2,2,1,Victoria,144.282583,-37.843442 +2024,2,25,1,Queensland,152.285114,-26.853037 +2022,9,2,1,New South Wales,146.590667,-34.755712 +2023,11,27,1,Queensland,153.105495,-27.531549 +2022,9,6,1,South Australia,138.637202,-34.970482 +2024,2,13,1,Queensland,153.068538,-27.524835 +2022,12,3,1,Victoria,145.89868,-37.97517 +2024,5,21,1,Queensland,153.10455,-27.530715 +2022,2,19,1,Queensland,153.375453,-27.913785 +2024,2,26,1,Victoria,147.724317,-37.924154 +2023,2,28,1,Queensland,153.282275,-27.526342 +2020,6,29,1,Victoria,143.669357,-38.755152 +2022,1,12,1,Queensland,152.807639,-27.531936 +2020,6,27,1,South Australia,138.644283,-34.980689 +2020,12,29,1,Victoria,147.726182,-37.91784 +2023,1,19,1,New South Wales,152.152545,-32.128106 +2024,10,17,1,Victoria,141.572617,-38.352445 +2022,11,10,1,Queensland,153.066243,-27.539322 +2020,5,15,1,Queensland,153.070795,-27.545716 +2023,4,30,1,Queensland,153.092271,-27.527789 +2023,8,13,1,Queensland,153.093093,-27.52424 +2023,12,24,1,Victoria,147.743497,-37.902882 +2022,12,15,1,Queensland,152.837042,-28.094775 +2024,10,19,1,South Australia,138.659654,-35.018088 +2023,11,27,1,Victoria,146.677883,-36.354314 +2023,11,2,1,Queensland,152.980838,-27.276632 +2023,7,14,1,Queensland,153.108668,-27.529307 +2023,1,18,1,Queensland,153.103386,-27.530051 +2023,5,31,1,Victoria,145.380433,-36.847363 +2022,12,19,1,Queensland,153.103343,-27.530179 +2024,10,17,1,New South Wales,150.974867,-34.030862 +2021,5,19,1,Victoria,144.325342,-37.688277 +2020,9,29,1,Queensland,153.441213,-28.137954 +2022,5,13,1,South Australia,138.657122,-34.865003 +2023,4,11,1,New South Wales,151.09497,-33.076217 +2024,9,4,1,South Australia,138.514489,-35.174868 +2021,12,5,1,Victoria,143.887432,-38.636155 +2024,1,21,1,South Australia,138.721595,-34.893066 +2022,9,27,1,New South Wales,151.077888,-33.147178 +2024,11,19,1,Queensland,151.714675,-27.649588 +2024,7,6,1,Victoria,146.69556,-36.358086 +2023,3,27,1,Queensland,153.092696,-27.527542 +2024,5,15,1,Queensland,152.901742,-27.621553 +2023,4,19,1,South Australia,138.673786,-34.931051 +2021,1,26,1,South Australia,138.734286,-35.152715 +2024,9,29,1,Queensland,153.093087,-27.525887 +2024,11,17,1,Queensland,152.062667,-27.261167 +2020,1,18,1,New South Wales,150.530653,-33.504041 +2021,1,31,1,New South Wales,151.518981,-30.520915 +2023,11,30,1,South Australia,138.720246,-34.892863 +2022,3,1,1,Victoria,143.883183,-37.586685 +2021,7,11,1,Queensland,153.085347,-27.508983 +2022,5,12,1,South Australia,138.656722,-34.865228 +2022,12,25,1,Queensland,151.890762,-27.598839 +2024,10,7,1,Queensland,152.992995,-27.823807 +2024,9,26,1,New South Wales,151.095441,-33.076711 +2023,1,26,1,Victoria,141.631716,-38.127486 +2024,9,21,1,New South Wales,146.587025,-34.765198 +2023,10,23,1,Queensland,153.428488,-28.140454 +2020,1,3,1,New South Wales,150.011356,-29.301205 +2024,7,26,1,Queensland,153.091041,-27.52686 +2024,4,12,1,Victoria,145.31488,-38.372425 +2023,2,3,1,Queensland,153.176413,-27.573992 +2023,9,24,1,Queensland,152.058378,-27.2697 +2020,1,8,1,Queensland,153.176717,-27.551905 +2024,6,1,1,Victoria,147.049164,-38.2769 +2023,12,12,1,Queensland,153.1102,-27.527386 +2023,8,25,1,Queensland,153.034154,-27.550164 +2020,9,26,1,South Australia,138.649323,-35.011545 +2024,5,26,1,Queensland,153.091581,-27.527119 +2022,9,12,1,South Australia,138.634357,-34.969893 +2022,8,2,1,Queensland,152.684044,-27.997129 +2021,2,23,1,South Australia,138.638119,-34.970362 +2023,12,29,1,Queensland,153.093693,-27.524532 +2023,11,14,1,South Australia,138.721298,-34.892015 +2023,6,3,1,Queensland,153.09086,-27.527424 +2024,5,18,1,Queensland,153.450049,-28.094804 +2024,3,30,1,Queensland,153.085067,-27.510541 +2024,6,1,1,Queensland,153.069917,-27.223547 +2024,6,8,1,Queensland,153.092391,-27.525285 +2023,9,6,1,Queensland,152.044652,-27.256175 +2020,6,20,1,South Australia,138.699871,-34.958065 +2020,11,4,1,Victoria,145.132256,-38.175495 +2020,12,17,1,Victoria,148.264257,-37.221994 +2023,9,1,1,Queensland,153.093446,-27.514174 +2021,1,2,1,South Australia,138.584395,-35.151603 +2024,7,8,1,South Australia,138.7319,-34.888911 +2024,7,24,1,South Australia,138.723449,-34.892446 +2023,7,23,1,Queensland,151.766256,-26.172552 +2023,9,25,1,Queensland,152.749637,-27.886446 +2023,2,8,1,Queensland,153.073202,-27.545919 +2020,5,17,1,South Australia,138.658667,-35.005263 +2024,1,26,1,Queensland,153.106551,-27.52909 +2024,4,28,1,Queensland,153.092221,-27.52803 +2023,1,26,1,South Australia,138.595117,-35.076185 +2021,6,8,1,Queensland,153.054475,-27.550965 +2022,3,26,1,Queensland,152.425782,-28.072701 +2023,12,3,1,South Australia,138.720381,-34.89286 +2022,9,7,1,Queensland,153.05759,-27.551392 +2024,3,11,1,Victoria,144.140014,-37.96811 +2022,8,6,1,Queensland,153.06996,-27.510564 +2023,5,18,1,Queensland,152.98979,-27.275256 +2023,2,9,1,Queensland,153.057856,-27.551517 +2023,4,3,1,Queensland,153.108313,-27.52698 +2024,9,25,1,Queensland,153.073265,-27.541682 +2020,8,19,1,Queensland,153.058064,-27.550846 +2024,10,16,1,Queensland,153.103435,-27.530889 +2023,11,14,1,Queensland,152.566792,-28.261875 +2020,1,26,1,Victoria,143.608847,-38.784374 +2024,1,7,1,Queensland,153.090867,-27.52695 +2020,3,13,1,New South Wales,153.374145,-28.25745 +2021,1,31,1,Queensland,153.079392,-27.513599 +2023,6,28,1,Queensland,153.103023,-27.529109 +2023,11,19,1,Queensland,152.719273,-26.828408 +2020,2,18,1,Queensland,153.057326,-27.551604 +2023,12,11,1,Queensland,152.47295,-27.531927 +2023,1,16,1,Queensland,153.101251,-27.530378 +2022,9,20,1,Victoria,144.276152,-37.840697 +2022,11,7,1,Victoria,141.325553,-37.657676 +2024,5,6,1,South Australia,138.714806,-34.892148 +2024,10,13,1,Queensland,152.993372,-27.823873 +2021,4,11,1,South Australia,138.645631,-35.00266 +2023,10,25,1,New South Wales,151.095128,-33.07635 +2022,6,4,1,South Australia,138.654495,-34.870078 +2021,8,25,1,Queensland,152.087003,-27.695155 +2021,1,25,1,New South Wales,150.822053,-34.101692 +2024,4,16,1,Queensland,153.103319,-27.528471 +2022,1,6,1,Victoria,144.09462,-37.62403 +2022,12,3,1,Queensland,153.111538,-27.525064 +2021,4,29,1,Queensland,153.074122,-27.518155 +2021,5,2,1,Victoria,144.930787,-37.170688 +2021,7,2,1,Victoria,144.2364,-37.8553 +2024,8,25,1,Queensland,152.567765,-27.17228 +2021,1,28,1,South Australia,138.683455,-35.108075 +2020,11,29,1,Victoria,143.861035,-38.669511 +2021,11,2,1,Queensland,152.591126,-27.469748 +2022,9,26,1,Queensland,153.072776,-27.542219 +2023,10,14,1,Queensland,153.092456,-27.527423 +2023,10,28,1,Queensland,153.075389,-27.542471 +2022,8,6,1,New South Wales,146.567285,-34.759078 +2023,10,22,1,Queensland,153.241133,-28.229863 +2024,6,28,1,Queensland,153.103355,-27.528992 +2024,4,22,1,Queensland,153.109026,-27.527158 +2024,2,14,1,South Australia,138.741358,-34.828389 +2024,1,21,1,South Australia,138.713745,-34.891859 +2020,1,16,1,South Australia,138.747261,-35.020903 +2024,10,11,1,Queensland,153.111621,-27.527375 +2021,1,21,1,Queensland,153.057877,-27.545442 +2024,10,8,1,Queensland,153.105265,-27.531556 +2023,7,12,1,Queensland,153.103245,-27.529722 +2024,1,5,1,New South Wales,152.912731,-31.455273 +2022,8,28,1,Queensland,152.930497,-27.246998 +2024,8,17,1,New South Wales,153.629609,-28.637402 +2024,10,1,1,New South Wales,153.389778,-28.26711 +2024,2,26,1,Queensland,153.103343,-27.530125 +2024,3,12,1,Queensland,153.103383,-27.530164 +2022,9,25,1,South Australia,138.654792,-34.987729 +2023,8,21,1,Queensland,152.595624,-28.065728 +2020,11,2,1,South Australia,138.702587,-34.903485 +2023,3,24,1,Victoria,144.100307,-37.303182 +2024,3,2,1,Queensland,153.091771,-27.526923 +2022,4,3,1,Victoria,144.18245,-37.35128 +2023,9,3,1,Queensland,151.970358,-27.547819 +2024,10,23,1,Queensland,151.816325,-26.409322 +2023,7,5,1,Queensland,151.688941,-26.354129 +2023,5,31,1,Queensland,148.688115,-21.687572 +2022,10,8,1,Queensland,152.914336,-28.10584 +2023,12,21,1,South Australia,138.730796,-34.886444 +2024,11,3,1,Queensland,153.081489,-27.508372 +2023,7,12,1,Queensland,153.103179,-27.52907 +2023,8,26,1,Queensland,153.068755,-27.510074 +2020,8,9,1,South Australia,138.695796,-34.778333 +2023,1,15,1,South Australia,138.721403,-34.899323 +2024,8,2,1,Queensland,146.867997,-19.128533 +2021,6,14,1,Victoria,145.17357,-38.173372 +2023,4,29,1,Victoria,145.624088,-37.875078 +2024,3,21,1,Victoria,143.891266,-37.578918 +2023,4,2,1,South Australia,138.705596,-34.903199 +2024,1,16,1,South Australia,138.69561,-34.825443 +2023,3,15,1,Queensland,153.113464,-27.528437 +2022,11,17,1,Queensland,152.741565,-28.235153 +2023,4,25,1,Queensland,153.100211,-27.531128 +2021,1,23,1,Queensland,151.97597,-26.16294 +2023,3,7,1,Victoria,143.744645,-38.550125 +2020,4,1,1,Queensland,153.057361,-27.551242 +2023,10,12,1,Queensland,153.189646,-27.701124 +2023,6,24,1,Queensland,152.674879,-28.120555 +2021,9,13,1,Victoria,145.133394,-38.387063 +2022,10,25,1,Queensland,153.082835,-27.512433 +2022,2,27,1,Victoria,146.26692,-38.664559 +2020,4,1,1,South Australia,138.699499,-34.95809 +2020,6,4,1,Queensland,153.058598,-27.548169 +2024,6,23,1,Victoria,143.861497,-38.667222 +2023,1,13,1,Queensland,153.072334,-27.545424 +2022,8,6,1,Queensland,152.681361,-27.999288 +2023,12,3,1,Queensland,152.999833,-27.28446 +2024,4,8,1,South Australia,138.721655,-34.891814 +2023,10,19,1,Victoria,146.386486,-38.354276 +2023,6,25,1,Queensland,153.090825,-27.526785 +2020,11,26,1,Queensland,153.058169,-27.551542 +2023,4,1,1,Queensland,153.092323,-27.527801 +2023,12,29,1,Queensland,152.046406,-27.257346 +2023,12,12,1,Queensland,153.10343,-27.530178 +2021,6,16,1,Queensland,153.053949,-27.551898 +2022,8,28,1,Queensland,153.37601,-27.918693 +2024,10,23,1,Queensland,153.052428,-27.553013 +2021,2,26,1,Victoria,146.163742,-38.671353 +2020,12,29,1,South Australia,138.612533,-35.061783 +2020,6,11,1,Queensland,153.04897,-27.550166 +2022,12,21,1,Queensland,153.105258,-27.529439 +2024,1,29,1,South Australia,138.713776,-34.891963 +2022,4,4,1,South Australia,138.692248,-34.965719 +2021,6,6,1,Victoria,145.125797,-38.174557 +2022,10,31,1,Queensland,152.108641,-27.254561 +2022,2,28,1,Victoria,142.061747,-37.895649 +2021,4,1,1,Queensland,153.221289,-27.535087 +2021,1,13,1,Victoria,141.923485,-38.056576 +2021,1,17,1,Queensland,153.221216,-27.534938 +2021,11,29,1,Queensland,151.933822,-27.329503 +2023,10,20,1,Victoria,145.54291,-36.926985 +2021,10,16,1,Queensland,152.194305,-27.591155 +2023,10,21,1,Victoria,143.860793,-38.669428 +2023,8,18,1,Queensland,153.105416,-27.529522 +2022,11,6,1,Queensland,151.937676,-27.41673 +2022,4,10,1,Queensland,153.083345,-27.510497 +2023,10,18,1,Queensland,153.347788,-27.93334 +2023,10,20,1,Queensland,153.111166,-27.528891 +2023,1,14,1,Queensland,153.109638,-27.529347 +2021,11,15,1,Queensland,153.189987,-27.736471 +2023,12,9,1,Queensland,153.110284,-27.527405 +2023,1,29,1,Queensland,153.090705,-27.526526 +2023,3,27,1,Queensland,153.090488,-27.526989 +2023,9,10,1,South Australia,138.564218,-35.156921 +2021,10,20,1,Queensland,153.157043,-27.622749 +2024,1,31,1,Queensland,153.085152,-27.510545 +2022,9,18,1,Queensland,153.493163,-27.420672 +2022,2,7,1,New South Wales,153.399611,-28.260465 +2023,12,29,1,Queensland,153.104448,-27.530496 +2023,7,14,1,Queensland,153.103518,-27.530026 +2024,9,3,1,Queensland,153.086373,-27.509233 +2024,5,8,1,Queensland,153.068033,-27.509065 +2023,5,22,1,New South Wales,150.518155,-33.497576 +2024,3,30,1,Queensland,153.10615,-27.529255 +2024,11,4,1,South Australia,138.740828,-35.024798 +2024,1,9,1,New South Wales,151.095146,-33.076711 +2023,11,6,1,Queensland,153.192688,-27.703163 +2023,12,12,1,Queensland,151.769552,-26.371076 +2024,6,12,1,Queensland,153.112474,-27.528033 +2023,12,2,1,Queensland,151.801326,-26.154652 +2024,3,8,1,Victoria,143.860763,-38.668067 +2024,10,6,1,Queensland,153.058084,-27.547938 +2024,10,10,1,New South Wales,149.341033,-31.576008 +2021,7,4,1,Victoria,143.898763,-37.595419 +2024,10,15,1,Queensland,152.693037,-27.856406 +2021,5,8,1,Queensland,153.176436,-28.200933 +2022,9,20,1,Queensland,153.069451,-27.510405 +2020,8,6,1,Queensland,153.047097,-27.549735 +2023,10,31,1,South Australia,138.753447,-35.008647 +2024,9,29,1,Queensland,153.091534,-27.527218 +2024,7,22,1,Queensland,151.867391,-26.522552 +2024,10,19,1,Queensland,153.106031,-27.529648 +2022,10,26,1,Victoria,143.861167,-38.668711 +2023,1,4,1,South Australia,138.690337,-34.954243 +2024,4,27,1,New South Wales,151.117373,-33.114143 +2020,2,3,1,Queensland,153.057719,-27.551036 +2022,10,25,1,South Australia,138.725979,-35.082054 +2023,1,26,1,Queensland,153.11183,-27.528859 +2023,1,23,1,Queensland,153.110274,-27.529867 +2020,4,6,1,South Australia,138.697471,-34.956881 +2021,10,28,1,Queensland,152.617843,-27.321903 +2022,11,24,1,Queensland,153.072246,-27.544689 +2024,2,15,1,South Australia,135.686667,-34.825556 +2024,3,2,1,New South Wales,149.472779,-33.758096 +2021,10,20,1,New South Wales,153.402268,-28.258515 +2024,1,15,1,South Australia,138.538578,-34.916747 +2021,8,15,1,South Australia,138.558679,-34.914958 +2023,7,2,1,Victoria,145.018892,-38.464525 +2024,11,11,1,Queensland,151.935622,-27.325487 +2024,8,13,1,South Australia,138.729876,-34.889991 +2024,9,18,1,South Australia,138.723016,-34.891725 +2024,5,7,1,South Australia,138.730435,-34.890778 +2022,12,5,1,Queensland,152.062961,-27.348613 +2023,7,19,1,Queensland,152.902222,-27.621983 +2022,9,19,1,New South Wales,153.400635,-28.257885 +2024,10,29,1,Queensland,153.187566,-28.187872 +2023,3,22,1,Queensland,153.091542,-27.526804 +2023,8,9,1,Queensland,153.105719,-27.521602 +2022,5,28,1,New South Wales,146.568058,-34.756534 +2023,8,11,1,Queensland,153.105925,-27.529502 +2023,10,27,1,South Australia,140.070119,-36.821806 +2024,10,12,1,Queensland,146.870014,-19.127393 +2023,11,19,1,Queensland,151.569298,-27.759233 +2024,5,5,1,Queensland,146.868333,-19.127278 +2024,10,30,1,Queensland,152.978438,-27.276317 +2021,1,30,1,Queensland,152.444556,-27.582516 +2023,5,6,1,Queensland,153.091123,-27.527784 +2022,10,30,1,Queensland,153.080366,-27.508676 +2023,12,29,1,Queensland,153.090733,-27.527001 +2023,8,12,1,Queensland,153.071251,-27.225656 +2022,11,14,1,Queensland,151.778008,-27.338424 +2022,10,28,1,Queensland,153.090333,-27.509631 +2021,8,11,1,Queensland,153.058882,-27.547384 +2023,9,3,1,Queensland,151.914231,-26.208028 +2023,10,24,1,Queensland,151.750039,-26.155358 +2024,2,24,1,South Australia,138.683411,-35.083108 +2023,2,10,1,Queensland,153.103648,-27.528205 +2023,2,11,1,Queensland,151.955365,-27.445924 +2021,10,20,1,South Australia,138.692724,-34.898331 +2020,10,7,1,Victoria,143.476941,-38.802014 +2021,1,4,1,South Australia,140.890013,-37.967955 +2020,5,2,1,Victoria,146.164181,-38.671289 +2024,10,30,1,Queensland,153.062366,-27.811517 +2024,10,19,1,Queensland,153.082474,-27.502513 +2024,3,9,1,Queensland,153.090565,-27.52642 +2023,12,9,1,Queensland,153.091128,-27.527134 +2020,11,17,1,New South Wales,151.656389,-30.535 +2023,11,15,1,Victoria,147.727355,-37.922263 +2022,11,23,1,Queensland,151.946392,-27.467401 +2023,4,23,1,Queensland,153.091546,-27.526834 +2020,4,30,1,Victoria,146.163012,-38.671446 +2020,6,25,1,Queensland,153.086672,-27.506118 +2021,2,19,1,Victoria,146.163742,-38.671275 +2024,9,29,1,Queensland,153.091836,-27.525905 +2024,8,18,1,Queensland,151.969051,-26.444967 +2024,8,24,1,Queensland,152.622335,-27.710949 +2023,6,26,1,Queensland,153.074993,-27.502178 +2022,11,1,1,Victoria,144.03112,-37.690687 +2024,8,30,1,Queensland,151.752608,-26.158158 +2024,4,12,1,Victoria,145.306121,-38.384507 +2023,1,4,1,South Australia,138.695451,-34.957508 +2024,5,3,1,Queensland,153.103977,-27.53058 +2023,11,19,1,Queensland,153.092366,-27.528073 +2023,9,16,1,Queensland,151.971054,-27.578931 +2021,1,15,1,Queensland,152.806262,-27.535778 +2023,8,20,1,Queensland,153.084231,-27.511737 +2020,9,15,1,Queensland,153.058598,-27.546473 +2021,9,11,1,Queensland,152.680615,-28.002598 +2020,5,17,1,South Australia,138.656457,-35.002649 +2020,4,19,1,South Australia,138.637438,-35.008719 +2022,10,11,1,Queensland,153.069209,-27.510232 +2024,10,8,1,Queensland,153.373406,-27.917589 +2020,9,26,1,South Australia,138.779444,-34.921111 +2023,9,11,1,Queensland,151.947372,-27.423883 +2022,2,6,1,South Australia,138.675042,-34.857217 +2023,9,9,1,Queensland,153.107285,-27.527311 +2023,3,19,1,Queensland,153.092853,-27.527115 +2024,7,15,1,Queensland,153.103689,-27.529702 +2021,8,20,1,New South Wales,153.562133,-28.38335 +2023,12,25,1,Queensland,153.090882,-27.525887 +2023,8,17,1,Queensland,153.207973,-27.800635 +2022,12,23,1,Victoria,142.362473,-38.318367 +2021,6,6,1,Victoria,146.269469,-38.387018 +2024,4,24,1,Queensland,152.939682,-27.273362 +2023,5,28,1,Victoria,142.981511,-38.502403 +2022,10,8,1,Victoria,142.35919,-38.402025 +2023,3,11,1,Queensland,153.110788,-27.525719 +2023,9,5,1,Queensland,152.04571,-27.258146 +2024,10,17,1,South Australia,138.651767,-35.043398 +2024,10,29,1,South Australia,137.494675,-35.707375 +2020,11,7,1,Queensland,152.402991,-27.457878 +2024,11,16,1,Queensland,152.044433,-27.295467 +2022,1,3,1,New South Wales,150.982222,-34.130558 +2024,8,24,1,Queensland,153.087295,-27.511062 +2023,7,15,1,Queensland,153.091533,-27.527366 +2024,7,7,1,Queensland,152.613312,-27.339465 +2022,10,25,1,South Australia,138.655742,-35.010942 +2023,2,3,1,Queensland,153.073222,-27.545491 +2023,12,5,1,Queensland,151.799648,-26.152714 +2023,7,7,1,Victoria,142.29091,-37.874554 +2024,10,6,1,Victoria,143.748292,-38.551995 +2024,9,11,1,Queensland,152.994034,-27.823679 +2023,12,26,1,Queensland,153.092115,-27.525542 +2021,6,12,1,Victoria,143.614761,-38.555291 +2023,4,28,1,Queensland,153.091646,-27.527261 +2024,11,24,1,Queensland,153.092362,-27.528004 +2024,6,13,1,Queensland,153.056155,-27.552268 +2021,1,9,1,New South Wales,153.377158,-28.253559 +2023,1,25,1,Queensland,153.109291,-27.527036 +2024,10,29,1,Victoria,143.857756,-38.666569 +2023,2,18,1,Victoria,143.615473,-38.792018 +2024,7,1,1,Victoria,145.314576,-38.374148 +2024,6,11,1,Queensland,146.869691,-19.130982 +2022,1,29,1,Victoria,143.736563,-38.551586 +2024,4,20,1,Queensland,153.103414,-27.529924 +2021,5,2,1,South Australia,138.670366,-35.015824 +2023,4,12,1,Queensland,153.108369,-27.526773 +2024,6,24,1,South Australia,138.731997,-34.872606 +2021,9,28,1,New South Wales,151.519276,-30.521537 +2024,4,12,1,Victoria,145.314941,-38.372055 +2024,10,7,1,Queensland,151.823492,-26.417057 +2020,10,6,1,New South Wales,153.377453,-28.254355 +2021,1,11,1,New South Wales,152.886688,-31.456097 +2024,2,3,1,New South Wales,152.071494,-32.713599 +2023,11,29,1,Queensland,151.604965,-27.654855 +2023,7,15,1,South Australia,136.810048,-35.960427 +2023,9,30,1,Queensland,146.865037,-19.130772 +2023,5,9,1,Queensland,151.994284,-27.566214 +2023,1,15,1,Victoria,146.387725,-38.354793 +2023,4,28,1,Queensland,153.091507,-27.526829 +2023,11,6,1,Queensland,151.73145,-26.448501 +2024,10,23,1,Queensland,151.829829,-26.602338 +2023,9,10,1,Queensland,153.092357,-27.52742 +2024,3,10,1,Queensland,153.092616,-27.527549 +2023,7,16,1,New South Wales,152.993046,-30.559978 +2023,10,29,1,Queensland,152.999856,-27.284515 +2024,2,22,1,Queensland,151.788299,-26.137974 +2024,6,2,1,Queensland,153.092295,-27.527422 +2023,4,8,1,Queensland,153.10386,-27.530523 +2020,2,19,1,Queensland,153.05697,-27.551591 +2022,6,11,1,Queensland,152.848463,-27.339705 +2024,11,8,1,Queensland,153.103956,-27.528028 +2023,11,13,1,Queensland,151.955615,-27.474704 +2023,12,17,1,Queensland,151.749888,-26.155079 +2023,1,13,1,Queensland,152.849872,-28.081415 +2024,10,12,1,Queensland,153.09333,-27.524089 +2021,1,20,1,Queensland,153.07948,-27.513497 +2022,10,19,1,Victoria,145.108056,-38.398333 +2024,2,21,1,Queensland,152.074603,-27.358441 +2021,11,14,1,Queensland,153.097085,-27.566556 +2020,10,26,1,Queensland,153.059838,-27.549457 +2022,12,13,1,Queensland,152.866043,-28.211487 +2024,5,9,1,South Australia,138.731945,-34.871752 +2022,12,31,1,Queensland,153.103182,-27.529917 +2024,4,8,1,South Australia,138.722849,-34.889549 +2023,10,8,1,Queensland,153.151276,-27.752474 +2020,1,20,1,Queensland,152.249513,-27.496634 +2023,10,16,1,South Australia,138.727329,-34.889587 +2021,8,11,1,Queensland,151.073295,-25.539886 +2024,7,23,1,South Australia,135.668719,-34.866659 +2021,6,4,1,Victoria,146.709852,-36.556288 +2024,1,27,1,Queensland,151.715317,-27.649705 +2024,4,30,1,South Australia,138.731508,-34.890289 +2023,5,8,1,Victoria,144.256373,-37.834621 +2022,11,22,1,Victoria,143.494802,-38.531318 +2020,4,26,1,South Australia,138.702816,-34.931048 +2023,12,31,1,Victoria,147.727746,-37.924432 +2023,10,1,1,Queensland,153.068874,-27.508924 +2024,3,29,1,Queensland,153.092262,-27.527314 +2023,9,29,1,Queensland,153.111491,-27.527832 +2024,6,6,1,South Australia,138.698572,-34.935161 +2024,7,7,1,Queensland,152.613312,-27.339465 +2024,11,10,1,Queensland,153.090366,-27.526817 +2024,1,14,1,South Australia,138.717296,-35.012194 +2023,8,24,1,Victoria,143.514663,-38.835858 +2020,4,29,1,Queensland,153.066673,-27.547275 +2024,9,21,1,Queensland,152.975447,-27.251628 +2023,7,23,1,Queensland,152.934629,-27.798555 +2023,2,26,1,Victoria,145.550477,-36.955773 +2024,10,12,1,Queensland,153.091729,-27.527123 +2024,5,2,1,Queensland,153.057637,-27.551329 +2021,2,8,1,New South Wales,153.375901,-28.252489 +2020,10,17,1,Queensland,153.438314,-27.401919 +2020,10,17,1,Queensland,153.440233,-27.403763 +2020,10,17,1,Queensland,153.440662,-27.397136 +2020,10,17,1,Queensland,153.438974,-27.395758 +2020,10,17,1,Queensland,153.440901,-27.403815 +2020,10,17,1,Queensland,153.439445,-27.401346 +2020,10,17,1,Queensland,153.439004,-27.399804 +2020,10,17,1,Queensland,153.441564,-27.39249 +2020,10,17,1,Queensland,153.439558,-27.393783 +2020,10,17,1,Queensland,153.438879,-27.395792 +2020,10,17,1,Queensland,153.4444,-27.395914 +2020,10,17,1,Queensland,153.461457,-27.409139 +2020,10,17,1,Queensland,153.438974,-27.395758 +2020,10,17,1,Queensland,153.437346,-27.405235 +2020,10,17,1,Queensland,153.438679,-27.40217 +2020,10,17,1,Queensland,153.440184,-27.40157 +2020,10,17,1,Queensland,153.450534,-27.40708 +2020,10,17,1,Queensland,153.450534,-27.40708 +2020,10,17,1,Queensland,153.438179,-27.401025 +2020,10,17,1,Queensland,153.442835,-27.392489 +2020,10,17,1,Queensland,153.438879,-27.395792 +2020,10,17,1,Queensland,153.438181,-27.39625 +2020,10,17,1,Queensland,153.442596,-27.400145 +2020,10,17,1,Queensland,153.438554,-27.40106 +2020,10,17,1,Queensland,153.44816,-27.395252 +2020,10,17,1,Queensland,153.440102,-27.403746 +2020,10,17,1,Queensland,153.438239,-27.4034 +2020,10,17,1,Queensland,153.453095,-27.392681 +2020,10,17,1,Queensland,153.441547,-27.395231 +2020,10,17,1,Queensland,153.440233,-27.403763 +2020,10,17,1,Queensland,153.439186,-27.397357 +2020,10,17,1,Queensland,153.439126,-27.397447 +2020,10,17,1,Queensland,153.432919,-27.396249 +2020,10,17,1,Queensland,153.437913,-27.400259 +2020,10,17,1,Queensland,153.440308,-27.397119 +2020,10,17,1,Queensland,153.440308,-27.397119 +2020,10,17,1,Queensland,153.441639,-27.401096 +2020,10,17,1,Queensland,153.440951,-27.394905 +2020,10,17,1,Queensland,153.438554,-27.40106 +2020,10,17,1,Queensland,153.439056,-27.397592 +2020,10,17,1,Queensland,153.453141,-27.393954 +2020,10,17,1,Queensland,153.442767,-27.392183 +2020,10,17,1,Queensland,153.439664,-27.393662 +2020,10,17,1,Queensland,153.437333,-27.404468 +2020,10,17,1,Queensland,153.441564,-27.39249 +2020,10,17,1,Queensland,153.44093,-27.398417 +2020,10,17,1,Queensland,153.438179,-27.401025 +2020,10,17,1,Queensland,153.44201,-27.395181 +2020,10,17,1,Queensland,153.437583,-27.403736 +2020,10,17,1,Queensland,153.439571,-27.393716 +2020,10,17,1,Queensland,153.44121,-27.394967 +2020,10,17,1,Queensland,153.442341,-27.392359 +2020,1,8,1,Queensland,153.135342,-27.487736 +2020,7,2,1,New South Wales,153.493644,-28.67517 +2020,10,25,1,New South Wales,153.446,-28.591 +2020,9,23,1,New South Wales,153.612,-28.691 +2020,6,8,1,New South Wales,153.595595,-28.715264 +2020,10,19,1,New South Wales,153.388,-28.653 +2020,6,22,1,New South Wales,153.60945,-28.662215 +2020,9,16,1,New South Wales,153.473,-28.558 +2020,12,26,1,New South Wales,153.516,-28.686 +2020,6,23,1,New South Wales,153.51074,-28.667061 +2020,10,24,1,New South Wales,153.462,-28.65 +2020,11,23,1,New South Wales,153.598,-28.723 +2020,4,3,1,New South Wales,153.51074,-28.667061 +2020,12,9,1,New South Wales,153.615,-28.661 +2020,7,11,1,New South Wales,153.61,-28.661 +2020,5,3,1,New South Wales,153.473,-28.703 +2020,8,31,1,New South Wales,153.459894,-28.753289 +2020,1,10,1,New South Wales,153.414,-28.549 +2020,11,3,1,New South Wales,153.557,-28.645 +2020,3,26,1,New South Wales,153.61095,-28.683747 +2020,11,15,1,New South Wales,153.439,-28.611 +2020,7,19,1,New South Wales,153.517,-28.693 +2020,11,28,1,New South Wales,153.461,-28.594 +2020,11,4,3,Queensland,153.43424,-28.1338 +2020,7,2,1,New South Wales,153.493489,-28.675379 +2023,6,2,3,Victoria,149.759578,-37.562281 +2020,7,2,1,New South Wales,153.494,-28.675 +2020,1,4,1,New South Wales,153.437475,-28.573115 +2020,5,21,1,New South Wales,153.497305,-28.654526 +2021,1,24,1,New South Wales,153.583,-28.633 +2020,3,23,1,New South Wales,153.614047,-28.683737 +2021,1,5,1,New South Wales,153.609,-28.69 +2020,8,31,1,New South Wales,153.464741,-28.746865 +2020,9,8,1,New South Wales,153.496,-28.695 +2020,1,14,3,Queensland,153.226944,-27.560833 +2020,8,30,1,New South Wales,153.523046,-28.711473 +2020,8,20,1,New South Wales,153.446,-28.588 +2020,8,11,1,New South Wales,153.593559,-28.723846 +2020,9,6,1,New South Wales,153.612,-28.684 +2020,10,11,1,New South Wales,153.459,-28.651 +2020,8,24,1,New South Wales,153.491,-28.654 +2020,1,7,1,New South Wales,153.519442,-28.687199 +2020,7,26,1,New South Wales,153.49,-28.667 +2020,10,12,1,New South Wales,153.397,-28.559 +2021,1,29,1,New South Wales,153.498,-28.653 +2020,12,11,1,New South Wales,153.616,-28.66 +2020,11,22,1,New South Wales,153.611,-28.684 +2020,9,15,1,New South Wales,153.597,-28.677 +2020,8,13,1,New South Wales,153.429342,-28.573115 +2020,11,20,1,New South Wales,153.534,-28.635 +2020,6,23,1,New South Wales,153.517337,-28.667032 +2020,7,25,1,New South Wales,153.627965,-28.639902 +2020,7,13,1,New South Wales,153.474085,-28.705059 +2020,4,4,1,New South Wales,153.517178,-28.575253 +2020,6,13,1,New South Wales,153.475,-28.689 +2021,10,18,3,Queensland,153.236672,-27.49049 +2020,1,5,1,New South Wales,153.507459,-28.651532 +2020,10,26,1,New South Wales,153.59995,-28.717 +2020,12,29,1,New South Wales,153.609,-28.689 +2020,8,31,1,New South Wales,153.46,-28.753 +2020,5,19,1,New South Wales,153.469126,-28.55567 +2020,8,3,1,New South Wales,153.434666,-28.572677 +2020,8,19,1,New South Wales,153.516578,-28.692812 +2020,9,16,1,New South Wales,153.616,-28.656 +2020,4,28,1,New South Wales,153.495,-28.694 +2020,11,20,3,Queensland,153.250244,-27.50702 +2020,2,27,1,New South Wales,153.433,-28.729 +2020,7,5,1,New South Wales,153.628907,-28.638007 +2020,10,27,1,New South Wales,153.51,-28.58 +2020,8,21,1,New South Wales,153.592,-28.636 +2020,11,25,1,New South Wales,153.609,-28.687 +2020,11,29,1,New South Wales,153.456432,-28.650521 +2020,10,11,1,New South Wales,153.397,-28.563 +2020,8,19,1,New South Wales,153.283802,-28.680073 +2020,9,2,1,New South Wales,153.507,-28.619 +2020,8,14,1,New South Wales,153.549,-28.57 +2020,3,14,1,New South Wales,153.609458,-28.661288 +2020,3,3,1,New South Wales,153.628741,-28.636848 +2020,6,13,1,New South Wales,153.475539,-28.689075 +2020,10,16,1,New South Wales,153.446,-28.589 +2021,1,27,1,New South Wales,153.427,-28.669 +2020,8,18,1,New South Wales,153.552,-28.571 +2020,1,12,1,New South Wales,153.390241,-28.545817 +2021,1,24,1,New South Wales,153.58374,-28.630128 +2020,11,25,1,New South Wales,153.452,-28.672 +2021,1,3,1,New South Wales,153.434,-28.574 +2020,8,12,1,New South Wales,153.462656,-28.649902 +2020,1,12,3,Queensland,153.224474,-27.500835 +2020,10,8,1,New South Wales,153.482,-28.542 +2020,2,13,1,New South Wales,153.425,-28.573 +2020,7,26,1,New South Wales,153.497035,-28.685331 +2020,6,23,1,New South Wales,153.468766,-28.6515 +2020,8,27,1,New South Wales,153.516,-28.688 +2020,10,13,1,New South Wales,153.610954,-28.660685 +2020,7,19,1,New South Wales,153.465972,-28.673632 +2020,7,20,1,New South Wales,153.561,-28.703 +2020,9,20,1,New South Wales,153.554,-28.642 +2020,9,3,1,New South Wales,153.517966,-28.686881 +2020,3,1,1,New South Wales,153.61,-28.661 +2020,11,30,1,New South Wales,153.61,-28.69 +2020,11,27,1,New South Wales,153.521,-28.685 +2020,9,6,1,New South Wales,153.463392,-28.632776 +2020,12,9,1,New South Wales,153.615,-28.661 +2020,8,6,1,New South Wales,153.532807,-28.681229 +2020,8,18,1,New South Wales,153.461934,-28.650627 +2020,8,31,1,New South Wales,153.46,-28.753 +2020,5,21,1,New South Wales,153.49471,-28.69061 +2020,11,1,1,New South Wales,153.615,-28.663 +2020,12,9,1,New South Wales,153.615,-28.661 +2020,2,21,1,New South Wales,153.537089,-28.620414 +2020,9,8,1,New South Wales,153.507,-28.616 +2020,3,3,1,New South Wales,153.629,-28.638 +2020,6,23,1,New South Wales,153.51074,-28.667061 +2020,6,6,1,New South Wales,153.613372,-28.682634 +2020,7,30,1,New South Wales,153.480957,-28.703622 +2020,3,4,1,New South Wales,153.474,-28.704 +2020,9,5,1,New South Wales,153.462,-28.651 +2020,10,19,1,New South Wales,153.434,-28.575 +2021,1,25,1,New South Wales,153.61,-28.661 +2020,10,17,1,New South Wales,153.551,-28.647 +2020,6,14,1,New South Wales,153.509709,-28.603818 +2020,7,19,1,New South Wales,153.468928,-28.673649 +2020,9,19,1,New South Wales,153.515008,-28.687381 +2020,1,12,3,Queensland,153.22441,-27.500774 +2020,8,31,1,New South Wales,152.499,-28.705 +2020,3,4,1,New South Wales,153.517009,-28.691444 +2020,11,21,1,New South Wales,153.611,-28.683 +2020,7,30,1,New South Wales,153.397508,-28.560685 +2020,3,1,1,New South Wales,153.609847,-28.661172 +2020,6,30,1,New South Wales,153.51074,-28.667061 +2020,8,18,1,New South Wales,153.549427,-28.569742 +2020,4,24,1,New South Wales,153.434038,-28.732183 +2020,10,28,1,New South Wales,153.397,-28.561 +2020,9,28,1,New South Wales,153.515584,-28.684936 +2021,1,10,1,New South Wales,153.636,-28.636 +2020,8,6,1,New South Wales,153.523553,-28.669701 +2020,4,9,1,New South Wales,153.489454,-28.683227 +2020,8,6,1,New South Wales,153.523735,-28.670918 +2020,9,25,1,New South Wales,153.496,-28.694 +2020,3,21,1,New South Wales,153.43429,-28.731887 +2021,8,26,3,Queensland,153.250069,-27.512205 +2020,8,27,1,New South Wales,153.516301,-28.688361 +2021,1,24,1,New South Wales,153.608,-28.676 +2020,7,27,1,New South Wales,153.559376,-28.65693 +2021,1,12,1,New South Wales,153.607,-28.691 +2020,10,7,1,New South Wales,153.452,-28.59 +2020,10,13,1,New South Wales,153.45,-28.551 +2020,3,3,1,New South Wales,153.513323,-28.688702 +2020,5,27,1,New South Wales,153.462163,-28.650214 +2020,4,28,1,New South Wales,153.497742,-28.704546 +2021,1,30,1,New South Wales,153.515,-28.685 +2020,8,13,1,New South Wales,153.429,-28.573 +2020,5,3,1,New South Wales,153.473012,-28.705548 +2020,7,12,1,New South Wales,153.554,-28.571 +2020,7,26,1,New South Wales,153.497,-28.685 +2023,7,9,3,Queensland,153.224076,-27.500364 +2020,8,24,1,New South Wales,153.490609,-28.655332 +2020,9,28,1,New South Wales,153.520752,-28.686298 +2020,8,21,1,New South Wales,153.592405,-28.63556 +2020,11,25,1,New South Wales,153.489,-28.673 +2020,7,12,1,New South Wales,153.553703,-28.570626 +2020,2,18,1,New South Wales,153.42537,-28.57351 +2020,1,15,3,Queensland,153.257915,-27.499968 +2020,7,20,1,New South Wales,153.561099,-28.703206 +2020,12,29,1,New South Wales,153.61,-28.662 +2020,2,27,1,New South Wales,153.434806,-28.72789 +2020,6,13,1,New South Wales,153.515308,-28.592667 +2020,2,5,1,New South Wales,153.427304,-28.628296 +2020,1,25,1,New South Wales,153.515119,-28.571967 +2020,4,15,1,New South Wales,153.519044,-28.684774 +2020,11,16,1,New South Wales,153.615,-28.663 +2020,5,6,1,New South Wales,153.511009,-28.580327 +2020,10,1,1,New South Wales,153.446,-28.589 +2020,9,25,1,New South Wales,153.495,-28.657 +2021,1,16,1,New South Wales,153.608,-28.664 +2020,3,26,1,New South Wales,153.611,-28.684 +2021,1,27,1,New South Wales,153.608,-28.686 +2020,9,1,1,New South Wales,153.517,-28.692 +2020,6,2,1,New South Wales,153.469474,-28.557779 +2020,5,6,1,New South Wales,153.511108,-28.580273 +2020,7,11,1,New South Wales,153.609847,-28.661172 +2020,12,18,3,New South Wales,153.560784,-28.389253 +2020,6,17,1,New South Wales,153.610954,-28.660685 +2020,3,3,1,New South Wales,153.514,-28.687 +2024,8,24,3,New South Wales,153.560256,-28.287173 +2020,8,18,1,New South Wales,153.387981,-28.653614 +2020,12,18,3,New South Wales,153.560285,-28.389285 +2021,3,8,3,New South Wales,153.565757,-28.380154 +2020,12,18,3,New South Wales,153.56106,-28.389187 +2020,9,25,1,New South Wales,153.523046,-28.711473 +2020,9,27,3,New South Wales,153.555869,-28.399144 +2020,4,15,1,New South Wales,153.519044,-28.684774 +2020,3,4,1,New South Wales,153.47372,-28.705379 +2020,8,11,1,New South Wales,153.462655,-28.649473 +2020,9,27,1,New South Wales,153.43881,-28.690986 +2020,12,11,3,Queensland,152.546448,-27.452332 +2020,4,9,1,New South Wales,153.489454,-28.683227 +2020,9,26,1,New South Wales,153.469,-28.558 +2020,4,4,1,New South Wales,153.511749,-28.575818 +2020,4,28,1,New South Wales,153.399097,-28.618779 +2020,6,8,1,Queensland,153.25018,-27.94524 +2022,11,9,1,Queensland,153.36164,-27.9388 +2023,8,24,1,Queensland,153.41358,-28.1729 +2021,9,28,1,Queensland,153.35786,-27.8455 +2023,7,20,1,Queensland,153.37254,-27.91345 +2023,11,3,1,Queensland,153.3906,-28.10482 +2024,9,11,3,New South Wales,150.818197,-34.107829 +2022,12,9,1,Queensland,153.38403,-27.92163 +2021,8,15,1,Queensland,153.45858,-28.13865 +2023,11,14,1,Queensland,153.41358,-28.1729 +2023,8,28,1,Queensland,153.43924,-28.18098 +2020,10,23,1,Queensland,153.4478,-28.09306 +2020,12,18,1,Queensland,153.44188,-28.15658 +2024,9,22,3,New South Wales,151.783851,-32.654583 +2021,7,28,1,Queensland,153.32225,-27.90565 +2021,11,16,1,Queensland,153.44682,-28.15373 +2021,10,9,1,Queensland,153.44824,-28.13205 +2020,8,20,1,Queensland,153.23237,-27.97681 +2020,1,12,1,Queensland,153.31347,-27.83645 +2024,9,25,3,New South Wales,153.281848,-28.700834 +2023,2,26,1,Queensland,153.45138,-28.09988 +2022,11,28,1,Queensland,153.4581,-28.14691 +2023,7,9,1,Queensland,153.45096,-28.09126 +2020,1,20,1,Queensland,153.44501,-28.15635 +2022,11,5,1,Queensland,153.31369,-27.82252 +2021,6,29,1,Queensland,153.3667,-27.94138 +2022,6,10,1,Queensland,153.36284,-27.9338 +2022,10,16,1,Queensland,153.3151,-28.0526 +2020,11,18,1,Queensland,153.30278,-27.99361 +2020,9,13,1,Queensland,153.27948,-27.97746 +2020,10,31,1,Queensland,153.31718,-28.0203 +2023,9,2,1,Queensland,153.3518,-28.12957 +2021,6,3,1,Queensland,153.379,-27.94847 +2021,1,22,1,Queensland,153.37116,-28.11049 +2020,8,15,1,Queensland,153.35794,-28.10913 +2020,1,3,1,Queensland,153.44244,-28.14341 +2023,8,7,1,Queensland,153.37895,-27.92438 +2023,10,15,1,Queensland,153.45095,-28.09276 +2023,10,28,1,Queensland,153.38797,-27.92223 +2024,9,27,3,New South Wales,146.595594,-34.773481 +2022,4,22,1,Queensland,153.33649,-27.91354 +2023,1,18,1,Queensland,153.45624,-28.09452 +2022,9,15,1,Queensland,153.38301,-27.9518 +2023,9,6,1,Queensland,153.36376,-27.94078 +2023,5,20,1,Queensland,153.35724,-27.95397 +2020,6,19,1,Queensland,153.28072,-27.91669 +2023,6,29,1,Queensland,153.4547,-28.09374 +2021,5,27,1,Queensland,153.2985,-27.83484 +2023,6,16,1,Queensland,153.35907,-27.94414 +2021,12,1,1,Queensland,153.37843,-27.95007 +2023,9,14,1,Queensland,153.35408,-27.92458 +2023,9,16,1,Queensland,153.36741,-27.8373 +2021,1,7,1,Queensland,153.32893,-27.89083 +2022,8,27,1,Queensland,153.33421,-27.88961 +2021,2,10,1,Queensland,153.32882,-27.98114 +2023,6,3,1,Queensland,153.36201,-27.93228 +2020,1,10,1,Queensland,153.42004,-28.17239 +2023,10,8,1,Queensland,153.45801,-28.15173 +2021,7,21,1,Queensland,153.45842,-28.15651 +2021,2,8,1,Queensland,153.37886,-27.82303 +2021,8,25,1,Queensland,153.44881,-28.09224 +2020,11,13,1,Queensland,153.24984,-27.94529 +2022,5,6,1,Queensland,153.32745,-27.88754 +2020,4,12,1,Queensland,153.41985,-28.17192 +2023,2,16,1,Queensland,153.37321,-28.11978 +2022,9,14,1,Queensland,153.41684,-28.14475 +2023,2,13,1,Queensland,153.4485,-28.09753 +2020,5,29,1,Queensland,153.43018,-28.12186 +2020,9,25,1,Queensland,153.45136,-28.14145 +2020,11,15,1,Queensland,153.23105,-27.97756 +2022,2,13,1,Queensland,153.41684,-28.14475 +2020,11,11,1,Queensland,153.23213,-27.97678 +2023,10,22,1,Queensland,153.27141,-27.81168 +2023,9,17,1,Queensland,153.35761,-27.95648 +2022,10,19,1,Queensland,153.44833,-28.14119 +2022,11,4,1,Queensland,153.36459,-27.92876 +2022,6,29,1,Queensland,153.36625,-27.93641 +2021,12,25,1,Queensland,153.39297,-27.94401 +2020,9,22,1,Queensland,153.38297,-27.94867 +2023,10,13,1,Queensland,153.43425,-28.14003 +2022,9,17,1,Queensland,153.41027,-28.14513 +2023,11,12,1,Queensland,153.36651,-27.93037 +2020,10,28,1,Queensland,153.32947,-27.8906 +2021,1,11,1,Queensland,153.38697,-27.94242 +2023,9,17,1,Queensland,153.36855,-28.09108 +2023,6,28,1,Queensland,153.4547,-28.09374 +2023,10,20,1,Queensland,153.35641,-27.93914 +2023,9,28,1,Queensland,153.35347,-28.08102 +2020,1,18,1,Queensland,153.20037,-27.9521 +2021,4,20,1,Queensland,153.45642,-28.0946 +2024,9,25,3,New South Wales,153.277428,-28.59695 +2022,3,23,1,Queensland,153.30492,-28.00822 +2021,12,1,1,Queensland,153.31042,-28.09885 +2023,2,3,1,Queensland,153.43939,-28.14281 +2023,7,18,1,Queensland,153.36146,-27.93031 +2020,12,12,1,Queensland,153.23214,-27.97718 +2021,1,28,1,Queensland,153.44676,-28.09353 +2021,9,19,2,Victoria,143.96309,-38.56543 +2021,11,10,1,Queensland,153.40825,-28.11806 +2020,11,3,1,Queensland,153.32919,-27.89077 +2022,1,16,1,Queensland,153.4422,-28.14344 +2022,8,22,1,Queensland,153.44294,-28.11454 +2021,11,19,1,Queensland,153.43508,-28.14484 +2020,10,8,1,Queensland,153.35944,-27.81333 +2020,4,15,1,Queensland,153.34392,-27.95704 +2023,5,17,1,Queensland,153.33792,-28.04836 +2020,11,28,1,Queensland,153.32831,-27.90269 +2023,10,30,1,Queensland,153.36205,-27.93326 +2020,2,13,2,Victoria,144.30109,-37.8004 +2022,9,14,1,Queensland,153.41008,-28.14197 +2021,9,24,1,Queensland,153.35785,-27.95762 +2020,1,25,1,Queensland,153.45492,-28.14775 +2023,6,30,1,Queensland,153.45925,-28.15054 +2023,7,5,1,Queensland,153.3556,-28.1147 +2020,7,18,1,Queensland,153.40634,-28.17065 +2021,7,16,1,Queensland,153.44968,-28.10065 +2021,11,27,1,Queensland,153.32277,-27.98518 +2022,4,1,1,Queensland,153.33469,-28.0349 +2022,10,14,1,Queensland,153.30125,-27.94657 +2023,4,1,1,Queensland,153.42763,-28.1183 +2021,3,12,1,Queensland,153.44162,-28.16174 +2023,9,24,1,Queensland,153.40717,-28.15788 +2021,9,6,1,Queensland,153.24633,-27.92608 +2023,1,14,1,Queensland,153.46179,-28.15415 +2021,11,24,2,Victoria,144.28343,-38.09929 +2020,1,11,1,Queensland,153.2246,-27.9727 +2023,6,9,1,Queensland,153.35769,-27.94104 +2023,1,19,1,Queensland,153.32951,-27.78936 +2022,11,19,1,Queensland,153.35641,-27.93914 +2021,4,18,2,Victoria,144.43194,-37.93278 +2023,8,20,1,Queensland,153.32276,-27.89826 +2020,5,9,1,Queensland,153.44069,-28.10628 +2023,9,23,1,Queensland,153.33984,-28.04147 +2023,4,27,1,Queensland,153.45258,-28.09215 +2021,2,12,1,Queensland,153.36818,-27.92918 +2023,9,10,1,Queensland,153.36335,-27.93507 +2021,9,17,1,Queensland,153.25707,-27.78611 +2021,12,30,2,Victoria,144.44001,-37.4745 +2023,7,2,1,Queensland,153.32673,-27.90635 +2020,8,1,1,Queensland,153.44598,-28.14191 +2020,6,24,2,Victoria,144.27215,-37.7679 +2020,9,19,1,Queensland,153.43931,-28.13823 +2022,11,18,1,Queensland,153.35724,-27.94994 +2021,10,2,1,Queensland,153.45,-28.10161 +2022,11,27,1,Queensland,153.31556,-28.05264 +2023,9,19,1,Queensland,153.33543,-27.8898 +2021,4,28,1,Queensland,153.41448,-28.14508 +2020,6,4,2,Victoria,144.27689,-37.76896 +2020,2,4,1,Queensland,153.45011,-28.14263 +2020,6,24,2,Victoria,145.23065,-38.1986 +2023,8,19,1,Queensland,153.36297,-27.93399 +2021,7,10,1,Queensland,153.32885,-27.89082 +2022,9,10,1,Queensland,153.35129,-28.1362 +2021,9,18,1,Queensland,153.43257,-28.13749 +2020,5,4,2,Victoria,145.88373,-36.8805 +2023,3,10,1,Queensland,153.44414,-28.10032 +2023,9,6,1,Queensland,153.36206,-27.94054 +2020,2,9,1,Queensland,153.44271,-28.12904 +2021,2,2,2,Victoria,145.9746,-37.40846 +2023,2,16,1,Queensland,153.44413,-28.09894 +2022,10,17,1,Queensland,153.31454,-28.05284 +2020,10,10,1,Queensland,153.38932,-28.13654 +2023,7,26,1,Queensland,153.26308,-27.93726 +2021,4,10,1,Queensland,153.36545,-27.91428 +2023,10,11,1,Queensland,153.2277,-27.88061 +2023,12,7,1,Queensland,153.32476,-27.84659 +2020,11,4,1,Queensland,153.42661,-28.17239 +2022,12,13,1,Queensland,153.45563,-28.09583 +2022,11,11,1,Queensland,153.36036,-27.93605 +2022,7,21,1,Queensland,153.28894,-28.00266 +2022,11,29,1,Queensland,153.3567,-27.93735 +2022,10,12,1,Queensland,153.44173,-28.14379 +2020,11,5,1,Queensland,153.23237,-27.97681 +2020,9,6,1,Queensland,153.30665,-28.03121 +2021,10,8,1,Queensland,153.38837,-28.11427 +2021,9,2,1,Queensland,153.43696,-28.14211 +2023,7,10,1,Queensland,153.36646,-27.94588 +2023,9,7,1,Queensland,153.40699,-28.17835 +2023,10,3,1,Queensland,153.36191,-27.93229 +2023,6,1,1,Queensland,153.37608,-27.95767 +2022,4,15,1,Queensland,153.47834,-28.15329 +2023,11,25,1,Queensland,153.36283,-27.93379 +2021,8,12,1,Queensland,153.37605,-27.95737 +2020,11,2,2,Victoria,148.22037,-37.17586 +2021,8,6,1,Queensland,153.44573,-28.09629 +2022,10,18,1,Queensland,153.35641,-27.93914 +2021,10,2,1,Queensland,153.44079,-28.10657 +2023,7,13,1,Queensland,153.44857,-28.09754 +2021,12,30,1,Queensland,153.45666,-28.13161 +2020,8,12,1,Queensland,153.44765,-28.13028 +2023,9,26,1,Queensland,153.35641,-27.93914 +2020,9,10,1,Queensland,153.44807,-28.09335 +2021,7,30,1,Queensland,153.28764,-28.00836 +2021,5,14,1,Queensland,153.40521,-28.13957 +2023,10,10,1,Queensland,153.35641,-27.93914 +2020,9,7,1,Queensland,153.44764,-28.1298 +2022,9,1,1,Queensland,153.39023,-28.19386 +2022,8,14,1,Queensland,153.42858,-28.15359 +2020,9,18,1,Queensland,153.44474,-28.09317 +2021,9,16,1,Queensland,153.32677,-27.90528 +2023,4,7,1,Queensland,153.394,-28.11841 +2023,11,9,1,Queensland,153.42981,-28.15123 +2020,1,11,1,Queensland,153.31093,-28.0205 +2020,9,13,1,Queensland,153.32938,-27.89043 +2021,12,21,2,Victoria,143.95905,-38.54894 +2020,3,27,2,Victoria,145.84446,-38.39953 +2021,4,6,1,Queensland,153.33031,-27.84066 +2023,1,24,1,Queensland,153.32991,-27.91376 +2022,12,19,1,Queensland,153.38665,-27.91929 +2023,6,13,1,Queensland,153.36232,-27.92982 +2020,12,30,1,Queensland,153.2323,-27.97669 +2021,6,8,1,Queensland,153.42975,-28.10867 +2022,11,22,1,Queensland,153.32647,-27.89901 +2022,5,31,1,Queensland,153.26243,-28.13882 +2020,10,17,1,Queensland,153.37073,-28.17978 +2023,11,12,1,Queensland,153.45274,-28.09519 +2023,12,5,1,Queensland,153.27646,-27.95675 +2021,4,17,1,Queensland,153.45802,-28.09371 +2023,4,5,1,Queensland,153.36087,-27.93261 +2021,10,30,1,Queensland,153.45563,-28.14899 +2020,10,9,1,Queensland,153.35353,-28.11488 +2020,1,17,1,Queensland,153.23234,-27.97684 +2020,1,21,2,Victoria,145.53838,-37.44442 +2020,8,30,1,Queensland,153.32773,-28.01261 +2021,9,12,1,Queensland,153.38186,-27.95417 +2020,11,30,1,Queensland,153.41656,-28.14383 +2022,12,19,1,Queensland,153.2971,-27.94054 +2021,11,3,1,Queensland,153.25013,-27.94517 +2023,5,1,1,Queensland,153.35908,-27.93322 +2020,1,15,1,Queensland,153.45382,-28.13327 +2020,3,31,2,Victoria,145.20664,-37.15096 +2020,8,1,1,Queensland,153.44411,-28.14139 +2020,1,15,1,Queensland,153.45671,-28.14264 +2023,12,9,1,Queensland,153.36173,-27.94308 +2023,9,17,1,Queensland,153.29924,-27.8994 +2021,8,16,1,Queensland,153.37869,-27.94975 +2021,9,13,1,Queensland,153.44685,-28.09631 +2022,7,8,1,Queensland,153.31543,-28.05194 +2022,11,5,1,Queensland,153.32548,-27.81812 +2020,8,6,1,Queensland,153.23243,-27.97696 +2023,11,2,1,Queensland,153.36204,-27.93345 +2020,3,30,2,Victoria,145.45096,-37.02887 +2022,8,10,1,Queensland,153.33165,-27.92186 +2020,10,4,1,Queensland,153.25031,-27.94543 +2023,12,5,2,Victoria,143.25603,-37.07894 +2020,8,18,2,Victoria,143.9809,-38.54654 +2021,4,17,1,Queensland,153.35756,-27.91746 +2020,8,19,1,Queensland,153.23213,-27.97714 +2021,6,10,1,Queensland,153.41275,-28.14422 +2023,3,26,1,Queensland,153.36705,-27.88047 +2023,8,20,1,Queensland,153.32343,-27.89017 +2020,12,22,1,Queensland,153.43814,-28.15664 +2022,11,14,2,Victoria,147.27506,-38.21961 +2020,8,13,1,Queensland,153.23213,-27.97714 +2023,4,7,1,Queensland,153.36313,-27.93274 +2022,8,9,1,Queensland,153.36083,-27.94023 +2020,7,6,1,Queensland,153.44647,-28.14034 +2023,4,8,1,Queensland,153.32131,-28.00349 +2023,10,4,1,Queensland,153.24751,-27.95895 +2023,7,20,1,Queensland,153.37219,-27.91216 +2022,6,1,1,Queensland,153.44154,-28.14926 +2023,12,3,1,Queensland,153.40743,-28.15723 +2023,6,27,1,Queensland,153.34432,-27.97687 +2023,10,3,1,Queensland,153.36779,-27.92954 +2022,8,26,1,Queensland,153.36036,-27.93605 +2020,11,22,1,Queensland,153.30539,-27.97588 +2023,7,19,1,Queensland,153.36612,-27.92896 +2021,11,23,1,Queensland,153.43564,-28.10715 +2021,7,7,1,Queensland,153.41067,-28.16542 +2021,7,6,2,Victoria,146.84502,-38.45333 +2020,11,2,1,Queensland,153.45892,-28.15414 +2022,9,13,1,Queensland,153.37608,-27.95767 +2021,8,24,1,Queensland,153.33384,-27.8914 +2022,1,3,2,Victoria,143.97639,-38.54833 +2023,9,10,1,Queensland,153.36297,-27.93399 +2021,9,11,1,Queensland,153.34699,-28.05669 +2023,3,30,1,Queensland,153.35722,-27.94998 +2022,7,24,1,Queensland,153.37105,-27.90531 +2022,1,25,1,Queensland,153.35743,-28.0993 +2020,5,1,1,Queensland,153.31217,-28.05631 +2023,6,10,1,Queensland,153.45421,-28.14733 +2021,3,3,1,Queensland,153.32912,-27.89065 +2023,11,18,1,Queensland,153.45246,-28.08866 +2020,2,23,1,Queensland,153.45264,-28.09616 +2022,10,3,1,Queensland,153.42494,-28.14647 +2020,10,15,2,Victoria,145.20702,-37.14843 +2020,10,30,1,Queensland,153.32895,-27.8953 +2020,8,8,1,Queensland,153.23228,-27.97664 +2023,10,30,1,Queensland,153.39951,-28.12589 +2023,6,25,1,Queensland,153.32756,-27.90551 +2021,5,29,1,Queensland,153.3747,-27.91642 +2022,8,2,1,Queensland,153.4516,-28.1417 +2023,5,22,1,Queensland,153.4485,-28.09754 +2022,5,22,1,Queensland,153.46384,-28.15787 +2022,6,4,2,Victoria,148.28953,-37.27897 +2022,1,28,1,Queensland,153.32912,-27.89065 +2023,10,14,1,Queensland,153.34121,-27.85162 +2023,4,10,1,Queensland,153.37817,-28.10509 +2023,4,14,1,Queensland,153.45196,-28.13866 +2020,7,8,2,New South Wales,153.51,-28.692 +2022,12,26,1,Queensland,153.36036,-27.93605 +2023,6,12,1,Queensland,153.45461,-28.14747 +2022,5,1,1,Queensland,153.33186,-27.91546 +2023,8,6,1,Queensland,153.46003,-28.09135 +2021,1,3,2,New South Wales,153.417,-28.735 +2022,3,20,1,Queensland,153.36204,-27.93223 +2023,7,12,1,Queensland,153.35882,-27.93299 +2022,10,13,1,Queensland,153.44864,-28.15375 +2022,8,27,1,Queensland,153.36036,-27.93605 +2020,3,31,1,Queensland,153.23265,-27.97694 +2023,10,30,1,Queensland,153.45096,-28.09126 +2021,9,26,1,Queensland,153.39294,-27.94829 +2020,11,26,2,New South Wales,153.488,-28.683 +2020,11,11,1,Queensland,153.44127,-28.1072 +2022,9,6,1,Queensland,153.29973,-28.00818 +2023,1,9,1,Queensland,153.44678,-28.15368 +2020,10,30,1,Queensland,153.32899,-27.89085 +2020,8,10,1,Queensland,153.19988,-27.75838 +2022,11,11,1,Queensland,153.35268,-27.95052 +2020,1,9,1,Queensland,153.43906,-28.15938 +2020,8,28,1,Queensland,153.34013,-27.91639 +2020,9,29,1,Queensland,153.26312,-27.943 +2023,11,24,1,Queensland,153.37441,-27.93165 +2022,6,19,1,Queensland,153.38451,-27.92048 +2023,8,20,1,Queensland,153.45258,-28.09215 +2023,6,14,1,Queensland,153.44558,-28.1566 +2023,3,1,1,Queensland,153.4125,-28.13778 +2022,9,8,1,Queensland,153.36492,-27.93812 +2022,8,18,1,Queensland,153.31482,-28.05157 +2023,8,10,1,Queensland,153.28633,-28.00607 +2022,8,12,1,Queensland,153.38246,-27.95489 +2023,4,16,1,Queensland,153.36695,-27.94281 +2021,1,12,1,Queensland,153.232,-27.97704 +2020,8,3,1,Queensland,153.44948,-28.10015 +2022,11,13,1,Queensland,153.38479,-27.92206 +2023,11,26,1,Queensland,153.35623,-27.95071 +2021,5,9,1,Queensland,153.4563,-28.14218 +2022,8,21,1,Queensland,153.37504,-28.10168 +2020,9,25,1,Queensland,153.38585,-27.91944 +2020,9,8,1,Queensland,153.40645,-28.15002 +2020,7,26,1,Queensland,153.44976,-28.0939 +2021,8,7,1,Queensland,153.45666,-28.13161 +2020,9,3,1,Queensland,153.44141,-28.10776 +2023,9,18,1,Queensland,153.36297,-27.93399 +2020,1,2,1,Queensland,153.36162,-28.10574 +2022,9,15,1,Queensland,153.36036,-27.93605 +2022,8,24,1,Queensland,153.2669,-27.80436 +2020,6,24,1,Queensland,153.3292,-27.89087 +2023,4,9,1,Queensland,153.36136,-27.93222 +2023,11,4,1,Queensland,153.26504,-27.84465 +2022,9,8,1,Queensland,153.45588,-28.13252 +2021,6,24,1,Queensland,153.45887,-28.12747 +2022,12,22,1,Queensland,153.44418,-28.12725 +2022,3,7,1,Queensland,153.41959,-28.14582 +2021,2,25,2,New South Wales,153.438,-28.696 +2020,1,6,1,Queensland,153.22484,-27.97274 +2020,10,16,1,Queensland,153.35671,-27.93922 +2022,7,12,1,Queensland,153.45036,-28.1614 +2021,4,14,1,Queensland,153.25638,-27.87723 +2022,9,24,1,Queensland,153.37116,-28.11049 +2022,1,24,1,Queensland,153.11327,-27.78103 +2022,9,27,1,Queensland,153.38432,-27.92161 +2020,8,11,2,New South Wales,153.544,-28.724 +2023,6,23,1,Queensland,153.43239,-28.16623 +2020,8,22,2,New South Wales,153.592409,-28.635669 +2022,6,12,1,Queensland,153.44871,-28.0984 +2023,9,16,1,Queensland,153.35761,-27.95648 +2020,8,20,1,Queensland,153.1797,-27.82659 +2020,12,29,1,Queensland,153.32893,-27.89083 +2022,10,6,1,Queensland,153.42665,-28.11894 +2021,5,9,1,Queensland,153.33766,-28.04833 +2023,10,11,1,Queensland,153.36576,-27.93132 +2020,11,14,1,Queensland,153.2789,-28.03943 +2020,9,26,1,Queensland,153.45557,-28.13755 +2021,8,12,1,Queensland,153.42763,-28.1183 +2020,12,31,1,Queensland,153.17721,-27.8443 +2020,11,1,1,Queensland,153.43785,-28.13884 +2023,2,15,1,Queensland,153.4412,-28.15449 +2023,7,3,1,Queensland,153.3781,-27.94963 +2022,8,16,1,Queensland,153.3924,-27.96163 +2020,10,1,1,Queensland,153.3927,-28.1112 +2022,10,17,1,Queensland,153.3837,-28.10966 +2020,9,19,1,Queensland,153.4288,-28.12374 +2020,9,7,1,Queensland,153.23236,-27.97723 +2023,5,6,1,Queensland,153.35882,-27.93351 +2020,10,1,1,Queensland,153.42641,-28.17175 +2023,10,13,1,Queensland,153.45307,-28.09602 +2023,7,30,1,Queensland,153.35777,-27.94059 +2020,12,2,1,Queensland,153.41632,-28.1446 +2023,5,3,1,Queensland,153.35935,-27.93294 +2021,4,22,1,Queensland,153.41899,-28.15105 +2021,2,10,1,Queensland,153.41737,-28.17272 +2023,12,8,1,Queensland,153.37893,-27.94678 +2023,5,7,1,Queensland,153.35894,-27.93323 +2021,1,23,1,Queensland,153.32893,-27.89083 +2020,8,24,1,Queensland,153.23208,-27.97716 +2021,8,30,1,Queensland,153.38173,-28.09445 +2020,8,6,1,Queensland,153.45761,-28.15191 +2023,4,24,1,Queensland,153.36294,-27.93386 +2020,8,30,2,New South Wales,153.523046,-28.711473 +2023,12,17,1,Queensland,153.39406,-28.11846 +2023,12,14,1,Queensland,153.42047,-28.15091 +2022,10,5,1,Queensland,153.32912,-27.89065 +2021,3,10,1,Queensland,153.45637,-28.15341 +2023,8,21,1,Queensland,153.36297,-27.93399 +2023,11,11,1,Queensland,153.38873,-27.89279 +2020,2,11,1,Queensland,153.45273,-28.09629 +2022,7,20,1,Queensland,153.32912,-27.89065 +2020,8,22,2,New South Wales,153.592,-28.636 +2020,8,5,1,Queensland,153.23213,-27.97714 +2022,12,21,1,Queensland,153.3265,-27.90659 +2020,10,16,1,Queensland,153.25677,-28.041 +2023,9,2,1,Queensland,153.29924,-27.8994 +2022,12,3,1,Queensland,153.32912,-27.89065 +2023,2,26,1,Queensland,153.36297,-27.934 +2023,8,25,1,Queensland,153.27663,-27.9988 +2022,9,15,1,Queensland,153.44526,-28.0958 +2023,7,1,1,Queensland,153.4108,-28.15066 +2022,9,15,1,Queensland,153.38275,-27.9518 +2020,9,8,1,Queensland,153.4589,-28.1274 +2022,10,23,1,Queensland,153.3729,-28.13271 +2021,7,16,1,Queensland,153.39912,-28.1425 +2023,9,17,1,Queensland,153.44818,-28.10006 +2023,9,13,1,Queensland,153.42763,-28.1183 +2022,12,16,1,Queensland,153.40224,-27.9273 +2020,10,15,1,Queensland,153.32893,-27.89089 +2020,12,19,1,Queensland,153.41035,-28.11724 +2022,11,1,1,Queensland,153.35451,-28.09323 +2020,11,18,1,Queensland,153.4563,-28.14207 +2023,11,3,1,Queensland,153.38426,-27.92171 +2020,6,6,1,Queensland,153.23213,-27.97714 +2020,9,28,2,New South Wales,153.516093,-28.690229 +2023,1,13,1,Queensland,153.36036,-27.93605 +2020,4,1,1,Queensland,153.37233,-27.90386 +2021,10,9,1,Queensland,153.32912,-27.89065 +2023,7,21,1,Queensland,153.41242,-28.15054 +2022,10,13,1,Queensland,153.36036,-27.93605 +2021,4,26,1,Queensland,153.32912,-27.89065 +2022,4,25,1,Queensland,153.32912,-27.89065 +2020,10,13,1,Queensland,153.23,-27.88 +2023,8,30,1,Queensland,153.36036,-27.93605 +2022,9,21,1,Queensland,153.32912,-27.89065 +2021,10,15,1,Queensland,153.44079,-28.15006 +2020,8,18,1,Queensland,153.23208,-27.97716 +2020,8,28,1,Queensland,153.23208,-27.97716 +2020,10,17,1,Queensland,153.36404,-27.95437 +2023,7,13,1,Queensland,153.35864,-27.93322 +2020,12,25,1,Queensland,153.41997,-28.15375 +2022,5,10,1,Queensland,153.37308,-28.10152 +2022,3,2,1,Queensland,153.32912,-27.89065 +2021,8,7,1,Queensland,153.38855,-27.9222 +2023,5,6,1,Queensland,153.30193,-27.9471 +2021,11,23,1,Queensland,153.32912,-27.89065 +2023,8,17,1,Queensland,153.36297,-27.93399 +2022,11,11,1,Queensland,153.31494,-27.90276 +2020,7,25,1,Queensland,153.43866,-28.10438 +2020,1,15,1,Queensland,153.4494,-28.09985 +2023,4,16,1,Queensland,153.36529,-27.9441 +2023,10,18,1,Queensland,153.44932,-28.16252 +2021,11,1,1,Queensland,153.34154,-28.0891 +2021,9,6,1,Queensland,153.26375,-27.9086 +2021,1,4,1,Queensland,153.35031,-28.04426 +2020,12,14,1,Queensland,153.41452,-28.14426 +2021,3,29,1,Queensland,153.3795,-27.82213 +2021,7,28,1,Queensland,153.32912,-27.89065 +2022,7,27,1,Queensland,153.32912,-27.89065 +2022,11,30,1,Queensland,153.31225,-27.99417 +2022,10,25,1,Queensland,153.32912,-27.89065 +2020,3,17,1,Queensland,153.44671,-28.09288 +2023,10,27,1,Queensland,153.41881,-28.1493 +2022,5,20,1,Queensland,153.32912,-27.89065 +2020,7,10,1,Queensland,153.44682,-28.09297 +2022,11,10,1,Queensland,153.32912,-27.89065 +2023,1,6,1,Queensland,153.42744,-28.11837 +2020,8,28,1,Queensland,153.45286,-28.09397 +2021,9,20,1,Queensland,153.32912,-27.89065 +2022,11,27,1,Queensland,153.35774,-27.94046 +2020,10,14,1,Queensland,153.44172,-28.13246 +2020,9,25,1,Queensland,153.37053,-28.1784 +2020,7,8,1,Queensland,153.4121,-28.11216 +2020,2,15,1,Queensland,153.44827,-28.14153 +2021,8,14,1,Queensland,153.32912,-27.89065 +2023,9,23,1,Queensland,153.44693,-28.13724 +2020,9,14,2,New South Wales,153.607,-28.677 +2021,12,10,1,Queensland,153.27616,-27.933 +2023,2,9,1,Queensland,153.32382,-27.90446 +2021,9,9,1,Queensland,153.32912,-27.89065 +2020,7,26,2,New South Wales,153.409654,-28.66697 +2020,7,8,2,New South Wales,153.513824,-28.690259 +2023,10,11,1,Queensland,153.35641,-27.93914 +2022,9,24,1,Queensland,153.32912,-27.89065 +2023,8,28,1,Queensland,153.45007,-28.16295 +2023,10,19,1,Queensland,153.27663,-27.99879 +2021,8,23,1,Queensland,153.32912,-27.89065 +2020,10,8,1,Queensland,153.37814,-27.94972 +2020,10,31,2,New South Wales,153.509,-28.667 +2021,4,17,1,Queensland,153.44182,-28.10792 +2020,1,14,1,Queensland,153.44511,-28.13512 +2021,11,12,1,Queensland,153.32912,-27.89065 +2023,7,28,1,Queensland,153.3845,-27.91568 +2023,7,3,1,Queensland,153.29836,-27.99681 +2021,8,27,1,Queensland,153.35285,-27.96104 +2023,9,7,1,Queensland,153.45315,-28.09377 +2022,9,15,1,Queensland,153.38396,-28.10826 +2021,3,12,1,Queensland,153.44162,-28.16174 +2023,4,11,1,Queensland,153.32912,-27.89066 +2023,10,18,1,Queensland,153.35063,-27.94232 +2020,9,25,2,New South Wales,153.496,-28.694 +2022,12,11,1,Queensland,153.33469,-28.03414 +2022,6,30,1,Queensland,153.31534,-28.05254 +2020,9,25,2,New South Wales,153.514452,-28.687852 +2021,10,7,1,Queensland,153.43454,-28.14565 +2022,9,15,1,Queensland,153.17852,-27.72259 +2021,8,21,1,Queensland,153.44668,-28.09342 +2021,9,30,1,Queensland,153.40767,-28.11829 +2023,11,26,1,Queensland,153.26656,-28.15684 +2022,10,18,2,Queensland,153.37701,-27.94983 +2023,6,1,1,Queensland,153.45258,-28.09215 +2022,8,2,1,Queensland,153.3348,-27.85229 +2021,1,24,1,Queensland,153.23199,-27.97668 +2022,9,5,1,Queensland,153.32912,-27.89065 +2020,6,9,1,Queensland,153.44863,-28.09659 +2020,1,30,2,Queensland,153.23244,-27.97709 +2021,12,31,1,Queensland,153.33221,-27.91951 +2020,4,20,1,Queensland,153.45332,-28.14937 +2021,7,2,1,Queensland,153.35898,-27.93266 +2023,10,17,2,Queensland,153.33129,-27.90702 +2023,10,15,2,Queensland,153.51846,-28.16732 +2020,6,24,1,Queensland,153.18495,-27.80301 +2020,1,4,1,Queensland,153.3343,-27.90211 +2020,10,25,1,Queensland,153.34969,-27.94364 +2022,9,19,1,Queensland,153.43479,-28.14639 +2020,11,1,2,Queensland,153.44679,-28.13637 +2020,12,25,1,Queensland,153.23212,-27.97671 +2020,12,2,1,Queensland,153.3296,-27.8905 +2023,9,25,1,Queensland,153.362,-27.93208 +2020,5,7,1,Queensland,153.33592,-27.89977 +2023,6,1,1,Queensland,153.45159,-28.14178 +2020,11,10,2,Queensland,153.23179,-27.97716 +2020,10,22,1,Queensland,153.44827,-28.09564 +2022,12,14,1,Queensland,153.45113,-28.09963 +2023,4,13,1,Queensland,153.35641,-27.93914 +2021,8,1,1,Queensland,153.42917,-28.1713 +2020,1,6,1,Queensland,153.24183,-27.97865 +2023,11,16,1,Queensland,153.37937,-27.92444 +2023,3,3,1,Queensland,153.3625,-27.9335 +2020,1,5,1,Queensland,153.26515,-27.9141 +2021,12,9,1,Queensland,153.44221,-28.14344 +2023,1,15,1,Queensland,153.3847,-27.92286 +2021,8,20,2,Queensland,153.3254,-27.89417 +2020,8,18,1,Queensland,153.39282,-28.11443 +2021,7,4,1,Queensland,153.39686,-28.13868 +2023,10,3,1,Queensland,153.45187,-28.09208 +2023,4,13,1,Queensland,153.35641,-27.93914 +2021,9,5,1,Queensland,153.26375,-27.9086 +2023,11,13,1,Queensland,153.44966,-28.09881 +2020,8,3,1,Queensland,153.23208,-27.97716 +2022,7,14,1,Queensland,153.34124,-27.91916 +2022,9,13,1,Queensland,153.44996,-28.14799 +2020,11,22,1,Queensland,153.3287,-27.8908 +2022,8,1,1,Queensland,153.35825,-27.94037 +2020,12,19,1,Queensland,153.41626,-28.14476 +2023,9,1,1,Queensland,153.44438,-28.09448 +2023,12,16,1,Queensland,153.32912,-27.89066 +2021,1,6,1,Queensland,153.32554,-27.81834 +2023,10,15,1,Queensland,153.35381,-27.93491 +2023,10,1,1,Queensland,153.37368,-27.94498 +2022,6,5,1,Queensland,153.38076,-27.93981 +2020,9,16,1,Queensland,153.32926,-27.89073 +2022,5,8,1,Queensland,153.45266,-28.09469 +2020,8,6,1,Queensland,153.45347,-28.09237 +2022,4,4,1,Queensland,153.36226,-27.93294 +2020,8,28,2,Queensland,153.35667,-27.93917 +2022,5,28,1,Queensland,153.36188,-27.93202 +2023,2,9,1,Queensland,153.45037,-28.14905 +2023,9,17,2,Queensland,153.32276,-27.89826 +2020,7,4,1,Queensland,153.45287,-28.11771 +2021,4,11,1,Queensland,153.40435,-28.13412 +2021,9,5,1,Queensland,153.37498,-27.91366 +2021,7,10,1,Queensland,153.37483,-27.87788 +2021,9,24,1,Queensland,153.44653,-28.14043 +2021,1,10,1,Queensland,153.32893,-27.89083 +2020,11,18,1,Queensland,153.30278,-27.99361 +2020,12,8,1,Queensland,153.38625,-27.91729 +2022,4,18,2,Queensland,153.44699,-28.13578 +2020,7,20,1,Queensland,153.23208,-27.97716 +2021,6,4,1,Queensland,153.43236,-28.16536 +2022,12,5,1,Queensland,153.35647,-27.93742 +2020,1,15,1,Queensland,153.44929,-28.09917 +2021,3,26,1,Queensland,153.45949,-28.14835 +2022,1,18,1,Queensland,153.2709,-28.1496 +2023,5,17,1,Queensland,153.36396,-27.93762 +2021,5,10,1,Queensland,153.41756,-28.15271 +2022,12,22,1,Queensland,153.35847,-27.92534 +2022,8,5,1,Queensland,153.31154,-28.0156 +2022,8,17,1,Queensland,153.43366,-28.16871 +2023,11,12,1,Queensland,153.29647,-27.91708 +2022,10,31,1,Queensland,153.34365,-27.9054 +2021,6,8,1,Queensland,153.34029,-27.91545 +2022,11,23,1,Queensland,153.38526,-28.11069 +2022,7,4,1,Queensland,153.36308,-27.93374 +2020,11,25,1,Queensland,153.2321,-27.97717 +2021,4,12,1,Queensland,153.36086,-27.93262 +2021,1,14,2,Queensland,153.23163,-27.97732 +2020,7,7,1,Queensland,153.45754,-28.09904 +2021,11,13,1,Queensland,153.38959,-28.10609 +2021,9,17,1,Queensland,153.37545,-27.95733 +2023,6,19,1,Queensland,153.32875,-27.89041 +2022,3,30,1,Queensland,153.44518,-28.09512 +2023,9,9,1,Queensland,153.36297,-27.93399 +2022,9,27,1,Queensland,153.42467,-28.12324 +2023,1,25,1,Queensland,153.36301,-27.93399 +2021,1,1,1,Queensland,153.32893,-27.89083 +2020,5,24,1,Queensland,153.41864,-28.17244 +2023,1,12,1,Queensland,153.45331,-28.09382 +2021,3,11,1,Queensland,153.45678,-28.0946 +2021,4,20,1,Queensland,153.37896,-27.82299 +2022,3,20,1,Queensland,153.36204,-27.93223 +2021,8,12,1,Queensland,153.32912,-27.89065 +2022,11,22,1,Queensland,153.37969,-27.91168 +2022,5,24,1,Queensland,153.25157,-27.78825 +2021,2,9,1,Queensland,153.4516,-28.09952 +2023,7,9,1,Queensland,153.27554,-27.91164 +2023,8,13,1,Queensland,153.35654,-27.93578 +2021,9,16,1,Queensland,153.35647,-27.93738 +2022,1,24,1,Queensland,153.31489,-28.05246 +2023,9,16,1,Queensland,153.36659,-27.92919 +2020,12,8,1,Queensland,153.25973,-27.96183 +2021,10,7,2,Queensland,153.45034,-28.14406 +2023,1,11,1,Queensland,153.36689,-27.88066 +2023,7,23,1,Queensland,153.36036,-27.93605 +2020,9,29,1,Queensland,153.43985,-28.13751 +2020,9,29,1,Queensland,153.45116,-28.1002 +2023,1,10,2,Queensland,153.33959,-27.94432 +2021,9,22,1,Queensland,153.32678,-27.90388 +2021,8,3,1,Queensland,153.32938,-27.89044 +2020,10,19,1,Queensland,153.4527,-28.09587 +2022,10,11,1,Queensland,153.37432,-28.10212 +2023,11,9,1,Queensland,153.27827,-27.99765 +2022,9,15,1,Queensland,153.17852,-27.72259 +2020,8,11,1,Queensland,153.37186,-27.94479 +2022,1,24,1,Queensland,153.40615,-28.16988 +2023,11,24,1,Queensland,153.27663,-27.99879 +2020,10,8,1,Queensland,153.23137,-27.79644 +2023,9,16,2,Queensland,153.4516,-28.0915 +2022,12,15,1,Queensland,153.3593,-27.93111 +2023,10,30,1,Queensland,153.36021,-27.93644 +2022,11,3,1,Queensland,153.40568,-28.15073 +2021,9,17,1,Queensland,153.34054,-27.97696 +2022,4,25,1,Queensland,153.44846,-28.09752 +2023,6,15,1,Queensland,153.32912,-27.89066 +2020,11,17,1,Queensland,153.31501,-28.0135 +2023,10,1,1,Queensland,153.37864,-27.95215 +2023,11,30,1,Queensland,153.32912,-27.89066 +2021,1,23,1,Queensland,153.24278,-27.7588 +2021,10,5,1,Queensland,153.44301,-28.14405 +2023,11,15,1,Queensland,153.35767,-27.94113 +2023,6,16,1,Queensland,153.32912,-27.89066 +2022,5,2,1,Queensland,153.44778,-28.09659 +2023,8,3,1,Queensland,153.32912,-27.89066 +2020,9,23,1,Queensland,153.44935,-28.09543 +2023,8,14,1,Queensland,153.33755,-28.15675 +2021,5,12,1,Queensland,153.39192,-28.11375 +2020,9,29,1,Queensland,153.43921,-28.109 +2023,4,16,1,Queensland,153.45258,-28.09215 +2021,5,24,1,Queensland,153.45157,-28.1609 +2020,6,8,1,Queensland,153.406,-28.17066 +2023,11,12,1,Queensland,153.45198,-28.13876 +2023,4,16,1,Queensland,153.36375,-27.93359 +2020,8,25,1,Queensland,153.23215,-27.97727 +2020,7,22,1,Queensland,153.4485,-28.09658 +2022,8,22,1,Queensland,153.31622,-27.89589 +2022,11,11,1,Queensland,153.32912,-27.89065 +2023,7,10,1,Queensland,153.35915,-27.93366 +2021,1,5,2,Queensland,153.32853,-27.88404 +2020,7,16,1,Queensland,153.23232,-27.9772 +2023,3,16,1,Queensland,153.3025,-27.93533 +2023,2,22,1,Queensland,153.32912,-27.89066 +2021,7,28,1,Queensland,153.45081,-28.16152 +2022,4,5,1,Queensland,153.32912,-27.89065 +2021,12,30,1,Queensland,153.45666,-28.13161 +2020,3,24,1,Queensland,153.3954,-28.11497 +2023,9,22,1,Queensland,153.39142,-28.13365 +2021,8,24,1,Queensland,153.42779,-28.17266 +2023,10,6,1,Queensland,153.35341,-27.95034 +2020,9,24,1,Queensland,153.32894,-27.89069 +2021,10,31,1,Queensland,153.4237,-28.14205 +2021,8,1,1,Queensland,153.44892,-28.09392 +2023,6,19,1,Queensland,153.36543,-27.93422 +2020,3,4,1,Queensland,153.4347,-28.11915 +2023,10,18,1,Queensland,153.45266,-28.09505 +2023,6,15,1,Queensland,153.35931,-27.93383 +2023,10,4,1,Queensland,153.37074,-27.92999 +2021,5,11,1,Queensland,153.42882,-28.153 +2021,9,13,1,Queensland,153.32737,-27.85055 +2022,9,29,1,Queensland,153.35715,-27.94158 +2020,12,26,2,Queensland,153.32893,-27.89083 +2021,1,27,1,Queensland,153.4459,-28.09534 +2021,1,17,1,Queensland,153.30296,-28.00711 +2021,5,4,1,Queensland,153.27078,-28.14963 +2023,2,12,1,Queensland,153.39788,-28.11403 +2023,1,13,1,Queensland,153.35957,-27.93052 +2022,9,19,1,Queensland,153.43252,-28.16138 +2021,10,14,1,Queensland,153.37308,-28.10152 +2021,7,5,1,Queensland,153.36322,-27.83294 +2021,2,15,1,Queensland,153.44924,-28.0959 +2020,9,24,1,Queensland,153.40647,-28.14504 +2023,11,2,1,Queensland,153.27663,-27.99879 +2020,8,7,1,Queensland,153.45004,-28.14942 +2020,7,19,1,Queensland,153.23236,-27.97723 +2023,10,23,1,Queensland,153.27663,-27.99879 +2021,6,10,1,Queensland,153.43625,-28.16472 +2022,9,1,1,Queensland,153.38622,-27.94531 +2022,6,23,2,Queensland,153.34857,-27.84195 +2020,9,24,1,Queensland,153.31894,-28.09677 +2023,9,7,1,Queensland,153.27663,-27.99879 +2020,4,15,1,Queensland,153.45753,-28.13302 +2023,10,20,1,Queensland,153.388,-27.92198 +2023,9,15,1,Queensland,153.36648,-27.92932 +2023,10,12,2,Queensland,153.32276,-27.89826 +2023,3,16,1,Queensland,153.44934,-28.09741 +2023,11,2,1,Queensland,153.42843,-28.15723 +2021,8,28,1,Queensland,153.45549,-28.13969 +2022,9,3,1,Queensland,153.44849,-28.09754 +2020,3,13,1,Queensland,153.37935,-27.82215 +2021,8,2,1,Queensland,153.36409,-28.08836 +2022,7,3,1,Queensland,153.32912,-27.89065 +2023,12,16,1,Queensland,153.35305,-27.84091 +2020,10,21,1,Queensland,153.23208,-27.97716 +2021,7,13,1,Queensland,153.32944,-27.89057 +2023,7,14,2,Queensland,153.44779,-28.10167 +2020,10,18,1,Queensland,153.23279,-27.97698 +2021,9,27,2,Queensland,153.38711,-27.91517 +2021,1,11,1,Queensland,153.32893,-27.89083 +2022,9,15,1,Queensland,153.36275,-27.94024 +2023,11,16,1,Queensland,153.27074,-28.19898 +2022,9,15,2,Queensland,153.36036,-27.93605 +2023,2,27,1,Queensland,153.32912,-27.89066 +2020,6,24,1,Queensland,153.31693,-28.03325 +2020,4,5,1,Queensland,153.40471,-28.16766 +2020,6,28,2,Queensland,153.44855,-28.0966 +2023,5,30,2,Queensland,153.39602,-28.10008 +2022,8,3,1,Queensland,153.35883,-27.94253 +2023,6,17,1,Queensland,153.32912,-27.89066 +2023,8,25,1,Queensland,153.45793,-28.12792 +2023,4,2,1,Queensland,153.44912,-28.09877 +2023,6,25,1,Queensland,153.2571,-27.997 +2022,11,14,1,Queensland,153.35755,-27.94091 +2020,10,19,1,Queensland,153.24637,-27.99038 +2021,12,5,1,Queensland,153.36295,-27.9339 +2022,11,18,1,Queensland,153.45569,-28.09375 +2020,11,3,1,Queensland,153.26016,-27.99819 +2020,7,13,1,Queensland,153.31133,-28.02996 +2023,7,24,1,Queensland,153.36036,-27.93605 +2023,2,21,1,Queensland,153.35871,-27.93991 +2022,12,4,1,Queensland,153.36036,-27.93605 +2021,4,8,1,Queensland,153.38792,-28.11884 +2022,8,14,1,Queensland,153.36036,-27.93605 +2021,12,8,1,Queensland,153.44653,-28.14043 +2021,6,3,1,Queensland,153.3291,-27.9205 +2023,10,19,1,Queensland,153.35793,-27.94102 +2020,9,1,1,Queensland,153.4464,-28.14029 +2022,12,27,1,Queensland,153.32302,-27.89009 +2021,11,28,1,Queensland,153.16246,-27.94161 +2021,9,13,2,Queensland,153.37631,-27.94241 +2020,10,26,1,Queensland,153.3039,-27.9124 +2021,4,12,1,Queensland,153.4486,-28.09482 +2021,10,22,1,Queensland,153.28917,-27.91948 +2021,7,1,1,Queensland,153.45262,-28.09459 +2022,12,23,1,Queensland,153.30909,-27.83556 +2023,1,2,1,Queensland,153.45022,-28.14862 +2022,8,24,1,Queensland,153.36113,-27.87761 +2022,9,5,1,Queensland,153.37608,-27.95767 +2023,2,6,1,Queensland,153.25001,-27.9453 +2023,5,7,1,Queensland,153.36036,-27.93605 +2021,7,13,1,Queensland,153.45493,-28.09059 +2021,8,30,1,Queensland,153.45226,-28.09511 +2020,11,27,2,Queensland,153.32928,-27.89071 +2020,11,23,2,Queensland,153.43337,-28.13627 +2023,7,22,1,Queensland,153.45256,-28.09198 +2022,10,22,1,Queensland,153.27024,-27.96355 +2020,9,15,1,Queensland,153.32808,-27.91668 +2023,4,15,1,Queensland,153.45204,-28.13877 +2022,12,26,1,Queensland,153.31618,-28.00356 +2020,2,2,1,Queensland,153.36734,-27.88066 +2022,7,29,2,Queensland,153.3418,-27.9091 +2022,7,31,2,Queensland,153.37057,-27.83744 +2021,10,26,1,Queensland,153.33622,-27.85175 +2020,7,11,1,Queensland,153.23213,-27.97714 +2020,2,3,1,Queensland,153.32579,-27.81852 +2020,11,27,1,Queensland,153.41598,-28.13128 +2023,8,20,1,Queensland,153.45268,-28.09161 +2021,1,23,1,Queensland,153.23276,-27.97699 +2021,9,23,1,Queensland,153.44881,-28.16735 +2020,11,30,2,Queensland,153.32885,-27.89085 +2021,11,2,1,Queensland,153.32912,-27.89065 +2020,12,16,1,Queensland,153.4529,-28.09624 +2022,2,13,1,Queensland,153.44222,-28.14347 +2021,5,25,1,Queensland,153.32702,-27.91863 +2023,6,25,1,Queensland,153.23645,-27.86866 +2023,3,17,1,Queensland,153.36719,-27.94374 +2020,7,29,1,Queensland,153.44928,-28.09448 +2022,9,28,1,Queensland,153.44807,-28.10058 +2023,1,9,2,Queensland,153.36036,-27.93605 +2023,12,6,1,Queensland,153.32912,-27.89066 +2021,3,27,1,Queensland,153.43918,-28.15648 +2022,10,24,2,Queensland,153.36118,-27.93269 +2023,3,12,1,Queensland,153.32912,-27.89066 +2020,4,5,1,Queensland,153.37466,-27.96225 +2022,10,15,1,Queensland,153.33461,-27.90383 +2020,1,19,1,Queensland,153.36732,-27.88051 +2023,7,17,1,Queensland,153.36036,-27.93605 +2021,9,7,1,Queensland,153.37099,-27.84046 +2022,11,13,1,Queensland,153.35317,-27.96145 +2023,9,17,2,Queensland,153.32276,-27.89826 +2020,3,21,1,Queensland,153.39553,-28.15213 +2020,9,15,1,Queensland,153.2664,-27.97758 +2023,10,29,1,Queensland,153.40553,-28.15068 +2023,7,6,1,Queensland,153.45393,-28.09398 +2023,9,16,1,Queensland,153.36326,-27.92772 +2021,11,19,1,Queensland,153.1934,-28.16492 +2022,4,28,1,Queensland,153.42113,-28.15022 +2021,9,12,2,Queensland,153.33199,-27.91187 +2022,10,30,2,Queensland,153.38495,-28.11045 +2021,8,16,1,Queensland,153.45623,-28.13141 +2022,5,19,1,Queensland,153.44858,-28.09754 +2023,10,28,1,Queensland,153.32912,-27.89066 +2023,9,10,1,Queensland,153.44888,-28.09731 +2022,8,1,1,Queensland,153.35794,-27.94078 +2023,4,25,1,Queensland,153.36473,-27.94968 +2021,9,1,1,Queensland,153.43909,-28.14391 +2023,12,13,1,Queensland,153.45198,-28.09189 +2023,4,30,1,Queensland,153.33412,-27.89217 +2023,9,9,1,Queensland,153.26688,-28.00749 +2023,1,11,1,Queensland,153.36199,-27.9335 +2022,11,25,1,Queensland,153.41102,-28.14658 +2020,9,11,2,Queensland,153.44858,-28.10051 +2023,2,8,1,Queensland,153.44434,-28.17921 +2023,6,5,1,Queensland,153.43596,-28.13085 +2021,7,29,1,Queensland,153.3705,-28.09766 +2023,9,30,1,Queensland,153.32912,-27.89066 +2023,10,26,1,Queensland,153.23081,-27.97529 +2023,4,13,1,Queensland,153.35657,-27.93888 +2023,3,10,1,Queensland,153.38442,-27.9163 +2022,8,24,1,Queensland,153.36203,-27.9374 +2022,7,10,1,Queensland,153.44851,-28.09759 +2023,10,11,1,Queensland,153.45528,-28.13221 +2021,1,14,1,Queensland,153.30391,-28.02825 +2020,7,22,1,Queensland,153.44889,-28.09562 +2023,5,1,1,Queensland,153.362,-27.93227 +2020,8,18,1,Queensland,153.44105,-28.15 +2023,6,15,1,Queensland,153.36646,-27.94588 +2023,9,15,2,Queensland,153.44975,-28.09272 +2020,3,10,1,Queensland,153.27322,-27.9095 +2020,8,26,1,Queensland,153.3698,-28.17779 +2023,1,12,1,Queensland,153.35906,-27.93273 +2021,9,3,1,Queensland,153.38084,-27.95556 +2020,7,31,1,Queensland,153.44577,-28.09536 +2023,6,1,1,Queensland,153.32991,-27.91376 +2020,10,20,1,Queensland,153.32891,-27.89089 +2021,7,23,1,Queensland,153.32885,-27.89084 +2022,3,30,1,Queensland,153.18487,-27.80268 +2020,5,25,1,Queensland,153.32892,-27.89072 +2022,11,26,1,Queensland,153.39139,-28.12417 +2023,10,4,2,Queensland,153.34332,-27.90467 +2021,4,24,1,Queensland,153.40513,-28.10664 +2022,11,18,1,Queensland,153.33864,-27.90829 +2023,10,13,1,Queensland,153.3638,-27.92968 +2023,11,3,1,Queensland,153.36064,-27.93288 +2023,1,8,1,Queensland,153.26801,-28.00691 +2021,9,28,1,Queensland,153.26289,-27.9997 +2023,5,16,1,Queensland,153.32913,-28.01263 +2020,1,5,1,Queensland,153.43944,-28.15593 +2023,10,30,1,Queensland,153.43275,-28.13729 +2023,12,7,1,Queensland,153.3532,-27.84236 +2020,1,29,2,Queensland,153.23182,-27.97723 +2020,10,3,1,Queensland,153.32871,-27.89079 +2020,3,21,1,Queensland,153.37926,-27.82202 +2021,3,23,1,Queensland,153.30722,-28.13694 +2023,2,11,1,Queensland,153.39568,-28.14317 +2020,1,19,1,Queensland,153.32686,-27.92116 +2021,1,4,1,Queensland,153.23237,-27.97682 +2021,2,6,1,Queensland,153.4473,-28.10309 +2020,11,24,1,Queensland,153.37277,-27.91463 +2021,6,17,1,Queensland,153.32475,-27.88642 +2023,2,12,1,Queensland,153.45288,-28.09398 +2023,4,14,1,Queensland,153.36036,-27.93605 +2021,4,11,1,Queensland,153.29923,-27.8994 +2021,8,14,1,Queensland,153.29543,-27.97396 +2023,9,26,1,Queensland,153.27663,-27.99879 +2022,9,7,1,Queensland,153.34813,-28.1361 +2023,10,8,1,Queensland,153.45488,-28.13273 +2023,7,8,1,Queensland,153.35584,-27.95659 +2021,5,24,1,Queensland,153.37786,-28.09507 +2021,9,3,1,Queensland,153.30252,-27.83796 +2022,6,28,1,Queensland,153.41977,-28.12091 +2021,10,12,1,Queensland,153.36873,-27.8444 +2020,10,7,1,Queensland,153.32482,-27.81762 +2020,5,17,1,Queensland,153.40525,-28.1156 +2021,11,19,1,Queensland,153.35846,-27.84495 +2023,10,4,1,Queensland,153.36414,-27.92824 +2021,11,18,1,Queensland,153.43916,-28.1561 +2023,11,15,1,Queensland,153.3362,-27.8508 +2022,1,14,2,Queensland,153.37298,-27.93907 +2022,11,5,1,Queensland,153.40374,-28.11082 +2023,10,14,1,Queensland,153.43595,-28.14181 +2020,10,30,1,Queensland,153.405,-28.13665 +2023,10,10,1,Queensland,153.34185,-27.91035 +2021,9,1,1,Queensland,153.43156,-28.13822 +2021,6,19,1,Queensland,153.45089,-28.0928 +2022,12,8,1,Queensland,153.36529,-27.93477 +2021,11,22,1,Queensland,153.45945,-28.14856 +2020,1,14,2,Queensland,153.35445,-28.09133 +2023,11,22,1,Queensland,153.45253,-28.09482 +2020,1,12,1,Queensland,153.44686,-28.09677 +2020,6,23,1,Queensland,153.34363,-27.97053 +2021,10,24,1,Queensland,153.45551,-28.09688 +2021,10,19,1,Queensland,153.30336,-27.92664 +2022,1,3,1,Queensland,153.44484,-28.14002 +2023,3,24,1,Queensland,153.40559,-28.11324 +2023,6,17,2,Queensland,153.39503,-28.1237 +2021,6,3,1,Queensland,153.4486,-28.09482 +2022,3,22,1,Queensland,153.31684,-27.92205 +2023,12,2,1,Queensland,153.27663,-27.99879 +2020,12,8,1,Queensland,153.25959,-27.9615 +2020,12,25,1,Queensland,153.45559,-28.13317 +2021,1,21,1,Queensland,153.32635,-27.82498 +2023,12,9,1,Queensland,153.4498,-28.10036 +2023,4,25,1,Queensland,153.44886,-28.09668 +2023,9,12,1,Queensland,153.3439,-28.10342 +2022,8,3,1,Queensland,153.36399,-27.93893 +2021,5,13,1,Queensland,153.44351,-28.16319 +2021,9,17,1,Queensland,153.45346,-28.15274 +2022,7,25,1,Queensland,153.37105,-27.90531 +2023,11,17,1,Queensland,153.42199,-28.12155 +2023,9,23,2,Queensland,153.37349,-28.10062 +2021,8,7,1,Queensland,153.32912,-27.89065 +2023,11,16,1,Queensland,153.35771,-27.94102 +2022,9,28,1,Queensland,153.30126,-27.94656 +2023,11,22,1,Queensland,153.32819,-27.89498 +2023,10,18,1,Queensland,153.40717,-28.15788 +2021,3,31,1,Queensland,153.18487,-27.80268 +2022,4,23,1,Queensland,153.32912,-27.89065 +2023,10,4,1,Queensland,153.44073,-28.14997 +2023,11,10,1,Queensland,153.36311,-28.13892 +2022,6,27,1,Queensland,153.24744,-28.23783 +2022,12,11,1,Queensland,153.35649,-27.93742 +2022,12,12,1,Queensland,153.32912,-27.89065 +2023,4,16,1,Queensland,153.36036,-27.93605 +2023,5,2,1,Queensland,153.26271,-27.895 +2022,12,19,1,Queensland,153.4249,-28.12408 +2020,9,2,1,Queensland,153.38381,-27.92195 +2020,9,27,1,Queensland,153.23214,-27.97718 +2022,9,1,1,Queensland,153.37744,-27.91825 +2023,9,17,2,Queensland,153.45269,-28.09119 +2023,1,2,1,Queensland,153.44836,-28.13773 +2022,11,8,1,Queensland,153.33907,-27.92534 +2023,3,23,1,Queensland,153.44816,-28.09758 +2020,12,2,1,Queensland,153.3723,-28.11761 +2022,9,16,1,Queensland,153.31272,-27.91928 +2022,12,28,1,Queensland,153.31243,-28.03485 +2021,1,2,1,Queensland,153.44446,-28.09538 +2022,8,14,1,Queensland,153.31443,-28.05237 +2022,4,3,1,Queensland,153.2795,-27.95812 +2020,1,4,1,Queensland,153.33994,-27.91967 +2020,9,23,1,Queensland,153.32758,-27.82305 +2020,2,10,1,Queensland,153.33969,-27.85565 +2021,5,14,1,Queensland,153.43459,-28.12518 +2020,2,15,1,Queensland,153.23245,-27.9772 +2022,10,19,1,Queensland,153.32912,-27.89065 +2023,6,28,1,Queensland,153.35692,-27.9379 +2021,3,11,2,Queensland,153.32912,-27.89065 +2022,12,23,1,Queensland,153.24042,-27.94112 +2021,12,15,2,Queensland,153.31612,-28.02108 +2023,9,5,1,Queensland,153.44779,-28.09756 +2021,9,21,2,Queensland,153.37907,-27.91771 +2020,10,21,1,Queensland,153.37076,-28.11037 +2023,8,15,1,Queensland,153.364,-27.92938 +2020,12,20,1,Queensland,153.44446,-28.09538 +2023,7,28,1,Queensland,153.36514,-27.93044 +2022,12,17,1,Queensland,153.44286,-28.12935 +2022,11,18,1,Queensland,153.37441,-27.93165 +2021,12,2,1,Queensland,153.32855,-27.82209 +2023,3,24,1,Queensland,153.36593,-27.93786 +2023,1,22,1,Queensland,153.30124,-27.92325 +2022,11,24,1,Queensland,153.3321,-27.93192 +2023,3,30,1,Queensland,153.36079,-27.93211 +2023,4,16,1,Queensland,153.39329,-28.10414 +2020,12,10,1,Queensland,153.37997,-27.93825 +2021,9,20,1,Queensland,153.36728,-27.83187 +2020,1,16,1,Queensland,153.46167,-28.13965 +2022,9,5,1,Queensland,153.42955,-28.12155 +2020,7,22,1,Queensland,153.23236,-27.97723 +2020,12,6,2,Queensland,153.4417,-28.1498 +2023,8,3,1,Queensland,153.45421,-28.16052 +2023,10,14,2,Queensland,153.32276,-27.89826 +2022,3,23,1,Queensland,153.25913,-27.83196 +2021,8,10,2,Queensland,153.37746,-27.91915 +2023,12,5,1,Queensland,153.25002,-27.9453 +2022,12,17,1,Queensland,153.35788,-27.95775 +2023,5,26,1,Queensland,153.45258,-28.09215 +2023,7,3,1,Queensland,153.36411,-27.92826 +2023,8,20,1,Queensland,153.36395,-27.92921 +2020,12,13,1,Queensland,153.23214,-27.97718 +2023,6,9,1,Queensland,153.35744,-27.94077 +2023,10,28,1,Queensland,153.38727,-27.92287 +2021,11,1,1,Queensland,153.42632,-28.14339 +2022,5,7,1,Queensland,153.45222,-28.11949 +2022,10,22,1,Queensland,153.29842,-27.82783 +2021,8,13,1,Queensland,153.35169,-28.13468 +2021,2,17,1,Queensland,153.40853,-28.11688 +2022,10,8,1,Queensland,153.36496,-27.93418 +2020,6,23,1,Queensland,153.23215,-27.97718 +2022,8,16,1,Queensland,153.25052,-27.80097 +2020,10,27,2,Queensland,153.42884,-28.13654 +2020,12,11,1,Queensland,153.4668,-28.1559 +2020,11,19,1,Queensland,153.32879,-27.89081 +2021,9,11,1,Queensland,153.45036,-28.14756 +2023,10,20,2,Queensland,153.32912,-27.89066 +2022,8,16,1,Queensland,153.38284,-27.96245 +2023,6,25,1,Queensland,153.27663,-27.9988 +2022,7,16,1,Queensland,153.32912,-27.89065 +2022,10,17,1,Queensland,153.2516,-27.78821 +2020,11,20,2,Queensland,153.32928,-27.8907 +2023,5,1,1,Queensland,153.35901,-27.93284 +2023,4,22,1,Queensland,153.32992,-28.01022 +2023,11,28,1,Queensland,153.36654,-27.83344 +2020,7,5,1,Queensland,153.23213,-27.97714 +2022,6,8,1,Queensland,153.35744,-27.95121 +2020,3,31,1,Queensland,153.3723,-27.91103 +2023,8,27,2,Queensland,153.4516,-28.09165 +2023,4,16,1,Queensland,153.34391,-27.95375 +2022,11,7,1,Queensland,153.33786,-27.89246 +2020,8,7,1,Queensland,153.45004,-28.14948 +2021,7,13,1,Queensland,153.32437,-27.89572 +2020,10,1,1,Queensland,153.2739,-28.0196 +2023,4,16,1,Queensland,153.36529,-27.94491 +2023,8,12,1,Queensland,153.35133,-28.12982 +2020,1,10,1,Queensland,153.24427,-27.98532 +2020,6,15,1,Queensland,153.43374,-28.1442 +2021,5,2,1,Queensland,153.43006,-28.1421 +2021,3,16,1,Queensland,153.41716,-28.14455 +2020,1,7,1,Queensland,153.22465,-27.97229 +2021,6,4,1,Queensland,153.42558,-28.12976 +2023,9,3,2,Queensland,153.44994,-28.10079 +2023,6,9,1,Queensland,153.38215,-27.93293 +2021,3,1,1,Queensland,153.37895,-27.8271 +2022,10,27,1,Queensland,153.42396,-28.12195 +2021,5,13,1,Queensland,153.44701,-28.14034 +2023,4,8,1,Queensland,153.36274,-27.93382 +2020,6,15,1,Queensland,153.23213,-27.97714 +2023,10,2,1,Queensland,153.38518,-27.92135 +2021,8,12,1,Queensland,153.45015,-28.09452 +2020,11,28,2,Queensland,153.44195,-28.10664 +2023,9,11,1,Queensland,153.36823,-27.93023 +2022,10,13,2,Queensland,153.35133,-28.12982 +2022,7,7,1,Queensland,153.41385,-28.14489 +2021,2,3,1,Queensland,153.3714,-27.90536 +2021,1,13,1,Queensland,153.17976,-27.83824 +2022,8,31,1,Queensland,153.36383,-27.93449 +2023,10,9,1,Queensland,153.42047,-28.15091 +2020,10,31,1,Queensland,153.3673,-27.8806 +2021,6,28,1,Queensland,153.35461,-28.09298 +2023,7,8,1,Queensland,153.44853,-28.15294 +2023,11,14,1,Queensland,153.35772,-27.94099 +2021,6,8,1,Queensland,153.33996,-27.91544 +2023,10,25,2,Queensland,153.32912,-27.89066 +2021,8,28,1,Queensland,153.32073,-28.00957 +2023,10,11,1,Queensland,153.36036,-27.93605 +2021,1,30,1,Queensland,153.29921,-27.90009 +2021,3,28,1,Queensland,153.4442,-28.10973 +2023,7,20,1,Queensland,153.37293,-27.91142 +2020,11,1,1,Queensland,153.25531,-27.96361 +2022,6,13,1,Queensland,153.37551,-27.95732 +2023,9,27,1,Queensland,153.32912,-27.89066 +2022,6,12,1,Queensland,153.37955,-27.94282 +2022,12,7,1,Queensland,153.36222,-27.84362 +2021,6,7,1,Queensland,153.32912,-27.89065 +2022,11,21,1,Queensland,153.42322,-28.12175 +2023,9,27,2,Queensland,153.32912,-27.89066 +2021,10,15,1,Queensland,153.07899,-26.50276 +2022,2,28,1,Queensland,153.34162,-27.90885 +2023,11,9,1,Queensland,153.38426,-27.92171 +2021,5,22,1,Queensland,153.32846,-27.89989 +2022,12,28,1,Queensland,153.43917,-28.15611 +2021,12,8,1,Queensland,153.32912,-27.89065 +2023,1,25,1,Queensland,153.36296,-27.93384 +2023,10,31,1,Queensland,153.36199,-27.93345 +2021,12,20,2,Queensland,153.33123,-27.88931 +2020,12,20,2,Queensland,153.44885,-28.10104 +2020,2,6,1,Queensland,153.37923,-27.82249 +2022,7,24,1,Queensland,153.32912,-27.89065 +2022,10,20,1,Queensland,153.32912,-27.89065 +2022,1,23,1,Queensland,153.37514,-28.10165 +2023,10,28,1,Queensland,153.32912,-27.89066 +2020,1,24,1,Queensland,153.43933,-28.15961 +2021,9,2,1,Queensland,153.44649,-28.13639 +2022,10,17,1,Queensland,153.31612,-28.02113 +2021,11,18,1,Queensland,153.32912,-27.89065 +2022,5,6,1,Queensland,153.44393,-28.09513 +2020,11,29,1,Queensland,153.43996,-28.13815 +2023,9,16,1,Queensland,153.35507,-27.92546 +2022,7,1,1,Queensland,153.31427,-28.05249 +2021,10,17,1,Queensland,153.33743,-27.92015 +2022,9,20,1,Queensland,153.39987,-28.14208 +2023,9,19,1,Queensland,153.37385,-27.92633 +2023,9,3,1,Queensland,153.36036,-27.93605 +2020,9,7,1,Queensland,153.45872,-28.12748 +2023,11,10,1,Queensland,153.40717,-28.15788 +2023,11,25,1,Queensland,153.44955,-28.13738 +2021,9,3,1,Queensland,153.2337,-27.97286 +2022,2,9,2,Queensland,153.4171,-28.14477 +2023,8,1,2,Queensland,153.45382,-28.16103 +2020,10,15,1,Queensland,153.40422,-28.13523 +2021,1,28,1,Queensland,153.37869,-27.92453 +2022,8,6,1,Queensland,153.4118,-28.16445 +2023,7,20,1,Queensland,153.37344,-27.91371 +2023,5,1,1,Queensland,153.34012,-28.03707 +2023,6,22,1,Queensland,153.45627,-28.09169 +2021,1,4,1,Queensland,153.37444,-27.89756 +2023,11,4,2,Queensland,153.36191,-27.93229 +2020,1,22,1,Queensland,153.24345,-27.9691 +2021,2,11,1,Queensland,153.35467,-28.09303 +2023,11,5,1,Queensland,153.25852,-27.88884 +2022,2,23,1,Queensland,153.31707,-27.99281 +2022,5,22,1,Queensland,153.42701,-28.11844 +2022,8,10,1,Queensland,153.36191,-27.93234 +2022,1,18,1,Queensland,153.37305,-28.11981 +2022,10,5,2,Queensland,153.37704,-27.91942 +2023,10,22,1,Queensland,153.45355,-28.12855 +2020,10,14,1,Queensland,153.23212,-27.97687 +2023,7,19,1,Queensland,153.44663,-28.13657 +2020,11,13,1,Queensland,153.43228,-28.10744 +2023,9,26,1,Queensland,153.31074,-28.02925 +2022,3,20,2,Queensland,153.36228,-27.84469 +2020,12,29,1,Queensland,153.45258,-28.09494 +2022,12,28,1,Queensland,153.35815,-28.09065 +2023,10,22,1,Queensland,153.45258,-28.09237 +2020,10,3,1,Queensland,153.43247,-28.11482 +2023,7,11,1,Queensland,153.32594,-27.89266 +2021,1,14,1,Queensland,153.45918,-28.14836 +2023,11,20,2,Queensland,153.45167,-28.09147 +2022,8,7,1,Queensland,153.45519,-28.09657 +2020,2,1,1,Queensland,153.37609,-27.83012 +2022,5,22,1,Queensland,153.44857,-28.09756 +2023,11,28,1,Queensland,153.46023,-28.16091 +2023,7,20,1,Queensland,153.35888,-27.93353 +2023,8,17,1,Queensland,153.35855,-28.18287 +2022,10,21,1,Queensland,153.38257,-27.92224 +2020,9,13,1,Queensland,153.40724,-28.149301 +2022,8,14,1,Queensland,153.35448,-28.0931 +2023,2,19,1,Queensland,153.44359,-28.13439 +2023,1,19,1,Queensland,153.42467,-28.12324 +2020,6,18,2,Queensland,153.44427,-28.14509 +2020,10,11,1,Queensland,153.38878,-27.91577 +2023,9,6,2,Queensland,153.32875,-27.89041 +2020,8,9,1,Queensland,153.42954,-28.16099 +2021,9,16,1,Queensland,153.32944,-27.89097 +2022,10,27,1,Queensland,153.32794,-27.90074 +2020,10,4,2,Queensland,153.33485,-27.89071 +2023,1,1,1,Queensland,153.42383,-28.147 +2023,8,15,1,Queensland,153.44646,-28.13718 +2023,10,12,1,Queensland,153.36283,-27.93379 +2022,9,9,1,Queensland,153.37551,-28.10103 +2020,10,17,1,Queensland,153.30921,-27.9821 +2021,3,11,1,Queensland,153.44558,-28.14448 +2020,4,14,1,Queensland,153.41089,-28.14255 +2021,6,24,1,Queensland,153.44467,-28.14506 +2023,7,30,1,Queensland,153.34843,-28.05276 +2023,8,28,2,Queensland,153.3274,-27.88997 +2023,4,23,1,Queensland,153.34108,-28.03613 +2023,8,29,2,Queensland,153.38486,-28.21848 +2023,6,8,2,Queensland,153.39568,-28.14317 +2023,8,29,1,Queensland,153.4512,-28.14151 +2020,8,1,2,Queensland,153.45109,-28.09282 +2020,12,7,1,Queensland,153.32824,-27.92275 +2020,1,6,1,Queensland,153.40231,-28.1151 +2021,9,21,1,Queensland,153.29427,-27.9218 +2023,8,26,2,Queensland,153.45096,-28.09126 +2022,11,11,1,Queensland,153.38479,-27.92206 +2023,10,26,2,Queensland,153.35133,-28.12982 +2020,10,19,1,Queensland,153.42612,-28.17195 +2020,11,2,1,Queensland,153.32895,-27.89086 +2022,11,25,1,Queensland,153.36203,-27.9374 +2020,11,8,1,Queensland,153.37423,-27.83347 +2022,9,20,1,Queensland,153.26794,-27.92633 +2023,5,10,1,Queensland,153.36305,-27.94006 +2020,1,10,2,Queensland,153.42101,-28.15035 +2023,2,19,2,Queensland,153.36278,-27.93372 +2023,11,2,1,Queensland,153.44079,-28.15442 +2022,2,13,1,Queensland,153.4484,-28.0974 +2020,6,29,1,Queensland,153.38294,-27.92218 +2023,8,14,1,Queensland,153.26289,-27.9997 +2022,10,6,1,Queensland,153.40732,-28.14652 +2023,10,8,1,Queensland,153.32912,-27.89066 +2020,12,13,1,Queensland,153.411,-28.14571 +2021,10,26,1,Queensland,153.44553,-28.09438 +2023,9,27,1,Queensland,153.37564,-27.89614 +2021,3,8,2,Queensland,153.41418,-28.14513 +2022,9,9,1,Queensland,153.41684,-28.14475 +2021,1,10,1,Queensland,153.42712,-28.17278 +2020,10,12,1,Queensland,153.23211,-27.97748 +2021,6,8,1,Queensland,153.43238,-28.10766 +2023,7,1,1,Queensland,153.42427,-28.14551 +2023,11,23,2,Queensland,153.45106,-28.13272 +2023,4,4,1,Queensland,153.32875,-27.89041 +2023,11,3,1,Queensland,153.36437,-27.93445 +2022,10,4,1,Queensland,153.40274,-28.11567 +2022,3,8,1,Queensland,153.44571,-28.14359 +2021,8,17,1,Queensland,153.45554,-28.14258 +2021,7,22,1,Queensland,153.40286,-28.11572 +2023,10,29,1,Queensland,153.36577,-27.92987 +2023,8,21,1,Queensland,153.32912,-27.89066 +2023,10,23,2,Queensland,153.45445,-28.13304 +2022,9,28,1,Queensland,153.44849,-28.09754 +2020,1,11,1,Queensland,153.4411,-28.14412 +2022,11,5,1,Queensland,153.32963,-28.00988 +2023,4,6,1,Queensland,153.33085,-27.8441 +2020,12,4,1,Queensland,153.23214,-27.97718 +2023,9,27,1,Queensland,153.36404,-27.92824 +2020,12,10,1,Queensland,153.45527,-28.13996 +2022,8,23,1,Queensland,153.36191,-27.93234 +2020,10,21,1,Queensland,153.41655,-28.17168 +2020,12,10,1,Queensland,153.45436,-28.14719 +2021,9,29,1,Queensland,153.36252,-27.9372 +2020,11,7,1,Queensland,153.44996,-28.13408 +2023,11,7,1,Queensland,153.27663,-27.99879 +2021,9,17,1,Queensland,153.43922,-28.15626 +2020,9,7,1,Queensland,153.434903,-28.13021 +2023,8,3,1,Queensland,153.41224,-28.15024 +2023,9,21,1,Queensland,153.44589,-28.09711 +2021,11,15,1,Queensland,153.38818,-28.11802 +2020,10,27,1,Queensland,153.428,-28.13718 +2021,9,29,1,Queensland,153.35687,-27.8376 +2022,5,12,1,Queensland,153.44557,-28.09432 +2021,7,1,1,Queensland,153.4513,-28.14173 +2021,8,31,1,Queensland,153.369,-28.10827 +2023,4,17,1,Queensland,153.36712,-27.88044 +2023,8,2,1,Queensland,153.2271,-27.94725 +2022,6,12,1,Queensland,153.19185,-27.77662 +2023,7,11,1,Queensland,153.35911,-27.93397 +2023,10,23,1,Queensland,153.44955,-28.13743 +2023,10,27,1,Queensland,153.45269,-28.09119 +2020,11,1,1,Queensland,153.45579,-28.13734 +2023,5,31,1,Queensland,153.45258,-28.09215 +2023,9,27,1,Queensland,153.3569,-27.938 +2022,7,14,1,Queensland,153.4501,-28.16037 +2021,6,13,1,Queensland,153.32827,-27.89512 +2020,10,23,1,Queensland,153.23156,-27.97707 +2021,8,30,1,Queensland,153.45301,-28.09623 +2023,2,13,1,Queensland,153.4485,-28.09753 +2020,9,10,1,Queensland,153.4538,-28.13315 +2023,7,27,1,Queensland,153.44165,-28.10627 +2023,4,6,2,Queensland,153.36565,-27.93527 +2022,10,15,1,Queensland,153.2738,-27.8933 +2023,5,23,1,Queensland,153.45258,-28.09215 +2023,4,30,1,Queensland,153.35641,-27.93914 +2020,4,29,2,Queensland,153.23184,-27.97709 +2021,2,25,1,Queensland,153.31995,-27.90796 +2020,6,10,1,Queensland,153.32774,-27.90648 +2023,3,26,1,Queensland,153.23161,-27.88197 +2023,7,1,1,Queensland,153.32127,-27.89679 +2020,4,22,1,Queensland,153.32794,-27.90608 +2020,1,7,1,Queensland,153.439,-28.15934 +2020,3,30,1,Queensland,153.23237,-27.97682 +2020,11,11,1,Queensland,153.35787,-28.12773 +2023,11,10,1,Queensland,153.43251,-28.14173 +2020,9,25,1,Queensland,153.46028,-28.16122 +2021,2,18,1,Queensland,153.26768,-28.02404 +2020,9,30,1,Queensland,153.3415,-27.91547 +2023,11,14,1,Queensland,153.45196,-28.0919 +2021,4,24,1,Queensland,153.27595,-27.97768 +2023,5,29,1,Queensland,153.3062,-28.0563 +2023,2,10,1,Queensland,153.45127,-28.09972 +2020,9,13,1,Queensland,153.23214,-27.97718 +2022,2,9,1,Queensland,153.34046,-28.15591 +2021,4,26,2,Queensland,153.41483,-28.14448 +2021,6,29,1,Queensland,153.35982,-28.11239 +2020,1,3,1,Queensland,153.23234,-27.97719 +2022,9,26,1,Queensland,153.36542,-27.9287 +2023,2,20,1,Queensland,153.21235,-27.87215 +2022,7,10,1,Queensland,153.31507,-28.05286 +2020,12,8,1,Queensland,153.25959,-27.9615 +2020,11,20,1,Queensland,153.41763,-28.14515 +2021,10,28,1,Queensland,153.34186,-27.91357 +2021,10,11,1,Queensland,153.44092,-28.16148 +2020,10,27,2,Queensland,153.45409,-28.1471 +2023,11,16,1,Queensland,153.35794,-27.94077 +2022,7,9,1,Queensland,153.32903,-27.90296 +2020,10,7,1,Queensland,153.33404,-27.97477 +2023,9,29,1,Queensland,153.32912,-27.89066 +2023,7,1,1,Queensland,153.40521,-28.11528 +2020,7,21,1,Queensland,153.243,-27.9807 +2023,3,5,1,Queensland,153.36297,-27.934 +2023,3,1,1,Queensland,153.38264,-27.91687 +2020,7,27,1,Queensland,153.43254,-28.14227 +2021,11,13,1,Queensland,153.44462,-28.14402 +2020,10,3,1,Queensland,153.41949,-28.12043 +2023,10,20,1,Queensland,153.38344,-27.92241 +2022,9,8,1,Queensland,153.44966,-28.14839 +2023,12,1,1,Queensland,153.32912,-27.89066 +2021,11,23,2,Queensland,153.42955,-28.1572 +2022,11,21,1,Queensland,153.30297,-28.0072 +2021,10,9,1,Queensland,153.2337,-27.97286 +2022,9,19,1,Queensland,153.40568,-28.15073 +2022,8,16,1,Queensland,153.45157,-28.16094 +2020,2,8,2,Queensland,153.45248,-28.09622 +2023,4,4,1,Queensland,153.45249,-28.09358 +2022,3,7,1,Queensland,153.41959,-28.14582 +2021,2,3,1,Queensland,153.44897,-28.09584 +2021,11,29,2,Queensland,153.44678,-28.10346 +2020,6,7,1,Queensland,153.45087,-28.10079 +2021,9,19,1,Queensland,153.45157,-28.16094 +2023,3,12,1,Queensland,153.42763,-28.1183 +2023,6,27,1,Queensland,153.32912,-27.89066 +2023,8,25,1,Queensland,153.37723,-27.95131 +2022,2,25,1,Queensland,153.3346,-27.82751 +2023,11,16,1,Queensland,153.39598,-27.96207 +2022,11,10,1,Queensland,153.37315,-27.94594 +2020,10,24,1,Queensland,153.44474,-28.14669 +2022,7,8,1,Queensland,153.31543,-28.05194 +2023,8,28,2,Queensland,153.45212,-28.0916 +2023,9,30,2,Queensland,153.32276,-27.89826 +2023,10,30,1,Queensland,153.4518,-28.09178 +2020,10,12,1,Queensland,153.3419,-27.90892 +2020,1,14,1,Queensland,153.37061,-28.18003 +2021,6,23,1,Queensland,153.27263,-27.78282 +2023,6,17,1,Queensland,153.39701,-28.10065 +2023,8,13,1,Queensland,153.22725,-27.98992 +2022,11,2,1,Queensland,153.37038,-27.95072 +2022,11,19,1,Queensland,153.42792,-28.148 +2023,9,27,1,Queensland,153.34013,-27.8008 +2023,7,21,1,Queensland,153.30047,-27.91376 +2020,12,23,2,Queensland,153.44825,-28.1007 +2020,4,1,1,Queensland,153.44847,-28.09914 +2022,2,12,1,Queensland,153.44858,-28.09745 +2023,11,1,2,Queensland,153.37653,-27.95848 +2022,12,28,1,Queensland,153.36374,-27.93593 +2022,12,10,1,Queensland,153.45914,-28.14829 +2023,8,10,1,Queensland,153.45798,-28.09371 +2023,8,12,1,Queensland,153.32912,-27.89066 +2023,11,16,1,Queensland,153.18605,-27.84148 +2022,12,19,1,Queensland,153.43539,-28.1561 +2023,3,24,1,Queensland,153.3665,-27.9294 +2022,9,14,1,Queensland,153.32813,-27.90312 +2021,9,13,1,Queensland,153.34292,-28.08967 +2020,9,10,1,Queensland,153.32881,-27.89066 +2021,10,17,1,Queensland,153.26504,-27.84465 +2020,5,15,1,Queensland,153.36229,-27.83968 +2022,10,15,1,Queensland,153.37477,-28.10143 +2023,10,11,1,Queensland,153.35466,-28.10844 +2020,10,13,1,Queensland,153.4578,-28.14696 +2021,5,1,1,Queensland,153.36646,-27.94588 +2023,6,13,1,Queensland,153.36036,-27.93605 +2020,9,28,1,Queensland,153.44244,-28.13518 +2022,8,25,1,Queensland,153.39139,-28.11679 +2023,9,15,1,Queensland,153.35118,-28.13622 +2023,9,18,2,Queensland,153.42197,-28.12124 +2022,6,12,1,Queensland,153.32912,-27.89065 +2022,8,18,1,Queensland,153.2516,-27.78821 +2023,1,8,1,Queensland,153.32991,-27.91376 +2021,11,26,1,Queensland,153.32912,-27.89065 +2023,9,21,1,Queensland,153.33817,-27.89254 +2022,11,7,1,Queensland,153.41786,-28.14452 +2021,3,25,1,Queensland,153.32912,-27.89065 +2023,9,6,1,Queensland,153.38005,-27.92489 +2020,10,18,1,Queensland,153.31518,-28.03634 +2020,10,18,1,Queensland,153.32975,-27.89039 +2023,11,20,2,Queensland,153.18257,-27.81146 +2022,7,17,1,Queensland,153.32912,-27.89065 +2020,5,28,1,Queensland,153.26009,-27.9617 +2022,7,27,1,Queensland,153.28814,-27.99985 +2022,3,6,1,Queensland,153.45853,-28.09185 +2021,10,5,1,Queensland,153.41453,-28.14507 +2022,8,28,1,Queensland,153.33984,-27.90843 +2022,12,14,1,Queensland,153.45761,-28.14793 +2023,10,9,1,Queensland,153.32912,-27.89066 +2020,1,11,1,Queensland,153.22465,-27.97229 +2022,8,17,1,Queensland,153.3153,-28.05131 +2023,8,5,1,Queensland,153.3684,-27.92989 +2023,11,7,1,Queensland,153.36283,-27.93379 +2021,11,20,1,Queensland,153.1815,-27.80103 +2022,8,8,1,Queensland,153.43007,-28.18059 +2020,11,12,2,Queensland,153.329,-27.89084 +2020,7,5,1,Queensland,153.44956,-28.10012 +2023,1,12,1,Queensland,153.36036,-27.93605 +2021,10,17,1,Queensland,153.42955,-28.12155 +2022,9,22,2,Queensland,153.33826,-27.91342 +2020,6,4,1,Queensland,153.39162,-28.13645 +2021,10,19,2,Queensland,153.3447,-27.95403 +2020,4,25,1,Queensland,153.21846,-28.00823 +2023,7,15,1,Queensland,153.35914,-27.93323 +2020,1,16,1,Queensland,153.4524,-28.09609 +2020,12,15,1,Queensland,153.32945,-27.89059 +2023,2,9,1,Queensland,153.31526,-28.02375 +2020,9,20,1,Queensland,153.42629,-28.17237 +2023,8,23,1,Queensland,153.40717,-28.15788 +2023,10,28,1,Queensland,153.35701,-27.94203 +2020,9,10,1,Queensland,153.32961,-27.89049 +2022,9,27,1,Queensland,153.36605,-27.87962 +2020,9,27,1,Queensland,153.26644,-27.84411 +2023,11,4,1,Queensland,153.26504,-27.84465 +2022,8,30,1,Queensland,153.37184,-27.83442 +2023,6,8,1,Queensland,153.36272,-27.94128 +2023,4,1,1,Queensland,153.32566,-27.90878 +2020,8,11,1,Queensland,153.23213,-27.97714 +2023,7,15,1,Queensland,153.35915,-27.93392 +2023,12,13,1,Queensland,153.45323,-28.13815 +2023,1,30,1,Queensland,153.36594,-27.94327 +2022,12,26,1,Queensland,153.39987,-28.14208 +2020,10,20,1,Queensland,153.4464,-28.14046 +2021,8,3,1,Queensland,153.36986,-27.92972 +2023,1,14,1,Queensland,153.35904,-27.93325 +2020,3,30,1,Queensland,153.33056,-27.91688 +2022,10,18,1,Queensland,153.35776,-27.94048 +2021,10,30,1,Queensland,153.45609,-28.13242 +2022,4,12,1,Queensland,153.27728,-27.89666 +2023,10,29,1,Queensland,153.36575,-27.92991 +2022,11,3,1,Queensland,153.26504,-27.84465 +2020,12,9,1,Queensland,153.32938,-28.0403 +2022,6,24,1,Queensland,153.38527,-27.95392 +2020,9,26,1,Queensland,153.32895,-27.89088 +2023,5,28,1,Queensland,153.45258,-28.09215 +2023,6,10,1,Queensland,153.44855,-28.09753 +2021,11,23,1,Queensland,153.36709,-27.88078 +2023,7,21,1,Queensland,153.32926,-27.91455 +2021,9,14,1,Queensland,153.37025,-27.94636 +2022,12,19,1,Queensland,153.33433,-27.91596 +2023,6,29,1,Queensland,153.45139,-28.09986 +2023,10,13,2,Queensland,153.32912,-27.89066 +2020,10,11,1,Queensland,153.32916,-27.89083 +2022,11,23,1,Queensland,153.36036,-27.93605 +2023,11,10,1,Queensland,153.36036,-27.93605 +2023,1,19,1,Queensland,153.33467,-28.03414 +2023,2,16,1,Queensland,153.26249,-27.89212 +2023,8,22,1,Queensland,153.42706,-28.15586 +2022,8,21,1,Queensland,153.44849,-28.09754 +2020,1,3,1,Queensland,153.41456,-28.15063 +2020,4,20,1,Queensland,153.44646,-28.14033 +2023,10,4,1,Queensland,153.36512,-27.92856 +2021,8,8,1,Queensland,153.38847,-27.92163 +2020,9,3,1,Queensland,153.41394,-28.17307 +2023,10,8,1,Queensland,153.36336,-27.9296 +2020,12,25,1,Queensland,153.43395,-28.12256 +2023,5,1,1,Queensland,153.37099,-28.11555 +2023,11,9,1,Queensland,153.40975,-28.14202 +2021,4,8,1,Queensland,153.45138,-28.14754 +2022,11,2,1,Queensland,153.37038,-27.95072 +2021,1,5,1,Queensland,153.232,-27.97638 +2023,5,6,1,Queensland,153.36646,-27.94588 +2021,11,23,1,Queensland,153.36709,-27.88078 +2020,7,20,1,Queensland,153.45794,-28.09643 +2023,8,29,1,Queensland,153.32912,-27.89066 +2021,8,27,1,Queensland,153.45205,-28.10093 +2020,12,23,1,Queensland,153.43975,-28.14349 +2023,4,14,1,Queensland,153.35913,-27.84212 +2021,9,21,1,Queensland,153.28506,-27.91708 +2023,10,2,1,Queensland,153.35795,-27.94139 +2020,9,20,2,Queensland,153.44889,-28.09719 +2022,11,23,1,Queensland,153.31486,-28.05277 +2021,11,20,1,Queensland,153.3252,-27.90156 +2020,12,7,1,Queensland,153.26009,-27.99813 +2023,8,18,1,Queensland,153.36395,-27.92877 +2022,11,4,1,Queensland,153.25484,-27.91806 +2023,10,14,1,Queensland,153.32912,-27.89066 +2020,10,18,1,Queensland,153.32147,-27.97933 +2020,12,24,2,Queensland,153.23163,-27.97732 +2023,6,25,1,Queensland,153.32912,-27.89066 +2023,7,29,1,Queensland,153.32912,-27.89066 +2023,1,10,1,Queensland,153.45876,-28.14946 +2022,9,21,1,Queensland,153.31987,-28.00608 +2023,8,10,1,Queensland,153.32912,-27.89066 +2020,1,7,1,Queensland,153.45356,-28.14864 +2023,7,25,1,Queensland,153.32912,-27.89066 +2022,9,8,1,Queensland,153.39695,-28.16627 +2021,5,13,1,Queensland,153.42976,-28.17201 +2020,10,12,1,Queensland,153.33126,-27.84527 +2022,10,28,1,Queensland,153.45096,-28.09126 +2023,2,19,1,Queensland,153.36334,-27.93427 +2022,8,23,1,Queensland,153.36415,-27.87984 +2023,8,21,1,Queensland,153.31625,-28.02109 +2023,6,30,1,Queensland,153.40512,-28.11557 +2023,4,10,1,Queensland,153.32276,-27.89826 +2022,12,10,2,Queensland,153.32912,-27.89065 +2023,3,28,1,Queensland,153.44374,-28.13407 +2022,5,5,1,Queensland,153.39896,-28.18775 +2021,11,5,2,Queensland,153.24361,-27.9679 +2021,1,16,1,Queensland,153.32893,-27.89083 +2021,10,29,1,Queensland,153.28386,-27.91921 +2023,8,4,1,Queensland,153.32912,-27.89066 +2023,7,12,1,Queensland,153.35952,-27.95723 +2020,4,1,1,Queensland,153.37047,-27.9057 +2023,2,18,2,Queensland,153.32773,-28.01278 +2021,3,25,1,Queensland,153.33865,-27.96761 +2023,7,16,1,Queensland,153.35967,-27.93459 +2023,5,24,1,Queensland,153.36271,-27.93368 +2023,10,22,1,Queensland,153.44734,-28.1223 +2020,5,27,1,Queensland,153.42216,-28.17152 +2020,8,15,1,Queensland,153.23228,-27.97664 +2022,9,8,1,Queensland,153.41769,-28.11287 +2023,10,9,1,Queensland,153.36342,-27.92977 +2022,10,4,1,Queensland,153.29306,-27.82111 +2023,7,14,1,Queensland,153.35864,-27.93315 +2022,6,19,1,Queensland,153.44851,-28.09754 +2022,1,12,1,Queensland,153.44787,-28.10127 +2021,9,30,1,Queensland,153.3957,-27.94862 +2020,1,11,1,Queensland,153.45046,-28.1463 +2023,7,9,1,Queensland,153.24055,-27.97929 +2022,7,14,1,Queensland,153.25713,-27.83139 +2022,10,18,1,Queensland,153.30123,-27.94804 +2020,6,1,1,Queensland,153.4475,-28.0968 +2023,10,18,1,Queensland,153.38733,-27.91804 +2022,8,30,1,Queensland,153.25979,-27.96147 +2022,5,13,1,Queensland,153.32347,-27.88931 +2023,5,27,1,Queensland,153.32912,-27.89066 +2023,9,25,2,Queensland,153.36036,-27.93605 +2021,5,13,1,Queensland,153.27179,-27.89612 +2021,11,2,2,Queensland,153.25935,-27.98862 +2021,9,7,1,Queensland,153.45176,-28.16156 +2022,3,12,1,Queensland,153.29912,-27.89945 +2022,12,12,1,Queensland,153.37827,-27.92458 +2021,7,9,1,Queensland,153.37608,-27.95767 +2022,9,24,1,Queensland,153.42614,-28.14307 +2022,6,28,1,Queensland,153.31524,-28.05198 +2023,4,16,1,Queensland,153.36646,-27.94588 +2023,1,1,1,Queensland,153.34164,-27.90909 +2021,1,29,1,Queensland,153.4529,-28.13924 +2022,6,29,1,Queensland,153.31488,-28.05202 +2022,7,28,1,Queensland,153.35706,-27.93385 +2020,11,22,1,Queensland,153.41246,-28.19197 +2023,10,11,1,Queensland,153.32875,-27.89041 +2023,10,15,1,Queensland,153.36204,-27.93348 +2021,10,5,1,Queensland,153.32565,-28.04472 +2020,11,17,1,Queensland,153.41779,-28.13063 +2023,7,10,1,Queensland,153.35804,-27.91685 +2022,7,8,1,Queensland,153.3673,-27.88137 +2020,11,21,1,Queensland,153.32867,-27.89084 +2023,9,8,1,Queensland,153.30086,-27.83174 +2022,10,10,1,Queensland,153.37451,-27.83611 +2020,2,7,1,Queensland,153.44459,-28.12597 +2023,1,31,1,Queensland,153.4509,-28.16155 +2020,3,16,1,Queensland,153.36631,-27.83927 +2021,6,25,1,Queensland,153.43276,-28.16731 +2020,12,25,1,Queensland,153.27089,-27.79785 +2023,9,23,1,Queensland,153.40045,-28.12506 +2021,9,10,1,Queensland,153.38525,-27.94813 +2020,2,29,1,Queensland,153.32499,-27.82381 +2020,1,14,1,Queensland,153.42804,-28.1584 +2020,4,9,1,Queensland,153.27639,-27.84951 +2022,11,29,1,Queensland,153.3567,-27.93735 +2023,4,24,1,Queensland,153.34865,-28.07878 +2023,4,12,1,Queensland,153.36608,-27.94852 +2020,9,9,1,Queensland,153.41151,-28.14418 +2020,8,17,1,Queensland,153.23208,-27.97716 +2020,1,12,2,Queensland,153.44662,-28.09687 +2020,9,10,2,Queensland,153.3418,-27.91379 +2023,8,19,2,Queensland,153.29552,-27.84022 +2023,11,4,1,Queensland,153.45435,-28.09421 +2021,11,18,1,Queensland,153.26763,-28.00569 +2023,4,23,1,Queensland,153.36542,-27.94484 +2022,2,7,1,Queensland,153.2679,-28.00612 +2022,7,16,1,Queensland,153.36703,-27.88055 +2020,1,13,1,Queensland,153.43236,-28.16451 +2023,10,30,1,Queensland,153.45112,-28.09275 +2021,12,22,1,Queensland,153.44412,-28.14274 +2020,4,8,1,Queensland,153.37278,-27.90036 +2023,9,20,1,Queensland,153.38801,-27.92212 +2020,9,21,2,Queensland,153.45118,-28.09276 +2020,4,5,1,Queensland,153.40471,-28.16766 +2020,9,2,1,Queensland,153.37246,-28.1102 +2020,11,3,2,Queensland,153.32919,-27.89077 +2023,6,1,1,Queensland,153.35069,-27.9571 +2020,12,3,1,Queensland,153.45266,-28.09494 +2020,1,5,1,Queensland,153.45157,-28.09203 +2021,3,17,1,Queensland,153.41394,-28.1449 +2021,12,30,1,Queensland,153.45666,-28.13161 +2021,9,28,1,Queensland,153.37744,-27.91762 +2022,12,11,1,Queensland,153.35649,-27.93742 +2020,1,6,1,Queensland,153.40948,-28.15705 +2023,9,25,1,Queensland,153.34288,-27.9775 +2021,5,9,1,Queensland,153.32856,-27.89873 +2023,9,30,1,Queensland,153.40407,-28.10943 +2021,6,6,1,Queensland,153.39843,-28.10656 +2022,8,26,1,Queensland,153.36704,-27.88062 +2021,4,29,1,Queensland,153.45779,-28.15114 +2023,8,11,1,Queensland,153.39695,-28.16627 +2023,11,2,1,Queensland,153.29333,-27.89473 +2023,5,30,1,Queensland,153.36701,-27.88054 +2020,7,28,1,Queensland,153.23208,-27.97716 +2020,10,14,1,Queensland,153.33159,-27.83448 +2020,11,28,1,Queensland,153.45514,-28.13597 +2020,11,6,1,Queensland,153.42698,-28.11819 +2022,6,8,1,Queensland,153.44931,-28.13941 +2020,9,15,2,Queensland,153.32614,-27.89701 +2022,11,11,1,Queensland,153.37091,-27.94591 +2021,7,19,2,Queensland,153.33957,-27.91534 +2020,9,26,1,Queensland,153.23208,-27.97716 +2023,11,29,1,Queensland,153.32912,-27.89066 +2022,11,12,1,Queensland,153.32014,-28.12022 +2022,6,14,1,Queensland,153.4361,-28.15629 +2023,1,8,1,Queensland,153.34777,-28.12116 +2023,3,7,1,Queensland,153.3155,-28.02163 +2022,9,8,1,Queensland,153.41866,-28.11442 +2021,12,17,1,Queensland,153.36291,-27.93402 +2023,10,16,1,Queensland,153.45191,-28.16137 +2021,4,16,1,Queensland,153.43859,-28.15513 +2021,8,21,1,Queensland,153.37509,-27.91667 +2022,10,13,1,Queensland,153.37608,-27.95767 +2021,12,16,1,Queensland,153.44471,-28.14485 +2023,1,6,1,Queensland,153.26504,-27.84465 +2023,1,6,1,Queensland,153.3354,-27.84138 +2022,8,31,1,Queensland,153.26734,-27.9711 +2022,3,12,1,Queensland,153.44462,-28.14402 +2021,12,7,1,Queensland,153.44007,-28.10114 +2021,10,16,1,Queensland,153.44308,-28.14407 +2020,2,6,1,Queensland,153.40594,-28.17069 +2023,7,29,1,Queensland,153.37727,-27.83426 +2020,10,10,1,Queensland,153.23214,-27.97718 +2023,7,7,1,Queensland,153.45533,-28.08993 +2022,9,22,2,Queensland,153.44904,-28.09765 +2020,5,3,1,Queensland,153.44923,-28.09738 +2021,7,23,1,Queensland,153.32885,-27.89084 +2020,11,25,1,Queensland,153.32637,-28.01147 +2020,8,15,2,Queensland,153.25033,-27.94549 +2021,10,6,1,Queensland,153.34156,-27.91194 +2022,2,12,1,Queensland,153.409,-28.14713 +2020,9,9,2,Queensland,153.44761,-28.09343 +2023,10,25,1,Queensland,153.36137,-27.93762 +2020,7,18,1,Queensland,153.37309,-27.941 +2020,8,31,1,Queensland,153.36972,-27.83329 +2020,12,10,1,Queensland,153.36286,-27.92259 +2022,11,12,1,Queensland,153.3863,-27.92265 +2022,10,15,1,Queensland,153.3741,-27.8955 +2022,1,20,1,Queensland,153.42743,-28.11844 +2021,9,27,1,Queensland,153.45116,-28.14154 +2020,8,1,1,Queensland,153.23232,-27.9772 +2020,11,27,1,Queensland,153.329,-27.89084 +2023,8,19,1,Queensland,153.29653,-28.01629 +2022,6,15,1,Queensland,153.37914,-27.95784 +2021,4,24,1,Queensland,153.34251,-28.08952 +2023,2,12,1,Queensland,153.44959,-28.14893 +2020,7,23,1,Queensland,153.32729,-27.92175 +2023,10,14,1,Queensland,153.45169,-28.09149 +2021,3,5,1,Queensland,153.24286,-27.9673 +2021,12,3,1,Queensland,153.27805,-27.99201 +2023,10,18,1,Queensland,153.36824,-27.92977 +2022,12,28,1,Queensland,153.45116,-28.09962 +2020,9,11,2,Queensland,153.44844,-28.10061 +2020,9,15,1,Queensland,153.32806,-27.9166 +2023,8,19,1,Queensland,153.37404,-27.95429 +2020,1,10,1,Queensland,153.38968,-28.1563 +2020,9,26,2,Queensland,153.44503,-28.14493 +2022,6,5,1,Queensland,153.44854,-28.09752 +2023,10,24,1,Queensland,153.35547,-28.11472 +2023,9,7,1,Queensland,153.42586,-28.14297 +2023,10,16,2,Queensland,153.37296,-28.09948 +2022,12,21,1,Queensland,153.43741,-28.10744 +2020,7,8,1,Queensland,153.44283,-28.13988 +2021,12,3,1,Queensland,153.45105,-28.16078 +2023,10,8,1,Queensland,153.36297,-27.93399 +2020,3,8,1,Queensland,153.4549,-28.16407 +2021,11,27,1,Queensland,153.44507,-28.14472 +2020,11,12,1,Queensland,153.40717,-28.17159 +2023,8,26,1,Queensland,153.37106,-27.96045 +2020,11,25,2,Queensland,153.24998,-27.9457 +2021,8,20,1,Queensland,153.45295,-28.09804 +2020,11,5,1,Queensland,153.40706,-28.17161 +2020,1,24,1,Queensland,153.4529,-28.09658 +2022,9,24,1,Queensland,153.21218,-27.87044 +2023,9,11,1,Queensland,153.36086,-27.93665 +2022,8,24,1,Queensland,153.33061,-27.92 +2021,5,3,1,Queensland,153.45019,-28.14659 +2022,12,25,1,Queensland,153.37014,-27.95924 +2022,10,7,1,Queensland,153.37006,-27.91654 +2021,11,17,1,Queensland,153.41684,-28.14475 +2022,11,8,1,Queensland,153.39209,-28.12213 +2023,8,10,2,Queensland,153.45159,-28.09179 +2023,11,7,2,Queensland,153.31657,-27.89265 +2023,10,1,2,Queensland,153.22473,-27.9728 +2021,6,11,2,Queensland,153.3598,-27.95712 +2023,1,3,1,Queensland,153.36434,-27.92826 +2023,12,22,1,Queensland,153.353,-27.84168 +2023,7,24,1,Queensland,153.33613,-27.89343 +2020,8,17,1,Queensland,153.40383,-28.10353 +2022,7,14,1,Queensland,153.25597,-27.82505 +2020,12,9,1,Queensland,153.38787,-27.9224 +2022,8,31,1,Queensland,153.45599,-28.14132 +2022,11,30,2,Queensland,152.99413,-27.36775 +2022,6,1,2,Queensland,153.44167,-28.14878 +2023,12,17,1,Queensland,153.32912,-27.89066 +2021,10,27,1,Queensland,153.31529,-28.0146 +2023,8,29,2,Queensland,153.45251,-28.09144 +2021,3,1,1,Queensland,153.37893,-27.82226 +2023,5,24,1,Queensland,153.31673,-27.89406 +2023,5,1,1,Queensland,153.36297,-27.93399 +2021,8,22,1,Queensland,153.44566,-28.10597 +2021,10,6,1,Queensland,153.26538,-28.0085 +2022,9,15,2,Queensland,153.36103,-27.93888 +2020,2,12,2,Queensland,153.45167,-28.09578 +2023,9,3,1,Queensland,153.36561,-27.93007 +2023,11,5,1,Queensland,153.36203,-27.9374 +2023,1,23,1,Queensland,153.4588,-28.12745 +2022,8,28,1,Queensland,153.42597,-28.14341 +2021,4,13,1,Queensland,153.44907,-28.09506 +2022,10,8,1,Queensland,153.39003,-28.12055 +2022,10,30,1,Queensland,153.42314,-28.12289 +2020,7,28,1,Queensland,153.42446,-28.17778 +2021,5,24,1,Queensland,153.32912,-27.89065 +2020,5,31,1,Queensland,153.43778,-28.10579 +2023,9,21,1,Queensland,153.44039,-28.13136 +2021,3,18,1,Queensland,153.32912,-27.89065 +2023,8,17,1,Queensland,153.34704,-28.1213 +2020,5,10,1,Queensland,153.23232,-27.9772 +2022,4,4,1,Queensland,153.32912,-27.89065 +2023,10,23,2,Queensland,153.44909,-28.09476 +2020,6,29,1,Queensland,153.23236,-27.97723 +2020,9,7,2,Queensland,153.458189,-28.15469 +2023,10,9,1,Queensland,153.40513,-28.15051 +2023,2,1,2,Queensland,153.42471,-28.14595 +2022,11,7,1,Queensland,153.33707,-27.89318 +2020,8,12,2,Queensland,153.38859,-27.9165 +2023,6,14,1,Queensland,153.3658,-27.93012 +2020,1,6,1,Queensland,153.26985,-28.04063 +2023,7,9,1,Queensland,153.44842,-28.14374 +2023,6,5,1,Queensland,153.4485,-28.09754 +2022,9,30,1,Queensland,153.33391,-27.84105 +2021,9,21,1,Queensland,153.33853,-28.0503 +2023,12,5,1,Queensland,153.27687,-27.95861 +2022,9,1,1,Queensland,153.2516,-27.78821 +2023,9,11,1,Queensland,153.39253,-28.1154 +2022,9,25,1,Queensland,153.44877,-28.09792 +2021,1,9,1,Queensland,153.232,-27.97704 +2020,12,17,1,Queensland,153.32893,-27.89083 +2023,6,20,1,Queensland,153.36201,-27.93348 +2023,1,12,1,Queensland,153.36349,-28.11652 +2022,6,27,1,Queensland,153.31524,-28.05198 +2020,4,7,1,Queensland,153.40909,-28.15403 +2022,10,4,1,Queensland,153.45479,-28.13359 +2022,12,13,1,Queensland,153.3346,-28.03412 +2023,1,28,1,Queensland,153.41855,-28.1301 +2021,5,13,1,Queensland,153.44439,-28.16476 +2023,11,4,1,Queensland,153.38803,-27.92203 +2020,7,8,1,Queensland,153.23213,-27.97714 +2020,8,10,1,Queensland,153.32783,-27.91206 +2021,7,5,1,Queensland,153.32873,-27.8908 +2020,10,3,1,Queensland,153.43247,-28.11482 +2020,9,28,1,Queensland,153.2895,-27.96255 +2020,9,11,1,Queensland,153.23214,-27.97718 +2020,11,5,1,Queensland,153.45618,-28.09204 +2021,9,2,1,Queensland,153.34544,-28.13962 +2021,11,21,2,Queensland,153.44981,-28.10001 +2020,9,21,2,Queensland,153.45697,-28.13173 +2021,2,22,1,Queensland,153.32888,-27.89534 +2021,8,24,1,Queensland,153.32912,-27.89065 +2022,12,5,1,Queensland,153.4482,-28.13977 +2023,4,21,1,Queensland,153.4485,-28.09753 +2021,10,21,1,Queensland,153.32912,-27.89065 +2020,4,2,1,Queensland,153.32786,-27.9064 +2021,6,6,1,Queensland,153.32912,-27.89065 +2020,5,8,1,Queensland,153.23162,-27.97709 +2021,11,7,1,Queensland,153.35751,-27.84526 +2023,1,2,1,Queensland,153.41449,-28.15916 +2023,11,17,1,Queensland,153.36717,-27.94383 +2020,5,14,1,Queensland,153.46368,-28.15837 +2023,9,9,2,Queensland,153.37444,-27.94289 +2020,12,19,1,Queensland,153.23232,-27.9772 +2022,7,8,1,Queensland,153.45556,-28.09206 +2023,9,28,1,Queensland,153.335,-28.00126 +2021,2,13,1,Queensland,153.45691,-28.1494 +2021,9,10,1,Queensland,153.43284,-28.13694 +2023,5,9,1,Queensland,153.27214,-27.94323 +2021,9,5,2,Queensland,153.33206,-27.90524 +2020,11,17,1,Queensland,153.37138,-27.90543 +2021,5,8,1,Queensland,153.43292,-28.13659 +2022,4,4,1,Queensland,153.37127,-27.96743 +2023,10,17,1,Queensland,153.36409,-27.92824 +2022,7,9,1,Queensland,153.32903,-27.90296 +2020,9,27,1,Queensland,153.43301,-28.17141 +2020,12,5,1,Queensland,153.44447,-28.14187 +2020,9,8,1,Queensland,153.23213,-27.97714 +2023,6,8,1,Queensland,153.44869,-28.09847 +2023,6,15,1,Queensland,153.36571,-27.9302 +2021,9,10,1,Queensland,153.45246,-28.09528 +2023,12,13,1,Queensland,153.25002,-27.9453 +2022,7,21,1,Queensland,153.44849,-28.09754 +2021,12,4,1,Queensland,153.33684,-27.91673 +2022,10,5,1,Queensland,153.4493,-28.09843 +2023,4,11,1,Queensland,153.37469,-27.91432 +2021,12,20,1,Queensland,153.39488,-27.94723 +2022,9,15,1,Queensland,153.35951,-27.93511 +2020,1,5,1,Queensland,153.45124,-28.09271 +2021,2,22,1,Queensland,153.44578,-28.09617 +2022,7,8,1,Queensland,153.31039,-28.02084 +2023,8,29,1,Queensland,153.33247,-27.89486 +2020,12,6,1,Queensland,153.4417,-28.14965 +2022,9,12,2,Queensland,153.40526,-28.11568 +2023,10,19,1,Queensland,153.45491,-28.11891 +2022,4,5,1,Queensland,153.38295,-28.16483 +2021,9,13,2,Queensland,153.44685,-28.09631 +2021,5,12,2,Queensland,153.43248,-28.16682 +2023,1,11,2,Queensland,153.35905,-27.93281 +2023,9,10,1,Queensland,153.36292,-27.93387 +2021,9,15,1,Queensland,153.32912,-27.89065 +2022,8,24,1,Queensland,153.34244,-27.909 +2020,6,11,1,Queensland,153.23232,-27.9772 +2021,3,8,1,Queensland,153.32912,-27.89065 +2021,11,16,1,Queensland,153.4483,-28.09204 +2023,4,17,1,Queensland,153.35737,-27.93354 +2023,1,7,1,Queensland,153.45506,-28.09381 +2023,10,29,2,Queensland,153.32912,-27.89066 +2022,10,27,1,Queensland,153.36212,-27.94931 +2022,5,30,1,Queensland,153.44447,-28.09539 +2020,1,10,1,Queensland,153.44227,-28.14977 +2022,4,18,1,Queensland,153.44217,-28.14328 +2020,12,24,1,Queensland,153.23212,-27.97687 +2023,2,9,1,Queensland,153.44847,-28.09756 +2022,6,16,1,Queensland,153.3572,-27.94997 +2021,6,15,1,Queensland,153.32885,-27.89071 +2020,9,13,1,Queensland,153.44528,-28.13568 +2021,9,29,1,Queensland,153.32792,-27.92599 +2020,4,8,1,Queensland,153.41677,-28.17248 +2020,12,4,1,Queensland,153.25972,-27.96181 +2023,11,12,1,Queensland,153.41684,-28.14475 +2023,1,5,1,Queensland,153.31591,-27.89911 +2020,9,3,1,Queensland,153.23214,-27.97718 +2021,11,13,1,Queensland,153.28905,-27.91605 +2021,9,14,1,Queensland,153.38526,-28.11069 +2022,12,4,1,Queensland,153.45262,-28.09581 +2020,2,16,1,Queensland,153.44649,-28.14033 +2021,11,20,1,Queensland,153.28906,-27.88021 +2023,8,27,1,Queensland,153.37492,-27.94742 +2021,5,17,1,Queensland,153.45589,-28.09196 +2020,4,24,1,Queensland,153.40856,-28.17153 +2022,10,10,1,Queensland,153.38258,-27.95157 +2020,1,11,1,Queensland,153.27836,-28.01587 +2021,1,8,1,Queensland,153.23183,-27.97716 +2020,12,28,2,Queensland,153.32893,-27.89083 +2021,11,4,1,Queensland,153.32579,-27.89689 +2022,6,25,1,Queensland,153.32912,-27.89065 +2021,8,22,1,Queensland,153.3818,-27.90571 +2023,8,6,1,Queensland,153.44816,-28.09729 +2022,11,22,1,Queensland,153.35865,-27.95417 +2021,10,10,1,Queensland,153.44401,-28.1247 +2023,10,2,1,Queensland,153.36572,-27.92994 +2020,1,5,2,Queensland,153.45224,-28.09592 +2020,8,27,1,Queensland,153.45592,-28.147343 +2023,7,20,1,Queensland,153.41353,-28.14489 +2023,2,16,1,Queensland,153.26249,-27.89212 +2022,8,23,1,Queensland,153.3597,-28.12929 +2020,9,10,1,Queensland,153.44746,-28.09334 +2023,1,13,1,Queensland,153.35905,-27.93309 +2021,2,13,1,Queensland,153.44653,-28.14043 +2021,7,10,1,Queensland,153.33185,-27.91612 +2022,3,8,1,Queensland,153.40825,-28.11806 +2023,8,28,1,Queensland,153.3387,-27.909 +2020,4,2,1,Queensland,153.4186,-28.17243 +2021,4,9,1,Queensland,153.39295,-28.11479 +2022,9,15,2,Queensland,153.36162,-27.93914 +2021,8,3,2,Queensland,153.37325,-27.91508 +2020,10,20,2,Queensland,153.32921,-27.89091 +2023,10,26,1,Queensland,153.388,-27.92203 +2021,9,5,1,Queensland,153.45121,-28.16161 +2020,10,25,1,Queensland,153.45417,-28.13687 +2023,10,8,2,Queensland,153.42763,-28.1183 +2020,7,1,1,Queensland,153.41765,-28.14823 +2021,4,15,1,Queensland,153.37597,-27.95762 +2022,8,30,1,Queensland,153.37523,-28.10174 +2021,9,4,2,Queensland,153.41025,-28.11454 +2021,1,5,1,Queensland,153.243,-27.9807 +2021,9,20,1,Queensland,153.44649,-28.09226 +2022,4,19,1,Queensland,153.37323,-27.94694 +2023,10,28,1,Queensland,153.36646,-27.94588 +2020,1,16,1,Queensland,153.23226,-27.97674 +2020,8,31,1,Queensland,153.40378,-28.11811 +2021,7,21,2,Queensland,153.3322,-27.84971 +2022,9,15,1,Queensland,153.33418,-27.90943 +2020,8,29,1,Queensland,153.44946,-28.10007 +2022,8,25,1,Queensland,153.36796,-27.94576 +2023,6,8,1,Queensland,153.35786,-27.94111 +2023,7,11,1,Queensland,153.41408,-28.14496 +2023,7,9,1,Queensland,153.44816,-28.09758 +2020,5,9,1,Queensland,153.33553,-27.89136 +2023,1,21,1,Queensland,153.46025,-28.12775 +2020,10,3,1,Queensland,153.24099,-28.01874 +2023,2,9,1,Queensland,153.32522,-27.92134 +2022,2,16,1,Queensland,153.44562,-28.10439 +2023,10,2,1,Queensland,153.37704,-27.91935 +2020,9,12,1,Queensland,153.33095,-27.91699 +2020,11,28,1,Queensland,153.43663,-28.13322 +2021,3,12,1,Queensland,153.32912,-27.89065 +2023,7,14,1,Queensland,153.45849,-28.15232 +2021,8,29,1,Queensland,153.33488,-28.16194 +2021,3,7,1,Queensland,153.32912,-27.89065 +2023,9,4,2,Queensland,153.45248,-28.09169 +2022,10,25,1,Queensland,153.35638,-27.93998 +2023,6,7,1,Queensland,153.38215,-27.93293 +2022,10,16,2,Queensland,153.40407,-28.10969 +2021,3,11,2,Queensland,153.44482,-28.10059 +2023,10,27,1,Queensland,153.36501,-27.92852 +2022,9,19,1,Queensland,153.45098,-28.09258 +2023,6,13,1,Queensland,153.38215,-27.93293 +2020,5,2,1,Queensland,153.41062,-28.15064 +2022,12,31,1,Queensland,153.40739,-28.10852 +2022,7,13,1,Queensland,153.44849,-28.09754 +2021,10,18,1,Queensland,153.44946,-28.09895 +2022,12,18,1,Queensland,153.37785,-27.91817 +2022,7,14,1,Queensland,153.44973,-28.13777 +2021,6,6,1,Queensland,153.32912,-27.89065 +2020,6,16,1,Queensland,153.27546,-27.99418 +2023,11,4,1,Queensland,153.27663,-27.99879 +2023,6,16,1,Queensland,153.421,-28.12272 +2020,10,20,1,Queensland,153.22911,-27.89926 +2021,3,11,1,Queensland,153.32912,-27.89065 +2022,8,14,1,Queensland,153.44747,-28.15541 +2021,12,7,1,Queensland,153.43312,-28.13655 +2021,5,18,1,Queensland,153.3748,-27.83649 +2023,9,23,1,Queensland,153.23173,-27.88411 +2022,6,4,1,Queensland,153.32912,-27.89065 +2023,8,28,1,Queensland,153.45192,-28.09205 +2022,8,25,1,Queensland,153.44973,-28.13771 +2023,10,9,1,Queensland,153.37222,-27.9075 +2021,8,20,1,Queensland,153.30188,-27.91343 +2020,2,27,2,Queensland,153.36733,-27.88062 +2022,2,2,1,Queensland,153.36836,-27.8439 +2023,10,12,2,Queensland,153.32819,-27.89498 +2022,12,7,2,Queensland,153.33469,-28.0349 +2022,9,7,2,Queensland,153.37319,-27.9548 +2021,12,28,1,Queensland,153.45015,-28.10091 +2022,10,10,1,Queensland,153.38276,-27.95391 +2021,11,12,1,Queensland,153.43926,-28.14409 +2023,10,21,2,Queensland,153.32875,-27.89041 +2020,11,30,1,Queensland,153.44735,-28.14824 +2023,11,5,2,Queensland,153.36203,-27.9374 +2023,10,4,1,Queensland,153.23808,-27.94441 +2020,10,2,1,Queensland,153.45764,-28.14793 +2020,9,11,2,Queensland,153.32884,-27.89084 +2022,5,25,1,Queensland,153.36221,-27.9325 +2020,8,16,1,Queensland,153.22833,-27.97202 +2022,1,15,1,Queensland,153.36845,-27.93605 +2022,9,15,1,Queensland,153.3623,-27.94031 +2020,10,8,1,Queensland,153.32576,-27.81847 +2021,11,29,1,Queensland,153.33138,-27.88964 +2022,5,24,1,Queensland,153.25052,-27.78838 +2023,9,30,1,Queensland,153.45248,-28.09469 +2023,6,24,1,Queensland,153.36412,-27.92824 +2022,5,20,1,Queensland,153.36203,-27.93209 +2023,11,21,1,Queensland,153.35265,-27.94504 +2023,9,20,1,Queensland,153.3295,-27.8909 +2020,3,3,1,Queensland,153.4369,-28.10735 +2022,9,15,1,Queensland,153.35951,-27.93511 +2021,12,15,1,Queensland,153.3323,-27.84479 +2020,6,19,1,Queensland,153.32795,-27.90609 +2023,5,20,1,Queensland,153.43019,-28.18014 +2023,10,1,1,Queensland,153.41676,-28.15232 +2023,9,16,2,Queensland,153.45096,-28.09126 +2020,10,21,1,Queensland,153.45699,-28.13175 +2023,6,12,2,Queensland,153.46355,-28.1586 +2021,6,6,1,Queensland,153.39841,-28.10645 +2023,10,22,1,Queensland,153.05084,-28.02423 +2020,10,22,1,Queensland,153.45238,-28.09529 +2022,10,3,1,Queensland,153.24145,-27.94779 +2023,9,19,1,Queensland,153.35686,-27.93898 +2023,10,29,1,Queensland,153.27663,-27.99879 +2022,9,4,1,Queensland,153.36641,-27.83236 +2020,10,3,1,Queensland,153.41084,-28.14428 +2023,10,29,2,Queensland,153.26318,-27.95254 +2022,11,15,1,Queensland,153.44653,-28.14043 +2021,10,23,2,Queensland,153.45406,-28.0925 +2020,11,1,1,Queensland,153.45569,-28.14958 +2020,2,7,1,Queensland,153.4525,-28.09611 +2020,9,30,1,Queensland,153.36737,-27.88124 +2021,11,5,1,Queensland,153.41884,-28.12942 +2022,5,4,1,Queensland,153.39285,-28.11476 +2023,8,19,1,Queensland,153.37439,-27.9133 +2022,6,28,1,Queensland,153.32912,-27.89065 +2022,6,15,1,Queensland,153.33144,-27.91458 +2021,1,27,1,Queensland,153.44984,-28.10115 +2023,7,30,1,Queensland,153.39293,-28.11386 +2021,9,21,1,Queensland,153.32912,-27.89065 +2022,9,15,1,Queensland,153.2516,-27.78821 +2022,9,15,1,Queensland,153.36484,-27.95396 +2020,9,9,1,Queensland,153.42529,-28.12809 +2020,9,15,1,Queensland,153.42988,-28.16097 +2020,6,5,1,Queensland,153.43156,-28.15659 +2021,9,2,1,Queensland,153.44195,-28.10664 +2022,7,9,1,Queensland,153.31513,-28.05275 +2023,8,24,1,Queensland,153.40717,-28.15788 +2023,4,6,1,Queensland,153.36553,-27.93425 +2021,6,4,1,Queensland,153.42558,-28.12976 +2023,4,6,1,Queensland,153.36553,-27.93425 +2021,9,14,1,Queensland,153.33763,-27.85385 +2023,8,2,1,Queensland,153.35706,-27.93385 +2022,3,24,1,Queensland,153.41684,-28.14475 +2021,11,8,1,Queensland,153.37941,-27.82222 +2023,9,1,1,Queensland,153.32494,-27.89181 +2022,10,14,1,Queensland,153.33014,-27.90991 +2022,8,7,1,Queensland,153.31657,-27.89265 +2021,1,15,1,Queensland,153.23207,-27.9765 +2020,9,28,2,Queensland,153.3416,-27.90894 +2023,10,15,1,Queensland,153.27663,-27.99879 +2020,2,17,1,Queensland,153.44644,-28.14035 +2022,10,5,1,Queensland,153.37093,-27.84049 +2021,2,25,1,Queensland,153.37483,-28.11081 +2022,8,20,1,Queensland,153.34788,-28.10078 +2023,8,28,1,Queensland,153.43108,-28.1858 +2021,9,4,1,Queensland,153.32762,-28.0085 +2022,9,15,1,Queensland,153.3616,-27.93983 +2022,9,5,1,Queensland,153.44849,-28.09754 +2023,6,12,1,Queensland,153.37501,-28.10132 +2020,12,11,1,Queensland,153.30312,-27.96918 +2023,8,5,1,Queensland,153.325,-27.91659 +2020,10,13,1,Queensland,153.23697,-27.77363 +2023,12,10,1,Queensland,153.39278,-28.11057 +2021,8,15,1,Queensland,153.27557,-27.97433 +2023,8,24,1,Queensland,153.32912,-27.89066 +2021,8,31,1,Queensland,153.35661,-27.93737 +2020,10,19,1,Queensland,153.23214,-27.97718 +2020,11,22,1,Queensland,153.32926,-27.89069 +2022,12,14,1,Queensland,153.45276,-28.09639 +2022,1,13,1,Queensland,153.43343,-28.12028 +2021,1,5,1,Queensland,153.22201,-27.95378 +2022,10,25,1,Queensland,153.40416,-28.15031 +2021,1,3,1,Queensland,153.35623,-27.95496 +2022,12,14,1,Queensland,153.33026,-27.91385 +2021,10,21,2,Queensland,153.44787,-28.10127 +2022,4,23,2,Queensland,153.32755,-27.88533 +2023,7,17,1,Queensland,153.35912,-27.9342 +2020,9,17,1,Queensland,153.37751,-27.94915 +2020,1,6,1,Queensland,153.39417,-28.12338 +2022,4,5,2,Queensland,153.36234,-27.84472 +2020,4,29,1,Queensland,153.4525,-28.09582 +2023,1,29,1,Queensland,153.41855,-28.1301 +2020,7,6,1,Queensland,153.23213,-27.97714 +2023,11,26,1,Queensland,153.32912,-27.89066 +2020,10,12,1,Queensland,153.2303,-28.1272 +2023,6,8,1,Queensland,153.44867,-28.09848 +2023,3,26,1,Queensland,153.36401,-27.92864 +2023,4,23,1,Queensland,153.32912,-27.89066 +2020,10,3,1,Queensland,153.44647,-28.14032 +2021,5,9,1,Queensland,153.44697,-28.13977 +2021,8,27,2,Queensland,153.45499,-28.09372 +2022,6,6,1,Queensland,153.36297,-27.934 +2021,5,27,1,Queensland,153.33293,-27.91355 +2023,4,16,1,Queensland,153.35756,-27.93362 +2020,10,19,1,Queensland,153.43781,-28.13888 +2023,6,3,1,Queensland,153.3081,-28.0253 +2023,7,10,1,Queensland,153.36036,-27.93605 +2020,10,22,1,Queensland,153.32916,-27.89096 +2020,12,9,1,Queensland,153.3296,-27.8905 +2023,10,24,1,Queensland,153.32712,-28.01354 +2023,8,22,1,Queensland,153.42706,-28.15586 +2020,9,19,1,Queensland,153.43705,-28.139 +2023,10,11,1,Queensland,153.42762,-28.12229 +2022,9,18,1,Queensland,153.44849,-28.09754 +2020,9,2,1,Queensland,153.4572,-28.1259 +2023,8,29,1,Queensland,153.43464,-28.14508 +2023,12,8,1,Queensland,153.26504,-27.84465 +2023,2,15,1,Queensland,153.45129,-28.14164 +2023,3,7,1,Queensland,153.38148,-28.13543 +2022,10,14,1,Queensland,153.45486,-28.09895 +2023,4,16,1,Queensland,153.34769,-28.1215 +2020,1,12,1,Queensland,153.37492,-27.90851 +2023,8,16,2,Queensland,153.32912,-27.89066 +2023,10,10,2,Queensland,153.32912,-27.89066 +2022,10,18,1,Queensland,153.35772,-27.94045 +2020,9,4,1,Queensland,153.341043,-28.156009 +2020,6,5,1,Queensland,153.43156,-28.15659 +2022,9,7,1,Queensland,153.41864,-28.11436 +2023,8,16,1,Queensland,153.42743,-28.1184 +2021,4,16,1,Queensland,153.46108,-28.14821 +2021,3,15,1,Queensland,153.27691,-27.8248 +2023,10,31,1,Queensland,153.31409,-28.00746 +2020,8,6,1,Queensland,153.24062,-28.01913 +2022,4,3,1,Queensland,153.32912,-27.89065 +2022,10,14,1,Queensland,153.43237,-28.16539 +2023,5,27,1,Queensland,153.37441,-27.93165 +2021,9,18,1,Queensland,153.32912,-27.89065 +2023,10,11,1,Queensland,153.36489,-27.93165 +2020,9,17,1,Queensland,153.24733,-28.03502 +2021,12,14,1,Queensland,153.45285,-28.09443 +2022,7,23,1,Queensland,153.34844,-27.84192 +2022,4,26,1,Queensland,153.32774,-28.01279 +2023,9,16,1,Queensland,153.45465,-28.09449 +2023,11,14,1,Queensland,153.35781,-27.94107 +2023,9,23,1,Queensland,153.36426,-27.92922 +2022,9,25,1,Queensland,153.32951,-27.89093 +2023,8,28,2,Queensland,153.44816,-28.09758 +2021,10,6,1,Queensland,153.43814,-28.15664 +2023,10,29,1,Queensland,153.4071,-28.14586 +2023,7,16,1,Queensland,153.35909,-27.93403 +2020,12,27,2,Queensland,153.32893,-27.89083 +2020,1,2,1,Queensland,153.23232,-27.9772 +2020,9,12,1,Queensland,153.44514,-28.14495 +2023,1,23,1,Queensland,153.36036,-27.93605 +2023,3,22,1,Queensland,153.37097,-27.96047 +2023,9,1,1,Queensland,153.36036,-27.93605 +2020,9,27,1,Queensland,153.33083,-27.91694 +2023,8,31,2,Queensland,153.32875,-27.89041 +2021,7,19,1,Queensland,153.35788,-27.84612 +2020,9,23,2,Queensland,153.35641,-27.92225 +2020,11,5,1,Queensland,153.33471,-27.84726 +2022,8,17,1,Queensland,153.26838,-28.01403 +2020,8,8,1,Queensland,153.34184,-27.909 +2023,10,25,1,Queensland,153.45199,-28.09188 +2020,8,12,1,Queensland,153.34269,-27.88863 +2021,11,3,1,Queensland,153.3738,-27.93441 +2022,10,23,1,Queensland,153.3528,-27.92436 +2023,9,13,1,Queensland,153.41396,-28.11885 +2023,8,3,1,Queensland,153.35715,-27.94155 +2023,11,3,1,Queensland,153.45143,-28.0998 +2022,11,18,1,Queensland,153.42965,-28.1216 +2023,6,13,1,Queensland,153.44864,-28.09841 +2020,12,15,1,Queensland,153.23253,-27.9772 +2020,10,22,1,Queensland,153.39812,-28.2048 +2020,8,22,1,Queensland,153.36477,-27.93389 +2020,4,3,1,Queensland,153.35949,-27.9029 +2021,2,25,1,Queensland,153.31995,-27.90796 +2020,5,8,1,Queensland,153.32849,-27.90222 +2020,9,14,1,Queensland,153.33611,-27.81423 +2023,4,16,1,Queensland,153.37955,-27.94282 +2023,11,23,2,Queensland,153.45093,-28.13214 +2021,7,11,1,Queensland,153.44076,-28.16161 +2022,10,5,2,Queensland,153.37325,-27.94156 +2023,12,10,1,Queensland,153.45618,-28.13132 +2020,8,18,1,Queensland,153.43645,-28.16617 +2021,4,30,1,Queensland,153.45019,-28.14659 +2022,10,19,1,Queensland,153.35726,-27.95002 +2022,7,30,1,Queensland,153.43785,-28.16966 +2022,3,16,1,Queensland,153.25919,-27.83191 +2021,9,14,1,Queensland,153.4595,-28.1549 +2021,10,16,1,Queensland,153.44575,-28.09205 +2020,9,5,1,Queensland,153.42884,-28.15363 +2023,5,28,1,Queensland,153.45642,-28.16274 +2022,4,26,1,Queensland,153.45056,-28.1443 +2022,8,9,1,Queensland,153.3835,-27.92238 +2020,1,12,1,Queensland,153.44086,-28.11744 +2020,12,7,1,Queensland,153.23279,-27.97698 +2021,8,27,1,Queensland,153.42737,-28.14175 +2022,9,11,1,Queensland,153.38989,-27.89438 +2020,4,28,1,Queensland,153.3648,-27.95031 +2022,4,17,1,Queensland,153.44217,-28.14328 +2023,11,7,1,Queensland,153.36297,-27.93399 +2020,10,3,1,Queensland,153.32691,-27.90246 +2023,8,15,1,Queensland,153.40717,-28.15788 +2020,9,3,2,Queensland,153.22699,-27.9618 +2020,1,13,1,Queensland,153.37871,-28.11292 +2023,5,7,1,Queensland,153.36036,-27.93605 +2022,9,1,2,Queensland,153.39023,-28.19386 +2023,12,7,1,Queensland,153.27663,-27.99879 +2023,11,2,1,Queensland,153.36782,-27.92951 +2021,3,6,1,Queensland,153.4521,-28.10013 +2020,9,30,1,Queensland,153.45087,-28.0924 +2021,10,17,1,Queensland,153.35736,-27.84484 +2022,7,4,1,Queensland,153.36284,-27.9338 +2022,10,1,1,Queensland,153.36845,-27.89826 +2020,8,10,1,Queensland,153.36181,-27.95487 +2020,12,13,1,Queensland,153.45018,-28.14835 +2020,11,9,1,Queensland,153.45348,-28.13822 +2023,9,19,1,Queensland,153.44535,-28.09601 +2023,7,27,1,Queensland,153.34775,-28.13796 +2022,10,30,2,Queensland,153.38892,-28.11761 +2020,10,29,1,Queensland,153.43879,-28.13844 +2023,5,27,1,Queensland,153.45258,-28.09215 +2021,5,18,1,Queensland,153.44299,-28.09794 +2023,10,11,1,Queensland,153.40717,-28.15788 +2023,5,19,1,Queensland,153.44904,-28.09765 +2023,10,27,1,Queensland,153.38523,-27.95207 +2021,10,28,2,Queensland,153.38339,-27.9211 +2023,4,6,1,Queensland,153.31539,-28.052 +2022,10,6,1,Queensland,153.34867,-27.84245 +2021,8,13,1,Queensland,153.32776,-27.90062 +2023,9,23,1,Queensland,153.23209,-27.88388 +2023,2,17,1,Queensland,153.45509,-28.13852 +2022,8,4,1,Queensland,153.36211,-27.93227 +2022,12,31,1,Queensland,153.45254,-28.09655 +2022,12,3,1,Queensland,153.38439,-27.92259 +2021,6,20,1,Queensland,153.32505,-27.89471 +2023,11,27,1,Queensland,153.31581,-27.89247 +2023,7,30,1,Queensland,153.36201,-27.9335 +2022,11,3,1,Queensland,153.35281,-27.8408 +2021,12,18,1,Queensland,153.32414,-27.89667 +2023,10,14,2,Queensland,153.36648,-27.95163 +2020,4,27,1,Queensland,153.32921,-27.89009 +2020,10,13,1,Queensland,153.43407,-28.12192 +2022,8,29,1,Queensland,153.34802,-27.84201 +2020,10,19,1,Queensland,153.40999,-28.11742 +2020,2,27,1,Queensland,153.42027,-28.17228 +2022,9,2,1,Queensland,153.38167,-27.96512 +2020,10,29,1,Queensland,153.32889,-27.89086 +2023,2,19,1,Queensland,153.45584,-28.13232 +2021,8,22,1,Queensland,153.43312,-28.15431 +2020,9,11,1,Queensland,153.32961,-27.89048 +2020,11,7,1,Queensland,153.2228,-27.95356 +2020,7,30,1,Queensland,153.27205,-28.01315 +2020,9,26,1,Queensland,153.44695,-28.09543 +2021,12,17,1,Queensland,153.33845,-27.85493 +2021,4,14,1,Queensland,153.41873,-28.15015 +2022,10,21,1,Queensland,153.36102,-27.94026 +2023,8,7,1,Queensland,153.44339,-28.09357 +2022,1,27,2,Queensland,153.45552,-28.14289 +2021,3,4,1,Queensland,153.24525,-27.96671 +2020,6,24,1,Queensland,153.33904,-27.90732 +2022,8,3,1,Queensland,153.35685,-27.93822 +2020,8,12,1,Queensland,153.38813,-28.08924 +2020,8,31,2,Queensland,153.44778,-28.0926 +2022,8,5,1,Queensland,153.45975,-28.09287 +2020,7,6,1,Queensland,153.44108,-28.1546 +2021,11,18,1,Queensland,153.31078,-28.02928 +2020,1,5,1,Queensland,153.39581,-28.11951 +2022,1,22,1,Queensland,153.40825,-28.11806 +2023,10,15,1,Queensland,153.45214,-28.09549 +2021,1,6,1,Queensland,153.45613,-28.09435 +2022,8,11,1,Queensland,153.4491,-28.11825 +2020,4,1,1,Queensland,153.42778,-28.14739 +2023,10,15,1,Queensland,153.42324,-28.15264 +2023,5,27,1,Queensland,153.36304,-27.92842 +2020,11,28,2,Queensland,153.44195,-28.10664 +2022,11,17,1,Queensland,153.35438,-27.94891 +2020,11,14,1,Queensland,153.45798,-28.1381 +2020,9,9,1,Queensland,153.383,-27.9474 +2020,11,17,1,Queensland,153.23245,-27.9772 +2020,4,26,1,Queensland,153.438,-28.131 +2021,9,8,1,Queensland,153.32912,-27.89065 +2021,12,6,1,Queensland,153.40825,-28.11806 +2023,10,13,1,Queensland,153.27041,-27.81077 +2020,1,19,1,Queensland,153.31916,-28.0577 +2022,4,22,1,Queensland,153.32912,-27.89065 +2023,7,15,1,Queensland,153.36421,-27.92826 +2023,10,21,1,Queensland,153.26504,-27.84465 +2022,9,19,1,Queensland,153.32912,-27.89065 +2023,9,15,1,Queensland,153.3621,-28.07936 +2020,7,29,1,Queensland,153.31163,-28.0964 +2022,11,19,1,Queensland,153.32157,-27.84635 +2021,10,4,1,Queensland,153.32912,-27.89065 +2022,6,27,1,Queensland,153.32912,-27.89065 +2021,9,11,1,Queensland,153.33282,-27.92194 +2020,1,12,2,Queensland,153.33447,-27.8927 +2021,8,21,1,Queensland,153.32912,-27.89065 +2023,6,18,1,Queensland,153.35928,-27.93386 +2021,9,11,1,Queensland,153.32912,-27.89065 +2020,5,26,1,Queensland,153.4358,-28.13012 +2023,7,20,1,Queensland,153.44794,-28.09729 +2021,12,20,1,Queensland,153.45141,-28.14111 +2022,9,10,1,Queensland,153.32912,-27.89065 +2020,11,8,1,Queensland,153.45319,-28.09393 +2020,8,12,1,Queensland,153.23236,-27.97723 +2021,11,16,1,Queensland,153.32912,-27.89065 +2023,10,30,2,Queensland,153.4518,-28.09178 +2022,8,7,1,Queensland,153.37412,-27.91055 +2022,8,17,1,Queensland,153.3578,-27.93214 +2021,9,25,1,Queensland,153.32578,-28.08985 +2021,11,12,2,Queensland,153.32912,-27.89065 +2021,4,13,1,Queensland,153.44794,-28.09729 +2020,11,9,1,Queensland,153.44769,-28.09777 +2020,2,26,1,Queensland,153.45396,-28.14713 +2023,11,1,1,Queensland,153.33959,-28.0405 +2020,12,5,1,Queensland,153.23235,-27.97725 +2023,9,27,1,Queensland,153.38608,-27.90492 +2021,11,18,2,Queensland,153.32912,-27.89065 +2020,8,11,1,Queensland,153.44881,-28.14922 +2023,5,3,1,Queensland,153.3218,-27.91989 +2020,9,3,1,Queensland,153.44101,-28.10805 +2021,6,19,1,Queensland,153.45149,-28.16069 +2023,11,3,1,Queensland,153.35641,-27.93914 +2023,9,20,1,Queensland,153.3815,-28.13545 +2021,11,3,1,Queensland,153.35751,-27.84526 +2022,12,2,1,Queensland,153.22721,-27.94704 +2020,5,30,1,Queensland,153.23232,-27.9772 +2021,7,19,1,Queensland,153.33817,-27.89254 +2022,12,24,1,Queensland,153.36203,-27.9374 +2022,6,7,1,Queensland,153.44904,-28.16222 +2020,11,8,1,Queensland,153.2316,-27.97781 +2022,2,9,1,Queensland,153.37055,-27.89769 +2023,5,27,1,Queensland,153.33817,-27.89254 +2022,9,20,1,Queensland,153.32729,-27.92333 +2020,9,26,1,Queensland,153.43012,-28.12342 +2020,10,6,1,Queensland,153.23217,-27.97716 +2021,10,3,1,Queensland,153.42207,-28.15045 +2020,11,11,2,Queensland,153.31896,-28.13616 +2023,12,15,1,Queensland,153.25002,-27.9453 +2021,2,28,1,Queensland,153.3812,-27.91764 +2022,3,7,1,Queensland,153.37715,-27.91856 +2021,3,4,1,Queensland,153.33817,-27.89254 +2022,9,9,1,Queensland,153.42059,-28.14991 +2023,9,23,1,Queensland,153.45188,-28.0921 +2023,2,27,1,Queensland,153.29336,-27.86102 +2023,7,10,1,Queensland,153.35906,-27.93405 +2023,10,23,1,Queensland,153.44436,-28.12944 +2023,8,16,1,Queensland,153.32736,-27.92606 +2022,3,25,2,Queensland,153.18436,-28.01711 +2023,12,12,1,Queensland,153.25002,-27.9453 +2023,5,28,1,Queensland,153.45001,-28.09275 +2022,7,28,1,Queensland,153.27493,-27.94766 +2021,10,25,1,Queensland,153.36942,-28.10921 +2021,6,4,1,Queensland,153.43236,-28.16536 +2020,1,5,1,Queensland,153.39586,-28.11952 +2023,7,24,1,Queensland,153.40571,-28.14696 +2022,8,27,1,Queensland,153.44842,-28.15372 +2020,2,2,1,Queensland,153.45426,-28.13985 +2022,1,23,1,Queensland,153.37477,-28.1014 +2022,12,19,1,Queensland,153.33346,-27.91389 +2022,11,6,1,Queensland,153.36561,-27.93425 +2023,5,12,1,Queensland,153.35682,-27.93899 +2022,1,4,2,Queensland,153.39297,-27.94401 +2022,9,6,1,Queensland,153.373,-27.94014 +2020,9,25,1,Queensland,153.4431,-28.14246 +2021,11,11,1,Queensland,153.44969,-28.16155 +2023,7,15,1,Queensland,153.35866,-27.93318 +2020,6,6,1,Queensland,153.44581,-28.09538 +2020,11,20,1,Queensland,153.3597,-27.95651 +2022,7,24,1,Queensland,153.36588,-27.93786 +2022,7,29,1,Queensland,153.36693,-28.10614 +2022,4,20,1,Queensland,153.44236,-28.14352 +2021,10,11,1,Queensland,153.35748,-27.84543 +2021,6,20,1,Queensland,153.40135,-28.11411 +2022,3,17,1,Queensland,153.29956,-28.04272 +2021,2,20,1,Queensland,153.4536,-28.14618 +2022,6,10,1,Queensland,153.40564,-28.15236 +2023,9,7,1,Queensland,153.36409,-27.92863 +2020,7,15,1,Queensland,153.23236,-27.97723 +2022,12,2,1,Queensland,153.35868,-27.93195 +2020,9,30,1,Queensland,153.4442,-28.09352 +2023,8,13,1,Queensland,153.29964,-27.89988 +2020,6,13,1,Queensland,153.29931,-27.98484 +2023,4,6,1,Queensland,153.36442,-27.93409 +2021,3,26,1,Queensland,153.43453,-28.12296 +2023,8,29,1,Queensland,153.4516,-28.09166 +2023,9,17,1,Queensland,153.37589,-27.83597 +2022,1,31,1,Queensland,153.32912,-27.89065 +2021,1,27,2,Queensland,153.44731,-28.10049 +2021,9,10,1,Queensland,153.39172,-28.12448 +2020,6,2,1,Queensland,153.44906,-28.09166 +2021,9,16,1,Queensland,153.44957,-28.14928 +2022,11,7,1,Queensland,153.32912,-27.89065 +2021,8,12,1,Queensland,153.40644,-28.1705 +2020,8,31,1,Queensland,153.23208,-27.97716 +2020,2,23,1,Queensland,153.44877,-28.10085 +2020,12,17,1,Queensland,153.32938,-27.89044 +2023,3,28,1,Queensland,153.37103,-27.96045 +2021,10,27,1,Queensland,153.45472,-28.09383 +2021,11,18,1,Queensland,153.38827,-27.94733 +2020,7,19,2,Queensland,153.45187,-28.09204 +2022,3,19,1,Queensland,153.3786,-27.95824 +2020,10,30,1,Queensland,153.29906,-27.89944 +2022,12,18,1,Queensland,153.37867,-27.92449 +2023,8,26,1,Queensland,153.42761,-28.11844 +2020,4,23,1,Queensland,153.37154,-27.92634 +2022,8,17,1,Queensland,153.44849,-28.09754 +2023,3,21,1,Queensland,153.33406,-27.89087 +2023,4,23,1,Queensland,153.35817,-28.10905 +2023,11,10,1,Queensland,153.35715,-27.94158 +2022,1,31,2,Queensland,153.37126,-27.90424 +2021,4,16,1,Queensland,153.44803,-28.09549 +2021,7,14,1,Queensland,153.44583,-28.13639 +2022,11,30,1,Queensland,153.43917,-28.10382 +2022,10,14,1,Queensland,153.45041,-28.09697 +2020,5,13,1,Queensland,153.32329,-27.88956 +2022,9,13,1,Queensland,153.36592,-27.95418 +2020,7,23,1,Queensland,153.32895,-27.89085 +2020,9,6,1,Queensland,153.44216,-28.14948 +2021,9,14,2,Queensland,153.34517,-27.93955 +2020,10,9,1,Queensland,153.43696,-28.14251 +2023,8,6,1,Queensland,153.40717,-28.15788 +2023,12,13,1,Queensland,153.45389,-28.13751 +2022,10,1,1,Queensland,153.32818,-27.90294 +2022,12,10,1,Queensland,153.32912,-27.89065 +2021,9,12,1,Queensland,153.33697,-27.83737 +2021,7,22,1,Queensland,153.45291,-28.09631 +2023,4,3,1,Queensland,153.3654,-27.94935 +2021,7,9,1,Queensland,153.32939,-27.89041 +2021,9,7,1,Queensland,153.36206,-27.92676 +2023,10,27,1,Queensland,153.23226,-27.97683 +2021,1,2,1,Queensland,153.43732,-28.13934 +2021,9,14,1,Queensland,153.45772,-28.15254 +2022,5,23,1,Queensland,153.3576,-28.09352 +2021,12,7,2,Queensland,153.44007,-28.10114 +2020,9,21,1,Queensland,153.3295,-27.89059 +2020,10,13,1,Queensland,153.4577,-28.1469 +2023,2,28,1,Queensland,153.40366,-27.98517 +2023,7,2,1,Queensland,153.36036,-27.93605 +2023,7,28,1,Queensland,153.44692,-28.13786 +2021,2,9,1,Queensland,153.31909,-27.97364 +2022,9,23,1,Queensland,153.32912,-27.89065 +2021,9,14,2,Queensland,153.39235,-28.10846 +2021,1,5,1,Queensland,153.44843,-28.10059 +2022,7,14,1,Queensland,153.32912,-27.89065 +2023,10,14,1,Queensland,153.36668,-27.92915 +2020,10,17,1,Queensland,153.23208,-27.97716 +2022,2,28,1,Queensland,153.40517,-28.11519 +2020,6,1,1,Queensland,153.3192,-27.82608 +2022,11,5,1,Queensland,153.25237,-28.01155 +2023,9,10,1,Queensland,153.45192,-28.09209 +2023,9,1,1,Queensland,153.45159,-28.09165 +2023,4,16,1,Queensland,153.36569,-27.94475 +2023,2,7,1,Queensland,153.42558,-28.12409 +2020,1,9,1,Queensland,153.23246,-27.97717 +2022,7,24,1,Queensland,153.44849,-28.09754 +2021,1,31,2,Queensland,153.23174,-27.97738 +2020,9,24,1,Queensland,153.43936,-28.13818 +2022,9,23,1,Queensland,153.44849,-28.09754 +2021,10,29,1,Queensland,153.35133,-28.12982 +2023,10,24,1,Queensland,153.41259,-28.17535 +2022,9,15,1,Queensland,153.42547,-28.12389 +2023,4,25,1,Queensland,153.45258,-28.09215 +2022,7,7,1,Queensland,153.44849,-28.09754 +2023,7,25,1,Queensland,153.44179,-28.12688 +2021,10,21,2,Queensland,153.35465,-28.09073 +2022,7,21,1,Queensland,153.44849,-28.09754 +2020,12,29,1,Queensland,153.32893,-27.89083 +2022,10,19,1,Queensland,153.32686,-27.89993 +2022,12,8,1,Queensland,153.31681,-28.02137 +2020,11,25,2,Queensland,153.32884,-27.89095 +2021,10,25,2,Queensland,153.35916,-27.93229 +2020,9,14,1,Queensland,153.23269,-27.97697 +2020,10,23,2,Queensland,153.3289,-27.89086 +2020,9,15,1,Queensland,153.22982,-27.97196 +2020,11,13,1,Queensland,153.32944,-27.89059 +2020,8,11,1,Queensland,153.45046,-28.13213 +2023,4,19,1,Queensland,153.36297,-27.934 +2023,4,17,1,Queensland,153.45393,-28.09229 +2023,11,3,1,Queensland,153.29092,-28.01538 +2022,8,22,1,Queensland,153.28312,-27.87802 +2023,8,30,1,Queensland,153.36893,-27.83278 +2022,8,18,1,Queensland,153.40603,-28.11639 +2021,1,10,1,Queensland,153.24268,-28.05397 +2022,8,8,1,Queensland,153.4299,-28.18238 +2023,12,12,1,Queensland,153.27646,-27.99855 +2023,8,2,1,Queensland,153.44267,-28.14357 +2022,1,22,2,Queensland,153.23015,-27.97464 +2023,11,4,1,Queensland,153.27621,-27.9329 +2023,5,8,1,Queensland,153.32276,-27.89826 +2023,12,15,1,Queensland,153.32912,-27.89066 +2023,11,14,1,Queensland,153.3295,-27.8909 +2022,2,16,1,Queensland,153.43912,-28.15611 +2020,9,12,2,Queensland,153.32893,-27.89088 +2021,10,17,1,Queensland,153.18487,-27.80268 +2023,7,31,2,Queensland,153.32912,-27.89066 +2021,8,6,1,Queensland,153.45307,-28.0969 +2022,1,28,1,Queensland,153.32912,-27.89065 +2023,8,15,2,Queensland,153.42199,-28.12122 +2020,3,23,1,Queensland,153.23234,-27.97686 +2023,8,25,1,Queensland,153.3576,-27.94055 +2023,7,6,1,Queensland,153.44854,-28.09753 +2020,11,24,1,Queensland,153.23232,-27.9772 +2022,10,15,1,Queensland,153.40489,-28.11301 +2021,10,12,1,Queensland,153.31661,-28.00801 +2020,6,15,1,Queensland,153.3856,-27.94806 +2020,8,7,1,Queensland,153.45775,-28.09906 +2021,10,20,1,Queensland,153.28853,-27.91702 +2020,10,9,1,Queensland,153.32339,-27.90906 +2021,3,5,1,New South Wales,153.46178,-28.58893 +2020,9,4,1,Queensland,153.23208,-27.97716 +2020,9,30,1,Queensland,153.23214,-27.97718 +2020,2,10,1,Queensland,153.43787,-28.13885 +2023,8,27,1,Queensland,153.44646,-28.13718 +2021,9,14,1,Queensland,153.37685,-27.87584 +2022,7,15,1,Queensland,153.32294,-27.89049 +2023,11,20,1,Queensland,153.39373,-28.11307 +2023,11,9,1,Queensland,153.27663,-27.99879 +2021,7,26,1,Queensland,153.45922,-28.09197 +2020,8,18,1,Queensland,153.27641,-27.9961 +2022,9,12,1,Queensland,153.40526,-28.11568 +2023,10,9,1,Queensland,153.27663,-27.99879 +2023,8,6,1,Queensland,153.27663,-27.9988 +2020,3,21,1,Queensland,153.32505,-27.92115 +2022,9,18,1,Queensland,153.37643,-27.91898 +2021,5,9,1,Queensland,153.39706,-28.11839 +2020,4,4,1,Queensland,153.34157,-27.90894 +2020,12,3,1,Queensland,153.37342,-27.94118 +2023,5,27,1,Queensland,153.45198,-28.13871 +2021,2,9,1,Queensland,153.37905,-27.8231 +2022,11,21,1,Queensland,153.37948,-27.8924 +2023,6,5,1,Queensland,153.3631,-27.93415 +2022,10,29,1,Queensland,153.41364,-28.11831 +2022,8,25,1,Queensland,153.2337,-27.97286 +2022,9,9,1,Queensland,153.36842,-27.83863 +2022,12,21,1,Queensland,152.76378,-26.75037 +2020,8,23,1,Queensland,153.33708,-27.90819 +2020,7,15,1,Queensland,153.32413,-27.89639 +2022,9,19,1,Queensland,153.44636,-28.14209 +2023,3,18,1,Queensland,153.30518,-27.84476 +2022,8,12,1,Queensland,153.34037,-27.91657 +2022,11,21,1,Queensland,153.38011,-27.89231 +2021,9,8,1,Queensland,153.44678,-28.15399 +2020,2,1,1,Queensland,153.45252,-28.09625 +2023,11,13,1,Queensland,153.40717,-28.15788 +2023,4,6,1,Queensland,153.3658,-27.93565 +2022,2,16,1,Queensland,153.3306,-27.91434 +2022,8,26,1,Queensland,153.45514,-28.09736 +2020,1,1,1,Queensland,153.23232,-27.9772 +2020,9,26,1,Queensland,153.44923,-28.09552 +2022,4,3,1,Queensland,153.35751,-27.84526 +2023,10,18,1,Queensland,153.45354,-28.09458 +2020,10,28,2,Queensland,153.32884,-27.89086 +2023,9,30,2,Queensland,153.45159,-28.0914 +2023,10,21,1,Queensland,153.31022,-28.01516 +2020,7,29,1,Queensland,153.23245,-27.977 +2022,2,12,1,Queensland,153.40825,-28.11806 +2020,10,11,1,Queensland,153.35906,-28.09417 +2023,11,21,2,Queensland,153.37867,-27.92449 +2023,8,17,1,Queensland,153.45926,-28.09176 +2021,4,9,1,Queensland,153.4484,-28.16156 +2022,11,11,1,Queensland,153.32912,-27.89065 +2020,1,12,1,Queensland,153.36244,-28.10594 +2020,11,16,1,Queensland,153.23222,-27.97679 +2022,8,22,1,Queensland,153.40603,-28.11639 +2022,12,3,1,Queensland,153.38568,-27.9209 +2020,1,13,1,Queensland,153.26387,-28.01677 +2023,10,21,1,Queensland,153.32732,-27.91655 +2022,2,1,1,Queensland,153.32685,-27.8482 +2020,8,20,1,Queensland,153.27389,-27.83749 +2020,10,10,1,Queensland,153.3099,-27.82319 +2023,7,10,1,Queensland,153.42812,-28.15631 +2023,11,19,1,Queensland,153.34188,-28.10122 +2022,6,1,1,Queensland,153.41684,-28.14475 +2022,9,25,1,Queensland,153.35902,-27.93243 +2023,11,9,1,Queensland,153.35882,-27.94197 +2021,7,23,1,Queensland,153.3581,-28.12755 +2023,1,5,1,Queensland,153.39987,-28.14208 +2021,11,17,2,Queensland,153.43916,-28.1561 +2020,3,3,1,Queensland,153.38019,-27.9567 +2023,2,24,1,Queensland,153.32912,-27.89066 +2023,2,20,1,Queensland,153.29652,-27.89913 +2020,3,13,1,Queensland,153.3787,-27.82317 +2022,10,19,2,Queensland,153.44177,-28.10614 +2022,11,15,1,Queensland,153.22212,-27.95298 +2021,10,10,2,Queensland,153.44454,-28.12584 +2021,9,7,2,Queensland,153.3157,-28.03856 +2022,3,9,1,Queensland,153.32912,-27.89065 +2021,9,12,1,Queensland,153.39382,-28.11815 +2021,1,14,1,Queensland,153.232,-27.97704 +2023,10,15,1,Queensland,153.27326,-27.83978 +2020,12,20,1,Queensland,153.23267,-27.977 +2020,8,5,1,Queensland,153.36457,-27.95068 +2021,11,15,1,Queensland,153.32912,-27.89065 +2022,11,5,1,Queensland,153.23198,-27.97531 +2022,9,18,1,Queensland,153.35334,-27.84047 +2021,6,13,1,Queensland,153.44519,-28.14489 +2023,1,19,1,Queensland,153.3741,-27.8955 +2022,6,29,1,Queensland,153.32912,-27.89065 +2021,8,19,1,Queensland,153.43551,-28.17189 +2022,8,17,2,Queensland,153.23213,-27.97715 +2021,9,13,2,Queensland,153.42402,-28.19695 +2023,1,7,1,Queensland,153.33408,-27.89088 +2022,3,13,1,Queensland,153.35751,-27.84526 +2023,10,4,1,Queensland,153.36036,-27.93605 +2022,8,12,1,Queensland,153.26649,-28.15919 +2023,9,12,1,Queensland,153.36036,-27.93605 +2020,11,27,1,Queensland,153.23156,-27.97707 +2023,7,20,1,Queensland,153.36553,-27.92876 +2020,7,24,1,Queensland,153.23208,-27.97716 +2023,8,15,2,Queensland,153.3295,-27.8909 +2023,10,22,1,Queensland,153.44769,-28.12205 +2020,4,13,1,Queensland,153.28065,-28.04862 +2023,11,15,1,Queensland,153.3604,-27.9338 +2020,1,10,1,Queensland,153.44176,-28.14969 +2023,3,7,1,Queensland,153.36702,-27.88041 +2023,9,17,2,Queensland,153.32276,-27.89826 +2020,11,28,1,Queensland,153.33077,-27.8442 +2021,6,6,1,Queensland,153.39841,-28.10645 +2022,1,4,1,Queensland,153.43116,-28.12019 +2023,8,28,1,Queensland,153.43811,-28.17978 +2022,6,10,1,Queensland,153.33499,-27.89084 +2023,3,26,1,Queensland,153.36505,-27.93241 +2021,9,2,1,Queensland,153.45105,-28.16078 +2022,6,5,1,Queensland,153.31279,-27.82304 +2021,9,2,1,Queensland,153.31743,-27.88874 +2023,1,1,1,Queensland,153.44473,-28.16035 +2022,3,19,1,Queensland,153.3797,-27.93976 +2020,9,15,1,Queensland,153.43386,-28.14685 +2020,9,19,1,Queensland,153.43229,-28.1647 +2021,11,28,1,Queensland,153.25037,-28.07759 +2023,4,23,1,Queensland,153.34345,-27.97683 +2021,2,23,1,Queensland,153.44446,-28.09538 +2020,5,10,1,Queensland,153.44972,-28.09347 +2022,10,2,1,Queensland,153.42416,-28.12303 +2022,11,21,1,Queensland,153.25001,-27.9453 +2022,11,2,1,Queensland,153.37319,-27.9548 +2022,11,16,1,Queensland,153.32761,-28.00853 +2023,11,2,1,Queensland,153.3767,-28.10881 +2023,2,5,1,Queensland,153.41071,-28.14401 +2021,11,2,1,Queensland,153.44219,-28.10512 +2023,6,9,2,Queensland,153.35882,-27.94197 +2022,12,18,1,Queensland,153.36036,-27.93605 +2022,8,21,2,Queensland,153.24523,-27.96664 +2021,9,2,1,Queensland,153.37824,-27.92486 +2022,3,22,1,Queensland,153.37989,-27.90995 +2020,12,21,1,Queensland,153.26969,-27.90093 +2020,8,24,1,Queensland,153.43366,-28.12287 +2023,10,14,1,Queensland,153.36204,-27.93345 +2020,10,4,1,Queensland,153.23214,-27.97718 +2021,7,11,1,Queensland,153.32944,-27.89057 +2020,9,9,1,Queensland,153.32892,-27.89071 +2023,8,20,1,Queensland,153.26504,-27.84465 +2020,1,21,2,Queensland,153.23214,-27.97742 +2023,9,27,1,Queensland,153.42744,-28.11838 +2022,10,31,1,Queensland,153.32587,-27.94693 +2020,2,12,1,Queensland,153.45745,-28.13312 +2022,9,15,1,Queensland,153.36118,-27.93899 +2020,10,8,1,Queensland,153.43743,-28.13882 +2020,1,4,1,Queensland,153.43882,-28.15956 +2021,5,21,2,Queensland,153.36529,-27.9441 +2023,10,5,1,Queensland,153.34425,-28.0928 +2021,4,27,1,Queensland,153.45544,-28.15361 +2020,7,17,1,Queensland,153.2243,-27.97198 +2021,3,16,1,Queensland,153.41482,-28.14444 +2021,1,1,1,Queensland,153.32893,-27.89083 +2023,11,7,1,Queensland,153.36842,-27.92971 +2020,10,22,1,Queensland,153.3294,-27.89045 +2020,9,9,1,Queensland,153.25903,-27.92742 +2023,7,1,1,Queensland,153.32798,-27.91574 +2023,9,26,1,Queensland,153.26571,-28.01039 +2020,9,23,1,Queensland,153.23199,-27.97704 +2023,8,8,1,Queensland,153.33761,-28.10611 +2021,7,6,1,Queensland,153.27847,-27.97745 +2021,7,27,1,Queensland,153.45196,-28.0921 +2021,10,3,1,Queensland,153.43916,-28.15614 +2023,11,15,1,Queensland,153.27663,-27.99879 +2023,4,30,1,Queensland,153.36036,-27.93605 +2021,5,3,1,Queensland,153.46135,-28.14929 +2021,6,14,1,Queensland,153.36339,-27.83524 +2023,3,22,1,Queensland,153.42231,-28.14765 +2021,1,25,1,Queensland,153.21314,-27.72052 +2023,1,26,1,Queensland,153.41072,-28.14399 +2022,10,8,1,Queensland,153.32912,-27.89065 +2021,1,7,1,Queensland,153.23273,-27.97707 +2023,9,22,1,Queensland,153.36439,-27.92943 +2021,6,7,1,Queensland,153.32912,-27.89065 +2020,11,8,1,Queensland,153.44507,-28.14452 +2022,6,1,1,Queensland,153.44447,-28.09539 +2020,10,27,1,Queensland,153.41769,-28.13235 +2022,12,21,1,Queensland,153.39433,-28.10654 +2023,7,24,1,Queensland,153.42321,-28.14956 +2020,9,10,1,Queensland,153.44784,-28.09319 +2023,11,3,1,Queensland,153.33289,-28.03754 +2020,12,13,1,Queensland,153.42433,-28.14605 +2023,2,9,1,Queensland,153.33527,-27.96853 +2022,1,21,1,Queensland,153.3884,-27.91897 +2022,3,4,1,Queensland,153.37476,-28.10148 +2021,7,20,1,Queensland,153.32989,-27.91377 +2021,11,1,1,Queensland,153.45203,-28.10018 +2020,8,20,1,Queensland,153.45524,-28.13092 +2023,10,12,1,Queensland,153.36556,-27.92987 +2020,12,19,1,Queensland,153.42089,-28.15046 +2021,9,16,1,Queensland,153.26567,-27.94068 +2022,8,18,2,Queensland,153.40603,-28.11639 +2020,10,21,1,Queensland,153.32751,-27.88456 +2023,10,25,1,Queensland,153.44553,-28.09434 +2023,4,24,1,Queensland,153.36199,-27.93226 +2020,7,21,1,Queensland,153.45117,-28.14135 +2020,3,6,1,Queensland,153.32792,-27.90618 +2022,5,19,1,Queensland,153.27617,-27.93297 +2020,12,29,1,Queensland,153.45265,-28.09552 +2023,7,8,1,Queensland,153.34736,-28.05638 +2020,8,26,1,Queensland,153.27101,-27.96687 +2023,2,26,1,Queensland,153.38264,-28.14275 +2023,1,9,1,Queensland,153.39345,-28.10983 +2022,6,26,1,Queensland,153.3835,-27.92238 +2020,9,27,1,Queensland,153.44178,-28.1494 +2023,9,5,1,Queensland,153.25075,-27.94588 +2022,4,21,1,Queensland,153.38,-27.95037 +2021,1,1,1,Queensland,153.23199,-27.97705 +2023,3,15,1,Queensland,153.35265,-28.09122 +2020,10,16,1,Queensland,153.38116,-27.95424 +2023,4,28,1,Queensland,153.36036,-27.93605 +2023,2,13,1,Queensland,153.40891,-28.20138 +2022,9,1,1,Queensland,153.36551,-27.94092 +2020,7,4,1,Queensland,153.44021,-28.11405 +2020,7,20,1,Queensland,153.35448,-27.98496 +2023,11,28,1,Queensland,153.32912,-27.89066 +2023,2,25,1,Queensland,153.41807,-28.15029 +2021,9,18,1,Queensland,153.44276,-28.13995 +2021,9,13,1,Queensland,153.36215,-27.92921 +2020,9,6,1,Queensland,153.44065,-28.14999 +2020,6,2,1,Queensland,153.36324,-27.93389 +2021,8,28,1,Queensland,153.25045,-27.87381 +2023,1,29,1,Queensland,153.44853,-28.09751 +2022,10,22,1,Queensland,153.39283,-27.92352 +2023,11,2,1,Queensland,153.36336,-27.92938 +2023,4,10,1,Queensland,153.44862,-28.09845 +2022,7,17,1,Queensland,153.44849,-28.09754 +2021,8,6,1,Queensland,153.4535,-28.09677 +2021,9,19,2,Queensland,153.32594,-27.89266 +2023,10,30,1,Queensland,153.37351,-28.10023 +2023,2,17,1,Queensland,153.36589,-27.9511 +2023,6,22,1,Queensland,153.36588,-27.93025 +2021,1,2,1,Queensland,153.32893,-27.89083 +2021,2,9,1,Queensland,153.37894,-27.82277 +2022,7,8,2,Queensland,153.31224,-28.01703 +2023,1,27,1,Queensland,153.35458,-28.09324 +2023,1,15,1,Queensland,153.43271,-28.16841 +2022,12,22,1,Queensland,153.35493,-27.9189 +2023,5,22,1,Queensland,153.32912,-27.89066 +2022,1,2,2,Queensland,153.32912,-27.89065 +2020,10,16,1,Queensland,153.43355,-28.13592 +2020,11,3,1,Queensland,153.44173,-28.10635 +2021,3,7,1,Queensland,153.32912,-27.89065 +2021,10,4,1,Queensland,153.32867,-27.85106 +2022,9,3,1,Queensland,153.36378,-27.88049 +2020,8,26,1,Queensland,153.455,-28.13121 +2023,1,8,1,Queensland,153.27641,-27.999 +2020,5,15,1,Queensland,153.32921,-27.8909 +2021,6,28,1,Queensland,153.3302,-27.9123 +2021,11,7,2,Queensland,153.44145,-28.15115 +2023,5,10,1,Queensland,153.27657,-27.99826 +2021,12,17,1,Queensland,153.41003,-28.11677 +2023,2,17,1,Queensland,153.44964,-28.15996 +2022,10,14,1,Queensland,153.36234,-27.92971 +2023,9,19,1,Queensland,153.30097,-27.92102 +2023,9,17,1,Queensland,153.42047,-28.15091 +2023,1,3,1,Queensland,153.26504,-27.84465 +2021,11,16,1,Queensland,153.41358,-28.1729 +2023,5,30,1,Queensland,153.43407,-28.18197 +2022,10,13,1,Queensland,153.33102,-27.90208 +2021,8,10,2,Queensland,153.32772,-27.90014 +2022,8,28,1,Queensland,153.35917,-27.94005 +2022,8,26,1,Queensland,153.44849,-28.09754 +2023,9,4,1,Queensland,153.44528,-28.13605 +2020,10,13,1,Queensland,153.37699,-27.87446 +2022,3,27,1,Queensland,153.44709,-28.13696 +2023,10,25,1,Queensland,153.32936,-27.92307 +2020,4,28,1,Queensland,153.45937,-28.1596 +2020,12,8,1,Queensland,153.40769,-28.17161 +2022,1,1,1,Queensland,153.36638,-27.94119 +2023,8,27,1,Queensland,153.44563,-28.09393 +2023,8,26,1,Queensland,153.45413,-28.13751 +2020,1,18,2,Queensland,153.23226,-27.97674 +2023,9,19,1,Queensland,153.44121,-28.11496 +2021,10,13,1,Queensland,153.44807,-28.14378 +2023,6,6,1,Queensland,153.35896,-27.93276 +2023,6,4,1,Queensland,153.4485,-28.09754 +2021,10,17,2,Queensland,153.31213,-28.01962 +2020,9,3,2,Queensland,153.22699,-27.9618 +2023,9,18,1,Queensland,153.28099,-27.85987 +2023,2,16,1,Queensland,153.21202,-27.87213 +2023,11,23,2,Queensland,153.44769,-28.09325 +2022,11,24,1,Queensland,153.35694,-27.93855 +2022,11,25,1,Queensland,153.36518,-27.93241 +2020,9,6,2,Queensland,153.44216,-28.14948 +2020,6,1,1,Queensland,153.43808,-28.12943 +2021,8,24,1,Queensland,153.45033,-28.09782 +2022,9,15,1,Queensland,153.36036,-27.93605 +2021,12,20,1,Queensland,153.4422,-28.14344 +2021,4,16,1,Queensland,153.43859,-28.15513 +2020,1,8,1,Queensland,153.42099,-28.15042 +2021,11,4,1,Queensland,153.41684,-28.14475 +2020,8,7,1,Queensland,153.23208,-27.97716 +2020,10,8,1,Queensland,153.36066,-27.93671 +2022,3,29,1,Queensland,153.32912,-27.89065 +2021,7,30,1,Queensland,153.31165,-28.03899 +2020,11,11,1,Queensland,153.29667,-27.91693 +2020,7,27,1,Queensland,153.44913,-28.09454 +2023,11,21,1,Queensland,153.32912,-27.89066 +2023,8,18,1,Queensland,153.36297,-27.93399 +2021,9,26,1,Queensland,153.32912,-27.89065 +2021,5,14,1,Queensland,153.45882,-28.14808 +2020,11,13,2,Queensland,153.37612,-27.95748 +2023,12,5,1,Queensland,153.3295,-27.8909 +2020,12,8,1,Queensland,153.30595,-27.94249 +2020,12,14,1,Queensland,153.45822,-28.12835 +2021,7,2,1,Queensland,153.39994,-28.14204 +2023,10,17,1,Queensland,153.42763,-28.1183 +2023,4,12,1,Queensland,153.3847,-27.92286 +2023,1,1,1,Queensland,153.44385,-28.14216 +2021,9,14,1,Queensland,153.4595,-28.1549 +2022,10,4,1,Queensland,153.32214,-27.89719 +2023,11,20,2,Queensland,153.35922,-27.93416 +2023,6,3,1,Queensland,153.4361,-28.15629 +2021,11,10,2,Queensland,153.33103,-27.91563 +2021,8,5,1,Queensland,153.32912,-27.89065 +2023,9,18,1,Queensland,153.35015,-28.13603 +2023,11,17,1,Queensland,153.36204,-27.93345 +2022,9,19,1,Queensland,153.42056,-28.15031 +2020,10,3,1,Queensland,153.32681,-27.90238 +2022,9,28,1,Queensland,153.30193,-27.9471 +2020,5,8,1,Queensland,153.41497,-28.17194 +2020,10,25,1,Queensland,153.4362,-28.1402 +2021,3,3,1,Queensland,153.45518,-28.13079 +2023,7,20,1,Queensland,153.37336,-27.91346 +2022,9,15,1,Queensland,153.36036,-27.93605 +2021,1,16,1,Queensland,153.23241,-27.97689 +2021,8,16,1,Queensland,153.45623,-28.13141 +2023,11,15,2,Queensland,153.3295,-27.8909 +2023,10,26,1,Queensland,153.36452,-27.92837 +2022,10,17,1,Queensland,153.36545,-27.93552 +2023,6,19,1,Queensland,153.36162,-27.93019 +2021,10,14,1,Queensland,153.20541,-27.73336 +2020,12,13,1,Queensland,153.42622,-28.17233 +2022,4,19,1,Queensland,153.37143,-27.83843 +2023,11,7,1,Queensland,153.38675,-27.96461 +2023,9,20,1,Queensland,153.32849,-27.91739 +2021,10,6,2,Queensland,153.37986,-27.93837 +2021,12,6,1,Queensland,153.19479,-27.91998 +2020,10,8,1,Queensland,153.40156,-28.11455 +2023,5,24,1,Queensland,153.44438,-28.09431 +2022,11,20,1,Queensland,153.26812,-27.91403 +2020,10,3,1,Queensland,153.23166,-27.97701 +2021,9,20,1,Queensland,153.44783,-28.09144 +2021,10,7,1,Queensland,153.45204,-28.10013 +2022,10,17,1,Queensland,153.3106,-28.03872 +2020,7,15,1,Queensland,153.44668,-28.09353 +2020,1,20,1,Queensland,153.45119,-28.09246 +2021,2,8,2,Queensland,153.32893,-27.89083 +2021,8,13,2,Queensland,153.44585,-28.09522 +2023,9,3,2,Queensland,153.18524,-27.84127 +2023,4,25,1,Queensland,153.36405,-27.93665 +2023,4,6,1,Queensland,153.36573,-27.93439 +2022,10,11,1,Queensland,153.32814,-27.90314 +2022,8,10,1,Queensland,153.37608,-27.95767 +2020,10,20,1,Queensland,153.37082,-28.1796 +2020,4,22,1,Queensland,153.23234,-27.97686 +2023,3,5,1,Queensland,153.42745,-28.15103 +2022,10,13,1,Queensland,153.44954,-28.09631 +2022,2,2,1,Queensland,153.28516,-28.0078 +2022,4,19,1,Queensland,153.44861,-28.09754 +2023,8,20,2,Queensland,153.32912,-27.89066 +2023,1,10,1,Queensland,153.35862,-27.93324 +2022,4,13,1,Queensland,153.32912,-27.89065 +2021,12,5,2,Queensland,153.32912,-27.89065 +2020,5,31,1,Queensland,153.45094,-28.13241 +2020,12,2,1,Queensland,153.42628,-28.17234 +2023,9,7,1,Queensland,153.37723,-27.95131 +2021,2,9,1,Queensland,153.28403,-27.94348 +2023,2,17,1,Queensland,153.27663,-27.9988 +2023,9,30,1,Queensland,153.36145,-27.93036 +2020,8,8,1,Queensland,153.3672,-27.8806 +2020,2,8,2,Queensland,153.32956,-28.07151 +2020,11,8,2,Queensland,153.32884,-27.89082 +2020,12,8,1,Queensland,153.30595,-27.9426 +2022,7,7,1,Queensland,153.31548,-28.05149 +2020,8,23,1,Queensland,153.4408,-28.15026 +2023,7,23,1,Queensland,153.27663,-27.9988 +2021,11,9,1,Queensland,153.44564,-28.13318 +2023,10,7,1,Queensland,153.23993,-28.1113 +2021,7,7,1,Queensland,153.42316,-28.19237 +2023,2,10,1,Queensland,153.33137,-27.91618 +2023,9,12,1,Queensland,153.44194,-28.13688 +2022,9,10,1,Queensland,153.42266,-28.15066 +2023,11,7,1,Queensland,153.3627,-27.93369 +2023,9,22,2,Queensland,153.36533,-27.93042 +2020,10,1,1,Queensland,153.40897,-28.11143 +2023,8,21,1,Queensland,153.32579,-27.89759 +2020,10,11,1,Queensland,153.35843,-28.09442 +2021,7,26,1,Queensland,153.43626,-28.16455 +2021,3,25,1,Queensland,153.32912,-27.89065 +2022,8,26,1,Queensland,153.44853,-28.15413 +2022,10,18,1,Queensland,153.38071,-27.94632 +2022,2,16,1,Queensland,153.33103,-27.9162 +2020,8,13,1,Queensland,153.44025,-28.15924 +2022,8,15,1,Queensland,153.31515,-28.05214 +2022,2,28,1,Queensland,153.32912,-27.89065 +2022,6,8,1,Queensland,153.45155,-28.13857 +2021,7,7,1,Queensland,153.45306,-28.09411 +2023,10,20,1,Queensland,153.41599,-28.1312 +2022,7,7,1,Queensland,153.35774,-27.94043 +2020,8,21,1,Queensland,153.26273,-27.94292 +2022,5,18,1,Queensland,153.44858,-28.09754 +2022,11,2,1,Queensland,153.3563,-27.93991 +2023,10,25,1,Queensland,153.37441,-27.93165 +2023,10,18,1,Queensland,153.45341,-28.0965 +2020,1,1,1,Queensland,153.37056,-28.17987 +2020,9,9,1,Queensland,153.43399,-28.14745 +2022,8,26,1,Queensland,153.32912,-27.89065 +2022,8,5,1,Queensland,153.431,-28.11566 +2020,9,18,1,Queensland,153.43771,-28.13885 +2023,5,7,1,Queensland,153.35931,-27.933 +2021,3,30,1,Queensland,153.37607,-27.93171 +2023,1,9,1,Queensland,153.45007,-28.1 +2020,8,6,1,Queensland,153.32864,-27.89075 +2022,8,27,1,Queensland,153.32652,-27.898 +2021,6,27,1,Queensland,153.32912,-27.89065 +2022,6,22,1,Queensland,153.37537,-27.94652 +2023,11,12,1,Queensland,153.3139,-27.82106 +2023,9,3,1,Queensland,153.37098,-27.96357 +2023,9,27,1,Queensland,153.36297,-27.93399 +2021,3,2,1,Queensland,153.32912,-27.89065 +2020,1,10,1,Queensland,153.30376,-28.0372 +2023,7,22,1,Queensland,153.36297,-27.93399 +2020,9,9,1,Queensland,153.25903,-27.92742 +2023,12,1,1,Queensland,153.45339,-28.09615 +2023,7,9,1,Queensland,153.3658,-27.92991 +2023,11,8,1,Queensland,153.25002,-27.9453 +2023,10,9,1,Queensland,153.35624,-27.95474 +2021,9,25,1,Queensland,153.26812,-28.02615 +2020,12,27,1,Queensland,153.23245,-27.9772 +2021,2,2,1,Queensland,153.43262,-28.16129 +2023,9,8,2,Queensland,153.4519,-28.09206 +2021,2,23,1,Queensland,153.37239,-27.89926 +2020,8,22,2,Queensland,153.44061,-28.14996 +2022,6,5,2,Queensland,153.44987,-28.10104 +2023,4,29,1,Queensland,153.32912,-27.89066 +2020,11,2,2,Queensland,153.32895,-27.89086 +2022,10,15,1,Queensland,153.39413,-28.11456 +2023,8,26,1,Queensland,153.29379,-27.82321 +2020,10,24,1,Queensland,153.18466,-27.8027 +2022,4,19,1,Queensland,153.37173,-27.83701 +2020,5,15,1,Queensland,153.3801,-27.93897 +2021,7,26,1,Queensland,153.34186,-27.909 +2020,9,29,1,Queensland,153.36737,-27.88122 +2022,2,12,2,Queensland,153.40825,-28.11806 +2023,11,23,1,Queensland,153.41978,-28.1641 +2022,4,20,1,Queensland,153.38005,-27.94817 +2023,12,2,1,Queensland,153.32912,-27.89066 +2023,3,14,1,Queensland,153.45405,-28.15284 +2022,3,8,1,Queensland,153.37744,-27.9194 +2023,2,22,1,Queensland,153.3649,-27.9391 +2023,10,13,1,Queensland,153.30402,-28.02785 +2023,7,24,1,Queensland,153.41148,-28.14407 +2022,7,18,1,Queensland,153.36726,-27.9346 +2022,11,2,1,Queensland,153.3563,-27.93991 +2021,8,20,1,Queensland,153.33228,-27.91049 +2021,5,23,1,Queensland,153.35446,-28.10413 +2023,10,21,1,Queensland,153.4406,-28.1401 +2020,12,16,1,Queensland,153.32937,-27.89043 +2020,7,5,1,Queensland,153.44681,-28.13638 +2020,12,8,1,Queensland,153.33419,-27.90504 +2021,10,4,2,Queensland,153.3228,-27.9072 +2023,7,10,1,Queensland,153.3035,-27.80001 +2022,11,13,1,Queensland,153.33329,-27.81793 +2022,8,10,1,Queensland,153.32621,-27.81886 +2020,11,1,2,Queensland,153.32919,-27.89077 +2023,5,13,1,Queensland,153.45995,-28.16144 +2020,8,26,1,Queensland,153.32451,-28.00413 +2020,9,23,2,Queensland,153.44598,-28.09497 +2023,3,10,1,Queensland,153.36203,-27.9374 +2020,6,10,1,Queensland,153.23232,-27.9772 +2020,9,14,1,Queensland,153.32392,-27.90689 +2021,7,23,1,Queensland,153.44643,-28.14043 +2023,7,1,1,Queensland,153.27829,-27.94782 +2020,10,9,1,Queensland,153.32856,-27.89071 +2023,9,26,1,Queensland,153.28008,-27.99692 +2021,8,17,1,Queensland,153.45105,-28.16078 +2020,8,16,1,Queensland,153.23208,-27.97716 +2022,11,11,1,Queensland,153.31441,-27.90307 +2020,6,22,1,Queensland,153.23236,-27.97723 +2023,10,28,1,Queensland,153.35775,-27.94044 +2021,9,9,1,Queensland,153.45116,-28.14154 +2023,5,9,1,Queensland,153.36655,-27.88157 +2022,10,12,1,Queensland,153.36568,-27.95217 +2021,8,10,1,Queensland,153.32772,-27.90014 +2021,12,1,1,Queensland,153.43064,-28.1105 +2021,9,8,1,Queensland,153.44944,-28.09906 +2021,6,17,1,Queensland,153.45089,-28.0928 +2023,4,21,1,Queensland,153.41071,-28.14346 +2023,6,1,1,Queensland,153.43878,-28.10607 +2020,6,26,1,Queensland,153.4464,-28.14046 +2020,4,19,1,Queensland,153.33294,-27.88304 +2023,12,10,1,Queensland,153.25002,-27.9453 +2021,9,15,1,Queensland,153.3667,-27.8339 +2023,9,8,1,Queensland,153.4297,-28.10841 +2020,1,24,1,Queensland,153.43933,-28.15961 +2022,11,27,2,Queensland,153.40467,-28.1206 +2023,5,6,1,Queensland,153.362,-27.93227 +2022,8,17,1,Queensland,153.43236,-28.1088 +2023,11,21,1,Queensland,153.43363,-28.14065 +2022,2,11,1,Queensland,153.40825,-28.11806 +2023,6,10,1,Queensland,153.44573,-28.09452 +2022,8,9,1,Queensland,153.35818,-27.93183 +2021,9,17,2,Queensland,153.34644,-27.93948 +2020,10,22,1,Queensland,153.44636,-28.14041 +2023,8,1,1,Queensland,153.2676,-28.00629 +2023,5,29,1,Queensland,153.44653,-28.14043 +2020,7,16,1,Queensland,153.47748,-28.14205 +2023,8,31,2,Queensland,153.45342,-28.09398 +2022,3,9,1,Queensland,153.44853,-28.09743 +2023,1,13,1,Queensland,153.36262,-27.94036 +2022,3,27,1,Queensland,153.47868,-28.1534 +2020,9,9,2,Queensland,153.44746,-28.09332 +2021,5,7,1,Queensland,153.34439,-27.94872 +2020,11,13,2,Queensland,153.32868,-27.89084 +2020,3,30,1,Queensland,153.37615,-27.91702 +2021,4,11,1,Queensland,153.44653,-28.14043 +2020,1,5,1,Queensland,153.45493,-28.13318 +2023,3,17,1,Queensland,153.26552,-28.01582 +2023,9,3,1,Queensland,153.35984,-28.12885 +2023,10,21,1,Queensland,153.45073,-28.12053 +2021,9,11,1,Queensland,153.43916,-28.15623 +2022,9,17,1,Queensland,153.27342,-27.88993 +2020,8,5,2,Queensland,153.44754,-28.0934 +2023,9,30,1,Queensland,153.27663,-27.99879 +2022,10,31,2,Queensland,153.3754,-27.91664 +2020,2,26,1,Queensland,153.43579,-28.13024 +2022,3,2,1,Queensland,153.32912,-27.89065 +2022,8,11,1,Queensland,153.3634,-27.90237 +2022,8,18,1,Queensland,153.30024,-27.92287 +2022,10,15,1,Queensland,153.37745,-27.89539 +2022,6,3,1,Queensland,153.32912,-27.89065 +2020,10,19,1,Queensland,153.32962,-27.8905 +2022,9,25,1,Queensland,153.44849,-28.09754 +2022,2,20,1,Queensland,153.37598,-28.10527 +2021,7,24,1,Queensland,153.32885,-27.89084 +2020,12,9,1,Queensland,153.45292,-28.09394 +2022,8,3,1,Queensland,153.32912,-27.89065 +2023,10,15,1,Queensland,153.45163,-28.09029 +2021,12,22,1,Queensland,153.45237,-28.09528 +2023,9,2,2,Queensland,153.45161,-28.09166 +2021,1,1,2,Queensland,153.32893,-27.89083 +2020,8,25,2,Queensland,153.4568,-28.09463 +2022,5,31,1,Queensland,153.32912,-27.89065 +2022,12,13,2,Queensland,153.38094,-28.14355 +2020,1,12,1,Queensland,153.18676,-27.91285 +2023,4,15,1,Queensland,153.27838,-27.95471 +2022,10,31,2,Queensland,153.36486,-27.95146 +2020,9,25,1,Queensland,153.32581,-27.89688 +2022,7,23,1,Queensland,153.44849,-28.09754 +2023,8,22,1,Queensland,153.40485,-28.14572 +2022,4,2,1,Queensland,153.32912,-27.89065 +2023,11,10,1,Queensland,153.45217,-28.09465 +2021,8,30,1,Queensland,153.32329,-28.01951 +2021,1,31,1,Queensland,153.23199,-27.97668 +2020,2,10,2,Queensland,153.36747,-27.88038 +2023,3,31,2,Queensland,153.36706,-27.88057 +2023,12,8,1,Queensland,153.42918,-28.1216 +2021,5,14,1,Queensland,153.28053,-27.98047 +2023,7,24,1,Queensland,153.30163,-27.91406 +2020,11,5,2,Queensland,153.32213,-27.89765 +2022,1,13,1,Queensland,153.44938,-28.13753 +2020,12,20,1,Queensland,153.33674,-27.80811 +2023,8,12,1,Queensland,153.45775,-28.15113 +2022,10,17,1,Queensland,153.27321,-27.90919 +2020,3,29,1,Queensland,153.3888,-28.12201 +2023,10,21,1,Queensland,153.33958,-28.03973 +2023,10,16,1,Queensland,153.36362,-27.92956 +2020,10,12,1,Queensland,153.43769,-28.13868 +2020,1,13,1,Queensland,153.36783,-27.88181 +2020,1,12,1,Queensland,153.44705,-28.09698 +2021,11,3,1,Queensland,153.449,-28.152 +2022,11,7,1,Queensland,153.40355,-28.11092 +2021,5,25,1,Queensland,153.37006,-27.93021 +2021,2,18,1,Queensland,153.29889,-27.89948 +2022,8,5,1,Queensland,153.45975,-28.09287 +2023,2,25,1,Queensland,153.44854,-28.09752 +2023,9,27,1,Queensland,153.36592,-27.92928 +2020,9,24,1,Queensland,153.23156,-27.97707 +2021,3,12,1,Queensland,153.32912,-27.89065 +2023,7,19,1,Queensland,153.42025,-28.18947 +2023,5,17,1,Queensland,153.2349,-27.79052 +2022,2,9,2,Queensland,153.44968,-28.16306 +2023,8,2,1,Queensland,153.4485,-28.09754 +2021,9,25,1,Queensland,153.43934,-28.14287 +2020,2,8,1,Queensland,153.42002,-28.17188 +2021,10,9,1,Queensland,153.44747,-28.10292 +2020,8,3,1,Queensland,153.36423,-27.95123 +2023,9,8,1,Queensland,153.38654,-28.09976 +2020,7,14,1,Queensland,153.45503,-28.13122 +2022,9,14,1,Queensland,153.3414,-27.97847 +2023,12,16,1,Queensland,153.27663,-27.99879 +2020,8,8,2,Queensland,153.4257,-28.14308 +2022,9,6,1,Queensland,153.442,-28.10639 +2021,12,16,1,Queensland,153.36629,-27.94576 +2023,7,2,1,Queensland,153.34185,-28.10103 +2022,7,29,1,Queensland,153.35715,-27.94158 +2020,8,17,1,Queensland,153.31815,-27.82214 +2021,10,7,1,Queensland,153.45361,-28.09627 +2023,7,20,1,Queensland,153.37463,-27.91361 +2022,1,12,1,Queensland,153.44813,-28.09344 +2021,8,8,1,Queensland,153.37608,-27.95767 +2023,9,12,1,Queensland,153.45367,-28.13829 +2023,5,28,1,Queensland,153.40721,-28.1459 +2020,1,11,1,Queensland,153.26539,-27.91435 +2023,11,5,2,Queensland,153.32912,-27.89066 +2022,12,2,1,Queensland,153.34152,-27.91164 +2023,9,10,1,Queensland,153.36036,-27.93605 +2023,11,11,1,Queensland,153.42109,-28.15064 +2022,2,19,1,Queensland,153.38548,-28.11065 +2021,12,23,1,Queensland,153.38508,-28.11067 +2023,12,14,1,Queensland,153.27663,-27.99879 +2021,5,16,1,Queensland,153.32912,-27.89065 +2021,11,14,1,Queensland,153.45563,-28.14899 +2021,10,27,1,Queensland,153.40825,-28.11806 +2020,6,7,1,Queensland,153.23233,-27.97722 +2023,10,18,1,Queensland,153.36437,-27.92831 +2021,1,10,1,Queensland,153.44832,-28.10065 +2022,9,25,1,Queensland,153.42895,-28.15281 +2020,10,2,1,Queensland,153.32888,-27.89085 +2020,7,12,1,Queensland,153.42616,-28.17238 +2022,12,31,1,Queensland,153.45041,-28.097 +2023,3,8,2,Queensland,153.41684,-28.14475 +2023,11,24,1,Queensland,153.25002,-27.9453 +2022,2,20,1,Queensland,153.32912,-27.89065 +2020,8,10,1,Queensland,153.23208,-27.97716 +2020,9,4,1,Queensland,153.39308,-28.13661 +2023,11,9,1,Queensland,153.42194,-28.12155 +2023,6,26,1,Queensland,153.34747,-27.94788 +2020,5,17,1,Queensland,153.2327,-27.97695 +2020,12,23,1,Queensland,153.33225,-28.12069 +2021,9,23,1,Queensland,153.43636,-28.14842 +2021,1,15,2,Queensland,153.23174,-27.97738 +2023,2,7,1,Queensland,153.44386,-28.13459 +2022,12,2,1,Queensland,153.40693,-28.13304 +2021,11,4,1,Queensland,153.30373,-27.90017 +2020,5,22,1,Queensland,153.23213,-27.97714 +2021,11,1,2,Queensland,153.35666,-27.84332 +2022,8,6,1,Queensland,153.36383,-27.93806 +2023,9,1,2,Queensland,153.3274,-27.88997 +2022,7,3,1,Queensland,153.31229,-28.01887 +2021,11,19,1,Queensland,153.45594,-28.14706 +2023,10,29,1,Queensland,153.36242,-27.93021 +2020,1,27,2,Queensland,153.23185,-27.97725 +2022,9,19,1,Queensland,153.422,-28.12156 +2020,9,8,1,Queensland,153.28896,-27.91755 +2021,10,4,1,Queensland,153.44632,-28.14199 +2023,8,31,1,Queensland,153.3569,-27.93979 +2021,3,15,1,Queensland,153.4506,-28.14583 +2023,2,6,1,Queensland,153.45412,-28.14741 +2021,1,31,1,Queensland,153.44471,-28.14485 +2020,6,3,1,Queensland,153.40605,-28.16994 +2023,1,4,1,Queensland,153.32535,-27.81872 +2022,7,7,1,Queensland,153.22949,-28.06749 +2022,11,4,1,Queensland,153.36403,-27.93768 +2022,6,24,1,Queensland,153.32912,-27.89065 +2022,7,30,1,Queensland,153.45789,-28.09364 +2020,6,24,1,Queensland,153.33337,-27.83745 +2023,4,25,1,Queensland,153.36703,-27.88052 +2020,9,26,1,Queensland,153.44728,-28.095 +2022,10,11,1,Queensland,153.32912,-27.89065 +2020,9,18,1,Queensland,153.44994,-28.10101 +2021,7,28,1,Queensland,153.37978,-28.10053 +2021,3,3,1,Queensland,153.32912,-27.89065 +2022,10,14,1,Queensland,153.36066,-27.92942 +2023,9,28,1,Queensland,153.34833,-28.1226 +2021,10,27,1,Queensland,153.35739,-27.84492 +2022,7,3,1,Queensland,153.32463,-27.92095 +2021,10,8,2,Queensland,153.34172,-27.90892 +2021,5,6,1,Queensland,153.34332,-27.90467 +2020,8,29,1,Queensland,153.44772,-28.09331 +2020,12,20,1,Queensland,153.41766,-28.13119 +2020,11,6,1,Queensland,153.23212,-27.97687 +2023,8,16,1,Queensland,153.45385,-28.09251 +2020,4,28,1,Queensland,153.36431,-27.95058 +2020,1,8,1,Queensland,153.31966,-27.91394 +2020,9,12,2,Queensland,153.44754,-28.09333 +2021,8,14,1,Queensland,153.33885,-27.95265 +2020,3,22,1,Queensland,153.44439,-28.14509 +2020,10,15,1,Queensland,153.43883,-28.13949 +2021,9,7,1,Queensland,153.3142,-28.0398 +2023,4,12,1,Queensland,153.3578,-28.10698 +2023,3,26,1,Queensland,153.37087,-28.1169 +2021,5,6,2,Queensland,153.41662,-28.14459 +2021,11,29,1,Queensland,153.33138,-27.88964 +2023,9,2,1,Queensland,153.35133,-28.12982 +2023,3,31,1,Queensland,153.36039,-27.93152 +2023,11,13,1,Queensland,153.43063,-28.18218 +2022,2,19,1,Queensland,153.39595,-28.15933 +2020,9,24,1,Queensland,153.26987,-27.90318 +2021,8,20,1,Queensland,153.40792,-28.17029 +2022,8,22,2,Queensland,153.31703,-27.89373 +2023,4,30,1,Queensland,153.3637,-27.93725 +2020,9,8,1,Queensland,153.37075,-27.94601 +2021,11,24,1,Queensland,153.37347,-27.94114 +2022,9,24,1,Queensland,153.45789,-28.09364 +2022,3,24,1,Queensland,153.45503,-28.09411 +2023,9,6,1,Queensland,153.38659,-27.89955 +2022,10,5,1,Queensland,153.38945,-28.11899 +2021,11,8,1,Queensland,153.45293,-28.14155 +2020,5,31,1,Queensland,153.43901,-28.10661 +2023,11,9,1,Queensland,153.22098,-27.96957 +2021,9,13,1,Queensland,153.45643,-28.09394 +2023,1,31,1,Queensland,153.45487,-28.16104 +2023,9,22,1,Queensland,153.29924,-27.8994 +2020,3,21,1,Queensland,153.45708,-28.13457 +2023,11,21,1,Queensland,153.36624,-28.09005 +2021,9,29,1,Queensland,153.45056,-28.1443 +2023,9,25,1,Queensland,153.39099,-28.13262 +2021,1,5,1,Queensland,153.36348,-27.83564 +2020,1,23,1,Queensland,153.32887,-27.89074 +2023,7,31,1,Queensland,153.36297,-27.93399 +2020,5,16,1,Queensland,153.34583,-28.14579 +2022,9,7,2,Queensland,153.44787,-28.10127 +2020,9,18,1,Queensland,153.36573,-28.09332 +2023,9,1,1,Queensland,153.45057,-28.13568 +2023,1,24,1,Queensland,153.45504,-28.13214 +2020,1,24,1,Queensland,153.32927,-27.89053 +2023,10,12,1,Queensland,153.44698,-28.1367 +2023,9,4,1,Queensland,153.36706,-27.88038 +2022,6,14,1,Queensland,153.35919,-27.94255 +2023,8,6,1,Queensland,153.38021,-27.92416 +2022,11,27,2,Queensland,153.29342,-28.1342 +2023,2,8,1,Queensland,153.3631,-27.93415 +2021,11,7,1,Queensland,153.31122,-28.01587 +2020,12,31,1,Queensland,153.43787,-28.13881 +2023,9,6,1,Queensland,153.32912,-27.89066 +2023,10,19,1,Queensland,153.41977,-28.12091 +2022,1,10,1,Queensland,153.42633,-28.16737 +2021,3,2,1,Queensland,153.32912,-27.89065 +2022,10,15,1,Queensland,153.45802,-28.09371 +2020,12,14,1,Queensland,153.3303,-27.91444 +2021,9,14,2,Queensland,153.42731,-28.11814 +2022,6,9,1,Queensland,153.37396,-27.88253 +2020,8,13,1,Queensland,153.31977,-27.82748 +2023,2,2,1,Queensland,153.35759,-27.94055 +2022,9,28,1,Queensland,153.30126,-27.94656 +2022,3,25,1,Queensland,153.45289,-28.15363 +2021,8,3,1,Queensland,153.26786,-27.96993 +2023,7,13,1,Queensland,153.45383,-28.09146 +2023,2,8,1,Queensland,153.27713,-27.99652 +2020,1,12,1,Queensland,153.43677,-28.13071 +2020,1,3,1,Queensland,153.45307,-28.09518 +2023,10,5,1,Queensland,153.21189,-27.87228 +2021,11,7,1,Queensland,153.38968,-28.1563 +2021,5,1,1,Queensland,153.4523,-28.09594 +2022,10,19,1,Queensland,153.42714,-28.12237 +2021,11,8,1,Queensland,153.44145,-28.10082 +2020,10,25,1,Queensland,153.44596,-28.13614 +2023,1,3,1,Queensland,153.38052,-27.93954 +2023,2,13,1,Queensland,153.22671,-28.07645 +2022,5,1,1,Queensland,153.3231,-28.16366 +2020,3,21,1,Queensland,153.32784,-27.896 +2020,7,10,1,Queensland,153.23236,-27.97723 +2023,11,10,1,Queensland,153.44175,-28.12702 +2021,11,5,2,Queensland,153.24362,-27.96791 +2021,3,8,1,Queensland,153.3546,-28.09306 +2020,10,29,2,Queensland,153.4338,-28.14679 +2020,9,18,1,Queensland,153.44483,-28.09326 +2022,9,18,1,Queensland,153.40783,-28.15634 +2020,3,1,1,Queensland,153.24627,-28.03941 +2020,11,8,1,Queensland,153.32919,-27.89077 +2023,10,3,1,Queensland,153.27663,-27.99879 +2022,9,14,1,Queensland,153.31963,-27.90163 +2023,12,12,1,Queensland,153.3811,-27.92213 +2020,9,1,1,Queensland,153.4381,-28.14832 +2023,7,23,1,Queensland,153.44969,-28.09505 +2020,11,27,1,Queensland,153.23237,-27.97725 +2020,7,1,1,Queensland,153.44636,-28.13615 +2021,9,13,1,Queensland,153.44848,-28.10062 +2020,3,22,1,Queensland,153.37064,-28.17986 +2021,5,6,1,Queensland,153.32912,-27.89065 +2023,2,6,1,Queensland,153.45105,-28.1616 +2023,6,28,1,Queensland,153.23841,-27.97552 +2023,2,12,1,Queensland,153.44959,-28.14893 +2021,8,2,1,Queensland,153.32912,-27.89065 +2023,7,2,1,Queensland,153.36593,-27.92944 +2022,5,19,1,Queensland,153.32912,-27.89065 +2021,7,19,1,Queensland,153.3055,-27.9358 +2023,11,4,1,Queensland,153.38474,-27.9219 +2021,8,1,1,Queensland,153.32912,-27.89065 +2020,12,27,1,Queensland,153.32893,-27.89083 +2023,2,19,1,Queensland,153.3752,-28.09769 +2023,12,1,1,Queensland,153.36191,-27.93229 +2022,8,30,1,Queensland,153.32912,-27.89065 +2023,5,29,2,Queensland,153.33083,-27.89395 +2020,3,21,1,Queensland,153.23232,-27.9772 +2020,11,22,1,Queensland,153.41669,-28.1727 +2021,9,16,1,Queensland,153.33754,-27.97668 +2023,8,5,1,Queensland,153.27663,-27.9988 +2020,1,23,1,Queensland,153.37331,-27.9429 +2021,10,21,1,Queensland,153.44653,-28.14043 +2022,1,25,1,Queensland,153.45519,-28.13878 +2023,10,12,1,Queensland,153.3627,-27.93369 +2020,11,1,1,Queensland,153.32896,-27.8909 +2021,5,28,1,Queensland,153.45426,-28.14735 +2023,7,30,1,Queensland,153.36297,-27.93399 +2021,4,7,1,Queensland,153.36498,-27.93085 +2023,3,31,1,Queensland,153.36486,-27.95146 +2020,6,15,1,Queensland,153.44791,-28.13918 +2023,11,18,1,Queensland,153.36257,-27.93333 +2021,3,12,1,Queensland,153.32944,-27.89097 +2022,1,3,1,Queensland,153.36332,-27.93422 +2021,9,14,1,Queensland,153.31687,-28.01188 +2020,12,22,1,Queensland,153.43781,-28.15654 +2020,10,17,1,Queensland,153.32924,-27.89056 +2020,11,19,2,Queensland,153.32885,-27.89084 +2023,9,26,2,Queensland,153.32912,-27.89066 +2020,1,15,1,Queensland,153.42636,-28.17246 +2023,1,2,1,Queensland,153.44855,-28.09756 +2023,4,9,1,Queensland,153.37116,-28.11049 +2020,9,17,1,Queensland,153.37626,-28.11961 +2021,6,14,1,Queensland,153.4514,-28.14148 +2023,5,17,1,Queensland,153.42443,-28.14994 +2020,7,21,1,Queensland,153.44742,-28.09332 +2023,9,25,1,Queensland,153.3661,-27.95286 +2021,11,21,1,Queensland,153.44981,-28.10001 +2021,10,9,1,Queensland,153.34183,-27.90782 +2021,5,3,1,Queensland,153.34167,-27.82608 +2023,1,9,1,Queensland,153.35939,-27.93416 +2023,7,25,1,Queensland,153.36554,-27.9287 +2020,8,15,2,Queensland,153.18719,-27.84117 +2023,9,4,2,Queensland,153.44782,-28.09794 +2022,8,10,1,Queensland,153.45097,-28.14409 +2023,8,1,1,Queensland,153.36628,-27.93489 +2020,4,23,1,Queensland,153.23265,-27.97694 +2022,10,17,1,Queensland,153.25225,-27.8897 +2022,1,21,1,Queensland,153.32994,-27.91307 +2023,8,20,1,Queensland,153.3606,-27.93219 +2021,7,4,2,Queensland,153.32345,-28.02158 +2023,9,25,1,Queensland,153.35759,-27.9411 +2022,12,24,1,Queensland,153.31497,-28.05252 +2020,9,23,1,Queensland,153.44799,-28.09322 +2023,6,16,1,Queensland,153.37468,-28.10533 +2022,11,1,1,Queensland,153.34547,-27.95461 +2022,8,17,1,Queensland,153.22911,-27.97329 +2023,11,16,1,Queensland,153.27651,-27.95662 +2021,7,10,1,Queensland,153.31656,-27.89269 +2020,6,19,1,Queensland,153.41985,-28.17192 +2022,11,29,1,Queensland,153.42291,-28.14342 +2023,5,22,1,Queensland,153.32355,-27.88985 +2023,12,8,1,Queensland,153.42918,-28.1216 +2023,1,9,1,Queensland,153.31487,-28.05201 +2023,4,22,1,Queensland,153.32912,-27.89066 +2023,11,15,2,Queensland,153.37201,-27.95676 +2020,11,23,1,Queensland,153.46705,-28.15757 +2023,7,22,1,Queensland,153.3396,-28.12639 +2023,7,15,1,Queensland,153.36526,-27.9291 +2021,11,3,1,Queensland,153.34154,-27.85165 +2023,8,29,2,Queensland,153.45161,-28.09167 +2023,9,4,1,Queensland,153.36249,-27.92945 +2023,11,1,1,Queensland,153.45246,-28.08866 +2023,7,20,1,Queensland,153.3732,-27.91261 +2022,9,21,1,Queensland,153.26884,-27.90883 +2022,8,17,1,Queensland,153.35717,-27.93818 +2021,7,11,1,Queensland,153.41559,-28.15056 +2022,8,5,1,Queensland,153.35717,-27.93818 +2020,12,25,1,Queensland,153.23265,-27.97694 +2023,8,28,2,Queensland,153.45162,-28.09168 +2020,8,30,1,Queensland,153.43343,-28.13608 +2023,4,9,1,Queensland,153.35969,-27.94035 +2023,5,27,1,Queensland,153.35913,-27.92703 +2021,9,27,1,Queensland,153.32657,-28.04901 +2020,12,30,1,Queensland,153.32238,-27.82475 +2023,10,21,1,Queensland,153.38344,-27.92241 +2022,7,30,1,Queensland,153.3272,-28.00644 +2023,9,9,1,Queensland,153.40717,-28.15788 +2023,10,14,1,Queensland,153.36648,-27.95163 +2023,11,9,1,Queensland,153.38155,-27.95278 +2020,1,12,1,Queensland,153.43673,-28.13053 +2021,10,12,1,Queensland,153.32912,-27.89065 +2023,9,1,2,Queensland,153.36191,-27.93229 +2020,10,27,1,Queensland,153.41731,-28.13232 +2022,12,1,2,Queensland,153.40365,-28.11092 +2020,2,13,1,Queensland,153.23244,-27.97719 +2020,7,28,1,Queensland,153.44927,-28.09464 +2020,9,29,1,Queensland,153.43907,-28.13824 +2023,9,28,1,Queensland,153.27663,-27.99879 +2020,5,1,1,Queensland,153.39081,-28.12344 +2022,12,17,1,Queensland,153.39637,-28.14251 +2023,1,10,1,Queensland,153.35905,-27.93281 +2022,9,15,1,Queensland,153.3624,-27.9408 +2023,4,29,1,Queensland,153.3597,-27.93378 +2020,1,14,1,Queensland,153.26707,-28.01093 +2023,1,1,1,Queensland,153.2949,-27.84189 +2023,10,3,1,Queensland,153.37659,-28.10491 +2021,3,3,1,Queensland,153.45518,-28.13079 +2023,11,23,2,Queensland,153.36774,-27.94811 +2023,9,26,2,Queensland,153.36433,-27.92961 +2021,9,8,1,Queensland,153.39174,-28.11604 +2023,9,1,1,Queensland,153.36403,-27.92818 +2023,2,15,1,Queensland,153.41449,-28.15916 +2020,1,1,1,Queensland,153.43891,-28.15966 +2023,10,10,1,Queensland,153.44847,-28.09316 +2021,2,19,1,Queensland,153.29889,-27.89949 +2023,11,16,1,Queensland,153.27663,-27.99879 +2022,3,13,1,Queensland,153.44653,-28.14043 +2022,11,22,1,Queensland,153.39849,-28.1438 +2023,1,10,1,Queensland,153.46004,-28.14905 +2021,3,18,1,Queensland,153.44462,-28.15628 +2023,3,25,1,Queensland,153.42763,-28.1183 +2020,1,15,1,Queensland,153.43924,-28.1597 +2021,7,14,1,Queensland,153.45057,-28.13568 +2021,10,15,1,Queensland,153.42763,-28.12234 +2020,11,27,1,Queensland,153.456,-28.095 +2021,10,4,1,Queensland,153.3516,-28.02974 +2020,9,13,2,Queensland,153.42623,-28.17237 +2023,9,25,1,Queensland,153.35972,-27.84356 +2023,9,14,1,Queensland,153.45132,-28.16127 +2023,4,25,1,Queensland,153.45116,-28.14154 +2022,5,25,1,Queensland,153.45559,-28.09213 +2023,5,7,1,Queensland,153.36036,-27.93605 +2023,11,20,1,Queensland,153.33918,-27.80392 +2023,10,8,1,Queensland,153.3139,-27.82106 +2020,10,4,1,Queensland,153.45163,-28.09271 +2021,6,30,1,Queensland,153.34008,-27.91608 +2023,8,26,1,Queensland,153.37169,-27.83849 +2020,9,8,1,Queensland,153.45882,-28.15787 +2021,9,27,1,Queensland,153.44825,-28.1007 +2023,2,16,1,Queensland,153.45255,-28.09112 +2022,3,6,1,Queensland,153.35751,-27.84526 +2022,10,15,1,Queensland,153.45535,-28.09673 +2022,6,11,1,Queensland,153.3847,-27.92286 +2022,11,28,1,Queensland,153.36576,-27.9523 +2022,8,24,1,Queensland,153.37351,-27.94049 +2020,5,7,1,Queensland,153.33598,-27.89973 +2020,6,29,1,Queensland,153.44206,-28.14911 +2020,12,10,1,Queensland,153.45271,-28.09623 +2020,9,10,1,Queensland,153.24396,-27.90641 +2020,7,17,1,Queensland,153.43693,-28.10557 +2020,10,26,2,Queensland,153.32875,-27.89063 +2020,8,19,1,Queensland,153.36875,-28.1071 +2022,9,30,1,Queensland,153.44849,-28.09754 +2023,12,9,1,Queensland,153.45015,-28.10014 +2023,10,9,1,Queensland,153.33569,-27.90701 +2023,10,28,1,Queensland,153.36451,-27.92839 +2023,6,2,1,Queensland,153.409,-28.11401 +2023,8,30,1,Queensland,153.43011,-28.17907 +2020,11,29,1,Queensland,153.43976,-28.13853 +2023,3,21,1,Queensland,153.365,-27.93893 +2022,9,19,1,Queensland,153.4453,-28.14114 +2021,7,17,1,Queensland,153.35731,-28.10718 +2023,4,15,1,Queensland,153.35706,-27.93385 +2020,11,18,2,Queensland,153.32893,-27.89097 +2021,12,10,2,Queensland,153.32912,-27.89065 +2021,4,28,1,Queensland,153.44065,-28.15809 +2020,2,15,1,Queensland,153.32822,-27.89585 +2023,12,7,1,Queensland,153.25002,-27.9453 +2022,10,31,1,Queensland,153.37237,-27.95845 +2022,8,23,1,Queensland,153.44769,-28.09036 +2023,8,25,1,Queensland,153.45258,-28.09215 +2020,7,19,1,Queensland,153.32952,-27.89046 +2020,1,8,1,Queensland,153.31966,-27.91398 +2021,8,19,1,Queensland,153.36036,-27.93605 +2021,12,1,2,Queensland,153.32912,-27.89065 +2023,11,3,1,Queensland,153.36698,-27.92919 +2022,7,11,1,Queensland,153.44849,-28.09758 +2021,8,10,2,Queensland,153.18487,-27.80268 +2020,10,6,1,Queensland,153.42907,-28.1464 +2023,11,14,1,Queensland,153.32912,-27.89066 +2022,6,6,1,Queensland,153.37966,-27.93884 +2020,12,23,1,Queensland,153.23237,-27.97681 +2021,11,8,2,Queensland,153.32912,-27.89065 +2023,11,19,2,Queensland,153.42729,-28.1183 +2023,10,4,2,Queensland,153.44186,-28.10626 +2023,10,26,1,Queensland,153.32912,-27.89066 +2021,5,6,1,Queensland,153.32912,-27.89065 +2020,8,1,1,Queensland,153.33122,-27.91838 +2022,3,22,2,Queensland,153.44709,-28.13696 +2021,9,17,2,Queensland,153.45424,-28.16273 +2021,8,29,1,Queensland,153.32912,-27.89065 +2023,10,30,1,Queensland,153.32912,-27.89066 +2023,11,30,1,Queensland,153.32912,-27.89066 +2021,7,4,1,Queensland,153.4105,-28.1137 +2023,4,17,1,Queensland,153.35706,-27.93385 +2023,11,9,1,Queensland,153.31657,-27.89265 +2023,9,5,1,Queensland,153.32912,-27.89066 +2020,10,25,1,Queensland,153.35073,-27.94575 +2023,11,27,1,Queensland,153.32912,-27.89066 +2023,11,28,1,Queensland,153.32912,-27.89066 +2023,6,15,1,Queensland,153.36036,-27.93605 +2023,12,3,1,Queensland,153.32912,-27.89066 +2020,3,20,1,Queensland,153.232,-27.97705 +2021,9,2,1,Queensland,153.45116,-28.14154 +2023,9,1,1,Queensland,153.32912,-27.89066 +2023,8,27,1,Queensland,153.45178,-28.09148 +2023,8,8,1,Queensland,153.36412,-27.92885 +2023,1,26,1,Queensland,153.44854,-28.09753 +2021,9,9,1,Queensland,153.4501,-28.10204 +2020,11,3,2,Queensland,153.33517,-27.89042 +2022,7,11,1,Queensland,153.31467,-28.05186 +2023,7,2,1,Queensland,153.36036,-27.93605 +2020,4,21,1,Queensland,153.36445,-27.9086 +2022,2,18,1,Queensland,153.32363,-28.01049 +2020,12,15,1,Queensland,153.329,-27.89085 +2020,9,12,1,Queensland,153.44503,-28.14499 +2021,8,6,1,Queensland,153.45256,-28.09549 +2023,9,27,2,Queensland,153.32276,-27.89826 +2022,2,19,1,Queensland,153.32912,-27.89065 +2022,9,7,2,Queensland,153.26073,-27.95234 +2021,9,28,1,Queensland,153.4388,-28.14221 +2022,9,20,1,Queensland,153.32912,-27.89065 +2022,4,8,1,Queensland,153.30652,-27.82212 +2022,6,5,1,Queensland,153.32912,-27.89065 +2021,1,14,2,Queensland,153.25074,-27.94589 +2023,7,10,1,Queensland,153.32912,-27.89066 +2023,8,29,1,Queensland,153.38136,-27.94535 +2020,1,1,1,Queensland,153.44673,-28.14059 +2023,5,19,1,Queensland,153.32912,-27.89066 +2020,8,31,1,Queensland,153.3105,-28.02967 +2023,4,29,1,Queensland,153.35773,-27.94047 +2022,8,10,2,Queensland,153.36109,-27.93306 +2021,8,28,1,Queensland,153.44682,-28.15373 +2022,10,31,1,Queensland,153.36185,-27.93357 +2021,9,28,1,Queensland,153.28263,-27.99112 +2020,8,4,1,Queensland,153.33543,-27.91383 +2021,7,9,1,Queensland,153.43548,-28.15603 +2020,11,3,1,Queensland,153.33505,-27.97601 +2023,10,30,1,Queensland,153.40556,-28.14714 +2022,11,12,2,Queensland,153.36212,-27.94931 +2021,6,6,1,Queensland,153.43932,-28.15616 +2023,10,23,2,Queensland,153.32912,-27.89066 +2020,9,17,1,Queensland,153.37388,-27.94773 +2021,7,6,1,Queensland,153.42921,-28.15905 +2023,10,20,1,Queensland,153.36283,-27.93379 +2023,11,19,1,Queensland,153.43335,-28.13718 +2023,7,1,1,Queensland,153.36036,-27.93605 +2020,8,14,1,Queensland,153.29798,-28.00079 +2022,7,24,1,Queensland,153.35669,-27.94021 +2021,8,27,1,Queensland,153.44671,-28.14064 +2022,9,15,1,Queensland,153.36036,-27.93605 +2020,11,4,2,Queensland,153.32895,-27.89086 +2023,2,12,1,Queensland,153.38958,-28.10701 +2021,10,11,1,Queensland,153.26821,-27.9152 +2021,8,28,1,Queensland,153.39409,-28.1158 +2022,10,7,1,Queensland,153.40355,-28.11564 +2022,5,27,1,Queensland,153.36305,-27.94256 +2023,9,3,1,Queensland,153.36293,-27.93387 +2021,10,11,2,Queensland,153.32912,-27.89065 +2021,11,3,2,Queensland,153.24362,-27.94517 +2021,4,10,1,Queensland,153.36311,-27.91469 +2022,9,28,1,Queensland,153.37687,-27.95826 +2023,4,30,1,Queensland,153.40474,-28.10688 +2022,10,27,1,Queensland,153.38275,-28.11202 +2021,10,24,2,Queensland,153.32398,-27.90425 +2020,10,5,2,Queensland,153.37517,-28.10973 +2022,5,12,1,Queensland,153.38506,-27.92311 +2020,10,4,1,Queensland,153.45491,-28.091 +2021,11,16,1,Queensland,153.32701,-27.84938 +2022,9,2,1,Queensland,153.32086,-27.89533 +2023,6,15,1,Queensland,153.38587,-27.92293 +2021,11,11,1,Queensland,153.449,-28.152 +2022,8,15,1,Queensland,153.45105,-28.16078 +2021,10,2,1,Queensland,153.3142,-27.82085 +2023,7,30,1,Queensland,153.3576,-27.94054 +2020,2,3,1,Queensland,153.32598,-27.81905 +2020,2,24,1,Queensland,153.32442,-27.82479 +2022,11,2,1,Queensland,153.45231,-28.09629 +2020,7,20,2,Queensland,153.45209,-28.09248 +2020,12,30,2,Queensland,153.4294,-28.157 +2023,6,11,1,Queensland,153.46098,-28.16101 +2023,4,28,1,Queensland,153.36036,-27.93605 +2022,7,19,1,Queensland,153.37234,-27.94452 +2022,11,24,2,Queensland,153.35694,-27.93855 +2022,12,11,1,Queensland,153.45592,-28.1415 +2020,3,30,1,Queensland,153.33125,-27.91591 +2021,12,6,1,Queensland,153.45256,-28.0957 +2021,9,5,1,Queensland,153.35146,-28.10623 +2023,9,14,1,Queensland,153.38465,-27.92152 +2022,11,20,1,Queensland,153.35682,-27.93798 +2020,8,10,1,Queensland,153.30051,-27.82475 +2020,7,7,1,Queensland,153.23243,-27.97696 +2023,6,8,1,Queensland,153.37493,-27.94743 +2020,1,13,1,Queensland,153.43248,-28.16552 +2021,6,29,2,Queensland,153.44014,-28.16689 +2023,9,20,1,Queensland,153.44101,-28.14977 +2020,10,18,1,Queensland,153.35167,-28.11291 +2020,4,8,1,Queensland,153.36525,-27.90277 +2023,8,13,1,Queensland,153.42226,-28.14761 +2020,10,15,2,Queensland,153.32893,-27.89089 +2021,6,3,1,Queensland,153.38237,-27.94569 +2020,9,25,1,Queensland,153.36963,-27.94614 +2023,11,3,1,Queensland,153.36543,-27.93072 +2021,8,14,1,Queensland,153.45221,-28.09686 +2023,7,8,1,Queensland,153.42115,-28.15682 +2020,10,7,1,Queensland,153.26799,-27.97822 +2023,10,7,2,Queensland,153.42763,-28.1183 +2023,9,12,2,Queensland,153.4519,-28.09208 +2021,10,8,1,Queensland,153.32284,-27.90721 +2021,11,6,1,Queensland,153.40825,-28.11806 +2020,8,24,1,Queensland,153.40744,-28.15722 +2022,2,9,1,Queensland,153.44832,-28.09741 +2021,10,19,1,Queensland,153.42228,-28.1211 +2022,12,22,1,Queensland,153.42468,-28.12325 +2022,1,28,1,Queensland,153.40575,-28.16967 +2020,10,13,1,Queensland,153.23213,-27.97714 +2021,3,8,2,Queensland,153.41444,-28.14495 +2021,10,23,2,Queensland,153.37144,-27.9054 +2022,9,26,1,Queensland,153.44864,-28.15375 +2021,5,13,1,Queensland,153.42894,-28.15999 +2023,3,27,1,Queensland,153.36278,-27.93373 +2022,3,24,1,Queensland,153.37997,-27.82347 +2020,3,11,1,Queensland,153.33195,-28.08082 +2023,7,23,1,Queensland,153.33298,-28.02252 +2021,1,11,1,Queensland,153.331,-27.90628 +2020,10,14,1,Queensland,153.4096,-28.18311 +2020,1,13,1,Queensland,153.43934,-28.15967 +2020,1,17,1,Queensland,153.45751,-28.13303 +2023,8,26,2,Queensland,153.32315,-27.89017 +2022,10,30,1,Queensland,153.35694,-27.93855 +2021,9,23,1,Queensland,153.44626,-28.0896 +2021,12,29,2,Queensland,153.4099,-28.11772 +2023,1,21,1,Queensland,153.33,-27.91172 +2023,11,30,1,Queensland,153.32912,-27.89066 +2021,6,6,1,Queensland,153.39843,-28.10656 +2023,6,1,1,Queensland,153.38215,-27.93293 +2023,8,27,1,Queensland,153.32912,-27.89066 +2020,6,7,1,Queensland,153.3314,-27.91526 +2022,10,18,1,Queensland,153.31967,-27.90881 +2022,6,30,1,Queensland,153.43993,-28.13712 +2023,11,19,1,Queensland,153.43295,-28.13689 +2020,10,14,1,Queensland,153.41062,-28.18249 +2021,7,28,1,Queensland,153.13112,-27.76799 +2023,3,16,1,Queensland,153.38271,-27.90602 +2023,10,13,1,Queensland,153.36575,-27.93016 +2023,8,31,1,Queensland,153.32912,-27.89066 +2021,4,2,2,Queensland,153.42654,-28.19025 +2022,9,5,1,Queensland,153.38056,-27.89217 +2021,7,3,1,Queensland,153.44121,-28.11541 +2023,12,4,1,Queensland,153.32912,-27.89066 +2023,10,13,1,Queensland,153.30402,-28.02785 +2022,6,6,1,Queensland,153.36295,-27.9339 +2020,1,14,1,Queensland,153.35464,-28.09126 +2020,9,27,2,Queensland,153.34686,-27.93263 +2020,1,26,1,Queensland,153.45112,-28.09279 +2020,1,5,1,Queensland,153.3316,-27.96145 +2020,4,14,1,Queensland,153.41095,-28.14262 +2023,8,11,1,Queensland,153.40087,-28.20647 +2020,12,25,1,Queensland,153.2712,-27.79778 +2021,10,27,1,Queensland,153.40607,-28.11641 +2023,3,24,1,Queensland,153.35023,-28.13027 +2022,9,18,1,Queensland,153.35669,-27.9358 +2020,3,25,1,Queensland,153.33236,-27.88747 +2023,12,13,1,Queensland,153.45337,-28.13794 +2021,11,5,1,Queensland,153.25994,-27.99801 +2020,1,13,1,Queensland,153.37298,-28.10796 +2021,8,4,1,Queensland,153.45802,-28.09371 +2021,6,22,1,Queensland,153.22307,-27.843 +2020,9,30,1,Queensland,153.44652,-28.14205 +2022,11,4,1,Queensland,153.45802,-28.09371 +2020,10,9,1,Queensland,153.25543,-27.87476 +2021,9,23,1,Queensland,153.44312,-28.16238 +2023,4,22,1,Queensland,153.41853,-28.17255 +2021,9,25,1,Queensland,153.44941,-28.13748 +2023,1,1,1,Queensland,153.40372,-28.11092 +2021,9,8,1,Queensland,153.44866,-28.09511 +2023,10,8,2,Queensland,153.45163,-28.09029 +2020,1,31,1,Queensland,153.45375,-28.13705 +2020,9,2,1,Queensland,153.4572,-28.1259 +2023,5,17,1,Queensland,153.35706,-27.93385 +2021,8,14,1,Queensland,153.3887,-27.9223 +2022,11,4,1,Queensland,153.26504,-27.84465 +2022,9,15,1,Queensland,153.44088,-28.11125 +2021,11,9,1,Queensland,153.30725,-27.94028 +2023,3,25,1,Queensland,153.42763,-28.1183 +2023,8,12,1,Queensland,153.45382,-28.16103 +2021,10,12,1,Queensland,153.43986,-28.15661 +2021,10,17,1,Queensland,153.43733,-28.14464 +2020,10,6,2,Queensland,153.18516,-27.80273 +2022,3,10,1,Queensland,153.35603,-28.09277 +2022,11,5,1,Queensland,153.256,-28.00813 +2021,10,25,2,Queensland,153.36036,-27.93605 +2023,4,16,1,Queensland,153.36569,-27.94465 +2021,11,4,1,Queensland,153.21167,-27.87267 +2020,4,30,1,Queensland,153.4497,-28.13892 +2022,5,2,1,Queensland,153.42113,-28.15022 +2022,6,1,1,Queensland,153.44204,-28.14901 +2021,8,16,1,Queensland,153.32281,-27.90675 +2022,9,27,1,Queensland,153.31599,-27.8991 +2020,9,29,1,Queensland,153.45116,-28.1002 +2021,9,17,1,Queensland,153.25756,-27.7863 +2022,8,7,2,Queensland,153.45305,-28.16072 +2020,6,28,1,Queensland,153.44685,-28.09347 +2023,11,17,1,Queensland,153.36243,-27.93306 +2023,7,22,1,Queensland,153.44573,-28.15931 +2020,9,7,2,Queensland,153.45,-28.10097 +2023,6,16,1,Queensland,153.35932,-27.93381 +2020,10,11,2,Queensland,153.45123,-28.09279 +2023,7,29,1,Queensland,153.3633,-27.84246 +2022,10,24,1,Queensland,153.38467,-27.91667 +2021,7,18,1,Queensland,153.44643,-28.14043 +2021,8,18,1,Queensland,153.36256,-27.94027 +2023,11,23,1,Queensland,153.43192,-28.15712 +2020,10,7,1,Queensland,153.4378,-28.13879 +2023,10,30,1,Queensland,153.40934,-28.14076 +2020,2,1,1,Queensland,153.36936,-27.83282 +2023,7,30,1,Queensland,153.39192,-28.11375 +2023,12,12,1,Queensland,153.35291,-27.8429 +2023,7,11,1,Queensland,153.30023,-28.0021 +2023,5,29,1,Queensland,153.45258,-28.09215 +2020,9,10,1,Queensland,153.24396,-27.90641 +2023,1,3,1,Queensland,153.36528,-27.83409 +2020,11,21,2,Queensland,153.341,-27.90585 +2023,10,10,1,Queensland,153.38167,-27.96512 +2023,4,12,1,Queensland,153.32912,-27.89066 +2023,5,3,1,Queensland,153.36036,-27.93605 +2021,6,6,1,Queensland,153.43932,-28.15616 +2020,10,8,1,Queensland,153.36127,-28.12178 +2023,9,24,2,Queensland,153.37338,-28.10079 +2023,11,1,1,Queensland,153.36615,-27.94826 +2023,9,29,1,Queensland,153.40597,-28.17028 +2023,10,8,2,Queensland,153.32912,-27.89066 +2023,11,5,1,Queensland,153.35706,-27.93385 +2023,6,17,1,Queensland,153.33,-27.92281 +2021,11,23,1,Queensland,153.45644,-28.13082 +2022,12,7,1,Queensland,153.34521,-28.11563 +2023,9,2,1,Queensland,153.36388,-27.92812 +2023,12,1,1,Queensland,153.36283,-27.93379 +2022,10,9,1,Queensland,153.36109,-27.93244 +2021,3,31,1,Queensland,153.38801,-27.92245 +2020,1,11,1,Queensland,153.40296,-28.11072 +2023,10,1,1,Queensland,153.37412,-27.91055 +2023,3,21,1,Queensland,153.36278,-27.93373 +2020,1,12,1,Queensland,153.45257,-28.09622 +2023,11,20,2,Queensland,153.32912,-27.89066 +2021,7,20,1,Queensland,153.32885,-27.89084 +2022,11,5,1,Queensland,153.2477,-27.84138 +2022,10,21,1,Queensland,153.33479,-28.15172 +2021,9,16,1,Queensland,153.45346,-28.15274 +2021,7,12,2,Queensland,153.329,-27.91564 +2023,10,4,2,Queensland,153.32912,-27.89066 +2023,6,29,1,Queensland,153.45321,-28.09663 +2023,11,20,1,Queensland,153.32912,-27.89066 +2020,10,31,1,Queensland,153.31919,-27.90144 +2023,11,14,1,Queensland,153.32912,-27.89066 +2020,6,15,1,Queensland,153.33968,-27.85552 +2020,7,19,1,Queensland,153.27651,-27.99572 +2020,8,31,1,Queensland,153.37991,-27.9177 +2023,8,20,1,Queensland,153.37144,-27.83934 +2023,8,29,1,Queensland,153.45203,-28.14757 +2020,3,29,1,Queensland,153.38902,-28.12217 +2023,7,3,1,Queensland,153.3721,-27.91477 +2021,5,23,1,Queensland,153.37702,-27.8299 +2023,7,4,1,Queensland,153.44921,-28.0984 +2021,6,1,1,Queensland,153.43589,-28.12854 +2023,6,1,1,Queensland,153.4485,-28.09754 +2022,6,24,2,Queensland,153.44869,-28.09841 +2020,9,28,2,Queensland,153.28915,-27.91877 +2023,4,6,2,Queensland,153.36488,-27.93417 +2021,4,2,1,Queensland,153.37435,-27.9621 +2020,11,24,1,Queensland,153.42655,-28.12541 +2023,6,26,1,Queensland,153.32198,-27.89243 +2023,8,27,2,Queensland,153.32912,-27.89066 +2020,12,14,1,Queensland,153.43389,-28.16911 +2023,11,9,2,Queensland,153.33649,-27.91116 +2022,12,11,1,Queensland,153.36297,-27.934 +2021,6,19,1,Queensland,153.45105,-28.16078 +2023,1,9,1,Queensland,153.26504,-27.84465 +2023,1,17,2,Queensland,153.32914,-27.92049 +2023,8,8,1,Queensland,153.45533,-28.08993 +2023,7,26,1,Queensland,153.35706,-27.93385 +2020,3,27,1,Queensland,153.44861,-28.10079 +2022,11,3,1,Queensland,153.42471,-28.12313 +2022,1,31,1,Queensland,153.35751,-27.84526 +2023,8,22,1,Queensland,153.45864,-28.15505 +2023,2,3,1,Queensland,153.35778,-27.94042 +2023,10,21,1,Queensland,153.42047,-28.15091 +2021,2,8,2,Queensland,153.37116,-28.11049 +2023,9,7,2,Queensland,153.32912,-27.89066 +2022,7,23,1,Queensland,153.36205,-27.93206 +2023,10,7,1,Queensland,153.35392,-27.95012 +2023,8,3,1,Queensland,153.37996,-28.13708 +2020,9,4,2,Queensland,153.38859,-27.91656 +2020,9,18,1,Queensland,153.335,-28.07194 +2023,3,6,1,Queensland,153.25731,-27.82617 +2021,5,21,1,Queensland,153.45095,-28.09276 +2023,11,18,1,Queensland,153.4552,-28.09276 +2021,9,12,1,Queensland,153.35504,-28.10536 +2020,1,6,1,Queensland,153.45554,-28.14288 +2022,9,30,2,Queensland,153.44748,-28.09328 +2020,4,1,1,Queensland,153.09192,-27.83332 +2021,1,17,1,Queensland,153.23201,-27.97701 +2021,1,26,1,Queensland,153.36294,-27.84176 +2021,10,22,1,Queensland,153.44512,-28.14493 +2021,4,16,1,Queensland,153.44606,-28.09533 +2020,1,30,1,Queensland,153.38262,-27.95385 +2020,4,3,1,Queensland,153.36278,-27.90226 +2020,6,6,1,Queensland,153.4526,-28.09506 +2020,1,2,1,Queensland,153.22937,-27.97748 +2023,12,3,1,Queensland,153.44899,-28.13754 +2021,7,21,1,Queensland,153.32885,-27.89084 +2022,12,5,1,Queensland,153.23197,-27.97531 +2021,11,16,1,Queensland,153.45007,-28.14877 +2021,10,21,1,Queensland,153.40825,-28.11806 +2023,3,16,1,Queensland,153.27421,-27.96313 +2021,10,16,1,Queensland,153.28104,-27.81579 +2022,12,2,1,Queensland,153.44498,-28.0946 +2023,8,21,1,Queensland,153.36389,-27.92872 +2023,8,28,1,Queensland,153.37116,-28.11049 +2022,5,17,1,Queensland,153.25157,-27.78826 +2022,3,12,2,Queensland,153.40714,-28.14586 +2022,12,3,1,Queensland,153.2731,-27.97828 +2023,9,10,1,Queensland,153.37232,-27.93737 +2020,12,24,1,Queensland,153.23212,-27.97671 +2022,12,28,1,Queensland,153.45143,-28.0998 +2021,9,19,1,Queensland,153.32569,-28.0898 +2023,8,13,2,Queensland,153.45258,-28.09215 +2023,4,30,1,Queensland,153.32824,-27.89936 +2020,11,27,2,Queensland,153.44705,-28.13625 +2023,4,20,1,Queensland,153.39213,-28.12229 +2023,12,14,1,Queensland,153.25002,-27.9453 +2022,4,21,1,Queensland,153.44867,-28.09744 +2023,1,12,1,Queensland,153.35913,-27.93338 +2020,5,12,1,Queensland,153.38009,-27.93903 +2021,7,17,1,Queensland,153.45222,-28.09539 +2023,10,20,1,Queensland,153.45124,-28.09261 +2022,12,4,1,Queensland,153.40825,-28.11806 +2021,5,30,1,Queensland,153.23197,-27.97534 +2020,10,23,2,Queensland,153.32898,-27.89091 +2020,2,9,1,Queensland,153.35699,-27.94981 +2022,10,7,1,Queensland,153.37139,-27.95399 +2022,7,13,1,Queensland,153.32834,-27.89125 +2021,5,2,1,Queensland,153.45206,-28.09504 +2020,8,31,1,Queensland,153.43851,-28.11373 +2020,12,12,1,Queensland,153.32893,-27.89085 +2022,6,6,1,Queensland,153.36297,-27.934 +2020,9,29,1,Queensland,153.40583,-28.14791 +2020,1,7,1,Queensland,153.29801,-27.82804 +2021,10,30,2,Queensland,153.37955,-27.94282 +2023,7,20,1,Queensland,153.36418,-27.92825 +2020,7,12,1,Queensland,153.23229,-27.97712 +2020,12,30,1,Queensland,153.36893,-27.83285 +2023,5,20,1,Queensland,153.45194,-28.13857 +2023,8,8,1,Queensland,153.37723,-27.95131 +2021,11,3,1,Queensland,153.36111,-27.77802 +2020,11,15,1,Queensland,153.36735,-27.88144 +2020,11,30,1,Queensland,153.32958,-27.89015 +2021,12,15,1,Queensland,153.32912,-27.89065 +2022,11,29,1,Queensland,153.40365,-28.11092 +2022,10,2,1,Queensland,153.34068,-27.90241 +2022,2,7,1,Queensland,153.38413,-27.92024 +2022,10,28,1,Queensland,153.32912,-27.89065 +2022,9,24,1,Queensland,153.2516,-27.78821 +2021,6,23,1,Queensland,153.26801,-27.78373 +2023,9,27,1,Queensland,153.36587,-27.93029 +2023,10,22,1,Queensland,153.22873,-27.88457 +2022,10,6,2,Queensland,153.42853,-28.14056 +2021,8,11,1,Queensland,153.44905,-28.09768 +2020,11,9,1,Queensland,153.32892,-27.89087 +2020,10,6,1,Queensland,153.32659,-27.905 +2023,10,5,2,Queensland,153.37303,-27.91254 +2021,1,23,2,Queensland,153.32893,-27.89083 +2023,1,29,1,Queensland,153.43779,-28.14491 +2022,11,3,1,Queensland,153.36064,-27.93288 +2023,3,23,1,Queensland,153.32912,-27.89066 +2020,3,22,1,Queensland,153.23243,-27.977 +2020,11,28,2,Queensland,153.32921,-27.89076 +2023,7,2,1,Queensland,153.43572,-28.14216 +2023,10,31,1,Queensland,153.3625,-27.93325 +2020,10,27,1,Queensland,153.32931,-27.89074 +2020,9,2,1,Queensland,153.40424,-28.11792 +2023,9,9,2,Queensland,153.44942,-28.09303 +2023,3,31,1,Queensland,153.39167,-28.10438 +2023,11,2,1,Queensland,153.44033,-28.15039 +2023,10,1,1,Queensland,153.37884,-27.9063 +2023,11,25,1,Queensland,153.32912,-27.89066 +2020,3,25,1,Queensland,153.44788,-28.09687 +2022,11,2,2,Queensland,153.34166,-27.90657 +2020,6,16,1,Queensland,153.23215,-27.97723 +2020,6,20,1,Queensland,153.23196,-27.97668 +2020,9,23,1,Queensland,153.44695,-28.09314 +2023,6,12,1,Queensland,153.32316,-27.92008 +2022,7,15,1,Queensland,153.32912,-27.89065 +2023,6,20,1,Queensland,153.32912,-27.89066 +2021,9,8,1,Queensland,153.24633,-27.92608 +2021,8,9,1,Queensland,153.38936,-27.9227 +2020,10,2,1,Queensland,153.45841,-28.14726 +2023,3,22,1,Queensland,153.29561,-27.84437 +2023,10,16,1,Queensland,153.42956,-28.12154 +2022,8,27,1,Queensland,153.32625,-27.90447 +2022,7,21,1,Queensland,153.32912,-27.89065 +2023,8,26,1,Queensland,153.36393,-27.92919 +2023,6,23,2,Queensland,153.33023,-27.912 +2020,6,12,1,Queensland,153.37314,-27.94009 +2021,8,10,1,Queensland,153.38755,-27.92251 +2021,3,11,1,Queensland,153.37308,-28.10152 +2023,11,13,1,Queensland,153.42047,-28.15091 +2022,1,13,1,Queensland,153.44634,-28.15488 +2021,4,19,1,Queensland,153.43988,-28.10415 +2020,9,23,1,Queensland,153.32921,-27.89993 +2021,4,15,1,Queensland,153.23197,-27.97534 +2021,11,21,1,Queensland,153.33608,-27.90697 +2022,2,13,1,Queensland,153.44218,-28.14345 +2021,1,6,1,Queensland,153.23766,-27.97625 +2023,7,23,1,Queensland,153.44945,-28.13374 +2021,1,5,1,Queensland,153.23214,-27.97718 +2022,6,5,1,Queensland,153.31687,-28.01188 +2020,12,20,1,Queensland,153.44912,-28.10121 +2021,11,15,1,Queensland,153.35751,-27.84526 +2022,1,18,1,Queensland,153.31775,-28.00129 +2020,1,7,1,Queensland,153.36523,-27.93943 +2023,11,22,2,Queensland,153.32912,-27.89066 +2023,1,10,1,Queensland,153.45117,-28.09248 +2023,11,22,1,Queensland,153.27663,-27.99879 +2021,11,20,1,Queensland,153.1815,-27.80103 +2021,5,29,1,Queensland,153.37313,-27.94706 +2020,1,5,2,Queensland,153.45157,-28.09172 +2022,10,9,1,Queensland,153.18487,-27.80268 +2022,9,14,1,Queensland,153.37394,-27.93424 +2020,12,11,1,Queensland,153.23245,-27.9772 +2023,9,28,2,Queensland,153.44589,-28.09711 +2022,10,23,1,Queensland,153.36311,-27.93411 +2020,10,31,2,Queensland,153.32927,-27.89089 +2020,9,8,1,Queensland,153.36146,-27.90292 +2023,10,28,1,Queensland,153.32912,-27.89066 +2020,10,11,1,Queensland,153.24005,-27.97772 +2020,4,2,1,Queensland,153.45153,-28.13965 +2023,7,16,1,Queensland,153.35888,-27.93341 +2021,1,10,1,Queensland,153.23251,-27.97711 +2023,10,25,1,Queensland,153.45157,-28.09146 +2023,11,2,1,Queensland,153.43674,-28.1376 +2023,10,11,2,Queensland,153.32875,-27.89041 +2021,4,24,1,Queensland,153.40459,-28.10742 +2021,1,19,1,Queensland,153.23244,-27.9772 +2022,5,30,2,Queensland,153.37321,-28.11978 +2022,10,4,1,Queensland,153.41912,-28.11959 +2023,10,27,1,Queensland,153.36442,-27.92955 +2022,6,13,1,Queensland,153.38193,-27.95268 +2021,4,3,1,Queensland,153.38481,-27.9476 +2020,3,3,1,Queensland,153.33124,-27.91457 +2023,8,19,1,Queensland,153.37279,-27.95446 +2023,11,22,1,Queensland,153.35882,-27.94197 +2023,4,13,1,Queensland,153.36203,-27.9374 +2022,10,4,1,Queensland,153.38215,-27.93293 +2021,5,13,1,Queensland,153.43842,-28.13078 +2022,11,14,1,Queensland,153.35743,-27.94082 +2022,7,25,1,Queensland,153.33517,-27.89075 +2023,1,24,1,Queensland,153.44853,-28.09752 +2020,12,6,1,Queensland,153.26429,-27.84388 +2021,1,7,2,Queensland,153.32893,-27.89083 +2020,6,30,1,Queensland,153.23236,-27.97683 +2020,11,20,1,Queensland,153.44157,-28.10626 +2020,8,2,1,Queensland,153.36423,-27.95123 +2023,8,20,1,Queensland,153.41849,-28.13062 +2023,9,30,1,Queensland,153.39273,-28.10974 +2022,8,20,1,Queensland,153.34803,-27.96021 +2023,8,29,1,Queensland,153.35809,-27.84313 +2022,1,12,1,Queensland,153.45265,-28.14016 +2021,8,18,1,Queensland,153.37173,-27.83957 +2021,6,24,1,Queensland,153.32935,-27.89053 +2020,11,15,1,Queensland,153.44809,-28.09828 +2021,7,18,1,Queensland,153.34108,-27.82546 +2020,12,11,1,Queensland,153.32919,-27.89085 +2021,9,18,1,Queensland,153.44671,-28.14064 +2022,3,25,1,Queensland,153.32912,-27.89065 +2023,11,14,1,Queensland,153.44908,-28.09873 +2020,2,6,1,Queensland,153.37952,-27.82202 +2020,11,26,1,Queensland,153.2752,-27.81126 +2023,11,14,1,Queensland,153.32282,-27.89107 +2021,11,17,1,Queensland,153.44153,-28.11231 +2023,10,15,1,Queensland,153.36677,-27.92918 +2021,8,21,1,Queensland,153.32207,-27.90182 +2023,8,24,2,Queensland,153.32912,-27.89066 +2023,3,7,1,Queensland,153.36534,-27.9326 +2021,8,18,2,Queensland,153.40825,-28.11806 +2023,7,12,1,Queensland,153.44876,-28.09616 +2023,5,4,1,Queensland,153.32822,-27.89969 +2023,4,15,1,Queensland,153.36036,-27.93605 +2022,7,18,1,Queensland,153.44849,-28.09754 +2023,6,9,1,Queensland,153.35733,-27.94074 +2023,6,29,1,Queensland,153.27663,-27.9988 +2023,1,23,1,Queensland,153.25001,-27.9453 +2020,9,10,1,Queensland,153.42934,-28.15178 +2021,11,1,1,Queensland,153.4418,-28.10347 +2023,6,4,1,Queensland,153.36036,-27.93605 +2023,10,11,1,Queensland,153.44914,-28.13747 +2020,6,25,1,Queensland,153.23215,-27.97718 +2021,9,20,1,Queensland,153.45269,-28.09555 +2023,8,26,1,Queensland,153.42984,-28.17994 +2023,8,14,1,Queensland,153.27787,-27.96181 +2023,11,21,1,Queensland,153.37425,-27.96187 +2023,2,14,1,Queensland,153.33537,-28.10378 +2021,8,27,1,Queensland,153.32765,-28.00853 +2023,4,16,1,Queensland,153.36529,-27.94491 +2021,1,1,1,Queensland,153.23245,-27.9772 +2023,2,9,1,Queensland,153.27563,-27.97425 +2020,9,8,1,Queensland,153.32118,-27.9791 +2020,6,13,1,Queensland,153.44361,-28.14034 +2020,4,8,1,Queensland,153.37127,-27.89992 +2020,6,30,1,Queensland,153.42052,-28.14974 +2021,11,14,1,Queensland,153.32857,-27.89541 +2023,8,19,1,Queensland,153.37429,-27.95405 +2021,1,14,2,Queensland,153.45119,-28.09957 +2022,6,18,1,Queensland,153.35453,-28.09299 +2022,1,7,1,Queensland,153.41052,-28.14313 +2020,10,19,1,Queensland,153.44704,-28.14059 +2023,3,18,1,Queensland,153.38741,-27.92147 +2023,10,16,1,Queensland,153.36435,-27.92895 +2023,10,12,1,Queensland,153.269,-27.78307 +2020,8,25,1,Queensland,153.45663,-28.09486 +2023,9,18,1,Queensland,153.40132,-28.11435 +2023,5,23,1,Queensland,153.32912,-27.89066 +2022,12,12,1,Queensland,153.35648,-27.93738 +2022,3,21,1,Queensland,153.31569,-27.99524 +2020,9,18,1,Queensland,153.43934,-28.13821 +2021,10,27,1,Queensland,153.32912,-27.89065 +2020,9,11,1,Queensland,153.44787,-28.0932 +2023,9,5,1,Queensland,153.35753,-27.8371 +2020,10,24,2,Queensland,153.32895,-27.89083 +2023,11,29,1,Queensland,153.32912,-27.89066 +2023,11,14,1,Queensland,153.35795,-27.94139 +2023,6,20,1,Queensland,153.41053,-28.20877 +2022,11,15,1,Queensland,153.35641,-27.93914 +2022,8,17,1,Queensland,153.35841,-27.94065 +2020,9,29,1,Queensland,153.44506,-28.14078 +2023,9,29,2,Queensland,153.32912,-27.89066 +2020,8,16,1,Queensland,153.32473,-27.91027 +2020,9,17,1,Queensland,153.35195,-28.05415 +2022,8,8,1,Queensland,153.3841,-27.92028 +2020,7,10,1,Queensland,153.32522,-27.82378 +2023,11,6,1,Queensland,153.38734,-27.92255 +2022,9,14,1,Queensland,153.35999,-27.94306 +2020,9,10,1,Queensland,153.26971,-28.01639 +2020,11,30,1,Queensland,153.43785,-28.13882 +2020,10,15,1,Queensland,153.45282,-28.13722 +2023,1,18,1,Queensland,153.36203,-27.9374 +2023,10,16,1,Queensland,153.45269,-28.09119 +2020,11,1,2,Queensland,153.44652,-28.1363 +2023,9,27,1,Queensland,153.36789,-27.94941 +2022,9,29,1,Queensland,153.3571,-27.94176 +2023,7,20,1,Queensland,153.27663,-27.9988 +2023,10,26,1,Queensland,153.45195,-28.09188 +2023,11,10,1,Queensland,153.36522,-27.93126 +2023,10,21,1,Queensland,153.35606,-27.84246 +2020,4,12,1,Queensland,153.44141,-28.14807 +2022,6,22,1,Queensland,153.45892,-28.15538 +2023,7,31,1,Queensland,153.44694,-28.09722 +2022,9,7,1,Queensland,153.40699,-28.17835 +2023,8,27,1,Queensland,153.27663,-27.9988 +2023,2,5,1,Queensland,153.41072,-28.14401 +2020,10,3,1,Queensland,153.42657,-28.17237 +2020,10,19,1,Queensland,153.45167,-28.1327 +2023,1,9,1,Queensland,153.36203,-27.9374 +2020,7,28,1,Queensland,153.44621,-28.1363 +2021,1,28,1,Queensland,153.44471,-28.14485 +2020,7,28,1,Queensland,153.44579,-28.13783 +2023,8,24,1,Queensland,153.2516,-27.78821 +2020,11,13,1,Queensland,153.32783,-27.88397 +2023,8,5,1,Queensland,153.45194,-28.16141 +2023,7,31,1,Queensland,153.36145,-27.9304 +2022,9,28,1,Queensland,153.36036,-27.93605 +2021,8,4,1,Queensland,153.32912,-27.89065 +2020,6,27,1,Queensland,153.33075,-27.91489 +2020,12,5,1,Queensland,153.45263,-28.09537 +2021,1,24,1,Queensland,153.32893,-27.89083 +2022,6,9,1,Queensland,153.32912,-27.89065 +2023,10,20,1,Queensland,153.36612,-27.92902 +2021,6,25,1,Queensland,153.42489,-28.12648 +2023,2,21,1,Queensland,153.21165,-27.87226 +2023,3,16,1,Queensland,153.29571,-27.799 +2022,10,4,1,Queensland,153.32912,-27.89065 +2020,12,28,2,Queensland,153.32893,-27.89083 +2022,9,20,1,Queensland,153.32912,-27.89065 +2022,9,16,1,Queensland,153.36093,-27.93301 +2021,9,13,1,Queensland,153.32912,-27.89065 +2023,10,21,1,Queensland,153.45201,-28.13882 +2021,8,19,2,Queensland,153.45095,-28.09276 +2023,9,3,1,Queensland,153.44761,-28.09807 +2023,9,28,1,Queensland,153.30126,-27.92325 +2020,7,17,1,Queensland,153.23232,-27.9772 +2023,11,13,1,Queensland,153.36297,-27.93399 +2020,12,31,1,Queensland,153.23241,-27.97689 +2023,9,13,1,Queensland,153.45188,-28.09206 +2021,11,10,2,Queensland,153.43858,-28.1554 +2021,1,6,1,Queensland,153.23241,-27.97689 +2021,5,15,1,Queensland,153.42925,-28.16103 +2021,7,2,1,Queensland,153.33025,-27.90441 +2023,9,25,1,Queensland,153.44167,-28.15623 +2021,12,25,1,Queensland,153.32912,-27.89065 +2020,8,5,1,Queensland,153.44894,-28.09602 +2022,12,28,1,Queensland,153.27309,-27.98496 +2022,7,15,1,Queensland,153.35774,-27.94048 +2022,11,16,1,Queensland,153.39194,-28.20908 +2021,5,25,1,Queensland,153.32912,-27.89065 +2020,6,1,1,Queensland,153.31913,-27.82618 +2023,8,20,1,Queensland,153.45835,-28.15497 +2022,9,11,1,Queensland,153.38989,-27.89438 +2023,4,18,1,Queensland,153.43917,-28.1561 +2022,10,24,1,Queensland,153.32912,-27.89065 +2023,10,2,1,Queensland,153.45354,-28.09458 +2021,2,25,1,Queensland,153.37483,-28.11081 +2022,8,4,1,Queensland,153.35143,-28.12985 +2022,2,9,1,Queensland,153.44981,-28.10001 +2021,2,16,1,Queensland,153.44167,-28.10623 +2021,11,28,1,Queensland,153.44489,-28.14493 +2020,10,20,1,Queensland,153.37083,-28.17893 +2021,8,31,1,Queensland,153.37452,-28.20867 +2023,10,27,1,Queensland,153.23229,-27.97691 +2022,8,3,1,Queensland,153.35717,-27.93818 +2021,11,19,1,Queensland,153.43474,-28.14538 +2022,12,21,1,Queensland,153.45518,-28.16129 +2020,10,8,1,Queensland,153.36071,-27.93681 +2022,9,3,1,Queensland,153.36302,-27.9295 +2023,5,24,1,Queensland,153.36297,-27.93399 +2023,8,11,1,Queensland,153.25242,-28.12051 +2021,5,31,1,Queensland,153.34102,-27.82546 +2021,10,4,1,Queensland,153.38674,-27.91495 +2021,7,4,1,Queensland,153.37955,-27.94282 +2022,9,17,1,Queensland,153.409,-28.14713 +2020,8,17,1,Queensland,153.38681,-27.91882 +2022,7,8,1,Queensland,153.31225,-28.01849 +2022,11,12,1,Queensland,153.3635,-27.94965 +2022,12,12,2,Queensland,153.36297,-27.934 +2022,3,2,1,Queensland,153.37515,-28.10168 +2020,8,17,1,Queensland,153.34152,-27.91607 +2022,8,25,2,Queensland,153.27694,-27.97994 +2022,3,18,1,Queensland,153.32912,-27.89065 +2022,9,25,1,Queensland,153.29225,-27.84642 +2020,10,21,2,Queensland,153.3293,-27.89087 +2022,10,28,1,Queensland,153.44962,-28.15994 +2020,2,16,1,Queensland,153.44644,-28.14035 +2021,1,24,1,Queensland,153.26202,-28.03093 +2021,2,3,2,Queensland,153.44059,-28.10461 +2023,10,7,1,Queensland,153.37299,-27.83195 +2022,8,5,1,Queensland,153.35717,-27.93818 +2021,8,1,1,Queensland,153.30653,-28.00788 +2020,9,12,1,Queensland,153.32899,-27.89087 +2021,10,17,2,Queensland,153.44878,-28.09259 +2022,7,25,1,Queensland,153.44798,-28.16088 +2021,8,17,1,Queensland,153.38603,-27.94684 +2020,3,31,1,Queensland,153.37306,-27.91339 +2021,10,11,1,Queensland,153.45113,-28.0928 +2021,10,9,1,Queensland,153.43733,-28.14464 +2023,4,9,1,Queensland,153.38393,-27.92023 +2023,2,19,1,Queensland,153.37099,-28.11555 +2022,4,15,1,Queensland,153.32638,-27.88604 +2022,7,11,1,Queensland,153.35363,-27.93305 +2020,2,10,1,Queensland,153.45007,-28.14273 +2020,1,5,1,Queensland,153.45163,-28.09204 +2023,2,17,1,Queensland,153.36589,-27.9511 +2020,11,27,1,Queensland,153.44154,-28.10656 +2023,2,14,1,Queensland,153.45408,-28.13302 +2020,11,6,2,Queensland,153.32884,-27.89082 +2023,5,5,1,Queensland,153.2726,-27.83989 +2021,10,4,2,Queensland,153.07371,-27.93033 +2022,9,25,2,Queensland,153.44879,-28.09793 +2022,7,17,1,Queensland,153.32774,-28.01279 +2020,11,17,1,Queensland,153.45263,-28.09503 +2021,12,2,1,Queensland,153.37713,-27.93418 +2023,9,27,1,Queensland,153.45407,-28.09728 +2021,11,19,2,Queensland,153.45594,-28.14706 +2020,6,4,1,Queensland,153.33055,-27.9183 +2023,10,27,1,Queensland,153.4546,-28.13288 +2023,9,25,1,Queensland,153.36229,-27.92993 +2023,10,2,2,Queensland,153.37704,-27.91942 +2023,3,17,1,Queensland,153.36198,-27.93227 +2021,3,1,1,Queensland,153.37096,-27.83306 +2023,7,19,1,Queensland,153.36297,-27.93399 +2023,5,24,1,Queensland,153.38024,-27.9568 +2020,8,2,1,Queensland,153.27698,-27.99672 +2020,1,3,1,Queensland,153.43882,-28.15956 +2023,1,18,1,Queensland,153.27126,-28.01201 +2020,12,23,1,Queensland,153.45676,-28.09324 +2023,4,28,1,Queensland,153.35809,-27.93411 +2021,1,23,1,Queensland,153.24738,-27.76464 +2022,8,11,1,Queensland,153.44849,-28.09754 +2022,9,10,1,Queensland,153.17781,-27.79305 +2022,6,28,1,Queensland,153.44696,-28.13328 +2023,6,3,1,Queensland,153.45278,-28.09411 +2020,6,25,1,Queensland,153.45102,-28.14135 +2022,12,29,1,Queensland,153.2949,-27.84205 +2020,11,22,1,Queensland,153.32923,-27.89074 +2021,5,27,1,Queensland,153.23197,-27.9753 +2020,4,1,1,Queensland,153.37234,-27.90385 +2021,7,29,1,Queensland,153.32938,-27.89044 +2022,11,8,1,Queensland,153.36191,-27.93234 +2020,1,23,1,Queensland,153.37486,-27.94737 +2020,11,29,2,Queensland,153.32921,-27.89076 +2022,10,2,1,Queensland,153.23099,-27.97529 +2023,3,11,1,Queensland,153.41008,-28.14197 +2023,5,17,1,Queensland,153.35611,-27.93302 +2023,4,13,1,Queensland,153.36203,-27.9374 +2023,11,15,1,Queensland,153.36283,-27.93379 +2020,9,17,1,Queensland,153.37449,-27.90909 +2023,5,1,1,Queensland,153.35885,-27.93283 +2023,7,14,2,Queensland,153.45278,-28.09475 +2023,6,8,2,Queensland,153.35704,-27.83716 +2020,2,1,1,Queensland,153.45271,-28.0964 +2020,8,5,1,Queensland,153.4501,-28.10103 +2021,2,24,1,Queensland,153.44822,-28.09938 +2022,4,20,1,Queensland,153.31415,-28.05113 +2021,11,7,1,Queensland,153.44197,-28.10639 +2022,4,22,1,Queensland,153.27716,-27.98091 +2022,10,10,1,Queensland,153.32912,-27.89065 +2021,10,23,2,Queensland,153.40825,-28.11806 +2023,3,27,1,Queensland,153.36421,-27.93558 +2023,9,26,2,Queensland,153.45163,-28.09029 +2021,1,19,1,Queensland,153.32944,-27.89097 +2021,3,25,1,Queensland,153.2029,-27.91123 +2022,7,26,1,Queensland,153.45111,-28.16049 +2022,12,9,1,Queensland,153.32912,-27.89065 +2020,1,29,1,Queensland,153.45574,-28.13122 +2021,6,13,1,Queensland,153.32927,-27.89072 +2022,2,2,1,Queensland,153.44857,-28.09744 +2022,6,7,1,Queensland,153.32912,-27.89065 +2021,9,22,1,Queensland,153.37231,-27.91977 +2022,6,6,1,Queensland,153.32912,-27.89065 +2021,9,12,1,Queensland,153.36212,-27.94931 +2021,10,14,1,Queensland,153.43528,-28.11912 +2023,10,13,2,Queensland,153.37608,-27.95767 +2021,12,6,1,Queensland,153.31412,-28.09356 +2020,11,16,1,Queensland,153.32298,-28.0133 +2023,9,3,1,Queensland,153.36297,-27.93399 +2023,9,7,1,Queensland,153.37408,-27.94815 +2021,6,30,1,Queensland,153.44678,-28.13637 +2021,9,15,1,Queensland,153.27634,-27.97944 +2021,11,6,1,Queensland,153.44142,-28.15111 +2020,12,26,1,Queensland,153.32893,-27.89083 +2020,10,15,1,Queensland,153.40415,-28.13512 +2021,8,15,1,Queensland,153.45889,-28.13862 +2021,12,4,1,Queensland,153.44978,-28.15357 +2021,12,17,1,Queensland,153.40753,-28.11841 +2021,9,9,2,Queensland,153.3854,-27.9148 +2021,6,28,1,Queensland,153.45261,-28.09606 +2021,8,29,1,Queensland,153.36252,-27.95347 +2022,11,23,1,Queensland,153.43233,-28.16541 +2020,9,5,1,Queensland,153.32923,-27.89076 +2022,11,18,1,Queensland,153.35729,-27.95005 +2021,11,18,1,Queensland,153.41684,-28.14475 +2022,4,28,1,Queensland,153.45287,-28.09568 +2021,1,30,2,Queensland,153.23137,-27.97742 +2023,12,13,1,Queensland,153.32912,-27.89066 +2023,5,10,1,Queensland,153.32912,-27.89066 +2023,3,11,1,Queensland,153.32912,-27.89066 +2022,10,3,1,Queensland,153.45353,-28.09637 +2020,1,11,1,Queensland,153.43924,-28.15968 +2022,7,16,1,Queensland,153.44849,-28.09754 +2023,6,28,1,Queensland,153.4547,-28.09374 +2023,5,1,1,Queensland,153.36039,-27.93688 +2020,7,23,1,Queensland,153.23245,-27.977 +2023,7,23,1,Queensland,153.44591,-28.09195 +2022,8,25,1,Queensland,153.43176,-28.11204 +2020,7,25,1,Queensland,153.42083,-28.17173 +2020,7,20,1,Queensland,153.32922,-27.89093 +2023,11,8,1,Queensland,153.37344,-27.83705 +2020,2,19,1,Queensland,153.46215,-28.15937 +2023,7,27,1,Queensland,153.40609,-28.16862 +2022,10,22,1,Queensland,153.35641,-27.93914 +2023,9,25,1,Queensland,153.35756,-27.94101 +2020,9,23,1,Queensland,153.27544,-27.99466 +2022,3,1,1,Queensland,153.46437,-28.15801 +2020,10,25,2,Queensland,153.44647,-28.13642 +2020,8,26,1,Queensland,153.44645,-28.14034 +2023,8,30,1,Queensland,153.43429,-28.159 +2023,3,12,1,Queensland,153.45207,-28.13235 +2020,9,20,1,Queensland,153.23214,-27.97718 +2022,2,3,2,Queensland,153.44849,-28.09742 +2023,9,25,1,Queensland,153.35657,-27.84163 +2021,8,26,1,Queensland,153.38131,-28.08484 +2023,11,5,1,Queensland,153.32819,-27.89498 +2021,1,3,1,Queensland,153.23121,-27.97582 +2022,12,6,1,Queensland,153.35671,-27.93713 +2022,8,2,1,Queensland,153.2222,-27.96158 +2020,5,3,1,Queensland,153.44369,-28.16261 +2023,1,7,1,Queensland,153.45945,-28.14856 +2020,5,1,1,Queensland,153.38072,-27.95351 +2022,11,14,1,Queensland,153.37331,-27.95562 +2023,7,13,1,Queensland,153.32643,-27.82421 +2023,9,24,2,Queensland,153.37502,-27.91299 +2022,11,8,1,Queensland,153.39321,-28.1269 +2020,1,11,1,Queensland,153.23246,-27.97186 +2023,10,16,1,Queensland,153.32695,-27.82146 +2023,5,31,1,Queensland,153.36532,-27.93055 +2020,11,26,1,Queensland,153.43785,-28.13888 +2023,7,24,1,Queensland,153.32912,-27.89066 +2020,7,19,2,Queensland,153.37097,-28.11042 +2020,5,16,1,Queensland,153.23234,-27.97686 +2020,3,14,1,Queensland,153.331278,-27.982296 +2023,10,20,2,Queensland,153.32912,-27.89066 +2020,5,25,1,Queensland,153.44649,-28.14027 +2020,11,4,1,Queensland,153.44754,-28.14932 +2021,8,12,2,Queensland,153.45001,-28.09275 +2023,10,14,1,Queensland,153.3525,-27.93605 +2020,10,31,1,Queensland,153.3413,-28.0907 +2023,4,14,1,Queensland,153.38831,-27.91109 +2023,9,27,1,Queensland,153.43713,-28.11869 +2022,11,30,1,Queensland,153.3476,-28.1212 +2020,12,13,1,Queensland,153.42631,-28.14299 +2021,9,28,2,Queensland,153.32912,-27.89065 +2023,3,15,1,Queensland,153.3295,-27.8909 +2020,3,16,1,Queensland,153.3287,-27.89088 +2020,10,30,1,Queensland,153.29901,-27.89941 +2020,12,19,1,Queensland,153.41026,-28.11713 +2021,8,22,1,Queensland,153.32989,-27.91377 +2020,6,21,1,Queensland,153.23204,-27.97695 +2022,7,17,1,Queensland,153.34253,-27.9086 +2021,1,24,1,Queensland,153.41056,-28.18167 +2020,8,10,1,Queensland,153.32783,-27.91206 +2023,11,24,1,Queensland,153.36209,-27.93238 +2022,3,2,1,Queensland,153.18596,-27.84146 +2021,3,4,1,Queensland,153.43256,-28.16681 +2021,10,29,1,Queensland,153.44533,-28.14129 +2020,2,3,1,Queensland,153.37694,-27.95565 +2022,9,24,1,Queensland,153.38665,-27.91929 +2020,12,2,1,Queensland,153.44403,-28.12798 +2021,2,22,1,Queensland,153.34442,-27.95128 +2022,11,5,1,Queensland,153.35688,-27.94035 +2023,3,31,1,Queensland,153.35887,-27.94257 +2023,11,19,1,Queensland,153.32912,-27.89066 +2022,10,29,2,Queensland,153.38902,-28.11749 +2021,8,14,1,Queensland,153.40965,-28.11395 +2020,11,28,1,Queensland,153.44526,-28.14395 +2020,5,6,1,Queensland,153.33046,-27.91428 +2023,7,23,1,Queensland,153.32912,-27.89066 +2020,5,10,1,Queensland,153.45119,-28.09294 +2023,10,24,1,Queensland,153.22555,-28.20897 +2023,7,8,2,Queensland,153.44806,-28.09752 +2023,11,25,1,Queensland,153.25002,-27.9453 +2023,11,26,1,Queensland,153.36401,-27.93588 +2020,10,7,1,Queensland,153.44694,-28.14115 +2021,10,17,1,Queensland,153.37666,-27.91726 +2023,10,12,1,Queensland,153.2814,-27.99411 +2023,8,6,1,Queensland,153.37836,-27.94999 +2023,8,27,2,Queensland,153.33023,-27.88567 +2022,12,4,1,Queensland,153.34529,-27.94225 +2023,7,26,1,Queensland,153.32912,-27.89066 +2020,5,19,1,Queensland,153.32765,-28.01266 +2023,2,23,1,Queensland,153.32912,-27.89066 +2023,7,2,1,Queensland,153.45634,-28.09161 +2021,2,17,1,Queensland,153.40823,-28.11635 +2021,7,7,1,Queensland,153.45312,-28.09402 +2020,4,22,1,Queensland,153.45219,-28.09578 +2022,8,13,1,Queensland,153.44849,-28.09754 +2021,10,24,1,Queensland,153.35695,-27.84492 +2020,11,26,1,Queensland,153.25008,-27.94574 +2023,11,4,1,Queensland,153.36207,-27.93343 +2023,11,3,1,Queensland,153.33943,-28.03986 +2021,4,26,1,Queensland,153.2951,-27.84379 +2020,9,26,1,Queensland,153.44503,-28.14493 +2021,10,11,1,New South Wales,153.29991,-28.889062 +2021,11,6,1,New South Wales,153.239589,-29.0855 +2020,2,25,1,South Australia,138.61,-35.011088 +2024,4,2,1,Queensland,152.6,-27.4 +2023,2,14,1,New South Wales,150.7,-33.5 +2024,8,25,1,New South Wales,151.2,-33.8 +2021,4,15,1,Queensland,153.5,-27.4 +2020,11,21,1,Victoria,143.658813,-38.771422 +2023,3,30,1,Queensland,153.1,-27.4 +2022,3,31,1,Queensland,152.6,-27.4 +2022,2,3,1,Queensland,152.6,-27.4 +2020,3,29,1,South Australia,138.845657,-34.834544 +2020,6,27,1,South Australia,138.651945,-34.99907 +2020,8,13,1,South Australia,138.609939,-35.010859 +2021,1,5,1,New South Wales,146.6,-34.8 +2020,4,18,1,South Australia,138.995291,-34.847359 +2020,1,3,1,South Australia,138.959324,-34.8562 +2023,1,6,1,South Australia,135.7,-34.9 +2023,1,7,1,South Australia,135.7,-34.9 +2021,11,7,1,South Australia,138.6,-35.1 +2022,3,18,1,New South Wales,153.3,-28.8 +2020,5,12,1,Queensland,152.924788,-27.394295 +2020,6,3,1,South Australia,138.692118,-35.094583 +2022,10,20,1,New South Wales,150.7,-33.5 +2023,10,23,1,Queensland,149.1,-22.3 +2021,9,11,1,New South Wales,153.074106,-30.886764 +2020,8,22,1,South Australia,138.706115,-34.904723 +2021,10,17,1,Queensland,152.5,-27.4 +2023,1,6,1,South Australia,135.7,-34.9 +2022,4,21,1,Victoria,144,-37.6 +2020,7,19,1,Victoria,141.595923,-38.346242 +2022,2,13,1,Queensland,152.9,-27.4 +2022,7,8,1,Queensland,153.4,-27.4 +2021,1,6,1,Queensland,152.5,-27.4 +2022,2,24,1,South Australia,139,-34.9 +2022,1,19,1,Queensland,153.5,-27.4 +2022,1,21,1,Queensland,145.60757,-17.419219 +2020,1,18,1,South Australia,138.656901,-34.947763 +2020,9,23,1,South Australia,138.610168,-35.010901 +2023,1,7,1,South Australia,135.7,-34.9 +2020,10,16,1,New South Wales,150.7,-33.5 +2024,2,24,1,Victoria,145.9,-38.6 +2022,4,5,1,Victoria,141.144964,-38.034469 +2020,12,9,1,Queensland,149.1,-21.3 +2020,4,1,1,South Australia,138.610244,-35.010886 +2021,10,24,1,New South Wales,150.7,-33.5 +2020,4,16,1,South Australia,138.602968,-35.014107 +2022,4,9,1,South Australia,138.7,-35.1 +2020,9,25,1,South Australia,138.61026,-35.010829 +2020,3,23,1,South Australia,138.740127,-34.831787 +2020,4,15,1,Queensland,152.939397,-27.35958 +2020,5,9,1,South Australia,138.642075,-34.974407 +2024,4,7,1,Queensland,152.6,-27.4 +2020,4,27,1,South Australia,138.617278,-34.956805 +2024,1,10,1,Queensland,153.083154,-27.507331 +2020,1,24,1,South Australia,138.610275,-35.01081 +2020,4,30,1,South Australia,138.759798,-34.907458 +2020,8,13,1,Queensland,152.940004,-27.357586 +2023,7,7,1,Queensland,152.9,-27.4 +2021,9,25,1,Queensland,152.6,-27.1 +2020,8,22,1,Queensland,152.441471,-27.348883 +2023,3,15,1,South Australia,138.7,-35.1 +2022,7,19,1,New South Wales,148.6,-32.3 +2020,5,17,1,Victoria,141.712022,-38.253662 +2020,4,23,1,South Australia,138.703851,-34.903081 +2020,6,6,1,Queensland,153.077557,-27.26164 +2021,9,19,1,Queensland,151.5,-28 +2021,2,21,1,South Australia,138.7,-35.1 +2020,4,16,1,South Australia,140.773564,-34.183092 +2022,1,13,1,New South Wales,153.1,-30.3 +2022,1,16,1,South Australia,138.7,-35.1 +2020,1,6,1,South Australia,138.759167,-35.041517 +2022,1,28,1,Victoria,141.2,-38.1 +2021,5,30,1,South Australia,138.7,-34.9 +2020,4,12,1,South Australia,138.718161,-34.900775 +2022,9,21,1,New South Wales,150.7,-33.5 +2021,10,17,1,Victoria,142.4,-38.3 +2020,1,23,1,Queensland,153.218783,-28.182941 +2022,1,16,1,South Australia,138.7,-35.1 +2020,11,8,1,South Australia,138.7,-34.9 +2021,2,20,1,South Australia,138.7,-35.1 +2022,8,8,1,South Australia,138.7,-35.1 +2020,2,26,1,Victoria,141.5934,-38.276845 +2021,3,20,1,Queensland,153.082229,-27.510265 +2022,11,26,1,South Australia,138.7,-35.1 +2020,12,17,1,South Australia,138.7,-35.1 +2021,9,19,1,South Australia,138.7,-35.1 +2020,4,26,1,South Australia,138.60265,-34.900517 +2022,4,5,1,South Australia,137.6,-35.7 +2022,1,25,1,Queensland,153.1,-27.2 +2022,5,15,1,Queensland,153.1,-27.5 +2020,3,29,1,South Australia,138.737443,-34.829846 +2023,1,22,1,Queensland,153.4,-27.9 +2022,4,14,1,South Australia,138.7,-35.1 +2022,1,8,1,South Australia,138.7,-35.1 +2020,3,14,1,South Australia,138.635362,-34.990659 +2020,4,13,1,South Australia,138.775833,-34.969953 +2021,7,16,1,Queensland,153.4,-27.5 +2021,3,14,1,Queensland,152.6,-27.4 +2020,8,28,1,Victoria,145.264489,-37.470778 +2020,1,1,1,South Australia,138.61,-35.011088 +2020,3,10,1,Queensland,153.199617,-27.565993 +2022,8,29,1,New South Wales,151.6,-30.5 +2021,2,1,1,Queensland,153.3,-27.5 +2021,9,19,1,South Australia,138.7,-35.1 +2021,2,23,1,South Australia,138.7,-35.1 +2024,1,28,1,New South Wales,150.7,-33.5 +2020,4,25,1,South Australia,138.711804,-34.908561 +2022,1,30,1,South Australia,138.7,-34.9 +2023,1,25,1,Victoria,141.7,-38.3 +2022,8,13,1,South Australia,138.7,-35.1 +2022,1,6,1,South Australia,136.8,-36 +2020,2,28,1,South Australia,138.633347,-34.970558 +2021,6,19,1,Queensland,153.2,-27.6 +2022,10,8,1,Queensland,153.057535,-27.550909 +2021,5,16,1,Queensland,153.4,-27.9 +2020,10,5,1,South Australia,138.6,-34.9 +2022,7,20,1,Victoria,143.9,-38.6 +2022,4,3,1,Victoria,141.274108,-38.05377 +2023,1,28,1,Queensland,151.7,-27.4 +2022,8,28,1,Queensland,151.9,-28.7 +2020,4,9,1,Queensland,152.9403,-27.357953 +2020,4,15,1,South Australia,138.725069,-34.87525 +2022,8,2,1,New South Wales,151.6,-30.5 +2020,2,2,1,South Australia,138.718047,-34.892223 +2020,12,3,1,South Australia,138.7,-35.1 +2022,6,28,1,Victoria,143.9,-38.6 +2020,9,5,1,Queensland,153.004893,-27.761052 +2020,4,3,1,South Australia,138.741348,-34.839073 +2022,2,25,1,New South Wales,152.8,-30.3 +2021,3,25,1,New South Wales,153.3,-28.9 +2020,12,5,1,Victoria,141.971192,-37.718055 +2020,5,30,1,Queensland,152.767473,-27.737 +2020,7,26,1,Queensland,152.94031,-27.357711 +2020,1,5,1,Queensland,153.086554,-26.396647 +2020,3,29,1,South Australia,138.635189,-35.007999 +2023,2,12,1,South Australia,138.7,-35.1 +2020,6,9,1,South Australia,138.610229,-35.010856 +2020,10,9,1,New South Wales,152.90364,-31.443707 +2020,6,2,1,Victoria,145.713924,-38.638951 +2022,5,20,1,Queensland,153.2,-27.7 +2022,4,2,1,South Australia,138.7,-35.1 +2023,7,30,1,Queensland,153.1,-27.5 +2020,4,9,1,Victoria,142.631702,-38.324909 +2020,4,4,1,South Australia,138.630908,-35.023943 +2020,4,19,1,South Australia,138.646294,-35.003144 +2022,3,15,1,Queensland,153.1,-27.5 +2020,1,27,1,South Australia,138.630166,-35.112316 +2020,4,13,1,South Australia,138.649715,-34.932866 +2022,10,18,1,Queensland,152.9,-27.5 +2020,2,29,1,South Australia,138.632181,-34.889277 +2020,4,18,1,South Australia,138.614835,-34.932007 +2020,4,10,1,South Australia,138.735312,-34.826976 +2020,2,4,1,South Australia,138.650453,-34.948988 +2020,5,18,1,South Australia,138.610092,-35.010966 +2020,6,3,1,South Australia,138.67698,-35.102867 +2021,7,13,1,Victoria,141.6,-38.3 +2021,10,7,1,South Australia,138.6,-34.9 +2021,2,28,1,Queensland,153.1,-27.5 +2022,12,30,1,Queensland,152.9,-27.5 +2020,3,26,1,South Australia,138.740448,-34.772599 +2023,12,27,1,New South Wales,152.1,-32.8 +2023,4,8,1,South Australia,138.7,-34.8 +2022,6,28,1,Queensland,153,-27.5 +2022,5,1,1,Queensland,153.1,-27.5 +2020,3,12,1,South Australia,138.673919,-34.939206 +2021,12,28,1,Queensland,152.9,-27.5 +2023,5,27,1,Queensland,153.1,-27.5 +2021,3,5,1,New South Wales,153.2,-28.5 +2020,8,12,1,South Australia,138.61006,-35.011072 +2021,10,2,1,Queensland,151.5,-28 +2020,8,23,1,South Australia,138.703755,-34.930467 +2020,4,18,1,South Australia,140.755474,-34.177302 +2020,4,12,1,South Australia,138.688862,-34.953501 +2020,6,18,1,Queensland,152.939871,-27.358177 +2023,4,26,1,Queensland,152.9,-27.5 +2022,3,15,1,Queensland,153.1,-27.5 +2020,10,15,1,South Australia,138.7,-34.8 +2020,1,24,1,South Australia,138.610275,-35.01081 +2021,3,29,1,Queensland,151.9,-27.6 +2022,12,28,1,Queensland,153.085282,-27.510229 +2020,4,19,1,South Australia,138.745041,-34.838462 +2022,1,6,1,Queensland,151.3,-27.2 +2021,12,30,1,Queensland,151.5,-28 +2022,10,26,1,Queensland,152.9,-27.5 +2020,1,17,1,South Australia,138.610275,-35.01081 +2021,10,1,1,New South Wales,152.898293,-31.443979 +2021,9,25,1,Queensland,152.9,-27.5 +2020,4,27,1,South Australia,138.607759,-35.072804 +2021,7,9,1,New South Wales,151.1,-34 +2020,9,2,1,South Australia,138.59801,-35.059488 +2023,9,2,1,Queensland,152.9,-27.5 +2020,5,30,1,Queensland,152.997753,-27.434648 +2021,5,24,1,Queensland,147.9,-20.3 +2023,9,2,1,Queensland,152.9,-27.5 +2020,4,9,1,South Australia,138.76158,-35.046794 +2021,10,8,1,Queensland,153.4,-27.5 +2020,4,5,1,South Australia,138.637909,-34.989087 +2020,4,6,1,South Australia,138.744713,-34.99288 +2021,8,29,1,Queensland,152.9,-27.5 +2022,12,30,1,Queensland,152.9,-27.5 +2020,10,14,1,Queensland,152.5,-27.5 +2021,11,28,1,Queensland,152.9,-27.5 +2020,4,21,1,Queensland,152.493439,-27.394215 +2020,4,27,1,South Australia,138.701713,-34.902815 +2022,1,26,1,Queensland,153,-27.3 +2023,3,13,1,Victoria,143.9,-38.7 +2020,5,2,1,Queensland,152.865782,-26.67271 +2022,7,2,1,Queensland,152,-27.5 +2020,4,2,1,South Australia,138.696547,-34.899689 +2020,4,4,1,South Australia,138.718336,-34.896628 +2021,10,10,1,Victoria,141.5,-38.4 +2020,5,4,1,Queensland,153.4,-28.1 +2021,1,2,1,New South Wales,146.588083,-34.769573 +2022,12,18,1,South Australia,138.641237,-35.005683 +2021,11,7,1,Queensland,152.9,-27.1 +2021,3,22,1,South Australia,138.7,-34.8 +2020,4,2,1,South Australia,140.756505,-34.178945 +2020,4,10,1,Queensland,152.940498,-27.357505 +2022,1,29,1,New South Wales,153.1,-30.2 +2023,1,11,1,South Australia,138.564553,-35.154061 +2021,5,16,1,Victoria,143.3,-38.4 +2020,8,30,1,Queensland,153.072176,-27.664422 +2023,3,23,1,Queensland,152.9,-26.9 +2023,7,27,1,Victoria,141.7,-38.2 +2020,4,15,1,South Australia,138.698121,-34.90336 +2020,8,29,1,South Australia,138.704971,-34.903662 +2022,1,26,1,Queensland,153,-27.3 +2020,2,23,1,South Australia,138.610275,-35.01081 +2020,7,13,1,South Australia,138.609451,-35.011199 +2023,11,13,1,Queensland,152.9,-27.5 +2020,4,30,1,South Australia,138.700915,-34.901524 +2021,2,7,1,South Australia,138.7,-34.8 +2020,3,27,1,South Australia,138.744995,-34.827743 +2020,7,25,1,Queensland,152.940223,-27.357769 +2020,1,7,1,Queensland,152.614593,-27.072515 +2020,4,2,1,South Australia,138.702919,-34.902796 +2020,7,9,1,Victoria,145.939831,-38.729557 +2021,8,25,1,Queensland,151.5,-28.1 +2022,8,3,1,Queensland,145.2,-15.4 +2020,5,19,1,South Australia,138.610092,-35.011004 +2020,3,8,1,South Australia,138.710647,-34.903707 +2021,5,3,1,Queensland,152,-27.6 +2021,4,6,1,South Australia,138.7,-34.9 +2020,11,21,1,Victoria,144.6,-37.9 +2020,4,5,1,Queensland,153.080001,-27.513863 +2022,1,31,1,Queensland,152.9,-27.3 +2024,3,19,1,South Australia,138.6,-35 +2024,6,28,1,Queensland,146.8,-19.1 +2022,4,4,1,Queensland,152.6,-27.3 +2020,9,13,1,Victoria,142.632572,-38.32478 +2020,4,14,1,South Australia,138.616976,-34.904502 +2022,4,12,1,Victoria,145.2,-38.5 +2022,2,19,1,Queensland,152.9,-27.3 +2020,4,6,1,South Australia,138.703846,-34.976249 +2022,2,19,1,Queensland,152.9,-27.3 +2021,5,29,1,South Australia,138.6,-35 +2020,3,29,1,South Australia,138.743848,-34.955533 +2022,12,28,1,Queensland,152.1,-27.3 +2020,2,29,1,South Australia,138.648636,-34.885628 +2020,12,18,1,Victoria,142.5,-38.3 +2020,10,30,1,South Australia,138.6,-35 +2022,11,11,1,Queensland,152,-28.7 +2021,5,1,1,New South Wales,153.1,-30.4 +2020,8,2,1,South Australia,140.761644,-34.178946 +2020,10,31,1,Victoria,142.5,-38.3 +2020,2,28,1,New South Wales,152.929004,-31.459586 +2021,10,11,1,South Australia,138.6,-35 +2020,4,23,1,South Australia,138.660079,-34.947713 +2020,8,8,1,Queensland,152.940038,-27.357859 +2021,6,1,1,Victoria,141.6,-38.3 +2020,12,26,1,South Australia,138.6,-35 +2020,6,14,1,South Australia,138.635445,-34.854081 +2022,3,30,1,Queensland,146.9,-19.1 +2020,3,31,1,Queensland,152.930789,-27.471577 +2022,12,21,1,Victoria,141.6,-38.3 +2020,10,29,1,South Australia,138.6,-35 +2022,12,28,1,Queensland,152.1,-27.3 +2020,4,17,1,South Australia,138.684016,-34.775417 +2020,1,14,1,Victoria,143.545837,-38.771366 +2022,7,3,1,Victoria,143.709941,-38.684348 +2020,4,19,1,South Australia,138.643385,-35.003732 +2021,11,12,1,South Australia,138.6,-35 +2023,2,4,1,South Australia,138.6,-35 +2020,4,26,1,South Australia,138.50568,-34.815709 +2024,1,14,1,New South Wales,151,-34 +2020,1,11,1,Victoria,143.654008,-38.722057 +2021,3,29,1,South Australia,138.7,-34.9 +2024,7,30,1,South Australia,138.6,-35 +2022,5,28,1,Queensland,153.232728,-27.486428 +2020,3,7,1,South Australia,138.655731,-35.017779 +2022,1,10,1,South Australia,138.7,-34.9 +2022,3,26,1,Victoria,142.364392,-38.314737 +2020,11,8,1,South Australia,138.6,-35 +2022,11,2,1,Queensland,153.2,-28.2 +2022,7,28,1,Queensland,152.5,-27.3 +2021,5,15,1,Queensland,151.9,-27.6 +2020,10,31,1,Victoria,141.7,-38.2 +2020,4,29,1,South Australia,138.706423,-34.97068 +2020,1,27,1,South Australia,138.642048,-35.019929 +2020,2,28,1,South Australia,138.610275,-35.01081 +2020,6,12,1,Victoria,141.660912,-38.014023 +2021,1,10,1,Victoria,145.8,-36 +2021,5,30,1,South Australia,138.7,-35 +2020,1,8,1,Victoria,141.634505,-38.121864 +2020,11,22,1,South Australia,138.6,-35 +2022,12,22,1,Victoria,141.6,-38.4 +2022,1,3,1,South Australia,138.7,-34.9 +2020,4,18,1,Queensland,152.939892,-27.358759 +2020,4,14,1,Queensland,152.496445,-27.394195 +2020,8,23,1,South Australia,138.733899,-34.827199 +2022,11,17,1,South Australia,138.6,-35 +2021,10,29,1,Queensland,152.2,-28.1 +2020,10,21,1,South Australia,138.6,-35 +2020,10,31,1,South Australia,138.708068,-34.932596 +2021,1,3,1,South Australia,138.6,-35 +2020,10,22,1,South Australia,138.6,-35 +2023,1,12,1,South Australia,138.6,-35 +2021,5,8,1,South Australia,138.6,-35 +2021,8,29,1,South Australia,135.7,-34.8 +2021,9,1,1,Queensland,152.9,-27.3 +2020,2,10,1,South Australia,138.636803,-35.006336 +2022,6,11,1,South Australia,138.6,-35 +2020,7,16,1,Queensland,146.9,-19.1 +2020,4,4,1,South Australia,138.610202,-35.011167 +2021,8,15,1,Queensland,152.7,-28.3 +2023,3,17,1,Victoria,142.4,-38.3 +2021,4,8,1,South Australia,138.7,-35 +2022,11,12,1,Victoria,143.6,-38.8 +2021,10,23,1,Queensland,146.8,-19.1 +2021,9,30,1,Queensland,152,-27.6 +2024,9,15,1,South Australia,138.6,-35 +2020,1,26,1,South Australia,138.703887,-34.903331 +2020,2,26,1,Victoria,141.594483,-38.271208 +2024,1,27,1,South Australia,138.7,-34.9 +2020,10,31,1,South Australia,138.7,-35 +2020,8,12,1,Queensland,152.940331,-27.357159 +2021,1,3,1,South Australia,138.6,-35 +2023,5,7,1,New South Wales,153.1,-30.4 +2022,1,19,1,New South Wales,153,-30.6 +2022,1,31,1,Queensland,152.9,-27.3 +2020,2,21,1,South Australia,138.618584,-34.965885 +2020,2,29,1,Queensland,149.435039,-20.933456 +2020,7,9,1,Victoria,145.939077,-38.733087 +2020,7,5,1,South Australia,138.655737,-34.86852 +2024,9,21,1,South Australia,138.6,-35 +2020,5,4,1,Queensland,152.938152,-27.273562 +2020,1,1,1,Victoria,141.742492,-37.963392 +2020,12,9,1,South Australia,138.6,-35 +2022,1,31,1,Queensland,152.9,-27.3 +2020,7,17,1,Queensland,152.939802,-27.35819 +2022,1,10,1,South Australia,138.6,-35 +2021,4,3,1,South Australia,138.7,-35 +2020,3,29,1,South Australia,138.712275,-34.899662 +2020,10,20,1,Victoria,141.6,-38.4 +2021,7,6,1,Queensland,145.5,-17.3 +2020,10,10,1,South Australia,138.7,-35 +2020,11,13,1,South Australia,138.6,-35 +2020,8,19,1,Queensland,153.253008,-28.039554 +2022,12,17,1,Victoria,141.6,-38.3 +2020,11,20,1,South Australia,138.6,-35 +2021,11,13,1,South Australia,138.6,-34.9 +2020,4,2,1,South Australia,138.520019,-34.930377 +2021,8,14,1,South Australia,138.7,-35 +2024,9,28,1,South Australia,138.6,-35 +2020,6,7,1,Queensland,153.073671,-27.542869 +2023,11,23,1,South Australia,138.6,-35 +2020,8,25,1,South Australia,140.761825,-34.178969 +2022,1,15,1,Victoria,143.6,-38.8 +2021,8,14,1,South Australia,138.6,-34.9 +2021,7,4,1,Queensland,153.1,-27.5 +2021,5,10,1,South Australia,138.6,-35 +2021,4,30,1,South Australia,138.6,-35 +2021,1,17,1,Victoria,141.6,-38.3 +2023,6,16,1,South Australia,138.6,-35 +2020,4,4,1,South Australia,138.610245,-35.01111 +2021,8,2,1,Queensland,146.9,-19.1 +2021,3,17,1,South Australia,138.6,-35 +2020,3,30,1,South Australia,138.606619,-34.921887 +2020,4,28,1,South Australia,138.743442,-34.629339 +2020,10,30,1,Victoria,142.530724,-38.336663 +2020,7,18,1,Victoria,143.909266,-38.574149 +2023,11,6,1,South Australia,138.6,-35 +2022,8,8,1,South Australia,138.7,-35 +2021,1,13,1,South Australia,138.7,-35 +2021,9,27,1,Queensland,146.9,-19.1 +2020,4,8,1,South Australia,138.728939,-34.833792 +2023,1,11,1,South Australia,138.6,-35 +2021,4,5,1,South Australia,138.6,-35 +2021,2,24,1,South Australia,138.6,-35 +2021,12,6,1,South Australia,138.6,-35 +2022,1,6,1,Victoria,146.701541,-36.359558 +2023,12,2,1,Queensland,153.24992,-27.511609 +2023,9,28,1,Queensland,153.2514,-27.511692 +2022,8,15,1,Queensland,153.26062,-27.523256 +2024,1,5,1,Queensland,153.27197,-27.575242 +2022,11,24,1,Queensland,153.201918,-27.548516 +2021,4,13,1,Queensland,153.248485,-27.490719 +2023,9,19,1,Queensland,153.24556,-27.490995 +2023,7,6,1,Queensland,153.19371,-27.503429 +2024,8,9,1,Queensland,153.250881,-27.50987 +2024,5,24,1,Queensland,153.256078,-27.512748 +2024,10,21,1,Queensland,153.247238,-27.48958 +2023,9,27,1,Queensland,153.195023,-27.50412 +2023,12,19,1,Queensland,153.251918,-27.511597 +2023,5,9,1,Queensland,153.200168,-27.510928 +2021,1,1,1,Queensland,153.255609,-27.494794 +2023,3,22,1,Queensland,153.523816,-27.432085 +2024,8,19,1,Queensland,153.232193,-27.507948 +2023,12,28,1,Queensland,153.253819,-27.511702 +2023,10,24,1,Queensland,153.24187,-27.512992 +2024,2,7,1,Queensland,153.19458,-27.504375 +2024,3,6,1,Queensland,153.271025,-27.575318 +2023,7,25,1,Queensland,153.243469,-27.491316 +2022,10,14,1,Queensland,153.405275,-27.494279 +2023,9,26,1,Queensland,153.270789,-27.575547 +2024,6,10,1,Queensland,153.271841,-27.576688 +2024,2,18,1,Queensland,153.247709,-27.511462 +2023,3,22,1,Queensland,153.245453,-27.48966 +2023,8,8,1,Queensland,153.248993,-27.489954 +2023,2,28,1,Queensland,153.221983,-27.500228 +2021,10,9,1,Queensland,153.405581,-27.4934 +2021,11,21,1,Queensland,153.283329,-27.525843 +2020,10,23,1,Queensland,153.25021,-27.502539 +2022,8,31,1,Queensland,153.249192,-27.490329 +2023,11,19,1,Queensland,153.255107,-27.513302 +2024,2,14,1,Queensland,153.250223,-27.51138 +2023,11,15,1,Queensland,153.245932,-27.496903 +2021,10,9,1,Queensland,153.439373,-27.400296 +2024,3,18,1,Queensland,153.202957,-27.512945 +2024,5,22,1,Queensland,153.248692,-27.511599 +2021,11,7,1,Queensland,153.538359,-27.427002 +2023,11,7,1,Queensland,153.19751,-27.513937 +2023,9,13,1,Queensland,153.259001,-27.512222 +2022,2,26,1,Queensland,153.251359,-27.511621 +2024,4,17,1,Queensland,153.250277,-27.511368 +2024,8,13,1,Queensland,153.271603,-27.575143 +2023,3,4,1,Queensland,153.245086,-27.490385 +2022,8,30,1,Queensland,153.268539,-27.54628 +2020,10,21,1,Queensland,153.25114,-27.503072 +2021,10,8,1,Queensland,153.439675,-27.393433 +2024,5,31,1,Queensland,153.248601,-27.511465 +2022,8,2,1,Queensland,153.2521,-27.501164 +2023,9,5,1,Queensland,153.222015,-27.496115 +2024,2,7,1,Queensland,153.196411,-27.509653 +2024,2,18,1,Queensland,153.198288,-27.510695 +2023,4,10,1,Queensland,153.248232,-27.49096 +2023,8,29,1,Queensland,153.200226,-27.51087 +2023,11,30,1,Queensland,153.250672,-27.511741 +2024,7,29,1,Queensland,153.198105,-27.613394 +2024,5,13,1,Queensland,153.20672,-27.62116 +2024,9,9,1,Queensland,153.304794,-27.564629 +2023,9,19,1,Queensland,153.199142,-27.511171 +2023,12,10,1,Queensland,153.225401,-27.502655 +2023,8,13,1,Queensland,153.245453,-27.489662 +2023,8,30,1,Queensland,153.249546,-27.490048 +2023,12,7,1,Queensland,153.246262,-27.489143 +2023,6,19,1,Queensland,153.272603,-27.572769 +2021,10,8,1,Queensland,153.43918,-27.4002 +2021,3,3,1,Queensland,153.246092,-27.497924 +2021,7,17,1,Queensland,153.248716,-27.491018 +2024,1,8,1,Queensland,153.269759,-27.575204 +2024,4,8,1,Queensland,153.24543,-27.49093 +2024,7,1,1,Queensland,153.232986,-27.505886 +2022,12,23,1,Queensland,153.231457,-27.502215 +2023,11,21,1,Queensland,153.256038,-27.513783 +2022,10,17,1,Queensland,153.232605,-27.55551 +2024,9,21,1,Queensland,153.271051,-27.574737 +2023,9,27,1,Queensland,153.272552,-27.528944 +2022,1,23,1,Queensland,153.247995,-27.489778 +2022,12,9,1,Queensland,153.520771,-27.425619 +2024,6,15,1,Queensland,153.271862,-27.576726 +2024,5,6,1,Queensland,153.198471,-27.613459 +2024,7,4,1,Queensland,153.272061,-27.576659 +2023,9,16,1,Queensland,153.233398,-27.506153 +2024,4,17,1,Queensland,153.272903,-27.576421 +2023,10,3,1,Queensland,153.245117,-27.489929 +2021,10,9,1,Queensland,153.448778,-27.391539 +2024,2,26,1,Queensland,153.233093,-27.506384 +2024,1,23,1,Queensland,153.22559,-27.502926 +2022,12,22,1,Queensland,153.43795,-27.400578 +2023,3,27,1,Queensland,153.244958,-27.491139 +2020,10,26,1,Queensland,153.248893,-27.489709 +2022,9,5,1,Queensland,153.281819,-27.532576 +2024,4,1,1,Queensland,153.23172,-27.500996 +2022,10,14,1,Queensland,153.438783,-27.396297 +2020,11,8,1,Queensland,153.254149,-27.493616 +2023,12,2,1,Queensland,153.246027,-27.497588 +2022,9,13,1,Queensland,153.24827,-27.490662 +2024,5,21,1,Queensland,153.232452,-27.502241 +2024,10,11,1,Queensland,153.442296,-27.395655 +2022,5,1,1,Queensland,153.259696,-27.546544 +2023,11,8,1,Queensland,153.27094,-27.575623 +2023,10,9,1,Queensland,153.201447,-27.511513 +2024,1,5,1,Queensland,153.250312,-27.511355 +2024,9,22,1,Queensland,153.250572,-27.511731 +2023,11,29,1,Queensland,153.250521,-27.5117 +2021,1,5,1,Queensland,153.245213,-27.49576 +2024,8,2,1,Queensland,153.250843,-27.511676 +2020,11,23,1,Queensland,153.249208,-27.489882 +2024,7,15,1,Queensland,153.29863,-27.569805 +2022,9,18,1,Queensland,153.248452,-27.490725 +2023,6,2,1,Queensland,153.248275,-27.490728 +2023,12,1,1,Queensland,153.255614,-27.512198 +2024,7,24,1,Queensland,153.21788,-27.494668 +2021,5,13,1,Queensland,153.24784,-27.491291 +2023,7,31,1,Queensland,153.515589,-27.422871 +2023,10,7,1,Queensland,153.403291,-27.493787 +2023,11,7,1,Queensland,153.199646,-27.613317 +2022,11,15,1,Queensland,153.244522,-27.488209 +2023,11,21,1,Queensland,153.199554,-27.613079 +2021,4,8,1,Queensland,153.242225,-27.512319 +2024,7,12,1,Queensland,153.253684,-27.51174 +2023,7,18,1,Queensland,153.208694,-27.622513 +2020,11,13,1,Queensland,153.248135,-27.490586 +2023,11,15,1,Queensland,153.271058,-27.575698 +2023,7,6,1,Queensland,153.269424,-27.540329 +2023,5,16,1,Queensland,153.248337,-27.490517 +2024,2,26,1,Queensland,153.198364,-27.510536 +2024,2,12,1,Queensland,153.248537,-27.511545 +2021,3,12,1,Queensland,153.248253,-27.490109 +2022,11,15,1,Queensland,153.201324,-27.506072 +2023,1,31,1,Queensland,153.200958,-27.508215 +2022,5,13,1,Queensland,153.446385,-27.396045 +2024,2,14,1,Queensland,153.250675,-27.511579 +2021,12,13,1,Queensland,153.4,-27.62 +2024,2,6,1,Queensland,153.250232,-27.511375 +2024,8,26,1,Queensland,153.296906,-27.567814 +2024,5,26,1,Queensland,153.430567,-27.494999 +2021,8,24,1,Queensland,153.231743,-27.533558 +2022,9,15,1,Queensland,153.259476,-27.532635 +2021,8,23,1,Queensland,153.089955,-27.514837 +2024,8,9,1,Queensland,153.24727,-27.511424 +2023,6,27,1,Queensland,153.251456,-27.511661 +2023,5,9,1,Queensland,153.204082,-27.511498 +2023,6,22,1,Queensland,153.246869,-27.511447 +2023,12,26,1,Queensland,153.271519,-27.574729 +2024,9,30,1,Queensland,153.198868,-27.613426 +2023,9,4,1,Queensland,153.247148,-27.511465 +2024,9,19,1,Queensland,153.249889,-27.511264 +2023,4,11,1,Queensland,153.271433,-27.575204 +2023,1,17,1,Queensland,153.437998,-27.398356 +2023,11,2,1,Queensland,153.281775,-27.525886 +2021,9,6,1,Queensland,153.248634,-27.490289 +2023,9,27,1,Queensland,153.234055,-27.504677 +2021,1,9,1,Queensland,153.253098,-27.502888 +2022,8,7,1,Queensland,153.282012,-27.531877 +2021,1,5,1,Queensland,153.249144,-27.489882 +2024,3,2,1,Queensland,153.270832,-27.575566 +2022,11,6,1,Queensland,153.239096,-27.482888 +2021,3,30,1,Queensland,153.248506,-27.490676 +2021,10,15,1,Queensland,153.250694,-27.531638 +2022,12,23,1,Queensland,153.231464,-27.500194 +2024,9,9,1,Queensland,153.304611,-27.565456 +2023,7,18,1,Queensland,153.197693,-27.615135 +2022,11,15,1,Queensland,153.520117,-27.424926 +2024,3,8,1,Queensland,153.271455,-27.575261 +2024,1,25,1,Queensland,153.251924,-27.512212 +2024,9,2,1,Queensland,153.20192,-27.5117 +2024,1,22,1,Queensland,153.271648,-27.574082 +2024,1,27,1,Queensland,153.250195,-27.511356 +2023,9,28,1,Queensland,153.225447,-27.498372 +2022,4,27,1,Queensland,153.248526,-27.490319 +2023,12,12,1,Queensland,153.249983,-27.511584 +2021,10,9,1,Queensland,153.516941,-27.426024 +2024,3,13,1,Queensland,153.295029,-27.568907 +2023,4,21,1,Queensland,153.272163,-27.5745 +2024,10,11,1,Queensland,153.457883,-27.412381 +2023,12,2,1,Queensland,153.250773,-27.511564 +2024,1,22,1,Queensland,153.250072,-27.511573 +2021,5,25,1,Queensland,153.244863,-27.491012 +2023,11,10,1,Queensland,153.244954,-27.490837 +2024,10,1,1,Queensland,153.444499,-27.395957 +2023,8,8,1,Queensland,153.233139,-27.505827 +2024,7,8,1,Queensland,153.253868,-27.511779 +2022,9,15,1,Queensland,153.197403,-27.615328 +2023,8,16,1,Queensland,153.24772,-27.511421 +2023,5,22,1,Queensland,153.271712,-27.575242 +2020,9,7,1,Queensland,153.251883,-27.500896 +2022,8,22,1,Queensland,153.246119,-27.508354 +2023,3,27,1,Queensland,153.21445,-27.49223 +2021,10,8,1,Queensland,153.398943,-27.496988 +2021,9,13,1,Queensland,153.248679,-27.489833 +2023,8,1,1,Queensland,153.197968,-27.506226 +2021,8,5,1,Queensland,153.248635,-27.490398 +2023,9,30,1,Queensland,153.402749,-27.494307 +2022,10,14,1,Queensland,153.400066,-27.499091 +2023,7,11,1,Queensland,153.245514,-27.489487 +2024,7,8,1,Queensland,153.251678,-27.5093 +2023,8,1,1,Queensland,153.249451,-27.490229 +2023,5,25,1,Queensland,153.206711,-27.621141 +2024,2,17,1,Queensland,153.250124,-27.511334 +2023,6,15,1,Queensland,153.245259,-27.489934 +2023,8,19,1,Queensland,153.250866,-27.511627 +2021,6,28,1,Queensland,153.248733,-27.490963 +2024,8,14,1,Queensland,153.271603,-27.575143 +2023,11,2,1,Queensland,153.441925,-27.395012 +2023,11,15,1,Queensland,153.249687,-27.511633 +2024,6,8,1,Queensland,153.255996,-27.514377 +2021,1,7,1,Queensland,153.245282,-27.495843 +2023,11,24,1,Queensland,153.255218,-27.513305 +2021,12,21,1,Queensland,153.258854,-27.547812 +2022,11,7,1,Queensland,153.246811,-27.498795 +2023,9,11,1,Queensland,153.2398,-27.515365 +2024,1,1,1,Queensland,153.245594,-27.496342 +2023,12,31,1,Queensland,153.271691,-27.575147 +2021,10,1,1,Queensland,153.246081,-27.496985 +2022,11,21,1,Queensland,153.253478,-27.496035 +2024,7,25,1,Queensland,153.248443,-27.511889 +2023,2,9,1,Queensland,153.227187,-27.56195 +2024,9,18,1,Queensland,153.249992,-27.51129 +2024,7,22,1,Queensland,153.272961,-27.576639 +2023,4,3,1,Queensland,153.248603,-27.500435 +2023,7,5,1,Queensland,153.248468,-27.490714 +2020,12,29,1,Queensland,153.252397,-27.501249 +2023,7,6,1,Queensland,153.202469,-27.513897 +2022,9,8,1,Queensland,153.248452,-27.490831 +2023,5,25,1,Queensland,153.200638,-27.504702 +2023,2,8,1,Queensland,153.244308,-27.48999 +2024,4,28,1,Queensland,153.2948,-27.56876 +2024,5,17,1,Queensland,153.250274,-27.511382 +2023,12,17,1,Queensland,153.27242,-27.574405 +2022,10,2,1,Queensland,153.248506,-27.490169 +2024,4,22,1,Queensland,153.198563,-27.613537 +2023,10,3,1,Queensland,153.204468,-27.620533 +2023,4,5,1,Queensland,153.247828,-27.490768 +2024,4,28,1,Queensland,153.2948,-27.56876 +2020,10,23,1,Queensland,153.250431,-27.502677 +2023,11,18,1,Queensland,153.255037,-27.513641 +2024,2,3,1,Queensland,153.27109,-27.574767 +2024,1,3,1,Queensland,153.271948,-27.575033 +2021,12,18,1,Queensland,153.228555,-27.549859 +2024,1,17,1,Queensland,153.271744,-27.574024 +2024,6,3,1,Queensland,153.250332,-27.511311 +2024,6,9,1,Queensland,153.252312,-27.509157 +2021,8,26,1,Queensland,153.248758,-27.489745 +2023,10,28,1,Queensland,153.242373,-27.513094 +2024,10,11,1,Queensland,153.43961,-27.40138 +2022,12,3,1,Queensland,153.217885,-27.49443 +2023,9,14,1,Queensland,153.252553,-27.511703 +2024,1,17,1,Queensland,153.256005,-27.51358 +2023,10,23,1,Queensland,153.255509,-27.512225 +2023,7,5,1,Queensland,153.245464,-27.490324 +2023,6,29,1,Queensland,153.245178,-27.489737 +2023,5,16,1,Queensland,153.235229,-27.500921 +2023,12,9,1,Queensland,153.2502,-27.511523 +2023,8,26,1,Queensland,153.249391,-27.511523 +2023,12,14,1,Queensland,153.255077,-27.513252 +2024,3,4,1,Queensland,153.199188,-27.499846 +2022,12,5,1,Queensland,153.403331,-27.497683 +2023,11,1,1,Queensland,153.28189,-27.58511 +2024,5,26,1,Queensland,153.253428,-27.511687 +2021,4,21,1,Queensland,153.225574,-27.502743 +2020,11,6,1,Queensland,153.248788,-27.490129 +2023,10,15,1,Queensland,153.271358,-27.57566 +2023,1,4,1,Queensland,153.271476,-27.575623 +2020,9,16,1,Queensland,153.251994,-27.5009 +2023,8,22,1,Queensland,153.246307,-27.490021 +2024,6,10,1,Queensland,153.251867,-27.509325 +2024,2,18,1,Queensland,153.245285,-27.491146 +2024,6,13,1,Queensland,153.251923,-27.50931 +2024,5,28,1,Queensland,153.250298,-27.511343 +2021,9,6,1,Queensland,153.23885,-27.53103 +2024,1,10,1,Queensland,153.270639,-27.575547 +2020,12,23,1,Queensland,153.245252,-27.495718 +2023,9,19,1,Queensland,153.247238,-27.490229 +2023,7,4,1,Queensland,153.245644,-27.49625 +2022,11,2,1,Queensland,153.203259,-27.508283 +2024,9,2,1,Queensland,153.219818,-27.516802 +2024,5,28,1,Queensland,153.250346,-27.511145 +2023,12,7,1,Queensland,153.250937,-27.5116 +2023,12,4,1,Queensland,153.249989,-27.5116 +2024,1,4,1,Queensland,153.272141,-27.5745 +2022,5,16,1,Queensland,153.282344,-27.533322 +2023,6,13,1,Queensland,153.248669,-27.490575 +2023,10,3,1,Queensland,153.199463,-27.513945 +2023,4,25,1,Queensland,153.216767,-27.500435 +2024,6,28,1,Queensland,153.247543,-27.511359 +2023,8,5,1,Queensland,153.446337,-27.394164 +2024,5,20,1,Queensland,153.247956,-27.511078 +2024,6,3,1,Queensland,153.1978,-27.613314 +2024,10,11,1,Queensland,153.443278,-27.399553 +2023,11,4,1,Queensland,153.244848,-27.490896 +2023,7,25,1,Queensland,153.248403,-27.490665 +2021,2,12,1,Queensland,153.251998,-27.500911 +2024,3,5,1,Queensland,153.201996,-27.510239 +2021,8,31,1,Queensland,153.273911,-27.534135 +2021,9,25,1,Queensland,153.270329,-27.551827 +2024,2,24,1,Queensland,153.440021,-27.392941 +2024,8,12,1,Queensland,153.251383,-27.509494 +2023,12,10,1,Queensland,153.249983,-27.511584 +2023,7,25,1,Queensland,153.245255,-27.489653 +2022,3,10,1,Queensland,153.215761,-27.539289 +2024,10,11,1,Queensland,153.438269,-27.400894 +2024,4,8,1,Queensland,153.19764,-27.61248 +2024,6,27,1,Queensland,153.273815,-27.575642 +2021,10,2,1,Queensland,153.244531,-27.530943 +2022,5,12,1,Queensland,153.446624,-27.396062 +2024,1,5,1,Queensland,153.2505,-27.511645 +2023,12,8,1,Queensland,153.210928,-27.495092 +2024,7,11,1,Queensland,153.247236,-27.511364 +2022,10,3,1,Queensland,153.249042,-27.490052 +2023,8,30,1,Queensland,153.248318,-27.49014 +2023,8,22,1,Queensland,153.245285,-27.489359 +2024,2,7,1,Queensland,153.233124,-27.506411 +2022,2,4,1,Queensland,153.243313,-27.538258 +2021,10,8,1,Queensland,153.402782,-27.494999 +2023,7,18,1,Queensland,153.247452,-27.490124 +2024,3,23,1,Queensland,153.250289,-27.511318 +2024,7,15,1,Queensland,153.251834,-27.509403 +2024,5,25,1,Queensland,153.271841,-27.576631 +2024,10,27,1,Queensland,153.253792,-27.511816 +2021,5,12,1,Queensland,153.16,-27.29 +2020,10,29,1,Queensland,153.248101,-27.490509 +2023,5,8,1,Queensland,153.251499,-27.511697 +2023,4,20,1,Queensland,153.24848,-27.490861 +2024,3,13,1,Queensland,153.201675,-27.51111 +2023,8,15,1,Queensland,153.275806,-27.543904 +2022,2,6,1,Queensland,153.225943,-27.498541 +2021,1,7,1,Queensland,153.252475,-27.501386 +2024,7,23,1,Queensland,153.247569,-27.511429 +2023,5,10,1,Queensland,153.245952,-27.497252 +2023,12,30,1,Queensland,153.244709,-27.491381 +2023,10,18,1,Queensland,153.265972,-27.649168 +2023,11,11,1,Queensland,153.243738,-27.491356 +2022,9,3,1,Queensland,153.244869,-27.490502 +2024,3,12,1,Queensland,153.250211,-27.511355 +2023,12,17,1,Queensland,153.272356,-27.574843 +2023,2,15,1,Queensland,153.27061,-27.5388 +2023,7,29,1,Queensland,153.249501,-27.511416 +2023,7,18,1,Queensland,153.244732,-27.491594 +2020,11,23,1,Queensland,153.24802,-27.4905 +2022,4,21,1,Queensland,153.245257,-27.489943 +2024,3,11,1,Queensland,153.29552,-27.56887 +2020,12,17,1,Queensland,153.272345,-27.554528 +2022,5,2,1,Queensland,153.282087,-27.532991 +2023,7,30,1,Queensland,153.440828,-27.398775 +2022,4,3,1,Queensland,153.248283,-27.490152 +2024,2,26,1,Queensland,153.27124,-27.575128 +2021,2,16,1,Queensland,153.247893,-27.490777 +2023,11,1,1,Queensland,153.244934,-27.490366 +2024,1,12,1,Queensland,153.2462,-27.498827 +2022,10,15,1,Queensland,153.254619,-27.511613 +2021,1,1,1,Queensland,153.250579,-27.502061 +2024,3,19,1,Queensland,153.241968,-27.5146 +2023,11,24,1,Queensland,153.249777,-27.511751 +2023,12,25,1,Queensland,153.271734,-27.574443 +2023,4,18,1,Queensland,153.245531,-27.489732 +2023,7,19,1,Queensland,153.246235,-27.49741 +2023,12,12,1,Queensland,153.255982,-27.513556 +2024,1,6,1,Queensland,153.250211,-27.511448 +2022,10,14,1,Queensland,153.43968,-27.393594 +2024,2,18,1,Queensland,153.271626,-27.575508 +2021,5,14,1,Queensland,153.249358,-27.489989 +2022,11,15,1,Queensland,153.248199,-27.490641 +2024,2,26,1,Queensland,153.202011,-27.512291 +2023,2,25,1,Queensland,153.282827,-27.526594 +2020,11,26,1,Queensland,153.248935,-27.489605 +2024,1,17,1,Queensland,153.198611,-27.510278 +2021,7,27,1,Queensland,153.260139,-27.501905 +2024,11,11,1,Queensland,153.204742,-27.511295 +2024,4,4,1,Queensland,153.250435,-27.511592 +2024,6,5,1,Queensland,153.249979,-27.511266 +2024,2,8,1,Queensland,153.272012,-27.574691 +2021,10,12,1,Queensland,153.248639,-27.489955 +2024,2,29,1,Queensland,153.217822,-27.547203 +2022,12,1,1,Queensland,153.283664,-27.525664 +2023,9,28,1,Queensland,153.239818,-27.515371 +2024,3,31,1,Queensland,153.251886,-27.514589 +2022,12,1,1,Queensland,153.244239,-27.489719 +2023,9,15,1,Queensland,153.239818,-27.515384 +2022,10,20,1,Queensland,153.248549,-27.490355 +2023,10,16,1,Queensland,153.242264,-27.489216 +2023,10,13,1,Queensland,153.224731,-27.501322 +2023,5,3,1,Queensland,153.243973,-27.489588 +2024,9,26,1,Queensland,153.242288,-27.511556 +2022,11,17,1,Queensland,153.245886,-27.497758 +2022,9,28,1,Queensland,153.271542,-27.53591 +2022,8,31,1,Queensland,153.282151,-27.53139 +2024,1,15,1,Queensland,153.271497,-27.573606 +2021,4,7,1,Queensland,153.252273,-27.501371 +2022,10,25,1,Queensland,153.270694,-27.538711 +2024,9,14,1,Queensland,153.250205,-27.511285 +2024,2,7,1,Queensland,153.25022,-27.51143 +2021,2,16,1,Queensland,153.283994,-27.524421 +2023,4,19,1,Queensland,153.27227,-27.574234 +2024,10,29,1,Queensland,153.250172,-27.511566 +2023,7,6,1,Queensland,153.198151,-27.615389 +2024,4,8,1,Queensland,153.20107,-27.61345 +2023,12,2,1,Queensland,153.2507,-27.511736 +2024,11,15,1,Queensland,153.250183,-27.511648 +2022,5,8,1,Queensland,153.282894,-27.534026 +2024,3,2,1,Queensland,153.256319,-27.512601 +2024,8,17,1,Queensland,153.251401,-27.509439 +2023,8,22,1,Queensland,153.27153,-27.535692 +2024,1,25,1,Queensland,153.271605,-27.574272 +2024,3,21,1,Queensland,153.246187,-27.497351 +2024,9,16,1,Queensland,153.199448,-27.613871 +2022,4,10,1,Queensland,153.245002,-27.490435 +2023,5,3,1,Queensland,153.197769,-27.614563 +2024,5,21,1,Queensland,153.242905,-27.489344 +2023,9,19,1,Queensland,153.274877,-27.596486 +2023,12,8,1,Queensland,153.250865,-27.51179 +2023,5,25,1,Queensland,153.272291,-27.574432 +2023,9,16,1,Queensland,153.250189,-27.511426 +2023,11,19,1,Queensland,153.25681,-27.512764 +2024,2,8,1,Queensland,153.250384,-27.511226 +2021,6,3,1,Queensland,153.249063,-27.490138 +2024,1,11,1,Queensland,153.247094,-27.498749 +2021,9,22,1,Queensland,153.248754,-27.490159 +2021,12,26,1,Queensland,153.182094,-27.53828 +2023,8,23,1,Queensland,153.244992,-27.491044 +2024,6,9,1,Queensland,153.247622,-27.511502 +2023,9,28,1,Queensland,153.270832,-27.575642 +2023,7,16,1,Queensland,153.518475,-27.424424 +2023,6,5,1,Queensland,153.201279,-27.511028 +2023,9,3,1,Queensland,153.247108,-27.511481 +2023,9,10,1,Queensland,153.255947,-27.513299 +2023,3,17,1,Queensland,153.247572,-27.511505 +2023,7,11,1,Queensland,153.198135,-27.615261 +2024,10,11,1,Queensland,153.439589,-27.399275 +2024,6,17,1,Queensland,153.199188,-27.61371 +2023,12,28,1,Queensland,153.243334,-27.511633 +2024,5,24,1,Queensland,153.272098,-27.574576 +2022,10,14,1,Queensland,153.535334,-27.429723 +2024,9,28,1,Queensland,153.256031,-27.513554 +2024,5,25,1,Queensland,153.272055,-27.574653 +2023,11,3,1,Queensland,153.244897,-27.490826 +2023,8,31,1,Queensland,153.244974,-27.490768 +2024,7,24,1,Queensland,153.273161,-27.576607 +2021,3,3,1,Queensland,153.251998,-27.500938 +2022,10,13,1,Queensland,153.26825,-27.546614 +2024,3,24,1,Queensland,153.245621,-27.491489 +2023,8,7,1,Queensland,153.44043,-27.398926 +2023,6,24,1,Queensland,153.251939,-27.513543 +2022,7,31,1,Queensland,153.248465,-27.490561 +2021,10,9,1,Queensland,153.440326,-27.398555 +2024,7,6,1,Queensland,153.272034,-27.576802 +2021,9,25,1,Queensland,153.275022,-27.554927 +2024,5,6,1,Queensland,153.273343,-27.576402 +2024,1,1,1,Queensland,153.250078,-27.511784 +2024,5,19,1,Queensland,153.248344,-27.511064 +2024,5,25,1,Queensland,153.256051,-27.512334 +2024,10,11,1,Queensland,153.250011,-27.511475 +2023,1,13,1,Queensland,153.248055,-27.490835 +2022,10,19,1,Queensland,153.244675,-27.489056 +2024,6,21,1,Queensland,153.271959,-27.575242 +2024,9,2,1,Queensland,153.202209,-27.509274 +2023,8,27,1,Queensland,153.245101,-27.490706 +2021,7,28,1,Queensland,153.263657,-27.539967 +2023,3,7,1,Queensland,153.247726,-27.490808 +2023,6,30,1,Queensland,153.245953,-27.495471 +2021,1,3,1,Queensland,153.245249,-27.495777 +2023,7,18,1,Queensland,153.198105,-27.615278 +2024,8,5,1,Queensland,153.204575,-27.620535 +2023,7,2,1,Queensland,153.248519,-27.490594 +2024,4,30,1,Queensland,153.2503,-27.511365 +2024,9,12,1,Queensland,153.271644,-27.575586 +2023,3,7,1,Queensland,153.226343,-27.562357 +2024,10,28,1,Queensland,153.253881,-27.511848 +2023,11,8,1,Queensland,153.253823,-27.511781 +2024,1,27,1,Queensland,153.271691,-27.574672 +2023,12,11,1,Queensland,153.254823,-27.51182 +2022,2,20,1,Queensland,153.25012,-27.502652 +2024,6,24,1,Queensland,153.198441,-27.513212 +2023,6,5,1,Queensland,153.208099,-27.62182 +2023,10,3,1,Queensland,153.286453,-27.520414 +2020,10,26,1,Queensland,153.24919,-27.489822 +2021,12,30,1,Queensland,153.224219,-27.500514 +2024,8,16,1,Queensland,153.271148,-27.575377 +2023,8,17,1,Queensland,153.249495,-27.490234 +2021,7,26,1,Queensland,153.248742,-27.490365 +2023,9,15,1,Queensland,153.255124,-27.511763 +2020,10,17,1,Queensland,153.254009,-27.49402 +2023,8,21,1,Queensland,153.249595,-27.511602 +2024,4,6,1,Queensland,153.25012,-27.511308 +2023,11,1,1,Queensland,153.24963,-27.511546 +2023,7,16,1,Queensland,153.248096,-27.490268 +2023,11,23,1,Queensland,153.256042,-27.513913 +2024,3,30,1,Queensland,153.251974,-27.514441 +2024,3,24,1,Queensland,153.250309,-27.511375 +2023,12,7,1,Queensland,153.271133,-27.574976 +2023,10,28,1,Queensland,153.225586,-27.503575 +2024,1,25,1,Queensland,153.250051,-27.511314 +2021,12,19,1,Queensland,153.258719,-27.547078 +2024,5,27,1,Queensland,153.206894,-27.624491 +2023,6,29,1,Queensland,153.245794,-27.496576 +2023,9,5,1,Queensland,153.249268,-27.489988 +2023,11,20,1,Queensland,153.250029,-27.511915 +2020,11,1,1,Queensland,153.244832,-27.489676 +2024,4,22,1,Queensland,153.250373,-27.511356 +2023,11,7,1,Queensland,153.196198,-27.507128 +2022,12,31,1,Queensland,153.248302,-27.500375 +2024,4,12,1,Queensland,153.241825,-27.51458 +2024,5,13,1,Queensland,153.244763,-27.491046 +2023,1,31,1,Queensland,153.248184,-27.511231 +2023,7,28,1,Queensland,153.253768,-27.511822 +2024,5,26,1,Queensland,153.271905,-27.576574 +2024,10,14,1,Queensland,153.203339,-27.510983 +2023,7,17,1,Queensland,153.245828,-27.497095 +2024,10,29,1,Queensland,153.271644,-27.575586 +2023,4,3,1,Queensland,153.275868,-27.527599 +2024,1,20,1,Queensland,153.253865,-27.511784 +2023,7,10,1,Queensland,153.244807,-27.490737 +2022,9,18,1,Queensland,153.246274,-27.497945 +2021,6,9,1,Queensland,153.216998,-27.54717 +2023,5,4,1,Queensland,153.271176,-27.575337 +2024,2,7,1,Queensland,153.196808,-27.513742 +2021,8,25,1,Queensland,153.246577,-27.499738 +2023,12,9,1,Queensland,153.271181,-27.539372 +2021,10,9,1,Queensland,153.402767,-27.498191 +2023,12,15,1,Queensland,153.272431,-27.574291 +2023,11,28,1,Queensland,153.255084,-27.513246 +2023,12,27,1,Queensland,153.250304,-27.511406 +2020,9,7,1,Queensland,153.249696,-27.489231 +2024,4,7,1,Queensland,153.241986,-27.514657 +2024,6,2,1,Queensland,153.271927,-27.576726 +2023,2,15,1,Queensland,153.247554,-27.51153 +2023,12,2,1,Queensland,153.251043,-27.511781 +2024,5,5,1,Queensland,153.250247,-27.511258 +2021,10,8,1,Queensland,153.437931,-27.400119 +2023,6,15,1,Queensland,153.243691,-27.491388 +2023,9,19,1,Queensland,153.245255,-27.489695 +2024,1,16,1,Queensland,153.271616,-27.573865 +2023,7,6,1,Queensland,153.197144,-27.506395 +2024,4,22,1,Queensland,153.232559,-27.50201 +2024,1,9,1,Queensland,153.250583,-27.511781 +2022,10,14,1,Queensland,153.440749,-27.403524 +2023,7,11,1,Queensland,153.24614,-27.488226 +2021,3,25,1,Queensland,153.245196,-27.495873 +2023,8,9,1,Queensland,153.295291,-27.581462 +2023,10,16,1,Queensland,153.299698,-27.572126 +2024,7,8,1,Queensland,153.298798,-27.569609 +2021,5,13,1,Queensland,153.249287,-27.490562 +2023,12,3,1,Queensland,153.251021,-27.511711 +2022,8,31,1,Queensland,153.249085,-27.490545 +2024,5,10,1,Queensland,153.248539,-27.511487 +2024,8,26,1,Queensland,153.19632,-27.514498 +2024,4,1,1,Queensland,153.201431,-27.613386 +2023,11,3,1,Queensland,153.245438,-27.49055 +2024,9,7,1,Queensland,153.271499,-27.575697 +2024,3,28,1,Queensland,153.250292,-27.511358 +2022,12,24,1,Queensland,153.400031,-27.497764 +2024,9,27,1,Queensland,153.256026,-27.513808 +2023,4,15,1,Queensland,153.268417,-27.546486 +2023,9,20,1,Queensland,153.271058,-27.575204 +2021,10,8,1,Queensland,153.519181,-27.425452 +2021,8,10,1,Queensland,153.270409,-27.551841 +2024,5,14,1,Queensland,153.250292,-27.511324 +2021,10,8,1,Queensland,153.44063,-27.39685 +2023,12,1,1,Queensland,153.24998,-27.511567 +2024,7,23,1,Queensland,153.273161,-27.576607 +2024,8,6,1,Queensland,153.232651,-27.506912 +2024,5,24,1,Queensland,153.27197,-27.576574 +2022,9,28,1,Queensland,153.198134,-27.61498 +2022,10,29,1,Queensland,153.248386,-27.50036 +2024,11,16,1,Queensland,153.272271,-27.5749 +2023,10,9,1,Queensland,153.198898,-27.5138 +2022,9,28,1,Queensland,153.20745,-27.598081 +2024,6,8,1,Queensland,153.256023,-27.514859 +2023,12,9,1,Queensland,153.271304,-27.575033 +2023,6,2,1,Queensland,153.247025,-27.511439 +2022,12,5,1,Queensland,153.400497,-27.497908 +2024,7,27,1,Queensland,153.272227,-27.57487 +2024,5,22,1,Queensland,153.251709,-27.509285 +2022,12,8,1,Queensland,153.249353,-27.5011 +2024,7,30,1,Queensland,153.251369,-27.511668 +2024,1,23,1,Queensland,153.224559,-27.501072 +2024,6,1,1,Queensland,153.256052,-27.513608 +2024,8,19,1,Queensland,153.243729,-27.488634 +2022,1,19,1,Queensland,153.225482,-27.498565 +2023,12,14,1,Queensland,153.271455,-27.57568 +2024,3,19,1,Queensland,153.250049,-27.511429 +2024,7,5,1,Queensland,153.251923,-27.50932 +2021,7,14,1,Queensland,153.201745,-27.509328 +2022,2,13,1,Queensland,153.273552,-27.53692 +2024,4,25,1,Queensland,153.246033,-27.490103 +2023,5,6,1,Queensland,153.252105,-27.494235 +2024,1,15,1,Queensland,153.255933,-27.513577 +2020,12,2,1,Queensland,153.248935,-27.489587 +2024,6,17,1,Queensland,153.245056,-27.489899 +2023,1,22,1,Queensland,153.51913,-27.42488 +2023,1,15,1,Queensland,153.271703,-27.539332 +2023,4,24,1,Queensland,153.271219,-27.576003 +2022,11,20,1,Queensland,153.221061,-27.499564 +2024,10,27,1,Queensland,153.247881,-27.510103 +2023,10,25,1,Queensland,153.255548,-27.512378 +2024,9,9,1,Queensland,153.195023,-27.512955 +2023,6,24,1,Queensland,153.245959,-27.497007 +2023,1,24,1,Queensland,153.2444,-27.489674 +2021,10,8,1,Queensland,153.40279,-27.49434 +2023,8,13,1,Queensland,153.221954,-27.610979 +2024,9,16,1,Queensland,153.244316,-27.489575 +2020,9,21,1,Queensland,153.251944,-27.500983 +2023,1,31,1,Queensland,153.244202,-27.48992 +2023,9,5,1,Queensland,153.247299,-27.49033 +2024,7,29,1,Queensland,153.271148,-27.575377 +2024,7,26,1,Queensland,153.254137,-27.511787 +2024,3,5,1,Queensland,153.250262,-27.51142 +2023,7,18,1,Queensland,153.197891,-27.506077 +2023,10,30,1,Queensland,153.269883,-27.575326 +2024,9,13,1,Queensland,153.271499,-27.575697 +2024,11,9,1,Queensland,153.271499,-27.575697 +2023,11,25,1,Queensland,153.271004,-27.575642 +2023,9,29,1,Queensland,153.253438,-27.511777 +2024,10,7,1,Queensland,153.250591,-27.511541 +2023,7,11,1,Queensland,153.2435,-27.491346 +2023,4,3,1,Queensland,153.271088,-27.539793 +2020,12,26,1,Queensland,153.251835,-27.503063 +2023,7,12,1,Queensland,153.248661,-27.489857 +2022,12,20,1,Queensland,153.275081,-27.554813 +2023,10,23,1,Queensland,153.202988,-27.513855 +2024,11,1,1,Queensland,153.250838,-27.511633 +2023,10,28,1,Queensland,153.243018,-27.489352 +2021,9,23,1,Queensland,153.270199,-27.552028 +2023,6,25,1,Queensland,153.251939,-27.514352 +2024,4,7,1,Queensland,153.243786,-27.491345 +2023,10,22,1,Queensland,153.250034,-27.511606 +2024,3,18,1,Queensland,153.250216,-27.51135 +2022,11,5,1,Queensland,153.271315,-27.575584 +2024,8,22,1,Queensland,153.271891,-27.575395 +2022,10,14,1,Queensland,153.356237,-27.501111 +2024,1,12,1,Queensland,153.253114,-27.511915 +2022,10,14,1,Queensland,153.403136,-27.494025 +2024,5,21,1,Queensland,153.250179,-27.511362 +2024,6,21,1,Queensland,153.249966,-27.51116 +2024,10,19,1,Queensland,153.253788,-27.51173 +2024,8,14,1,Queensland,153.247269,-27.490713 +2023,5,31,1,Queensland,153.424094,-27.469636 +2023,10,16,1,Queensland,153.201385,-27.613293 +2024,6,9,1,Queensland,153.248602,-27.511504 +2023,12,27,1,Queensland,153.2422,-27.512075 +2023,3,4,1,Queensland,153.221949,-27.500225 +2024,8,21,1,Queensland,153.271891,-27.575395 +2023,10,3,1,Queensland,153.203827,-27.511761 +2024,3,4,1,Queensland,153.199188,-27.499846 +2024,6,10,1,Queensland,153.251869,-27.509246 +2024,5,20,1,Queensland,153.255517,-27.512213 +2022,8,9,1,Queensland,153.244106,-27.488483 +2023,6,29,1,Queensland,153.234421,-27.501087 +2022,10,14,1,Queensland,153.402191,-27.496952 +2022,8,22,1,Queensland,153.247256,-27.490165 +2024,9,10,1,Queensland,153.271891,-27.575395 +2023,10,22,1,Queensland,153.250215,-27.511556 +2024,2,27,1,Queensland,153.250136,-27.511377 +2023,11,10,1,Queensland,153.246086,-27.497204 +2022,12,26,1,Queensland,153.198273,-27.491456 +2021,11,10,1,Queensland,153.259234,-27.547013 +2022,9,15,1,Queensland,153.206985,-27.624348 +2021,9,3,1,Queensland,153.248827,-27.489917 +2022,8,3,1,Queensland,153.272308,-27.536697 +2024,3,29,1,Queensland,153.25195,-27.514499 +2024,2,22,1,Queensland,153.272249,-27.574329 +2023,2,8,1,Queensland,153.245346,-27.489834 +2023,5,3,1,Queensland,153.245392,-27.489529 +2024,4,16,1,Queensland,153.250293,-27.511243 +2021,10,8,1,Queensland,153.437375,-27.405222 +2024,10,21,1,Queensland,153.249381,-27.511615 +2023,11,27,1,Queensland,153.271154,-27.575337 +2024,7,18,1,Queensland,153.272547,-27.576387 +2024,6,17,1,Queensland,153.251892,-27.509295 +2021,7,23,1,Queensland,153.248656,-27.49051 +2024,4,30,1,Queensland,153.273343,-27.576117 +2022,10,19,1,Queensland,153.248444,-27.490221 +2024,1,28,1,Queensland,153.250049,-27.51142 +2024,1,27,1,Queensland,153.251735,-27.512015 +2023,1,11,1,Queensland,153.246978,-27.490164 +2024,6,9,1,Queensland,153.248583,-27.511505 +2023,4,1,1,Queensland,153.252701,-27.501532 +2024,6,6,1,Queensland,153.255903,-27.514026 +2022,4,19,1,Queensland,153.271315,-27.549829 +2024,5,6,1,Queensland,153.232086,-27.500996 +2024,5,13,1,Queensland,153.25009,-27.511385 +2024,10,11,1,Queensland,153.440283,-27.398478 +2024,9,16,1,Queensland,153.297974,-27.569403 +2023,11,29,1,Queensland,153.270832,-27.575604 +2020,12,17,1,Queensland,153.2482,-27.490287 +2023,11,15,1,Queensland,153.244629,-27.491414 +2024,1,31,1,Queensland,153.255956,-27.548808 +2024,6,21,1,Queensland,153.253533,-27.511982 +2023,9,12,1,Queensland,153.297541,-27.569377 +2023,8,27,1,Queensland,153.253816,-27.511767 +2021,8,21,1,Queensland,153.528317,-27.430046 +2024,6,4,1,Queensland,153.25378,-27.511761 +2020,11,11,1,Queensland,153.24843,-27.490472 +2023,11,16,1,Queensland,153.270983,-27.575623 +2023,12,7,1,Queensland,153.256803,-27.513255 +2023,11,21,1,Queensland,153.274223,-27.529328 +2023,2,7,1,Queensland,153.273729,-27.55897 +2024,10,10,1,Queensland,153.246362,-27.498817 +2023,7,18,1,Queensland,153.202728,-27.513334 +2020,9,28,1,Queensland,153.25265,-27.501768 +2021,10,9,1,Queensland,153.439053,-27.39655 +2023,5,3,1,Queensland,153.245789,-27.488878 +2024,4,28,1,Queensland,153.202,-27.50721 +2024,5,22,1,Queensland,153.207108,-27.622965 +2024,1,16,1,Queensland,153.250288,-27.511341 +2020,11,23,1,Queensland,153.251685,-27.503448 +2024,6,15,1,Queensland,153.24762,-27.511428 +2023,3,30,1,Queensland,153.19814,-27.50939 +2020,12,13,1,Queensland,153.245201,-27.495759 +2023,8,13,1,Queensland,153.196594,-27.507936 +2022,12,1,1,Queensland,153.246625,-27.488847 +2023,10,6,1,Queensland,153.27154,-27.576155 +2023,10,16,1,Queensland,153.271401,-27.575051 +2021,2,10,1,Queensland,153.252009,-27.500975 +2024,2,14,1,Queensland,153.250394,-27.51136 +2024,9,28,1,Queensland,153.242054,-27.512065 +2024,5,30,1,Queensland,153.248662,-27.511466 +2023,11,1,1,Queensland,153.235275,-27.491407 +2024,9,29,1,Queensland,153.441952,-27.39295 +2024,2,22,1,Queensland,153.250267,-27.51132 +2024,6,5,1,Queensland,153.247154,-27.511415 +2024,1,2,1,Queensland,153.271948,-27.575147 +2023,3,12,1,Queensland,153.440789,-27.39355 +2022,2,6,1,Queensland,153.213535,-27.493959 +2024,6,7,1,Queensland,153.254403,-27.511753 +2023,5,4,1,Queensland,153.225114,-27.501934 +2024,10,24,1,Queensland,153.253824,-27.511793 +2024,4,25,1,Queensland,153.27315,-27.575775 +2023,8,6,1,Queensland,153.438128,-27.400685 +2022,3,26,1,Queensland,153.277795,-27.55293 +2023,1,4,1,Queensland,153.514042,-27.42302 +2023,4,19,1,Queensland,153.246228,-27.499043 +2023,6,26,1,Queensland,153.25195,-27.513954 +2022,9,30,1,Queensland,153.24857,-27.490111 +2022,1,31,1,Queensland,153.252969,-27.554984 +2023,5,7,1,Queensland,153.201309,-27.511198 +2023,8,1,1,Queensland,153.202026,-27.62237 +2023,11,11,1,Queensland,153.246311,-27.497994 +2020,10,5,1,Queensland,153.252231,-27.504025 +2024,5,21,1,Queensland,153.256002,-27.514058 +2023,5,3,1,Queensland,153.199554,-27.511337 +2024,10,11,1,Queensland,153.43947,-27.40034 +2020,9,8,1,Queensland,153.249299,-27.489833 +2024,2,25,1,Queensland,153.27109,-27.575528 +2023,11,16,1,Queensland,153.245884,-27.496968 +2023,4,25,1,Queensland,153.19902,-27.505604 +2023,11,1,1,Queensland,153.270897,-27.575467 +2024,4,26,1,Queensland,153.273278,-27.575623 +2024,10,25,1,Queensland,153.247913,-27.510165 +2023,10,16,1,Queensland,153.268646,-27.54003 +2021,10,1,1,Queensland,153.25609,-27.546497 +2023,11,11,1,Queensland,153.246848,-27.498792 +2022,11,19,1,Queensland,153.245373,-27.49196 +2022,3,21,1,Queensland,153.275886,-27.537366 +2023,12,18,1,Queensland,153.271862,-27.574234 +2024,10,14,1,Queensland,153.250649,-27.511617 +2021,4,30,1,Queensland,153.231232,-27.532496 +2023,12,5,1,Queensland,153.250252,-27.511372 +2020,11,10,1,Queensland,153.250228,-27.50218 +2021,3,21,1,Queensland,153.252111,-27.501074 +2022,8,30,1,Queensland,153.243927,-27.488506 +2023,12,30,1,Queensland,153.271444,-27.574253 +2023,6,1,1,Queensland,153.247132,-27.511481 +2023,5,25,1,Queensland,153.197601,-27.614954 +2023,2,16,1,Queensland,153.247541,-27.511464 +2024,6,22,1,Queensland,153.251807,-27.509215 +2024,9,21,1,Queensland,153.250007,-27.511293 +2024,5,10,1,Queensland,153.249961,-27.511267 +2022,5,2,1,Queensland,153.282816,-27.53396 +2021,2,1,1,Queensland,153.252682,-27.501861 +2020,10,11,1,Queensland,153.246261,-27.498038 +2024,1,27,1,Queensland,153.22544,-27.502624 +2024,1,21,1,Queensland,153.271583,-27.574386 +2024,8,15,1,Queensland,153.230009,-27.498984 +2023,7,16,1,Queensland,153.246022,-27.490808 +2022,4,29,1,Queensland,153.242094,-27.512517 +2020,12,20,1,Queensland,153.248162,-27.511469 +2024,6,7,1,Queensland,153.254265,-27.511806 +2024,2,26,1,Queensland,153.199112,-27.612839 +2024,4,23,1,Queensland,153.2965,-27.56858 +2022,11,2,1,Queensland,153.270838,-27.57565 +2023,1,16,1,Queensland,153.519452,-27.425174 +2023,12,5,1,Queensland,153.251048,-27.511665 +2024,5,31,1,Queensland,153.248728,-27.511491 +2024,6,24,1,Queensland,153.244934,-27.489561 +2023,11,2,1,Queensland,153.284221,-27.526668 +2023,10,15,1,Queensland,153.225158,-27.501789 +2022,7,31,1,Queensland,153.24896,-27.490639 +2024,3,18,1,Queensland,153.295105,-27.568682 +2024,6,4,1,Queensland,153.249907,-27.511324 +2022,10,15,1,Queensland,153.242433,-27.489333 +2021,2,23,1,Queensland,153.272238,-27.554128 +2021,7,31,1,Queensland,153.240045,-27.5301 +2023,7,29,1,Queensland,153.44097,-27.398834 +2024,5,6,1,Queensland,153.245468,-27.489912 +2024,1,20,1,Queensland,153.25184,-27.511557 +2024,5,25,1,Queensland,153.251688,-27.509322 +2023,8,1,1,Queensland,153.196106,-27.506563 +2023,11,22,1,Queensland,153.246266,-27.497839 +2023,8,5,1,Queensland,153.246768,-27.511442 +2020,9,2,1,Queensland,153.25206,-27.50107 +2024,5,23,1,Queensland,153.271948,-27.57665 +2021,10,8,1,Queensland,153.439245,-27.399718 +2021,9,24,1,Queensland,153.24648,-27.499628 +2024,8,5,1,Queensland,153.198227,-27.613527 +2024,6,9,1,Queensland,153.255964,-27.514491 +2024,6,3,1,Queensland,153.203461,-27.509176 +2023,12,6,1,Queensland,153.270918,-27.575566 +2021,7,11,1,Queensland,153.261872,-27.518883 +2020,12,27,1,Queensland,153.24746,-27.490847 +2023,12,16,1,Queensland,153.251059,-27.511616 +2023,9,18,1,Queensland,153.253856,-27.511775 +2023,11,15,1,Queensland,153.255514,-27.512299 +2023,7,6,1,Queensland,153.198486,-27.510462 +2023,4,12,1,Queensland,153.271991,-27.575052 +2023,11,29,1,Queensland,153.255937,-27.513934 +2023,9,3,1,Queensland,153.244841,-27.49143 +2023,12,10,1,Queensland,153.270854,-27.575604 +2023,11,23,1,Queensland,153.271111,-27.575642 +2023,5,9,1,Queensland,153.200389,-27.504411 +2023,7,18,1,Queensland,153.196671,-27.507673 +2022,9,30,1,Queensland,153.258247,-27.546833 +2023,3,21,1,Queensland,153.247572,-27.511491 +2021,10,8,1,Queensland,153.441705,-27.392795 +2024,1,16,1,Queensland,153.271616,-27.574024 +2024,9,4,1,Queensland,153.271036,-27.575501 +2023,3,19,1,Queensland,153.247616,-27.511514 +2024,6,23,1,Queensland,153.250525,-27.511567 +2024,5,15,1,Queensland,153.200729,-27.510473 +2020,10,5,1,Queensland,153.247894,-27.490797 +2024,9,17,1,Queensland,153.250076,-27.511292 +2023,7,16,1,Queensland,153.245921,-27.497829 +2024,8,26,1,Queensland,153.298126,-27.569456 +2023,12,18,1,Queensland,153.250316,-27.511398 +2024,7,26,1,Queensland,153.250852,-27.511619 +2023,12,26,1,Queensland,153.253053,-27.511889 +2023,7,6,1,Queensland,153.198349,-27.61273 +2024,2,4,1,Queensland,153.271219,-27.57547 +2024,8,22,1,Queensland,153.245379,-27.490361 +2021,10,9,1,Queensland,153.405375,-27.494375 +2024,11,17,1,Queensland,153.250354,-27.511389 +2023,12,24,1,Queensland,153.250305,-27.51141 +2021,5,3,1,Queensland,153.281969,-27.530677 +2024,6,24,1,Queensland,153.298035,-27.569353 +2024,4,8,1,Queensland,153.19764,-27.61248 +2024,4,10,1,Queensland,153.250054,-27.511278 +2023,12,14,1,Queensland,153.250002,-27.511606 +2023,6,29,1,Queensland,153.195068,-27.507017 +2024,5,15,1,Queensland,153.198685,-27.514666 +2024,2,11,1,Queensland,153.248551,-27.511545 +2024,7,1,1,Queensland,153.244659,-27.489626 +2023,2,13,1,Queensland,153.254825,-27.537808 +2023,11,28,1,Queensland,153.244308,-27.492468 +2024,11,14,1,Queensland,153.253826,-27.511751 +2021,7,17,1,Queensland,153.24653,-27.499096 +2023,6,5,1,Queensland,153.203064,-27.510912 +2021,6,10,1,Queensland,153.181343,-27.504541 +2024,1,30,1,Queensland,153.256019,-27.513549 +2024,8,28,1,Queensland,153.248913,-27.51164 +2021,2,8,1,Queensland,153.252035,-27.500862 +2022,8,30,1,Queensland,153.248441,-27.49028 +2023,8,13,1,Queensland,153.195648,-27.505995 +2023,10,3,1,Queensland,153.239904,-27.515543 +2024,1,8,1,Queensland,153.250567,-27.511719 +2024,1,17,1,Queensland,153.250482,-27.511785 +2022,5,2,1,Queensland,153.259674,-27.546514 +2022,3,27,1,Queensland,153.24681,-27.511389 +2022,12,14,1,Queensland,153.249387,-27.501084 +2024,2,4,1,Queensland,153.250725,-27.511611 +2023,10,4,1,Queensland,153.246856,-27.500492 +2024,8,20,1,Queensland,153.271644,-27.575586 +2021,10,8,1,Queensland,153.518359,-27.424932 +2023,11,6,1,Queensland,153.224075,-27.500483 +2023,6,5,1,Queensland,153.197845,-27.615158 +2024,3,27,1,Queensland,153.29518,-27.5687 +2024,7,1,1,Queensland,153.202301,-27.508247 +2024,5,28,1,Queensland,153.250282,-27.51138 +2021,1,27,1,Queensland,153.245882,-27.497588 +2023,5,13,1,Queensland,153.254267,-27.511784 +2021,7,13,1,Queensland,153.248569,-27.490764 +2023,6,14,1,Queensland,153.200747,-27.510327 +2023,8,13,1,Queensland,153.199463,-27.51128 +2021,10,9,1,Queensland,153.403038,-27.50228 +2022,8,15,1,Queensland,153.267926,-27.54667 +2024,8,20,1,Queensland,153.195099,-27.514364 +2024,8,25,1,Queensland,153.251371,-27.509496 +2023,1,5,1,Queensland,153.273804,-27.537434 +2022,11,7,1,Queensland,153.270691,-27.538607 +2024,4,23,1,Queensland,153.29539,-27.56839 +2023,11,24,1,Queensland,153.271025,-27.575737 +2022,10,14,1,Queensland,153.514325,-27.422627 +2020,9,27,1,Queensland,153.250767,-27.50333 +2024,6,24,1,Queensland,153.250961,-27.509279 +2023,4,29,1,Queensland,153.281319,-27.532546 +2023,12,15,1,Queensland,153.249963,-27.511568 +2024,1,9,1,Queensland,153.271326,-27.575813 +2023,11,21,1,Queensland,153.247391,-27.490753 +2024,7,9,1,Queensland,153.244049,-27.489407 +2024,7,15,1,Queensland,153.296326,-27.568413 +2023,7,23,1,Queensland,153.251122,-27.507727 +2024,1,17,1,Queensland,153.245026,-27.49124 +2022,10,14,1,Queensland,153.516759,-27.425711 +2024,7,8,1,Queensland,153.272077,-27.576821 +2023,3,25,1,Queensland,153.244979,-27.490873 +2024,10,14,1,Queensland,153.253894,-27.5118 +2023,6,24,1,Queensland,153.247733,-27.511527 +2020,11,3,1,Queensland,153.250332,-27.502732 +2023,8,4,1,Queensland,153.440525,-27.398906 +2021,9,30,1,Queensland,153.248613,-27.49023 +2022,3,25,1,Queensland,153.248312,-27.490923 +2024,9,14,1,Queensland,153.249863,-27.511302 +2024,8,17,1,Queensland,153.271148,-27.575377 +2024,5,19,1,Queensland,153.250095,-27.511512 +2024,5,13,1,Queensland,153.251768,-27.509341 +2023,11,21,1,Queensland,153.285736,-27.523592 +2023,8,6,1,Queensland,153.440643,-27.392631 +2022,12,6,1,Queensland,153.246017,-27.496896 +2022,8,8,1,Queensland,153.248656,-27.490826 +2023,12,1,1,Queensland,153.255939,-27.513909 +2023,5,30,1,Queensland,153.247046,-27.51148 +2024,10,1,1,Queensland,153.441807,-27.393315 +2023,3,23,1,Queensland,153.247437,-27.490152 +2023,8,8,1,Queensland,153.224503,-27.498676 +2022,10,14,1,Queensland,153.438647,-27.399824 +2023,10,21,1,Queensland,153.282266,-27.556601 +2024,4,20,1,Queensland,153.273515,-27.575528 +2021,1,11,1,Queensland,153.252051,-27.500846 +2024,5,22,1,Queensland,153.249008,-27.511635 +2024,4,4,1,Queensland,153.250176,-27.511264 +2021,10,8,1,Queensland,153.439675,-27.393433 +2022,11,10,1,Queensland,153.271197,-27.575832 +2022,10,14,1,Queensland,153.46349,-27.407287 +2022,3,27,1,Queensland,153.245105,-27.490349 +2024,6,9,1,Queensland,153.248648,-27.511561 +2023,7,18,1,Queensland,153.223111,-27.507175 +2024,3,20,1,Queensland,153.246088,-27.498097 +2023,7,11,1,Queensland,153.234573,-27.50075 +2022,10,19,1,Queensland,153.206497,-27.620731 +2024,8,26,1,Queensland,153.251733,-27.509655 +2021,6,27,1,Queensland,153.252282,-27.49335 +2023,6,18,1,Queensland,153.245948,-27.498003 +2022,4,10,1,Queensland,153.244944,-27.490494 +2020,10,29,1,Queensland,153.250241,-27.502683 +2024,6,9,1,Queensland,153.253431,-27.511764 +2024,5,5,1,Queensland,153.250221,-27.511281 +2023,7,25,1,Queensland,153.245193,-27.490431 +2023,8,1,1,Queensland,153.253647,-27.511746 +2021,9,9,1,Queensland,153.248316,-27.490782 +2024,6,30,1,Queensland,153.273128,-27.576574 +2021,10,31,1,Queensland,153.228023,-27.546457 +2023,9,25,1,Queensland,153.239839,-27.515567 +2024,5,6,1,Queensland,153.204071,-27.621227 +2024,2,6,1,Queensland,153.271562,-27.57568 +2024,4,1,1,Queensland,153.250268,-27.511412 +2024,5,27,1,Queensland,153.204224,-27.50873 +2023,11,9,1,Queensland,153.270918,-27.575604 +2024,8,15,1,Queensland,153.219447,-27.495067 +2024,9,30,1,Queensland,153.203506,-27.508062 +2024,2,26,1,Queensland,153.246017,-27.490059 +2024,6,29,1,Queensland,153.24758,-27.511318 +2023,6,18,1,Queensland,153.272817,-27.572579 +2021,9,6,1,Queensland,153.280571,-27.524868 +2024,6,8,1,Queensland,153.254238,-27.511834 +2023,5,16,1,Queensland,153.234604,-27.501228 +2024,7,15,1,Queensland,153.233734,-27.505301 +2024,9,24,1,Queensland,153.244364,-27.510919 +2023,4,24,1,Queensland,153.248011,-27.490964 +2024,5,19,1,Queensland,153.298386,-27.569441 +2023,8,23,1,Queensland,153.253049,-27.511995 +2024,2,7,1,Queensland,153.201141,-27.510986 +2024,3,4,1,Queensland,153.198517,-27.511288 +2021,4,13,1,Queensland,153.252379,-27.501373 +2024,3,31,1,Queensland,153.274584,-27.538877 +2024,5,25,1,Queensland,153.249854,-27.511381 +2024,4,22,1,Queensland,153.197632,-27.614571 +2024,3,4,1,Queensland,153.245087,-27.490318 +2023,1,12,1,Queensland,153.224849,-27.501268 +2022,10,15,1,Queensland,153.236039,-27.520908 +2024,7,16,1,Queensland,153.246061,-27.497217 +2024,5,26,1,Queensland,153.257797,-27.499248 +2021,4,16,1,Queensland,153.248312,-27.490985 +2024,4,11,1,Queensland,153.241859,-27.514605 +2022,11,13,1,Queensland,153.424351,-27.469439 +2023,10,7,1,Queensland,153.271283,-27.575718 +2024,1,31,1,Queensland,153.271283,-27.574691 +2024,5,6,1,Queensland,153.251511,-27.509462 +2023,5,18,1,Queensland,153.271197,-27.575927 +2023,4,5,1,Queensland,153.248833,-27.490577 +2024,9,29,1,Queensland,153.255975,-27.513594 +2024,11,11,1,Queensland,153.201782,-27.511042 +2024,6,10,1,Queensland,153.297836,-27.569275 +2022,11,21,1,Queensland,153.248924,-27.490482 +2023,11,13,1,Queensland,153.223135,-27.499262 +2023,5,9,1,Queensland,153.272759,-27.539095 +2024,1,12,1,Queensland,153.252977,-27.511967 +2023,12,23,1,Queensland,153.271669,-27.574596 +2023,7,25,1,Queensland,153.268982,-27.540131 +2024,1,30,1,Queensland,153.198047,-27.50542 +2022,12,27,1,Queensland,153.271143,-27.575432 +2022,3,1,1,Queensland,153.246251,-27.499763 +2024,2,20,1,Queensland,153.250794,-27.511562 +2024,10,11,1,Queensland,153.439844,-27.396778 +2023,9,6,1,Queensland,153.251677,-27.511793 +2022,8,31,1,Queensland,153.248677,-27.490463 +2020,11,1,1,Queensland,153.250316,-27.502855 +2024,7,21,1,Queensland,153.25264,-27.511497 +2023,10,9,1,Queensland,153.299698,-27.572584 +2024,4,6,1,Queensland,153.241957,-27.514498 +2020,9,7,1,Queensland,153.246167,-27.497617 +2023,8,22,1,Queensland,153.248154,-27.490076 +2024,2,12,1,Queensland,153.271101,-27.575622 +2024,9,30,1,Queensland,153.245734,-27.510655 +2023,7,12,1,Queensland,153.245406,-27.490597 +2023,6,14,1,Queensland,153.201266,-27.505069 +2024,5,27,1,Queensland,153.298492,-27.569235 +2022,11,9,1,Queensland,153.253471,-27.496023 +2022,11,28,1,Queensland,153.222606,-27.499088 +2023,11,13,1,Queensland,153.523716,-27.432175 +2023,10,28,1,Queensland,153.223131,-27.499417 +2023,11,1,1,Queensland,153.242249,-27.489269 +2021,7,5,1,Queensland,153.259417,-27.500254 +2021,5,3,1,Queensland,153.248506,-27.490859 +2023,5,12,1,Queensland,153.272442,-27.574329 +2022,12,15,1,Queensland,153.245453,-27.490959 +2023,9,8,1,Queensland,153.239813,-27.515372 +2022,12,23,1,Queensland,153.228024,-27.56168 +2023,10,15,1,Queensland,153.251853,-27.513543 +2024,4,28,1,Queensland,153.191814,-27.61508 +2024,10,12,1,Queensland,153.295,-27.568 +2024,11,11,1,Queensland,153.197144,-27.506294 +2023,11,2,1,Queensland,153.245071,-27.490881 +2024,5,9,1,Queensland,153.250175,-27.511328 +2020,11,3,1,Queensland,153.248023,-27.490663 +2023,8,13,1,Queensland,153.197662,-27.612938 +2023,8,8,1,Queensland,153.187744,-27.504419 +2020,11,22,1,Queensland,153.251381,-27.50325 +2023,12,8,1,Queensland,153.250126,-27.5114 +2023,11,29,1,Queensland,153.282745,-27.52689 +2021,10,9,1,Queensland,153.438364,-27.396108 +2024,10,7,1,Queensland,153.247177,-27.489429 +2024,5,23,1,Queensland,153.255974,-27.513853 +2023,8,13,1,Queensland,153.246948,-27.490232 +2021,1,19,1,Queensland,153.249692,-27.511518 +2023,5,16,1,Queensland,153.245346,-27.489477 +2024,8,12,1,Queensland,153.250908,-27.51164 +2024,2,8,1,Queensland,153.271948,-27.575128 +2021,5,3,1,Queensland,153.249083,-27.490246 +2024,6,6,1,Queensland,153.253898,-27.511873 +2021,10,9,1,Queensland,153.530116,-27.427604 +2022,12,9,1,Queensland,153.249405,-27.500901 +2024,7,25,1,Queensland,153.254862,-27.512052 +2023,12,26,1,Queensland,153.250491,-27.511667 +2023,3,22,1,Queensland,153.203019,-27.514522 +2024,9,28,1,Queensland,153.24205,-27.512072 +2023,8,29,1,Queensland,153.232193,-27.503878 +2023,10,19,1,Queensland,153.271304,-27.575166 +2024,5,4,1,Queensland,153.249984,-27.511647 +2022,10,14,1,Queensland,153.437379,-27.404462 +2024,7,22,1,Queensland,153.251668,-27.509267 +2023,3,14,1,Queensland,153.248162,-27.511501 +2020,11,3,1,Queensland,153.25027,-27.502834 +2020,10,9,1,Queensland,153.2513,-27.503204 +2024,5,24,1,Queensland,153.250023,-27.511229 +2024,10,21,1,Queensland,153.203979,-27.508228 +2023,3,26,1,Queensland,153.244966,-27.490726 +2021,3,11,1,Queensland,153.25201,-27.501018 +2021,5,24,1,Queensland,153.248516,-27.490579 +2023,1,11,1,Queensland,153.245725,-27.491056 +2022,4,14,1,Queensland,153.249321,-27.490117 +2023,10,4,1,Queensland,153.23,-27.5 +2023,9,27,1,Queensland,153.198624,-27.510618 +2021,4,19,1,Queensland,153.248632,-27.491034 +2024,2,18,1,Queensland,153.247677,-27.511486 +2024,9,24,1,Queensland,153.272867,-27.572102 +2023,1,24,1,Queensland,153.244919,-27.491043 +2023,10,7,1,Queensland,153.239901,-27.515541 +2024,4,25,1,Queensland,153.245209,-27.49012 +2022,10,14,1,Queensland,153.438578,-27.397946 +2021,11,10,1,Queensland,153.28195,-27.530724 +2023,10,21,1,Queensland,153.246914,-27.592668 +2023,11,22,1,Queensland,153.255234,-27.513583 +2023,7,11,1,Queensland,153.248809,-27.490934 +2023,11,25,1,Queensland,153.255142,-27.513306 +2023,12,27,1,Queensland,153.271347,-27.575984 +2021,2,24,1,Queensland,153.252025,-27.500984 +2024,7,15,1,Queensland,153.245026,-27.489779 +2023,1,8,1,Queensland,153.25223,-27.510568 +2023,5,20,1,Queensland,153.404621,-27.500273 +2022,3,13,1,Queensland,153.282216,-27.530923 +2024,3,29,1,Queensland,153.241885,-27.514619 +2023,4,18,1,Queensland,153.242981,-27.489185 +2020,9,22,1,Queensland,153.248164,-27.490601 +2024,6,10,1,Queensland,153.251648,-27.50931 +2023,10,26,1,Queensland,153.250807,-27.511631 +2024,5,20,1,Queensland,153.25003,-27.51145 +2024,9,30,1,Queensland,153.203537,-27.508049 +2023,12,16,1,Queensland,153.272163,-27.574938 +2022,9,15,1,Queensland,153.26976,-27.546171 +2023,6,22,1,Queensland,153.198196,-27.612606 +2024,9,27,1,Queensland,153.256037,-27.513637 +2022,10,23,1,Queensland,153.1997,-27.569635 +2023,9,12,1,Queensland,153.239821,-27.515358 +2024,3,9,1,Queensland,153.250096,-27.511413 +2024,4,24,1,Queensland,153.244816,-27.491297 +2022,9,6,1,Queensland,153.248581,-27.490526 +2024,2,18,1,Queensland,153.199829,-27.61347 +2024,5,19,1,Queensland,153.249919,-27.511419 +2023,5,9,1,Queensland,153.197262,-27.508483 +2023,6,4,1,Queensland,153.248178,-27.511504 +2024,7,27,1,Queensland,153.250515,-27.511624 +2024,8,14,1,Queensland,153.244858,-27.489618 +2023,9,7,1,Queensland,153.239803,-27.515372 +2023,7,18,1,Queensland,153.197571,-27.61293 +2024,5,21,1,Queensland,153.29686,-27.567892 +2023,7,6,1,Queensland,153.197693,-27.615093 +2021,9,12,1,Queensland,153.246779,-27.499745 +2023,3,20,1,Queensland,153.24769,-27.511502 +2022,9,12,1,Queensland,153.249406,-27.490023 +2024,9,25,1,Queensland,153.245093,-27.5103 +2024,7,30,1,Queensland,153.25138,-27.511673 +2024,3,1,1,Queensland,153.271004,-27.575642 +2024,5,21,1,Queensland,153.24854,-27.511411 +2021,10,8,1,Queensland,153.439675,-27.393433 +2024,4,21,1,Queensland,153.247174,-27.511407 +2023,9,26,1,Queensland,153.239813,-27.51537 +2022,12,28,1,Queensland,153.271058,-27.575432 +2024,6,17,1,Queensland,153.251895,-27.50925 +2022,3,9,1,Queensland,153.248517,-27.51152 +2020,12,23,1,Queensland,153.251207,-27.503277 +2020,11,18,1,Queensland,153.248154,-27.490642 +2024,1,27,1,Queensland,153.271283,-27.574348 +2023,4,17,1,Queensland,153.271455,-27.574653 +2023,4,29,1,Queensland,153.252711,-27.511747 +2024,9,9,1,Queensland,153.244385,-27.489639 +2024,10,4,1,Queensland,153.25055,-27.511725 +2024,5,20,1,Queensland,153.271905,-27.576631 +2024,6,24,1,Queensland,153.275548,-27.526065 +2020,10,21,1,Queensland,153.248101,-27.490549 +2024,10,20,1,Queensland,153.249522,-27.511611 +2020,10,25,1,Queensland,153.245226,-27.495749 +2024,3,27,1,Queensland,153.250232,-27.511402 +2023,12,7,1,Queensland,153.19371,-27.503542 +2024,2,13,1,Queensland,153.19722,-27.505342 +2024,3,29,1,Queensland,153.250173,-27.511267 +2023,8,29,1,Queensland,153.197006,-27.614145 +2023,11,30,1,Queensland,153.250608,-27.511759 +2021,12,6,1,Queensland,153.180434,-27.537074 +2024,8,12,1,Queensland,153.198502,-27.613417 +2023,9,5,1,Queensland,153.245656,-27.490582 +2022,8,9,1,Queensland,153.248879,-27.489713 +2021,9,28,1,Queensland,153.248409,-27.490338 +2022,11,2,1,Queensland,153.245834,-27.511057 +2024,5,27,1,Queensland,153.256015,-27.513701 +2024,10,11,1,Queensland,153.43826,-27.40092 +2022,9,28,1,Queensland,153.268058,-27.54652 +2023,11,29,1,Queensland,153.244659,-27.49118 +2024,9,17,1,Queensland,153.24989,-27.511391 +2023,4,2,1,Queensland,153.24836,-27.490946 +2024,3,5,1,Queensland,153.27109,-27.575394 +2021,8,25,1,Queensland,153.523742,-27.431893 +2021,9,28,1,Queensland,153.24861,-27.490052 +2021,1,1,1,Queensland,153.255609,-27.494794 +2020,11,17,1,Queensland,153.247516,-27.49084 +2023,6,11,1,Queensland,153.2733,-27.556107 +2023,9,29,1,Queensland,153.271787,-27.574329 +2023,12,21,1,Queensland,153.271637,-27.531507 +2024,2,16,1,Queensland,153.250163,-27.511373 +2023,9,5,1,Queensland,153.270645,-27.53956 +2023,12,30,1,Queensland,153.250136,-27.511386 +2024,2,18,1,Queensland,153.250129,-27.511274 +2020,10,29,1,Queensland,153.248841,-27.489674 +2023,12,16,1,Queensland,153.27212,-27.574481 +2022,5,8,1,Queensland,153.259771,-27.546553 +2024,4,26,1,Queensland,153.250163,-27.511429 +2024,3,19,1,Queensland,153.1985,-27.51451 +2023,8,16,1,Queensland,153.244624,-27.49238 +2023,1,24,1,Queensland,153.270844,-27.538385 +2023,5,25,1,Queensland,153.201462,-27.511435 +2024,5,14,1,Queensland,153.273214,-27.576383 +2024,1,17,1,Queensland,153.197915,-27.509235 +2022,10,13,1,Queensland,153.228348,-27.606379 +2023,3,26,1,Queensland,153.27849,-27.53527 +2024,5,25,1,Queensland,153.255557,-27.5122 +2022,12,7,1,Queensland,153.438213,-27.396145 +2023,11,25,1,Queensland,153.25002,-27.511613 +2024,7,8,1,Queensland,153.5237,-27.432785 +2023,12,8,1,Queensland,153.256035,-27.513566 +2023,6,29,1,Queensland,153.245575,-27.490631 +2024,9,29,1,Queensland,153.243091,-27.510823 +2021,4,8,1,Queensland,153.252694,-27.50125 +2023,11,13,1,Queensland,153.22556,-27.503714 +2024,6,2,1,Queensland,153.250133,-27.511414 +2024,3,24,1,Queensland,153.19807,-27.61314 +2023,8,28,1,Queensland,153.254353,-27.51179 +2024,10,14,1,Queensland,153.198593,-27.514364 +2023,2,20,1,Queensland,153.248969,-27.490575 +2024,7,1,1,Queensland,153.272688,-27.576398 +2024,5,29,1,Queensland,153.25293,-27.511303 +2023,11,22,1,Queensland,153.270961,-27.575699 +2024,8,19,1,Queensland,153.22142,-27.516359 +2020,11,5,1,Queensland,153.248076,-27.490513 +2024,10,27,1,Queensland,153.205658,-27.5077 +2024,5,23,1,Queensland,153.250352,-27.511393 +2024,3,5,1,Queensland,153.295303,-27.568724 +2023,12,22,1,Queensland,153.242205,-27.512748 +2021,2,26,1,Queensland,153.24504,-27.511642 +2022,9,28,1,Queensland,153.259781,-27.532003 +2020,11,23,1,Queensland,153.25156,-27.503402 +2024,11,7,1,Queensland,153.271961,-27.575361 +2023,8,4,1,Queensland,153.252445,-27.511657 +2022,11,27,1,Queensland,153.273032,-27.54444 +2023,2,22,1,Queensland,153.271378,-27.539175 +2024,11,6,1,Queensland,153.271891,-27.575395 +2022,12,15,1,Queensland,153.244507,-27.489729 +2023,9,5,1,Queensland,153.24527,-27.490871 +2022,12,6,1,Queensland,153.226388,-27.49873 +2024,10,8,1,Queensland,153.224258,-27.506235 +2024,5,27,1,Queensland,153.296509,-27.567863 +2023,4,15,1,Queensland,153.270584,-27.538576 +2024,5,18,1,Queensland,153.250099,-27.511446 +2021,11,15,1,Queensland,153.233972,-27.532183 +2023,12,7,1,Queensland,153.199722,-27.613012 +2023,11,12,1,Queensland,153.243765,-27.491367 +2021,1,14,1,Queensland,153.249305,-27.489923 +2021,9,7,1,Queensland,153.201851,-27.507655 +2024,3,24,1,Queensland,153.200364,-27.510733 +2023,10,27,1,Queensland,153.225725,-27.503083 +2024,1,31,1,Queensland,153.244034,-27.488651 +2023,1,12,1,Queensland,153.223132,-27.499793 +2023,9,22,1,Queensland,153.239821,-27.515378 +2024,1,22,1,Queensland,153.253797,-27.511741 +2023,8,29,1,Queensland,153.20224,-27.513189 +2024,6,2,1,Queensland,153.250093,-27.511457 +2023,12,25,1,Queensland,153.271476,-27.57509 +2024,1,21,1,Queensland,153.251908,-27.51445 +2022,4,20,1,Queensland,153.245019,-27.49089 +2024,9,11,1,Queensland,153.271891,-27.575395 +2020,10,2,1,Queensland,153.251317,-27.503195 +2024,6,10,1,Queensland,153.24472,-27.489649 +2024,8,2,1,Queensland,153.250712,-27.511612 +2024,5,23,1,Queensland,153.251667,-27.509244 +2024,5,22,1,Queensland,153.250278,-27.511262 +2022,9,28,1,Queensland,153.233597,-27.608927 +2021,6,24,1,Queensland,153.250008,-27.48985 +2021,5,5,1,Queensland,153.232369,-27.532972 +2024,6,10,1,Queensland,153.207855,-27.621159 +2021,4,12,1,Queensland,153.252347,-27.501099 +2021,10,9,1,Queensland,153.405589,-27.493411 +2023,10,17,1,Queensland,153.2061,-27.496501 +2022,3,31,1,Queensland,153.259213,-27.544781 +2023,4,24,1,Queensland,153.234067,-27.501138 +2024,3,8,1,Queensland,153.25028,-27.511375 +2023,12,14,1,Queensland,153.240343,-27.512829 +2023,9,25,1,Queensland,153.270929,-27.575166 +2024,7,21,1,Queensland,153.25166,-27.511564 +2023,6,20,1,Queensland,153.273278,-27.572827 +2021,3,28,1,Queensland,153.247964,-27.4909 +2021,10,9,1,Queensland,153.405611,-27.493447 +2022,8,6,1,Queensland,153.243012,-27.546714 +2024,5,12,1,Queensland,153.24469,-27.491097 +2024,2,7,1,Queensland,153.246841,-27.49033 +2020,10,22,1,Queensland,153.248093,-27.490539 +2022,10,14,1,Queensland,153.441678,-27.39356 +2023,1,5,1,Queensland,153.272156,-27.546566 +2024,1,15,1,Queensland,153.253627,-27.511757 +2023,9,3,1,Queensland,153.272967,-27.55099 +2024,3,11,1,Queensland,153.202077,-27.51341 +2024,8,6,1,Queensland,153.232651,-27.506912 +2022,8,22,1,Queensland,153.24814,-27.48964 +2023,9,27,1,Queensland,153.239791,-27.515359 +2023,8,9,1,Queensland,153.440114,-27.393035 +2024,11,4,1,Queensland,153.249481,-27.501333 +2024,1,7,1,Queensland,153.250221,-27.511371 +2023,3,7,1,Queensland,153.245209,-27.489676 +2024,2,13,1,Queensland,153.245285,-27.489548 +2021,3,25,1,Queensland,153.252143,-27.501259 +2024,2,2,1,Queensland,153.250095,-27.511563 +2024,4,10,1,Queensland,153.272098,-27.576212 +2024,5,27,1,Queensland,153.272206,-27.573949 +2023,11,7,1,Queensland,153.232178,-27.507566 +2024,7,16,1,Queensland,153.251827,-27.509217 +2024,2,2,1,Queensland,153.271347,-27.5745 +2023,11,10,1,Queensland,153.254366,-27.511832 +2022,11,16,1,Queensland,153.21913,-27.494934 +2024,4,8,1,Queensland,153.24612,-27.48992 +2024,1,6,1,Queensland,153.206253,-27.497361 +2024,11,13,1,Queensland,153.272275,-27.574867 +2024,11,13,1,Queensland,153.253857,-27.511759 +2024,5,23,1,Queensland,153.248648,-27.511531 +2024,7,14,1,Queensland,153.247808,-27.511455 +2024,5,23,1,Queensland,153.256011,-27.513914 +2023,12,18,1,Queensland,153.245567,-27.496516 +2024,1,11,1,Queensland,153.245804,-27.495735 +2021,10,8,1,Queensland,153.400348,-27.499177 +2024,10,23,1,Queensland,153.21174,-27.498069 +2024,7,9,1,Queensland,153.253851,-27.511805 +2020,9,29,1,Queensland,153.249407,-27.48984 +2023,8,26,1,Queensland,153.251161,-27.511645 +2024,8,26,1,Queensland,153.198456,-27.613434 +2023,8,22,1,Queensland,153.249313,-27.490057 +2023,10,18,1,Queensland,153.271047,-27.575528 +2024,3,15,1,Queensland,153.242007,-27.514678 +2024,5,22,1,Queensland,153.2517,-27.509288 +2020,9,28,1,Queensland,153.249295,-27.489934 +2023,7,26,1,Queensland,153.249329,-27.489994 +2020,11,18,1,Queensland,153.247454,-27.490833 +2022,3,13,1,Queensland,153.282192,-27.532973 +2022,10,14,1,Queensland,153.440434,-27.396058 +2024,5,1,1,Queensland,153.255158,-27.513058 +2023,11,21,1,Queensland,153.232285,-27.507467 +2021,1,26,1,Queensland,153.251717,-27.50087 +2023,4,3,1,Queensland,153.248489,-27.490385 +2024,2,16,1,Queensland,153.247096,-27.511419 +2020,11,30,1,Queensland,153.250796,-27.502871 +2022,10,3,1,Queensland,153.244921,-27.490805 +2024,10,30,1,Queensland,153.250418,-27.511296 +2022,2,19,1,Queensland,153.259554,-27.50155 +2021,10,8,1,Queensland,153.537938,-27.425318 +2023,9,9,1,Queensland,153.441045,-27.398865 +2024,5,30,1,Queensland,153.25042,-27.511253 +2024,6,8,1,Queensland,153.25037,-27.511314 +2024,7,24,1,Queensland,153.21957,-27.495063 +2023,11,5,1,Queensland,153.270961,-27.575623 +2024,6,24,1,Queensland,153.295563,-27.56881 +2023,10,1,1,Queensland,153.404923,-27.493824 +2023,9,19,1,Queensland,153.208542,-27.621668 +2022,12,7,1,Queensland,153.199585,-27.612837 +2024,3,11,1,Queensland,153.24524,-27.48997 +2023,4,3,1,Queensland,153.232758,-27.50106 +2023,10,16,1,Queensland,153.25195,-27.513274 +2021,8,2,1,Queensland,153.248634,-27.490244 +2023,8,13,1,Queensland,153.20488,-27.620489 +2023,11,15,1,Queensland,153.243759,-27.491372 +2023,6,29,1,Queensland,153.245483,-27.491165 +2023,10,5,1,Queensland,153.225661,-27.503897 +2020,10,23,1,Queensland,153.248912,-27.489527 +2022,12,20,1,Queensland,153.225541,-27.503642 +2024,3,28,1,Queensland,153.251906,-27.514524 +2024,10,11,1,Queensland,153.399633,-27.497765 +2022,11,18,1,Queensland,153.24595,-27.49711 +2023,4,18,1,Queensland,153.195343,-27.510416 +2024,8,26,1,Queensland,153.305481,-27.564884 +2022,10,23,1,Queensland,153.248583,-27.490229 +2020,10,4,1,Queensland,153.249336,-27.489935 +2021,3,11,1,Queensland,153.251992,-27.500939 +2020,11,26,1,Queensland,153.250217,-27.502574 +2023,9,10,1,Queensland,153.440576,-27.39877 +2022,4,14,1,Queensland,153.25256,-27.501749 +2024,1,16,1,Queensland,153.203156,-27.508595 +2023,10,9,1,Queensland,153.251419,-27.511692 +2024,6,8,1,Queensland,153.250151,-27.51139 +2022,12,15,1,Queensland,153.229309,-27.604959 +2024,5,23,1,Queensland,153.250291,-27.51133 +2024,6,18,1,Queensland,153.246222,-27.511158 +2022,1,23,1,Queensland,153.248228,-27.489493 +2023,5,10,1,Queensland,153.271101,-27.57585 +2024,8,5,1,Queensland,153.250931,-27.509132 +2024,4,15,1,Queensland,153.232391,-27.501408 +2023,3,18,1,Queensland,153.247283,-27.511501 +2023,8,17,1,Queensland,153.247256,-27.511503 +2024,3,2,1,Queensland,153.249961,-27.511584 +2020,12,19,1,Queensland,153.272431,-27.554243 +2024,7,25,1,Queensland,153.244946,-27.491041 +2021,4,7,1,Queensland,153.252691,-27.501374 +2023,10,25,1,Queensland,153.242127,-27.513088 +2023,3,7,1,Queensland,153.248215,-27.490612 +2023,1,31,1,Queensland,153.201828,-27.50913 +2020,9,16,1,Queensland,153.248149,-27.490359 +2024,3,5,1,Queensland,153.231049,-27.500095 +2022,4,1,1,Queensland,153.248184,-27.490505 +2024,10,30,1,Queensland,153.253769,-27.511865 +2024,7,3,1,Queensland,153.298111,-27.569464 +2024,4,21,1,Queensland,153.52653,-27.431594 +2023,5,3,1,Queensland,153.245605,-27.489622 +2024,1,23,1,Queensland,153.250253,-27.511753 +2024,2,11,1,Queensland,153.202441,-27.513024 +2020,9,9,1,Queensland,153.252078,-27.500962 +2024,5,21,1,Queensland,153.201813,-27.512175 +2024,1,5,1,Queensland,153.249974,-27.511587 +2021,5,10,1,Queensland,153.24842,-27.490522 +2024,10,9,1,Queensland,153.250648,-27.511567 +2024,7,3,1,Queensland,153.251697,-27.509256 +2024,9,9,1,Queensland,153.271994,-27.575413 +2022,11,7,1,Queensland,153.268845,-27.546438 +2023,7,18,1,Queensland,153.244989,-27.490753 +2022,12,5,1,Queensland,153.438889,-27.396613 +2024,5,6,1,Queensland,153.203445,-27.507469 +2024,5,27,1,Queensland,153.251674,-27.509276 +2021,4,14,1,Queensland,153.252975,-27.501186 +2024,1,20,1,Queensland,153.271583,-27.574177 +2024,5,14,1,Queensland,153.251948,-27.509326 +2023,1,16,1,Queensland,153.271782,-27.544298 +2023,12,10,1,Queensland,153.250244,-27.511592 +2024,2,24,1,Queensland,153.439838,-27.393455 +2024,2,7,1,Queensland,153.251986,-27.514477 +2021,4,9,1,Queensland,153.248376,-27.490891 +2023,10,3,1,Queensland,153.244049,-27.489918 +2022,11,15,1,Queensland,153.249298,-27.490091 +2024,6,5,1,Queensland,153.250312,-27.511328 +2024,10,17,1,Queensland,153.247907,-27.510104 +2024,10,31,1,Queensland,153.250619,-27.511672 +2023,11,17,1,Queensland,153.271347,-27.575946 +2024,11,4,1,Queensland,153.299728,-27.569761 +2024,1,21,1,Queensland,153.25195,-27.514427 +2023,9,18,1,Queensland,153.25383,-27.511797 +2023,1,1,1,Queensland,153.230628,-27.498992 +2024,6,25,1,Queensland,153.273193,-27.576593 +2024,3,4,1,Queensland,153.203003,-27.512814 +2023,12,6,1,Queensland,153.255239,-27.513571 +2024,8,28,1,Queensland,153.271051,-27.574737 +2022,10,14,1,Queensland,153.399329,-27.496197 +2020,11,2,1,Queensland,153.247856,-27.490848 +2021,5,23,1,Queensland,153.261188,-27.52279 +2024,4,27,1,Queensland,153.244743,-27.491363 +2024,5,15,1,Queensland,153.251785,-27.509366 +2023,9,30,1,Queensland,153.272517,-27.573986 +2023,9,10,1,Queensland,153.225448,-27.502661 +2022,3,16,1,Queensland,153.248656,-27.490746 +2021,1,2,1,Queensland,153.246151,-27.497358 +2023,8,13,1,Queensland,153.202362,-27.513472 +2024,8,4,1,Queensland,153.22435,-27.513165 +2023,3,15,1,Queensland,153.199292,-27.491779 +2022,9,7,1,Queensland,153.259127,-27.547303 +2024,2,27,1,Queensland,153.271133,-27.575356 +2024,4,12,1,Queensland,153.272249,-27.576631 +2022,9,30,1,Queensland,153.245498,-27.490294 +2020,12,9,1,Queensland,153.251026,-27.503421 +2021,10,17,1,Queensland,153.273665,-27.53476 +2024,2,14,1,Queensland,153.272098,-27.574653 +2022,11,16,1,Queensland,153.244853,-27.491224 +2024,8,2,1,Queensland,153.251942,-27.509311 +2023,4,18,1,Queensland,153.248688,-27.490534 +2021,7,29,1,Queensland,153.252392,-27.50122 +2023,9,21,1,Queensland,153.270886,-27.574861 +2024,3,24,1,Queensland,153.19826,-27.61335 +2024,9,30,1,Queensland,153.198944,-27.614197 +2023,10,13,1,Queensland,153.285659,-27.523547 +2024,1,19,1,Queensland,153.250073,-27.511501 +2022,10,14,1,Queensland,153.530158,-27.426575 +2024,9,30,1,Queensland,153.19841,-27.515299 +2023,10,23,1,Queensland,153.236542,-27.490238 +2024,1,28,1,Queensland,153.198582,-27.61326 +2024,10,23,1,Queensland,153.244622,-27.551941 +2024,2,18,1,Queensland,153.245331,-27.489859 +2024,3,8,1,Queensland,153.198303,-27.612696 +2024,1,15,1,Queensland,153.250135,-27.511647 +2023,4,15,1,Queensland,153.242996,-27.489119 +2024,5,20,1,Queensland,153.256073,-27.513984 +2023,8,1,1,Queensland,153.202469,-27.513523 +2023,11,6,1,Queensland,153.17837,-27.53807 +2022,12,20,1,Queensland,153.223314,-27.499388 +2024,5,6,1,Queensland,153.244669,-27.491127 +2024,10,31,1,Queensland,153.24796,-27.510091 +2024,3,24,1,Queensland,153.20119,-27.61326 +2024,2,13,1,Queensland,153.248618,-27.511513 +2023,2,26,1,Queensland,153.241843,-27.51187 +2023,10,6,1,Queensland,153.249351,-27.490105 +2023,12,23,1,Queensland,153.242111,-27.51281 +2024,7,27,1,Queensland,153.250638,-27.511614 +2023,4,2,1,Queensland,153.27094,-27.575585 +2024,9,25,1,Queensland,153.242277,-27.511511 +2022,3,14,1,Queensland,153.248463,-27.490904 +2024,5,14,1,Queensland,153.244687,-27.491132 +2022,10,21,1,Queensland,153.271158,-27.553325 +2023,10,14,1,Queensland,153.225617,-27.503128 +2023,4,23,1,Queensland,153.248941,-27.49067 +2024,10,26,1,Queensland,153.248053,-27.510118 +2024,5,27,1,Queensland,153.196915,-27.515703 +2023,5,25,1,Queensland,153.253854,-27.511808 +2020,10,7,1,Queensland,153.25254,-27.504492 +2024,8,13,1,Queensland,153.251708,-27.509187 +2023,12,7,1,Queensland,153.199753,-27.613239 +2023,10,9,1,Queensland,153.25173,-27.511688 +2024,9,26,1,Queensland,153.245182,-27.510543 +2023,10,23,1,Queensland,153.193344,-27.504934 +2021,3,23,1,Queensland,153.252116,-27.501084 +2023,7,31,1,Queensland,153.249227,-27.490248 +2024,6,24,1,Queensland,153.245056,-27.489643 +2024,11,12,1,Queensland,153.246422,-27.499497 +2024,5,21,1,Queensland,153.256034,-27.512682 +2023,2,22,1,Queensland,153.245438,-27.490267 +2024,5,22,1,Queensland,153.232544,-27.50157 +2024,3,4,1,Queensland,153.250097,-27.511362 +2021,10,8,1,Queensland,153.441167,-27.394674 +2024,1,24,1,Queensland,153.251993,-27.514361 +2024,1,18,1,Queensland,153.246507,-27.498829 +2023,10,27,1,Queensland,153.242462,-27.513104 +2023,7,29,1,Queensland,153.254042,-27.511793 +2022,10,16,1,Queensland,153.404464,-27.494938 +2024,6,17,1,Queensland,153.233749,-27.506273 +2020,11,29,1,Queensland,153.24609,-27.4974 +2023,9,4,1,Queensland,153.239869,-27.515341 +2024,6,17,1,Queensland,153.233749,-27.506273 +2022,4,29,1,Queensland,153.259825,-27.546344 +2020,12,24,1,Queensland,153.272173,-27.554319 +2021,6,23,1,Queensland,153.243817,-27.511541 +2024,5,6,1,Queensland,153.250099,-27.511389 +2021,10,28,1,Queensland,153.442802,-27.398993 +2023,10,23,1,Queensland,153.198914,-27.505962 +2024,8,19,1,Queensland,153.203735,-27.51166 +2022,9,9,1,Queensland,153.249842,-27.489385 +2023,9,29,1,Queensland,153.239821,-27.515368 +2020,9,25,1,Queensland,153.248086,-27.490606 +2024,6,12,1,Queensland,153.247243,-27.511425 +2023,5,3,1,Queensland,153.208664,-27.625813 +2024,6,4,1,Queensland,153.271927,-27.576688 +2023,10,15,1,Queensland,153.225678,-27.50385 +2023,9,16,1,Queensland,153.219346,-27.495389 +2023,11,12,1,Queensland,153.219186,-27.494354 +2023,1,2,1,Queensland,153.197865,-27.491599 +2024,2,13,1,Queensland,153.198883,-27.613251 +2024,3,5,1,Queensland,153.233337,-27.506691 +2023,10,9,1,Queensland,153.271841,-27.574158 +2024,7,12,1,Queensland,153.272034,-27.57684 +2023,4,2,1,Queensland,153.20222,-27.50861 +2024,9,15,1,Queensland,153.25075,-27.511669 +2023,7,11,1,Queensland,153.245468,-27.489555 +2024,6,13,1,Queensland,153.252534,-27.511655 +2023,3,22,1,Queensland,153.523865,-27.432096 +2023,11,10,1,Queensland,153.219492,-27.49549 +2023,5,7,1,Queensland,153.24839,-27.490994 +2024,5,10,1,Queensland,153.248555,-27.511524 +2023,10,15,1,Queensland,153.268236,-27.538889 +2022,11,16,1,Queensland,153.245866,-27.496652 +2023,8,16,1,Queensland,153.247642,-27.511497 +2023,11,15,1,Queensland,153.257164,-27.501941 +2024,1,16,1,Queensland,153.202942,-27.514233 +2023,3,7,1,Queensland,153.245972,-27.48983 +2021,7,19,1,Queensland,153.248334,-27.490954 +2023,3,31,1,Queensland,153.243313,-27.511499 +2023,12,23,1,Queensland,153.250251,-27.511359 +2022,9,15,1,Queensland,153.200668,-27.504223 +2022,10,14,1,Queensland,153.438462,-27.397847 +2024,6,24,1,Queensland,153.202682,-27.513311 +2022,11,23,1,Queensland,153.249505,-27.501824 +2021,8,26,1,Queensland,153.261993,-27.519273 +2024,10,29,1,Queensland,153.247836,-27.51018 +2022,3,4,1,Queensland,153.24666,-27.490323 +2024,6,3,1,Queensland,153.251617,-27.509064 +2020,10,2,1,Queensland,153.248078,-27.49042 +2023,10,2,1,Queensland,153.271004,-27.575604 +2023,10,16,1,Queensland,153.243744,-27.491213 +2024,10,23,1,Queensland,153.230674,-27.500668 +2024,5,6,1,Queensland,153.274861,-27.554834 +2023,11,24,1,Queensland,153.270875,-27.575699 +2024,10,11,1,Queensland,153.440758,-27.402921 +2023,4,28,1,Queensland,153.245618,-27.490657 +2022,11,8,1,Queensland,153.271487,-27.576002 +2022,11,2,1,Queensland,153.203354,-27.508244 +2022,7,29,1,Queensland,153.52085,-27.425815 +2022,3,19,1,Queensland,153.281904,-27.53222 +2020,12,30,1,Queensland,153.249739,-27.501428 +2022,10,7,1,Queensland,153.199743,-27.491675 +2024,7,23,1,Queensland,153.247601,-27.511404 +2024,7,27,1,Queensland,153.298527,-27.567318 +2021,10,8,1,Queensland,153.400387,-27.498924 +2024,1,30,1,Queensland,153.284223,-27.525009 +2023,1,31,1,Queensland,153.270798,-27.538393 +2024,1,22,1,Queensland,153.233215,-27.506399 +2021,1,31,1,Queensland,153.283302,-27.525719 +2024,3,2,1,Queensland,153.271991,-27.574824 +2023,11,6,1,Queensland,153.532519,-27.427642 +2022,5,7,1,Queensland,153.248205,-27.490761 +2023,10,22,1,Queensland,153.281729,-27.557677 +2020,12,17,1,Queensland,153.245641,-27.49613 +2023,5,9,1,Queensland,153.197928,-27.614819 +2022,11,7,1,Queensland,153.271358,-27.575888 +2024,2,9,1,Queensland,153.250199,-27.511455 +2023,10,1,1,Queensland,153.271562,-27.575071 +2020,10,7,1,Queensland,153.247985,-27.490893 +2024,5,10,1,Queensland,153.273032,-27.575888 +2023,1,11,1,Queensland,153.246986,-27.489781 +2024,7,4,1,Queensland,153.250266,-27.511243 +2023,7,5,1,Queensland,153.248004,-27.490673 +2024,6,23,1,Queensland,153.250726,-27.511586 +2021,1,26,1,Queensland,153.249118,-27.48983 +2024,4,2,1,Queensland,153.241823,-27.514769 +2024,2,14,1,Queensland,153.198746,-27.613249 +2024,3,6,1,Queensland,153.25019,-27.51137 +2023,12,22,1,Queensland,153.242252,-27.512796 +2023,6,24,1,Queensland,153.274271,-27.571001 +2023,4,17,1,Queensland,153.248824,-27.490784 +2023,10,6,1,Queensland,153.270333,-27.552665 +2023,6,26,1,Queensland,153.223143,-27.506902 +2021,5,7,1,Queensland,153.281718,-27.530408 +2023,9,9,1,Queensland,153.440753,-27.398949 +2023,5,16,1,Queensland,153.272184,-27.5745 +2024,1,18,1,Queensland,153.250171,-27.511319 +2024,7,29,1,Queensland,153.201813,-27.508556 +2023,9,7,1,Queensland,153.242281,-27.489299 +2023,2,8,1,Queensland,153.273751,-27.559484 +2024,8,5,1,Queensland,153.244354,-27.489197 +2024,9,27,1,Queensland,153.245101,-27.510261 +2020,10,24,1,Queensland,153.248184,-27.490618 +2021,7,16,1,Queensland,153.259187,-27.518843 +2024,9,9,1,Queensland,153.244064,-27.488499 +2023,6,24,1,Queensland,153.24769,-27.511507 +2024,4,29,1,Queensland,153.273359,-27.57627 +2024,7,12,1,Queensland,153.253587,-27.51171 +2022,10,14,1,Queensland,153.439078,-27.3964 +2023,6,30,1,Queensland,153.244589,-27.518825 +2024,7,1,1,Queensland,153.295731,-27.568857 +2024,3,3,1,Queensland,153.249938,-27.511388 +2024,1,23,1,Queensland,153.22308,-27.499689 +2024,10,14,1,Queensland,153.203857,-27.508497 +2024,1,21,1,Queensland,153.271369,-27.574253 +2024,1,22,1,Queensland,153.250292,-27.511332 +2024,11,14,1,Queensland,153.250202,-27.511359 +2024,1,30,1,Queensland,153.232839,-27.507489 +2023,6,14,1,Queensland,153.197685,-27.61269 +2024,5,30,1,Queensland,153.271626,-27.574234 +2021,2,10,1,Queensland,153.24861,-27.490098 +2024,7,27,1,Queensland,153.251689,-27.509237 +2023,9,7,1,Queensland,153.440656,-27.398773 +2024,10,6,1,Queensland,153.24957,-27.501423 +2023,5,25,1,Queensland,153.203018,-27.512821 +2023,6,20,1,Queensland,153.248859,-27.489661 +2024,10,22,1,Queensland,153.253546,-27.511735 +2023,8,27,1,Queensland,153.212533,-27.496706 +2021,9,8,1,Queensland,153.261931,-27.519434 +2024,7,19,1,Queensland,153.254328,-27.511962 +2022,11,15,1,Queensland,153.244278,-27.488281 +2022,8,4,1,Queensland,153.260925,-27.523582 +2024,2,26,1,Queensland,153.199753,-27.61314 +2023,10,1,1,Queensland,153.403915,-27.493206 +2023,4,13,1,Queensland,153.271004,-27.575566 +2021,9,26,1,Queensland,153.248395,-27.489729 +2024,9,2,1,Queensland,153.298889,-27.570034 +2023,5,19,1,Queensland,153.271111,-27.575642 +2023,1,13,1,Queensland,153.281859,-27.530981 +2023,8,26,1,Queensland,153.253382,-27.511771 +2024,6,19,1,Queensland,153.27197,-27.576764 +2024,6,28,1,Queensland,153.252661,-27.511444 +2023,10,15,1,Queensland,153.25129,-27.511655 +2024,5,13,1,Queensland,153.29788,-27.56733 +2023,7,18,1,Queensland,153.24942,-27.490053 +2023,6,22,1,Queensland,153.195374,-27.508032 +2020,12,17,1,Queensland,153.249192,-27.489886 +2024,10,27,1,Queensland,153.199036,-27.613281 +2024,5,21,1,Queensland,153.198486,-27.612535 +2024,2,7,1,Queensland,153.233963,-27.504705 +2024,3,30,1,Queensland,153.250222,-27.511311 +2024,9,22,1,Queensland,153.272947,-27.573424 +2023,6,5,1,Queensland,153.232361,-27.507151 +2024,8,27,1,Queensland,153.271051,-27.574737 +2024,1,9,1,Queensland,153.269985,-27.575356 +2021,10,9,1,Queensland,153.524375,-27.431544 +2022,11,11,1,Queensland,153.52031,-27.425737 +2024,5,27,1,Queensland,153.271841,-27.576612 +2024,1,22,1,Queensland,153.197205,-27.505381 +2022,9,28,1,Queensland,153.233597,-27.608927 +2023,7,20,1,Queensland,153.24872,-27.511536 +2024,2,7,1,Queensland,153.271734,-27.575413 +2024,8,19,1,Queensland,153.298233,-27.569551 +2023,8,14,1,Queensland,153.244858,-27.48959 +2022,8,10,1,Queensland,153.244942,-27.490827 +2023,12,29,1,Queensland,153.253714,-27.511768 +2023,11,20,1,Queensland,153.255088,-27.513247 +2021,6,22,1,Queensland,153.248232,-27.490906 +2023,8,29,1,Queensland,153.19902,-27.511158 +2024,2,18,1,Queensland,153.198242,-27.515219 +2024,11,1,1,Queensland,153.271898,-27.575412 +2023,11,20,1,Queensland,153.25569,-27.514392 +2022,2,4,1,Queensland,153.259556,-27.546871 +2024,5,25,1,Queensland,153.24989,-27.511402 +2022,8,22,1,Queensland,153.245276,-27.488892 +2022,8,3,1,Queensland,153.260757,-27.522989 +2024,2,19,1,Queensland,153.250233,-27.511406 +2023,11,20,1,Queensland,153.271884,-27.575071 +2022,10,7,1,Queensland,153.248296,-27.490966 +2023,5,20,1,Queensland,153.271283,-27.575052 +2024,9,28,1,Queensland,153.441346,-27.393012 +2024,8,14,1,Queensland,153.22258,-27.51523 +2021,10,9,1,Queensland,153.438972,-27.397194 +2024,1,11,1,Queensland,153.270854,-27.575623 +2024,9,9,1,Queensland,153.291977,-27.571283 +2022,12,21,1,Queensland,153.399981,-27.4978 +2024,2,14,1,Queensland,153.272184,-27.574405 +2024,7,29,1,Queensland,153.246124,-27.489895 +2023,6,29,1,Queensland,153.244934,-27.489964 +2024,1,9,1,Queensland,153.250318,-27.511328 +2022,5,11,1,Queensland,153.453169,-27.388675 +2024,10,15,1,Queensland,153.249508,-27.501106 +2024,3,24,1,Queensland,153.244873,-27.490833 +2020,12,21,1,Queensland,153.284112,-27.52523 +2023,1,31,1,Queensland,153.270203,-27.546757 +2022,10,14,1,Queensland,153.399265,-27.496257 +2024,2,19,1,Queensland,153.25,-27.511339 +2021,1,3,1,Queensland,153.272012,-27.554195 +2024,5,5,1,Queensland,153.523652,-27.432062 +2022,4,8,1,Queensland,153.228702,-27.590336 +2023,10,10,1,Queensland,153.244977,-27.490898 +2024,6,10,1,Queensland,153.199203,-27.511023 +2023,12,21,1,Queensland,153.250113,-27.511382 +2024,10,31,1,Queensland,153.272174,-27.575262 +2024,1,16,1,Queensland,153.25054,-27.511782 +2024,10,23,1,Queensland,153.21174,-27.498069 +2023,9,19,1,Queensland,153.206159,-27.496528 +2020,10,12,1,Queensland,153.217737,-27.547608 +2020,11,13,1,Queensland,153.250965,-27.502951 +2021,2,12,1,Queensland,153.24864,-27.489971 +2024,7,29,1,Queensland,153.197342,-27.61451 +2023,10,22,1,Queensland,153.250146,-27.511465 +2023,3,25,1,Queensland,153.271852,-27.575469 +2023,2,8,1,Queensland,153.226944,-27.560879 +2021,10,12,1,Queensland,153.222311,-27.645846 +2023,12,22,1,Queensland,153.250286,-27.511296 +2021,9,10,1,Queensland,153.249342,-27.500499 +2023,11,20,1,Queensland,153.271004,-27.575566 +2024,10,8,1,Queensland,153.249146,-27.510155 +2024,8,23,1,Queensland,153.271994,-27.575413 +2020,10,26,1,Queensland,153.250267,-27.502663 +2024,3,18,1,Queensland,153.198624,-27.513962 +2021,10,9,1,Queensland,153.437906,-27.400233 +2023,3,16,1,Queensland,153.248119,-27.511534 +2021,10,8,1,Queensland,153.44072,-27.39702 +2023,7,11,1,Queensland,153.198334,-27.615305 +2023,11,15,1,Queensland,153.223101,-27.499744 +2024,1,5,1,Queensland,153.27212,-27.574615 +2022,8,9,1,Queensland,153.260824,-27.521338 +2023,7,18,1,Queensland,153.232773,-27.506947 +2020,9,16,1,Queensland,153.249283,-27.489795 +2021,5,28,1,Queensland,153.249676,-27.48995 +2024,8,12,1,Queensland,153.30571,-27.565067 +2023,5,26,1,Queensland,153.22477,-27.501239 +2024,5,23,1,Queensland,153.248635,-27.511495 +2023,8,27,1,Queensland,153.281765,-27.532326 +2024,7,6,1,Queensland,153.251896,-27.50932 +2020,12,4,1,Queensland,153.245238,-27.495741 +2023,7,24,1,Queensland,153.248403,-27.4905 +2020,11,23,1,Queensland,153.248683,-27.489595 +2023,9,6,1,Queensland,153.27065,-27.536416 +2023,4,8,1,Queensland,153.271004,-27.575642 +2023,9,27,1,Queensland,153.249887,-27.511604 +2024,6,10,1,Queensland,153.198044,-27.615282 +2024,8,14,1,Queensland,153.298447,-27.569553 +2024,1,19,1,Queensland,153.250097,-27.511677 +2022,9,30,1,Queensland,153.247433,-27.490783 +2024,2,26,1,Queensland,153.199738,-27.61331 +2021,8,6,1,Queensland,153.263774,-27.540541 +2024,7,8,1,Queensland,153.19754,-27.612751 +2024,10,15,1,Queensland,153.230717,-27.500192 +2021,2,14,1,Queensland,153.246076,-27.497089 +2024,5,23,1,Queensland,153.203766,-27.509369 +2024,6,3,1,Queensland,153.25037,-27.51132 +2023,10,4,1,Queensland,153.245408,-27.49648 +2024,8,12,1,Queensland,153.206802,-27.62446 +2023,12,14,1,Queensland,153.252495,-27.511699 +2024,8,26,1,Queensland,153.24498,-27.490231 +2024,7,27,1,Queensland,153.251541,-27.50922 +2022,4,14,1,Queensland,153.247202,-27.501106 +2023,7,29,1,Queensland,153.440686,-27.398727 +2023,12,8,1,Queensland,153.271197,-27.575014 +2024,10,15,1,Queensland,153.21036,-27.607935 +2023,9,6,1,Queensland,153.239818,-27.51536 +2023,7,30,1,Queensland,153.441432,-27.398884 +2024,8,27,1,Queensland,153.218148,-27.494691 +2021,10,4,1,Queensland,153.258251,-27.50267 +2024,1,23,1,Queensland,153.271819,-27.574253 +2023,1,23,1,Queensland,153.430059,-27.490684 +2024,7,15,1,Queensland,153.204391,-27.509674 +2020,10,28,1,Queensland,153.250335,-27.502559 +2021,8,8,1,Queensland,153.400212,-27.49853 +2022,11,7,1,Queensland,153.206253,-27.620832 +2021,1,6,1,Queensland,153.284027,-27.525221 +2021,3,23,1,Queensland,153.252207,-27.501016 +2023,3,7,1,Queensland,153.269989,-27.540371 +2024,7,1,1,Queensland,153.298447,-27.569477 +2023,9,19,1,Queensland,153.241211,-27.491642 +2024,7,29,1,Queensland,153.301559,-27.567816 +2022,8,15,1,Queensland,153.20745,-27.600455 +2023,2,12,1,Queensland,153.409894,-27.487127 +2023,10,3,1,Queensland,153.2715,-27.540506 +2024,8,11,1,Queensland,153.271664,-27.575113 +2022,10,25,1,Queensland,153.219302,-27.50221 +2024,9,6,1,Queensland,153.271499,-27.575697 +2024,1,30,1,Queensland,153.244456,-27.489419 +2021,10,8,1,Queensland,153.51911,-27.425389 +2023,6,9,1,Queensland,153.251574,-27.494796 +2024,4,10,1,Queensland,153.241936,-27.514523 +2022,8,22,1,Queensland,153.26475,-27.523871 +2022,12,23,1,Queensland,153.228736,-27.561365 +2023,6,20,1,Queensland,153.245686,-27.490276 +2024,1,17,1,Queensland,153.195478,-27.572686 +2024,2,26,1,Queensland,153.197159,-27.505419 +2021,1,3,1,Queensland,153.272002,-27.554138 +2021,4,25,1,Queensland,153.45,-27.4 +2023,12,16,1,Queensland,153.251056,-27.511664 +2020,10,5,1,Queensland,153.247956,-27.490791 +2023,12,10,1,Queensland,153.250166,-27.511636 +2024,8,26,1,Queensland,153.271664,-27.575113 +2024,10,10,1,Queensland,153.247304,-27.511374 +2024,7,17,1,Queensland,153.253702,-27.511599 +2024,2,1,1,Queensland,153.27139,-27.574786 +2024,6,6,1,Queensland,153.253833,-27.511831 +2023,11,18,1,Queensland,153.222097,-27.498117 +2023,4,3,1,Queensland,153.246277,-27.490034 +2024,8,29,1,Queensland,153.248639,-27.511496 +2023,12,11,1,Queensland,153.271326,-27.576136 +2024,8,31,1,Queensland,153.248215,-27.511277 +2023,4,18,1,Queensland,153.245041,-27.489668 +2021,10,20,1,Queensland,153.523839,-27.431968 +2024,7,22,1,Queensland,153.204657,-27.617824 +2023,10,8,1,Queensland,153.431196,-27.48912 +2024,1,8,1,Queensland,153.250221,-27.511371 +2023,4,29,1,Queensland,153.271497,-27.575356 +2024,7,15,1,Queensland,153.249985,-27.511577 +2023,9,5,1,Queensland,153.239842,-27.515358 +2024,5,23,1,Queensland,153.251767,-27.509274 +2023,10,28,1,Queensland,153.244929,-27.490727 +2023,10,4,1,Queensland,153.239897,-27.515403 +2024,3,14,1,Queensland,153.250425,-27.511381 +2023,10,3,1,Queensland,153.21192,-27.618125 +2024,5,15,1,Queensland,153.250206,-27.511142 +2023,10,6,1,Queensland,153.239798,-27.515361 +2024,8,6,1,Queensland,153.27132,-27.575336 +2023,7,6,1,Queensland,153.20433,-27.617435 +2023,11,23,1,Queensland,153.245257,-27.495779 +2023,8,1,1,Queensland,153.199799,-27.511456 +2023,6,24,1,Queensland,153.258904,-27.546638 +2021,11,8,1,Queensland,153.27728,-27.537139 +2023,4,25,1,Queensland,153.202133,-27.511782 +2023,11,8,1,Queensland,153.247245,-27.499503 +2024,7,16,1,Queensland,153.254249,-27.511966 +2024,1,21,1,Queensland,153.250213,-27.511381 +2023,8,15,1,Queensland,153.253288,-27.511727 +2020,10,20,1,Queensland,153.247519,-27.490803 +2022,10,14,1,Queensland,153.399063,-27.497328 +2024,6,5,1,Queensland,153.247161,-27.511524 +2024,4,19,1,Queensland,153.247936,-27.511049 +2023,6,22,1,Queensland,153.1987,-27.615374 +2020,11,14,1,Queensland,153.25048,-27.502953 +2024,2,28,1,Queensland,153.216995,-27.547302 +2023,7,2,1,Queensland,153.255994,-27.514023 +2024,8,5,1,Queensland,153.197388,-27.514866 +2024,6,8,1,Queensland,153.250239,-27.511212 +2024,1,21,1,Queensland,153.255324,-27.545302 +2024,6,27,1,Queensland,153.250316,-27.511316 +2022,12,14,1,Queensland,153.245316,-27.489365 +2020,12,26,1,Queensland,153.272206,-27.554328 +2024,1,31,1,Queensland,153.250149,-27.511361 +2024,4,8,1,Queensland,153.241944,-27.514625 +2024,5,11,1,Queensland,153.248511,-27.511461 +2022,12,11,1,Queensland,153.189018,-27.582786 +2024,1,11,1,Queensland,153.250174,-27.511363 +2024,8,26,1,Queensland,153.251435,-27.495348 +2024,5,6,1,Queensland,153.294647,-27.568865 +2023,4,1,1,Queensland,153.270725,-27.575528 +2024,3,21,1,Queensland,153.295197,-27.568853 +2023,4,3,1,Queensland,153.24472,-27.490814 +2024,2,18,1,Queensland,153.247685,-27.511611 +2022,10,2,1,Queensland,153.281808,-27.532895 +2022,11,2,1,Queensland,153.246964,-27.490284 +2023,8,1,1,Queensland,153.249872,-27.511585 +2023,12,28,1,Queensland,153.250182,-27.511381 +2022,12,4,1,Queensland,153.270307,-27.547721 +2023,12,11,1,Queensland,153.254495,-27.511836 +2023,12,25,1,Queensland,153.250079,-27.511566 +2022,12,24,1,Queensland,153.402972,-27.493653 +2023,11,24,1,Queensland,153.250661,-27.511756 +2022,8,9,1,Queensland,153.24467,-27.489872 +2024,2,26,1,Queensland,153.198685,-27.503168 +2023,8,24,1,Queensland,153.238513,-27.482814 +2024,3,23,1,Queensland,153.244953,-27.490659 +2023,4,18,1,Queensland,153.232574,-27.506811 +2022,11,5,1,Queensland,153.225441,-27.503266 +2023,7,12,1,Queensland,153.260173,-27.502231 +2023,11,15,1,Queensland,153.221984,-27.50751 +2024,3,24,1,Queensland,153.245565,-27.489687 +2022,9,7,1,Queensland,153.248709,-27.49046 +2024,9,14,1,Queensland,153.250544,-27.511469 +2024,5,31,1,Queensland,153.248785,-27.511535 +2024,1,22,1,Queensland,153.251418,-27.511615 +2022,5,1,1,Queensland,153.258419,-27.546893 +2023,1,1,1,Queensland,153.271712,-27.575756 +2021,11,17,1,Queensland,153.281556,-27.530268 +2020,10,11,1,Queensland,153.252068,-27.500822 +2024,1,1,1,Queensland,153.250126,-27.51178 +2024,9,28,1,Queensland,153.438068,-27.400797 +2023,10,23,1,Queensland,153.199646,-27.511303 +2022,4,4,1,Queensland,153.272141,-27.536777 +2023,11,13,1,Queensland,153.225571,-27.503682 +2024,6,4,1,Queensland,153.253764,-27.511749 +2023,12,18,1,Queensland,153.271862,-27.574519 +2024,5,22,1,Queensland,153.232544,-27.50157 +2024,4,22,1,Queensland,153.273021,-27.576041 +2024,5,21,1,Queensland,153.248504,-27.511467 +2020,10,4,1,Queensland,153.251327,-27.503163 +2020,9,21,1,Queensland,153.24996,-27.502418 +2024,9,10,1,Queensland,153.299825,-27.576796 +2024,3,15,1,Queensland,153.250234,-27.511227 +2024,7,31,1,Queensland,153.251391,-27.50945 +2023,1,19,1,Queensland,153.22966,-27.608955 +2024,6,7,1,Queensland,153.250273,-27.511305 +2022,10,2,1,Queensland,153.258891,-27.546897 +2023,9,22,1,Queensland,153.25141,-27.511698 +2024,1,9,1,Queensland,153.246602,-27.4993 +2023,2,7,1,Queensland,153.273858,-27.559103 +2020,10,7,1,Queensland,153.248009,-27.490536 +2024,10,11,1,Queensland,153.441349,-27.392992 +2024,10,11,1,Queensland,153.442881,-27.394898 +2024,6,4,1,Queensland,153.249835,-27.511299 +2024,1,5,1,Queensland,153.250221,-27.511371 +2024,10,11,1,Queensland,153.439462,-27.396952 +2023,9,5,1,Queensland,153.245132,-27.490892 +2023,11,29,1,Queensland,153.245117,-27.489809 +2024,4,3,1,Queensland,153.2418,-27.514684 +2024,7,21,1,Queensland,153.273179,-27.576652 +2022,12,24,1,Queensland,153.400031,-27.498403 +2022,10,14,1,Queensland,153.4403,-27.396553 +2024,5,21,1,Queensland,153.24559,-27.489569 +2024,5,12,1,Queensland,153.27315,-27.576174 +2024,3,4,1,Queensland,153.233002,-27.507231 +2024,7,1,1,Queensland,153.245239,-27.48987 +2024,6,6,1,Queensland,153.25035,-27.511362 +2023,5,3,1,Queensland,153.248744,-27.490614 +2021,9,10,1,Queensland,153.247967,-27.490821 +2024,9,26,1,Queensland,153.242202,-27.511442 +2024,2,23,1,Queensland,153.25009,-27.511379 +2022,10,19,1,Queensland,153.199234,-27.614861 +2024,10,13,1,Queensland,153.253564,-27.511646 +2023,5,1,1,Queensland,153.27109,-27.575699 +2023,10,16,1,Queensland,153.236084,-27.48908 +2021,8,2,1,Queensland,153.252389,-27.501735 +2020,10,24,1,Queensland,153.248926,-27.489596 +2024,1,6,1,Queensland,153.253431,-27.511738 +2023,12,5,1,Queensland,153.255965,-27.513927 +2024,10,11,1,Queensland,153.44058,-27.40308 +2023,4,3,1,Queensland,153.241521,-27.512446 +2024,2,5,1,Queensland,153.271347,-27.575356 +2024,4,21,1,Queensland,153.243799,-27.491344 +2023,7,24,1,Queensland,153.248358,-27.490681 +2024,1,10,1,Queensland,153.250232,-27.511386 +2024,5,4,1,Queensland,153.250139,-27.511271 +2024,5,16,1,Queensland,153.250622,-27.511577 +2024,11,17,1,Queensland,153.271499,-27.575697 +2024,2,1,1,Queensland,153.250167,-27.511349 +2021,8,30,1,Queensland,153.248778,-27.490219 +2024,6,17,1,Queensland,153.233749,-27.506273 +2021,10,16,1,Queensland,153.24968,-27.502181 +2024,3,11,1,Queensland,153.250148,-27.511456 +2022,9,25,1,Queensland,153.248909,-27.490773 +2024,3,13,1,Queensland,153.250119,-27.511411 +2021,9,8,1,Queensland,153.239211,-27.521256 +2023,4,9,1,Queensland,153.216764,-27.50045 +2023,12,3,1,Queensland,153.251036,-27.511607 +2023,6,14,1,Queensland,153.196967,-27.505413 +2021,5,14,1,Queensland,153.245998,-27.497658 +2023,3,31,1,Queensland,153.248124,-27.490514 +2024,4,15,1,Queensland,153.250234,-27.511283 +2024,10,11,1,Queensland,153.440192,-27.397476 +2021,6,29,1,Queensland,153.249435,-27.490159 +2024,6,16,1,Queensland,153.247397,-27.511557 +2023,9,5,1,Queensland,153.241211,-27.491497 +2023,4,9,1,Queensland,153.247888,-27.490951 +2022,10,15,1,Queensland,153.254986,-27.535511 +2022,12,20,1,Queensland,153.225557,-27.503509 +2024,8,8,1,Queensland,153.271603,-27.575143 +2022,12,4,1,Queensland,153.270307,-27.547721 +2023,6,14,1,Queensland,153.198111,-27.615008 +2021,9,28,1,Queensland,153.246698,-27.499372 +2024,3,4,1,Queensland,153.196548,-27.501356 +2024,8,10,1,Queensland,153.248651,-27.511491 +2023,11,10,1,Queensland,153.24368,-27.491359 +2023,4,3,1,Queensland,153.244741,-27.491297 +2021,3,6,1,Queensland,153.25196,-27.510555 +2023,4,25,1,Queensland,153.253623,-27.51178 +2024,1,20,1,Queensland,153.253923,-27.511782 +2024,7,27,1,Queensland,153.249438,-27.511549 +2023,11,2,1,Queensland,153.270918,-27.575623 +2024,5,14,1,Queensland,153.20096,-27.50684 +2023,8,13,1,Queensland,153.44274,-27.393871 +2022,12,16,1,Queensland,153.225632,-27.498551 +2024,4,1,1,Queensland,153.202988,-27.512886 +2021,10,10,1,Queensland,153.228702,-27.556319 +2024,9,13,1,Queensland,153.298064,-27.56943 +2024,9,21,1,Queensland,153.250249,-27.511368 +2021,9,20,1,Queensland,153.275124,-27.554832 +2023,11,26,1,Queensland,153.255945,-27.5138 +2020,11,30,1,Queensland,153.245276,-27.49569 +2023,10,30,1,Queensland,153.199861,-27.492189 +2022,8,3,1,Queensland,153.232986,-27.500938 +2024,1,18,1,Queensland,153.250654,-27.511698 +2020,10,29,1,Queensland,153.248334,-27.490544 +2024,11,10,1,Queensland,153.271499,-27.575697 +2024,5,12,1,Queensland,153.255189,-27.513064 +2022,8,15,1,Queensland,153.273293,-27.53663 +2020,10,21,1,Queensland,153.251258,-27.502982 +2024,2,13,1,Queensland,153.245331,-27.489882 +2023,2,4,1,Queensland,153.259541,-27.546487 +2024,6,24,1,Queensland,153.253629,-27.511778 +2024,11,15,1,Queensland,153.25365,-27.511728 +2024,6,18,1,Queensland,153.251808,-27.509413 +2023,10,16,1,Queensland,153.2453,-27.489485 +2023,11,17,1,Queensland,153.271734,-27.574615 +2023,7,25,1,Queensland,153.24617,-27.489687 +2024,3,13,1,Queensland,153.244476,-27.488914 +2023,9,5,1,Queensland,153.232986,-27.506477 +2023,10,9,1,Queensland,153.200562,-27.511272 +2024,6,28,1,Queensland,153.247324,-27.511373 +2021,4,9,1,Queensland,153.281075,-27.52934 +2024,2,4,1,Queensland,153.250158,-27.511452 +2023,12,10,1,Queensland,153.256024,-27.513777 +2024,1,12,1,Queensland,153.271326,-27.574938 +2024,5,17,1,Queensland,153.250239,-27.511338 +2024,9,28,1,Queensland,153.256028,-27.513621 +2021,10,28,1,Queensland,153.249659,-27.502512 +2020,10,20,1,Queensland,153.163222,-27.595669 +2024,4,1,1,Queensland,153.250854,-27.509836 +2024,9,20,1,Queensland,153.249971,-27.511267 +2022,4,25,1,Queensland,153.258322,-27.546893 +2024,8,28,1,Queensland,153.263778,-27.542439 +2024,1,6,1,Queensland,153.255419,-27.513106 +2024,2,20,1,Queensland,153.272184,-27.574348 +2022,12,16,1,Queensland,153.518829,-27.424793 +2024,3,13,1,Queensland,153.224323,-27.498284 +2024,1,10,1,Queensland,153.245798,-27.495741 +2022,12,14,1,Queensland,153.245193,-27.489408 +2022,3,13,1,Queensland,153.281744,-27.531264 +2024,1,25,1,Queensland,153.250144,-27.511361 +2024,5,27,1,Queensland,153.245468,-27.489885 +2024,5,8,1,Queensland,153.273021,-27.576212 +2024,8,19,1,Queensland,153.206924,-27.623398 +2021,11,26,1,Queensland,153.258322,-27.544796 +2024,1,29,1,Queensland,153.271658,-27.574975 +2022,10,14,1,Queensland,153.438621,-27.400943 +2024,1,17,1,Queensland,153.232788,-27.50737 +2024,7,29,1,Queensland,153.206406,-27.620687 +2023,12,14,1,Queensland,153.249996,-27.511575 +2022,10,19,1,Queensland,153.529129,-27.428652 +2024,6,5,1,Queensland,153.24931,-27.511088 +2024,5,26,1,Queensland,153.258339,-27.546824 +2023,8,4,1,Queensland,153.444556,-27.395958 +2023,2,8,1,Queensland,153.245483,-27.489634 +2024,8,31,1,Queensland,153.24834,-27.511182 +2024,3,31,1,Queensland,153.249686,-27.511531 +2023,10,8,1,Queensland,153.271358,-27.575622 +2020,10,16,1,Queensland,153.250123,-27.502067 +2024,7,16,1,Queensland,153.250668,-27.511514 +2022,2,22,1,Queensland,153.215641,-27.537825 +2024,8,15,1,Queensland,153.248575,-27.490848 +2022,10,14,1,Queensland,153.409693,-27.498418 +2024,3,18,1,Queensland,153.24529,-27.48984 +2022,8,2,1,Queensland,153.273366,-27.536703 +2023,1,31,1,Queensland,153.201584,-27.508215 +2023,12,2,1,Queensland,153.255938,-27.513629 +2020,9,29,1,Queensland,153.250772,-27.503223 +2021,1,3,1,Queensland,153.244864,-27.490762 +2024,10,7,1,Queensland,153.202515,-27.507196 +2023,1,17,1,Queensland,153.230792,-27.500373 +2022,12,8,1,Queensland,153.455056,-27.39138 +2021,10,8,1,Queensland,153.522442,-27.426054 +2023,3,30,1,Queensland,153.271176,-27.57568 +2021,9,16,1,Queensland,153.252002,-27.501111 +2020,10,10,1,Queensland,153.251209,-27.5031 +2023,12,9,1,Queensland,153.250989,-27.511597 +2023,12,10,1,Queensland,153.270854,-27.575737 +2023,9,28,1,Queensland,153.403092,-27.493325 +2023,7,11,1,Queensland,153.198318,-27.612719 +2023,5,3,1,Queensland,153.234238,-27.500748 +2020,12,23,1,Queensland,153.272527,-27.539146 +2021,9,15,1,Queensland,153.249385,-27.490459 +2024,4,27,1,Queensland,153.250345,-27.511345 +2021,7,13,1,Queensland,153.247132,-27.490576 +2022,9,28,1,Queensland,153.200821,-27.50478 +2024,6,21,1,Queensland,153.253829,-27.511743 +2020,9,23,1,Queensland,153.250033,-27.502421 +2022,12,15,1,Queensland,153.274216,-27.538734 +2023,7,11,1,Queensland,153.24559,-27.48876 +2024,9,19,1,Queensland,153.271148,-27.575377 +2024,8,18,1,Queensland,153.271499,-27.575697 +2024,8,25,1,Queensland,153.271036,-27.575501 +2023,4,23,1,Queensland,153.271744,-27.575964 +2022,3,31,1,Queensland,153.282012,-27.531383 +2021,11,23,1,Queensland,153.246,-27.498069 +2023,12,13,1,Queensland,153.271326,-27.575889 +2024,1,19,1,Queensland,153.250192,-27.51141 +2023,9,19,1,Queensland,153.243988,-27.48941 +2021,1,30,1,Queensland,153.2451,-27.491051 +2024,5,27,1,Queensland,153.206894,-27.624491 +2023,11,10,1,Queensland,153.254342,-27.511801 +2024,7,16,1,Queensland,153.251784,-27.509325 +2024,1,14,1,Queensland,153.25008,-27.511336 +2023,10,25,1,Queensland,153.271047,-27.575356 +2023,11,14,1,Queensland,153.243759,-27.49137 +2023,12,29,1,Queensland,153.2538,-27.51176 +2024,8,7,1,Queensland,153.250906,-27.509881 +2024,2,17,1,Queensland,153.271669,-27.575489 +2024,5,27,1,Queensland,153.295044,-27.568708 +2023,8,22,1,Queensland,153.243607,-27.49136 +2023,2,19,1,Queensland,153.218234,-27.506455 +2023,12,1,1,Queensland,153.250777,-27.511764 +2024,4,13,1,Queensland,153.273171,-27.576022 +2022,10,14,1,Queensland,153.404632,-27.493395 +2024,8,8,1,Queensland,153.250967,-27.511656 +2022,4,18,1,Queensland,153.247148,-27.500965 +2020,12,9,1,Queensland,153.248352,-27.490498 +2023,6,14,1,Queensland,153.245558,-27.489732 +2024,9,28,1,Queensland,153.256011,-27.513612 +2023,4,1,1,Queensland,153.248099,-27.500392 +2024,3,20,1,Queensland,153.246903,-27.499107 +2024,3,4,1,Queensland,153.244919,-27.489622 +2023,8,13,1,Queensland,153.195175,-27.504225 +2023,8,13,1,Queensland,153.248167,-27.490325 +2024,1,30,1,Queensland,153.271197,-27.574596 +2024,9,25,1,Queensland,153.256079,-27.513999 +2024,1,10,1,Queensland,153.250159,-27.511398 +2022,9,14,1,Queensland,153.218156,-27.548648 +2024,4,8,1,Queensland,153.250097,-27.511415 +2024,6,1,1,Queensland,153.250312,-27.511301 +2024,7,18,1,Queensland,153.253647,-27.511729 +2024,5,26,1,Queensland,153.250382,-27.511353 +2024,8,5,1,Queensland,153.223675,-27.500096 +2022,3,20,1,Queensland,153.248098,-27.490377 +2024,1,14,1,Queensland,153.245465,-27.490569 +2024,3,24,1,Queensland,153.20114,-27.6134 +2022,12,22,1,Queensland,153.534648,-27.429167 +2024,1,22,1,Queensland,153.198578,-27.511377 +2021,9,26,1,Queensland,153.243645,-27.492997 +2024,9,13,1,Queensland,153.249968,-27.511316 +2024,4,29,1,Queensland,153.255189,-27.513031 +2024,6,23,1,Queensland,153.253595,-27.511746 +2023,1,24,1,Queensland,153.247849,-27.490641 +2023,5,31,1,Queensland,153.247046,-27.511448 +2024,11,13,1,Queensland,153.250265,-27.511394 +2021,4,10,1,Queensland,153.24278,-27.519738 +2024,8,5,1,Queensland,153.204407,-27.509716 +2023,10,6,1,Queensland,153.248605,-27.515361 +2024,2,24,1,Queensland,153.250163,-27.511466 +2023,11,21,1,Queensland,153.271315,-27.575432 +2023,12,9,1,Queensland,153.251199,-27.511643 +2023,11,27,1,Queensland,153.255987,-27.513725 +2023,8,13,1,Queensland,153.248154,-27.490295 +2024,11,13,1,Queensland,153.253838,-27.511766 +2022,3,9,1,Queensland,153.260157,-27.501664 +2024,5,19,1,Queensland,153.249928,-27.511421 +2023,6,29,1,Queensland,153.197769,-27.615204 +2024,5,6,1,Queensland,153.242691,-27.488892 +2023,8,13,1,Queensland,153.233856,-27.504988 +2021,10,8,1,Queensland,153.51911,-27.425389 +2024,5,21,1,Queensland,153.298386,-27.569441 +2024,2,18,1,Queensland,153.250089,-27.511278 +2024,10,11,1,Queensland,153.440386,-27.39845 +2023,5,9,1,Queensland,153.271648,-27.575661 +2020,12,21,1,Queensland,153.245255,-27.495815 +2023,12,27,1,Queensland,153.250269,-27.511374 +2022,4,10,1,Queensland,153.244847,-27.491053 +2021,9,1,1,Queensland,153.230677,-27.499031 +2023,4,3,1,Queensland,153.245514,-27.490005 +2021,8,18,1,Queensland,153.260252,-27.501723 +2023,11,28,1,Queensland,153.197784,-27.505033 +2022,8,31,1,Queensland,153.28185,-27.531765 +2023,6,7,1,Queensland,153.216782,-27.500442 +2023,1,26,1,Queensland,153.245011,-27.490777 +2021,2,10,1,Queensland,153.252035,-27.500895 +2023,8,8,1,Queensland,153.232697,-27.506868 +2024,1,24,1,Queensland,153.250763,-27.511618 +2021,8,18,1,Queensland,153.281357,-27.529986 +2023,11,10,1,Queensland,153.219274,-27.495405 +2021,10,2,1,Queensland,153.244665,-27.48975 +2022,10,14,1,Queensland,153.440934,-27.394989 +2024,1,7,1,Queensland,153.242121,-27.512913 +2024,1,28,1,Queensland,153.247577,-27.511477 +2021,10,1,1,Queensland,153.248763,-27.48958 +2023,9,5,1,Queensland,153.20433,-27.621201 +2023,2,12,1,Queensland,153.524223,-27.432069 +2023,11,10,1,Queensland,153.246022,-27.496485 +2022,11,7,1,Queensland,153.199554,-27.613146 +2024,2,19,1,Queensland,153.201438,-27.511281 +2024,4,25,1,Queensland,153.29513,-27.56863 +2024,5,26,1,Queensland,153.256049,-27.512721 +2024,1,20,1,Queensland,153.251915,-27.511603 +2022,2,23,1,Queensland,153.23892,-27.492476 +2023,10,30,1,Queensland,153.269974,-27.575163 +2024,1,3,1,Queensland,153.272098,-27.574576 +2022,10,17,1,Queensland,153.248345,-27.490697 +2023,4,2,1,Queensland,153.248575,-27.490534 +2022,11,5,1,Queensland,153.271272,-27.575729 +2021,9,9,1,Queensland,153.204989,-27.563602 +2021,1,31,1,Queensland,153.25259,-27.511703 +2024,5,23,1,Queensland,153.251709,-27.509285 +2021,4,15,1,Queensland,153.248538,-27.491019 +2022,3,30,1,Queensland,153.238069,-27.49177 +2022,10,9,1,Queensland,153.252322,-27.511622 +2020,12,27,1,Queensland,153.245308,-27.495846 +2023,6,29,1,Queensland,153.198227,-27.612724 +2023,8,13,1,Queensland,153.197083,-27.613775 +2024,5,25,1,Queensland,153.295237,-27.568663 +2021,10,8,1,Queensland,153.403522,-27.495033 +2024,2,2,1,Queensland,153.252102,-27.512167 +2024,9,26,1,Queensland,153.256017,-27.513804 +2024,6,18,1,Queensland,153.247568,-27.511464 +2024,6,1,1,Queensland,153.25034,-27.511301 +2023,11,25,1,Queensland,153.270983,-27.575604 +2023,4,26,1,Queensland,153.253993,-27.511812 +2024,10,4,1,Queensland,153.24577,-27.496401 +2024,10,11,1,Queensland,153.39915,-27.496253 +2022,12,14,1,Queensland,153.272507,-27.539131 +2024,1,6,1,Queensland,153.250221,-27.511371 +2024,7,29,1,Queensland,153.251862,-27.510075 +2023,12,9,1,Queensland,153.256338,-27.513834 +2024,4,25,1,Queensland,153.26763,-27.61862 +2023,10,20,1,Queensland,153.280337,-27.581552 +2024,1,20,1,Queensland,153.24992,-27.511561 +2024,7,8,1,Queensland,153.202179,-27.512442 +2024,1,22,1,Queensland,153.233994,-27.505861 +2024,5,28,1,Queensland,153.250358,-27.511335 +2023,8,31,1,Queensland,153.239825,-27.515846 +2023,10,25,1,Queensland,153.255401,-27.567985 +2023,11,21,1,Queensland,153.199203,-27.513699 +2023,6,2,1,Queensland,153.248662,-27.490638 +2020,10,30,1,Queensland,153.244327,-27.495796 +2021,4,28,1,Queensland,153.248573,-27.490725 +2024,7,15,1,Queensland,153.243408,-27.489111 +2023,11,19,1,Queensland,153.217644,-27.546518 +2023,12,13,1,Queensland,153.24995,-27.511918 +2023,12,1,1,Queensland,153.250659,-27.511767 +2021,11,23,1,Queensland,153.249174,-27.51147 +2021,11,17,1,Queensland,153.281915,-27.531058 +2023,11,13,1,Queensland,153.223922,-27.500289 +2024,11,13,1,Queensland,153.253854,-27.511759 +2024,5,24,1,Queensland,153.251691,-27.509272 +2023,8,1,1,Queensland,153.233307,-27.505215 +2023,6,9,1,Queensland,153.245461,-27.490713 +2024,2,7,1,Queensland,153.246719,-27.490417 +2024,1,9,1,Queensland,153.245723,-27.495749 +2023,10,10,1,Queensland,153.272227,-27.57431 +2023,4,25,1,Queensland,153.202408,-27.513723 +2024,9,29,1,Queensland,153.442659,-27.392372 +2020,10,12,1,Queensland,153.24775,-27.495945 +2022,2,8,1,Queensland,153.242218,-27.51456 +2024,1,17,1,Queensland,153.250104,-27.511384 +2023,11,7,1,Queensland,153.524261,-27.42795 +2022,2,13,1,Queensland,153.281904,-27.531678 +2023,12,3,1,Queensland,153.250859,-27.511763 +2023,10,31,1,Queensland,153.270897,-27.575581 +2023,8,22,1,Queensland,153.244995,-27.490944 +2024,6,14,1,Queensland,153.256822,-27.512881 +2024,1,2,1,Queensland,153.250313,-27.511265 +2024,7,22,1,Queensland,153.204132,-27.50922 +2023,11,28,1,Queensland,153.24621,-27.49565 +2024,11,11,1,Queensland,153.198853,-27.514212 +2021,4,27,1,Queensland,153.248231,-27.490859 +2023,11,26,1,Queensland,153.270961,-27.575604 +2022,11,2,1,Queensland,153.255066,-27.527807 +2023,4,8,1,Queensland,153.245,-27.490478 +2024,5,29,1,Queensland,153.248373,-27.511449 +2023,6,13,1,Queensland,153.408966,-27.650708 +2024,3,29,1,Queensland,153.251969,-27.514483 +2022,8,9,1,Queensland,153.245429,-27.489669 +2024,3,5,1,Queensland,153.250232,-27.511384 +2024,1,3,1,Queensland,153.253806,-27.511731 +2024,5,25,1,Queensland,153.241968,-27.514492 +2023,5,9,1,Queensland,153.251209,-27.511663 +2023,7,25,1,Queensland,153.247986,-27.490381 +2020,11,28,1,Queensland,153.251638,-27.503633 +2024,7,21,1,Queensland,153.251891,-27.509318 +2024,10,19,1,Queensland,153.253819,-27.511834 +2023,10,25,1,Queensland,153.269931,-27.575242 +2024,1,30,1,Queensland,153.250238,-27.51147 +2022,10,12,1,Queensland,153.271042,-27.539661 +2021,9,6,1,Queensland,153.273643,-27.534807 +2023,9,19,1,Queensland,153.244385,-27.492548 +2021,4,13,1,Queensland,153.244922,-27.491116 +2024,2,20,1,Queensland,153.251906,-27.514583 +2024,8,26,1,Queensland,153.222458,-27.515429 +2024,6,10,1,Queensland,153.199356,-27.513639 +2023,11,1,1,Queensland,153.202316,-27.513174 +2023,12,3,1,Queensland,153.250254,-27.511414 +2024,8,22,1,Queensland,153.250299,-27.511259 +2022,1,14,1,Queensland,153.245952,-27.497872 +2023,11,6,1,Queensland,153.271015,-27.57547 +2023,3,10,1,Queensland,153.226248,-27.562613 +2024,7,15,1,Queensland,153.247978,-27.511503 +2023,3,21,1,Queensland,153.24471,-27.491172 +2022,8,22,1,Queensland,153.246817,-27.490464 +2021,8,15,1,Queensland,153.25016,-27.511707 +2022,11,3,1,Queensland,153.199005,-27.613218 +2024,4,12,1,Queensland,153.241211,-27.515208 +2023,12,10,1,Queensland,153.251023,-27.511817 +2021,2,13,1,Queensland,153.523748,-27.431824 +2023,4,3,1,Queensland,153.247726,-27.490822 +2023,9,14,1,Queensland,153.239821,-27.515392 +2024,2,26,1,Queensland,153.202011,-27.512377 +2022,5,15,1,Queensland,153.44181,-27.394025 +2021,5,20,1,Queensland,153.252279,-27.501109 +2020,12,30,1,Queensland,153.245759,-27.496453 +2024,9,1,1,Queensland,153.248056,-27.51118 +2023,12,16,1,Queensland,153.250161,-27.511637 +2022,8,30,1,Queensland,153.232483,-27.500586 +2024,7,22,1,Queensland,153.252521,-27.511679 +2023,9,1,1,Queensland,153.248625,-27.490803 +2020,12,23,1,Queensland,153.272281,-27.554414 +2022,10,14,1,Queensland,153.439961,-27.398382 +2021,10,9,1,Queensland,153.405375,-27.494375 +2024,4,11,1,Queensland,153.272404,-27.576222 +2024,7,29,1,Queensland,153.251476,-27.509423 +2024,1,13,1,Queensland,153.271369,-27.57315 +2024,3,17,1,Queensland,153.250239,-27.511476 +2024,5,27,1,Queensland,153.25007,-27.511362 +2024,6,3,1,Queensland,153.245987,-27.489969 +2023,10,12,1,Queensland,153.250958,-27.500942 +2020,12,25,1,Queensland,153.272442,-27.554404 +2024,6,17,1,Queensland,153.271905,-27.576745 +2022,8,30,1,Queensland,153.245422,-27.499077 +2021,10,8,1,Queensland,153.439028,-27.401181 +2024,5,21,1,Queensland,153.24559,-27.489557 +2024,5,29,1,Queensland,153.272012,-27.576459 +2022,1,3,1,Queensland,153.242927,-27.538302 +2023,1,24,1,Queensland,153.245911,-27.48999 +2023,11,28,1,Queensland,153.251065,-27.511605 +2022,2,9,1,Queensland,153.24789,-27.526894 +2022,8,9,1,Queensland,153.24141,-27.513747 +2021,9,30,1,Queensland,153.248237,-27.490552 +2020,11,23,1,Queensland,153.24813,-27.490514 +2023,3,23,1,Queensland,153.271111,-27.57625 +2023,4,9,1,Queensland,153.248474,-27.490817 +2023,12,27,1,Queensland,153.272055,-27.574976 +2023,7,5,1,Queensland,153.244962,-27.490875 +2024,3,5,1,Queensland,153.195114,-27.514368 +2024,10,20,1,Queensland,153.27683,-27.526522 +2024,7,29,1,Queensland,153.297485,-27.567314 +2024,1,11,1,Queensland,153.230531,-27.499847 +2024,6,22,1,Queensland,153.25366,-27.511641 +2023,11,28,1,Queensland,153.232391,-27.50783 +2021,1,6,1,Queensland,153.242176,-27.512458 +2024,11,4,1,Queensland,153.250534,-27.511658 +2023,9,16,1,Queensland,153.19487,-27.507368 +2024,7,26,1,Queensland,153.250761,-27.511605 +2024,9,9,1,Queensland,153.217834,-27.518948 +2022,2,5,1,Queensland,153.249536,-27.501839 +2024,7,12,1,Queensland,153.250103,-27.511539 +2022,11,6,1,Queensland,153.271202,-27.576002 +2022,4,8,1,Queensland,153.248516,-27.490737 +2020,11,9,1,Queensland,153.250337,-27.502507 +2024,11,4,1,Queensland,153.198608,-27.613066 +2023,10,6,1,Queensland,153.218798,-27.49495 +2023,7,19,1,Queensland,153.249536,-27.511374 +2023,2,22,1,Queensland,153.245102,-27.489698 +2021,5,9,1,Queensland,153.252401,-27.501187 +2023,2,12,1,Queensland,153.524192,-27.432046 +2021,9,2,1,Queensland,153.248722,-27.490173 +2024,3,13,1,Queensland,153.245346,-27.489878 +2024,7,14,1,Queensland,153.251834,-27.50934 +2023,10,22,1,Queensland,153.250032,-27.511668 +2024,11,15,1,Queensland,153.272275,-27.574867 +2023,8,19,1,Queensland,153.279146,-27.525472 +2023,12,6,1,Queensland,153.251492,-27.511623 +2024,7,30,1,Queensland,153.2713,-27.575196 +2020,11,26,1,Queensland,153.246413,-27.497595 +2022,4,10,1,Queensland,153.247036,-27.490767 +2023,8,18,1,Queensland,153.279266,-27.525486 +2023,1,19,1,Queensland,153.268829,-27.546358 +2024,10,26,1,Queensland,153.226821,-27.503263 +2024,4,28,1,Queensland,153.19841,-27.612909 +2023,2,22,1,Queensland,153.245422,-27.490114 +2021,1,24,1,Queensland,153.251205,-27.502817 +2023,8,1,1,Queensland,153.197769,-27.612509 +2024,1,7,1,Queensland,153.250279,-27.511651 +2023,10,23,1,Queensland,153.234009,-27.504042 +2020,10,28,1,Queensland,153.247994,-27.49062 +2024,6,10,1,Queensland,153.256153,-27.514428 +2024,4,9,1,Queensland,153.24189,-27.514635 +2024,5,31,1,Queensland,153.256112,-27.51376 +2022,8,5,1,Queensland,153.278684,-27.534932 +2023,4,18,1,Queensland,153.245468,-27.489561 +2024,10,27,1,Queensland,153.199356,-27.61375 +2024,2,21,1,Queensland,153.250168,-27.511465 +2023,5,3,1,Queensland,153.198563,-27.504433 +2022,11,14,1,Queensland,153.253283,-27.496089 +2024,8,12,1,Queensland,153.23378,-27.505907 +2022,10,14,1,Queensland,153.441526,-27.402917 +2023,5,26,1,Queensland,153.272699,-27.57409 +2023,11,22,1,Queensland,153.244732,-27.491625 +2023,4,4,1,Queensland,153.244856,-27.491391 +2022,8,7,1,Queensland,153.281668,-27.531257 +2023,5,19,1,Queensland,153.225415,-27.502928 +2024,4,2,1,Queensland,153.249981,-27.511366 +2022,9,5,1,Queensland,153.282065,-27.531787 +2023,7,25,1,Queensland,153.248189,-27.490428 +2024,5,8,1,Queensland,153.244737,-27.491042 +2022,1,7,1,Queensland,153.270954,-27.575003 +2024,5,10,1,Queensland,153.248575,-27.511466 +2023,11,7,1,Queensland,153.235092,-27.501314 +2024,6,8,1,Queensland,153.248658,-27.51158 +2023,12,10,1,Queensland,153.250184,-27.51154 +2024,9,15,1,Queensland,153.249902,-27.511413 +2021,8,8,1,Queensland,153.244847,-27.49087 +2023,12,4,1,Queensland,153.255398,-27.513115 +2023,12,26,1,Queensland,153.206325,-27.496606 +2024,5,22,1,Queensland,153.248615,-27.511605 +2022,8,15,1,Queensland,153.20166,-27.505302 +2024,10,3,1,Queensland,153.446423,-27.395841 +2024,5,21,1,Queensland,153.255895,-27.51402 +2023,4,10,1,Queensland,153.248455,-27.490764 +2024,1,21,1,Queensland,153.252309,-27.511717 +2024,1,22,1,Queensland,153.194778,-27.514791 +2024,7,30,1,Queensland,153.251025,-27.509204 +2023,1,24,1,Queensland,153.247131,-27.490431 +2024,4,22,1,Queensland,153.243759,-27.491342 +2023,9,5,1,Queensland,153.243668,-27.491362 +2022,10,14,1,Queensland,153.439016,-27.395565 +2024,5,17,1,Queensland,153.247189,-27.511461 +2024,7,3,1,Queensland,153.295135,-27.56875 +2024,2,18,1,Queensland,153.231598,-27.502319 +2023,7,25,1,Queensland,153.248322,-27.489899 +2022,12,1,1,Queensland,153.277355,-27.525417 +2022,8,2,1,Queensland,153.225642,-27.503506 +2024,5,21,1,Queensland,153.29512,-27.568626 +2021,9,7,1,Queensland,153.26194,-27.519349 +2023,12,3,1,Queensland,153.270875,-27.575566 +2024,6,13,1,Queensland,153.271884,-27.576745 +2024,1,22,1,Queensland,153.251881,-27.514459 +2022,10,14,1,Queensland,153.438177,-27.400946 +2023,8,1,1,Queensland,153.440654,-27.398868 +2021,8,8,1,Queensland,153.231743,-27.533558 +2021,10,8,1,Queensland,153.4385,-27.395513 +2024,5,2,1,Queensland,153.273386,-27.57625 +2024,1,17,1,Queensland,153.271744,-27.574138 +2023,1,29,1,Queensland,153.248173,-27.511485 +2024,8,7,1,Queensland,153.23,-27.52 +2021,7,13,1,Queensland,153.249106,-27.489739 +2023,11,20,1,Queensland,153.268919,-27.540199 +2023,10,26,1,Queensland,153.254331,-27.51183 +2023,10,29,1,Queensland,153.253624,-27.511727 +2024,7,21,1,Queensland,153.251539,-27.511695 +2024,1,29,1,Queensland,153.252562,-27.511635 +2024,6,27,1,Queensland,153.256118,-27.54868 +2024,4,26,1,Queensland,153.250156,-27.511446 +2023,12,9,1,Queensland,153.27094,-27.575699 +2024,6,24,1,Queensland,153.201981,-27.508234 +2023,8,1,1,Queensland,153.197784,-27.615105 +2022,12,2,1,Queensland,153.519223,-27.42493 +2021,8,27,1,Queensland,153.250532,-27.511596 +2024,2,21,1,Queensland,153.27094,-27.575451 +2023,11,13,1,Queensland,153.225678,-27.503753 +2024,5,30,1,Queensland,153.24861,-27.511734 +2023,5,15,1,Queensland,153.272313,-27.574348 +2021,1,30,1,Queensland,153.247873,-27.490875 +2023,8,8,1,Queensland,153.245651,-27.489721 +2024,2,3,1,Queensland,153.25023,-27.511403 +2024,3,13,1,Queensland,153.203003,-27.512789 +2024,10,3,1,Queensland,153.250903,-27.511615 +2023,11,19,1,Queensland,153.253849,-27.511709 +2024,6,7,1,Queensland,153.250326,-27.511282 +2023,8,3,1,Queensland,153.281918,-27.525579 +2023,10,9,1,Queensland,153.198273,-27.510561 +2024,10,21,1,Queensland,153.225235,-27.505575 +2024,9,16,1,Queensland,153.20195,-27.50803 +2021,10,8,1,Queensland,153.4389,-27.40005 +2023,10,8,1,Queensland,153.253376,-27.493978 +2023,3,28,1,Queensland,153.244742,-27.491347 +2020,10,26,1,Queensland,153.248173,-27.490555 +2023,6,6,1,Queensland,153.2513,-27.511691 +2024,8,24,1,Queensland,153.251067,-27.509106 +2022,10,14,1,Queensland,153.40181,-27.49796 +2024,1,25,1,Queensland,153.251921,-27.514651 +2024,4,13,1,Queensland,153.25027,-27.511254 +2021,7,25,1,Queensland,153.231743,-27.533558 +2022,8,4,1,Queensland,153.219818,-27.611816 +2020,9,26,1,Queensland,153.250628,-27.503188 +2023,5,2,1,Queensland,153.251606,-27.511646 +2024,1,7,1,Queensland,153.272012,-27.574767 +2024,3,4,1,Queensland,153.271927,-27.574919 +2024,1,23,1,Queensland,153.225422,-27.502602 +2023,9,2,1,Queensland,153.239814,-27.51537 +2022,4,1,1,Queensland,153.248924,-27.490602 +2024,7,15,1,Queensland,153.272067,-27.576764 +2024,5,22,1,Queensland,153.207108,-27.622965 +2023,10,3,1,Queensland,153.196503,-27.50976 +2024,9,23,1,Queensland,153.244407,-27.488792 +2023,11,26,1,Queensland,153.270274,-27.575394 +2023,11,21,1,Queensland,153.271433,-27.575242 +2022,10,14,1,Queensland,153.439072,-27.395709 +2022,1,28,1,Queensland,153.258805,-27.54682 +2024,6,10,1,Queensland,153.20311,-27.509058 +2021,6,13,1,Queensland,153.28306,-27.525918 +2022,10,14,1,Queensland,153.440817,-27.39698 +2020,8,31,1,Queensland,153.21795,-27.546747 +2021,12,22,1,Queensland,153.258344,-27.547261 +2024,2,29,1,Queensland,153.271068,-27.575566 +2024,7,31,1,Queensland,153.2714,-27.575311 +2020,9,15,1,Queensland,153.247594,-27.490813 +2023,5,5,1,Queensland,153.27139,-27.575014 +2023,8,26,1,Queensland,153.250091,-27.511602 +2022,8,6,1,Queensland,153.244042,-27.48955 +2023,3,7,1,Queensland,153.268387,-27.546328 +2023,6,14,1,Queensland,153.198112,-27.615006 +2023,1,22,1,Queensland,153.225487,-27.503074 +2022,8,9,1,Queensland,153.250962,-27.535396 +2023,3,3,1,Queensland,153.221596,-27.500876 +2023,10,3,1,Queensland,153.200241,-27.51078 +2022,11,17,1,Queensland,153.241875,-27.514513 +2022,10,13,1,Queensland,153.261963,-27.546856 +2023,2,15,1,Queensland,153.27058,-27.53534 +2024,7,8,1,Queensland,153.233444,-27.505064 +2024,9,7,1,Queensland,153.249932,-27.511245 +2023,4,3,1,Queensland,153.253809,-27.495028 +2024,7,28,1,Queensland,153.271148,-27.575377 +2021,7,29,1,Queensland,153.284411,-27.52534 +2023,9,29,1,Queensland,153.529577,-27.429261 +2022,12,1,1,Queensland,153.248044,-27.490519 +2022,11,19,1,Queensland,153.522001,-27.426151 +2022,11,2,1,Queensland,153.247926,-27.490643 +2022,12,1,1,Queensland,153.244994,-27.4896 +2023,5,16,1,Queensland,153.247055,-27.490387 +2022,12,7,1,Queensland,153.204727,-27.620499 +2024,8,24,1,Queensland,153.271036,-27.575501 +2023,10,14,1,Queensland,153.222947,-27.507244 +2024,7,4,1,Queensland,153.223152,-27.499429 +2024,9,9,1,Queensland,153.204971,-27.617893 +2024,10,11,1,Queensland,153.450864,-27.407348 +2022,10,14,1,Queensland,153.399608,-27.497968 +2023,11,25,1,Queensland,153.270961,-27.575623 +2024,3,24,1,Queensland,153.19827,-27.62269 +2024,5,17,1,Queensland,153.272002,-27.576611 +2023,12,19,1,Queensland,153.249989,-27.51155 +2024,3,11,1,Queensland,153.19747,-27.61276 +2023,10,4,1,Queensland,153.205459,-27.490323 +2021,10,30,1,Queensland,153.27925,-27.536392 +2024,4,22,1,Queensland,153.20171,-27.50808 +2022,8,3,1,Queensland,153.198729,-27.505043 +2024,3,9,1,Queensland,153.270961,-27.575585 +2021,10,9,1,Queensland,153.526267,-27.430989 +2024,7,12,1,Queensland,153.247209,-27.511424 +2024,5,22,1,Queensland,153.2516,-27.509096 +2022,10,6,1,Queensland,153.281958,-27.532632 +2024,2,27,1,Queensland,153.272141,-27.574424 +2023,6,29,1,Queensland,153.197876,-27.50625 +2024,9,28,1,Queensland,153.444603,-27.39601 +2022,9,29,1,Queensland,153.281937,-27.531896 +2024,2,26,1,Queensland,153.202332,-27.504461 +2023,3,22,1,Queensland,153.271042,-27.539635 +2022,5,15,1,Queensland,153.441464,-27.394877 +2023,12,9,1,Queensland,153.249503,-27.511243 +2021,10,16,1,Queensland,153.249691,-27.502655 +2023,8,8,1,Queensland,153.251872,-27.511703 +2022,12,15,1,Queensland,153.268707,-27.546385 +2024,8,19,1,Queensland,153.217142,-27.548482 +2020,11,2,1,Queensland,153.250551,-27.502983 +2021,9,4,1,Queensland,153.439981,-27.396785 +2024,2,8,1,Queensland,153.251991,-27.51477 +2024,4,28,1,Queensland,153.202835,-27.512978 +2020,9,28,1,Queensland,153.251019,-27.503398 +2020,11,17,1,Queensland,153.251214,-27.502931 +2024,9,30,1,Queensland,153.202698,-27.513046 +2023,11,7,1,Queensland,153.197921,-27.504959 +2022,10,13,1,Queensland,153.206787,-27.625097 +2022,3,25,1,Queensland,153.249042,-27.490185 +2024,2,17,1,Queensland,153.271176,-27.57587 +2024,10,8,1,Queensland,153.250527,-27.51158 +2023,4,3,1,Queensland,153.26886,-27.546545 +2024,7,14,1,Queensland,153.247801,-27.51143 +2020,9,9,1,Queensland,153.252211,-27.501035 +2023,11,19,1,Queensland,153.219078,-27.495243 +2023,3,23,1,Queensland,153.249247,-27.490332 +2024,1,8,1,Queensland,153.250781,-27.511612 +2024,2,20,1,Queensland,153.249952,-27.511425 +2021,3,30,1,Queensland,153.24872,-27.490262 +2024,2,26,1,Queensland,153.197296,-27.505367 +2023,7,6,1,Queensland,153.197113,-27.505304 +2024,1,30,1,Queensland,153.247003,-27.490148 +2020,12,19,1,Queensland,153.272377,-27.554347 +2023,6,29,1,Queensland,153.244837,-27.492331 +2022,11,2,1,Queensland,153.243973,-27.488796 +2023,3,9,1,Queensland,153.201828,-27.512236 +2022,10,13,1,Queensland,153.245193,-27.489132 +2023,11,16,1,Queensland,153.408859,-27.485473 +2020,12,18,1,Queensland,153.274126,-27.551484 +2024,6,6,1,Queensland,153.250372,-27.511287 +2023,11,28,1,Queensland,153.200241,-27.514021 +2020,11,23,1,Queensland,153.245578,-27.496006 +2024,6,16,1,Queensland,153.247183,-27.511405 +2024,1,14,1,Queensland,153.271497,-27.573416 +2021,1,15,1,Queensland,153.246531,-27.498305 +2024,1,15,1,Queensland,153.25008,-27.511336 +2024,3,6,1,Queensland,153.250064,-27.511403 +2021,10,8,1,Queensland,153.519181,-27.425452 +2021,12,17,1,Queensland,153.25563,-27.514371 +2023,2,25,1,Queensland,153.223609,-27.498233 +2023,6,22,1,Queensland,153.197433,-27.614483 +2022,10,11,1,Queensland,153.217982,-27.547476 +2024,1,15,1,Queensland,153.253602,-27.511782 +2024,4,29,1,Queensland,153.249908,-27.511503 +2024,6,1,1,Queensland,153.225489,-27.49852 +2021,8,29,1,Queensland,153.252537,-27.501289 +2023,9,26,1,Queensland,153.231781,-27.508011 +2024,8,14,1,Queensland,153.306122,-27.564442 +2023,3,5,1,Queensland,153.248787,-27.490587 +2023,8,6,1,Queensland,153.439904,-27.393212 +2023,10,17,1,Queensland,153.27109,-27.575585 +2023,1,24,1,Queensland,153.244956,-27.490913 +2023,10,5,1,Queensland,153.239807,-27.515357 +2024,6,23,1,Queensland,153.249677,-27.511568 +2022,8,1,1,Queensland,153.2485,-27.490131 +2023,6,14,1,Queensland,153.245268,-27.490174 +2023,10,17,1,Queensland,153.245021,-27.490696 +2021,4,10,1,Queensland,153.25959,-27.520257 +2021,5,24,1,Queensland,153.248602,-27.490181 +2023,7,21,1,Queensland,153.238576,-27.482867 +2023,2,22,1,Queensland,153.247726,-27.490444 +2022,10,20,1,Queensland,153.206636,-27.620802 +2024,5,20,1,Queensland,153.249995,-27.511298 +2020,12,17,1,Queensland,153.250053,-27.502423 +2023,5,14,1,Queensland,153.272356,-27.574424 +2023,4,9,1,Queensland,153.270897,-27.575604 +2024,10,13,1,Queensland,153.253664,-27.51169 +2023,12,8,1,Queensland,153.255539,-27.51225 +2022,10,16,1,Queensland,153.201172,-27.506016 +2023,8,1,1,Queensland,153.246902,-27.490124 +2024,9,12,1,Queensland,153.249943,-27.511236 +2024,7,8,1,Queensland,153.297165,-27.56736 +2021,10,2,1,Queensland,153.245287,-27.489911 +2022,12,2,1,Queensland,153.204269,-27.621217 +2023,12,7,1,Queensland,153.203156,-27.510918 +2023,12,12,1,Queensland,153.225528,-27.503691 +2023,1,5,1,Queensland,153.272156,-27.546566 +2022,11,13,1,Queensland,153.530745,-27.428984 +2023,11,24,1,Queensland,153.245614,-27.490752 +2022,3,22,1,Queensland,153.270473,-27.574912 +2023,9,22,1,Queensland,153.271358,-27.574975 +2024,7,17,1,Queensland,153.272547,-27.576387 +2020,10,20,1,Queensland,153.248841,-27.489586 +2021,12,1,1,Queensland,153.252676,-27.551341 +2024,1,3,1,Queensland,153.242174,-27.513191 +2022,1,28,1,Queensland,153.188939,-27.544236 +2022,12,20,1,Queensland,153.270336,-27.546594 +2024,9,10,1,Queensland,153.252735,-27.493807 +2024,10,2,1,Queensland,153.444784,-27.39616 +2022,11,19,1,Queensland,153.205013,-27.549659 +2024,2,18,1,Queensland,153.196701,-27.505056 +2023,2,15,1,Queensland,153.202663,-27.627955 +2022,4,9,1,Queensland,153.244986,-27.490977 +2023,8,29,1,Queensland,153.19368,-27.503622 +2020,9,2,1,Queensland,153.247954,-27.490734 +2024,7,19,1,Queensland,153.069158,-27.479245 +2020,12,4,1,Queensland,153.300131,-27.569191 +2024,7,26,1,Queensland,153.255953,-27.513917 +2023,8,23,1,Queensland,153.251359,-27.511676 +2022,5,5,1,Queensland,153.200151,-27.492721 +2022,11,26,1,Queensland,153.217714,-27.494397 +2021,4,16,1,Queensland,153.248173,-27.490878 +2024,6,29,1,Queensland,153.25033,-27.511382 +2023,11,22,1,Queensland,153.244204,-27.49172 +2022,3,12,1,Queensland,153.245094,-27.490038 +2023,5,26,1,Queensland,153.272766,-27.5298 +2022,10,19,1,Queensland,153.27063,-27.539585 +2021,9,27,1,Queensland,153.273729,-27.534775 +2024,9,2,1,Queensland,153.210114,-27.617191 +2024,1,2,1,Queensland,153.250748,-27.51167 +2020,11,14,1,Queensland,153.248095,-27.490659 +2023,6,25,1,Queensland,153.245635,-27.490104 +2023,3,9,1,Queensland,153.524233,-27.432067 +2024,6,5,1,Queensland,153.273064,-27.577506 +2023,2,15,1,Queensland,153.250068,-27.511559 +2021,11,14,1,Queensland,153.245032,-27.491018 +2023,11,7,1,Queensland,153.182233,-27.53829 +2023,1,13,1,Queensland,153.248119,-27.490947 +2023,11,19,1,Queensland,153.271283,-27.574767 +2021,10,8,1,Queensland,153.51912,-27.427402 +2024,3,8,1,Queensland,153.223837,-27.500215 +2024,6,6,1,Queensland,153.255987,-27.514064 +2024,1,12,1,Queensland,153.295794,-27.611312 +2021,10,18,1,Queensland,153.278439,-27.536644 +2023,6,21,1,Queensland,153.242787,-27.513428 +2024,9,17,1,Queensland,153.196426,-27.514484 +2023,11,1,1,Queensland,153.2453,-27.491142 +2024,6,3,1,Queensland,153.294586,-27.568825 +2022,10,23,1,Queensland,153.437988,-27.399004 +2023,5,14,1,Queensland,153.248905,-27.490464 +2024,7,19,1,Queensland,153.251437,-27.509372 +2024,10,11,1,Queensland,153.407057,-27.502611 +2020,10,6,1,Queensland,153.252625,-27.503892 +2024,10,14,1,Queensland,153.290131,-27.570223 +2024,6,16,1,Queensland,153.25426,-27.511973 +2024,7,22,1,Queensland,153.298676,-27.56963 +2022,8,22,1,Queensland,153.282087,-27.531696 +2024,2,26,1,Queensland,153.250278,-27.511411 +2020,10,1,1,Queensland,153.251575,-27.5032 +2024,3,28,1,Queensland,153.241856,-27.514501 +2022,5,4,1,Queensland,153.248862,-27.490736 +2024,3,19,1,Queensland,153.24529,-27.4898 +2024,5,31,1,Queensland,153.248659,-27.511499 +2024,11,6,1,Queensland,153.235239,-27.512043 +2024,1,8,1,Queensland,153.271358,-27.575812 +2024,4,14,1,Queensland,153.250341,-27.511416 +2023,1,10,1,Queensland,153.223137,-27.499726 +2023,12,31,1,Queensland,153.249821,-27.511851 +2024,5,4,1,Queensland,153.27345,-27.576041 +2024,6,14,1,Queensland,153.247558,-27.511424 +2024,5,31,1,Queensland,153.249967,-27.511352 +2024,4,28,1,Queensland,153.230682,-27.501377 +2023,10,23,1,Queensland,153.23233,-27.50773 +2023,11,7,1,Queensland,153.202545,-27.513124 +2022,2,16,1,Queensland,153.247039,-27.490632 +2021,4,12,1,Queensland,153.252658,-27.50135 +2024,2,29,1,Queensland,153.250181,-27.511452 +2024,6,11,1,Queensland,153.250274,-27.511577 +2024,2,10,1,Queensland,153.250392,-27.511436 +2022,8,7,1,Queensland,153.248613,-27.491023 +2024,3,1,1,Queensland,153.250174,-27.511242 +2021,10,9,1,Queensland,153.441822,-27.395319 +2022,3,22,1,Queensland,153.281894,-27.531348 +2024,6,7,1,Queensland,153.271927,-27.576726 +2024,7,21,1,Queensland,153.251891,-27.509318 +2024,4,1,1,Queensland,153.198471,-27.613125 +2022,10,14,1,Queensland,153.4426,-27.397137 +2021,5,2,1,Queensland,153.247817,-27.490998 +2022,11,7,1,Queensland,153.274228,-27.539251 +2023,11,7,1,Queensland,153.27153,-27.575204 +2021,3,4,1,Queensland,153.24622,-27.497573 +2021,6,21,1,Queensland,153.252947,-27.493825 +2023,9,16,1,Queensland,153.197144,-27.612942 +2021,7,20,1,Queensland,153.231743,-27.533558 +2023,8,6,1,Queensland,153.278412,-27.536877 +2020,10,12,1,Queensland,153.250956,-27.503065 +2022,3,27,1,Queensland,153.282077,-27.533064 +2023,10,8,1,Queensland,153.250917,-27.511695 +2023,9,23,1,Queensland,153.239831,-27.515358 +2023,8,16,1,Queensland,153.249305,-27.490015 +2023,9,12,1,Queensland,153.250903,-27.511649 +2021,10,4,1,Queensland,153.253887,-27.588191 +2022,10,19,1,Queensland,153.248306,-27.510544 +2024,7,8,1,Queensland,153.197983,-27.513535 +2022,10,13,1,Queensland,153.255371,-27.533566 +2023,4,13,1,Queensland,153.24909,-27.490311 +2023,10,31,1,Queensland,153.270746,-27.575619 +2020,9,4,1,Queensland,153.246711,-27.498009 +2024,10,25,1,Queensland,153.245051,-27.553368 +2021,7,1,1,Queensland,153.248194,-27.490904 +2023,11,3,1,Queensland,153.270757,-27.575584 +2021,7,18,1,Queensland,153.249381,-27.511355 +2024,2,14,1,Queensland,153.198227,-27.612848 +2022,10,28,1,Queensland,153.271149,-27.55322 +2024,5,13,1,Queensland,153.197922,-27.613277 +2024,7,22,1,Queensland,153.24295,-27.488617 +2021,10,9,1,Queensland,153.444846,-27.395648 +2024,9,10,1,Queensland,153.282044,-27.629946 +2024,1,30,1,Queensland,153.244967,-27.489878 +2024,8,3,1,Queensland,153.251067,-27.509176 +2023,11,29,1,Queensland,153.247955,-27.490183 +2021,9,26,1,Queensland,153.205528,-27.498334 +2020,10,21,1,Queensland,153.248858,-27.48954 +2022,12,15,1,Queensland,153.244858,-27.497711 +2024,1,25,1,Queensland,153.251829,-27.51462 +2024,8,30,1,Queensland,153.250363,-27.511281 +2024,3,11,1,Queensland,153.271047,-27.57547 +2024,2,28,1,Queensland,153.250344,-27.511343 +2020,12,7,1,Queensland,153.24504,-27.491126 +2023,8,29,1,Queensland,153.201279,-27.506208 +2024,7,22,1,Queensland,153.20285,-27.511311 +2024,4,9,1,Queensland,153.250179,-27.511287 +2023,4,4,1,Queensland,153.232005,-27.50831 +2023,7,2,1,Queensland,153.245686,-27.496185 +2023,10,8,1,Queensland,153.250917,-27.511695 +2022,3,25,1,Queensland,153.228768,-27.546248 +2022,9,15,1,Queensland,153.226517,-27.606987 +2024,2,20,1,Queensland,153.250921,-27.511675 +2022,3,10,1,Queensland,153.278148,-27.552473 +2020,9,22,1,Queensland,153.251974,-27.500941 +2023,12,4,1,Queensland,153.250952,-27.511768 +2024,7,26,1,Queensland,153.251962,-27.509333 +2022,12,14,1,Queensland,153.270264,-27.545547 +2024,5,30,1,Queensland,153.271819,-27.576707 +2022,8,4,1,Queensland,153.269989,-27.545322 +2024,8,20,1,Queensland,153.251561,-27.509819 +2023,12,29,1,Queensland,153.250311,-27.511379 +2024,2,9,1,Queensland,153.271841,-27.575356 +2024,3,16,1,Queensland,153.242003,-27.514562 +2023,10,22,1,Queensland,153.244812,-27.489494 +2023,8,2,1,Queensland,153.248589,-27.490703 +2024,7,22,1,Queensland,153.200211,-27.51392 +2024,8,19,1,Queensland,153.20256,-27.507339 +2023,9,23,1,Queensland,153.271358,-27.575051 +2023,4,26,1,Queensland,153.27139,-27.575642 +2024,1,30,1,Queensland,153.20283,-27.511302 +2023,6,5,1,Queensland,153.202194,-27.505449 +2024,5,16,1,Queensland,153.247232,-27.511333 +2024,3,20,1,Queensland,153.276132,-27.535893 +2024,7,17,1,Queensland,153.253659,-27.51171 +2023,4,14,1,Queensland,153.216763,-27.500435 +2023,9,16,1,Queensland,153.203094,-27.513794 +2020,10,9,1,Queensland,153.248001,-27.490618 +2021,7,23,1,Queensland,153.249074,-27.490339 +2024,6,3,1,Queensland,153.297882,-27.569315 +2021,9,28,1,Queensland,153.248631,-27.490077 +2024,4,8,1,Queensland,153.19764,-27.61248 +2023,6,12,1,Queensland,153.201248,-27.511444 +2024,9,3,1,Queensland,153.271682,-27.574292 +2022,10,14,1,Queensland,153.39913,-27.497204 +2021,3,1,1,Queensland,153.252043,-27.500925 +2023,10,20,1,Queensland,153.285797,-27.523469 +2023,10,25,1,Queensland,153.225525,-27.504014 +2024,7,22,1,Queensland,153.250433,-27.511743 +2024,9,9,1,Queensland,153.298874,-27.569696 +2024,5,20,1,Queensland,153.255654,-27.51218 +2023,9,27,1,Queensland,153.225861,-27.498581 +2024,4,28,1,Queensland,153.25005,-27.51129 +2022,8,29,1,Queensland,153.248677,-27.490618 +2022,10,13,1,Queensland,153.198511,-27.615119 +2024,7,27,1,Queensland,153.275435,-27.53672 +2020,10,1,1,Queensland,153.255753,-27.494653 +2024,6,7,1,Queensland,153.2505,-27.511641 +2021,5,4,1,Queensland,153.44,-27.4 +2023,11,19,1,Queensland,153.248519,-27.490779 +2024,5,30,1,Queensland,153.253583,-27.511692 +2021,11,7,1,Queensland,153.246659,-27.498606 +2022,10,30,1,Queensland,153.24946,-27.511262 +2024,11,4,1,Queensland,153.24695,-27.49009 +2024,10,30,1,Queensland,153.24792,-27.510066 +2024,6,3,1,Queensland,153.23378,-27.505726 +2022,11,14,1,Queensland,153.271369,-27.576003 +2021,4,27,1,Queensland,153.31895,-27.697002 +2024,9,24,1,Queensland,153.199738,-27.613548 +2022,4,16,1,Queensland,153.249134,-27.490179 +2024,6,3,1,Queensland,153.296036,-27.567532 +2023,11,21,1,Queensland,153.202957,-27.512882 +2024,1,22,1,Queensland,153.281937,-27.525511 +2022,11,14,1,Queensland,153.253271,-27.496183 +2024,4,27,1,Queensland,153.273236,-27.576209 +2021,7,1,1,Queensland,153.248377,-27.489679 +2024,8,18,1,Queensland,153.441511,-27.394858 +2024,7,14,1,Queensland,153.253833,-27.511809 +2024,1,8,1,Queensland,153.246517,-27.499092 +2024,1,21,1,Queensland,153.255273,-27.545268 +2022,5,2,1,Queensland,153.248205,-27.53581 +2024,5,23,1,Queensland,153.256145,-27.548686 +2021,1,5,1,Queensland,153.242265,-27.512933 +2022,10,19,1,Queensland,153.24852,-27.490364 +2023,8,31,1,Queensland,153.240743,-27.484059 +2022,8,3,1,Queensland,153.2052,-27.617811 +2023,6,20,1,Queensland,153.439769,-27.401585 +2023,12,15,1,Queensland,153.27227,-27.574748 +2023,3,22,1,Queensland,153.245941,-27.489864 +2024,1,6,1,Queensland,153.271562,-27.574653 +2024,5,21,1,Queensland,153.295151,-27.568602 +2022,4,10,1,Queensland,153.248109,-27.490931 +2023,11,27,1,Queensland,153.244886,-27.490964 +2021,2,4,1,Queensland,153.249144,-27.490052 +2023,3,26,1,Queensland,153.43154,-27.486383 +2021,12,3,1,Queensland,153.249664,-27.50229 +2020,9,28,1,Queensland,153.247991,-27.490569 +2023,12,15,1,Queensland,153.252398,-27.511439 +2023,4,3,1,Queensland,153.205505,-27.618845 +2022,2,13,1,Queensland,153.282001,-27.532555 +2023,4,18,1,Queensland,153.271626,-27.574957 +2024,7,21,1,Queensland,153.205392,-27.490456 +2024,6,17,1,Queensland,153.202774,-27.506792 +2024,2,25,1,Queensland,153.250266,-27.511283 +2024,8,4,1,Queensland,153.251425,-27.509429 +2023,10,3,1,Queensland,153.241226,-27.491545 +2022,10,14,1,Queensland,153.405855,-27.496935 +2020,11,8,1,Queensland,153.250297,-27.502696 +2024,1,6,1,Queensland,153.271497,-27.574386 +2024,6,20,1,Queensland,153.251927,-27.509269 +2020,9,7,1,Queensland,153.245003,-27.491024 +2024,11,11,1,Queensland,153.194885,-27.507105 +2022,8,30,1,Queensland,153.271454,-27.536732 +2023,9,3,1,Queensland,153.239847,-27.515385 +2024,3,8,1,Queensland,153.250201,-27.511381 +2024,4,1,1,Queensland,153.295013,-27.568651 +2022,11,3,1,Queensland,153.245026,-27.490236 +2022,10,12,1,Queensland,153.529258,-27.428995 +2024,4,24,1,Queensland,153.273128,-27.575889 +2023,3,3,1,Queensland,153.246193,-27.489015 +2024,9,16,1,Queensland,153.22649,-27.50293 +2022,11,22,1,Queensland,153.437862,-27.40067 +2023,2,8,1,Queensland,153.246933,-27.490564 +2022,10,16,1,Queensland,153.254745,-27.529127 +2023,12,11,1,Queensland,153.296737,-27.582144 +2023,8,23,1,Queensland,153.248304,-27.490593 +2023,10,12,1,Queensland,153.271186,-27.57566 +2024,4,8,1,Queensland,153.29468,-27.56894 +2022,2,23,1,Queensland,153.254303,-27.519368 +2021,3,31,1,Queensland,153.248307,-27.490906 +2022,8,9,1,Queensland,153.250108,-27.502308 +2024,2,19,1,Queensland,153.271476,-27.575451 +2023,6,5,1,Queensland,153.200516,-27.51124 +2023,8,13,1,Queensland,153.197682,-27.505671 +2023,4,30,1,Queensland,153.245601,-27.490805 +2024,11,2,1,Queensland,153.2744,-27.571811 +2021,9,4,1,Queensland,153.244979,-27.490923 +2024,1,19,1,Queensland,153.250235,-27.511427 +2024,8,2,1,Queensland,153.271603,-27.575143 +2024,10,27,1,Queensland,153.197235,-27.515734 +2024,1,15,1,Queensland,153.249973,-27.51164 +2024,2,19,1,Queensland,153.199112,-27.505472 +2022,10,12,1,Queensland,153.270831,-27.539601 +2020,11,29,1,Queensland,153.251542,-27.503226 +2023,5,21,1,Queensland,153.271433,-27.575014 +2020,11,28,1,Queensland,153.248076,-27.490574 +2024,9,18,1,Queensland,153.271168,-27.575304 +2022,11,12,1,Queensland,153.278434,-27.537407 +2022,8,30,1,Queensland,153.263174,-27.524193 +2024,1,12,1,Queensland,153.256764,-27.512674 +2024,2,25,1,Queensland,153.250263,-27.511366 +2024,5,22,1,Queensland,153.248654,-27.511482 +2023,10,24,1,Queensland,153.242232,-27.514488 +2021,7,26,1,Queensland,153.252342,-27.501096 +2024,3,21,1,Queensland,153.2448,-27.49079 +2023,1,14,1,Queensland,153.515915,-27.422566 +2024,9,9,1,Queensland,153.201736,-27.508106 +2022,4,29,1,Queensland,153.281894,-27.532698 +2024,1,14,1,Queensland,153.271497,-27.573416 +2023,2,8,1,Queensland,153.245392,-27.489965 +2024,1,21,1,Queensland,153.250142,-27.511672 +2024,7,14,1,Queensland,153.27202,-27.57679 +2021,3,12,1,Queensland,153.282274,-27.533048 +2022,10,14,1,Queensland,153.440128,-27.398746 +2023,3,24,1,Queensland,153.272088,-27.574899 +2024,3,4,1,Queensland,153.20076,-27.509523 +2022,9,30,1,Queensland,153.243965,-27.489551 +2023,8,26,1,Queensland,153.250193,-27.511595 +2022,8,31,1,Queensland,153.248634,-27.490171 +2023,12,18,1,Queensland,153.244792,-27.491421 +2024,2,22,1,Queensland,153.271004,-27.57547 +2023,8,13,1,Queensland,153.24527,-27.489445 +2023,7,18,1,Queensland,153.195969,-27.509714 +2022,12,15,1,Queensland,153.245255,-27.489534 +2024,5,13,1,Queensland,153.25174,-27.510084 +2023,8,29,1,Queensland,153.248361,-27.511507 +2024,7,6,1,Queensland,153.256378,-27.514543 +2024,2,4,1,Queensland,153.254388,-27.511838 +2023,1,20,1,Queensland,153.248334,-27.490615 +2024,3,10,1,Queensland,153.439394,-27.39814 +2024,4,8,1,Queensland,153.20107,-27.61345 +2023,5,9,1,Queensland,153.206891,-27.622161 +2024,8,30,1,Queensland,153.271104,-27.574673 +2022,1,21,1,Queensland,153.257534,-27.5001 +2024,5,6,1,Queensland,153.297348,-27.567369 +2023,4,8,1,Queensland,153.273987,-27.558485 +2024,3,17,1,Queensland,153.241965,-27.514511 +2024,7,15,1,Queensland,153.198792,-27.614233 +2023,6,3,1,Queensland,153.250394,-27.511581 +2023,5,8,1,Queensland,153.247993,-27.490794 +2022,2,20,1,Queensland,153.258318,-27.500114 +2023,5,25,1,Queensland,153.232391,-27.50724 +2020,10,31,1,Queensland,153.250389,-27.502883 +2023,4,14,1,Queensland,153.271197,-27.575604 +2023,11,13,1,Queensland,153.243755,-27.491425 +2023,12,4,1,Queensland,153.249951,-27.5116 +2024,1,8,1,Queensland,153.250248,-27.511382 +2023,8,13,1,Queensland,153.198883,-27.510933 +2024,4,24,1,Queensland,153.244868,-27.491331 +2023,9,29,1,Queensland,153.255275,-27.513034 +2024,6,21,1,Queensland,153.251668,-27.509269 +2024,7,1,1,Queensland,153.297073,-27.567892 +2022,8,9,1,Queensland,153.247288,-27.490234 +2023,7,6,1,Queensland,153.234024,-27.501087 +2024,3,5,1,Queensland,153.272055,-27.574653 +2023,2,22,1,Queensland,153.270126,-27.545811 +2023,8,29,1,Queensland,153.232407,-27.507133 +2024,11,3,1,Queensland,153.219345,-27.495234 +2023,10,1,1,Queensland,153.270789,-27.540564 +2021,10,9,1,Queensland,153.439417,-27.396786 +2023,11,29,1,Queensland,153.231995,-27.50148 +2021,8,10,1,Queensland,153.247223,-27.49057 +2023,10,31,1,Queensland,153.253263,-27.50187 +2023,11,4,1,Queensland,153.244848,-27.490896 +2020,12,23,1,Queensland,153.249257,-27.48982 +2023,10,9,1,Queensland,153.23291,-27.507471 +2023,5,8,1,Queensland,153.272334,-27.574253 +2023,7,30,1,Queensland,153.440976,-27.398877 +2024,6,9,1,Queensland,153.253458,-27.511785 +2022,11,16,1,Queensland,153.271111,-27.576022 +2022,12,6,1,Queensland,153.438041,-27.399562 +2023,6,7,1,Queensland,153.248458,-27.490636 +2024,2,10,1,Queensland,153.272377,-27.574215 +2024,8,4,1,Queensland,153.271054,-27.575496 +2022,1,4,1,Queensland,153.225101,-27.501786 +2020,10,22,1,Queensland,153.248193,-27.490487 +2024,10,4,1,Queensland,153.250536,-27.511761 +2023,11,21,1,Queensland,153.271573,-27.575242 +2024,1,4,1,Queensland,153.250088,-27.511339 +2023,7,14,1,Queensland,153.245483,-27.495619 +2024,7,15,1,Queensland,153.251846,-27.509295 +2021,7,8,1,Queensland,153.248188,-27.490917 +2023,6,12,1,Queensland,153.197983,-27.612528 +2024,11,4,1,Queensland,153.226822,-27.503592 +2024,1,27,1,Queensland,153.223949,-27.500264 +2024,8,9,1,Queensland,153.271663,-27.575085 +2024,6,17,1,Queensland,153.247519,-27.511495 +2022,8,30,1,Queensland,153.249374,-27.489988 +2024,6,23,1,Queensland,153.253623,-27.511716 +2022,10,12,1,Queensland,153.248495,-27.490782 +2024,10,6,1,Queensland,153.24574,-27.496418 +2024,6,9,1,Queensland,153.247627,-27.511494 +2024,5,18,1,Queensland,153.272002,-27.576649 +2022,8,22,1,Queensland,153.244058,-27.48867 +2023,1,11,1,Queensland,153.271261,-27.575356 +2021,5,11,1,Queensland,153.247647,-27.491402 +2023,7,25,1,Queensland,153.232712,-27.5042 +2023,9,19,1,Queensland,153.268204,-27.538784 +2020,9,27,1,Queensland,153.252604,-27.501556 +2022,10,3,1,Queensland,153.218646,-27.502574 +2021,7,21,1,Queensland,153.248682,-27.489975 +2023,11,21,1,Queensland,153.195679,-27.505907 +2023,7,3,1,Queensland,153.245709,-27.496093 +2024,5,15,1,Queensland,153.247612,-27.511431 +2023,11,29,1,Queensland,153.243805,-27.489508 +2024,3,7,1,Queensland,153.250392,-27.511313 +2022,5,4,1,Queensland,153.244954,-27.490575 +2024,1,7,1,Queensland,153.271701,-27.574291 +2023,10,24,1,Queensland,153.231232,-27.500773 +2022,11,9,1,Queensland,153.271347,-27.576003 +2024,10,25,1,Queensland,153.247964,-27.510044 +2021,10,9,1,Queensland,153.439136,-27.397133 +2024,1,12,1,Queensland,153.296606,-27.611306 +2024,2,1,1,Queensland,153.271154,-27.574672 +2024,6,3,1,Queensland,153.24408,-27.488525 +2022,10,14,1,Queensland,153.44449,-27.395982 +2021,8,27,1,Queensland,153.251877,-27.511579 +2021,7,9,1,Queensland,153.248205,-27.490173 +2024,6,24,1,Queensland,153.250993,-27.509263 +2024,6,11,1,Queensland,153.251801,-27.509158 +2021,3,17,1,Queensland,153.246489,-27.497725 +2023,5,31,1,Queensland,153.216752,-27.500437 +2022,11,12,1,Queensland,153.199901,-27.493708 +2023,3,22,1,Queensland,153.235168,-27.501377 +2024,4,5,1,Queensland,153.250045,-27.511545 +2024,10,7,1,Queensland,153.295731,-27.567734 +2022,8,7,1,Queensland,153.24843,-27.490647 +2023,12,7,1,Queensland,153.244723,-27.49119 +2023,8,7,1,Queensland,153.251086,-27.511661 +2024,7,26,1,Queensland,153.251834,-27.509298 +2024,1,18,1,Queensland,153.272077,-27.573854 +2023,8,13,1,Queensland,153.254052,-27.511817 +2022,1,20,1,Queensland,153.281915,-27.531031 +2023,12,30,1,Queensland,153.244957,-27.495668 +2023,11,11,1,Queensland,153.270875,-27.575585 +2023,9,7,1,Queensland,153.216195,-27.537184 +2022,10,14,1,Queensland,153.520684,-27.426201 +2024,4,5,1,Queensland,153.24185,-27.514779 +2022,12,20,1,Queensland,153.223212,-27.499626 +2024,9,30,1,Queensland,153.297394,-27.569626 +2023,5,3,1,Queensland,153.202423,-27.513885 +2022,1,31,1,Queensland,153.260153,-27.501602 +2023,1,22,1,Queensland,153.25559,-27.546189 +2020,11,18,1,Queensland,153.242046,-27.512361 +2023,6,6,1,Queensland,153.232107,-27.507427 +2023,7,2,1,Queensland,153.255988,-27.51312 +2023,12,2,1,Queensland,153.242879,-27.489484 +2020,10,31,1,Queensland,153.248072,-27.490367 +2021,4,5,1,Queensland,153.241589,-27.514216 +2023,11,17,1,Queensland,153.245991,-27.497058 +2024,6,8,1,Queensland,153.271884,-27.576688 +2024,2,19,1,Queensland,153.272077,-27.574538 +2024,2,29,1,Queensland,153.250318,-27.511332 +2023,5,3,1,Queensland,153.271798,-27.575547 +2024,3,22,1,Queensland,153.248121,-27.490759 +2022,10,19,1,Queensland,153.244644,-27.497044 +2024,9,14,1,Queensland,153.271499,-27.575697 +2023,11,29,1,Queensland,153.244836,-27.490901 +2023,5,21,1,Queensland,153.249552,-27.51156 +2024,10,7,1,Queensland,153.245687,-27.496278 +2020,9,24,1,Queensland,153.249021,-27.49038 +2021,8,31,1,Queensland,153.248656,-27.490064 +2023,9,5,1,Queensland,153.244568,-27.492142 +2022,11,14,1,Queensland,153.275392,-27.540297 +2024,8,1,1,Queensland,153.250407,-27.5117 +2021,9,23,1,Queensland,153.248286,-27.49077 +2023,6,5,1,Queensland,153.269595,-27.540597 +2024,6,3,1,Queensland,153.297958,-27.569099 +2021,5,21,1,Queensland,153.281914,-27.530607 +2021,1,17,1,Queensland,153.244922,-27.49102 +2023,4,20,1,Queensland,153.272463,-27.574006 +2023,5,14,1,Queensland,153.246567,-27.498616 +2023,6,18,1,Queensland,153.245501,-27.490724 +2023,9,18,1,Queensland,153.239864,-27.515349 +2024,11,16,1,Queensland,153.252873,-27.511749 +2024,1,21,1,Queensland,153.255249,-27.545141 +2024,7,22,1,Queensland,153.199432,-27.613768 +2024,10,7,1,Queensland,153.202087,-27.513712 +2022,4,25,1,Queensland,153.252347,-27.501142 +2020,9,22,1,Queensland,153.249983,-27.502424 +2024,4,15,1,Queensland,153.198151,-27.615406 +2024,3,1,1,Queensland,153.271283,-27.575528 +2022,12,24,1,Queensland,153.283906,-27.525286 +2023,12,4,1,Queensland,153.244646,-27.49144 +2024,8,17,1,Queensland,153.218234,-27.494606 +2024,11,14,1,Queensland,153.253826,-27.511751 +2024,10,30,1,Queensland,153.271499,-27.575697 +2021,3,23,1,Queensland,153.251992,-27.501221 +2023,4,28,1,Queensland,153.248502,-27.490315 +2021,10,9,1,Queensland,153.441159,-27.397017 +2024,6,11,1,Queensland,153.251894,-27.509372 +2023,5,3,1,Queensland,153.248337,-27.490564 +2023,1,19,1,Queensland,153.200806,-27.508196 +2024,3,12,1,Queensland,153.44122,-27.39511 +2024,8,26,1,Queensland,153.245911,-27.490011 +2023,8,12,1,Queensland,153.218242,-27.501342 +2024,6,21,1,Queensland,153.272141,-27.576536 +2024,7,15,1,Queensland,153.289673,-27.571846 +2023,8,8,1,Queensland,153.24707,-27.490311 +2024,5,16,1,Queensland,153.250617,-27.511492 +2023,3,1,1,Queensland,153.24909,-27.490371 +2021,10,8,1,Queensland,153.400897,-27.499898 +2024,5,29,1,Queensland,153.250202,-27.511234 +2024,4,27,1,Queensland,153.245028,-27.490906 +2021,7,23,1,Queensland,153.249321,-27.490378 +2024,4,15,1,Queensland,153.250885,-27.509768 +2023,12,21,1,Queensland,153.242238,-27.512922 +2024,4,9,1,Queensland,153.243765,-27.491339 +2024,7,6,1,Queensland,153.25386,-27.511727 +2024,3,10,1,Queensland,153.271154,-27.57547 +2023,7,10,1,Queensland,153.253945,-27.51181 +2024,2,18,1,Queensland,153.200851,-27.511013 +2023,9,17,1,Queensland,153.239825,-27.515846 +2024,9,9,1,Queensland,153.245529,-27.510773 +2024,9,28,1,Queensland,153.256004,-27.513487 +2022,3,15,1,Queensland,153.25445,-27.495862 +2023,6,28,1,Queensland,153.244906,-27.490915 +2024,1,4,1,Queensland,153.253856,-27.511763 +2024,8,14,1,Queensland,153.197708,-27.51543 +2023,10,9,1,Queensland,153.196838,-27.507553 +2021,10,11,1,Queensland,153.248566,-27.490294 +2023,1,24,1,Queensland,153.244904,-27.489466 +2024,10,12,1,Queensland,153.246644,-27.498186 +2023,9,19,1,Queensland,153.29924,-27.572201 +2023,12,16,1,Queensland,153.250299,-27.511661 +2024,11,11,1,Queensland,153.203629,-27.508911 +2023,5,8,1,Queensland,153.24894,-27.490189 +2024,5,22,1,Queensland,153.249008,-27.511635 +2023,4,1,1,Queensland,153.248384,-27.50045 +2020,9,30,1,Queensland,153.251767,-27.503303 +2024,1,6,1,Queensland,153.253294,-27.511678 +2023,2,8,1,Queensland,153.245224,-27.48991 +2021,5,14,1,Queensland,153.248392,-27.490316 +2023,12,16,1,Queensland,153.251144,-27.511594 +2024,4,23,1,Queensland,153.273085,-27.576117 +2020,11,5,1,Queensland,153.250442,-27.502688 +2024,6,23,1,Queensland,153.249629,-27.511538 +2023,8,22,1,Queensland,153.246277,-27.490303 +2023,7,11,1,Queensland,153.273834,-27.537455 +2024,2,6,1,Queensland,153.19949,-27.613221 +2021,10,9,1,Queensland,153.440318,-27.396994 +2023,10,22,1,Queensland,153.250032,-27.511668 +2021,5,17,1,Queensland,153.248495,-27.490717 +2023,10,16,1,Queensland,153.242859,-27.489187 +2021,5,14,1,Queensland,153.52,-27.43 +2024,2,26,1,Queensland,153.244858,-27.489679 +2024,6,18,1,Queensland,153.271047,-27.575718 +2022,12,6,1,Queensland,153.444387,-27.391986 +2022,12,7,1,Queensland,153.271164,-27.54026 +2024,4,4,1,Queensland,153.241878,-27.51485 +2023,9,17,1,Queensland,153.239813,-27.515365 +2021,12,21,1,Queensland,153.258489,-27.54756 +2023,1,11,1,Queensland,153.247408,-27.490778 +2020,10,30,1,Queensland,153.245834,-27.497276 +2023,3,29,1,Queensland,153.244733,-27.491366 +2024,11,11,1,Queensland,153.271499,-27.575697 +2023,1,12,1,Queensland,153.223148,-27.499716 +2024,5,27,1,Queensland,153.251724,-27.509254 +2021,10,16,1,Queensland,153.259052,-27.547611 +2023,1,23,1,Queensland,153.430338,-27.491635 +2024,9,26,1,Queensland,153.256059,-27.513943 +2023,4,19,1,Queensland,153.248544,-27.490405 +2024,6,17,1,Queensland,153.244247,-27.489223 +2024,8,7,1,Queensland,153.253878,-27.511773 +2023,1,11,1,Queensland,153.248897,-27.490147 +2023,11,10,1,Queensland,153.246086,-27.497204 +2022,10,14,1,Queensland,153.441499,-27.397037 +2024,7,15,1,Queensland,153.206253,-27.620224 +2024,6,20,1,Queensland,153.251821,-27.509216 +2023,11,18,1,Queensland,153.271476,-27.576079 +2020,9,3,1,Queensland,153.252243,-27.498101 +2023,7,11,1,Queensland,153.249268,-27.490135 +2022,9,6,1,Queensland,153.248637,-27.490745 +2023,12,12,1,Queensland,153.271304,-27.575946 +2024,10,20,1,Queensland,153.253666,-27.511695 +2024,10,18,1,Queensland,153.247839,-27.510133 +2023,9,2,1,Queensland,153.25451,-27.51186 +2024,3,9,1,Queensland,153.270875,-27.575585 +2024,1,7,1,Queensland,153.250131,-27.51143 +2024,2,18,1,Queensland,153.233032,-27.507324 +2023,4,10,1,Queensland,153.271197,-27.575432 +2023,9,21,1,Queensland,153.239791,-27.515362 +2024,3,6,1,Queensland,153.271927,-27.574976 +2024,8,14,1,Queensland,153.249906,-27.511367 +2024,6,21,1,Queensland,153.297882,-27.569374 +2022,12,15,1,Queensland,153.200867,-27.508358 +2023,5,17,1,Queensland,153.271991,-27.575223 +2024,3,31,1,Queensland,153.25032,-27.511305 +2021,7,19,1,Queensland,153.248662,-27.490616 +2024,1,25,1,Queensland,153.250223,-27.51138 +2023,8,9,1,Queensland,153.438387,-27.401128 +2023,12,30,1,Queensland,153.250051,-27.511799 +2024,9,20,1,Queensland,153.250035,-27.511274 +2021,10,9,1,Queensland,153.360115,-27.61478 +2022,9,23,1,Queensland,153.249192,-27.490495 +2021,11,21,1,Queensland,153.283923,-27.525531 +2023,12,19,1,Queensland,153.250157,-27.511432 +2024,4,28,1,Queensland,153.273665,-27.575752 +2023,11,7,1,Queensland,153.245484,-27.490609 +2022,4,3,1,Queensland,153.248476,-27.490389 +2024,5,6,1,Queensland,153.24617,-27.489981 +2023,10,2,1,Queensland,153.255973,-27.514099 +2024,9,1,1,Queensland,153.271342,-27.574574 +2023,9,13,1,Queensland,153.239821,-27.51537 +2023,10,9,1,Queensland,153.20134,-27.50617 +2024,2,10,1,Queensland,153.271283,-27.575623 +2023,3,7,1,Queensland,153.249417,-27.490162 +2023,8,1,1,Queensland,153.246185,-27.489796 +2022,11,12,1,Queensland,153.27153,-27.575964 +2024,8,19,1,Queensland,153.271499,-27.575697 +2023,5,28,1,Queensland,153.250319,-27.511611 +2024,7,22,1,Queensland,153.251709,-27.509243 +2024,6,9,1,Queensland,153.255939,-27.514445 +2024,1,23,1,Queensland,153.25358,-27.511732 +2022,11,15,1,Queensland,153.270918,-27.575813 +2024,3,11,1,Queensland,153.1977,-27.61276 +2023,11,15,1,Queensland,153.250146,-27.511374 +2022,10,14,1,Queensland,153.440331,-27.399111 +2024,2,3,1,Queensland,153.250581,-27.511758 +2021,4,2,1,Queensland,153.244948,-27.49085 +2021,5,11,1,Queensland,153.245019,-27.491038 +2023,12,30,1,Queensland,153.24256,-27.513093 +2022,8,15,1,Queensland,153.234375,-27.500268 +2021,6,29,1,Queensland,153.247909,-27.489747 +2024,11,13,1,Queensland,153.253853,-27.511758 +2023,1,10,1,Queensland,153.223169,-27.49974 +2023,8,26,1,Queensland,153.253399,-27.511752 +2023,7,18,1,Queensland,153.202408,-27.513746 +2022,3,20,1,Queensland,153.245652,-27.490669 +2023,6,14,1,Queensland,153.247731,-27.490825 +2021,2,26,1,Queensland,153.243234,-27.51165 +2023,2,22,1,Queensland,153.245071,-27.490055 +2021,5,8,1,Queensland,153.258102,-27.547061 +2023,10,10,1,Queensland,153.221211,-27.498929 +2020,11,5,1,Queensland,153.248527,-27.489734 +2024,6,17,1,Queensland,153.233749,-27.506273 +2024,1,24,1,Queensland,153.250146,-27.511419 +2023,5,3,1,Queensland,153.245087,-27.489576 +2022,10,8,1,Queensland,153.252408,-27.511689 +2023,9,16,1,Queensland,153.193176,-27.507463 +2023,11,21,1,Queensland,153.199585,-27.612917 +2023,8,14,1,Queensland,153.292859,-27.618035 +2022,9,22,1,Queensland,153.270639,-27.530156 +2024,2,20,1,Queensland,153.250032,-27.51147 +2024,10,11,1,Queensland,153.526234,-27.431012 +2023,11,21,1,Queensland,153.270983,-27.575585 +2024,8,29,1,Queensland,153.236318,-27.519633 +2024,5,21,1,Queensland,153.242905,-27.489344 +2024,10,21,1,Queensland,153.295212,-27.569588 +2021,3,6,1,Queensland,153.245015,-27.490374 +2024,5,24,1,Queensland,153.248619,-27.51148 +2021,9,6,1,Queensland,153.227472,-27.545982 +2022,1,25,1,Queensland,153.25849,-27.500044 +2024,8,19,1,Queensland,153.251678,-27.509356 +2022,3,10,1,Queensland,153.278197,-27.55245 +2020,12,27,1,Queensland,153.247658,-27.490902 +2021,3,25,1,Queensland,153.245249,-27.495993 +2022,10,14,1,Queensland,153.437721,-27.403448 +2022,12,1,1,Queensland,153.202919,-27.506928 +2024,1,29,1,Queensland,153.27124,-27.574367 +2021,10,8,1,Queensland,153.404862,-27.496077 +2023,9,28,1,Queensland,153.228327,-27.502468 +2023,8,3,1,Queensland,153.44115,-27.398842 +2024,5,16,1,Queensland,153.24726,-27.511437 +2024,9,16,1,Queensland,153.202972,-27.514 +2020,10,30,1,Queensland,153.211259,-27.531228 +2024,4,15,1,Queensland,153.295258,-27.568876 +2024,1,11,1,Queensland,153.256072,-27.512756 +2021,11,21,1,Queensland,153.247658,-27.535235 +2021,5,10,1,Queensland,153.248511,-27.491043 +2022,12,10,1,Queensland,153.283678,-27.525619 +2022,11,20,1,Queensland,153.248035,-27.490813 +2023,10,15,1,Queensland,153.24897,-27.489692 +2023,7,19,1,Queensland,153.270727,-27.544196 +2024,7,29,1,Queensland,153.298706,-27.569592 +2023,5,16,1,Queensland,153.24541,-27.49039 +2024,6,12,1,Queensland,153.251897,-27.509375 +2022,12,14,1,Queensland,153.244888,-27.497326 +2023,11,10,1,Queensland,153.245678,-27.490871 +2024,4,21,1,Queensland,153.52653,-27.431594 +2024,7,15,1,Queensland,153.253849,-27.511822 +2023,9,19,1,Queensland,153.232697,-27.507208 +2024,5,5,1,Queensland,153.250221,-27.511281 +2023,6,28,1,Queensland,153.403025,-27.493445 +2023,12,11,1,Queensland,153.249589,-27.511567 +2022,12,8,1,Queensland,153.440006,-27.396692 +2024,5,12,1,Queensland,153.250319,-27.511423 +2021,4,22,1,Queensland,153.248762,-27.490245 +2020,12,2,1,Queensland,153.245378,-27.490448 +2023,12,7,1,Queensland,153.19722,-27.505108 +2024,9,20,1,Queensland,153.271148,-27.575377 +2023,9,10,1,Queensland,153.239829,-27.51538 +2021,4,12,1,Queensland,153.281091,-27.529207 +2024,1,23,1,Queensland,153.22391,-27.500311 +2023,10,19,1,Queensland,153.196332,-27.488283 +2024,8,12,1,Queensland,153.251312,-27.509459 +2023,12,17,1,Queensland,153.250115,-27.511409 +2022,9,15,1,Queensland,153.270889,-27.538078 +2023,6,9,1,Queensland,153.252148,-27.549735 +2022,8,9,1,Queensland,153.249418,-27.489439 +2023,7,16,1,Queensland,153.256341,-27.548421 +2024,4,28,1,Queensland,153.252335,-27.508713 +2024,5,21,1,Queensland,153.251801,-27.509232 +2024,9,5,1,Queensland,153.271036,-27.575501 +2024,1,3,1,Queensland,153.250135,-27.511322 +2024,5,14,1,Queensland,153.250238,-27.511373 +2021,2,10,1,Queensland,153.248591,-27.489832 +2020,9,9,1,Queensland,153.246408,-27.498447 +2024,8,26,1,Queensland,153.251694,-27.509583 +2024,5,5,1,Queensland,153.250251,-27.511286 +2023,11,21,1,Queensland,153.250425,-27.511615 +2022,11,20,1,Queensland,153.20102,-27.492017 +2024,5,17,1,Queensland,153.244731,-27.491049 +2024,5,8,1,Queensland,153.250336,-27.511333 +2022,11,8,1,Queensland,153.271197,-27.575908 +2024,7,29,1,Queensland,153.244247,-27.489578 +2023,6,22,1,Queensland,153.237486,-27.507128 +2023,8,14,1,Queensland,153.220154,-27.581069 +2024,2,7,1,Queensland,153.197372,-27.505335 +2024,8,19,1,Queensland,153.197891,-27.61323 +2023,12,15,1,Queensland,153.255076,-27.513252 +2024,1,23,1,Queensland,153.251885,-27.514472 +2021,10,8,1,Queensland,153.437274,-27.405222 +2023,7,23,1,Queensland,153.248566,-27.490807 +2020,9,3,1,Queensland,153.25552,-27.494656 +2024,2,12,1,Queensland,153.271304,-27.575813 +2024,5,10,1,Queensland,153.250028,-27.511478 +2023,9,1,1,Queensland,153.403092,-27.493336 +2023,9,16,1,Queensland,153.203979,-27.511717 +2023,9,5,1,Queensland,153.245316,-27.489668 +2020,11,6,1,Queensland,153.24842,-27.490465 +2024,8,14,1,Queensland,153.296875,-27.567993 +2022,10,23,1,Queensland,153.24827,-27.490858 +2023,11,4,1,Queensland,153.271519,-27.5749 +2024,3,30,1,Queensland,153.241998,-27.514534 +2022,8,5,1,Queensland,153.248473,-27.490537 +2024,8,16,1,Queensland,153.250081,-27.511814 +2021,3,2,1,Queensland,153.249986,-27.504141 +2024,9,2,1,Queensland,153.194672,-27.514551 +2023,12,21,1,Queensland,153.242166,-27.514468 +2024,2,28,1,Queensland,153.296204,-27.568653 +2023,9,30,1,Queensland,153.239802,-27.515363 +2022,10,14,1,Queensland,153.439897,-27.393463 +2023,11,1,1,Queensland,153.281722,-27.53244 +2023,6,30,1,Queensland,153.216763,-27.500454 +2024,4,5,1,Queensland,153.250237,-27.511401 +2023,4,28,1,Queensland,153.271476,-27.575033 +2023,10,3,1,Queensland,153.298935,-27.567944 +2024,3,2,1,Queensland,153.250172,-27.511263 +2024,1,1,1,Queensland,153.271862,-27.575109 +2021,10,8,1,Queensland,153.438272,-27.401842 +2023,11,25,1,Queensland,153.254969,-27.51209 +2024,11,14,1,Queensland,153.272275,-27.574867 +2023,8,13,1,Queensland,153.248413,-27.490246 +2024,6,26,1,Queensland,153.250054,-27.511542 +2023,12,3,1,Queensland,153.24602,-27.497511 +2020,12,6,1,Queensland,153.252615,-27.50186 +2023,12,10,1,Queensland,153.250263,-27.511439 +2024,5,13,1,Queensland,153.255189,-27.513008 +2024,7,1,1,Queensland,153.199417,-27.61363 +2023,3,23,1,Queensland,153.248346,-27.490925 +2021,10,16,1,Queensland,153.258462,-27.545979 +2024,1,19,1,Queensland,153.272012,-27.573968 +2021,10,31,1,Queensland,153.247958,-27.490862 +2022,10,13,1,Queensland,153.271194,-27.54084 +2022,12,20,1,Queensland,153.233733,-27.608844 +2024,6,5,1,Queensland,153.253859,-27.511663 +2024,1,30,1,Queensland,153.271927,-27.574957 +2020,9,29,1,Queensland,153.25255,-27.50195 +2024,1,7,1,Queensland,153.256023,-27.513638 +2022,12,10,1,Queensland,153.249591,-27.500748 +2023,6,12,1,Queensland,153.197327,-27.614538 +2024,11,12,1,Queensland,153.272336,-27.575142 +2022,10,17,1,Queensland,153.199368,-27.491522 +2020,8,31,1,Queensland,153.25549,-27.494377 +2023,4,3,1,Queensland,153.245316,-27.489981 +2024,5,21,1,Queensland,153.271927,-27.576536 +2022,4,26,1,Queensland,153.249021,-27.490137 +2022,1,8,1,Queensland,153.281987,-27.530905 +2021,9,26,1,Queensland,153.248619,-27.490254 +2023,6,29,1,Queensland,153.247192,-27.490337 +2024,4,8,1,Queensland,153.24359,-27.49132 +2022,10,16,1,Queensland,153.245224,-27.498363 +2024,5,25,1,Queensland,153.29685,-27.568064 +2021,9,22,1,Queensland,153.248492,-27.490861 +2022,4,29,1,Queensland,153.248141,-27.490352 +2023,9,6,1,Queensland,153.260886,-27.549978 +2023,7,14,1,Queensland,153.25151,-27.511656 +2024,4,15,1,Queensland,153.198502,-27.612656 +2024,1,6,1,Queensland,153.24657,-27.499178 +2021,1,31,1,Queensland,153.242233,-27.512939 +2023,9,1,1,Queensland,153.239853,-27.515373 +2021,10,8,1,Queensland,153.404444,-27.495374 +2023,10,13,1,Queensland,153.281925,-27.525661 +2024,9,23,1,Queensland,153.248068,-27.490951 +2023,12,31,1,Queensland,153.25016,-27.511436 +2021,3,12,1,Queensland,153.246033,-27.498037 +2022,9,4,1,Queensland,153.248532,-27.490304 +2023,3,22,1,Queensland,153.247647,-27.511522 +2023,8,29,1,Queensland,153.202271,-27.513409 +2022,1,8,1,Queensland,153.281907,-27.531525 +2023,2,2,1,Queensland,153.250432,-27.550492 +2023,12,6,1,Queensland,153.250974,-27.511635 +2023,10,9,1,Queensland,153.233643,-27.505934 +2020,10,20,1,Queensland,153.058106,-27.501001 +2021,10,18,1,Queensland,153.273665,-27.534797 +2023,10,3,1,Queensland,153.270918,-27.575604 +2020,12,2,1,Queensland,153.245286,-27.495663 +2023,4,22,1,Queensland,153.271562,-27.575585 +2023,7,18,1,Queensland,153.232559,-27.5019 +2024,1,10,1,Queensland,153.250468,-27.511721 +2023,8,13,1,Queensland,153.245087,-27.48959 +2023,9,16,1,Queensland,153.201248,-27.504982 +2024,10,29,1,Queensland,153.25367,-27.511762 +2023,10,5,1,Queensland,153.270875,-27.575623 +2024,1,10,1,Queensland,153.249982,-27.511613 +2023,5,9,1,Queensland,153.20046,-27.50433 +2024,2,5,1,Queensland,153.250165,-27.51135 +2023,7,25,1,Queensland,153.245941,-27.488955 +2022,4,9,1,Queensland,153.226275,-27.498384 +2024,6,14,1,Queensland,153.251754,-27.509283 +2023,12,3,1,Queensland,153.25012,-27.511813 +2023,5,1,1,Queensland,153.24976,-27.490125 +2024,4,8,1,Queensland,153.243802,-27.491335 +2023,7,25,1,Queensland,153.245011,-27.490469 +2023,8,12,1,Queensland,153.24471,-27.489635 +2023,8,13,1,Queensland,153.270767,-27.5392 +2024,5,10,1,Queensland,153.248555,-27.511524 +2023,6,29,1,Queensland,153.198135,-27.615221 +2023,1,26,1,Queensland,153.248149,-27.511526 +2024,6,10,1,Queensland,153.294601,-27.569031 +2023,7,21,1,Queensland,153.248688,-27.511547 +2024,2,2,1,Queensland,153.250127,-27.511342 +2024,4,17,1,Queensland,153.250403,-27.511312 +2024,5,18,1,Queensland,153.252105,-27.511009 +2024,2,12,1,Queensland,153.271219,-27.575623 +2024,8,29,1,Queensland,153.27111,-27.574659 +2022,1,29,1,Queensland,153.244965,-27.49087 +2024,1,6,1,Queensland,153.245161,-27.490403 +2020,12,23,1,Queensland,153.248236,-27.49063 +2024,1,4,1,Queensland,153.272141,-27.574557 +2023,7,25,1,Queensland,153.232193,-27.507786 +2022,9,13,1,Queensland,153.215249,-27.492227 +2023,3,31,1,Queensland,153.252321,-27.501177 +2020,10,12,1,Queensland,153.217904,-27.546976 +2022,4,4,1,Queensland,153.248677,-27.490692 +2023,5,9,1,Queensland,153.234829,-27.501293 +2020,10,11,1,Queensland,153.25074,-27.503059 +2021,5,17,1,Queensland,153.25,-27.5 +2024,9,21,1,Queensland,153.251408,-27.511611 +2023,3,22,1,Queensland,153.247177,-27.490419 +2021,8,30,1,Queensland,153.248248,-27.491184 +2020,11,8,1,Queensland,153.244973,-27.491069 +2024,5,21,1,Queensland,153.25603,-27.51269 +2024,1,9,1,Queensland,153.256381,-27.512534 +2021,7,12,1,Queensland,153.248334,-27.489855 +2024,10,11,1,Queensland,153.246537,-27.497936 +2021,10,8,1,Queensland,153.441554,-27.392912 +2023,12,12,1,Queensland,153.270983,-27.575585 +2024,2,21,1,Queensland,153.250138,-27.51144 +2024,1,12,1,Queensland,153.271154,-27.575528 +2023,8,29,1,Queensland,153.194672,-27.507759 +2022,10,14,1,Queensland,153.438444,-27.399894 +2020,12,6,1,Queensland,153.250759,-27.503023 +2023,8,22,1,Queensland,153.233307,-27.504488 +2020,12,18,1,Queensland,153.272152,-27.554319 +2023,11,7,1,Queensland,153.249114,-27.489858 +2023,1,11,1,Queensland,153.244372,-27.489875 +2023,1,9,1,Queensland,153.236146,-27.521231 +2024,7,25,1,Queensland,153.251719,-27.509298 +2021,12,8,1,Queensland,153.255676,-27.547223 +2022,12,20,1,Queensland,153.272806,-27.539067 +2023,10,7,1,Queensland,153.403063,-27.493668 +2024,11,8,1,Queensland,153.271499,-27.575697 +2020,12,7,1,Queensland,153.245271,-27.495766 +2024,5,20,1,Queensland,153.256029,-27.513935 +2024,1,22,1,Queensland,153.19693,-27.507341 +2022,11,6,1,Queensland,153.244697,-27.491312 +2021,8,27,1,Queensland,153.250598,-27.511477 +2024,4,4,1,Queensland,153.29457,-27.568867 +2023,9,24,1,Queensland,153.270854,-27.575508 +2024,6,6,1,Queensland,153.271905,-27.576688 +2023,4,20,1,Queensland,153.249023,-27.490592 +2024,1,11,1,Queensland,153.255543,-27.512194 +2023,7,16,1,Queensland,153.248575,-27.490089 +2024,8,4,1,Queensland,153.250295,-27.511399 +2024,5,20,1,Queensland,153.251645,-27.509316 +2022,10,28,1,Queensland,153.284508,-27.524801 +2023,6,5,1,Queensland,153.232224,-27.507425 +2024,5,26,1,Queensland,153.271626,-27.574386 +2021,4,14,1,Queensland,153.248592,-27.490467 +2021,4,27,1,Queensland,153.248029,-27.490786 +2024,5,20,1,Queensland,153.25189,-27.509328 +2023,4,3,1,Queensland,153.232727,-27.50688 +2024,7,12,1,Queensland,153.247205,-27.511405 +2023,9,20,1,Queensland,153.239818,-27.515365 +2024,9,9,1,Queensland,153.199265,-27.614119 +2021,4,8,1,Queensland,153.247965,-27.490907 +2024,9,27,1,Queensland,153.242107,-27.511578 +2024,4,1,1,Queensland,153.251902,-27.514474 +2024,10,29,1,Queensland,153.25061,-27.511675 +2024,1,22,1,Queensland,153.197835,-27.612908 +2024,10,11,1,Queensland,153.44095,-27.395066 +2024,1,14,1,Queensland,153.25009,-27.511267 +2023,8,20,1,Queensland,153.239858,-27.515427 +2024,10,28,1,Queensland,153.247948,-27.510145 +2023,9,19,1,Queensland,153.23981,-27.515346 +2024,3,14,1,Queensland,153.245654,-27.496922 +2024,4,16,1,Queensland,153.272957,-27.576402 +2023,6,3,1,Queensland,153.242755,-27.513792 +2023,10,16,1,Queensland,153.285614,-27.523592 +2021,9,3,1,Queensland,153.258204,-27.546601 +2022,12,24,1,Queensland,153.253053,-27.496121 +2024,5,21,1,Queensland,153.25175,-27.509261 +2023,4,18,1,Queensland,153.245998,-27.49825 +2021,9,20,1,Queensland,153.248709,-27.490543 +2021,5,5,1,Queensland,153.248797,-27.489941 +2023,10,14,1,Queensland,153.225227,-27.502095 +2024,11,17,1,Queensland,153.253622,-27.511715 +2022,11,3,1,Queensland,153.271111,-27.575623 +2024,3,7,1,Queensland,153.271176,-27.575242 +2023,3,26,1,Queensland,153.440927,-27.394936 +2023,6,17,1,Queensland,153.245228,-27.490268 +2023,1,12,1,Queensland,153.271857,-27.544354 +2024,10,11,1,Queensland,153.439358,-27.397086 +2020,9,23,1,Queensland,153.251976,-27.500989 +2023,5,7,1,Queensland,153.272206,-27.57431 +2023,8,17,1,Queensland,153.238758,-27.482639 +2022,11,22,1,Queensland,153.283834,-27.525616 +2022,10,14,1,Queensland,153.439075,-27.397058 +2024,7,26,1,Queensland,153.254273,-27.511943 +2023,4,18,1,Queensland,153.233963,-27.500633 +2024,7,10,1,Queensland,153.272034,-27.576821 +2022,12,31,1,Queensland,153.271304,-27.575908 +2021,5,11,1,Queensland,153.248538,-27.490827 +2023,11,1,1,Queensland,153.244873,-27.489319 +2024,7,10,1,Queensland,153.25387,-27.511726 +2024,1,16,1,Queensland,153.255901,-27.513758 +2024,8,31,1,Queensland,153.271226,-27.574633 +2024,3,3,1,Queensland,153.256023,-27.512929 +2023,8,8,1,Queensland,153.244064,-27.489384 +2024,10,11,1,Queensland,153.39913,-27.49624 +2023,8,15,1,Queensland,153.275806,-27.543904 +2022,11,15,1,Queensland,153.244869,-27.491205 +2024,1,1,1,Queensland,153.27124,-27.575794 +2020,12,4,1,Queensland,153.248446,-27.49007 +2024,1,17,1,Queensland,153.245453,-27.489592 +2022,3,26,1,Queensland,153.275966,-27.551969 +2023,11,5,1,Queensland,153.270918,-27.575642 +2023,8,29,1,Queensland,153.267899,-27.530722 +2024,1,15,1,Queensland,153.271616,-27.573872 +2023,9,27,1,Queensland,153.201614,-27.505293 +2023,4,18,1,Queensland,153.246124,-27.488363 +2024,5,31,1,Queensland,153.24987,-27.511396 +2024,11,4,1,Queensland,153.198853,-27.613853 +2022,12,2,1,Queensland,153.249222,-27.489911 +2023,3,12,1,Queensland,153.221723,-27.500998 +2021,9,2,1,Queensland,153.248677,-27.490565 +2023,10,7,1,Queensland,153.251067,-27.511654 +2022,8,7,1,Queensland,153.281674,-27.531257 +2022,10,11,1,Queensland,153.193381,-27.568508 +2023,6,1,1,Queensland,153.249004,-27.489769 +2023,2,17,1,Queensland,153.251864,-27.514805 +2024,1,12,1,Queensland,153.230667,-27.499739 +2024,7,27,1,Queensland,153.249496,-27.511543 +2022,12,1,1,Queensland,153.406134,-27.493578 +2020,12,31,1,Queensland,153.249283,-27.489868 +2023,8,20,1,Queensland,153.252035,-27.511702 +2021,4,24,1,Queensland,153.517671,-27.424757 +2023,3,7,1,Queensland,153.244644,-27.489765 +2024,1,31,1,Queensland,153.272055,-27.574615 +2024,6,14,1,Queensland,153.247572,-27.511451 +2020,9,8,1,Queensland,153.248122,-27.490646 +2021,7,27,1,Queensland,153.252566,-27.501252 +2023,8,22,1,Queensland,153.222534,-27.496534 +2023,11,13,1,Queensland,153.223115,-27.499215 +2023,3,22,1,Queensland,153.201149,-27.613285 +2023,12,10,1,Queensland,153.223341,-27.506768 +2021,6,24,1,Queensland,153.24578,-27.496473 +2024,1,24,1,Queensland,153.27109,-27.574405 +2023,12,21,1,Queensland,153.271497,-27.574101 +2024,4,7,1,Queensland,153.25001,-27.511347 +2024,9,28,1,Queensland,153.242034,-27.51213 +2024,5,27,1,Queensland,153.202545,-27.513975 +2023,12,29,1,Queensland,153.250269,-27.511374 +2022,1,3,1,Queensland,153.248752,-27.490523 +2023,4,5,1,Queensland,153.27315,-27.573664 +2023,12,3,1,Queensland,153.257133,-27.513312 +2023,2,22,1,Queensland,153.247742,-27.490177 +2024,5,25,1,Queensland,153.255563,-27.512245 +2024,9,25,1,Queensland,153.25604,-27.514069 +2023,9,24,1,Queensland,153.239798,-27.515366 +2023,6,13,1,Queensland,153.248682,-27.490452 +2023,1,15,1,Queensland,153.523864,-27.4314 +2024,2,3,1,Queensland,153.249463,-27.511596 +2024,1,15,1,Queensland,153.250197,-27.51142 +2023,1,13,1,Queensland,153.24842,-27.490753 +2024,6,11,1,Queensland,153.247118,-27.511455 +2023,9,26,1,Queensland,153.300705,-27.570202 +2022,11,15,1,Queensland,153.245804,-27.497417 +2024,5,7,1,Queensland,153.250152,-27.511446 +2024,3,22,1,Queensland,153.250036,-27.511324 +2022,8,5,1,Queensland,153.248763,-27.489996 +2023,5,16,1,Queensland,153.244461,-27.491486 +2023,12,11,1,Queensland,153.256375,-27.513678 +2024,2,23,1,Queensland,153.25007,-27.511361 +2024,1,30,1,Queensland,153.271873,-27.574861 +2021,5,23,1,Queensland,153.25225,-27.501294 +2024,7,8,1,Queensland,153.199127,-27.613783 +2023,5,16,1,Queensland,153.232788,-27.506847 +2024,6,5,1,Queensland,153.25377,-27.511738 +2024,10,11,1,Queensland,153.441801,-27.397093 +2024,6,21,1,Queensland,153.297348,-27.567339 +2021,4,17,1,Queensland,153.258054,-27.546338 +2024,7,30,1,Queensland,153.251003,-27.509208 +2020,10,19,1,Queensland,153.250292,-27.502188 +2021,10,9,1,Queensland,153.441701,-27.395325 +2024,10,14,1,Queensland,153.198517,-27.612688 +2024,11,16,1,Queensland,153.253611,-27.511812 +2023,11,7,1,Queensland,153.199979,-27.492293 +2024,2,16,1,Queensland,153.271412,-27.57587 +2024,2,18,1,Queensland,153.198517,-27.612635 +2024,9,24,1,Queensland,153.245887,-27.496433 +2021,3,27,1,Queensland,153.247905,-27.490843 +2024,9,23,1,Queensland,153.272881,-27.572853 +2024,10,19,1,Queensland,153.247906,-27.510106 +2023,4,5,1,Queensland,153.248121,-27.505642 +2023,11,7,1,Queensland,153.201416,-27.511133 +2021,10,28,1,Queensland,153.248551,-27.49071 +2024,3,31,1,Queensland,153.251938,-27.514497 +2021,3,10,1,Queensland,153.249308,-27.489868 +2024,2,13,1,Queensland,153.233261,-27.506916 +2024,8,5,1,Queensland,153.298584,-27.569809 +2023,2,10,1,Queensland,153.240804,-27.51558 +2024,5,31,1,Queensland,153.27213,-27.576725 +2021,4,14,1,Queensland,153.252566,-27.501323 +2021,9,26,1,Queensland,153.248756,-27.489884 +2024,1,28,1,Queensland,153.27154,-27.574348 +2023,8,26,1,Queensland,153.250812,-27.511671 +2020,12,31,1,Queensland,153.243727,-27.511604 +2024,7,12,1,Queensland,153.250047,-27.511358 +2024,5,17,1,Queensland,153.247309,-27.511495 +2024,7,8,1,Queensland,153.204208,-27.508854 +2023,4,27,1,Queensland,153.246674,-27.498552 +2023,3,12,1,Queensland,153.249388,-27.490269 +2024,6,7,1,Queensland,153.251897,-27.509277 +2024,1,1,1,Queensland,153.250114,-27.511377 +2023,8,24,1,Queensland,153.245547,-27.490661 +2021,1,11,1,Queensland,153.245244,-27.495724 +2023,8,8,1,Queensland,153.256197,-27.548571 +2023,5,6,1,Queensland,153.254213,-27.49413 +2023,10,19,1,Queensland,153.245035,-27.490958 +2024,7,22,1,Queensland,153.23317,-27.505762 +2022,12,6,1,Queensland,153.438745,-27.400139 +2024,2,11,1,Queensland,153.271326,-27.575813 +2022,5,8,1,Queensland,153.281636,-27.53216 +2024,1,26,1,Queensland,153.250082,-27.511426 +2024,9,23,1,Queensland,153.255906,-27.513961 +2023,10,25,1,Queensland,153.230561,-27.500528 +2024,2,6,1,Queensland,153.244995,-27.489908 +2024,10,23,1,Queensland,153.253763,-27.511717 +2024,6,16,1,Queensland,153.253759,-27.511752 +2024,4,18,1,Queensland,153.20284,-27.50686 +2023,9,25,1,Queensland,153.239813,-27.515371 +2024,8,26,1,Queensland,153.204086,-27.509441 +2023,3,7,1,Queensland,153.246002,-27.488152 +2022,10,14,1,Queensland,153.438831,-27.395546 +2024,8,11,1,Queensland,153.250581,-27.511725 +2023,4,23,1,Queensland,153.252894,-27.511766 +2023,4,6,1,Queensland,153.272377,-27.573549 +2021,10,8,1,Queensland,153.439524,-27.401279 +2024,10,14,1,Queensland,153.198837,-27.614206 +2020,10,12,1,Queensland,153.217872,-27.547014 +2021,6,7,1,Queensland,153.248624,-27.491046 +2023,11,28,1,Queensland,153.245004,-27.495493 +2024,5,26,1,Queensland,153.250343,-27.511298 +2022,8,15,1,Queensland,153.23949,-27.614897 +2024,5,17,1,Queensland,153.258956,-27.502456 +2024,7,14,1,Queensland,153.253797,-27.511763 +2024,9,9,1,Queensland,153.304671,-27.564762 +2023,10,23,1,Queensland,153.199931,-27.614331 +2023,10,26,1,Queensland,153.242061,-27.513099 +2024,5,23,1,Queensland,153.232529,-27.501648 +2021,6,24,1,Queensland,153.248027,-27.490804 +2022,10,19,1,Queensland,153.246078,-27.488783 +2023,11,24,1,Queensland,153.246275,-27.498084 +2022,8,27,1,Queensland,153.248763,-27.532887 +2022,12,7,1,Queensland,153.440313,-27.396252 +2023,12,11,1,Queensland,153.250028,-27.511613 +2023,11,21,1,Queensland,153.245361,-27.491432 +2023,10,3,1,Queensland,153.197084,-27.61302 +2023,10,20,1,Queensland,153.223079,-27.499515 +2024,1,12,1,Queensland,153.246343,-27.496058 +2022,10,14,1,Queensland,153.439335,-27.396799 +2022,8,22,1,Queensland,153.272152,-27.536693 +2023,11,1,1,Queensland,153.282333,-27.526978 +2023,9,16,1,Queensland,153.276611,-27.52652 +2024,5,28,1,Queensland,153.272012,-27.57644 +2022,10,14,1,Queensland,153.540064,-27.429374 +2023,11,10,1,Queensland,153.271025,-27.575451 +2021,8,2,1,Queensland,153.248656,-27.489795 +2020,9,7,1,Queensland,153.247893,-27.490843 +2023,4,4,1,Queensland,153.272978,-27.574805 +2022,3,8,1,Queensland,153.248215,-27.511166 +2023,6,22,1,Queensland,153.28189,-27.58511 +2021,10,9,1,Queensland,153.528642,-27.430692 +2021,4,2,1,Queensland,153.242286,-27.512832 +2024,1,29,1,Queensland,153.250417,-27.511421 +2024,5,13,1,Queensland,153.29462,-27.56886 +2023,11,8,1,Queensland,153.243691,-27.491379 +2023,10,22,1,Queensland,153.269974,-27.575147 +2023,8,8,1,Queensland,153.244934,-27.490023 +2023,9,9,1,Queensland,153.239874,-27.515362 +2023,10,24,1,Queensland,153.269738,-27.575128 +2023,2,17,1,Queensland,153.251499,-27.514921 +2024,6,10,1,Queensland,153.256091,-27.514446 +2023,10,5,1,Queensland,153.225418,-27.502679 +2024,7,26,1,Queensland,153.298528,-27.56934 +2024,9,4,1,Queensland,153.245417,-27.490384 +2023,7,29,1,Queensland,153.249031,-27.511507 +2022,11,7,1,Queensland,153.275027,-27.538908 +2024,10,21,1,Queensland,153.247345,-27.509909 +2024,5,18,1,Queensland,153.247709,-27.511416 +2024,1,7,1,Queensland,153.245922,-27.497652 +2023,11,9,1,Queensland,153.270897,-27.575547 +2024,8,31,1,Queensland,153.251063,-27.509414 +2020,11,28,1,Queensland,153.249042,-27.489863 +2023,12,29,1,Queensland,153.250906,-27.511668 +2021,7,15,1,Queensland,153.261362,-27.519105 +2023,10,15,1,Queensland,153.224364,-27.500892 +2024,8,8,1,Queensland,153.251259,-27.511685 +2024,9,2,1,Queensland,153.248291,-27.511168 +2023,10,14,1,Queensland,153.250893,-27.511627 +2022,2,20,1,Queensland,153.242544,-27.489266 +2020,12,23,1,Queensland,153.272184,-27.554271 +2020,11,18,1,Queensland,153.245066,-27.511477 +2020,11,17,1,Queensland,153.248066,-27.490655 +2024,6,8,1,Queensland,153.250124,-27.511373 +2024,7,15,1,Queensland,153.250432,-27.511711 +2020,10,10,1,Queensland,153.248012,-27.490575 +2023,8,13,1,Queensland,153.202225,-27.511963 +2024,6,24,1,Queensland,153.199539,-27.612726 +2023,10,17,1,Queensland,153.253504,-27.493754 +2024,8,14,1,Queensland,153.251712,-27.509298 +2020,10,31,1,Queensland,153.248174,-27.490522 +2022,11,4,1,Queensland,153.282967,-27.531983 +2024,1,28,1,Queensland,153.271101,-27.575774 +2024,2,13,1,Queensland,153.201843,-27.510988 +2024,3,5,1,Queensland,153.199799,-27.612799 +2023,3,29,1,Queensland,153.27065,-27.538909 +2020,9,28,1,Queensland,153.245421,-27.490504 +2020,11,11,1,Queensland,153.248197,-27.490529 +2024,1,8,1,Queensland,153.271755,-27.574919 +2024,2,18,1,Queensland,153.271369,-27.57587 +2022,10,24,1,Queensland,153.227493,-27.516808 +2021,7,26,1,Queensland,153.248463,-27.490137 +2024,1,9,1,Queensland,153.250298,-27.51127 +2023,9,5,1,Queensland,153.24559,-27.49058 +2022,4,27,1,Queensland,153.248538,-27.490511 +2022,12,4,1,Queensland,153.438054,-27.400582 +2024,5,21,1,Queensland,153.197296,-27.515013 +2023,12,4,1,Queensland,153.250964,-27.511808 +2023,3,3,1,Queensland,153.248387,-27.490512 +2022,8,30,1,Queensland,153.249321,-27.490302 +2020,9,7,1,Queensland,153.147819,-27.528838 +2024,9,4,1,New South Wales,153.367917,-29.097702 +2024,1,2,1,Queensland,153.255961,-27.513656 +2024,7,14,1,New South Wales,152.515385,-31.406387 +2024,1,12,1,Queensland,153.250177,-27.511352 +2024,8,5,1,New South Wales,152.515435,-31.406542 +2021,4,16,1,South Australia,137.612458,-35.671986 +2021,1,20,1,Victoria,145.974733,-38.293495 +2024,10,10,1,Victoria,146.943719,-36.190069 +2022,8,5,1,New South Wales,152.515445,-31.406556 +2023,4,6,1,Queensland,153.248125,-27.505642 +2024,10,6,1,New South Wales,146.584698,-34.774423 +2021,12,14,1,New South Wales,149.258156,-35.344156 +2022,12,13,1,New South Wales,152.515429,-31.406537 +2023,12,6,1,Queensland,153.255956,-27.513755 +2023,12,16,1,Queensland,153.255948,-27.513577 +2021,1,24,2,Queensland,153.32893,-27.89083 +2022,8,31,1,New South Wales,152.515425,-31.406531 +2021,12,6,1,Victoria,146.693055,-36.347897 +2022,12,5,1,New South Wales,152.515447,-31.406544 +2020,11,24,2,Queensland,153.32939,-27.89044 +2024,10,6,1,New South Wales,146.582685,-34.767326 +2020,8,5,1,Victoria,146.952283,-36.128619 +2023,12,13,1,Queensland,153.255998,-27.513423 +2024,1,6,1,Queensland,153.250462,-27.511582 +2024,1,23,1,Queensland,153.250637,-27.511432 +2023,12,31,1,Victoria,147.727758,-37.922175 +2021,12,7,2,Queensland,153.32912,-27.89065 +2023,8,15,1,Queensland,146.850267,-19.144123 +2022,2,19,1,New South Wales,152.515439,-31.406549 +2023,12,15,1,Queensland,153.25001,-27.511477 +2023,9,21,1,Queensland,153.01229,-27.157634 +2022,9,7,1,Australian Capital Territory,148.9,-35.46 +2023,8,6,1,New South Wales,149.24678,-35.740311 +2024,9,7,1,New South Wales,150.055861,-34.759756 +2024,1,4,1,New South Wales,152.378037,-29.450684 +2021,8,13,1,New South Wales,152.515444,-31.406545 +2024,8,10,1,New South Wales,152.515464,-31.406547 +2024,2,8,1,New South Wales,152.903081,-30.42415 +2023,10,16,1,Victoria,145.646006,-35.893712 +2023,12,31,1,Victoria,147.731339,-37.923523 +2023,12,31,1,Victoria,147.727001,-37.920219 +2023,10,18,1,New South Wales,145.411771,-35.834042 +2023,12,31,1,Victoria,147.730679,-37.923845 +2023,12,31,1,Victoria,147.729917,-37.924839 +2020,9,17,1,New South Wales,153.549826,-28.556631 +2020,8,11,1,New South Wales,149.270075,-35.573406 +2024,8,9,1,New South Wales,149.288926,-35.357073 +2023,10,27,1,South Australia,140.066092,-36.819902 +2020,10,13,2,Queensland,153.31931,-27.9019 +2024,2,20,1,New South Wales,151.644948,-30.490998 +2021,9,19,1,New South Wales,152.515446,-31.406525 +2022,7,4,1,Queensland,146.869125,-19.131206 +2023,12,16,1,Queensland,153.250148,-27.511402 +2024,10,29,1,Victoria,146.609723,-36.128428 +2023,11,2,1,New South Wales,152.515436,-31.406556 +2022,9,23,1,Victoria,144.949726,-35.929174 +2020,9,2,2,Queensland,153.35694,-27.93897 +2024,10,6,1,New South Wales,146.586836,-34.771078 +2024,1,12,1,Queensland,153.256025,-27.512852 +2023,9,15,1,New South Wales,152.515437,-31.406528 +2024,8,16,1,Queensland,146.865067,-19.130797 +2024,1,12,1,Queensland,153.250182,-27.511338 +2023,4,6,1,Queensland,153.248121,-27.505642 +2024,9,4,1,New South Wales,153.367956,-29.097656 +2020,9,4,1,Victoria,146.835102,-36.258999 +2023,10,31,1,New South Wales,150.340867,-33.259925 +2021,10,20,1,Queensland,151.637059,-25.426213 +2020,7,12,1,Queensland,151.637059,-25.426213 +2020,8,31,1,Queensland,151.637059,-25.426213 +2020,8,4,1,Queensland,151.637059,-25.426213 +2022,12,18,2,Queensland,153.37488,-27.91196 +2021,10,18,1,Queensland,151.637059,-25.426213 +2020,11,29,1,Queensland,151.637059,-25.426213 +2020,4,8,1,Queensland,151.637059,-25.426213 +2022,9,15,2,Queensland,153.36234,-27.94029 +2021,10,22,1,Queensland,151.637059,-25.426213 +2020,7,7,1,Queensland,151.637059,-25.426213 +2021,7,31,1,Queensland,151.637059,-25.426213 +2022,4,8,1,Queensland,151.637059,-25.426213 +2023,10,28,2,Queensland,153.36353,-27.92957 +2022,1,28,1,Queensland,151.637059,-25.426213 +2020,3,8,1,Queensland,151.637059,-25.426213 +2021,11,6,1,Queensland,148.87172,-21.44091 +2023,1,13,1,Queensland,148.738861,-21.740289 +2022,1,16,1,Queensland,148.69175,-21.69772 +2023,1,8,1,Queensland,148.673447,-21.665972 +2024,4,10,1,Queensland,148.934,-21.88226 +2023,11,5,1,Queensland,149.301386,-22.3614 +2021,8,22,1,Queensland,148.603064,-21.720775 +2024,4,27,1,Queensland,148.50992,-21.44374 +2023,9,10,1,Queensland,148.75863,-21.55624 +2022,11,19,1,Queensland,148.7316,-21.72761 +2023,9,18,1,Queensland,148.890556,-21.22 +2021,11,1,1,Queensland,148.686438,-21.684184 +2023,4,25,1,Queensland,148.769217,-21.147226 +2023,8,9,1,Queensland,148.90262,-21.41861 +2021,3,11,1,Queensland,148.844994,-21.464029 +2022,8,22,1,Queensland,148.79285,-21.50758 +2022,2,11,1,Queensland,148.68821,-21.68917 +2023,3,2,1,Queensland,148.694628,-21.638394 +2023,10,9,1,Queensland,148.98936,-21.68791 +2022,11,16,1,Queensland,148.86458,-21.44865 +2021,6,28,1,Queensland,148.940744,-21.362623 +2021,6,24,1,Queensland,148.684376,-21.687228 +2021,7,29,1,Queensland,148.693511,-21.697453 +2021,8,27,1,Queensland,148.75706,-21.55978 +2023,1,7,1,Queensland,148.740556,-21.74255 +2021,8,14,1,Queensland,148.687408,-21.679617 +2022,3,9,1,Queensland,148.69152,-21.697129 +2021,6,8,1,Queensland,148.936182,-21.341088 +2023,4,11,1,Queensland,148.685502,-21.68536 +2022,10,12,1,Queensland,148.901467,-21.41949 +2022,11,9,1,Queensland,148.741111,-21.155562 +2021,4,6,1,Queensland,149.665704,-22.895664 +2023,1,3,1,Queensland,148.68915,-21.69213 +2023,4,11,1,Queensland,148.882468,-21.4308 +2021,10,30,1,Queensland,148.692424,-21.723569 +2021,10,28,1,Queensland,148.7455,-21.75 +2022,11,7,1,Queensland,149.15072,-22.44774 +2023,9,6,1,Queensland,148.831744,-21.468526 +2021,9,17,1,Queensland,148.737984,-21.738697 +2022,1,27,1,Queensland,148.67479,-21.66757 +2023,1,11,1,Queensland,148.690186,-21.694967 +2022,1,13,1,Queensland,148.67147,-21.63675 +2023,1,12,1,Queensland,148.73836,-21.73946 +2022,8,22,1,Queensland,148.94458,-21.37118 +2024,9,19,1,Queensland,148.925903,-21.405022 +2023,4,18,1,Queensland,148.849308,-21.462246 +2022,1,18,1,Queensland,148.70249,-21.68083 +2021,9,9,1,Queensland,148.829154,-21.469343 +2022,1,24,1,Queensland,148.67876,-21.67456 +2023,4,7,1,Queensland,148.86668,-21.44628 +2021,6,28,1,Queensland,148.732544,-21.729384 +2021,7,23,1,Queensland,148.694084,-21.649771 +2023,1,5,1,Queensland,148.742661,-21.747203 +2023,8,2,1,Queensland,148.73036,-21.60575 +2021,9,9,1,Queensland,148.690111,-21.69499 +2021,10,6,1,Queensland,148.73195,-21.72854 +2023,9,25,1,Queensland,149.091178,-21.361563 +2021,7,5,1,Queensland,148.643788,-21.706344 +2021,10,7,1,Queensland,148.685829,-21.682643 +2023,4,13,1,Queensland,148.668639,-21.695761 +2021,8,16,1,Queensland,148.77317,-21.897515 +2022,12,18,1,Queensland,148.69184,-21.66979 +2021,9,24,1,Queensland,148.885792,-21.430022 +2023,4,13,1,Queensland,148.692185,-21.724463 +2021,8,27,1,Queensland,148.748752,-21.571997 +2021,9,26,1,Queensland,148.688994,-21.695235 +2024,5,14,1,Queensland,148.68404,-21.68353 +2023,1,3,1,Queensland,148.63443,-21.7096 +2023,4,27,1,Queensland,149.017171,-21.172369 +2023,1,15,1,Queensland,148.690111,-21.694886 +2021,10,15,1,Queensland,149.00687,-21.6387 +2022,11,16,1,Queensland,148.82925,-21.46944 +2021,6,9,1,Queensland,148.7739,-21.775214 +2022,12,18,1,Queensland,148.75039,-21.75774 +2021,10,10,1,Queensland,148.6715,-21.63979 +2022,8,22,1,Queensland,148.84554,-21.46367 +2021,10,12,1,Queensland,148.69499,-21.70466 +2023,2,2,1,Queensland,148.70218,-21.71248 +2022,3,1,1,Queensland,148.33594,-22.57595 +2023,1,14,1,Queensland,148.73867,-21.73948 +2024,7,31,1,Queensland,148.883286,-21.43007 +2022,1,18,1,Queensland,148.6918,-21.69772 +2022,9,25,1,Queensland,148.889339,-21.427998 +2023,7,19,1,Queensland,148.75185,-21.7603 +2021,7,4,1,Queensland,149.293631,-21.2984 +2022,3,18,1,Queensland,148.68766,-21.6932 +2023,7,26,1,Queensland,148.77104,-21.53076 +2022,8,2,1,Queensland,148.792198,-21.770102 +2021,10,23,1,Queensland,148.689298,-21.696903 +2021,10,28,1,Queensland,148.6826,-21.67999 +2023,7,20,1,Queensland,148.9099,-21.41156 +2022,2,28,1,Queensland,148.690415,-21.697514 +2021,10,14,1,Queensland,148.69828,-21.70488 +2021,11,6,1,Queensland,148.691583,-21.697828 +2020,9,18,1,Queensland,148.904036,-21.417731 +2023,7,12,1,Queensland,148.78842,-21.5092 +2024,9,13,1,Queensland,148.71306,-21.61781 +2021,10,27,1,Queensland,148.7304,-21.72609 +2022,8,8,1,Queensland,148.92198,-21.4071 +2024,9,15,1,Queensland,148.9074,-21.41372 +2024,4,29,1,Queensland,149.144743,-21.450521 +2021,8,14,1,Queensland,148.63974,-21.707798 +2022,12,15,1,Queensland,148.73474,-21.73278 +2022,2,5,1,Queensland,148.72893,-21.72371 +2021,9,8,1,Queensland,148.690744,-21.696708 +2020,9,3,1,Queensland,149.056837,-21.17818 +2021,10,27,1,Queensland,148.67777,-21.67299 +2023,11,7,1,Queensland,149.125886,-21.467275 +2023,5,8,1,Queensland,148.973206,-21.726675 +2023,7,31,1,Queensland,149.062157,-21.333656 +2021,8,12,1,Queensland,148.686515,-21.684673 +2021,6,28,1,Queensland,148.746506,-21.751697 +2023,6,3,1,Queensland,148.858889,-21.455278 +2022,2,16,1,Queensland,148.69208,-21.67353 +2020,5,3,1,Queensland,148.759155,-21.555189 +2021,10,10,1,Queensland,148.68949,-21.6928 +2021,9,25,1,Queensland,148.689787,-21.684834 +2022,10,4,1,Queensland,148.87216,-21.44043 +2023,1,3,1,Queensland,148.787456,-21.771028 +2023,11,2,1,Queensland,148.93709,-21.39485 +2020,8,24,1,Queensland,148.758852,-21.555824 +2023,9,30,1,Queensland,149.067277,-21.189402 +2023,11,5,1,Queensland,149.526547,-22.533783 +2021,10,4,1,Queensland,148.72174,-21.7121 +2021,7,16,1,Queensland,149.116347,-21.512169 +2022,1,31,1,Queensland,148.73903,-21.59844 +2022,10,15,1,Queensland,148.6938,-21.65952 +2023,1,6,1,Queensland,148.754058,-21.76495 +2022,1,22,1,Queensland,148.689275,-21.698164 +2021,11,6,1,Queensland,148.92476,-21.40588 +2022,11,16,1,Queensland,148.49357,-21.54635 +2023,4,10,1,Queensland,148.68274,-21.68833 +2022,1,10,1,Queensland,148.71492,-21.70834 +2021,8,18,1,Queensland,148.875278,-21.437361 +2023,10,17,1,Queensland,148.67252,-21.81843 +2023,8,9,1,Queensland,148.93766,-21.39404 +2022,4,17,1,Queensland,148.690519,-21.697395 +2021,10,14,1,Queensland,148.74938,-21.75605 +2024,9,9,1,Queensland,148.7974,-21.5038 +2022,9,28,1,Queensland,148.89982,-21.42063 +2022,2,9,1,Queensland,148.67614,-21.67025 +2022,7,26,1,Queensland,148.911986,-21.410577 +2022,2,1,1,Queensland,148.723,-21.71469 +2020,11,9,1,Queensland,148.749585,-21.570879 +2023,4,11,1,Queensland,148.698411,-21.624775 +2024,1,12,1,Queensland,148.143666,-23.865867 +2024,1,28,1,Queensland,150.091944,-22.565278 +2023,11,25,1,Queensland,148.961502,-21.415226 +2024,5,5,1,Queensland,149.06183,-22.186 +2023,4,11,1,Queensland,148.6996,-21.623692 +2022,9,26,1,Queensland,149.009915,-21.657006 +2023,10,21,1,Queensland,149.0628,-21.324594 +2021,11,29,1,Queensland,148.69154,-21.69757 +2023,9,27,1,Queensland,148.693444,-21.697463 +2023,10,18,1,Queensland,148.701837,-21.714942 +2021,10,10,1,Queensland,148.6825,-21.67999 +2021,7,31,1,Queensland,149.088378,-21.363971 +2023,11,5,1,Queensland,149.249474,-22.409976 +2023,11,22,1,Queensland,148.68225,-21.80913 +2022,10,24,1,Queensland,148.69046,-21.69743 +2021,8,8,1,Queensland,148.662342,-21.698894 +2022,11,4,1,Queensland,148.72844,-21.60703 +2022,1,16,1,Queensland,148.75244,-21.76158 +2023,4,10,1,Queensland,148.71103,-21.70782 +2022,10,19,1,Queensland,148.69239,-21.67559 +2023,9,6,1,Queensland,148.941075,-21.35417 +2021,8,24,1,Queensland,148.733114,-21.730259 +2021,7,23,1,Queensland,148.693509,-21.632385 +2021,10,6,1,Queensland,148.74045,-21.74305 +2022,12,19,1,Queensland,148.69337,-21.68106 +2023,4,11,1,Queensland,148.881961,-21.431334 +2023,5,1,1,Queensland,148.69249,-21.6783 +2023,9,24,1,Queensland,148.67603,-21.67004 +2021,9,28,1,Queensland,148.718112,-21.616379 +2022,3,30,1,Queensland,148.936667,-21.395575 +2022,1,26,1,Queensland,148.68919,-21.69209 +2020,8,19,1,Queensland,149.258318,-22.637773 +2024,6,5,1,Queensland,148.86249,-21.45211 +2021,10,7,1,Queensland,148.93438,-21.314 +2021,8,18,1,Queensland,148.88019,-21.432206 +2021,8,20,1,Queensland,148.733651,-21.731006 +2021,9,6,1,Queensland,148.690602,-21.696513 +2022,1,31,1,Queensland,148.782618,-21.514766 +2021,10,14,1,Queensland,148.73719,-21.73737 +2020,8,11,1,Queensland,148.673874,-21.692681 +2023,2,26,1,Queensland,148.87499,-21.4374 +2020,10,1,1,Queensland,149.056564,-21.1819 +2020,10,10,1,Queensland,149.6325,-22.8947 +2022,10,31,1,Queensland,148.863912,-21.449879 +2022,1,30,1,Queensland,148.69951,-21.70493 +2022,1,13,1,Queensland,148.72574,-21.71887 +2021,7,28,1,Queensland,148.690601,-21.69674 +2022,10,3,1,Queensland,148.87216,-21.44043 +2022,12,7,1,Queensland,147.515653,-22.547064 +2023,2,26,1,Queensland,148.92998,-21.40202 +2023,1,3,1,Queensland,148.67117,-21.6359 +2024,6,23,1,Queensland,148.74777,-21.57482 +2023,6,7,1,Queensland,148.7023,-21.70552 +2022,1,31,1,Queensland,148.71667,-21.61609 +2023,10,29,1,Queensland,148.68976,-21.69347 +2023,7,5,1,Queensland,148.77158,-21.5302 +2021,8,27,1,Queensland,148.718432,-21.614753 +2022,9,7,1,Queensland,148.93396,-21.39862 +2023,6,23,1,Queensland,148.688568,-21.691213 +2023,8,24,1,Queensland,148.803,-21.49723 +2024,9,10,1,Queensland,148.9003,-21.42022 +2023,5,18,1,Queensland,148.92697,-21.40432 +2020,8,7,1,Queensland,148.81361,-21.478953 +2021,10,16,1,Queensland,148.794811,-21.506748 +2021,12,8,1,Queensland,148.85728,-21.45656 +2023,8,2,1,Queensland,148.73146,-21.60516 +2022,12,18,1,Queensland,148.69936,-21.69989 +2023,11,22,1,Queensland,148.69247,-21.67896 +2023,11,2,1,Queensland,148.74493,-21.58468 +2023,4,11,1,Queensland,148.682983,-21.681347 +2023,1,8,1,Queensland,148.72308,-21.71498 +2021,1,16,1,Queensland,149.553872,-22.638613 +2023,1,4,1,Queensland,148.88178,-21.43135 +2022,1,29,1,Queensland,148.68076,-21.67852 +2021,10,4,1,Queensland,148.73152,-21.72792 +2023,1,14,1,Queensland,148.68766,-21.68906 +2022,11,2,1,Queensland,148.93736,-21.394482 +2024,9,17,1,Queensland,148.70232,-21.71106 +2023,11,6,1,Queensland,148.327759,-22.435194 +2023,4,7,1,Queensland,148.71443,-21.61675 +2023,10,23,1,Queensland,148.88919,-21.42809 +2020,8,16,1,Queensland,148.688053,-21.68978 +2023,10,11,1,Queensland,148.73683,-21.73662 +2023,6,24,1,Queensland,148.932,-21.40051 +2022,10,17,1,Queensland,148.9202,-21.40784 +2020,7,6,1,Queensland,148.882521,-21.43117 +2023,10,23,1,Queensland,148.90554,-21.41626 +2024,8,23,1,Queensland,148.936447,-21.318725 +2022,10,11,1,Queensland,148.68974,-21.69377 +2023,4,21,1,Queensland,148.745836,-21.750361 +2021,5,13,1,Queensland,148.911972,-21.410667 +2023,10,21,1,Queensland,148.69031,-21.69795 +2021,9,16,1,Queensland,148.69545,-21.7442 +2023,1,7,1,Queensland,148.740556,-21.74255 +2023,11,5,1,Queensland,149.245439,-22.40987 +2021,10,11,1,Queensland,148.72897,-21.72377 +2023,1,30,1,Queensland,148.68145,-21.6791 +2022,8,23,1,Queensland,148.75121,-21.22156 +2020,9,3,1,Queensland,148.743428,-21.747955 +2022,11,12,1,Queensland,148.744567,-21.750061 +2021,7,26,1,Queensland,148.599752,-21.721923 +2023,4,4,1,Queensland,148.782809,-21.515067 +2023,4,19,1,Queensland,148.68217,-21.67868 +2023,11,27,1,Queensland,148.677769,-21.20251 +2022,1,24,1,Queensland,148.72659,-21.72012 +2023,11,8,1,Queensland,148.941237,-21.36664 +2021,8,6,1,Queensland,148.691368,-21.697032 +2023,1,5,1,Queensland,148.737092,-21.736881 +2022,1,16,1,Queensland,148.73475,-21.73285 +2022,10,23,1,Queensland,148.84544,-21.46378 +2022,12,18,1,Queensland,148.69184,-21.67004 +2021,5,3,1,Queensland,148.47122,-20.06635 +2023,10,8,1,Queensland,148.84752,-21.46306 +2022,1,24,1,Queensland,148.68076,-21.67846 +2024,9,7,1,Queensland,148.835328,-21.467733 +2021,8,24,1,Queensland,148.733034,-21.73011 +2021,10,8,1,Queensland,148.59979,-21.7219 +2022,2,11,1,Queensland,148.68945,-21.6925 +2022,11,4,1,Queensland,148.81278,-21.47959 +2022,8,22,1,Queensland,148.72428,-21.61054 +2023,12,16,1,Queensland,148.700619,-21.722666 +2023,9,28,1,Queensland,149.062276,-21.160681 +2023,4,20,1,Queensland,148.687714,-21.680672 +2021,8,15,1,Queensland,148.691697,-21.697164 +2022,9,12,1,Queensland,149.026866,-21.621734 +2023,10,20,1,Queensland,148.68732,-21.69161 +2022,2,5,1,Queensland,148.75521,-21.76771 +2022,1,18,1,Queensland,148.688005,-21.690036 +2021,10,14,1,Queensland,148.73075,-21.72642 +2021,10,11,1,Queensland,148.7337,-21.73079 +2023,9,28,1,Queensland,149.736029,-22.734856 +2021,3,23,1,Queensland,148.877629,-21.434703 +2022,2,25,1,Queensland,149.104602,-21.551562 +2022,1,14,1,Queensland,148.75727,-21.5595 +2022,2,17,1,Queensland,148.84775,-21.4628 +2021,10,17,1,Queensland,148.687868,-21.634602 +2021,10,26,1,Queensland,148.73042,-21.72599 +2024,8,2,1,Queensland,148.713636,-21.152027 +2022,10,23,1,Queensland,148.89621,-21.42303 +2022,1,30,1,Queensland,148.68433,-21.68533 +2024,9,2,1,Queensland,148.77609,-21.52355 +2023,4,18,1,Queensland,148.674303,-21.634153 +2023,9,11,1,Queensland,148.78046,-21.51907 +2021,8,27,1,Queensland,148.759185,-21.551779 +2021,9,26,1,Queensland,148.68787,-21.693033 +2023,10,7,1,Queensland,149.076107,-21.362195 +2020,8,15,1,Queensland,148.836267,-21.531283 +2024,6,5,1,Queensland,148.91199,-21.41058 +2023,9,25,1,Queensland,148.61576,-21.8451 +2021,10,14,1,Queensland,148.75808,-21.77337 +2021,7,27,1,Queensland,148.819045,-21.4728 +2023,1,13,1,Queensland,148.737442,-21.737981 +2024,3,10,1,Queensland,148.68478,-21.68564 +2022,12,3,1,Queensland,147.63591,-22.82075 +2021,10,13,1,Queensland,148.68887,-21.69124 +2020,8,22,1,Queensland,148.762007,-21.777511 +2022,12,14,1,Queensland,148.68476,-21.68604 +2023,1,2,1,Queensland,148.68594,-21.68293 +2023,5,15,1,Queensland,148.74504,-21.75045 +2022,1,10,1,Queensland,148.722132,-22.807321 +2024,9,12,1,Queensland,148.725631,-21.718825 +2023,9,28,1,Queensland,149.535348,-22.604407 +2021,7,25,1,Queensland,148.602047,-21.721097 +2021,9,18,1,Queensland,149.227195,-21.363446 +2021,10,3,1,Queensland,148.699886,-21.700858 +2021,9,25,1,Queensland,148.684405,-21.687154 +2020,11,12,1,Queensland,148.768852,-21.533096 +2023,4,10,1,Queensland,148.692244,-21.697797 +2021,6,26,1,Queensland,148.686841,-21.685744 +2023,5,30,1,Queensland,148.75474,-21.56307 +2023,10,8,1,Queensland,148.88577,-21.4301 +2023,1,6,1,Queensland,148.720536,-21.709889 +2024,9,10,1,Queensland,148.692397,-21.676397 +2023,9,12,1,Queensland,148.89004,-21.42747 +2023,10,29,1,Queensland,148.70223,-21.70548 +2021,6,29,1,Queensland,148.651736,-21.703682 +2022,12,14,1,Queensland,148.72794,-21.72246 +2021,10,5,1,Queensland,148.688985,-21.698923 +2022,9,21,1,Queensland,148.685565,-21.760852 +2023,1,13,1,Queensland,148.753661,-21.764044 +2021,6,2,1,Queensland,148.341315,-22.586391 +2022,9,24,1,Queensland,148.695833,-21.695278 +2022,1,5,1,Queensland,148.691745,-21.697975 +2024,7,3,1,Queensland,148.871872,-21.440858 +2023,8,11,1,Queensland,148.9481,-21.37743 +2022,3,4,1,Queensland,148.691695,-21.697718 +2022,3,24,1,Queensland,148.686338,-21.69 +2021,10,14,1,Queensland,148.74277,-21.74653 +2021,10,11,1,Queensland,148.70842,-21.70692 +2021,10,7,1,Queensland,148.74245,-21.74722 +2023,9,6,1,Queensland,148.81729,-21.47682 +2022,11,7,1,Queensland,148.863147,-21.451114 +2021,8,19,1,Queensland,149.510622,-22.165481 +2024,7,24,1,Queensland,148.93218,-21.40031 +2024,1,18,1,Queensland,149.530278,-22.5625 +2024,9,13,1,Queensland,148.91844,-21.40827 +2022,8,20,1,Queensland,149.44215,-22.85089 +2021,8,8,1,Queensland,148.68801,-21.68051 +2024,5,13,1,Queensland,148.88713,-21.42947 +2020,10,26,1,Queensland,148.616049,-21.58386 +2023,9,5,1,Queensland,148.79181,-21.50804 +2024,2,8,1,Queensland,149.368565,-21.852232 +2023,9,25,1,Queensland,148.93745,-21.334237 +2022,12,15,1,Queensland,148.75953,-21.77515 +2023,11,2,1,Queensland,148.80568,-21.49117 +2023,8,22,1,Queensland,148.74352,-21.74776 +2024,9,19,1,Queensland,148.68184,-21.78891 +2021,8,26,1,Queensland,148.651679,-21.703823 +2022,2,18,1,Queensland,148.682157,-21.808491 +2023,5,23,1,Queensland,148.881905,-21.43124 +2022,11,6,1,Queensland,148.698063,-21.62519 +2022,1,15,1,Queensland,148.691636,-21.697797 +2023,4,23,1,Queensland,148.687028,-21.680406 +2022,1,16,1,Queensland,148.74269,-21.74687 +2023,8,7,1,Queensland,148.75985,-21.54505 +2020,1,3,1,Queensland,149.799167,-22.780196 +2023,8,31,1,Queensland,148.75001,-21.56979 +2022,1,13,1,Queensland,148.71082,-21.70792 +2022,9,12,1,Queensland,149.090309,-21.360294 +2021,11,6,1,Queensland,148.712356,-21.618123 +2021,9,21,1,Queensland,148.974164,-21.447943 +2021,9,26,1,Queensland,148.695354,-21.710836 +2021,10,26,1,Queensland,148.72261,-21.71373 +2023,9,1,1,Queensland,148.933006,-21.687282 +2022,3,26,1,Queensland,148.7597,-21.54729 +2023,4,10,1,Queensland,148.68293,-21.68136 +2022,9,26,1,Queensland,148.988519,-21.702653 +2022,9,13,1,Queensland,148.71302,-21.61771 +2021,9,27,1,Queensland,148.695354,-21.710836 +2022,10,29,1,Queensland,149.530293,-22.561213 +2021,8,27,1,Queensland,148.906003,-21.415588 +2024,9,27,1,Queensland,149.05709,-21.178407 +2024,4,27,1,Queensland,148.62658,-21.59233 +2023,7,18,1,Queensland,148.75859,-21.55608 +2024,4,24,1,Queensland,148.93503,-21.39747 +2021,11,29,1,Queensland,148.675066,-21.660628 +2023,9,10,1,Queensland,148.7466,-21.57897 +2022,1,24,1,Queensland,148.73468,-21.73287 +2022,2,6,1,Queensland,148.703292,-21.68554 +2021,11,11,1,Queensland,148.6879,-21.694289 +2022,1,31,1,Queensland,148.69144,-21.697067 +2023,10,16,1,Queensland,148.76759,-21.5341 +2023,11,19,1,Queensland,148.69228,-21.67633 +2022,8,1,1,Queensland,148.945586,-21.372089 +2024,8,27,1,Queensland,148.88675,-21.429697 +2020,8,22,1,Queensland,148.692313,-21.656102 +2021,9,14,1,Queensland,148.717797,-21.616221 +2022,3,26,1,Queensland,148.907913,-21.413252 +2021,10,28,1,Queensland,148.68957,-21.69312 +2021,10,6,1,Queensland,148.75246,-21.7615 +2022,2,1,1,Queensland,148.974103,-21.447659 +2021,7,4,1,Queensland,148.686489,-21.684673 +2021,8,15,1,Queensland,148.71498,-21.61681 +2022,1,14,1,Queensland,148.69176,-21.66656 +2020,9,27,1,Queensland,148.826742,-21.470191 +2021,10,19,1,Queensland,148.7391,-21.59834 +2021,7,25,1,Queensland,148.599835,-21.721877 +2021,10,5,1,Queensland,148.64235,-21.70694 +2023,4,11,1,Queensland,148.882223,-21.431224 +2021,10,14,1,Queensland,148.74652,-21.75169 +2021,10,14,1,Queensland,148.68932,-21.6925 +2021,10,14,1,Queensland,148.75808,-21.77337 +2022,10,10,1,Queensland,148.869169,-21.443495 +2022,2,19,1,Queensland,148.68453,-21.68615 +2022,1,14,1,Queensland,148.75727,-21.5595 +2021,10,14,1,Queensland,148.76039,-21.77691 +2021,8,28,1,Queensland,148.683134,-21.681808 +2023,9,11,1,Queensland,148.79089,-21.50819 +2022,9,4,1,Queensland,148.933215,-21.305585 +2022,1,31,1,Queensland,148.875551,-21.436691 +2023,10,23,1,Queensland,149.167364,-21.458241 +2022,11,4,1,Queensland,148.8822,-21.43136 +2021,10,14,1,Queensland,148.67886,-21.67457 +2021,11,5,1,Queensland,148.697739,-21.682005 +2024,8,18,1,Queensland,148.70596,-21.7059 +2021,11,29,1,Queensland,148.69265,-21.69712 +2023,4,11,1,Queensland,148.716597,-21.616042 +2024,8,18,1,Queensland,149.056491,-21.178253 +2021,11,5,1,Queensland,148.611948,-21.717728 +2021,10,3,1,Queensland,148.686028,-21.688059 +2021,7,26,1,Queensland,149.064368,-21.269948 +2021,10,3,1,Queensland,148.686465,-21.690178 +2023,1,8,1,Queensland,148.700714,-21.686044 +2022,3,1,1,Queensland,148.69137,-21.698201 +2022,9,21,1,Queensland,148.683173,-21.784282 +2023,1,8,1,Queensland,148.678728,-21.674606 +2022,1,10,1,Queensland,148.691046,-21.697693 +2022,2,22,1,Queensland,149.373567,-21.758552 +2022,4,27,1,Queensland,147.650233,-22.52195 +2023,4,8,1,Queensland,148.679214,-21.675269 +2021,11,6,1,Queensland,148.691907,-21.698128 +2023,1,3,1,Queensland,148.67601,-21.67031 +2021,12,23,1,Queensland,149.11656,-22.3922 +2021,8,24,1,Queensland,148.726591,-21.720116 +2023,5,24,1,Queensland,148.26649,-22.38548 +2022,2,1,1,Queensland,148.74045,-21.74301 +2020,9,10,1,Queensland,148.879832,-21.774331 +2024,3,2,1,Queensland,149.14588,-21.165825 +2021,6,1,1,Queensland,149.055608,-22.234589 +2022,8,26,1,Queensland,148.86192,-21.45277 +2020,8,14,1,Queensland,148.691599,-21.697095 +2021,10,5,1,Queensland,148.70396,-21.80351 +2022,1,14,1,Queensland,148.812754,-21.479418 +2021,12,5,1,Queensland,148.691721,-21.697728 +2023,4,10,1,Queensland,148.6904,-21.6956 +2021,10,12,1,Queensland,148.68952,-21.69203 +2020,10,27,1,Queensland,148.327837,-22.580988 +2023,4,11,1,Queensland,148.759353,-21.773932 +2024,4,12,1,Queensland,148.91116,-21.41089 +2024,8,30,1,Queensland,149.175107,-22.424425 +2021,8,10,1,Queensland,148.946647,-21.381199 +2022,2,12,1,Queensland,148.73359,-21.73074 +2021,11,27,1,Queensland,148.54461,-21.55364 +2021,10,26,1,Queensland,148.68834,-21.68926 +2020,8,11,1,Queensland,148.564854,-21.724162 +2023,9,29,1,Queensland,148.747441,-21.576017 +2022,3,24,1,Queensland,148.71423,-21.61695 +2021,10,21,1,Queensland,148.96076,-21.281867 +2022,12,15,1,Queensland,148.75953,-21.77515 +2023,9,6,1,Queensland,148.80205,-21.49866 +2021,10,8,1,Queensland,148.466148,-21.871336 +2021,7,20,1,Queensland,148.737247,-21.737515 +2024,9,7,1,Queensland,148.858978,-21.455289 +2021,7,2,1,Queensland,148.743435,-21.747497 +2023,1,8,1,Queensland,148.739806,-21.739853 +2024,9,1,1,Queensland,148.865096,-21.447765 +2021,10,14,1,Queensland,148.7474,-21.7532 +2023,4,10,1,Queensland,148.7591,-21.77424 +2024,9,17,1,Queensland,148.937628,-21.338755 +2021,9,23,1,Queensland,148.732988,-21.730106 +2023,11,2,1,Queensland,148.7761,-21.52359 +2022,9,20,1,Queensland,148.936436,-21.34256 +2023,11,14,1,Queensland,148.938898,-21.357021 +2022,9,12,1,Queensland,148.938389,-21.356564 +2022,9,4,1,Queensland,148.940781,-21.35195 +2023,1,8,1,Queensland,148.739303,-21.740489 +2021,10,26,1,Queensland,148.691831,-21.698091 +2021,10,13,1,Queensland,148.67865,-21.67417 +2021,9,7,1,Queensland,148.687555,-21.688334 +2022,1,18,1,Queensland,148.69109,-21.68908 +2021,6,28,1,Queensland,148.75486,-21.767622 +2023,9,11,1,Queensland,148.87686,-21.43567 +2023,5,12,1,Queensland,148.75934,-21.55078 +2021,10,17,1,Queensland,148.688282,-21.690448 +2023,1,31,1,Queensland,148.812164,-21.480144 +2023,1,3,1,Queensland,148.787456,-21.771028 +2022,10,15,1,Queensland,148.94454,-21.38407 +2022,11,6,1,Queensland,148.83165,-21.77151 +2021,10,27,1,Queensland,148.74036,-21.74309 +2023,5,30,1,Queensland,148.70355,-21.62181 +2021,10,6,1,Queensland,148.353545,-22.589626 +2022,2,20,1,Queensland,148.691382,-21.698159 +2020,11,18,1,Queensland,148.763792,-21.539313 +2020,11,29,1,Queensland,149.043281,-21.596687 +2022,12,31,1,Queensland,148.854104,-21.459385 +2022,11,7,1,Queensland,149.12908,-22.41166 +2021,6,29,1,Queensland,148.689425,-21.684923 +2021,10,13,1,Queensland,148.68479,-21.68488 +2023,5,30,1,Queensland,148.85466,-21.45876 +2021,10,10,1,Queensland,148.68931,-21.69249 +2021,10,11,1,Queensland,148.72897,-21.72377 +2021,9,16,1,Queensland,148.717884,-21.61706 +2023,4,26,1,Queensland,148.6915,-21.67805 +2021,10,22,1,Queensland,148.94145,-21.28781 +2022,9,29,1,Queensland,148.782547,-21.515128 +2022,8,22,1,Queensland,148.79341,-21.50745 +2021,8,20,1,Queensland,148.69176,-21.697822 +2023,4,10,1,Queensland,148.75929,-21.77431 +2021,10,15,1,Queensland,148.88575,-21.77809 +2023,9,20,1,Queensland,148.937373,-21.354758 +2022,2,19,1,Queensland,148.72669,-21.72042 +2021,6,23,1,Queensland,148.683083,-21.681344 +2021,10,11,1,Queensland,148.73522,-21.73367 +2021,10,5,1,Queensland,148.68437,-21.68563 +2022,3,6,1,Queensland,148.770626,-21.531044 +2023,5,22,1,Queensland,148.69235,-21.67732 +2021,11,22,1,Queensland,148.688113,-21.690171 +2021,11,28,1,Queensland,148.68912,-21.69223 +2023,5,15,1,Queensland,148.75138,-21.56732 +2023,10,29,1,Queensland,148.69155,-21.697643 +2021,1,7,1,Queensland,149.212278,-22.418731 +2021,10,23,1,Queensland,148.68759,-21.692541 +2022,2,17,1,Queensland,148.691341,-21.697204 +2022,1,30,1,Queensland,148.67739,-21.67301 +2022,2,1,1,Queensland,148.973483,-21.444472 +2021,10,6,1,Queensland,148.73154,-21.72795 +2023,1,31,1,Queensland,148.89531,-21.42362 +2024,6,23,1,Queensland,148.74774,-21.57496 +2022,11,16,1,Queensland,148.89904,-21.42103 +2022,10,15,1,Queensland,148.87636,-21.43606 +2021,10,26,1,Queensland,148.69175,-21.69781 +2022,10,29,1,Queensland,148.74837,-21.57298 +2021,10,30,1,Queensland,148.68715,-21.68644 +2021,9,5,1,Queensland,149.057037,-21.17843 +2021,8,29,1,Queensland,148.674626,-21.648764 +2023,8,7,1,Queensland,148.94463,-21.38387 +2021,7,12,1,Queensland,148.651582,-21.703721 +2023,4,11,1,Queensland,148.710847,-21.618978 +2021,10,22,1,Queensland,148.860991,-21.453069 +2021,10,20,1,Queensland,148.69382,-21.63328 +2023,1,2,1,Queensland,148.80396,-21.49497 +2023,2,21,1,Queensland,148.870042,-21.442715 +2022,2,11,1,Queensland,148.68973,-21.69331 +2023,1,12,1,Queensland,148.69017,-21.69491 +2023,9,2,1,Queensland,148.76458,-21.53818 +2021,8,12,1,Queensland,148.678654,-21.674544 +2024,7,30,1,Queensland,148.86282,-21.45147 +2023,9,28,1,Queensland,149.526917,-22.537311 +2021,9,21,1,Queensland,148.688457,-21.69474 +2022,1,16,1,Queensland,148.73523,-21.73367 +2024,6,10,1,Queensland,148.69422,-21.63668 +2021,8,13,1,Queensland,148.459224,-22.758225 +2020,8,14,1,Queensland,148.756464,-21.561116 +2022,2,12,1,Queensland,148.72298,-21.71419 +2023,4,8,1,Queensland,148.6904,-21.6956 +2023,4,10,1,Queensland,148.73381,-21.73105 +2022,10,24,1,Queensland,148.81209,-21.48034 +2020,9,2,1,Queensland,148.966944,-21.738603 +2023,8,22,1,Queensland,149.108288,-22.366413 +2023,4,19,1,Queensland,148.69163,-21.69774 +2023,1,6,1,Queensland,148.736464,-21.737431 +2023,10,29,1,Queensland,148.026566,-22.034144 +2021,9,19,1,Queensland,148.694962,-21.704463 +2023,7,5,1,Queensland,148.701877,-21.715426 +2021,10,17,1,Queensland,148.6882,-21.68753 +2022,1,25,1,Queensland,148.67445,-21.66701 +2023,9,22,1,Queensland,148.69626,-21.743317 +2024,9,7,1,Queensland,148.859939,-21.454619 +2021,8,27,1,Queensland,148.74844,-21.572711 +2021,9,20,1,Queensland,148.939194,-21.326473 +2021,10,8,1,Queensland,148.66299,-21.69873 +2021,10,14,1,Queensland,148.7258,-21.71918 +2021,10,15,1,Queensland,148.75949,-21.55324 +2022,9,25,1,Queensland,148.73236,-21.60462 +2022,1,17,1,Queensland,148.7309,-21.72667 +2023,9,1,1,Queensland,148.935237,-21.705964 +2022,10,8,1,Queensland,148.78611,-21.51029 +2023,1,1,1,Queensland,149.05624,-21.179618 +2021,11,5,1,Queensland,148.68018,-21.678184 +2022,1,1,1,Queensland,149.00592,-21.64938 +2024,7,13,1,Queensland,148.69455,-21.64159 +2023,4,10,1,Queensland,148.74418,-21.74823 +2024,7,13,1,Queensland,148.83164,-21.46865 +2021,11,19,1,Queensland,148.75909,-21.553103 +2021,6,24,1,Queensland,148.839157,-21.466606 +2022,9,27,1,Queensland,148.72201,-21.61261 +2022,1,17,1,Queensland,148.72312,-21.71487 +2022,8,22,1,Queensland,148.89395,-21.4245 +2023,10,24,1,Queensland,148.68831,-21.68718 +2022,2,2,1,Queensland,148.970373,-21.432603 +2022,9,11,1,Queensland,149.091532,-21.361613 +2021,9,19,1,Queensland,148.69199,-21.669144 +2023,1,1,1,Queensland,148.69168,-21.69774 +2024,3,2,1,Queensland,149.159823,-22.665371 +2021,8,27,1,Queensland,148.782421,-21.515527 +2021,10,14,1,Queensland,148.68926,-21.6924 +2023,1,15,1,Queensland,148.690247,-21.695156 +2023,5,7,1,Queensland,148.855301,-21.458096 +2020,7,17,1,Queensland,148.729984,-21.679408 +2021,9,26,1,Queensland,148.689113,-21.685027 +2022,1,31,1,Queensland,148.783316,-21.514127 +2023,1,5,1,Queensland,148.680664,-21.678078 +2023,9,25,1,Queensland,148.6787,-21.815845 +2021,10,17,1,Queensland,149.018252,-21.530443 +2021,11,8,1,Queensland,148.688289,-21.690446 +2021,7,4,1,Queensland,148.686488,-21.684703 +2022,6,15,1,Queensland,148.695784,-21.627398 +2022,1,30,1,Queensland,148.67793,-21.67288 +2023,10,20,1,Queensland,149.083612,-21.16151 +2021,10,27,1,Queensland,148.682542,-21.680137 +2021,11,13,1,Queensland,149.04067,-21.182093 +2021,10,27,1,Queensland,148.682472,-21.680011 +2023,7,3,1,Queensland,148.68448,-21.77074 +2020,9,16,1,Queensland,148.691617,-21.663871 +2022,12,15,1,Queensland,148.73535,-21.73303 +2021,11,4,1,Queensland,148.683304,-21.683426 +2022,5,5,1,Queensland,148.69044,-21.696825 +2022,11,9,1,Queensland,149.030917,-21.642676 +2023,7,20,1,Queensland,148.939853,-21.345555 +2022,11,1,1,Queensland,149.64163,-22.621537 +2023,4,25,1,Queensland,148.899796,-21.778604 +2022,1,13,1,Queensland,148.67495,-21.64997 +2024,4,24,1,Queensland,148.74904,-21.86236 +2021,10,22,1,Queensland,148.849136,-21.461376 +2020,9,3,1,Queensland,148.896314,-23.445319 +2021,7,10,1,Queensland,148.684083,-21.683811 +2022,1,24,1,Queensland,148.67448,-21.66703 +2023,4,14,1,Queensland,148.682128,-21.678283 +2023,10,16,1,Queensland,148.74669,-21.57849 +2021,8,30,1,Queensland,148.610727,-21.717995 +2024,9,18,1,Queensland,148.4643,-21.55205 +2024,6,5,1,Queensland,148.86655,-21.44624 +2020,12,2,1,Queensland,148.772484,-21.529286 +2023,4,9,1,Queensland,148.686356,-21.684947 +2020,8,28,1,Queensland,148.9012,-21.419434 +2021,10,19,1,Queensland,148.724263,-21.610724 +2021,10,30,1,Queensland,148.69539,-21.68258 +2021,9,20,1,Queensland,148.747724,-21.57463 +2023,1,14,1,Queensland,148.73957,-21.73947 +2021,7,14,1,Queensland,148.27063,-22.392986 +2023,1,11,1,Queensland,148.690923,-21.697837 +2022,1,31,1,Queensland,148.81828,-21.47352 +2022,8,31,1,Queensland,148.522609,-21.329078 +2022,5,13,1,Queensland,148.690464,-21.697394 +2022,1,29,1,Queensland,148.67179,-21.63764 +2023,10,16,1,Queensland,148.76358,-21.53964 +2023,9,27,1,Queensland,148.933416,-21.399287 +2022,11,12,1,Queensland,148.744567,-21.750061 +2023,1,3,1,Queensland,148.63443,-21.7096 +2023,4,30,1,Queensland,148.86874,-21.44406 +2023,4,10,1,Queensland,148.68303,-21.68159 +2022,12,18,1,Queensland,148.71118,-21.68242 +2023,10,20,1,Queensland,148.6934,-21.697494 +2023,11,13,1,Queensland,148.937179,-21.356074 +2020,11,14,1,Queensland,148.68199,-21.801786 +2023,1,5,1,Queensland,148.691894,-21.698022 +2023,10,8,1,Queensland,148.69038,-21.69677 +2024,8,18,1,Queensland,148.72424,-21.6105 +2021,10,9,1,Queensland,148.894034,-21.777781 +2021,10,27,1,Queensland,148.72896,-21.72372 +2022,8,8,1,Queensland,148.69177,-21.66288 +2020,11,16,1,Queensland,149.209504,-21.420197 +2024,4,24,1,Queensland,148.69818,-21.80599 +2023,4,22,1,Queensland,148.691756,-21.678761 +2021,10,4,1,Queensland,148.683875,-21.63138 +2022,1,17,1,Queensland,148.69109,-21.68908 +2024,2,14,1,Queensland,149.17143,-21.459151 +2021,10,28,1,Queensland,148.690564,-21.697701 +2020,7,20,1,Queensland,148.915318,-21.409322 +2023,9,2,1,Queensland,149.279073,-22.358264 +2024,4,27,1,Queensland,148.50867,-21.43765 +2024,7,14,1,Queensland,148.68233,-21.78663 +2023,1,14,1,Queensland,148.70414,-21.70529 +2021,11,4,1,Queensland,148.684435,-21.687172 +2023,9,6,1,Queensland,148.68283,-21.7844 +2021,10,24,1,Queensland,148.65208,-21.70363 +2023,11,30,1,Queensland,148.686877,-21.749724 +2020,7,21,1,Queensland,148.645374,-21.609637 +2023,8,28,1,Queensland,148.949417,-21.751991 +2020,11,28,1,Queensland,148.192994,-22.294447 +2024,5,29,1,Queensland,148.62248,-21.5883 +2023,2,26,1,Queensland,148.73063,-21.60566 +2022,1,25,1,Queensland,148.67499,-21.64998 +2021,9,5,1,Queensland,148.691452,-21.697051 +2023,6,11,1,Queensland,148.696454,-21.712261 +2021,8,23,1,Queensland,148.671326,-21.641255 +2021,11,8,1,Queensland,148.688291,-21.690458 +2023,9,10,1,Queensland,148.63391,-21.60069 +2024,7,4,1,Queensland,148.57369,-21.86266 +2021,9,18,1,Queensland,148.690508,-21.695765 +2022,12,18,1,Queensland,148.75497,-21.76724 +2023,1,1,1,Queensland,148.69168,-21.69774 +2023,8,4,1,Queensland,148.75775,-21.55827 +2023,4,11,1,Queensland,148.709519,-21.619686 +2020,8,18,1,Queensland,148.791329,-21.508061 +2023,10,5,1,Queensland,148.69148,-21.69558 +2021,9,24,1,Queensland,148.758894,-21.555921 +2022,2,14,1,Queensland,148.69498,-21.70477 +2023,10,6,1,Queensland,149.329092,-22.759334 +2023,6,19,1,Queensland,148.65502,-21.82756 +2020,11,21,1,Queensland,149.524696,-22.349527 +2022,10,31,1,Queensland,148.792492,-21.507754 +2022,1,15,1,Queensland,148.687871,-21.689553 +2021,10,24,1,Queensland,148.69507,-21.7114 +2022,3,19,1,Queensland,149.10553,-21.550828 +2024,7,29,1,Queensland,148.69702,-21.6963 +2021,11,8,1,Queensland,148.690104,-21.69492 +2021,9,9,1,Queensland,148.671418,-21.640738 +2020,9,9,1,Queensland,147.562074,-22.164267 +2020,3,19,1,Queensland,149.018244,-21.198867 +2022,1,13,1,Queensland,148.67495,-21.64997 +2021,10,6,1,Queensland,149.255055,-22.407849 +2021,9,16,1,Queensland,148.689959,-21.683856 +2022,9,9,1,Queensland,148.72811,-21.72179 +2021,10,18,1,Queensland,148.613698,-21.716984 +2022,3,10,1,Queensland,148.690137,-21.69497 +2023,8,28,1,Queensland,148.974334,-21.455638 +2020,12,22,1,Queensland,148.632783,-21.59937 +2023,4,10,1,Queensland,148.68636,-21.68493 +2023,6,22,1,Queensland,148.73324,-21.73033 +2021,10,27,1,Queensland,148.74516,-21.74929 +2020,6,25,1,Queensland,148.820557,-21.471807 +2022,1,29,1,Queensland,148.68656,-21.68104 +2023,9,2,1,Queensland,149.59747,-22.672315 +2020,12,15,1,Queensland,148.434554,-21.743929 +2021,9,21,1,Queensland,148.686446,-21.684306 +2021,7,4,1,Queensland,148.7739,-21.775214 +2021,9,14,1,Queensland,148.652296,-21.70357 +2023,10,22,1,Queensland,148.89091,-21.42693 +2023,1,12,1,Queensland,148.731797,-21.728219 +2020,8,31,1,Queensland,148.710938,-21.626793 +2023,4,7,1,Queensland,148.694501,-21.711304 +2023,6,4,1,Queensland,148.68892,-21.69558 +2021,10,4,1,Queensland,148.74238,-21.74611 +2023,2,5,1,Queensland,148.5308,-21.44614 +2021,8,27,1,Queensland,148.712666,-21.61798 +2020,7,17,1,Queensland,148.709657,-21.619579 +2020,10,5,1,Queensland,148.839245,-21.466103 +2023,9,8,1,Queensland,148.02935,-22.03462 +2022,1,13,1,Queensland,148.75946,-21.77544 +2022,1,30,1,Queensland,148.67172,-21.63763 +2024,8,27,1,Queensland,148.921403,-21.407231 +2020,11,10,1,Queensland,148.863257,-21.450777 +2022,12,14,1,Queensland,148.65175,-21.70384 +2024,8,3,1,Queensland,148.573744,-21.862464 +2021,10,6,1,Queensland,148.73986,-21.74201 +2023,12,1,1,Queensland,149.10452,-21.551609 +2022,11,19,1,Queensland,148.7316,-21.72761 +2022,12,15,1,Queensland,148.737,-21.7367 +2023,4,18,1,Queensland,148.759156,-21.773778 +2021,8,27,1,Queensland,148.90175,-21.41919 +2023,10,17,1,Queensland,148.6816,-21.8 +2023,7,3,1,Queensland,148.75192,-21.76049 +2022,9,27,1,Queensland,148.93759,-21.39429 +2023,11,1,1,Queensland,148.944001,-21.286732 +2023,2,4,1,Queensland,148.92583,-21.40506 +2021,10,14,1,Queensland,148.68652,-21.68463 +2022,9,28,1,Queensland,148.726559,-21.791666 +2021,6,24,1,Queensland,148.908949,-21.411934 +2023,8,31,1,Queensland,149.269674,-22.609872 +2021,8,25,1,Queensland,148.940599,-21.343352 +2021,8,24,1,Queensland,148.691561,-21.697054 +2021,8,10,1,Queensland,148.742845,-21.756614 +2021,9,27,1,Queensland,148.694906,-21.710031 +2022,1,10,1,Queensland,148.72293,-21.71428 +2023,4,10,1,Queensland,148.73168,-21.72783 +2023,10,17,1,Queensland,148.995437,-21.674241 +2023,9,15,1,Queensland,148.75154,-21.56711 +2023,4,17,1,Queensland,148.67436,-21.6342 +2022,12,18,1,Queensland,148.73703,-21.73674 +2021,9,24,1,Queensland,148.801388,-21.500114 +2022,9,27,1,Queensland,147.904303,-22.487074 +2021,11,5,1,Queensland,148.700096,-21.681455 +2023,4,22,1,Queensland,148.687456,-21.679861 +2023,1,14,1,Queensland,148.69026,-21.69524 +2023,1,11,1,Queensland,148.69139,-21.697692 +2024,7,3,1,Queensland,148.94147,-21.36003 +2022,1,15,1,Queensland,148.68829,-21.69039 +2023,8,2,1,Queensland,148.71694,-21.61594 +2021,12,5,1,Queensland,148.6825,-21.688494 +2021,8,23,1,Queensland,148.782885,-21.514806 +2021,10,28,1,Queensland,148.68489,-21.68598 +2021,10,26,1,Queensland,148.70978,-21.70733 +2021,10,6,1,Queensland,148.72415,-21.71679 +2022,11,14,1,Queensland,148.131495,-21.353619 +2021,11,20,1,Queensland,149.056896,-21.178201 +2021,6,1,1,Queensland,148.939024,-21.338652 +2023,11,8,1,Queensland,148.681574,-21.679346 +2021,12,26,1,Queensland,148.688964,-21.674593 +2022,10,29,1,Queensland,148.68412,-21.68759 +2022,1,6,1,Queensland,148.691552,-21.697125 +2021,9,24,1,Queensland,148.692878,-21.654203 +2022,5,1,1,Queensland,148.69185,-21.698138 +2022,3,26,1,Queensland,148.69458,-21.63913 +2023,4,11,1,Queensland,148.781574,-21.517738 +2022,8,26,1,Queensland,148.89409,-21.42428 +2023,1,6,1,Queensland,148.737258,-21.737631 +2023,9,27,1,Queensland,148.702157,-21.712201 +2021,11,6,1,Queensland,148.691892,-21.69812 +2021,10,5,1,Queensland,148.68333,-21.68368 +2022,12,14,1,Queensland,148.68469,-21.68468 +2022,10,25,1,Queensland,148.576857,-21.856416 +2022,12,18,1,Queensland,148.72701,-21.72036 +2022,12,18,1,Queensland,148.7549,-21.76757 +2022,10,15,1,Queensland,148.69341,-21.6597 +2020,11,11,1,Queensland,148.863918,-21.449899 +2021,10,24,1,Queensland,148.69418,-21.70996 +2021,10,5,1,Queensland,148.72247,-21.7137 +2024,7,15,1,Queensland,148.90811,-21.41302 +2022,10,15,1,Queensland,148.69341,-21.6597 +2021,6,1,1,Queensland,148.945526,-21.382571 +2020,11,16,1,Queensland,149.215916,-21.421013 +2021,10,7,1,Queensland,148.817582,-21.474416 +2021,9,23,1,Queensland,148.739069,-21.740745 +2021,10,14,1,Queensland,148.73195,-21.72858 +2022,3,24,1,Queensland,148.686348,-21.689463 +2022,4,28,1,Queensland,148.69189,-21.698152 +2021,12,11,1,Queensland,148.69178,-21.697201 +2021,9,23,1,Queensland,148.742477,-21.59496 +2023,1,5,1,Queensland,148.691894,-21.698022 +2022,2,12,1,Queensland,148.73376,-21.73132 +2022,1,31,1,Queensland,148.73893,-21.59856 +2023,11,13,1,Queensland,148.83218,-21.4686 +2020,8,25,1,Queensland,148.688469,-21.685176 +2023,4,11,1,Queensland,148.745652,-21.75014 +2024,4,24,1,Queensland,148.74966,-21.86264 +2022,1,31,1,Queensland,148.782652,-21.516323 +2021,9,20,1,Queensland,148.690208,-21.709902 +2023,8,31,1,Queensland,148.88276,-21.43134 +2022,8,22,1,Queensland,148.7814,-21.51811 +2022,2,5,1,Queensland,148.79008,-21.77039 +2021,10,30,1,Queensland,148.702433,-21.680866 +2022,3,4,1,Queensland,148.691682,-21.697735 +2023,8,16,1,Queensland,148.757119,-21.56045 +2021,11,5,1,Queensland,148.610888,-21.717634 +2023,9,15,1,Queensland,149.629168,-22.68916 +2021,10,5,1,Queensland,148.67609,-21.65504 +2024,6,26,1,Queensland,148.63593,-21.60276 +2020,8,11,1,Queensland,148.738225,-21.599459 +2023,4,20,1,Queensland,148.687697,-21.680719 +2023,11,10,1,Queensland,148.971552,-21.26545 +2021,1,7,1,Queensland,149.342155,-22.357343 +2023,1,6,1,Queensland,148.732589,-21.730192 +2023,11,7,1,Queensland,148.792023,-21.770281 +2023,1,5,1,Queensland,148.689147,-21.692056 +2023,11,6,1,Queensland,148.679851,-21.203402 +2020,8,17,1,Queensland,148.691428,-21.696943 +2021,7,23,1,Queensland,148.694469,-21.645617 +2022,3,2,1,Queensland,148.691166,-21.698118 +2023,11,3,1,Queensland,148.681519,-21.813189 +2021,10,19,1,Queensland,148.575654,-21.857725 +2024,6,17,1,Queensland,148.93812,-21.39336 +2020,9,17,1,Queensland,148.9273,-21.772648 +2021,11,16,1,Queensland,148.68829,-21.690744 +2023,1,2,1,Queensland,148.69164,-21.69774 +2023,4,10,1,Queensland,148.75484,-21.76757 +2021,9,24,1,Queensland,148.694112,-21.649482 +2020,10,15,1,Queensland,148.890257,-21.424746 +2021,8,9,1,Queensland,148.533642,-21.22739 +2023,5,18,1,Queensland,148.92511,-21.40564 +2021,8,18,1,Queensland,148.872222,-21.44 +2022,10,31,1,Queensland,148.72008,-21.613765 +2023,4,8,1,Queensland,148.69502,-21.71148 +2024,9,8,1,Queensland,148.907364,-21.413739 +2023,4,10,1,Queensland,148.7315,-21.72758 +2024,5,14,1,Queensland,148.69232,-21.6906 +2023,4,21,1,Queensland,148.759672,-21.775819 +2023,7,12,1,Queensland,148.78914,-21.50895 +2022,10,23,1,Queensland,148.68836,-21.68705 +2023,10,30,1,Queensland,148.68159,-21.79925 +2022,1,13,1,Queensland,148.75444,-21.76653 +2022,1,2,1,Queensland,148.691439,-21.697131 +2023,5,10,1,Queensland,148.87528,-21.43723 +2020,8,12,1,Queensland,148.779591,-21.519874 +2021,6,28,1,Queensland,148.746511,-21.751721 +2023,9,12,1,Queensland,148.73172,-21.72811 +2020,11,28,1,Queensland,148.178688,-22.271345 +2023,7,8,1,Queensland,148.77219,-21.52938 +2023,1,13,1,Queensland,148.738525,-21.739897 +2023,4,11,1,Queensland,148.69183,-21.69808 +2023,3,2,1,Queensland,148.692094,-21.660469 +2022,12,14,1,Queensland,148.63311,-21.71008 +2023,1,4,1,Queensland,148.82674,-21.46997 +2021,9,14,1,Queensland,148.686586,-21.684215 +2021,8,31,1,Queensland,148.691311,-21.696991 +2022,10,23,1,Queensland,148.87227,-21.44045 +2023,1,14,1,Queensland,148.69013,-21.6949 +2023,10,8,1,Queensland,148.7514,-21.567 +2024,9,8,1,Queensland,148.918136,-21.408281 +2022,1,2,1,Queensland,148.691277,-21.697134 +2022,11,16,1,Queensland,148.656371,-21.619505 +2022,9,7,1,Queensland,148.93402,-21.39867 +2023,8,23,1,Queensland,148.83174,-21.46871 +2023,4,19,1,Queensland,148.690486,-21.697435 +2021,7,28,1,Queensland,148.690875,-21.697219 +2023,9,27,1,Queensland,148.934612,-21.398133 +2021,9,28,1,Queensland,148.694396,-21.710717 +2022,11,7,1,Queensland,148.75117,-21.75943 +2022,1,13,1,Queensland,148.73721,-21.73711 +2024,5,5,1,Queensland,149.09399,-22.08286 +2023,2,26,1,Queensland,148.93062,-21.40196 +2023,8,31,1,Queensland,149.267456,-22.63156 +2022,1,29,1,Queensland,148.67789,-21.67285 +2023,11,3,1,Queensland,148.69218,-21.67475 +2022,1,14,1,Queensland,148.812781,-21.479398 +2023,9,17,1,Queensland,149.010605,-21.65612 +2023,4,23,1,Queensland,148.68695,-21.680381 +2021,9,19,1,Queensland,148.778725,-21.520397 +2022,1,23,1,Queensland,148.68777,-21.68921 +2023,1,6,1,Queensland,148.754853,-21.767344 +2021,10,28,1,Queensland,148.69081,-21.69495 +2023,8,7,1,Queensland,148.94439,-21.38405 +2024,9,3,1,Queensland,148.93947,-21.32879 +2021,9,17,1,Queensland,148.691529,-21.697049 +2023,8,11,1,Queensland,148.85355,-21.46 +2022,8,26,1,Queensland,148.8749,-21.43782 +2023,4,21,1,Queensland,148.7363,-21.7355 +2023,1,8,1,Queensland,148.73259,-21.72942 +2021,10,15,1,Queensland,148.76013,-21.54434 +2021,10,14,1,Queensland,148.75767,-21.77258 +2023,6,12,1,Queensland,148.685558,-21.685303 +2021,8,24,1,Queensland,148.732719,-21.729646 +2023,11,27,1,Queensland,148.677772,-21.202502 +2023,10,2,1,Queensland,148.691851,-21.698166 +2021,6,11,1,Queensland,148.69214,-21.672168 +2023,4,9,1,Queensland,148.690353,-21.695522 +2021,10,27,1,Queensland,148.7292,-21.72417 +2022,12,22,1,Queensland,148.691706,-21.696207 +2021,11,1,1,Queensland,148.686518,-21.684181 +2020,9,18,1,Queensland,148.906269,-21.415206 +2023,10,16,1,Queensland,148.99436,-21.70884 +2023,9,15,1,Queensland,149.511401,-22.495238 +2022,2,18,1,Queensland,148.343312,-21.508868 +2022,12,18,1,Queensland,148.72774,-21.72247 +2021,8,3,1,Queensland,148.689248,-21.692159 +2024,6,7,1,Queensland,148.89346,-21.42483 +2021,10,24,1,Queensland,148.69507,-21.7114 +2023,6,13,1,Queensland,148.83064,-21.46892 +2023,6,10,1,Queensland,148.690016,-21.685216 +2022,1,10,1,Queensland,148.72551,-21.71885 +2024,6,5,1,Queensland,148.89281,-21.42527 +2021,10,27,1,Queensland,148.74344,-21.74752 +2023,7,18,1,Queensland,148.69757,-21.62572 +2022,11,19,1,Queensland,148.7316,-21.72761 +2022,11,10,1,Queensland,149.104593,-21.551812 +2021,6,6,1,Queensland,148.2309,-21.976 +2023,4,10,1,Queensland,148.73218,-21.72862 +2022,4,5,1,Queensland,148.834164,-21.468159 +2021,10,5,1,Queensland,148.68939,-21.69247 +2024,5,13,1,Queensland,148.8871,-21.42946 +2021,10,10,1,Queensland,148.59982,-21.72191 +2022,9,19,1,Queensland,148.933904,-21.349748 +2023,9,6,1,Queensland,148.68283,-21.7844 +2023,1,13,1,Queensland,148.73867,-21.73942 +2021,8,7,1,Queensland,148.332534,-22.5904 +2023,8,7,1,Queensland,148.78686,-21.50961 +2023,11,13,1,Queensland,148.875187,-21.437238 +2020,8,11,1,Queensland,148.68809,-21.684528 +2023,11,13,1,Queensland,148.857293,-21.456237 +2022,12,14,1,Queensland,148.64171,-21.70734 +2024,8,28,1,Queensland,148.6964,-21.62685 +2022,1,14,1,Queensland,148.75727,-21.5595 +2021,8,27,1,Queensland,148.944725,-21.383646 +2022,2,19,1,Queensland,148.67611,-21.67017 +2024,8,23,1,Queensland,148.82485,-21.47049 +2024,4,27,1,Queensland,148.50867,-21.43765 +2024,8,1,1,Queensland,148.7593,-21.55094 +2020,9,1,1,Queensland,149.368562,-21.749981 +2022,9,28,1,Queensland,149.105158,-21.551291 +2021,10,19,1,Queensland,148.716615,-21.6161 +2022,1,27,1,Queensland,148.42668,-22.510641 +2023,4,19,1,Queensland,148.69182,-21.6981 +2021,6,29,1,Queensland,148.652262,-21.703558 +2023,7,18,1,Queensland,148.83513,-21.46767 +2021,12,7,1,Queensland,149.016014,-21.526282 +2023,5,9,1,Queensland,149.279687,-21.292468 +2023,7,13,1,Queensland,148.212594,-20.030242 +2023,7,20,1,Queensland,148.73684,-21.60101 +2022,1,13,1,Queensland,148.73713,-21.73667 +2021,9,21,1,Queensland,148.68845,-21.694778 +2021,10,4,1,Queensland,148.7316,-21.72757 +2021,8,25,1,Queensland,148.691752,-21.697206 +2024,7,24,1,Queensland,148.6924,-21.67706 +2022,10,18,1,Queensland,148.69005,-21.6867 +2021,11,22,1,Queensland,148.688113,-21.690171 +2022,10,4,1,Queensland,148.696661,-21.695227 +2023,8,16,1,Queensland,148.82198,-21.47137 +2023,4,18,1,Queensland,148.748733,-21.755147 +2023,11,5,1,Queensland,148.70254,-21.709365 +2023,1,1,1,Queensland,148.69168,-21.69774 +2024,7,15,1,Queensland,148.73511,-21.84697 +2021,11,6,1,Queensland,148.68853,-21.6948 +2021,10,18,1,Queensland,148.639769,-21.707796 +2022,12,18,1,Queensland,148.72724,-21.72168 +2022,4,19,1,Queensland,148.96794,-21.427836 +2020,5,22,1,Queensland,148.631587,-21.597887 +2023,8,7,1,Queensland,147.717673,-22.634004 +2023,1,10,1,Queensland,148.679122,-21.675147 +2021,8,27,1,Queensland,148.939749,-21.390563 +2020,10,28,1,Queensland,148.69248,-21.690738 +2022,3,23,1,Queensland,149.104325,-21.551304 +2023,9,26,1,Queensland,148.828258,-21.469683 +2021,7,18,1,Queensland,149.061733,-21.332682 +2023,4,17,1,Queensland,148.67434,-21.63408 +2023,6,6,1,Queensland,148.83626,-21.46727 +2021,11,29,1,Queensland,148.682768,-21.680482 +2021,9,1,1,Queensland,148.837631,-21.272856 +2021,9,22,1,Queensland,148.610107,-21.718228 +2021,8,26,1,Queensland,148.644364,-21.834094 +2022,1,31,1,Queensland,148.73202,-21.60471 +2023,10,19,1,Queensland,148.82506,-21.47058 +2024,6,7,1,Queensland,148.75186,-21.56678 +2023,5,22,1,Queensland,148.907789,-21.41336 +2023,4,21,1,Queensland,148.727569,-21.721561 +2021,8,12,1,Queensland,148.937499,-21.334651 +2020,9,8,1,Queensland,148.871156,-21.441642 +2022,2,8,1,Queensland,148.691717,-21.697783 +2022,10,18,1,Queensland,148.679611,-21.742906 +2023,6,27,1,Queensland,148.69862,-21.62469 +2021,6,25,1,Queensland,148.937938,-21.33883 +2020,11,25,1,Queensland,148.667765,-21.820151 +2023,10,29,1,Queensland,148.70115,-21.70318 +2020,8,25,1,Queensland,148.652197,-21.703614 +2020,10,17,1,Queensland,149.056406,-21.180119 +2021,10,27,1,Queensland,148.71053,-21.70762 +2023,10,30,1,Queensland,148.68755,-21.69204 +2021,9,20,1,Queensland,148.336285,-22.466151 +2022,8,22,1,Queensland,148.89381,-21.42469 +2021,10,5,1,Queensland,148.72893,-21.72331 +2021,6,24,1,Queensland,148.684716,-21.686054 +2021,6,28,1,Queensland,148.734849,-21.732889 +2021,9,20,1,Queensland,148.690445,-21.696713 +2020,9,16,1,Queensland,148.878592,-21.433973 +2023,10,7,1,Queensland,148.69034,-21.6979 +2020,9,26,1,Queensland,148.874476,-21.438028 +2021,8,23,1,Queensland,148.714886,-21.61646 +2023,8,16,1,Queensland,148.79332,-21.50704 +2022,11,9,1,Queensland,148.75944,-21.55282 +2022,1,31,1,Queensland,148.75193,-21.56636 +2021,7,23,1,Queensland,148.699759,-21.623638 +2022,2,11,1,Queensland,148.67882,-21.67459 +2024,8,26,1,Queensland,148.69541,-21.69065 +2023,1,13,1,Queensland,148.703568,-21.70524 +2021,8,27,1,Queensland,148.756749,-21.560501 +2021,11,29,1,Queensland,148.68822,-21.68888 +2023,6,22,1,Queensland,148.738918,-21.739891 +2023,6,20,1,Queensland,149.322598,-22.368664 +2023,6,10,1,Queensland,148.877299,-21.435363 +2023,4,10,1,Queensland,148.63973,-21.70766 +2020,1,1,1,Queensland,148.686158,-21.754992 +2022,8,29,1,Queensland,148.937356,-21.356713 +2021,10,8,1,Queensland,148.68658,-21.68106 +2023,4,21,1,Queensland,148.727569,-21.721561 +2022,12,15,1,Queensland,148.73531,-21.7332 +2021,8,27,1,Queensland,148.757381,-21.55894 +2021,10,27,1,Queensland,148.73151,-21.72785 +2020,7,16,1,Queensland,148.847633,-21.462944 +2021,10,25,1,Queensland,148.939721,-21.289069 +2021,10,28,1,Queensland,148.68821,-21.6891 +2021,9,14,1,Queensland,148.717797,-21.616622 +2022,12,15,1,Queensland,148.737,-21.7367 +2021,9,22,1,Queensland,148.68644,-21.684521 +2023,7,5,1,Queensland,148.57946,-21.8543 +2022,2,21,1,Queensland,148.69866,-21.70485 +2021,8,8,1,Queensland,148.938007,-21.331447 +2022,1,13,1,Queensland,148.70981,-21.67896 +2022,1,15,1,Queensland,148.69176,-21.69712 +2023,1,2,1,Queensland,148.78165,-21.51762 +2023,10,17,1,Queensland,148.69164,-21.66577 +2023,1,6,1,Queensland,148.755128,-21.767428 +2021,11,6,1,Queensland,148.716607,-21.616059 +2021,10,6,1,Queensland,148.691058,-21.696909 +2021,8,27,1,Queensland,148.759219,-21.552737 +2021,10,19,1,Queensland,148.722029,-21.612493 +2020,8,31,1,Queensland,149.144608,-21.177357 +2021,9,8,1,Queensland,148.790087,-21.7703 +2021,8,31,1,Queensland,148.639745,-21.707817 +2023,1,5,1,Queensland,149.66912,-22.7119 +2021,8,19,1,Queensland,149.495859,-22.470813 +2022,1,31,1,Queensland,148.6901,-21.6766 +2023,1,30,1,Queensland,148.680344,-21.677664 +2021,10,27,1,Queensland,148.74344,-21.74752 +2023,10,18,1,Queensland,148.75975,-21.54808 +2024,7,28,1,Queensland,148.792391,-21.50766 +2021,8,27,1,Queensland,148.86,-21.45 +2023,9,19,1,Queensland,148.19192,-22.22367 +2023,10,28,1,Queensland,148.68768,-21.69332 +2022,1,13,1,Queensland,148.75299,-21.76255 +2020,9,28,1,Queensland,148.826253,-21.470219 +2023,6,27,1,Queensland,148.698671,-21.624681 +2024,8,28,1,Queensland,148.89198,-21.42586 +2021,10,22,1,Queensland,148.863577,-21.451848 +2022,8,27,1,Queensland,148.69225,-21.67506 +2022,10,19,1,Queensland,148.69227,-21.67427 +2021,11,6,1,Queensland,148.688123,-21.687365 +2021,10,20,1,Queensland,148.69352,-21.65477 +2021,9,21,1,Queensland,148.686562,-21.684206 +2022,11,14,1,Queensland,148.909,-21.41221 +2021,9,22,1,Queensland,148.684546,-21.684566 +2021,9,19,1,Queensland,148.678284,-21.690634 +2021,8,12,1,Queensland,148.686514,-21.684701 +2021,11,4,1,Queensland,148.689769,-21.693857 +2023,7,10,1,Queensland,148.68224,-21.81221 +2023,9,3,1,Queensland,149.065935,-21.149385 +2023,8,21,1,Queensland,148.69385,-21.63111 +2021,10,29,1,Queensland,148.691443,-21.69707 +2021,9,7,1,Queensland,148.694136,-21.630473 +2021,6,22,1,Queensland,148.65225,-21.70356 +2023,11,11,1,Queensland,148.801351,-21.49973 +2022,1,10,1,Queensland,148.75977,-21.77599 +2021,8,18,1,Queensland,148.88019,-21.432206 +2024,11,11,1,Queensland,148.41939,-21.88048 +2020,8,24,1,Queensland,148.480635,-21.55006 +2021,10,6,1,Queensland,148.885952,-21.778434 +2021,12,11,1,Queensland,148.691875,-21.698061 +2023,7,30,1,Queensland,149.057083,-21.178434 +2024,9,18,1,Queensland,148.685378,-21.634489 +2020,8,25,1,Queensland,148.280215,-22.453553 +2021,12,16,1,Queensland,148.690883,-21.749298 +2023,1,7,1,Queensland,148.738983,-21.739969 +2021,8,24,1,Queensland,148.691583,-21.697089 +2023,10,7,1,Queensland,148.686387,-21.754779 +2021,9,22,1,Queensland,149.018294,-21.530414 +2021,8,11,1,Queensland,149.49646,-22.471405 +2021,10,23,1,Queensland,148.687474,-21.679095 +2023,5,1,1,Queensland,148.68567,-21.76041 +2023,10,27,1,Queensland,148.86193,-21.45281 +2023,10,16,1,Queensland,148.74668,-21.5785 +2024,5,14,1,Queensland,148.68244,-21.67972 +2022,8,22,1,Queensland,148.72674,-21.60836 +2023,1,5,1,Queensland,148.729263,-21.724218 +2020,9,9,1,Queensland,148.939027,-21.333344 +2023,10,7,1,Queensland,148.69185,-21.69812 +2024,9,8,1,Queensland,148.7014,-21.71797 +2021,11,14,1,Queensland,148.937631,-21.393658 +2021,10,6,1,Queensland,148.72415,-21.71679 +2023,2,21,1,Queensland,148.677368,-21.179285 +2021,9,9,1,Queensland,148.688568,-21.681665 +2020,10,28,1,Queensland,148.938403,-21.33964 +2020,9,13,1,Queensland,148.766334,-21.535764 +2023,4,10,1,Queensland,148.72631,-21.7199 +2021,10,5,1,Queensland,148.72893,-21.72331 +2021,9,14,1,Queensland,149.018333,-21.530278 +2022,1,16,1,Queensland,148.69813,-21.70465 +2024,8,28,1,Queensland,148.86352,-21.45051 +2021,10,26,1,Queensland,148.72306,-21.71493 +2021,10,6,1,Queensland,148.690464,-21.697369 +2021,10,5,1,Queensland,148.72917,-21.7229 +2020,9,18,1,Queensland,148.947887,-21.378579 +2023,1,2,1,Queensland,148.68609,-21.68285 +2023,10,17,1,Queensland,148.71128,-21.61884 +2023,9,26,1,Queensland,148.93725,-21.357322 +2022,1,5,1,Queensland,148.75773,-21.5582 +2021,11,12,1,Queensland,148.688982,-21.699792 +2023,9,16,1,Queensland,148.889428,-21.427987 +2021,9,24,1,Queensland,148.741256,-21.596167 +2024,4,24,1,Queensland,148.76048,-21.88086 +2023,8,16,1,Queensland,148.759583,-21.548756 +2021,11,25,1,Queensland,149.064748,-21.33552 +2021,10,17,1,Queensland,148.68835,-21.69033 +2021,6,22,1,Queensland,148.686164,-21.685445 +2021,6,1,1,Queensland,148.909035,-21.41169 +2020,7,26,1,Queensland,148.886402,-21.429814 +2023,1,11,1,Queensland,148.690977,-21.697219 +2021,7,1,1,Queensland,148.667365,-21.696652 +2020,11,28,1,Queensland,148.750622,-21.568952 +2021,8,20,1,Queensland,149.089172,-21.359574 +2020,10,18,1,Queensland,148.693109,-21.690702 +2021,10,17,1,Queensland,148.671299,-21.634522 +2023,4,7,1,Queensland,148.76582,-21.53597 +2023,9,1,1,Queensland,148.995397,-21.713301 +2023,5,2,1,Queensland,148.88742,-21.42922 +2020,1,9,1,Queensland,148.0255,-21.9892 +2024,6,12,1,Queensland,148.82228,-21.47111 +2021,9,24,1,Queensland,148.85381,-21.459669 +2022,2,12,1,Queensland,148.75341,-21.76358 +2023,1,6,1,Queensland,148.739167,-21.740992 +2023,5,22,1,Queensland,148.803771,-21.495872 +2023,6,12,1,Queensland,148.792664,-21.50773 +2022,11,29,1,Queensland,148.65634,-21.61945 +2022,3,24,1,Queensland,148.687598,-21.693283 +2023,1,3,1,Queensland,148.68115,-21.67896 +2021,10,6,1,Queensland,149.302018,-22.361284 +2022,10,31,1,Queensland,148.67792,-21.81638 +2021,2,5,1,Queensland,148.9294,-21.81724 +2021,11,8,1,Queensland,148.882764,-21.431003 +2021,6,12,1,Queensland,149.107851,-21.648568 +2021,12,19,1,Queensland,148.691856,-21.697174 +2023,11,24,1,Queensland,148.73868,-21.59892 +2023,1,6,1,Queensland,148.733139,-21.730281 +2023,10,2,1,Queensland,148.691467,-21.69809 +2023,1,3,1,Queensland,148.68637,-21.68497 +2021,9,1,1,Queensland,148.690443,-21.697421 +2024,8,19,1,Queensland,148.29594,-21.94229 +2021,10,7,1,Queensland,148.94345,-21.36988 +2021,9,27,1,Queensland,148.686373,-21.684282 +2022,10,17,1,Queensland,148.690611,-21.697465 +2021,8,10,1,Queensland,148.94656,-21.381135 +2023,9,27,1,Queensland,148.902904,-21.418487 +2021,10,25,1,Queensland,148.68802,-21.68973 +2023,1,3,1,Queensland,148.68071,-21.67848 +2021,10,24,1,Queensland,148.69507,-21.7114 +2022,2,11,1,Queensland,148.68937,-21.69242 +2023,4,11,1,Queensland,148.639664,-21.707756 +2023,10,30,1,Queensland,148.68214,-21.80689 +2021,10,10,1,Queensland,148.68493,-21.68533 +2023,8,31,1,Queensland,149.266234,-22.630781 +2024,8,11,1,Queensland,149.226987,-21.299245 +2021,10,18,1,Queensland,148.689314,-21.692496 +2021,10,26,1,Queensland,148.69833,-21.70477 +2021,10,18,1,Queensland,148.93581,-21.303888 +2020,11,30,1,Queensland,148.862199,-21.452315 +2022,1,12,1,Queensland,148.912456,-21.410509 +2022,1,17,1,Queensland,148.7309,-21.72667 +2022,11,6,1,Queensland,148.82213,-21.77134 +2021,9,23,1,Queensland,148.73329,-21.730607 +2023,4,11,1,Queensland,148.683153,-21.681864 +2023,11,11,1,Queensland,148.38299,-21.3958 +2022,1,15,1,Queensland,148.69176,-21.69712 +2023,7,5,1,Queensland,148.76055,-21.54311 +2024,5,14,1,Queensland,148.68392,-21.68348 +2021,11,7,1,Queensland,148.710556,-21.665833 +2021,9,6,1,Queensland,148.690231,-21.695269 +2022,2,6,1,Queensland,148.69536,-21.62784 +2021,10,15,1,Queensland,148.78689,-21.77063 +2021,5,8,1,Queensland,147.726308,-22.63022 +2023,4,7,1,Queensland,148.85565,-21.45772 +2021,10,14,1,Queensland,148.73201,-21.7285 +2021,9,27,1,Queensland,148.694862,-21.710025 +2020,8,23,1,Queensland,148.907456,-21.413689 +2021,10,7,1,Queensland,148.73838,-21.73983 +2023,9,27,1,Queensland,148.691605,-21.697823 +2022,10,19,1,Queensland,148.69225,-21.67565 +2021,6,21,1,Queensland,148.701653,-21.715789 +2020,6,25,1,Queensland,148.814778,-21.47742 +2023,8,9,1,Queensland,148.80085,-21.50078 +2020,7,9,1,Queensland,148.7657,-21.5362 +2021,5,10,1,Queensland,148.686905,-21.686314 +2023,4,18,1,Queensland,148.742431,-21.746253 +2024,5,14,1,Queensland,148.68291,-21.68079 +2020,12,16,1,Queensland,148.433104,-21.74309 +2022,9,13,1,Queensland,148.71551,-21.6166 +2022,11,22,1,Queensland,148.599417,-21.57978 +2021,11,6,1,Queensland,148.717618,-21.615428 +2021,9,30,1,Queensland,148.625561,-21.843089 +2020,11,11,1,Queensland,148.7059,-21.80268 +2020,6,9,1,Queensland,148.915318,-21.409322 +2021,8,12,1,Queensland,148.937008,-21.337995 +2022,12,15,1,Queensland,148.74232,-21.74638 +2022,3,27,1,Queensland,148.46313,-21.55243 +2021,9,24,1,Queensland,148.694276,-21.637076 +2023,12,11,1,Queensland,149.143792,-21.450832 +2023,5,26,1,Queensland,148.691854,-21.698168 +2021,10,20,1,Queensland,148.6916,-21.66402 +2021,4,4,1,Queensland,148.86318,-21.45114 +2022,10,19,1,Queensland,148.69229,-21.67537 +2024,10,9,1,Queensland,148.825503,-21.470323 +2021,6,10,1,Queensland,148.885483,-21.430203 +2021,10,27,1,Queensland,148.74526,-21.74958 +2020,12,16,1,Queensland,148.470035,-21.768355 +2023,4,8,1,Queensland,148.686386,-21.684953 +2021,8,23,1,Queensland,148.683123,-21.681828 +2021,8,15,1,Queensland,148.32396,-21.32223 +2020,8,31,1,Queensland,148.694619,-21.628969 +2023,1,6,1,Queensland,148.739167,-21.740992 +2023,1,18,1,Queensland,148.73245,-21.72854 +2023,4,10,1,Queensland,148.71436,-21.70839 +2023,9,26,1,Queensland,148.760924,-21.779763 +2024,9,3,1,Queensland,148.70116,-21.72042 +2021,10,16,1,Queensland,148.670316,-21.634177 +2023,4,11,1,Queensland,148.678939,-21.674836 +2020,8,11,1,Queensland,148.68685,-21.68531 +2023,1,4,1,Queensland,148.68252,-21.67996 +2023,8,11,1,Queensland,148.83392,-21.46818 +2021,10,19,1,Queensland,148.717705,-21.615351 +2023,1,6,1,Queensland,148.737258,-21.737631 +2020,8,21,1,Queensland,148.873383,-21.439196 +2021,9,9,1,Queensland,148.689566,-21.693045 +2021,9,25,1,Queensland,148.640733,-21.707475 +2023,4,11,1,Queensland,148.806901,-21.488548 +2020,8,11,1,Queensland,148.639782,-21.707836 +2021,9,19,1,Queensland,148.670986,-21.694431 +2021,9,19,1,Queensland,148.947751,-21.772426 +2021,9,5,1,Queensland,148.419408,-21.197385 +2022,10,22,1,Queensland,148.76894,-21.77697 +2023,4,23,1,Queensland,148.687578,-21.679614 +2022,1,13,1,Queensland,148.7257,-21.71886 +2024,8,6,1,Queensland,148.742652,-21.746633 +2023,4,13,1,Queensland,148.759353,-21.775294 +2021,8,24,1,Queensland,148.69095,-21.697757 +2024,9,15,1,Queensland,148.93706,-21.39504 +2021,8,26,1,Queensland,148.6911,-21.697513 +2020,9,12,1,Queensland,148.765685,-21.536538 +2022,11,12,1,Queensland,148.744567,-21.750061 +2022,7,26,1,Queensland,148.573744,-21.862714 +2023,1,12,1,Queensland,148.737381,-21.737739 +2021,9,16,1,Queensland,148.717861,-21.617058 +2023,4,21,1,Queensland,148.738831,-21.740422 +2024,3,19,1,New South Wales,153.553413,-28.331479 +2024,3,6,1,New South Wales,153.545955,-28.335426 +2024,3,19,1,New South Wales,153.553413,-28.331479 +2024,3,19,1,New South Wales,153.553413,-28.331479 +2024,3,7,1,New South Wales,153.545955,-28.335426 +2024,3,7,1,New South Wales,153.545955,-28.335426 +2020,3,28,1,Queensland,153.226262,-27.61296 +2023,1,14,1,Queensland,153.071675,-27.531679 +2020,9,26,1,Queensland,153.278664,-27.534972 +2021,8,18,1,Queensland,153.230779,-27.498803 +2022,11,26,1,Queensland,153.228164,-27.50811 +2021,5,31,1,Queensland,153.255448,-27.517275 +2022,11,15,1,Queensland,153.279771,-27.525156 +2021,8,10,1,Queensland,153.01657,-27.180783 +2022,2,21,1,Queensland,152.414757,-27.546022 +2023,10,14,2,Queensland,153.32912,-27.89066 +2020,8,4,1,Queensland,152.967008,-26.702277 +2020,8,26,1,Queensland,152.997803,-26.438253 +2023,1,12,1,Queensland,153.273854,-27.538697 +2023,4,14,1,Queensland,153.222752,-27.497621 +2022,8,30,1,Queensland,153.234311,-27.502846 +2020,6,30,2,Queensland,153.45231,-28.09557 +2020,7,25,1,Queensland,153.281712,-27.525438 +2020,10,20,1,Queensland,153.284016,-27.525139 +2020,1,22,1,Queensland,153.117977,-27.87661 +2020,10,17,1,Queensland,153.271039,-27.553351 +2021,10,2,1,Queensland,153.248241,-27.489955 +2021,10,17,2,Queensland,153.45184,-28.10023 +2020,4,16,1,Queensland,153.260685,-27.548318 +2020,12,9,1,Queensland,153.264754,-27.59517 +2020,11,2,1,Queensland,152.985132,-27.162829 +2022,3,30,1,Queensland,153.241383,-27.521869 +2021,12,19,2,Queensland,153.32912,-27.89065 +2021,7,27,1,Queensland,152.848429,-27.531786 +2020,9,19,1,Queensland,153.249353,-27.594953 +2020,11,5,1,Queensland,153.256282,-27.548577 +2021,2,14,1,Queensland,153.249353,-27.594953 +2020,5,8,1,Queensland,153.234088,-27.488126 +2020,10,9,1,Queensland,153.281937,-27.525665 +2022,8,16,1,Queensland,153.262084,-27.540981 +2023,1,3,1,Queensland,153.097658,-27.814502 +2023,9,24,1,Queensland,153.327684,-28.094661 +2020,4,17,1,Queensland,153.249199,-27.490105 +2022,9,14,2,Queensland,153.32304,-27.89017 +2021,9,13,2,Queensland,153.45116,-28.14154 +2023,10,22,2,Queensland,153.42706,-28.11845 +2023,6,3,1,Queensland,153.244402,-27.511693 +2021,8,18,1,Queensland,153.230775,-27.498803 +2022,1,6,1,Queensland,153.24884,-27.511714 +2023,10,10,1,Queensland,153.284167,-27.525293 +2020,5,28,1,Queensland,153.249353,-27.594953 +2021,5,9,1,Queensland,153.204148,-27.549201 +2022,2,19,1,Queensland,153.206093,-27.527771 +2021,9,30,1,Queensland,153.198872,-27.544641 +2022,2,11,1,Queensland,153.282182,-27.53148 +2020,6,14,1,Queensland,153.255852,-27.548212 +2022,2,11,1,Queensland,153.284491,-27.525424 +2021,12,28,1,Queensland,153.230154,-27.542128 +2020,10,20,1,Queensland,153.256283,-27.548526 +2020,6,22,1,Queensland,153.256273,-27.548541 +2022,9,16,1,Queensland,153.281929,-27.532135 +2020,6,22,1,Queensland,153.244799,-27.626789 +2023,4,23,2,Queensland,153.37078,-27.83763 +2021,9,21,1,Queensland,153.284496,-27.524676 +2022,1,17,1,Queensland,153.282285,-27.53295 +2020,3,19,1,Queensland,153.254192,-27.502952 +2024,7,18,1,Queensland,152.635337,-27.790618 +2023,10,1,1,Queensland,153.273683,-27.53772 +2021,11,11,1,Queensland,153.245877,-27.497832 +2020,12,23,1,Queensland,153.271391,-27.553172 +2022,12,5,1,Queensland,153.274127,-27.531922 +2022,2,12,2,Queensland,153.41465,-28.1445 +2022,10,10,1,Queensland,153.250648,-27.516038 +2023,11,5,1,Queensland,153.273797,-27.5374 +2021,7,3,1,Queensland,153.252257,-27.547545 +2020,2,27,1,Queensland,153.283364,-27.916601 +2023,7,21,1,Queensland,153.090355,-27.535474 +2020,1,11,1,Queensland,153.272739,-27.539057 +2020,10,17,1,Queensland,153.271039,-27.553351 +2021,10,21,1,Queensland,153.043836,-26.667472 +2024,3,22,1,Queensland,153.284176,-27.525153 +2023,10,17,1,Queensland,153.250492,-27.539444 +2021,3,10,1,Queensland,153.204179,-27.546095 +2020,5,3,1,Queensland,153.244937,-27.490672 +2023,10,16,1,Queensland,153.245299,-27.501072 +2024,5,25,1,Queensland,153.284088,-27.525192 +2020,12,9,1,Queensland,153.271896,-27.554209 +2020,2,8,1,Queensland,152.937074,-27.380999 +2021,8,21,1,Queensland,153.283321,-27.525654 +2022,4,29,1,Queensland,153.246283,-27.507949 +2022,3,13,1,Queensland,153.247726,-27.490861 +2021,11,5,1,Queensland,153.236671,-27.489999 +2022,10,5,2,Queensland,153.35659,-27.93739 +2022,1,17,2,Queensland,153.41671,-28.14359 +2021,11,8,1,Queensland,153.25211,-27.53251 +2020,10,31,1,Queensland,153.274219,-27.540947 +2022,11,7,2,Queensland,153.38495,-28.11045 +2023,7,22,1,Queensland,153.250465,-27.515222 +2020,10,2,1,Queensland,153.256279,-27.548521 +2020,7,31,1,Queensland,153.249526,-27.490951 +2020,7,18,1,Queensland,153.260419,-27.50354 +2021,2,5,1,Queensland,152.735376,-26.285213 +2024,1,21,1,Queensland,153.25195,-27.514699 +2020,1,18,1,Queensland,153.282462,-27.533302 +2022,5,2,1,Queensland,152.857114,-25.320127 +2021,8,14,2,Queensland,153.40965,-28.11395 +2022,11,1,1,Queensland,153.281316,-27.583841 +2021,10,27,2,Queensland,153.43926,-28.14409 +2023,8,6,1,Queensland,153.283307,-27.525966 +2020,12,27,1,Queensland,153.245162,-27.501323 +2020,3,11,1,Queensland,153.283474,-27.525871 +2023,9,6,1,Queensland,153.242037,-27.491286 +2021,10,2,1,Queensland,153.070572,-27.502484 +2023,11,1,2,Queensland,153.32912,-27.89066 +2020,9,29,2,Queensland,153.40567,-28.11538 +2020,9,30,1,Queensland,153.23056,-27.49748 +2022,4,16,1,Queensland,153.273691,-27.537749 +2023,3,2,1,Queensland,153.252611,-27.553451 +2020,1,29,1,Queensland,153.251608,-27.556523 +2020,1,3,1,Queensland,153.176877,-27.536777 +2024,4,22,1,Queensland,153.273683,-27.538729 +2021,4,30,1,Queensland,153.256464,-27.548777 +2020,10,3,1,Queensland,153.28358,-27.534233 +2020,5,15,1,Queensland,152.97824,-27.381574 +2020,11,3,1,Queensland,153.273662,-27.543139 +2020,1,5,1,Queensland,153.27206,-27.551436 +2021,8,13,1,Queensland,153.256377,-27.548852 +2023,6,15,1,Queensland,153.384901,-27.915992 +2022,11,27,1,Queensland,153.271952,-27.54442 +2020,4,8,1,Queensland,153.242601,-27.513133 +2024,10,24,1,Queensland,153.089977,-27.535222 +2021,4,26,2,Queensland,153.34165,-27.9122 +2020,8,24,2,Queensland,153.457392,-28.093919 +2023,11,15,1,Queensland,153.276628,-27.529556 +2021,8,14,1,Queensland,153.234749,-27.494664 +2023,8,29,1,Queensland,153.302276,-27.569094 +2020,11,8,1,Queensland,153.271474,-27.553103 +2020,10,22,1,Queensland,153.269964,-27.545519 +2023,11,2,2,Queensland,153.37702,-27.95863 +2023,11,3,1,Queensland,153.283858,-27.525564 +2021,1,8,1,Queensland,153.27359,-27.553627 +2020,10,31,1,Queensland,153.256276,-27.548573 +2020,7,20,2,Queensland,153.37114,-28.11066 +2021,8,30,1,Queensland,153.095341,-27.526693 +2022,3,18,1,Queensland,153.231434,-27.500197 +2020,10,11,1,Queensland,153.272081,-27.551979 +2021,10,19,1,Queensland,153.224888,-27.507564 +2020,9,26,1,Queensland,153.282466,-27.529655 +2022,1,24,1,Queensland,153.228892,-27.550143 +2023,4,16,1,Queensland,151.836679,-26.530611 +2023,3,13,1,Queensland,153.233303,-27.48803 +2020,11,12,1,Queensland,153.284467,-27.524591 +2020,9,15,1,Queensland,153.172751,-27.715559 +2020,10,25,2,Queensland,153.45302,-28.09636 +2020,10,30,1,Queensland,153.256259,-27.548566 +2020,11,15,1,Queensland,153.203504,-27.549476 +2020,10,13,1,Queensland,153.264019,-27.53398 +2020,10,3,1,Queensland,153.28188,-27.531929 +2024,8,24,1,Queensland,153.297373,-27.569036 +2021,10,22,1,Queensland,153.273411,-27.5587 +2020,5,7,1,Queensland,153.24517,-27.627242 +2021,5,3,1,Queensland,153.252125,-27.542327 +2021,5,18,1,Queensland,153.277223,-27.544322 +2021,8,15,1,Queensland,153.249815,-27.511729 +2020,8,24,1,Queensland,153.256276,-27.548563 +2020,9,29,1,Queensland,153.182013,-27.538627 +2020,1,22,1,Queensland,153.25352,-27.540455 +2021,9,8,1,Queensland,152.976693,-27.27332 +2020,9,23,1,Queensland,153.27,-27.55 +2022,9,26,1,Queensland,153.127007,-27.759123 +2021,11,21,1,Queensland,153.277284,-27.544294 +2021,6,21,1,Queensland,153.103554,-27.511491 +2020,10,1,2,Queensland,153.44696,-28.09703 +2020,11,9,2,Queensland,153.32894,-27.89069 +2024,10,31,1,New South Wales,150.894867,-34.004089 +2022,8,12,1,Queensland,153.196728,-27.503093 +2021,1,30,1,Queensland,153.277942,-27.581733 +2020,9,26,1,Queensland,152.985595,-27.248834 +2022,12,21,1,Queensland,153.274759,-27.539923 +2023,6,3,1,Queensland,153.248775,-27.510691 +2023,11,19,2,Queensland,153.35896,-27.93334 +2020,4,3,1,Queensland,153.271068,-27.539747 +2021,10,17,1,Queensland,153.066595,-26.689958 +2022,4,30,1,Queensland,153.247726,-27.489611 +2023,6,16,1,Queensland,153.270659,-27.53866 +2020,8,14,1,Queensland,153.220162,-27.513239 +2021,8,1,1,Queensland,152.918004,-27.409476 +2021,10,4,1,Queensland,153.257344,-27.5477 +2020,11,16,1,Queensland,152.978809,-27.120487 +2021,12,2,1,Queensland,153.282083,-27.531713 +2021,11,5,1,Queensland,153.206057,-27.497618 +2020,11,27,1,Queensland,153.270126,-27.552161 +2022,8,27,1,Queensland,153.245125,-27.500945 +2022,3,16,1,Queensland,153.282223,-27.532878 +2022,10,27,1,Queensland,153.217528,-27.493856 +2022,4,26,1,Queensland,153.252313,-27.494257 +2021,9,8,1,Queensland,153.218785,-27.493762 +2020,2,18,1,Queensland,153.226958,-27.560734 +2022,3,26,1,Queensland,153.231434,-27.500197 +2023,3,29,1,Queensland,152.860825,-27.54885 +2021,2,22,2,New South Wales,153.549493,-28.556988 +2023,5,22,1,Queensland,153.278386,-27.525336 +2021,12,27,1,Queensland,153.197097,-27.491142 +2023,1,14,1,Queensland,153.244636,-27.498973 +2022,10,27,1,Queensland,153.296943,-27.595599 +2022,10,16,1,Queensland,153.284058,-27.525031 +2021,5,24,1,Queensland,153.279939,-27.534164 +2024,6,13,1,Queensland,153.276855,-27.544214 +2021,6,27,1,Queensland,153.195979,-27.492193 +2021,9,28,1,Queensland,153.252995,-27.531425 +2020,8,14,1,Queensland,153.249587,-27.556563 +2020,8,6,1,Queensland,153.360839,-27.568508 +2023,11,7,1,Queensland,153.192864,-27.51694 +2021,9,21,1,Queensland,153.281835,-27.525361 +2021,6,22,1,Queensland,153.281677,-27.526888 +2023,11,17,2,Queensland,153.281932,-27.532405 +2020,9,10,1,Queensland,153.228867,-27.498658 +2021,8,4,1,Queensland,153.251681,-27.531721 +2021,11,23,1,Queensland,153.276249,-27.534912 +2021,11,15,1,Queensland,151.743289,-27.419252 +2020,11,9,1,Queensland,153.279135,-27.545254 +2021,10,18,1,Queensland,153.230385,-27.500782 +2021,11,13,1,Queensland,153.282084,-27.53143 +2023,7,19,1,Queensland,153.281216,-27.529448 +2020,10,26,1,Queensland,153.278838,-27.525267 +2020,1,1,1,Queensland,152.935811,-27.320861 +2023,5,27,1,Queensland,152.965402,-27.280642 +2020,4,8,1,Queensland,153.260903,-27.54863 +2020,1,17,1,Queensland,152.662895,-26.24252 +2020,9,12,2,New South Wales,150.465243,-34.490357 +2020,10,10,1,Queensland,152.934325,-27.480369 +2020,4,5,1,Queensland,153.246366,-27.603566 +2022,8,3,1,Queensland,153.273846,-27.535603 +2022,9,28,1,Queensland,152.953827,-27.212189 +2021,10,12,1,Queensland,153.276102,-27.536857 +2020,5,7,1,Queensland,153.256251,-27.548597 +2021,4,6,1,Queensland,153.282986,-27.533948 +2022,8,20,1,Queensland,153.273846,-27.535603 +2020,8,31,1,Queensland,153.360839,-27.568508 +2020,2,14,1,Queensland,153.294769,-27.612663 +2020,11,17,1,Queensland,153.235328,-27.496323 +2021,5,7,1,Queensland,153.281667,-27.53101 +2020,3,3,1,Queensland,153.271932,-27.549659 +2021,10,29,1,Queensland,153.023247,-26.725784 +2021,10,23,2,Queensland,151.637059,-25.426213 +2020,11,20,1,Queensland,153.283422,-27.525783 +2021,9,23,2,Queensland,151.637059,-25.426213 +2021,8,19,1,Queensland,153.244863,-27.501126 +2021,2,11,1,Queensland,153.261858,-27.519014 +2020,10,8,1,Queensland,153.256277,-27.548573 +2020,9,20,1,Queensland,153.269463,-27.54624 +2021,12,28,1,Queensland,153.274536,-27.539412 +2022,12,26,1,Queensland,153.08068,-27.508825 +2020,11,20,1,Queensland,153.276684,-27.526613 +2023,4,11,1,Queensland,153.393838,-28.106415 +2022,1,8,1,Queensland,152.932923,-27.316825 +2023,4,13,1,Queensland,153.252507,-27.511702 +2020,7,16,1,Queensland,153.256279,-27.548587 +2021,5,10,1,Queensland,153.262485,-27.546019 +2023,7,23,1,Queensland,152.648759,-26.22168 +2021,3,7,1,Queensland,153.115224,-27.758552 +2020,2,18,1,Queensland,153.271287,-27.546443 +2022,10,11,2,Queensland,151.637059,-25.426213 +2023,2,15,1,Queensland,152.993304,-27.241801 +2021,10,9,1,Queensland,153.236582,-27.489838 +2023,9,30,1,Queensland,153.241201,-27.490285 +2020,4,9,1,Queensland,153.239507,-27.4938 +2021,8,12,1,Queensland,153.258899,-27.519062 +2022,9,6,1,Queensland,153.239467,-27.499992 +2020,10,23,1,Queensland,153.171944,-27.730278 +2022,11,19,1,Queensland,153.274127,-27.531922 +2022,9,10,1,Queensland,153.295714,-27.611128 +2023,1,1,2,Queensland,153.28388,-27.525093 +2021,10,10,1,Queensland,153.009896,-27.250757 +2023,4,5,1,Queensland,153.27232,-27.539083 +2020,11,10,1,Queensland,153.091089,-27.49898 +2020,12,4,1,Queensland,153.304835,-27.564712 +2023,5,4,1,Queensland,152.781122,-26.09176 +2020,12,4,1,Queensland,153.30421,-27.566208 +2020,1,14,1,Queensland,153.257154,-27.553088 +2021,10,7,1,Queensland,153.256294,-27.548887 +2021,11,17,1,Queensland,153.265147,-28.03563 +2023,1,9,1,Queensland,152.981586,-27.240651 +2021,8,29,1,Queensland,153.231814,-27.495174 +2022,11,27,1,Queensland,152.945583,-27.304296 +2020,8,28,1,Queensland,153.28186,-27.525573 +2023,5,2,1,Queensland,152.714682,-26.418161 +2021,10,15,2,Queensland,153.257447,-27.547654 +2020,6,26,1,Queensland,153.281941,-27.525585 +2022,1,18,1,Queensland,153.214924,-27.49182 +2020,10,28,1,Queensland,153.197267,-27.567269 +2021,2,16,1,Queensland,153.24513,-27.501433 +2021,8,28,1,Queensland,153.266502,-27.548098 +2020,10,25,1,Queensland,153.271063,-27.553363 +2020,3,25,1,Queensland,153.281854,-27.531066 +2023,6,3,1,Queensland,153.294123,-27.579389 +2020,12,1,1,Queensland,153.281422,-27.529471 +2023,1,25,1,Queensland,153.283527,-27.525655 +2024,3,22,1,Queensland,153.284144,-27.525161 +2024,5,5,1,Queensland,153.282033,-27.532588 +2022,3,15,1,Queensland,153.271214,-27.540236 +2020,6,25,1,Queensland,153.295472,-27.609531 +2020,12,17,1,Queensland,153.261206,-27.519954 +2023,1,11,1,Queensland,153.274244,-27.538701 +2023,7,23,1,Queensland,153.225405,-27.502782 +2021,9,7,1,Queensland,153.278945,-27.556866 +2021,5,28,1,Queensland,153.061897,-27.533286 +2021,9,13,2,Queensland,153.251569,-27.531575 +2023,5,10,1,Queensland,153.274133,-27.531917 +2022,12,2,1,Queensland,153.237628,-27.503366 +2022,1,19,1,Queensland,153.306823,-27.642425 +2020,8,18,1,Queensland,153.272051,-27.529153 +2020,9,12,2,Queensland,153.044699,-27.545639 +2022,11,14,1,Queensland,153.097131,-27.502231 +2020,12,11,1,Queensland,153.085635,-27.516341 +2023,9,30,1,Queensland,153.284142,-27.525216 +2021,11,17,1,Queensland,153.27625,-27.535045 +2023,6,6,1,Queensland,153.281791,-27.530216 +2022,9,7,1,Queensland,153.061107,-27.515753 +2021,4,26,1,Queensland,153.28264,-27.533105 +2023,6,19,2,Queensland,153.228972,-27.498504 +2020,3,6,1,Queensland,153.111616,-27.527939 +2020,7,19,1,Queensland,153.281907,-27.525571 +2020,9,17,1,Queensland,152.95015,-27.484275 +2020,4,12,1,Queensland,153.281833,-27.525348 +2020,12,5,1,Queensland,153.279203,-27.582653 +2022,1,16,1,Queensland,153.273615,-27.539369 +2021,12,4,1,Queensland,152.931854,-27.518757 +2023,10,1,1,Queensland,153.273704,-27.53772 +2020,6,11,2,Queensland,153.281857,-27.52556 +2024,9,19,1,Queensland,153.2821,-27.52559 +2023,1,13,1,Queensland,153.274577,-27.538832 +2021,1,31,2,Queensland,152.955766,-27.293143 +2022,10,17,1,Queensland,153.224881,-27.498527 +2023,6,22,1,Queensland,153.225558,-27.502571 +2021,10,2,1,Queensland,153.247405,-27.490044 +2023,12,28,1,Queensland,152.092388,-27.361139 +2021,1,4,1,Queensland,153.271057,-27.553389 +2020,11,21,1,Queensland,153.403531,-27.49663 +2020,12,4,1,Queensland,153.180918,-27.537622 +2020,10,1,1,Queensland,153.257785,-27.547652 +2021,2,2,1,Queensland,153.243088,-27.535445 +2020,5,18,1,Queensland,153.256277,-27.548579 +2020,2,1,1,Queensland,153.282044,-27.527018 +2021,10,8,1,Queensland,153.069879,-27.525094 +2021,8,29,1,Queensland,153.230668,-27.497378 +2022,10,12,1,Queensland,153.140807,-27.660842 +2020,1,22,1,Queensland,153.260023,-27.549981 +2021,10,25,1,Queensland,153.273633,-27.536739 +2024,4,29,1,Queensland,151.721535,-26.62207 +2021,9,17,1,Queensland,153.230653,-27.498013 +2020,9,26,1,Queensland,153.282015,-27.525506 +2020,12,30,1,Queensland,153.283303,-27.525751 +2020,10,20,1,Queensland,153.0992,-27.513242 +2021,10,7,2,Queensland,153.236371,-27.48934 +2020,12,20,1,Queensland,153.274545,-27.539408 +2021,9,6,1,Queensland,153.009045,-27.776557 +2021,11,19,2,Queensland,153.284114,-27.525289 +2020,9,26,1,Queensland,153.277316,-27.525935 +2020,7,1,1,Queensland,153.295324,-27.590237 +2023,12,12,1,Queensland,153.271208,-27.53795 +2020,1,25,1,Queensland,153.400767,-27.498505 +2021,4,21,1,Queensland,153.268833,-27.629437 +2020,3,24,2,Queensland,153.226944,-27.560833 +2020,9,30,1,Queensland,153.252526,-27.547594 +2021,7,10,2,Queensland,153.272954,-27.529089 +2022,4,28,1,Queensland,152.937847,-27.326559 +2024,1,21,1,Queensland,153.090463,-27.535454 +2021,12,15,1,Queensland,153.251561,-27.5156 +2021,10,4,1,Queensland,153.250575,-27.531309 +2021,1,31,1,Queensland,153.273647,-27.539414 +2023,8,27,1,Queensland,153.28195,-27.531479 +2020,9,12,1,Queensland,153.271174,-27.541191 +2022,1,24,1,Queensland,153.229274,-27.549624 +2020,12,27,1,Queensland,153.245087,-27.501273 +2021,1,5,1,Queensland,153.27198,-27.554214 +2021,9,1,1,Queensland,153.057243,-27.535522 +2022,10,11,1,Queensland,153.06202,-27.55109 +2023,10,10,1,Queensland,153.284132,-27.525198 +2022,2,11,1,Queensland,153.281241,-27.529342 +2020,9,11,2,Queensland,153.044673,-27.5458 +2020,3,25,1,Queensland,153.281321,-27.529464 +2023,4,21,1,Queensland,153.249341,-27.490113 +2020,10,6,1,Queensland,153.222909,-27.499832 +2021,6,8,1,Queensland,153.281795,-27.530721 +2022,4,7,1,Queensland,153.387158,-27.620528 +2024,6,29,1,Queensland,153.28198,-27.532533 +2023,9,16,1,Queensland,152.9927,-27.295 +2023,11,15,2,Queensland,152.566907,-27.504777 +2021,9,19,2,Queensland,153.275123,-27.543984 +2021,12,21,1,Queensland,153.281905,-27.530818 +2021,9,21,1,Queensland,153.282608,-27.526293 +2021,10,8,1,Queensland,152.051676,-26.726645 +2021,9,5,1,Queensland,153.271762,-27.529905 +2020,12,3,1,Queensland,153.187946,-27.721428 +2022,8,9,1,Queensland,153.228661,-27.49906 +2021,9,19,1,Queensland,153.245244,-27.501103 +2022,8,15,1,Queensland,153.031654,-26.747028 +2023,5,8,1,Queensland,152.940209,-27.250055 +2020,9,14,1,Queensland,153.044673,-27.5458 +2021,9,30,1,Queensland,153.231812,-27.501515 +2021,2,4,1,Queensland,153.252497,-27.562619 +2021,4,7,1,Queensland,153.388045,-28.117917 +2020,11,5,1,Queensland,153.255844,-27.548412 +2021,9,18,1,Queensland,153.274856,-27.554832 +2021,12,28,1,Queensland,152.994649,-26.458721 +2020,7,30,1,Queensland,153.530099,-27.427456 +2021,7,22,1,Queensland,153.067017,-27.555003 +2022,2,18,1,Queensland,153.28305,-27.525783 +2021,9,24,1,Queensland,153.246628,-27.499461 +2021,2,5,1,Queensland,153.281242,-27.529476 +2024,10,5,1,Queensland,153.269298,-27.538797 +2021,6,26,1,Queensland,153.207929,-27.502657 +2022,3,3,1,Queensland,153.283476,-27.534347 +2020,11,17,1,Queensland,153.283615,-27.526354 +2023,1,14,1,Queensland,153.248205,-27.490351 +2023,1,6,1,Queensland,151.273885,-27.183446 +2020,9,15,2,Queensland,153.224369,-27.508354 +2022,1,25,1,Queensland,153.274213,-27.538807 +2020,7,27,1,Queensland,153.281696,-27.583326 +2020,11,18,2,Queensland,153.098861,-27.530833 +2023,2,11,1,Queensland,152.128716,-27.523154 +2021,12,1,1,Queensland,153.17157,-27.50149 +2021,8,17,2,Queensland,153.084203,-27.529661 +2020,3,11,2,Queensland,153.282594,-27.526328 +2021,3,10,1,Queensland,153.245241,-27.490365 +2021,8,18,1,Queensland,153.082201,-27.502319 +2021,12,29,1,Queensland,153.282211,-27.530826 +2021,2,24,1,Queensland,153.271545,-27.553196 +2023,3,3,1,Queensland,152.426778,-27.247327 +2022,4,20,1,Queensland,153.281417,-27.532805 +2022,9,24,1,Queensland,153.208108,-27.493064 +2020,9,12,1,Queensland,153.225628,-27.502771 +2021,8,20,1,Queensland,153.267719,-27.525897 +2021,3,29,1,Queensland,153.272032,-27.554336 +2023,1,23,1,Queensland,153.225423,-27.503566 +2022,12,23,1,Queensland,153.050781,-27.557954 +2020,4,4,1,Queensland,153.281842,-27.530719 +2021,11,17,1,Queensland,153.23679,-27.490582 +2020,4,17,1,Queensland,153.248025,-27.490864 +2023,1,1,1,Queensland,153.278253,-27.537107 +2021,11,3,1,Queensland,153.278926,-27.532693 +2021,3,19,1,Queensland,153.20949,-27.530057 +2023,4,13,1,Queensland,153.252144,-27.551569 +2020,12,22,1,Queensland,153.273809,-27.536862 +2020,7,28,1,Queensland,153.254698,-27.543145 +2020,8,8,1,Queensland,153.284023,-27.525878 +2024,7,30,1,Queensland,153.283812,-27.525552 +2020,1,5,1,Queensland,153.307047,-28.030977 +2021,10,12,1,Queensland,153.27724,-27.544324 +2020,8,30,1,Queensland,153.172578,-27.73576 +2020,9,27,1,Queensland,153.272898,-27.543553 +2023,4,13,1,Queensland,153.223372,-27.497722 +2023,11,19,1,Queensland,153.274184,-27.526147 +2022,4,3,1,Queensland,153.272574,-27.536808 +2022,12,6,2,Queensland,153.336411,-28.033499 +2021,8,18,1,Queensland,153.201852,-27.509185 +2023,4,14,2,Queensland,153.090375,-27.535427 +2020,8,2,1,Queensland,152.74624,-27.979445 +2021,9,29,2,Queensland,153.271366,-27.574398 +2020,5,25,1,Queensland,153.256295,-27.548585 +2021,1,1,1,Queensland,153.055861,-27.543031 +2021,12,30,1,Queensland,152.890006,-27.410808 +2021,8,22,1,Queensland,153.054383,-27.551003 +2021,2,24,2,Queensland,153.259832,-27.519138 +2024,3,15,1,Queensland,153.2761,-27.544253 +2021,10,25,1,Queensland,152.899858,-27.622251 +2021,1,5,1,Queensland,153.093768,-27.496883 +2021,3,10,1,Queensland,153.204083,-27.547146 +2023,9,26,1,Queensland,153.284122,-27.525222 +2020,8,14,2,Queensland,153.225217,-27.498679 +2021,8,5,2,Queensland,152.920006,-27.408414 +2020,10,24,1,Queensland,153.211066,-27.531819 +2020,3,11,2,Queensland,153.282594,-27.526337 +2021,10,8,1,Queensland,153.520288,-27.429747 +2020,1,1,1,Queensland,153.281857,-27.525333 +2021,11,14,1,Queensland,153.252171,-27.53309 +2023,3,6,1,Queensland,152.970421,-27.299113 +2020,5,1,1,Queensland,153.061599,-26.473089 +2020,10,19,1,Queensland,152.968333,-27.146463 +2021,10,11,1,Queensland,153.27724,-27.544326 +2023,1,27,1,Queensland,152.863584,-26.142408 +2023,9,12,2,Queensland,153.27384,-27.537421 +2020,7,15,1,Queensland,153.283958,-27.525734 +2023,4,26,1,Queensland,153.239319,-27.473538 +2021,11,27,2,Queensland,153.251526,-27.512101 +2020,10,31,1,Queensland,153.249353,-27.594953 +2020,10,8,1,Queensland,153.28193,-27.52556 +2020,8,7,1,Queensland,153.208314,-27.913344 +2020,9,9,1,Queensland,153.249353,-27.594953 +2023,5,2,1,Queensland,153.284091,-27.525304 +2021,10,14,2,Queensland,153.228861,-27.498112 +2020,9,3,2,Queensland,153.257852,-27.49977 +2023,3,25,1,Queensland,153.231282,-27.646883 +2023,10,15,1,Queensland,153.285787,-27.52349 +2020,4,12,1,Queensland,153.278462,-27.535336 +2023,12,29,1,Queensland,153.273608,-27.53803 +2021,3,12,1,Queensland,153.278539,-27.536918 +2022,12,9,1,Queensland,153.047335,-27.725328 +2021,2,8,1,Queensland,153.404711,-27.494041 +2020,6,11,2,Queensland,153.281832,-27.525597 +2020,11,7,1,Queensland,153.197601,-27.568554 +2021,12,23,1,Queensland,153.282105,-27.531424 +2020,1,14,2,Queensland,153.226969,-27.560763 +2020,6,18,1,Queensland,153.244471,-27.626596 +2020,10,25,1,Queensland,153.244772,-27.492232 +2023,2,16,1,Queensland,153.137922,-27.81932 +2020,9,6,1,Queensland,153.360839,-27.568508 +2023,4,20,1,Queensland,152.464432,-26.675976 +2021,12,6,1,Queensland,153.21198,-27.494819 +2020,9,19,1,Queensland,152.938485,-27.123759 +2020,12,9,1,Queensland,153.27186,-27.55312 +2023,9,30,1,Queensland,153.282117,-27.532919 +2021,10,21,1,Queensland,153.278542,-27.534885 +2023,9,2,1,Queensland,153.276145,-27.537522 +2020,2,11,1,Queensland,153.253198,-27.547425 +2020,10,12,1,Queensland,153.168057,-28.018894 +2020,2,3,1,Queensland,153.274746,-27.539818 +2022,3,7,1,Queensland,153.226957,-27.503289 +2020,10,28,1,Queensland,153.258147,-27.597951 +2021,5,23,1,Queensland,153.253477,-27.551801 +2020,4,4,1,Queensland,153.281678,-27.532166 +2023,7,6,1,Queensland,153.233879,-27.500485 +2023,11,12,1,Queensland,153.273877,-27.537418 +2021,5,15,1,Queensland,153.248737,-27.489999 +2022,9,22,1,Queensland,153.183526,-27.72063 +2020,3,28,2,Queensland,153.281247,-27.529782 +2022,1,18,1,Queensland,153.241383,-27.521869 +2020,9,23,1,Queensland,153.271151,-27.553354 +2022,3,13,1,Queensland,153.248327,-27.490205 +2021,4,23,1,Queensland,152.918321,-27.408595 +2023,10,15,1,Queensland,153.282155,-27.525545 +2020,9,18,2,Queensland,152.881365,-26.456589 +2020,7,19,1,Queensland,153.281829,-27.530601 +2023,10,1,1,Queensland,153.273704,-27.537739 +2020,9,22,1,Queensland,153.273261,-27.551912 +2020,11,27,1,Queensland,153.221956,-27.501956 +2021,5,22,1,Queensland,153.103795,-27.518415 +2023,3,31,1,Queensland,153.274127,-27.531922 +2021,9,13,1,Queensland,153.326683,-28.090355 +2021,11,27,1,Queensland,153.253586,-27.495923 +2020,9,2,1,Queensland,153.234082,-27.500297 +2020,10,1,1,Queensland,153.058915,-27.538924 +2023,8,19,1,Queensland,153.20425,-27.489384 +2020,1,3,1,Queensland,153.176889,-27.536648 +2021,8,19,1,Queensland,153.252426,-27.531641 +2023,1,25,1,Queensland,153.282147,-27.525579 +2020,2,15,1,Queensland,153.270969,-27.553354 +2023,1,15,1,Queensland,153.24551,-27.500837 +2021,8,5,1,Queensland,153.264014,-27.540803 +2021,12,14,1,Queensland,153.254277,-27.495896 +2024,6,27,1,Queensland,153.276128,-27.537452 +2020,1,29,2,Queensland,153.261312,-27.543984 +2021,9,13,1,Queensland,153.256304,-27.548884 +2022,3,5,1,Queensland,153.250239,-27.508447 +2021,7,13,1,Queensland,153.256374,-27.548836 +2024,3,12,1,Queensland,153.276089,-27.537481 +2020,11,24,1,Queensland,153.257844,-27.639864 +2020,1,9,1,Queensland,152.951171,-27.294576 +2021,10,17,1,Queensland,153.256286,-27.548888 +2022,3,15,1,Queensland,153.086043,-27.516295 +2020,6,15,1,Queensland,153.256285,-27.548583 +2023,7,27,1,Queensland,153.195388,-27.73659 +2020,5,19,1,Queensland,153.256281,-27.548581 +2021,11,1,1,Queensland,153.256283,-27.548885 +2022,3,12,1,Queensland,153.28415,-27.525046 +2022,6,28,1,Queensland,152.866323,-27.521212 +2023,9,11,1,Queensland,153.091026,-27.499164 +2021,8,31,1,Queensland,153.230403,-27.498787 +2020,5,19,1,Queensland,153.256308,-27.548552 +2021,10,6,2,Queensland,153.272708,-27.539005 +2020,8,14,1,Queensland,153.249353,-27.594953 +2023,8,27,1,Queensland,151.974356,-27.646747 +2023,12,5,1,Queensland,153.245115,-27.50102 +2020,4,18,1,Queensland,153.256251,-27.548592 +2020,9,19,1,Queensland,153.271201,-27.54093 +2020,9,7,1,Queensland,153.229604,-27.513722 +2021,9,16,1,Queensland,152.922053,-27.442353 +2020,12,3,1,Queensland,152.481265,-26.20498 +2021,11,14,1,Queensland,153.249353,-27.594953 +2020,12,14,1,Queensland,153.231812,-27.55293 +2023,6,7,2,Queensland,153.357291,-27.837164 +2020,8,24,1,Queensland,153.193219,-27.69999 +2020,9,26,1,Queensland,153.271101,-27.539073 +2020,1,14,1,Queensland,153.22698,-27.560807 +2020,9,26,1,Queensland,153.283544,-27.534776 +2021,6,28,2,Queensland,153.207747,-27.502743 +2021,12,29,1,Queensland,153.282146,-27.531397 +2021,7,30,1,Queensland,153.203368,-27.549772 +2020,1,1,1,Queensland,153.28291,-27.52654 +2022,2,11,1,Queensland,153.283697,-27.525598 +2021,4,14,1,Queensland,153.080556,-27.513111 +2021,11,8,1,Queensland,153.236511,-27.489961 +2021,11,18,1,Queensland,153.252171,-27.53309 +2020,11,25,1,Queensland,153.271319,-27.553206 +2022,3,12,1,Queensland,153.282138,-27.532961 +2023,4,14,2,Queensland,153.248475,-27.490059 +2022,3,12,1,Queensland,153.282195,-27.530983 +2023,5,5,1,Queensland,153.233122,-27.507145 +2021,2,3,1,Queensland,153.248017,-27.511214 +2020,5,18,1,Queensland,153.110991,-27.530511 +2021,11,13,1,Queensland,153.282126,-27.531453 +2021,2,5,1,Queensland,153.280963,-27.529171 +2021,2,8,1,Queensland,153.438306,-27.401315 +2021,9,21,1,Queensland,153.077939,-27.552112 +2022,9,17,1,Queensland,153.2669,-27.546486 +2020,12,1,1,Queensland,153.283336,-27.534299 +2020,7,22,1,Queensland,153.217213,-27.54766 +2021,12,25,1,Queensland,153.182175,-27.538266 +2021,9,12,1,Queensland,153.277665,-27.558171 +2021,5,15,1,Queensland,153.248106,-27.49039 +2022,9,16,1,Queensland,153.284479,-27.524625 +2024,9,23,2,Queensland,153.20129,-27.488257 +2023,8,17,2,Queensland,153.045259,-27.558295 +2021,9,25,2,Queensland,153.248361,-27.490224 +2022,5,3,1,Queensland,153.247701,-27.51163 +2020,10,5,2,Queensland,153.200777,-27.549518 +2024,9,30,1,Queensland,153.090197,-27.535557 +2022,1,18,1,Queensland,153.21508,-27.491989 +2022,1,1,1,Queensland,153.248298,-27.490096 +2021,9,21,1,Queensland,153.283702,-27.525437 +2020,9,11,1,Queensland,153.257245,-27.498714 +2021,2,4,1,Queensland,153.259083,-27.519006 +2022,2,1,2,Queensland,153.228141,-27.499001 +2023,10,3,1,Queensland,153.242402,-27.489412 +2023,1,18,1,Queensland,153.22308,-27.499647 +2020,9,12,1,Queensland,153.271079,-27.539041 +2023,10,28,1,Queensland,153.27457,-27.538856 +2023,3,22,1,Queensland,153.281942,-27.525324 +2020,4,16,1,Queensland,153.263488,-27.540522 +2020,3,25,1,Queensland,153.282841,-27.526547 +2021,11,13,2,Queensland,153.284017,-27.525353 +2024,3,22,1,Queensland,153.035141,-27.54131 +2020,8,18,1,Queensland,153.360839,-27.568508 +2023,5,27,1,Queensland,153.296875,-27.568895 +2022,8,25,1,Queensland,153.070976,-27.531597 +2022,11,1,1,Queensland,153.256393,-27.524211 +2021,7,31,1,Queensland,153.282168,-27.532754 +2022,4,30,1,Queensland,153.248509,-27.490837 +2021,2,4,1,Queensland,153.261716,-27.51932 +2022,4,26,1,Queensland,153.283498,-27.525821 +2023,6,10,1,Queensland,153.271446,-27.539012 +2021,8,29,1,Queensland,153.276254,-27.534758 +2020,8,4,1,Queensland,153.278906,-27.536658 +2023,9,20,1,Queensland,153.284203,-27.525155 +2021,1,8,1,Queensland,153.251524,-27.556534 +2020,12,13,2,Queensland,153.174096,-27.690955 +2022,9,26,1,Queensland,153.252676,-27.530004 +2020,4,14,1,Queensland,153.25215,-27.501282 +2021,10,31,1,Queensland,152.889261,-27.417675 +2021,12,2,1,Queensland,153.236425,-27.489885 +2023,5,18,2,Queensland,153.004683,-27.298853 +2022,2,18,1,Queensland,153.284092,-27.525309 +2020,4,17,1,Queensland,153.248539,-27.490376 +2020,10,14,1,Queensland,153.27133,-27.552334 +2022,10,3,1,Queensland,149.097139,-21.390097 +2021,10,18,1,Queensland,153.225737,-27.553892 +2021,9,25,1,Queensland,153.245061,-27.500825 +2020,2,8,2,Queensland,153.278322,-27.537017 +2024,1,10,1,Queensland,153.281316,-27.52967 +2020,6,27,1,Queensland,153.281753,-27.525568 +2020,1,5,2,Queensland,153.253662,-27.495739 +2020,2,3,1,Queensland,153.278569,-27.544405 +2023,3,28,1,Queensland,153.090226,-27.535507 +2023,8,23,1,Queensland,153.273876,-27.537752 +2022,11,26,1,Queensland,153.196868,-27.570593 +2022,11,10,1,Queensland,153.278046,-27.537121 +2020,2,1,1,Queensland,153.044673,-27.5458 +2020,10,30,2,Queensland,153.281834,-27.525537 +2020,3,10,1,Queensland,153.281686,-27.527008 +2020,7,18,1,Queensland,153.269591,-27.532335 +2020,1,2,1,Queensland,153.281426,-27.52721 +2022,12,27,2,Queensland,153.079655,-27.530384 +2021,10,7,2,Queensland,153.236697,-27.490843 +2024,9,22,1,Queensland,153.180335,-28.031512 +2020,1,21,1,Queensland,153.182187,-27.575395 +2023,9,13,1,Queensland,153.276153,-27.535539 +2021,7,3,1,Queensland,153.278561,-27.537031 +2022,10,16,1,Queensland,153.284033,-27.525067 +2021,8,7,1,Queensland,153.160719,-27.709544 +2021,6,15,1,Queensland,153.268433,-27.612624 +2020,11,25,2,Queensland,153.279188,-27.537278 +2020,9,15,1,Queensland,153.235929,-27.523525 +2020,1,11,1,Queensland,153.2737,-27.62972 +2021,12,21,2,Queensland,153.28417,-27.525209 +2021,8,6,1,Queensland,153.228411,-27.563796 +2022,1,31,1,Queensland,153.281258,-27.52943 +2020,8,7,2,Queensland,153.28399,-27.525792 +2020,2,4,1,Queensland,153.226944,-27.560556 +2021,1,1,1,Queensland,153.27,-27.55 +2021,6,19,1,Queensland,153.127106,-27.89795 +2020,4,27,2,Queensland,153.282156,-27.525547 +2020,10,28,1,Queensland,153.271072,-27.55335 +2020,10,12,1,Queensland,153.201818,-27.512101 +2022,12,20,1,Queensland,153.274557,-27.539423 +2020,8,27,2,Queensland,153.087543,-27.523911 +2020,12,26,1,Queensland,153.260622,-27.519094 +2021,6,13,1,Queensland,153.273793,-27.537824 +2021,1,12,1,Queensland,153.275916,-27.538285 +2021,10,24,2,Queensland,153.284398,-27.52486 +2023,8,26,1,Queensland,153.090119,-27.535516 +2021,11,19,1,Queensland,153.281847,-27.530759 +2023,1,19,1,Queensland,153.080015,-27.479983 +2020,7,19,1,Queensland,153.281969,-27.53158 +2021,11,3,2,Queensland,153.225149,-27.50201 +2022,8,7,1,Queensland,152.573411,-27.400483 +2022,11,14,1,Queensland,153.263583,-27.53811 +2022,10,25,1,Queensland,153.277885,-27.537079 +2020,3,21,1,Queensland,153.255317,-27.586688 +2020,8,29,1,Queensland,153.249353,-27.594953 +2020,1,17,2,Queensland,153.153549,-27.484321 +2020,8,15,2,Queensland,153.360839,-27.568508 +2020,4,12,1,Queensland,153.281854,-27.525329 +2020,4,4,1,Queensland,153.282156,-27.532959 +2021,1,8,2,Queensland,152.990183,-27.373749 +2020,8,6,1,Queensland,153.249353,-27.594953 +2023,4,14,2,Queensland,153.24841,-27.489987 +2021,10,12,1,Queensland,153.226429,-27.547357 +2024,1,23,1,Queensland,153.251014,-27.511695 +2020,11,9,1,Queensland,153.225777,-27.503602 +2020,12,31,1,Queensland,153.210693,-27.531841 +2022,8,3,2,Queensland,153.254038,-27.554591 +2022,11,4,1,Queensland,153.257954,-27.533017 +2020,1,17,1,Queensland,153.252494,-27.547645 +2020,4,4,1,Queensland,153.281603,-27.531922 +2023,6,14,1,Queensland,153.245516,-27.49055 +2021,4,16,1,Queensland,152.935607,-27.355789 +2020,11,25,1,Queensland,153.282117,-27.533178 +2022,1,3,1,Queensland,153.28186,-27.530807 +2021,1,19,1,Queensland,153.07549,-27.550976 +2023,7,15,1,Queensland,153.210365,-27.531692 +2020,9,14,1,Queensland,152.807517,-27.532991 +2021,5,15,1,Queensland,153.248501,-27.490856 +2020,12,23,2,Queensland,153.517751,-27.424462 +2022,5,12,1,Queensland,153.452933,-28.138601 +2021,1,16,2,Queensland,153.062092,-27.537129 +2020,9,20,1,Queensland,153.264642,-27.524325 +2022,11,7,1,Queensland,153.23827,-27.535813 +2020,12,19,1,Queensland,152.491711,-28.065738 +2022,12,23,1,Queensland,153.272631,-27.536759 +2021,11,26,1,Queensland,153.281775,-27.530734 +2021,10,10,1,Queensland,153.256299,-27.548894 +2022,3,16,1,Queensland,153.282117,-27.532926 +2020,1,8,2,Queensland,153.254937,-27.494391 +2020,1,14,1,Queensland,153.275215,-27.555011 +2021,10,12,1,Queensland,153.282157,-27.531074 +2021,1,9,1,Queensland,153.275815,-27.538445 +2020,5,1,2,Queensland,153.073343,-27.542157 +2021,11,13,1,Queensland,153.293759,-27.614143 +2021,11,9,2,Queensland,152.651682,-27.465118 +2020,10,16,2,Queensland,153.283194,-27.525676 +2022,4,3,1,Queensland,152.661789,-27.451101 +2021,4,3,1,Queensland,153.198204,-27.544064 +2021,10,2,1,Queensland,153.210791,-27.531825 +2021,3,16,2,Queensland,152.969959,-27.144223 +2020,3,24,1,Queensland,153.282047,-27.525633 +2020,11,4,1,Queensland,153.256286,-27.54858 +2021,11,12,1,Queensland,153.248272,-27.490231 +2021,6,14,1,Queensland,153.272874,-27.528997 +2020,4,8,1,Queensland,152.856765,-27.545611 +2020,8,27,1,Queensland,152.167675,-26.872922 +2021,10,11,1,Queensland,153.25629,-27.548887 +2020,5,3,1,Queensland,153.255074,-27.493896 +2021,9,29,1,Queensland,153.247578,-27.511483 +2020,1,18,1,Queensland,153.180416,-27.533758 +2020,8,16,2,Queensland,153.284288,-27.525031 +2020,9,26,2,Queensland,153.284312,-27.525576 +2022,5,4,1,Queensland,153.06922,-27.551314 +2021,7,4,1,Queensland,153.10537,-27.505462 +2023,6,8,1,Queensland,152.905204,-27.396398 +2020,12,24,1,Queensland,153.14254,-27.526737 +2021,10,8,1,Queensland,153.516952,-27.425747 +2021,9,3,1,Queensland,153.242255,-27.521948 +2022,12,14,1,Queensland,153.274127,-27.531922 +2021,8,12,1,Queensland,153.244379,-27.505137 +2021,11,22,1,Queensland,153.23639,-27.489438 +2020,10,27,1,Queensland,153.274119,-27.530124 +2020,7,16,1,Queensland,153.284509,-27.525532 +2021,2,15,1,Queensland,153.249353,-27.594953 +2020,9,27,1,Queensland,153.30005,-27.647595 +2022,10,23,1,Queensland,153.221776,-27.508735 +2020,11,14,1,Queensland,153.237044,-27.506097 +2020,1,5,2,Queensland,153.253114,-27.495732 +2021,9,2,1,Queensland,153.10785,-27.546125 +2022,1,24,1,Queensland,153.274312,-27.538729 +2023,12,30,1,Queensland,153.273679,-27.538016 +2022,1,23,1,Queensland,153.274323,-27.538712 +2021,5,31,1,Queensland,153.25278,-27.547564 +2021,1,17,1,Queensland,153.244973,-27.501343 +2023,1,15,1,Queensland,153.274729,-27.539961 +2023,11,13,2,Queensland,153.295815,-27.5681 +2020,12,8,1,Queensland,153.204818,-27.497442 +2022,2,18,1,Queensland,153.281802,-27.531154 +2021,2,1,1,Queensland,153.235997,-27.533543 +2020,6,18,1,Queensland,153.256305,-27.548537 +2020,3,18,1,Queensland,153.220054,-27.559244 +2020,1,25,1,Queensland,153.183501,-27.763892 +2022,11,3,1,Queensland,152.510383,-27.981003 +2022,9,9,1,Queensland,153.215467,-27.492188 +2020,10,15,1,Queensland,153.281834,-27.525307 +2020,5,19,1,Queensland,153.249353,-27.594953 +2021,10,18,1,Queensland,153.244124,-27.493137 +2020,10,24,1,Queensland,153.284655,-27.525395 +2023,7,10,1,Queensland,153.293119,-27.597146 +2021,9,14,1,Queensland,153.281687,-27.531082 +2020,1,15,1,Queensland,153.253753,-27.541585 +2021,9,16,1,Queensland,153.165427,-27.476279 +2020,4,6,1,Queensland,153.273961,-27.529173 +2021,1,10,1,New South Wales,153.374722,-28.2525 +2024,8,29,1,New South Wales,153.465174,-28.324971 +2021,10,14,1,New South Wales,153.564028,-28.387972 +2021,7,30,1,New South Wales,153.505993,-28.240329 +2021,1,20,1,New South Wales,153.410281,-28.247811 +2024,8,12,1,New South Wales,153.534257,-28.3323 +2021,7,17,1,New South Wales,153.561356,-28.382917 +2021,10,10,1,New South Wales,153.522788,-28.21365 +2020,7,13,1,New South Wales,153.373615,-28.25059 +2021,9,3,1,New South Wales,153.562726,-28.391267 +2021,7,6,1,New South Wales,153.552753,-28.40778 +2020,9,29,1,New South Wales,153.564052,-28.374668 +2022,11,21,1,New South Wales,153.466671,-28.237308 +2021,9,8,2,Queensland,153.260948,-27.519173 +2021,2,18,1,New South Wales,153.555824,-28.399102 +2021,6,22,1,New South Wales,153.501758,-28.236784 +2021,11,11,1,New South Wales,153.516363,-28.368068 +2023,9,21,1,New South Wales,153.561427,-28.385585 +2020,11,26,1,New South Wales,153.555944,-28.399282 +2023,5,16,1,New South Wales,153.557228,-28.397082 +2024,2,18,1,New South Wales,153.370556,-28.256111 +2020,10,16,1,New South Wales,153.559742,-28.371257 +2023,1,19,1,New South Wales,153.555441,-28.403228 +2020,8,13,2,Queensland,153.075575,-27.540469 +2022,11,25,1,New South Wales,153.557625,-28.396686 +2023,7,28,1,New South Wales,153.559679,-28.387578 +2024,10,30,2,Queensland,153.206652,-27.489271 +2021,5,12,1,New South Wales,153.555591,-28.414391 +2021,10,8,1,New South Wales,153.467912,-28.329373 +2024,11,8,1,New South Wales,153.562425,-28.384036 +2020,12,14,1,New South Wales,153.56286,-28.332073 +2020,1,19,1,New South Wales,153.476784,-28.311276 +2021,9,3,1,New South Wales,153.556465,-28.407968 +2020,10,11,1,New South Wales,153.333213,-28.379277 +2024,9,24,1,New South Wales,153.557617,-28.388696 +2020,1,9,1,New South Wales,153.333564,-28.300791 +2020,8,22,1,New South Wales,153.555833,-28.399149 +2022,11,22,1,New South Wales,153.498294,-28.223973 +2021,11,28,1,New South Wales,153.541961,-28.396606 +2022,9,9,1,New South Wales,153.411949,-28.272384 +2022,3,15,1,New South Wales,153.561382,-28.384773 +2020,12,9,1,New South Wales,153.561715,-28.393024 +2021,10,20,1,New South Wales,153.556505,-28.399929 +2020,9,17,2,Queensland,153.236557,-27.493664 +2021,10,16,1,New South Wales,153.556056,-28.398535 +2024,8,21,1,New South Wales,153.564117,-28.385942 +2020,1,5,1,New South Wales,153.556701,-28.400142 +2021,10,16,1,New South Wales,153.557252,-28.397271 +2020,7,25,1,New South Wales,153.562904,-28.384369 +2021,6,29,1,New South Wales,153.56145,-28.38553 +2024,8,13,1,New South Wales,153.530075,-28.219672 +2024,11,5,1,New South Wales,153.55758,-28.396713 +2023,10,16,2,Queensland,153.27599,-27.54426 +2021,8,13,1,New South Wales,153.515065,-28.377326 +2024,10,21,1,New South Wales,153.567479,-28.380244 +2020,11,16,2,Queensland,153.272327,-27.563198 +2024,1,26,1,New South Wales,153.557933,-28.388411 +2023,8,1,1,New South Wales,153.553572,-28.368427 +2020,3,4,1,New South Wales,153.556778,-28.400014 +2021,10,15,1,New South Wales,153.559218,-28.393779 +2022,9,9,1,New South Wales,153.557522,-28.393719 +2021,9,13,1,New South Wales,153.56327,-28.393411 +2021,7,13,1,New South Wales,153.561913,-28.386071 +2022,9,9,1,New South Wales,153.556946,-28.397563 +2024,10,23,1,New South Wales,153.560418,-28.373683 +2020,8,23,1,New South Wales,153.555823,-28.243606 +2023,5,2,1,New South Wales,153.483346,-28.216138 +2020,2,10,1,New South Wales,153.567422,-28.378508 +2021,8,22,1,New South Wales,153.561649,-28.393472 +2021,1,24,1,New South Wales,153.564434,-28.336159 +2021,7,4,1,New South Wales,153.54768,-28.388909 +2024,8,18,1,New South Wales,153.564167,-28.380833 +2020,11,15,1,New South Wales,153.558805,-28.38969 +2021,12,14,1,New South Wales,153.560261,-28.389497 +2021,5,4,1,New South Wales,153.284859,-28.454651 +2020,11,19,2,Queensland,152.940527,-27.393202 +2024,10,6,1,New South Wales,153.561847,-28.389192 +2024,10,13,1,New South Wales,153.470367,-28.260494 +2021,10,7,1,New South Wales,153.546746,-28.388884 +2023,2,21,1,New South Wales,153.556243,-28.37735 +2021,4,20,1,New South Wales,153.558593,-28.372579 +2024,7,27,1,New South Wales,153.556253,-28.40825 +2020,9,2,1,New South Wales,153.555641,-28.398184 +2020,1,17,1,New South Wales,153.563403,-28.393425 +2020,11,25,2,Queensland,153.282412,-27.531018 +2020,4,27,2,Queensland,153.282048,-27.525623 +2024,9,23,1,New South Wales,153.564383,-28.37347 +2020,4,8,1,New South Wales,153.412883,-28.228295 +2024,11,1,1,New South Wales,153.56189,-28.389145 +2021,5,19,1,New South Wales,153.56206,-28.383751 +2024,10,20,1,New South Wales,153.498144,-28.222544 +2021,11,6,1,New South Wales,153.561414,-28.393378 +2020,9,2,2,Queensland,153.228911,-27.498711 +2024,10,2,1,New South Wales,153.468522,-28.261378 +2023,11,19,1,New South Wales,153.561372,-28.385558 +2021,7,22,1,New South Wales,153.557532,-28.388545 +2024,10,6,1,New South Wales,153.564544,-28.380786 +2020,8,7,1,New South Wales,153.490079,-28.228197 +2021,12,8,2,Queensland,153.225346,-27.502821 +2024,8,22,1,New South Wales,153.222497,-28.279609 +2022,1,26,1,New South Wales,153.4691,-28.26228 +2024,6,6,1,New South Wales,153.468706,-28.262092 +2024,11,8,1,New South Wales,153.533753,-28.199886 +2021,3,1,1,New South Wales,153.557172,-28.397528 +2023,10,1,1,New South Wales,153.510122,-28.241817 +2024,8,22,1,New South Wales,153.214461,-28.37945 +2022,12,25,2,Queensland,153.273506,-27.528899 +2021,4,25,1,New South Wales,153.494089,-28.328909 +2023,2,18,1,New South Wales,153.554792,-28.383586 +2022,5,9,1,New South Wales,153.493728,-28.254048 +2021,1,22,1,New South Wales,153.495958,-28.254464 +2021,1,28,1,New South Wales,153.561127,-28.384976 +2023,8,22,1,New South Wales,153.5481,-28.329457 +2022,5,25,1,New South Wales,153.557601,-28.38855 +2023,8,26,2,Queensland,153.246495,-27.511432 +2023,9,29,2,Queensland,153.296618,-27.56812 +2024,8,21,1,New South Wales,153.564147,-28.380817 +2023,12,1,1,New South Wales,153.559223,-28.331185 +2021,6,28,1,New South Wales,153.49413,-28.236882 +2020,12,11,1,New South Wales,153.442773,-28.274143 +2024,8,8,1,New South Wales,153.556326,-28.408185 +2022,1,17,1,New South Wales,153.523666,-28.38674 +2021,1,30,1,New South Wales,153.556098,-28.398509 +2023,6,25,1,New South Wales,153.562603,-28.384563 +2024,9,15,1,New South Wales,153.561873,-28.389159 +2023,6,12,1,New South Wales,153.557459,-28.388474 +2020,3,25,1,New South Wales,153.555878,-28.399509 +2020,8,10,1,New South Wales,153.557818,-28.331142 +2020,9,17,1,New South Wales,153.456689,-28.419806 +2022,11,16,1,New South Wales,153.377257,-28.305823 +2023,7,28,1,New South Wales,153.556034,-28.37778 +2021,9,19,1,New South Wales,153.558399,-28.394284 +2021,6,26,1,New South Wales,153.55836,-28.394137 +2020,11,14,1,New South Wales,153.564682,-28.327859 +2021,9,29,2,Queensland,153.271366,-27.574398 +2021,4,28,1,New South Wales,153.557729,-28.371592 +2024,10,4,1,New South Wales,153.56368,-28.389402 +2020,11,14,1,New South Wales,153.498072,-28.226882 +2022,11,14,1,New South Wales,153.559441,-28.353407 +2022,6,2,1,New South Wales,153.47843,-28.232497 +2024,7,29,1,New South Wales,153.556522,-28.408245 +2021,9,29,2,Queensland,153.270114,-27.552104 +2022,9,23,1,New South Wales,153.498187,-28.222942 +2024,6,16,1,New South Wales,153.557437,-28.388392 +2020,1,24,1,New South Wales,153.557022,-28.400992 +2023,10,8,1,New South Wales,153.567133,-28.392434 +2024,9,18,1,New South Wales,153.561825,-28.38914 +2024,8,8,1,New South Wales,153.469069,-28.262386 +2020,12,8,1,New South Wales,153.564385,-28.336136 +2024,10,16,1,New South Wales,153.55593,-28.376831 +2023,8,28,1,New South Wales,153.459558,-28.322296 +2023,11,13,1,New South Wales,153.498938,-28.22333 +2022,8,18,2,Queensland,153.232616,-27.497384 +2023,6,5,1,New South Wales,153.562273,-28.384192 +2022,9,10,1,New South Wales,153.563158,-28.392594 +2023,6,19,1,New South Wales,153.494519,-28.227394 +2021,10,29,1,New South Wales,153.56122,-28.393297 +2021,1,11,2,Queensland,153.061837,-27.536561 +2022,5,15,1,New South Wales,153.561199,-28.39334 +2023,7,24,1,New South Wales,153.555887,-28.378224 +2021,5,24,1,New South Wales,153.467083,-28.237356 +2024,10,5,1,New South Wales,153.563896,-28.387998 +2020,9,15,1,New South Wales,153.373266,-28.251322 +2021,2,5,1,New South Wales,153.244397,-28.290966 +2021,8,20,1,New South Wales,153.563878,-28.391181 +2022,12,30,2,Queensland,153.084528,-27.523182 +2020,9,21,1,New South Wales,153.557109,-28.381234 +2021,7,8,1,New South Wales,153.564428,-28.388822 +2020,5,14,1,New South Wales,153.490288,-28.244008 +2024,5,17,1,New South Wales,153.562785,-28.384633 +2022,11,1,2,Queensland,153.236225,-27.488762 +2021,7,8,1,New South Wales,153.555926,-28.399127 +2024,1,10,2,Queensland,153.282106,-27.532896 +2021,11,1,1,New South Wales,153.371739,-28.250411 +2020,10,16,1,New South Wales,153.557006,-28.400461 +2022,8,13,1,New South Wales,153.495349,-28.230068 +2020,10,20,1,New South Wales,153.334283,-28.277245 +2020,9,23,2,New South Wales,153.562646,-28.391295 +2022,7,23,1,New South Wales,153.561106,-28.393341 +2021,2,12,1,New South Wales,153.458876,-28.237207 +2023,11,19,1,New South Wales,153.568053,-28.377195 +2024,10,19,1,New South Wales,153.483942,-28.246439 +2021,10,4,1,New South Wales,153.491708,-28.231058 +2020,1,12,1,New South Wales,153.55439,-28.385238 +2021,5,8,1,New South Wales,153.562707,-28.38545 +2020,11,22,1,New South Wales,153.555833,-28.399167 +2023,9,5,1,New South Wales,153.346846,-28.37037 +2023,2,27,1,New South Wales,153.556565,-28.372792 +2023,1,11,1,New South Wales,153.51934,-28.21586 +2020,11,23,1,New South Wales,153.561433,-28.389232 +2021,8,12,2,New South Wales,153.541296,-28.392231 +2023,1,11,1,New South Wales,153.5618,-28.387053 +2023,8,1,1,New South Wales,153.556905,-28.388121 +2021,8,17,1,New South Wales,153.562732,-28.391207 +2021,6,27,1,New South Wales,153.556044,-28.399308 +2020,11,17,2,New South Wales,153.561418,-28.390195 +2023,10,3,1,New South Wales,153.499196,-28.223352 +2022,4,8,1,New South Wales,153.560828,-28.36432 +2020,1,1,1,New South Wales,153.555546,-28.371012 +2022,1,5,1,New South Wales,153.561774,-28.330606 +2021,6,12,2,New South Wales,153.562037,-28.384015 +2023,9,17,1,New South Wales,153.565845,-28.38719 +2024,9,29,1,New South Wales,153.471885,-28.328574 +2024,10,9,1,New South Wales,153.557995,-28.388315 +2023,9,27,1,New South Wales,153.360079,-28.356845 +2021,9,10,2,New South Wales,153.397897,-28.259715 +2021,1,11,1,New South Wales,153.466063,-28.237277 +2020,10,12,1,New South Wales,153.5597,-28.3707 +2021,3,26,1,New South Wales,153.561567,-28.384435 +2024,10,19,1,New South Wales,153.498766,-28.222876 +2022,10,15,1,New South Wales,153.559671,-28.372144 +2023,7,14,1,New South Wales,153.561368,-28.38529 +2024,4,29,1,New South Wales,153.555586,-28.378379 +2023,10,7,1,New South Wales,153.565121,-28.391023 +2021,9,1,1,New South Wales,153.556069,-28.398564 +2023,8,8,1,New South Wales,153.564177,-28.38064 +2023,8,31,1,New South Wales,153.49896,-28.223337 +2023,8,15,1,New South Wales,153.457958,-28.227892 +2020,11,2,1,New South Wales,153.560962,-28.330978 +2020,2,21,1,New South Wales,153.556034,-28.399486 +2024,9,24,1,New South Wales,153.513454,-28.241549 +2021,10,19,1,New South Wales,153.558467,-28.39427 +2020,10,2,1,New South Wales,153.559696,-28.371176 +2023,2,26,1,New South Wales,153.555936,-28.375236 +2022,1,24,1,New South Wales,153.471848,-28.24154 +2024,10,18,1,New South Wales,153.562388,-28.384204 +2020,9,16,2,New South Wales,153.561539,-28.384411 +2023,9,15,1,New South Wales,153.47353,-28.326705 +2020,11,26,1,New South Wales,153.556009,-28.398854 +2022,2,11,1,New South Wales,153.376512,-28.252984 +2024,6,29,1,New South Wales,153.470183,-28.26085 +2022,1,14,1,New South Wales,153.466167,-28.237535 +2021,10,6,1,New South Wales,153.56215,-28.383603 +2020,12,8,1,New South Wales,153.502222,-28.251271 +2023,2,14,1,New South Wales,153.466058,-28.237356 +2024,1,8,1,New South Wales,153.557433,-28.388442 +2020,8,30,1,New South Wales,153.561847,-28.391123 +2021,9,2,1,New South Wales,153.526587,-28.396236 +2022,10,14,2,New South Wales,153.555907,-28.398833 +2022,2,11,1,New South Wales,153.557526,-28.396851 +2022,11,21,1,New South Wales,153.564228,-28.387552 +2024,4,2,1,New South Wales,153.557872,-28.388371 +2021,12,21,1,New South Wales,153.557309,-28.397012 +2021,5,20,1,New South Wales,153.562222,-28.384722 +2024,10,16,1,New South Wales,153.563799,-28.380972 +2023,7,24,1,New South Wales,153.556107,-28.377676 +2023,11,14,1,New South Wales,153.563998,-28.387913 +2021,4,13,1,New South Wales,153.5597,-28.389131 +2020,6,4,1,New South Wales,153.557617,-28.400197 +2021,8,10,1,New South Wales,153.559444,-28.328333 +2024,9,27,1,New South Wales,153.562606,-28.384572 +2021,8,25,1,New South Wales,153.566026,-28.387582 +2024,1,29,1,New South Wales,153.557668,-28.388333 +2021,5,8,1,New South Wales,153.561808,-28.387194 +2021,7,8,1,New South Wales,153.557112,-28.397533 +2020,12,22,1,New South Wales,153.471272,-28.35123 +2023,12,17,1,New South Wales,153.556772,-28.369147 +2024,9,24,1,New South Wales,153.562221,-28.384193 +2020,3,5,1,New South Wales,153.556935,-28.400944 +2024,11,15,1,New South Wales,153.562714,-28.384544 +2021,1,28,1,New South Wales,153.557603,-28.394378 +2021,4,7,1,New South Wales,153.56409,-28.336216 +2022,4,8,1,New South Wales,153.559543,-28.393755 +2021,2,14,1,New South Wales,153.557679,-28.394606 +2020,9,25,2,New South Wales,153.555914,-28.398965 +2021,6,15,1,New South Wales,153.555909,-28.399153 +2021,11,11,1,New South Wales,153.561341,-28.384755 +2020,1,14,1,New South Wales,153.555196,-28.370334 +2024,9,28,1,New South Wales,153.561913,-28.389135 +2022,3,14,1,New South Wales,153.557961,-28.393962 +2024,7,13,1,New South Wales,153.558413,-28.394336 +2024,8,6,1,New South Wales,153.558014,-28.388531 +2023,5,28,1,New South Wales,153.556713,-28.397644 +2023,8,23,1,New South Wales,153.565119,-28.389956 +2022,12,17,1,New South Wales,153.498734,-28.223562 +2020,9,6,1,New South Wales,153.531608,-28.221719 +2020,5,22,1,New South Wales,153.168177,-28.353989 +2020,2,12,1,New South Wales,153.555912,-28.399095 +2022,3,31,1,New South Wales,153.558496,-28.394081 +2020,10,14,1,New South Wales,153.56233,-28.373466 +2021,7,12,1,New South Wales,153.561956,-28.383121 +2020,4,22,1,New South Wales,153.5578,-28.3967 +2023,1,10,1,New South Wales,153.557209,-28.400305 +2023,11,14,1,New South Wales,153.561854,-28.389255 +2020,11,28,2,New South Wales,153.374763,-28.252334 +2023,9,17,1,New South Wales,153.561579,-28.386313 +2024,3,18,1,New South Wales,153.470275,-28.260758 +2020,10,20,1,New South Wales,153.557215,-28.400332 +2020,9,16,1,New South Wales,153.511577,-28.241621 +2021,1,22,1,New South Wales,153.478339,-28.249243 +2022,3,14,1,New South Wales,153.557721,-28.396494 +2020,10,27,2,New South Wales,153.463836,-28.320689 +2023,11,18,2,New South Wales,153.560752,-28.287007 +2022,12,23,2,New South Wales,153.518875,-28.230652 +2024,9,30,1,New South Wales,153.55715,-28.397464 +2021,4,25,1,New South Wales,153.544066,-28.333102 +2024,2,18,1,New South Wales,153.470139,-28.325992 +2023,1,23,1,New South Wales,153.55759,-28.388498 +2023,9,19,1,New South Wales,153.502075,-28.238141 +2023,11,15,1,New South Wales,153.561823,-28.389182 +2021,7,29,2,New South Wales,153.564393,-28.380908 +2020,10,9,1,New South Wales,153.494377,-28.242245 +2021,8,3,1,New South Wales,153.560377,-28.287376 +2022,3,22,1,New South Wales,153.527861,-28.40453 +2020,11,19,1,New South Wales,153.559028,-28.368921 +2021,8,15,1,New South Wales,153.563961,-28.380772 +2023,11,16,1,New South Wales,153.555956,-28.398776 +2020,8,21,1,New South Wales,153.558007,-28.388596 +2023,11,8,1,New South Wales,153.563815,-28.387814 +2023,8,3,1,New South Wales,153.557923,-28.388661 +2020,9,6,1,New South Wales,153.35622,-28.360009 +2024,10,8,1,New South Wales,153.557615,-28.388328 +2020,5,20,1,New South Wales,153.488326,-28.227743 +2022,11,15,1,New South Wales,153.545254,-28.332526 +2024,8,16,1,New South Wales,153.556249,-28.408148 +2023,7,22,1,New South Wales,153.568311,-28.328258 +2020,11,18,2,New South Wales,153.555983,-28.398753 +2024,2,24,1,New South Wales,153.510981,-28.216448 +2021,2,5,1,New South Wales,153.243706,-28.29284 +2024,9,14,1,New South Wales,153.561809,-28.389135 +2022,10,7,1,New South Wales,153.557526,-28.388545 +2024,7,25,1,New South Wales,153.5563,-28.408167 +2020,3,1,1,New South Wales,153.556747,-28.400128 +2023,11,1,1,New South Wales,153.555838,-28.398866 +2023,11,26,1,New South Wales,153.559753,-28.371301 +2023,7,16,2,New South Wales,153.505408,-28.242169 +2023,3,10,1,New South Wales,153.557122,-28.397501 +2024,2,10,1,New South Wales,153.557512,-28.388387 +2021,7,29,1,New South Wales,153.562415,-28.383754 +2022,9,9,1,New South Wales,153.532187,-28.361203 +2021,9,27,1,New South Wales,153.563184,-28.392627 +2020,7,13,1,New South Wales,153.498076,-28.310977 +2024,4,2,2,New South Wales,153.562606,-28.384026 +2020,10,20,2,New South Wales,153.49683,-28.254577 +2021,3,18,1,New South Wales,153.557587,-28.396913 +2024,1,9,1,New South Wales,153.558272,-28.388433 +2021,3,30,1,New South Wales,153.564237,-28.387719 +2021,4,16,1,New South Wales,153.559427,-28.37077 +2021,4,19,1,New South Wales,153.460073,-28.272041 +2024,3,21,1,New South Wales,153.555602,-28.376255 +2021,4,9,1,New South Wales,153.564338,-28.380544 +2024,3,18,1,New South Wales,153.555597,-28.378771 +2020,1,24,1,New South Wales,153.556042,-28.399591 +2021,10,31,1,New South Wales,153.561786,-28.367257 +2021,8,3,1,New South Wales,153.558289,-28.394194 +2024,6,23,1,New South Wales,153.556205,-28.408245 +2022,1,5,1,New South Wales,153.496278,-28.328913 +2023,4,4,1,New South Wales,153.565702,-28.387292 +2022,7,12,1,New South Wales,153.55756,-28.396592 +2024,3,7,1,New South Wales,153.469863,-28.326218 +2020,9,22,1,New South Wales,153.555885,-28.399201 +2023,12,18,1,New South Wales,153.556337,-28.377412 +2021,10,5,1,New South Wales,153.548611,-28.405 +2020,1,14,1,New South Wales,153.556207,-28.37234 +2024,7,28,1,New South Wales,153.557024,-28.397261 +2022,11,6,2,New South Wales,153.555897,-28.398812 +2021,9,10,1,New South Wales,153.563487,-28.38947 +2021,8,24,1,New South Wales,153.560396,-28.372784 +2022,3,4,1,New South Wales,153.557183,-28.397356 +2022,8,18,1,New South Wales,153.567606,-28.328294 +2021,8,29,1,New South Wales,153.559675,-28.286866 +2023,8,28,1,New South Wales,153.56526,-28.389704 +2023,6,22,1,New South Wales,153.561557,-28.385714 +2020,8,31,1,New South Wales,153.233958,-28.304107 +2024,9,18,1,New South Wales,153.561809,-28.389145 +2020,1,6,1,New South Wales,153.559739,-28.393697 +2022,12,31,1,New South Wales,153.546464,-28.390008 +2023,1,11,1,New South Wales,153.556012,-28.398726 +2021,10,27,2,New South Wales,153.4064,-28.4371 +2022,11,22,2,New South Wales,153.557314,-28.397007 +2023,10,2,1,New South Wales,153.505377,-28.240346 +2020,10,24,1,New South Wales,153.558181,-28.373789 +2020,4,13,1,New South Wales,153.566262,-28.37576 +2021,12,5,2,New South Wales,153.557034,-28.397415 +2020,10,27,1,New South Wales,153.562697,-28.374739 +2020,8,21,1,New South Wales,153.558708,-28.331049 +2021,3,15,1,New South Wales,153.503083,-28.187681 +2021,11,9,1,New South Wales,153.181628,-28.516985 +2023,10,2,1,New South Wales,153.48756,-28.424519 +2023,6,25,1,New South Wales,153.562481,-28.384158 +2020,12,2,1,New South Wales,153.560947,-28.385053 +2022,6,20,2,New South Wales,153.561568,-28.38586 +2021,9,17,2,New South Wales,153.561507,-28.385487 +2020,1,24,2,New South Wales,153.557739,-28.396753 +2020,10,25,1,New South Wales,153.499496,-28.223126 +2023,4,24,1,New South Wales,153.557144,-28.397442 +2022,11,4,1,New South Wales,153.499024,-28.22333 +2022,11,1,1,New South Wales,153.498659,-28.223567 +2022,6,14,2,New South Wales,153.561629,-28.386672 +2023,8,3,1,New South Wales,153.561506,-28.385638 +2020,10,15,1,New South Wales,153.555313,-28.3875 +2023,7,26,1,New South Wales,153.555149,-28.380843 +2020,10,7,1,New South Wales,153.556122,-28.399483 +2020,1,25,2,New South Wales,153.555888,-28.399064 +2021,11,19,1,New South Wales,153.458175,-28.268077 +2024,8,17,1,New South Wales,153.556594,-28.399972 +2023,11,2,1,New South Wales,153.464524,-28.253417 +2020,10,20,2,New South Wales,153.562089,-28.383281 +2021,8,1,1,New South Wales,153.560399,-28.286564 +2020,3,3,1,New South Wales,153.556803,-28.400064 +2022,11,3,1,New South Wales,153.49941,-28.223179 +2021,10,16,1,New South Wales,153.572475,-28.354594 +2024,1,30,1,New South Wales,153.557518,-28.388505 +2024,8,10,1,New South Wales,153.556439,-28.408205 +2020,9,12,1,New South Wales,153.556929,-28.402046 +2020,12,22,1,New South Wales,153.561186,-28.389286 +2021,4,9,1,New South Wales,153.56441,-28.380461 +2020,10,7,1,New South Wales,153.533716,-28.21712 +2023,7,26,1,New South Wales,153.557497,-28.388625 +2020,6,6,1,New South Wales,153.563515,-28.385784 +2021,2,1,1,New South Wales,153.555833,-28.371944 +2022,2,21,1,New South Wales,153.466081,-28.237573 +2024,6,25,1,New South Wales,153.465839,-28.226358 +2022,6,21,1,New South Wales,153.557765,-28.388103 +2020,8,11,1,New South Wales,153.272353,-28.313877 +2021,8,30,1,New South Wales,153.517868,-28.603257 +2020,9,11,1,New South Wales,153.520101,-28.235962 +2020,9,30,1,New South Wales,153.522363,-28.220704 +2021,4,13,1,New South Wales,153.558228,-28.394156 +2021,2,6,1,New South Wales,153.5569,-28.400371 +2021,3,12,1,New South Wales,153.272431,-28.355594 +2023,10,4,1,New South Wales,153.498863,-28.223573 +2021,9,3,1,New South Wales,153.558072,-28.389679 +2020,10,1,1,New South Wales,153.557525,-28.394319 +2021,1,10,1,New South Wales,153.374722,-28.2525 +2020,8,20,1,New South Wales,153.558592,-28.369199 +2024,11,8,2,New South Wales,153.564161,-28.385935 +2021,7,14,1,New South Wales,153.563451,-28.390181 +2022,9,10,1,New South Wales,153.559659,-28.39363 +2021,10,16,1,New South Wales,153.559907,-28.393177 +2020,2,27,1,New South Wales,153.562713,-28.391188 +2021,9,3,1,New South Wales,153.48834,-28.238862 +2024,9,16,1,New South Wales,153.274614,-28.355099 +2020,8,13,2,New South Wales,153.564424,-28.328066 +2024,11,17,1,New South Wales,153.493605,-28.213426 +2021,1,15,1,New South Wales,153.561739,-28.367331 +2021,2,10,1,New South Wales,153.561346,-28.389209 +2024,10,2,1,New South Wales,153.561934,-28.389272 +2020,8,26,1,New South Wales,153.554216,-28.41521 +2020,11,26,2,New South Wales,153.556379,-28.399966 +2022,4,25,1,New South Wales,153.561196,-28.393312 +2021,7,26,1,New South Wales,153.525844,-28.229928 +2021,7,22,1,New South Wales,153.494107,-28.226932 +2020,5,10,1,New South Wales,153.558303,-28.394183 +2024,9,12,1,New South Wales,153.55599,-28.399309 +2024,10,5,1,New South Wales,153.468978,-28.261697 +2024,9,17,1,New South Wales,153.559883,-28.371927 +2023,1,7,1,New South Wales,153.55137,-28.329334 +2021,10,1,1,New South Wales,153.525759,-28.230101 +2021,6,11,1,New South Wales,153.335477,-28.479923 +2020,1,6,1,New South Wales,153.563435,-28.393303 +2024,7,29,1,New South Wales,153.468475,-28.261208 +2020,9,19,1,New South Wales,153.565173,-28.386314 +2024,7,15,1,New South Wales,153.557369,-28.397374 +2020,11,9,1,New South Wales,153.559031,-28.389211 +2020,10,24,1,New South Wales,153.56316,-28.374485 +2022,1,31,1,New South Wales,153.556382,-28.399921 +2020,11,1,1,New South Wales,153.564194,-28.380608 +2020,9,9,1,New South Wales,153.556106,-28.398612 +2022,7,30,1,New South Wales,153.556508,-28.330994 +2021,10,17,1,New South Wales,153.558243,-28.394251 +2023,9,20,1,New South Wales,153.563949,-28.387927 +2021,11,9,1,New South Wales,153.523302,-28.218826 +2021,7,6,1,New South Wales,153.552788,-28.40779 +2022,6,9,1,New South Wales,153.560176,-28.363195 +2021,3,5,1,New South Wales,153.557349,-28.393288 +2020,11,6,1,New South Wales,153.557426,-28.386921 +2023,1,11,1,New South Wales,153.556397,-28.398271 +2024,9,23,1,New South Wales,153.556309,-28.370935 +2021,7,13,1,New South Wales,153.561464,-28.388041 +2022,6,21,1,New South Wales,153.561541,-28.385699 +2021,6,27,1,New South Wales,153.557323,-28.387638 +2021,12,21,1,New South Wales,153.555798,-28.3986 +2020,3,25,1,New South Wales,153.555878,-28.399509 +2020,1,26,1,New South Wales,153.482997,-28.246907 +2021,10,15,1,New South Wales,153.558668,-28.394034 +2021,6,15,1,New South Wales,153.560416,-28.286772 +2023,4,8,1,New South Wales,153.561041,-28.331063 +2020,11,7,1,New South Wales,153.557617,-28.394358 +2020,8,11,1,New South Wales,153.272353,-28.313877 +2021,10,11,1,New South Wales,153.467897,-28.32819 +2024,7,18,1,New South Wales,153.557957,-28.407577 +2024,7,11,1,New South Wales,153.470078,-28.2608 +2022,4,16,1,New South Wales,153.55781,-28.393807 +2020,8,20,1,New South Wales,153.555683,-28.243663 +2021,10,10,1,New South Wales,153.563539,-28.3813 +2020,11,4,1,New South Wales,153.562364,-28.382647 +2020,10,28,1,New South Wales,153.560622,-28.37407 +2023,3,10,1,New South Wales,153.55672,-28.397337 +2020,1,19,1,New South Wales,153.557274,-28.387794 +2021,8,27,2,New South Wales,153.472227,-28.247172 +2023,3,31,1,New South Wales,153.445745,-28.254683 +2024,8,15,2,New South Wales,153.26662,-28.35045 +2020,9,17,1,New South Wales,153.499378,-28.223 +2022,3,30,1,New South Wales,153.492249,-28.229973 +2024,9,11,1,New South Wales,153.558372,-28.373534 +2021,3,15,1,New South Wales,153.562334,-28.384369 +2021,11,15,1,New South Wales,153.561989,-28.383579 +2023,10,3,1,New South Wales,153.448083,-28.234631 +2022,7,23,1,New South Wales,153.559673,-28.393654 +2022,3,22,1,New South Wales,153.562331,-28.392089 +2024,8,1,1,New South Wales,153.556975,-28.397536 +2020,3,4,1,New South Wales,153.556778,-28.400014 +2022,6,8,1,New South Wales,153.466467,-28.237308 +2024,7,9,1,New South Wales,153.556241,-28.408207 +2024,7,28,1,New South Wales,153.556212,-28.408219 +2023,2,24,1,New South Wales,153.559205,-28.38333 +2022,9,28,1,New South Wales,153.559586,-28.393689 +2022,4,10,1,New South Wales,153.55781,-28.393779 +2021,11,16,1,New South Wales,153.55828,-28.394222 +2023,7,17,1,New South Wales,153.55749,-28.388386 +2022,2,22,1,New South Wales,153.557263,-28.397093 +2020,2,1,1,New South Wales,153.562542,-28.392306 +2021,5,16,1,New South Wales,153.556057,-28.398547 +2023,7,27,1,New South Wales,153.557805,-28.388392 +2020,11,12,1,New South Wales,153.561338,-28.28902 +2024,10,6,1,New South Wales,153.561873,-28.38922 +2023,1,7,1,New South Wales,153.516988,-28.330064 +2024,10,20,1,New South Wales,153.561879,-28.389201 +2024,8,28,1,New South Wales,153.549396,-28.328876 +2023,9,1,1,New South Wales,153.47177,-28.261056 +2021,10,15,1,New South Wales,153.563264,-28.393411 +2023,9,17,1,New South Wales,153.560891,-28.387175 +2021,10,16,1,New South Wales,153.559707,-28.393663 +2020,3,3,1,New South Wales,153.556803,-28.400064 +2021,1,24,1,New South Wales,153.564401,-28.336159 +2023,12,14,1,New South Wales,153.556734,-28.369107 +2020,10,24,1,New South Wales,153.557066,-28.393549 +2024,9,15,1,New South Wales,153.561852,-28.389069 +2020,10,24,1,New South Wales,153.461419,-28.235416 +2020,7,13,1,New South Wales,153.498076,-28.310977 +2023,3,14,1,New South Wales,153.499217,-28.388531 +2023,2,18,1,New South Wales,153.477853,-28.415444 +2022,11,17,1,New South Wales,153.472082,-28.434324 +2020,1,21,1,New South Wales,153.557549,-28.397244 +2020,11,27,1,New South Wales,153.374688,-28.252292 +2021,8,13,2,New South Wales,153.561545,-28.385605 +2024,10,18,1,New South Wales,153.499241,-28.222922 +2021,2,10,1,New South Wales,153.561829,-28.391217 +2022,6,20,1,New South Wales,153.559478,-28.393779 +2021,6,9,1,New South Wales,153.324552,-28.390324 +2022,12,26,1,New South Wales,153.498766,-28.22333 +2020,12,8,1,New South Wales,153.502222,-28.251271 +2021,3,2,2,New South Wales,153.55592,-28.398698 +2020,7,25,1,New South Wales,153.562712,-28.387266 +2020,9,27,1,New South Wales,153.443557,-28.232986 +2022,3,16,1,New South Wales,153.51374,-28.21383 +2021,7,8,1,New South Wales,153.559532,-28.393748 +2022,1,6,1,New South Wales,153.561808,-28.330657 +2024,4,27,1,New South Wales,153.469927,-28.26075 +2023,2,11,1,New South Wales,153.556836,-28.400272 +2022,10,27,1,New South Wales,153.498874,-28.223491 +2021,9,3,1,New South Wales,153.572557,-28.368956 +2022,3,25,1,New South Wales,153.559633,-28.393708 +2024,3,10,1,New South Wales,153.470045,-28.261166 +2021,2,28,1,New South Wales,153.555957,-28.398844 +2023,1,14,1,New South Wales,153.557554,-28.38855 +2020,8,6,1,New South Wales,153.554747,-28.415225 +2024,8,5,1,New South Wales,153.465132,-28.324825 +2024,9,17,1,New South Wales,153.555884,-28.376912 +2021,7,19,1,New South Wales,153.219631,-28.339384 +2022,10,5,1,New South Wales,153.562398,-28.392146 +2021,11,5,1,New South Wales,153.461614,-28.46623 +2021,6,9,1,New South Wales,153.562275,-28.38367 +2020,10,2,1,New South Wales,153.559704,-28.371295 +2021,11,18,1,New South Wales,153.555804,-28.399086 +2021,5,13,1,New South Wales,153.556565,-28.37268 +2020,10,28,2,New South Wales,153.562995,-28.381709 +2021,8,25,1,New South Wales,153.563846,-28.388031 +2020,10,11,1,New South Wales,153.556466,-28.33094 +2020,8,8,2,New South Wales,153.561326,-28.385519 +2020,9,12,1,New South Wales,153.49078,-28.244504 +2021,4,9,1,New South Wales,153.563915,-28.374668 +2020,4,9,1,New South Wales,153.556997,-28.40089 +2020,12,3,1,New South Wales,153.555851,-28.399168 +2020,10,27,1,New South Wales,153.562809,-28.374906 +2021,10,3,1,New South Wales,153.438638,-28.203027 +2023,8,4,1,New South Wales,153.561399,-28.387475 +2021,9,14,1,New South Wales,153.516048,-28.237942 +2020,11,24,1,New South Wales,153.462354,-28.235204 +2020,10,7,2,New South Wales,153.556092,-28.399522 +2020,11,19,1,New South Wales,153.559028,-28.368921 +2023,7,16,1,New South Wales,153.482784,-28.41718 +2023,7,29,1,New South Wales,153.557467,-28.388533 +2020,10,20,1,New South Wales,153.556043,-28.399617 +2021,6,9,1,New South Wales,153.562022,-28.383321 +2021,10,15,1,New South Wales,153.571052,-28.35228 +2023,11,19,1,New South Wales,153.567994,-28.377162 +2021,11,11,1,New South Wales,153.564056,-28.387975 +2021,9,12,2,New South Wales,153.556726,-28.397422 +2021,9,1,1,New South Wales,153.537312,-28.333004 +2022,9,20,1,New South Wales,153.492796,-28.228717 +2023,2,14,1,New South Wales,153.466863,-28.237293 +2020,12,12,1,New South Wales,153.37723,-28.253671 +2021,1,3,1,New South Wales,153.490644,-28.228239 +2023,6,13,1,New South Wales,153.555943,-28.398694 +2024,10,16,1,New South Wales,153.562592,-28.384211 +2020,3,4,1,New South Wales,153.556825,-28.400103 +2024,9,7,1,New South Wales,153.564502,-28.372579 +2024,11,3,1,New South Wales,153.355407,-28.264682 +2022,11,19,1,New South Wales,153.565513,-28.388597 +2021,10,4,1,New South Wales,153.561768,-28.393085 +2024,10,16,1,New South Wales,153.562211,-28.383769 +2022,5,18,1,New South Wales,153.557536,-28.393661 +2020,7,27,1,New South Wales,153.370187,-28.258902 +2020,11,7,1,New South Wales,153.55491,-28.24379 +2021,2,17,1,New South Wales,153.562606,-28.384396 +2020,1,4,1,New South Wales,153.564752,-28.375063 +2024,8,11,1,New South Wales,153.556552,-28.408213 +2022,10,29,1,New South Wales,153.498917,-28.223189 +2021,2,6,1,New South Wales,153.5569,-28.400371 +2022,9,9,1,New South Wales,153.557758,-28.396424 +2023,10,24,1,New South Wales,153.560674,-28.286672 +2021,8,16,1,New South Wales,153.563451,-28.390181 +2024,11,2,1,New South Wales,153.557901,-28.395869 +2020,10,13,1,New South Wales,153.563634,-28.372948 +2022,10,26,1,New South Wales,153.56241,-28.372208 +2021,9,3,1,New South Wales,153.563999,-28.387927 +2021,3,7,1,New South Wales,153.559782,-28.287886 +2021,5,8,1,New South Wales,153.561535,-28.388682 +2023,8,29,1,New South Wales,153.498938,-28.223563 +2020,11,8,1,New South Wales,153.555851,-28.399168 +2024,9,9,1,New South Wales,153.430101,-28.27542 +2023,11,28,1,New South Wales,153.481557,-28.248294 +2022,10,25,1,New South Wales,153.56398,-28.387951 +2024,11,15,1,New South Wales,153.562622,-28.38459 +2020,7,27,1,New South Wales,153.527843,-28.404377 +2023,9,16,1,New South Wales,153.561443,-28.385621 +2021,3,22,1,New South Wales,153.556301,-28.399832 +2023,11,12,2,New South Wales,153.499324,-28.22342 +2020,6,5,1,New South Wales,153.557212,-28.400321 +2020,1,26,1,New South Wales,153.228679,-28.470615 +2020,11,5,1,New South Wales,153.562241,-28.382587 +2021,10,22,1,New South Wales,153.541925,-28.396572 +2021,11,18,1,New South Wales,153.557046,-28.397354 +2020,10,27,1,New South Wales,153.562237,-28.374599 +2023,9,2,1,New South Wales,153.445326,-28.231356 +2023,6,12,1,New South Wales,153.561321,-28.376147 +2020,10,27,1,New South Wales,153.463368,-28.321162 +2021,10,19,1,New South Wales,153.559092,-28.393945 +2022,7,14,1,New South Wales,153.561184,-28.393307 +2022,11,7,2,New South Wales,153.466245,-28.23731 +2024,2,12,1,New South Wales,153.55866,-28.394081 +2020,7,11,2,New South Wales,153.561351,-28.385497 +2024,9,24,1,New South Wales,153.563263,-28.384989 +2021,1,20,1,New South Wales,153.459485,-28.327038 +2023,3,10,1,New South Wales,153.561886,-28.386544 +2021,7,18,1,New South Wales,153.466171,-28.237404 +2021,12,29,1,New South Wales,153.554402,-28.413281 +2021,6,3,2,New South Wales,153.556289,-28.399887 +2020,12,7,1,New South Wales,153.474456,-28.258198 +2021,10,28,1,New South Wales,153.563161,-28.381373 +2022,2,12,1,New South Wales,153.561373,-28.331098 +2021,1,28,1,New South Wales,153.561867,-28.388795 +2024,9,20,1,New South Wales,153.563909,-28.38797 +2020,11,19,1,New South Wales,153.559162,-28.408523 +2022,9,29,1,New South Wales,153.499174,-28.223378 +2020,12,20,1,New South Wales,153.560992,-28.388905 +2020,8,1,1,New South Wales,153.558425,-28.394206 +2020,2,13,1,New South Wales,153.556979,-28.400244 +2021,10,7,1,New South Wales,153.56086,-28.39009 +2023,3,10,1,New South Wales,153.55922,-28.383315 +2021,4,20,1,New South Wales,153.48519,-28.244216 +2023,7,28,1,New South Wales,153.555618,-28.378469 +2021,8,26,1,New South Wales,153.556667,-28.398611 +2024,5,12,1,New South Wales,153.468597,-28.261593 +2021,10,16,2,New South Wales,153.55946,-28.393795 +2021,9,8,1,New South Wales,153.561633,-28.367891 +2022,9,12,1,New South Wales,153.466038,-28.237696 +2022,9,18,1,New South Wales,153.363352,-28.391102 +2020,12,21,2,New South Wales,153.560089,-28.389489 +2024,8,24,1,New South Wales,153.560095,-28.286877 +2020,1,12,1,New South Wales,153.557165,-28.373277 +2024,10,9,1,New South Wales,153.557389,-28.387794 +2021,2,17,1,New South Wales,153.555051,-28.330883 +2020,11,9,1,New South Wales,153.559492,-28.389838 +2023,6,11,1,New South Wales,153.561774,-28.385765 +2022,3,9,1,Queensland,153.355605,-28.248741 +2024,9,18,1,New South Wales,153.558278,-28.388334 +2022,11,25,1,New South Wales,153.499174,-28.223378 +2021,9,13,1,New South Wales,153.563264,-28.393418 +2024,4,14,1,New South Wales,153.375997,-28.243368 +2021,10,4,1,New South Wales,153.503502,-28.239539 +2024,8,15,1,New South Wales,153.556336,-28.408166 +2020,12,24,1,New South Wales,153.564035,-28.381339 +2021,8,26,1,New South Wales,153.555254,-28.403401 +2021,2,6,1,New South Wales,153.557114,-28.400283 +2020,3,1,1,New South Wales,153.556747,-28.400128 +2023,7,28,1,New South Wales,153.517873,-28.194829 +2022,4,22,1,New South Wales,153.561219,-28.393386 +2021,2,28,1,New South Wales,153.524537,-28.391716 +2020,3,3,1,New South Wales,153.555779,-28.399392 +2020,11,11,1,New South Wales,153.563517,-28.38096 +2021,2,6,1,New South Wales,153.557433,-28.394633 +2024,11,15,1,New South Wales,153.558089,-28.388356 +2021,8,25,1,New South Wales,153.555751,-28.375262 +2020,12,1,1,New South Wales,153.562595,-28.391241 +2022,10,14,1,New South Wales,153.561336,-28.385548 +2024,2,11,1,New South Wales,153.556466,-28.373508 +2021,3,8,1,New South Wales,153.560834,-28.36428 +2021,12,3,1,New South Wales,153.391845,-28.315833 +2020,11,5,1,New South Wales,153.373851,-28.251819 +2024,10,4,1,New South Wales,153.240562,-28.497324 +2021,8,6,1,New South Wales,153.557511,-28.394642 +2022,1,8,1,New South Wales,153.39323,-28.286805 +2022,4,26,1,New South Wales,153.558768,-28.393911 +2020,8,17,1,New South Wales,153.540581,-28.332128 +2021,1,8,2,New South Wales,153.563417,-28.38145 +2020,9,29,1,New South Wales,153.564009,-28.37467 +2021,6,17,1,New South Wales,153.522273,-28.358392 +2021,7,5,1,New South Wales,153.561623,-28.385899 +2023,1,1,2,New South Wales,153.498734,-28.22343 +2020,11,8,2,New South Wales,153.563736,-28.381181 +2020,1,6,1,New South Wales,153.556801,-28.408402 +2021,9,8,1,New South Wales,153.563183,-28.392594 +2024,6,4,1,New South Wales,153.541381,-28.332186 +2022,12,25,1,New South Wales,153.561416,-28.38553 +2021,10,15,1,New South Wales,153.501114,-28.224592 +2023,5,27,1,New South Wales,153.562319,-28.384128 +2021,1,19,1,New South Wales,153.519965,-28.186409 +2022,1,18,1,New South Wales,153.556353,-28.399896 +2023,7,21,1,New South Wales,153.555849,-28.375307 +2023,6,2,1,New South Wales,153.556804,-28.381159 +2024,10,16,1,New South Wales,153.562469,-28.384097 +2021,9,12,1,New South Wales,153.563248,-28.393392 +2020,3,7,1,New South Wales,153.557375,-28.397359 +2023,6,21,1,New South Wales,153.563912,-28.381074 +2024,9,3,1,New South Wales,153.483167,-28.246895 +2020,9,22,1,New South Wales,153.532096,-28.229026 +2022,9,15,1,New South Wales,153.398932,-28.327034 +2020,12,16,1,New South Wales,153.475131,-28.3123 +2024,4,26,1,New South Wales,153.556382,-28.37752 +2020,12,9,1,New South Wales,153.555948,-28.398935 +2022,9,18,1,New South Wales,153.465844,-28.237484 +2021,10,7,1,New South Wales,153.546218,-28.388732 +2020,11,4,1,New South Wales,153.564448,-28.335019 +2023,2,24,1,New South Wales,153.547172,-28.388961 +2022,9,27,1,New South Wales,153.499174,-28.223378 +2024,5,3,1,New South Wales,153.465325,-28.325189 +2021,10,8,1,New South Wales,153.468557,-28.328904 +2024,9,10,1,New South Wales,153.559297,-28.373334 +2021,7,30,1,New South Wales,153.5657,-28.32933 +2024,9,14,1,New South Wales,153.55643,-28.408178 +2021,10,13,1,New South Wales,153.563655,-28.388033 +2020,2,25,1,New South Wales,153.556012,-28.399483 +2023,5,21,2,New South Wales,153.561372,-28.38548 +2022,3,29,1,New South Wales,153.559618,-28.393736 +2022,1,24,1,New South Wales,153.527643,-28.404354 +2021,4,21,1,New South Wales,153.559686,-28.371042 +2024,9,1,2,New South Wales,153.495889,-28.255722 +2020,7,27,1,New South Wales,153.527843,-28.404377 +2020,11,12,2,New South Wales,153.49189,-28.229437 +2023,3,7,2,New South Wales,153.559623,-28.393647 +2024,8,1,1,New South Wales,153.556975,-28.397536 +2021,7,16,1,New South Wales,153.496814,-28.237443 +2023,5,31,1,New South Wales,153.450165,-28.262129 +2021,8,7,1,New South Wales,153.574456,-28.365997 +2023,6,21,1,New South Wales,153.240856,-28.315753 +2020,12,9,1,New South Wales,153.3728,-28.251194 +2021,3,28,1,New South Wales,153.563931,-28.388052 +2020,10,24,1,New South Wales,153.556055,-28.399735 +2022,3,14,1,New South Wales,153.557446,-28.396942 +2021,10,1,1,New South Wales,153.556518,-28.372548 +2023,2,12,1,New South Wales,153.558566,-28.394019 +2021,5,19,1,New South Wales,153.561513,-28.38924 +2021,3,22,1,New South Wales,153.557262,-28.397359 +2022,1,31,1,New South Wales,153.556977,-28.397252 +2023,2,9,1,New South Wales,153.555688,-28.376375 +2020,9,28,1,New South Wales,153.555388,-28.40827 +2020,1,15,1,New South Wales,153.557953,-28.396392 +2020,1,26,1,New South Wales,153.557439,-28.397381 +2024,10,16,1,New South Wales,153.564025,-28.380925 +2020,12,8,1,New South Wales,153.560914,-28.388123 +2022,2,22,1,New South Wales,153.556988,-28.397314 +2021,2,17,1,New South Wales,153.555115,-28.32982 +2021,7,28,1,New South Wales,153.389567,-28.30084 +2022,6,20,1,New South Wales,153.55752,-28.388597 +2024,3,24,1,New South Wales,153.557528,-28.388673 +2022,1,15,1,New South Wales,153.557006,-28.397367 +2023,2,4,1,New South Wales,153.557558,-28.388503 +2021,11,27,1,New South Wales,153.378076,-28.255211 +2022,12,7,2,New South Wales,153.556868,-28.40031 +2020,9,2,1,New South Wales,153.474069,-28.258765 +2020,8,20,1,New South Wales,153.527242,-28.233314 +2022,11,21,1,New South Wales,153.55671,-28.40005 +2021,4,13,1,New South Wales,153.562425,-28.389917 +2020,4,9,1,New South Wales,153.556044,-28.403117 +2020,11,18,1,New South Wales,153.557464,-28.394275 +2024,10,14,1,New South Wales,153.561262,-28.366065 +2020,9,26,1,New South Wales,153.370133,-28.259275 +2023,7,31,1,New South Wales,153.557297,-28.388597 +2021,5,22,1,New South Wales,153.48113,-28.228416 +2020,10,18,1,New South Wales,153.561166,-28.389204 +2022,3,8,1,New South Wales,153.54932,-28.404832 +2021,7,8,1,New South Wales,153.556187,-28.398598 +2020,12,20,1,New South Wales,153.433313,-28.261702 +2022,1,5,1,New South Wales,153.555267,-28.408776 +2022,11,4,1,New South Wales,153.563994,-28.387975 +2020,10,10,1,New South Wales,153.255785,-28.436217 +2020,12,14,1,New South Wales,153.56185,-28.392953 +2020,11,25,1,New South Wales,153.526673,-28.233303 +2022,3,8,1,New South Wales,153.54932,-28.404832 +2023,8,13,1,New South Wales,153.482648,-28.247201 +2021,1,27,1,New South Wales,153.370418,-28.258897 +2020,5,28,1,New South Wales,153.558143,-28.393943 +2020,10,15,1,New South Wales,153.561767,-28.386939 +2023,11,17,1,New South Wales,153.561752,-28.388988 +2021,8,4,1,New South Wales,153.465627,-28.325477 +2021,6,10,1,New South Wales,153.47209,-28.264043 +2023,9,19,1,New South Wales,153.502055,-28.238096 +2022,10,3,1,New South Wales,153.446973,-28.223349 +2021,2,23,1,New South Wales,153.375095,-28.252332 +2024,3,24,1,New South Wales,153.55745,-28.388384 +2022,10,27,1,New South Wales,153.557512,-28.393581 +2022,3,14,1,New South Wales,153.55609,-28.398479 +2023,9,22,1,New South Wales,153.433619,-28.238243 +2024,8,21,1,New South Wales,153.562939,-28.386584 +2021,10,10,2,New South Wales,153.55705,-28.397447 +2020,10,6,1,New South Wales,153.561133,-28.286809 +2022,2,22,1,New South Wales,153.466987,-28.326808 +2020,10,2,1,New South Wales,153.465285,-28.237583 +2021,8,24,1,New South Wales,153.563734,-28.381087 +2023,8,31,1,New South Wales,153.562877,-28.329372 +2020,2,14,2,New South Wales,153.548894,-28.404028 +2021,7,24,1,New South Wales,153.39463,-28.288936 +2023,3,10,1,New South Wales,153.55926,-28.393866 +2020,9,8,1,New South Wales,153.518851,-28.232736 +2020,1,15,1,New South Wales,153.557739,-28.397239 +2021,9,29,1,New South Wales,153.573188,-28.36821 +2020,11,11,1,New South Wales,153.55913,-28.368998 +2022,2,20,1,New South Wales,153.558372,-28.394137 +2022,9,30,1,New South Wales,153.499045,-28.223491 +2024,10,22,1,New South Wales,153.413474,-28.249657 +2024,9,13,1,New South Wales,153.561895,-28.389022 +2021,9,3,1,New South Wales,153.541106,-28.33583 +2023,9,25,1,New South Wales,153.556415,-28.371558 +2022,1,15,1,New South Wales,153.557475,-28.396989 +2024,10,10,1,New South Wales,153.490444,-28.23463 +2024,1,2,1,New South Wales,153.558,-28.388242 +2020,11,5,1,New South Wales,153.502222,-28.251271 +2022,4,8,1,New South Wales,153.561699,-28.367279 +2021,9,24,1,New South Wales,153.567341,-28.386438 +2020,5,30,1,New South Wales,153.47857,-28.232574 +2020,10,20,1,New South Wales,153.557147,-28.400357 +2024,9,30,1,New South Wales,153.555908,-28.37526 +2021,10,10,1,New South Wales,153.559556,-28.289734 +2021,6,21,1,New South Wales,153.477993,-28.248694 +2022,10,13,2,New South Wales,153.564671,-28.386657 +2024,8,22,1,New South Wales,153.259633,-28.353414 +2021,2,18,1,New South Wales,153.558418,-28.369256 +2023,3,3,1,New South Wales,153.556756,-28.400291 +2023,7,21,1,New South Wales,153.555875,-28.375219 +2021,6,15,1,New South Wales,153.556688,-28.400022 +2023,6,1,1,New South Wales,153.267446,-28.442728 +2022,10,12,1,New South Wales,153.563939,-28.387946 +2020,8,30,1,New South Wales,153.562466,-28.39117 +2023,8,28,1,New South Wales,153.540846,-28.195932 +2024,11,6,1,New South Wales,153.532761,-28.197031 +2022,2,7,1,New South Wales,153.56029,-28.28575 +2023,5,20,1,New South Wales,153.548981,-28.404528 +2020,9,9,1,New South Wales,153.555612,-28.398078 +2024,9,4,1,New South Wales,153.564837,-28.334547 +2022,10,11,1,New South Wales,153.49838,-28.223964 +2020,9,23,1,New South Wales,153.261077,-28.437691 +2024,10,23,1,New South Wales,153.561384,-28.363083 +2021,2,21,1,New South Wales,153.563995,-28.387986 +2024,8,12,1,New South Wales,153.556103,-28.408131 +2023,1,2,1,New South Wales,153.490065,-28.239334 +2023,6,13,1,New South Wales,153.558285,-28.394024 +2021,8,22,1,New South Wales,153.563196,-28.392608 +2021,9,19,1,New South Wales,153.562175,-28.390466 +2020,10,7,1,New South Wales,153.416797,-28.288372 +2023,1,3,1,New South Wales,153.561535,-28.385582 +2022,3,17,1,New South Wales,153.495627,-28.254361 +2020,8,25,2,New South Wales,153.427208,-28.229862 +2022,3,12,1,New South Wales,153.461284,-28.464957 +2020,12,29,1,New South Wales,153.562505,-28.391285 +2021,9,11,1,New South Wales,153.561596,-28.393401 +2021,8,4,2,New South Wales,153.564642,-28.327767 +2020,1,3,1,New South Wales,153.325549,-28.387771 +2022,12,5,1,New South Wales,153.565028,-28.389615 +2024,7,6,2,New South Wales,153.556218,-28.40823 +2021,9,9,1,New South Wales,153.564397,-28.391396 +2021,6,19,1,New South Wales,153.49866,-28.222508 +2023,2,21,1,New South Wales,153.555796,-28.398946 +2021,4,18,1,New South Wales,153.559853,-28.371386 +2020,9,17,1,New South Wales,153.35622,-28.360009 +2024,8,19,1,New South Wales,153.419191,-28.368727 +2022,3,19,1,New South Wales,153.557586,-28.394686 +2020,12,11,1,New South Wales,153.556209,-28.370785 +2021,7,29,2,New South Wales,153.556057,-28.398603 +2021,7,6,1,New South Wales,153.556647,-28.40001 +2021,7,27,1,New South Wales,153.465827,-28.326579 +2020,11,22,1,New South Wales,153.557778,-28.396944 +2023,3,28,1,New South Wales,153.559681,-28.393611 +2023,7,22,1,New South Wales,153.557217,-28.38838 +2023,1,11,1,New South Wales,153.557232,-28.397366 +2024,10,21,1,New South Wales,153.389582,-28.284035 +2021,2,18,1,New South Wales,153.557611,-28.394514 +2024,10,18,1,New South Wales,153.202841,-28.363296 +2021,6,13,1,New South Wales,153.474541,-28.257896 +2021,9,29,1,New South Wales,153.462302,-28.187167 +2021,11,30,2,New South Wales,153.557416,-28.397082 +2024,7,29,1,New South Wales,153.541124,-28.393798 +2023,8,31,2,New South Wales,153.544911,-28.332602 +2023,7,27,1,New South Wales,153.555453,-28.378385 +2021,10,20,1,New South Wales,153.55589,-28.399119 +2022,6,8,1,New South Wales,153.559233,-28.393883 +2020,8,14,2,New South Wales,153.562111,-28.385548 +2021,2,25,1,New South Wales,153.564167,-28.380833 +2023,3,10,1,New South Wales,153.555933,-28.398746 +2024,1,8,1,New South Wales,153.557477,-28.388387 +2023,7,14,2,New South Wales,153.478336,-28.249349 +2024,10,7,1,New South Wales,153.556778,-28.397534 +2023,9,17,1,New South Wales,153.56144,-28.385616 +2020,8,13,1,New South Wales,153.303636,-28.35799 +2020,9,25,1,New South Wales,153.374444,-28.252222 +2020,10,16,1,New South Wales,153.5572,-28.397524 +2023,6,19,1,New South Wales,153.55563,-28.378447 +2023,3,6,1,New South Wales,153.562434,-28.384161 +2021,9,2,1,New South Wales,153.560115,-28.393996 +2021,1,22,1,New South Wales,153.495958,-28.254464 +2020,12,14,1,New South Wales,153.373197,-28.251337 +2024,9,24,1,New South Wales,153.563982,-28.380817 +2023,9,15,1,New South Wales,153.564354,-28.380511 +2021,5,24,1,New South Wales,153.465495,-28.237336 +2020,10,30,1,New South Wales,153.465926,-28.2261 +2024,11,7,1,New South Wales,153.460132,-28.323843 +2020,11,11,1,New South Wales,153.56342,-28.381295 +2021,9,11,1,New South Wales,153.331312,-28.362476 +2020,9,18,2,New South Wales,153.555834,-28.398963 +2020,3,3,1,New South Wales,153.555779,-28.399392 +2023,1,7,1,New South Wales,153.511236,-28.241607 +2023,9,20,1,New South Wales,153.563236,-28.381282 +2021,6,5,1,New South Wales,153.520242,-28.234366 +2021,8,27,1,New South Wales,153.563269,-28.361556 +2022,1,5,2,New South Wales,153.55336,-28.407803 +2024,9,12,1,New South Wales,153.549962,-28.329005 +2023,8,5,1,New South Wales,153.506985,-28.244665 +2020,11,11,1,New South Wales,153.377742,-28.249381 +2023,9,26,1,New South Wales,153.474455,-28.324952 +2020,10,20,1,New South Wales,153.555716,-28.399074 +2020,10,5,2,New South Wales,153.482165,-28.247673 +2020,9,6,1,New South Wales,153.555628,-28.399215 +2023,12,26,1,New South Wales,153.557566,-28.388418 +2023,3,27,1,New South Wales,153.564011,-28.387913 +2021,9,11,1,New South Wales,153.56231,-28.392104 +2020,8,12,1,New South Wales,153.557985,-28.39508 +2021,6,9,1,New South Wales,153.564544,-28.380335 +2024,8,9,1,New South Wales,153.556418,-28.408199 +2022,2,5,1,New South Wales,153.562317,-28.383844 +2022,10,14,2,New South Wales,153.556163,-28.398314 +2022,11,7,1,New South Wales,153.564037,-28.387951 +2021,7,16,1,New South Wales,153.556904,-28.400365 +2020,9,25,1,New South Wales,153.543966,-28.388928 +2024,10,4,1,New South Wales,153.561777,-28.389206 +2020,8,25,1,New South Wales,153.427208,-28.229862 +2022,11,11,2,New South Wales,153.561844,-28.392972 +2022,11,21,1,New South Wales,153.466081,-28.237195 +2022,1,1,1,New South Wales,153.567429,-28.380983 +2020,2,15,1,New South Wales,153.557582,-28.388407 +2023,7,31,2,New South Wales,153.557673,-28.38842 +2021,1,29,1,New South Wales,153.561341,-28.38468 +2020,1,26,1,New South Wales,153.478146,-28.250297 +2021,12,24,1,New South Wales,153.395107,-28.287731 +2021,2,19,1,New South Wales,153.561749,-28.388894 +2020,10,6,1,New South Wales,153.559727,-28.371361 +2023,2,24,1,New South Wales,153.55917,-28.383293 +2021,8,22,1,New South Wales,153.563628,-28.391286 +2020,9,14,1,New South Wales,153.137314,-28.383891 +2020,10,16,1,New South Wales,153.557027,-28.393638 +2020,1,31,1,New South Wales,153.374264,-28.252098 +2020,9,12,1,New South Wales,153.564524,-28.332234 +2023,7,28,1,New South Wales,153.557472,-28.388513 +2024,10,4,1,New South Wales,153.563412,-28.389488 +2021,5,7,1,New South Wales,153.556602,-28.372279 +2024,9,24,1,New South Wales,153.561932,-28.389182 +2020,9,19,1,New South Wales,153.558056,-28.373982 +2023,6,12,1,New South Wales,153.557523,-28.388503 +2023,3,3,1,New South Wales,153.449221,-28.260391 +2020,9,5,1,New South Wales,153.406923,-28.325282 +2024,1,31,1,New South Wales,153.555998,-28.376772 +2020,11,5,1,New South Wales,153.555939,-28.398822 +2024,9,18,1,New South Wales,153.562364,-28.384194 +2021,6,19,1,New South Wales,153.568218,-28.376657 +2024,9,22,1,New South Wales,153.561868,-28.389121 +2022,4,17,1,New South Wales,153.557079,-28.394204 +2023,1,11,1,New South Wales,153.555877,-28.398924 +2024,10,3,1,New South Wales,153.566422,-28.376057 +2022,1,18,1,New South Wales,153.555108,-28.330888 +2022,5,13,1,New South Wales,153.559268,-28.39384 +2023,8,4,1,New South Wales,153.564243,-28.380706 +2022,3,22,1,New South Wales,153.559531,-28.393769 +2020,10,30,1,New South Wales,153.560523,-28.373989 +2020,10,26,1,New South Wales,153.560235,-28.37446 +2021,7,29,1,New South Wales,153.563531,-28.381558 +2024,8,29,1,New South Wales,153.468747,-28.261392 +2024,11,8,1,New South Wales,153.505273,-28.241618 +2024,6,14,1,New South Wales,153.555629,-28.378563 +2020,11,11,1,New South Wales,153.557511,-28.394264 +2020,12,5,1,New South Wales,153.556197,-28.398648 +2024,10,29,1,New South Wales,153.56116,-28.344958 +2021,11,28,1,Victoria,144.158,-37.3046 +2021,12,1,1,Victoria,144.153,-37.294 +2021,11,30,1,Victoria,144.3,-37.1168 +2023,2,15,1,Victoria,146.687,-36.5112 +2022,5,4,1,Victoria,143.492,-38.4571 +2021,12,27,1,Victoria,143.84,-37.7565 +2022,4,28,1,Victoria,143.594,-38.5406 +2022,3,28,1,Victoria,143.768,-38.4837 +2021,8,9,1,Victoria,141.6,-38.3783 +2022,5,11,1,Victoria,143.623,-38.5204 +2021,12,6,1,Victoria,143.442,-37.2881 +2021,11,18,1,Victoria,143.913,-37.4561 +2022,3,24,1,Victoria,143.24,-37.0906 +2022,5,5,1,Victoria,143.622,-38.5194 +2021,12,22,1,Victoria,143.832,-37.7304 +2022,5,11,1,Victoria,143.576,-38.4517 +2023,3,29,1,Victoria,146.155,-36.8255 +2022,4,27,1,Victoria,143.358,-38.531 +2022,5,6,1,Victoria,143.623,-38.5204 +2022,4,1,1,Victoria,143.241,-37.091 +2021,12,21,1,Victoria,143.804,-37.7746 +2021,8,9,1,Victoria,141.6,-38.3783 +2022,5,12,1,Victoria,143.623,-38.5204 +2021,8,9,1,Victoria,141.6,-38.3783 +2021,12,7,1,Victoria,144.3,-37.1158 +2021,8,9,1,Victoria,141.6,-38.3783 +2021,8,9,1,Victoria,141.6,-38.3783 +2021,12,2,1,Victoria,144.244,-37.2326 +2022,5,16,1,Victoria,143.39,-38.4462 +2021,8,9,1,Victoria,141.6,-38.3783 +2021,11,22,1,Victoria,144.279,-37.0947 +2022,4,29,1,Victoria,143.55,-38.4616 +2021,8,9,1,Victoria,141.6,-38.3783 +2023,2,20,1,Victoria,146.688,-36.5273 +2021,8,9,1,Victoria,141.6,-38.3783 +2022,5,10,1,Victoria,143.246,-38.6482 +2022,12,17,1,Victoria,143.244,-36.7776 +2021,8,9,1,Victoria,141.6,-38.3783 +2022,4,2,1,Victoria,143.772,-38.4937 +2021,8,9,1,Victoria,141.6,-38.3783 +2021,8,9,1,Victoria,141.6,-38.3783 +2022,4,5,1,Victoria,143.772,-38.4937 +2021,8,9,1,Victoria,141.6,-38.3783 +2022,4,1,1,Victoria,143.772,-38.4937 +2022,1,22,1,Victoria,146.359,-37.6846 +2021,8,9,1,Victoria,141.6,-38.3783 +2022,5,8,1,Victoria,143.558,-38.4504 +2021,11,28,1,Victoria,143.433,-37.291 +2021,8,9,1,Victoria,141.6,-38.3783 +2023,1,26,1,Victoria,146.697,-36.4801 +2021,8,9,1,Victoria,141.6,-38.3783 +2022,4,12,1,Victoria,143.772,-38.4942 +2021,8,9,1,Victoria,141.6,-38.3783 +2021,8,9,1,Victoria,141.6,-38.3783 +2021,8,9,1,Victoria,141.6,-38.3783 +2021,8,9,1,Victoria,141.6,-38.3783 +2023,2,13,1,Victoria,146.661,-36.4911 +2021,11,17,1,Victoria,143.917,-37.4382 +2021,8,9,1,Victoria,141.6,-38.3783 +2022,4,22,1,Victoria,143.358,-38.531 +2022,5,17,1,Victoria,143.409,-38.4342 +2021,8,9,1,Victoria,141.6,-38.3783 +2022,3,6,1,Victoria,143.24,-37.0906 +2021,8,9,1,Victoria,141.6,-38.3783 +2023,4,29,1,Victoria,146.155,-36.8255 +2021,8,9,1,Victoria,141.6,-38.3783 +2022,12,15,1,Victoria,143.527,-37.0977 +2021,8,9,1,Victoria,141.6,-38.3783 +2021,8,9,1,Victoria,141.6,-38.3783 +2021,8,9,1,Victoria,141.6,-38.3783 +2023,4,29,1,Victoria,146.442,-38.1133 +2021,8,9,1,Victoria,141.6,-38.3783 +2021,8,9,1,Victoria,141.6,-38.3783 +2022,4,10,1,Victoria,143.772,-38.4937 +2021,12,28,1,Victoria,143.804,-37.7746 +2022,3,29,1,Victoria,143.768,-38.4849 +2022,5,9,1,Victoria,143.39,-38.4462 +2021,11,18,1,Victoria,143.928,-37.4511 +2021,8,9,1,Victoria,141.6,-38.3783 +2021,12,19,1,Victoria,143.832,-37.7304 +2022,5,3,1,Victoria,143.493,-38.4568 +2022,1,1,1,Queensland,149.442778,-20.925 +2020,12,26,1,Queensland,153.259194,-27.518914 +2022,12,19,1,Queensland,153.234083,-27.50046 +2021,2,24,1,Queensland,152.667746,-27.811707 +2021,8,17,1,Queensland,153.246094,-27.527231 +2021,8,30,1,Queensland,153.223124,-27.562109 +2021,8,31,1,Queensland,153.154191,-27.486699 +2021,7,14,1,Queensland,146.934773,-19.428541 +2022,8,10,1,Queensland,153.102829,-27.524771 +2020,10,9,1,Queensland,152.812245,-27.510311 +2021,1,2,1,Queensland,153.079728,-27.507031 +2023,5,28,1,New South Wales,150.926206,-30.347877 +2020,12,21,2,New South Wales,153.560154,-28.389494 +2021,9,10,1,Queensland,152.812046,-27.53635 +2022,2,28,1,Victoria,141.406227,-37.586635 +2022,8,8,1,Queensland,153.189706,-27.651923 +2022,4,27,1,New South Wales,146.532329,-34.73716 +2020,9,8,1,New South Wales,152.943052,-29.741902 +2021,9,3,1,New South Wales,152.906413,-30.460847 +2021,7,29,1,Queensland,152.11031,-27.566147 +2020,7,7,1,Queensland,151.946722,-27.455046 +2021,10,17,1,Queensland,153.073759,-27.537124 +2022,10,22,1,Queensland,153.256281,-27.548889 +2022,4,14,1,Victoria,145.525132,-38.435481 +2020,4,5,1,New South Wales,151.19598,-29.78625 +2020,5,3,1,New South Wales,151.000546,-34.061504 +2021,11,22,1,Queensland,153.004606,-27.378111 +2022,11,22,1,Queensland,153.02274,-27.525291 +2022,10,11,1,Queensland,153.278342,-27.535274 +2020,9,21,1,Victoria,145.090667,-38.28881 +2021,4,15,1,Queensland,153.360081,-27.915713 +2021,7,29,1,Queensland,152.085162,-27.541199 +2021,11,2,1,Queensland,153.206641,-27.49753 +2020,9,26,1,Queensland,153.01898,-27.288758 +2022,3,26,1,Queensland,153.233435,-27.533306 +2021,4,23,1,Victoria,145.703602,-38.458596 +2022,12,10,1,Queensland,153.339994,-28.032945 +2021,9,4,1,New South Wales,153.537089,-28.33307 +2022,7,13,1,Queensland,153.256281,-27.548889 +2022,9,19,1,Queensland,153.229936,-27.502764 +2020,2,2,1,New South Wales,151.19598,-29.78625 +2020,1,9,1,New South Wales,151.19598,-29.78625 +2021,11,10,1,New South Wales,150.57827,-29.863158 +2020,9,19,1,Queensland,153.279247,-27.525732 +2020,4,9,1,Queensland,152.673591,-28.01231 +2020,7,17,1,Queensland,152.863855,-27.540481 +2021,9,18,1,Queensland,153.058333,-27.532772 +2020,11,4,2,New South Wales,153.564256,-28.380667 +2022,8,6,1,Queensland,153.282,-27.532 +2021,4,18,1,Queensland,153.233727,-27.542961 +2021,9,10,1,Queensland,153.180878,-27.69068 +2020,2,15,1,New South Wales,152.4335,-28.879101 +2021,2,13,1,Victoria,146.202551,-38.651438 +2021,8,23,1,Queensland,153.369713,-27.834269 +2021,9,12,1,Queensland,152.807541,-27.531846 +2022,12,5,1,Queensland,151.866674,-27.357116 +2020,12,5,2,New South Wales,153.555884,-28.399137 +2022,11,13,2,New South Wales,153.556836,-28.397261 +2021,8,29,1,New South Wales,153.564774,-28.387398 +2021,7,11,1,Queensland,153.29706,-27.569272 +2021,8,3,1,Queensland,152.840742,-27.528783 +2022,7,11,1,Queensland,153.256281,-27.548889 +2020,12,27,1,New South Wales,152.136124,-32.719025 +2020,5,12,1,Queensland,153.075693,-27.845438 +2021,2,23,1,Queensland,153.108487,-27.512861 +2020,11,22,2,New South Wales,153.555833,-28.399167 +2021,1,15,1,Queensland,152.805285,-27.534527 +2023,6,9,1,New South Wales,150.910913,-30.343103 +2022,4,10,1,Victoria,145.971429,-38.274687 +2024,11,10,2,New South Wales,153.506285,-28.241669 +2020,8,28,1,Queensland,152.807332,-27.530471 +2020,4,1,1,Queensland,152.379697,-27.25714 +2020,10,26,1,Queensland,153.080035,-27.484726 +2020,1,15,2,New South Wales,153.556941,-28.397195 +2020,7,3,1,Queensland,152.863855,-27.540481 +2020,3,14,1,New South Wales,151.19597,-29.78653 +2021,7,25,1,Queensland,153.229011,-27.498311 +2021,9,16,1,Queensland,153.229446,-28.12233 +2020,1,15,2,New South Wales,153.556922,-28.397139 +2021,11,30,1,Queensland,153.11454,-27.590064 +2021,6,24,1,Queensland,153.197767,-27.502912 +2020,8,13,1,Queensland,153.123475,-27.778815 +2020,10,18,2,New South Wales,153.465634,-28.322836 +2020,10,22,1,New South Wales,153.444479,-28.261052 +2022,5,29,1,Victoria,146.694582,-38.265883 +2022,1,5,1,Queensland,153.47057,-27.404673 +2020,10,20,1,Queensland,153.40249,-28.108995 +2022,8,18,1,Queensland,153.324926,-27.921097 +2020,9,20,1,Queensland,153.007313,-27.304248 +2020,12,9,2,New South Wales,153.555948,-28.398935 +2020,10,25,1,Queensland,153.206314,-27.497665 +2021,11,6,2,New South Wales,153.555987,-28.398821 +2020,1,19,1,Queensland,153.428148,-28.189969 +2020,8,11,2,New South Wales,153.564663,-28.327875 +2021,8,25,1,Queensland,153.229198,-27.549427 +2022,6,1,1,Queensland,153.28274,-27.533817 +2020,4,12,1,Queensland,153.06355,-27.724201 +2021,7,29,1,Queensland,152.106763,-27.561401 +2021,1,7,1,New South Wales,153.467861,-28.326539 +2021,8,3,1,Queensland,152.840742,-27.528783 +2022,10,1,2,New South Wales,153.559889,-28.286486 +2021,10,31,1,New South Wales,151.500881,-30.518178 +2022,8,14,1,Queensland,149.760861,-22.740992 +2020,9,30,1,Queensland,152.891868,-26.71947 +2023,11,22,2,New South Wales,153.560725,-28.286951 +2020,11,1,1,Queensland,153.260146,-27.502317 +2022,10,7,1,Queensland,153.271358,-27.575642 +2020,2,2,1,Queensland,153.17,-27.638333 +2020,10,16,2,New South Wales,153.556036,-28.399676 +2020,6,30,1,Queensland,152.950909,-27.14524 +2021,6,18,2,Queensland,153.088659,-27.515984 +2022,11,11,2,Queensland,153.072345,-27.524029 +2021,1,14,1,Queensland,152.803627,-27.532621 +2022,7,30,2,Queensland,153.087868,-27.507314 +2022,8,17,1,New South Wales,149.843884,-29.461929 +2022,9,22,1,Queensland,153.228867,-27.5028 +2020,1,2,1,Queensland,153.259033,-27.500161 +2022,12,21,1,Queensland,152.652758,-26.371375 +2021,9,6,1,Queensland,153.100672,-27.790453 +2021,8,25,2,Queensland,153.10679,-27.53455 +2020,6,28,1,Queensland,152.859868,-27.545058 +2021,10,15,1,New South Wales,153.446356,-28.257992 +2020,10,23,1,New South Wales,153.138889,-30.208889 +2022,10,26,1,Queensland,152.025927,-26.675912 +2022,9,25,1,Queensland,153.063028,-27.540036 +2021,8,7,1,Queensland,152.806816,-27.529464 +2021,6,28,2,Victoria,145.546875,-37.71859 +2022,11,5,1,Queensland,153.229906,-27.502814 +2021,5,8,1,Queensland,153.070176,-27.510693 +2021,12,11,1,Queensland,153.18856,-27.702088 +2020,7,25,1,Queensland,152.863855,-27.540481 +2020,5,13,1,Queensland,152.961977,-26.699996 +2020,10,7,1,New South Wales,150.925627,-29.690439 +2022,7,13,1,Queensland,153.523555,-27.430733 +2021,6,16,1,Queensland,153.252167,-27.542664 +2021,9,10,2,Queensland,152.812257,-27.53646 +2022,11,11,1,Queensland,153.229814,-27.502719 +2022,11,1,1,Queensland,153.256312,-27.548436 +2020,9,9,1,Queensland,151.637206,-27.659812 +2020,12,13,1,Queensland,153.272321,-27.554369 +2020,10,31,1,Queensland,152.429187,-27.320497 +2022,6,23,1,Queensland,153.523738,-27.431976 +2020,4,5,1,Queensland,153.204953,-27.547829 +2021,8,6,1,New South Wales,153.37919,-28.55907 +2020,10,10,1,New South Wales,152.434508,-28.878855 +2021,9,10,1,Queensland,152.847924,-27.531617 +2022,5,24,2,Queensland,153.258151,-27.502338 +2020,9,2,1,Queensland,153.074813,-27.32077 +2020,10,31,1,New South Wales,150.925627,-29.690439 +2020,10,19,1,New South Wales,150.925627,-29.690439 +2020,10,13,1,New South Wales,150.925627,-29.690439 +2020,1,9,1,New South Wales,151.19598,-29.78625 +2021,6,3,1,New South Wales,151.581963,-32.975037 +2021,12,3,2,Queensland,153.223069,-27.499848 +2020,11,4,1,New South Wales,153.287838,-29.355285 +2020,8,20,1,Queensland,153.206082,-27.497428 +2022,11,30,1,Queensland,153.344389,-28.055122 +2020,9,8,1,Queensland,153.20632,-27.497271 +2020,3,4,1,New South Wales,151.19598,-29.78625 +2023,1,1,2,Queensland,152.653656,-26.372675 +2020,11,16,2,New South Wales,150.925627,-29.690439 +2020,10,2,1,New South Wales,150.601942,-29.86728 +2023,1,7,1,Queensland,153.079972,-27.507136 +2021,11,17,2,Victoria,142.363329,-38.318577 +2022,6,1,1,Queensland,153.230772,-27.499153 +2022,6,7,1,Queensland,153.072459,-27.523949 +2020,11,16,2,Queensland,153.235635,-27.50938 +2021,5,29,1,Queensland,152.857472,-27.530463 +2021,10,25,1,Queensland,153.073422,-27.519176 +2021,9,8,1,Queensland,153.066152,-27.5348 +2020,7,4,1,Queensland,152.863855,-27.540481 +2020,4,11,1,Queensland,152.99758,-27.434708 +2022,11,11,1,Queensland,153.069463,-27.222745 +2021,10,21,1,Queensland,143.878541,-18.620159 +2020,8,31,1,New South Wales,153.188821,-28.523078 +2021,8,19,1,Queensland,152.901567,-27.146706 +2020,9,25,1,Queensland,153.269067,-27.536409 +2020,4,3,1,Queensland,153.094606,-27.514257 +2022,3,25,1,Queensland,153.233398,-27.533285 +2023,5,31,1,South Australia,138.55005,-35.32686 +2020,7,14,1,South Australia,138.70917,-35.02967 +2021,10,8,1,South Australia,138.69791,-35.11454 +2022,9,11,1,South Australia,138.67424,-35.0827 +2020,12,7,1,South Australia,138.71667,-35.01274 +2022,3,7,1,South Australia,138.71753,-35.00511 +2021,9,8,2,Queensland,152.876103,-27.944047 +2021,11,6,1,South Australia,138.67616,-35.10565 +2020,8,14,1,South Australia,138.78286,-35.08736 +2022,7,27,1,South Australia,138.7065,-34.99024 +2021,10,18,1,South Australia,138.67616,-35.10565 +2021,5,6,1,South Australia,138.80632,-34.83283 +2020,11,25,1,South Australia,138.68592,-34.985 +2020,4,20,1,South Australia,138.68332,-34.95011 +2021,1,10,1,South Australia,138.78286,-35.01277 +2021,10,11,1,South Australia,138.64789,-35.08615 +2021,9,15,1,South Australia,138.73756,-35.1083 +2022,2,28,1,South Australia,138.71099,-35.01647 +2022,9,27,1,South Australia,138.71656,-35.10743 +2022,10,3,1,South Australia,138.74315,-35.11246 +2022,9,17,1,South Australia,138.83179,-34.68817 +2021,10,7,1,South Australia,138.71656,-35.10743 +2021,10,17,1,South Australia,138.66485,-35.10187 +2022,6,14,1,South Australia,137.58715,-35.74552 +2021,11,18,1,South Australia,135.85653,-34.65349 +2021,10,22,1,South Australia,138.83105,-35.05169 +2023,9,14,1,South Australia,138.72936,-35.12749 +2021,9,10,2,New South Wales,150.99961,-34.083779 +2022,9,5,1,South Australia,138.74616,-35.06865 +2020,4,8,1,South Australia,138.71812,-34.9168 +2022,11,14,1,South Australia,139.17638,-34.72228 +2021,9,23,1,South Australia,138.70113,-35.10422 +2023,9,26,1,South Australia,138.6802,-35.13158 +2020,7,7,1,South Australia,138.67518,-34.93106 +2020,1,3,2,Queensland,153.220715,-27.502214 +2021,2,28,1,South Australia,140.7443,-34.1743 +2023,9,17,1,South Australia,138.64494,-35.08356 +2022,9,2,1,South Australia,138.6622,-35.08399 +2022,1,24,1,South Australia,138.57927,-35.06163 +2020,4,20,1,South Australia,138.68332,-34.95011 +2021,1,14,1,South Australia,138.72993,-34.82606 +2023,1,28,2,Queensland,145.429781,-17.107279 +2023,2,26,1,South Australia,138.69099,-35.45644 +2020,12,18,1,South Australia,138.7534,-35.00206 +2024,1,11,1,South Australia,140.84161,-37.97355 +2021,11,9,1,South Australia,138.67393,-35.11435 +2021,1,8,1,South Australia,135.78813,-34.78559 +2021,10,8,1,South Australia,138.66485,-35.10187 +2020,8,3,1,South Australia,140.7443,-34.1743 +2021,8,13,2,Queensland,152.973638,-26.510737 +2020,4,20,1,South Australia,138.68332,-34.95011 +2020,4,20,1,South Australia,138.68332,-34.95011 +2020,4,24,1,South Australia,138.70248,-34.87787 +2022,10,13,2,Queensland,153.22184,-27.502854 +2022,8,31,1,South Australia,138.68145,-35.08274 +2022,8,24,1,South Australia,138.68145,-35.08274 +2020,8,4,1,South Australia,135.85477,-34.69416 +2021,12,27,1,South Australia,138.73958,-34.99555 +2021,5,16,1,South Australia,138.75569,-35.00272 +2021,10,3,1,South Australia,138.64804,-35.08612 +2020,12,3,1,South Australia,138.83157,-34.68821 +2023,9,26,1,South Australia,138.68353,-35.09246 +2020,11,17,1,South Australia,135.85256,-34.68679 +2022,12,21,1,South Australia,138.64494,-35.08356 +2022,8,25,1,South Australia,138.67424,-35.0827 +2020,12,29,1,South Australia,138.72469,-34.99957 +2021,12,7,2,Victoria,145.710762,-38.518537 +2023,11,2,1,South Australia,140.81896,-37.84217 +2020,2,22,1,South Australia,138.91743,-34.70637 +2021,9,24,1,South Australia,138.6986,-35.00625 +2022,9,6,1,South Australia,138.69027,-35.12428 +2022,9,26,1,South Australia,138.70708,-34.99066 +2022,9,18,1,South Australia,135.84404,-34.70542 +2021,10,1,1,South Australia,138.67393,-35.11435 +2021,1,13,1,South Australia,135.80473,-34.78735 +2022,12,10,1,South Australia,138.70947,-34.99878 +2021,11,19,1,South Australia,138.72154,-35.00668 +2020,7,6,1,South Australia,138.62983,-34.99131 +2021,9,25,1,South Australia,138.67393,-35.11435 +2022,9,22,1,South Australia,138.68145,-35.08274 +2021,7,6,1,South Australia,135.66141,-34.61292 +2022,9,5,1,South Australia,138.71656,-35.10743 +2020,6,8,1,South Australia,138.67396,-35.00627 +2020,12,15,1,South Australia,138.70248,-34.87787 +2021,9,19,1,South Australia,135.8547,-34.694 +2022,8,2,1,South Australia,140.72455,-38.03825 +2022,6,14,1,South Australia,137.64619,-35.78658 +2021,10,21,1,South Australia,138.65419,-35.08521 +2022,2,23,1,South Australia,138.71071,-35.02585 +2022,1,2,2,Queensland,153.249164,-27.490062 +2023,2,10,1,South Australia,138.72537,-34.99932 +2022,4,25,1,South Australia,138.66764,-35.00847 +2022,4,12,1,South Australia,135.70089,-34.63871 +2023,9,8,1,South Australia,138.7218,-35.12718 +2021,11,1,2,Queensland,152.937828,-27.277513 +2022,6,13,1,South Australia,137.59933,-35.75381 +2020,10,1,1,South Australia,138.70248,-34.87787 +2021,9,23,1,South Australia,138.69326,-35.10718 +2022,4,25,1,South Australia,138.67257,-35.00825 +2023,9,11,1,South Australia,138.6618,-35.10972 +2022,9,20,1,South Australia,138.74616,-35.06865 +2024,1,4,1,South Australia,138.70695,-34.99039 +2020,5,8,1,South Australia,138.68319,-34.99803 +2022,4,18,1,South Australia,135.82407,-34.76728 +2022,9,2,1,South Australia,138.72922,-35.09018 +2020,12,3,2,Queensland,153.086983,-27.515858 +2021,3,4,1,South Australia,138.69404,-34.98823 +2020,7,7,1,South Australia,138.67642,-34.99125 +2021,10,30,1,South Australia,138.70415,-35.07237 +2020,4,12,2,Queensland,152.99758,-27.434708 +2022,1,9,1,South Australia,138.7067,-34.99033 +2021,6,17,1,South Australia,138.61619,-34.97262 +2022,9,24,1,South Australia,138.69027,-35.12428 +2022,3,6,1,South Australia,135.85085,-34.70768 +2023,9,14,1,South Australia,138.72451,-35.08282 +2021,12,8,1,South Australia,135.85476,-34.69118 +2022,9,18,1,South Australia,138.73343,-35.09491 +2023,3,2,1,South Australia,138.5556,-34.96383 +2022,9,26,1,South Australia,138.73235,-35.10626 +2023,9,3,1,South Australia,138.73651,-35.0786 +2022,6,19,1,South Australia,138.77629,-34.9889 +2023,9,10,1,South Australia,138.67393,-35.11435 +2023,9,9,1,South Australia,138.66041,-35.11016 +2021,9,10,1,South Australia,138.68835,-35.08836 +2023,12,14,1,South Australia,140.8397,-37.96744 +2022,1,1,1,South Australia,135.85079,-34.70764 +2022,6,15,1,South Australia,137.62076,-35.7687 +2022,9,16,1,South Australia,138.7476,-35.07894 +2020,4,29,1,South Australia,138.67409,-34.9991 +2023,9,26,1,South Australia,138.73434,-35.08414 +2023,5,30,1,South Australia,138.70567,-34.99159 +2022,3,15,1,South Australia,140.81423,-34.04977 +2021,10,23,1,South Australia,140.72414,-38.04427 +2022,5,2,2,Queensland,153.204953,-27.547829 +2023,7,5,1,South Australia,138.70567,-34.99156 +2023,12,22,1,South Australia,138.70695,-34.99039 +2020,6,4,1,South Australia,140.7443,-34.17442 +2023,10,2,1,South Australia,138.67914,-35.11392 +2020,5,6,1,South Australia,135.66623,-34.93654 +2023,6,27,1,South Australia,138.58238,-35.30866 +2021,2,25,1,South Australia,138.75937,-35.00302 +2022,3,8,1,South Australia,135.85124,-34.70731 +2021,11,25,1,South Australia,140.79092,-38.02567 +2021,11,3,1,South Australia,138.70671,-34.99038 +2023,12,17,1,South Australia,138.70695,-34.99039 +2020,7,21,1,South Australia,138.88401,-34.82185 +2022,9,22,1,South Australia,138.67393,-35.11435 +2022,10,16,1,South Australia,138.70683,-34.99046 +2020,4,21,1,South Australia,138.75151,-34.99934 +2021,10,5,1,South Australia,138.71907,-35.08421 +2020,7,8,1,South Australia,138.67444,-34.94252 +2020,5,22,1,South Australia,138.72718,-34.99632 +2021,10,30,1,South Australia,138.67616,-35.10565 +2021,11,22,1,South Australia,138.71558,-35.01191 +2023,1,11,1,South Australia,138.70654,-34.99039 +2021,10,31,1,South Australia,138.71443,-35.0876 +2020,4,20,1,South Australia,138.68332,-34.95011 +2023,9,16,1,South Australia,138.73235,-35.10626 +2021,10,6,1,South Australia,138.71904,-35.0842 +2023,9,19,1,South Australia,138.73651,-35.0786 +2020,9,27,1,South Australia,138.70715,-35.07823 +2022,1,25,1,South Australia,138.70687,-34.99042 +2022,5,22,1,South Australia,138.69728,-34.99074 +2020,2,7,1,South Australia,138.73676,-35.40432 +2022,9,2,1,South Australia,138.68353,-35.09246 +2021,1,9,1,South Australia,135.67009,-34.8898 +2020,1,23,1,South Australia,138.73802,-34.77328 +2023,9,28,1,South Australia,138.69566,-35.08987 +2023,1,12,1,South Australia,138.70654,-34.99039 +2022,2,20,1,South Australia,135.85006,-34.84819 +2022,9,23,1,South Australia,138.74655,-35.07446 +2023,9,29,1,South Australia,138.67925,-35.12319 +2021,10,23,2,Queensland,153.234398,-27.500472 +2021,10,27,1,South Australia,138.73815,-35.11988 +2023,11,4,1,South Australia,138.6999,-34.86802 +2023,9,6,1,South Australia,138.68145,-35.08274 +2022,2,21,1,South Australia,135.83832,-34.71964 +2022,9,7,1,South Australia,138.6802,-35.13158 +2022,9,29,1,South Australia,138.74655,-35.07446 +2022,1,17,2,South Australia,137.60413,-35.96621 +2023,9,20,1,South Australia,138.74588,-35.06881 +2022,6,17,2,South Australia,137.68124,-35.81113 +2023,1,13,1,South Australia,138.70654,-34.99039 +2023,10,28,2,South Australia,140.86578,-37.80778 +2023,9,25,1,South Australia,138.73756,-35.1083 +2020,7,15,1,South Australia,138.69839,-35.00149 +2022,11,21,1,South Australia,138.70718,-34.99069 +2022,9,19,1,South Australia,138.71656,-35.10743 +2020,5,8,1,South Australia,138.67843,-34.99539 +2022,1,18,1,South Australia,138.694,-35.0158 +2021,9,20,1,South Australia,138.69119,-35.12341 +2020,7,6,1,South Australia,138.63903,-34.9888 +2021,9,21,1,South Australia,138.64789,-35.08615 +2023,2,19,1,South Australia,138.70867,-34.98959 +2021,9,23,1,South Australia,138.67393,-35.11435 +2021,9,21,1,South Australia,138.67924,-35.12319 +2023,2,8,1,South Australia,138.78339,-35.01494 +2022,10,17,1,South Australia,138.75654,-35.00313 +2021,9,6,1,South Australia,138.68577,-35.07946 +2021,11,10,1,South Australia,138.69027,-35.12428 +2023,9,10,1,South Australia,138.73194,-35.12278 +2020,2,27,1,South Australia,138.66228,-34.99416 +2021,9,28,1,South Australia,138.73756,-35.1083 +2021,11,17,2,South Australia,138.61226,-34.9123 +2023,9,20,1,South Australia,138.72936,-35.12749 +2021,9,8,1,South Australia,138.69648,-35.0823 +2020,6,25,1,South Australia,138.93088,-35.00016 +2021,9,20,1,South Australia,138.73193,-35.12278 +2020,12,29,1,South Australia,138.75352,-35.00196 +2020,4,21,2,South Australia,138.75094,-34.99808 +2023,11,27,1,South Australia,138.70695,-34.99039 +2021,11,15,1,South Australia,140.72458,-38.03835 +2021,12,16,1,South Australia,135.85159,-34.70746 +2021,10,12,1,South Australia,138.6802,-35.13158 +2021,10,21,2,South Australia,140.7163,-38.03453 +2021,8,13,1,South Australia,138.73621,-35.14914 +2023,4,4,1,South Australia,138.7325,-35.2233 +2020,4,7,1,South Australia,138.67345,-34.9988 +2022,3,7,1,South Australia,135.82965,-34.77891 +2022,9,20,1,South Australia,138.74655,-35.07446 +2020,4,20,1,South Australia,138.68176,-35.26796 +2023,9,8,1,South Australia,138.70163,-35.07996 +2021,5,7,1,South Australia,138.65861,-35.01733 +2021,11,1,1,South Australia,138.67616,-35.10565 +2022,2,14,1,South Australia,135.85078,-34.70762 +2020,10,13,1,South Australia,135.85259,-34.6976 +2022,1,2,2,South Australia,138.58233,-35.06734 +2022,12,10,1,South Australia,138.83678,-35.0564 +2022,2,23,1,South Australia,135.84085,-34.71996 +2020,5,20,1,South Australia,138.75587,-35.00845 +2020,5,28,1,South Australia,138.71502,-35.02863 +2022,2,27,2,South Australia,135.82416,-34.76989 +2024,2,16,1,South Australia,138.70661,-34.9902 +2021,9,24,1,South Australia,138.73756,-35.1083 +2023,9,28,1,South Australia,138.73756,-35.1083 +2022,9,27,1,South Australia,138.73343,-35.09491 +2021,11,10,1,South Australia,138.67925,-35.12319 +2020,4,20,1,South Australia,138.68332,-34.95011 +2023,9,16,1,South Australia,138.72451,-35.08282 +2020,4,20,1,South Australia,138.68332,-34.95011 +2020,2,3,2,South Australia,138.90559,-34.71083 +2022,1,25,1,South Australia,138.70687,-34.99042 +2020,12,30,1,South Australia,138.73801,-34.83473 +2021,10,29,1,South Australia,138.64494,-35.08356 +2022,1,7,1,South Australia,138.7128,-35.0982 +2023,9,9,1,South Australia,138.7065,-34.99024 +2023,10,4,1,South Australia,138.65755,-35.10044 +2022,9,18,1,South Australia,138.67914,-35.11392 +2022,1,23,1,South Australia,135.84903,-34.70764 +2020,4,25,1,South Australia,138.70248,-34.87787 +2020,6,8,1,South Australia,138.71526,-35.01152 +2020,7,7,1,South Australia,138.67295,-34.99004 +2023,8,27,2,South Australia,138.70759,-34.99168 +2022,9,13,1,South Australia,138.73343,-35.09491 +2020,2,7,1,South Australia,135.80851,-34.67691 +2020,12,30,1,South Australia,138.73012,-34.83663 +2022,1,20,2,South Australia,138.75346,-35.00654 +2022,8,7,1,South Australia,138.83157,-34.68794 +2022,8,7,1,South Australia,138.83157,-34.68794 +2020,3,6,1,South Australia,138.6483,-34.96591 +2021,10,31,1,South Australia,138.64494,-35.08356 +2022,9,22,1,South Australia,138.74255,-35.06389 +2020,4,21,1,South Australia,138.6975,-35.02219 +2023,9,25,1,South Australia,138.73194,-35.12278 +2022,1,5,1,South Australia,138.72112,-35.00082 +2020,12,31,1,South Australia,138.8313,-34.6882 +2022,9,29,1,South Australia,138.72412,-35.11784 +2023,2,21,1,New South Wales,146.55732,-34.75377 +2022,9,30,1,New South Wales,152.90276,-30.23952 +2021,4,11,1,New South Wales,153.526374,-28.70571 +2021,7,17,1,New South Wales,150.522372,-34.46685 +2024,3,22,1,New South Wales,152.381029,-31.92389 +2024,1,18,1,New South Wales,152.828334,-31.649845 +2021,9,20,1,New South Wales,150.52348,-34.4636 +2020,1,12,1,New South Wales,152.9156,-31.468579 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2023,8,27,1,New South Wales,150.60004,-34.5231 +2020,9,27,1,New South Wales,153.109392,-30.298612 +2020,6,17,1,New South Wales,152.69647,-31.79003 +2020,1,20,1,New South Wales,152.792895,-30.218552 +2020,5,22,1,New South Wales,150.659634,-33.526982 +2021,7,15,1,New South Wales,150.514286,-34.4466 +2024,4,28,1,New South Wales,152.53804,-32.05739 +2023,11,27,1,New South Wales,152.787067,-31.62991 +2021,12,14,1,New South Wales,152.921151,-31.480359 +2020,1,5,1,New South Wales,151.64852,-32.69442 +2020,10,3,1,New South Wales,153.093613,-29.48396 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2022,7,25,1,New South Wales,153.20543,-28.61131 +2021,6,13,1,New South Wales,150.516143,-34.446746 +2022,8,23,1,New South Wales,152.102118,-32.756832 +2022,12,6,1,New South Wales,151.17919,-33.122846 +2022,9,4,1,New South Wales,146.83156,-34.8746 +2021,6,10,1,New South Wales,150.630222,-34.420983 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2021,12,16,1,New South Wales,153.437014,-28.991215 +2020,9,15,1,New South Wales,153.003163,-29.1829 +2022,8,3,1,New South Wales,150.79422,-34.134334 +2022,10,14,1,New South Wales,153.30453,-28.827266 +2022,5,13,1,New South Wales,153.104096,-29.483834 +2021,5,20,1,New South Wales,150.633769,-34.418247 +2022,11,,1,New South Wales,150.549897,-34.462 +2023,8,27,1,New South Wales,153.096103,-29.484955 +2021,3,25,1,New South Wales,150.516891,-34.446482 +2020,3,6,1,New South Wales,153.45439,-28.65348 +2021,4,22,1,New South Wales,150.605586,-34.432232 +2021,7,8,1,New South Wales,150.521886,-34.464523 +2023,12,15,1,New South Wales,152.924741,-31.440628 +2021,9,28,1,New South Wales,152.82929,-31.26329 +2021,4,30,1,New South Wales,150.609072,-34.43514 +2021,10,21,1,New South Wales,153.01473,-29.53762 +2024,1,8,1,New South Wales,153.109739,-29.490203 +2023,1,12,1,New South Wales,150.83352,-34.094032 +2021,7,3,1,New South Wales,153.288427,-28.815615 +2021,10,30,1,New South Wales,153.04154,-30.44817 +2020,1,19,1,New South Wales,150.809506,-34.09996 +2021,7,13,1,New South Wales,153.07555,-28.558157 +2023,9,7,1,New South Wales,150.785579,-33.714589 +2020,9,21,1,New South Wales,150.05034,-31.13523 +2021,6,22,1,New South Wales,150.60252,-34.419947 +2022,1,13,1,New South Wales,153.562423,-28.384452 +2020,7,11,1,New South Wales,152.712063,-30.456101 +2021,6,29,1,New South Wales,152.881366,-31.447926 +2021,5,10,1,New South Wales,150.516279,-34.47008 +2021,5,30,1,New South Wales,150.523958,-34.463998 +2021,6,27,1,New South Wales,150.514179,-34.447283 +2021,2,6,1,New South Wales,153.328268,-28.81661 +2021,2,24,1,New South Wales,150.516454,-34.447636 +2021,5,9,1,New South Wales,150.51698,-34.44789 +2024,5,18,1,New South Wales,151.235428,-33.11801 +2020,8,10,1,New South Wales,152.957605,-30.64834 +2020,11,11,1,New South Wales,150.016902,-36.541583 +2021,8,19,1,New South Wales,150.62278,-34.53402 +2021,7,10,1,New South Wales,150.520359,-34.46571 +2023,4,22,1,New South Wales,152.926755,-31.471214 +2024,3,5,1,New South Wales,150.785318,-33.70544 +2020,11,6,1,New South Wales,152.805354,-31.534422 +2023,3,8,1,New South Wales,152.884721,-31.430048 +2020,4,22,1,New South Wales,152.868061,-29.667247 +2021,3,8,1,New South Wales,150.52271,-34.451721 +2021,5,11,1,New South Wales,150.63306,-34.41754 +2021,6,24,1,New South Wales,150.520368,-34.4658 +2023,11,20,1,New South Wales,150.786175,-33.706015 +2021,12,17,1,New South Wales,153.360023,-28.676412 +2023,4,22,1,New South Wales,153.23581,-28.885991 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2022,8,5,1,New South Wales,153.23033,-28.889525 +2023,9,24,1,New South Wales,152.98183,-28.428586 +2020,1,14,1,New South Wales,153.394689,-28.275677 +2023,12,15,1,New South Wales,152.637195,-30.44393 +2021,4,25,1,New South Wales,150.610356,-34.41909 +2022,6,25,1,New South Wales,151.9232,-32.77939 +2023,8,1,1,New South Wales,152.910537,-31.44152 +2021,3,30,1,New South Wales,150.524522,-34.45338 +2021,7,12,1,New South Wales,150.51288,-34.44668 +2021,12,15,1,New South Wales,153.321383,-28.81374 +2020,7,27,1,New South Wales,151.696625,-32.683275 +2020,10,13,1,New South Wales,149.931009,-36.595007 +2021,6,3,1,New South Wales,150.53485,-34.463379 +2022,1,25,1,New South Wales,153.01022,-28.986157 +2021,7,9,1,New South Wales,150.640919,-34.393773 +2020,10,30,1,New South Wales,149.945227,-36.57753 +2021,6,8,1,New South Wales,150.602947,-34.45186 +2020,11,26,1,New South Wales,153.091178,-29.477581 +2024,2,2,1,New South Wales,153.107995,-29.490427 +2021,6,15,1,New South Wales,150.522536,-34.451717 +2022,9,1,1,New South Wales,152.98432,-28.617398 +2022,1,5,1,New South Wales,153.110608,-29.489928 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2021,5,17,1,New South Wales,150.637334,-34.423771 +2021,4,29,1,New South Wales,150.615674,-34.435999 +2020,11,3,1,New South Wales,149.945227,-36.57753 +2021,11,20,1,New South Wales,153.304289,-28.816931 +2020,10,27,1,New South Wales,153.352906,-28.83385 +2023,2,27,1,New South Wales,152.793958,-31.638877 +2021,4,27,1,New South Wales,150.607146,-34.454593 +2021,5,7,1,New South Wales,150.627384,-34.390104 +2021,5,4,1,New South Wales,150.604233,-34.438083 +2020,8,11,1,New South Wales,153.557818,-28.331142 +2020,10,24,1,New South Wales,149.988655,-36.56931 +2023,6,29,1,New South Wales,153.090781,-29.48721 +2021,5,16,1,New South Wales,150.516233,-34.44957 +2023,11,10,1,New South Wales,151.081893,-29.747449 +2020,10,23,1,New South Wales,149.988655,-36.56931 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2022,8,28,1,New South Wales,151.092488,-29.772474 +2021,9,10,1,New South Wales,150.526592,-34.448157 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2020,3,15,1,New South Wales,150.331826,-34.49156 +2021,6,5,1,New South Wales,150.616456,-34.43605 +2024,4,8,1,New South Wales,152.78697,-31.629382 +2021,7,12,1,New South Wales,150.63107,-34.386262 +2023,1,11,1,New South Wales,152.78275,-31.631125 +2021,6,28,1,New South Wales,150.59608,-34.411571 +2023,12,12,1,New South Wales,152.925436,-31.458908 +2020,1,29,1,New South Wales,150.823359,-34.149919 +2021,7,21,1,New South Wales,153.52954,-28.54593 +2021,5,17,1,New South Wales,150.615725,-34.449523 +2021,7,2,1,New South Wales,150.627306,-34.39058 +2023,6,30,1,New South Wales,153.103489,-29.48558 +2021,3,4,1,New South Wales,150.608991,-34.420407 +2023,9,15,1,New South Wales,152.814766,-31.65226 +2022,1,16,1,New South Wales,153.557475,-28.396989 +2023,8,17,1,New South Wales,153.333311,-28.861328 +2020,9,16,1,New South Wales,150.10109,-31.12214 +2021,3,30,1,New South Wales,150.524522,-34.45338 +2024,1,19,1,New South Wales,152.745302,-31.201744 +2023,7,8,1,New South Wales,153.110549,-29.489918 +2022,1,26,1,New South Wales,153.101258,-29.48997 +2021,6,3,1,New South Wales,150.630399,-34.42086 +2021,5,19,1,New South Wales,150.530239,-34.471003 +2021,10,17,1,New South Wales,151.04862,-34.029227 +2021,6,14,1,New South Wales,150.604079,-34.45145 +2021,5,26,1,New South Wales,150.52161,-34.465374 +2022,2,2,1,New South Wales,153.108194,-29.490404 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2023,7,4,1,New South Wales,152.069221,-32.748434 +2021,6,19,1,New South Wales,150.619196,-34.43687 +2021,8,24,1,New South Wales,153.109342,-29.490549 +2022,11,20,1,New South Wales,152.78933,-30.918792 +2024,1,14,1,New South Wales,152.92311,-31.460608 +2021,7,19,1,New South Wales,150.518603,-34.444867 +2020,5,,1,New South Wales,152.006179,-32.72742 +2020,4,23,1,New South Wales,153.111267,-30.28553 +2021,6,8,1,New South Wales,153.093058,-29.49491 +2021,6,23,1,New South Wales,152.896115,-31.435875 +2021,6,15,1,New South Wales,150.640061,-34.399905 +2021,5,16,1,New South Wales,150.529721,-34.467892 +2021,4,18,1,New South Wales,150.617068,-34.43059 +2022,11,19,1,New South Wales,152.151251,-32.714759 +2023,6,6,1,New South Wales,152.804743,-29.393372 +2020,8,21,1,New South Wales,153.104262,-29.482232 +2021,3,8,1,New South Wales,150.524933,-34.46418 +2021,8,7,1,New South Wales,153.39438,-28.960579 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2023,9,29,1,New South Wales,153.62882,-28.637878 +2020,8,19,1,New South Wales,150.893548,-34.39366 +2023,10,18,1,New South Wales,152.412385,-31.933133 +2022,9,13,1,New South Wales,152.880336,-31.15604 +2023,1,15,1,New South Wales,149.55134,-33.492172 +2022,6,17,1,New South Wales,152.893086,-31.454902 +2021,4,15,1,New South Wales,150.63383,-34.392158 +2020,11,17,1,New South Wales,149.962048,-36.514707 +2021,5,2,1,New South Wales,150.609644,-34.436431 +2021,6,14,1,New South Wales,150.605419,-34.437322 +2021,5,27,1,New South Wales,150.60419,-34.435017 +2021,7,6,1,New South Wales,150.514377,-34.446476 +2023,7,5,1,New South Wales,153.457947,-28.51607 +2024,1,12,1,New South Wales,152.898766,-31.443635 +2021,5,12,1,New South Wales,150.637344,-34.423825 +2023,10,23,1,New South Wales,152.00351,-32.728513 +2022,6,30,1,New South Wales,152.893086,-31.454902 +2023,3,9,1,New South Wales,153.558467,-28.673442 +2024,4,22,1,New South Wales,152.39804,-31.979846 +2021,5,26,1,New South Wales,150.518099,-34.453466 +2022,10,3,1,New South Wales,153.56201,-28.383818 +2020,2,14,1,New South Wales,153.298141,-28.82356 +2021,7,25,1,New South Wales,150.518739,-34.445068 +2024,1,6,1,New South Wales,153.10519,-29.489727 +2022,3,28,1,New South Wales,146.588411,-34.761405 +2024,4,21,1,New South Wales,152.38858,-31.970201 +2022,10,4,1,New South Wales,149.4768,-36.340889 +2021,9,12,1,New South Wales,150.515597,-34.454533 +2020,3,23,1,New South Wales,152.40941,-31.91019 +2021,5,24,1,New South Wales,150.522336,-34.46511 +2021,7,2,1,New South Wales,150.597139,-34.41335 +2020,10,24,1,New South Wales,149.988655,-36.56931 +2021,5,15,1,New South Wales,150.616353,-34.435832 +2021,6,19,1,New South Wales,150.602802,-34.424568 +2021,5,17,1,New South Wales,150.613865,-34.433025 +2020,7,23,1,New South Wales,152.909022,-31.490642 +2020,3,17,1,New South Wales,152.91531,-31.459518 +2021,5,30,1,New South Wales,150.641021,-34.396327 +2022,8,13,1,New South Wales,152.066839,-32.7479 +2023,4,1,1,New South Wales,152.910059,-31.465823 +2022,7,14,1,New South Wales,152.89442,-31.458795 +2024,1,16,1,New South Wales,153.110184,-29.49025 +2022,11,25,1,New South Wales,151.053033,-33.192609 +2020,5,4,1,New South Wales,150.06202,-34.90192 +2021,7,17,1,New South Wales,150.624634,-34.38584 +2022,2,3,1,New South Wales,150.960978,-34.101454 +2022,1,3,1,New South Wales,152.061498,-32.711309 +2021,5,1,1,New South Wales,150.61729,-34.399779 +2023,5,24,1,New South Wales,150.72741,-34.27298 +2022,12,1,1,New South Wales,152.06373,-32.706625 +2023,2,19,1,New South Wales,152.913455,-31.476912 +2021,2,24,1,New South Wales,150.6351,-34.483735 +2024,7,12,1,New South Wales,151.03073,-29.672332 +2020,5,,1,New South Wales,152.02831,-32.305045 +2023,1,26,1,New South Wales,152.07615,-32.724658 +2021,7,28,1,New South Wales,152.892003,-30.880764 +2020,11,20,1,New South Wales,150.06823,-33.782586 +2023,1,8,1,New South Wales,152.10399,-32.732488 +2022,3,4,1,New South Wales,153.108081,-29.49018 +2020,4,27,1,New South Wales,152.916535,-31.439139 +2020,5,11,1,New South Wales,150.039121,-35.074674 +2021,5,18,1,New South Wales,150.637342,-34.42387 +2020,5,15,1,New South Wales,153.09717,-29.486764 +2023,12,22,1,New South Wales,150.784789,-33.713671 +2022,9,17,1,New South Wales,153.09636,-30.334389 +2024,1,28,1,New South Wales,152.86816,-31.47334 +2021,3,28,1,New South Wales,150.526808,-34.458908 +2021,6,10,1,New South Wales,150.610443,-34.430533 +2020,10,19,1,New South Wales,153.3033,-28.821668 +2021,3,29,1,New South Wales,150.61015,-34.429761 +2021,5,29,1,New South Wales,150.604716,-34.437543 +2020,4,,1,New South Wales,151.77014,-30.589822 +2021,10,12,1,New South Wales,152.92221,-31.44663 +2020,5,8,1,New South Wales,152.023887,-32.319249 +2023,7,24,1,New South Wales,152.913376,-31.478434 +2024,3,22,1,New South Wales,152.382059,-31.928007 +2021,7,3,1,New South Wales,150.62698,-34.420965 +2020,9,21,1,New South Wales,152.901207,-31.447065 +2022,8,15,1,New South Wales,150.78569,-34.189755 +2022,9,16,1,New South Wales,153.34501,-28.748604 +2022,3,20,1,New South Wales,150.972939,-34.10075 +2021,5,8,1,New South Wales,150.604384,-34.426682 +2020,,,1,New South Wales,153.409428,-28.969929 +2023,9,26,1,New South Wales,152.917762,-30.53177 +2021,7,4,1,New South Wales,150.525609,-34.465591 +2021,8,21,1,New South Wales,152.91949,-31.435119 +2020,6,4,1,New South Wales,152.867932,-29.66721 +2023,3,24,1,New South Wales,153.402832,-28.96062 +2021,6,22,1,New South Wales,150.519545,-34.46343 +2021,1,20,1,New South Wales,150.913678,-34.068368 +2024,1,3,1,New South Wales,152.403917,-31.92834 +2021,5,25,1,New South Wales,150.639175,-34.39273 +2020,7,7,1,New South Wales,153.103744,-29.48551 +2024,2,10,1,New South Wales,152.56073,-31.972434 +2023,9,18,1,New South Wales,150.29628,-31.27583 +2021,7,3,1,New South Wales,150.600689,-34.416259 +2020,1,6,1,New South Wales,152.39268,-32.03516 +2020,11,10,1,New South Wales,151.704,-30.397 +2024,8,28,1,New South Wales,152.283667,-32.423153 +2021,5,4,1,New South Wales,150.637356,-34.42378 +2020,11,2,1,New South Wales,149.945227,-36.57753 +2021,7,19,1,New South Wales,150.516714,-34.444378 +2021,10,30,1,New South Wales,153.04111,-30.44833 +2021,11,10,1,New South Wales,151.843338,-32.245824 +2022,11,2,1,New South Wales,152.918,-31.479204 +2023,6,3,1,New South Wales,149.398274,-33.48909 +2022,7,13,1,New South Wales,152.072609,-32.710536 +2020,11,,1,New South Wales,152.667755,-31.20241 +2020,11,6,1,New South Wales,150.007338,-36.56122 +2022,6,27,1,New South Wales,153.103935,-29.489568 +2021,3,28,1,New South Wales,151.110282,-29.762752 +2021,5,8,1,New South Wales,150.622065,-34.397835 +2021,11,27,1,New South Wales,150.060139,-36.115954 +2023,9,21,1,New South Wales,152.605967,-30.341355 +2021,7,6,1,New South Wales,150.522426,-34.46576 +2021,1,5,1,Victoria,145.672763,-35.919304 +2023,7,15,1,New South Wales,153.323523,-28.880436 +2021,4,27,1,New South Wales,152.860451,-31.459519 +2024,5,13,1,New South Wales,152.9278,-31.4646 +2021,5,31,1,New South Wales,153.586079,-28.632728 +2021,4,17,1,New South Wales,150.62744,-34.38621 +2023,9,27,1,New South Wales,150.871078,-34.098743 +2021,5,3,1,New South Wales,150.611469,-34.419743 +2021,8,26,1,New South Wales,150.967947,-34.097846 +2022,12,24,1,New South Wales,152.157422,-32.003965 +2022,8,6,1,New South Wales,152.475301,-31.941413 +2022,12,14,1,New South Wales,150.101052,-33.824396 +2020,4,12,1,New South Wales,150.058877,-33.772915 +2022,3,7,1,New South Wales,152.829547,-29.642903 +2020,11,5,1,New South Wales,153.30413,-29.05296 +2020,11,16,1,New South Wales,153.316984,-28.937089 +2020,10,29,1,New South Wales,153.304202,-28.649902 +2022,10,22,1,New South Wales,152.315318,-31.92365 +2024,2,2,1,New South Wales,150.785501,-33.707658 +2020,9,15,1,New South Wales,152.94172,-29.254788 +2023,6,7,1,New South Wales,152.901817,-31.241796 +2023,6,7,1,New South Wales,150.892639,-34.057995 +2022,3,4,1,New South Wales,152.062857,-32.709368 +2020,1,24,1,New South Wales,152.74877,-28.558892 +2020,1,6,1,New South Wales,152.40941,-31.91019 +2024,3,22,1,New South Wales,152.383296,-31.922656 +2022,3,4,1,New South Wales,153.104144,-29.479935 +2022,9,15,1,New South Wales,152.818454,-31.65075 +2021,6,21,1,New South Wales,150.519365,-34.463264 +2021,5,19,1,New South Wales,150.53038,-34.471385 +2021,6,14,1,New South Wales,150.521134,-34.465653 +2022,11,29,1,New South Wales,152.372218,-31.91878 +2021,9,26,1,New South Wales,153.465565,-28.323003 +2020,11,9,1,New South Wales,150.016902,-36.541583 +2021,3,13,1,New South Wales,150.515622,-34.445221 +2022,11,4,1,New South Wales,153.00608,-30.22871 +2021,2,24,1,New South Wales,150.653638,-34.45545 +2021,4,30,1,New South Wales,150.62421,-34.388906 +2020,10,8,1,New South Wales,152.510302,-31.936905 +2023,11,12,1,New South Wales,152.077233,-32.722482 +2020,1,29,1,New South Wales,152.908776,-31.466934 +2021,7,4,1,New South Wales,150.513837,-34.446348 +2021,4,30,1,New South Wales,150.62421,-34.388906 +2022,1,3,1,New South Wales,153.231466,-28.890093 +2021,4,21,1,New South Wales,150.615809,-34.433153 +2021,5,8,1,New South Wales,150.606278,-34.438493 +2021,7,17,1,New South Wales,150.625254,-34.385816 +2020,10,12,1,New South Wales,153.402931,-28.715871 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2022,1,24,1,New South Wales,152.80028,-31.678285 +2021,5,4,1,New South Wales,150.611448,-34.419716 +2024,6,26,1,New South Wales,152.921657,-31.445256 +2020,3,30,1,New South Wales,152.867868,-29.667322 +2022,1,24,1,New South Wales,152.064338,-32.708774 +2023,11,12,1,New South Wales,153.110506,-29.49018 +2022,10,13,1,New South Wales,153.344637,-28.749739 +2021,5,20,1,New South Wales,150.522009,-34.465518 +2022,8,24,1,New South Wales,151.649793,-30.326216 +2021,4,25,1,New South Wales,150.516399,-34.442866 +2023,8,31,1,New South Wales,153.108087,-29.490623 +2020,1,7,1,New South Wales,153.094846,-29.494276 +2021,8,29,1,New South Wales,150.603336,-34.444728 +2021,7,6,1,New South Wales,150.62743,-34.421226 +2023,10,13,1,New South Wales,153.110501,-29.490152 +2022,10,16,1,New South Wales,153.089558,-28.598067 +2021,9,7,1,New South Wales,153.103763,-29.48551 +2021,5,11,1,New South Wales,150.62483,-34.399683 +2020,10,23,1,New South Wales,149.945227,-36.57753 +2020,10,5,1,New South Wales,153.09298,-30.33807 +2023,1,2,1,New South Wales,152.106284,-32.728982 +2021,8,19,1,New South Wales,149.375633,-36.16835 +2021,8,1,1,New South Wales,150.520326,-34.465736 +2021,6,30,1,New South Wales,150.59608,-34.411571 +2022,9,3,1,New South Wales,150.882228,-34.019191 +2021,7,5,1,New South Wales,150.64387,-34.393244 +2021,10,25,1,New South Wales,153.093179,-29.488695 +2023,11,1,1,New South Wales,152.708605,-31.53525 +2020,10,19,1,New South Wales,153.342669,-29.00341 +2021,2,11,1,New South Wales,153.08615,-30.36367 +2023,9,15,1,New South Wales,152.818189,-31.651127 +2021,12,9,1,New South Wales,152.129821,-32.728879 +2021,7,29,1,New South Wales,153.31185,-28.821624 +2022,12,13,1,New South Wales,153.391483,-28.838694 +2023,11,27,1,New South Wales,152.353593,-31.919823 +2021,3,14,1,New South Wales,152.00351,-32.728513 +2023,11,28,1,New South Wales,153.099809,-29.491604 +2020,12,16,1,New South Wales,152.078206,-32.727783 +2022,12,15,1,New South Wales,152.913089,-31.45295 +2021,4,21,1,New South Wales,150.606662,-34.432262 +2021,5,21,1,New South Wales,150.617184,-34.433775 +2022,8,4,1,New South Wales,152.88248,-31.459736 +2022,1,18,1,New South Wales,153.179945,-28.576441 +2022,8,11,1,New South Wales,150.523757,-34.453363 +2022,11,24,1,New South Wales,153.159345,-28.924729 +2022,2,17,1,New South Wales,153.302213,-28.818582 +2021,3,8,1,New South Wales,150.635636,-34.485169 +2021,5,3,1,New South Wales,150.526035,-34.45781 +2023,7,22,1,New South Wales,150.784913,-33.704891 +2022,10,10,1,New South Wales,150.652977,-31.470311 +2020,1,3,1,New South Wales,152.885273,-28.981516 +2021,6,13,1,New South Wales,150.612122,-34.432332 +2021,5,29,1,New South Wales,150.516055,-34.44825 +2021,5,12,1,New South Wales,150.605761,-34.427619 +2021,5,26,1,New South Wales,150.639676,-34.393488 +2023,11,23,1,New South Wales,153.103918,-29.489587 +2021,4,27,1,New South Wales,150.637545,-34.488515 +2021,5,3,1,New South Wales,150.516708,-34.446415 +2022,10,9,1,New South Wales,152.104913,-32.727135 +2022,6,18,1,New South Wales,153.293451,-28.86466 +2024,7,16,1,New South Wales,152.682382,-30.720778 +2022,4,10,1,New South Wales,152.37948,-31.919012 +2022,10,11,1,New South Wales,152.786545,-31.629663 +2024,2,29,1,New South Wales,153.068415,-30.889653 +2021,3,11,1,New South Wales,150.532376,-34.461662 +2022,6,2,1,New South Wales,152.902902,-31.441294 +2020,11,3,1,New South Wales,149.958519,-36.587122 +2021,7,1,1,New South Wales,150.522688,-34.46573 +2022,1,13,1,New South Wales,152.911347,-31.473844 +2022,12,8,1,New South Wales,151.769196,-32.641817 +2022,6,25,1,New South Wales,153.311888,-28.821114 +2021,5,9,1,New South Wales,150.604885,-34.427052 +2022,1,9,1,New South Wales,153.39323,-28.286805 +2021,5,11,1,New South Wales,150.606861,-34.438648 +2021,5,4,1,New South Wales,150.627058,-34.38971 +2021,9,21,1,New South Wales,150.513118,-34.44599 +2023,8,20,1,New South Wales,153.10424,-29.477446 +2021,9,2,1,New South Wales,152.378767,-31.920792 +2020,10,20,1,New South Wales,149.931009,-36.595007 +2020,10,19,1,New South Wales,149.931009,-36.595007 +2021,5,8,1,New South Wales,150.637303,-34.423725 +2020,1,16,1,New South Wales,150.789795,-34.160358 +2020,10,23,1,New South Wales,149.931009,-36.595007 +2021,5,11,1,New South Wales,150.521393,-34.466452 +2020,11,,1,New South Wales,152.895702,-31.123864 +2021,12,2,1,New South Wales,153.103436,-29.489045 +2023,12,28,1,New South Wales,152.403199,-31.925262 +2022,9,14,1,New South Wales,152.890587,-31.159687 +2020,9,27,1,New South Wales,153.10195,-29.488765 +2021,6,24,1,New South Wales,150.627352,-34.421279 +2021,5,30,1,New South Wales,150.630953,-34.388883 +2021,8,10,1,New South Wales,152.756701,-31.63092 +2021,7,13,1,New South Wales,150.64307,-34.395392 +2021,6,19,1,New South Wales,150.51901,-34.459813 +2024,9,12,1,New South Wales,152.928045,-31.462129 +2022,4,1,1,New South Wales,153.558496,-28.394081 +2024,1,15,1,New South Wales,152.925852,-31.45274 +2023,9,15,1,New South Wales,152.881699,-31.442216 +2022,4,4,1,New South Wales,153.110522,-29.49003 +2023,4,18,1,New South Wales,153.403976,-28.84234 +2021,11,20,1,New South Wales,153.303415,-28.816423 +2021,9,3,1,New South Wales,153.104037,-29.485141 +2021,5,12,1,New South Wales,150.637297,-34.42395 +2021,3,20,1,New South Wales,150.525462,-34.459881 +2021,8,8,1,New South Wales,152.344522,-32.309328 +2022,8,1,1,New South Wales,152.920058,-31.47813 +2023,11,16,1,Queensland,152.992659,-27.295094 +2021,8,30,1,New South Wales,150.52257,-34.463825 +2023,9,22,1,New South Wales,153.198697,-28.881314 +2022,2,9,1,New South Wales,152.115257,-32.764661 +2022,4,1,1,New South Wales,153.103876,-29.485417 +2020,11,3,1,New South Wales,152.070348,-32.713852 +2020,10,17,1,New South Wales,152.894418,-31.447732 +2021,5,7,1,New South Wales,150.60918,-34.420663 +2021,11,4,1,New South Wales,150.618466,-34.439975 +2021,7,19,1,New South Wales,150.62794,-34.420497 +2024,2,4,1,New South Wales,150.78591,-33.709699 +2021,5,12,1,New South Wales,150.627947,-34.389817 +2021,12,25,1,New South Wales,149.55746,-33.493105 +2020,9,18,1,New South Wales,153.330989,-28.818576 +2024,2,3,1,New South Wales,150.78584,-33.706834 +2020,1,26,1,New South Wales,149.381747,-36.149577 +2021,5,26,1,New South Wales,150.517254,-34.454432 +2021,7,7,1,New South Wales,150.514323,-34.446457 +2021,6,12,1,New South Wales,150.630173,-34.420387 +2021,6,9,1,New South Wales,152.851464,-29.692524 +2024,6,25,1,New South Wales,152.924126,-31.473213 +2022,2,20,1,New South Wales,152.913355,-31.48053 +2022,11,25,1,New South Wales,152.78933,-30.918792 +2021,7,23,1,New South Wales,150.602664,-34.418732 +2023,9,23,1,New South Wales,152.383869,-31.929119 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2021,5,23,1,New South Wales,149.57375,-33.61721 +2021,5,22,1,New South Wales,150.51579,-34.450931 +2020,11,2,1,New South Wales,149.977333,-36.564828 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2021,6,9,1,New South Wales,150.51419,-34.455 +2022,5,25,1,New South Wales,152.92473,-31.434963 +2023,10,25,1,New South Wales,152.189573,-32.226267 +2023,2,19,1,New South Wales,153.373422,-29.088252 +2022,7,7,1,New South Wales,150.996787,-34.047267 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2021,6,7,1,New South Wales,150.519959,-34.457543 +2020,10,23,1,New South Wales,149.945227,-36.57753 +2022,11,2,1,New South Wales,153.315736,-28.849837 +2020,3,29,1,New South Wales,153.104251,-29.480198 +2020,8,9,1,New South Wales,153.0915,-29.487971 +2021,5,17,1,New South Wales,152.00351,-32.728513 +2024,8,28,1,New South Wales,152.28107,-32.405658 +2020,10,30,1,New South Wales,149.945227,-36.57753 +2020,1,2,1,New South Wales,151.991386,-32.720977 +2021,3,30,1,New South Wales,150.659438,-34.459005 +2020,11,1,1,New South Wales,149.945227,-36.57753 +2022,9,21,1,New South Wales,153.104117,-29.483717 +2022,5,13,1,New South Wales,152.300422,-31.948252 +2021,7,27,1,New South Wales,153.079993,-30.356111 +2021,3,9,1,New South Wales,150.635883,-34.484913 +2022,6,27,1,New South Wales,152.836598,-31.532371 +2021,4,21,1,New South Wales,150.605574,-34.432249 +2021,6,1,1,New South Wales,150.630355,-34.420886 +2021,6,7,1,New South Wales,150.626708,-34.389396 +2021,9,12,1,New South Wales,150.60533,-34.456433 +2024,6,12,1,New South Wales,152.899333,-31.145777 +2021,4,26,1,New South Wales,150.60417,-34.438001 +2022,12,30,1,New South Wales,152.066255,-32.712452 +2021,11,22,1,New South Wales,150.616093,-34.438099 +2021,10,7,1,New South Wales,153.280054,-28.828246 +2020,10,30,1,New South Wales,149.976368,-36.555504 +2020,9,16,1,New South Wales,153.333511,-28.779439 +2024,4,23,1,New South Wales,152.91358,-31.468842 +2023,10,14,1,New South Wales,153.109304,-29.490787 +2020,11,14,1,New South Wales,150.008014,-36.503633 +2023,7,27,1,New South Wales,153.311775,-28.850693 +2020,9,23,1,New South Wales,153.103741,-29.48566 +2021,9,18,1,New South Wales,153.042957,-28.469309 +2021,9,17,1,New South Wales,152.824668,-29.505196 +2023,7,14,1,New South Wales,150.47453,-34.42133 +2023,5,3,1,New South Wales,150.87626,-34.025052 +2021,5,8,1,New South Wales,150.639069,-34.49161 +2022,8,28,1,New South Wales,153.110291,-29.49025 +2020,2,14,1,New South Wales,153.29295,-28.864525 +2021,6,16,1,New South Wales,150.622908,-34.383814 +2020,1,5,1,New South Wales,150.790593,-34.141866 +2020,10,21,1,New South Wales,153.395619,-29.01741 +2023,,,1,New South Wales,153.114387,-29.185754 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2021,2,19,1,New South Wales,153.557611,-28.394514 +2021,9,24,1,New South Wales,152.983255,-28.62063 +2020,10,20,1,New South Wales,149.931009,-36.595007 +2021,11,26,1,New South Wales,153.302885,-28.84372 +2021,5,6,1,New South Wales,150.605993,-34.437802 +2020,11,3,1,New South Wales,149.976368,-36.555504 +2021,5,24,1,New South Wales,150.638821,-34.492696 +2020,10,26,1,New South Wales,149.976368,-36.555504 +2023,8,3,1,New South Wales,152.209846,-31.560724 +2021,8,18,1,New South Wales,153.006335,-28.617975 +2021,5,10,1,New South Wales,150.521333,-34.46664 +2024,3,27,1,New South Wales,152.385263,-31.918684 +2021,5,20,1,New South Wales,150.65852,-34.458347 +2022,10,5,1,New South Wales,153.045771,-30.42436 +2022,8,14,1,New South Wales,150.55446,-34.511282 +2022,3,2,1,New South Wales,152.097134,-32.773532 +2021,5,9,1,New South Wales,150.521653,-34.466123 +2023,9,17,1,New South Wales,153.017645,-30.365697 +2022,6,16,1,New South Wales,152.893086,-31.454902 +2021,4,21,1,New South Wales,150.636398,-34.485554 +2020,11,25,1,New South Wales,153.55227,-28.588919 +2023,12,7,1,New South Wales,150.659073,-33.527129 +2023,1,27,1,New South Wales,150.79077,-34.189358 +2020,7,27,1,New South Wales,153.085229,-28.535988 +2020,9,12,1,New South Wales,150.82369,-34.141271 +2024,1,20,1,New South Wales,151.963148,-32.032495 +2020,11,,1,New South Wales,150.189109,-34.539893 +2023,11,18,1,New South Wales,152.897369,-31.475222 +2021,6,2,1,New South Wales,152.269498,-32.487777 +2021,8,29,1,New South Wales,153.395156,-28.959978 +2021,3,23,1,New South Wales,150.525493,-34.459954 +2020,12,8,1,New South Wales,153.145608,-28.541892 +2020,6,24,1,New South Wales,153.100447,-30.281572 +2023,3,20,1,New South Wales,153.108017,-29.490409 +2021,4,27,1,New South Wales,150.63586,-34.419334 +2023,8,3,1,New South Wales,152.894537,-31.44635 +2023,7,13,1,New South Wales,152.414417,-31.934305 +2021,7,29,1,New South Wales,150.625292,-34.384491 +2021,9,2,1,New South Wales,153.07375,-30.886194 +2021,3,21,1,New South Wales,150.517039,-34.44625 +2022,9,19,1,New South Wales,152.90954,-30.17215 +2021,7,11,1,New South Wales,150.642167,-34.394266 +2021,7,7,1,New South Wales,153.552788,-28.40779 +2021,5,12,1,New South Wales,150.616454,-34.433445 +2021,5,23,1,New South Wales,150.51593,-34.450618 +2024,3,11,1,New South Wales,152.887821,-31.453553 +2021,7,17,1,New South Wales,150.62796,-34.420939 +2021,5,26,1,New South Wales,150.516524,-34.450044 +2023,2,27,1,New South Wales,153.022743,-28.48916 +2023,7,30,1,New South Wales,152.79288,-31.641704 +2022,2,11,1,New South Wales,153.312391,-28.816543 +2021,5,4,1,New South Wales,150.61182,-34.419615 +2021,6,3,1,New South Wales,150.604128,-34.426875 +2021,4,10,1,New South Wales,152.893086,-31.454902 +2023,4,26,1,New South Wales,151.789431,-32.654355 +2024,2,15,1,New South Wales,152.894376,-31.438375 +2020,6,10,1,New South Wales,152.925939,-31.458825 +2020,1,19,1,New South Wales,153.097336,-29.491809 +2020,10,20,1,New South Wales,153.296004,-28.818579 +2021,5,23,1,New South Wales,150.635758,-34.392808 +2021,9,1,1,New South Wales,150.533343,-34.50051 +2021,2,19,1,New South Wales,152.075901,-32.766602 +2023,7,9,1,New South Wales,152.785866,-31.631973 +2021,4,8,1,New South Wales,150.634002,-34.48869 +2022,10,31,1,New South Wales,152.06619,-32.71168 +2020,12,25,1,New South Wales,153.092796,-29.493011 +2021,10,20,1,New South Wales,149.926583,-35.11532 +2021,5,6,1,New South Wales,150.520052,-34.43562 +2021,9,12,1,New South Wales,151.046331,-34.028817 +2024,1,16,1,New South Wales,153.110522,-29.490161 +2022,2,6,1,New South Wales,152.921206,-31.474075 +2021,8,28,1,New South Wales,153.311298,-28.822003 +2022,1,1,1,New South Wales,152.396884,-31.902418 +2021,4,30,1,New South Wales,150.615856,-34.43648 +2021,6,23,1,New South Wales,150.602494,-34.418567 +2021,6,10,1,New South Wales,150.517978,-34.447604 +2024,2,20,1,New South Wales,150.782343,-33.71882 +2020,4,25,1,New South Wales,152.868052,-29.667271 +2024,3,1,1,New South Wales,150.78449,-33.710269 +2022,4,11,1,New South Wales,152.371095,-31.918408 +2021,4,5,1,New South Wales,150.615814,-34.436434 +2021,11,17,1,New South Wales,152.868576,-29.667322 +2023,1,30,1,New South Wales,153.109412,-29.490525 +2021,9,15,1,New South Wales,150.644133,-34.397072 +2020,2,3,1,New South Wales,152.875543,-31.457695 +2024,3,10,1,New South Wales,150.78549,-33.713632 +2021,6,4,1,New South Wales,150.51955,-34.45519 +2021,6,16,1,New South Wales,150.520741,-34.46569 +2023,4,27,1,New South Wales,150.785077,-33.716982 +2020,2,28,1,New South Wales,152.40417,-31.94582 +2024,6,6,1,New South Wales,152.37748,-31.906297 +2021,6,7,1,New South Wales,150.629804,-34.420758 +2021,6,22,1,New South Wales,150.627365,-34.421216 +2020,10,17,1,New South Wales,152.104371,-32.734244 +2022,9,8,1,New South Wales,152.794388,-31.126545 +2021,1,27,1,New South Wales,152.150659,-32.723591 +2021,5,7,1,New South Wales,150.621882,-34.397777 +2023,9,25,1,New South Wales,153.517284,-28.668167 +2022,2,23,1,New South Wales,153.293171,-28.864644 +2022,11,27,1,New South Wales,152.734049,-30.84847 +2024,3,30,1,New South Wales,150.974029,-34.099865 +2021,5,28,1,New South Wales,150.52173,-34.465746 +2021,7,20,1,New South Wales,150.630678,-34.420631 +2022,8,11,1,New South Wales,153.104214,-29.483246 +2022,11,23,1,New South Wales,152.794945,-30.901933 +2023,1,11,1,New South Wales,151.141009,-32.9383 +2021,5,13,1,New South Wales,150.637334,-34.42378 +2024,1,6,1,New South Wales,152.408726,-31.933801 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2020,3,2,1,New South Wales,153.297816,-28.827692 +2021,5,26,1,New South Wales,150.521573,-34.465527 +2024,2,6,1,New South Wales,152.072789,-32.717118 +2021,9,14,1,New South Wales,150.641581,-34.396905 +2020,10,28,1,New South Wales,149.976368,-36.555504 +2021,5,28,1,New South Wales,150.617686,-34.438698 +2021,6,9,1,New South Wales,150.51801,-34.447622 +2020,11,14,1,New South Wales,150.008014,-36.503633 +2021,12,18,1,New South Wales,153.101086,-29.490082 +2021,8,13,1,New South Wales,150.787655,-34.188482 +2023,11,5,1,New South Wales,152.379331,-31.919974 +2020,12,11,1,New South Wales,152.893086,-31.454902 +2022,12,2,1,New South Wales,152.92382,-31.444233 +2021,6,20,1,New South Wales,150.604447,-34.422941 +2023,9,17,1,New South Wales,153.033575,-30.379498 +2023,5,29,1,New South Wales,152.187703,-31.614784 +2021,4,11,1,New South Wales,153.102985,-29.48665 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2023,12,10,1,New South Wales,150.784167,-33.716972 +2022,7,22,1,New South Wales,151.112615,-29.339964 +2022,10,5,1,New South Wales,153.050306,-30.444524 +2021,5,13,1,New South Wales,150.517932,-34.437758 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,3,6,1,New South Wales,150.530498,-34.469972 +2020,11,6,1,New South Wales,150.016902,-36.541583 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,5,1,1,New South Wales,150.604962,-34.427017 +2020,11,11,1,New South Wales,150.010499,-36.556654 +2020,10,29,1,New South Wales,149.976368,-36.555504 +2020,8,31,1,New South Wales,153.020649,-30.425757 +2023,6,20,1,New South Wales,149.999945,-36.563902 +2020,9,2,1,New South Wales,153.405114,-28.602226 +2020,10,29,1,New South Wales,149.976368,-36.555504 +2020,7,7,1,New South Wales,153.558263,-28.637097 +2023,9,25,1,New South Wales,153.561316,-28.386418 +2021,1,9,1,New South Wales,152.174456,-32.661379 +2023,3,4,1,New South Wales,153.09619,-29.484803 +2023,10,16,1,New South Wales,152.920826,-30.506442 +2023,1,13,1,New South Wales,153.32305,-28.919792 +2021,6,24,1,New South Wales,150.625277,-34.386177 +2023,11,5,1,New South Wales,153.108162,-29.490586 +2023,8,1,1,New South Wales,153.069149,-30.89729 +2023,11,16,1,New South Wales,152.917449,-31.474536 +2023,10,20,1,New South Wales,149.397705,-36.215154 +2023,12,27,1,New South Wales,150.784139,-33.716931 +2021,7,26,1,New South Wales,153.493926,-28.68004 +2021,3,14,1,New South Wales,150.603199,-34.438847 +2020,11,28,1,New South Wales,153.109465,-29.490446 +2021,5,6,1,New South Wales,150.605001,-34.437855 +2020,11,1,1,New South Wales,149.92265,-36.572354 +2021,5,25,1,New South Wales,150.52658,-34.469568 +2021,5,10,1,New South Wales,150.52089,-34.466523 +2023,8,1,1,New South Wales,152.714259,-30.995047 +2022,11,19,1,New South Wales,152.910888,-31.16157 +2021,6,13,1,New South Wales,150.521607,-34.465852 +2021,3,10,1,New South Wales,152.065031,-32.710364 +2021,5,14,1,New South Wales,150.637334,-34.42378 +2023,12,4,1,New South Wales,150.784513,-33.718161 +2020,7,13,1,New South Wales,152.068778,-28.66117 +2021,5,5,1,New South Wales,150.608678,-34.455813 +2024,9,4,1,New South Wales,152.173488,-31.571017 +2021,6,19,1,New South Wales,150.603922,-34.438663 +2021,5,28,1,New South Wales,153.59019,-28.65505 +2020,12,11,1,New South Wales,149.960499,-36.288011 +2024,1,22,1,New South Wales,152.832189,-29.642428 +2022,4,4,1,New South Wales,152.910582,-31.465483 +2020,12,8,1,New South Wales,152.90105,-31.442723 +2022,7,10,1,New South Wales,153.403554,-28.626581 +2021,10,16,1,New South Wales,153.10137,-29.489848 +2022,,,1,New South Wales,153.599218,-28.719867 +2023,9,25,1,New South Wales,150.846603,-34.111366 +2021,7,13,1,New South Wales,150.51378,-34.446419 +2022,9,7,1,New South Wales,153.103892,-29.48481 +2021,9,2,1,New South Wales,152.899265,-31.449809 +2021,8,14,1,New South Wales,150.515553,-34.439098 +2022,9,9,1,New South Wales,150.501264,-34.46011 +2021,5,15,1,New South Wales,150.629888,-34.395426 +2020,1,12,1,New South Wales,152.980855,-28.36775 +2022,9,2,1,New South Wales,153.29168,-28.975004 +2021,6,4,1,New South Wales,150.636654,-34.488083 +2021,5,8,1,New South Wales,150.518345,-34.451398 +2021,5,31,1,New South Wales,150.524065,-34.471437 +2022,7,25,1,New South Wales,152.817096,-31.1201 +2021,5,11,1,New South Wales,150.521282,-34.466152 +2023,4,10,1,New South Wales,153.109267,-29.490876 +2021,8,19,1,New South Wales,150.609073,-34.49498 +2021,5,15,1,New South Wales,150.600616,-34.42796 +2022,8,29,1,New South Wales,153.103961,-29.48961 +2020,10,24,1,New South Wales,149.945227,-36.57753 +2021,6,30,1,New South Wales,150.80858,-34.079579 +2022,7,25,1,New South Wales,153.458429,-28.725206 +2021,8,30,1,New South Wales,150.566447,-34.460307 +2021,4,21,1,New South Wales,150.637395,-34.420463 +2021,7,11,1,New South Wales,150.844695,-34.053299 +2022,4,2,1,New South Wales,150.973524,-34.125321 +2022,7,29,1,New South Wales,149.543438,-33.699723 +2023,3,14,1,New South Wales,153.108156,-29.490521 +2021,3,20,1,New South Wales,153.10379,-29.485594 +2020,11,2,1,New South Wales,149.988655,-36.56931 +2021,5,29,1,New South Wales,150.630862,-34.420661 +2022,3,10,1,New South Wales,151.98565,-32.78189 +2024,3,8,1,New South Wales,151.9266,-32.5215 +2022,10,,1,New South Wales,150.209,-31.84213 +2021,5,14,1,New South Wales,150.602969,-34.437752 +2022,5,23,1,New South Wales,153.3061,-28.822665 +2020,11,30,1,New South Wales,149.577506,-33.419281 +2023,2,16,1,New South Wales,153.168833,-28.646094 +2021,5,11,1,New South Wales,150.627994,-34.389701 +2022,9,20,1,New South Wales,153.474256,-28.938534 +2023,5,6,1,New South Wales,153.375627,-28.999986 +2024,2,7,1,New South Wales,152.317037,-32.081971 +2020,11,28,1,New South Wales,152.078206,-32.727783 +2023,9,20,1,New South Wales,153.397629,-28.841103 +2021,4,30,1,New South Wales,150.617374,-34.39988 +2021,4,29,1,New South Wales,150.610401,-34.419037 +2021,11,2,1,New South Wales,150.616047,-34.44009 +2021,9,2,1,New South Wales,152.378462,-31.92265 +2021,6,16,1,New South Wales,150.520719,-34.46569 +2021,11,18,1,New South Wales,153.60863,-28.66111 +2024,6,21,1,New South Wales,152.919597,-30.505935 +2021,6,7,1,New South Wales,150.606507,-34.433503 +2021,12,24,1,New South Wales,152.929353,-31.466614 +2023,10,19,1,New South Wales,150.703546,-34.262064 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2023,11,6,1,New South Wales,153.10387,-29.489605 +2020,1,5,1,New South Wales,153.103613,-29.485898 +2021,6,14,1,New South Wales,150.520389,-34.454035 +2021,5,6,1,New South Wales,150.522705,-34.459257 +2020,11,9,1,New South Wales,150.016902,-36.541583 +2023,3,15,1,New South Wales,152.19974,-32.23908 +2020,1,5,1,New South Wales,153.391388,-28.854763 +2021,5,13,1,New South Wales,150.605738,-34.427655 +2020,11,7,1,New South Wales,153.557426,-28.386921 +2020,10,8,1,New South Wales,153.423967,-28.662577 +2021,4,30,1,New South Wales,150.61008,-34.419995 +2020,10,15,1,New South Wales,150.617368,-33.431526 +2021,6,7,1,New South Wales,150.615492,-34.43284 +2023,9,9,1,New South Wales,150.786123,-33.713073 +2023,9,13,1,New South Wales,153.090241,-28.598929 +2023,2,19,1,New South Wales,153.217935,-28.82448 +2024,5,21,1,New South Wales,153.562622,-28.384228 +2021,6,9,1,New South Wales,150.626453,-34.386867 +2023,11,15,1,New South Wales,152.939111,-30.230223 +2021,5,28,1,New South Wales,150.517303,-34.452774 +2020,6,18,1,New South Wales,153.610728,-28.659915 +2021,8,23,1,New South Wales,153.022176,-28.412855 +2021,5,7,1,New South Wales,150.627776,-34.390084 +2021,1,28,1,New South Wales,153.32037,-28.843373 +2021,3,5,1,New South Wales,150.609911,-34.432812 +2021,9,7,1,New South Wales,150.517424,-34.447574 +2024,2,9,1,New South Wales,150.78524,-33.715673 +2022,8,6,1,New South Wales,151.1059,-33.820504 +2024,1,8,1,New South Wales,152.924694,-31.465054 +2022,4,5,1,New South Wales,153.39415,-28.959159 +2021,5,25,1,New South Wales,150.631312,-34.42012 +2020,12,18,1,New South Wales,152.415177,-31.933636 +2021,5,6,1,New South Wales,150.523054,-34.452232 +2021,4,5,1,New South Wales,150.606991,-34.437515 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2020,5,24,1,New South Wales,153.292797,-28.864694 +2021,4,27,1,New South Wales,150.60709,-34.454259 +2021,3,6,1,New South Wales,150.521963,-34.46375 +2020,11,20,1,New South Wales,153.103913,-29.485566 +2020,5,4,1,New South Wales,152.455576,-28.285215 +2024,5,9,1,New South Wales,152.037669,-32.66973 +2021,5,29,1,New South Wales,150.523862,-34.452159 +2020,4,20,1,New South Wales,152.871433,-31.502429 +2024,1,19,1,New South Wales,150.786979,-33.703775 +2022,2,25,1,New South Wales,152.063455,-32.706441 +2020,5,4,1,New South Wales,150.0043,-34.83636 +2023,6,3,1,New South Wales,150.78397,-33.71759 +2021,10,19,1,New South Wales,153.335729,-28.814645 +2021,6,12,1,New South Wales,152.079275,-32.761922 +2021,4,30,1,New South Wales,150.63629,-34.42183 +2020,6,4,1,New South Wales,153.166469,-28.353694 +2021,5,10,1,New South Wales,150.639148,-34.491918 +2023,4,11,1,New South Wales,153.301101,-28.819961 +2021,6,1,1,New South Wales,150.630336,-34.420795 +2023,8,1,1,New South Wales,150.78242,-33.719343 +2021,3,30,1,New South Wales,150.616246,-34.434234 +2021,6,10,1,New South Wales,150.646225,-34.39731 +2024,7,26,1,New South Wales,152.887828,-30.336874 +2021,7,8,1,New South Wales,150.598696,-34.414057 +2020,10,18,1,New South Wales,152.924717,-31.448047 +2022,7,11,1,New South Wales,153.101231,-29.489918 +2023,6,30,1,New South Wales,153.211583,-28.646836 +2024,1,19,1,New South Wales,150.572354,-33.686705 +2021,6,9,1,New South Wales,150.610442,-34.430596 +2023,1,1,1,New South Wales,151.761336,-32.768177 +2021,3,7,1,New South Wales,150.5237,-34.464993 +2021,8,19,1,New South Wales,150.521928,-34.464578 +2021,6,18,1,New South Wales,150.627698,-34.42097 +2020,1,3,1,New South Wales,153.109479,-29.490744 +2022,6,13,1,New South Wales,151.643511,-32.66561 +2023,4,18,1,New South Wales,149.956884,-36.59937 +2020,4,6,1,New South Wales,153.109422,-29.490635 +2022,8,17,1,New South Wales,153.499155,-28.768784 +2021,6,27,1,New South Wales,150.6275,-34.420272 +2021,3,12,1,New South Wales,152.988366,-28.553626 +2021,4,23,1,New South Wales,150.628708,-34.394844 +2021,3,13,1,New South Wales,150.658954,-34.457616 +2020,11,23,1,New South Wales,153.314609,-28.846843 +2021,2,22,1,New South Wales,152.063568,-32.706253 +2023,4,11,1,New South Wales,153.10799,-29.490488 +2021,5,26,1,New South Wales,150.602415,-34.436208 +2023,11,28,1,New South Wales,153.103902,-29.489591 +2021,3,11,1,New South Wales,150.616378,-34.434201 +2021,5,10,1,New South Wales,150.624907,-34.39963 +2020,1,4,1,New South Wales,151.37623,-30.75059 +2021,5,19,1,New South Wales,150.631098,-34.38913 +2021,9,20,1,New South Wales,150.518112,-34.446777 +2023,11,15,1,New South Wales,152.92875,-30.24445 +2021,7,28,1,New South Wales,153.313836,-28.838902 +2021,3,14,1,New South Wales,150.659545,-34.458304 +2020,3,20,1,New South Wales,153.295183,-28.820371 +2023,4,6,1,New South Wales,153.395158,-28.960039 +2022,11,6,1,New South Wales,152.08889,-32.73675 +2023,7,4,1,New South Wales,151.688296,-32.687025 +2021,6,13,1,New South Wales,153.562037,-28.384015 +2023,11,21,1,New South Wales,149.552169,-33.491227 +2021,6,25,1,New South Wales,150.625245,-34.38614 +2021,4,29,1,New South Wales,150.603491,-34.427493 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2021,4,20,1,New South Wales,150.60449,-34.424511 +2020,1,28,1,New South Wales,153.350016,-28.695364 +2022,4,24,1,New South Wales,152.924362,-31.460082 +2021,6,1,1,New South Wales,150.60487,-34.437474 +2023,9,11,1,New South Wales,150.695053,-34.272808 +2023,7,29,1,New South Wales,150.147222,-29.253111 +2022,10,4,1,New South Wales,153.006614,-30.40855 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2020,7,23,1,New South Wales,152.801804,-31.127477 +2020,11,30,1,New South Wales,153.343646,-28.866891 +2022,4,18,1,New South Wales,150.640457,-29.943563 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,9,1,1,New South Wales,150.836748,-34.056467 +2024,9,19,1,New South Wales,150.910199,-33.96871 +2021,7,5,1,New South Wales,150.627315,-34.420683 +2021,6,14,1,New South Wales,150.615294,-34.431358 +2021,5,31,1,New South Wales,150.6404,-34.398307 +2021,6,12,1,New South Wales,150.643644,-34.395872 +2023,10,15,1,New South Wales,152.924348,-31.470976 +2021,5,6,1,New South Wales,150.603557,-34.427468 +2021,9,8,1,New South Wales,150.6624,-33.57034 +2022,7,6,1,New South Wales,150.98335,-34.093645 +2021,5,21,1,New South Wales,150.51517,-34.451685 +2021,5,24,1,New South Wales,150.603924,-34.432515 +2022,10,4,1,New South Wales,152.923406,-31.469912 +2022,12,21,1,New South Wales,153.103758,-29.485398 +2024,5,9,1,New South Wales,150.79753,-34.14215 +2020,5,7,1,New South Wales,153.290603,-28.840992 +2022,1,25,1,New South Wales,152.922279,-31.478142 +2021,6,4,1,New South Wales,150.604127,-34.42692 +2021,6,7,1,New South Wales,150.626025,-34.388941 +2021,6,7,1,New South Wales,150.616486,-34.435771 +2024,4,2,1,New South Wales,152.900716,-31.409201 +2021,3,9,1,New South Wales,150.51802,-34.447289 +2024,6,9,1,New South Wales,152.415013,-31.934615 +2023,3,24,1,New South Wales,153.108022,-29.490287 +2021,6,15,1,New South Wales,150.62332,-34.385769 +2023,8,25,1,New South Wales,151.235854,-33.120706 +2021,5,31,1,New South Wales,150.608005,-34.436678 +2023,9,20,1,New South Wales,153.104364,-29.477637 +2023,1,23,1,New South Wales,153.625095,-28.64268 +2022,11,22,1,New South Wales,152.764422,-30.891124 +2024,2,7,1,New South Wales,152.609055,-30.286732 +2021,6,2,1,New South Wales,150.638218,-34.490917 +2020,1,5,1,New South Wales,153.290168,-28.865241 +2022,11,22,1,New South Wales,152.764422,-30.891124 +2020,11,1,1,New South Wales,149.976368,-36.555504 +2020,11,6,1,New South Wales,150.007338,-36.56122 +2021,1,20,2,South Australia,140.72486,-38.03839 +2021,7,21,1,New South Wales,150.607015,-34.437434 +2021,9,7,1,New South Wales,152.93857,-29.702796 +2021,8,10,1,New South Wales,150.519284,-34.437687 +2020,2,18,1,New South Wales,151.78344,-32.58763 +2021,5,23,1,New South Wales,150.515522,-34.450817 +2022,12,6,1,New South Wales,152.178381,-32.65154 +2021,6,10,1,New South Wales,150.610477,-34.430515 +2023,10,3,1,New South Wales,150.784923,-33.717913 +2020,11,6,1,New South Wales,150.015337,-36.564757 +2022,1,12,1,New South Wales,150.616008,-34.440333 +2021,9,20,1,New South Wales,152.250288,-30.066931 +2023,10,18,1,New South Wales,152.909442,-31.469112 +2021,6,13,1,New South Wales,150.604365,-34.438023 +2021,5,12,1,New South Wales,150.521654,-34.467205 +2020,10,7,1,New South Wales,153.454341,-28.653446 +2022,9,19,1,New South Wales,152.787245,-31.631062 +2021,5,31,1,New South Wales,150.62903,-34.390361 +2022,8,15,1,New South Wales,153.215032,-28.824641 +2021,7,23,1,New South Wales,152.734564,-31.227627 +2020,10,29,1,New South Wales,149.945227,-36.57753 +2021,7,7,1,New South Wales,150.521485,-34.464831 +2021,5,21,1,New South Wales,150.639179,-34.493108 +2022,11,15,1,New South Wales,153.502914,-28.783596 +2021,6,25,1,New South Wales,150.645112,-34.3916 +2023,11,1,1,New South Wales,152.7824,-31.483861 +2023,9,1,1,New South Wales,152.848989,-31.554983 +2022,11,5,1,New South Wales,152.192902,-32.430089 +2021,7,10,1,New South Wales,150.626708,-34.421374 +2020,2,11,1,New South Wales,152.888426,-31.439965 +2021,6,13,1,New South Wales,150.604386,-34.438059 +2021,7,17,1,New South Wales,152.159309,-32.726441 +2021,8,3,1,New South Wales,153.101102,-29.48989 +2022,8,4,1,New South Wales,152.870596,-31.498368 +2023,1,12,1,New South Wales,152.825467,-31.178025 +2020,11,7,1,New South Wales,150.015337,-36.564757 +2024,1,29,1,New South Wales,153.095169,-29.483311 +2021,4,16,1,New South Wales,150.615169,-34.431175 +2022,9,29,1,New South Wales,152.90626,-30.24051 +2023,12,29,1,New South Wales,151.912715,-32.055223 +2021,5,4,1,New South Wales,150.615957,-34.436392 +2022,7,24,1,New South Wales,150.99578,-34.04771 +2020,9,24,1,New South Wales,150.78278,-34.086126 +2022,8,1,1,New South Wales,152.814383,-31.542662 +2021,5,22,1,New South Wales,150.630933,-34.38845 +2021,9,13,1,New South Wales,152.929128,-31.459618 +2021,1,27,1,New South Wales,152.355785,-31.85809 +2020,11,15,1,New South Wales,153.082144,-30.338205 +2021,5,17,1,New South Wales,150.520293,-34.453979 +2023,5,31,1,New South Wales,153.494972,-28.692228 +2021,7,22,1,New South Wales,152.932488,-29.722728 +2021,9,11,1,New South Wales,152.374075,-31.915481 +2020,1,24,1,New South Wales,152.93087,-31.471095 +2021,4,26,1,New South Wales,150.61618,-34.43581 +2022,10,4,1,New South Wales,153.229493,-28.890648 +2021,5,26,1,New South Wales,150.517124,-34.453663 +2020,11,17,1,New South Wales,150.004563,-36.508695 +2021,5,14,1,New South Wales,150.52098,-34.453921 +2021,6,12,1,New South Wales,150.630183,-34.420432 +2021,5,27,1,New South Wales,150.638935,-34.491724 +2020,8,13,1,New South Wales,153.461934,-28.650602 +2022,10,29,1,New South Wales,153.555183,-28.643366 +2020,1,2,1,New South Wales,152.927512,-31.465411 +2022,5,3,1,New South Wales,153.401614,-28.260267 +2021,9,12,1,New South Wales,150.530654,-34.471327 +2022,5,11,1,New South Wales,153.319334,-28.823739 +2021,2,5,1,New South Wales,150.085658,-33.779934 +2021,4,30,1,New South Wales,150.607488,-34.45442 +2021,5,8,1,New South Wales,150.615535,-34.435536 +2024,4,9,1,New South Wales,152.34329,-31.984607 +2021,5,10,1,New South Wales,150.637299,-34.42386 +2023,9,12,1,New South Wales,152.620848,-30.332248 +2023,3,2,1,New South Wales,150.564273,-29.54578 +2021,5,29,1,New South Wales,150.617206,-34.438742 +2023,1,28,1,New South Wales,153.311645,-28.822212 +2021,7,4,1,New South Wales,150.643859,-34.393253 +2020,10,18,1,New South Wales,149.921178,-36.633581 +2023,10,23,1,New South Wales,152.886294,-30.41503 +2024,9,21,1,New South Wales,146.595606,-34.771738 +2021,10,26,1,New South Wales,153.01326,-30.41365 +2024,3,29,1,New South Wales,152.91669,-31.445598 +2021,5,14,1,New South Wales,150.633382,-34.417717 +2020,2,21,1,New South Wales,153.03635,-30.89607 +2023,9,14,1,New South Wales,152.606717,-30.351365 +2021,5,14,1,New South Wales,150.516063,-34.449088 +2020,10,31,1,New South Wales,149.945227,-36.57753 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2020,10,24,1,New South Wales,149.945227,-36.57753 +2021,6,5,1,New South Wales,150.636731,-34.488048 +2020,7,7,1,New South Wales,152.667637,-31.532597 +2021,5,22,1,New South Wales,150.631182,-34.388095 +2021,5,3,1,New South Wales,150.608624,-34.435978 +2021,6,3,1,New South Wales,150.535458,-34.463058 +2022,4,5,1,New South Wales,153.240078,-28.661184 +2021,8,25,1,New South Wales,153.104096,-29.478029 +2021,5,21,1,New South Wales,150.51723,-34.451943 +2023,2,15,1,New South Wales,153.071959,-30.887521 +2021,7,9,1,New South Wales,150.627262,-34.421385 +2022,6,26,1,New South Wales,151.988171,-32.71942 +2021,5,18,1,New South Wales,150.631002,-34.389092 +2021,4,24,1,New South Wales,150.661662,-34.458489 +2021,4,29,1,New South Wales,150.606735,-34.454116 +2021,10,19,1,New South Wales,153.06158,-30.35981 +2021,7,21,1,New South Wales,150.516735,-34.448814 +2020,11,7,1,New South Wales,150.015337,-36.564757 +2020,3,29,1,New South Wales,153.317732,-28.827343 +2020,7,16,1,New South Wales,150.980468,-33.395509 +2021,11,28,1,New South Wales,153.302334,-28.820491 +2021,8,3,1,New South Wales,150.519045,-34.447229 +2021,4,30,1,New South Wales,150.62421,-34.388906 +2023,12,11,1,New South Wales,152.900285,-31.474207 +2021,7,11,1,New South Wales,153.29621,-29.025688 +2020,11,26,1,New South Wales,153.403612,-28.616578 +2021,6,20,1,New South Wales,150.639372,-34.392698 +2020,9,15,1,New South Wales,153.137314,-28.383891 +2023,4,3,1,New South Wales,153.488675,-28.242042 +2020,5,22,1,New South Wales,153.31739,-28.39923 +2021,4,21,1,New South Wales,150.614499,-34.429467 +2021,5,11,1,New South Wales,153.27827,-28.679393 +2023,9,26,1,New South Wales,153.283855,-28.864257 +2021,9,25,1,New South Wales,152.877144,-31.448301 +2021,6,29,1,New South Wales,150.643666,-34.394719 +2023,5,20,1,New South Wales,153.141952,-28.37377 +2022,7,24,1,New South Wales,151.004758,-34.045963 +2021,7,20,1,New South Wales,150.623347,-34.383254 +2020,11,2,1,New South Wales,149.977333,-36.564828 +2023,10,28,1,New South Wales,152.192089,-32.216754 +2023,1,12,1,New South Wales,152.813274,-31.401097 +2023,8,27,1,New South Wales,152.778678,-31.631388 +2021,6,29,1,New South Wales,150.631473,-34.387785 +2020,6,22,1,New South Wales,153.435922,-28.611011 +2023,9,25,1,New South Wales,153.29838,-28.817309 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2023,2,9,1,New South Wales,153.418432,-28.884592 +2021,5,3,1,New South Wales,150.611469,-34.419743 +2022,9,8,1,New South Wales,152.791066,-31.125577 +2020,4,20,1,New South Wales,152.868901,-31.528059 +2021,5,13,1,New South Wales,150.517437,-34.453759 +2021,6,21,1,New South Wales,150.520315,-34.465754 +2024,4,23,1,New South Wales,152.912519,-31.469083 +2022,9,20,1,New South Wales,152.90776,-30.17626 +2022,10,30,1,New South Wales,152.826247,-31.649838 +2021,4,25,1,New South Wales,150.615398,-34.428871 +2024,2,13,1,New South Wales,150.784952,-33.717449 +2023,9,13,1,New South Wales,153.302567,-28.819153 +2022,11,9,1,New South Wales,152.884572,-31.429839 +2020,10,29,1,New South Wales,149.949397,-36.554597 +2020,10,8,1,New South Wales,149.959933,-36.657162 +2021,5,16,1,New South Wales,150.633225,-34.418652 +2022,7,14,1,New South Wales,153.110538,-29.490203 +2020,8,19,1,New South Wales,153.104224,-29.48241 +2021,9,4,1,New South Wales,150.522322,-34.464136 +2021,5,3,1,New South Wales,150.637334,-34.488655 +2023,2,14,1,New South Wales,152.787407,-31.636525 +2021,4,22,1,New South Wales,150.632983,-34.39289 +2023,9,16,1,New South Wales,152.873582,-31.453206 +2022,7,11,1,New South Wales,152.925861,-31.452741 +2023,1,15,1,New South Wales,153.558319,-28.388609 +2024,3,28,1,New South Wales,152.81513,-31.575281 +2020,11,16,1,New South Wales,153.085663,-30.321276 +2021,9,16,1,New South Wales,150.515225,-34.447593 +2021,5,28,1,New South Wales,150.642518,-34.394129 +2021,7,11,1,New South Wales,150.59723,-34.410178 +2021,5,4,1,New South Wales,150.632825,-34.41895 +2020,6,5,1,New South Wales,151.735887,-32.515004 +2021,5,14,1,New South Wales,150.527681,-34.46657 +2020,8,3,1,New South Wales,152.793466,-31.127211 +2021,4,25,1,New South Wales,150.615218,-34.435566 +2021,6,1,1,New South Wales,150.62819,-34.390074 +2021,5,4,1,New South Wales,150.519779,-34.468781 +2020,9,17,1,New South Wales,153.544101,-28.65289 +2023,11,7,1,New South Wales,153.108092,-29.490245 +2020,11,7,1,New South Wales,150.007338,-36.56122 +2021,8,26,1,New South Wales,150.834857,-34.070006 +2020,10,31,1,New South Wales,149.977333,-36.564828 +2020,1,17,1,New South Wales,151.215455,-33.707279 +2021,8,26,1,New South Wales,150.603869,-34.443215 +2023,11,21,1,New South Wales,150.785679,-33.706813 +2021,5,3,1,New South Wales,150.633546,-34.418451 +2023,11,3,1,New South Wales,152.193373,-32.220759 +2022,10,27,1,New South Wales,153.078341,-30.353773 +2020,7,31,1,New South Wales,153.506293,-28.238698 +2021,5,27,1,New South Wales,150.639743,-34.393426 +2021,9,5,1,New South Wales,150.643496,-34.404651 +2021,5,22,1,New South Wales,150.605488,-34.432239 +2022,9,24,1,New South Wales,152.03103,-32.736164 +2020,11,2,1,New South Wales,149.977333,-36.564828 +2023,5,31,1,New South Wales,152.875157,-31.453216 +2021,5,17,1,New South Wales,149.273996,-36.057154 +2021,4,22,1,New South Wales,150.609343,-34.419125 +2023,5,17,1,New South Wales,153.103334,-29.489858 +2022,12,24,1,New South Wales,150.791254,-34.191062 +2021,5,28,1,New South Wales,150.617719,-34.438689 +2020,1,20,1,New South Wales,152.173499,-32.662649 +2021,9,11,1,New South Wales,153.334258,-28.818237 +2022,7,27,1,New South Wales,150.839671,-34.078232 +2020,11,17,1,New South Wales,150.668449,-33.534702 +2021,5,3,1,New South Wales,150.622942,-34.397581 +2021,8,19,1,New South Wales,153.092219,-29.488121 +2022,1,16,1,New South Wales,150.938932,-34.113944 +2021,5,15,1,New South Wales,150.516246,-34.449128 +2021,4,1,1,New South Wales,150.604004,-34.440369 +2021,5,21,1,New South Wales,150.63117,-34.387373 +2023,5,19,1,New South Wales,153.361556,-28.681335 +2021,2,22,1,New South Wales,152.896425,-29.629872 +2021,5,28,1,New South Wales,150.639105,-34.49152 +2023,8,31,1,New South Wales,151.484557,-33.061666 +2023,5,11,1,New South Wales,153.110533,-29.489946 +2024,4,6,1,New South Wales,152.398822,-31.965684 +2023,8,2,1,New South Wales,153.094922,-29.483512 +2020,1,16,1,New South Wales,152.861613,-31.163889 +2023,2,22,1,New South Wales,152.792375,-31.640274 +2021,4,1,1,New South Wales,150.635343,-34.488626 +2021,4,20,1,New South Wales,150.604581,-34.424738 +2022,10,20,1,New South Wales,152.08642,-32.728543 +2020,8,12,1,New South Wales,152.926013,-31.458934 +2022,11,4,1,New South Wales,153.307114,-28.849295 +2021,6,20,1,New South Wales,150.604189,-34.422477 +2022,8,29,1,New South Wales,151.722031,-30.404135 +2021,5,30,1,New South Wales,150.615937,-34.438619 +2023,10,24,1,New South Wales,153.109363,-29.490418 +2021,5,27,1,New South Wales,150.527205,-34.469436 +2021,3,7,1,New South Wales,150.518237,-34.446572 +2021,7,6,1,New South Wales,150.659291,-34.455306 +2023,6,7,1,New South Wales,150.883667,-34.067894 +2024,3,27,1,New South Wales,150.658799,-33.526909 +2020,1,,1,New South Wales,153.599259,-28.719912 +2021,3,11,1,New South Wales,150.517261,-34.451628 +2020,2,4,1,New South Wales,152.880228,-31.453584 +2021,6,6,1,New South Wales,150.519454,-34.456586 +2023,8,14,1,New South Wales,150.990995,-34.024433 +2021,10,30,1,New South Wales,151.694573,-32.697069 +2023,9,15,1,New South Wales,149.369922,-36.147866 +2021,4,26,1,New South Wales,150.626257,-34.395761 +2021,5,31,1,New South Wales,150.604372,-34.424427 +2021,5,10,1,New South Wales,150.519439,-34.451203 +2021,3,14,1,New South Wales,150.515838,-34.44491 +2024,5,19,1,New South Wales,152.071143,-32.710644 +2022,11,19,1,New South Wales,152.788781,-30.895519 +2023,4,30,1,New South Wales,153.497432,-28.765444 +2020,10,30,1,New South Wales,149.977333,-36.564828 +2020,8,31,1,New South Wales,152.893086,-31.454902 +2021,11,11,1,New South Wales,152.377783,-31.918917 +2022,9,16,1,New South Wales,150.841327,-34.064221 +2020,11,2,1,New South Wales,149.945227,-36.57753 +2021,9,8,1,New South Wales,153.09341,-29.492683 +2022,10,5,1,New South Wales,152.995149,-30.417341 +2023,2,22,1,New South Wales,152.063513,-32.706071 +2020,12,11,1,New South Wales,153.104181,-29.478898 +2023,10,2,1,New South Wales,153.476395,-28.59751 +2023,9,21,1,New South Wales,153.566219,-28.387433 +2023,8,3,1,New South Wales,152.210166,-31.560665 +2021,6,22,1,New South Wales,150.603314,-34.439381 +2021,8,9,1,New South Wales,150.99155,-34.070322 +2020,11,3,1,New South Wales,153.317651,-28.862857 +2023,9,21,1,New South Wales,151.05885,-29.742754 +2023,6,7,1,New South Wales,152.900189,-31.24248 +2024,1,2,1,New South Wales,153.096081,-29.491179 +2021,6,27,1,New South Wales,150.596264,-34.414288 +2021,7,23,1,New South Wales,152.045481,-32.766559 +2023,9,26,1,New South Wales,152.073087,-32.724795 +2023,6,11,1,New South Wales,151.081893,-29.747449 +2022,10,14,1,New South Wales,152.064596,-32.700928 +2023,10,10,1,New South Wales,152.924036,-31.45146 +2021,6,5,1,New South Wales,150.615535,-34.435536 +2021,9,2,1,New South Wales,150.516583,-34.440697 +2021,6,7,1,New South Wales,150.616023,-34.433653 +2021,1,5,1,New South Wales,153.109495,-29.490404 +2021,6,14,1,New South Wales,150.630323,-34.420867 +2021,7,15,1,New South Wales,150.62514,-34.386787 +2021,7,1,1,New South Wales,150.640154,-34.397004 +2023,5,23,1,New South Wales,151.789864,-32.654093 +2022,6,27,1,New South Wales,152.93946,-30.39268 +2022,4,21,1,New South Wales,152.916571,-31.450564 +2021,7,8,1,New South Wales,150.627412,-34.42146 +2024,7,17,1,New South Wales,151.765371,-32.69804 +2021,8,23,1,New South Wales,150.885195,-33.439079 +2021,2,14,1,New South Wales,153.592011,-28.637897 +2021,5,17,1,New South Wales,150.520391,-34.453972 +2021,7,11,1,New South Wales,150.521623,-34.464572 +2023,8,4,1,New South Wales,152.245765,-31.311055 +2021,5,30,1,New South Wales,150.523098,-34.464386 +2022,6,17,1,New South Wales,153.108081,-29.490404 +2021,5,19,1,New South Wales,150.63382,-34.418384 +2021,7,14,1,New South Wales,152.063749,-32.474492 +2021,6,2,1,New South Wales,150.629764,-34.42101 +2021,5,9,1,New South Wales,152.036211,-32.767888 +2021,10,4,1,New South Wales,153.090845,-29.487341 +2020,4,20,1,New South Wales,152.861947,-31.428813 +2023,8,3,1,New South Wales,151.961297,-32.655518 +2021,8,6,1,New South Wales,150.604329,-34.425572 +2023,10,21,1,New South Wales,150.989618,-34.031204 +2021,11,20,1,New South Wales,150.616015,-34.440072 +2021,6,4,1,New South Wales,152.873956,-31.43032 +2021,11,12,1,New South Wales,152.893086,-31.454902 +2021,8,11,1,New South Wales,150.514555,-34.447453 +2021,11,16,1,New South Wales,152.860613,-31.129995 +2022,7,9,1,New South Wales,150.182867,-29.176691 +2021,6,6,1,New South Wales,150.641921,-34.396813 +2023,6,11,1,New South Wales,152.865907,-30.241763 +2021,5,19,1,New South Wales,150.842405,-34.139704 +2022,10,10,1,New South Wales,150.837478,-34.078738 +2021,4,29,1,New South Wales,150.616148,-34.429256 +2021,10,10,1,New South Wales,153.200467,-28.869963 +2021,7,5,1,New South Wales,153.54768,-28.388909 +2021,5,2,1,New South Wales,150.637358,-34.42369 +2023,4,27,1,New South Wales,151.788851,-32.654484 +2023,2,15,1,New South Wales,152.919079,-31.468878 +2021,1,7,1,New South Wales,153.109438,-29.490455 +2023,1,14,1,New South Wales,152.794103,-31.63866 +2021,9,4,1,New South Wales,153.293107,-28.864597 +2021,7,9,1,New South Wales,153.619751,-28.650638 +2021,8,16,1,New South Wales,150.513717,-34.446336 +2024,1,23,1,New South Wales,152.794574,-31.644196 +2021,7,8,1,New South Wales,150.513106,-34.447144 +2020,11,25,1,New South Wales,152.411696,-31.935857 +2023,12,21,1,New South Wales,148.729017,-36.429736 +2020,11,12,1,New South Wales,153.557511,-28.394264 +2023,11,7,1,New South Wales,152.890306,-31.439699 +2021,7,13,1,New South Wales,150.626478,-34.385605 +2021,6,13,1,New South Wales,150.63025,-34.420361 +2021,6,10,1,New South Wales,150.610454,-34.430533 +2021,5,13,1,New South Wales,150.517939,-34.454436 +2021,5,22,1,New South Wales,150.522312,-34.464821 +2021,5,4,1,New South Wales,150.520844,-34.436429 +2021,8,15,1,New South Wales,153.561963,-28.386971 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2021,6,12,1,New South Wales,150.611847,-34.432075 +2023,9,7,1,New South Wales,153.473889,-28.268443 +2020,11,30,1,New South Wales,149.980514,-36.435679 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2022,10,13,1,New South Wales,153.27392,-28.815709 +2021,10,28,1,New South Wales,153.298208,-28.825805 +2021,10,19,1,New South Wales,152.900579,-31.450512 +2021,7,3,1,New South Wales,150.518721,-34.460024 +2022,9,21,1,New South Wales,149.936104,-32.322436 +2021,12,19,1,New South Wales,153.356805,-28.656536 +2023,1,4,1,New South Wales,151.517753,-30.516811 +2021,6,3,1,New South Wales,150.613891,-34.437082 +2024,9,15,1,New South Wales,149.554722,-32.627779 +2021,5,1,1,New South Wales,150.624232,-34.388888 +2022,9,30,1,New South Wales,152.903071,-30.239132 +2021,9,18,1,New South Wales,150.522294,-34.469481 +2021,5,14,1,New South Wales,150.637303,-34.423725 +2023,11,27,1,New South Wales,150.632934,-33.537963 +2024,4,16,1,New South Wales,153.071698,-30.887358 +2021,1,15,1,New South Wales,152.899625,-29.631611 +2021,6,12,1,New South Wales,150.611874,-34.431877 +2021,5,4,1,New South Wales,150.603412,-34.427573 +2020,8,4,1,New South Wales,149.949575,-36.554484 +2020,7,27,1,New South Wales,153.007423,-28.623614 +2023,7,1,1,New South Wales,153.108146,-29.490297 +2021,3,11,1,New South Wales,150.524547,-34.461395 +2023,8,12,1,New South Wales,150.937814,-29.770638 +2020,10,24,1,New South Wales,149.976368,-36.555504 +2022,4,9,1,New South Wales,152.916468,-31.450803 +2024,4,24,1,New South Wales,150.991951,-34.022337 +2021,8,27,1,New South Wales,150.641912,-34.39482 +2021,5,6,1,New South Wales,150.523043,-34.452232 +2021,7,23,1,New South Wales,152.045481,-32.766559 +2020,11,13,1,New South Wales,153.489569,-28.228915 +2021,5,5,1,New South Wales,150.632739,-34.418913 +2021,3,18,1,New South Wales,153.101671,-29.489419 +2021,7,7,1,New South Wales,150.627628,-34.421527 +2021,5,8,1,New South Wales,150.632549,-34.418296 +2021,6,15,1,New South Wales,150.622883,-34.383913 +2020,8,9,1,New South Wales,150.658547,-33.614222 +2020,10,12,1,New South Wales,149.930096,-36.638123 +2020,10,20,1,New South Wales,149.938155,-36.621708 +2021,9,7,1,New South Wales,150.515522,-34.454468 +2021,5,3,1,New South Wales,150.621181,-34.398701 +2021,5,26,1,New South Wales,150.639164,-34.392748 +2022,5,4,1,New South Wales,150.989261,-34.025143 +2020,10,19,1,New South Wales,149.941399,-36.632151 +2022,6,30,1,New South Wales,152.061381,-32.709645 +2022,8,29,1,New South Wales,150.808166,-34.158317 +2021,6,17,1,New South Wales,150.604783,-34.427203 +2020,10,12,1,New South Wales,149.941399,-36.632151 +2020,10,30,1,New South Wales,149.92265,-36.572354 +2020,3,26,1,New South Wales,153.555878,-28.399509 +2021,1,29,1,New South Wales,152.109243,-32.771982 +2020,8,21,1,New South Wales,152.915369,-31.484327 +2021,6,17,1,New South Wales,150.519169,-34.459961 +2021,5,17,1,New South Wales,150.605439,-34.436998 +2021,12,6,1,New South Wales,150.842335,-34.068546 +2020,7,1,1,New South Wales,152.908804,-31.45483 +2024,1,16,1,New South Wales,152.819706,-30.911832 +2020,7,16,1,New South Wales,150.752853,-29.241905 +2021,6,27,1,New South Wales,150.523241,-34.464317 +2021,5,9,1,New South Wales,150.637278,-34.423824 +2020,12,23,1,New South Wales,153.31025,-28.643659 +2020,11,25,1,New South Wales,152.909494,-31.197644 +2024,9,21,1,New South Wales,146.603295,-34.762857 +2022,8,9,1,New South Wales,150.526001,-34.449987 +2021,5,14,1,New South Wales,153.402668,-28.260652 +2024,6,27,1,New South Wales,152.924126,-31.473213 +2023,9,3,1,New South Wales,152.075123,-32.721793 +2024,1,20,1,New South Wales,151.828312,-32.287481 +2021,12,24,1,New South Wales,153.08576,-30.347255 +2020,10,29,1,New South Wales,149.976368,-36.555504 +2020,10,28,1,New South Wales,149.976368,-36.555504 +2020,10,15,1,New South Wales,149.941399,-36.632151 +2023,8,20,1,New South Wales,153.077381,-28.557078 +2023,2,7,1,New South Wales,152.80737,-31.536756 +2021,4,14,1,New South Wales,153.321075,-28.676028 +2020,10,30,1,New South Wales,149.949397,-36.554597 +2022,10,31,1,New South Wales,153.396801,-29.015679 +2020,10,1,1,New South Wales,153.299172,-28.818305 +2021,5,20,1,New South Wales,150.60049,-34.428949 +2021,1,5,1,New South Wales,153.330332,-28.816675 +2021,5,31,1,New South Wales,150.63091,-34.388865 +2021,4,19,1,New South Wales,150.52339,-34.453015 +2021,10,3,1,New South Wales,150.788705,-34.212613 +2021,6,10,1,New South Wales,150.630234,-34.420929 +2020,,,1,New South Wales,152.240128,-29.616021 +2021,6,11,1,New South Wales,150.521924,-34.459178 +2023,9,19,1,New South Wales,152.908061,-31.457101 +2021,5,11,1,New South Wales,150.516651,-34.469646 +2022,7,19,1,New South Wales,150.564483,-34.536721 +2021,8,13,1,New South Wales,150.600966,-34.428661 +2023,10,15,1,New South Wales,152.978836,-30.496339 +2024,9,22,1,New South Wales,151.545269,-32.945055 +2020,5,15,1,New South Wales,149.308686,-36.112977 +2021,9,6,1,New South Wales,153.26798,-28.870712 +2023,8,21,1,New South Wales,153.071543,-30.885823 +2021,10,25,1,New South Wales,151.772773,-32.592053 +2021,6,5,1,New South Wales,150.534556,-34.459308 +2021,4,28,1,New South Wales,150.517727,-34.442117 +2020,12,13,1,New South Wales,152.91826,-31.485646 +2021,6,6,1,New South Wales,153.055997,-30.333952 +2022,8,15,1,New South Wales,153.22958,-28.889229 +2021,6,19,1,New South Wales,150.642638,-34.39451 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2021,4,25,1,New South Wales,150.608415,-34.454357 +2021,3,23,1,New South Wales,150.517229,-34.4516 +2022,4,25,1,New South Wales,153.110522,-29.490147 +2021,3,7,1,New South Wales,150.609914,-34.419695 +2022,1,8,1,New South Wales,150.844966,-29.83437 +2023,1,29,1,New South Wales,153.068176,-30.889839 +2022,8,8,1,New South Wales,152.797624,-31.253754 +2022,10,13,1,New South Wales,152.357979,-32.152693 +2020,10,21,1,New South Wales,153.49683,-28.254577 +2023,11,29,1,New South Wales,152.884555,-31.439621 +2020,3,16,1,New South Wales,152.925351,-31.454158 +2022,6,4,1,New South Wales,153.427718,-28.626783 +2021,5,27,1,New South Wales,150.522412,-34.46585 +2020,7,11,1,New South Wales,153.553093,-28.58524 +2024,3,18,1,New South Wales,152.104705,-32.726825 +2021,6,16,1,New South Wales,150.51385,-34.446267 +2021,4,27,1,New South Wales,150.637555,-34.488542 +2020,12,22,1,New South Wales,153.104702,-29.489676 +2022,3,29,1,New South Wales,146.588358,-34.757016 +2021,4,20,1,New South Wales,153.505378,-28.697081 +2021,3,22,1,New South Wales,150.63587,-34.488086 +2023,10,31,1,New South Wales,150.785298,-33.717039 +2022,10,25,1,New South Wales,152.82672,-31.650117 +2021,10,22,1,New South Wales,152.894418,-31.447732 +2021,3,14,1,New South Wales,150.607999,-34.430034 +2020,10,29,1,New South Wales,149.977333,-36.564828 +2024,1,15,1,New South Wales,152.901256,-31.47366 +2021,5,12,1,New South Wales,150.640019,-34.491908 +2024,6,17,1,New South Wales,152.396718,-31.903308 +2021,4,23,1,New South Wales,150.515835,-34.450535 +2023,10,25,1,New South Wales,152.200143,-32.231881 +2022,12,24,1,New South Wales,152.068459,-32.754239 +2020,10,17,1,New South Wales,149.362018,-35.992587 +2020,10,11,1,New South Wales,149.959933,-36.657162 +2023,6,12,1,New South Wales,151.717022,-30.578731 +2022,8,2,1,New South Wales,152.793476,-31.638825 +2023,4,20,1,New South Wales,153.103527,-29.485622 +2022,9,5,1,New South Wales,150.796911,-34.11832 +2021,7,11,1,New South Wales,150.631745,-34.387033 +2021,10,25,1,New South Wales,153.048473,-30.450237 +2020,1,6,1,New South Wales,152.883103,-31.441363 +2022,6,29,1,New South Wales,152.090601,-32.741007 +2023,9,26,1,New South Wales,150.725491,-34.314153 +2020,10,12,1,New South Wales,152.894543,-31.448123 +2022,10,5,1,New South Wales,152.996426,-30.408813 +2020,3,26,1,New South Wales,150.105059,-33.781815 +2021,3,10,1,New South Wales,150.616634,-34.433602 +2020,7,31,1,New South Wales,152.915732,-31.484445 +2021,8,13,1,New South Wales,150.520773,-34.465357 +2021,9,7,1,New South Wales,150.644211,-34.396613 +2021,10,20,1,New South Wales,150.791889,-34.196052 +2021,6,15,1,New South Wales,150.515774,-34.446721 +2021,7,8,1,New South Wales,150.521907,-34.464524 +2023,9,24,1,New South Wales,153.279211,-28.873791 +2023,1,20,1,New South Wales,152.925853,-31.452751 +2023,3,31,1,New South Wales,153.394305,-28.959253 +2022,12,3,1,New South Wales,153.359672,-28.644672 +2022,3,29,1,New South Wales,151.413159,-30.640537 +2020,7,26,1,New South Wales,153.629155,-28.639487 +2023,1,18,1,New South Wales,153.496948,-28.693798 +2021,6,4,1,New South Wales,150.519469,-34.447968 +2021,5,17,1,New South Wales,150.606693,-34.436887 +2021,12,28,1,New South Wales,153.469064,-28.921733 +2021,6,17,1,New South Wales,150.604247,-34.437975 +2020,4,9,1,New South Wales,152.720855,-30.147792 +2020,1,12,1,New South Wales,152.878235,-31.455063 +2024,4,19,1,New South Wales,151.060476,-29.747273 +2021,7,12,1,New South Wales,150.626233,-34.421221 +2021,6,11,1,New South Wales,150.64578,-34.397284 +2021,4,24,1,New South Wales,150.610279,-34.419107 +2020,10,,1,New South Wales,151.676385,-30.522309 +2022,11,23,1,New South Wales,152.786631,-31.629219 +2021,8,13,1,New South Wales,149.525568,-33.562382 +2020,5,7,1,New South Wales,153.383996,-28.904624 +2021,10,9,1,New South Wales,153.101773,-29.489395 +2020,10,15,1,New South Wales,153.109392,-30.298612 +2022,1,28,1,New South Wales,151.951824,-32.313847 +2020,3,10,1,New South Wales,152.915131,-31.455806 +2023,11,3,1,New South Wales,150.485535,-34.399947 +2022,11,22,1,New South Wales,152.820191,-31.461362 +2021,7,8,1,New South Wales,150.630954,-34.388856 +2020,7,24,1,New South Wales,150.828382,-34.091467 +2021,5,5,1,New South Wales,150.637355,-34.423807 +2021,5,24,1,New South Wales,150.527435,-34.469378 +2021,5,24,1,New South Wales,150.638886,-34.492697 +2020,10,13,1,New South Wales,149.930096,-36.638123 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2023,9,25,1,New South Wales,153.268421,-28.92962 +2021,9,23,1,New South Wales,153.618086,-28.660196 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2021,12,16,1,New South Wales,150.616041,-34.438783 +2023,8,26,1,New South Wales,153.360693,-28.808055 +2024,2,15,1,New South Wales,152.073064,-32.724694 +2023,12,12,1,New South Wales,152.20779,-32.027673 +2023,9,9,1,New South Wales,150.78266,-33.718742 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2020,1,5,1,New South Wales,153.103827,-29.485576 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2020,5,12,1,New South Wales,152.411729,-31.934865 +2023,7,30,1,New South Wales,150.838247,-34.055548 +2020,9,2,1,New South Wales,153.10372,-29.485702 +2020,10,14,1,New South Wales,149.930096,-36.638123 +2021,9,17,1,New South Wales,152.878835,-31.448372 +2021,7,30,1,New South Wales,150.517438,-34.439037 +2021,5,30,1,New South Wales,150.609542,-34.449934 +2020,1,8,1,New South Wales,152.915126,-31.455225 +2023,12,28,1,New South Wales,152.963712,-31.255599 +2024,4,16,1,New South Wales,150.996267,-34.061174 +2023,1,7,1,New South Wales,153.103468,-29.485576 +2021,6,3,1,New South Wales,150.613845,-34.43718 +2020,11,16,1,New South Wales,149.962048,-36.514707 +2021,6,9,1,New South Wales,150.605717,-34.437535 +2020,11,28,1,New South Wales,149.976313,-36.439844 +2021,4,29,1,New South Wales,150.000139,-36.572676 +2020,10,30,1,New South Wales,149.967242,-36.561675 +2021,4,29,1,New South Wales,150.606694,-34.434949 +2021,5,10,1,New South Wales,150.518419,-34.451841 +2021,5,19,1,New South Wales,150.633601,-34.418434 +2021,6,30,1,New South Wales,153.274981,-28.856616 +2021,7,22,1,New South Wales,150.516039,-34.444734 +2021,5,10,1,New South Wales,150.521841,-34.466416 +2023,9,22,1,New South Wales,150.945366,-29.82424 +2021,8,8,1,New South Wales,150.605809,-34.426313 +2021,4,15,1,New South Wales,150.522868,-34.452265 +2020,5,14,1,New South Wales,153.097159,-29.486762 +2021,5,20,1,New South Wales,150.631013,-34.387523 +2023,8,15,1,New South Wales,152.896986,-31.475427 +2020,9,22,1,New South Wales,152.899371,-31.443834 +2020,12,29,1,New South Wales,152.893086,-31.454902 +2021,1,13,1,New South Wales,152.899239,-29.630846 +2022,6,19,1,New South Wales,153.104401,-29.482933 +2021,6,7,1,New South Wales,152.929462,-29.726753 +2023,7,27,1,New South Wales,153.307824,-28.84965 +2021,5,23,1,New South Wales,150.528645,-34.470439 +2021,5,24,1,New South Wales,150.639227,-34.492983 +2024,1,2,1,New South Wales,150.784123,-33.71901 +2022,11,23,1,New South Wales,152.794945,-30.901933 +2021,4,30,1,New South Wales,150.517453,-34.445862 +2020,10,13,1,New South Wales,149.930096,-36.638123 +2021,8,31,1,New South Wales,150.566447,-34.460307 +2021,6,17,1,New South Wales,150.622607,-34.384051 +2023,9,27,1,New South Wales,153.209038,-28.902001 +2021,6,23,1,New South Wales,150.52039,-34.465773 +2021,5,1,1,New South Wales,150.618856,-34.429687 +2021,12,7,1,New South Wales,152.879351,-31.448427 +2021,11,5,1,New South Wales,150.800086,-34.117826 +2023,5,11,1,New South Wales,153.110302,-29.490147 +2020,4,14,1,New South Wales,152.922663,-31.466932 +2023,2,17,1,New South Wales,153.108167,-29.490292 +2021,9,10,1,New South Wales,152.914608,-31.455018 +2022,7,5,1,New South Wales,150.967967,-32.243631 +2020,11,23,1,New South Wales,153.589469,-28.832918 +2021,3,3,1,New South Wales,150.604679,-34.439237 +2021,7,16,1,New South Wales,150.645756,-34.397364 +2023,9,26,1,New South Wales,151.199524,-33.124375 +2023,5,9,1,New South Wales,153.31657,-28.912713 +2020,10,12,1,New South Wales,152.962579,-31.210386 +2023,5,8,1,New South Wales,153.317468,-28.815186 +2022,3,26,1,New South Wales,153.402021,-28.259484 +2023,9,25,1,New South Wales,152.895472,-31.430738 +2020,7,14,1,New South Wales,153.498076,-28.310977 +2023,9,6,1,New South Wales,152.919622,-31.468342 +2021,9,5,1,New South Wales,150.522427,-34.464264 +2022,11,22,1,New South Wales,152.890106,-31.437282 +2021,4,20,1,New South Wales,150.525868,-34.464947 +2021,9,20,1,New South Wales,152.901753,-31.257938 +2021,6,18,1,New South Wales,150.514098,-34.446344 +2021,4,19,1,New South Wales,150.65932,-34.457371 +2021,5,16,1,New South Wales,150.640535,-34.494081 +2021,3,29,1,New South Wales,153.109392,-30.298612 +2021,4,18,1,New South Wales,150.515442,-34.443586 +2021,7,20,1,New South Wales,150.514362,-34.444772 +2022,7,3,1,New South Wales,152.040981,-32.735437 +2021,6,23,1,New South Wales,150.604262,-34.438967 +2023,8,22,1,New South Wales,152.926802,-29.728044 +2021,5,5,1,New South Wales,150.609498,-34.419046 +2021,4,28,1,New South Wales,150.602819,-34.435405 +2023,11,3,1,New South Wales,152.792919,-31.642025 +2023,8,11,1,New South Wales,149.545615,-33.492907 +2020,9,10,1,New South Wales,153.296605,-28.814346 +2023,10,6,1,New South Wales,152.897493,-31.427239 +2022,10,2,1,New South Wales,152.924794,-31.454075 +2022,12,22,1,New South Wales,149.551968,-33.491215 +2021,5,22,1,New South Wales,150.515608,-34.450846 +2021,3,7,1,New South Wales,150.520661,-34.455501 +2021,11,3,1,New South Wales,152.899636,-29.630911 +2020,11,1,1,New South Wales,149.976368,-36.555504 +2021,1,19,1,New South Wales,152.941748,-30.494096 +2020,1,12,1,New South Wales,153.108178,-29.490231 +2020,5,12,1,New South Wales,153.103857,-29.485357 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,3,23,1,New South Wales,152.927602,-31.464468 +2024,2,13,1,New South Wales,153.095164,-29.483498 +2021,3,9,1,New South Wales,153.277658,-28.937798 +2023,9,4,1,New South Wales,153.508004,-28.618147 +2021,8,5,1,New South Wales,150.632603,-34.418324 +2020,12,9,1,New South Wales,153.300206,-28.886464 +2021,8,27,1,New South Wales,150.522368,-34.466237 +2021,4,17,1,New South Wales,150.634919,-34.485904 +2021,8,2,1,New South Wales,153.102969,-29.489419 +2021,6,7,1,New South Wales,150.52809,-34.465614 +2021,5,10,1,New South Wales,150.521335,-34.466586 +2021,3,24,1,New South Wales,150.534632,-34.462275 +2021,4,27,1,New South Wales,150.602084,-34.425708 +2021,6,6,1,New South Wales,150.630552,-34.420854 +2020,7,17,1,New South Wales,152.811327,-29.515065 +2021,5,26,1,New South Wales,150.516353,-34.449951 +2021,2,25,1,New South Wales,150.613083,-34.429935 +2021,9,28,1,New South Wales,152.831974,-31.472531 +2023,4,11,1,New South Wales,152.803852,-31.604206 +2021,4,27,1,New South Wales,150.602086,-34.425636 +2021,5,5,1,New South Wales,150.603336,-34.427202 +2022,11,8,1,New South Wales,152.183721,-32.716302 +2021,6,21,1,New South Wales,150.514133,-34.445912 +2020,10,14,1,New South Wales,149.930096,-36.638123 +2021,10,31,1,New South Wales,150.529258,-34.387419 +2021,7,1,1,New South Wales,150.51328,-34.447869 +2021,3,14,1,New South Wales,153.103382,-29.486407 +2023,9,22,1,New South Wales,151.693592,-30.48117 +2020,6,8,1,New South Wales,153.561693,-28.380941 +2020,4,10,1,New South Wales,152.391488,-31.203566 +2022,4,25,1,New South Wales,153.293201,-28.864665 +2020,11,1,1,New South Wales,149.976368,-36.555504 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2021,7,3,1,New South Wales,150.627057,-34.420948 +2021,4,15,1,New South Wales,149.43508,-33.539183 +2021,11,3,1,New South Wales,152.928477,-31.46068 +2022,8,8,1,New South Wales,150.516057,-34.437976 +2021,4,24,1,New South Wales,150.634502,-34.420029 +2021,4,27,1,New South Wales,150.602009,-34.42567 +2024,8,30,1,New South Wales,151.974883,-32.564607 +2020,9,19,1,New South Wales,150.062838,-33.778301 +2022,12,3,1,New South Wales,153.299474,-28.819384 +2021,5,31,1,New South Wales,150.60718,-34.437771 +2023,12,5,1,New South Wales,152.925143,-31.454104 +2022,8,1,1,New South Wales,150.795236,-34.132345 +2023,5,11,1,New South Wales,152.864964,-31.297636 +2021,4,21,1,New South Wales,150.632971,-34.392934 +2022,3,5,1,New South Wales,152.910213,-31.458245 +2021,4,16,1,New South Wales,150.630082,-34.39433 +2021,3,8,1,New South Wales,150.602978,-34.437076 +2021,6,26,1,New South Wales,150.514364,-34.447296 +2021,7,9,1,New South Wales,150.520511,-34.465722 +2021,8,26,1,New South Wales,150.641019,-34.393288 +2020,11,19,1,New South Wales,149.966791,-36.502277 +2023,5,24,1,New South Wales,151.789246,-32.654702 +2021,5,11,1,New South Wales,150.633116,-34.417505 +2021,6,4,1,New South Wales,152.874028,-31.430327 +2021,9,30,1,New South Wales,150.595561,-34.514666 +2021,7,17,1,New South Wales,152.924545,-29.728939 +2020,11,25,1,New South Wales,150.104524,-33.774293 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2021,7,8,1,New South Wales,150.59746,-34.41469 +2022,8,30,1,New South Wales,152.851231,-29.693116 +2020,8,5,1,New South Wales,152.888795,-30.172503 +2022,3,8,1,New South Wales,153.576078,-28.845735 +2022,7,5,1,New South Wales,152.908709,-31.488715 +2021,9,16,1,New South Wales,152.08478,-32.729647 +2021,5,16,1,New South Wales,150.614827,-34.453166 +2020,10,26,1,New South Wales,152.106615,-32.728964 +2022,7,5,1,New South Wales,150.960447,-32.236293 +2021,5,29,1,New South Wales,150.639173,-34.491404 +2020,11,16,1,New South Wales,153.558805,-28.38969 +2021,4,2,1,New South Wales,150.531972,-34.460211 +2021,7,6,1,New South Wales,150.631103,-34.387417 +2021,12,1,1,New South Wales,150.110489,-31.000351 +2022,1,16,1,New South Wales,152.824706,-29.505144 +2021,5,13,1,New South Wales,150.516619,-34.449028 +2024,4,21,1,New South Wales,152.389131,-31.970298 +2022,4,2,1,New South Wales,153.110243,-29.490287 +2021,11,19,1,New South Wales,153.101301,-29.48968 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2020,9,19,1,New South Wales,153.555834,-28.398963 +2021,4,30,1,New South Wales,150.606922,-34.454436 +2021,8,8,1,New South Wales,150.641011,-34.397066 +2022,9,21,1,New South Wales,149.936104,-32.322436 +2022,6,24,1,New South Wales,151.286033,-30.610471 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2021,5,13,1,New South Wales,150.60457,-34.438865 +2024,1,21,1,New South Wales,152.541761,-32.330298 +2023,9,4,1,New South Wales,153.071024,-30.885054 +2023,3,20,1,New South Wales,153.095786,-29.484763 +2022,6,17,1,New South Wales,153.101955,-29.488854 +2021,4,30,1,New South Wales,150.610347,-34.419018 +2022,5,13,1,New South Wales,153.103811,-29.485548 +2021,11,4,1,New South Wales,152.899529,-31.472569 +2021,6,12,1,New South Wales,150.611895,-34.431895 +2021,4,22,1,New South Wales,150.631229,-34.387582 +2021,5,7,1,New South Wales,150.605576,-34.437902 +2021,5,22,1,New South Wales,150.607707,-34.432634 +2020,11,,1,New South Wales,150.620818,-34.350933 +2020,12,15,1,New South Wales,151.303696,-33.318389 +2021,9,18,1,New South Wales,150.200421,-29.354409 +2021,4,30,1,New South Wales,150.637861,-34.488909 +2020,10,23,1,New South Wales,149.919967,-36.589766 +2023,8,20,1,New South Wales,153.226116,-28.887305 +2021,5,1,1,New South Wales,150.608948,-34.434894 +2021,4,3,1,New South Wales,150.615173,-34.436395 +2023,4,16,1,New South Wales,153.103854,-29.489587 +2021,5,16,1,New South Wales,150.603953,-34.437203 +2021,5,28,1,New South Wales,150.518436,-34.442438 +2021,3,7,1,New South Wales,150.794506,-34.190155 +2021,4,22,1,New South Wales,150.633024,-34.392972 +2023,8,10,1,New South Wales,152.959172,-29.561416 +2023,4,7,1,New South Wales,153.110544,-29.490105 +2021,11,17,1,New South Wales,153.295738,-28.820356 +2021,5,31,1,New South Wales,150.631287,-34.420237 +2021,6,3,1,New South Wales,150.519558,-34.447167 +2023,8,17,1,New South Wales,152.567714,-28.886731 +2023,10,9,1,New South Wales,152.435797,-31.947218 +2020,10,13,1,New South Wales,152.784233,-31.370483 +2021,10,14,1,New South Wales,152.728863,-30.166618 +2022,8,4,1,New South Wales,152.87435,-31.494293 +2022,2,6,1,New South Wales,152.103937,-32.759739 +2023,4,7,1,New South Wales,153.434038,-28.732183 +2023,5,24,1,New South Wales,153.096204,-29.485095 +2023,8,10,1,New South Wales,153.612458,-28.663819 +2023,6,5,1,New South Wales,150.871804,-34.044639 +2021,6,16,1,New South Wales,150.630234,-34.420938 +2024,1,12,1,New South Wales,150.784244,-33.717718 +2022,4,3,1,New South Wales,150.812345,-34.124693 +2021,5,1,1,New South Wales,150.607946,-34.455556 +2020,10,20,1,New South Wales,153.296004,-28.818579 +2022,8,3,1,New South Wales,150.794328,-34.147009 +2023,10,25,1,New South Wales,151.656983,-30.522373 +2020,11,,1,New South Wales,152.819577,-31.542417 +2021,9,15,1,New South Wales,150.291083,-33.704428 +2023,9,4,1,New South Wales,152.924369,-31.460091 +2022,7,26,1,New South Wales,152.809751,-31.140276 +2021,4,20,1,New South Wales,150.65984,-34.457083 +2023,9,20,1,New South Wales,152.919619,-31.469096 +2022,11,28,1,New South Wales,152.764422,-30.891124 +2021,5,13,1,New South Wales,150.52525,-34.464105 +2020,11,6,1,New South Wales,150.010499,-36.556654 +2021,4,19,1,New South Wales,150.616802,-34.430386 +2020,1,8,1,New South Wales,152.867666,-29.691643 +2022,12,24,1,New South Wales,152.063299,-32.706088 +2021,3,21,1,New South Wales,150.615353,-34.435812 +2021,4,30,1,New South Wales,150.608854,-34.435144 +2021,8,16,1,New South Wales,150.606734,-34.431271 +2020,11,16,1,New South Wales,150.004563,-36.508695 +2020,5,17,1,New South Wales,149.315401,-36.067445 +2023,9,5,1,New South Wales,151.812605,-32.579085 +2021,5,26,1,New South Wales,150.526677,-34.469624 +2020,1,26,1,New South Wales,152.041034,-32.737604 +2021,9,12,1,New South Wales,151.817463,-32.34057 +2023,2,28,1,New South Wales,150.828991,-34.077732 +2021,1,10,1,New South Wales,152.413281,-31.944046 +2022,11,28,1,New South Wales,152.788781,-30.895519 +2021,5,19,1,New South Wales,150.640428,-34.494016 +2021,10,29,1,New South Wales,153.103747,-29.485538 +2022,8,20,1,New South Wales,150.879594,-34.014382 +2021,6,19,1,New South Wales,150.619121,-34.436859 +2020,1,9,1,New South Wales,153.336688,-28.868027 +2020,10,21,1,New South Wales,149.923643,-36.618562 +2021,5,30,1,New South Wales,152.865958,-29.641626 +2020,5,,1,New South Wales,152.007748,-32.727342 +2021,7,3,1,New South Wales,150.627003,-34.420938 +2021,10,10,1,New South Wales,153.271913,-28.738086 +2021,5,3,1,New South Wales,150.520678,-34.436534 +2023,8,14,1,New South Wales,153.302464,-28.846215 +2023,8,27,1,New South Wales,152.782715,-31.630254 +2024,8,7,1,New South Wales,152.335517,-31.950185 +2021,5,11,1,New South Wales,150.616424,-34.43449 +2021,5,29,1,New South Wales,150.602687,-34.424791 +2023,7,20,1,New South Wales,153.004046,-28.524027 +2023,4,4,1,New South Wales,153.317755,-28.827612 +2022,6,1,1,New South Wales,152.926878,-31.454751 +2021,8,5,1,New South Wales,152.06153,-32.710795 +2021,6,9,1,New South Wales,150.626527,-34.386174 +2021,6,8,1,New South Wales,150.528148,-34.457023 +2022,6,16,1,New South Wales,150.897103,-34.011762 +2022,4,24,1,New South Wales,152.355432,-31.909968 +2021,7,9,1,New South Wales,150.513172,-34.447109 +2023,3,20,1,New South Wales,152.709367,-31.81557 +2021,3,13,1,New South Wales,150.520434,-34.467244 +2020,4,10,1,New South Wales,150.105773,-34.970239 +2021,4,28,1,New South Wales,150.636189,-34.421937 +2021,1,20,1,New South Wales,152.915736,-31.482605 +2023,4,25,1,New South Wales,151.790104,-32.654353 +2022,7,27,1,New South Wales,153.205077,-28.74311 +2023,1,13,1,New South Wales,153.629643,-28.637218 +2023,11,12,1,New South Wales,150.786028,-33.711191 +2021,5,5,1,New South Wales,150.609146,-34.418769 +2024,4,20,1,New South Wales,150.825496,-34.150131 +2020,1,22,1,New South Wales,153.341302,-28.807128 +2021,5,22,1,New South Wales,150.518311,-34.451442 +2022,8,8,1,New South Wales,153.104321,-29.477207 +2024,2,4,1,New South Wales,152.602382,-31.651665 +2021,6,22,1,New South Wales,150.520679,-34.453789 +2022,1,17,1,New South Wales,152.063414,-32.706407 +2024,3,22,1,New South Wales,152.380618,-31.919748 +2021,7,2,1,New South Wales,150.626979,-34.421019 +2021,5,2,1,New South Wales,150.663488,-34.458578 +2021,5,30,1,New South Wales,150.523924,-34.464069 +2020,12,7,1,New South Wales,151.704695,-32.630046 +2022,9,22,1,New South Wales,152.912152,-31.476751 +2021,5,6,1,New South Wales,150.615642,-34.435989 +2021,9,9,1,New South Wales,150.808987,-34.208693 +2020,11,8,1,New South Wales,150.866027,-34.060984 +2022,1,29,1,New South Wales,153.104149,-29.478688 +2021,8,15,1,New South Wales,152.090012,-32.739577 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2021,8,7,1,New South Wales,150.632613,-34.418342 +2022,11,30,1,New South Wales,152.063775,-32.706747 +2021,6,1,1,New South Wales,150.628201,-34.390065 +2020,10,13,1,New South Wales,152.485682,-32.16053 +2022,1,2,1,New South Wales,152.370912,-28.570297 +2020,10,19,1,New South Wales,149.930096,-36.638123 +2024,1,6,1,New South Wales,152.374318,-31.915428 +2021,6,2,1,New South Wales,150.529172,-34.464743 +2021,4,6,1,New South Wales,150.530116,-34.458938 +2020,11,6,1,New South Wales,150.007338,-36.56122 +2021,5,25,1,New South Wales,150.603103,-34.434978 +2021,8,8,1,New South Wales,150.848175,-34.065877 +2021,5,24,1,New South Wales,150.631484,-34.387812 +2021,8,13,1,New South Wales,153.561545,-28.385605 +2023,6,8,1,New South Wales,153.104262,-29.480205 +2020,10,14,1,New South Wales,149.930096,-36.638123 +2022,1,25,1,New South Wales,153.518454,-28.416309 +2020,10,30,1,New South Wales,149.977333,-36.564828 +2024,6,12,1,New South Wales,152.897833,-31.157916 +2021,4,18,1,New South Wales,150.604326,-34.425671 +2020,11,29,1,New South Wales,153.460843,-28.951803 +2023,9,26,1,New South Wales,150.872528,-34.108288 +2023,7,23,1,New South Wales,152.867388,-30.40063 +2023,12,1,1,New South Wales,150.701879,-29.634028 +2020,11,19,1,New South Wales,149.989088,-36.503585 +2020,10,6,1,New South Wales,153.346803,-29.060314 +2021,4,18,1,New South Wales,150.634884,-34.485984 +2021,8,5,1,New South Wales,150.513188,-34.445857 +2022,8,30,1,New South Wales,149.318031,-36.298453 +2022,1,8,1,New South Wales,150.994223,-34.071525 +2023,12,30,1,New South Wales,153.109664,-29.490147 +2021,7,7,1,New South Wales,150.642186,-34.396295 +2023,3,24,1,New South Wales,153.410278,-28.724932 +2022,1,3,1,New South Wales,150.968763,-34.121293 +2021,5,13,1,New South Wales,150.616746,-34.434631 +2024,1,19,1,New South Wales,152.294656,-31.646417 +2021,6,27,1,New South Wales,150.644894,-34.391244 +2021,6,19,1,New South Wales,150.519105,-34.459923 +2020,10,21,1,New South Wales,149.947183,-36.617465 +2021,5,17,1,New South Wales,150.524172,-34.463037 +2021,12,9,1,New South Wales,153.108183,-29.490665 +2021,10,25,1,New South Wales,152.173702,-29.889732 +2023,11,1,1,New South Wales,152.704428,-31.533617 +2021,8,30,1,New South Wales,150.514525,-34.447362 +2021,9,24,1,New South Wales,152.983255,-28.62063 +2020,11,2,1,New South Wales,149.977333,-36.564828 +2023,10,22,1,New South Wales,152.785748,-31.629527 +2023,4,1,1,New South Wales,153.217972,-28.830391 +2020,10,30,1,New South Wales,149.945227,-36.57753 +2021,6,8,1,New South Wales,150.614039,-34.433028 +2021,7,2,1,New South Wales,150.639691,-34.397987 +2021,4,29,1,New South Wales,150.603643,-34.427505 +2021,3,11,1,New South Wales,150.524266,-34.461326 +2020,10,13,1,New South Wales,149.880784,-36.581514 +2022,4,1,1,New South Wales,146.547548,-34.751612 +2023,11,14,1,New South Wales,152.870644,-31.464393 +2020,10,31,1,New South Wales,149.977333,-36.564828 +2021,7,12,1,New South Wales,150.597242,-34.409764 +2022,11,18,1,New South Wales,152.788781,-30.895519 +2021,5,4,1,New South Wales,150.611679,-34.419621 +2020,8,10,1,New South Wales,153.094984,-29.483507 +2021,6,25,1,New South Wales,150.514402,-34.447468 +2021,5,13,1,New South Wales,150.516432,-34.449096 +2021,5,14,1,New South Wales,150.520474,-34.454118 +2020,6,16,1,New South Wales,153.109615,-29.492753 +2022,9,22,1,New South Wales,153.313984,-28.851919 +2021,6,2,1,New South Wales,150.626087,-34.390583 +2020,1,11,1,New South Wales,152.925074,-31.459831 +2021,12,19,1,New South Wales,153.484382,-28.633989 +2023,5,26,1,New South Wales,150.73258,-34.25225 +2021,5,1,1,New South Wales,150.634767,-34.423766 +2024,4,3,1,New South Wales,153.468753,-28.556548 +2021,8,25,1,New South Wales,150.492113,-34.483971 +2021,6,24,1,New South Wales,150.625186,-34.386689 +2024,6,7,1,New South Wales,152.927689,-31.449896 +2024,4,19,1,New South Wales,152.745219,-31.201103 +2020,9,14,1,New South Wales,152.355785,-31.85809 +2021,3,19,1,New South Wales,150.517384,-34.446366 +2021,8,2,1,New South Wales,150.508498,-34.465991 +2021,5,8,1,New South Wales,150.518367,-34.451371 +2021,10,7,1,New South Wales,150.790596,-34.188134 +2021,7,18,1,New South Wales,150.645279,-34.393019 +2022,12,29,1,New South Wales,150.470616,-34.491196 +2022,11,4,1,New South Wales,153.527144,-28.684339 +2021,5,8,1,New South Wales,150.521435,-34.466516 +2021,5,25,1,New South Wales,150.517335,-34.452053 +2021,12,6,1,New South Wales,153.283318,-28.830756 +2021,4,7,1,New South Wales,150.517457,-34.446097 +2023,6,7,1,New South Wales,150.884903,-34.06142 +2021,6,15,1,New South Wales,150.615567,-34.432093 +2021,4,18,1,New South Wales,150.609266,-34.41878 +2021,5,17,1,New South Wales,150.606661,-34.436869 +2021,4,21,1,New South Wales,150.636952,-34.422682 +2020,1,27,1,New South Wales,152.924717,-31.463587 +2021,5,3,1,New South Wales,150.606707,-34.456226 +2023,9,7,1,New South Wales,153.110635,-29.487556 +2021,6,25,1,New South Wales,150.522504,-34.464238 +2021,8,10,1,New South Wales,150.64683,-34.401325 +2021,1,2,1,New South Wales,153.390153,-28.876766 +2020,11,17,1,New South Wales,149.957517,-36.504679 +2023,11,1,1,New South Wales,152.782367,-31.484628 +2020,11,16,1,New South Wales,153.316984,-28.937089 +2023,1,3,1,New South Wales,152.734195,-30.380012 +2020,10,26,1,New South Wales,153.385091,-28.827832 +2023,9,26,1,New South Wales,150.871597,-34.105583 +2020,11,6,1,New South Wales,153.104133,-29.484165 +2021,9,15,1,New South Wales,150.529159,-34.47255 +2021,9,17,1,New South Wales,150.808987,-34.208693 +2023,10,22,1,New South Wales,151.858188,-32.051029 +2020,10,27,1,New South Wales,152.893844,-31.443116 +2021,6,25,1,New South Wales,150.514324,-34.447538 +2022,10,26,1,New South Wales,146.565419,-34.757477 +2021,9,23,1,New South Wales,150.808987,-34.208693 +2022,8,18,1,New South Wales,153.212903,-28.882773 +2021,4,28,1,New South Wales,150.609555,-34.418957 +2023,9,21,1,New South Wales,152.604958,-30.343887 +2024,3,22,1,New South Wales,152.383563,-31.927624 +2020,10,30,1,New South Wales,149.955017,-36.576791 +2023,12,22,1,New South Wales,150.78395,-33.716936 +2020,11,3,1,New South Wales,149.955017,-36.576791 +2020,10,12,1,New South Wales,149.959933,-36.657162 +2021,9,9,1,New South Wales,150.521362,-34.464919 +2020,10,11,1,New South Wales,149.959933,-36.657162 +2021,6,30,1,New South Wales,150.642567,-34.395509 +2023,9,2,1,New South Wales,153.322479,-28.827651 +2020,1,28,1,New South Wales,152.912587,-31.477482 +2022,4,23,1,New South Wales,153.10997,-29.490278 +2021,6,15,1,New South Wales,150.515624,-34.459492 +2021,6,21,1,New South Wales,150.627941,-34.420839 +2021,4,25,1,New South Wales,150.609554,-34.418984 +2021,11,16,1,New South Wales,152.826226,-29.809858 +2020,1,25,1,New South Wales,153.104122,-29.480028 +2020,7,6,1,New South Wales,153.480811,-28.249102 +2021,7,26,1,New South Wales,150.285785,-33.271566 +2022,11,16,1,New South Wales,153.079011,-30.353222 +2022,5,1,1,New South Wales,151.519104,-30.521125 +2020,11,,1,New South Wales,150.582596,-34.498724 +2020,9,6,1,New South Wales,153.109392,-30.298612 +2021,7,3,1,New South Wales,150.513927,-34.446971 +2022,8,28,1,New South Wales,153.553656,-28.360172 +2021,7,6,1,New South Wales,150.639294,-34.398169 +2023,8,22,1,New South Wales,150.785129,-33.718216 +2021,4,18,1,New South Wales,150.617036,-34.430571 +2020,11,28,1,New South Wales,149.959252,-36.447255 +2022,11,25,1,New South Wales,152.794945,-30.901933 +2024,9,26,1,New South Wales,150.989748,-32.978968 +2023,8,29,1,New South Wales,153.295364,-28.713379 +2022,9,12,1,New South Wales,152.877448,-31.144825 +2021,1,16,1,New South Wales,153.561739,-28.367331 +2023,1,11,1,New South Wales,153.510417,-28.809671 +2020,11,6,1,New South Wales,150.010499,-36.556654 +2020,10,19,1,New South Wales,149.913134,-36.588285 +2021,3,8,1,New South Wales,150.604492,-34.43816 +2020,12,10,1,New South Wales,153.555948,-28.398935 +2023,8,5,1,New South Wales,153.171154,-28.631323 +2021,2,6,1,New South Wales,153.375193,-28.697854 +2020,12,11,1,New South Wales,150.055885,-33.767616 +2023,9,12,1,New South Wales,153.399865,-28.960715 +2020,6,28,1,New South Wales,153.102888,-29.487173 +2023,11,13,1,New South Wales,152.80716,-29.575004 +2023,5,18,1,New South Wales,152.770125,-29.637159 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2021,6,10,1,New South Wales,150.521578,-34.465734 +2022,9,30,1,New South Wales,152.903023,-30.23931 +2023,11,1,1,New South Wales,152.677467,-31.51058 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2021,10,25,1,New South Wales,152.156411,-32.100867 +2021,4,16,1,New South Wales,150.631239,-34.393388 +2020,11,1,1,New South Wales,149.976368,-36.555504 +2023,8,10,1,New South Wales,153.07025,-30.88572 +2020,1,2,1,New South Wales,153.454735,-28.615442 +2020,7,11,1,New South Wales,153.22336,-28.943812 +2020,10,29,1,New South Wales,149.976368,-36.555504 +2023,11,19,1,New South Wales,150.987011,-34.042728 +2021,8,23,1,New South Wales,150.639604,-34.397219 +2023,10,9,1,New South Wales,152.017084,-32.733376 +2021,5,1,1,New South Wales,150.610382,-34.420091 +2023,3,31,1,New South Wales,152.747549,-31.448774 +2020,4,7,1,New South Wales,151.880407,-32.491055 +2021,5,24,1,New South Wales,150.526678,-34.469588 +2023,11,4,1,New South Wales,152.832792,-30.436667 +2022,2,11,1,New South Wales,153.101553,-29.489704 +2021,6,21,1,New South Wales,150.628019,-34.421147 +2020,3,8,1,New South Wales,152.063403,-32.705541 +2022,6,23,1,New South Wales,153.10401,-29.484371 +2021,10,6,1,New South Wales,152.889349,-31.444292 +2022,5,10,1,New South Wales,151.106083,-33.228143 +2022,9,2,1,New South Wales,152.591196,-31.796895 +2021,5,7,1,New South Wales,150.637324,-34.423744 +2020,5,4,1,New South Wales,152.472497,-28.280407 +2022,8,6,1,New South Wales,153.103715,-29.485613 +2021,5,4,1,New South Wales,150.606579,-34.457674 +2023,3,31,1,New South Wales,153.159096,-28.924929 +2024,5,7,1,New South Wales,152.132529,-32.199624 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2021,1,23,1,New South Wales,151.60505,-32.578884 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2021,8,10,1,New South Wales,150.641311,-34.40304 +2021,1,9,1,New South Wales,153.327647,-28.817008 +2023,12,29,1,New South Wales,150.785087,-33.710812 +2023,4,20,1,New South Wales,152.903765,-31.326927 +2021,4,30,1,New South Wales,150.635372,-34.419676 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2023,5,18,1,New South Wales,153.276354,-28.819255 +2020,10,21,1,New South Wales,150.059246,-33.772861 +2021,4,18,1,New South Wales,150.63739,-34.421797 +2023,6,4,1,New South Wales,150.808563,-34.098206 +2021,12,15,1,New South Wales,152.090707,-32.738386 +2023,4,9,1,New South Wales,150.606341,-29.873659 +2022,11,29,1,New South Wales,152.064593,-32.70907 +2021,10,11,1,New South Wales,153.262628,-28.951265 +2021,6,27,1,New South Wales,150.627414,-34.420243 +2020,9,30,1,New South Wales,152.510302,-31.936905 +2020,10,28,1,New South Wales,153.463836,-28.320689 +2021,7,4,1,New South Wales,150.603106,-34.417722 +2022,11,19,1,New South Wales,153.300295,-28.817349 +2020,10,,1,New South Wales,153.599218,-28.719867 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2021,1,11,1,New South Wales,153.374722,-28.2525 +2022,11,9,1,New South Wales,153.398066,-29.01557 +2021,7,6,1,New South Wales,150.627188,-34.420942 +2022,6,4,1,New South Wales,153.104144,-29.480827 +2023,12,19,1,New South Wales,152.870213,-31.46395 +2021,11,19,1,New South Wales,153.103741,-29.485632 +2023,4,24,1,New South Wales,150.813678,-34.104761 +2020,10,29,1,New South Wales,149.958519,-36.587122 +2020,2,13,1,New South Wales,153.298809,-28.888959 +2022,8,19,1,New South Wales,153.495403,-28.693316 +2023,12,6,1,New South Wales,152.796852,-31.63738 +2021,11,10,1,New South Wales,152.893115,-31.446849 +2021,3,27,1,New South Wales,150.516751,-34.446425 +2023,11,15,1,New South Wales,150.786239,-33.712535 +2024,2,10,1,New South Wales,153.108162,-29.490581 +2020,11,2,1,New South Wales,149.945227,-36.57753 +2020,10,15,1,New South Wales,149.949786,-36.632867 +2022,11,16,1,New South Wales,152.063764,-32.706538 +2022,2,22,1,New South Wales,151.168349,-33.12666 +2023,1,3,1,New South Wales,152.356581,-32.096996 +2021,5,6,1,New South Wales,150.519993,-34.435772 +2021,6,9,1,New South Wales,150.517986,-34.447703 +2021,5,19,1,New South Wales,150.63,-34.395302 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2021,5,23,1,New South Wales,150.639096,-34.492981 +2021,9,18,1,New South Wales,150.615588,-34.450882 +2021,5,15,1,New South Wales,150.529353,-34.467812 +2021,4,25,1,New South Wales,150.520778,-34.450807 +2021,6,24,1,New South Wales,150.645276,-34.393145 +2020,6,2,1,New South Wales,153.089446,-30.319099 +2021,2,23,1,New South Wales,153.292751,-28.864745 +2021,5,19,1,New South Wales,150.530208,-34.470958 +2020,9,14,1,New South Wales,153.095325,-29.483904 +2023,9,13,1,New South Wales,152.108516,-32.592014 +2020,10,29,1,New South Wales,149.967242,-36.561675 +2020,1,28,1,New South Wales,153.352187,-28.695396 +2020,3,3,1,New South Wales,151.726,-32.67 +2022,1,29,1,New South Wales,153.101226,-29.489928 +2024,6,17,1,New South Wales,153.413378,-29.031491 +2023,5,10,1,New South Wales,153.479409,-28.249367 +2021,5,30,1,New South Wales,150.6064,-34.43763 +2023,5,30,1,New South Wales,152.159378,-31.626185 +2021,8,27,1,New South Wales,152.847035,-31.545537 +2020,2,4,1,New South Wales,152.901014,-31.442508 +2021,5,21,1,New South Wales,150.599486,-34.429795 +2024,9,5,1,New South Wales,150.740497,-33.501078 +2021,6,7,1,New South Wales,150.532778,-34.458722 +2020,10,15,1,New South Wales,152.898844,-31.457231 +2021,3,18,1,New South Wales,150.517239,-34.451628 +2020,10,26,1,New South Wales,149.976368,-36.555504 +2020,7,28,1,New South Wales,152.798537,-31.124819 +2021,6,14,1,New South Wales,150.520434,-34.465774 +2020,10,11,1,New South Wales,149.959933,-36.657162 +2020,11,3,1,New South Wales,150.49963,-34.4474 +2020,10,19,1,New South Wales,149.938155,-36.621708 +2020,8,22,1,New South Wales,153.454341,-28.653446 +2023,9,27,1,New South Wales,152.619513,-30.341332 +2020,8,12,1,New South Wales,153.593559,-28.723846 +2020,10,18,1,New South Wales,153.038863,-30.883362 +2024,1,29,1,New South Wales,153.095421,-29.484114 +2023,2,6,1,New South Wales,152.985504,-30.325519 +2021,5,16,1,New South Wales,150.600297,-34.428089 +2021,6,8,1,New South Wales,150.809404,-34.099795 +2023,7,28,1,New South Wales,153.463046,-28.875821 +2021,9,10,1,New South Wales,150.644155,-34.393159 +2022,8,9,1,New South Wales,150.525047,-34.452664 +2021,2,11,1,New South Wales,152.07169,-32.71099 +2020,10,31,1,New South Wales,149.977333,-36.564828 +2023,11,25,1,New South Wales,152.109985,-32.777513 +2022,7,28,1,New South Wales,152.808889,-31.144146 +2021,5,5,1,New South Wales,150.638531,-34.490635 +2020,10,6,1,New South Wales,152.245604,-30.018307 +2020,10,19,1,New South Wales,149.938155,-36.621708 +2021,6,25,1,New South Wales,150.510997,-34.471262 +2022,12,7,1,New South Wales,153.119945,-30.304266 +2022,4,8,1,New South Wales,153.103554,-29.486019 +2022,4,11,1,New South Wales,152.300422,-31.948252 +2020,9,21,1,New South Wales,152.040412,-32.732743 +2021,6,7,1,New South Wales,150.522274,-34.441425 +2020,10,23,1,New South Wales,149.554836,-33.533613 +2020,10,28,1,New South Wales,149.976368,-36.555504 +2022,6,3,1,New South Wales,152.897387,-31.475057 +2020,10,19,1,New South Wales,149.930096,-36.638123 +2023,5,9,1,New South Wales,150.784241,-33.717274 +2020,1,1,1,New South Wales,151.75241,-32.40466 +2021,4,11,1,New South Wales,149.558935,-32.644384 +2020,11,15,1,New South Wales,149.969776,-36.511423 +2021,4,28,1,New South Wales,150.609467,-34.418965 +2021,12,26,1,New South Wales,153.10379,-29.48559 +2024,2,21,1,New South Wales,151.709585,-32.632872 +2023,7,9,1,New South Wales,153.25443,-28.902453 +2021,4,21,1,New South Wales,150.637395,-34.420463 +2020,4,21,1,New South Wales,150.84213,-34.07023 +2022,10,15,1,New South Wales,152.862933,-28.963656 +2024,2,8,1,New South Wales,152.070738,-32.718442 +2021,6,28,1,New South Wales,150.657621,-34.45549 +2021,9,16,1,New South Wales,150.513052,-34.446034 +2023,5,21,1,New South Wales,150.784119,-33.717322 +2023,9,21,1,New South Wales,152.609071,-30.343024 +2020,4,23,1,New South Wales,153.10379,-29.48559 +2020,3,10,1,New South Wales,150.754807,-29.225616 +2021,5,7,1,New South Wales,153.314107,-28.820206 +2021,5,20,1,New South Wales,150.517227,-34.452033 +2022,11,7,1,New South Wales,153.395841,-29.045822 +2023,9,2,1,New South Wales,151.009047,-34.045302 +2021,5,29,1,New South Wales,150.605638,-34.437281 +2020,8,31,1,New South Wales,153.562466,-28.39117 +2023,10,29,1,New South Wales,152.810193,-31.637624 +2024,2,21,1,New South Wales,150.785858,-33.710998 +2021,5,1,1,New South Wales,150.610248,-34.420206 +2021,5,28,1,New South Wales,150.642475,-34.394128 +2020,11,3,1,New South Wales,153.317651,-28.862857 +2021,9,4,1,New South Wales,153.317051,-28.826957 +2023,8,27,1,New South Wales,150.985569,-34.091113 +2021,6,6,1,New South Wales,150.518968,-34.447263 +2024,9,18,1,New South Wales,150.820986,-34.101712 +2021,4,20,1,New South Wales,153.108205,-29.490264 +2021,5,22,1,New South Wales,150.616315,-34.434506 +2021,8,28,1,New South Wales,150.603594,-34.442921 +2020,10,10,1,New South Wales,152.219727,-32.299858 +2020,10,15,1,New South Wales,149.947316,-36.607854 +2021,1,29,1,New South Wales,152.415118,-31.933238 +2022,11,2,1,New South Wales,152.07261,-32.71075 +2023,4,14,1,New South Wales,153.320004,-28.849989 +2021,10,18,1,New South Wales,153.474507,-28.595802 +2020,8,11,1,New South Wales,151.540936,-30.422497 +2020,11,3,1,New South Wales,149.976368,-36.555504 +2020,5,,1,New South Wales,152.006494,-32.728838 +2022,10,18,1,New South Wales,152.783997,-31.632523 +2022,4,21,1,New South Wales,150.941027,-34.114736 +2023,1,22,1,New South Wales,153.450915,-28.403806 +2023,10,30,1,New South Wales,153.108108,-29.490208 +2021,6,19,1,New South Wales,150.658643,-34.455131 +2021,9,17,1,New South Wales,150.646114,-34.401275 +2021,12,12,1,New South Wales,152.925021,-31.454114 +2021,5,28,1,New South Wales,150.517345,-34.452811 +2021,6,8,1,New South Wales,150.518771,-34.447286 +2021,4,29,1,New South Wales,150.615994,-34.436222 +2021,4,29,1,New South Wales,150.636302,-34.421813 +2021,7,6,1,New South Wales,150.642131,-34.396303 +2021,5,5,1,New South Wales,150.608852,-34.420702 +2020,2,27,1,New South Wales,152.793073,-31.466249 +2020,1,27,1,New South Wales,152.040591,-32.737719 +2020,4,10,1,New South Wales,152.867889,-29.667173 +2021,5,28,1,New South Wales,150.599914,-34.425106 +2022,12,2,1,New South Wales,152.067734,-32.707667 +2021,5,5,1,New South Wales,150.615891,-34.436003 +2021,1,23,1,New South Wales,152.090504,-32.738096 +2023,12,3,1,New South Wales,153.110141,-29.490287 +2021,5,26,1,New South Wales,150.619796,-34.439145 +2024,1,25,1,New South Wales,153.107974,-29.490465 +2022,10,12,1,New South Wales,153.556245,-28.398653 +2021,6,23,1,New South Wales,150.627375,-34.421234 +2022,6,12,1,New South Wales,152.359068,-31.912724 +2021,5,12,1,New South Wales,150.524369,-34.466314 +2021,6,27,1,New South Wales,150.513928,-34.447314 +2021,5,7,1,New South Wales,150.632736,-34.418624 +2021,4,26,1,New South Wales,150.602354,-34.425758 +2021,5,22,1,New South Wales,150.633822,-34.392437 +2021,9,10,1,New South Wales,150.600528,-34.455004 +2021,6,14,1,New South Wales,150.518504,-34.457405 +2023,11,26,1,New South Wales,151.70964,-32.691335 +2021,3,27,1,New South Wales,150.615749,-34.434107 +2023,10,20,1,New South Wales,152.913418,-31.443163 +2021,6,19,1,New South Wales,150.639464,-34.392898 +2020,4,2,1,New South Wales,152.66622,-31.825378 +2020,10,26,1,New South Wales,153.385091,-28.827832 +2021,7,9,1,New South Wales,153.557112,-28.397533 +2021,6,19,1,New South Wales,150.622563,-34.384465 +2021,7,11,1,New South Wales,150.597316,-34.410207 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2021,9,21,1,New South Wales,150.822863,-34.127969 +2020,7,16,1,New South Wales,153.073937,-30.342885 +2021,3,21,1,New South Wales,150.635815,-34.488076 +2023,11,13,1,New South Wales,150.785987,-33.712265 +2022,9,28,1,New South Wales,152.794065,-31.644902 +2021,3,5,1,New South Wales,150.51834,-34.446412 +2022,1,28,1,New South Wales,153.402283,-28.260319 +2020,10,21,1,New South Wales,152.905315,-31.435751 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2023,7,16,1,New South Wales,153.386455,-28.78792 +2020,5,21,1,New South Wales,153.488326,-28.227743 +2022,5,26,1,New South Wales,151.486938,-31.458484 +2022,2,15,1,New South Wales,150.800651,-34.177896 +2021,3,28,1,New South Wales,152.924908,-31.459245 +2021,12,12,1,New South Wales,150.89266,-33.991958 +2020,7,13,1,New South Wales,153.553697,-28.570637 +2022,1,18,1,New South Wales,152.715119,-31.635824 +2022,11,21,1,New South Wales,152.794945,-30.901933 +2020,10,30,1,New South Wales,149.976368,-36.555504 +2023,3,18,1,New South Wales,152.894891,-31.429077 +2020,10,28,1,New South Wales,149.976368,-36.555504 +2021,3,27,1,New South Wales,150.607252,-34.422654 +2023,1,19,1,New South Wales,152.909933,-31.464587 +2020,10,20,1,New South Wales,152.698744,-31.680596 +2021,6,21,1,New South Wales,151.677656,-32.79319 +2021,12,23,1,New South Wales,149.557785,-33.495102 +2024,4,1,1,New South Wales,152.800908,-31.643962 +2021,4,14,1,New South Wales,150.635869,-34.394658 +2023,9,25,1,New South Wales,150.81337,-34.111088 +2021,6,6,1,New South Wales,150.626676,-34.389008 +2022,6,26,1,New South Wales,153.608174,-28.671969 +2021,11,4,1,New South Wales,152.882284,-29.611382 +2020,2,13,1,New South Wales,153.555912,-28.399095 +2021,9,14,1,New South Wales,150.513901,-34.446024 +2021,4,19,1,New South Wales,150.605883,-34.454235 +2020,8,6,1,New South Wales,153.041454,-30.340052 +2022,7,23,1,New South Wales,153.318231,-28.824264 +2024,1,11,1,New South Wales,152.905245,-31.444894 +2020,4,15,1,New South Wales,151.879593,-32.484811 +2021,9,22,1,New South Wales,153.102427,-29.488914 +2021,6,3,1,New South Wales,150.519668,-34.455238 +2021,9,15,1,New South Wales,150.610896,-34.455135 +2023,8,29,1,New South Wales,150.985466,-34.091163 +2020,5,6,1,New South Wales,152.95688,-30.663598 +2021,6,19,1,New South Wales,150.619187,-34.436816 +2020,10,22,1,New South Wales,153.104208,-29.483787 +2021,7,13,1,New South Wales,150.626756,-34.385403 +2023,6,22,1,New South Wales,153.368924,-28.804061 +2021,11,9,1,New South Wales,150.808987,-34.208693 +2022,11,23,1,New South Wales,152.794945,-30.901933 +2022,8,6,1,New South Wales,152.966117,-31.254301 +2021,7,21,1,New South Wales,153.554084,-28.571052 +2024,3,22,1,New South Wales,152.380619,-31.917372 +2020,9,12,1,New South Wales,152.039598,-32.732033 +2022,7,29,1,New South Wales,153.32387,-28.697186 +2021,5,4,1,New South Wales,150.523379,-34.459298 +2020,10,27,1,New South Wales,149.976368,-36.555504 +2022,10,2,1,New South Wales,152.565275,-31.94611 +2020,10,28,1,New South Wales,153.339182,-28.872021 +2021,6,11,1,New South Wales,150.604106,-34.438703 +2021,4,21,1,New South Wales,150.610335,-34.419063 +2023,6,14,1,New South Wales,152.178328,-31.611749 +2021,5,7,1,New South Wales,150.639039,-34.491519 +2023,6,16,1,New South Wales,153.107985,-29.490437 +2021,5,23,1,New South Wales,150.630874,-34.420617 +2022,4,22,1,New South Wales,153.110517,-29.490199 +2024,2,20,1,New South Wales,152.902531,-31.257735 +2023,4,29,1,New South Wales,150.78629,-33.711585 +2021,10,,1,New South Wales,149.380098,-36.177315 +2024,2,15,1,New South Wales,153.071317,-30.888051 +2021,11,12,1,New South Wales,152.623354,-31.783109 +2021,3,22,1,New South Wales,150.533247,-34.479755 +2021,8,6,1,New South Wales,150.60478,-34.427284 +2021,6,6,1,New South Wales,150.606748,-34.429252 +2021,12,10,1,New South Wales,153.454494,-28.664505 +2023,9,29,1,New South Wales,151.693333,-32.70257 +2023,7,22,1,New South Wales,150.785303,-33.703321 +2022,4,22,1,New South Wales,153.568665,-28.694927 +2023,9,28,1,New South Wales,153.470723,-28.794169 +2021,6,21,1,New South Wales,150.639177,-34.392685 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2022,11,26,1,New South Wales,152.734049,-30.84847 +2022,11,11,1,New South Wales,151.798213,-32.525778 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2022,3,2,1,New South Wales,152.92404,-31.477052 +2022,12,16,1,New South Wales,152.873462,-31.285075 +2022,8,1,1,New South Wales,150.79422,-34.142364 +2021,5,5,1,New South Wales,150.622013,-34.397753 +2021,1,1,1,New South Wales,152.063694,-32.706556 +2022,7,18,1,New South Wales,150.808987,-34.208693 +2024,9,21,1,New South Wales,146.563259,-34.762624 +2021,9,17,1,New South Wales,152.37407,-31.915474 +2020,8,12,1,New South Wales,153.593559,-28.723846 +2020,12,23,1,New South Wales,153.104401,-29.489619 +2023,5,8,1,New South Wales,153.103935,-29.489559 +2024,1,22,1,New South Wales,152.471711,-31.939705 +2021,5,5,1,New South Wales,150.522917,-34.452473 +2021,6,14,1,New South Wales,150.515805,-34.446757 +2022,8,19,1,New South Wales,153.495403,-28.693316 +2021,7,9,1,New South Wales,153.297228,-28.824259 +2021,3,7,1,New South Wales,150.603469,-34.435481 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2023,5,20,1,New South Wales,152.786811,-31.629191 +2021,8,28,1,New South Wales,153.311298,-28.822003 +2023,11,4,1,New South Wales,150.251989,-30.991878 +2023,11,18,1,New South Wales,152.916075,-29.591198 +2021,8,4,1,New South Wales,150.626187,-34.390125 +2020,9,15,1,New South Wales,153.002802,-29.18252 +2021,6,28,1,New South Wales,152.083327,-28.651897 +2023,3,20,1,New South Wales,151.769263,-32.640003 +2022,7,14,1,New South Wales,152.062354,-32.708881 +2020,11,25,1,New South Wales,150.104524,-33.774293 +2021,8,26,1,New South Wales,150.641022,-34.393965 +2020,10,26,1,New South Wales,149.976368,-36.555504 +2021,6,4,1,New South Wales,153.556289,-28.399887 +2023,11,14,1,New South Wales,152.699623,-30.290419 +2021,4,28,1,New South Wales,150.609555,-34.418957 +2023,12,15,1,New South Wales,149.553504,-33.558237 +2024,2,25,1,New South Wales,152.063508,-32.706212 +2022,12,29,1,New South Wales,152.793869,-31.638983 +2021,6,1,1,New South Wales,150.604892,-34.425285 +2023,6,7,1,New South Wales,152.345731,-32.298705 +2023,10,19,1,New South Wales,153.095807,-29.484782 +2022,11,11,1,New South Wales,152.109885,-32.673976 +2020,4,21,2,South Australia,138.69847,-35.02276 +2021,3,27,1,New South Wales,153.110538,-29.490147 +2021,6,10,1,New South Wales,150.645932,-34.397278 +2021,6,5,1,New South Wales,150.623566,-34.389371 +2023,10,18,1,New South Wales,153.101268,-29.489984 +2023,11,1,1,New South Wales,152.190362,-32.237057 +2021,7,5,1,New South Wales,152.891857,-31.470757 +2021,5,24,1,New South Wales,150.617008,-34.434997 +2024,2,6,1,New South Wales,150.784737,-33.713651 +2020,3,13,1,New South Wales,153.270137,-28.887255 +2023,6,28,1,New South Wales,153.07678,-28.553296 +2021,6,25,1,New South Wales,150.597952,-34.418027 +2020,7,27,1,New South Wales,152.921975,-31.454908 +2021,3,5,1,New South Wales,150.611572,-34.420304 +2021,4,28,1,New South Wales,150.635378,-34.420226 +2020,11,18,1,New South Wales,153.369052,-28.953149 +2021,5,18,1,New South Wales,153.392913,-28.958831 +2020,8,15,1,New South Wales,152.896393,-31.447575 +2022,7,30,1,New South Wales,152.063831,-32.706579 +2023,9,1,1,New South Wales,150.78299,-33.718629 +2023,12,5,1,New South Wales,152.913748,-31.469665 +2021,6,28,1,New South Wales,150.631488,-34.388425 +2020,11,11,1,New South Wales,150.016902,-36.541583 +2020,10,29,1,New South Wales,149.977333,-36.564828 +2020,12,8,1,New South Wales,149.972032,-36.288695 +2023,8,13,1,New South Wales,153.629825,-28.637745 +2022,12,10,1,New South Wales,146.534383,-34.746424 +2024,8,19,1,New South Wales,152.139995,-32.227629 +2020,10,21,1,New South Wales,153.555716,-28.399074 +2020,11,9,1,New South Wales,150.010499,-36.556654 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2021,6,16,1,New South Wales,150.519181,-34.459925 +2021,8,19,1,New South Wales,150.937899,-29.721328 +2023,6,11,1,New South Wales,152.974392,-29.036902 +2020,11,11,1,New South Wales,150.010499,-36.556654 +2021,4,29,1,New South Wales,150.624484,-34.388073 +2021,3,29,1,New South Wales,150.659176,-34.459018 +2021,6,16,1,New South Wales,150.52235,-34.451758 +2021,6,22,1,New South Wales,150.603682,-34.438712 +2021,5,4,1,New South Wales,150.615895,-34.436265 +2021,1,16,1,New South Wales,150.808934,-34.098742 +2020,7,23,1,New South Wales,153.230185,-29.740683 +2021,3,3,1,New South Wales,150.604679,-34.439237 +2022,6,27,1,New South Wales,153.108038,-29.490213 +2021,6,16,1,New South Wales,150.639882,-34.400082 +2021,6,10,1,New South Wales,150.525516,-34.458791 +2020,10,20,1,New South Wales,153.273941,-28.820088 +2021,6,8,1,New South Wales,150.527929,-34.457064 +2020,7,21,1,New South Wales,151.562082,-32.878295 +2021,8,25,1,New South Wales,153.103682,-29.485795 +2021,6,7,1,New South Wales,150.833136,-34.085987 +2020,12,21,1,New South Wales,146.556337,-34.75122 +2021,3,16,1,New South Wales,150.535146,-34.462935 +2023,11,18,1,New South Wales,153.103366,-29.489923 +2021,9,28,1,New South Wales,150.791254,-34.191062 +2022,10,25,1,New South Wales,152.063553,-32.706407 +2021,9,6,1,New South Wales,153.305872,-28.827647 +2020,10,30,1,New South Wales,149.977333,-36.564828 +2021,5,24,1,New South Wales,150.51647,-34.450043 +2023,11,17,1,New South Wales,152.908557,-30.599478 +2021,8,15,1,New South Wales,150.515945,-34.443497 +2023,11,15,1,New South Wales,150.992558,-34.025735 +2024,9,8,1,New South Wales,152.459576,-32.04018 +2020,11,3,1,New South Wales,149.945227,-36.57753 +2021,7,22,1,New South Wales,150.603413,-34.418395 +2021,4,6,1,New South Wales,152.059278,-32.739099 +2021,6,26,1,New South Wales,150.645193,-34.391061 +2021,5,31,1,New South Wales,150.630888,-34.388882 +2021,5,27,1,New South Wales,150.639776,-34.393427 +2021,2,5,1,New South Wales,153.1038,-29.485585 +2021,12,20,1,New South Wales,153.318068,-28.825824 +2021,5,4,1,New South Wales,150.632815,-34.418914 +2020,8,5,1,New South Wales,153.104047,-29.484338 +2021,5,15,1,New South Wales,153.108151,-29.490297 +2021,6,22,1,New South Wales,150.514143,-34.445939 +2023,8,20,1,New South Wales,150.846298,-34.052537 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2021,6,10,1,New South Wales,150.518022,-34.447587 +2021,5,14,1,New South Wales,150.517553,-34.440293 +2021,6,10,1,New South Wales,150.521654,-34.465745 +2021,6,17,1,New South Wales,150.522283,-34.451459 +2021,4,26,1,New South Wales,150.610322,-34.419117 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2021,11,17,1,New South Wales,150.858731,-34.072832 +2024,1,5,1,New South Wales,152.893484,-31.448679 +2021,4,23,1,New South Wales,150.638859,-34.421781 +2021,12,30,1,New South Wales,153.101156,-29.490161 +2023,6,23,1,New South Wales,152.861853,-31.280774 +2022,10,13,1,New South Wales,153.30453,-28.827266 +2024,3,22,1,New South Wales,152.385144,-31.914414 +2020,7,22,1,New South Wales,153.109392,-30.298612 +2020,2,9,1,New South Wales,153.103988,-29.48552 +2021,10,,1,New South Wales,149.401731,-36.233757 +2023,12,2,1,New South Wales,151.53657,-30.514456 +2021,4,25,1,New South Wales,150.614177,-34.429722 +2021,5,21,1,New South Wales,150.630387,-34.420905 +2020,6,12,1,New South Wales,149.967796,-36.445856 +2024,4,22,1,New South Wales,152.080706,-32.720863 +2021,11,13,1,New South Wales,150.788238,-34.208357 +2021,7,27,1,New South Wales,150.518178,-34.437177 +2021,12,26,1,New South Wales,150.961393,-34.094969 +2021,9,23,1,New South Wales,153.529978,-28.721624 +2022,8,10,1,New South Wales,152.852598,-31.552945 +2020,1,21,1,New South Wales,151.215278,-33.707222 +2020,12,5,1,New South Wales,149.972032,-36.288695 +2021,3,7,1,New South Wales,150.525066,-34.457818 +2020,12,13,1,New South Wales,153.104155,-29.480406 +2021,4,20,1,New South Wales,150.637316,-34.422112 +2023,12,21,1,New South Wales,152.925859,-31.452791 +2021,4,14,1,New South Wales,150.640667,-34.413963 +2021,6,17,1,New South Wales,150.513814,-34.446392 +2020,10,5,1,New South Wales,152.837868,-31.59445 +2021,1,27,1,New South Wales,150.082863,-33.745837 +2020,11,18,1,New South Wales,153.361038,-28.941392 +2021,3,10,1,New South Wales,150.616957,-34.433725 +2021,6,6,1,New South Wales,150.608538,-34.434778 +2021,1,7,1,New South Wales,152.987718,-29.259028 +2021,6,29,1,New South Wales,150.629352,-34.388961 +2021,4,7,1,New South Wales,150.606722,-34.429784 +2024,2,9,1,New South Wales,152.790834,-31.639655 +2021,7,28,1,New South Wales,150.598004,-34.426088 +2022,10,22,1,New South Wales,152.900022,-29.631018 +2021,2,28,1,New South Wales,152.912254,-31.444986 +2023,11,4,1,New South Wales,150.486,-34.40127 +2022,12,14,1,New South Wales,152.063986,-32.699116 +2023,7,30,1,New South Wales,150.78712,-33.704012 +2023,11,4,1,New South Wales,153.103323,-29.489886 +2020,5,12,1,New South Wales,153.358845,-29.394612 +2021,6,22,1,New South Wales,150.602488,-34.419928 +2021,3,10,1,New South Wales,150.518054,-34.450184 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2021,5,27,1,New South Wales,150.604279,-34.437976 +2023,9,23,1,New South Wales,152.915163,-31.45148 +2021,4,28,1,New South Wales,150.637829,-34.488881 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2020,2,15,1,New South Wales,151.1103,-29.76276 +2022,12,29,1,New South Wales,150.823368,-34.149874 +2021,9,10,1,New South Wales,153.306378,-28.977316 +2020,10,19,1,New South Wales,149.931009,-36.595007 +2021,6,9,1,New South Wales,150.516652,-34.454167 +2021,5,16,1,New South Wales,150.640566,-34.494127 +2022,6,17,1,New South Wales,150.1308,-31.13808 +2020,10,8,1,New South Wales,149.959933,-36.657162 +2021,10,,1,New South Wales,149.267156,-36.188582 +2023,6,8,1,New South Wales,152.069221,-32.748434 +2021,5,20,1,New South Wales,150.630382,-34.395255 +2021,8,23,1,New South Wales,150.51433,-34.447322 +2020,8,5,1,New South Wales,152.127017,-31.766429 +2020,7,24,1,New South Wales,151.577692,-33.015404 +2020,4,21,1,New South Wales,153.298936,-28.888756 +2021,8,18,1,New South Wales,153.562732,-28.391207 +2020,5,28,1,New South Wales,150.1443,-34.4223 +2021,6,27,1,New South Wales,150.51418,-34.447247 +2020,2,6,1,New South Wales,152.040803,-32.737413 +2021,5,25,1,New South Wales,150.639176,-34.392721 +2021,11,2,1,New South Wales,153.605266,-28.692779 +2021,4,24,1,New South Wales,150.626299,-34.395807 +2024,6,13,1,New South Wales,153.401058,-29.037756 +2021,1,15,1,New South Wales,153.108226,-29.490222 +2020,7,2,1,New South Wales,152.797948,-30.212442 +2024,6,12,1,New South Wales,152.924126,-31.473213 +2023,2,1,1,New South Wales,153.108135,-29.490507 +2023,9,25,1,New South Wales,153.315258,-29.028428 +2020,11,27,1,New South Wales,149.976313,-36.439844 +2020,11,2,1,New South Wales,149.958519,-36.587122 +2020,10,28,1,New South Wales,151.497183,-32.865166 +2020,11,3,1,New South Wales,149.976368,-36.555504 +2020,1,22,1,New South Wales,152.807535,-31.357274 +2021,3,9,1,New South Wales,150.53294,-34.475764 +2021,9,17,1,New South Wales,152.85216,-29.705764 +2020,4,3,1,New South Wales,153.109884,-28.911229 +2021,5,18,1,New South Wales,150.633083,-34.419442 +2021,6,1,1,New South Wales,150.638485,-34.491094 +2024,3,15,1,New South Wales,152.872858,-31.47907 +2021,5,1,1,New South Wales,150.606798,-34.455731 +2021,8,11,1,New South Wales,150.631972,-34.418321 +2024,1,31,1,New South Wales,150.785503,-33.705582 +2021,5,13,1,New South Wales,150.617214,-34.434253 +2021,6,10,1,New South Wales,150.525432,-34.45869 +2024,3,1,1,New South Wales,152.791517,-31.640283 +2021,4,21,1,New South Wales,150.614385,-34.428897 +2020,5,1,1,New South Wales,152.21249,-31.92602 +2020,1,31,1,New South Wales,150.8212,-34.097442 +2021,8,4,1,New South Wales,150.520611,-34.465661 +2021,2,1,1,New South Wales,153.297678,-28.819161 +2021,8,4,1,New South Wales,150.516743,-34.436418 +2021,10,15,1,New South Wales,152.916389,-31.450779 +2023,1,26,1,New South Wales,150.825337,-34.149966 +2020,10,30,1,New South Wales,151.68942,-32.671847 +2021,4,29,1,New South Wales,150.606625,-34.435074 +2023,11,4,1,New South Wales,152.373628,-31.914468 +2021,5,13,1,New South Wales,150.640264,-34.492886 +2021,5,19,1,New South Wales,150.517242,-34.452637 +2023,10,18,1,New South Wales,153.16828,-29.432507 +2022,6,23,1,New South Wales,153.400782,-28.880963 +2022,9,2,1,New South Wales,150.795034,-34.122114 +2020,11,1,1,New South Wales,149.976368,-36.555504 +2023,12,19,1,New South Wales,152.816678,-30.258572 +2021,6,18,1,New South Wales,150.627568,-34.42094 +2021,4,2,1,New South Wales,153.303214,-28.817405 +2021,3,28,1,New South Wales,150.521198,-34.46606 +2023,4,23,1,New South Wales,149.327226,-36.210767 +2021,5,15,1,New South Wales,150.614534,-34.433993 +2021,12,27,1,New South Wales,152.925179,-31.454121 +2020,9,21,1,New South Wales,152.91178,-31.470441 +2024,5,12,1,New South Wales,153.07195,-30.887048 +2020,10,20,1,New South Wales,153.418295,-29.028217 +2024,2,10,1,New South Wales,152.926272,-31.45156 +2020,11,27,1,New South Wales,152.885551,-31.441289 +2022,12,19,1,New South Wales,153.103741,-29.485683 +2024,7,26,1,New South Wales,152.923276,-30.506073 +2021,8,17,1,New South Wales,152.378218,-31.918365 +2023,9,28,1,New South Wales,150.784153,-33.717361 +2023,11,10,1,New South Wales,152.927735,-31.458032 +2021,5,27,1,New South Wales,150.527162,-34.469417 +2024,1,12,1,New South Wales,153.103918,-29.489559 +2020,8,27,1,New South Wales,153.109444,-29.490404 +2020,1,15,1,New South Wales,150.85195,-29.82887 +2024,9,8,1,New South Wales,151.99966,-32.052189 +2021,5,18,1,New South Wales,150.607193,-34.436915 +2023,8,9,1,New South Wales,152.06354,-32.705896 +2020,6,12,1,New South Wales,153.296869,-28.82068 +2020,7,11,1,New South Wales,150.799977,-34.191103 +2021,5,25,1,New South Wales,150.595796,-34.425684 +2021,7,3,1,New South Wales,150.513851,-34.446961 +2023,11,1,1,New South Wales,151.897949,-32.079849 +2022,8,11,1,New South Wales,153.311223,-28.822063 +2021,10,10,1,New South Wales,152.09001,-32.733047 +2021,5,19,1,New South Wales,150.613714,-34.431074 +2021,6,3,1,New South Wales,150.53485,-34.463379 +2022,1,12,1,New South Wales,152.916453,-31.45077 +2023,12,8,1,New South Wales,152.78403,-31.630036 +2021,10,2,1,New South Wales,150.438462,-34.46681 +2023,3,22,1,New South Wales,153.109353,-29.490502 +2022,9,17,1,New South Wales,152.072367,-32.710684 +2024,10,9,1,New South Wales,150.863333,-34.043333 +2023,2,27,1,New South Wales,153.230484,-28.862552 +2021,3,22,1,New South Wales,150.615453,-34.435733 +2023,1,24,1,New South Wales,149.645843,-37.368951 +2023,11,6,1,New South Wales,152.872849,-31.51885 +2022,4,27,1,New South Wales,152.638022,-30.442958 +2021,6,27,1,New South Wales,150.51845,-34.444918 +2022,7,24,1,New South Wales,149.894231,-34.817497 +2021,9,19,1,New South Wales,150.514204,-34.446076 +2023,9,17,1,New South Wales,152.754959,-31.633109 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2023,1,6,1,New South Wales,153.110485,-29.49011 +2021,4,29,1,New South Wales,150.638774,-34.489341 +2021,5,1,1,New South Wales,150.634749,-34.418221 +2021,6,11,1,New South Wales,150.627125,-34.385816 +2021,6,2,1,New South Wales,152.269498,-32.487777 +2020,1,21,1,New South Wales,153.319916,-28.846402 +2021,5,18,1,New South Wales,150.63382,-34.418375 +2021,4,28,1,New South Wales,150.606626,-34.435047 +2020,1,15,1,New South Wales,153.35998,-28.791981 +2021,12,18,1,New South Wales,153.443107,-28.600502 +2024,1,7,1,New South Wales,152.069626,-32.709247 +2022,8,26,1,New South Wales,153.104396,-29.477077 +2021,4,29,1,New South Wales,150.609971,-34.418839 +2021,6,21,1,New South Wales,150.51888,-34.462353 +2021,1,22,1,New South Wales,153.103715,-29.485786 +2022,8,5,1,New South Wales,150.786015,-34.2132 +2020,11,3,1,New South Wales,149.945227,-36.57753 +2021,11,5,1,New South Wales,153.101129,-29.490063 +2021,4,22,1,New South Wales,150.608753,-34.453561 +2022,9,25,1,New South Wales,153.308007,-28.821266 +2021,5,23,1,New South Wales,150.630873,-34.420653 +2023,9,26,1,New South Wales,152.978822,-30.64945 +2021,5,6,1,New South Wales,150.609263,-34.420791 +2022,1,14,1,New South Wales,152.09001,-32.733047 +2022,9,30,1,New South Wales,152.923954,-31.44795 +2021,4,18,1,New South Wales,150.524966,-34.453092 +2021,7,25,1,New South Wales,150.600966,-34.421413 +2023,1,5,1,New South Wales,153.109304,-29.490871 +2020,2,10,1,New South Wales,153.293006,-28.79859 +2021,11,9,1,New South Wales,150.615339,-34.440879 +2021,5,16,1,New South Wales,150.530439,-34.469403 +2021,9,26,1,New South Wales,153.517009,-28.573914 +2022,9,16,1,New South Wales,152.92518,-31.454129 +2023,10,31,1,New South Wales,152.40408,-31.927828 +2022,8,30,1,New South Wales,149.324348,-36.295634 +2020,5,4,1,New South Wales,153.095228,-29.483441 +2021,12,22,1,New South Wales,151.204507,-31.308743 +2022,4,21,1,New South Wales,152.925903,-31.45274 +2021,4,2,1,New South Wales,150.604267,-34.438012 +2021,5,3,1,New South Wales,150.626024,-34.39014 +2020,1,24,1,New South Wales,151.58005,-32.64283 +2022,12,31,1,New South Wales,152.106292,-32.72845 +2021,6,21,1,New South Wales,150.514143,-34.445939 +2021,6,9,1,New South Wales,150.604126,-34.438027 +2021,6,13,1,New South Wales,150.611927,-34.432689 +2022,7,23,1,New South Wales,153.104155,-29.479005 +2023,2,21,1,New South Wales,153.095078,-29.483344 +2021,5,14,1,New South Wales,150.602583,-34.437158 +2023,6,7,1,New South Wales,152.901166,-31.241904 +2021,3,11,1,New South Wales,150.63506,-34.486303 +2020,4,3,1,New South Wales,150.101397,-33.778358 +2020,12,1,1,New South Wales,152.897308,-29.632963 +2021,6,7,1,New South Wales,150.608493,-34.434083 +2021,5,15,1,New South Wales,150.61459,-34.433922 +2021,5,11,1,New South Wales,150.606861,-34.438639 +2020,11,12,1,New South Wales,151.659967,-32.66016 +2021,6,26,1,New South Wales,150.522435,-34.464345 +2021,3,3,1,New South Wales,153.55592,-28.398698 +2022,9,20,1,New South Wales,152.91095,-30.17444 +2021,6,30,1,New South Wales,150.513072,-34.447197 +2021,6,8,1,New South Wales,150.518713,-34.447429 +2020,11,1,1,New South Wales,149.967242,-36.561675 +2020,10,14,1,New South Wales,149.919967,-36.589766 +2022,11,17,1,New South Wales,152.89528,-31.425771 +2021,5,5,1,New South Wales,150.62232,-34.397677 +2020,10,24,1,New South Wales,149.945227,-36.57753 +2021,5,21,1,New South Wales,150.529896,-34.471195 +2022,9,22,1,New South Wales,150.02211,-33.81592 +2021,4,27,1,New South Wales,150.61548,-34.435535 +2020,10,15,1,New South Wales,152.893086,-31.454902 +2021,2,6,1,New South Wales,152.893086,-31.454902 +2024,1,24,1,New South Wales,152.412417,-31.933122 +2022,10,12,1,New South Wales,149.39835,-33.489095 +2021,6,3,1,New South Wales,150.630065,-34.421151 +2021,3,8,1,New South Wales,150.614868,-34.432584 +2021,6,10,1,New South Wales,150.525419,-34.458753 +2022,10,27,1,New South Wales,152.897389,-31.475 +2021,1,25,1,New South Wales,153.583401,-28.632556 +2020,11,2,1,New South Wales,153.313992,-28.81222 +2021,9,9,1,New South Wales,150.790469,-34.199908 +2020,12,3,1,New South Wales,152.432398,-31.806444 +2020,11,3,1,New South Wales,153.3136,-28.8543 +2021,4,3,1,New South Wales,150.519612,-34.447204 +2021,1,19,1,New South Wales,151.6674,-30.5006 +2021,4,22,1,New South Wales,150.605025,-34.423286 +2024,2,3,1,New South Wales,150.79047,-34.199869 +2021,12,31,1,New South Wales,150.788111,-34.337522 +2024,1,28,1,New South Wales,152.170157,-32.745502 +2021,6,12,1,New South Wales,150.51576,-34.447189 +2023,11,2,1,New South Wales,152.189573,-32.226267 +2022,7,,1,New South Wales,153.599216,-28.71419 +2024,1,15,1,New South Wales,150.574014,-33.693449 +2020,10,28,1,New South Wales,149.976368,-36.555504 +2020,11,3,1,New South Wales,149.976368,-36.555504 +2021,5,18,1,New South Wales,150.631078,-34.389084 +2020,11,2,1,New South Wales,149.988655,-36.56931 +2022,8,21,1,New South Wales,153.558648,-28.394052 +2020,5,,1,New South Wales,152.060624,-32.7387 +2020,10,16,1,New South Wales,153.046847,-30.334939 +2023,8,30,1,New South Wales,150.835214,-34.068422 +2020,5,13,1,New South Wales,153.363078,-28.83166 +2020,2,4,1,New South Wales,151.407716,-30.763757 +2020,1,8,1,New South Wales,150.70328,-33.41357 +2021,10,27,1,New South Wales,152.92627,-31.455827 +2021,5,20,1,New South Wales,150.608043,-34.433812 +2021,5,29,1,New South Wales,150.521654,-34.465745 +2020,8,8,1,New South Wales,153.104149,-29.485188 +2021,5,5,1,New South Wales,150.63286,-34.418843 +2022,3,3,1,New South Wales,153.109417,-29.49046 +2021,5,6,1,New South Wales,150.62196,-34.397715 +2020,10,13,1,New South Wales,152.901003,-31.44871 +2020,3,8,1,New South Wales,152.867846,-29.667401 +2022,10,27,1,New South Wales,153.415236,-28.982502 +2021,2,26,1,New South Wales,150.517968,-34.470755 +2021,5,10,1,New South Wales,150.521394,-34.466416 +2020,8,15,1,New South Wales,151.636193,-32.61947 +2022,1,22,1,New South Wales,150.615513,-34.437835 +2021,5,17,1,New South Wales,150.632784,-34.418859 +2023,7,27,1,New South Wales,153.115634,-29.490329 +2023,10,16,1,New South Wales,150.785136,-33.713862 +2023,11,14,1,New South Wales,152.917449,-31.474536 +2022,11,26,1,New South Wales,152.852001,-31.555062 +2020,11,11,1,New South Wales,150.010499,-36.556654 +2021,9,30,1,New South Wales,153.104348,-29.477128 +2021,5,15,1,New South Wales,150.63322,-34.418453 +2020,1,6,1,New South Wales,151.704389,-32.50174 +2020,12,1,1,New South Wales,153.305957,-29.055106 +2021,6,5,1,New South Wales,150.636656,-34.488002 +2021,8,28,1,New South Wales,152.374927,-31.91572 +2021,4,30,1,New South Wales,150.606981,-34.454257 +2020,3,15,1,New South Wales,150.465425,-34.488492 +2023,8,28,1,New South Wales,150.785822,-33.705673 +2023,10,15,1,New South Wales,150.837381,-34.073777 +2021,5,2,1,New South Wales,150.63358,-34.418388 +2020,3,23,1,New South Wales,152.08772,-32.732566 +2022,1,19,2,South Australia,138.6975,-35.03312 +2020,12,11,1,New South Wales,153.09179,-29.488013 +2020,9,16,1,New South Wales,152.005087,-32.72752 +2021,5,18,1,New South Wales,150.613383,-34.431618 +2020,1,13,1,New South Wales,153.390241,-28.545817 +2023,6,13,1,New South Wales,151.879693,-32.738418 +2020,9,7,1,New South Wales,153.348726,-28.808536 +2022,2,7,1,New South Wales,152.900793,-31.45123 +2021,5,3,1,New South Wales,150.632739,-34.418904 +2021,9,15,1,New South Wales,150.78931,-34.186032 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2021,8,18,1,New South Wales,150.610754,-34.430719 +2022,4,20,1,New South Wales,152.898841,-31.438484 +2021,1,6,1,New South Wales,153.284303,-28.930196 +2023,4,5,1,New South Wales,146.524771,-34.74133 +2022,4,3,1,New South Wales,152.893086,-31.454902 +2022,4,4,1,New South Wales,153.103951,-29.489526 +2022,11,12,1,New South Wales,152.06318,-32.706611 +2021,4,6,1,New South Wales,150.530116,-34.458938 +2023,10,30,1,New South Wales,149.379572,-35.988681 +2024,1,19,1,New South Wales,152.913896,-31.476679 +2020,10,30,1,New South Wales,149.976368,-36.555504 +2023,5,28,1,New South Wales,152.928777,-28.755022 +2020,7,21,1,New South Wales,151.746717,-32.047128 +2021,4,30,1,New South Wales,150.603885,-34.427402 +2020,10,23,1,New South Wales,149.976368,-36.555504 +2021,4,30,1,New South Wales,150.61008,-34.419995 +2020,5,,1,New South Wales,152.098389,-32.742468 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,8,12,1,New South Wales,153.434308,-28.732179 +2023,6,1,1,New South Wales,150.94519,-29.788125 +2021,5,20,1,New South Wales,150.607946,-34.433783 +2020,9,21,1,New South Wales,153.40521,-28.871112 +2023,2,14,1,New South Wales,152.787407,-31.636525 +2023,9,11,1,New South Wales,150.785856,-33.705975 +2021,11,27,1,New South Wales,153.302351,-28.820415 +2022,5,2,1,New South Wales,153.562372,-28.382684 +2021,2,18,1,New South Wales,153.329903,-28.930447 +2020,10,15,1,New South Wales,152.950145,-29.263456 +2022,10,31,1,New South Wales,153.279451,-28.678443 +2022,12,9,1,New South Wales,151.678884,-32.511408 +2023,2,21,1,New South Wales,152.379414,-31.919628 +2022,8,2,1,New South Wales,151.078358,-33.12962 +2021,4,27,1,New South Wales,150.601467,-34.426715 +2022,12,9,1,New South Wales,152.923393,-31.456312 +2022,2,11,1,New South Wales,152.3804,-31.922055 +2021,10,19,1,New South Wales,153.262924,-28.923353 +2022,11,2,1,New South Wales,153.27876,-28.93413 +2023,11,25,1,New South Wales,150.783186,-33.718643 +2020,9,6,1,New South Wales,153.46202,-28.650527 +2021,5,28,1,New South Wales,150.517259,-34.452791 +2020,11,1,1,New South Wales,149.988655,-36.56931 +2021,3,12,1,New South Wales,150.6351,-34.486439 +2023,2,28,1,New South Wales,152.793006,-31.639632 +2021,2,24,1,New South Wales,150.6089,-34.433523 +2021,5,3,1,New South Wales,150.627048,-34.389673 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2021,6,7,1,New South Wales,150.63014,-34.420783 +2021,5,9,1,New South Wales,150.63739,-34.423736 +2022,11,25,1,New South Wales,152.907965,-31.43474 +2022,4,28,1,New South Wales,150.985655,-34.021477 +2023,10,25,1,New South Wales,150.724812,-34.187646 +2023,6,12,1,New South Wales,153.108038,-29.491048 +2021,6,12,1,New South Wales,150.52138,-34.459176 +2021,11,3,1,New South Wales,153.5914,-28.63691 +2022,10,10,1,New South Wales,149.551101,-33.492389 +2021,4,3,1,New South Wales,150.60841,-34.422487 +2021,5,17,1,New South Wales,150.530805,-34.470997 +2022,9,21,1,New South Wales,153.10438,-29.47753 +2022,12,18,1,New South Wales,151.673575,-30.433101 +2021,4,18,1,New South Wales,150.634816,-34.486082 +2021,6,12,1,New South Wales,150.604188,-34.439272 +2021,8,2,1,New South Wales,150.645724,-34.402395 +2022,6,10,1,New South Wales,152.58443,-31.779181 +2020,1,5,1,New South Wales,152.100617,-32.178221 +2021,7,31,1,New South Wales,150.517499,-34.448739 +2021,5,12,1,New South Wales,150.604386,-34.438429 +2021,6,5,1,New South Wales,150.640033,-34.397831 +2022,4,11,1,New South Wales,150.790596,-34.188134 +2021,5,19,1,New South Wales,150.523771,-34.463705 +2022,6,5,1,New South Wales,152.851464,-29.692524 +2021,6,2,1,New South Wales,150.535312,-34.462487 +2020,5,17,1,New South Wales,152.837904,-31.594188 +2021,6,22,1,New South Wales,150.625427,-34.386234 +2020,3,28,1,New South Wales,150.069922,-35.096731 +2020,11,1,1,New South Wales,149.976368,-36.555504 +2021,11,6,1,New South Wales,152.912288,-31.442979 +2020,1,23,1,New South Wales,149.35486,-36.18352 +2021,5,12,1,New South Wales,150.633037,-34.417602 +2021,10,8,1,New South Wales,152.834121,-31.564639 +2021,9,15,1,New South Wales,150.512974,-34.446087 +2021,8,5,1,New South Wales,153.60237,-28.69032 +2021,5,31,1,New South Wales,150.615694,-34.437965 +2022,12,24,1,New South Wales,153.072417,-30.879415 +2021,9,4,1,New South Wales,150.52228,-34.464072 +2020,8,23,1,New South Wales,153.555833,-28.399149 +2024,1,17,1,New South Wales,152.13015,-32.000786 +2021,1,10,1,New South Wales,153.109444,-29.490483 +2023,2,17,1,New South Wales,152.89196,-30.46086 +2023,10,24,1,New South Wales,152.19096,-32.219628 +2022,8,3,1,New South Wales,151.75781,-32.643164 +2021,3,8,1,New South Wales,152.6077,-30.52432 +2023,7,13,1,New South Wales,153.0686,-28.549768 +2021,9,28,1,New South Wales,152.83195,-31.2816 +2021,7,2,1,New South Wales,150.627306,-34.390571 +2021,6,6,1,New South Wales,150.607746,-34.430128 +2021,11,2,1,New South Wales,150.9288,-33.95751 +2021,9,9,1,New South Wales,150.515566,-34.454469 +2023,2,20,1,New South Wales,153.110211,-29.48827 +2021,4,30,1,New South Wales,150.614978,-34.429458 +2021,5,7,1,New South Wales,150.51913,-34.452072 +2020,2,23,1,New South Wales,152.914901,-31.467465 +2021,3,9,1,New South Wales,150.610097,-34.419374 +2021,11,16,1,New South Wales,150.132239,-31.035875 +2020,4,18,1,New South Wales,150.055423,-33.775745 +2023,6,2,1,New South Wales,150.78393,-33.717644 +2021,3,20,1,New South Wales,150.659475,-34.458077 +2022,6,24,1,New South Wales,152.895049,-31.460487 +2023,11,9,1,New South Wales,153.018923,-30.367375 +2022,1,15,1,New South Wales,152.893086,-31.454902 +2021,2,28,1,New South Wales,150.52063,-34.467978 +2022,10,30,1,New South Wales,151.083517,-33.143153 +2020,3,9,1,New South Wales,153.27718,-28.930082 +2023,6,27,1,New South Wales,152.373741,-31.91455 +2021,7,12,1,New South Wales,150.51289,-34.446707 +2022,7,9,1,New South Wales,153.0368,-28.6031 +2021,6,3,1,New South Wales,150.630086,-34.42116 +2022,12,17,1,New South Wales,152.077093,-32.725425 +2023,6,30,1,New South Wales,153.301097,-28.817001 +2023,7,23,1,New South Wales,152.978967,-30.420348 +2021,6,13,1,New South Wales,150.52069,-34.453789 +2023,10,8,1,New South Wales,152.0521,-32.7691 +2021,6,22,1,New South Wales,150.520625,-34.453779 +2022,4,26,1,New South Wales,152.970215,-31.186055 +2020,3,23,1,New South Wales,152.08772,-32.732566 +2022,1,22,1,New South Wales,150.937817,-29.721302 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2021,4,16,1,New South Wales,150.640186,-34.415973 +2020,2,23,1,New South Wales,152.914901,-31.467465 +2021,7,26,1,New South Wales,152.77565,-30.19877 +2023,4,3,1,New South Wales,153.109278,-29.490838 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2022,8,30,1,New South Wales,149.324725,-36.29278 +2021,7,21,1,New South Wales,150.6237,-34.383496 +2021,9,12,1,New South Wales,150.200496,-29.353942 +2020,9,22,1,New South Wales,152.269144,-32.48708 +2021,3,24,1,New South Wales,153.097071,-30.332207 +2021,3,10,1,New South Wales,152.884774,-31.440086 +2022,11,25,1,New South Wales,152.794945,-30.901933 +2022,9,25,1,New South Wales,150.890427,-34.017584 +2020,5,27,1,New South Wales,149.369011,-36.024875 +2020,10,8,1,New South Wales,149.959933,-36.657162 +2022,4,23,1,New South Wales,153.561717,-28.386297 +2020,10,2,1,New South Wales,153.048473,-30.450237 +2022,8,13,1,New South Wales,150.808614,-34.09831 +2020,11,30,1,New South Wales,153.367822,-28.866277 +2020,1,9,1,New South Wales,153.336688,-28.868027 +2020,11,2,1,New South Wales,149.945227,-36.57753 +2022,12,25,1,New South Wales,152.063606,-32.706008 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,7,27,1,New South Wales,150.520129,-34.449937 +2023,11,4,1,New South Wales,152.404303,-31.925329 +2021,9,22,1,New South Wales,150.808987,-34.208693 +2021,7,4,1,New South Wales,150.52417,-34.466418 +2020,10,,1,New South Wales,150.537335,-34.380735 +2024,7,19,1,New South Wales,150.831486,-29.651473 +2021,5,7,1,New South Wales,153.53859,-28.51027 +2021,6,6,1,New South Wales,153.054871,-30.240487 +2024,1,9,1,New South Wales,152.79028,-31.63917 +2020,8,31,1,New South Wales,153.563451,-28.390181 +2021,7,27,1,New South Wales,150.522399,-34.46484 +2020,11,6,1,New South Wales,150.010499,-36.556654 +2023,6,9,1,New South Wales,150.79408,-34.14386 +2022,1,14,1,New South Wales,153.554996,-28.601545 +2024,1,6,1,New South Wales,152.8788,-31.449678 +2021,5,19,1,New South Wales,150.608229,-34.434537 +2023,6,26,1,New South Wales,150.784953,-33.716408 +2021,6,2,1,New South Wales,150.639711,-34.399231 +2023,8,23,1,New South Wales,152.20795,-32.24002 +2023,8,27,1,New South Wales,153.099777,-29.491613 +2020,11,3,1,New South Wales,150.97662,-32.72114 +2021,6,11,1,New South Wales,150.518207,-34.453486 +2023,7,23,1,New South Wales,150.517224,-33.495739 +2022,12,2,1,New South Wales,152.91585,-31.4531 +2021,6,2,1,New South Wales,150.625454,-34.389904 +2023,6,27,1,New South Wales,152.077237,-32.72247 +2021,3,15,1,New South Wales,150.608424,-34.42237 +2021,10,12,1,New South Wales,150.200462,-29.354412 +2022,11,27,1,New South Wales,152.788781,-30.895519 +2021,8,15,1,New South Wales,153.561963,-28.386971 +2021,8,23,1,New South Wales,150.860548,-34.080942 +2021,8,22,1,New South Wales,150.51433,-34.44734 +2021,6,13,1,New South Wales,150.615034,-34.431316 +2021,8,5,1,New South Wales,153.60237,-28.69032 +2021,5,24,1,New South Wales,150.639127,-34.493035 +2020,,,1,New South Wales,152.749335,-28.720323 +2021,9,4,1,New South Wales,152.994409,-28.430361 +2021,7,15,1,New South Wales,153.286501,-28.834848 +2021,8,12,1,New South Wales,150.6012,-34.428855 +2022,8,18,1,New South Wales,151.1166,-29.7667 +2021,7,4,1,New South Wales,150.627309,-34.421269 +2021,9,7,1,New South Wales,153.407895,-28.98187 +2020,7,11,1,New South Wales,152.956,-30.6653 +2023,8,21,1,New South Wales,152.19331,-32.2273 +2022,5,29,1,New South Wales,153.103779,-29.48551 +2020,10,19,1,New South Wales,149.930096,-36.638123 +2021,7,19,1,New South Wales,153.315933,-28.83683 +2022,7,12,1,New South Wales,149.543438,-33.699723 +2020,1,5,1,New South Wales,150.809,-34.20866 +2024,1,10,1,New South Wales,152.928724,-31.457893 +2023,6,28,1,New South Wales,152.77244,-31.631884 +2020,9,24,1,New South Wales,149.543438,-33.699723 +2022,8,29,1,New South Wales,153.105705,-30.303863 +2024,7,3,1,New South Wales,152.06443,-32.70682 +2020,10,24,1,New South Wales,149.96897,-36.58553 +2021,1,19,1,New South Wales,152.862817,-31.45929 +2023,10,12,1,New South Wales,153.070285,-30.888223 +2021,5,30,1,New South Wales,150.516033,-34.448267 +2022,9,5,1,New South Wales,153.464202,-28.323277 +2020,10,13,1,New South Wales,149.880784,-36.581514 +2023,11,13,1,New South Wales,152.92566,-31.466612 +2020,7,23,1,New South Wales,152.868447,-29.667471 +2021,8,12,1,New South Wales,150.521823,-34.46518 +2024,1,22,1,New South Wales,153.10813,-29.490208 +2020,10,19,1,New South Wales,149.930096,-36.638123 +2020,10,19,1,New South Wales,153.3033,-28.821668 +2020,2,3,1,New South Wales,153.336451,-28.817829 +2020,9,22,1,New South Wales,153.445905,-28.693131 +2021,6,21,1,New South Wales,150.82369,-34.141271 +2021,4,15,1,New South Wales,153.116299,-29.465157 +2023,6,20,1,New South Wales,149.920031,-36.586615 +2020,10,13,1,New South Wales,149.930096,-36.638123 +2022,8,29,1,New South Wales,153.45232,-28.709687 +2021,5,11,1,New South Wales,150.609145,-34.420734 +2022,8,6,1,New South Wales,150.793611,-34.251556 +2021,5,26,1,New South Wales,150.602778,-34.434917 +2020,10,3,1,New South Wales,153.180055,-28.84707 +2023,10,27,1,New South Wales,152.921237,-31.480956 +2020,10,29,1,New South Wales,150.900125,-33.999016 +2021,11,29,1,New South Wales,152.824636,-29.505494 +2021,4,6,1,New South Wales,150.606869,-34.437594 +2020,8,3,1,New South Wales,152.793635,-31.126932 +2021,1,29,1,New South Wales,153.103082,-29.48728 +2021,5,18,1,New South Wales,152.893086,-31.454902 +2022,7,14,1,New South Wales,153.291961,-28.992784 +2020,1,1,1,New South Wales,153.103275,-29.487588 +2021,4,27,1,New South Wales,150.610226,-34.419052 +2020,11,29,1,New South Wales,152.851464,-29.692524 +2021,4,28,1,New South Wales,150.636324,-34.421795 +2021,6,23,1,New South Wales,150.625715,-34.386429 +2021,9,17,1,New South Wales,151.665854,-30.508393 +2022,12,22,1,New South Wales,152.990338,-28.967517 +2021,7,1,1,New South Wales,150.597443,-34.412977 +2021,8,28,1,New South Wales,150.522338,-34.466895 +2020,4,20,1,New South Wales,152.874162,-31.485045 +2021,7,10,1,New South Wales,150.631465,-34.3881 +2021,1,28,1,New South Wales,153.32037,-28.843373 +2021,6,9,1,New South Wales,150.518216,-34.453541 +2022,9,29,1,New South Wales,152.90555,-30.23703 +2023,10,9,1,New South Wales,150.785204,-33.709455 +2021,3,5,1,New South Wales,150.61661,-34.434448 +2021,5,11,1,New South Wales,150.517446,-34.453462 +2020,12,4,1,New South Wales,152.90178,-31.442354 +2023,12,3,1,New South Wales,152.070088,-32.71298 +2021,9,16,1,New South Wales,153.31584,-28.82292 +2020,7,25,1,New South Wales,153.103774,-29.485608 +2020,5,27,1,New South Wales,152.92565,-31.445376 +2022,9,30,1,New South Wales,152.90497,-30.2384 +2023,6,6,1,New South Wales,151.755685,-32.769937 +2021,8,1,1,New South Wales,150.517979,-34.447946 +2020,4,20,1,New South Wales,152.862834,-31.53509 +2020,12,4,1,New South Wales,152.90604,-31.450185 +2022,9,18,1,New South Wales,152.7273,-29.934892 +2021,3,15,1,New South Wales,150.615372,-34.434361 +2020,1,16,1,New South Wales,150.809,-34.20866 +2021,11,26,1,New South Wales,152.920256,-31.439889 +2021,6,17,1,New South Wales,150.521404,-34.465713 +2021,6,11,1,New South Wales,153.472975,-28.264652 +2022,11,4,1,New South Wales,152.8527,-31.452139 +2024,9,25,1,New South Wales,150.785332,-34.194318 +2020,11,15,1,New South Wales,150.996969,-33.993433 +2020,11,12,1,New South Wales,152.879262,-29.662176 +2021,10,15,1,New South Wales,151.718126,-29.75876 +2021,9,2,1,New South Wales,150.536525,-34.497491 +2023,6,9,1,New South Wales,150.79787,-34.14263 +2021,5,3,1,New South Wales,150.606675,-34.45773 +2021,7,15,1,New South Wales,150.596693,-34.409924 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2023,4,26,1,New South Wales,153.108092,-29.490222 +2021,5,7,1,New South Wales,150.632626,-34.418288 +2021,5,21,1,New South Wales,150.517598,-34.451986 +2024,2,7,1,New South Wales,150.785978,-33.709609 +2021,5,4,1,New South Wales,150.62318,-34.397622 +2021,4,14,1,New South Wales,153.591837,-28.635618 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2020,8,27,1,New South Wales,153.103623,-29.485949 +2020,10,13,1,New South Wales,153.104149,-29.480883 +2021,4,2,1,New South Wales,150.61588,-34.434479 +2021,5,4,1,New South Wales,152.18685,-31.6704 +2021,10,29,1,New South Wales,152.9814,-30.4375 +2023,6,19,1,New South Wales,149.952618,-36.579451 +2021,1,20,1,New South Wales,152.077015,-32.722569 +2021,5,2,1,New South Wales,150.615459,-34.435535 +2022,1,30,1,New South Wales,152.829547,-29.642903 +2021,5,10,1,New South Wales,150.628068,-34.389765 +2021,7,22,1,New South Wales,152.03675,-32.73736 +2024,7,22,1,New South Wales,152.628617,-31.431123 +2023,9,14,1,New South Wales,151.726179,-32.671233 +2023,10,20,1,New South Wales,150.9865,-34.090201 +2023,12,2,1,New South Wales,153.073782,-30.354913 +2024,1,15,1,New South Wales,152.432368,-31.806282 +2021,9,15,1,New South Wales,153.092095,-29.4882 +2020,11,24,1,New South Wales,153.284492,-28.821488 +2023,9,24,1,New South Wales,153.323433,-28.855525 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2023,7,17,1,New South Wales,152.86829,-31.47469 +2021,7,27,1,New South Wales,150.978618,-34.085723 +2023,3,20,1,New South Wales,152.877853,-31.458368 +2020,6,24,1,New South Wales,151.104205,-33.132832 +2023,1,5,1,New South Wales,153.284266,-28.666818 +2021,5,25,1,New South Wales,150.516481,-34.450016 +2021,8,10,1,New South Wales,150.632093,-34.418296 +2021,6,5,1,New South Wales,150.51953,-34.456596 +2020,4,5,1,New South Wales,153.517213,-28.574061 +2021,6,21,1,New South Wales,150.51961,-34.46125 +2020,11,,1,New South Wales,150.534708,-34.409744 +2021,5,11,1,New South Wales,150.628111,-34.389793 +2024,1,27,1,New South Wales,153.109755,-29.490208 +2021,4,17,1,New South Wales,150.61613,-34.43104 +2021,7,21,1,New South Wales,150.516831,-34.448852 +2020,10,6,1,New South Wales,152.039439,-32.732712 +2021,4,28,1,New South Wales,150.808987,-34.208693 +2020,11,18,1,New South Wales,153.369052,-28.953149 +2021,9,16,1,New South Wales,150.645024,-34.398252 +2021,11,12,1,New South Wales,152.063267,-32.70776 +2021,6,14,1,New South Wales,150.64032,-34.396899 +2021,5,18,1,New South Wales,153.402704,-28.964199 +2021,4,29,1,New South Wales,150.616701,-34.399065 +2022,10,19,1,New South Wales,152.789723,-31.638231 +2021,4,8,1,New South Wales,152.059278,-32.739099 +2021,5,13,1,New South Wales,150.62878,-34.389572 +2022,5,17,1,New South Wales,152.891735,-31.456829 +2020,7,1,1,New South Wales,152.793633,-30.2184 +2023,12,8,1,New South Wales,152.077253,-32.722463 +2021,3,11,1,New South Wales,150.607809,-34.430211 +2021,5,13,1,New South Wales,150.517515,-34.453689 +2021,4,26,1,New South Wales,150.624388,-34.399917 +2022,9,1,1,New South Wales,150.790799,-34.185935 +2020,6,27,1,New South Wales,152.88866,-30.4527 +2021,5,29,1,New South Wales,150.523913,-34.452628 +2020,10,29,1,New South Wales,152.893086,-31.454902 +2024,1,11,1,New South Wales,151.972825,-32.184185 +2021,6,19,1,New South Wales,150.627842,-34.420864 +2020,10,14,1,New South Wales,153.097637,-29.492379 +2023,6,10,1,New South Wales,153.099772,-29.491613 +2021,9,18,1,New South Wales,152.893946,-31.432432 +2021,6,4,1,New South Wales,150.615859,-34.436381 +2020,10,25,1,New South Wales,152.905268,-31.443561 +2023,6,22,1,New South Wales,153.103967,-29.485258 +2021,8,23,1,New South Wales,152.924902,-31.459395 +2020,12,8,1,New South Wales,149.972032,-36.288695 +2022,9,13,1,New South Wales,153.591395,-28.735249 +2021,8,21,1,New South Wales,150.520689,-34.465599 +2022,10,27,1,New South Wales,152.835793,-31.452685 +2020,1,21,1,New South Wales,150.792747,-34.140359 +2023,1,26,1,New South Wales,153.301913,-28.822705 +2020,12,16,1,New South Wales,153.327443,-28.817277 +2020,11,2,1,New South Wales,149.945227,-36.57753 +2024,6,14,1,New South Wales,150.645921,-33.734898 +2022,12,5,1,New South Wales,151,-34 +2024,6,26,1,New South Wales,152.698567,-31.642022 +2020,10,29,1,New South Wales,149.976368,-36.555504 +2021,5,20,1,New South Wales,150.639157,-34.493126 +2021,4,27,1,New South Wales,150.602795,-34.435837 +2021,8,11,1,New South Wales,152.077829,-32.722008 +2021,12,13,1,New South Wales,153.293478,-28.864618 +2024,2,27,1,New South Wales,152.066656,-32.707195 +2020,9,3,1,New South Wales,152.918428,-31.445964 +2021,5,7,1,New South Wales,150.632782,-34.418535 +2021,11,2,1,New South Wales,151.069305,-33.145008 +2020,,,1,New South Wales,152.65413,-30.554671 +2021,6,14,1,New South Wales,150.615161,-34.431472 +2021,5,21,1,New South Wales,150.529895,-34.471213 +2022,6,27,1,New South Wales,152.9433,-30.38978 +2021,3,5,1,New South Wales,150.51834,-34.446412 +2020,9,1,1,New South Wales,152.898617,-29.631816 +2022,6,28,1,New South Wales,152.94379,-30.39093 +2022,4,8,1,New South Wales,153.103269,-29.489162 +2021,6,26,1,New South Wales,150.522427,-34.464264 +2023,5,21,1,New South Wales,152.785356,-31.632454 +2021,3,17,1,New South Wales,152.905243,-31.457063 +2021,10,19,1,New South Wales,152.811234,-29.808086 +2021,5,28,1,New South Wales,150.51794,-34.451858 +2021,7,7,1,New South Wales,150.604874,-34.419037 +2023,12,31,1,New South Wales,152.298145,-31.945277 +2021,6,28,1,New South Wales,150.596068,-34.411625 +2020,9,15,1,New South Wales,153.003034,-29.184528 +2022,4,26,1,New South Wales,150.97938,-34.02535 +2021,4,1,1,New South Wales,150.516741,-34.446758 +2021,6,12,1,New South Wales,150.626725,-34.385349 +2021,6,1,1,New South Wales,150.61606,-34.437719 +2022,8,30,1,New South Wales,149.321901,-36.29802 +2021,7,4,1,New South Wales,150.629378,-34.390359 +2024,4,1,1,New South Wales,150.990071,-34.025907 +2021,9,8,1,New South Wales,150.595958,-34.454193 +2022,8,27,1,New South Wales,153.108178,-29.490278 +2021,6,25,1,New South Wales,150.514225,-34.447555 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2023,9,29,1,New South Wales,152.031308,-32.646794 +2024,4,9,1,New South Wales,153.071657,-30.887293 +2021,3,9,1,New South Wales,150.514711,-34.445861 +2021,6,7,1,New South Wales,150.606959,-34.433665 +2021,8,5,1,New South Wales,153.60155,-28.68121 +2021,4,23,1,New South Wales,150.617234,-34.434307 +2021,4,22,1,New South Wales,150.609211,-34.419167 +2020,10,14,1,New South Wales,149.880784,-36.581514 +2021,9,23,1,New South Wales,153.109392,-30.298612 +2021,6,24,1,New South Wales,150.627355,-34.420404 +2021,5,29,1,New South Wales,150.639089,-34.491313 +2021,6,11,1,New South Wales,150.521622,-34.465347 +2021,4,8,1,New South Wales,150.520305,-34.447299 +2021,8,3,1,New South Wales,153.372792,-28.249959 +2021,5,5,1,New South Wales,150.520401,-34.435978 +2021,10,8,1,New South Wales,153.06102,-30.36024 +2021,5,25,1,New South Wales,150.518099,-34.453466 +2021,4,20,1,New South Wales,150.610337,-34.418982 +2021,4,24,1,New South Wales,150.605413,-34.423808 +2021,7,10,1,New South Wales,150.626698,-34.42132 +2022,12,10,1,New South Wales,150.84221,-34.062606 +2021,4,23,1,New South Wales,153.055997,-30.333952 +2021,11,5,1,New South Wales,150.615689,-34.437397 +2022,12,2,1,New South Wales,153.229691,-28.889174 +2022,12,11,1,New South Wales,153.159047,-28.924752 +2020,11,3,1,New South Wales,149.976368,-36.555504 +2023,6,2,1,New South Wales,151.793304,-32.706988 +2020,11,30,1,New South Wales,153.367822,-28.866277 +2020,10,27,1,New South Wales,149.976368,-36.555504 +2021,5,12,1,New South Wales,150.63307,-34.417576 +2020,10,29,1,New South Wales,149.976368,-36.555504 +2021,6,5,1,New South Wales,150.604964,-34.42773 +2023,11,1,1,New South Wales,152.19328,-32.235407 +2020,8,19,1,New South Wales,150.82369,-34.141271 +2024,1,10,1,New South Wales,152.792895,-31.642221 +2021,7,13,1,New South Wales,150.662658,-34.454009 +2022,10,17,1,New South Wales,153.299604,-28.888568 +2020,10,15,1,New South Wales,149.919967,-36.589766 +2022,12,24,1,New South Wales,150.790596,-34.188134 +2021,6,7,1,New South Wales,150.849941,-34.080193 +2021,6,8,1,New South Wales,150.531284,-34.457691 +2020,11,25,1,New South Wales,152.922814,-31.435448 +2024,7,9,1,New South Wales,152.875973,-31.425029 +2021,12,4,1,New South Wales,153.302555,-28.819938 +2021,2,23,1,New South Wales,150.612975,-34.432178 +2021,6,21,1,New South Wales,150.51988,-34.453583 +2021,5,4,1,New South Wales,150.602982,-34.427402 +2023,3,5,1,New South Wales,152.764317,-31.598374 +2022,4,20,1,New South Wales,150.848835,-34.080527 +2021,2,21,1,New South Wales,153.099246,-29.490675 +2022,10,2,1,New South Wales,153.19115,-28.824162 +2021,6,17,1,New South Wales,150.641943,-34.396822 +2021,2,24,1,New South Wales,151.770239,-31.896106 +2023,8,1,1,New South Wales,150.784282,-33.717285 +2021,7,4,1,New South Wales,150.5256,-34.465527 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2020,11,28,1,New South Wales,149.959252,-36.447255 +2023,7,29,1,New South Wales,153.07297,-28.81768 +2022,9,15,1,New South Wales,153.562668,-28.386826 +2020,10,17,1,New South Wales,149.328896,-35.988571 +2020,12,2,1,New South Wales,152.724004,-31.52176 +2020,11,6,1,New South Wales,149.994744,-36.560944 +2020,11,6,1,New South Wales,150.010499,-36.556654 +2021,4,19,1,New South Wales,150.630294,-34.394532 +2021,11,14,1,New South Wales,152.318115,-31.920613 +2021,6,23,1,New South Wales,150.790385,-34.146302 +2021,9,9,1,New South Wales,150.79088,-34.19933 +2024,3,29,1,New South Wales,152.337832,-32.302205 +2022,8,30,1,New South Wales,149.319781,-36.298767 +2021,8,28,1,New South Wales,152.383632,-31.923715 +2023,4,13,1,New South Wales,153.090797,-29.487238 +2023,5,14,1,New South Wales,149.761113,-32.403422 +2020,12,27,1,New South Wales,152.111973,-32.738085 +2020,9,24,1,New South Wales,150.666695,-31.514409 +2021,6,16,1,New South Wales,150.603756,-34.436875 +2022,8,27,1,New South Wales,150.808987,-34.208693 +2022,2,9,1,New South Wales,152.168799,-32.7498 +2023,4,15,1,New South Wales,150.808987,-34.208693 +2022,10,16,1,New South Wales,153.278736,-28.93243 +2024,1,5,1,New South Wales,152.9262,-30.50636 +2021,11,2,1,New South Wales,152.891714,-31.442328 +2022,7,30,1,New South Wales,153.55779,-28.395703 +2021,4,23,1,New South Wales,150.635406,-34.420398 +2021,5,14,1,New South Wales,150.520945,-34.454002 +2023,2,17,1,New South Wales,153.306593,-28.816073 +2021,5,20,1,New South Wales,150.631093,-34.387408 +2021,9,21,1,New South Wales,150.57289,-29.5427 +2021,5,15,1,New South Wales,150.628768,-34.389238 +2021,5,13,1,New South Wales,153.555591,-28.414391 +2021,5,25,1,New South Wales,153.094617,-29.488475 +2021,2,15,1,New South Wales,152.927064,-31.465801 +2020,10,12,1,New South Wales,149.96634,-36.680336 +2021,5,3,1,New South Wales,150.526076,-34.457901 +2022,12,2,1,New South Wales,153.311244,-28.818643 +2020,1,15,1,New South Wales,153.104063,-29.479454 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2024,1,28,1,New South Wales,152.005331,-32.727628 +2023,2,25,1,New South Wales,149.557978,-33.494935 +2021,5,27,1,New South Wales,150.619338,-34.43955 +2022,7,5,1,New South Wales,150.956378,-32.232696 +2021,8,22,1,New South Wales,151.764118,-32.557297 +2024,6,29,1,New South Wales,152.299058,-31.94673 +2021,5,13,1,New South Wales,150.524249,-34.466302 +2023,10,28,1,New South Wales,152.190362,-32.237057 +2021,4,14,1,New South Wales,150.636993,-34.395699 +2023,11,23,1,New South Wales,150.982931,-34.092286 +2021,12,,1,New South Wales,153.599218,-28.719867 +2021,2,24,1,New South Wales,150.613087,-34.43017 +2021,6,1,1,New South Wales,150.62901,-34.390306 +2021,3,13,1,New South Wales,150.523973,-34.462023 +2021,5,5,1,New South Wales,150.622951,-34.397275 +2021,8,17,1,New South Wales,150.518436,-34.442078 +2021,6,18,1,New South Wales,150.521382,-34.465721 +2021,6,23,1,New South Wales,150.964623,-34.018885 +2021,5,15,1,New South Wales,150.640439,-34.494025 +2024,3,7,1,New South Wales,150.784778,-33.708055 +2022,4,22,1,New South Wales,150.834685,-34.069476 +2021,4,29,1,New South Wales,150.525158,-34.452861 +2021,11,12,1,New South Wales,153.263242,-28.592167 +2023,8,22,1,New South Wales,150.786219,-33.70624 +2021,6,1,1,New South Wales,150.524353,-34.453584 +2021,7,5,1,New South Wales,150.513001,-34.445916 +2021,11,3,1,New South Wales,152.82374,-29.811037 +2020,1,24,1,New South Wales,153.556318,-28.672704 +2021,2,19,1,New South Wales,153.429857,-29.020219 +2024,2,13,1,New South Wales,150.784214,-33.717289 +2021,6,15,1,New South Wales,150.520466,-34.465793 +2020,11,20,1,New South Wales,153.558084,-28.387756 +2021,3,21,1,New South Wales,150.52545,-34.459926 +2021,9,20,1,New South Wales,150.650774,-34.396821 +2022,11,2,1,New South Wales,153.394231,-29.019887 +2022,6,16,1,New South Wales,152.979415,-31.154008 +2021,8,30,1,New South Wales,152.06153,-32.710795 +2021,5,7,1,New South Wales,150.627319,-34.390102 +2022,8,8,1,New South Wales,153.103586,-29.488466 +2021,7,30,1,New South Wales,150.59764,-34.427018 +2021,8,26,1,New South Wales,152.854037,-31.553362 +2021,7,9,1,New South Wales,150.630932,-34.388856 +2020,11,,1,New South Wales,150.519407,-34.488077 +2020,5,28,1,New South Wales,153.55964,-28.30651 +2020,8,13,1,New South Wales,153.567207,-28.39301 +2021,6,16,1,New South Wales,150.639893,-34.400091 +2022,12,8,1,New South Wales,153.109331,-29.490609 +2020,6,19,1,New South Wales,151.02698,-34.03451 +2021,7,11,1,New South Wales,150.630848,-34.386447 +2020,10,18,1,New South Wales,152.874981,-31.42526 +2022,1,2,1,New South Wales,152.063595,-32.706114 +2021,9,22,1,New South Wales,153.042946,-28.469302 +2021,5,28,1,New South Wales,150.63916,-34.491467 +2021,11,13,1,New South Wales,150.808987,-34.208693 +2022,11,2,1,New South Wales,153.315736,-28.849837 +2021,9,7,1,New South Wales,150.517534,-34.447532 +2021,6,7,1,New South Wales,150.532745,-34.45873 +2020,11,30,1,New South Wales,152.559854,-31.156814 +2022,1,18,1,New South Wales,152.063523,-32.705809 +2020,9,6,1,New South Wales,153.104074,-29.480794 +2021,3,27,1,New South Wales,150.534734,-34.462133 +2022,2,11,1,New South Wales,153.303098,-28.848406 +2021,4,28,1,New South Wales,150.616848,-34.42954 +2022,6,7,1,New South Wales,150.780718,-33.382404 +2023,11,1,1,New South Wales,150.785484,-33.713905 +2021,7,7,1,New South Wales,150.642121,-34.396294 +2020,11,16,1,New South Wales,153.316984,-28.937089 +2021,3,28,1,New South Wales,150.635448,-34.488348 +2021,4,7,1,New South Wales,150.606722,-34.429784 +2020,11,16,1,New South Wales,153.316984,-28.937089 +2020,12,25,1,New South Wales,153.410497,-28.984278 +2021,6,17,1,New South Wales,150.51912,-34.45977 +2021,6,17,1,New South Wales,150.627546,-34.420967 +2022,7,23,1,New South Wales,150.884927,-34.01848 +2021,4,18,1,New South Wales,150.629806,-34.394478 +2023,2,26,1,New South Wales,152.901508,-31.442053 +2022,10,25,1,New South Wales,152.471384,-31.943285 +2021,9,15,1,New South Wales,150.517977,-34.442141 +2021,2,15,1,New South Wales,153.186783,-28.888915 +2021,5,30,1,New South Wales,150.640056,-34.396984 +2021,7,31,1,New South Wales,150.518741,-34.437279 +2020,9,2,1,New South Wales,153.104286,-29.480056 +2021,5,18,1,New South Wales,152.924749,-31.465101 +2020,1,31,1,New South Wales,152.879562,-29.707235 +2023,1,24,1,New South Wales,153.302425,-28.822664 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2020,10,9,1,New South Wales,152.994981,-30.89503 +2021,5,2,1,New South Wales,150.637485,-34.423837 +2024,1,21,1,New South Wales,152.541567,-32.329916 +2023,10,11,1,New South Wales,150.448399,-34.337539 +2020,1,11,1,New South Wales,149.333385,-31.576445 +2020,8,26,1,New South Wales,152.8933,-31.443058 +2023,7,28,1,New South Wales,152.926061,-31.449071 +2021,5,11,1,New South Wales,150.517457,-34.453074 +2022,10,31,1,New South Wales,153.396801,-29.015679 +2021,3,12,1,New South Wales,150.520265,-34.44683 +2023,4,24,1,New South Wales,149.341446,-36.313388 +2021,7,6,1,New South Wales,150.603608,-34.419193 +2021,10,14,1,New South Wales,152.881757,-31.423978 +2021,12,1,1,New South Wales,153.304436,-28.826036 +2021,11,30,1,New South Wales,153.321546,-28.834841 +2021,4,22,1,New South Wales,150.6292,-34.395124 +2023,2,19,1,New South Wales,153.296921,-28.847242 +2021,6,13,1,New South Wales,150.521367,-34.45923 +2021,7,2,1,New South Wales,153.108221,-29.490222 +2021,4,3,1,New South Wales,150.534045,-34.480023 +2023,1,25,1,New South Wales,152.37104,-31.923129 +2020,9,13,1,New South Wales,150.11597,-31.10181 +2021,6,13,1,New South Wales,150.520656,-34.453843 +2022,4,6,1,New South Wales,152.969466,-30.47619 +2020,1,4,1,New South Wales,153.103822,-29.485489 +2021,11,6,1,New South Wales,152.92219,-31.439288 +2020,10,29,1,New South Wales,153.28003,-28.818531 +2020,11,20,1,New South Wales,153.103741,-29.485655 +2021,5,4,1,New South Wales,150.616088,-34.436377 +2020,12,11,1,New South Wales,151.481504,-32.837813 +2021,12,30,1,New South Wales,153.320895,-28.823763 +2020,12,28,1,New South Wales,152.228038,-29.935354 +2022,4,26,1,New South Wales,151.815261,-32.582565 +2021,9,18,1,New South Wales,150.513835,-34.445671 +2021,10,20,1,New South Wales,152.916183,-31.485835 +2021,4,25,1,New South Wales,150.629438,-34.388611 +2022,6,2,1,New South Wales,152.930242,-31.470262 +2021,1,19,1,New South Wales,151.6662,-30.501562 +2023,5,6,1,New South Wales,150.78569,-33.714183 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2023,11,4,1,New South Wales,153.101596,-29.489503 +2021,12,20,1,New South Wales,150.615422,-34.440655 +2021,5,2,1,New South Wales,150.609592,-34.436376 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2021,6,18,1,New South Wales,150.622517,-34.384564 +2023,5,13,1,New South Wales,150.929799,-31.093492 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2020,11,10,1,New South Wales,152.749191,-30.210155 +2021,3,24,1,New South Wales,153.479463,-28.661989 +2024,8,21,1,New South Wales,152.017104,-32.298753 +2020,7,19,1,New South Wales,153.413761,-28.26577 +2023,11,25,1,New South Wales,153.103913,-29.489605 +2020,9,14,1,New South Wales,152.905042,-31.435643 +2021,7,19,1,New South Wales,150.623097,-34.383655 +2021,5,21,1,New South Wales,150.607421,-34.433124 +2020,10,15,1,New South Wales,149.919967,-36.589766 +2021,6,4,1,New South Wales,150.630862,-34.420643 +2023,6,6,1,New South Wales,151.7905,-32.65447 +2021,5,9,1,New South Wales,150.520289,-34.466619 +2022,7,16,1,New South Wales,152.915024,-31.444996 +2021,8,31,1,New South Wales,153.401999,-28.257722 +2020,11,6,1,New South Wales,150.015337,-36.564757 +2021,8,5,1,New South Wales,153.60155,-28.68121 +2021,3,7,1,New South Wales,150.603501,-34.435517 +2021,3,30,1,New South Wales,150.515064,-34.447545 +2023,9,8,1,New South Wales,153.022552,-28.489326 +2021,8,22,1,New South Wales,150.51383,-34.447321 +2021,3,31,1,New South Wales,150.603252,-34.440435 +2020,,,1,New South Wales,151.857833,-32.531311 +2021,6,16,1,New South Wales,150.604277,-34.4514 +2021,6,26,1,New South Wales,150.597043,-34.417098 +2022,11,17,1,New South Wales,153.38036,-28.30386 +2020,10,18,1,New South Wales,152.922916,-31.439779 +2020,10,30,1,New South Wales,149.977333,-36.564828 +2022,7,21,1,New South Wales,150.883632,-34.015286 +2021,4,23,1,New South Wales,150.606817,-34.434473 +2023,1,28,1,New South Wales,153.302121,-28.820343 +2022,10,12,1,New South Wales,152.921887,-31.460622 +2020,3,25,1,New South Wales,150.09752,-31.077054 +2020,11,3,1,New South Wales,153.317651,-28.862857 +2021,10,,1,New South Wales,149.368535,-36.165437 +2021,6,25,1,New South Wales,150.62508,-34.385822 +2023,9,7,1,New South Wales,152.220048,-31.425909 +2023,9,15,1,New South Wales,150.785517,-33.711249 +2023,8,13,1,New South Wales,151.008863,-34.04522 +2021,5,29,1,New South Wales,150.631147,-34.387391 +2021,6,15,1,New South Wales,150.630872,-34.42068 +2023,3,10,1,New South Wales,152.080111,-32.728237 +2021,2,22,1,New South Wales,150.886215,-34.017297 +2024,7,11,1,New South Wales,152.424173,-31.952018 +2020,4,3,1,New South Wales,152.807472,-31.125374 +2021,5,13,1,New South Wales,150.113584,-29.36183 +2022,6,30,1,New South Wales,152.918821,-31.442348 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2020,10,14,1,New South Wales,149.919967,-36.589766 +2021,3,10,1,New South Wales,151.344408,-29.375474 +2021,6,1,1,New South Wales,150.520618,-34.454743 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2021,5,13,1,New South Wales,150.517369,-34.440244 +2020,10,20,1,New South Wales,153.273941,-28.820088 +2020,11,6,1,New South Wales,150.007338,-36.56122 +2022,11,21,1,New South Wales,152.872881,-31.402427 +2022,7,6,1,New South Wales,153.557,-28.400484 +2024,1,10,1,New South Wales,150.78583,-33.714273 +2021,5,16,1,New South Wales,150.600971,-34.427715 +2022,4,27,1,New South Wales,150.456297,-31.272867 +2021,6,16,1,New South Wales,150.522536,-34.451735 +2021,6,3,1,New South Wales,150.615278,-34.436523 +2022,9,15,1,New South Wales,153.101263,-29.489923 +2021,5,17,1,New South Wales,150.637344,-34.423825 +2021,3,6,1,New South Wales,150.530575,-34.469955 +2021,5,19,1,New South Wales,150.633743,-34.418409 +2020,4,3,1,New South Wales,150.91555,-29.43722 +2021,9,24,1,New South Wales,153.101478,-29.489694 +2021,7,5,1,New South Wales,153.104015,-29.484292 +2021,9,17,1,New South Wales,150.808987,-34.208693 +2023,11,21,1,New South Wales,151.521034,-30.631245 +2020,11,9,1,New South Wales,152.837072,-31.492498 +2021,10,16,1,New South Wales,152.963266,-28.350224 +2023,3,5,1,New South Wales,153.108108,-29.490441 +2021,4,26,1,New South Wales,150.602353,-34.425812 +2021,5,18,1,New South Wales,150.531097,-34.471066 +2024,2,7,1,New South Wales,150.785637,-33.713821 +2021,6,23,1,New South Wales,153.501758,-28.236784 +2021,12,9,1,New South Wales,153.425736,-28.949727 +2021,6,4,1,New South Wales,152.872676,-31.431129 +2021,5,31,1,New South Wales,150.630855,-34.388882 +2021,6,20,1,New South Wales,150.51991,-34.452565 +2021,4,27,1,New South Wales,150.616795,-34.429485 +2021,9,5,1,New South Wales,152.300422,-31.948252 +2021,11,15,1,New South Wales,153.448053,-28.944235 +2022,5,20,1,New South Wales,153.104187,-29.478987 +2021,3,13,1,New South Wales,150.517391,-34.451991 +2021,7,13,1,New South Wales,150.513805,-34.446311 +2020,10,29,1,New South Wales,149.977333,-36.564828 +2023,3,8,1,New South Wales,152.869286,-30.246236 +2021,4,22,1,New South Wales,150.609211,-34.419167 +2021,3,31,1,New South Wales,150.610027,-34.429488 +2021,6,14,1,New South Wales,150.515796,-34.446685 +2023,10,21,1,New South Wales,152.610808,-31.42495 +2021,6,4,1,New South Wales,150.522068,-34.466087 +2021,5,24,1,New South Wales,150.616992,-34.435177 +2020,10,17,1,New South Wales,152.900474,-31.473876 +2021,5,14,1,New South Wales,150.640305,-34.494113 +2021,6,16,1,New South Wales,153.560416,-28.286772 +2020,1,4,1,New South Wales,152.413847,-31.935808 +2023,10,11,1,New South Wales,150.887239,-33.251654 +2021,6,12,1,New South Wales,150.515827,-34.447109 +2021,4,25,1,New South Wales,150.609446,-34.418946 +2021,2,23,1,New South Wales,150.610325,-34.43355 +2021,9,30,1,New South Wales,150.790463,-34.190649 +2021,9,11,1,New South Wales,150.978729,-34.129807 +2023,6,8,1,New South Wales,150.82075,-34.10852 +2020,10,,1,New South Wales,152.892385,-31.477808 +2024,1,9,1,New South Wales,152.910248,-31.434539 +2021,6,11,1,New South Wales,150.627223,-34.385818 +2021,5,14,1,New South Wales,150.52766,-34.466534 +2020,12,28,1,New South Wales,151.626968,-30.221438 +2021,6,5,1,New South Wales,150.519653,-34.456482 +2021,5,23,1,New South Wales,150.605575,-34.43224 +2021,4,27,1,New South Wales,150.624361,-34.400503 +2020,2,11,1,New South Wales,152.891245,-31.439244 +2021,8,5,1,New South Wales,153.60237,-28.69032 +2023,3,21,1,New South Wales,152.905732,-31.437715 +2021,6,26,1,New South Wales,150.602127,-34.436013 +2022,2,20,1,New South Wales,153.109422,-29.490525 +2022,8,30,1,New South Wales,151.110282,-29.762752 +2020,4,28,1,New South Wales,150.060153,-33.774415 +2021,9,13,1,New South Wales,150.99898,-34.083125 +2023,11,3,1,New South Wales,152.065787,-32.711089 +2021,9,1,1,New South Wales,150.644313,-34.396462 +2021,3,28,1,New South Wales,150.517004,-34.447818 +2020,1,17,1,New South Wales,152.743408,-31.256856 +2021,5,29,1,New South Wales,150.526822,-34.469483 +2023,6,15,1,New South Wales,150.784248,-33.717296 +2023,5,9,1,New South Wales,153.42593,-29.018522 +2021,5,26,1,New South Wales,150.517457,-34.443176 +2021,3,8,1,New South Wales,150.616794,-34.351266 +2021,5,2,1,New South Wales,150.605211,-34.426292 +2023,12,19,1,New South Wales,152.81478,-30.256304 +2020,11,11,1,New South Wales,150.010499,-36.556654 +2021,4,19,1,New South Wales,150.637539,-34.421539 +2024,1,16,1,New South Wales,152.915587,-31.478594 +2021,4,11,1,New South Wales,150.519009,-34.444415 +2020,11,9,1,New South Wales,153.320406,-28.819981 +2021,3,14,1,New South Wales,150.520175,-34.446927 +2021,6,24,1,New South Wales,150.627196,-34.420266 +2021,7,26,1,New South Wales,152.773135,-30.194587 +2020,3,25,1,New South Wales,150.057818,-33.778642 +2021,7,18,1,New South Wales,150.624331,-34.38615 +2020,5,24,1,New South Wales,153.003753,-29.184276 +2021,4,29,1,New South Wales,150.606548,-34.435126 +2022,9,2,1,New South Wales,150.790596,-34.188134 +2022,11,25,1,New South Wales,153.018937,-30.367369 +2020,2,4,1,New South Wales,153.104208,-29.47982 +2020,11,11,1,New South Wales,150.101352,-33.779357 +2021,9,7,1,New South Wales,150.521289,-34.465927 +2020,11,3,1,New South Wales,152.899894,-29.631666 +2021,1,3,1,New South Wales,153.121061,-30.298272 +2020,8,16,1,New South Wales,152.9863,-29.030705 +2021,3,7,1,New South Wales,150.525066,-34.457818 +2023,1,5,1,New South Wales,153.108746,-29.49003 +2023,11,15,1,New South Wales,152.916677,-30.275314 +2023,12,30,1,New South Wales,153.108119,-29.490231 +2022,9,27,1,New South Wales,149.428728,-36.255228 +2021,9,14,1,New South Wales,150.515598,-34.454497 +2021,8,11,1,New South Wales,150.632019,-34.418205 +2021,7,5,1,New South Wales,150.627362,-34.421315 +2021,6,30,1,New South Wales,150.642533,-34.395553 +2022,8,19,1,New South Wales,153.10424,-29.480135 +2021,6,6,1,New South Wales,150.616425,-34.435996 +2022,11,24,1,New South Wales,152.057923,-31.743645 +2022,6,24,1,New South Wales,150.838797,-34.05565 +2021,1,20,1,New South Wales,152.15365,-32.73161 +2020,11,26,1,New South Wales,153.103784,-29.485636 +2022,3,10,1,New South Wales,153.10747,-29.4901 +2021,6,9,1,New South Wales,150.646489,-34.397207 +2021,5,9,1,New South Wales,150.516605,-34.469357 +2024,1,15,1,New South Wales,152.435797,-31.801777 +2023,8,3,1,New South Wales,152.210153,-31.56082 +2021,7,7,1,New South Wales,150.642132,-34.396276 +2022,11,6,1,New South Wales,152.921258,-31.453544 +2021,11,16,1,New South Wales,152.823679,-29.810468 +2020,11,12,1,New South Wales,150.808987,-34.208693 +2021,7,29,1,New South Wales,152.911125,-31.148049 +2022,11,24,1,New South Wales,152.89647,-31.461028 +2021,9,1,1,New South Wales,150.51453,-34.443901 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2023,10,6,1,New South Wales,152.784427,-31.63003 +2020,5,26,1,New South Wales,150.056482,-33.777303 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2020,3,17,1,New South Wales,153.361561,-28.870998 +2020,6,28,1,New South Wales,153.102194,-29.488209 +2021,4,15,1,New South Wales,150.604435,-34.428314 +2021,5,9,1,New South Wales,150.639176,-34.491675 +2022,10,5,1,New South Wales,153.050376,-30.445749 +2021,7,21,1,New South Wales,150.630678,-34.420604 +2020,9,27,1,New South Wales,152.925723,-31.447944 +2020,2,26,1,New South Wales,153.340398,-28.806874 +2021,8,6,1,New South Wales,153.48144,-28.62669 +2023,5,19,1,New South Wales,152.921734,-31.470525 +2023,9,17,1,New South Wales,153.018977,-30.364627 +2023,10,24,1,New South Wales,153.071543,-30.885823 +2020,6,29,1,New South Wales,152.797106,-30.217223 +2020,10,5,1,New South Wales,149.959933,-36.657162 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2023,11,19,1,New South Wales,150.992085,-34.047642 +2021,1,27,1,New South Wales,153.394041,-28.720572 +2023,6,14,1,New South Wales,153.523716,-28.588488 +2020,10,19,1,New South Wales,149.938155,-36.621708 +2021,11,22,1,New South Wales,152.879994,-31.448871 +2021,5,5,1,New South Wales,150.522883,-34.45249 +2021,6,1,1,New South Wales,150.604649,-34.424649 +2020,9,17,1,New South Wales,150.813707,-34.143607 +2024,2,11,1,New South Wales,152.926349,-31.451861 +2021,7,1,1,New South Wales,150.596578,-34.411301 +2024,9,4,1,New South Wales,152.173684,-31.571542 +2022,10,4,1,New South Wales,149.475275,-36.341292 +2022,9,13,1,New South Wales,152.711236,-31.426223 +2020,12,25,1,New South Wales,152.819297,-31.465885 +2021,4,24,1,New South Wales,153.101773,-29.48982 +2022,11,6,1,New South Wales,152.185284,-32.700472 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2024,3,8,1,New South Wales,150.989532,-34.09331 +2020,1,10,1,New South Wales,152.820431,-31.160261 +2022,6,1,1,New South Wales,152.926404,-31.454481 +2020,11,18,1,New South Wales,153.561418,-28.390195 +2021,5,20,1,New South Wales,150.630315,-34.395308 +2024,4,21,1,New South Wales,152.394269,-31.965174 +2021,1,5,1,New South Wales,153.108237,-29.490395 +2021,5,6,1,New South Wales,150.60396,-34.42707 +2020,10,29,1,New South Wales,153.304202,-28.649902 +2021,5,23,1,New South Wales,150.635988,-34.392767 +2022,7,3,1,New South Wales,152.061357,-32.709627 +2020,8,24,1,New South Wales,151.6,-30.9833 +2022,8,25,1,New South Wales,152.884757,-30.665874 +2021,8,9,1,New South Wales,152.441467,-31.809272 +2023,7,26,1,New South Wales,153.299472,-28.821494 +2023,9,10,1,New South Wales,150.782691,-33.718874 +2021,5,26,1,New South Wales,150.526599,-34.469316 +2022,1,10,1,New South Wales,153.104224,-29.479561 +2021,5,29,1,New South Wales,150.515844,-34.448768 +2021,4,17,1,New South Wales,152.831,-31.28018 +2020,10,29,1,New South Wales,149.949397,-36.554597 +2021,7,23,1,New South Wales,153.557532,-28.388545 +2021,3,30,1,New South Wales,150.616246,-34.434234 +2021,6,6,1,New South Wales,150.608549,-34.434012 +2020,11,4,1,New South Wales,152.868125,-29.66694 +2022,11,9,1,New South Wales,150.980951,-34.016936 +2020,11,30,1,New South Wales,153.367822,-28.866277 +2020,1,14,1,New South Wales,153.302823,-28.844361 +2021,6,19,1,New South Wales,150.627675,-34.421005 +2021,6,11,1,New South Wales,152.893924,-31.432296 +2021,5,21,1,New South Wales,150.514064,-34.446397 +2021,5,30,1,New South Wales,150.604445,-34.424555 +2020,11,1,1,New South Wales,149.976368,-36.555504 +2021,6,5,1,New South Wales,150.60678,-34.42928 +2024,2,3,1,New South Wales,153.109422,-29.490497 +2021,8,1,1,New South Wales,150.633624,-34.418398 +2020,11,30,1,New South Wales,153.343646,-28.866891 +2020,1,23,1,New South Wales,153.413445,-28.661508 +2020,11,26,1,New South Wales,149.917922,-36.474664 +2021,5,11,1,New South Wales,150.624883,-34.399711 +2022,8,6,1,New South Wales,152.914702,-31.469196 +2021,5,4,1,New South Wales,150.52173,-34.466089 +2020,10,20,1,New South Wales,149.919967,-36.589766 +2021,5,25,1,New South Wales,150.594654,-34.427563 +2021,5,2,1,New South Wales,150.609634,-34.436413 +2021,7,14,1,New South Wales,150.643082,-34.395735 +2020,10,13,1,New South Wales,149.930096,-36.638123 +2021,6,29,1,New South Wales,150.596117,-34.411445 +2021,5,25,1,New South Wales,150.526669,-34.469507 +2021,8,5,1,New South Wales,150.520612,-34.465634 +2021,8,12,1,New South Wales,150.603545,-34.426737 +2023,8,16,1,New South Wales,153.110404,-29.490292 +2024,6,24,1,New South Wales,152.456085,-31.937349 +2021,11,,1,New South Wales,152.901602,-28.771137 +2023,9,17,1,New South Wales,153.157837,-29.028095 +2021,6,2,1,New South Wales,151.083939,-29.729503 +2020,11,30,1,New South Wales,153.343646,-28.866891 +2020,7,19,1,New South Wales,152.848198,-31.060477 +2021,4,23,1,New South Wales,150.609435,-34.418937 +2020,11,,1,New South Wales,153.071751,-30.927082 +2024,6,24,1,New South Wales,152.385032,-31.882977 +2021,6,3,1,New South Wales,150.519678,-34.455247 +2021,7,28,1,New South Wales,153.490755,-28.709278 +2020,10,15,1,New South Wales,149.930096,-36.638123 +2020,6,2,1,New South Wales,152.929709,-29.727079 +2022,10,5,1,New South Wales,153.109245,-29.490792 +2020,1,12,1,New South Wales,152.908032,-31.478874 +2021,7,15,1,New South Wales,150.514287,-34.446582 +2022,9,28,1,New South Wales,152.081375,-32.776185 +2020,12,13,1,New South Wales,152.811295,-29.515242 +2021,7,4,1,New South Wales,150.62735,-34.42136 +2022,5,2,1,New South Wales,149.557947,-33.494896 +2023,12,24,1,New South Wales,150.988839,-34.018957 +2022,1,29,1,New South Wales,153.109433,-29.490497 +2021,5,17,1,New South Wales,150.640782,-34.494185 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2023,9,26,1,New South Wales,153.283855,-28.864257 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,5,8,1,New South Wales,150.516646,-34.447036 +2023,11,3,1,New South Wales,150.78988,-34.19412 +2023,9,21,1,New South Wales,153.092385,-29.488149 +2024,5,16,1,New South Wales,152.8881,-31.4349 +2022,10,29,1,New South Wales,153.284729,-28.825935 +2021,6,16,1,New South Wales,150.522527,-34.451654 +2023,12,15,1,New South Wales,152.403779,-31.93913 +2022,9,28,1,New South Wales,150.885889,-34.016736 +2021,6,29,1,New South Wales,152.8814,-31.448177 +2021,2,19,1,New South Wales,152.04316,-32.76786 +2023,6,7,1,New South Wales,150.884737,-34.068805 +2020,11,19,1,New South Wales,149.966791,-36.502277 +2021,4,18,1,New South Wales,150.636875,-34.421165 +2021,6,19,1,New South Wales,150.604031,-34.438683 +2020,1,14,1,New South Wales,150.809,-34.20866 +2021,9,1,1,New South Wales,152.9249,-31.214814 +2021,4,24,1,New South Wales,150.614812,-34.431087 +2021,5,24,1,New South Wales,150.631251,-34.387573 +2022,12,18,1,New South Wales,153.212595,-28.584045 +2021,9,3,1,New South Wales,152.424857,-31.802811 +2021,10,15,1,New South Wales,153.18755,-28.878 +2023,6,7,1,New South Wales,150.884872,-34.070312 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,8,18,1,New South Wales,152.771,-30.106178 +2023,9,11,1,New South Wales,153.394064,-28.958976 +2020,10,29,1,New South Wales,149.976368,-36.555504 +2024,2,11,1,Queensland,152.967206,-28.1485 +2021,5,7,1,New South Wales,150.609223,-34.420664 +2022,2,24,1,New South Wales,150.757608,-33.60486 +2021,8,15,1,New South Wales,153.561963,-28.386971 +2021,10,13,1,New South Wales,152.250288,-30.066931 +2024,10,13,1,New South Wales,150.790833,-34.148056 +2023,10,29,1,New South Wales,150.986459,-34.097138 +2021,6,28,1,New South Wales,150.627381,-34.420251 +2022,4,8,1,New South Wales,152.162576,-32.716605 +2023,10,9,1,New South Wales,152.907235,-31.447645 +2021,9,15,1,New South Wales,151.794957,-32.528033 +2021,5,4,1,New South Wales,150.615839,-34.4363 +2020,11,17,1,New South Wales,150.666541,-33.534396 +2021,6,18,1,New South Wales,150.604237,-34.438705 +2021,6,10,1,New South Wales,150.52551,-34.458647 +2021,7,1,1,New South Wales,150.522203,-34.465558 +2021,4,29,1,New South Wales,150.003439,-36.573425 +2024,1,30,1,New South Wales,152.926887,-31.459542 +2021,5,9,1,New South Wales,150.637311,-34.423815 +2023,12,25,1,New South Wales,151.780764,-32.585101 +2021,7,7,1,New South Wales,150.072106,-33.782885 +2021,6,20,1,New South Wales,150.518876,-34.460288 +2021,5,30,1,New South Wales,150.52368,-34.464199 +2021,7,25,1,New South Wales,150.640396,-34.392627 +2020,1,16,1,New South Wales,152.746264,-31.441596 +2022,8,1,1,New South Wales,150.793311,-34.144709 +2021,5,4,1,New South Wales,150.60536,-34.437474 +2021,6,1,1,New South Wales,150.616343,-34.438095 +2023,9,10,1,New South Wales,150.786175,-33.70602 +2020,10,23,1,New South Wales,151.6662,-30.501562 +2021,5,18,1,New South Wales,150.801219,-34.186227 +2021,3,9,1,New South Wales,153.277563,-28.938117 +2024,5,19,1,New South Wales,152.357267,-32.069989 +2022,9,19,1,New South Wales,152.90631,-30.17555 +2024,2,17,1,New South Wales,152.063752,-32.706526 +2020,10,21,1,New South Wales,149.919967,-36.589766 +2020,1,5,1,New South Wales,153.109567,-29.490488 +2021,6,13,1,New South Wales,153.094719,-29.494261 +2021,3,1,1,New South Wales,150.516996,-34.460205 +2024,1,4,1,New South Wales,150.991693,-34.024104 +2020,2,4,1,New South Wales,153.104146,-29.480014 +2022,1,4,1,New South Wales,152.914916,-31.450468 +2021,1,24,1,New South Wales,152.037048,-32.728656 +2020,12,8,1,New South Wales,149.972032,-36.288695 +2022,11,30,1,New South Wales,153.43396,-28.953 +2022,1,9,1,New South Wales,152.925906,-31.453169 +2021,5,13,1,New South Wales,150.617054,-34.433772 +2023,3,20,1,New South Wales,153.071724,-30.880291 +2021,5,7,1,New South Wales,150.632658,-34.418307 +2021,5,18,1,New South Wales,150.520431,-34.454099 +2020,10,29,1,New South Wales,149.976368,-36.555504 +2020,11,3,1,New South Wales,149.968909,-36.659943 +2021,7,7,1,New South Wales,150.627564,-34.421869 +2021,6,14,1,New South Wales,150.602978,-34.451915 +2021,5,4,1,New South Wales,151.523,-30.509 +2022,4,15,1,New South Wales,153.103983,-29.485244 +2021,5,5,1,New South Wales,150.637247,-34.423769 +2021,5,20,1,New South Wales,150.639189,-34.493145 +2021,9,17,1,New South Wales,151.654877,-32.688193 +2021,7,11,1,New South Wales,150.521862,-34.464595 +2024,1,1,1,New South Wales,153.109385,-29.490521 +2021,2,2,1,New South Wales,153.555833,-28.371944 +2020,3,23,1,New South Wales,152.057723,-32.736906 +2022,9,11,1,New South Wales,150.809735,-34.140203 +2021,5,3,1,New South Wales,150.637501,-34.488911 +2022,1,30,1,New South Wales,153.367963,-28.876416 +2021,5,22,1,New South Wales,150.633701,-34.392471 +2020,3,27,1,New South Wales,153.108333,-29.490451 +2024,1,10,1,New South Wales,152.374468,-31.915708 +2021,5,15,1,New South Wales,150.628755,-34.389301 +2021,5,29,1,New South Wales,150.605648,-34.437281 +2023,7,12,1,New South Wales,152.925267,-31.454118 +2022,8,28,1,New South Wales,152.907325,-31.444176 +2021,4,12,1,New South Wales,150.659763,-34.459047 +2021,6,5,1,New South Wales,150.630482,-34.420636 +2021,4,24,1,New South Wales,150.630597,-34.388777 +2022,12,20,1,New South Wales,150.738094,-34.304797 +2022,7,30,1,New South Wales,152.072735,-32.7105 +2021,6,23,1,New South Wales,150.604294,-34.439004 +2021,6,10,1,New South Wales,150.630202,-34.42091 +2021,10,22,1,New South Wales,153.302555,-28.819938 +2020,4,2,1,New South Wales,152.929763,-29.726427 +2021,10,18,1,New South Wales,152.092401,-28.783062 +2021,7,10,1,New South Wales,150.601866,-34.41237 +2021,5,11,1,New South Wales,150.519427,-34.435427 +2020,12,15,1,New South Wales,151.480202,-32.815056 +2020,5,7,1,New South Wales,150.0369,-34.90779 +2023,8,10,1,New South Wales,152.889824,-30.468214 +2020,10,20,1,New South Wales,153.077582,-30.307633 +2021,8,13,1,New South Wales,153.561545,-28.385605 +2020,10,6,1,New South Wales,152.796711,-31.526289 +2023,9,26,1,New South Wales,150.674854,-34.287614 +2023,9,9,1,New South Wales,152.883674,-31.433321 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2021,6,12,1,New South Wales,150.515879,-34.447191 +2021,7,20,1,New South Wales,150.659175,-34.455177 +2023,9,27,1,New South Wales,153.495538,-28.693263 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2021,7,9,1,New South Wales,150.520477,-34.465793 +2020,1,13,1,New South Wales,152.824764,-31.438954 +2020,10,5,1,New South Wales,150.813678,-34.104761 +2021,5,25,1,New South Wales,150.517293,-34.452016 +2021,7,4,1,New South Wales,150.64387,-34.393253 +2021,2,24,1,New South Wales,152.415078,-31.933261 +2022,8,30,1,New South Wales,149.322933,-36.299136 +2021,4,5,1,New South Wales,150.528944,-34.458798 +2023,9,9,1,New South Wales,153.306792,-28.821699 +2021,9,26,1,New South Wales,150.512739,-34.446659 +2023,7,1,1,New South Wales,152.036748,-32.070691 +2021,11,11,1,New South Wales,153.437114,-28.993002 +2023,3,31,1,New South Wales,152.916628,-31.445024 +2021,7,18,1,New South Wales,150.627962,-34.420479 +2020,11,12,1,New South Wales,150.646848,-33.238957 +2021,9,30,1,New South Wales,153.448114,-28.944154 +2020,11,3,1,New South Wales,149.96897,-36.58553 +2020,11,3,1,New South Wales,149.958519,-36.587122 +2020,3,17,1,New South Wales,153.103583,-29.486066 +2021,5,27,1,New South Wales,150.639821,-34.393373 +2021,7,24,1,New South Wales,150.642131,-34.395933 +2020,10,30,1,New South Wales,149.958519,-36.587122 +2021,4,2,1,New South Wales,150.662671,-34.458228 +2023,7,17,1,New South Wales,150.784231,-33.717318 +2023,4,27,1,New South Wales,150.788388,-34.199985 +2023,9,12,1,New South Wales,150.786046,-33.712303 +2020,10,3,1,New South Wales,152.138925,-30.119255 +2021,6,15,1,New South Wales,150.520488,-34.465775 +2021,11,,1,New South Wales,151.721089,-32.664348 +2022,8,20,1,New South Wales,150.82878,-34.090667 +2020,11,30,1,New South Wales,153.367822,-28.866277 +2021,4,12,1,New South Wales,150.518619,-34.443226 +2021,9,7,1,New South Wales,150.599498,-34.45182 +2020,11,3,1,New South Wales,152.038001,-32.732775 +2020,5,12,1,New South Wales,149.990705,-36.458883 +2021,6,29,1,New South Wales,150.64449,-34.393644 +2020,8,7,1,New South Wales,150.813678,-34.104761 +2023,9,24,1,New South Wales,153.520955,-28.654222 +2020,10,28,1,New South Wales,152.776829,-31.506633 +2023,3,28,1,New South Wales,153.110506,-29.490166 +2021,4,27,1,New South Wales,150.636306,-34.422047 +2021,12,25,1,New South Wales,152.929319,-31.466891 +2023,9,28,1,New South Wales,153.320406,-28.647407 +2020,1,27,1,New South Wales,150.998946,-34.083034 +2024,2,14,1,New South Wales,150.784159,-33.716012 +2023,11,30,1,New South Wales,152.822056,-29.507595 +2020,1,16,1,New South Wales,152.877303,-29.677379 +2023,6,20,1,New South Wales,153.071815,-30.879779 +2022,10,17,1,New South Wales,153.071181,-30.883276 +2022,12,2,1,New South Wales,153.293409,-28.864534 +2021,9,15,1,New South Wales,149.682012,-33.542109 +2022,6,6,1,New South Wales,153.101247,-29.489937 +2022,10,22,1,New South Wales,151.122951,-33.114532 +2021,4,8,1,New South Wales,150.517522,-34.446125 +2020,1,29,1,New South Wales,153.085425,-30.345203 +2021,4,21,1,New South Wales,150.607443,-34.433124 +2024,4,23,1,New South Wales,152.346708,-31.684292 +2021,7,1,1,New South Wales,150.642543,-34.395563 +2022,1,18,1,New South Wales,153.282902,-28.869443 +2021,9,11,1,New South Wales,150.513839,-34.447024 +2021,6,21,1,New South Wales,150.627972,-34.420912 +2023,1,4,1,New South Wales,152.786715,-31.629212 +2021,9,29,1,New South Wales,150.898169,-33.381662 +2023,8,13,1,New South Wales,153.362836,-28.809142 +2021,5,13,1,New South Wales,150.517858,-34.437694 +2022,6,28,1,New South Wales,152.943371,-30.394953 +2021,6,9,1,New South Wales,150.626566,-34.387104 +2021,10,6,1,New South Wales,152.878833,-31.452074 +2021,10,25,1,New South Wales,152.922675,-31.475309 +2023,8,27,1,New South Wales,150.785071,-33.719583 +2021,10,11,1,New South Wales,153.516143,-28.687022 +2021,3,29,1,New South Wales,150.635328,-34.488743 +2021,5,13,1,New South Wales,150.516264,-34.449282 +2022,4,17,1,New South Wales,152.115731,-32.764638 +2020,9,8,1,New South Wales,153.221068,-28.82983 +2020,10,31,1,New South Wales,149.977333,-36.564828 +2020,9,27,1,New South Wales,149.577506,-33.419281 +2020,6,1,1,New South Wales,153.103253,-29.486575 +2021,1,15,1,New South Wales,153.103945,-29.484749 +2021,5,18,1,New South Wales,150.63382,-34.418366 +2022,11,7,1,New South Wales,153.292968,-28.864588 +2021,6,4,1,New South Wales,150.623599,-34.389363 +2022,6,24,1,New South Wales,152.893759,-31.446523 +2021,6,19,1,New South Wales,150.519898,-34.452592 +2020,4,17,1,New South Wales,153.428647,-29.017366 +2021,6,21,1,New South Wales,150.519596,-34.452523 +2020,1,22,1,New South Wales,153.408997,-28.846732 +2020,10,13,1,New South Wales,153.519536,-28.725919 +2021,5,13,1,New South Wales,150.516022,-34.449006 +2023,1,28,1,New South Wales,152.072564,-32.710617 +2021,5,3,1,New South Wales,150.516497,-34.447267 +2021,4,16,1,New South Wales,150.613299,-34.430751 +2021,6,14,1,New South Wales,150.520291,-34.454033 +2022,12,30,1,New South Wales,153.109374,-29.490549 +2021,9,2,1,New South Wales,150.533856,-34.498996 +2020,9,2,1,New South Wales,153.490755,-28.709278 +2022,11,16,1,New South Wales,153.077601,-30.890801 +2022,7,15,1,New South Wales,150.982395,-34.047876 +2020,6,16,1,New South Wales,153.306145,-29.055286 +2023,11,19,1,New South Wales,152.912481,-31.454165 +2021,5,26,1,New South Wales,150.516477,-34.450152 +2022,8,11,1,New South Wales,152.126308,-31.415433 +2021,5,23,1,New South Wales,150.636003,-34.392623 +2022,6,4,1,New South Wales,152.710175,-31.782439 +2020,3,26,1,New South Wales,150.061156,-33.776359 +2020,1,4,1,New South Wales,153.110943,-29.488391 +2020,11,1,1,New South Wales,149.976368,-36.555504 +2020,9,12,1,New South Wales,150.850173,-34.067842 +2021,5,6,1,New South Wales,150.522976,-34.452303 +2022,4,28,1,New South Wales,151.440447,-30.643985 +2024,5,15,1,New South Wales,152.188204,-31.953289 +2021,4,11,1,New South Wales,150.527144,-34.457833 +2021,7,12,1,New South Wales,150.597273,-34.410179 +2021,9,9,1,New South Wales,153.436964,-28.850153 +2021,4,16,1,New South Wales,149.964605,-36.653292 +2021,5,25,1,New South Wales,150.521579,-34.465698 +2020,11,2,1,New South Wales,149.994744,-36.560944 +2022,11,17,1,New South Wales,151.624706,-30.402213 +2023,6,3,1,New South Wales,152.911609,-31.458122 +2021,6,8,1,New South Wales,150.603604,-34.436484 +2020,9,27,1,New South Wales,152.926813,-31.444558 +2021,6,15,1,New South Wales,150.524123,-34.452903 +2021,12,28,1,New South Wales,153.293069,-28.864674 +2021,4,21,1,New South Wales,150.609422,-34.419018 +2021,7,20,1,New South Wales,150.522295,-34.464288 +2021,9,22,1,New South Wales,150.642054,-34.397104 +2020,3,27,1,New South Wales,150.120028,-35.078249 +2021,6,23,1,New South Wales,150.513804,-34.446338 +2021,9,9,1,New South Wales,152.809841,-31.518778 +2021,6,10,1,New South Wales,150.610509,-34.430534 +2024,2,7,1,New South Wales,152.621538,-30.296163 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2021,7,15,1,New South Wales,153.563412,-28.647325 +2020,1,19,1,New South Wales,153.091983,-29.487981 +2022,8,5,1,New South Wales,150.791503,-34.218966 +2024,9,21,1,New South Wales,146.601837,-34.763847 +2022,12,6,1,New South Wales,149.355934,-37.177314 +2023,12,21,1,New South Wales,150.984658,-34.092377 +2020,10,23,1,New South Wales,149.947183,-36.617465 +2021,7,1,1,New South Wales,150.626935,-34.421036 +2021,4,26,1,New South Wales,150.63564,-34.418275 +2021,5,4,1,New South Wales,150.615957,-34.436392 +2021,6,16,1,New South Wales,150.523586,-34.451558 +2021,5,22,1,New South Wales,150.635846,-34.392765 +2020,10,23,1,New South Wales,149.947183,-36.617465 +2023,3,17,1,New South Wales,153.277993,-28.873862 +2023,7,29,1,New South Wales,153.360706,-28.654666 +2021,4,16,1,New South Wales,150.518294,-34.443184 +2020,1,15,1,New South Wales,152.814725,-31.276309 +2021,3,29,1,New South Wales,150.526582,-34.457334 +2022,10,5,1,New South Wales,153.502114,-28.632035 +2021,7,16,1,New South Wales,150.514897,-34.446567 +2023,5,12,1,New South Wales,150.738115,-34.305246 +2020,6,19,1,New South Wales,153.447783,-28.651298 +2023,9,11,1,New South Wales,153.300787,-28.821804 +2023,12,30,1,New South Wales,150.988561,-34.028573 +2021,2,27,1,New South Wales,153.189405,-28.889794 +2021,6,28,1,New South Wales,150.512959,-34.447321 +2023,2,1,1,New South Wales,153.510488,-28.808776 +2023,11,4,1,New South Wales,152.388709,-31.902284 +2023,2,6,1,New South Wales,152.925697,-31.479653 +2021,10,17,1,New South Wales,153.556056,-28.398535 +2021,1,29,1,New South Wales,152.918861,-31.448304 +2023,2,8,1,New South Wales,152.924977,-31.459262 +2020,1,30,1,New South Wales,153.28464,-28.825104 +2021,5,26,1,New South Wales,150.631486,-34.388488 +2020,12,4,1,New South Wales,149.972032,-36.288695 +2020,10,27,1,New South Wales,152.381867,-30.786583 +2023,8,11,1,New South Wales,152.222492,-31.356669 +2020,10,15,1,New South Wales,149.947183,-36.617465 +2023,5,3,1,New South Wales,153.103929,-29.489512 +2020,12,20,1,New South Wales,153.123847,-30.297643 +2020,10,18,1,New South Wales,149.947183,-36.617465 +2021,7,2,1,New South Wales,150.639637,-34.397995 +2021,10,4,1,New South Wales,152.408389,-31.937443 +2020,8,10,1,New South Wales,153.413338,-28.659401 +2022,11,22,1,New South Wales,152.764422,-30.891124 +2021,6,29,1,New South Wales,153.385425,-28.524286 +2021,11,17,1,New South Wales,153.55828,-28.394222 +2020,3,5,1,New South Wales,150.809,-34.20866 +2020,1,9,1,New South Wales,152.910604,-31.442457 +2022,2,26,1,New South Wales,153.313179,-28.858271 +2023,8,3,1,New South Wales,150.785433,-33.710214 +2021,5,19,1,New South Wales,150.639286,-34.493192 +2020,11,7,1,New South Wales,150.002505,-36.541329 +2021,9,16,1,New South Wales,152.373758,-31.915063 +2022,9,27,1,New South Wales,150.803399,-34.112602 +2022,6,24,1,New South Wales,153.10335,-30.32326 +2023,9,25,1,New South Wales,153.29838,-28.817309 +2021,5,5,1,New South Wales,150.60297,-34.427429 +2021,4,24,1,New South Wales,150.634435,-34.420109 +2021,12,16,1,New South Wales,150.852272,-34.077312 +2021,6,11,1,New South Wales,150.516994,-34.447394 +2021,5,22,1,New South Wales,150.522385,-34.46493 +2021,8,30,1,New South Wales,152.440693,-31.772847 +2023,1,25,1,New South Wales,152.372529,-31.921365 +2021,8,26,1,New South Wales,153.566221,-28.387914 +2021,9,11,1,New South Wales,150.811966,-34.090353 +2022,7,28,1,New South Wales,152.92459,-31.440955 +2021,9,22,1,New South Wales,152.06928,-32.712642 +2021,6,9,1,New South Wales,150.613834,-34.432988 +2021,5,6,1,New South Wales,150.523098,-34.452233 +2021,6,11,1,New South Wales,150.613331,-34.432663 +2022,8,8,1,New South Wales,150.52761,-34.43675 +2021,6,6,1,New South Wales,150.534729,-34.459347 +2020,10,,1,New South Wales,150.52627,-34.427219 +2021,5,5,1,New South Wales,150.637344,-34.423807 +2022,7,1,1,New South Wales,145.582386,-35.635781 +2021,9,8,1,New South Wales,150.520221,-34.447956 +2020,1,4,1,New South Wales,153.561202,-28.392606 +2021,6,6,1,New South Wales,150.519486,-34.456586 +2020,11,15,1,New South Wales,153.111616,-29.465452 +2021,2,25,1,New South Wales,150.82369,-34.141271 +2021,6,23,1,New South Wales,150.625641,-34.386382 +2021,7,2,1,New South Wales,150.6275,-34.39062 +2024,1,16,1,New South Wales,152.557428,-31.611478 +2021,4,19,1,New South Wales,150.627244,-34.385836 +2020,10,17,1,New South Wales,149.931009,-36.595007 +2020,11,22,1,New South Wales,153.61132,-28.68255 +2020,10,29,1,New South Wales,149.945227,-36.57753 +2021,1,13,1,New South Wales,153.327647,-28.817008 +2020,10,23,1,New South Wales,149.931009,-36.595007 +2021,5,21,1,New South Wales,150.633754,-34.392544 +2021,5,27,1,New South Wales,150.521622,-34.465717 +2022,10,29,1,New South Wales,152.838362,-31.594831 +2023,9,3,1,New South Wales,152.9837,-30.4214 +2021,6,18,1,New South Wales,150.642882,-34.394731 +2021,5,30,1,New South Wales,150.631303,-34.420066 +2021,10,30,1,New South Wales,153.481287,-28.626781 +2021,4,11,1,New South Wales,153.592081,-28.729263 +2024,3,22,1,New South Wales,152.375744,-31.924064 +2023,1,5,1,New South Wales,153.110045,-29.488284 +2021,9,18,1,New South Wales,150.645801,-34.404298 +2021,10,7,1,New South Wales,153.092262,-29.488139 +2021,5,3,1,New South Wales,150.603923,-34.426844 +2022,11,20,1,New South Wales,152.794945,-30.901933 +2020,10,28,1,New South Wales,153.104074,-29.485057 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2023,12,6,1,New South Wales,152.786752,-31.629141 +2022,6,30,1,New South Wales,152.069526,-32.748156 +2020,9,2,1,New South Wales,152.50487,-32.069784 +2020,10,16,1,New South Wales,149.919967,-36.589766 +2020,11,,1,New South Wales,153.071751,-30.927082 +2020,10,22,1,New South Wales,149.919967,-36.589766 +2020,10,22,1,New South Wales,149.919967,-36.589766 +2021,5,3,1,New South Wales,153.278372,-28.678855 +2021,8,24,1,New South Wales,153.324269,-28.97457 +2021,6,27,1,New South Wales,150.597636,-34.418399 +2021,8,19,1,New South Wales,150.78943,-34.210866 +2020,10,22,1,New South Wales,149.919967,-36.589766 +2022,7,4,1,New South Wales,149.969639,-29.219871 +2022,11,22,1,New South Wales,152.764422,-30.891124 +2022,6,6,1,New South Wales,150.939729,-29.668372 +2020,10,23,1,New South Wales,149.919967,-36.589766 +2021,7,27,1,New South Wales,153.315124,-28.826545 +2023,7,30,1,New South Wales,152.711777,-31.781985 +2021,9,19,1,New South Wales,153.394673,-28.960126 +2021,5,3,1,New South Wales,150.6152,-34.43544 +2020,2,28,1,New South Wales,152.911715,-31.458672 +2021,9,19,1,New South Wales,152.737543,-30.125115 +2024,2,7,1,New South Wales,152.621507,-30.296172 +2021,7,11,1,New South Wales,150.643255,-34.395414 +2021,7,3,1,New South Wales,150.525427,-34.464776 +2023,9,27,1,New South Wales,150.728952,-34.259004 +2023,5,31,1,New South Wales,150.7929,-34.2166 +2020,1,19,1,New South Wales,151.732934,-32.587081 +2021,6,24,1,New South Wales,150.604797,-34.437761 +2021,5,30,1,New South Wales,150.631299,-34.420201 +2021,12,30,1,New South Wales,149.5579,-33.494818 +2021,8,15,1,New South Wales,150.604748,-34.431485 +2022,11,24,1,New South Wales,152.78933,-30.918792 +2021,7,25,1,New South Wales,150.522039,-34.465978 +2023,5,19,1,New South Wales,152.428145,-31.948469 +2020,1,14,1,New South Wales,153.103806,-29.485557 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2022,12,17,1,New South Wales,153.108172,-29.490301 +2020,11,,1,New South Wales,152.806803,-31.154124 +2024,1,30,1,New South Wales,152.908334,-31.452765 +2021,5,2,1,New South Wales,152.915979,-31.480861 +2021,4,15,1,New South Wales,150.604703,-34.427319 +2020,11,10,1,New South Wales,152.873889,-31.457021 +2022,5,10,1,New South Wales,152.085731,-32.735737 +2021,2,23,1,New South Wales,150.610671,-34.433629 +2024,4,6,1,New South Wales,150.991402,-34.025207 +2024,1,30,1,New South Wales,152.298758,-31.945251 +2020,6,18,1,New South Wales,153.007515,-28.625548 +2021,11,25,1,New South Wales,152.922698,-31.479236 +2022,2,21,1,New South Wales,153.558373,-28.394137 +2020,2,19,1,New South Wales,153.426207,-28.573473 +2022,12,30,1,New South Wales,146.591984,-34.77471 +2020,8,16,1,New South Wales,153.092457,-28.602275 +2021,4,22,1,New South Wales,150.609465,-34.419028 +2022,1,26,1,New South Wales,152.063658,-32.706125 +2021,8,4,1,New South Wales,150.625916,-34.389723 +2021,5,9,1,New South Wales,150.639144,-34.491656 +2021,6,,1,New South Wales,153.599218,-28.719867 +2021,5,4,1,New South Wales,150.632815,-34.418896 +2022,8,24,1,New South Wales,152.901584,-31.442356 +2020,11,3,1,New South Wales,149.994744,-36.560944 +2021,5,14,1,New South Wales,150.63731,-34.423861 +2023,12,6,1,New South Wales,152.925759,-31.445979 +2020,10,30,1,New South Wales,149.945227,-36.57753 +2021,4,30,1,New South Wales,150.637907,-34.488828 +2023,8,3,1,New South Wales,153.395255,-28.959969 +2021,6,26,1,New South Wales,150.631505,-34.387812 +2023,6,10,1,New South Wales,152.907866,-31.475631 +2020,10,20,1,New South Wales,149.919967,-36.589766 +2021,4,8,1,New South Wales,150.634002,-34.48869 +2020,10,19,1,New South Wales,149.919967,-36.589766 +2021,4,22,1,New South Wales,150.617109,-34.433728 +2020,10,30,1,New South Wales,149.967242,-36.561675 +2020,5,,1,New South Wales,151.994536,-32.297176 +2021,5,23,1,New South Wales,150.639173,-34.492946 +2021,5,8,1,New South Wales,150.521365,-34.435745 +2021,6,1,1,New South Wales,153.495272,-28.693786 +2021,5,19,1,New South Wales,150.600194,-34.428646 +2021,7,2,1,New South Wales,150.626848,-34.421007 +2021,6,26,1,New South Wales,150.601973,-34.435668 +2023,1,3,1,New South Wales,153.324244,-28.879717 +2022,4,21,1,New South Wales,150.941027,-34.114736 +2024,3,22,1,New South Wales,152.374686,-31.925299 +2020,2,1,1,New South Wales,151.736498,-32.551635 +2022,12,5,1,New South Wales,153.476795,-28.539853 +2020,6,14,1,New South Wales,151.1103,-29.76276 +2020,7,6,1,New South Wales,153.112294,-28.661766 +2023,9,13,1,New South Wales,152.912589,-30.488 +2022,9,8,1,New South Wales,152.791821,-31.126317 +2021,6,6,1,New South Wales,150.630619,-34.420792 +2023,9,25,1,New South Wales,153.272766,-28.931722 +2020,11,11,1,New South Wales,150.790596,-34.188134 +2021,5,13,1,New South Wales,150.517974,-34.437831 +2020,11,17,1,New South Wales,150.808987,-34.208693 +2023,4,24,1,New South Wales,149.326049,-36.334367 +2023,6,26,1,New South Wales,153.390711,-28.854924 +2023,4,5,1,New South Wales,152.071576,-32.709662 +2021,8,14,1,New South Wales,150.808987,-34.208693 +2023,10,15,1,New South Wales,150.785536,-33.715181 +2021,9,16,1,New South Wales,153.158632,-28.924195 +2021,4,24,1,New South Wales,150.626299,-34.395807 +2020,10,18,1,New South Wales,149.949786,-36.632867 +2022,9,25,1,New South Wales,153.461903,-28.870811 +2021,9,18,1,New South Wales,153.38824,-28.997202 +2021,4,26,1,New South Wales,150.625746,-34.38844 +2020,11,26,1,New South Wales,149.917922,-36.474664 +2023,9,1,1,New South Wales,150.210062,-34.626243 +2023,10,5,1,New South Wales,152.889512,-30.467742 +2022,8,3,1,New South Wales,153.108183,-29.490227 +2021,11,12,1,New South Wales,153.315522,-28.826069 +2023,11,2,1,New South Wales,152.37244,-31.921302 +2020,10,12,1,New South Wales,152.409406,-31.910186 +2020,11,8,1,New South Wales,150.02021,-36.569074 +2021,5,9,1,New South Wales,150.622238,-34.397883 +2021,12,12,1,New South Wales,153.108097,-29.490623 +2022,1,11,1,New South Wales,150.61584,-34.440492 +2021,5,5,1,New South Wales,152.034966,-32.768069 +2021,8,11,1,New South Wales,150.646808,-34.401361 +2021,5,18,1,New South Wales,150.607204,-34.436906 +2023,11,6,1,New South Wales,151.097534,-29.772983 +2020,10,1,1,New South Wales,153.103881,-29.48541 +2021,5,17,1,New South Wales,150.60428,-34.437967 +2023,6,23,1,New South Wales,152.864093,-31.302697 +2021,6,5,1,New South Wales,150.5193,-34.44819 +2023,7,19,1,New South Wales,153.11056,-29.489937 +2020,10,30,1,New South Wales,149.96897,-36.58553 +2022,11,23,1,New South Wales,152.794945,-30.901933 +2022,9,11,1,New South Wales,151.154556,-33.095806 +2020,9,24,1,New South Wales,152.944433,-29.346563 +2022,11,24,1,New South Wales,152.794945,-30.901933 +2022,9,9,1,New South Wales,152.904238,-31.450303 +2022,3,7,1,New South Wales,153.101226,-29.490007 +2021,2,7,1,New South Wales,152.103413,-32.759234 +2021,6,7,1,New South Wales,152.918628,-31.453948 +2023,5,27,1,New South Wales,153.393951,-28.959734 +2021,7,10,1,New South Wales,150.513082,-34.447207 +2021,7,3,1,New South Wales,150.603055,-34.417613 +2021,6,5,1,New South Wales,150.534895,-34.459251 +2023,12,11,1,New South Wales,152.925804,-31.455289 +2023,11,15,1,New South Wales,152.939215,-30.230169 +2020,5,26,1,New South Wales,153.303635,-28.890682 +2021,3,30,1,New South Wales,150.615802,-34.434171 +2021,6,2,1,New South Wales,150.521406,-34.465668 +2021,7,10,1,New South Wales,150.513157,-34.447244 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2021,4,25,1,New South Wales,150.60529,-34.437274 +2023,9,25,1,New South Wales,153.272822,-28.931702 +2021,7,1,1,New South Wales,150.626469,-34.390564 +2024,6,13,1,New South Wales,153.399805,-29.037633 +2024,1,30,1,New South Wales,153.107899,-29.490792 +2021,6,26,1,New South Wales,153.10145,-30.297658 +2023,12,13,1,New South Wales,153.071633,-30.880307 +2021,6,3,1,New South Wales,150.519655,-34.455301 +2021,4,30,1,New South Wales,150.604096,-34.427262 +2023,6,20,1,New South Wales,153.032175,-30.426894 +2023,8,31,1,New South Wales,153.113151,-29.488578 +2021,4,16,1,New South Wales,150.604649,-34.427318 +2022,9,6,1,New South Wales,152.133996,-30.090977 +2020,10,23,1,New South Wales,149.931009,-36.595007 +2021,4,23,1,New South Wales,150.518508,-34.45214 +2024,2,21,1,New South Wales,152.840465,-31.594239 +2021,6,11,1,New South Wales,150.517017,-34.44735 +2023,7,2,1,New South Wales,153.073774,-30.886261 +2021,11,29,1,New South Wales,152.923509,-29.733427 +2021,5,13,1,New South Wales,150.637312,-34.423779 +2023,8,12,1,New South Wales,153.051789,-28.556666 +2021,7,31,1,New South Wales,150.632802,-34.419761 +2021,12,11,1,New South Wales,153.102631,-29.489512 +2024,7,14,1,New South Wales,153.428314,-28.972587 +2021,6,26,1,New South Wales,150.627391,-34.42027 +2023,6,2,1,New South Wales,153.517718,-28.686898 +2021,4,3,1,New South Wales,150.530833,-34.459341 +2021,5,9,1,New South Wales,150.521179,-34.435417 +2020,10,15,1,New South Wales,149.919967,-36.589766 +2020,8,24,1,New South Wales,151.512471,-30.655961 +2021,6,15,1,New South Wales,150.623276,-34.385768 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2021,6,20,1,New South Wales,150.622877,-34.384526 +2023,12,21,1,New South Wales,152.909937,-30.505351 +2024,3,22,1,New South Wales,153.084251,-30.328452 +2021,8,22,1,New South Wales,153.563196,-28.392608 +2022,1,29,1,New South Wales,153.262056,-28.925911 +2023,7,30,1,New South Wales,153.10423,-29.479262 +2024,2,11,1,New South Wales,153.108242,-29.490241 +2022,9,22,1,New South Wales,152.929419,-31.460059 +2020,10,6,1,New South Wales,152.079448,-32.738495 +2021,5,2,1,New South Wales,150.609669,-34.436332 +2021,7,20,1,New South Wales,150.623324,-34.383299 +2021,3,27,1,New South Wales,150.65923,-34.459046 +2022,6,11,1,New South Wales,152.103524,-32.759374 +2021,5,1,1,New South Wales,150.517725,-34.441441 +2020,11,30,1,New South Wales,153.343646,-28.866891 +2023,8,20,1,New South Wales,153.104117,-29.483759 +2022,8,15,1,New South Wales,153.019941,-30.427985 +2021,2,17,1,New South Wales,152.907809,-31.434645 +2022,5,3,1,New South Wales,153.562171,-28.383684 +2024,1,16,1,New South Wales,152.820089,-31.131401 +2021,5,24,1,New South Wales,150.638897,-34.492688 +2020,8,16,1,New South Wales,152.986451,-29.030715 +2021,9,28,1,New South Wales,153.321383,-28.826683 +2022,11,29,1,New South Wales,152.832164,-29.637445 +2021,6,9,1,New South Wales,150.641408,-34.394928 +2021,3,21,1,New South Wales,150.11682,-31.08082 +2023,8,2,1,New South Wales,152.028871,-32.192158 +2021,6,7,1,New South Wales,150.518047,-34.457053 +2023,6,16,1,New South Wales,153.492541,-28.240806 +2020,11,10,1,New South Wales,152.902521,-31.454137 +2020,9,,1,New South Wales,151.555604,-30.354494 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2021,6,26,1,New South Wales,152.911366,-31.470676 +2021,3,6,1,New South Wales,150.603379,-34.436371 +2024,1,16,1,New South Wales,152.747076,-30.908173 +2022,4,26,1,New South Wales,150.417781,-31.481886 +2021,8,27,1,New South Wales,150.89849,-34.014991 +2022,10,31,1,New South Wales,150.790596,-34.188134 +2020,5,4,1,New South Wales,152.495897,-28.315294 +2021,12,30,1,New South Wales,150.822911,-34.150236 +2021,5,21,1,New South Wales,150.52161,-34.465744 +2020,7,30,1,New South Wales,152.793831,-31.128448 +2022,1,27,1,New South Wales,152.910445,-31.441614 +2021,7,21,1,New South Wales,153.394545,-28.275718 +2023,12,7,1,New South Wales,150.980178,-34.094995 +2022,11,9,1,New South Wales,150.785304,-34.207149 +2020,10,19,1,New South Wales,149.930096,-36.638123 +2021,5,1,1,New South Wales,150.618119,-34.429583 +2023,9,28,1,New South Wales,151.244601,-33.169049 +2021,1,10,1,New South Wales,151.061248,-34.114522 +2020,10,19,1,New South Wales,149.930096,-36.638123 +2021,4,14,1,New South Wales,153.186783,-28.888915 +2020,10,18,1,New South Wales,152.076895,-32.722543 +2022,2,3,1,New South Wales,151.011059,-29.725567 +2024,7,17,1,New South Wales,152.002422,-32.411497 +2024,2,6,1,New South Wales,152.07288,-32.717118 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2023,5,31,1,New South Wales,153.10394,-29.489591 +2021,5,15,1,New South Wales,150.516096,-34.449432 +2022,10,13,1,New South Wales,153.293404,-28.864496 +2021,8,27,1,New South Wales,153.438182,-28.606099 +2020,10,15,1,New South Wales,149.919967,-36.589766 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2023,9,13,1,New South Wales,153.107454,-29.490114 +2021,4,26,1,New South Wales,150.635915,-34.419299 +2023,9,26,1,New South Wales,150.785211,-33.715663 +2021,5,31,1,New South Wales,150.517363,-34.446347 +2021,4,3,1,New South Wales,150.634979,-34.488781 +2021,8,31,1,New South Wales,150.533344,-34.500492 +2021,1,9,1,New South Wales,153.283462,-28.830724 +2021,12,,1,New South Wales,149.329538,-36.138158 +2022,8,12,1,New South Wales,150.521715,-34.467537 +2021,7,2,1,New South Wales,150.642063,-34.396013 +2020,5,30,1,New South Wales,153.345917,-28.689908 +2023,11,1,1,New South Wales,152.783167,-31.484611 +2021,11,15,1,New South Wales,152.065276,-32.701664 +2021,6,2,1,New South Wales,150.630795,-34.420705 +2021,6,1,1,New South Wales,150.616428,-34.438168 +2021,9,17,1,New South Wales,150.614901,-34.452473 +2022,10,11,1,New South Wales,152.882597,-29.649789 +2021,5,18,1,New South Wales,150.600246,-34.428719 +2020,4,24,1,New South Wales,153.2381,-28.58022 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2023,5,3,1,New South Wales,153.103666,-29.485739 +2021,11,,1,New South Wales,152.901602,-28.771137 +2024,2,24,1,New South Wales,151.004502,-34.040327 +2024,4,19,1,New South Wales,152.226702,-31.619514 +2021,10,29,1,New South Wales,153.323,-28.693023 +2021,7,20,1,New South Wales,150.516756,-34.448471 +2022,5,6,1,New South Wales,153.103951,-29.489563 +2021,9,4,1,New South Wales,153.556465,-28.407968 +2020,10,19,1,New South Wales,153.036423,-30.8961 +2021,7,15,1,New South Wales,150.627122,-34.420968 +2020,10,18,1,New South Wales,149.947183,-36.617465 +2023,7,5,1,New South Wales,153.094096,-29.488812 +2023,12,8,1,New South Wales,152.963725,-31.255606 +2023,12,1,1,New South Wales,152.843404,-30.311236 +2021,5,21,1,New South Wales,150.522869,-34.464778 +2021,5,23,1,New South Wales,150.616337,-34.434506 +2020,9,12,1,New South Wales,152.831486,-31.463575 +2023,11,15,1,New South Wales,150.785981,-33.709701 +2022,9,27,1,New South Wales,153.162086,-28.923985 +2020,,,1,New South Wales,152.749457,-28.699193 +2022,10,21,1,New South Wales,152.922669,-31.459963 +2022,12,13,1,New South Wales,150.967557,-32.235513 +2021,7,15,1,New South Wales,150.513142,-34.445928 +2022,8,5,1,New South Wales,152.031334,-32.733315 +2021,12,7,1,New South Wales,150.618664,-34.439907 +2020,11,,1,New South Wales,149.966791,-36.502277 +2021,7,24,1,New South Wales,150.516759,-34.448724 +2023,11,2,1,New South Wales,149.8315,-32.394083 +2022,11,25,1,New South Wales,152.794945,-30.901933 +2023,11,29,1,New South Wales,153.09444,-30.300015 +2020,1,2,1,New South Wales,152.872992,-31.455522 +2023,7,12,1,New South Wales,153.273577,-28.939638 +2022,10,4,1,New South Wales,153.422758,-29.020005 +2024,2,26,1,New South Wales,150.785584,-33.710467 +2023,11,18,1,New South Wales,152.921731,-31.480556 +2021,4,15,1,New South Wales,152.915153,-31.436029 +2022,12,13,1,New South Wales,153.109712,-29.490241 +2021,5,21,1,New South Wales,150.607455,-34.433071 +2021,6,8,1,New South Wales,150.604085,-34.437927 +2024,9,21,1,New South Wales,146.586935,-34.769757 +2022,10,15,1,New South Wales,152.949981,-30.416306 +2023,3,16,1,New South Wales,152.834593,-29.644493 +2020,1,4,1,New South Wales,153.400454,-28.258552 +2022,2,1,1,New South Wales,152.93793,-30.40425 +2020,10,20,1,New South Wales,152.164041,-30.083908 +2021,5,11,1,New South Wales,150.624928,-34.399666 +2021,7,1,1,New South Wales,150.596608,-34.411374 +2021,5,6,1,New South Wales,150.632871,-34.418852 +2021,7,19,1,New South Wales,150.516269,-34.447993 +2022,10,12,1,New South Wales,153.556245,-28.398653 +2024,7,13,1,New South Wales,153.421991,-28.982598 +2021,5,12,1,New South Wales,150.516939,-34.448538 +2021,5,22,1,New South Wales,150.61702,-34.433798 +2021,12,27,1,New South Wales,153.308892,-29.058961 +2023,11,11,1,New South Wales,150.78522,-33.71409 +2023,9,29,1,New South Wales,153.303415,-28.816235 +2021,5,1,1,New South Wales,150.637621,-34.488525 +2021,3,1,1,New South Wales,150.519536,-34.447203 +2022,8,19,1,New South Wales,150.810093,-34.094749 +2022,8,5,1,New South Wales,150.797639,-34.22475 +2023,6,23,1,New South Wales,150.785095,-33.719229 +2023,9,5,1,New South Wales,153.23088,-28.889423 +2022,7,13,1,New South Wales,153.492026,-28.238763 +2020,9,7,1,New South Wales,153.532756,-28.220515 +2021,6,12,1,New South Wales,152.926919,-31.459042 +2020,1,15,1,New South Wales,151.84278,-31.926276 +2020,11,17,1,New South Wales,152.078206,-32.727783 +2020,7,7,1,New South Wales,150.833136,-34.085987 +2021,5,12,1,New South Wales,150.61702,-34.433825 +2021,2,5,1,New South Wales,152.899659,-31.440769 +2020,10,25,1,New South Wales,153.527846,-28.213025 +2024,5,24,1,New South Wales,152.8822,-31.1211 +2022,11,10,1,New South Wales,152.784286,-31.63002 +2023,9,28,1,New South Wales,149.365311,-36.173822 +2022,11,22,1,New South Wales,152.764422,-30.891124 +2020,5,16,1,New South Wales,149.318709,-36.063675 +2023,8,29,1,New South Wales,153.31535,-28.819753 +2023,9,20,1,New South Wales,153.072006,-30.885764 +2021,7,6,1,New South Wales,150.74146,-33.49924 +2020,5,22,1,New South Wales,150.70091,-33.55031 +2021,9,29,1,New South Wales,153.62014,-28.64956 +2022,,,1,New South Wales,152.875158,-29.679972 +2020,11,1,1,New South Wales,149.976368,-36.555504 +2021,5,11,1,New South Wales,150.61632,-34.434317 +2021,3,7,1,New South Wales,153.273885,-28.87015 +2021,6,2,1,New South Wales,150.23116,-34.33762 +2023,6,5,1,New South Wales,150.860751,-34.034099 +2022,3,23,1,New South Wales,153.527358,-28.4066 +2023,10,2,1,New South Wales,150.785979,-33.713226 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2021,5,23,1,New South Wales,150.522334,-34.46483 +2020,11,7,1,New South Wales,150.007338,-36.56122 +2020,10,16,1,New South Wales,152.081971,-32.723562 +2021,4,9,1,New South Wales,150.519898,-34.447823 +2021,5,27,1,New South Wales,150.602733,-34.434961 +2020,12,15,1,New South Wales,153.56185,-28.392953 +2022,8,21,1,New South Wales,153.1211,-28.79465 +2022,4,1,1,New South Wales,152.895105,-31.437665 +2023,3,12,1,New South Wales,153.393331,-28.687381 +2021,7,14,1,New South Wales,150.626601,-34.385499 +2023,7,19,1,New South Wales,153.302055,-28.822622 +2021,6,18,1,New South Wales,150.520921,-34.465865 +2023,9,28,1,New South Wales,153.432181,-28.617537 +2022,9,24,1,New South Wales,151.091806,-33.138008 +2021,5,13,1,New South Wales,150.605726,-34.427691 +2020,5,12,1,New South Wales,153.326023,-28.583989 +2021,11,3,1,New South Wales,153.5914,-28.63691 +2023,3,20,1,New South Wales,153.54797,-28.708004 +2023,3,12,1,New South Wales,152.926316,-31.459222 +2020,8,25,1,New South Wales,152.034237,-32.729793 +2020,5,7,1,New South Wales,150.05652,-34.90351 +2021,5,16,1,New South Wales,150.514543,-34.443829 +2021,8,5,1,New South Wales,153.60237,-28.69032 +2023,11,18,1,New South Wales,151.119961,-33.075658 +2021,7,15,1,New South Wales,150.625187,-34.386653 +2021,7,3,1,New South Wales,150.596895,-34.414292 +2020,10,23,1,New South Wales,149.931009,-36.595007 +2021,6,16,1,New South Wales,150.514064,-34.446388 +2021,6,20,1,New South Wales,150.627949,-34.420929 +2021,3,24,1,New South Wales,152.09104,-32.73789 +2022,11,11,1,New South Wales,152.787207,-31.636293 +2021,7,8,1,New South Wales,150.520773,-34.465357 +2023,9,2,1,New South Wales,153.108167,-29.491095 +2021,5,7,1,New South Wales,150.639084,-34.491466 +2021,8,11,1,New South Wales,150.517974,-34.43894 +2021,5,10,1,New South Wales,150.609268,-34.420602 +2023,5,11,1,New South Wales,152.863827,-31.299032 +2024,9,24,1,New South Wales,146.601837,-34.763847 +2021,8,24,1,New South Wales,150.513854,-34.44724 +2020,1,3,1,New South Wales,153.103629,-29.48548 +2020,9,23,1,New South Wales,151.6674,-30.5006 +2021,6,5,1,New South Wales,150.604702,-34.427364 +2021,9,1,1,New South Wales,149.865278,-32.530833 +2021,8,4,1,New South Wales,153.454341,-28.653446 +2022,10,19,1,New South Wales,152.080964,-32.732739 +2021,6,25,1,New South Wales,150.515325,-34.444232 +2021,4,15,1,New South Wales,153.116299,-29.465157 +2024,1,6,1,New South Wales,152.373791,-31.915624 +2022,6,9,1,New South Wales,152.82607,-31.27226 +2021,8,18,1,New South Wales,150.513021,-34.44707 +2023,3,10,1,New South Wales,153.116066,-28.561794 +2021,3,7,1,New South Wales,150.5237,-34.464993 +2023,1,10,1,New South Wales,153.094536,-30.300427 +2023,9,26,1,New South Wales,152.901124,-30.522969 +2020,10,13,1,New South Wales,149.947316,-36.607854 +2021,6,6,1,New South Wales,150.534544,-34.459361 +2021,3,6,1,New South Wales,153.557349,-28.393288 +2021,3,3,1,New South Wales,153.549573,-28.589252 +2021,8,1,1,New South Wales,152.404167,-31.945815 +2024,5,7,1,New South Wales,152.134235,-32.200289 +2023,7,14,1,New South Wales,153.109809,-29.490161 +2023,10,20,1,New South Wales,152.917012,-31.454254 +2023,5,31,1,New South Wales,153.394146,-28.959154 +2021,8,26,1,New South Wales,153.555751,-28.375262 +2022,11,8,1,New South Wales,153.494827,-28.690529 +2023,12,31,1,New South Wales,153.105265,-29.489755 +2020,10,16,1,New South Wales,149.956941,-36.59482 +2021,6,23,1,New South Wales,150.619783,-34.439586 +2020,9,9,1,New South Wales,152.042052,-32.664824 +2021,6,25,1,New South Wales,150.626113,-34.385833 +2021,5,24,1,New South Wales,153.263676,-28.873056 +2020,9,7,1,New South Wales,152.921114,-31.446325 +2022,1,14,1,New South Wales,152.063571,-32.706675 +2021,4,30,1,New South Wales,150.635372,-34.419676 +2021,8,29,1,New South Wales,152.078075,-32.72797 +2021,6,11,1,New South Wales,150.630861,-34.420688 +2021,5,9,1,New South Wales,150.610233,-34.455114 +2023,9,14,1,New South Wales,150.79297,-34.13813 +2024,2,5,1,New South Wales,151.048196,-33.190232 +2021,9,16,1,New South Wales,150.515565,-34.454505 +2021,5,30,1,New South Wales,150.523669,-34.464226 +2020,4,19,1,New South Wales,153.099787,-29.493454 +2020,10,24,1,New South Wales,149.96897,-36.58553 +2022,4,9,1,New South Wales,152.924668,-31.434949 +2020,10,23,1,New South Wales,149.96897,-36.58553 +2021,3,13,1,New South Wales,150.523973,-34.462023 +2021,3,15,1,New South Wales,150.608424,-34.42237 +2020,1,23,1,New South Wales,153.103827,-29.48513 +2021,9,20,1,New South Wales,150.517318,-34.446373 +2021,7,14,1,New South Wales,150.513119,-34.445972 +2023,7,14,1,New South Wales,150.781051,-34.199915 +2021,9,9,1,New South Wales,153.07458,-30.36732 +2020,10,15,1,New South Wales,149.947316,-36.607854 +2022,3,11,1,New South Wales,151.414,-30.643 +2021,6,12,1,New South Wales,150.519877,-34.452574 +2021,5,9,1,New South Wales,150.519284,-34.468951 +2022,4,20,1,New South Wales,152.913246,-31.42942 +2020,12,4,1,New South Wales,152.926327,-31.454548 +2021,5,28,1,New South Wales,150.521654,-34.465718 +2022,12,21,1,New South Wales,153.563441,-28.788338 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2021,6,6,1,New South Wales,150.616579,-34.435926 +2021,5,8,1,New South Wales,150.518494,-34.4515 +2022,4,26,1,New South Wales,153.282519,-28.611534 +2021,5,8,1,New South Wales,150.606662,-34.437977 +2021,4,29,1,New South Wales,150.616393,-34.429062 +2020,11,24,1,New South Wales,152.137467,-32.724689 +2021,5,31,1,New South Wales,150.52388,-34.464077 +2021,5,5,1,New South Wales,150.522999,-34.452249 +2020,4,11,1,New South Wales,150.147247,-35.021419 +2021,4,6,1,New South Wales,150.520329,-34.446858 +2021,6,22,1,New South Wales,150.514142,-34.446327 +2022,8,21,1,New South Wales,152.783893,-31.63258 +2020,11,7,1,New South Wales,153.454341,-28.653446 +2023,9,29,1,New South Wales,153.221699,-28.87153 +2020,11,25,1,New South Wales,153.279241,-28.839565 +2021,5,1,1,New South Wales,150.521377,-34.46628 +2020,7,21,1,New South Wales,153.561099,-28.703206 +2021,8,6,1,New South Wales,150.644322,-34.398076 +2021,3,11,1,New South Wales,150.520978,-34.446989 +2020,4,30,1,New South Wales,153.201137,-28.816723 +2022,11,4,1,New South Wales,153.00684,-30.22885 +2021,6,15,1,New South Wales,150.886244,-34.064404 +2021,11,3,1,New South Wales,153.51898,-28.57492 +2023,5,5,1,New South Wales,152.912559,-31.461154 +2020,7,13,1,New South Wales,153.104096,-29.484343 +2021,6,9,1,New South Wales,150.516521,-34.4542 +2021,5,7,1,New South Wales,150.632816,-34.418481 +2021,8,8,1,New South Wales,150.632594,-34.418243 +2021,7,13,1,New South Wales,153.312467,-28.840476 +2021,3,5,1,New South Wales,153.110554,-29.490044 +2024,6,12,1,New South Wales,152.90325,-31.150111 +2023,6,9,1,New South Wales,153.30215,-28.819239 +2020,6,7,1,New South Wales,152.920619,-30.506297 +2024,4,9,1,New South Wales,152.910837,-31.469615 +2020,7,9,1,New South Wales,152.404167,-31.945815 +2022,4,25,1,New South Wales,153.563613,-28.374871 +2021,5,18,1,New South Wales,150.630921,-34.390037 +2020,9,,1,New South Wales,153.599218,-28.719867 +2021,5,8,1,New South Wales,150.659102,-34.457385 +2020,1,5,1,New South Wales,153.323726,-28.941334 +2020,11,3,1,New South Wales,149.994744,-36.560944 +2020,10,18,1,New South Wales,149.919967,-36.589766 +2021,8,21,1,New South Wales,150.51383,-34.447321 +2021,11,8,1,New South Wales,152.06606,-32.710316 +2023,11,28,1,New South Wales,153.075814,-30.351815 +2021,5,8,1,New South Wales,150.521373,-34.435827 +2021,6,17,1,New South Wales,150.604858,-34.427223 +2023,11,14,1,New South Wales,152.974585,-30.653064 +2024,1,7,1,New South Wales,152.381007,-31.929155 +2021,4,24,1,New South Wales,150.608593,-34.453468 +2021,4,13,1,New South Wales,153.104079,-29.485085 +2020,6,,1,New South Wales,151.021657,-34.038932 +2021,7,14,1,New South Wales,150.513031,-34.445998 +2020,4,1,1,New South Wales,153.428439,-28.955509 +2021,10,20,1,New South Wales,149.723822,-34.528943 +2022,4,27,1,New South Wales,153.103951,-29.489559 +2020,10,17,1,New South Wales,149.919967,-36.589766 +2021,1,11,1,New South Wales,152.896113,-31.452277 +2021,4,26,1,New South Wales,150.629415,-34.388655 +2021,4,25,1,New South Wales,150.609466,-34.419019 +2021,4,25,1,New South Wales,150.62628,-34.395699 +2021,7,10,1,New South Wales,150.626814,-34.421448 +2021,7,16,1,New South Wales,151.773002,-32.585738 +2021,5,29,1,New South Wales,153.493595,-28.671265 +2021,7,1,1,New South Wales,150.627384,-34.421315 +2021,6,24,1,New South Wales,150.601507,-34.417718 +2021,4,24,1,New South Wales,150.606417,-34.435133 +2020,10,14,1,New South Wales,152.00272,-32.74288 +2023,1,27,1,New South Wales,153.07198,-30.887519 +2021,3,4,1,New South Wales,150.513993,-34.450254 +2021,5,7,1,New South Wales,150.603938,-34.42707 +2023,10,20,1,New South Wales,153.105018,-29.489652 +2023,10,29,1,New South Wales,152.920994,-31.481606 +2021,6,4,1,New South Wales,150.604802,-34.427303 +2020,1,14,1,New South Wales,153.302823,-28.844361 +2023,9,15,1,New South Wales,150.57485,-34.52717 +2020,10,21,1,New South Wales,149.947183,-36.617465 +2023,6,29,1,New South Wales,152.909212,-31.475252 +2020,10,17,1,New South Wales,153.5572,-28.397524 +2021,3,8,1,New South Wales,150.614868,-34.432584 +2021,6,14,1,New South Wales,150.5159,-34.446507 +2022,11,11,1,New South Wales,152.041687,-32.737251 +2021,10,,1,New South Wales,149.307547,-36.184802 +2023,10,27,1,New South Wales,150.732006,-34.211933 +2021,7,2,1,New South Wales,150.627025,-34.420921 +2023,10,30,1,New South Wales,150.987602,-34.089143 +2021,5,10,1,New South Wales,150.609179,-34.420681 +2021,12,1,1,New South Wales,152.896393,-31.447575 +2020,10,,1,New South Wales,150.543918,-34.519414 +2020,7,25,1,New South Wales,150.102398,-33.775253 +2020,10,1,1,New South Wales,153.325006,-28.831141 +2021,9,23,1,New South Wales,152.915189,-31.467202 +2021,6,5,1,New South Wales,150.604694,-34.427247 +2021,6,15,1,New South Wales,150.639878,-34.398694 +2020,1,17,1,New South Wales,149.25719,-33.54314 +2021,6,11,1,New South Wales,150.630162,-34.420783 +2021,5,5,1,New South Wales,150.608962,-34.420677 +2021,5,14,1,New South Wales,150.520464,-34.454082 +2022,12,20,1,New South Wales,153.434511,-28.728385 +2020,10,21,1,New South Wales,149.947183,-36.617465 +2021,4,20,1,New South Wales,150.604513,-34.424466 +2021,6,25,1,New South Wales,150.627087,-34.386771 +2021,9,14,1,New South Wales,150.51849,-34.442088 +2024,6,13,1,New South Wales,153.401057,-29.037593 +2021,7,8,1,New South Wales,150.627231,-34.421321 +2021,3,28,1,New South Wales,150.522823,-34.452336 +2021,4,24,1,New South Wales,150.614835,-34.431069 +2021,5,21,1,New South Wales,150.529459,-34.471231 +2020,10,13,1,New South Wales,152.788273,-30.174254 +2022,11,16,1,New South Wales,152.378048,-31.919199 +2020,11,10,1,New South Wales,152.873204,-31.457925 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2021,4,26,1,New South Wales,150.614135,-34.429667 +2020,10,20,1,New South Wales,149.947316,-36.607854 +2021,4,13,1,New South Wales,152.036121,-32.764432 +2021,6,10,1,New South Wales,150.613245,-34.432625 +2022,6,1,1,New South Wales,152.065984,-32.71117 +2020,12,7,1,New South Wales,151.704695,-32.630046 +2020,10,13,1,New South Wales,149.947316,-36.607854 +2022,8,3,1,New South Wales,150.796633,-34.146283 +2021,5,7,1,New South Wales,150.637144,-34.423578 +2023,6,21,1,New South Wales,150.626283,-33.437589 +2024,2,26,1,New South Wales,150.785362,-33.708449 +2021,7,12,1,New South Wales,150.512814,-34.446696 +2020,3,11,1,New South Wales,153.314444,-28.468469 +2023,6,27,1,New South Wales,153.07678,-28.553296 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2024,9,7,1,New South Wales,153.077377,-30.929604 +2020,7,5,1,New South Wales,152.444452,-31.889461 +2021,6,6,1,New South Wales,150.532865,-34.458714 +2023,10,1,1,New South Wales,150.9907,-34.019705 +2021,4,26,1,New South Wales,150.626149,-34.397247 +2021,5,8,1,New South Wales,150.521361,-34.466442 +2021,6,11,1,New South Wales,150.604339,-34.438951 +2023,11,12,1,New South Wales,153.103371,-29.489923 +2021,5,14,1,New South Wales,150.525329,-34.464016 +2020,11,4,1,New South Wales,153.556904,-28.644538 +2021,7,21,1,New South Wales,150.645406,-34.392003 +2020,4,6,1,New South Wales,151.19598,-29.78625 +2021,6,29,1,New South Wales,150.527581,-34.455735 +2024,2,20,1,New South Wales,150.784515,-33.710287 +2021,6,15,1,New South Wales,150.640095,-34.399879 +2022,9,25,1,New South Wales,152.915382,-31.445958 +2023,1,18,1,New South Wales,153.210908,-28.647062 +2021,3,2,1,New South Wales,153.109315,-29.490843 +2021,6,15,1,New South Wales,150.515242,-34.460251 +2021,5,30,1,New South Wales,150.952101,-34.117385 +2024,1,2,1,New South Wales,150.786472,-33.705402 +2021,5,18,1,New South Wales,150.630498,-34.394996 +2021,9,25,1,New South Wales,150.513137,-34.44719 +2021,6,22,1,New South Wales,150.520382,-34.465683 +2021,6,26,1,New South Wales,150.597165,-34.417759 +2021,8,8,1,New South Wales,150.604724,-34.427364 +2023,2,23,1,New South Wales,152.063513,-32.705989 +2022,12,25,1,New South Wales,153.279146,-28.873923 +2021,9,22,1,New South Wales,152.382647,-31.914495 +2021,5,5,1,New South Wales,150.520411,-34.435987 +2021,6,13,1,New South Wales,150.625336,-34.384456 +2022,9,28,1,New South Wales,152.915063,-31.447671 +2021,6,4,1,New South Wales,150.616106,-34.436485 +2022,2,25,1,New South Wales,152.063408,-32.705941 +2021,4,18,1,New South Wales,152.409406,-31.910186 +2021,4,16,1,New South Wales,150.631228,-34.393424 +2022,11,23,1,New South Wales,153.456713,-28.954129 +2022,5,19,1,New South Wales,153.108199,-29.49025 +2023,9,4,1,New South Wales,152.907918,-30.428586 +2022,4,25,1,New South Wales,152.373823,-31.915723 +2023,7,12,1,New South Wales,153.592802,-28.740832 +2023,9,6,1,New South Wales,150.783906,-33.718966 +2021,5,31,1,New South Wales,150.517252,-34.446399 +2022,11,23,1,New South Wales,152.794945,-30.901933 +2021,8,13,1,New South Wales,152.957871,-30.663283 +2021,1,9,1,New South Wales,153.493083,-28.693782 +2023,10,12,1,New South Wales,150.785327,-33.713984 +2022,11,24,1,New South Wales,152.794945,-30.901933 +2023,10,19,1,New South Wales,152.906525,-31.432895 +2021,4,29,1,New South Wales,150.606233,-34.45453 +2021,4,26,1,New South Wales,150.615783,-34.435974 +2021,6,20,1,New South Wales,150.518964,-34.460254 +2021,5,19,1,New South Wales,150.523738,-34.463705 +2023,4,28,1,New South Wales,153.302559,-28.845668 +2021,4,27,1,New South Wales,150.636309,-34.42193 +2020,10,23,1,New South Wales,149.947183,-36.617465 +2021,1,23,1,New South Wales,152.040579,-32.735525 +2020,10,16,1,New South Wales,149.919967,-36.589766 +2021,4,15,1,New South Wales,150.625583,-34.386129 +2024,9,20,1,New South Wales,151.077611,-33.147919 +2024,1,8,1,New South Wales,150.989676,-34.024519 +2020,10,26,1,New South Wales,153.364275,-28.834226 +2021,9,13,1,New South Wales,152.957871,-30.663283 +2021,5,19,1,New South Wales,150.630326,-34.395308 +2023,7,30,1,New South Wales,153.403607,-28.839277 +2020,12,11,1,New South Wales,149.960499,-36.288011 +2022,2,26,1,New South Wales,153.104788,-29.476965 +2023,10,2,1,New South Wales,153.110533,-29.49017 +2023,10,19,1,New South Wales,151.485444,-32.926768 +2023,5,17,1,New South Wales,150.785451,-33.712788 +2020,10,4,1,New South Wales,152.898474,-31.433827 +2020,8,10,1,New South Wales,152.929999,-29.726763 +2021,9,13,1,New South Wales,153.461447,-28.919346 +2021,5,25,1,New South Wales,150.526775,-34.469617 +2023,10,30,1,New South Wales,153.110989,-29.487434 +2020,,,1,New South Wales,153.443037,-28.983189 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2022,1,8,1,New South Wales,152.919823,-31.470525 +2022,6,10,1,New South Wales,150.863897,-33.41413 +2020,8,6,1,New South Wales,152.846846,-31.545488 +2023,1,20,1,New South Wales,152.815696,-31.42658 +2021,6,5,1,New South Wales,150.636174,-34.487722 +2020,7,29,1,New South Wales,152.800222,-31.121862 +2021,3,14,1,New South Wales,150.520141,-34.446981 +2024,1,16,1,New South Wales,152.73232,-31.193047 +2021,9,16,1,New South Wales,152.374053,-31.915482 +2020,6,19,1,New South Wales,153.07705,-29.45099 +2020,1,20,1,New South Wales,153.49745,-28.636812 +2023,9,20,1,New South Wales,152.065318,-32.710944 +2022,11,29,1,New South Wales,150.847722,-34.056 +2021,8,1,1,New South Wales,150.649902,-34.402331 +2021,9,7,1,New South Wales,153.329026,-28.929336 +2023,10,13,1,New South Wales,152.079265,-32.727606 +2021,9,11,1,New South Wales,152.380825,-31.907842 +2020,7,29,1,New South Wales,150.101093,-33.77872 +2021,2,23,1,New South Wales,150.613009,-34.432142 +2020,5,,1,New South Wales,152.062539,-32.739255 +2022,10,5,1,New South Wales,152.9682,-30.414884 +2022,9,16,1,New South Wales,153.062859,-30.325771 +2022,9,10,1,New South Wales,152.915982,-31.444741 +2023,8,26,1,New South Wales,152.915061,-31.481714 +2021,4,28,1,New South Wales,150.615522,-34.435617 +2021,4,29,1,New South Wales,150.638851,-34.489307 +2022,4,1,1,New South Wales,152.336578,-32.303749 +2024,2,16,1,New South Wales,150.81386,-34.10442 +2021,7,3,1,New South Wales,150.642042,-34.395977 +2020,1,9,1,New South Wales,153.07705,-29.45099 +2021,7,14,1,New South Wales,150.625699,-34.386239 +2021,9,14,1,New South Wales,150.515576,-34.454479 +2020,11,19,1,New South Wales,149.551019,-33.563057 +2021,6,7,1,New South Wales,150.660063,-34.455717 +2021,3,6,1,New South Wales,153.370115,-29.090107 +2020,11,16,1,New South Wales,149.910112,-36.460589 +2020,11,,1,New South Wales,153.599218,-28.719867 +2022,5,28,1,New South Wales,152.894572,-31.448008 +2024,2,1,1,New South Wales,152.926422,-31.451806 +2023,,,1,New South Wales,153.599218,-28.719867 +2023,11,28,1,New South Wales,150.784906,-33.717936 +2021,5,11,1,New South Wales,150.605361,-34.427151 +2023,11,26,1,New South Wales,150.808197,-34.097848 +2023,7,7,1,New South Wales,153.328297,-28.814763 +2024,3,4,1,New South Wales,152.87873,-31.409817 +2021,5,25,1,New South Wales,150.639112,-34.491629 +2021,5,26,1,New South Wales,150.60277,-34.434827 +2023,5,9,1,New South Wales,153.394938,-28.960556 +2022,8,11,1,New South Wales,150.517315,-34.457259 +2021,4,20,1,New South Wales,150.604568,-34.42444 +2021,10,18,1,New South Wales,152.812224,-29.798684 +2022,4,30,1,New South Wales,152.082131,-32.736321 +2023,3,13,1,New South Wales,153.487813,-28.243765 +2020,11,3,1,New South Wales,149.994744,-36.560944 +2021,4,29,1,New South Wales,150.63536,-34.419694 +2020,10,26,1,New South Wales,153.364275,-28.834226 +2020,4,20,1,New South Wales,152.849796,-31.526667 +2020,1,31,1,New South Wales,152.929196,-31.457237 +2024,9,21,1,New South Wales,146.598475,-34.763279 +2023,8,1,1,New South Wales,153.091741,-29.487822 +2020,10,13,1,New South Wales,149.950035,-36.601015 +2020,8,21,1,New South Wales,153.103661,-29.488142 +2021,6,16,1,New South Wales,152.741668,-30.120163 +2023,8,6,1,New South Wales,153.614638,-28.663318 +2021,6,13,1,New South Wales,150.615919,-34.430811 +2021,11,1,1,New South Wales,151.657999,-32.684466 +2022,11,21,1,New South Wales,152.78933,-30.918792 +2021,2,1,1,New South Wales,153.32428,-28.831246 +2021,4,17,1,New South Wales,150.608632,-34.434148 +2020,4,9,1,New South Wales,152.719811,-30.168086 +2021,3,17,1,New South Wales,150.607514,-34.421848 +2020,12,27,1,New South Wales,153.104144,-29.479561 +2021,7,12,1,New South Wales,150.630964,-34.386179 +2022,7,7,1,New South Wales,152.401708,-31.920062 +2023,9,13,1,New South Wales,150.727631,-34.20052 +2023,8,2,1,New South Wales,152.028729,-32.190981 +2020,9,15,1,New South Wales,153.004017,-29.185093 +2021,11,3,1,New South Wales,152.82356,-29.813599 +2021,6,16,1,New South Wales,150.622863,-34.383858 +2021,3,8,1,New South Wales,150.607572,-34.430485 +2022,8,16,1,New South Wales,150.813125,-34.145235 +2021,5,21,1,New South Wales,150.607411,-34.433106 +2020,7,31,1,New South Wales,152.922188,-31.476999 +2021,8,2,1,New South Wales,150.633635,-34.41838 +2024,8,20,1,New South Wales,152.393294,-32.022604 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2023,1,12,1,New South Wales,152.743408,-31.256856 +2021,2,24,1,New South Wales,150.634043,-34.476033 +2020,10,15,1,New South Wales,149.947183,-36.617465 +2024,3,29,1,New South Wales,152.89989,-31.409538 +2020,1,24,1,New South Wales,153.314264,-28.826328 +2021,7,3,1,New South Wales,152.863743,-29.6794 +2023,8,20,1,New South Wales,151.242891,-33.12687 +2022,11,10,1,New South Wales,153.305455,-28.825656 +2021,6,1,1,New South Wales,153.104273,-29.482232 +2024,1,5,1,New South Wales,153.10387,-29.497268 +2021,5,10,1,New South Wales,150.615831,-34.435064 +2022,5,9,1,New South Wales,153.103682,-29.485795 +2020,4,20,1,New South Wales,152.867747,-31.5021 +2020,8,11,1,New South Wales,153.34067,-28.974972 +2023,11,2,1,New South Wales,152.071027,-32.708891 +2022,11,30,1,New South Wales,152.754102,-30.882465 +2021,9,15,1,New South Wales,150.789395,-34.203677 +2021,5,6,1,New South Wales,150.637237,-34.42376 +2022,11,18,1,New South Wales,152.754102,-30.882465 +2022,3,18,1,New South Wales,152.919406,-31.443481 +2024,7,11,1,New South Wales,153.45094,-28.933223 +2023,2,11,1,New South Wales,152.872225,-31.471467 +2022,5,5,1,New South Wales,153.311638,-28.821557 +2020,1,5,1,New South Wales,153.418019,-28.873275 +2020,10,26,1,New South Wales,153.360617,-28.840581 +2020,10,19,1,New South Wales,149.947183,-36.617465 +2021,5,3,1,New South Wales,150.521527,-34.452733 +2021,6,3,1,New South Wales,152.881963,-31.430871 +2021,3,27,1,New South Wales,150.516162,-34.446828 +2022,11,3,1,New South Wales,153.291483,-28.828072 +2022,11,30,1,New South Wales,152.754102,-30.882465 +2023,3,9,1,New South Wales,153.209622,-28.928136 +2021,4,21,1,New South Wales,150.615863,-34.43319 +2022,3,22,1,New South Wales,152.851403,-31.554457 +2023,8,14,1,New South Wales,150.787241,-33.703987 +2020,11,2,1,New South Wales,152.856978,-30.601564 +2021,10,29,1,New South Wales,153.104155,-29.478744 +2023,4,27,1,New South Wales,153.022552,-28.489326 +2021,8,20,1,New South Wales,153.405749,-28.84351 +2020,5,18,1,New South Wales,152.50663,-28.25342 +2021,6,13,1,New South Wales,150.614781,-34.43142 +2024,5,5,1,New South Wales,151.517626,-30.512281 +2020,2,27,1,New South Wales,152.878965,-31.449306 +2023,12,22,1,New South Wales,152.063695,-32.706478 +2021,6,8,1,New South Wales,153.101569,-29.489727 +2023,8,29,1,New South Wales,149.552049,-33.491105 +2020,4,24,1,New South Wales,152.85146,-29.69253 +2021,7,17,1,New South Wales,150.627993,-34.420921 +2021,4,9,1,New South Wales,151.717883,-32.662275 +2020,11,3,1,New South Wales,153.317651,-28.862857 +2021,10,21,1,New South Wales,153.01262,-29.53804 +2020,11,3,1,New South Wales,153.317651,-28.862857 +2021,4,6,1,New South Wales,151.1166,-29.7667 +2022,3,26,1,New South Wales,153.559633,-28.393708 +2023,12,15,1,New South Wales,150.786092,-33.712259 +2023,2,22,1,New South Wales,152.869901,-31.46813 +2021,5,4,1,New South Wales,150.615737,-34.436063 +2023,2,13,1,New South Wales,153.116,-29.496 +2021,5,16,1,New South Wales,150.520603,-34.453778 +2021,4,16,1,New South Wales,150.616073,-34.436512 +2023,10,19,1,New South Wales,152.502971,-31.92674 +2021,6,3,1,New South Wales,150.534884,-34.463344 +2020,10,1,1,New South Wales,152.8965,-31.43619 +2021,4,30,1,New South Wales,150.615175,-34.429426 +2023,11,27,1,New South Wales,152.86574,-30.40494 +2023,6,4,1,New South Wales,150.7839,-33.717632 +2022,9,22,1,New South Wales,153.10917,-29.49183 +2021,8,25,1,New South Wales,150.5182,-34.446725 +2021,5,5,1,New South Wales,150.520003,-34.46893 +2021,4,20,1,New South Wales,150.615712,-34.433908 +2021,9,14,1,New South Wales,151.655944,-32.685139 +2022,9,29,1,New South Wales,152.906761,-30.239996 +2020,1,28,1,New South Wales,152.887338,-31.439547 +2024,4,9,1,New South Wales,152.890903,-31.438015 +2022,3,4,1,New South Wales,153.110511,-29.49018 +2021,2,24,1,New South Wales,150.616197,-34.434422 +2021,4,19,1,New South Wales,150.626919,-34.385794 +2021,3,27,1,New South Wales,150.525538,-34.459892 +2021,5,2,1,New South Wales,150.611393,-34.419733 +2021,6,27,1,New South Wales,150.627393,-34.420234 +2020,11,9,1,New South Wales,150.016582,-36.557254 +2022,6,26,1,New South Wales,152.10181,-32.73423 +2020,5,25,1,New South Wales,152.800539,-29.162889 +2020,10,19,1,New South Wales,149.909982,-36.631687 +2020,11,,1,New South Wales,152.927995,-31.457568 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2021,10,17,1,New South Wales,153.091312,-29.487714 +2021,5,1,1,New South Wales,150.637851,-34.488863 +2020,5,22,1,New South Wales,152.82955,-29.6429 +2020,3,8,1,New South Wales,153.104293,-29.480044 +2021,9,26,1,New South Wales,153.300439,-28.825748 +2024,8,30,1,New South Wales,152.403655,-32.342547 +2022,3,6,1,New South Wales,152.925267,-31.459867 +2020,12,14,1,New South Wales,153.226752,-28.888412 +2023,2,13,1,New South Wales,153.313736,-28.822447 +2024,3,1,1,New South Wales,150.992037,-34.022847 +2021,1,23,1,New South Wales,152.06661,-32.709988 +2022,7,29,1,New South Wales,152.063601,-32.706532 +2021,7,7,1,New South Wales,150.606884,-34.438604 +2021,10,8,1,New South Wales,150.824751,-34.149727 +2021,8,13,1,New South Wales,153.347076,-28.811044 +2022,1,25,1,New South Wales,150.6189,-34.44002 +2021,6,24,1,New South Wales,150.520431,-34.465873 +2021,8,8,1,New South Wales,152.884465,-28.440333 +2021,7,24,1,New South Wales,150.60675,-34.438709 +2020,11,27,1,New South Wales,152.927691,-31.458629 +2021,6,26,1,New South Wales,150.627369,-34.420287 +2020,3,4,1,New South Wales,153.315696,-28.818295 +2021,6,12,1,New South Wales,150.659709,-34.455143 +2021,10,26,1,New South Wales,152.866156,-30.877762 +2021,7,22,1,New South Wales,151.991689,-32.720961 +2020,5,2,1,New South Wales,153.092672,-29.494436 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2023,12,16,1,New South Wales,153.105206,-29.48976 +2020,6,24,1,New South Wales,150.10237,-33.778624 +2021,6,25,1,New South Wales,150.603088,-34.437781 +2021,12,17,1,New South Wales,153.438883,-28.993718 +2023,6,17,1,New South Wales,152.910601,-31.437024 +2023,3,4,1,New South Wales,150.808229,-34.098155 +2023,11,27,1,New South Wales,152.353952,-31.918223 +2021,6,2,1,New South Wales,150.604747,-34.427329 +2020,7,26,1,New South Wales,153.562712,-28.387266 +2021,10,19,1,New South Wales,152.810885,-29.806272 +2021,5,13,1,New South Wales,150.640094,-34.492711 +2021,11,6,1,New South Wales,153.123214,-30.300848 +2024,4,19,1,New South Wales,150.052394,-33.671115 +2022,11,9,1,New South Wales,150.790539,-34.143183 +2021,7,9,1,New South Wales,150.520616,-34.465877 +2020,10,26,1,New South Wales,152.905271,-31.443445 +2023,7,28,1,New South Wales,152.906083,-31.442625 +2022,8,9,1,New South Wales,150.527214,-34.448088 +2020,12,23,1,New South Wales,153.103758,-29.485604 +2022,6,15,1,New South Wales,152.513861,-32.029483 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2020,10,4,1,New South Wales,152.909624,-31.431087 +2020,10,15,1,New South Wales,149.930096,-36.638123 +2023,3,4,1,New South Wales,153.103752,-29.485548 +2020,,,1,New South Wales,152.759104,-28.733492 +2021,7,25,1,New South Wales,150.516556,-34.448972 +2021,5,20,1,New South Wales,150.615307,-34.431304 +2024,6,3,1,New South Wales,152.065526,-32.742849 +2021,5,30,1,New South Wales,150.615753,-34.438561 +2021,7,25,1,New South Wales,150.600543,-34.420611 +2021,6,15,1,New South Wales,150.52411,-34.452614 +2021,2,15,1,New South Wales,152.404167,-31.945815 +2024,1,9,1,New South Wales,152.358798,-31.926849 +2021,6,14,1,New South Wales,153.469493,-28.703925 +2021,9,9,1,New South Wales,150.63949,-33.54144 +2020,1,18,1,New South Wales,152.270246,-32.484725 +2023,8,20,1,New South Wales,150.785911,-33.706227 +2021,6,15,1,New South Wales,150.630785,-34.420669 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2021,4,28,1,New South Wales,150.619976,-34.40094 +2021,6,8,1,New South Wales,150.626027,-34.388869 +2021,6,11,1,New South Wales,150.613635,-34.431929 +2023,12,23,1,New South Wales,152.168747,-32.090002 +2021,8,29,1,New South Wales,150.522475,-34.464833 +2021,4,24,1,New South Wales,150.608734,-34.453461 +2020,5,3,1,New South Wales,153.131888,-29.088158 +2021,6,20,1,New South Wales,150.513826,-34.446356 +2020,12,24,1,New South Wales,152.060948,-32.710655 +2021,6,14,1,New South Wales,150.605605,-34.437281 +2020,10,21,1,New South Wales,152.899797,-29.63175 +2022,8,2,1,New South Wales,151.053718,-34.042188 +2021,4,24,1,New South Wales,150.634359,-34.420107 +2021,4,28,1,New South Wales,150.619243,-34.400701 +2021,5,9,1,New South Wales,150.637358,-34.423708 +2021,3,8,1,New South Wales,153.108221,-29.490222 +2021,6,5,1,New South Wales,150.534908,-34.459188 +2020,11,3,1,New South Wales,149.96897,-36.58553 +2021,7,5,1,New South Wales,150.603653,-34.419139 +2021,4,21,1,New South Wales,150.60742,-34.433151 +2021,5,8,1,New South Wales,150.637347,-34.423717 +2021,4,19,1,New South Wales,150.630908,-34.393967 +2020,9,12,1,New South Wales,153.382755,-28.332256 +2021,6,1,1,New South Wales,150.638275,-34.490801 +2021,9,28,1,New South Wales,150.512879,-34.445986 +2022,10,2,1,New South Wales,153.015486,-30.37941 +2020,1,7,1,New South Wales,153.108189,-29.490189 +2021,6,18,1,New South Wales,150.519223,-34.459962 +2021,4,24,1,New South Wales,150.605696,-34.423417 +2021,5,10,1,New South Wales,150.632654,-34.418046 +2021,3,18,1,New South Wales,150.520778,-34.467016 +2021,6,6,1,New South Wales,150.606978,-34.429951 +2024,3,22,1,New South Wales,152.382897,-31.918364 +2021,5,4,1,New South Wales,150.611755,-34.419631 +2020,9,8,1,New South Wales,150.03232,-31.13645 +2020,5,6,1,New South Wales,152.606383,-29.222514 +2023,5,11,1,New South Wales,152.863552,-31.299418 +2023,6,19,1,New South Wales,149.955099,-36.573659 +2020,,,1,New South Wales,151.961801,-32.735331 +2021,8,7,1,New South Wales,150.514086,-34.446389 +2024,1,1,1,New South Wales,153.09349,-29.488564 +2024,3,18,1,New South Wales,150.990439,-34.024327 +2020,9,24,1,New South Wales,153.40054,-28.25768 +2021,8,31,1,New South Wales,150.523448,-34.4636 +2021,6,12,1,New South Wales,150.519898,-34.452601 +2021,7,17,1,New South Wales,150.599395,-34.416622 +2024,9,8,1,New South Wales,150.988647,-34.028132 +2021,10,4,1,New South Wales,153.380443,-28.876698 +2021,6,18,1,New South Wales,150.513916,-34.445862 +2022,2,22,1,New South Wales,152.869051,-29.683564 +2023,6,24,1,New South Wales,153.109283,-29.490866 +2021,5,23,1,New South Wales,150.597761,-34.428102 +2023,6,16,1,New South Wales,150.79083,-34.197805 +2023,5,3,1,New South Wales,153.48358,-28.21589 +2021,6,30,1,New South Wales,150.522717,-34.465857 +2020,10,19,1,New South Wales,153.303135,-28.824882 +2021,12,26,1,New South Wales,150.617426,-34.438278 +2022,11,11,1,New South Wales,151.6662,-30.501562 +2022,8,22,1,New South Wales,152.921401,-31.453851 +2023,11,4,1,New South Wales,152.412613,-31.932217 +2020,3,26,1,New South Wales,153.102819,-29.487383 +2021,4,17,1,New South Wales,150.627397,-34.38657 +2021,3,5,1,New South Wales,150.603334,-34.436398 +2023,1,6,1,New South Wales,152.918992,-31.478788 +2021,4,22,1,New South Wales,150.067591,-33.798157 +2021,5,13,1,New South Wales,150.517879,-34.43773 +2023,8,1,1,New South Wales,153.487575,-28.710095 +2021,6,30,1,New South Wales,150.605542,-34.432249 +2021,10,8,1,New South Wales,149.238283,-36.17393 +2023,1,11,1,New South Wales,152.379291,-31.919808 +2024,3,6,1,New South Wales,151.850512,-32.791268 +2021,8,2,1,New South Wales,150.626721,-34.389333 +2020,10,26,1,New South Wales,153.360617,-28.840581 +2021,8,13,1,New South Wales,151.773366,-32.585015 +2021,4,27,1,New South Wales,150.624103,-34.388832 +2021,8,13,1,New South Wales,153.10931,-29.490675 +2022,7,30,1,New South Wales,153.10033,-29.500849 +2023,11,7,1,New South Wales,152.785517,-31.632377 +2020,11,30,1,New South Wales,152.456854,-31.226452 +2021,9,21,1,New South Wales,151.76716,-32.563716 +2022,9,26,1,New South Wales,153.212171,-28.582341 +2020,1,7,1,New South Wales,152.909109,-31.457637 +2021,6,24,1,New South Wales,150.657608,-34.455932 +2020,11,22,1,New South Wales,152.090208,-28.783147 +2021,5,17,1,New South Wales,150.63101,-34.389966 +2022,12,27,1,New South Wales,151.024977,-34.03722 +2021,4,18,1,New South Wales,152.875853,-31.424978 +2021,3,15,1,New South Wales,150.520945,-34.454002 +2021,6,1,1,New South Wales,150.525054,-34.453418 +2022,1,13,1,New South Wales,150.846051,-29.834008 +2022,9,30,1,New South Wales,152.90259,-30.24125 +2021,3,9,1,New South Wales,153.109294,-29.490904 +2021,7,6,1,New South Wales,150.627285,-34.421331 +2021,6,6,1,New South Wales,150.657839,-34.455855 +2023,2,14,1,New South Wales,153.517743,-28.66879 +2024,1,16,1,New South Wales,152.749453,-30.90373 +2023,9,21,1,New South Wales,152.607622,-30.343688 +2020,9,6,1,New South Wales,153.300639,-28.826227 +2021,5,12,1,New South Wales,150.633072,-34.417522 +2021,8,2,1,New South Wales,150.518799,-34.447449 +2021,6,14,1,New South Wales,150.611433,-34.43286 +2020,10,17,1,New South Wales,152.925776,-31.447463 +2021,5,22,1,New South Wales,150.659134,-34.4578 +2021,6,13,1,New South Wales,152.894407,-31.430976 +2023,11,13,1,New South Wales,151.013272,-34.046067 +2021,12,15,1,New South Wales,152.104554,-32.75184 +2024,1,17,1,New South Wales,150.786644,-33.704004 +2024,7,8,1,New South Wales,151.6097,-32.599567 +2021,10,18,1,New South Wales,152.812671,-29.797683 +2022,2,6,1,New South Wales,153.052888,-28.446447 +2020,10,22,1,New South Wales,149.919967,-36.589766 +2021,6,9,1,New South Wales,150.526062,-34.458 +2021,5,31,1,New South Wales,150.52388,-34.464077 +2022,12,15,1,New South Wales,150.921108,-33.967159 +2020,10,22,1,New South Wales,149.919967,-36.589766 +2021,9,24,1,New South Wales,152.824789,-31.256682 +2020,10,23,1,New South Wales,149.919967,-36.589766 +2022,10,17,1,New South Wales,150.466231,-34.471482 +2023,9,15,1,New South Wales,151.641541,-30.489931 +2021,4,21,1,New South Wales,150.520122,-34.453489 +2020,10,23,1,New South Wales,149.919967,-36.589766 +2020,10,5,1,New South Wales,149.959933,-36.657162 +2020,,,1,New South Wales,152.809452,-31.651825 +2023,4,21,1,New South Wales,153.135067,-28.836206 +2021,5,11,1,New South Wales,150.519043,-34.436618 +2022,8,26,1,New South Wales,153.4034,-28.569438 +2022,6,24,1,New South Wales,153.095191,-30.33686 +2020,10,21,1,New South Wales,152.777388,-30.192663 +2021,9,19,1,New South Wales,150.651244,-34.401797 +2021,4,23,1,New South Wales,150.609529,-34.419083 +2024,8,10,1,New South Wales,151.649295,-32.609009 +2021,4,21,1,New South Wales,150.610289,-34.419134 +2021,11,18,1,New South Wales,153.60863,-28.66111 +2021,4,20,1,New South Wales,150.639997,-34.415357 +2021,10,17,1,New South Wales,153.103827,-29.485585 +2021,6,10,1,New South Wales,150.521578,-34.465734 +2021,7,19,1,New South Wales,150.516391,-34.447544 +2021,9,19,1,New South Wales,153.627963,-28.640459 +2022,12,14,1,New South Wales,153.107969,-29.490395 +2021,3,2,1,New South Wales,150.609027,-34.420687 +2021,8,8,1,New South Wales,153.104101,-29.484063 +2021,4,21,1,New South Wales,150.630786,-34.387095 +2021,6,12,1,New South Wales,150.644424,-34.396374 +2023,6,9,1,New South Wales,150.79662,-34.13972 +2020,1,2,1,New South Wales,153.103677,-29.487514 +2020,1,3,1,New South Wales,152.929449,-29.002832 +2021,5,7,1,New South Wales,150.639049,-34.491546 +2021,5,26,1,New South Wales,150.631488,-34.388416 +2021,5,21,1,New South Wales,150.615098,-34.431381 +2021,3,20,1,New South Wales,150.659383,-34.458238 +2021,5,6,1,New South Wales,150.638973,-34.491554 +2020,10,12,1,New South Wales,152.881577,-31.456291 +2022,9,25,1,New South Wales,152.898257,-31.465408 +2021,7,11,1,New South Wales,150.642155,-34.394302 +2020,1,12,1,New South Wales,151.64197,-32.636285 +2023,2,4,1,New South Wales,150.746057,-34.3372 +2024,1,16,1,New South Wales,152.249903,-32.417866 +2020,1,9,1,New South Wales,150.807222,-34.109219 +2021,3,25,1,New South Wales,150.534642,-34.462311 +2023,11,1,1,New South Wales,152.872573,-31.407595 +2021,7,10,1,New South Wales,150.640976,-34.393657 +2020,11,4,1,New South Wales,153.334493,-28.813462 +2021,6,11,1,New South Wales,153.108146,-29.490189 +2024,6,26,1,New South Wales,152.916678,-31.435459 +2021,3,11,1,New South Wales,152.911976,-31.455807 +2021,7,3,1,New South Wales,150.627438,-34.421307 +2021,9,13,1,New South Wales,152.878917,-31.44848 +2020,11,14,1,New South Wales,153.104079,-29.48431 +2023,8,5,1,New South Wales,153.395129,-28.960044 +2021,6,18,1,New South Wales,150.522326,-34.451451 +2021,5,17,1,New South Wales,150.530673,-34.469939 +2021,7,3,1,New South Wales,150.597583,-34.415306 +2021,6,13,1,New South Wales,150.521609,-34.46578 +2020,8,24,1,New South Wales,150.759286,-34.376047 +2023,6,8,1,New South Wales,152.063426,-32.706118 +2020,7,27,1,New South Wales,153.497035,-28.685331 +2021,12,31,1,New South Wales,152.817813,-31.572524 +2021,9,30,1,New South Wales,153.103774,-29.485566 +2021,4,17,1,New South Wales,150.61652,-34.431102 +2020,10,12,1,New South Wales,152.84256,-31.535463 +2023,9,30,1,New South Wales,153.308213,-28.823205 +2022,9,13,1,New South Wales,153.103929,-29.489591 +2022,9,10,1,New South Wales,152.915958,-31.444746 +2020,7,19,1,New South Wales,152.822405,-31.099703 +2021,6,4,1,New South Wales,150.604769,-34.427302 +2021,6,5,1,New South Wales,150.519221,-34.448269 +2023,10,28,1,New South Wales,152.192632,-32.228945 +2020,7,4,1,New South Wales,150.10107,-33.776844 +2022,11,22,1,New South Wales,153.275348,-28.822516 +2023,10,17,1,New South Wales,152.880918,-31.453439 +2021,5,6,1,New South Wales,150.609102,-34.420707 +2020,5,10,1,New South Wales,153.103945,-29.485496 +2022,12,11,1,New South Wales,152.919471,-31.481276 +2021,5,10,1,New South Wales,150.637333,-34.423807 +2022,11,30,1,New South Wales,152.896556,-31.436271 +2021,7,21,1,New South Wales,150.623358,-34.383282 +2021,3,25,1,New South Wales,152.896852,-29.632753 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2021,7,24,1,New South Wales,150.516735,-34.448796 +2021,3,25,1,New South Wales,152.896852,-29.632753 +2020,1,16,1,New South Wales,152.868002,-29.667173 +2022,9,26,1,New South Wales,150.968372,-33.965225 +2021,1,22,1,New South Wales,152.413267,-31.944004 +2021,10,14,1,New South Wales,153.319984,-28.914209 +2020,7,20,1,New South Wales,153.103731,-29.48565 +2021,5,4,1,New South Wales,150.603045,-34.427476 +2022,9,26,1,New South Wales,150.812345,-34.124693 +2021,5,4,1,New South Wales,152.036145,-32.768798 +2022,3,11,1,New South Wales,152.89648,-31.424534 +2021,2,17,1,New South Wales,149.737638,-33.554436 +2021,1,25,1,New South Wales,152.927809,-31.464743 +2021,8,8,1,New South Wales,150.514129,-34.446408 +2020,9,18,1,New South Wales,153.396987,-28.289961 +2021,5,6,1,New South Wales,150.52106,-34.466688 +2024,1,22,1,New South Wales,150.786883,-33.706694 +2021,7,24,1,New South Wales,150.516832,-34.448834 +2021,2,27,1,New South Wales,150.611374,-34.430731 +2020,4,20,1,New South Wales,152.893999,-31.502513 +2023,8,19,1,New South Wales,150.785669,-33.713976 +2021,4,21,1,New South Wales,150.638963,-34.418871 +2020,10,11,1,New South Wales,149.959933,-36.657162 +2021,3,10,1,New South Wales,150.603801,-34.440238 +2021,5,3,1,New South Wales,150.606059,-34.457223 +2022,10,4,1,New South Wales,153.297464,-28.829658 +2021,6,2,1,New South Wales,150.657734,-34.456123 +2020,11,17,1,New South Wales,152.944433,-29.346563 +2023,10,15,1,New South Wales,152.926102,-31.444505 +2022,4,20,1,New South Wales,150.991638,-34.021692 +2021,5,13,1,New South Wales,150.617099,-34.433719 +2024,1,2,1,New South Wales,153.032588,-30.380655 +2024,2,22,1,New South Wales,152.158305,-32.714161 +2021,6,14,1,New South Wales,150.63033,-34.420985 +2020,11,27,1,New South Wales,152.488711,-32.032221 +2021,5,12,1,New South Wales,150.640028,-34.49198 +2022,8,6,1,New South Wales,152.99566,-30.383649 +2024,6,17,1,New South Wales,153.39589,-29.018366 +2021,6,12,1,New South Wales,150.626725,-34.385331 +2023,9,6,1,New South Wales,150.983387,-34.095124 +2022,11,27,1,New South Wales,150.732148,-34.166609 +2023,1,20,1,New South Wales,153.09114,-29.480023 +2023,9,5,1,New South Wales,150.990995,-34.024433 +2023,12,19,1,New South Wales,152.790456,-30.251169 +2021,10,6,1,New South Wales,152.886806,-31.44302 +2021,6,17,1,New South Wales,150.627546,-34.420958 +2020,4,23,1,New South Wales,152.801183,-31.473967 +2021,4,17,1,New South Wales,150.609113,-34.418796 +2020,10,18,1,New South Wales,150.840124,-34.069695 +2022,10,3,1,New South Wales,150.794816,-34.202843 +2021,6,20,1,New South Wales,150.520229,-34.465716 +2021,5,18,1,New South Wales,150.640809,-34.494402 +2021,4,3,1,New South Wales,153.103779,-29.485562 +2021,8,14,1,New South Wales,150.520543,-34.465758 +2021,8,4,1,New South Wales,150.644223,-34.399291 +2021,7,28,1,New South Wales,150.520763,-34.465321 +2021,9,13,1,New South Wales,150.515576,-34.454479 +2021,6,20,1,New South Wales,152.928856,-29.726469 +2020,1,8,1,New South Wales,152.30042,-31.94825 +2022,8,15,1,New South Wales,153.104004,-29.484334 +2023,9,28,1,New South Wales,152.169342,-32.747066 +2020,1,3,1,New South Wales,152.30042,-31.94825 +2021,5,31,1,New South Wales,150.51715,-34.44655 +2022,11,25,1,New South Wales,152.794854,-30.893434 +2021,6,7,1,New South Wales,150.605631,-34.434829 +2020,10,23,1,New South Wales,149.919967,-36.589766 +2022,8,6,1,New South Wales,153.396523,-28.262928 +2022,2,14,1,New South Wales,152.916577,-31.44468 +2021,4,21,1,New South Wales,150.637438,-34.42279 +2021,7,16,1,New South Wales,150.645311,-34.396923 +2021,3,11,1,New South Wales,150.611556,-34.420511 +2023,8,23,1,New South Wales,152.20833,-32.2346 +2020,9,29,1,New South Wales,152.404167,-31.945815 +2020,10,30,1,New South Wales,149.96897,-36.58553 +2021,5,9,1,New South Wales,150.520862,-34.466747 +2022,8,30,1,New South Wales,149.316653,-36.297917 +2021,5,28,1,New South Wales,150.599883,-34.425043 +2021,4,10,1,New South Wales,153.009982,-30.372653 +2021,4,12,1,New South Wales,150.53375,-34.478566 +2021,5,16,1,New South Wales,150.632816,-34.418869 +2022,6,27,1,New South Wales,152.94349,-30.38896 +2020,10,25,1,New South Wales,152.904996,-31.442945 +2021,4,22,1,New South Wales,150.615138,-34.429209 +2021,6,10,1,New South Wales,150.630264,-34.421037 +2021,4,28,1,New South Wales,150.61546,-34.435472 +2021,5,23,1,New South Wales,150.639269,-34.493011 +2023,6,24,1,New South Wales,150.47206,-34.4908 +2020,10,6,1,New South Wales,149.959933,-36.657162 +2021,8,23,1,New South Wales,153.093531,-29.492883 +2022,9,17,1,New South Wales,150.812345,-34.124693 +2020,10,12,1,New South Wales,149.959933,-36.657162 +2020,5,29,1,New South Wales,149.32655,-36.145066 +2020,9,15,1,New South Wales,152.081127,-32.736579 +2022,4,10,1,New South Wales,153.402251,-28.259701 +2021,5,23,1,New South Wales,150.616423,-34.434544 +2021,3,14,1,New South Wales,150.517241,-34.451573 +2021,5,6,1,New South Wales,150.627544,-34.389836 +2021,1,18,1,New South Wales,152.888522,-28.804711 +2021,3,23,1,New South Wales,150.51672,-34.446361 +2023,8,25,1,New South Wales,152.902289,-30.46223 +2021,8,17,1,New South Wales,152.886575,-30.888511 +2021,4,9,1,New South Wales,150.616765,-34.433216 +2021,6,28,1,New South Wales,150.522462,-34.465635 +2021,6,18,1,New South Wales,150.627558,-34.420913 +2023,12,27,1,New South Wales,152.926893,-31.472744 +2023,9,5,1,New South Wales,152.817219,-31.449126 +2022,10,22,1,New South Wales,151.11261,-33.12617 +2022,11,25,1,New South Wales,152.367889,-31.875324 +2023,6,12,1,New South Wales,150.940765,-34.114803 +2021,11,3,1,New South Wales,153.5914,-28.63691 +2023,1,20,1,New South Wales,152.815305,-31.429334 +2021,7,8,1,New South Wales,150.627476,-34.421524 +2021,9,9,1,New South Wales,150.524203,-34.447964 +2021,6,26,1,New South Wales,150.631484,-34.387803 +2021,12,27,1,New South Wales,153.357334,-28.891935 +2021,4,25,1,New South Wales,150.635258,-34.420224 +2021,6,23,1,New South Wales,150.645146,-34.393124 +2021,7,2,1,New South Wales,153.101966,-29.488821 +2020,11,6,1,New South Wales,150.016902,-36.541583 +2021,10,25,1,New South Wales,150.879793,-34.053072 +2020,10,28,1,New South Wales,153.335481,-28.869015 +2021,3,18,1,New South Wales,150.516314,-34.44537 +2022,10,6,1,New South Wales,153.276239,-28.857815 +2021,4,13,1,New South Wales,150.604874,-34.438862 +2021,3,17,1,New South Wales,150.532826,-34.481468 +2022,9,27,1,New South Wales,152.893571,-31.456518 +2021,5,12,1,New South Wales,150.637387,-34.423817 +2021,1,12,1,New South Wales,152.926382,-31.454527 +2020,,,1,New South Wales,153.406485,-28.97575 +2020,10,29,1,New South Wales,153.104074,-29.484366 +2021,6,26,1,New South Wales,150.627119,-34.386799 +2021,6,9,1,New South Wales,150.630171,-34.420864 +2023,9,16,1,New South Wales,152.295075,-31.951946 +2020,12,25,1,New South Wales,152.13899,-32.723846 +2021,7,6,1,New South Wales,153.108119,-29.491025 +2020,11,18,1,New South Wales,150.004563,-36.508695 +2021,7,14,1,New South Wales,152.412543,-31.932266 +2023,12,1,1,New South Wales,150.784018,-33.716876 +2024,3,25,1,New South Wales,151.583393,-32.699885 +2021,5,21,1,New South Wales,153.400089,-28.260532 +2024,3,15,1,New South Wales,150.44189,-34.47006 +2023,5,21,1,New South Wales,150.678615,-33.560279 +2021,7,4,1,New South Wales,150.628359,-34.391015 +2022,5,13,1,New South Wales,153.103849,-29.478034 +2023,5,25,1,New South Wales,153.274431,-29.007408 +2021,6,2,1,New South Wales,150.519545,-34.454992 +2022,4,11,1,New South Wales,153.293195,-28.864618 +2021,7,21,1,New South Wales,152.162699,-32.713622 +2021,11,6,1,New South Wales,153.316288,-28.63844 +2021,5,26,1,New South Wales,150.522459,-34.464995 +2023,2,26,1,New South Wales,152.083773,-32.727503 +2020,10,14,1,New South Wales,149.930096,-36.638123 +2021,6,12,1,New South Wales,150.515915,-34.447102 +2020,11,1,1,New South Wales,150.633756,-33.773491 +2022,11,8,1,New South Wales,152.921277,-31.479148 +2023,6,30,1,New South Wales,152.778695,-31.631593 +2021,10,17,1,New South Wales,153.306193,-28.653247 +2022,8,16,1,New South Wales,153.104096,-29.47993 +2021,7,8,1,New South Wales,150.627322,-34.421557 +2021,5,25,1,New South Wales,150.594631,-34.427599 +2022,6,9,1,New South Wales,153.288292,-28.809314 +2021,3,8,1,New South Wales,150.514755,-34.445852 +2021,5,8,1,New South Wales,150.610062,-34.454993 +2020,9,13,1,New South Wales,152.732519,-31.472074 +2024,8,21,1,New South Wales,152.385759,-31.91282 +2021,7,14,1,New South Wales,152.192918,-31.566678 +2022,11,17,1,New South Wales,150.627594,-34.53402 +2021,9,19,1,New South Wales,153.601971,-28.647359 +2024,5,15,1,New South Wales,152.040472,-32.649546 +2020,9,24,1,New South Wales,153.400686,-28.257627 +2021,10,17,1,New South Wales,151.002296,-34.043136 +2021,8,24,1,New South Wales,150.51996,-34.446481 +2021,3,16,1,New South Wales,150.603344,-34.439093 +2021,6,15,1,New South Wales,150.611466,-34.430904 +2023,1,12,1,New South Wales,152.746224,-31.256329 +2020,6,24,1,New South Wales,153.517337,-28.667703 +2021,5,8,1,New South Wales,150.632625,-34.418306 +2021,7,1,1,New South Wales,150.522273,-34.465793 +2021,6,21,1,New South Wales,150.520274,-34.465663 +2022,12,1,1,New South Wales,152.895278,-31.437377 +2021,4,25,1,New South Wales,150.615398,-34.428862 +2021,1,17,1,New South Wales,150.824101,-34.150289 +2020,8,9,1,New South Wales,153.006019,-28.627209 +2020,2,24,1,New South Wales,152.914346,-31.466482 +2021,5,25,1,New South Wales,150.603104,-34.434924 +2023,11,3,1,New South Wales,152.933578,-31.47209 +2022,8,29,1,New South Wales,153.169695,-28.552523 +2020,10,19,1,New South Wales,153.303174,-28.827996 +2020,3,27,1,New South Wales,150.122613,-35.074457 +2020,11,2,1,New South Wales,149.998977,-36.551144 +2020,10,16,1,New South Wales,153.103811,-29.48559 +2021,6,27,1,New South Wales,150.644405,-34.391614 +2020,6,19,1,New South Wales,153.104246,-29.480194 +2024,8,22,1,New South Wales,151.984444,-32.283338 +2021,6,6,1,New South Wales,150.52808,-34.465596 +2021,6,1,1,New South Wales,150.525205,-34.463788 +2020,11,2,1,New South Wales,149.994744,-36.560944 +2022,7,6,1,New South Wales,152.905478,-31.467655 +2023,1,25,1,New South Wales,153.10409,-29.480341 +2024,3,19,1,New South Wales,150.882544,-29.848616 +2021,6,15,1,New South Wales,150.639751,-34.400098 +2021,6,20,1,New South Wales,150.603761,-34.439345 +2023,4,24,1,New South Wales,149.326049,-36.334367 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2021,8,30,1,New South Wales,150.822621,-34.102113 +2020,1,14,1,New South Wales,152.961042,-31.262194 +2020,1,31,1,New South Wales,153.265653,-28.829788 +2023,9,2,1,New South Wales,153.103865,-29.489526 +2021,5,14,1,New South Wales,150.600743,-34.428089 +2020,10,3,1,New South Wales,153.095675,-30.301528 +2022,9,14,1,New South Wales,152.90555,-31.436121 +2022,1,15,1,New South Wales,153.299542,-28.888539 +2021,5,2,1,New South Wales,150.615448,-34.435535 +2022,8,30,1,New South Wales,149.317977,-36.298474 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2021,5,6,1,New South Wales,152.867761,-29.66734 +2021,5,2,1,New South Wales,150.617521,-34.399685 +2022,12,15,1,New South Wales,150.846913,-34.076804 +2022,8,7,1,New South Wales,152.787661,-31.636001 +2021,8,18,1,New South Wales,153.425778,-28.62343 +2020,11,1,1,New South Wales,149.934245,-36.578531 +2022,8,3,1,New South Wales,150.792467,-34.13811 +2020,9,18,1,New South Wales,153.092165,-29.488233 +2021,5,20,1,New South Wales,150.521612,-34.46569 +2021,5,12,1,New South Wales,150.633015,-34.417611 +2023,1,25,1,New South Wales,153.322439,-28.815967 +2023,8,29,1,New South Wales,153.523134,-28.710546 +2021,3,8,1,New South Wales,150.610031,-34.419787 +2020,11,9,1,New South Wales,152.780912,-31.600288 +2021,11,16,1,New South Wales,150.790596,-34.188134 +2021,6,8,1,New South Wales,150.603669,-34.436494 +2021,7,21,1,New South Wales,150.623098,-34.382862 +2020,8,20,1,New South Wales,153.104235,-29.482209 +2020,11,11,1,New South Wales,150.016902,-36.541583 +2021,6,6,1,New South Wales,150.608353,-34.43518 +2021,5,5,1,New South Wales,150.522904,-34.452536 +2022,9,30,1,New South Wales,153.314983,-28.949201 +2022,8,25,1,New South Wales,153.316426,-28.943486 +2021,2,28,1,New South Wales,153.314983,-28.949201 +2022,2,3,1,New South Wales,152.898276,-31.443867 +2021,5,18,1,New South Wales,150.516522,-34.450125 +2022,5,26,1,New South Wales,153.10394,-29.489587 +2023,8,1,1,New South Wales,153.108124,-29.490572 +2020,10,6,1,New South Wales,149.959933,-36.657162 +2021,4,14,1,New South Wales,153.104042,-29.485165 +2023,12,20,1,New South Wales,153.110533,-29.489895 +2020,11,8,1,New South Wales,152.917291,-31.486389 +2021,4,22,1,New South Wales,150.616984,-34.433536 +2023,9,13,1,New South Wales,150.784697,-33.713283 +2024,1,8,1,New South Wales,150.785887,-33.712923 +2020,10,25,1,New South Wales,153.091307,-29.487957 +2021,10,15,1,New South Wales,152.927149,-31.458083 +2020,11,24,1,New South Wales,153.10939,-29.490581 +2021,7,30,1,New South Wales,153.564393,-28.380908 +2021,8,27,1,New South Wales,150.514698,-34.444093 +2021,7,6,1,New South Wales,150.642119,-34.396366 +2021,12,5,1,New South Wales,150.613983,-34.442655 +2021,4,6,1,New South Wales,152.059278,-32.739099 +2021,5,4,1,New South Wales,150.611766,-34.419623 +2020,10,14,1,New South Wales,150.618086,-33.431233 +2021,10,28,1,New South Wales,152.390764,-31.95843 +2020,,,1,New South Wales,152.745544,-28.653467 +2022,11,27,1,New South Wales,152.065339,-32.710853 +2023,8,13,1,New South Wales,151.718235,-32.71748 +2020,6,11,1,New South Wales,149.961856,-36.436911 +2023,10,4,1,New South Wales,150.786387,-33.706305 +2021,12,22,1,New South Wales,150.615737,-34.439904 +2021,9,3,1,New South Wales,152.42434,-31.800914 +2023,9,21,1,New South Wales,151.795108,-32.562904 +2020,11,16,1,New South Wales,153.317852,-28.929063 +2021,3,3,1,New South Wales,150.529963,-34.442329 +2021,9,28,1,New South Wales,153.525899,-28.679198 +2020,11,,1,New South Wales,151.727327,-32.233822 +2020,12,11,1,New South Wales,153.103763,-29.485632 +2021,9,25,1,New South Wales,152.917671,-31.460451 +2023,8,14,1,New South Wales,150.789656,-34.19702 +2021,6,26,1,New South Wales,150.627335,-34.420341 +2022,8,30,1,New South Wales,153.182249,-28.84733 +2020,10,26,1,New South Wales,153.360699,-28.840527 +2022,11,26,1,New South Wales,152.794945,-30.901933 +2021,6,21,1,New South Wales,150.604284,-34.422569 +2020,10,29,1,New South Wales,153.104176,-29.478823 +2021,12,13,1,New South Wales,153.446229,-28.711586 +2021,7,7,1,New South Wales,150.513018,-34.447187 +2022,11,28,1,New South Wales,152.794945,-30.901933 +2021,5,12,1,New South Wales,150.516463,-34.47012 +2021,4,30,1,New South Wales,150.616411,-34.436103 +2022,11,23,1,New South Wales,152.794945,-30.901933 +2022,11,23,1,New South Wales,152.794945,-30.901933 +2022,2,3,1,New South Wales,152.898276,-31.443867 +2023,9,23,1,New South Wales,152.893571,-31.460184 +2022,1,2,1,New South Wales,152.382958,-28.905523 +2021,5,2,1,New South Wales,150.621181,-34.398701 +2020,8,26,1,New South Wales,150.89266,-33.991958 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2023,7,17,1,New South Wales,150.784888,-33.704792 +2020,10,12,1,New South Wales,149.96634,-36.680336 +2022,7,8,1,New South Wales,152.874367,-29.673289 +2021,8,10,1,New South Wales,152.014745,-32.722588 +2020,11,1,1,New South Wales,149.174291,-33.185386 +2020,10,20,1,New South Wales,152.879142,-31.297039 +2020,1,1,1,New South Wales,150.808591,-34.098321 +2023,10,10,1,New South Wales,153.427967,-28.626458 +2021,5,4,1,New South Wales,150.611766,-34.419623 +2024,2,18,1,New South Wales,150.861647,-29.609175 +2021,6,3,1,New South Wales,150.615846,-34.436444 +2021,6,10,1,New South Wales,150.626526,-34.386219 +2021,12,16,1,New South Wales,150.095163,-34.893436 +2022,8,24,1,New South Wales,150.808987,-34.208693 +2021,12,3,1,New South Wales,153.310281,-28.823968 +2020,10,21,1,New South Wales,149.913134,-36.588285 +2023,1,11,1,New South Wales,152.072106,-32.710502 +2020,1,18,1,New South Wales,152.772924,-29.751646 +2022,4,19,1,New South Wales,153.103393,-29.486402 +2021,6,11,1,New South Wales,150.61346,-34.431953 +2021,4,26,1,New South Wales,150.515399,-34.440619 +2021,7,7,1,New South Wales,150.521665,-34.465375 +2020,9,30,1,New South Wales,153.314983,-28.949201 +2022,11,24,1,New South Wales,152.794945,-30.901933 +2021,4,15,1,New South Wales,150.633487,-34.392358 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2020,12,31,1,New South Wales,153.314983,-28.949201 +2021,7,19,1,New South Wales,150.522722,-34.464964 +2023,9,2,1,New South Wales,153.293128,-28.864606 +2022,6,16,1,New South Wales,153.104208,-29.479131 +2020,12,31,1,New South Wales,153.314983,-28.949201 +2020,10,11,1,New South Wales,153.158437,-29.38273 +2021,3,27,1,New South Wales,150.635393,-34.488401 +2023,5,7,1,New South Wales,153.291336,-28.711453 +2021,3,30,1,New South Wales,152.926392,-31.455623 +2023,11,17,1,New South Wales,152.064604,-32.709004 +2021,3,9,1,New South Wales,150.603993,-34.440368 +2023,10,14,1,New South Wales,152.401531,-31.92589 +2023,9,10,1,New South Wales,150.988756,-34.027187 +2024,2,7,1,New South Wales,152.908565,-31.454628 +2021,11,25,1,New South Wales,150.913678,-34.068368 +2021,4,28,1,New South Wales,150.624591,-34.388129 +2023,2,1,1,New South Wales,150.848102,-34.069903 +2021,4,28,1,New South Wales,150.636292,-34.421749 +2021,12,4,1,New South Wales,152.926635,-31.444425 +2020,4,20,1,New South Wales,152.837037,-31.528203 +2023,2,22,1,New South Wales,152.577303,-30.161511 +2021,7,4,1,New South Wales,150.646693,-34.395751 +2020,10,6,1,New South Wales,153.048473,-30.450237 +2021,5,3,1,New South Wales,150.606707,-34.456226 +2021,1,12,1,New South Wales,153.10379,-29.485594 +2020,6,6,1,New South Wales,150.068806,-33.785313 +2020,11,5,1,New South Wales,152.304704,-31.942993 +2023,7,15,1,New South Wales,153.479122,-28.249424 +2023,7,9,1,New South Wales,153.205909,-28.745332 +2021,6,22,1,New South Wales,150.514541,-34.443874 +2021,10,6,1,New South Wales,150.977173,-34.105455 +2023,10,29,1,New South Wales,152.194095,-32.224416 +2020,1,9,1,New South Wales,153.336688,-28.868027 +2023,3,16,1,New South Wales,153.375992,-28.951021 +2021,7,28,1,New South Wales,150.625384,-34.385836 +2022,9,19,1,New South Wales,153.104133,-29.483652 +2022,8,23,1,New South Wales,152.925648,-31.452901 +2020,1,4,1,New South Wales,153.104163,-29.489525 +2020,9,20,1,New South Wales,153.565173,-28.386314 +2021,4,22,1,New South Wales,150.637393,-34.420535 +2021,4,28,1,New South Wales,150.615543,-34.435627 +2020,7,15,1,New South Wales,153.092347,-29.488387 +2023,10,11,1,New South Wales,152.972092,-30.428423 +2024,9,18,1,New South Wales,150.705301,-34.255293 +2020,12,1,1,New South Wales,152.907276,-31.236216 +2023,8,11,1,New South Wales,150.827792,-34.156389 +2022,11,24,1,New South Wales,150.808987,-34.208693 +2021,6,9,1,New South Wales,150.518813,-34.447359 +2021,6,7,1,New South Wales,150.62593,-34.388858 +2021,8,13,1,New South Wales,152.828116,-31.503341 +2021,2,3,1,New South Wales,153.103859,-29.485669 +2020,9,4,1,New South Wales,153.506151,-28.595952 +2020,9,15,1,New South Wales,153.002944,-29.186068 +2021,3,11,1,New South Wales,152.030408,-32.73295 +2023,7,23,1,New South Wales,153.310656,-28.813946 +2021,4,14,1,New South Wales,150.636017,-34.485564 +2022,2,26,1,New South Wales,153.393838,-28.959097 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2022,1,12,1,New South Wales,153.29311,-28.864641 +2020,4,3,1,New South Wales,152.806267,-31.12493 +2020,8,15,1,New South Wales,153.562111,-28.385548 +2021,8,31,1,New South Wales,150.610852,-34.452484 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2020,9,5,1,New South Wales,150.790454,-34.196939 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2021,8,9,1,New South Wales,150.631689,-34.388249 +2021,5,3,1,New South Wales,150.605136,-34.426255 +2021,9,25,1,New South Wales,152.875873,-29.655259 +2021,7,2,1,New South Wales,150.513127,-34.447163 +2024,8,22,1,New South Wales,152.803577,-31.676443 +2021,5,25,1,New South Wales,150.59463,-34.427635 +2023,2,16,1,New South Wales,153.168833,-28.646094 +2021,4,29,1,New South Wales,150.610333,-34.419135 +2021,7,6,1,New South Wales,150.6317,-34.388222 +2022,9,27,1,New South Wales,152.784393,-31.630403 +2020,9,16,1,New South Wales,152.820736,-31.200466 +2023,1,12,1,New South Wales,152.79443,-31.643823 +2022,7,12,1,New South Wales,153.108183,-29.49025 +2022,11,25,1,New South Wales,152.770676,-30.853416 +2020,1,,1,New South Wales,153.550649,-28.299886 +2024,1,19,1,New South Wales,152.819273,-31.130318 +2022,10,4,1,New South Wales,153.090869,-30.36316 +2021,1,14,1,New South Wales,150.842335,-34.068546 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2021,12,17,1,New South Wales,153.437014,-28.991215 +2020,4,28,1,New South Wales,151.635618,-32.619858 +2022,6,21,1,New South Wales,152.926364,-31.452438 +2022,10,3,1,New South Wales,153.00184,-30.408334 +2020,12,9,1,New South Wales,149.960499,-36.288011 +2024,4,23,1,New South Wales,150.984067,-34.093875 +2021,6,23,1,New South Wales,150.628493,-34.42057 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2021,8,10,1,New South Wales,150.521887,-34.465966 +2021,3,14,1,New South Wales,150.634921,-34.487743 +2020,10,26,1,New South Wales,153.364275,-28.834226 +2020,1,12,1,New South Wales,153.221268,-28.826448 +2023,5,30,1,New South Wales,152.190211,-31.595466 +2021,7,4,1,New South Wales,150.643754,-34.394666 +2021,6,27,1,New South Wales,150.604325,-34.432937 +2023,12,27,1,New South Wales,152.371368,-31.918776 +2021,4,8,1,New South Wales,151.110282,-29.762752 +2023,6,24,1,New South Wales,153.394458,-28.960427 +2021,9,17,1,New South Wales,150.789703,-34.163407 +2023,10,20,1,New South Wales,151.682329,-32.516009 +2024,1,25,1,New South Wales,153.099305,-29.490642 +2023,5,28,1,New South Wales,153.1442,-29.462823 +2020,6,9,1,New South Wales,153.595655,-28.715282 +2021,6,21,1,New South Wales,150.622939,-34.383851 +2021,5,20,1,New South Wales,150.521622,-34.465699 +2023,11,15,1,New South Wales,152.92898,-31.45018 +2023,7,19,1,New South Wales,153.038068,-28.600327 +2023,2,22,1,New South Wales,153.071416,-30.886911 +2021,8,1,1,New South Wales,150.517848,-34.447971 +2022,8,31,1,New South Wales,149.547784,-33.623333 +2021,8,15,1,New South Wales,150.604367,-34.431477 +2021,3,4,1,New South Wales,150.614548,-34.4354 +2021,6,3,1,New South Wales,150.630078,-34.421061 +2021,3,7,1,New South Wales,150.603501,-34.435517 +2023,10,28,1,New South Wales,150.785601,-33.716998 +2021,3,22,1,New South Wales,150.525483,-34.459926 +2023,7,31,1,New South Wales,152.612585,-29.79097 +2020,10,31,1,New South Wales,149.968131,-36.578885 +2021,5,18,1,New South Wales,150.632386,-34.394384 +2020,10,15,1,New South Wales,149.919967,-36.589766 +2022,12,16,1,New South Wales,151.228889,-29.970178 +2021,5,11,1,New South Wales,150.627792,-34.389922 +2020,10,23,1,New South Wales,149.919967,-36.589766 +2024,6,13,1,New South Wales,151.244903,-33.127366 +2023,9,24,1,New South Wales,153.629579,-28.637434 +2021,6,12,1,New South Wales,150.644056,-34.396313 +2022,10,26,1,New South Wales,152.926619,-31.450848 +2021,5,9,1,New South Wales,153.561808,-28.387194 +2024,1,14,1,New South Wales,150.784436,-33.716273 +2021,5,18,1,New South Wales,150.613537,-34.431945 +2021,11,7,1,New South Wales,153.555987,-28.398821 +2023,7,31,1,New South Wales,153.017501,-28.430168 +2021,5,18,1,New South Wales,150.600316,-34.428567 +2021,6,22,1,New South Wales,150.62798,-34.420993 +2020,10,18,1,New South Wales,152.916255,-31.485819 +2020,10,19,1,New South Wales,153.628829,-28.637869 +2020,11,2,1,New South Wales,149.934245,-36.578531 +2021,5,4,1,New South Wales,150.627138,-34.389576 +2021,5,18,1,New South Wales,150.65614,-34.458617 +2021,6,13,1,New South Wales,150.615175,-34.431346 +2021,6,29,1,New South Wales,150.606065,-34.432593 +2021,5,2,1,New South Wales,150.633557,-34.41846 +2020,12,8,1,New South Wales,149.972032,-36.288695 +2021,11,8,1,New South Wales,152.065356,-32.71047 +2021,4,22,1,New South Wales,150.617207,-34.433757 +2021,2,1,1,New South Wales,153.400236,-28.619982 +2021,4,20,1,New South Wales,150.627223,-34.385818 +2022,5,25,1,New South Wales,153.470424,-28.260385 +2021,3,6,1,New South Wales,150.518383,-34.446449 +2022,11,11,1,New South Wales,152.1056,-32.7278 +2022,11,30,1,New South Wales,153.314983,-28.949201 +2022,12,10,1,New South Wales,153.527273,-28.664221 +2021,5,24,1,New South Wales,150.595745,-34.428586 +2021,5,24,1,New South Wales,152.924552,-31.463506 +2022,9,30,1,New South Wales,153.314983,-28.949201 +2021,12,14,1,New South Wales,152.925607,-31.452436 +2021,5,21,1,New South Wales,150.517196,-34.451969 +2020,11,30,1,New South Wales,153.314983,-28.949201 +2020,10,12,1,New South Wales,149.96634,-36.680336 +2020,12,10,1,New South Wales,152.898027,-29.633056 +2023,3,14,1,New South Wales,149.950373,-36.572524 +2020,9,26,1,New South Wales,153.44948,-28.840874 +2023,11,8,1,New South Wales,153.108135,-29.490255 +2021,6,20,1,New South Wales,150.603908,-34.439555 +2021,10,1,1,New South Wales,153.108108,-29.490287 +2021,7,1,1,New South Wales,150.627412,-34.390672 +2021,6,21,1,New South Wales,150.639499,-34.392835 +2021,6,2,1,New South Wales,150.519604,-34.447096 +2021,10,9,1,New South Wales,153.561622,-28.367915 +2022,6,15,1,New South Wales,153.109406,-29.490525 +2021,5,12,1,New South Wales,150.627787,-34.397396 +2021,5,9,1,New South Wales,153.401775,-28.260334 +2021,6,8,1,New South Wales,150.603251,-34.437009 +2021,8,18,1,New South Wales,153.395258,-29.014938 +2023,10,27,1,New South Wales,152.697671,-31.732206 +2020,11,16,1,New South Wales,153.316981,-28.949626 +2023,12,12,1,New South Wales,152.897185,-31.474775 +2020,10,12,1,New South Wales,152.404167,-31.945815 +2021,6,30,1,New South Wales,150.866027,-34.060984 +2021,1,7,1,New South Wales,153.102449,-29.487831 +2021,5,10,1,New South Wales,150.520412,-34.434861 +2021,3,28,1,New South Wales,152.177441,-30.099383 +2022,12,8,1,New South Wales,150.738044,-34.304895 +2020,9,12,1,New South Wales,153.585513,-28.68591 +2022,5,17,1,New South Wales,150.860748,-34.076776 +2022,8,19,1,New South Wales,150.808987,-34.208693 +2020,11,20,1,New South Wales,151.630683,-31.901432 +2021,6,28,1,New South Wales,151.003682,-34.006923 +2021,4,15,1,New South Wales,150.633497,-34.392377 +2020,11,25,1,New South Wales,153.279241,-28.839565 +2021,4,27,1,New South Wales,150.637523,-34.488515 +2023,1,6,1,New South Wales,152.064802,-32.6999 +2021,5,13,1,New South Wales,150.519618,-34.454723 +2021,7,15,1,New South Wales,153.103688,-29.485501 +2020,8,20,1,New South Wales,152.91109,-31.435008 +2020,11,26,1,New South Wales,149.917922,-36.474664 +2023,4,30,1,New South Wales,150.808212,-34.098106 +2023,7,13,1,New South Wales,150.786963,-33.708358 +2021,5,5,1,New South Wales,150.605505,-34.437369 +2021,1,18,1,New South Wales,153.103849,-29.484936 +2021,6,8,1,New South Wales,150.629777,-34.420559 +2023,6,1,1,New South Wales,152.921058,-31.481592 +2023,8,5,1,New South Wales,153.099804,-29.491609 +2021,5,3,1,New South Wales,150.623181,-34.397604 +2020,10,31,1,New South Wales,153.314983,-28.949201 +2022,6,11,1,New South Wales,153.508305,-28.797271 +2021,5,17,1,New South Wales,150.530979,-34.471009 +2023,5,30,1,New South Wales,152.191009,-31.594578 +2020,10,7,1,New South Wales,150.06885,-33.785296 +2021,4,21,1,New South Wales,153.307078,-28.650599 +2021,4,25,1,New South Wales,150.614276,-34.429679 +2022,8,5,1,New South Wales,150.820358,-34.10038 +2024,1,1,1,New South Wales,152.923871,-31.465297 +2023,11,2,1,New South Wales,152.19096,-32.219628 +2021,4,22,1,New South Wales,150.009996,-33.767431 +2021,3,8,1,New South Wales,153.420863,-28.568742 +2021,9,9,1,New South Wales,153.07464,-30.36749 +2023,12,10,1,New South Wales,151.772093,-31.883968 +2020,9,14,1,New South Wales,153.559426,-28.651703 +2022,5,31,1,New South Wales,153.110495,-29.490124 +2020,10,19,1,New South Wales,149.930096,-36.638123 +2020,6,16,1,New South Wales,152.867804,-29.667285 +2024,4,14,1,New South Wales,152.961703,-31.252398 +2022,11,19,1,New South Wales,152.794945,-30.901933 +2024,5,23,1,New South Wales,149.852008,-32.63437 +2021,4,24,1,New South Wales,150.529134,-34.470088 +2024,1,11,1,New South Wales,153.109401,-29.490493 +2021,5,27,1,New South Wales,150.630677,-34.420667 +2024,3,4,1,New South Wales,150.784488,-33.71302 +2021,10,11,1,New South Wales,150.849318,-34.052728 +2023,11,13,1,New South Wales,152.414319,-31.934544 +2021,9,13,1,New South Wales,150.808987,-34.208693 +2021,12,12,1,New South Wales,152.034828,-32.765376 +2021,5,10,1,New South Wales,150.609058,-34.420733 +2021,5,3,1,New South Wales,150.626775,-34.389352 +2021,10,7,1,New South Wales,150.808987,-34.208693 +2022,,,1,New South Wales,150.627594,-34.537087 +2020,11,16,1,New South Wales,153.395241,-28.959924 +2021,9,9,1,New South Wales,153.589902,-28.688154 +2021,5,30,1,New South Wales,150.603012,-34.424428 +2021,3,31,1,New South Wales,150.525419,-34.45988 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2021,10,18,1,New South Wales,152.812651,-29.797114 +2021,5,5,1,New South Wales,150.638615,-34.490726 +2023,12,25,1,New South Wales,150.786591,-33.704802 +2022,11,26,1,New South Wales,149.845921,-29.465325 +2021,5,31,1,New South Wales,150.606844,-34.436196 +2022,1,8,1,New South Wales,150.808987,-34.208693 +2022,12,7,1,New South Wales,153.47974,-28.706371 +2020,1,15,1,New South Wales,152.909378,-31.43711 +2022,6,4,1,New South Wales,153.403014,-28.260467 +2023,10,21,1,New South Wales,152.913704,-31.467283 +2021,5,13,1,New South Wales,150.659716,-33.527054 +2022,2,6,1,New South Wales,152.063097,-32.705926 +2022,4,11,1,New South Wales,153.55781,-28.393779 +2020,9,5,1,New South Wales,150.102382,-33.778588 +2021,9,25,1,New South Wales,152.075379,-32.724958 +2023,8,30,1,New South Wales,153.394104,-28.959014 +2023,6,26,1,New South Wales,152.964525,-30.47493 +2023,11,18,1,New South Wales,150.834591,-34.07365 +2020,3,13,1,New South Wales,152.913629,-31.466409 +2021,9,8,1,New South Wales,152.791122,-30.117962 +2021,6,28,1,New South Wales,150.522904,-34.466158 +2023,6,11,1,New South Wales,152.905893,-31.436446 +2020,10,22,1,New South Wales,152.921248,-31.479905 +2022,10,31,1,New South Wales,152.915487,-31.446136 +2021,3,4,1,New South Wales,150.516585,-34.446142 +2021,7,8,1,New South Wales,150.520773,-34.465357 +2021,8,10,1,New South Wales,153.395778,-28.959391 +2024,1,21,1,New South Wales,152.336801,-32.303046 +2023,10,12,1,New South Wales,150.785259,-33.717016 +2022,6,20,1,New South Wales,153.101032,-29.490035 +2021,6,15,1,New South Wales,150.611873,-34.431516 +2024,3,26,1,New South Wales,152.786604,-31.021143 +2023,8,12,1,New South Wales,152.918039,-31.457538 +2022,3,9,1,New South Wales,153.55628,-28.408427 +2021,5,28,1,New South Wales,150.630666,-34.420649 +2021,4,27,1,New South Wales,150.63563,-34.41822 +2022,4,3,1,New South Wales,150.985519,-34.094528 +2022,12,2,1,New South Wales,152.794945,-30.901933 +2023,3,14,1,New South Wales,153.095217,-29.483474 +2024,1,9,1,New South Wales,152.913412,-31.451537 +2022,1,5,1,New South Wales,150.01907,-34.94176 +2023,12,1,1,New South Wales,150.808072,-34.098641 +2020,11,3,1,New South Wales,149.958519,-36.587122 +2021,5,2,1,New South Wales,150.607041,-34.455222 +2021,6,1,1,New South Wales,152.867615,-31.306659 +2021,7,10,1,New South Wales,150.513171,-34.447154 +2021,4,9,1,New South Wales,150.633849,-34.489471 +2020,5,,1,New South Wales,151.991496,-32.720736 +2023,3,10,1,New South Wales,152.927533,-31.446418 +2021,6,8,1,New South Wales,152.904992,-31.439135 +2022,11,21,1,New South Wales,152.78933,-30.918792 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2020,12,4,1,New South Wales,152.928154,-31.447175 +2022,8,8,1,New South Wales,150.869012,-34.073634 +2023,3,17,1,New South Wales,153.103779,-29.48559 +2021,8,31,1,New South Wales,153.517868,-28.603257 +2021,5,27,1,New South Wales,150.630677,-34.420649 +2020,2,13,1,New South Wales,153.108194,-29.490163 +2024,7,27,1,New South Wales,152.090778,-32.67789 +2021,6,18,1,New South Wales,150.603318,-34.426679 +2020,1,11,1,New South Wales,153.093981,-29.493053 +2021,6,11,1,New South Wales,150.6441,-34.396305 +2020,11,6,1,New South Wales,150.007338,-36.56122 +2021,4,23,1,New South Wales,150.60921,-34.418815 +2021,6,22,1,New South Wales,152.1748,-32.66227 +2021,3,24,1,New South Wales,150.520968,-34.453948 +2022,7,9,1,New South Wales,150.976466,-34.107382 +2020,1,28,1,New South Wales,152.10379,-32.759253 +2023,11,2,1,New South Wales,152.912439,-31.476726 +2020,10,27,1,New South Wales,150.52266,-34.52396 +2022,10,15,1,New South Wales,150.619592,-31.520218 +2020,7,28,1,New South Wales,152.896425,-29.629872 +2022,12,31,1,New South Wales,153.103999,-29.485155 +2020,11,3,1,New South Wales,149.958519,-36.587122 +2023,6,13,1,New South Wales,153.307876,-28.849671 +2021,7,4,1,New South Wales,150.627366,-34.421189 +2021,8,29,1,New South Wales,150.516494,-34.438576 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2022,5,13,1,New South Wales,153.104954,-29.476708 +2023,9,16,1,New South Wales,150.784596,-33.713335 +2021,9,25,1,New South Wales,153.567264,-28.386326 +2021,8,3,1,New South Wales,150.518757,-34.447394 +2021,2,21,1,New South Wales,153.217711,-28.830147 +2021,6,16,1,New South Wales,150.622831,-34.383821 +2023,8,17,1,New South Wales,152.879459,-31.450539 +2020,5,4,1,New South Wales,150.065,-34.90695 +2021,8,7,1,New South Wales,150.514542,-34.443838 +2020,10,14,1,New South Wales,150.070099,-33.781278 +2022,10,9,1,New South Wales,152.064748,-32.700276 +2022,,,1,New South Wales,150.556772,-34.474 +2023,10,24,1,New South Wales,152.408778,-31.930647 +2023,5,24,1,New South Wales,151.790311,-32.653442 +2021,5,19,1,New South Wales,150.530379,-34.471439 +2021,5,25,1,New South Wales,150.59467,-34.427383 +2022,7,15,1,New South Wales,150.835088,-34.069614 +2021,5,19,1,New South Wales,150.521579,-34.465698 +2021,5,4,1,New South Wales,150.615786,-34.436263 +2020,11,16,1,New South Wales,153.118622,-28.738728 +2021,4,21,1,New South Wales,150.608349,-34.454752 +2021,5,3,1,New South Wales,150.520293,-34.453979 +2020,11,6,1,New South Wales,149.994744,-36.560944 +2023,10,19,1,New South Wales,152.542519,-32.059455 +2020,11,7,1,New South Wales,153.103913,-29.48545 +2021,5,1,1,New South Wales,150.618214,-34.429684 +2020,10,26,1,New South Wales,153.364275,-28.834226 +2022,9,18,1,New South Wales,153.110104,-29.488284 +2020,11,16,1,New South Wales,153.316981,-28.949626 +2021,5,24,1,New South Wales,150.639241,-34.392722 +2021,8,22,1,New South Wales,153.334105,-28.818704 +2021,5,27,1,New South Wales,150.604187,-34.437018 +2023,9,24,1,New South Wales,151.008201,-34.04571 +2021,4,30,1,New South Wales,150.63628,-34.421794 +2021,4,3,1,New South Wales,150.664271,-34.458611 +2020,10,15,1,New South Wales,149.919967,-36.589766 +2021,4,26,1,New South Wales,150.629298,-34.388572 +2024,1,31,1,New South Wales,150.784369,-33.713006 +2022,1,21,1,New South Wales,152.115731,-32.764638 +2022,4,20,1,New South Wales,153.402888,-28.260082 +2021,7,27,1,New South Wales,150.977887,-34.086874 +2021,4,7,1,New South Wales,150.634263,-34.488695 +2023,9,11,1,New South Wales,153.50578,-28.554883 +2021,12,9,1,New South Wales,152.814117,-31.432936 +2021,9,28,1,New South Wales,153.535133,-28.680984 +2021,4,3,1,New South Wales,150.534178,-34.479936 +2020,11,27,1,New South Wales,153.091714,-29.487995 +2021,4,16,1,New South Wales,150.532853,-34.475744 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2021,7,2,1,New South Wales,150.641942,-34.39684 +2022,5,6,1,New South Wales,152.139945,-32.730489 +2023,11,3,1,New South Wales,150.786582,-33.711056 +2023,9,25,1,New South Wales,153.562417,-28.390018 +2020,10,23,1,New South Wales,149.923643,-36.618562 +2020,1,3,1,New South Wales,153.03637,-30.44132 +2021,1,23,1,New South Wales,153.495958,-28.254464 +2021,6,13,1,New South Wales,150.626554,-34.385616 +2021,10,11,1,New South Wales,153.277434,-28.679647 +2021,7,1,1,New South Wales,150.596576,-34.411373 +2021,7,8,1,New South Wales,152.14217,-32.72132 +2020,7,11,1,New South Wales,153.357539,-28.974364 +2020,11,27,1,New South Wales,152.905969,-31.447997 +2020,8,29,1,New South Wales,150.808987,-34.208693 +2024,2,6,1,New South Wales,150.808653,-34.112959 +2021,5,8,1,New South Wales,150.521394,-34.466434 +2022,3,18,1,New South Wales,152.021341,-32.767294 +2023,12,13,1,New South Wales,153.108156,-29.490287 +2021,7,8,1,New South Wales,150.51308,-34.447288 +2021,6,30,1,New South Wales,150.644213,-34.394206 +2023,10,10,1,New South Wales,152.914421,-31.451443 +2021,5,12,1,New South Wales,150.604613,-34.438875 +2021,4,22,1,New South Wales,150.633025,-34.392927 +2022,11,19,1,New South Wales,152.794854,-30.893434 +2021,5,26,1,New South Wales,150.638905,-34.491634 +2021,6,20,1,New South Wales,150.623218,-34.383991 +2023,10,9,1,New South Wales,153.108189,-29.490283 +2021,8,24,1,New South Wales,153.103945,-29.478048 +2021,,,1,New South Wales,149.832918,-32.398918 +2022,10,5,1,New South Wales,151.545956,-32.940485 +2021,3,4,1,New South Wales,150.517486,-34.445854 +2022,11,25,1,New South Wales,152.924671,-31.436646 +2020,8,17,1,New South Wales,152.710128,-31.352268 +2021,5,20,1,New South Wales,150.631593,-34.387796 +2023,12,2,1,New South Wales,150.786632,-33.706054 +2022,9,19,1,New South Wales,153.103452,-29.48566 +2020,2,27,1,New South Wales,153.332297,-28.810812 +2022,3,24,1,New South Wales,152.902616,-31.47263 +2020,12,19,1,New South Wales,151.255203,-33.716411 +2021,12,1,1,New South Wales,153.108156,-29.490623 +2023,8,6,1,New South Wales,149.467872,-33.675392 +2022,9,27,1,New South Wales,150.804938,-34.112754 +2021,4,20,1,New South Wales,150.630284,-34.394496 +2024,3,1,1,New South Wales,150.989977,-34.028088 +2022,6,28,1,New South Wales,153.424076,-28.661852 +2024,1,18,1,New South Wales,152.073064,-32.724694 +2021,4,2,1,New South Wales,150.523143,-34.466181 +2021,5,14,1,New South Wales,150.629878,-34.395372 +2022,8,1,1,New South Wales,153.104144,-29.477516 +2021,3,15,1,New South Wales,150.517444,-34.445799 +2020,10,10,1,New South Wales,149.941793,-36.651646 +2023,7,22,1,New South Wales,153.10416,-29.483778 +2020,4,11,1,New South Wales,153.315805,-28.646412 +2021,5,13,1,New South Wales,150.640254,-34.492859 +2021,4,22,1,New South Wales,150.614429,-34.430015 +2021,5,20,1,New South Wales,150.615787,-34.430853 +2020,4,23,1,New South Wales,152.622044,-30.645072 +2021,6,19,1,New South Wales,150.642792,-34.394053 +2020,10,28,1,New South Wales,149.999247,-36.565645 +2023,5,29,1,New South Wales,153.299609,-28.824422 +2023,9,16,1,New South Wales,150.985583,-34.091121 +2023,4,24,1,New South Wales,149.326049,-36.334367 +2022,1,9,1,New South Wales,153.158339,-28.864547 +2023,5,5,1,New South Wales,152.922637,-31.458097 +2021,8,31,1,New South Wales,153.314983,-28.949201 +2020,10,30,1,New South Wales,149.934245,-36.578531 +2021,8,1,1,New South Wales,150.64989,-34.402376 +2021,4,30,1,New South Wales,153.314983,-28.949201 +2021,6,18,1,New South Wales,150.618191,-34.435092 +2021,5,3,1,New South Wales,150.606632,-34.457712 +2023,1,3,1,New South Wales,152.811713,-29.515009 +2021,10,26,1,New South Wales,150.765222,-34.183991 +2023,9,21,1,New South Wales,150.852539,-34.082897 +2022,3,10,1,New South Wales,153.103752,-29.485566 +2022,10,4,1,New South Wales,153.561887,-28.389261 +2022,6,18,1,New South Wales,151.60952,-32.54243 +2021,8,22,1,New South Wales,150.519883,-34.446479 +2023,6,10,1,New South Wales,152.010489,-32.726559 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2021,10,7,1,New South Wales,152.7309,-30.135857 +2022,8,11,1,New South Wales,153.336079,-28.813325 +2023,9,26,1,New South Wales,150.724478,-34.313685 +2020,11,7,1,New South Wales,150.021287,-36.554124 +2022,8,4,1,New South Wales,152.872707,-31.502322 +2021,9,9,1,New South Wales,153.27897,-28.81654 +2021,5,13,1,New South Wales,150.637343,-34.423843 +2022,1,13,1,New South Wales,152.063839,-32.706693 +2021,6,8,1,New South Wales,150.531276,-34.457961 +2020,8,31,1,New South Wales,153.522731,-28.707346 +2021,5,26,1,New South Wales,150.639088,-34.491736 +2023,3,11,1,New South Wales,153.302999,-28.820484 +2021,4,24,1,New South Wales,150.661664,-34.458426 +2021,4,30,1,New South Wales,150.636302,-34.421794 +2022,10,18,1,New South Wales,152.906092,-31.437879 +2022,8,30,1,New South Wales,152.085863,-32.728022 +2021,6,20,1,New South Wales,150.519943,-34.452557 +2020,1,16,1,New South Wales,152.436872,-31.941586 +2022,10,28,1,New South Wales,153.393988,-28.959236 +2020,10,18,1,New South Wales,149.947183,-36.617465 +2021,7,5,1,New South Wales,150.517244,-34.441179 +2021,4,30,1,New South Wales,150.616443,-34.436122 +2021,6,22,1,New South Wales,150.513794,-34.446338 +2022,8,18,1,New South Wales,153.576852,-28.362491 +2021,8,23,1,New South Wales,153.093531,-29.492883 +2024,9,12,1,New South Wales,146.395649,-34.628611 +2023,6,8,1,New South Wales,150.8107,-34.11312 +2021,8,14,1,New South Wales,150.603304,-34.431366 +2021,4,28,1,New South Wales,152.106037,-32.729432 +2020,2,6,1,New South Wales,149.382156,-36.129686 +2022,12,31,1,New South Wales,153.107953,-29.490156 +2021,5,8,1,New South Wales,152.100856,-32.732973 +2021,5,23,1,New South Wales,150.521565,-34.465806 +2021,2,27,1,New South Wales,150.515751,-34.458864 +2021,6,23,1,New South Wales,150.513715,-34.446426 +2020,,,1,New South Wales,152.8249,-31.28282 +2023,11,27,1,New South Wales,152.352738,-31.9267 +2020,10,15,1,New South Wales,149.919967,-36.589766 +2021,3,28,1,New South Wales,150.607117,-34.422417 +2021,6,2,1,New South Wales,150.625477,-34.389877 +2020,10,15,1,New South Wales,149.919967,-36.589766 +2021,5,14,1,New South Wales,153.101741,-29.489806 +2020,10,20,1,New South Wales,149.919967,-36.589766 +2021,5,21,1,New South Wales,150.607636,-34.432849 +2020,10,17,1,New South Wales,149.919967,-36.589766 +2020,10,21,1,New South Wales,149.919967,-36.589766 +2021,5,4,1,New South Wales,150.611501,-34.419753 +2021,3,17,1,New South Wales,153.593048,-28.655745 +2023,7,31,1,New South Wales,152.104618,-32.721558 +2021,6,12,1,New South Wales,150.626755,-34.385421 +2021,5,9,1,New South Wales,150.615113,-34.435429 +2023,6,12,1,New South Wales,153.629415,-28.637398 +2021,4,28,1,New South Wales,150.000519,-36.571216 +2022,12,2,1,New South Wales,146.535346,-34.745129 +2023,10,30,1,New South Wales,153.096499,-29.491805 +2021,4,20,1,New South Wales,150.637375,-34.422338 +2023,10,20,1,New South Wales,150.52787,-34.51425 +2021,7,30,1,New South Wales,150.837261,-34.079078 +2021,8,1,1,New South Wales,152.915701,-31.481309 +2021,11,27,1,New South Wales,153.302093,-28.819097 +2020,9,28,1,New South Wales,153.047023,-30.919496 +2021,4,22,1,New South Wales,150.637971,-34.4228 +2022,6,4,1,New South Wales,153.090845,-28.598896 +2021,3,31,1,New South Wales,150.603824,-34.440194 +2023,10,6,1,New South Wales,151.030275,-34.034446 +2020,11,,1,New South Wales,151.728468,-32.246363 +2021,4,24,1,New South Wales,150.634403,-34.42009 +2022,12,6,1,New South Wales,153.419362,-29.018653 +2021,4,29,1,New South Wales,150.636324,-34.421795 +2021,5,5,1,New South Wales,150.638584,-34.490681 +2021,4,27,1,New South Wales,151.896698,-30.039536 +2021,6,1,1,New South Wales,150.625973,-34.390392 +2020,10,11,1,New South Wales,152.064607,-32.70652 +2021,11,5,1,New South Wales,152.920663,-31.456103 +2023,2,7,1,New South Wales,152.893027,-31.448131 +2020,1,4,1,New South Wales,153.401838,-28.256099 +2021,4,22,1,New South Wales,150.615359,-34.430998 +2020,10,19,1,New South Wales,153.303174,-28.827996 +2021,5,27,1,New South Wales,150.599028,-34.426027 +2022,12,23,1,New South Wales,152.07148,-32.709625 +2022,7,6,1,New South Wales,153.110179,-29.490269 +2021,2,7,1,New South Wales,153.377894,-28.636215 +2023,9,18,1,New South Wales,152.880284,-31.521568 +2020,9,28,1,New South Wales,150.514597,-34.520509 +2023,6,7,1,New South Wales,150.883438,-34.067856 +2021,5,1,1,New South Wales,150.610335,-34.420208 +2020,9,26,1,New South Wales,152.898308,-31.453545 +2020,10,9,1,New South Wales,149.959933,-36.657162 +2021,3,5,1,New South Wales,152.92434,-31.472856 +2022,11,30,1,New South Wales,152.798233,-31.636947 +2020,2,1,1,New South Wales,152.647138,-30.539675 +2022,5,1,1,New South Wales,152.915971,-31.444798 +2021,5,9,1,New South Wales,150.63925,-34.491766 +2022,8,10,1,New South Wales,150.525785,-34.444036 +2023,11,21,1,New South Wales,152.38368,-31.929159 +2021,9,11,1,New South Wales,150.527756,-34.467338 +2021,6,4,1,New South Wales,153.556289,-28.399887 +2023,1,31,1,New South Wales,152.105154,-32.736247 +2021,5,30,1,New South Wales,150.603841,-34.424363 +2021,4,20,1,New South Wales,150.632417,-34.392879 +2022,9,30,1,New South Wales,153.110527,-29.490231 +2021,5,3,1,New South Wales,150.633525,-34.418414 +2021,4,15,1,New South Wales,150.631261,-34.393406 +2023,10,1,1,New South Wales,152.948357,-30.387347 +2021,4,23,1,New South Wales,150.606354,-34.433905 +2021,4,14,1,New South Wales,150.636654,-34.41934 +2022,11,15,1,New South Wales,151.646678,-30.480371 +2022,12,20,1,New South Wales,151.76358,-32.59295 +2020,6,30,1,New South Wales,153.393819,-28.855355 +2022,9,16,1,New South Wales,152.07151,-32.707448 +2024,4,1,1,New South Wales,150.990745,-34.026228 +2021,6,3,1,New South Wales,150.637029,-34.488298 +2023,1,22,1,New South Wales,152.022199,-32.738114 +2020,8,12,1,New South Wales,153.564663,-28.327875 +2021,9,1,1,New South Wales,152.92973,-29.726786 +2024,3,10,1,New South Wales,150.784019,-33.715879 +2021,9,25,1,New South Wales,153.097043,-29.49311 +2023,3,14,1,New South Wales,152.072429,-32.717849 +2022,5,25,1,New South Wales,153.101692,-29.489148 +2020,10,16,1,New South Wales,149.919967,-36.589766 +2023,6,9,1,New South Wales,152.9232,-31.462672 +2020,3,22,1,New South Wales,150.4676,-34.489 +2023,9,21,1,New South Wales,150.785381,-33.707755 +2022,12,30,1,New South Wales,153.107969,-29.490128 +2023,9,2,1,New South Wales,152.92499,-31.468948 +2022,8,1,1,New South Wales,152.160872,-30.089162 +2021,8,29,1,New South Wales,152.336867,-31.201726 +2021,4,21,1,New South Wales,150.659834,-34.456894 +2021,6,17,1,New South Wales,150.522263,-34.451378 +2021,4,27,1,New South Wales,150.616284,-34.428681 +2023,7,21,1,New South Wales,150.990916,-33.980205 +2022,2,4,1,New South Wales,152.90294,-31.441314 +2021,5,7,1,New South Wales,153.084354,-30.343631 +2022,1,22,1,New South Wales,146.566731,-34.757086 +2020,1,21,1,New South Wales,152.174407,-32.662401 +2021,4,24,1,New South Wales,150.637821,-34.485689 +2020,9,22,1,New South Wales,153.09121,-29.487901 +2021,10,30,1,New South Wales,153.399429,-28.615874 +2021,6,5,1,New South Wales,150.938096,-33.941253 +2024,3,12,1,New South Wales,152.373266,-31.924838 +2023,3,2,1,New South Wales,153.104551,-29.489673 +2023,3,9,1,New South Wales,152.412806,-31.935425 +2021,6,3,1,New South Wales,153.137513,-30.223221 +2021,5,13,1,New South Wales,150.633197,-34.417713 +2024,7,5,1,New South Wales,149.935533,-32.66049 +2024,1,19,1,New South Wales,150.785289,-33.717139 +2021,7,22,1,New South Wales,150.623097,-34.38288 +2021,6,2,1,New South Wales,150.52147,-34.465705 +2021,5,23,1,New South Wales,150.630895,-34.420653 +2020,2,18,1,New South Wales,151.778714,-32.574764 +2022,4,17,1,New South Wales,152.919508,-31.472506 +2021,7,4,1,New South Wales,153.110898,-29.488391 +2021,4,19,1,New South Wales,150.610302,-34.41908 +2022,8,10,1,New South Wales,150.527169,-34.443437 +2021,6,30,1,New South Wales,150.627111,-34.390549 +2020,10,4,1,New South Wales,152.741654,-31.453522 +2020,1,4,1,New South Wales,151.715669,-32.669038 +2020,10,25,1,New South Wales,149.976368,-36.555504 +2021,1,19,1,New South Wales,152.904748,-31.439373 +2021,7,12,1,New South Wales,150.626468,-34.385578 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2023,10,28,1,New South Wales,151.254416,-33.433332 +2020,12,19,1,New South Wales,153.103929,-29.48954 +2020,6,7,1,New South Wales,153.563516,-28.385784 +2022,12,21,1,New South Wales,150.991284,-33.98064 +2022,2,13,1,New South Wales,153.091056,-28.521908 +2020,10,26,1,New South Wales,153.364275,-28.834226 +2020,11,8,1,New South Wales,150.021287,-36.554124 +2021,9,2,1,New South Wales,152.780133,-30.191675 +2020,11,16,1,New South Wales,153.316981,-28.949626 +2022,8,1,1,New South Wales,150.794966,-34.139856 +2021,6,29,1,New South Wales,150.513139,-34.447136 +2020,5,27,1,New South Wales,149.367311,-36.02428 +2020,9,24,1,New South Wales,152.898347,-31.443586 +2023,8,30,1,New South Wales,153.131509,-28.699898 +2021,6,9,1,New South Wales,150.613933,-34.432936 +2021,4,16,1,New South Wales,150.615235,-34.43114 +2021,8,21,1,New South Wales,149.347329,-36.157399 +2021,7,9,1,New South Wales,153.555926,-28.399127 +2021,6,5,1,New South Wales,150.519531,-34.456569 +2022,11,23,1,New South Wales,152.793287,-31.521788 +2023,10,19,1,New South Wales,152.079707,-32.727415 +2020,10,21,1,New South Wales,152.876708,-31.448022 +2023,11,24,1,New South Wales,152.067614,-32.711766 +2020,10,29,1,New South Wales,149.945227,-36.57753 +2021,10,18,1,New South Wales,152.812724,-29.796961 +2020,4,9,1,New South Wales,152.687956,-30.082688 +2021,11,11,1,New South Wales,152.864379,-30.405044 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2021,3,4,1,New South Wales,153.550619,-28.588689 +2020,10,30,1,New South Wales,149.976368,-36.555504 +2022,11,23,1,New South Wales,152.760068,-30.904021 +2020,12,8,1,New South Wales,153.093072,-29.488443 +2020,7,30,1,New South Wales,152.797696,-31.126063 +2020,4,1,1,New South Wales,152.797445,-31.125728 +2022,1,26,1,New South Wales,152.063736,-32.705606 +2024,6,3,1,New South Wales,152.69167,-30.723173 +2020,9,29,1,New South Wales,152.925273,-31.449592 +2021,6,14,1,New South Wales,153.11089,-29.488121 +2021,6,8,1,New South Wales,150.51797,-34.457088 +2021,6,5,1,New South Wales,150.518492,-34.447163 +2020,7,25,1,New South Wales,153.293421,-28.864595 +2021,4,26,1,New South Wales,150.635771,-34.418232 +2022,10,31,1,New South Wales,150.860668,-34.044722 +2023,11,17,1,New South Wales,153.376611,-28.241416 +2021,3,13,1,New South Wales,152.882181,-31.424857 +2024,6,5,1,New South Wales,152.919429,-31.445605 +2020,4,8,1,New South Wales,152.086083,-32.732412 +2021,4,18,1,New South Wales,150.617367,-34.435392 +2023,8,29,1,New South Wales,150.93812,-33.958689 +2021,5,28,1,New South Wales,150.522305,-34.465794 +2020,12,16,1,New South Wales,152.832136,-31.561828 +2020,2,10,1,New South Wales,151.09599,-33.72381 +2020,8,20,1,New South Wales,150.826181,-34.092443 +2021,7,23,1,New South Wales,150.51692,-34.442921 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2022,11,23,1,New South Wales,152.764422,-30.891124 +2020,9,24,1,New South Wales,153.102787,-29.487294 +2020,10,20,1,New South Wales,153.273941,-28.820088 +2020,10,28,1,New South Wales,153.335481,-28.869015 +2022,1,26,1,New South Wales,150.980384,-34.08439 +2024,7,29,1,New South Wales,152.897427,-31.475308 +2020,10,14,1,New South Wales,153.093573,-29.492897 +2023,7,14,1,New South Wales,150.785655,-33.703581 +2021,4,19,1,New South Wales,150.614134,-34.429703 +2023,11,28,1,New South Wales,150.784207,-33.716919 +2021,11,22,1,New South Wales,153.01411,-30.42508 +2021,5,8,1,New South Wales,150.637359,-34.423672 +2020,11,,1,New South Wales,150.189109,-34.539893 +2023,2,16,1,New South Wales,153.438206,-28.667288 +2021,3,11,1,New South Wales,151.512471,-30.655961 +2021,6,21,1,New South Wales,150.602552,-34.419992 +2023,9,7,1,New South Wales,153.07377,-30.885809 +2020,10,30,1,New South Wales,149.92265,-36.572354 +2023,12,9,1,New South Wales,153.109739,-29.490231 +2022,2,10,1,New South Wales,152.063678,-32.706306 +2021,6,15,1,New South Wales,150.611973,-34.431825 +2021,7,13,1,New South Wales,152.783061,-31.602715 +2020,4,20,1,New South Wales,152.824865,-31.43567 +2021,4,30,1,New South Wales,150.634481,-34.420028 +2020,11,18,1,New South Wales,153.191011,-28.900549 +2021,7,14,1,New South Wales,153.561913,-28.386071 +2021,11,13,1,New South Wales,152.913496,-31.460817 +2022,2,10,1,New South Wales,152.912336,-31.469226 +2020,9,20,1,New South Wales,151.778603,-32.738712 +2020,10,14,1,New South Wales,149.919967,-36.589766 +2023,10,6,1,New South Wales,153.110157,-29.490264 +2021,2,3,1,New South Wales,153.303492,-28.843049 +2021,9,6,1,New South Wales,150.520632,-34.465688 +2021,2,24,1,New South Wales,152.900022,-29.631247 +2023,10,11,1,New South Wales,149.552092,-33.491157 +2021,3,24,1,New South Wales,150.51425,-34.445995 +2021,5,27,1,New South Wales,150.618894,-34.439488 +2021,5,24,1,New South Wales,150.52161,-34.465744 +2022,11,18,1,New South Wales,152.912286,-31.458155 +2021,5,15,1,New South Wales,150.529765,-34.467883 +2023,12,12,1,New South Wales,150.786064,-33.709626 +2021,4,23,1,New South Wales,150.609279,-34.419078 +2021,8,30,1,New South Wales,152.780014,-30.198371 +2020,10,24,1,New South Wales,149.945227,-36.57753 +2021,3,17,1,New South Wales,153.293262,-28.864584 +2020,11,25,1,New South Wales,153.279705,-28.831306 +2021,9,18,1,New South Wales,152.867462,-31.46815 +2021,6,23,1,New South Wales,150.520385,-34.454162 +2021,12,1,1,New South Wales,153.109385,-29.490446 +2021,5,7,1,New South Wales,150.812345,-34.124693 +2021,6,20,1,New South Wales,150.518977,-34.460182 +2024,1,21,1,New South Wales,152.787639,-31.636635 +2021,7,6,1,New South Wales,150.642867,-34.395677 +2021,4,19,1,New South Wales,150.630873,-34.394039 +2020,4,2,1,New South Wales,152.717988,-31.783416 +2021,7,3,1,New South Wales,153.109433,-29.49046 +2021,6,2,1,New South Wales,150.604845,-34.427313 +2022,6,19,1,New South Wales,153.409145,-29.015392 +2020,8,21,1,New South Wales,152.834845,-30.19347 +2022,10,6,1,New South Wales,153.449375,-28.7269 +2023,2,22,1,New South Wales,153.004755,-28.932837 +2021,7,10,1,New South Wales,150.598935,-34.412925 +2024,1,2,1,New South Wales,151.971367,-32.174056 +2020,11,16,1,New South Wales,149.910112,-36.460589 +2021,7,8,1,New South Wales,150.641421,-34.395658 +2021,5,3,1,New South Wales,150.606954,-34.455221 +2023,8,4,1,New South Wales,152.913792,-31.468725 +2023,2,1,1,New South Wales,153.107936,-29.490479 +2021,5,11,1,New South Wales,150.639148,-34.491918 +2020,11,1,1,New South Wales,152.898359,-29.631657 +2020,1,26,1,New South Wales,152.915544,-31.481987 +2023,11,30,1,New South Wales,152.87309,-31.46641 +2022,6,3,1,New South Wales,152.081127,-32.736579 +2020,9,8,1,New South Wales,153.108199,-29.490213 +2021,6,4,1,New South Wales,150.615082,-34.435392 +2021,3,17,1,New South Wales,150.659256,-34.458127 +2020,11,25,1,New South Wales,153.283322,-28.823877 +2022,12,5,1,New South Wales,152.927345,-31.457871 +2021,5,24,1,New South Wales,150.631181,-34.387752 +2021,6,12,1,New South Wales,153.402665,-28.960617 +2020,10,19,1,New South Wales,149.901576,-36.585256 +2020,11,1,1,New South Wales,152.908775,-31.466938 +2021,6,7,1,New South Wales,150.607777,-34.430165 +2021,6,11,1,New South Wales,150.604314,-34.437904 +2020,1,27,1,New South Wales,153.09352,-29.488673 +2020,11,8,1,New South Wales,150.021287,-36.554124 +2023,8,25,1,New South Wales,150.791928,-34.20562 +2023,12,6,1,New South Wales,152.594683,-30.725099 +2021,8,3,1,New South Wales,150.62686,-34.390193 +2022,11,24,1,New South Wales,151.543587,-29.385608 +2020,10,12,1,New South Wales,149.952917,-36.681355 +2021,3,4,1,New South Wales,150.609924,-34.43274 +2022,11,21,1,New South Wales,152.794945,-30.901933 +2024,4,3,1,New South Wales,150.852167,-34.077004 +2023,6,19,1,New South Wales,151.562,-32.878278 +2021,8,27,1,New South Wales,153.220278,-28.871274 +2021,7,23,1,New South Wales,153.494107,-28.226932 +2021,11,27,1,New South Wales,153.224432,-28.886197 +2023,8,26,1,New South Wales,151.533698,-33.234392 +2023,1,9,1,New South Wales,150.1291,-32.94131 +2020,3,11,1,New South Wales,150.807186,-34.108852 +2021,10,15,1,New South Wales,152.081127,-32.736579 +2020,10,29,1,New South Wales,149.958519,-36.587122 +2023,1,30,1,New South Wales,153.071599,-30.887417 +2021,4,24,1,New South Wales,150.62714,-34.396455 +2021,4,29,1,New South Wales,150.616762,-34.399607 +2021,5,4,1,New South Wales,150.638552,-34.490662 +2021,7,26,1,New South Wales,150.5165,-34.449025 +2020,10,29,1,New South Wales,149.955017,-36.576791 +2023,7,19,1,New South Wales,153.299598,-28.825407 +2020,10,23,1,New South Wales,149.955017,-36.576791 +2021,6,21,1,New South Wales,150.603321,-34.438768 +2022,10,26,1,New South Wales,153.438626,-28.944835 +2021,6,23,1,New South Wales,150.513814,-34.446383 +2021,4,4,1,New South Wales,152.123795,-32.724031 +2022,9,9,1,New South Wales,150.808987,-34.208693 +2021,9,13,1,New South Wales,152.869519,-29.668902 +2021,10,14,1,New South Wales,152.914387,-31.46812 +2021,5,9,1,New South Wales,150.639359,-34.49176 +2022,10,4,1,New South Wales,150.842133,-34.070234 +2023,1,27,1,New South Wales,150.808987,-34.208693 +2021,5,9,1,New South Wales,150.609135,-34.420698 +2021,5,1,1,New South Wales,150.624232,-34.388906 +2022,2,18,1,New South Wales,153.343081,-28.908281 +2021,5,6,1,New South Wales,150.632614,-34.418712 +2020,10,19,1,New South Wales,153.303174,-28.827996 +2021,1,29,1,New South Wales,153.091795,-29.487962 +2022,8,22,1,New South Wales,151.660903,-32.686068 +2023,11,4,1,New South Wales,150.786139,-33.705967 +2023,8,10,1,New South Wales,150.841908,-34.058799 +2021,5,27,1,New South Wales,150.602658,-34.434915 +2023,6,15,1,New South Wales,152.302936,-32.325143 +2021,6,1,1,New South Wales,150.525206,-34.463761 +2023,9,30,1,New South Wales,152.787009,-31.629722 +2023,4,30,1,New South Wales,152.790648,-31.63959 +2020,9,9,1,New South Wales,150.896202,-34.009857 +2021,8,31,1,New South Wales,150.535187,-34.497067 +2021,10,25,1,New South Wales,146.558043,-34.749729 +2023,6,4,1,New South Wales,150.235762,-34.268132 +2021,7,15,1,New South Wales,153.452852,-28.649826 +2021,5,17,1,New South Wales,150.614002,-34.432793 +2021,6,7,1,New South Wales,150.626774,-34.389388 +2021,2,5,1,New South Wales,153.516247,-28.556338 +2020,12,23,1,New South Wales,152.924466,-31.454216 +2020,10,29,1,New South Wales,149.949397,-36.554597 +2021,12,3,1,New South Wales,151.6662,-30.501562 +2020,9,23,1,New South Wales,152.881902,-31.438588 +2021,3,1,1,New South Wales,151.6662,-30.501562 +2020,10,24,1,New South Wales,152.83465,-28.47843 +2021,10,19,1,New South Wales,152.810802,-29.806714 +2024,1,25,1,New South Wales,152.91585,-31.446384 +2022,11,15,1,New South Wales,152.661665,-28.610492 +2021,7,21,1,New South Wales,153.317927,-28.826212 +2021,9,11,1,New South Wales,153.070714,-30.877178 +2020,11,19,1,New South Wales,152.895808,-31.460426 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2022,1,3,1,New South Wales,150.614823,-34.439147 +2020,1,17,1,New South Wales,153.104112,-29.479823 +2021,12,27,1,New South Wales,152.160691,-30.088985 +2021,5,2,1,New South Wales,150.611394,-34.419706 +2021,6,17,1,New South Wales,150.52147,-34.465705 +2021,11,15,1,New South Wales,152.922515,-31.476069 +2020,8,30,1,New South Wales,152.89697,-29.633196 +2020,7,24,1,New South Wales,151.966266,-32.456642 +2020,11,2,1,New South Wales,149.958519,-36.587122 +2020,11,2,1,New South Wales,149.999247,-36.565645 +2020,12,1,1,New South Wales,152.899309,-29.630813 +2021,7,17,1,New South Wales,153.103768,-29.48552 +2021,6,11,1,New South Wales,150.525273,-34.458913 +2021,4,16,1,New South Wales,150.627438,-34.386291 +2020,7,1,1,New South Wales,152.908572,-31.467004 +2023,6,11,1,New South Wales,153.070695,-28.762542 +2023,12,10,1,New South Wales,150.784216,-33.717371 +2020,4,1,1,New South Wales,153.428988,-28.956636 +2023,6,1,1,New South Wales,152.321627,-28.89084 +2021,4,25,1,New South Wales,150.516363,-34.442631 +2021,3,12,1,New South Wales,152.900308,-31.443566 +2021,4,11,1,New South Wales,150.527133,-34.45785 +2021,11,12,1,New South Wales,153.12665,-28.620565 +2021,11,7,1,New South Wales,153.555987,-28.398821 +2022,11,26,1,New South Wales,152.759299,-30.84178 +2020,10,30,1,New South Wales,149.92265,-36.572354 +2023,8,23,1,New South Wales,152.918504,-31.452348 +2021,6,17,1,New South Wales,150.521252,-34.46571 +2021,4,15,1,New South Wales,150.608855,-34.420594 +2020,1,30,1,New South Wales,153.07758,-30.34527 +2021,1,29,1,New South Wales,152.109318,-32.772045 +2020,6,18,1,New South Wales,152.101463,-32.73989 +2021,6,24,1,New South Wales,150.625111,-34.38667 +2020,2,26,1,New South Wales,153.23627,-29.031623 +2021,,,1,New South Wales,149.26825,-35.81764 +2021,9,4,1,New South Wales,153.335341,-28.819695 +2022,5,10,1,New South Wales,153.520048,-28.649007 +2023,9,14,1,New South Wales,150.760544,-34.17149 +2020,1,28,1,New South Wales,152.916684,-31.43696 +2021,4,27,1,New South Wales,150.624315,-34.400592 +2021,8,16,1,New South Wales,150.605648,-34.431575 +2021,10,31,1,New South Wales,151.631647,-32.639689 +2022,4,6,1,New South Wales,153.108054,-29.490409 +2021,5,25,1,New South Wales,150.638809,-34.492723 +2023,10,9,1,New South Wales,153.11012,-29.490245 +2021,7,9,1,New South Wales,153.31185,-28.821624 +2021,6,28,1,New South Wales,150.608045,-34.449003 +2020,2,3,1,New South Wales,153.103784,-29.485543 +2021,4,25,1,New South Wales,150.518204,-34.448807 +2022,11,14,1,New South Wales,152.072518,-32.712381 +2021,6,5,1,New South Wales,150.640118,-34.39868 +2023,10,31,1,New South Wales,152.813543,-31.652328 +2021,5,29,1,New South Wales,150.617435,-34.438341 +2021,7,5,1,New South Wales,150.524234,-34.466473 +2024,2,4,1,New South Wales,152.917219,-31.19562 +2022,11,21,1,New South Wales,152.794945,-30.901933 +2021,5,1,1,New South Wales,150.604781,-34.427275 +2023,2,7,1,New South Wales,152.909052,-31.466672 +2021,9,13,1,New South Wales,150.641603,-34.396897 +2022,9,10,1,New South Wales,153.412043,-28.27234 +2020,9,16,1,New South Wales,150.103556,-33.775154 +2023,3,22,1,New South Wales,151.554208,-30.362675 +2020,2,12,1,New South Wales,152.881156,-31.42228 +2021,10,25,1,New South Wales,152.065407,-32.710499 +2023,10,11,1,New South Wales,152.79038,-30.902154 +2021,5,28,1,New South Wales,150.516176,-34.448937 +2021,5,11,1,New South Wales,153.331562,-28.816415 +2020,11,17,1,New South Wales,152.03988,-32.730582 +2022,3,10,1,New South Wales,153.108189,-29.49017 +2023,6,18,1,New South Wales,152.890519,-31.42818 +2021,6,24,1,New South Wales,150.514923,-34.444954 +2021,5,20,1,New South Wales,150.599898,-34.429091 +2020,11,6,1,New South Wales,150.015337,-36.564757 +2021,6,3,1,New South Wales,150.604948,-34.427125 +2023,9,3,1,New South Wales,150.786381,-33.706362 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2021,4,27,1,New South Wales,150.61029,-34.419098 +2021,9,30,1,New South Wales,150.51314,-34.445982 +2022,8,27,1,New South Wales,150.837478,-34.078738 +2021,12,27,1,New South Wales,152.924347,-31.45415 +2021,4,24,1,New South Wales,150.637821,-34.485671 +2021,9,7,1,New South Wales,152.374817,-31.915683 +2021,7,1,1,New South Wales,152.642402,-31.707912 +2021,5,10,1,New South Wales,150.6281,-34.389784 +2020,12,29,1,New South Wales,153.330287,-28.81672 +2022,9,18,1,New South Wales,153.324664,-28.879812 +2023,7,24,1,New South Wales,152.908562,-29.736337 +2022,3,9,1,New South Wales,150.984872,-34.096204 +2020,11,2,1,New South Wales,149.934245,-36.578531 +2021,3,20,1,New South Wales,150.603941,-34.439529 +2020,10,31,1,New South Wales,149.934245,-36.578531 +2024,8,26,1,New South Wales,152.282167,-31.634899 +2022,11,2,1,New South Wales,149.09584,-35.03096 +2024,7,10,1,New South Wales,152.424204,-31.952072 +2023,8,16,1,New South Wales,153.26838,-28.912883 +2021,4,1,1,New South Wales,150.609983,-34.429514 +2020,11,3,1,New South Wales,153.317651,-28.862857 +2022,9,19,1,New South Wales,152.90723,-30.17441 +2021,4,24,1,New South Wales,150.616273,-34.435587 +2022,2,21,1,New South Wales,150.808987,-34.208693 +2021,1,27,1,New South Wales,152.038935,-32.732209 +2024,1,11,1,New South Wales,152.384682,-31.948386 +2024,1,6,1,New South Wales,150.78642,-33.703923 +2021,10,,1,New South Wales,153.599218,-28.719867 +2023,6,28,1,New South Wales,153.07678,-28.553296 +2022,8,11,1,New South Wales,152.126308,-31.415433 +2022,8,30,1,New South Wales,149.324369,-36.295742 +2021,6,14,1,New South Wales,150.611985,-34.432185 +2024,7,16,1,New South Wales,152.401326,-31.326811 +2023,2,21,1,New South Wales,153.10129,-29.489998 +2021,3,2,1,New South Wales,150.636173,-34.485811 +2020,4,1,1,New South Wales,153.104044,-29.478805 +2021,5,12,1,New South Wales,150.627979,-34.389836 +2021,9,25,1,New South Wales,152.905072,-31.435861 +2022,8,30,1,New South Wales,149.323753,-36.296667 +2022,3,10,1,New South Wales,153.110511,-29.49018 +2021,4,26,1,New South Wales,153.423786,-28.663474 +2020,4,9,1,New South Wales,152.724783,-30.198833 +2021,2,18,1,New South Wales,150.089983,-33.846961 +2023,8,17,1,New South Wales,150.80181,-34.215378 +2022,8,3,1,New South Wales,152.844758,-31.528122 +2021,6,7,1,New South Wales,150.603635,-34.436548 +2024,2,11,1,New South Wales,151.086152,-29.727533 +2020,10,19,1,New South Wales,149.947316,-36.607854 +2023,8,15,1,New South Wales,153.326409,-28.824703 +2020,10,29,1,New South Wales,149.96897,-36.58553 +2020,4,1,1,New South Wales,153.42943,-28.957013 +2021,6,1,1,New South Wales,150.638458,-34.491291 +2020,11,3,1,New South Wales,149.96897,-36.58553 +2020,3,26,1,New South Wales,153.319791,-28.865112 +2022,8,10,1,New South Wales,153.092503,-29.48848 +2023,1,11,1,New South Wales,152.378125,-31.918232 +2021,11,1,1,New South Wales,150.790596,-34.188134 +2021,10,14,1,New South Wales,151.580448,-32.863373 +2022,5,11,1,New South Wales,146.77317,-34.783774 +2021,6,21,1,New South Wales,150.627897,-34.420865 +2021,6,5,1,New South Wales,150.534611,-34.459309 +2020,11,26,1,New South Wales,149.917922,-36.474664 +2021,5,21,1,New South Wales,150.515262,-34.451506 +2022,12,11,1,New South Wales,153.093463,-29.48863 +2021,5,11,1,New South Wales,150.637379,-34.423745 +2020,9,28,1,New South Wales,153.095303,-30.368649 +2023,8,27,1,New South Wales,150.987465,-34.097399 +2020,1,3,1,New South Wales,152.929532,-29.001429 +2021,8,5,1,New South Wales,153.102459,-29.48792 +2020,12,24,1,New South Wales,150.100539,-33.778509 +2023,8,9,1,New South Wales,152.925558,-30.506489 +2022,6,6,1,New South Wales,153.104804,-29.47696 +2021,5,28,1,New South Wales,150.527096,-34.469434 +2021,11,18,1,New South Wales,150.797021,-34.210039 +2021,4,9,1,New South Wales,152.902209,-31.442372 +2021,12,12,1,New South Wales,152.070536,-32.747818 +2023,8,12,1,New South Wales,150.964276,-34.034133 +2021,11,6,1,New South Wales,150.68122,-34.234483 +2024,4,16,1,New South Wales,150.251745,-30.992784 +2022,6,21,1,New South Wales,153.42297,-28.98186 +2020,7,22,1,New South Wales,151.769829,-32.593223 +2023,9,6,1,New South Wales,152.373841,-31.914728 +2023,6,22,1,New South Wales,153.103452,-29.485618 +2020,9,16,1,New South Wales,150.18427,-31.18984 +2021,8,26,1,New South Wales,152.380232,-31.914645 +2020,1,3,1,New South Wales,153.109543,-29.490412 +2021,6,15,1,New South Wales,150.639756,-34.39916 +2021,9,15,1,New South Wales,151.658728,-32.68941 +2021,3,8,1,New South Wales,151.083136,-29.728188 +2021,6,15,1,New South Wales,150.520401,-34.465764 +2022,3,18,1,New South Wales,152.925412,-31.447493 +2021,6,19,1,New South Wales,150.522187,-34.451376 +2021,4,29,1,New South Wales,150.636336,-34.42175 +2023,12,7,1,New South Wales,153.558463,-28.388571 +2024,2,1,1,New South Wales,150.785315,-33.705762 +2021,6,2,1,New South Wales,150.529038,-34.46447 +2021,7,9,1,New South Wales,150.640622,-34.393894 +2021,4,16,1,New South Wales,150.604921,-34.426945 +2023,3,16,1,New South Wales,149.553339,-33.553867 +2021,9,23,1,New South Wales,152.300422,-31.948252 +2020,9,1,1,New South Wales,152.896425,-29.629872 +2023,8,13,1,New South Wales,152.008027,-32.727746 +2021,6,13,1,New South Wales,150.521424,-34.459159 +2021,10,7,1,New South Wales,153.394375,-28.959241 +2022,12,18,1,New South Wales,153.31676,-28.9481 +2022,11,19,1,New South Wales,152.785386,-31.632709 +2022,12,18,1,New South Wales,152.921653,-31.457885 +2021,6,4,1,New South Wales,150.623812,-34.389151 +2021,10,14,1,New South Wales,152.574902,-31.77942 +2021,6,10,1,New South Wales,150.525464,-34.458348 +2021,7,30,1,New South Wales,153.101231,-29.490007 +2020,11,26,1,New South Wales,149.917922,-36.474664 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2023,10,22,1,New South Wales,150.671934,-33.565567 +2020,1,15,1,New South Wales,149.554988,-33.533443 +2021,7,13,1,New South Wales,150.512879,-34.446734 +2021,6,13,1,New South Wales,150.64346,-34.395851 +2021,6,11,1,New South Wales,150.613524,-34.432026 +2024,1,13,1,New South Wales,150.783116,-33.718652 +2020,11,10,1,New South Wales,152.927516,-31.457812 +2020,5,17,1,New South Wales,149.303705,-36.131715 +2023,1,18,1,New South Wales,152.375963,-31.926078 +2024,1,21,1,New South Wales,153.103859,-29.489582 +2023,2,19,1,New South Wales,152.89986,-31.467138 +2021,3,28,1,New South Wales,153.362224,-28.649443 +2023,3,6,1,New South Wales,150.822002,-34.136586 +2021,11,5,1,New South Wales,152.928954,-31.454498 +2024,2,7,1,New South Wales,152.878213,-31.45544 +2022,3,6,1,New South Wales,153.288527,-28.652934 +2024,7,12,1,New South Wales,153.43702,-28.992605 +2021,7,8,1,New South Wales,150.641308,-34.395413 +2023,9,14,1,New South Wales,151.693942,-30.481289 +2021,8,30,1,New South Wales,153.103522,-29.485459 +2021,10,23,1,New South Wales,149.467564,-33.677157 +2020,11,18,1,New South Wales,149.957744,-36.497148 +2020,4,2,1,New South Wales,152.786588,-31.687481 +2021,6,9,1,New South Wales,151.992302,-32.720807 +2021,10,19,1,New South Wales,153.262924,-28.923353 +2021,7,2,1,New South Wales,150.513091,-34.447261 +2021,4,8,1,New South Wales,150.616084,-34.4346 +2020,6,17,1,New South Wales,150.064587,-33.776089 +2020,9,15,1,New South Wales,153.00279,-29.18285 +2021,7,6,1,New South Wales,150.603596,-34.419219 +2021,4,6,1,New South Wales,150.518023,-34.446478 +2020,11,18,1,New South Wales,152.92763,-31.46563 +2021,11,1,1,New South Wales,152.300422,-31.948252 +2021,8,29,1,New South Wales,150.249403,-33.852923 +2021,4,30,1,New South Wales,150.604679,-34.427391 +2021,11,10,1,New South Wales,152.983863,-30.398573 +2021,3,8,1,New South Wales,150.52271,-34.451721 +2021,6,2,1,New South Wales,150.520051,-34.454804 +2021,2,15,1,New South Wales,153.493083,-28.693786 +2023,9,26,1,New South Wales,153.460499,-28.650517 +2022,1,25,1,New South Wales,153.101322,-29.489979 +2023,7,28,1,New South Wales,152.065329,-32.699763 +2022,9,7,1,New South Wales,150.790696,-34.186069 +2023,8,28,1,New South Wales,153.289154,-28.97947 +2023,8,22,1,New South Wales,150.785719,-33.715361 +2022,9,16,1,New South Wales,152.652939,-28.381283 +2023,1,5,1,New South Wales,152.076605,-32.724731 +2020,11,29,1,New South Wales,149.819383,-31.53944 +2024,2,27,1,New South Wales,152.951266,-30.419035 +2020,11,17,1,New South Wales,150.004563,-36.508695 +2021,5,16,1,New South Wales,150.640522,-34.494144 +2021,5,5,1,New South Wales,150.627214,-34.389595 +2020,12,4,1,New South Wales,149.960189,-36.280531 +2023,10,19,1,New South Wales,153.104648,-29.489643 +2023,9,28,1,New South Wales,150.786019,-33.705995 +2022,11,25,1,New South Wales,152.78933,-30.918792 +2021,5,6,1,New South Wales,150.637267,-34.423842 +2021,4,13,1,New South Wales,150.64073,-34.412874 +2024,3,24,1,New South Wales,152.894705,-31.414503 +2022,6,7,1,New South Wales,150.782297,-33.374907 +2021,5,29,1,New South Wales,150.521642,-34.465763 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2021,4,23,1,New South Wales,150.606365,-34.433915 +2024,5,26,1,New South Wales,152.116775,-32.764971 +2020,4,3,1,New South Wales,152.806057,-31.124966 +2021,5,20,1,New South Wales,150.529958,-34.470943 +2021,3,14,1,New South Wales,150.060463,-33.774206 +2021,5,25,1,New South Wales,150.595785,-34.425692 +2020,4,3,1,New South Wales,150.123052,-35.06557 +2021,11,29,1,New South Wales,153.31183,-28.850697 +2021,12,15,1,New South Wales,153.560261,-28.389497 +2024,1,14,1,New South Wales,152.798375,-31.636973 +2020,1,25,1,New South Wales,153.104149,-29.485193 +2020,6,24,1,New South Wales,152.11023,-32.771979 +2022,8,16,1,New South Wales,153.302271,-28.888838 +2021,4,18,1,New South Wales,150.627385,-34.386597 +2020,10,21,1,New South Wales,149.950035,-36.601015 +2021,5,31,1,New South Wales,150.604387,-34.450203 +2021,5,12,1,New South Wales,150.615863,-34.43319 +2022,7,19,1,New South Wales,153.301303,-28.817454 +2020,10,13,1,New South Wales,151.686986,-32.671114 +2021,8,20,1,New South Wales,153.078546,-30.338508 +2021,7,19,1,New South Wales,150.623976,-34.38333 +2023,7,17,1,New South Wales,153.494964,-28.692221 +2021,5,22,1,New South Wales,150.633755,-34.392499 +2023,9,7,1,New South Wales,149.457365,-33.590282 +2020,4,9,1,New South Wales,152.673715,-30.08408 +2022,12,5,1,New South Wales,153.510325,-28.808608 +2021,10,6,1,New South Wales,152.889384,-31.444995 +2021,7,10,1,New South Wales,150.601849,-34.412586 +2020,4,2,1,New South Wales,152.658705,-31.874591 +2024,7,26,1,New South Wales,152.921026,-30.505557 +2023,3,21,1,New South Wales,149.928654,-36.591146 +2020,11,2,1,New South Wales,153.313992,-28.81222 +2023,12,14,1,New South Wales,152.926473,-31.451771 +2022,3,26,1,New South Wales,152.034841,-32.765354 +2021,5,26,1,New South Wales,150.516225,-34.44984 +2020,12,7,1,New South Wales,150.900422,-33.998966 +2021,9,17,1,New South Wales,153.244711,-28.878209 +2022,2,5,1,New South Wales,153.103693,-29.485809 +2021,4,28,1,New South Wales,150.601979,-34.427094 +2022,11,13,1,New South Wales,149.150221,-36.084594 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2020,10,23,1,New South Wales,149.923643,-36.618562 +2022,5,26,1,New South Wales,151.513229,-30.579907 +2020,6,18,1,New South Wales,153.007486,-28.625551 +2020,11,,1,New South Wales,152.216582,-32.41096 +2022,2,8,1,New South Wales,152.898542,-31.460452 +2022,8,9,1,New South Wales,150.529061,-34.444076 +2022,8,11,1,New South Wales,152.126308,-31.415433 +2022,11,23,1,New South Wales,152.770676,-30.853416 +2021,8,29,1,New South Wales,150.808987,-34.208693 +2021,11,21,1,New South Wales,150.864765,-34.058465 +2021,7,27,1,New South Wales,150.522336,-34.464749 +2022,1,26,1,New South Wales,153.1038,-29.485599 +2022,11,25,1,New South Wales,152.794945,-30.901933 +2023,12,5,1,New South Wales,150.990172,-34.023324 +2021,3,10,1,New South Wales,150.520876,-34.447131 +2023,9,10,1,New South Wales,153.4253,-28.808321 +2021,6,9,1,New South Wales,150.658982,-34.454281 +2021,5,20,1,New South Wales,150.633679,-34.418345 +2021,5,23,1,New South Wales,150.639085,-34.49298 +2024,6,14,1,New South Wales,152.861388,-31.145527 +2021,3,10,1,New South Wales,153.29874,-28.818698 +2022,6,6,1,New South Wales,153.102175,-29.488457 +2020,8,24,1,New South Wales,150.812345,-34.124693 +2021,5,29,1,New South Wales,150.642902,-34.394785 +2021,5,15,1,New South Wales,153.313497,-28.885212 +2020,10,21,1,New South Wales,149.947183,-36.617465 +2020,10,17,1,New South Wales,149.947183,-36.617465 +2021,11,4,1,New South Wales,152.802263,-31.217507 +2021,11,6,1,New South Wales,153.119781,-29.489741 +2021,4,4,1,New South Wales,150.529493,-34.459386 +2024,3,7,1,New South Wales,152.932671,-31.474941 +2020,7,20,1,New South Wales,153.093692,-29.492724 +2021,6,23,1,New South Wales,150.514298,-34.446582 +2021,5,28,1,New South Wales,150.639073,-34.491466 +2020,10,28,1,New South Wales,149.955017,-36.576791 +2022,6,4,1,New South Wales,153.34316,-28.858812 +2022,11,26,1,New South Wales,152.78933,-30.918792 +2024,3,11,1,New South Wales,152.11306,-32.741776 +2022,8,17,1,New South Wales,153.108167,-29.490516 +2020,8,31,1,New South Wales,152.922191,-31.462006 +2022,9,28,1,New South Wales,153.523118,-28.707219 +2023,8,20,1,New South Wales,153.104332,-29.477777 +2020,11,24,1,New South Wales,153.550358,-28.586172 +2020,11,25,1,New South Wales,150.893164,-33.961109 +2023,11,30,1,New South Wales,153.103479,-29.48545 +2020,7,12,1,New South Wales,152.576408,-29.384419 +2022,8,2,1,New South Wales,150.796301,-34.139044 +2023,10,4,1,New South Wales,152.00351,-32.728513 +2022,1,13,1,New South Wales,153.562423,-28.384452 +2021,6,16,1,New South Wales,150.520402,-34.465746 +2023,9,25,1,New South Wales,153.266675,-28.920605 +2023,2,21,1,New South Wales,152.372924,-31.924757 +2022,11,8,1,New South Wales,153.320399,-28.845128 +2021,6,1,1,New South Wales,150.630354,-34.420904 +2021,1,14,1,New South Wales,153.551941,-28.586521 +2020,8,7,1,New South Wales,153.554747,-28.415225 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2021,6,14,1,New South Wales,150.524327,-34.452637 +2022,12,23,1,Victoria,148.259951,-37.232341 +2021,5,24,1,New South Wales,150.515798,-34.45067 +2021,6,7,1,New South Wales,150.607756,-34.430137 +2021,7,16,1,New South Wales,153.103591,-29.485487 +2020,10,14,1,New South Wales,149.947316,-36.607854 +2021,8,30,1,New South Wales,150.817406,-34.098577 +2021,5,16,1,New South Wales,150.614548,-34.433894 +2020,8,3,1,New South Wales,152.793918,-31.126887 +2022,5,11,1,New South Wales,152.061132,-32.709412 +2020,11,14,1,New South Wales,149.934931,-36.503907 +2021,5,2,1,New South Wales,150.615798,-34.435091 +2021,6,1,1,New South Wales,150.517781,-34.440297 +2021,4,23,1,New South Wales,150.638488,-34.422982 +2023,10,30,1,New South Wales,150.99248,-34.024573 +2022,4,26,1,New South Wales,152.913268,-31.443271 +2023,11,14,1,New South Wales,152.064283,-32.709094 +2020,11,30,1,New South Wales,153.343646,-28.866891 +2020,10,1,1,New South Wales,151.59318,-32.558127 +2021,11,18,1,New South Wales,153.446736,-28.679744 +2021,12,8,1,New South Wales,153.285595,-28.659545 +2021,5,1,1,New South Wales,150.633656,-34.418408 +2020,11,4,1,New South Wales,149.955017,-36.576791 +2021,7,12,1,New South Wales,150.513998,-34.447162 +2023,2,14,1,New South Wales,152.562249,-31.650333 +2022,7,30,1,New South Wales,153.315188,-28.86024 +2023,7,11,1,New South Wales,152.862215,-31.280182 +2021,7,12,1,New South Wales,150.64288,-34.395578 +2021,10,,1,New South Wales,149.392624,-36.161591 +2020,12,4,1,New South Wales,152.90674,-31.44972 +2021,2,19,1,New South Wales,150.059957,-33.762809 +2023,10,24,1,New South Wales,152.89588,-31.473888 +2022,12,6,1,New South Wales,153.30459,-28.817112 +2022,11,29,1,New South Wales,152.734049,-30.84847 +2021,5,10,1,New South Wales,150.519405,-34.435426 +2021,4,24,1,New South Wales,150.630824,-34.388836 +2021,10,23,1,New South Wales,153.10372,-29.478249 +2021,6,11,1,New South Wales,150.51683,-34.447418 +2021,4,25,1,New South Wales,150.604203,-34.437965 +2020,12,4,1,New South Wales,153.614018,-28.662353 +2021,7,8,1,New South Wales,150.640645,-34.394237 +2021,4,4,1,New South Wales,150.529493,-34.459386 +2024,5,8,1,New South Wales,152.893952,-31.431835 +2021,1,28,1,New South Wales,150.842133,-34.070234 +2023,6,7,1,New South Wales,150.886917,-34.0602 +2020,10,10,1,New South Wales,149.955028,-36.650407 +2021,5,25,1,New South Wales,150.631381,-34.419977 +2021,4,25,1,New South Wales,150.604203,-34.437965 +2021,11,29,1,New South Wales,153.375012,-28.885121 +2023,12,21,1,New South Wales,148.729453,-36.429797 +2020,7,,1,New South Wales,153.602142,-28.715639 +2021,7,4,1,New South Wales,150.513805,-34.44632 +2020,10,19,1,New South Wales,152.869802,-31.447924 +2021,6,19,1,New South Wales,150.603941,-34.438772 +2021,5,6,1,New South Wales,150.639084,-34.491493 +2021,5,13,1,New South Wales,150.525373,-34.464017 +2020,12,4,1,New South Wales,152.903171,-31.440922 +2020,8,29,1,New South Wales,150.808987,-34.208693 +2020,6,24,1,New South Wales,152.650931,-31.535223 +2021,4,25,1,New South Wales,150.615169,-34.435394 +2021,10,25,1,New South Wales,152.916436,-31.468746 +2023,7,14,1,New South Wales,152.324546,-32.202762 +2021,12,20,1,New South Wales,153.108151,-29.490633 +2021,5,7,1,New South Wales,150.523168,-34.452433 +2021,9,20,1,New South Wales,153.304662,-29.052465 +2021,6,13,1,New South Wales,150.626544,-34.385597 +2021,7,20,1,New South Wales,152.939225,-29.703025 +2023,3,4,1,New South Wales,152.912557,-31.470822 +2021,6,4,1,New South Wales,150.519579,-34.45529 +2022,11,18,1,New South Wales,153.042125,-30.340196 +2020,5,,1,New South Wales,152.008112,-32.727273 +2024,9,5,1,New South Wales,152.185459,-31.573386 +2023,9,15,1,New South Wales,150.799271,-34.190613 +2021,7,11,1,New South Wales,150.521002,-34.464235 +2020,9,8,1,New South Wales,152.006782,-32.728396 +2021,7,13,1,New South Wales,150.808987,-34.208693 +2021,8,20,1,New South Wales,153.339802,-28.810331 +2023,9,2,1,New South Wales,152.925069,-31.443321 +2021,7,26,1,New South Wales,150.517811,-34.440406 +2021,9,27,1,New South Wales,150.808987,-34.208693 +2021,4,23,1,New South Wales,150.628722,-34.395124 +2021,6,10,1,New South Wales,150.613993,-34.433117 +2021,11,6,1,New South Wales,153.236707,-28.843269 +2021,11,21,1,New South Wales,153.402204,-28.260499 +2021,5,12,1,New South Wales,153.401652,-28.260484 +2021,5,22,1,New South Wales,150.517291,-34.45207 +2022,11,18,1,New South Wales,152.770676,-30.853416 +2023,12,2,1,New South Wales,152.791449,-31.640213 +2021,3,26,1,New South Wales,150.610518,-34.429822 +2021,9,18,1,New South Wales,150.789582,-34.194507 +2020,10,16,1,New South Wales,152.670248,-31.698762 +2021,5,5,1,New South Wales,150.638508,-34.490661 +2023,11,12,1,New South Wales,153.105227,-29.489732 +2021,7,20,1,New South Wales,150.522443,-34.464445 +2021,5,17,1,New South Wales,150.51648,-34.450062 +2021,5,8,1,New South Wales,150.521214,-34.466637 +2023,8,31,1,New South Wales,153.567171,-28.385351 +2020,10,24,1,New South Wales,149.945227,-36.57753 +2021,7,9,1,New South Wales,150.52066,-34.465833 +2020,11,30,1,New South Wales,153.343646,-28.866891 +2022,10,20,1,New South Wales,150.795607,-34.104743 +2021,5,13,1,New South Wales,150.640256,-34.493174 +2021,6,9,1,New South Wales,150.528387,-34.457416 +2020,9,12,1,New South Wales,153.096532,-29.485585 +2021,10,26,1,New South Wales,150.843183,-34.055807 +2021,6,1,1,New South Wales,150.62689,-34.390274 +2020,11,19,1,New South Wales,153.191167,-29.39143 +2020,1,25,1,New South Wales,150.807808,-34.097951 +2024,3,17,1,New South Wales,152.063229,-32.706185 +2023,9,24,1,New South Wales,152.029695,-32.399642 +2021,12,15,1,New South Wales,152.921039,-31.480301 +2022,8,21,1,New South Wales,150.879593,-34.012121 +2021,3,26,1,New South Wales,150.615893,-34.434795 +2020,1,16,1,New South Wales,153.109693,-29.490152 +2021,4,27,1,New South Wales,150.602918,-34.435749 +2021,4,15,1,New South Wales,150.636699,-34.420847 +2021,4,9,1,New South Wales,150.519898,-34.447823 +2021,8,24,1,New South Wales,153.278012,-28.8748 +2021,5,1,1,New South Wales,150.608411,-34.455628 +2021,7,28,1,New South Wales,150.642163,-34.395952 +2020,10,20,1,New South Wales,149.930096,-36.638123 +2022,3,14,1,New South Wales,153.309351,-29.0533 +2021,8,23,1,New South Wales,150.639202,-34.397211 +2023,8,25,1,New South Wales,151.674884,-30.48972 +2024,1,20,1,New South Wales,152.889623,-31.473333 +2024,8,20,1,New South Wales,152.380082,-32.023186 +2020,4,2,1,New South Wales,152.672861,-31.824051 +2023,11,4,1,New South Wales,153.42764,-28.626791 +2021,6,23,1,New South Wales,150.658155,-34.455825 +2023,11,10,1,New South Wales,150.9928,-34.104807 +2022,9,27,1,New South Wales,153.078324,-30.151428 +2021,6,15,1,New South Wales,150.630818,-34.42067 +2021,6,18,1,New South Wales,150.521425,-34.46574 +2023,4,18,1,New South Wales,153.103795,-29.485594 +2021,9,30,1,New South Wales,153.11145,-29.487294 +2021,9,11,1,New South Wales,152.867544,-29.694053 +2021,8,15,1,New South Wales,150.513761,-34.446337 +2021,7,18,1,New South Wales,150.522792,-34.467382 +2021,5,23,1,New South Wales,150.639149,-34.493018 +2020,11,2,1,New South Wales,153.313992,-28.81222 +2024,1,28,1,New South Wales,150.785435,-33.712782 +2021,10,21,1,New South Wales,150.835092,-34.069558 +2021,7,23,1,New South Wales,149.351709,-36.151906 +2024,3,16,1,New South Wales,150.986009,-34.090955 +2022,8,19,1,New South Wales,152.382794,-31.915292 +2022,4,12,1,New South Wales,150.11377,-31.1124 +2021,4,24,1,New South Wales,150.615322,-34.428843 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2021,2,8,1,New South Wales,150.845,-29.834338 +2022,7,16,1,New South Wales,152.040967,-32.735464 +2023,9,27,1,New South Wales,153.565148,-28.388756 +2021,5,19,1,New South Wales,150.63054,-34.395033 +2023,1,17,1,New South Wales,152.911251,-31.472844 +2021,4,17,1,New South Wales,150.63496,-34.485995 +2020,12,4,1,New South Wales,150.937904,-29.721373 +2023,9,30,1,New South Wales,150.990792,-34.020141 +2020,11,8,1,New South Wales,150.80862,-34.098273 +2020,12,23,1,New South Wales,153.611255,-28.662314 +2023,5,10,1,New South Wales,152.927761,-31.464659 +2021,6,28,1,New South Wales,150.59651,-34.411399 +2020,12,27,1,New South Wales,150.627031,-33.56859 +2020,10,5,1,New South Wales,149.959933,-36.657162 +2021,3,16,1,New South Wales,153.103999,-29.485319 +2020,12,15,1,New South Wales,153.47285,-28.647443 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2021,6,4,1,New South Wales,150.640047,-34.397723 +2021,4,20,1,New South Wales,150.606648,-34.43465 +2023,3,26,1,New South Wales,152.924212,-31.441135 +2021,6,21,1,New South Wales,150.639219,-34.392713 +2021,7,11,1,New South Wales,150.520945,-34.464306 +2021,5,22,1,New South Wales,150.6338,-34.392437 +2023,2,18,1,New South Wales,152.063741,-32.706526 +2021,5,22,1,New South Wales,150.521653,-34.465763 +2021,1,2,1,New South Wales,152.8921,-31.470686 +2020,12,5,1,New South Wales,153.10423,-29.479514 +2024,2,12,1,New South Wales,150.785326,-33.716941 +2021,5,14,1,New South Wales,150.731241,-34.280467 +2021,7,12,1,New South Wales,150.59724,-34.410214 +2023,11,23,1,New South Wales,152.907839,-31.481401 +2021,5,12,1,New South Wales,150.518682,-34.43707 +2021,5,18,1,New South Wales,150.613491,-34.431656 +2020,9,11,1,New South Wales,153.402852,-28.60386 +2021,11,15,1,New South Wales,150.556772,-34.474 +2020,7,22,1,New South Wales,153.103762,-29.485747 +2020,8,25,1,New South Wales,152.954936,-30.668103 +2021,4,7,1,New South Wales,150.607119,-34.437617 +2023,9,13,1,New South Wales,152.416442,-31.954443 +2021,5,13,1,New South Wales,150.627787,-34.397396 +2021,4,2,1,New South Wales,150.525011,-34.453408 +2020,11,14,1,New South Wales,150.004563,-36.508695 +2024,4,3,1,New South Wales,149.945401,-36.34 +2022,1,23,1,New South Wales,150.61479,-34.439146 +2020,1,8,1,New South Wales,153.103688,-29.485669 +2021,6,4,1,New South Wales,150.630798,-34.420597 +2021,5,19,1,New South Wales,150.516436,-34.450088 +2021,7,13,1,New South Wales,150.6265,-34.385606 +2020,12,29,1,New South Wales,153.400888,-28.256373 +2021,3,16,1,New South Wales,150.534634,-34.462212 +2023,2,17,1,New South Wales,153.517558,-28.684295 +2021,8,13,1,New South Wales,150.601789,-34.431066 +2021,4,25,1,New South Wales,150.625783,-34.395572 +2020,5,7,1,New South Wales,150.05231,-34.90108 +2020,10,20,1,New South Wales,153.296004,-28.818579 +2023,12,11,1,New South Wales,152.785611,-31.632275 +2021,11,29,1,New South Wales,150.552635,-34.51686 +2022,12,31,1,New South Wales,152.904248,-31.465831 +2023,9,4,1,New South Wales,152.897459,-31.47511 +2020,11,,1,New South Wales,151.728689,-32.246501 +2022,12,6,1,New South Wales,152.079344,-32.727333 +2022,6,22,1,New South Wales,153.46681,-28.22462 +2021,6,20,1,New South Wales,152.868404,-29.666949 +2021,7,11,1,New South Wales,150.601801,-34.41236 +2020,1,10,1,New South Wales,151.795088,-32.589689 +2022,11,26,1,New South Wales,153.185015,-28.923584 +2020,12,15,1,New South Wales,153.508364,-28.692405 +2023,11,15,1,New South Wales,152.89467,-31.429481 +2021,6,23,1,New South Wales,150.513793,-34.446365 +2023,10,24,1,New South Wales,152.194095,-32.224416 +2022,2,19,1,New South Wales,150.943068,-34.11459 +2021,4,22,1,New South Wales,150.637404,-34.420527 +2023,12,5,1,New South Wales,152.015833,-32.167778 +2022,11,12,1,New South Wales,152.92517,-31.454071 +2021,7,30,1,New South Wales,152.928705,-31.459245 +2021,7,15,1,New South Wales,153.394257,-28.960175 +2021,4,18,1,New South Wales,150.63094,-34.393995 +2021,5,20,1,New South Wales,150.515149,-34.451279 +2023,11,24,1,New South Wales,152.906016,-31.471952 +2020,2,1,1,New South Wales,152.90937,-31.475976 +2021,10,6,1,New South Wales,153.103666,-29.48587 +2021,5,6,1,New South Wales,153.553397,-28.38896 +2021,5,15,1,New South Wales,152.913944,-31.438864 +2022,10,16,1,New South Wales,152.172979,-32.737109 +2024,2,11,1,New South Wales,152.403199,-31.925262 +2021,6,4,1,New South Wales,150.615826,-34.436399 +2020,9,8,1,New South Wales,151.6662,-30.501562 +2021,12,19,1,New South Wales,152.927264,-31.465471 +2023,12,2,1,New South Wales,153.559348,-28.331083 +2023,8,15,1,New South Wales,153.110527,-29.490264 +2023,4,4,1,New South Wales,153.315249,-28.941639 +2021,1,19,1,New South Wales,152.41519,-31.933125 +2021,9,19,1,New South Wales,151.650606,-32.683761 +2020,11,8,1,New South Wales,150.02021,-36.569074 +2020,12,9,1,New South Wales,153.300206,-28.886464 +2022,1,13,1,New South Wales,153.563918,-28.38564 +2022,8,15,1,New South Wales,150.907642,-34.024789 +2021,7,23,1,New South Wales,150.642078,-34.396663 +2021,10,21,1,New South Wales,153.01479,-29.5376 +2020,8,31,1,New South Wales,153.149826,-30.19212 +2021,8,12,1,New South Wales,150.644348,-34.398699 +2020,12,10,1,New South Wales,149.960189,-36.280531 +2021,5,21,1,New South Wales,150.615065,-34.431407 +2022,9,26,1,New South Wales,150.884233,-34.018221 +2021,4,28,1,New South Wales,150.636286,-34.421965 +2023,1,26,1,New South Wales,153.299756,-28.824721 +2020,1,17,1,New South Wales,153.103758,-29.485529 +2020,11,20,1,New South Wales,153.0802,-28.5008 +2023,9,1,1,New South Wales,153.108087,-29.490493 +2021,8,17,1,New South Wales,149.947287,-36.640259 +2022,7,26,1,New South Wales,153.10423,-29.482171 +2020,6,4,1,New South Wales,149.24449,-36.886 +2021,4,19,1,New South Wales,150.626866,-34.385721 +2021,5,9,1,New South Wales,153.109412,-29.490441 +2021,6,1,1,New South Wales,150.524419,-34.463863 +2021,7,22,1,New South Wales,150.606872,-34.438649 +2024,9,22,1,New South Wales,152.262511,-32.039399 +2021,6,12,1,New South Wales,150.613483,-34.431935 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2021,7,11,1,New South Wales,150.513091,-34.44727 +2022,12,22,1,New South Wales,152.1416,-31.40529 +2021,4,25,1,New South Wales,150.615568,-34.435501 +2021,6,10,1,New South Wales,150.521687,-34.465367 +2020,1,28,1,New South Wales,153.093613,-29.488592 +2020,2,18,1,New South Wales,153.325643,-28.81509 +2022,10,30,1,New South Wales,153.400618,-28.291481 +2024,2,16,1,New South Wales,152.923158,-31.45605 +2023,1,31,1,New South Wales,152.82829,-29.650455 +2022,12,15,1,New South Wales,150.921344,-33.966784 +2021,6,24,1,New South Wales,150.644276,-34.393117 +2021,4,28,1,New South Wales,150.634581,-34.420319 +2021,8,16,1,New South Wales,150.52321,-34.463532 +2021,9,19,1,New South Wales,150.531969,-34.47066 +2021,3,24,1,New South Wales,150.521044,-34.454337 +2020,10,18,1,New South Wales,149.956941,-36.59482 +2022,5,12,1,New South Wales,152.923624,-31.441079 +2021,5,20,1,New South Wales,150.608043,-34.433812 +2021,5,10,1,New South Wales,150.52152,-34.46695 +2023,9,21,1,New South Wales,150.875198,-34.057957 +2023,2,7,1,New South Wales,152.920154,-29.734337 +2023,6,22,1,New South Wales,152.306353,-32.192585 +2023,8,16,1,New South Wales,152.657435,-31.29351 +2021,5,25,1,New South Wales,150.51738,-34.452009 +2021,6,22,1,New South Wales,150.520558,-34.453832 +2021,9,10,1,New South Wales,150.810907,-34.091307 +2021,9,23,1,New South Wales,152.893086,-31.454902 +2022,9,17,1,New South Wales,150.022,-33.815 +2021,4,13,1,New South Wales,150.63582,-34.485975 +2024,2,22,1,New South Wales,153.107443,-29.490133 +2021,5,25,1,New South Wales,150.521578,-34.465716 +2020,4,29,1,New South Wales,153.399901,-28.258429 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2020,2,17,1,New South Wales,152.89997,-31.46639 +2021,5,7,1,New South Wales,150.609203,-34.4206 +2021,5,23,1,New South Wales,151.974623,-32.472237 +2022,11,6,1,New South Wales,152.920728,-31.455822 +2022,6,27,1,New South Wales,153.104144,-29.478809 +2021,6,3,1,New South Wales,153.109337,-29.490147 +2023,10,4,1,New South Wales,150.916905,-33.971139 +2022,11,28,1,New South Wales,152.754102,-30.882465 +2024,1,19,1,New South Wales,152.744576,-31.194362 +2021,5,16,1,New South Wales,150.614476,-34.434136 +2021,6,16,1,New South Wales,150.514097,-34.446389 +2021,6,7,1,New South Wales,150.630051,-34.420871 +2021,5,5,1,New South Wales,150.520801,-34.43604 +2021,7,2,1,New South Wales,150.604339,-34.436264 +2020,1,18,1,New South Wales,153.103645,-29.485772 +2020,6,18,1,New South Wales,150.944201,-34.000089 +2021,8,7,1,New South Wales,150.605206,-34.425715 +2020,10,15,1,New South Wales,149.919967,-36.589766 +2022,3,31,1,New South Wales,153.108269,-29.49025 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2022,6,15,1,New South Wales,153.099777,-29.491511 +2023,9,26,1,New South Wales,153.323412,-28.85553 +2021,6,9,1,New South Wales,150.646685,-34.396418 +2021,4,20,1,New South Wales,150.637303,-34.422183 +2021,11,25,1,New South Wales,153.103098,-29.486832 +2022,12,8,1,New South Wales,152.848384,-31.105129 +2021,6,3,1,New South Wales,150.604701,-34.4274 +2020,10,30,1,New South Wales,149.945227,-36.57753 +2023,9,11,1,New South Wales,149.552391,-33.491265 +2023,6,9,1,New South Wales,153.30215,-28.819239 +2021,6,28,1,New South Wales,150.631484,-34.387803 +2023,8,13,1,New South Wales,153.109251,-29.49074 +2021,6,16,1,New South Wales,153.57307,-28.665253 +2020,10,9,1,New South Wales,152.158889,-32.712816 +2022,12,5,1,New South Wales,152.035887,-32.731706 +2024,1,19,1,New South Wales,150.658718,-33.52683 +2023,6,8,1,New South Wales,152.154736,-32.053436 +2021,6,29,1,New South Wales,150.643078,-34.393184 +2023,3,17,1,New South Wales,152.400964,-31.911997 +2020,5,21,1,New South Wales,153.400813,-28.257928 +2020,4,8,1,New South Wales,150.145877,-34.927743 +2020,5,4,1,Queensland,152.53301,-28.279238 +2021,5,10,1,New South Wales,150.520418,-34.435023 +2023,8,31,1,New South Wales,153.395278,-28.95995 +2020,10,29,1,New South Wales,149.999247,-36.565645 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2022,10,12,1,New South Wales,152.784608,-31.631876 +2020,12,7,1,New South Wales,149.960189,-36.280531 +2021,5,8,1,New South Wales,150.637431,-34.423818 +2021,8,31,1,New South Wales,153.402101,-28.25764 +2021,3,8,1,New South Wales,150.633111,-34.479765 +2021,6,9,1,New South Wales,150.613983,-34.433081 +2020,11,18,1,New South Wales,150.104175,-33.775682 +2022,12,2,1,New South Wales,153.43206,-28.66276 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2020,10,20,1,New South Wales,149.947183,-36.617465 +2021,4,15,1,New South Wales,150.604703,-34.427319 +2020,9,16,1,New South Wales,152.155117,-31.738462 +2023,8,2,1,New South Wales,150.9915,-33.980929 +2022,5,17,1,New South Wales,153.101247,-29.489946 +2021,11,23,1,New South Wales,152.089998,-32.734967 +2022,9,28,1,New South Wales,150.893164,-33.961109 +2020,1,16,1,New South Wales,152.86366,-31.146058 +2021,5,9,1,New South Wales,150.628078,-34.389783 +2021,7,18,1,New South Wales,153.270841,-29.010748 +2021,6,8,1,New South Wales,150.60786,-34.430689 +2021,10,7,1,New South Wales,153.312316,-28.822435 +2023,11,6,1,New South Wales,153.109363,-29.490516 +2021,6,18,1,New South Wales,150.603685,-34.426767 +2021,5,17,1,New South Wales,150.530554,-34.469937 +2021,7,9,1,New South Wales,150.662142,-34.454161 +2022,10,6,1,New South Wales,153.309689,-28.821315 +2021,4,7,1,New South Wales,150.606722,-34.429784 +2020,10,12,1,New South Wales,149.887989,-36.587028 +2020,4,18,1,New South Wales,150.074581,-33.757117 +2022,10,27,1,New South Wales,153.422227,-28.982408 +2021,5,29,1,New South Wales,150.63086,-34.420733 +2021,4,18,1,New South Wales,150.617015,-34.430553 +2021,3,22,1,New South Wales,150.607914,-34.422333 +2021,6,9,1,New South Wales,150.523143,-34.46619 +2020,1,28,1,New South Wales,152.921155,-31.446913 +2024,5,7,1,New South Wales,152.133877,-32.200137 +2022,11,23,1,New South Wales,152.760068,-30.904021 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2021,7,8,1,New South Wales,153.101317,-29.48996 +2021,3,16,1,New South Wales,150.607641,-34.421976 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2022,7,29,1,New South Wales,152.892129,-31.467295 +2020,7,29,1,New South Wales,150.866027,-34.060984 +2022,11,25,1,New South Wales,152.794945,-30.901933 +2022,10,5,1,New South Wales,153.041296,-30.432252 +2021,5,4,1,New South Wales,150.627092,-34.389674 +2021,8,30,1,New South Wales,150.644733,-34.393126 +2023,3,24,1,New South Wales,153.104074,-29.480112 +2022,11,20,1,New South Wales,152.101406,-32.740177 +2021,3,2,1,New South Wales,153.554614,-28.58326 +2021,6,5,1,New South Wales,150.523439,-34.464645 +2023,9,7,1,New South Wales,150.784941,-33.719629 +2022,11,26,1,New South Wales,152.923008,-31.443005 +2021,6,2,1,New South Wales,150.639602,-34.39922 +2022,2,9,1,New South Wales,152.899797,-31.443525 +2020,12,4,1,New South Wales,149.957874,-36.307303 +2021,5,12,1,New South Wales,153.40537,-28.730918 +2021,7,1,1,New South Wales,153.45436,-28.669384 +2024,6,20,1,New South Wales,150.646065,-33.737637 +2020,11,1,1,New South Wales,149.96897,-36.58553 +2021,4,25,1,New South Wales,150.520597,-34.450686 +2020,5,28,1,New South Wales,152.31241,-28.74337 +2021,1,29,1,New South Wales,153.103693,-29.485767 +2021,6,23,1,New South Wales,150.625594,-34.38649 +2021,7,23,1,New South Wales,150.52159,-34.465689 +2020,5,10,1,New South Wales,150.102097,-33.776174 +2021,5,4,1,New South Wales,150.611755,-34.419631 +2024,1,16,1,New South Wales,153.066923,-30.900032 +2021,9,4,1,New South Wales,150.514492,-34.443341 +2020,8,15,1,New South Wales,152.100094,-32.77767 +2022,12,8,1,New South Wales,153.395309,-28.266227 +2023,6,5,1,New South Wales,153.31675,-28.94719 +2022,10,17,1,New South Wales,152.915097,-31.45705 +2023,7,16,1,New South Wales,153.096135,-29.485067 +2021,3,1,1,New South Wales,153.555957,-28.398844 +2023,10,25,1,New South Wales,150.785241,-33.70999 +2021,4,1,1,New South Wales,150.607556,-34.421911 +2023,3,17,1,New South Wales,153.363088,-28.814366 +2021,4,18,1,New South Wales,150.630829,-34.394047 +2021,9,26,1,New South Wales,150.848008,-34.051914 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2021,6,11,1,New South Wales,150.522093,-34.465979 +2020,11,12,1,New South Wales,153.324152,-28.855687 +2021,4,21,1,New South Wales,150.609467,-34.418983 +2021,4,14,1,New South Wales,152.884819,-31.440055 +2024,1,14,1,New South Wales,152.063293,-32.706257 +2021,6,10,1,New South Wales,150.518162,-34.453539 +2021,2,2,1,New South Wales,153.05924,-30.35989 +2020,12,9,1,New South Wales,150.84108,-34.155155 +2020,10,6,1,New South Wales,149.959933,-36.657162 +2021,5,10,1,New South Wales,150.628068,-34.389774 +2020,8,21,1,New South Wales,153.32644,-28.62251 +2021,5,14,1,New South Wales,150.616624,-34.434746 +2021,4,22,1,New South Wales,150.637069,-34.485323 +2021,5,20,1,New South Wales,150.608001,-34.433775 +2021,3,24,1,New South Wales,150.615658,-34.435413 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2022,9,21,1,New South Wales,152.929693,-31.458954 +2020,10,29,1,New South Wales,149.96897,-36.58553 +2020,1,23,1,New South Wales,152.35899,-31.92441 +2021,5,13,1,New South Wales,153.60144,-28.7273 +2021,9,19,1,New South Wales,150.525862,-34.469553 +2023,9,10,1,New South Wales,153.167331,-29.434421 +2023,9,12,1,New South Wales,151.760478,-32.647527 +2021,6,18,1,New South Wales,150.51903,-34.459859 +2021,8,23,1,New South Wales,149.354865,-36.1835 +2021,11,23,1,New South Wales,150.866027,-34.060984 +2020,10,11,1,New South Wales,149.959933,-36.657162 +2021,6,22,1,New South Wales,150.62799,-34.421038 +2022,11,11,1,New South Wales,153.298108,-28.981045 +2021,9,18,1,New South Wales,150.532023,-34.470661 +2020,10,30,1,New South Wales,149.96897,-36.58553 +2021,5,25,1,New South Wales,150.51647,-34.450043 +2022,1,22,1,New South Wales,152.109794,-32.764562 +2020,11,3,1,New South Wales,149.96897,-36.58553 +2021,11,28,1,New South Wales,150.615186,-34.440533 +2023,9,24,1,New South Wales,153.394689,-28.95968 +2023,9,26,1,New South Wales,150.677672,-34.286284 +2022,12,9,1,New South Wales,152.039933,-32.732249 +2020,10,26,1,New South Wales,152.907949,-31.46729 +2020,11,18,1,New South Wales,153.43286,-28.967328 +2020,11,11,1,New South Wales,150.010499,-36.556654 +2021,3,9,1,New South Wales,150.604275,-34.438886 +2021,6,3,1,New South Wales,150.639376,-34.399513 +2021,5,8,1,New South Wales,150.808193,-34.098193 +2020,10,14,1,New South Wales,152.441685,-32.090675 +2023,10,28,1,New South Wales,152.412476,-31.932588 +2020,10,2,1,New South Wales,152.995085,-28.473542 +2022,9,30,1,New South Wales,152.90497,-30.23916 +2022,8,10,1,New South Wales,150.68497,-34.35522 +2020,10,20,1,New South Wales,152.921042,-31.444017 +2020,5,14,1,New South Wales,152.898849,-31.473756 +2024,1,31,1,New South Wales,152.063628,-32.706583 +2020,5,1,1,New South Wales,153.33405,-28.821137 +2021,3,7,1,New South Wales,150.603363,-34.435379 +2021,4,28,1,New South Wales,150.624172,-34.388725 +2022,9,13,1,New South Wales,152.169266,-30.098262 +2021,5,4,1,New South Wales,150.616056,-34.436331 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2023,11,22,1,New South Wales,152.88511,-31.429867 +2021,6,24,1,New South Wales,150.520446,-34.465738 +2021,6,4,1,New South Wales,150.637041,-34.488235 +2024,7,16,1,New South Wales,152.384289,-31.92886 +2022,9,1,1,New South Wales,150.501042,-34.460092 +2021,9,30,1,New South Wales,153.462302,-28.187167 +2023,2,15,1,New South Wales,152.063309,-32.705944 +2022,4,4,1,New South Wales,150.821644,-34.101844 +2023,9,25,1,New South Wales,153.268126,-28.91324 +2021,5,27,1,New South Wales,150.522154,-34.465007 +2021,8,4,1,New South Wales,153.101285,-29.489988 +2021,8,14,1,New South Wales,151.82506,-32.0003 +2021,2,13,1,New South Wales,153.103207,-29.486933 +2022,9,19,1,New South Wales,152.466547,-32.020247 +2021,4,23,1,New South Wales,150.615679,-34.43123 +2021,10,29,1,New South Wales,152.103901,-32.7596 +2021,5,12,1,New South Wales,152.885439,-29.312999 +2020,11,4,1,New South Wales,153.103629,-29.488242 +2022,11,2,1,New South Wales,152.902259,-31.24177 +2020,8,25,1,New South Wales,150.840717,-34.061061 +2022,8,9,1,New South Wales,150.528272,-34.445507 +2024,2,24,1,New South Wales,150.784722,-33.713334 +2020,9,21,1,New South Wales,152.11135,-32.761807 +2020,10,17,1,New South Wales,149.921178,-36.633581 +2020,3,20,1,New South Wales,149.682001,-33.54208 +2021,3,15,1,New South Wales,152.414923,-31.933225 +2023,11,9,1,New South Wales,150.48328,-34.39947 +2023,8,11,1,New South Wales,150.784507,-33.71646 +2024,5,14,1,New South Wales,152.391142,-31.883749 +2021,8,3,1,New South Wales,150.602283,-34.425955 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2021,9,13,1,New South Wales,150.65707,-33.55194 +2021,5,11,1,New South Wales,150.516388,-34.470064 +2022,10,14,1,New South Wales,153.30453,-28.827266 +2022,7,24,1,New South Wales,152.063956,-32.706625 +2020,1,9,1,New South Wales,153.110906,-28.662926 +2020,10,18,1,New South Wales,149.950035,-36.601015 +2022,9,5,1,New South Wales,152.514175,-31.722408 +2021,6,28,1,New South Wales,153.067172,-30.92235 +2024,7,16,1,New South Wales,152.52534,-31.316773 +2021,5,7,1,New South Wales,150.63905,-34.491519 +2021,4,22,1,New South Wales,150.637403,-34.420563 +2021,5,6,1,New South Wales,150.608775,-34.455464 +2021,8,22,1,New South Wales,150.518344,-34.447016 +2023,6,10,1,New South Wales,152.06354,-32.706158 +2020,11,5,1,New South Wales,152.297859,-31.949129 +2022,11,13,1,New South Wales,152.070371,-32.707201 +2021,5,12,1,New South Wales,150.627305,-34.398288 +2021,11,3,1,New South Wales,150.452941,-34.45492 +2020,12,4,1,New South Wales,152.906972,-31.449394 +2022,11,25,1,New South Wales,150.02592,-33.79835 +2022,1,7,1,New South Wales,152.927101,-31.45508 +2021,8,12,1,New South Wales,150.522204,-34.4648 +2021,6,21,1,New South Wales,150.627963,-34.420831 +2022,5,16,1,New South Wales,150.975443,-34.030182 +2021,4,23,1,New South Wales,150.609456,-34.418992 +2021,7,5,1,New South Wales,150.513794,-34.44632 +2021,5,31,1,New South Wales,150.517331,-34.44631 +2023,7,13,1,New South Wales,150.790447,-34.143217 +2021,6,6,1,New South Wales,150.519154,-34.447213 +2021,5,30,1,New South Wales,150.639175,-34.491323 +2021,11,19,1,New South Wales,151.99365,-32.741689 +2021,5,18,1,New South Wales,150.60831,-34.4359 +2020,9,7,1,New South Wales,152.99593,-28.635486 +2021,6,5,1,New South Wales,150.534619,-34.459399 +2022,1,9,1,New South Wales,150.610662,-33.449163 +2021,10,18,1,New South Wales,152.456394,-28.523083 +2020,5,28,1,New South Wales,149.366511,-36.00829 +2024,2,25,1,New South Wales,152.072248,-32.71072 +2021,3,17,1,New South Wales,150.520587,-34.46685 +2021,5,14,1,New South Wales,150.629909,-34.395436 +2022,6,2,1,New South Wales,152.929449,-31.459553 +2020,1,6,1,New South Wales,151.24803,-31.50346 +2020,10,31,1,New South Wales,149.945227,-36.57753 +2020,7,21,1,New South Wales,153.497445,-28.636812 +2021,10,5,1,New South Wales,152.81796,-31.27746 +2021,10,11,1,New South Wales,153.293074,-28.86465 +2021,3,7,1,New South Wales,152.34022,-31.980755 +2021,4,22,1,New South Wales,150.637104,-34.485234 +2021,9,28,1,New South Wales,150.985126,-34.092358 +2021,5,12,1,New South Wales,150.604353,-34.438428 +2021,6,11,1,New South Wales,150.519909,-34.45261 +2020,6,22,1,New South Wales,153.103766,-29.485552 +2021,6,10,1,New South Wales,150.605694,-34.43758 +2021,9,22,1,New South Wales,150.52779,-34.462885 +2022,7,1,1,New South Wales,150.80858,-34.079579 +2021,9,29,1,New South Wales,153.607508,-28.702101 +2021,3,1,1,New South Wales,153.103666,-29.485282 +2023,2,12,1,New South Wales,152.0825,-32.73253 +2021,9,1,1,New South Wales,150.838015,-34.069652 +2021,1,3,1,New South Wales,153.103892,-29.484913 +2020,11,7,1,New South Wales,150.016942,-36.548959 +2021,3,24,1,New South Wales,152.09104,-32.73789 +2023,10,24,1,New South Wales,152.99595,-30.410432 +2023,6,16,1,New South Wales,152.88437,-31.4361 +2023,6,9,1,New South Wales,150.79647,-34.14344 +2022,11,28,1,New South Wales,152.734049,-30.84847 +2021,6,22,1,New South Wales,150.51376,-34.446364 +2024,4,17,1,New South Wales,151.69691,-32.63633 +2022,,,1,New South Wales,150.595561,-34.514 +2021,6,10,1,New South Wales,150.613331,-34.432663 +2021,5,5,1,New South Wales,150.522924,-34.45259 +2021,11,29,1,New South Wales,151.65081,-32.68143 +2022,,,1,New South Wales,149.990603,-31.729488 +2021,4,1,1,New South Wales,150.615635,-34.434294 +2022,9,24,1,New South Wales,153.109723,-29.490156 +2020,7,16,1,New South Wales,152.896124,-31.434419 +2021,4,20,1,New South Wales,150.636442,-34.485537 +2023,8,9,1,New South Wales,152.926912,-30.508033 +2020,8,3,1,New South Wales,152.79675,-31.126909 +2021,1,15,1,New South Wales,149.56184,-33.691224 +2023,7,21,1,New South Wales,153.496595,-28.694781 +2021,7,8,1,New South Wales,150.976265,-34.087623 +2023,2,27,1,New South Wales,152.792587,-31.640029 +2021,6,4,1,New South Wales,150.606656,-34.437824 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2021,4,22,1,New South Wales,150.61421,-34.429714 +2021,6,3,1,New South Wales,153.137517,-30.22316 +2021,5,31,1,New South Wales,150.607928,-34.436695 +2022,9,5,1,New South Wales,153.103768,-29.485627 +2022,11,26,1,New South Wales,152.794945,-30.901933 +2021,12,1,1,New South Wales,152.815272,-31.575315 +2023,3,1,1,New South Wales,152.06343,-32.706157 +2020,9,1,1,New South Wales,153.459894,-28.753289 +2022,7,29,1,New South Wales,152.79847,-31.146914 +2021,7,7,1,New South Wales,153.367926,-28.803722 +2023,9,15,1,New South Wales,152.818059,-31.650964 +2022,8,17,1,New South Wales,153.104133,-29.48056 +2021,5,9,1,New South Wales,150.519451,-34.45115 +2021,10,7,1,New South Wales,153.110924,-29.488564 +2021,4,24,1,New South Wales,150.60565,-34.423488 +2021,4,17,1,New South Wales,150.616581,-34.430111 +2021,4,5,1,New South Wales,150.520298,-34.446812 +2020,1,10,1,New South Wales,152.895506,-29.003938 +2021,4,2,1,New South Wales,150.661697,-34.458321 +2024,3,22,1,New South Wales,152.372737,-31.923965 +2021,5,7,1,New South Wales,150.60908,-34.455452 +2021,9,2,1,New South Wales,150.514187,-34.447391 +2021,6,11,1,New South Wales,150.610564,-34.430878 +2022,9,20,1,New South Wales,153.42258,-29.019311 +2022,5,11,1,New South Wales,152.904136,-31.44455 +2021,11,10,1,New South Wales,152.988604,-28.553913 +2021,6,23,1,New South Wales,150.602648,-34.418903 +2021,6,3,1,New South Wales,150.519526,-34.447148 +2022,4,14,1,New South Wales,153.564604,-28.380419 +2021,8,23,1,New South Wales,150.514343,-34.447268 +2021,9,19,1,New South Wales,150.77808,-33.53422 +2021,7,2,1,New South Wales,151.954476,-32.656205 +2022,8,30,1,New South Wales,150.841759,-34.054193 +2021,10,30,1,New South Wales,153.101381,-29.48976 +2020,10,23,1,New South Wales,149.923643,-36.618562 +2021,11,20,1,New South Wales,153.304861,-28.817267 +2024,2,6,1,New South Wales,150.78569,-33.709919 +2020,11,14,1,New South Wales,150.004563,-36.508695 +2020,3,31,1,New South Wales,150.066868,-33.78423 +2022,11,11,1,New South Wales,153.110063,-30.302736 +2021,7,4,1,New South Wales,150.646725,-34.39576 +2021,5,31,1,New South Wales,150.523913,-34.46406 +2021,11,27,1,New South Wales,153.417136,-28.890397 +2021,8,13,1,New South Wales,150.519107,-34.472707 +2021,5,25,1,New South Wales,150.526796,-34.469644 +2022,8,30,1,New South Wales,150.885519,-34.018768 +2021,5,4,1,New South Wales,150.608187,-34.456615 +2023,9,3,1,New South Wales,152.897978,-31.427246 +2021,4,22,1,New South Wales,150.605015,-34.42325 +2021,4,16,1,New South Wales,150.615169,-34.431175 +2022,8,11,1,New South Wales,150.525893,-34.460056 +2023,11,4,1,New South Wales,150.785292,-33.715662 +2021,6,26,1,New South Wales,150.627579,-34.386663 +2020,9,12,1,New South Wales,153.10372,-29.485601 +2021,4,29,1,New South Wales,150.615784,-34.435947 +2020,10,6,1,New South Wales,152.823287,-31.240076 +2021,6,6,1,New South Wales,150.808222,-34.098125 +2023,10,24,1,New South Wales,152.200143,-32.231881 +2021,8,17,1,New South Wales,150.639402,-34.395493 +2023,5,5,1,New South Wales,152.063956,-32.706625 +2021,5,12,1,New South Wales,150.516897,-34.453992 +2024,2,12,1,New South Wales,150.785361,-33.716774 +2021,2,20,1,New South Wales,153.292666,-28.86473 +2021,6,20,1,New South Wales,150.519836,-34.452492 +2021,9,20,1,New South Wales,153.10401,-29.485324 +2023,11,13,1,New South Wales,152.628851,-31.428953 +2021,6,23,1,New South Wales,150.644297,-34.393144 +2022,1,3,1,New South Wales,152.929623,-29.726157 +2021,6,3,1,New South Wales,150.639681,-34.399114 +2020,12,1,1,New South Wales,152.848198,-31.060477 +2024,1,29,1,New South Wales,152.364617,-31.877903 +2021,10,29,1,New South Wales,153.10078,-29.489979 +2020,12,8,1,New South Wales,152.924326,-31.459313 +2022,4,5,1,New South Wales,150.556371,-33.477109 +2020,11,29,1,New South Wales,153.374763,-28.252334 +2020,9,16,1,New South Wales,150.100825,-33.77802 +2022,4,24,1,New South Wales,152.00351,-32.728513 +2021,6,14,1,New South Wales,150.515829,-34.446695 +2021,5,26,1,New South Wales,150.793817,-34.145476 +2021,5,9,1,New South Wales,150.632594,-34.418243 +2021,5,19,1,New South Wales,150.630528,-34.395087 +2023,8,7,1,New South Wales,153.522085,-28.193537 +2023,9,11,1,New South Wales,152.923435,-31.461008 +2024,2,15,1,New South Wales,150.78529,-33.715615 +2022,1,16,1,New South Wales,150.942921,-34.113947 +2023,6,23,1,New South Wales,152.902481,-31.241501 +2021,7,19,1,New South Wales,150.627962,-34.42047 +2024,2,26,1,New South Wales,149.639164,-29.070921 +2021,10,17,1,New South Wales,153.004171,-28.931463 +2020,12,13,1,New South Wales,153.103795,-29.484885 +2023,8,27,1,New South Wales,152.911238,-31.436776 +2023,6,30,1,New South Wales,152.361869,-31.979319 +2022,9,10,1,New South Wales,152.373486,-31.915123 +2021,6,7,1,New South Wales,150.626774,-34.389388 +2021,5,12,1,New South Wales,150.609289,-34.420656 +2021,8,3,1,New South Wales,150.626634,-34.390098 +2021,1,17,1,New South Wales,153.39337,-28.269058 +2024,6,18,1,New South Wales,153.032491,-30.380692 +2021,3,16,1,New South Wales,150.607641,-34.421976 +2021,4,22,1,New South Wales,150.605015,-34.423259 +2024,8,21,1,New South Wales,152.388945,-31.912858 +2024,1,6,1,New South Wales,153.096011,-29.484805 +2020,10,19,1,New South Wales,153.109476,-29.490479 +2021,5,1,1,New South Wales,150.624265,-34.388898 +2020,11,2,1,New South Wales,149.945227,-36.57753 +2021,10,20,1,New South Wales,152.034848,-32.765385 +2020,10,23,1,New South Wales,149.945227,-36.57753 +2021,5,8,1,New South Wales,150.627853,-34.390077 +2020,3,16,1,New South Wales,153.093828,-29.488632 +2021,6,28,1,New South Wales,150.627381,-34.420269 +2021,5,29,1,New South Wales,150.518157,-34.451872 +2021,8,20,1,New South Wales,150.647893,-34.399506 +2022,9,27,1,New South Wales,150.848005,-34.069372 +2021,6,9,1,New South Wales,150.609541,-34.430876 +2022,11,21,1,New South Wales,150.860756,-34.038597 +2021,4,27,1,New South Wales,150.624294,-34.400565 +2024,1,3,1,New South Wales,150.783179,-33.718594 +2021,4,26,1,New South Wales,150.604185,-34.437839 +2024,7,1,1,New South Wales,152.077233,-32.722432 +2023,9,11,1,New South Wales,151.060059,-29.741653 +2021,7,24,1,New South Wales,150.630841,-34.420643 +2023,2,26,1,New South Wales,152.878917,-31.44848 +2022,4,28,1,New South Wales,153.104047,-29.477642 +2021,6,17,1,New South Wales,150.628462,-34.420489 +2020,1,23,1,New South Wales,153.104181,-29.485197 +2023,7,14,1,New South Wales,152.718486,-30.45099 +2024,2,18,1,New South Wales,150.861647,-29.609175 +2021,12,2,1,New South Wales,153.101767,-29.489778 +2020,11,3,1,New South Wales,149.999247,-36.565645 +2021,6,7,1,New South Wales,150.616079,-34.433627 +2021,8,15,1,New South Wales,151.517399,-29.288806 +2021,6,18,1,New South Wales,150.622542,-34.38442 +2021,7,23,1,New South Wales,150.172414,-33.316802 +2020,10,26,1,New South Wales,153.364275,-28.834226 +2021,1,23,1,New South Wales,153.479034,-28.248718 +2021,5,15,1,New South Wales,150.655321,-34.459115 +2021,5,30,1,New South Wales,150.64053,-34.396768 +2023,5,5,1,New South Wales,152.373872,-31.914366 +2020,11,16,1,New South Wales,153.316981,-28.949626 +2021,6,2,1,New South Wales,150.519549,-34.447131 +2021,5,21,1,New South Wales,150.598983,-34.428739 +2023,8,19,1,New South Wales,150.788887,-34.202014 +2021,9,11,1,New South Wales,151.045811,-34.02903 +2023,10,30,1,New South Wales,152.192089,-32.216754 +2020,12,11,1,New South Wales,149.960499,-36.288011 +2024,8,19,1,New South Wales,152.884499,-30.539676 +2022,11,19,1,New South Wales,151.446055,-32.859866 +2020,10,25,1,New South Wales,149.988655,-36.56931 +2022,9,28,1,New South Wales,151.878634,-32.729723 +2020,5,9,1,New South Wales,152.930803,-29.726688 +2023,5,11,1,New South Wales,150.737082,-34.302397 +2021,4,23,1,New South Wales,150.609319,-34.419214 +2020,1,29,1,New South Wales,152.915647,-31.467445 +2023,3,24,1,New South Wales,153.110055,-29.490245 +2021,5,17,1,New South Wales,150.531065,-34.471065 +2021,3,25,1,New South Wales,153.331243,-28.821749 +2021,1,28,1,New South Wales,152.907863,-31.450283 +2020,11,18,1,New South Wales,150.927685,-33.425109 +2021,1,8,1,New South Wales,153.109573,-29.490418 +2023,7,3,1,New South Wales,152.928241,-31.464631 +2022,4,20,1,New South Wales,153.110533,-29.490012 +2024,4,28,1,New South Wales,152.079503,-32.730454 +2021,3,27,1,New South Wales,150.533208,-34.479601 +2021,9,15,1,New South Wales,150.514348,-34.444889 +2021,12,1,1,New South Wales,150.123128,-31.071726 +2020,11,1,1,New South Wales,152.911462,-31.455786 +2020,11,6,1,New South Wales,149.994744,-36.560944 +2021,7,12,1,New South Wales,153.27578,-28.931367 +2020,11,3,1,New South Wales,149.994744,-36.560944 +2020,8,26,1,New South Wales,152.774386,-31.255899 +2021,6,26,1,New South Wales,150.644,-34.391308 +2021,6,30,1,New South Wales,150.629286,-34.388986 +2023,6,7,1,New South Wales,153.48996,-28.6791 +2020,11,8,1,New South Wales,150.021287,-36.554124 +2020,11,2,1,New South Wales,152.924273,-31.45801 +2020,12,8,1,New South Wales,152.924326,-31.459313 +2021,5,3,1,New South Wales,150.521653,-34.466141 +2021,2,22,1,New South Wales,152.926847,-31.454825 +2023,12,7,1,New South Wales,153.104847,-29.489699 +2023,10,13,1,New South Wales,152.53302,-30.22619 +2023,7,4,1,New South Wales,152.92375,-31.456391 +2020,7,13,1,New South Wales,153.104155,-29.485197 +2020,7,28,1,New South Wales,152.590372,-31.561433 +2020,1,15,1,New South Wales,150.79698,-33.47377 +2021,4,29,1,New South Wales,150.615813,-34.436461 +2021,5,12,1,New South Wales,150.617086,-34.433782 +2024,3,2,1,New South Wales,150.78593,-33.70391 +2021,7,2,1,New South Wales,150.596895,-34.414265 +2021,4,24,1,New South Wales,150.630598,-34.38875 +2021,6,8,1,New South Wales,150.615064,-34.43257 +2023,6,5,1,New South Wales,150.80004,-34.17924 +2023,12,16,1,New South Wales,151.925939,-32.06422 +2021,6,20,1,New South Wales,150.62796,-34.420948 +2021,3,10,1,New South Wales,150.525011,-34.4608 +2020,11,8,1,New South Wales,150.809456,-34.101953 +2023,6,13,1,New South Wales,153.103039,-29.489409 +2020,5,24,1,New South Wales,153.003705,-29.184277 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2020,10,26,1,New South Wales,153.273277,-28.88827 +2021,5,6,1,New South Wales,150.632705,-34.41856 +2021,5,20,1,New South Wales,150.530207,-34.470976 +2022,,,1,New South Wales,150.591027,-34.455 +2023,7,12,1,New South Wales,153.103854,-29.489568 +2024,1,16,1,New South Wales,152.632916,-31.6188 +2022,5,21,1,New South Wales,152.383658,-31.923677 +2021,9,26,1,New South Wales,150.973034,-34.123104 +2021,10,20,1,New South Wales,151.713786,-32.625098 +2021,5,25,1,New South Wales,150.631237,-34.420092 +2021,6,29,1,New South Wales,150.522413,-34.465814 +2022,11,6,1,New South Wales,151.578331,-33.03525 +2021,5,11,1,New South Wales,150.637356,-34.423771 +2021,9,17,1,New South Wales,153.066909,-30.35239 +2021,11,20,1,New South Wales,152.386997,-28.907753 +2021,6,28,1,New South Wales,150.627391,-34.42027 +2021,5,5,1,New South Wales,150.637334,-34.423789 +2021,3,11,1,New South Wales,150.658143,-34.456285 +2021,3,10,1,New South Wales,150.517987,-34.447315 +2021,5,1,1,New South Wales,150.521596,-34.466961 +2020,7,20,1,New South Wales,153.465972,-28.673632 +2022,6,27,1,New South Wales,153.104074,-29.481471 +2020,11,7,1,New South Wales,150.01112,-36.547428 +2021,6,2,1,New South Wales,150.521604,-34.465942 +2021,4,18,1,New South Wales,152.871988,-31.479069 +2022,8,7,1,New South Wales,152.140079,-32.730521 +2021,11,14,1,New South Wales,150.909295,-33.998781 +2020,11,,1,New South Wales,151.729037,-32.245115 +2023,10,30,1,New South Wales,150.989896,-34.027813 +2021,5,4,1,New South Wales,150.606644,-34.457694 +2021,4,27,1,New South Wales,150.604649,-34.452831 +2021,7,1,1,New South Wales,150.639724,-34.397987 +2021,7,19,1,New South Wales,150.623138,-34.383755 +2023,10,4,1,New South Wales,152.077045,-32.722541 +2021,4,5,1,New South Wales,150.5199,-34.44556 +2020,11,17,1,New South Wales,153.096564,-29.485669 +2021,3,26,1,New South Wales,150.517273,-34.451565 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2021,6,6,1,New South Wales,150.626465,-34.389157 +2024,8,12,1,New South Wales,150.992021,-34.005214 +2021,9,16,1,New South Wales,150.520046,-34.449431 +2021,5,8,1,New South Wales,150.621898,-34.397976 +2020,10,30,1,New South Wales,149.968131,-36.578885 +2021,12,9,1,New South Wales,153.350245,-28.71528 +2020,9,9,1,New South Wales,150.0625,-31.1479 +2021,4,19,1,New South Wales,153.60724,-28.664312 +2023,8,24,1,New South Wales,150.761824,-34.194043 +2020,10,20,1,New South Wales,149.947183,-36.617465 +2021,4,12,1,New South Wales,152.7768,-30.8494 +2023,10,14,1,New South Wales,153.103323,-29.489909 +2021,6,9,1,New South Wales,150.610476,-34.430533 +2020,10,18,1,New South Wales,149.947183,-36.617465 +2021,5,8,1,New South Wales,150.609224,-34.420637 +2021,8,8,1,New South Wales,150.791761,-34.196498 +2021,8,21,1,New South Wales,150.61229,-34.437132 +2021,9,12,1,Queensland,153.332771,-28.231959 +2020,4,2,1,New South Wales,153.103851,-29.485431 +2021,7,12,1,New South Wales,150.642858,-34.395596 +2022,12,3,1,New South Wales,152.926006,-31.453038 +2021,4,13,1,New South Wales,150.659144,-34.459017 +2022,11,20,1,New South Wales,153.313005,-28.823549 +2021,5,2,1,New South Wales,150.637312,-34.488664 +2022,6,22,1,New South Wales,151.088534,-33.404535 +2021,7,9,1,New South Wales,153.184815,-28.889358 +2020,2,7,1,New South Wales,153.294408,-28.994175 +2024,7,23,1,New South Wales,153.428417,-28.975068 +2022,1,10,1,New South Wales,153.110538,-29.489956 +2021,10,11,1,New South Wales,153.262628,-28.951265 +2021,8,6,1,New South Wales,153.101172,-29.489895 +2021,9,17,1,New South Wales,152.133978,-30.090796 +2023,1,6,1,New South Wales,153.101172,-29.490072 +2021,5,13,1,New South Wales,150.522601,-34.464989 +2021,4,17,1,New South Wales,150.627458,-34.386336 +2021,6,17,1,New South Wales,150.603838,-34.426752 +2020,10,23,1,New South Wales,149.947183,-36.617465 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2021,9,11,1,New South Wales,151.81336,-32.35301 +2020,10,1,1,New South Wales,153.296745,-28.871902 +2021,5,9,1,New South Wales,150.521237,-34.466584 +2021,5,10,1,New South Wales,150.63916,-34.491873 +2023,8,19,1,New South Wales,150.983825,-34.094879 +2021,5,3,1,New South Wales,150.627059,-34.389682 +2020,4,17,1,New South Wales,153.103787,-29.48558 +2020,10,22,1,New South Wales,149.923643,-36.618562 +2020,2,1,1,New South Wales,152.643455,-30.536332 +2020,3,23,1,New South Wales,153.102325,-29.489003 +2023,10,29,1,New South Wales,152.19096,-32.219628 +2020,12,,1,New South Wales,152.909424,-31.176289 +2022,8,10,1,New South Wales,153.104165,-29.478706 +2021,3,17,1,New South Wales,150.635239,-34.488038 +2021,9,10,1,New South Wales,150.514569,-34.447354 +2020,8,3,1,New South Wales,152.797748,-31.125973 +2021,5,30,1,New South Wales,150.522923,-34.452248 +2020,1,19,1,New South Wales,152.174569,-32.663575 +2022,6,23,1,New South Wales,152.612016,-28.328122 +2021,4,28,1,New South Wales,150.66403,-34.457894 +2021,6,1,1,New South Wales,150.630452,-34.420906 +2024,3,13,1,New South Wales,152.917865,-31.470418 +2023,9,30,1,New South Wales,153.028282,-28.532328 +2024,3,4,1,New South Wales,150.784483,-33.713367 +2023,1,23,1,New South Wales,153.324519,-28.83284 +2023,12,12,1,New South Wales,152.917449,-31.474536 +2023,6,7,1,New South Wales,150.883896,-34.058449 +2021,12,22,1,New South Wales,153.555798,-28.3986 +2020,10,29,1,New South Wales,149.949397,-36.554597 +2021,9,17,1,New South Wales,153.109392,-30.298612 +2024,1,27,1,New South Wales,152.063336,-32.706158 +2020,1,24,1,New South Wales,152.401277,-31.937298 +2024,4,5,1,New South Wales,152.391869,-31.8767 +2021,5,13,1,New South Wales,150.60425,-34.437867 +2023,9,7,1,New South Wales,152.897985,-31.474794 +2021,5,25,1,New South Wales,150.631016,-34.388209 +2020,10,19,1,New South Wales,149.931009,-36.595007 +2021,6,5,1,New South Wales,150.640025,-34.397714 +2020,9,4,1,New South Wales,150.807228,-34.068105 +2021,1,13,1,New South Wales,152.898735,-31.13339 +2020,8,24,1,New South Wales,152.804031,-31.666297 +2021,4,12,1,New South Wales,152.059278,-32.739099 +2021,4,26,1,New South Wales,153.087946,-30.355053 +2020,7,28,1,New South Wales,153.104171,-29.485039 +2023,8,3,1,New South Wales,152.209167,-31.560626 +2021,7,31,1,New South Wales,150.601496,-34.424939 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2022,1,8,1,New South Wales,153.087946,-30.355053 +2023,9,24,1,New South Wales,153.434738,-28.65498 +2021,12,13,1,New South Wales,153.555745,-28.590283 +2020,12,10,1,New South Wales,153.555948,-28.398935 +2021,5,7,1,New South Wales,150.627351,-34.390121 +2022,10,4,1,New South Wales,153.041203,-30.433153 +2022,8,2,1,New South Wales,152.909653,-31.437192 +2021,7,9,1,New South Wales,150.598363,-34.412761 +2022,4,9,1,New South Wales,152.300422,-31.948252 +2021,1,16,1,New South Wales,150.274842,-33.281424 +2023,9,19,1,New South Wales,150.985389,-34.090763 +2020,9,12,1,New South Wales,150.02096,-34.80422 +2021,4,10,1,New South Wales,150.522812,-34.452336 +2021,4,25,1,New South Wales,150.638301,-34.486032 +2023,12,12,1,New South Wales,153.093125,-29.492657 +2023,8,24,1,New South Wales,150.785426,-33.705608 +2021,4,25,1,New South Wales,150.637685,-34.486264 +2020,10,29,1,New South Wales,149.958935,-36.568735 +2021,4,25,1,New South Wales,150.629483,-34.388567 +2020,4,28,1,New South Wales,153.315708,-28.826058 +2020,12,23,1,New South Wales,152.17453,-32.660961 +2021,10,25,1,New South Wales,153.108156,-29.490614 +2021,2,24,1,New South Wales,152.900022,-29.631247 +2021,3,24,1,New South Wales,150.514272,-34.445969 +2020,2,27,1,New South Wales,152.245658,-31.646258 +2020,11,2,1,New South Wales,149.984095,-36.575978 +2020,10,12,1,New South Wales,149.959933,-36.657162 +2021,6,16,1,New South Wales,150.617249,-34.433812 +2022,7,15,1,New South Wales,152.99891,-28.52429 +2021,4,27,1,New South Wales,150.624391,-34.400594 +2021,10,6,1,New South Wales,152.892072,-31.445966 +2021,3,5,1,New South Wales,150.603597,-34.436358 +2021,4,20,1,New South Wales,150.606948,-34.454265 +2020,3,8,1,New South Wales,152.927437,-31.465659 +2021,5,31,1,New South Wales,150.630398,-34.420887 +2022,8,25,1,New South Wales,152.637651,-30.168247 +2021,2,13,1,New South Wales,153.109471,-29.490451 +2020,10,6,1,New South Wales,149.959933,-36.657162 +2022,12,16,1,New South Wales,153.300729,-28.821307 +2020,6,30,1,New South Wales,150.658889,-33.526932 +2020,5,21,1,New South Wales,152.94966,-31.167489 +2021,7,13,1,New South Wales,150.627316,-34.420647 +2021,4,22,1,New South Wales,150.637394,-34.42049 +2020,10,28,1,New South Wales,149.984095,-36.575978 +2022,1,14,1,New South Wales,153.103849,-29.485464 +2021,5,21,1,New South Wales,150.631009,-34.388046 +2020,11,16,1,New South Wales,153.316981,-28.949626 +2020,5,18,1,New South Wales,152.138173,-31.402559 +2020,11,12,1,New South Wales,153.377742,-28.249381 +2022,10,26,1,New South Wales,153.078648,-30.353926 +2021,3,18,1,New South Wales,150.525472,-34.459908 +2023,9,27,1,New South Wales,153.475886,-28.747793 +2020,2,27,1,New South Wales,152.246956,-31.646112 +2021,1,13,1,New South Wales,153.552556,-28.586471 +2021,6,7,1,New South Wales,150.629486,-34.420833 +2023,9,30,1,New South Wales,151.715401,-32.669555 +2022,9,25,1,New South Wales,153.326444,-28.827968 +2023,8,6,1,New South Wales,150.784029,-33.717737 +2023,8,29,1,New South Wales,149.846471,-33.619362 +2021,5,11,1,New South Wales,150.611985,-34.457807 +2021,2,2,1,New South Wales,152.890912,-31.436314 +2021,6,15,1,New South Wales,150.515914,-34.44675 +2020,11,16,1,New South Wales,153.316984,-28.937089 +2020,10,,1,New South Wales,151.688632,-30.495214 +2020,9,19,1,New South Wales,153.002582,-28.619644 +2020,8,19,1,New South Wales,153.104085,-29.48424 +2022,11,18,1,New South Wales,152.794945,-30.901933 +2023,3,25,1,New South Wales,150.842335,-34.068546 +2020,1,12,1,New South Wales,152.75076,-29.36407 +2020,1,9,1,New South Wales,153.336688,-28.868027 +2020,8,10,1,New South Wales,151.6662,-30.501562 +2020,10,12,1,New South Wales,149.930096,-36.638123 +2020,11,29,1,New South Wales,149.959252,-36.447255 +2023,8,15,1,New South Wales,150.885733,-29.390288 +2023,6,10,1,New South Wales,153.346432,-28.833926 +2020,11,28,1,New South Wales,149.959252,-36.447255 +2021,6,2,1,New South Wales,150.604736,-34.427329 +2021,11,8,1,New South Wales,150.808987,-34.208693 +2021,10,25,1,New South Wales,150.589363,-33.458862 +2023,5,23,1,New South Wales,153.103468,-29.485608 +2021,7,11,1,New South Wales,150.626332,-34.421178 +2021,7,7,1,New South Wales,150.630981,-34.388262 +2022,11,12,1,New South Wales,152.105332,-32.72777 +2020,5,4,1,New South Wales,152.89309,-31.45491 +2023,9,14,1,New South Wales,150.785184,-33.713965 +2021,6,14,1,New South Wales,150.611723,-34.432983 +2021,4,24,1,New South Wales,150.614746,-34.431121 +2021,7,21,1,New South Wales,150.623079,-34.38315 +2024,1,12,1,New South Wales,153.101226,-29.490091 +2023,6,12,1,New South Wales,152.063617,-32.706522 +2022,6,15,1,New South Wales,153.3,-28.819705 +2021,7,3,1,New South Wales,150.523235,-34.466002 +2020,10,29,1,New South Wales,149.999247,-36.565645 +2021,2,23,1,New South Wales,153.29907,-28.73532 +2023,5,17,1,New South Wales,153.109374,-29.490469 +2023,9,5,1,New South Wales,152.627388,-31.229622 +2021,1,11,1,New South Wales,152.415413,-31.933201 +2021,5,2,1,New South Wales,150.608778,-34.436279 +2024,1,22,1,New South Wales,153.099734,-29.491492 +2022,6,,1,New South Wales,153.599218,-28.719867 +2020,10,30,1,New South Wales,149.96897,-36.58553 +2020,1,9,1,New South Wales,150.549032,-34.516267 +2023,6,23,1,New South Wales,153.076344,-28.556276 +2023,7,6,1,New South Wales,152.785931,-31.631601 +2020,1,4,1,New South Wales,152.824491,-29.505868 +2023,1,31,1,New South Wales,153.314983,-28.949201 +2021,7,24,1,New South Wales,150.60248,-34.41982 +2020,5,6,1,New South Wales,153.103854,-29.485471 +2021,5,7,1,New South Wales,150.519992,-34.435799 +2022,8,31,1,New South Wales,153.314983,-28.949201 +2022,11,18,1,New South Wales,153.306862,-28.822956 +2021,5,20,1,New South Wales,150.515351,-34.451057 +2022,9,18,1,South Australia,138.702303,-34.907289 +2023,7,10,1,New South Wales,153.108103,-29.490689 +2023,11,18,1,New South Wales,152.452215,-31.939935 +2021,3,31,1,New South Wales,153.314983,-28.949201 +2021,6,15,1,New South Wales,150.514834,-34.446467 +2022,12,31,1,New South Wales,153.314983,-28.949201 +2023,12,10,1,New South Wales,150.993396,-33.979341 +2023,6,21,1,New South Wales,149.995012,-36.511751 +2021,6,12,1,New South Wales,150.613658,-34.431885 +2021,10,7,1,New South Wales,153.093576,-29.48863 +2022,11,11,1,New South Wales,153.036418,-30.287717 +2021,4,24,1,New South Wales,150.630406,-34.388629 +2021,4,24,1,New South Wales,150.615523,-34.435554 +2020,11,22,1,New South Wales,152.944433,-29.346563 +2020,8,4,1,New South Wales,152.810059,-31.127661 +2022,8,8,1,New South Wales,150.529949,-34.430384 +2021,6,10,1,New South Wales,150.525365,-34.458373 +2020,9,15,1,New South Wales,153.002831,-29.183263 +2021,5,29,1,New South Wales,150.631284,-34.419966 +2021,4,23,1,New South Wales,150.617141,-34.434152 +2023,12,2,1,New South Wales,152.153525,-32.731435 +2021,12,,1,New South Wales,149.320945,-36.104836 +2021,4,19,1,New South Wales,150.637476,-34.421817 +2020,1,15,1,New South Wales,153.073663,-30.354754 +2024,3,11,1,New South Wales,150.784893,-33.713084 +2021,6,29,1,New South Wales,150.644489,-34.393653 +2021,5,14,1,New South Wales,150.616729,-34.434875 +2022,11,25,1,New South Wales,152.794945,-30.901933 +2021,10,,1,New South Wales,149.265382,-36.201217 +2020,9,15,1,New South Wales,153.057556,-29.876788 +2022,12,2,1,New South Wales,152.794945,-30.901933 +2020,9,3,1,New South Wales,153.002148,-29.181602 +2024,9,7,1,New South Wales,152.352616,-31.992018 +2020,5,3,1,New South Wales,150.047602,-33.759557 +2022,8,10,1,New South Wales,153.103725,-29.485655 +2021,6,9,1,New South Wales,150.518582,-34.447805 +2021,6,9,1,New South Wales,150.518249,-34.453523 +2023,9,24,1,New South Wales,150.786035,-33.706047 +2021,5,4,1,New South Wales,150.638521,-34.490598 +2021,6,16,1,New South Wales,150.522581,-34.451664 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2021,8,30,1,New South Wales,153.564816,-28.38843 +2020,10,29,1,New South Wales,149.984095,-36.575978 +2021,5,31,1,New South Wales,150.630953,-34.388892 +2021,6,11,1,New South Wales,150.613311,-34.432617 +2022,2,7,1,New South Wales,153.108135,-29.490619 +2021,5,15,1,New South Wales,150.52026,-34.45397 +2021,3,9,1,New South Wales,152.905588,-31.436936 +2020,2,11,1,New South Wales,150.807085,-34.109203 +2021,5,31,1,New South Wales,150.525052,-34.453508 +2024,1,18,1,New South Wales,150.784341,-33.715149 +2023,6,29,1,New South Wales,152.198991,-32.217431 +2020,7,16,1,New South Wales,152.818487,-31.135405 +2021,3,23,1,New South Wales,153.1038,-29.485576 +2020,11,1,1,New South Wales,149.976368,-36.555504 +2021,4,30,1,New South Wales,150.610301,-34.419098 +2021,12,26,1,New South Wales,151.692287,-32.6911 +2024,1,4,1,New South Wales,150.785793,-33.705959 +2020,11,1,1,New South Wales,149.976368,-36.555504 +2021,8,13,1,New South Wales,150.632507,-34.418268 +2023,9,30,1,New South Wales,152.89841,-30.46426 +2020,11,3,1,New South Wales,149.968131,-36.578885 +2021,5,26,1,New South Wales,150.522167,-34.464953 +2021,3,25,1,New South Wales,150.615412,-34.435633 +2021,11,15,1,New South Wales,152.821141,-31.458992 +2020,10,16,1,New South Wales,149.930096,-36.638123 +2022,12,12,1,New South Wales,152.065638,-32.712519 +2021,5,13,1,New South Wales,150.628844,-34.389627 +2021,6,18,1,New South Wales,150.604213,-34.438786 +2021,5,22,1,New South Wales,150.529098,-34.471314 +2021,4,18,1,New South Wales,150.640211,-34.415875 +2023,6,11,1,New South Wales,152.978062,-29.039437 +2021,3,31,1,New South Wales,150.527522,-34.457218 +2021,7,18,1,New South Wales,150.627993,-34.420939 +2021,5,28,1,New South Wales,150.632313,-34.388098 +2021,5,20,1,New South Wales,150.639158,-34.493108 +2021,4,28,1,New South Wales,150.624495,-34.388812 +2020,11,17,1,New South Wales,150.004563,-36.508695 +2021,4,27,1,New South Wales,150.635402,-34.418216 +2021,5,9,1,New South Wales,150.606354,-34.438116 +2021,5,17,1,New South Wales,150.520443,-34.454064 +2021,4,27,1,New South Wales,150.663945,-34.457793 +2023,9,13,1,New South Wales,153.110012,-29.490278 +2024,7,16,1,New South Wales,152.827538,-30.921398 +2022,9,26,1,New South Wales,153.506361,-28.39692 +2020,12,,1,New South Wales,150.600987,-34.533564 +2021,7,14,1,New South Wales,150.243084,-33.238286 +2022,8,2,1,New South Wales,150.792881,-34.143677 +2020,5,31,1,New South Wales,153.31387,-28.821064 +2021,5,7,1,New South Wales,150.520016,-34.435745 +2022,12,31,1,New South Wales,152.897138,-31.474862 +2021,4,13,1,New South Wales,150.602295,-34.429742 +2020,5,,1,New South Wales,152.090609,-32.72981 +2021,5,22,1,New South Wales,150.639133,-34.493225 +2021,4,25,1,New South Wales,150.610322,-34.419117 +2021,10,4,1,New South Wales,150.972886,-34.122038 +2021,6,21,1,New South Wales,150.520218,-34.465716 +2020,5,23,1,New South Wales,151.991909,-32.721011 +2021,5,14,1,New South Wales,150.527712,-34.466634 +2021,5,21,1,New South Wales,150.529876,-34.471149 +2021,9,16,1,New South Wales,150.63922,-34.39732 +2023,4,6,1,New South Wales,153.107899,-29.490404 +2021,1,31,1,New South Wales,150.897168,-33.935974 +2021,2,14,1,New South Wales,153.108199,-29.49017 +2020,4,27,1,New South Wales,150.238841,-33.580581 +2021,5,8,1,New South Wales,150.604259,-34.426868 +2023,8,23,1,New South Wales,152.24412,-32.22325 +2021,5,16,1,New South Wales,150.600437,-34.427352 +2021,4,25,1,New South Wales,152.18648,-31.66596 +2021,6,7,1,New South Wales,150.608561,-34.433958 +2024,1,14,1,New South Wales,152.15755,-32.72384 +2021,6,23,1,New South Wales,150.625642,-34.386337 +2021,9,17,1,New South Wales,152.061956,-32.71137 +2021,1,14,1,New South Wales,150.102125,-33.779186 +2020,10,12,1,New South Wales,153.592767,-28.744283 +2023,12,29,1,New South Wales,150.786675,-33.703454 +2023,12,4,1,New South Wales,152.088396,-32.737588 +2022,12,31,1,New South Wales,153.10394,-29.489573 +2023,3,1,1,New South Wales,151.559687,-30.400739 +2020,4,6,1,New South Wales,153.093098,-29.488574 +2023,11,27,1,New South Wales,152.076939,-32.72274 +2020,10,21,1,New South Wales,149.913134,-36.588285 +2021,9,25,1,New South Wales,152.832,-31.26349 +2020,10,23,1,New South Wales,149.950035,-36.601015 +2020,10,11,1,New South Wales,149.986384,-36.655712 +2021,2,2,1,New South Wales,151.168531,-33.585893 +2020,10,24,1,New South Wales,149.467452,-33.676849 +2020,10,2,1,New South Wales,152.928611,-31.46018 +2020,10,23,1,New South Wales,149.96897,-36.58553 +2022,10,1,1,New South Wales,153.095034,-29.378186 +2021,11,12,1,New South Wales,153.104144,-29.4812 +2022,12,3,1,New South Wales,153.359672,-28.644672 +2020,10,22,1,New South Wales,149.923643,-36.618562 +2021,5,13,1,New South Wales,150.637301,-34.423788 +2021,6,4,1,New South Wales,150.533315,-34.461545 +2023,12,14,1,New South Wales,150.78513,-33.714767 +2024,6,19,1,New South Wales,152.908581,-31.454676 +2021,8,11,1,New South Wales,152.442861,-31.823496 +2021,6,11,1,New South Wales,150.62718,-34.38579 +2024,8,26,1,New South Wales,152.289627,-31.636763 +2022,9,18,1,New South Wales,150.889751,-34.018843 +2022,4,27,1,New South Wales,153.110511,-29.49018 +2021,8,22,1,New South Wales,151.765664,-32.573191 +2022,8,30,1,New South Wales,149.3241,-36.296381 +2020,11,6,1,New South Wales,149.984095,-36.575978 +2021,6,27,1,New South Wales,150.644381,-34.391685 +2022,2,10,1,New South Wales,153.312909,-28.857555 +2021,8,31,1,New South Wales,152.412844,-31.933156 +2021,4,23,1,New South Wales,150.615475,-34.431127 +2020,4,15,1,New South Wales,153.071503,-30.887349 +2021,9,11,1,New South Wales,153.090953,-29.487504 +2023,3,5,1,New South Wales,152.90811,-31.42988 +2021,7,24,1,New South Wales,151.710869,-33.008853 +2021,9,25,1,New South Wales,152.81796,-31.27746 +2021,2,24,1,New South Wales,150.648892,-34.454304 +2021,4,23,1,New South Wales,150.61537,-34.430998 +2020,11,2,1,New South Wales,149.915309,-36.574566 +2020,1,22,1,New South Wales,153.33026,-28.814134 +2021,5,29,1,New South Wales,150.603043,-34.424483 +2021,11,19,1,New South Wales,150.110683,-30.997215 +2023,1,9,1,New South Wales,153.109393,-29.489498 +2021,5,24,1,New South Wales,150.63921,-34.392658 +2022,5,19,1,New South Wales,152.079189,-32.726847 +2021,5,11,1,New South Wales,150.639125,-34.491962 +2021,5,12,1,New South Wales,150.605403,-34.427585 +2021,5,26,1,New South Wales,150.631489,-34.388398 +2021,12,6,1,New South Wales,153.283372,-28.830733 +2023,6,7,1,New South Wales,150.885925,-34.062061 +2022,8,25,1,New South Wales,153.477493,-28.25109 +2021,8,10,1,New South Wales,150.513841,-34.446203 +2020,11,25,1,New South Wales,153.302863,-28.865572 +2021,6,11,1,New South Wales,150.518283,-34.453506 +2023,10,29,1,New South Wales,150.784951,-33.716458 +2021,5,27,1,New South Wales,150.527042,-34.469415 +2020,11,16,1,New South Wales,153.317852,-28.929063 +2023,9,25,1,New South Wales,153.302471,-28.820141 +2020,10,18,1,New South Wales,149.947183,-36.617465 +2020,5,11,1,New South Wales,153.400673,-28.257967 +2024,9,21,1,New South Wales,146.564395,-34.756115 +2024,1,4,1,New South Wales,150.784249,-33.716906 +2020,11,1,1,New South Wales,149.915309,-36.574566 +2023,4,12,1,New South Wales,153.302741,-28.848168 +2021,4,26,1,New South Wales,150.614455,-34.429502 +2022,10,28,1,New South Wales,152.07261,-32.71075 +2020,8,21,1,New South Wales,152.876136,-31.425117 +2020,2,1,1,New South Wales,150.86603,-34.06098 +2021,11,6,1,New South Wales,150.804832,-34.350895 +2021,5,14,1,New South Wales,150.633458,-34.417728 +2023,11,24,1,New South Wales,150.784148,-33.716961 +2021,8,13,1,New South Wales,153.436269,-28.885922 +2020,12,8,1,New South Wales,149.960189,-36.280531 +2021,8,18,1,New South Wales,150.513076,-34.447793 +2021,7,7,1,New South Wales,150.630993,-34.388244 +2021,3,13,1,New South Wales,150.607619,-34.43 +2021,9,21,1,New South Wales,153.111353,-28.645421 +2022,1,6,1,New South Wales,152.903987,-31.439225 +2023,3,21,1,New South Wales,149.928654,-36.591146 +2020,5,18,1,New South Wales,150.89266,-33.99196 +2020,11,4,1,New South Wales,149.955017,-36.576791 +2022,10,3,1,New South Wales,152.999583,-30.408115 +2020,5,,1,New South Wales,152.020521,-32.739151 +2020,6,1,1,New South Wales,150.89266,-33.99196 +2020,10,30,1,New South Wales,152.630594,-30.523602 +2024,5,29,1,New South Wales,152.801638,-31.149027 +2021,6,4,1,New South Wales,150.533446,-34.461891 +2020,11,14,1,New South Wales,151.110282,-29.762752 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2022,12,27,1,New South Wales,152.901407,-31.442267 +2022,8,7,1,New South Wales,153.323748,-28.880788 +2021,3,17,1,New South Wales,150.603317,-34.439661 +2021,3,8,1,New South Wales,150.524933,-34.46418 +2020,1,19,1,New South Wales,153.103639,-29.485486 +2024,1,27,1,New South Wales,150.783591,-33.713502 +2021,5,15,1,New South Wales,150.520506,-34.454128 +2023,8,8,1,New South Wales,152.916382,-31.450656 +2024,6,13,1,New South Wales,150.864119,-29.610086 +2024,1,30,1,New South Wales,152.299924,-31.946014 +2021,5,12,1,New South Wales,150.609082,-34.420643 +2024,7,4,1,New South Wales,152.903445,-31.441108 +2021,6,26,1,New South Wales,150.627444,-34.420325 +2023,11,10,1,New South Wales,150.983881,-34.094516 +2022,9,27,1,New South Wales,153.078116,-30.353921 +2021,4,28,1,New South Wales,150.663923,-34.45782 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2022,10,1,1,New South Wales,152.925234,-31.453898 +2021,6,1,1,New South Wales,150.604862,-34.437383 +2021,5,22,1,New South Wales,150.630961,-34.388226 +2022,10,29,1,New South Wales,152.920812,-31.447702 +2022,11,18,1,New South Wales,153.304342,-29.053101 +2023,10,30,1,New South Wales,152.189573,-32.226267 +2020,10,2,1,New South Wales,152.914683,-31.486218 +2021,9,17,1,New South Wales,152.082222,-32.77562 +2020,9,29,1,New South Wales,153.091157,-29.487892 +2021,1,5,1,New South Wales,153.601971,-28.647359 +2021,7,15,1,New South Wales,150.625228,-34.386744 +2020,9,20,1,New South Wales,152.91463,-31.42949 +2021,7,22,1,New South Wales,152.429188,-31.830229 +2020,9,8,1,New South Wales,153.601971,-28.647359 +2021,5,30,1,New South Wales,150.516012,-34.448231 +2023,9,3,1,New South Wales,153.168567,-28.641188 +2020,10,23,1,New South Wales,149.931009,-36.595007 +2021,5,27,1,New South Wales,150.603212,-34.434214 +2020,10,10,1,New South Wales,149.952917,-36.681355 +2021,6,21,1,New South Wales,150.518933,-34.462408 +2022,3,3,1,New South Wales,152.063432,-32.706614 +2021,11,12,1,New South Wales,152.00351,-32.728513 +2023,10,1,1,New South Wales,151.937301,-32.025343 +2021,6,12,1,New South Wales,150.643632,-34.395899 +2021,6,13,1,New South Wales,150.611973,-34.432591 +2021,12,17,1,New South Wales,150.807827,-34.097978 +2022,12,30,1,New South Wales,152.361869,-31.979319 +2024,1,21,1,New South Wales,150.785232,-33.719171 +2021,6,21,1,New South Wales,150.518935,-34.462354 +2023,11,16,1,New South Wales,150.786454,-33.709657 +2021,3,7,1,New South Wales,150.514281,-34.446041 +2020,4,3,1,New South Wales,153.112159,-28.911268 +2021,7,8,1,New South Wales,150.521897,-34.464506 +2021,6,16,1,New South Wales,150.659976,-34.455707 +2023,9,26,1,New South Wales,150.786639,-33.708624 +2021,4,23,1,New South Wales,150.630033,-34.388334 +2021,4,7,1,New South Wales,150.606992,-34.437488 +2020,12,13,1,New South Wales,153.293082,-28.864658 +2021,11,8,1,New South Wales,152.926124,-31.45252 +2020,10,23,1,New South Wales,149.930096,-36.638123 +2022,4,17,1,New South Wales,153.394843,-29.015225 +2023,10,1,1,New South Wales,152.372047,-31.921037 +2021,4,27,1,New South Wales,150.616578,-34.429823 +2023,9,26,1,New South Wales,153.337032,-28.935777 +2021,7,2,1,New South Wales,150.626909,-34.421162 +2021,5,23,1,New South Wales,150.522248,-34.464792 +2021,7,22,1,New South Wales,150.630244,-34.420947 +2023,5,16,1,New South Wales,150.785515,-33.715432 +2022,11,20,1,New South Wales,152.78933,-30.918792 +2023,1,11,1,New South Wales,152.079754,-32.727701 +2021,6,7,1,New South Wales,150.615678,-34.433159 +2022,8,4,1,New South Wales,150.786659,-34.212619 +2021,2,25,1,New South Wales,150.653982,-34.455619 +2022,11,18,1,New South Wales,152.770676,-30.853416 +2024,1,10,1,New South Wales,152.899121,-31.447715 +2022,8,14,1,New South Wales,152.912082,-31.477327 +2021,9,24,1,New South Wales,150.259326,-30.414646 +2021,6,30,1,New South Wales,150.627178,-34.390478 +2024,1,9,1,New South Wales,152.924541,-31.464325 +2021,6,30,1,New South Wales,153.104187,-29.47986 +2021,5,7,1,New South Wales,150.609237,-34.420556 +2021,5,1,1,New South Wales,150.633624,-34.41838 +2020,10,18,1,New South Wales,149.947183,-36.617465 +2020,10,30,1,New South Wales,149.984095,-36.575978 +2023,9,24,1,New South Wales,152.9093,-31.4738 +2021,5,21,1,New South Wales,150.522736,-34.464838 +2021,11,1,1,New South Wales,152.727779,-29.008203 +2023,11,2,1,New South Wales,150.78577,-33.705448 +2024,2,23,1,Victoria,144.194961,-37.841066 +2021,3,9,1,New South Wales,150.655926,-34.45617 +2023,7,26,1,New South Wales,153.309348,-28.823205 +2021,9,16,1,New South Wales,153.158632,-28.924195 +2021,3,19,1,New South Wales,150.603792,-34.439409 +2020,11,11,1,New South Wales,152.075329,-32.722269 +2021,2,24,1,New South Wales,150.516918,-34.453271 +2023,9,28,1,New South Wales,153.034088,-29.16695 +2021,4,24,1,New South Wales,150.637693,-34.421073 +2020,10,27,1,New South Wales,153.103999,-29.48467 +2020,8,18,1,New South Wales,150.826343,-34.131685 +2021,7,17,1,New South Wales,150.627927,-34.420938 +2023,3,30,1,New South Wales,153.582458,-28.630097 +2021,7,10,1,New South Wales,150.641033,-34.393577 +2021,6,17,1,New South Wales,150.641964,-34.396832 +2021,6,27,1,New South Wales,150.514189,-34.447319 +2021,5,22,1,New South Wales,150.515824,-34.450887 +2020,4,25,1,New South Wales,150.057998,-33.767359 +2022,8,1,1,New South Wales,152.780714,-31.23541 +2020,10,30,1,New South Wales,149.984095,-36.575978 +2020,10,,1,New South Wales,150.547088,-34.454201 +2021,5,14,1,New South Wales,150.616335,-34.435318 +2020,10,,1,New South Wales,150.559732,-34.535992 +2023,10,12,1,New South Wales,152.009297,-31.993726 +2021,5,4,1,New South Wales,150.627092,-34.389674 +2021,6,25,1,New South Wales,150.645146,-34.391583 +2020,1,27,1,New South Wales,153.614108,-28.66228 +2021,7,13,1,New South Wales,150.642742,-34.395089 +2022,4,14,1,New South Wales,153.557309,-28.397395 +2022,11,18,1,New South Wales,152.770676,-30.853416 +2022,5,2,1,New South Wales,152.00351,-32.728513 +2021,3,12,1,New South Wales,150.52409,-34.462107 +2021,5,27,1,New South Wales,150.631978,-34.388011 +2021,4,18,1,New South Wales,150.616604,-34.430067 +2021,5,7,1,New South Wales,150.521213,-34.435742 +2021,6,16,1,New South Wales,150.604085,-34.437918 +2024,5,9,1,New South Wales,152.905411,-31.437643 +2023,9,26,1,New South Wales,153.116345,-28.561525 +2022,12,22,1,New South Wales,153.229707,-28.89063 +2020,1,16,1,New South Wales,152.746755,-31.442298 +2023,6,6,1,New South Wales,150.845253,-34.0608 +2020,10,13,1,New South Wales,150.608202,-33.449302 +2021,5,11,1,New South Wales,150.606861,-34.438657 +2021,5,12,1,New South Wales,150.517428,-34.453317 +2021,8,19,1,New South Wales,153.26224,-28.95079 +2023,8,30,1,New South Wales,150.839334,-34.067298 +2021,10,2,1,New South Wales,153.612899,-28.64449 +2022,11,25,1,New South Wales,152.794945,-30.901933 +2021,4,25,1,New South Wales,150.615016,-34.435409 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2021,5,9,1,New South Wales,150.604904,-34.426773 +2022,11,20,1,New South Wales,152.794945,-30.901933 +2020,10,28,1,New South Wales,153.335481,-28.869015 +2021,4,13,1,New South Wales,152.884823,-31.440075 +2024,8,20,1,New South Wales,152.096133,-32.173691 +2021,4,24,1,New South Wales,150.630724,-34.388897 +2024,8,23,1,New South Wales,151.984001,-32.412877 +2022,4,24,1,New South Wales,153.450108,-28.588913 +2021,5,5,1,New South Wales,150.522981,-34.452492 +2023,11,10,1,New South Wales,152.41501,-31.939974 +2020,10,27,1,New South Wales,153.277639,-28.674873 +2022,8,31,1,New South Wales,153.107411,-29.490096 +2021,5,26,1,New South Wales,150.631498,-34.388443 +2022,7,15,1,New South Wales,153.564573,-28.38642 +2021,4,22,1,New South Wales,150.605846,-34.432282 +2020,9,28,1,New South Wales,152.060801,-32.710651 +2021,9,28,1,New South Wales,153.110941,-29.488583 +2022,10,15,1,New South Wales,150.466319,-34.471481 +2020,5,4,1,New South Wales,152.425301,-28.319212 +2021,5,24,1,New South Wales,152.925964,-31.466607 +2020,10,23,1,New South Wales,149.947183,-36.617465 +2020,10,30,1,New South Wales,149.958935,-36.568735 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2020,2,16,1,New South Wales,152.103391,-32.759202 +2022,8,30,1,New South Wales,149.323801,-36.29865 +2023,7,13,1,New South Wales,152.783616,-31.630481 +2021,12,21,1,New South Wales,150.955681,-34.10582 +2021,6,23,1,New South Wales,150.842133,-34.070234 +2021,3,24,1,New South Wales,150.635971,-34.48798 +2022,9,14,1,New South Wales,152.878361,-31.163006 +2020,10,30,1,New South Wales,149.994744,-36.560944 +2021,9,21,1,New South Wales,151.769722,-32.565898 +2021,8,18,1,New South Wales,150.842133,-34.070234 +2021,5,31,1,New South Wales,150.615704,-34.438001 +2023,9,25,1,New South Wales,152.378342,-31.918224 +2020,11,6,1,New South Wales,149.994744,-36.560944 +2023,11,20,1,New South Wales,152.364395,-31.878896 +2020,1,12,1,New South Wales,152.795867,-31.333175 +2023,7,20,1,New South Wales,152.063508,-32.706176 +2021,11,29,1,New South Wales,152.868083,-29.667378 +2020,7,31,1,New South Wales,152.922279,-31.478142 +2022,8,15,1,New South Wales,150.808987,-34.208693 +2020,11,6,1,New South Wales,149.984095,-36.575978 +2021,6,13,1,New South Wales,153.142529,-28.667348 +2021,6,16,1,New South Wales,150.611341,-34.430739 +2021,5,21,1,New South Wales,150.633224,-34.392813 +2023,9,12,1,New South Wales,152.616467,-30.332642 +2021,5,11,1,New South Wales,153.401368,-28.260395 +2020,10,23,1,New South Wales,149.923643,-36.618562 +2023,9,26,1,New South Wales,153.05705,-28.930261 +2021,11,28,1,New South Wales,153.298252,-28.818425 +2022,9,10,1,New South Wales,152.380451,-31.922893 +2020,10,19,1,New South Wales,153.303135,-28.824882 +2021,5,13,1,New South Wales,150.604192,-34.437983 +2021,5,6,1,New South Wales,150.6373,-34.423815 +2021,10,5,1,New South Wales,152.873178,-29.683582 +2022,1,9,1,New South Wales,152.901778,-31.442136 +2020,10,15,1,New South Wales,149.930096,-36.638123 +2021,2,26,1,New South Wales,153.103811,-29.485585 +2021,6,2,1,New South Wales,150.639676,-34.399285 +2021,5,7,1,New South Wales,150.52118,-34.435742 +2023,5,21,1,New South Wales,152.910434,-31.471185 +2022,6,10,1,New South Wales,153.103886,-29.485389 +2024,1,3,1,New South Wales,153.103854,-29.489582 +2021,5,12,1,New South Wales,150.637378,-34.423754 +2022,10,28,1,New South Wales,152.773542,-30.152751 +2021,1,7,1,New South Wales,150.113353,-33.772715 +2024,6,2,1,New South Wales,152.907013,-31.445709 +2020,10,15,1,New South Wales,149.930096,-36.638123 +2021,6,14,1,New South Wales,150.522771,-34.452236 +2023,8,9,1,New South Wales,153.400546,-28.60426 +2020,10,12,1,New South Wales,149.950035,-36.601015 +2023,1,14,1,New South Wales,153.107395,-29.490124 +2021,6,30,1,New South Wales,150.627287,-34.421268 +2023,5,17,1,New South Wales,150.778378,-34.139613 +2022,1,14,1,New South Wales,152.879168,-31.448623 +2021,8,12,1,New South Wales,150.517087,-34.437272 +2020,12,1,1,New South Wales,152.914032,-31.480395 +2021,6,17,1,New South Wales,150.519201,-34.459979 +2021,8,12,1,New South Wales,150.601947,-34.426291 +2021,3,20,1,New South Wales,150.517285,-34.451547 +2021,5,28,1,New South Wales,153.59019,-28.65505 +2020,10,19,1,New South Wales,153.309459,-28.653103 +2022,10,5,1,New South Wales,153.044117,-30.428999 +2023,7,13,1,New South Wales,150.805157,-34.108814 +2021,5,7,1,New South Wales,150.659123,-34.457439 +2023,10,30,1,New South Wales,152.200143,-32.231881 +2020,10,19,1,New South Wales,149.947316,-36.607854 +2021,11,10,1,New South Wales,153.181628,-28.516985 +2021,9,10,1,New South Wales,150.519074,-34.447338 +2021,7,20,1,New South Wales,150.623368,-34.383282 +2021,7,20,1,New South Wales,150.645269,-34.391062 +2021,5,28,1,New South Wales,150.52715,-34.469444 +2021,1,15,1,New South Wales,152.917058,-31.485269 +2021,5,1,1,New South Wales,150.634382,-34.420062 +2022,8,28,1,New South Wales,153.111445,-29.487271 +2021,11,4,1,New South Wales,152.929688,-29.726875 +2021,5,5,1,New South Wales,150.520156,-34.435793 +2021,2,3,1,New South Wales,149.544021,-33.506776 +2021,6,19,1,New South Wales,150.808308,-34.098327 +2021,5,2,1,New South Wales,153.548753,-28.726548 +2023,7,27,1,New South Wales,153.307484,-28.849556 +2021,9,27,1,New South Wales,150.259326,-30.414646 +2021,7,9,1,New South Wales,150.598446,-34.412907 +2020,10,21,1,New South Wales,153.321407,-28.834001 +2020,1,25,1,New South Wales,152.915497,-31.477146 +2022,9,8,1,New South Wales,152.071965,-32.710425 +2021,3,26,1,New South Wales,150.520812,-34.453359 +2021,5,18,1,New South Wales,153.292716,-28.864016 +2021,5,12,1,New South Wales,150.637345,-34.423771 +2021,8,19,1,New South Wales,152.373654,-31.915884 +2021,8,31,1,New South Wales,150.515277,-34.443294 +2020,4,8,1,New South Wales,150.140817,-34.928708 +2021,8,13,1,New South Wales,150.632528,-34.418296 +2021,3,10,1,New South Wales,150.522887,-34.450913 +2021,7,14,1,New South Wales,150.513826,-34.446356 +2020,12,2,1,New South Wales,153.305957,-29.055106 +2020,8,14,1,New South Wales,152.867546,-29.667173 +2021,6,21,1,New South Wales,151.3233,-32.4932 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2020,10,23,1,New South Wales,149.931009,-36.595007 +2021,12,30,1,New South Wales,152.926942,-31.457123 +2020,,,1,New South Wales,152.741471,-28.766116 +2020,7,3,1,New South Wales,152.908734,-31.454816 +2021,6,7,1,New South Wales,150.531362,-34.458008 +2021,5,14,1,New South Wales,150.633393,-34.417708 +2020,11,25,1,New South Wales,152.9085,-31.150529 +2022,12,15,1,New South Wales,150.921004,-33.966977 +2022,7,23,1,New South Wales,153.108167,-29.490241 +2021,10,6,1,New South Wales,152.888201,-31.443198 +2020,4,7,1,New South Wales,150.12685,-35.055205 +2021,3,25,1,New South Wales,150.520663,-34.466473 +2021,5,18,1,New South Wales,150.600271,-34.428602 +2022,12,8,1,New South Wales,151.133525,-33.612044 +2020,10,6,1,New South Wales,153.103822,-29.485585 +2020,1,11,1,New South Wales,153.426361,-28.875012 +2023,11,4,1,New South Wales,152.927513,-31.467885 +2021,5,31,1,New South Wales,150.524473,-34.4639 +2024,1,31,1,New South Wales,153.109396,-29.490469 +2021,4,24,1,New South Wales,153.347566,-28.844756 +2022,7,16,1,New South Wales,153.302679,-28.823184 +2023,3,2,1,New South Wales,153.454894,-28.71275 +2021,7,31,1,New South Wales,153.505993,-28.240329 +2020,1,24,1,New South Wales,153.104149,-29.480131 +2021,5,29,1,New South Wales,152.90245,-30.5622 +2020,10,18,1,New South Wales,152.061132,-32.709412 +2022,8,8,1,New South Wales,153.187618,-28.523637 +2022,1,6,1,New South Wales,153.110501,-29.489974 +2021,4,22,1,New South Wales,150.638475,-34.423045 +2021,11,4,1,New South Wales,150.617447,-34.440226 +2020,8,27,1,New South Wales,152.929698,-29.72667 +2021,6,1,1,New South Wales,150.630366,-34.420868 +2022,8,1,1,New South Wales,150.792744,-34.1435 +2021,10,2,1,New South Wales,148.632077,-32.242665 +2021,5,23,1,New South Wales,150.515944,-34.450519 +2021,5,3,1,New South Wales,150.521489,-34.452904 +2021,9,9,1,New South Wales,152.379857,-31.918185 +2021,6,28,1,New South Wales,150.606491,-34.449306 +2021,5,29,1,New South Wales,153.4364,-28.5709 +2022,9,3,1,New South Wales,146.515531,-34.740942 +2021,5,20,1,New South Wales,150.521633,-34.465699 +2022,7,28,1,New South Wales,152.801881,-31.504982 +2021,10,6,1,New South Wales,153.31725,-28.82292 +2021,8,9,1,New South Wales,151.005508,-34.089416 +2021,5,10,1,New South Wales,150.521744,-34.46636 +2021,2,11,1,New South Wales,152.040703,-32.736895 +2021,4,6,1,New South Wales,150.663661,-34.458617 +2022,9,29,1,New South Wales,153.194956,-28.881627 +2022,8,17,1,New South Wales,153.212505,-28.883153 +2021,6,23,1,New South Wales,150.603547,-34.438854 +2021,10,7,1,New South Wales,151.709744,-32.69195 +2021,5,30,1,New South Wales,150.639206,-34.491387 +2021,5,9,1,New South Wales,152.036404,-32.768102 +2021,6,29,1,New South Wales,150.632192,-34.388529 +2023,6,3,1,New South Wales,153.27887,-28.874221 +2020,11,4,1,New South Wales,149.955017,-36.576791 +2022,8,6,1,New South Wales,150.799,-34.230889 +2020,1,22,1,New South Wales,152.813274,-31.401097 +2021,4,25,1,New South Wales,150.630068,-34.388253 +2022,2,11,1,New South Wales,152.08478,-32.729647 +2020,5,6,1,New South Wales,153.326195,-28.833144 +2022,2,3,1,New South Wales,152.898657,-31.4423 +2021,7,13,1,New South Wales,150.597691,-34.410422 +2021,4,16,1,New South Wales,150.627458,-34.386345 +2023,7,7,1,New South Wales,153.460661,-28.192123 +2022,4,19,1,New South Wales,151.645727,-32.551009 +2022,7,18,1,New South Wales,150.796728,-34.209797 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2023,8,6,1,New South Wales,150.785519,-33.703532 +2021,4,24,1,New South Wales,152.106464,-32.729064 +2021,5,3,1,New South Wales,150.632817,-34.418851 +2020,12,8,1,New South Wales,149.972032,-36.288695 +2022,7,8,1,New South Wales,153.393862,-28.959206 +2022,3,28,1,New South Wales,151.042,-29.66 +2021,6,9,1,New South Wales,150.630796,-34.420669 +2021,5,8,1,New South Wales,150.621399,-34.397939 +2021,4,24,1,New South Wales,150.608647,-34.453469 +2021,5,10,1,New South Wales,150.61581,-34.435055 +2021,7,2,1,New South Wales,150.639691,-34.397996 +2020,11,23,1,New South Wales,153.109583,-29.490446 +2024,6,13,1,New South Wales,152.258606,-32.040298 +2022,6,12,1,New South Wales,153.103977,-29.484334 +2023,11,5,1,New South Wales,152.925317,-31.454014 +2021,7,12,1,New South Wales,152.878975,-29.661519 +2023,8,16,1,New South Wales,151.794683,-32.561276 +2021,5,27,1,New South Wales,150.517336,-34.452774 +2021,2,16,1,New South Wales,152.00351,-32.728513 +2022,,,1,New South Wales,150.566447,-34.46 +2021,9,1,1,New South Wales,151.042289,-29.798153 +2020,9,13,1,New South Wales,152.939011,-29.336773 +2022,11,19,1,New South Wales,152.151278,-32.714705 +2020,4,22,1,New South Wales,153.111631,-30.285587 +2021,6,7,1,New South Wales,150.607805,-34.430715 +2021,4,13,1,New South Wales,151.087861,-34.107688 +2022,2,7,1,New South Wales,152.900617,-31.447508 +2020,4,8,1,New South Wales,153.109436,-29.490573 +2021,8,10,1,New South Wales,152.428057,-31.790871 +2023,7,24,1,New South Wales,153.166301,-28.8735 +2021,4,27,1,New South Wales,150.615512,-34.435554 +2023,7,7,1,New South Wales,152.912199,-31.455948 +2021,12,22,1,New South Wales,152.056908,-32.736947 +2023,8,1,1,New South Wales,153.3168,-28.82047 +2020,4,14,1,New South Wales,150.057346,-33.767173 +2022,12,24,1,New South Wales,152.916964,-31.454098 +2023,11,15,1,New South Wales,152.936562,-30.440157 +2021,12,19,1,New South Wales,153.356805,-28.656536 +2021,4,29,1,New South Wales,150.624424,-34.387873 +2024,2,11,1,New South Wales,150.784508,-33.716518 +2023,9,23,1,New South Wales,153.557153,-28.655706 +2021,4,30,1,New South Wales,150.608974,-34.435147 +2021,4,20,1,New South Wales,150.610261,-34.418971 +2023,3,11,1,New South Wales,153.101333,-29.489685 +2023,8,4,1,New South Wales,150.739716,-34.309536 +2020,11,3,1,New South Wales,149.955017,-36.576791 +2022,6,13,1,New South Wales,152.040766,-32.73369 +2022,10,7,1,New South Wales,153.492297,-28.677445 +2021,5,19,1,New South Wales,150.521502,-34.465715 +2021,6,15,1,New South Wales,150.60497,-34.437791 +2023,6,23,1,New South Wales,152.862897,-31.301009 +2021,12,9,1,New South Wales,153.009869,-28.611518 +2023,4,15,1,New South Wales,152.792125,-31.641325 +2020,,,1,New South Wales,152.534038,-30.465531 +2021,8,27,1,New South Wales,153.19184,-28.87772 +2021,3,12,1,New South Wales,151.085029,-29.728684 +2021,1,8,1,New South Wales,153.390241,-28.545817 +2021,3,1,1,New South Wales,150.609265,-34.419961 +2021,3,16,1,New South Wales,150.607707,-34.421959 +2020,6,16,1,New South Wales,153.316899,-29.044273 +2021,5,11,1,New South Wales,150.519415,-34.435471 +2023,9,26,1,New South Wales,153.380525,-29.086962 +2020,9,28,1,New South Wales,152.877312,-28.435952 +2023,6,7,1,New South Wales,152.924982,-31.453846 +2020,12,1,1,New South Wales,153.306909,-28.74018 +2023,8,25,1,New South Wales,152.901862,-30.462816 +2023,9,27,1,New South Wales,153.418498,-28.592481 +2024,4,12,1,New South Wales,149.304062,-36.209974 +2021,3,9,1,New South Wales,150.635713,-34.485162 +2023,9,8,1,New South Wales,153.565365,-28.32922 +2021,8,14,1,New South Wales,153.081228,-28.59283 +2020,5,18,1,New South Wales,153.095228,-29.483443 +2020,9,2,1,New South Wales,153.016479,-28.541872 +2020,10,11,1,New South Wales,149.989087,-36.562421 +2020,10,29,1,New South Wales,153.396446,-28.56104 +2021,5,25,1,New South Wales,150.639006,-34.491554 +2021,6,27,1,New South Wales,150.631496,-34.387767 +2020,11,,1,New South Wales,152.822341,-31.562884 +2022,1,2,1,New South Wales,152.899068,-31.474006 +2021,1,21,1,New South Wales,152.085719,-32.736423 +2021,3,14,1,New South Wales,150.524294,-34.461841 +2021,9,24,1,New South Wales,150.641986,-34.394894 +2021,10,6,1,New South Wales,150.857819,-34.05299 +2024,1,20,1,New South Wales,152.912504,-31.450078 +2021,9,9,1,New South Wales,150.644482,-34.393905 +2022,7,19,1,New South Wales,153.398233,-28.261122 +2021,6,4,1,New South Wales,150.639967,-34.397839 +2020,3,13,1,New South Wales,151.67932,-32.59497 +2021,7,12,1,New South Wales,150.642687,-34.395088 +2022,8,22,1,New South Wales,150.839679,-34.060322 +2021,4,23,1,New South Wales,150.605835,-34.423104 +2021,5,29,1,New South Wales,150.522701,-34.464919 +2023,5,9,1,New South Wales,149.966961,-36.56748 +2022,9,3,1,New South Wales,146.526124,-34.735921 +2021,5,30,1,New South Wales,150.640959,-34.396199 +2021,8,8,1,New South Wales,153.314434,-28.839794 +2022,11,20,1,New South Wales,153.544657,-28.736129 +2023,2,2,1,New South Wales,153.494,-28.69021 +2022,5,14,1,New South Wales,151.090936,-33.145184 +2021,6,17,1,New South Wales,150.604295,-34.43895 +2020,12,20,1,New South Wales,152.904414,-31.472147 +2021,6,6,1,New South Wales,150.525426,-34.464794 +2021,5,6,1,New South Wales,150.639127,-34.491485 +2021,6,21,1,New South Wales,150.519533,-34.461257 +2021,8,7,1,New South Wales,150.623874,-33.569249 +2020,11,16,1,New South Wales,150.004563,-36.508695 +2022,2,28,1,New South Wales,150.996125,-34.056552 +2021,5,30,1,New South Wales,150.631304,-34.420039 +2022,8,9,1,New South Wales,150.518891,-34.444487 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2021,11,12,1,New South Wales,153.561341,-28.384755 +2023,9,17,1,New South Wales,153.600762,-28.697534 +2021,5,14,1,New South Wales,150.629106,-34.395772 +2021,10,12,1,New South Wales,152.921633,-31.48174 +2020,9,17,1,New South Wales,152.900699,-31.450003 +2022,11,7,1,New South Wales,153.312,-28.831453 +2021,6,7,1,New South Wales,150.519847,-34.45764 +2021,6,16,1,New South Wales,150.617233,-34.434352 +2022,8,11,1,New South Wales,152.979186,-31.15504 +2023,11,1,1,New South Wales,152.002197,-32.232887 +2020,11,2,1,New South Wales,149.915309,-36.574566 +2020,11,22,1,New South Wales,153.458698,-28.951435 +2021,7,16,1,New South Wales,150.625219,-34.387077 +2020,8,25,1,New South Wales,150.802198,-33.487458 +2021,6,27,1,New South Wales,150.627346,-34.420323 +2020,4,2,1,New South Wales,152.776577,-31.695214 +2021,5,8,1,New South Wales,150.616074,-34.435322 +2024,4,19,1,New South Wales,152.380425,-31.908386 +2021,5,7,1,New South Wales,150.521472,-34.466372 +2021,4,21,1,New South Wales,153.53868,-28.58252 +2021,7,13,1,New South Wales,152.361869,-31.979319 +2022,12,27,1,New South Wales,153.233821,-28.945517 +2021,7,9,1,New South Wales,150.598264,-34.412795 +2021,10,19,1,New South Wales,152.810584,-29.807174 +2022,10,4,1,New South Wales,150.929224,-33.954203 +2021,5,28,1,New South Wales,150.601451,-34.42501 +2021,6,21,1,New South Wales,152.741668,-30.120163 +2021,5,25,1,New South Wales,150.630994,-34.388208 +2023,12,4,1,New South Wales,152.908928,-31.44064 +2021,6,5,1,New South Wales,150.616389,-34.436103 +2021,6,13,1,New South Wales,150.615034,-34.431334 +2021,7,1,1,New South Wales,150.605122,-34.432096 +2022,8,30,1,New South Wales,149.316396,-36.297789 +2021,6,1,1,New South Wales,150.521611,-34.465717 +2023,1,24,1,New South Wales,152.81152,-29.514915 +2020,1,15,1,New South Wales,152.82955,-29.6429 +2023,11,11,1,New South Wales,152.862317,-30.417994 +2021,11,12,1,New South Wales,153.399747,-29.038599 +2020,8,9,1,New South Wales,153.561326,-28.385519 +2021,9,14,1,New South Wales,150.790165,-34.206134 +2021,11,21,1,New South Wales,152.405107,-31.920313 +2022,7,8,1,New South Wales,152.90371,-31.448805 +2021,6,25,1,New South Wales,150.627331,-34.420476 +2022,9,16,1,New South Wales,152.405107,-31.920313 +2020,10,19,1,New South Wales,153.303135,-28.824882 +2021,7,8,1,New South Wales,150.630674,-34.388743 +2023,6,17,1,New South Wales,150.784144,-33.717399 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2021,6,8,1,New South Wales,150.531431,-34.457883 +2020,10,30,1,New South Wales,149.938213,-36.559404 +2021,4,27,1,New South Wales,152.902148,-31.442214 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2020,1,8,1,New South Wales,153.5218,-28.68361 +2021,4,21,1,New South Wales,150.615131,-34.429434 +2022,2,11,1,New South Wales,153.302483,-28.848119 +2022,5,10,1,New South Wales,146.560515,-34.756779 +2020,8,29,1,New South Wales,150.658648,-33.526233 +2021,10,10,1,New South Wales,153.101719,-29.489465 +2021,4,11,1,New South Wales,150.604706,-34.431051 +2021,5,9,1,New South Wales,150.521886,-34.466363 +2020,9,1,1,New South Wales,152.908244,-31.160598 +2021,5,22,1,New South Wales,150.522245,-34.464882 +2021,7,1,1,New South Wales,150.513063,-34.447134 +2023,2,7,1,New South Wales,152.063247,-32.706445 +2022,10,29,1,New South Wales,153.301348,-28.823416 +2021,9,4,1,New South Wales,152.404167,-31.945815 +2020,7,3,1,New South Wales,153.103758,-29.485569 +2020,9,20,1,New South Wales,152.178771,-32.384235 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2020,9,4,1,New South Wales,150.817293,-34.092086 +2023,11,21,1,New South Wales,153.103328,-29.489956 +2022,2,25,1,New South Wales,151.558,-30.261 +2021,9,26,1,New South Wales,153.10122,-29.489998 +2023,9,16,1,New South Wales,150.144337,-34.39487 +2022,11,23,1,New South Wales,152.826357,-31.650111 +2023,12,24,1,New South Wales,150.784731,-33.713339 +2022,2,17,1,New South Wales,152.89045,-30.46091 +2021,5,1,1,New South Wales,152.87703,-30.54197 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2021,7,29,1,New South Wales,150.598008,-34.426692 +2022,8,22,1,New South Wales,151.702089,-32.694067 +2022,11,18,1,New South Wales,153.306862,-28.822956 +2023,12,23,1,New South Wales,149.894167,-34.815556 +2023,7,23,1,New South Wales,153.104621,-29.489615 +2021,5,11,1,New South Wales,150.517482,-34.453327 +2021,12,17,1,New South Wales,153.437187,-28.993074 +2021,6,5,1,New South Wales,152.922937,-31.448867 +2020,11,4,1,New South Wales,149.955017,-36.576791 +2021,9,6,1,New South Wales,150.645024,-34.401371 +2022,10,10,1,New South Wales,152.925549,-31.449104 +2021,8,26,1,New South Wales,152.776984,-29.584919 +2020,10,22,1,New South Wales,149.923643,-36.618562 +2024,1,4,1,New South Wales,150.809371,-34.096301 +2021,5,12,1,New South Wales,150.516566,-34.448999 +2021,10,23,1,New South Wales,152.063292,-32.706879 +2020,5,12,1,New South Wales,149.990705,-36.458883 +2021,6,5,1,New South Wales,150.523341,-34.464625 +2020,3,20,1,New South Wales,150.79118,-34.140988 +2020,11,29,1,New South Wales,149.980514,-36.435679 +2021,6,1,1,New South Wales,150.630397,-34.420923 +2022,7,3,1,New South Wales,149.35163,-36.152898 +2024,7,30,1,New South Wales,153.01039,-30.644694 +2022,11,8,1,New South Wales,152.869057,-29.683551 +2021,5,15,1,New South Wales,150.600482,-34.428075 +2023,5,30,1,New South Wales,152.190211,-31.595457 +2021,6,29,1,New South Wales,150.643719,-34.394738 +2022,8,5,1,New South Wales,153.516969,-28.607594 +2023,12,26,1,New South Wales,152.895436,-31.473357 +2024,7,28,1,New South Wales,152.808669,-31.499299 +2022,11,25,1,New South Wales,152.78933,-30.918792 +2022,6,4,1,New South Wales,152.710362,-31.782515 +2023,6,9,1,New South Wales,152.405107,-31.920313 +2022,8,30,1,New South Wales,149.316364,-36.297763 +2023,9,15,1,New South Wales,152.614728,-30.348961 +2021,2,28,1,New South Wales,150.526936,-34.45937 +2022,5,7,1,New South Wales,153.354733,-28.901545 +2021,9,22,1,New South Wales,152.077254,-32.722552 +2020,2,4,1,New South Wales,152.914149,-31.458618 +2022,11,13,1,New South Wales,152.065512,-32.710938 +2021,8,24,1,New South Wales,150.607587,-34.4418 +2024,9,8,1,New South Wales,152.916478,-31.450737 +2020,5,,1,New South Wales,152.023888,-32.319245 +2020,7,31,1,New South Wales,153.477765,-28.248472 +2020,2,18,1,New South Wales,152.116571,-32.766323 +2023,9,21,1,New South Wales,152.606923,-30.344119 +2021,5,27,1,New South Wales,150.599016,-34.42608 +2020,9,27,1,New South Wales,153.10181,-29.489778 +2021,3,5,1,New South Wales,153.186783,-28.888915 +2021,4,26,1,New South Wales,150.603298,-34.436911 +2021,3,21,1,New South Wales,150.520404,-34.453901 +2021,5,1,1,New South Wales,150.609644,-34.436431 +2020,12,6,1,New South Wales,152.867761,-29.667396 +2020,11,1,1,New South Wales,149.968131,-36.578885 +2021,9,22,1,New South Wales,152.82929,-31.26329 +2021,8,19,1,New South Wales,152.080576,-32.730404 +2023,5,19,1,New South Wales,152.413625,-31.940234 +2021,6,12,1,New South Wales,150.716117,-32.673499 +2023,9,13,1,New South Wales,152.917188,-30.484267 +2021,6,15,1,New South Wales,150.604245,-34.451363 +2021,5,16,1,New South Wales,149.401362,-35.936826 +2023,12,12,1,New South Wales,153.110527,-29.490138 +2021,9,23,1,New South Wales,152.82517,-31.27014 +2023,6,29,1,New South Wales,153.555243,-28.38031 +2021,7,29,1,New South Wales,150.51562,-34.44971 +2021,3,21,1,New South Wales,150.534634,-34.46223 +2021,4,30,1,New South Wales,149.573329,-32.614457 +2021,10,6,1,New South Wales,150.808744,-34.102026 +2021,2,1,1,New South Wales,153.271768,-28.930242 +2021,1,3,1,New South Wales,153.103285,-29.487233 +2023,5,14,1,New South Wales,151.106799,-29.627564 +2021,5,6,1,New South Wales,150.51639,-34.447229 +2021,5,11,1,New South Wales,150.516476,-34.469669 +2021,4,20,1,New South Wales,150.616163,-34.434476 +2021,3,2,1,New South Wales,150.527904,-34.456442 +2020,10,30,1,New South Wales,149.984095,-36.575978 +2021,6,1,1,New South Wales,150.848267,-34.078712 +2021,7,19,1,New South Wales,150.59793,-34.418035 +2020,12,1,1,New South Wales,153.301997,-28.847748 +2024,3,5,1,New South Wales,150.988137,-34.032857 +2021,4,20,1,New South Wales,150.516094,-34.449864 +2024,1,21,1,New South Wales,152.919653,-31.157601 +2020,1,16,1,New South Wales,148.720973,-36.460941 +2021,8,28,1,New South Wales,153.472227,-28.247172 +2023,10,12,1,New South Wales,153.100682,-30.302122 +2023,6,11,1,New South Wales,152.990868,-29.038548 +2024,4,27,1,New South Wales,153.018914,-30.367339 +2023,9,3,1,New South Wales,152.978186,-30.419039 +2022,12,7,1,New South Wales,152.785803,-31.631801 +2020,10,29,1,New South Wales,149.984095,-36.575978 +2021,4,28,1,New South Wales,150.609499,-34.418983 +2021,6,26,1,New South Wales,150.514331,-34.447286 +2021,9,23,1,New South Wales,150.808987,-34.208693 +2020,12,4,1,New South Wales,152.905595,-31.448924 +2021,6,23,1,New South Wales,150.520479,-34.465703 +2021,6,8,1,New South Wales,150.625993,-34.388914 +2021,1,15,1,New South Wales,152.404167,-31.945815 +2021,6,1,1,New South Wales,153.495272,-28.693786 +2023,6,6,1,New South Wales,150.851273,-34.081013 +2020,12,31,1,New South Wales,153.104079,-29.485193 +2021,9,27,1,New South Wales,152.91543,-31.445929 +2023,6,5,1,New South Wales,153.104063,-29.485099 +2022,7,13,1,New South Wales,150.884575,-34.018827 +2024,8,20,1,New South Wales,152.386722,-32.026667 +2021,6,25,1,New South Wales,150.59793,-34.418017 +2020,3,15,1,New South Wales,153.314939,-28.868645 +2020,2,15,1,New South Wales,153.263578,-28.881836 +2021,6,29,1,New South Wales,150.522571,-34.464898 +2021,5,28,1,New South Wales,150.521589,-34.465734 +2021,5,16,1,New South Wales,150.530552,-34.47 +2024,2,16,1,New South Wales,150.784738,-33.712391 +2020,11,16,1,New South Wales,149.987449,-36.51267 +2021,5,24,1,New South Wales,150.630828,-34.420706 +2021,3,4,1,New South Wales,152.415455,-31.933156 +2020,10,29,1,New South Wales,149.984095,-36.575978 +2021,5,29,1,New South Wales,150.617293,-34.438393 +2020,2,27,1,New South Wales,152.917356,-30.43414 +2021,5,10,1,New South Wales,150.517567,-34.45305 +2022,10,11,1,New South Wales,152.862951,-31.405709 +2021,6,9,1,New South Wales,150.626559,-34.386211 +2023,6,20,1,New South Wales,150.99613,-34.061975 +2023,5,31,1,New South Wales,153.314983,-28.949201 +2021,9,29,1,New South Wales,153.321371,-28.82658 +2021,5,8,1,New South Wales,150.521134,-34.466753 +2022,10,31,1,New South Wales,153.314983,-28.949201 +2020,11,3,1,New South Wales,149.958519,-36.587122 +2023,1,5,1,New South Wales,152.912711,-31.478445 +2023,3,11,1,New South Wales,152.860822,-31.387579 +2021,4,22,1,New South Wales,150.516802,-34.445056 +2022,12,2,1,New South Wales,152.794945,-30.901933 +2020,4,20,1,New South Wales,152.877369,-31.488594 +2021,6,25,1,New South Wales,150.603068,-34.437709 +2020,12,26,1,New South Wales,152.926635,-31.444425 +2021,7,14,1,New South Wales,150.627078,-34.420958 +2021,7,8,1,New South Wales,150.607728,-34.436484 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2024,4,21,1,New South Wales,152.392478,-31.970304 +2023,10,6,1,New South Wales,153.105217,-29.489722 +2020,10,7,1,New South Wales,150.061098,-33.774582 +2021,11,12,1,New South Wales,150.615056,-34.4409 +2020,12,24,1,New South Wales,150.795439,-34.140388 +2021,5,13,1,New South Wales,150.60403,-34.437944 +2023,4,23,1,New South Wales,153.109701,-29.49017 +2020,12,24,1,New South Wales,153.544403,-28.652658 +2021,12,17,1,New South Wales,150.81183,-32.70071 +2021,4,18,1,New South Wales,150.629827,-34.394487 +2020,4,23,1,New South Wales,152.26304,-29.61859 +2021,,,1,New South Wales,149.849427,-32.413596 +2023,7,27,1,New South Wales,153.316666,-28.820486 +2021,11,16,1,New South Wales,152.929569,-31.459522 +2024,1,31,1,New South Wales,152.904733,-31.439511 +2020,11,16,1,New South Wales,153.316981,-28.949626 +2020,10,11,1,New South Wales,149.952917,-36.681355 +2023,11,15,1,New South Wales,152.916224,-31.476707 +2022,4,20,1,New South Wales,150.062475,-30.922157 +2020,10,28,1,New South Wales,153.054871,-30.240487 +2020,5,12,1,New South Wales,153.237103,-29.357302 +2023,8,7,1,New South Wales,152.9078,-31.4681 +2021,6,9,1,New South Wales,150.614044,-34.432866 +2020,12,8,1,New South Wales,153.322268,-28.886074 +2021,4,28,1,New South Wales,150.616821,-34.429341 +2024,2,12,1,New South Wales,152.404077,-31.92712 +2022,8,19,1,New South Wales,153.412357,-28.639587 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2021,5,18,1,New South Wales,150.523931,-34.463826 +2023,2,24,1,New South Wales,153.108156,-29.490521 +2022,12,8,1,New South Wales,151.9191,-32.68079 +2021,4,30,1,New South Wales,150.604019,-34.427287 +2020,5,4,1,New South Wales,153.473012,-28.705548 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2020,10,23,1,New South Wales,149.96897,-36.58553 +2021,4,23,1,New South Wales,150.616414,-34.435608 +2021,7,8,1,New South Wales,150.641499,-34.395588 +2021,5,25,1,New South Wales,151.6674,-30.5006 +2020,10,13,1,New South Wales,149.880784,-36.581514 +2021,5,10,1,New South Wales,150.639205,-34.491811 +2020,1,21,1,New South Wales,152.912223,-31.433035 +2024,2,20,1,New South Wales,152.886715,-31.429184 +2022,7,,1,New South Wales,153.189,-28.523 +2021,6,16,1,New South Wales,150.515278,-34.460125 +2021,9,8,1,New South Wales,150.515534,-34.454433 +2022,10,22,1,New South Wales,153.31683,-28.94801 +2021,5,31,1,New South Wales,150.615676,-34.437838 +2023,7,20,1,New South Wales,150.785192,-33.716326 +2021,6,27,1,New South Wales,150.631495,-34.387785 +2021,2,25,1,New South Wales,150.608,-34.433424 +2021,9,7,1,New South Wales,153.508867,-28.606669 +2022,6,5,1,New South Wales,152.869915,-29.676423 +2020,4,18,1,New South Wales,150.062922,-33.775527 +2021,6,3,1,New South Wales,150.623703,-34.388761 +2021,6,2,1,New South Wales,150.518748,-34.447692 +2021,4,25,1,New South Wales,150.60402,-34.424962 +2021,10,16,1,New South Wales,152.415808,-31.933486 +2023,3,12,1,New South Wales,152.99663,-28.472806 +2021,9,23,1,New South Wales,152.885551,-31.441289 +2024,10,10,1,New South Wales,150.8,-34.214167 +2022,7,25,1,New South Wales,153.110179,-29.490227 +2023,9,29,1,New South Wales,153.548,-28.724359 +2022,8,30,1,New South Wales,149.324852,-36.294059 +2020,11,17,1,New South Wales,149.682001,-33.54208 +2020,10,13,1,New South Wales,149.930096,-36.638123 +2023,8,13,1,New South Wales,150.901148,-34.009047 +2021,6,29,1,New South Wales,150.513182,-34.447137 +2021,5,31,1,New South Wales,150.60468,-34.424704 +2020,10,19,1,New South Wales,149.938155,-36.621708 +2021,5,23,1,New South Wales,153.13632,-29.592962 +2021,8,22,1,New South Wales,150.642031,-34.396779 +2022,5,5,1,New South Wales,153.061238,-28.569001 +2021,5,20,1,New South Wales,150.522327,-34.465046 +2021,4,20,1,New South Wales,150.6272,-34.385854 +2024,1,29,1,New South Wales,152.924742,-31.440432 +2021,12,13,1,New South Wales,152.868028,-31.474842 +2021,5,16,1,New South Wales,150.602875,-34.435334 +2022,1,26,1,New South Wales,153.103119,-29.489274 +2021,5,8,1,New South Wales,150.60919,-34.420672 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2021,4,15,1,New South Wales,150.631197,-34.39336 +2022,3,12,1,New South Wales,153.107454,-29.4901 +2023,8,22,1,New South Wales,152.21012,-32.23358 +2021,6,13,1,New South Wales,150.516108,-34.446808 +2023,2,21,1,New South Wales,152.381762,-31.889433 +2021,7,8,1,New South Wales,150.597458,-34.416647 +2021,8,16,1,New South Wales,153.513502,-28.807102 +2022,9,26,1,New South Wales,150.790978,-34.191247 +2022,4,17,1,New South Wales,153.394843,-29.015225 +2021,9,11,1,New South Wales,150.790562,-34.184701 +2022,1,12,1,New South Wales,152.859277,-31.12644 +2023,12,24,1,New South Wales,152.887755,-31.43252 +2023,9,12,1,New South Wales,153.395153,-28.960044 +2021,8,22,1,New South Wales,153.514194,-28.24227 +2021,7,1,1,New South Wales,150.522675,-34.46582 +2021,4,12,1,New South Wales,150.516644,-34.44819 +2021,5,13,1,New South Wales,150.62878,-34.38959 +2021,5,25,1,New South Wales,150.522293,-34.465109 +2024,9,22,1,New South Wales,149.520779,-33.631196 +2021,5,11,1,New South Wales,150.637281,-34.423734 +2020,11,16,1,New South Wales,150.001052,-36.513032 +2024,9,25,1,New South Wales,152.793,-31.642 +2023,4,28,1,New South Wales,153.159083,-28.924809 +2022,7,7,1,New South Wales,153.29339,-28.864601 +2021,12,10,1,New South Wales,152.929492,-31.459516 +2022,8,8,1,New South Wales,150.534417,-34.426667 +2021,3,19,1,New South Wales,150.615506,-34.435797 +2022,11,24,1,New South Wales,152.915289,-31.445588 +2021,7,13,1,New South Wales,150.62647,-34.385506 +2021,6,4,1,New South Wales,150.607783,-34.436827 +2021,5,31,1,New South Wales,153.493371,-28.677583 +2021,5,16,1,New South Wales,150.640657,-34.494011 +2024,1,27,1,New South Wales,153.110506,-29.490156 +2022,3,8,1,New South Wales,152.390764,-31.95843 +2023,8,20,1,New South Wales,150.298158,-31.246725 +2021,4,28,1,New South Wales,150.638583,-34.489536 +2021,6,10,1,New South Wales,150.610509,-34.430516 +2020,4,24,1,New South Wales,153.314998,-28.846175 +2021,9,5,1,New South Wales,153.548753,-28.726548 +2022,8,10,1,New South Wales,150.521223,-34.455429 +2020,3,25,1,New South Wales,152.869155,-29.680305 +2023,10,2,1,New South Wales,151.009459,-34.045788 +2022,9,18,1,New South Wales,153.106595,-29.490763 +2021,5,14,1,New South Wales,150.523901,-34.463744 +2020,11,18,1,New South Wales,151.791641,-32.704663 +2021,7,13,1,New South Wales,150.597447,-34.410191 +2021,3,2,1,New South Wales,150.609302,-34.42017 +2021,5,23,1,New South Wales,150.518314,-34.451325 +2021,3,27,1,New South Wales,153.561567,-28.384435 +2020,9,23,1,New South Wales,152.88573,-31.439064 +2021,6,11,1,New South Wales,152.915717,-31.484158 +2020,1,10,1,New South Wales,152.819936,-31.144858 +2022,8,12,1,New South Wales,150.805141,-34.100735 +2023,4,27,1,New South Wales,151.789547,-32.65346 +2021,3,6,1,New South Wales,150.523452,-34.458668 +2024,3,19,1,New South Wales,152.044461,-32.639717 +2021,5,19,1,New South Wales,150.613735,-34.431093 +2021,7,3,1,New South Wales,150.517927,-34.437578 +2020,7,11,1,New South Wales,150.825347,-34.097778 +2021,5,9,1,New South Wales,150.632594,-34.41827 +2023,7,31,1,New South Wales,150.785256,-33.716973 +2022,4,9,1,New South Wales,153.11027,-29.490273 +2020,9,29,1,New South Wales,153.007932,-28.624028 +2024,2,18,1,New South Wales,152.028817,-32.159062 +2020,9,16,1,New South Wales,153.373266,-28.251322 +2021,3,9,1,New South Wales,150.615658,-34.431184 +2022,1,9,1,New South Wales,153.546131,-28.73487 +2020,1,15,1,New South Wales,150.16624,-34.48819 +2020,11,30,1,New South Wales,151.3166,-30.3 +2022,2,19,1,New South Wales,149.360619,-35.992018 +2021,5,22,1,New South Wales,150.597866,-34.427879 +2021,5,9,1,New South Wales,150.521332,-34.435402 +2021,5,28,1,New South Wales,153.107395,-29.490058 +2023,4,13,1,New South Wales,153.096113,-29.485029 +2020,9,30,1,New South Wales,153.295621,-28.817985 +2022,2,28,1,New South Wales,153.342777,-28.860113 +2021,5,30,1,New South Wales,150.522909,-34.452374 +2020,11,27,1,New South Wales,153.556379,-28.399966 +2023,7,9,1,New South Wales,150.808714,-34.098202 +2022,11,21,1,New South Wales,152.794854,-30.893434 +2020,9,4,1,New South Wales,152.061622,-32.71098 +2021,6,14,1,New South Wales,150.515883,-34.446705 +2021,11,30,1,New South Wales,150.616818,-34.43823 +2020,8,20,1,New South Wales,153.103725,-29.48566 +2021,9,2,1,New South Wales,150.600664,-34.446452 +2020,8,4,1,New South Wales,152.719305,-29.404995 +2021,5,4,1,New South Wales,151.478671,-30.643502 +2021,5,30,1,New South Wales,150.640949,-34.396199 +2023,8,15,1,New South Wales,153.11057,-29.489844 +2021,6,13,1,New South Wales,150.518429,-34.457367 +2021,9,19,1,New South Wales,153.109717,-29.49018 +2021,6,30,1,New South Wales,150.522479,-34.465067 +2021,7,14,1,New South Wales,150.520981,-34.465298 +2021,10,3,1,New South Wales,151.66184,-32.688473 +2023,10,23,1,New South Wales,152.865888,-30.405003 +2020,9,26,1,New South Wales,153.496173,-28.693467 +2024,1,16,1,New South Wales,152.733646,-30.898329 +2021,10,11,1,New South Wales,153.367005,-28.98155 +2023,8,26,1,New South Wales,149.299582,-36.25465 +2021,6,12,1,New South Wales,152.927278,-31.45931 +2024,8,27,1,New South Wales,152.069789,-31.843457 +2023,9,27,1,New South Wales,152.614013,-30.345638 +2020,10,5,1,New South Wales,153.392503,-28.665765 +2022,11,30,1,New South Wales,153.314983,-28.949201 +2021,6,8,1,New South Wales,150.607805,-34.430715 +2022,1,27,1,New South Wales,152.925737,-31.458891 +2021,12,12,1,New South Wales,152.919138,-31.474586 +2023,1,31,1,New South Wales,153.314983,-28.949201 +2021,6,12,1,New South Wales,150.515947,-34.446733 +2022,11,25,1,New South Wales,152.794854,-30.893434 +2023,11,10,1,New South Wales,152.750496,-31.449642 +2021,5,15,1,New South Wales,150.5238,-34.463823 +2024,1,1,1,New South Wales,153.092111,-29.488037 +2022,10,20,1,New South Wales,153.08305,-30.153038 +2021,10,6,1,New South Wales,152.888038,-31.44389 +2021,1,26,1,New South Wales,153.093088,-29.488592 +2020,11,3,1,New South Wales,149.958519,-36.587122 +2021,7,11,1,New South Wales,150.626772,-34.421393 +2021,3,12,1,New South Wales,151.631035,-31.517697 +2022,5,28,1,New South Wales,153.470471,-28.260548 +2023,10,24,1,New South Wales,150.785253,-33.713913 +2020,11,25,1,New South Wales,153.108215,-29.490222 +2023,9,25,1,New South Wales,153.278713,-28.933174 +2024,7,16,1,New South Wales,152.516398,-31.318499 +2022,5,28,1,New South Wales,153.110511,-29.490194 +2022,11,18,1,New South Wales,152.907914,-31.489188 +2020,1,5,1,New South Wales,151.642979,-32.663949 +2021,4,9,1,New South Wales,150.518797,-34.448242 +2022,2,7,1,New South Wales,151.70221,-32.694076 +2022,10,7,1,New South Wales,152.978386,-30.426398 +2020,10,23,1,New South Wales,153.108183,-29.4906 +2021,5,21,1,New South Wales,150.515813,-34.450904 +2022,1,27,1,New South Wales,153.4691,-28.26228 +2021,8,11,1,New South Wales,150.647891,-34.398001 +2021,5,13,1,New South Wales,150.517972,-34.437876 +2023,12,1,1,New South Wales,152.137334,-32.011295 +2020,11,4,1,New South Wales,153.334493,-28.813462 +2020,11,18,1,New South Wales,151.6674,-30.5006 +2021,9,3,1,New South Wales,153.103795,-29.485566 +2021,10,12,1,New South Wales,152.380029,-31.914455 +2021,4,13,1,New South Wales,150.609241,-34.42043 +2021,11,4,1,New South Wales,152.887416,-31.437642 +2021,8,3,1,New South Wales,150.645307,-34.399393 +2023,11,6,1,New South Wales,151.097557,-29.772966 +2020,12,9,1,New South Wales,153.300206,-28.886464 +2021,8,9,1,New South Wales,150.995293,-34.063797 +2021,5,15,1,New South Wales,150.600605,-34.427951 +2022,11,7,1,New South Wales,152.921916,-31.457252 +2020,10,23,1,New South Wales,149.950035,-36.601015 +2021,5,2,1,New South Wales,150.606584,-34.455962 +2022,5,20,1,New South Wales,153.101231,-29.490058 +2022,1,14,1,New South Wales,153.03171,-30.43099 +2021,7,2,1,New South Wales,150.513096,-34.447117 +2022,2,25,1,New South Wales,152.063459,-32.706216 +2023,10,24,1,New South Wales,152.985436,-30.3987 +2023,6,11,1,New South Wales,152.977465,-29.039159 +2021,8,31,1,New South Wales,150.835019,-34.069733 +2021,5,21,1,New South Wales,150.630965,-34.387315 +2021,8,25,1,New South Wales,153.304024,-28.938644 +2021,5,7,1,New South Wales,150.6339,-33.540592 +2021,5,10,1,New South Wales,150.632721,-34.418002 +2022,11,14,1,New South Wales,153.28038,-28.946579 +2021,7,1,1,New South Wales,150.522672,-34.465919 +2020,10,31,1,New South Wales,149.938213,-36.559404 +2021,8,5,1,New South Wales,150.516475,-34.440298 +2020,9,27,1,New South Wales,152.22156,-29.939291 +2024,7,5,1,Queensland,153.021874,-27.263855 +2022,6,30,1,New South Wales,153.313232,-28.816099 +2021,3,11,1,New South Wales,150.519898,-34.466593 +2022,12,27,1,New South Wales,146.581289,-34.761555 +2021,2,6,1,New South Wales,151.645334,-32.55144 +2021,7,10,1,New South Wales,150.626741,-34.421357 +2022,6,10,1,New South Wales,153.109315,-29.49074 +2021,6,27,1,New South Wales,150.64467,-34.39225 +2021,3,17,1,New South Wales,152.113549,-32.760534 +2021,5,5,1,New South Wales,150.516372,-34.447454 +2022,8,19,1,New South Wales,152.089026,-28.784836 +2021,11,29,1,New South Wales,151.003543,-34.059081 +2023,8,22,1,New South Wales,152.37068,-31.923062 +2021,3,6,1,New South Wales,150.515086,-34.447897 +2022,9,20,1,New South Wales,152.32559,-32.097185 +2021,6,13,1,New South Wales,150.520634,-34.453842 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2020,12,,1,New South Wales,150.600987,-34.533564 +2024,1,11,1,New South Wales,152.337032,-32.303196 +2023,2,2,1,New South Wales,153.104079,-29.480584 +2021,11,5,1,New South Wales,153.36838,-28.940092 +2021,6,4,1,New South Wales,150.519805,-34.44728 +2023,11,8,1,New South Wales,150.785544,-33.709173 +2020,12,5,1,New South Wales,152.262705,-32.039796 +2020,4,6,1,New South Wales,153.37193,-29.08315 +2022,2,14,1,New South Wales,150.814839,-34.103949 +2021,5,1,1,New South Wales,150.616133,-34.435909 +2021,5,23,1,New South Wales,150.616178,-34.434359 +2021,5,13,1,New South Wales,150.640354,-34.492761 +2023,8,19,1,New South Wales,150.837839,-34.074174 +2022,5,23,1,New South Wales,153.331636,-28.8452 +2020,1,29,1,New South Wales,153.099819,-30.303974 +2020,10,29,1,New South Wales,151.780333,-32.714185 +2022,10,18,1,New South Wales,151.738861,-30.486105 +2020,1,2,1,New South Wales,152.918487,-31.4842 +2023,8,26,1,New South Wales,152.221821,-32.252481 +2021,6,5,1,New South Wales,150.62541,-34.389921 +2021,9,6,1,New South Wales,150.642995,-34.400395 +2024,8,26,1,New South Wales,150.790056,-34.159167 +2023,1,28,1,New South Wales,150.808211,-34.098136 +2020,3,30,1,New South Wales,149.97345,-36.57936 +2021,5,19,1,New South Wales,150.631528,-34.387795 +2021,5,9,1,New South Wales,150.606321,-34.438133 +2021,6,27,1,New South Wales,153.55836,-28.394137 +2021,6,20,1,New South Wales,150.627972,-34.420903 +2020,8,14,1,New South Wales,152.855653,-31.465993 +2021,5,21,1,New South Wales,150.615574,-34.432625 +2021,7,21,1,New South Wales,150.6453,-34.391135 +2024,2,1,1,New South Wales,153.104305,-29.477754 +2021,6,11,1,New South Wales,150.602128,-34.451565 +2023,,,1,New South Wales,153.114387,-29.185754 +2021,5,6,1,New South Wales,150.519836,-34.435931 +2023,9,12,1,New South Wales,152.620796,-30.332248 +2024,4,10,1,New South Wales,150.658844,-33.526954 +2023,10,25,1,New South Wales,152.978404,-31.187902 +2023,11,2,1,New South Wales,152.194095,-32.224416 +2021,5,18,1,New South Wales,150.523769,-34.463786 +2021,5,3,1,New South Wales,150.626025,-34.390095 +2021,9,8,1,New South Wales,150.513153,-34.447758 +2021,10,14,1,New South Wales,152.374088,-31.916242 +2021,8,7,1,New South Wales,150.514531,-34.443865 +2021,7,3,1,New South Wales,150.514117,-34.446434 +2021,6,30,1,New South Wales,150.644512,-34.393635 +2021,5,4,1,New South Wales,150.61147,-34.419689 +2023,11,5,1,New South Wales,152.373754,-31.914652 +2021,3,26,1,New South Wales,150.5324,-34.481171 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2021,2,1,1,New South Wales,150.56401,-34.52157 +2020,4,15,1,New South Wales,151.873717,-32.476152 +2021,3,25,1,New South Wales,150.532639,-34.481194 +2023,12,20,1,New South Wales,150.786032,-33.712277 +2021,6,29,1,New South Wales,150.596127,-34.411446 +2021,3,12,1,New South Wales,150.523787,-34.461704 +2020,11,3,1,New South Wales,149.998977,-36.551144 +2021,4,19,1,New South Wales,153.104122,-29.4812 +2021,2,4,1,New South Wales,149.79221,-34.154769 +2022,4,21,1,New South Wales,153.10129,-29.490012 +2022,1,14,1,New South Wales,152.09001,-32.733047 +2021,5,5,1,New South Wales,150.615872,-34.435922 +2020,6,30,1,New South Wales,153.46749,-28.81383 +2021,10,10,1,New South Wales,153.396456,-28.647216 +2022,2,6,1,New South Wales,152.483,-30.171 +2021,6,8,1,New South Wales,150.641523,-34.395489 +2024,2,3,1,New South Wales,153.158571,-28.927046 +2021,4,28,1,New South Wales,150.619232,-34.40071 +2023,7,7,1,New South Wales,153.449572,-28.259933 +2022,12,30,1,New South Wales,153.10998,-29.490236 +2020,5,27,1,New South Wales,149.360358,-36.023781 +2020,12,13,1,New South Wales,153.092881,-29.493308 +2022,1,9,1,New South Wales,152.926788,-31.45499 +2022,5,3,1,New South Wales,152.109919,-32.777823 +2021,5,5,1,New South Wales,150.637313,-34.423743 +2021,3,2,1,New South Wales,150.61594,-34.434688 +2024,2,25,1,New South Wales,150.784551,-33.711934 +2021,5,1,1,New South Wales,150.616603,-34.435097 +2024,2,17,1,New South Wales,150.786171,-33.710441 +2022,10,14,1,New South Wales,153.437804,-29.026272 +2021,11,20,1,New South Wales,150.790131,-34.192847 +2023,10,1,1,New South Wales,150.785925,-33.712912 +2024,1,23,1,New South Wales,150.78652,-33.703927 +2024,7,19,1,New South Wales,152.111011,-32.76567 +2023,11,16,1,New South Wales,153.109267,-29.490712 +2021,6,22,1,New South Wales,150.602598,-34.438917 +2024,3,9,1,New South Wales,150.785378,-33.710715 +2021,3,31,1,New South Wales,150.532596,-34.482275 +2020,8,30,1,New South Wales,152.72636,-31.842779 +2021,6,16,1,New South Wales,150.522462,-34.451652 +2021,5,3,1,New South Wales,150.63742,-34.48872 +2021,5,2,1,New South Wales,150.63767,-34.488346 +2021,6,28,1,New South Wales,150.595059,-34.411515 +2021,4,30,1,New South Wales,150.636302,-34.421794 +2023,8,6,1,New South Wales,149.467813,-33.678165 +2020,9,12,1,New South Wales,150.11017,-31.07295 +2020,1,7,1,New South Wales,149.57333,-32.61446 +2021,7,4,1,New South Wales,150.513185,-34.445938 +2024,4,29,1,New South Wales,152.870469,-31.46443 +2021,5,11,1,New South Wales,150.627948,-34.389772 +2023,6,9,1,New South Wales,150.7941,-34.14172 +2023,8,25,1,New South Wales,152.102735,-32.734688 +2022,4,23,1,New South Wales,150.291886,-31.164515 +2021,3,2,1,New South Wales,150.521633,-34.449147 +2021,10,4,1,New South Wales,153.566238,-28.664002 +2021,10,10,1,New South Wales,153.5188,-28.576882 +2021,7,27,1,New South Wales,150.625382,-34.385909 +2021,5,8,1,New South Wales,150.609234,-34.420655 +2023,8,21,1,New South Wales,153.095341,-29.483983 +2022,1,6,1,New South Wales,153.10814,-29.490236 +2021,6,24,1,New South Wales,150.627331,-34.42126 +2021,6,16,1,New South Wales,150.622831,-34.383812 +2022,10,1,1,New South Wales,153.104144,-29.478842 +2023,1,6,1,New South Wales,153.109374,-29.49053 +2020,11,12,1,New South Wales,150.47101,-34.49136 +2023,5,30,1,New South Wales,152.167509,-31.589311 +2021,11,3,1,New South Wales,153.51898,-28.57492 +2024,3,22,1,New South Wales,152.370406,-31.922634 +2024,5,3,1,New South Wales,152.414475,-31.934363 +2023,8,19,1,New South Wales,152.065339,-32.710989 +2021,6,7,1,New South Wales,152.804671,-31.604038 +2023,4,26,1,New South Wales,153.110511,-29.490208 +2023,6,18,1,New South Wales,153.05246,-28.594591 +2023,5,15,1,New South Wales,153.108178,-29.490292 +2022,12,13,1,New South Wales,150.966913,-32.238896 +2021,4,23,1,New South Wales,150.637103,-34.485279 +2021,3,10,1,New South Wales,151.345157,-29.375014 +2021,6,29,1,New South Wales,150.643414,-34.393226 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2021,3,2,1,New South Wales,150.521319,-34.448717 +2023,5,2,1,New South Wales,153.396029,-28.828386 +2020,3,2,1,New South Wales,152.22033,-31.79145 +2022,10,27,1,New South Wales,152.076699,-32.72627 +2020,9,18,1,New South Wales,150.812345,-34.124693 +2020,1,28,1,New South Wales,153.103869,-29.485381 +2021,5,31,1,New South Wales,150.616093,-34.437711 +2021,5,20,1,New South Wales,150.632786,-34.418021 +2021,6,20,1,New South Wales,150.603897,-34.439564 +2022,8,19,1,New South Wales,150.54646,-34.5087 +2020,12,9,1,New South Wales,149.972032,-36.288695 +2021,2,11,1,New South Wales,150.084951,-33.771173 +2021,9,12,1,New South Wales,150.789967,-34.20114 +2021,6,12,1,New South Wales,150.615903,-34.431 +2023,2,4,1,New South Wales,152.889383,-31.443502 +2021,5,16,1,New South Wales,150.520503,-34.453857 +2020,8,9,1,New South Wales,153.359253,-28.893189 +2022,10,8,1,New South Wales,152.373744,-31.9144 +2021,6,25,1,New South Wales,150.597255,-34.417643 +2022,10,13,1,New South Wales,152.10633,-32.73784 +2022,8,30,1,New South Wales,149.323554,-36.298883 +2023,7,28,1,New South Wales,152.91779,-31.4697 +2021,6,17,1,New South Wales,150.519226,-34.459881 +2022,12,11,1,New South Wales,153.35381,-28.89644 +2023,4,25,1,New South Wales,151.789538,-32.6549 +2021,7,20,1,New South Wales,150.646059,-34.3916 +2022,11,27,1,New South Wales,152.777302,-30.885013 +2021,4,30,1,New South Wales,149.573329,-32.614457 +2021,6,12,1,New South Wales,150.630156,-34.420242 +2023,7,15,1,New South Wales,153.110517,-29.490096 +2020,6,3,1,New South Wales,152.804668,-31.13257 +2022,3,31,1,New South Wales,153.36712,-28.807094 +2021,5,2,1,New South Wales,150.609668,-34.436377 +2022,1,6,1,New South Wales,153.55336,-28.407803 +2021,3,8,1,New South Wales,152.60765,-30.52431 +2022,4,9,1,New South Wales,152.926021,-31.452408 +2021,9,24,1,New South Wales,150.838487,-34.085331 +2021,5,28,1,New South Wales,150.5175,-34.451984 +2024,3,16,1,New South Wales,152.793995,-31.643628 +2023,3,27,1,New South Wales,153.298632,-28.82029 +2023,8,9,1,Queensland,151.963994,-27.619752 +2021,3,1,1,New South Wales,150.52145,-34.446872 +2021,7,4,1,New South Wales,150.628979,-34.390612 +2021,5,21,1,New South Wales,150.633832,-34.392455 +2024,2,20,1,New South Wales,152.894844,-31.414349 +2021,6,16,1,New South Wales,150.604095,-34.437963 +2024,1,30,1,New South Wales,150.785103,-33.710113 +2023,12,12,1,New South Wales,149.55989,-33.692482 +2021,6,4,1,New South Wales,153.318522,-28.826961 +2022,6,17,1,New South Wales,153.103951,-29.489587 +2020,8,28,1,New South Wales,153.091634,-29.48784 +2021,9,14,1,New South Wales,151.649727,-32.680193 +2020,12,23,1,New South Wales,153.091162,-29.487878 +2021,4,29,1,New South Wales,150.638563,-34.489472 +2023,5,30,1,New South Wales,150.78993,-34.23398 +2021,5,15,1,New South Wales,150.529743,-34.467892 +2023,2,4,1,New South Wales,153.274112,-28.888406 +2020,1,10,1,New South Wales,152.78537,-30.186161 +2021,5,25,1,New South Wales,150.515386,-34.443287 +2022,2,3,1,New South Wales,150.961559,-34.098921 +2021,6,5,1,New South Wales,150.630579,-34.420647 +2021,12,2,1,New South Wales,153.104122,-29.480743 +2020,2,5,1,New South Wales,153.29238,-28.864021 +2021,6,9,1,New South Wales,150.610432,-34.430541 +2021,8,26,1,New South Wales,150.973729,-34.099438 +2021,5,29,1,New South Wales,150.631146,-34.387454 +2021,2,24,1,New South Wales,153.103784,-29.485548 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2021,8,3,1,New South Wales,150.520306,-34.465672 +2020,11,29,1,New South Wales,152.404167,-31.945815 +2021,4,1,1,New South Wales,150.603565,-34.440522 +2020,12,10,1,New South Wales,149.954748,-36.297726 +2023,2,21,1,New South Wales,153.071536,-30.88693 +2021,7,2,1,New South Wales,150.977245,-34.086419 +2020,10,15,1,New South Wales,149.938155,-36.621708 +2021,5,7,1,New South Wales,150.518297,-34.45191 +2021,5,16,1,New South Wales,150.61459,-34.43394 +2020,10,12,1,New South Wales,149.938155,-36.621708 +2020,7,10,1,New South Wales,152.41411,-31.907995 +2023,7,13,1,New South Wales,153.095309,-29.483965 +2021,6,9,1,New South Wales,150.626557,-34.38704 +2021,6,7,1,New South Wales,150.603635,-34.436521 +2022,3,22,1,New South Wales,153.562331,-28.392089 +2021,11,5,1,New South Wales,152.96213,-30.671984 +2020,2,24,1,New South Wales,150.933006,-32.276114 +2024,8,28,1,New South Wales,152.077179,-32.722441 +2020,2,16,1,New South Wales,152.924943,-31.434442 +2023,3,16,1,New South Wales,151.942657,-32.528247 +2022,11,2,1,New South Wales,151.041533,-34.021685 +2021,7,21,1,New South Wales,153.52954,-28.54593 +2021,7,10,1,New South Wales,150.513049,-34.447242 +2023,8,3,1,New South Wales,152.209235,-31.560939 +2023,11,9,1,New South Wales,152.386438,-31.90253 +2021,6,19,1,New South Wales,150.618778,-34.436276 +2021,8,17,1,New South Wales,150.531262,-34.473233 +2021,7,6,1,New South Wales,150.30893,-29.064958 +2021,11,16,1,New South Wales,152.82844,-29.810285 +2021,10,29,1,New South Wales,150.616989,-34.437981 +2021,9,18,1,New South Wales,153.09518,-29.483334 +2021,5,30,1,New South Wales,150.630994,-34.388217 +2023,8,6,1,New South Wales,153.10445,-29.476941 +2021,5,26,1,New South Wales,150.517229,-34.454521 +2023,8,3,1,New South Wales,153.104176,-29.483769 +2020,10,4,1,New South Wales,151.6887,-32.06324 +2021,3,5,1,New South Wales,152.826661,-31.249574 +2021,5,2,1,New South Wales,150.637557,-34.488479 +2021,5,12,1,New South Wales,150.516863,-34.454036 +2022,9,19,1,New South Wales,152.90758,-30.17379 +2020,9,23,1,New South Wales,152.881902,-31.438588 +2021,2,26,1,New South Wales,153.326746,-28.815788 +2021,6,24,1,New South Wales,150.520357,-34.465782 +2022,6,23,1,New South Wales,150.594797,-35.089459 +2024,3,22,1,New South Wales,152.91037,-31.487595 +2021,5,19,1,New South Wales,150.607988,-34.433829 +2021,6,18,1,New South Wales,150.51906,-34.459968 +2021,8,30,1,New South Wales,150.513142,-34.447758 +2021,8,10,1,New South Wales,150.603663,-34.426036 +2022,7,15,1,New South Wales,153.53215,-28.703269 +2021,6,5,1,New South Wales,150.615048,-34.435419 +2021,9,19,1,New South Wales,153.103693,-29.485805 +2021,11,20,1,New South Wales,153.199046,-28.82118 +2020,5,4,1,New South Wales,150.05894,-34.90655 +2021,5,14,1,New South Wales,150.629075,-34.389541 +2022,11,25,1,New South Wales,150.799225,-34.213363 +2022,9,13,1,New South Wales,153.30756,-28.823006 +2020,7,31,1,New South Wales,152.915031,-31.488943 +2023,7,25,1,New South Wales,152.878566,-31.159058 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2021,6,14,1,New South Wales,150.615491,-34.432092 +2020,6,27,1,New South Wales,153.313079,-28.820148 +2021,5,11,1,New South Wales,150.605437,-34.427144 +2022,11,5,1,New South Wales,152.914657,-31.48001 +2024,1,19,1,New South Wales,152.044273,-32.479552 +2023,9,25,1,New South Wales,150.814178,-34.109791 +2021,8,15,1,New South Wales,150.97787,-34.085729 +2023,8,1,1,New South Wales,152.903739,-30.50301 +2021,3,9,1,New South Wales,150.607716,-34.430416 +2021,7,28,1,New South Wales,150.521701,-34.46488 +2021,9,6,1,New South Wales,150.513231,-34.447706 +2023,9,8,1,New South Wales,152.922519,-31.45867 +2021,2,27,1,New South Wales,153.189405,-28.889794 +2021,6,19,1,New South Wales,150.602769,-34.424585 +2021,5,29,1,New South Wales,150.518188,-34.451917 +2020,1,2,1,New South Wales,152.30042,-31.94825 +2021,4,28,1,New South Wales,150.634968,-34.420101 +2024,8,28,1,New South Wales,152.334753,-32.348258 +2020,10,17,1,New South Wales,150.812345,-34.124693 +2020,9,16,1,New South Wales,153.375014,-28.254046 +2024,6,8,1,New South Wales,152.926614,-31.472944 +2021,4,19,1,New South Wales,150.630875,-34.393976 +2020,5,23,1,New South Wales,152.926081,-31.453437 +2020,5,13,1,New South Wales,150.091014,-33.77256 +2021,5,30,1,New South Wales,150.523679,-34.464253 +2020,10,,1,New South Wales,150.545289,-34.514293 +2023,8,20,1,New South Wales,151.246088,-33.169258 +2020,1,15,1,New South Wales,153.103916,-29.489507 +2021,5,30,1,New South Wales,150.603136,-34.424295 +2024,3,6,1,New South Wales,152.92054,-31.449341 +2021,7,8,1,New South Wales,150.630544,-34.388731 +2021,3,18,1,New South Wales,152.868233,-29.667023 +2022,8,30,1,New South Wales,152.02323,-32.760757 +2022,8,27,1,New South Wales,152.824486,-29.503968 +2023,1,11,1,New South Wales,152.890385,-31.448161 +2020,7,23,1,New South Wales,150.460586,-34.496059 +2022,9,29,1,New South Wales,152.352351,-31.885829 +2020,5,14,1,New South Wales,150.861944,-32.926389 +2023,5,11,1,New South Wales,152.864257,-31.291552 +2023,10,24,1,New South Wales,152.90424,-31.445599 +2021,6,1,1,New South Wales,150.61607,-34.437756 +2023,9,29,1,New South Wales,153.31231,-28.815314 +2021,5,11,1,New South Wales,150.521282,-34.46617 +2021,7,6,1,New South Wales,150.626968,-34.421028 +2021,4,28,1,New South Wales,150.610204,-34.419078 +2023,3,20,1,New South Wales,151.554526,-30.362471 +2020,1,3,1,New South Wales,153.291586,-28.864043 +2020,11,2,1,New South Wales,149.915309,-36.574566 +2020,8,20,1,New South Wales,153.27327,-28.889411 +2023,9,8,1,New South Wales,153.022552,-28.489326 +2021,7,24,1,New South Wales,150.518677,-34.443489 +2022,9,4,1,New South Wales,146.772774,-34.783562 +2020,9,15,1,New South Wales,150.848206,-34.030191 +2022,5,13,1,New South Wales,153.104283,-29.489624 +2023,11,13,1,New South Wales,149.335882,-36.178099 +2021,5,8,1,New South Wales,150.616391,-34.436031 +2021,10,9,1,New South Wales,153.110254,-29.488433 +2022,9,27,1,New South Wales,149.418031,-36.264311 +2021,4,26,1,New South Wales,150.604139,-34.437946 +2021,10,6,1,New South Wales,152.900897,-31.440591 +2021,7,9,1,New South Wales,150.626719,-34.421338 +2023,9,22,1,New South Wales,153.095314,-29.489783 +2021,5,24,1,New South Wales,150.820889,-34.092289 +2023,10,25,1,New South Wales,152.192632,-32.228945 +2021,8,5,1,New South Wales,150.625959,-34.389742 +2023,2,22,1,New South Wales,153.513129,-28.654564 +2023,10,5,1,New South Wales,151.458141,-32.813649 +2021,3,18,1,New South Wales,150.607684,-34.422004 +2021,10,8,1,New South Wales,153.05632,-30.35884 +2023,12,15,1,New South Wales,152.638284,-30.445242 +2020,2,4,1,New South Wales,152.879205,-31.454215 +2024,1,2,1,New South Wales,152.063218,-32.706156 +2021,4,25,1,New South Wales,150.63528,-34.420242 +2022,3,19,1,New South Wales,152.91782,-31.438393 +2023,9,11,1,New South Wales,150.652675,-34.207205 +2023,9,29,1,New South Wales,153.107958,-29.490245 +2022,10,6,1,New South Wales,153.05388,-30.2799 +2021,5,5,1,New South Wales,150.638532,-34.49059 +2022,10,16,1,New South Wales,150.851556,-34.043163 +2021,9,17,1,New South Wales,150.790595,-34.18963 +2023,3,10,1,New South Wales,153.431324,-29.016415 +2023,8,21,1,New South Wales,152.19898,-32.21744 +2023,8,8,1,New South Wales,152.892632,-31.447503 +2021,6,9,1,New South Wales,150.613912,-34.432899 +2020,12,4,1,New South Wales,152.90726,-31.450039 +2021,11,3,1,New South Wales,152.826727,-29.812954 +2020,2,8,1,New South Wales,150.098294,-29.271992 +2021,8,6,1,New South Wales,150.522768,-34.464145 +2021,6,27,1,New South Wales,150.595735,-34.413764 +2021,7,16,1,New South Wales,150.604482,-34.439251 +2021,5,18,1,New South Wales,150.613516,-34.431927 +2021,2,28,1,New South Wales,152.91819,-31.485139 +2021,10,21,1,New South Wales,152.836214,-31.597141 +2020,12,6,1,New South Wales,152.35368,-31.88474 +2022,11,18,1,New South Wales,152.759299,-30.84178 +2021,10,28,1,New South Wales,153.4064,-28.4371 +2023,11,30,1,New South Wales,150.709661,-29.634228 +2021,6,5,1,New South Wales,150.615873,-34.435119 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2024,5,27,1,New South Wales,152.884278,-31.45775 +2020,8,24,1,New South Wales,152.833339,-30.19891 +2021,7,22,1,New South Wales,150.51681,-34.448824 +2020,9,3,1,New South Wales,153.002397,-29.18133 +2023,4,28,1,New South Wales,153.12734,-28.57876 +2020,1,15,1,New South Wales,152.80272,-31.361977 +2021,5,4,1,New South Wales,150.615786,-34.436263 +2021,8,10,1,New South Wales,150.79019,-34.206998 +2023,5,13,1,New South Wales,153.096049,-29.491179 +2023,8,23,1,New South Wales,152.20642,-32.24255 +2024,3,12,1,New South Wales,152.372471,-31.921169 +2021,8,28,1,New South Wales,153.370124,-28.877372 +2024,3,16,1,New South Wales,150.809217,-34.102067 +2021,4,15,1,New South Wales,152.914841,-31.429271 +2021,3,16,1,New South Wales,150.52083,-34.467107 +2022,12,3,1,New South Wales,152.07291,-32.717174 +2021,6,10,1,New South Wales,150.521654,-34.465745 +2021,4,28,1,New South Wales,150.637663,-34.488598 +2020,12,7,1,New South Wales,152.924287,-31.459166 +2021,6,23,1,New South Wales,150.520312,-34.465835 +2021,4,22,1,New South Wales,150.614244,-34.42966 +2020,6,1,1,New South Wales,153.09106,-29.487845 +2021,5,1,1,New South Wales,150.609724,-34.435919 +2022,8,3,1,New South Wales,150.792791,-34.143173 +2022,1,31,1,New South Wales,152.55733,-30.179072 +2023,10,26,1,New South Wales,152.194095,-32.224416 +2020,6,25,1,New South Wales,153.398798,-28.599914 +2023,1,1,1,New South Wales,152.06505,-32.710862 +2021,8,28,1,New South Wales,150.516551,-34.440327 +2023,9,7,1,New South Wales,152.205251,-31.420089 +2021,6,17,1,New South Wales,150.639745,-34.399566 +2021,5,19,1,New South Wales,150.633747,-34.418265 +2023,10,5,1,New South Wales,153.095003,-29.483498 +2021,9,3,1,New South Wales,150.515049,-34.440711 +2021,5,21,1,New South Wales,150.633061,-34.41946 +2021,3,20,1,New South Wales,150.533139,-34.479725 +2021,9,1,1,New South Wales,153.551589,-28.356225 +2021,6,19,1,New South Wales,150.622509,-34.384464 +2021,7,19,1,New South Wales,150.64496,-34.391237 +2020,1,12,1,New South Wales,152.911706,-31.472649 +2022,9,28,1,New South Wales,153.314381,-28.850528 +2021,10,19,1,New South Wales,152.81107,-29.801787 +2020,12,5,1,New South Wales,153.101129,-29.490142 +2022,6,20,1,New South Wales,153.302053,-28.821017 +2021,8,9,1,New South Wales,150.513059,-34.445791 +2021,7,5,1,New South Wales,150.642832,-34.39573 +2021,8,23,1,New South Wales,150.514233,-34.447284 +2023,5,20,1,New South Wales,152.787653,-31.636643 +2021,6,30,1,New South Wales,150.60802,-34.44912 +2022,2,1,1,New South Wales,152.97089,-28.503093 +2020,1,20,1,New South Wales,151.950374,-32.4745 +2021,5,16,1,New South Wales,150.613981,-34.43355 +2021,5,1,1,New South Wales,150.608946,-34.434975 +2020,12,7,1,New South Wales,153.510553,-28.69241 +2022,10,5,1,New South Wales,152.943012,-31.25833 +2021,9,20,1,New South Wales,151.767634,-32.563688 +2022,9,16,1,New South Wales,150.879395,-34.014404 +2023,10,8,1,New South Wales,152.417022,-31.954189 +2020,1,8,1,New South Wales,152.35578,-31.85808 +2021,5,22,1,New South Wales,150.630949,-34.388243 +2020,1,14,1,New South Wales,153.103963,-29.484796 +2021,6,4,1,New South Wales,150.637019,-34.488261 +2021,2,26,1,New South Wales,150.611192,-34.420297 +2022,11,11,1,New South Wales,153.023271,-28.489755 +2023,5,11,1,New South Wales,153.105211,-29.489704 +2022,9,2,1,New South Wales,153.109369,-29.490525 +2020,12,9,1,New South Wales,151.6279,-32.643714 +2022,6,1,1,New South Wales,153.432545,-28.617273 +2022,11,3,1,New South Wales,152.1827,-32.718209 +2022,1,4,1,New South Wales,150.84509,-29.834533 +2020,10,22,1,New South Wales,153.499543,-28.79521 +2020,8,17,1,New South Wales,153.102883,-29.487733 +2023,11,23,1,New South Wales,150.785676,-33.714649 +2020,,,1,New South Wales,152.710572,-28.666909 +2020,12,5,1,New South Wales,153.3346,-28.820958 +2023,1,13,1,New South Wales,152.955376,-30.663571 +2023,9,8,1,New South Wales,153.076265,-28.553447 +2021,9,9,1,New South Wales,152.783268,-30.192429 +2021,8,5,1,New South Wales,150.51735,-34.44641 +2022,9,29,1,New South Wales,152.90635,-30.23624 +2021,5,4,1,New South Wales,150.521472,-34.45312 +2021,7,28,1,New South Wales,151.939303,-32.547247 +2022,3,21,1,New South Wales,153.507487,-28.79793 +2021,7,28,1,New South Wales,150.640574,-34.397138 +2020,10,30,1,New South Wales,149.977333,-36.564828 +2023,1,7,1,New South Wales,153.512138,-28.24121 +2023,11,9,1,New South Wales,150.55964,-34.52468 +2021,5,27,1,New South Wales,150.517166,-34.453709 +2020,10,,1,New South Wales,150.55148,-34.498281 +2022,,,1,New South Wales,153.434063,-28.970312 +2024,2,22,1,New South Wales,150.785778,-33.712324 +2021,6,11,1,New South Wales,150.627147,-34.385799 +2021,4,13,1,New South Wales,150.602612,-34.43083 +2023,6,22,1,New South Wales,150.43767,-34.48861 +2022,8,7,1,New South Wales,152.082224,-32.730627 +2021,4,28,1,New South Wales,150.636174,-34.42209 +2021,11,2,1,New South Wales,150.616765,-34.441249 +2022,12,14,1,New South Wales,153.091752,-29.382877 +2021,8,25,1,New South Wales,150.514451,-34.44728 +2021,9,11,1,New South Wales,150.200414,-29.35394 +2021,5,22,1,New South Wales,150.630787,-34.420615 +2021,6,18,1,New South Wales,150.522141,-34.451475 +2021,5,18,1,New South Wales,150.64078,-34.494275 +2020,5,12,1,New South Wales,153.240267,-29.35754 +2021,9,21,1,New South Wales,150.5284,-34.46287 +2022,8,27,1,New South Wales,150.79049,-34.143698 +2022,11,16,1,New South Wales,152.105583,-32.72786 +2022,12,21,1,New South Wales,151.009296,-34.045933 +2021,9,3,1,New South Wales,150.599987,-34.446537 +2020,9,19,1,New South Wales,152.888659,-30.452702 +2021,10,10,1,New South Wales,152.87327,-29.6845 +2023,1,18,1,New South Wales,153.07177,-30.887507 +2021,4,27,1,New South Wales,150.63556,-34.41995 +2021,8,18,1,New South Wales,152.932724,-31.45874 +2021,3,23,1,New South Wales,150.6154,-34.435687 +2021,5,25,1,New South Wales,150.516543,-34.450135 +2021,3,13,1,New South Wales,150.616212,-34.434305 +2023,12,23,1,New South Wales,152.1103,-32.7787 +2021,9,25,1,New South Wales,150.259326,-30.414646 +2020,9,12,1,New South Wales,153.517887,-28.235662 +2023,6,22,1,New South Wales,153.006216,-30.421315 +2024,1,16,1,New South Wales,152.347903,-32.228499 +2023,11,30,1,New South Wales,153.093286,-29.492627 +2021,6,14,1,New South Wales,150.612164,-34.432018 +2021,9,22,1,New South Wales,152.041095,-32.735782 +2020,2,8,1,New South Wales,152.90837,-31.434786 +2022,11,27,1,New South Wales,152.734049,-30.84847 +2021,8,7,1,New South Wales,153.215212,-28.508764 +2020,11,29,1,New South Wales,153.091784,-29.487938 +2021,4,17,1,New South Wales,150.629781,-34.394207 +2021,4,29,1,New South Wales,150.615934,-34.43641 +2022,12,,1,New South Wales,149.856945,-32.625004 +2023,10,11,1,New South Wales,150.878878,-33.252538 +2021,4,28,1,New South Wales,150.602951,-34.435353 +2020,9,3,1,New South Wales,153.00215,-29.181601 +2021,5,9,1,New South Wales,150.604983,-34.427045 +2021,4,14,1,New South Wales,150.625275,-34.385852 +2020,1,17,1,New South Wales,153.10972,-29.490154 +2021,5,2,1,New South Wales,150.63358,-34.418415 +2021,5,1,1,New South Wales,150.618026,-34.429815 +2022,1,20,1,New South Wales,153.262628,-28.951265 +2021,11,3,1,New South Wales,152.827328,-29.812783 +2021,4,20,1,New South Wales,150.61029,-34.419098 +2021,4,30,1,New South Wales,150.617472,-34.429768 +2023,4,2,1,New South Wales,152.38713,-31.876522 +2023,7,6,1,New South Wales,150.785594,-33.713139 +2022,2,1,1,New South Wales,153.556382,-28.399921 +2021,1,21,1,New South Wales,150.054308,-33.764504 +2022,8,5,1,New South Wales,150.79092,-34.215516 +2021,4,20,1,New South Wales,153.382755,-28.332256 +2022,12,2,1,New South Wales,152.891476,-31.447329 +2023,6,28,1,New South Wales,152.077252,-32.722474 +2021,1,27,1,New South Wales,153.394041,-28.720572 +2022,12,6,1,New South Wales,149.355934,-37.177314 +2024,1,31,1,New South Wales,152.922124,-31.449922 +2020,12,6,1,New South Wales,153.109417,-29.49053 +2021,10,22,1,New South Wales,150.844509,-34.060486 +2024,6,4,1,New South Wales,152.92771,-31.466336 +2020,10,28,1,New South Wales,151.780333,-32.714185 +2021,5,28,1,New South Wales,150.60464,-34.437541 +2020,9,5,1,New South Wales,150.808987,-34.208693 +2021,6,27,1,New South Wales,150.630994,-34.388199 +2021,5,24,1,New South Wales,150.617953,-34.448854 +2021,5,16,1,New South Wales,150.602894,-34.435415 +2022,12,2,1,New South Wales,153.278284,-28.93445 +2021,8,26,1,New South Wales,153.290219,-28.832291 +2022,8,16,1,New South Wales,153.523492,-28.686406 +2021,6,13,1,New South Wales,150.520658,-34.45377 +2021,9,7,1,New South Wales,152.070147,-32.712831 +2021,4,21,1,New South Wales,150.63736,-34.420544 +2023,8,17,1,New South Wales,149.111707,-36.243939 +2023,9,24,1,New South Wales,152.907901,-31.445284 +2021,7,6,1,New South Wales,153.392847,-28.269565 +2023,8,2,1,New South Wales,153.09526,-29.483923 +2021,8,20,1,New South Wales,150.51311,-34.447721 +2020,6,27,1,New South Wales,151.779136,-32.485756 +2022,8,5,1,New South Wales,152.022406,-32.73767 +2021,2,26,1,New South Wales,150.63472,-34.485224 +2021,4,17,1,New South Wales,150.656042,-34.458633 +2021,6,17,1,New South Wales,150.604215,-34.437939 +2024,1,17,1,New South Wales,150.784854,-33.715268 +2021,7,7,1,New South Wales,150.514333,-34.446502 +2022,5,3,1,New South Wales,152.731727,-28.803954 +2022,7,15,1,New South Wales,150.97917,-34.05292 +2020,11,30,1,New South Wales,153.343646,-28.866891 +2022,1,30,1,New South Wales,152.00351,-32.728513 +2023,10,27,1,New South Wales,150.812032,-34.119831 +2021,9,20,1,New South Wales,150.651289,-34.401726 +2021,9,12,1,New South Wales,150.515743,-34.444448 +2023,4,21,1,New South Wales,153.110538,-29.490199 +2022,4,1,1,New South Wales,153.101311,-29.48976 +2020,9,23,1,New South Wales,151.6662,-30.501562 +2023,4,25,1,New South Wales,152.778102,-31.657441 +2021,5,11,1,New South Wales,150.51749,-34.453075 +2023,8,6,1,New South Wales,153.103886,-29.489587 +2021,6,30,1,New South Wales,150.656879,-34.454773 +2020,7,3,1,New South Wales,153.10409,-29.484072 +2020,5,22,1,New South Wales,153.31644,-28.39963 +2020,11,1,1,New South Wales,149.96897,-36.58553 +2023,5,31,1,New South Wales,150.78718,-34.21254 +2020,9,13,1,New South Wales,150.08432,-31.13017 +2024,1,7,1,New South Wales,150.65871,-33.526832 +2023,9,27,1,New South Wales,152.619482,-30.341341 +2023,12,25,1,New South Wales,153.110517,-29.489811 +2020,10,19,1,New South Wales,149.947316,-36.607854 +2022,9,23,1,New South Wales,152.92191,-31.454829 +2023,2,20,1,New South Wales,152.86303,-28.963665 +2021,2,16,1,New South Wales,152.415154,-31.93329 +2023,12,1,1,New South Wales,152.857243,-30.314094 +2020,10,7,1,New South Wales,150.058805,-33.767775 +2020,8,14,1,New South Wales,153.564424,-28.328065 +2021,12,24,1,New South Wales,150.616563,-34.439938 +2021,6,3,1,New South Wales,150.522446,-34.465824 +2021,5,25,1,New South Wales,150.517336,-34.452026 +2020,11,,1,New South Wales,150.613559,-34.417665 +2024,9,8,1,New South Wales,150.422028,-34.387975 +2021,5,15,1,New South Wales,150.62991,-34.395409 +2022,4,7,1,New South Wales,152.90679,-31.466968 +2023,1,26,2,South Australia,138.70654,-34.99039 +2023,11,3,1,New South Wales,152.064801,-32.707579 +2021,6,12,1,New South Wales,150.52043,-34.454117 +2021,4,14,1,New South Wales,150.532747,-34.475652 +2024,6,29,1,New South Wales,152.077233,-32.722459 +2020,9,10,1,New South Wales,150.23024,-34.26114 +2021,1,19,1,New South Wales,152.078142,-32.727834 +2023,1,20,1,New South Wales,152.815152,-31.42944 +2021,3,23,1,New South Wales,153.557263,-28.397359 +2021,4,22,1,New South Wales,150.61421,-34.429714 +2021,6,7,1,New South Wales,150.325544,-29.033981 +2021,7,4,1,New South Wales,152.415046,-31.9333 +2020,10,22,1,New South Wales,149.947316,-36.607854 +2020,8,27,1,New South Wales,151.7361,-29.75 +2020,4,8,1,New South Wales,153.104187,-29.485041 +2022,7,19,1,New South Wales,152.795541,-31.645793 +2022,11,18,1,New South Wales,152.770676,-30.853416 +2020,4,20,1,New South Wales,152.842428,-31.529635 +2021,3,7,1,New South Wales,150.603436,-34.435516 +2021,3,26,1,New South Wales,150.607287,-34.422555 +2024,6,22,1,New South Wales,152.914016,-31.47668 +2022,11,19,1,New South Wales,153.352564,-28.883003 +2020,1,11,1,New South Wales,152.48874,-32.03227 +2023,2,28,1,New South Wales,152.063524,-32.70598 +2021,9,15,1,New South Wales,150.514373,-34.44479 +2020,10,26,1,New South Wales,153.364275,-28.834226 +2021,5,7,1,New South Wales,150.516389,-34.447247 +2021,5,15,1,New South Wales,150.528166,-34.467463 +2021,6,29,1,New South Wales,153.104037,-29.485118 +2021,8,12,1,New South Wales,150.513732,-34.44731 +2021,5,29,1,New South Wales,150.615754,-34.438525 +2020,6,7,1,New South Wales,153.613372,-28.682634 +2022,10,29,1,New South Wales,152.820736,-31.200466 +2021,3,8,1,New South Wales,150.532292,-34.47338 +2023,6,21,1,New South Wales,153.279661,-28.831073 +2021,4,25,1,New South Wales,150.615589,-34.435528 +2020,10,20,1,New South Wales,149.947316,-36.607854 +2020,5,7,1,New South Wales,152.924972,-31.45925 +2023,9,4,1,New South Wales,149.552128,-33.491218 +2021,5,11,1,New South Wales,150.609191,-34.420654 +2020,9,2,1,New South Wales,153.516981,-28.691628 +2021,7,3,1,New South Wales,150.642133,-34.395852 +2021,4,23,1,New South Wales,153.312767,-29.008668 +2021,9,15,1,New South Wales,153.195816,-28.84626 +2021,5,18,1,New South Wales,150.630921,-34.390019 +2022,7,9,1,New South Wales,153.102701,-29.487593 +2020,8,13,1,New South Wales,149.950373,-36.572524 +2021,6,14,1,New South Wales,150.630331,-34.420967 +2021,6,23,1,New South Wales,150.520292,-34.465771 +2022,3,2,1,New South Wales,152.10436,-32.723988 +2021,3,3,1,New South Wales,153.108119,-29.490199 +2021,5,18,1,New South Wales,153.5818,-28.71029 +2022,9,28,1,New South Wales,153.29248,-28.864786 +2022,11,28,1,New South Wales,150.898282,-33.999921 +2020,10,19,1,New South Wales,149.930096,-36.638123 +2021,3,9,1,New South Wales,150.52928,-34.458858 +2022,8,8,1,New South Wales,153.558569,-28.644286 +2022,12,27,1,New South Wales,153.233821,-28.945517 +2021,,,1,New South Wales,153.599218,-28.719867 +2023,10,1,1,New South Wales,153.094944,-30.372371 +2023,8,30,1,New South Wales,149.358826,-36.176866 +2023,9,20,1,New South Wales,150.03877,-30.93457 +2022,11,24,1,New South Wales,152.770676,-30.853416 +2021,6,2,1,New South Wales,150.519484,-34.455207 +2022,11,4,1,New South Wales,150.83358,-33.38066 +2023,5,3,1,New South Wales,153.395804,-28.999257 +2021,5,24,1,New South Wales,150.597072,-34.428603 +2022,4,19,1,New South Wales,151.022649,-34.026487 +2020,9,29,1,New South Wales,153.073282,-30.297941 +2021,6,8,1,New South Wales,150.614882,-34.432864 +2022,10,6,1,New South Wales,150.845508,-34.07335 +2023,8,16,1,New South Wales,150.785074,-33.710845 +2023,8,14,1,New South Wales,152.921563,-31.453251 +2021,4,17,1,New South Wales,150.607571,-34.454178 +2021,1,9,1,New South Wales,153.563417,-28.38145 +2022,12,1,1,New South Wales,150.646112,-33.738628 +2020,2,5,1,New South Wales,149.35486,-36.18352 +2021,4,26,1,New South Wales,150.61604,-34.436123 +2021,6,16,1,New South Wales,150.630277,-34.420957 +2022,2,6,1,New South Wales,153.277598,-28.937314 +2021,6,16,1,New South Wales,150.622684,-34.384035 +2021,4,1,1,New South Wales,150.515441,-34.44693 +2020,9,22,1,New South Wales,152.89905,-31.44506 +2020,11,10,1,New South Wales,152.915616,-31.482586 +2022,11,25,1,New South Wales,152.770676,-30.853416 +2023,4,24,1,New South Wales,149.326041,-36.334464 +2023,1,5,1,New South Wales,152.934118,-29.725197 +2021,10,27,1,New South Wales,152.9869,-30.4028 +2020,5,4,1,New South Wales,153.428439,-28.955509 +2021,5,24,1,New South Wales,150.594666,-34.427518 +2021,12,12,1,New South Wales,152.839682,-31.090351 +2021,5,19,1,New South Wales,150.515319,-34.451057 +2021,6,27,1,New South Wales,150.597456,-34.418242 +2021,6,23,1,New South Wales,150.527581,-34.455735 +2023,11,10,1,New South Wales,150.991043,-34.08772 +2021,6,19,1,New South Wales,150.522228,-34.451485 +2022,10,13,1,New South Wales,153.377273,-28.329243 +2021,4,15,1,New South Wales,150.656937,-34.458542 +2021,9,11,1,New South Wales,150.524537,-34.482725 +2022,4,14,1,New South Wales,150.270318,-31.126723 +2023,8,14,1,New South Wales,153.302468,-28.848121 +2023,7,22,1,New South Wales,150.786056,-33.714098 +2022,8,14,1,New South Wales,150.55444,-34.511271 +2024,7,16,1,New South Wales,152.257467,-32.209227 +2022,12,20,1,New South Wales,152.077229,-32.722466 +2021,5,2,1,New South Wales,150.6185,-34.429599 +2020,1,18,1,New South Wales,152.907764,-31.456121 +2022,7,19,1,New South Wales,152.510267,-31.678701 +2021,7,17,1,New South Wales,150.597958,-34.415899 +2021,5,10,1,New South Wales,150.632904,-34.418068 +2020,10,3,1,New South Wales,151.63547,-32.619853 +2022,7,27,1,New South Wales,152.921512,-31.474598 +2021,4,9,1,New South Wales,152.901137,-31.442612 +2021,5,21,1,New South Wales,150.598708,-34.428472 +2021,6,25,1,New South Wales,150.6252,-34.386184 +2023,7,19,1,New South Wales,153.407585,-28.98299 +2021,5,31,1,New South Wales,150.524397,-34.46388 +2021,10,8,1,New South Wales,150.791068,-34.112623 +2022,12,13,1,New South Wales,152.850406,-31.451441 +2021,6,29,1,New South Wales,150.513126,-34.44719 +2024,1,8,1,New South Wales,152.90811,-31.429879 +2022,8,13,1,New South Wales,150.809758,-34.101251 +2021,5,26,1,New South Wales,150.522145,-34.46497 +2020,10,10,1,New South Wales,152.066656,-32.709755 +2022,2,7,1,New South Wales,152.900198,-31.452096 +2022,9,1,1,New South Wales,153.32338,-28.880745 +2021,4,23,1,New South Wales,150.605258,-34.422741 +2021,1,2,1,New South Wales,152.132983,-32.724912 +2021,5,5,1,New South Wales,150.609176,-34.420771 +2023,12,21,1,New South Wales,152.910083,-30.505415 +2021,6,11,1,New South Wales,150.522733,-34.459411 +2022,2,11,1,New South Wales,153.30258,-28.845844 +2024,8,19,1,New South Wales,152.406557,-31.944608 +2021,4,25,1,New South Wales,150.52142,-34.46666 +2021,5,24,1,New South Wales,150.517368,-34.452054 +2021,8,1,1,New South Wales,152.063676,-32.706562 +2021,7,16,1,New South Wales,150.627365,-34.421216 +2021,9,28,1,New South Wales,150.984956,-34.092211 +2021,4,22,1,New South Wales,150.522138,-34.465917 +2022,12,18,1,New South Wales,151.623128,-30.415255 +2022,4,4,1,New South Wales,153.109294,-29.490801 +2024,5,8,1,New South Wales,152.030235,-32.651336 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2021,7,19,1,New South Wales,150.516324,-34.447967 +2023,9,15,1,New South Wales,150.802963,-34.19091 +2020,10,28,1,New South Wales,153.463368,-28.321162 +2021,7,10,1,New South Wales,150.520245,-34.465527 +2023,6,6,1,New South Wales,150.78315,-33.717931 +2021,5,9,1,New South Wales,150.521345,-34.466613 +2022,5,6,1,New South Wales,153.104122,-29.477469 +2024,1,8,1,New South Wales,153.108135,-29.490245 +2022,3,29,1,New South Wales,153.268372,-28.912917 +2022,7,30,1,New South Wales,152.91142,-31.472867 +2022,11,25,1,New South Wales,152.795899,-30.884771 +2023,12,16,1,New South Wales,153.359462,-28.807868 +2020,11,23,1,New South Wales,152.404167,-31.945815 +2021,4,6,1,New South Wales,151.6887,-32.06324 +2023,6,19,1,New South Wales,149.952246,-36.596292 +2022,6,15,1,New South Wales,153.478507,-28.631175 +2021,6,13,1,New South Wales,150.520828,-34.459444 +2020,10,29,1,New South Wales,149.958935,-36.568735 +2021,4,9,1,New South Wales,152.924019,-31.459472 +2021,6,17,1,New South Wales,150.604295,-34.43895 +2021,12,25,1,New South Wales,150.617307,-34.439033 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2023,5,31,1,New South Wales,150.79209,-34.21536 +2020,5,9,1,New South Wales,152.922857,-31.447206 +2021,6,14,1,New South Wales,150.623552,-34.38526 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2023,11,11,1,New South Wales,152.50955,-31.893674 +2024,4,22,1,New South Wales,152.397187,-31.976944 +2024,1,8,1,New South Wales,152.063677,-32.706562 +2022,7,,1,New South Wales,153.599218,-28.719867 +2021,5,5,1,New South Wales,150.522968,-34.452573 +2020,8,7,1,New South Wales,152.923886,-31.444286 +2021,5,3,1,New South Wales,150.632707,-34.418885 +2020,1,8,1,New South Wales,152.922867,-31.459288 +2021,5,20,1,New South Wales,150.515362,-34.451058 +2020,12,3,1,New South Wales,149.967708,-36.441911 +2021,6,2,1,New South Wales,150.604748,-34.427293 +2021,8,20,1,New South Wales,153.078606,-30.338775 +2022,12,6,1,New South Wales,149.355934,-37.177314 +2020,8,29,1,New South Wales,152.90013,-29.631312 +2021,5,29,1,New South Wales,150.603042,-34.424519 +2021,7,30,1,New South Wales,150.641935,-34.398643 +2021,5,3,1,New South Wales,150.520464,-34.454064 +2020,4,14,1,New South Wales,150.105221,-33.780196 +2023,10,15,1,New South Wales,152.378205,-31.918912 +2021,7,5,1,New South Wales,150.644075,-34.393681 +2021,2,26,1,New South Wales,151.635908,-32.6197 +2021,4,2,1,New South Wales,150.534059,-34.479906 +2024,1,30,1,New South Wales,153.109723,-29.490189 +2022,11,20,1,New South Wales,152.794945,-30.901933 +2020,9,15,1,New South Wales,153.103905,-29.484878 +2021,9,4,1,New South Wales,153.572557,-28.368956 +2023,10,30,1,New South Wales,152.923955,-30.505279 +2020,5,,1,New South Wales,152.061195,-32.739218 +2022,1,26,1,New South Wales,150.978421,-34.085368 +2023,6,27,1,New South Wales,150.662833,-33.526343 +2021,3,12,1,New South Wales,150.517338,-34.451575 +2023,5,20,1,New South Wales,152.888913,-31.442509 +2021,6,6,1,New South Wales,150.519032,-34.447319 +2022,8,11,1,New South Wales,153.527063,-28.642875 +2020,10,29,1,New South Wales,153.562995,-28.381709 +2023,5,30,1,New South Wales,150.79002,-34.23712 +2023,12,18,1,New South Wales,150.783132,-33.71872 +2021,7,12,1,New South Wales,150.630815,-34.386456 +2020,12,9,1,New South Wales,152.092424,-32.738356 +2020,,,1,New South Wales,152.736077,-28.674643 +2021,9,8,1,New South Wales,150.582601,-34.500217 +2021,9,9,1,New South Wales,150.651446,-33.52184 +2021,6,25,1,New South Wales,150.59711,-34.417028 +2021,1,12,1,New South Wales,153.466064,-28.237277 +2024,1,18,1,New South Wales,152.374163,-31.91544 +2022,4,,1,New South Wales,153.558112,-28.354205 +2021,9,16,1,New South Wales,150.525511,-34.471142 +2023,10,13,1,New South Wales,152.796233,-31.652241 +2022,8,24,1,New South Wales,152.354974,-31.913322 +2021,6,11,1,New South Wales,150.518219,-34.45345 +2021,5,15,1,New South Wales,150.529664,-34.467972 +2021,6,2,1,New South Wales,150.657667,-34.456167 +2021,5,21,1,New South Wales,150.631182,-34.387328 +2023,8,23,1,New South Wales,153.318205,-28.820654 +2021,6,5,1,New South Wales,150.60478,-34.427302 +2021,8,28,1,New South Wales,153.472227,-28.247172 +2021,7,2,1,New South Wales,153.584284,-28.631598 +2021,8,12,1,New South Wales,150.517669,-34.437455 +2021,8,11,1,New South Wales,153.559444,-28.328333 +2020,10,5,1,New South Wales,152.963151,-28.426656 +2020,11,24,1,New South Wales,152.909483,-31.474266 +2021,6,3,1,New South Wales,150.605729,-34.437526 +2024,2,25,1,New South Wales,150.989805,-34.025883 +2023,12,13,1,New South Wales,152.916065,-31.457764 +2022,10,14,1,New South Wales,153.319275,-28.819965 +2023,10,19,1,New South Wales,153.101204,-29.490044 +2021,5,30,1,New South Wales,150.603093,-34.424285 +2022,3,2,1,New South Wales,149.5492,-33.488035 +2021,7,6,1,New South Wales,150.631136,-34.387417 +2021,4,14,1,New South Wales,150.616162,-34.436054 +2021,11,8,1,New South Wales,152.063828,-32.706555 +2021,5,3,1,New South Wales,150.605136,-34.426255 +2024,3,13,1,New South Wales,152.895785,-31.435164 +2020,8,22,1,New South Wales,152.404167,-31.945815 +2020,10,20,1,New South Wales,152.734082,-31.027241 +2022,9,11,1,New South Wales,153.368349,-28.876599 +2020,2,19,1,New South Wales,152.925407,-31.445133 +2023,12,13,1,New South Wales,151.935639,-32.242583 +2021,5,4,1,New South Wales,150.638518,-34.490688 +2021,5,8,1,New South Wales,150.659043,-34.457573 +2021,5,23,1,New South Wales,150.52902,-34.471357 +2020,10,22,1,New South Wales,152.064942,-32.709353 +2020,10,28,1,New South Wales,149.934245,-36.578531 +2020,3,25,1,New South Wales,150.118389,-35.081507 +2021,8,15,1,New South Wales,150.604965,-34.431498 +2020,11,18,1,New South Wales,149.957744,-36.497148 +2023,7,25,1,New South Wales,150.335998,-34.639966 +2021,5,5,1,New South Wales,150.520735,-34.436093 +2023,12,9,1,New South Wales,150.990654,-34.024174 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2021,7,2,1,New South Wales,150.627381,-34.390599 +2021,5,18,1,New South Wales,150.613447,-34.431655 +2022,1,3,1,New South Wales,150.99624,-34.082946 +2021,7,3,1,New South Wales,150.518308,-34.439767 +2021,7,2,1,New South Wales,150.626892,-34.421017 +2024,1,9,1,New South Wales,153.109358,-29.490455 +2021,11,19,1,New South Wales,150.615641,-34.440596 +2020,3,26,1,New South Wales,150.061113,-33.776358 +2021,6,4,1,New South Wales,150.534731,-34.459302 +2021,6,30,1,New South Wales,150.627369,-34.420287 +2022,12,13,1,New South Wales,152.857148,-31.447159 +2023,8,3,1,New South Wales,151.356908,-33.042967 +2021,10,21,1,New South Wales,153.55589,-28.399119 +2021,5,2,1,New South Wales,150.625485,-34.389949 +2021,7,3,1,New South Wales,150.525416,-34.464766 +2021,10,6,1,New South Wales,152.929294,-31.450528 +2021,5,4,1,New South Wales,150.611501,-34.419753 +2021,5,22,1,New South Wales,150.59815,-34.42783 +2024,1,18,1,New South Wales,150.87627,-34.035028 +2023,3,1,1,New South Wales,150.828654,-34.077477 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2021,5,14,1,New South Wales,150.525619,-34.464139 +2021,5,15,1,New South Wales,150.637333,-34.423825 +2021,12,7,1,New South Wales,152.440795,-31.942237 +2020,8,21,1,New South Wales,153.104256,-29.479841 +2023,11,25,1,New South Wales,152.921742,-31.474842 +2020,10,22,1,New South Wales,149.950035,-36.601015 +2020,4,20,1,New South Wales,152.846455,-31.430925 +2022,9,3,1,New South Wales,152.063956,-32.706625 +2023,8,28,1,New South Wales,153.092524,-29.493189 +2021,4,24,1,New South Wales,150.605617,-34.423505 +2021,5,23,1,New South Wales,150.522215,-34.46481 +2020,12,21,1,New South Wales,153.560992,-28.388905 +2021,5,13,1,New South Wales,150.62918,-34.395845 +2021,4,5,1,New South Wales,150.607058,-34.437841 +2023,11,9,1,New South Wales,152.412555,-31.932138 +2023,4,11,1,New South Wales,150.839174,-34.057219 +2021,4,20,1,New South Wales,150.604572,-34.424684 +2021,1,4,1,New South Wales,153.104171,-29.478524 +2021,6,11,1,New South Wales,150.523649,-34.459366 +2021,9,2,1,New South Wales,153.103806,-29.485571 +2021,4,25,1,New South Wales,150.637302,-34.48787 +2020,9,9,1,New South Wales,153.317523,-28.851214 +2021,5,30,1,New South Wales,150.524121,-34.471402 +2022,3,14,1,New South Wales,152.926401,-31.455671 +2020,9,30,1,New South Wales,150.850173,-34.067842 +2021,4,30,1,New South Wales,150.094261,-34.148854 +2021,4,25,1,New South Wales,150.635333,-34.420261 +2020,12,18,1,New South Wales,152.078206,-32.727783 +2022,8,4,1,New South Wales,150.796658,-34.21262 +2022,5,26,1,New South Wales,152.374047,-31.913202 +2022,7,15,1,New South Wales,153.17867,-28.85897 +2020,10,15,1,New South Wales,149.909046,-36.609857 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2021,9,14,1,New South Wales,152.822979,-29.506251 +2021,6,21,1,New South Wales,150.62795,-34.42092 +2021,3,9,1,New South Wales,152.915994,-31.454495 +2022,8,31,1,New South Wales,152.786688,-31.629194 +2021,4,18,1,New South Wales,150.616465,-34.430371 +2020,1,7,1,New South Wales,153.302593,-28.819803 +2021,11,18,1,New South Wales,152.076587,-32.722674 +2021,6,23,1,New South Wales,150.625767,-34.38652 +2022,4,29,1,New South Wales,153.300675,-28.821829 +2021,12,16,1,New South Wales,152.602127,-31.802261 +2023,12,11,1,New South Wales,153.110576,-29.490142 +2020,9,12,1,New South Wales,150.11865,-31.14425 +2023,11,2,1,New South Wales,151.972799,-32.174892 +2021,4,25,1,New South Wales,150.608643,-34.453613 +2021,5,9,1,New South Wales,150.517169,-34.44775 +2021,7,11,1,New South Wales,150.513057,-34.447314 +2020,6,2,1,New South Wales,150.001929,-36.463023 +2021,4,12,1,New South Wales,150.526216,-34.45831 +2023,2,28,1,New South Wales,152.793148,-31.642251 +2021,7,9,1,New South Wales,150.513091,-34.447288 +2022,10,28,1,New South Wales,152.008,-32.72804 +2021,5,13,1,New South Wales,150.516587,-34.449009 +2023,9,4,1,New South Wales,152.813143,-31.542456 +2022,4,26,1,New South Wales,152.914598,-31.468444 +2021,1,5,1,New South Wales,150.010328,-33.769386 +2021,6,10,1,New South Wales,150.518208,-34.453441 +2021,5,15,1,New South Wales,150.516159,-34.449505 +2021,7,20,1,New South Wales,153.107432,-29.490119 +2021,6,17,1,New South Wales,150.618177,-34.435218 +2021,8,9,1,New South Wales,153.509563,-28.700441 +2023,8,5,1,New South Wales,150.871125,-34.045533 +2020,7,16,1,New South Wales,153.106072,-28.70895 +2020,1,11,1,New South Wales,153.093085,-30.318178 +2020,5,12,1,New South Wales,153.379668,-28.586368 +2020,1,28,1,New South Wales,153.103741,-29.485557 +2022,4,11,1,New South Wales,151.65893,-32.684334 +2023,9,27,1,New South Wales,152.713237,-31.805293 +2021,11,11,1,New South Wales,153.437732,-28.993352 +2021,7,5,1,New South Wales,150.60315,-34.417705 +2023,6,14,1,New South Wales,153.326235,-28.824508 +2020,8,18,1,New South Wales,153.103178,-29.486197 +2022,11,1,1,New South Wales,152.895741,-31.428246 +2023,6,23,1,New South Wales,152.902527,-31.241502 +2021,7,30,1,New South Wales,150.516536,-34.450018 +2021,5,27,1,New South Wales,150.521742,-34.465693 +2021,7,20,1,New South Wales,150.645949,-34.391643 +2021,6,9,1,New South Wales,150.51613,-34.454544 +2022,1,4,1,New South Wales,150.959382,-34.106531 +2021,5,11,1,New South Wales,150.609224,-34.420637 +2020,5,26,1,New South Wales,153.43828,-28.699478 +2022,12,16,1,New South Wales,153.356155,-28.899245 +2021,5,20,1,New South Wales,150.631483,-34.387821 +2023,7,31,1,New South Wales,152.089045,-32.738276 +2021,6,9,1,New South Wales,150.626568,-34.38704 +2020,12,21,1,New South Wales,153.317534,-28.827945 +2022,1,10,1,New South Wales,152.366249,-31.871338 +2024,1,2,1,New South Wales,152.3295,-31.920675 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2020,10,11,1,New South Wales,152.898982,-29.631079 +2024,5,28,1,New South Wales,152.064063,-32.708707 +2021,,,1,New South Wales,149.846211,-32.39808 +2021,12,10,1,New South Wales,153.108167,-29.490614 +2020,5,11,1,New South Wales,153.1094,-30.29861 +2022,8,18,1,New South Wales,150.861946,-34.029263 +2022,1,13,1,New South Wales,151.487783,-30.634036 +2023,7,8,1,New South Wales,152.785911,-31.631828 +2021,7,3,1,New South Wales,150.627287,-34.421286 +2021,6,16,1,New South Wales,150.639846,-34.400226 +2021,4,19,1,New South Wales,150.637181,-34.422262 +2021,5,12,1,New South Wales,150.517688,-34.453746 +2021,8,10,1,New South Wales,150.513708,-34.4463 +2024,1,6,1,New South Wales,152.378822,-31.919921 +2021,1,13,1,New South Wales,152.928708,-31.466484 +2020,7,19,1,New South Wales,153.104141,-29.485228 +2021,6,15,1,New South Wales,150.623255,-34.38575 +2024,2,12,1,New South Wales,150.785438,-33.718741 +2021,4,14,1,New South Wales,149.282417,-36.057778 +2022,5,18,1,New South Wales,152.820329,-31.463294 +2022,10,11,1,New South Wales,152.895794,-31.432647 +2021,6,10,1,New South Wales,150.645986,-34.397297 +2023,3,3,1,New South Wales,150.564273,-29.54578 +2021,7,13,1,New South Wales,150.627273,-34.420619 +2021,7,3,1,New South Wales,150.628392,-34.391007 +2021,5,14,1,New South Wales,150.523681,-34.464172 +2021,5,8,1,New South Wales,150.627927,-34.390123 +2021,6,19,1,New South Wales,150.619153,-34.436878 +2022,7,7,1,New South Wales,152.063773,-32.701867 +2024,2,14,1,New South Wales,150.80834,-33.464764 +2020,4,30,1,New South Wales,152.085295,-32.730287 +2021,5,26,1,New South Wales,150.518053,-34.453537 +2023,11,27,1,New South Wales,152.105345,-32.736858 +2023,4,19,1,New South Wales,152.044245,-32.137155 +2023,9,15,1,New South Wales,153.394086,-28.958996 +2021,7,8,1,New South Wales,150.630932,-34.388847 +2021,7,7,1,New South Wales,150.599833,-34.418037 +2022,6,27,1,New South Wales,152.818471,-31.542479 +2023,8,3,1,New South Wales,153.104165,-29.478772 +2023,7,11,1,New South Wales,152.862125,-31.280368 +2020,10,6,1,New South Wales,152.921056,-31.473295 +2022,9,21,1,New South Wales,153.10343,-29.485594 +2021,2,23,1,New South Wales,152.06202,-32.709226 +2021,6,13,1,New South Wales,150.515763,-34.446702 +2023,9,14,1,New South Wales,149.86291,-31.37915 +2022,9,20,1,New South Wales,150.790619,-34.210895 +2022,2,24,1,New South Wales,152.0348,-32.76535 +2020,1,27,1,New South Wales,153.611127,-28.662357 +2021,8,8,1,New South Wales,150.513232,-34.445839 +2021,9,17,1,New South Wales,150.513813,-34.445671 +2020,1,26,1,New South Wales,153.104157,-29.485025 +2021,6,21,1,New South Wales,150.60252,-34.419956 +2024,2,28,1,New South Wales,150.784449,-33.716115 +2021,5,25,1,New South Wales,150.618038,-34.435116 +2024,6,19,1,New South Wales,152.063,-32.7074 +2021,5,7,1,New South Wales,150.519804,-34.464256 +2020,12,2,1,New South Wales,152.834844,-31.594921 +2021,4,22,1,New South Wales,150.630965,-34.388451 +2020,1,24,1,New South Wales,149.373649,-36.146025 +2021,5,4,1,New South Wales,150.605505,-34.437369 +2021,6,19,1,New South Wales,150.627764,-34.420962 +2020,10,23,1,New South Wales,151.9251,-32.49093 +2021,5,5,1,New South Wales,150.63852,-34.490616 +2024,2,13,1,New South Wales,153.103924,-29.489619 +2020,11,25,1,New South Wales,152.153345,-32.731477 +2024,9,23,1,New South Wales,152.01619,-32.723907 +2020,10,30,1,New South Wales,149.96897,-36.58553 +2022,8,6,1,New South Wales,153.265006,-28.85328 +2021,11,1,1,New South Wales,153.104155,-29.4788 +2022,9,29,1,New South Wales,152.653883,-31.34279 +2020,8,10,1,New South Wales,153.288292,-28.809314 +2020,10,28,1,New South Wales,149.984095,-36.575978 +2020,10,24,1,New South Wales,149.958935,-36.568735 +2022,1,30,1,New South Wales,153.272241,-28.941837 +2024,2,3,1,New South Wales,152.374212,-31.915419 +2021,5,3,1,New South Wales,150.621125,-34.398754 +2023,12,30,1,New South Wales,150.78326,-33.719196 +2020,11,13,1,New South Wales,150.01112,-36.547428 +2023,11,4,1,New South Wales,152.38625,-31.902483 +2020,10,23,1,New South Wales,149.931009,-36.595007 +2021,4,3,1,New South Wales,150.607206,-34.43037 +2021,7,13,1,New South Wales,150.513842,-34.447285 +2020,10,13,1,New South Wales,152.894418,-31.447732 +2020,10,20,1,New South Wales,149.931009,-36.595007 +2021,5,1,1,New South Wales,150.634338,-34.420071 +2021,6,30,1,New South Wales,150.627122,-34.390549 +2022,9,7,1,New South Wales,153.103463,-29.485697 +2021,6,3,1,New South Wales,150.639341,-34.399594 +2021,5,20,1,New South Wales,150.630283,-34.395281 +2020,1,11,1,New South Wales,153.292409,-28.864674 +2022,8,26,1,New South Wales,153.103929,-29.489591 +2023,6,17,1,New South Wales,152.910411,-31.43672 +2021,8,31,1,New South Wales,150.643689,-34.394656 +2022,9,9,1,New South Wales,152.914889,-31.458946 +2021,7,14,1,New South Wales,150.597226,-34.410322 +2021,5,2,1,New South Wales,150.637477,-34.488216 +2022,8,11,1,New South Wales,150.521587,-34.463904 +2021,5,9,1,New South Wales,150.517192,-34.447326 +2021,6,28,1,New South Wales,150.523077,-34.466206 +2024,1,16,1,New South Wales,152.82069,-30.911734 +2022,10,16,1,New South Wales,150.23469,-31.84523 +2020,1,20,1,New South Wales,152.235574,-32.381768 +2022,5,23,1,New South Wales,153.102776,-29.487476 +2023,10,17,1,New South Wales,150.786152,-33.709735 +2020,1,13,1,New South Wales,153.303585,-28.650415 +2021,5,7,1,New South Wales,150.603939,-34.427042 +2022,4,19,1,New South Wales,153.101306,-29.490096 +2023,8,15,1,New South Wales,150.786965,-33.70567 +2021,7,6,1,New South Wales,150.631182,-34.387328 +2021,5,22,1,New South Wales,150.633885,-34.392519 +2022,8,1,1,New South Wales,150.794924,-34.134713 +2021,3,8,1,New South Wales,150.518799,-34.447837 +2023,11,20,1,New South Wales,152.106292,-32.72845 +2021,6,28,1,New South Wales,150.630921,-34.388099 +2021,4,27,1,New South Wales,150.6095,-34.418947 +2021,4,8,1,New South Wales,150.603331,-34.43079 +2021,6,15,1,New South Wales,153.168404,-29.436313 +2021,5,17,1,New South Wales,150.629841,-34.390133 +2020,10,19,1,New South Wales,149.909982,-36.631687 +2021,7,10,1,New South Wales,152.412887,-31.932133 +2021,12,27,1,New South Wales,152.924223,-31.454146 +2020,3,11,1,New South Wales,152.03766,-32.731462 +2022,10,14,1,New South Wales,153.609525,-28.661307 +2023,6,3,1,New South Wales,153.279103,-28.874212 +2023,7,18,1,New South Wales,153.55749,-28.388386 +2020,10,29,1,New South Wales,149.984095,-36.575978 +2021,7,5,1,New South Wales,151.545175,-31.582822 +2020,11,2,1,New South Wales,149.958519,-36.587122 +2020,5,24,1,New South Wales,153.003806,-29.18423 +2021,6,13,1,New South Wales,150.643646,-34.395818 +2021,6,12,1,New South Wales,150.626711,-34.385438 +2021,7,9,1,New South Wales,150.640844,-34.393736 +2023,12,9,1,New South Wales,153.103892,-29.489559 +2020,11,15,1,New South Wales,149.969776,-36.511423 +2020,10,13,1,New South Wales,152.894416,-31.448286 +2020,10,29,1,New South Wales,149.979238,-36.570187 +2021,5,26,1,New South Wales,150.522189,-34.464926 +2021,4,25,1,New South Wales,150.615679,-34.43544 +2020,10,22,1,New South Wales,149.923643,-36.618562 +2021,2,7,1,New South Wales,153.103768,-29.485501 +2024,1,7,1,New South Wales,152.907617,-31.450773 +2023,7,18,1,New South Wales,152.929214,-31.458051 +2024,2,6,1,New South Wales,152.98375,-30.421151 +2024,5,16,1,New South Wales,152.064739,-32.709084 +2021,5,19,1,New South Wales,150.530413,-34.471376 +2022,11,18,1,New South Wales,152.908987,-31.467284 +2023,11,2,1,New South Wales,152.909794,-31.472155 +2021,6,7,1,New South Wales,150.62707,-34.389674 +2023,7,19,1,New South Wales,153.103768,-29.48559 +2021,1,20,1,New South Wales,152.963999,-30.66193 +2020,10,19,1,New South Wales,149.947183,-36.617465 +2021,6,10,1,New South Wales,150.6272,-34.385836 +2020,10,10,1,New South Wales,149.941793,-36.651646 +2021,3,27,1,New South Wales,153.228883,-28.660093 +2023,10,19,1,New South Wales,150.785411,-33.705542 +2021,8,17,1,New South Wales,152.921514,-31.475199 +2024,1,12,1,New South Wales,152.371061,-31.923432 +2021,7,21,1,New South Wales,152.161819,-32.713364 +2023,1,6,1,New South Wales,152.379004,-31.918056 +2021,4,29,1,New South Wales,150.614899,-34.429574 +2023,11,4,1,New South Wales,152.388675,-31.902263 +2021,6,17,1,New South Wales,150.519074,-34.459851 +2020,11,22,1,New South Wales,149.942556,-36.497108 +2023,9,21,1,New South Wales,152.608892,-30.343602 +2021,7,17,1,New South Wales,150.515806,-34.446721 +2020,4,20,1,New South Wales,152.878918,-31.479023 +2021,5,1,1,New South Wales,150.607862,-34.455446 +2022,11,24,1,New South Wales,152.785697,-31.629586 +2022,8,30,1,New South Wales,149.315875,-36.297222 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2021,8,7,1,New South Wales,150.630941,-34.387387 +2020,3,29,1,New South Wales,153.33124,-28.82175 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2020,11,26,1,New South Wales,153.367408,-28.693612 +2021,2,28,1,New South Wales,153.314983,-28.949201 +2021,5,28,1,New South Wales,150.630719,-34.420695 +2021,5,27,1,New South Wales,150.597931,-34.425987 +2020,9,10,1,New South Wales,152.824566,-29.505882 +2021,6,30,1,New South Wales,150.606154,-34.432144 +2020,,,1,New South Wales,152.7394,-28.659584 +2021,7,2,1,New South Wales,150.522447,-34.465788 +2022,10,6,1,New South Wales,153.005242,-30.412963 +2020,8,19,1,New South Wales,149.553258,-33.551639 +2021,10,5,1,New South Wales,153.288825,-28.818082 +2023,7,31,1,New South Wales,153.314983,-28.949201 +2020,12,18,1,New South Wales,153.400586,-28.257925 +2021,5,10,1,New South Wales,150.609223,-34.420673 +2023,8,12,1,New South Wales,152.105345,-32.736858 +2021,7,8,1,New South Wales,150.627224,-34.421565 +2021,7,4,1,New South Wales,150.525119,-34.465977 +2021,7,1,1,New South Wales,150.626848,-34.421016 +2022,9,24,1,New South Wales,153.301773,-28.818505 +2021,4,16,1,New South Wales,153.072555,-30.334571 +2020,8,5,1,New South Wales,152.867289,-29.667247 +2021,5,14,1,New South Wales,150.601749,-34.428649 +2023,7,16,1,New South Wales,150.784935,-33.716431 +2023,10,19,1,New South Wales,153.068642,-30.877003 +2021,6,11,1,New South Wales,150.610689,-34.430709 +2020,11,16,1,New South Wales,149.957744,-36.497148 +2021,5,4,1,New South Wales,150.605495,-34.437333 +2020,10,26,1,New South Wales,153.364275,-28.834226 +2023,12,11,1,New South Wales,150.786173,-33.70627 +2020,11,24,1,New South Wales,153.342482,-28.805797 +2020,9,23,1,New South Wales,151.709876,-32.692071 +2022,11,27,1,New South Wales,152.076793,-32.725873 +2021,6,7,1,New South Wales,150.518034,-34.457107 +2020,4,28,1,New South Wales,150.809519,-34.09992 +2021,6,4,1,New South Wales,150.519863,-34.447173 +2021,5,12,1,New South Wales,150.519088,-34.436592 +2020,1,31,1,New South Wales,152.929611,-31.458459 +2022,11,11,1,New South Wales,152.374394,-31.897072 +2021,9,22,1,New South Wales,150.615004,-34.448842 +2022,10,6,1,New South Wales,152.065223,-32.711067 +2024,1,19,1,New South Wales,152.914252,-31.459577 +2022,10,25,1,New South Wales,152.909449,-31.440649 +2021,5,4,1,New South Wales,150.522237,-34.453388 +2020,10,29,1,New South Wales,149.958935,-36.568735 +2021,12,7,1,New South Wales,150.844972,-29.834387 +2020,11,11,1,New South Wales,152.56761,-31.966673 +2020,2,6,1,New South Wales,149.382156,-36.129686 +2021,10,25,1,New South Wales,152.093798,-31.403015 +2020,10,3,1,New South Wales,153.426161,-29.034655 +2021,5,1,1,New South Wales,150.61038,-34.420155 +2021,3,26,1,New South Wales,150.514772,-34.444906 +2021,3,24,1,New South Wales,150.610138,-34.430193 +2021,10,9,1,New South Wales,152.751382,-30.087547 +2020,12,10,1,New South Wales,153.614946,-28.660492 +2023,10,20,1,New South Wales,150.988077,-34.027976 +2020,1,31,1,New South Wales,153.314983,-28.949201 +2023,2,9,1,New South Wales,153.110549,-29.489984 +2020,10,29,1,New South Wales,149.958935,-36.568735 +2020,9,17,1,New South Wales,153.472757,-28.557671 +2021,7,4,1,New South Wales,150.309247,-29.065505 +2020,12,28,1,New South Wales,146.570098,-34.755756 +2022,8,6,1,New South Wales,153.436246,-28.22565 +2021,4,24,1,New South Wales,150.605382,-34.423735 +2021,5,6,1,New South Wales,150.615935,-34.436004 +2024,2,29,1,New South Wales,152.925776,-31.447463 +2021,6,25,1,New South Wales,150.627424,-34.420261 +2021,6,8,1,New South Wales,150.51868,-34.447429 +2022,9,26,1,New South Wales,150.818429,-34.111429 +2021,6,10,1,New South Wales,150.627201,-34.385818 +2020,2,14,1,New South Wales,153.606253,-28.675057 +2020,10,28,1,New South Wales,149.999247,-36.565645 +2023,2,2,1,New South Wales,152.353525,-31.92625 +2021,7,14,1,New South Wales,153.536959,-28.519564 +2022,3,22,1,New South Wales,152.373951,-31.925339 +2021,5,15,1,New South Wales,150.523829,-34.463571 +2022,2,21,1,New South Wales,152.867589,-29.667284 +2021,10,16,1,New South Wales,152.92704,-31.45489 +2023,6,13,1,New South Wales,152.813327,-31.576561 +2020,11,1,1,New South Wales,149.984303,-36.560469 +2021,5,13,1,New South Wales,150.604202,-34.438028 +2021,3,2,1,New South Wales,150.520961,-34.468174 +2021,12,9,1,New South Wales,152.97209,-28.523167 +2021,4,7,1,New South Wales,150.606992,-34.437488 +2024,4,9,1,New South Wales,152.063537,-32.706472 +2021,4,20,1,New South Wales,150.610333,-34.419126 +2021,5,27,1,New South Wales,150.632259,-34.388449 +2020,1,22,1,New South Wales,153.557549,-28.397244 +2021,4,6,1,New South Wales,150.520249,-34.447361 +2021,12,14,1,New South Wales,153.107872,-29.490152 +2021,5,29,1,New South Wales,150.526857,-34.469411 +2023,6,3,1,New South Wales,152.914845,-31.45897 +2020,10,,1,New South Wales,150.559732,-34.535992 +2023,9,9,1,New South Wales,153.304633,-28.835936 +2021,7,28,1,New South Wales,152.369623,-31.867705 +2024,4,13,1,New South Wales,152.967583,-30.549333 +2021,4,15,1,New South Wales,150.625793,-34.386367 +2020,10,28,1,New South Wales,153.335481,-28.869015 +2021,11,16,1,New South Wales,152.827827,-29.811466 +2020,9,12,1,New South Wales,152.159779,-32.712264 +2023,11,17,1,New South Wales,150.78606,-33.705982 +2022,11,12,1,New South Wales,150.531416,-34.419983 +2021,4,25,1,New South Wales,150.610279,-34.419098 +2021,4,10,1,New South Wales,150.519131,-34.444319 +2023,8,24,1,New South Wales,152.722621,-28.587016 +2021,12,28,1,New South Wales,152.886674,-31.432093 +2021,1,10,1,New South Wales,152.828584,-29.654256 +2021,6,11,1,New South Wales,150.644414,-34.396338 +2022,12,7,1,New South Wales,152.918616,-31.479039 +2021,5,13,1,New South Wales,150.633425,-34.417727 +2021,8,17,1,New South Wales,150.513107,-34.447847 +2020,8,27,1,New South Wales,152.900226,-29.631396 +2021,3,29,1,New South Wales,150.607667,-34.422211 +2021,2,25,1,New South Wales,150.607527,-34.433216 +2021,4,29,1,New South Wales,150.634323,-34.420206 +2020,10,29,1,New South Wales,149.955017,-36.576791 +2023,11,9,1,New South Wales,152.172145,-32.728806 +2021,11,27,1,New South Wales,151.765357,-32.698016 +2020,10,29,1,New South Wales,153.482678,-28.98945 +2022,8,25,1,New South Wales,152.374241,-31.915128 +2021,1,23,1,New South Wales,153.478339,-28.249243 +2021,3,8,1,New South Wales,153.559782,-28.287886 +2021,6,15,1,New South Wales,150.605006,-34.437684 +2021,6,29,1,New South Wales,150.513128,-34.447145 +2021,11,6,1,New South Wales,153.546098,-28.598854 +2021,9,11,1,New South Wales,150.601291,-34.454974 +2023,10,8,1,New South Wales,152.909727,-31.451059 +2023,10,22,1,New South Wales,152.070821,-32.717911 +2020,11,14,1,New South Wales,149.934931,-36.503907 +2021,5,15,1,New South Wales,150.603527,-34.435374 +2022,7,17,1,New South Wales,153.34327,-28.807075 +2021,9,20,1,New South Wales,151.650606,-32.683761 +2021,3,5,1,New South Wales,150.603334,-34.436398 +2024,2,19,1,New South Wales,152.078075,-32.72797 +2021,5,22,1,New South Wales,150.522266,-34.464901 +2020,8,7,1,New South Wales,153.103564,-29.488527 +2024,1,6,1,New South Wales,152.929578,-31.459877 +2021,5,10,1,New South Wales,150.517156,-34.447803 +2022,4,20,1,New South Wales,151.26879,-33.034048 +2023,8,24,1,New South Wales,150.761779,-34.194944 +2020,11,16,1,New South Wales,149.957744,-36.497148 +2021,5,21,1,New South Wales,150.630503,-34.395195 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2021,5,27,1,New South Wales,150.522,-34.465436 +2021,4,25,1,New South Wales,150.615082,-34.435374 +2021,6,24,1,New South Wales,150.604985,-34.437638 +2022,8,2,1,New South Wales,150.883898,-34.015104 +2022,3,22,1,New South Wales,153.401795,-28.257137 +2022,8,26,1,New South Wales,152.793418,-31.638929 +2020,9,24,1,New South Wales,153.074268,-30.363436 +2020,2,6,1,New South Wales,149.384947,-36.140031 +2021,9,7,1,New South Wales,152.371009,-31.918942 +2021,6,12,1,New South Wales,150.630295,-34.420299 +2021,3,4,1,New South Wales,150.610628,-34.432474 +2021,4,23,1,New South Wales,150.609509,-34.419011 +2020,9,24,1,New South Wales,152.905169,-31.442899 +2021,6,21,1,New South Wales,150.657822,-34.45608 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2024,1,4,1,New South Wales,150.987273,-34.025728 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2021,6,20,1,New South Wales,150.623261,-34.383992 +2020,1,12,1,New South Wales,153.108238,-29.490007 +2022,11,22,1,New South Wales,152.764422,-30.891124 +2020,11,10,1,New South Wales,150.744238,-34.195993 +2021,6,23,1,New South Wales,150.51972,-34.463046 +2021,5,12,1,New South Wales,150.609159,-34.420636 +2021,4,27,1,New South Wales,150.610335,-34.419063 +2021,6,15,1,New South Wales,150.82369,-34.141271 +2020,10,29,1,New South Wales,152.924858,-31.453653 +2023,4,22,1,New South Wales,152.92434,-31.472856 +2020,5,27,1,New South Wales,150.577746,-33.6911 +2023,10,18,1,New South Wales,153.123926,-30.29408 +2021,5,28,1,New South Wales,150.617664,-34.438724 +2021,4,15,1,New South Wales,150.608854,-34.420639 +2022,11,26,1,New South Wales,152.795899,-30.884771 +2020,9,23,1,New South Wales,153.089451,-29.480691 +2021,6,26,1,New South Wales,150.522471,-34.464238 +2023,10,31,1,New South Wales,152.808331,-31.653077 +2021,5,13,1,New South Wales,150.628779,-34.389608 +2022,9,16,1,New South Wales,152.405107,-31.920313 +2021,5,24,1,New South Wales,150.517293,-34.451998 +2021,6,3,1,New South Wales,150.623947,-34.388576 +2021,7,15,1,New South Wales,150.51569,-34.444781 +2021,7,12,1,New South Wales,153.110876,-29.488452 +2021,5,15,1,New South Wales,150.633252,-34.418463 +2021,9,13,1,New South Wales,153.104482,-29.476927 +2023,9,26,1,New South Wales,152.711315,-31.781994 +2024,3,29,1,New South Wales,150.004836,-31.693066 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2020,1,27,1,New South Wales,153.093643,-29.488632 +2021,4,10,1,New South Wales,150.6618,-34.458618 +2020,4,5,1,New South Wales,152.935069,-29.040856 +2021,10,28,1,New South Wales,150.804254,-34.157042 +2021,5,1,1,New South Wales,150.618085,-34.429627 +2021,8,19,1,New South Wales,153.10129,-29.490026 +2021,6,13,1,New South Wales,150.643589,-34.395898 +2022,1,17,1,New South Wales,153.03139,-30.43119 +2023,8,10,1,New South Wales,150.785258,-33.705812 +2021,8,9,1,New South Wales,152.442313,-31.809149 +2020,10,29,1,New South Wales,149.984095,-36.575978 +2021,5,20,1,New South Wales,150.055217,-33.762524 +2020,9,22,1,New South Wales,152.898878,-31.443751 +2020,5,,1,New South Wales,152.070062,-32.718844 +2022,10,14,1,New South Wales,152.405107,-31.920313 +2021,5,28,1,New South Wales,150.604726,-34.437561 +2021,4,26,1,New South Wales,150.635221,-34.420376 +2021,6,25,1,New South Wales,153.110522,-29.490222 +2021,12,31,1,New South Wales,152.083327,-32.730221 +2022,8,9,1,New South Wales,150.52498,-34.449394 +2021,9,15,1,New South Wales,150.531647,-34.474196 +2021,6,11,1,New South Wales,150.610484,-34.430642 +2024,6,19,1,New South Wales,152.925659,-31.452928 +2021,11,24,1,New South Wales,151.699841,-32.686938 +2021,5,9,1,New South Wales,150.659238,-34.457189 +2023,6,11,1,New South Wales,152.923352,-31.469984 +2024,9,22,1,New South Wales,149.530386,-33.62819 +2024,1,25,1,New South Wales,152.321631,-31.927692 +2024,1,3,1,New South Wales,151.059173,-29.739906 +2023,10,11,1,New South Wales,152.00354,-32.633042 +2023,6,29,1,New South Wales,152.911813,-31.476415 +2023,11,24,1,New South Wales,153.103918,-29.489596 +2020,10,6,1,New South Wales,153.090872,-29.487355 +2023,8,23,1,New South Wales,152.859745,-31.101193 +2021,4,27,1,New South Wales,150.610279,-34.419125 +2020,7,15,1,New South Wales,150.105017,-33.77856 +2021,5,18,1,New South Wales,150.519901,-34.452881 +2021,5,27,1,New South Wales,150.516208,-34.448974 +2023,6,8,1,New South Wales,150.81122,-34.11675 +2020,8,6,1,New South Wales,152.895019,-31.446947 +2024,7,13,1,New South Wales,152.732107,-31.337206 +2022,1,11,1,New South Wales,150.994036,-34.121673 +2020,12,10,1,New South Wales,149.960499,-36.288011 +2023,2,28,1,New South Wales,153.071805,-30.887169 +2022,7,24,1,New South Wales,153.092498,-29.488447 +2022,11,12,1,New South Wales,152.926206,-31.459086 +2020,11,10,1,New South Wales,152.873354,-31.458197 +2023,5,21,1,New South Wales,152.914275,-31.458734 +2020,6,13,1,New South Wales,152.40417,-31.94582 +2021,8,1,1,New South Wales,150.520446,-34.435186 +2020,10,,1,New South Wales,150.472448,-34.491696 +2022,2,7,1,New South Wales,152.927334,-31.469294 +2020,10,12,1,New South Wales,149.938155,-36.621708 +2024,2,28,1,New South Wales,150.786406,-33.703888 +2022,7,26,1,New South Wales,151.632693,-30.512159 +2020,12,4,1,New South Wales,152.907384,-31.449551 +2020,10,21,1,New South Wales,153.472444,-28.685041 +2021,5,12,1,New South Wales,150.523846,-34.46743 +2020,11,24,1,New South Wales,150.680922,-33.565548 +2021,4,24,1,New South Wales,150.630597,-34.388777 +2023,5,28,1,New South Wales,152.885366,-31.439694 +2022,7,15,1,New South Wales,152.69683,-31.521545 +2022,12,9,1,New South Wales,152.063956,-32.706625 +2020,12,,1,New South Wales,150.600987,-34.533564 +2020,11,16,1,New South Wales,150.004563,-36.508695 +2021,9,22,1,New South Wales,150.613796,-34.449594 +2022,12,15,1,New South Wales,153.556714,-28.400278 +2021,11,18,1,New South Wales,150.61525,-34.440949 +2023,1,14,1,New South Wales,152.915044,-31.446374 +2023,9,25,1,New South Wales,153.608033,-28.689632 +2021,7,12,1,New South Wales,153.601971,-28.647359 +2022,8,5,1,New South Wales,152.901503,-31.446912 +2020,9,12,1,New South Wales,150.02096,-34.80422 +2020,5,6,1,New South Wales,153.32839,-28.833159 +2022,7,28,1,New South Wales,152.798431,-31.151976 +2022,11,25,1,New South Wales,152.770676,-30.853416 +2021,11,15,1,New South Wales,152.879652,-31.449312 +2021,7,9,1,New South Wales,150.630543,-34.388767 +2021,4,3,1,New South Wales,152.063717,-32.706475 +2023,8,9,1,New South Wales,153.110077,-29.490245 +2021,6,20,1,New South Wales,150.639478,-34.392799 +2021,7,24,1,New South Wales,150.522371,-34.465777 +2022,2,21,1,New South Wales,152.909639,-31.473189 +2020,5,,1,New South Wales,152.075436,-32.736825 +2022,10,17,1,New South Wales,152.422426,-31.972489 +2021,4,25,1,New South Wales,150.635243,-34.420368 +2021,6,25,1,New South Wales,150.627336,-34.420314 +2021,3,26,1,New South Wales,150.607664,-34.422319 +2021,7,23,1,New South Wales,150.602858,-34.419935 +2020,10,29,1,New South Wales,149.955017,-36.576791 +2021,6,3,1,New South Wales,150.630387,-34.420896 +2022,12,19,1,New South Wales,153.109531,-29.492763 +2021,5,24,1,New South Wales,150.630863,-34.420625 +2023,10,8,1,New South Wales,152.788626,-31.311867 +2022,12,23,1,New South Wales,152.88989,-31.449055 +2023,5,30,1,New South Wales,152.786875,-31.629275 +2021,10,10,1,New South Wales,152.919636,-31.473616 +2021,5,18,1,New South Wales,150.632076,-34.394558 +2021,5,12,1,New South Wales,150.61584,-34.433225 +2021,4,27,1,New South Wales,150.624172,-34.388698 +2024,4,13,1,New South Wales,152.926356,-31.451697 +2021,4,28,1,New South Wales,150.624483,-34.388857 +2021,6,30,1,New South Wales,150.858134,-34.056316 +2021,5,15,1,New South Wales,150.603636,-34.43534 +2023,11,13,1,New South Wales,152.888811,-31.433439 +2021,5,7,1,New South Wales,150.615268,-34.43536 +2021,8,16,1,New South Wales,150.632032,-34.418124 +2023,4,16,1,New South Wales,153.427713,-28.626838 +2020,5,21,1,New South Wales,152.905262,-31.469896 +2023,2,25,1,New South Wales,151.515046,-30.531449 +2021,11,7,1,New South Wales,153.101746,-29.489666 +2020,10,13,1,New South Wales,150.614836,-33.441928 +2021,4,21,1,New South Wales,150.617085,-34.433809 +2021,6,17,1,New South Wales,150.617229,-34.434515 +2021,6,20,1,New South Wales,153.110508,-29.488336 +2021,2,11,1,New South Wales,149.549744,-33.56812 +2022,5,12,1,New South Wales,153.103967,-29.489568 +2021,6,6,1,New South Wales,150.606922,-34.429634 +2020,10,24,1,New South Wales,153.14002,-28.83942 +2023,11,4,1,New South Wales,152.897618,-31.474674 +2021,7,13,1,New South Wales,150.513737,-34.4464 +2020,10,4,1,New South Wales,152.899149,-31.436682 +2021,6,11,1,New South Wales,150.522038,-34.465996 +2020,12,4,1,New South Wales,152.901169,-31.442697 +2021,7,25,1,New South Wales,150.624478,-34.385954 +2023,10,21,1,New South Wales,153.103865,-29.489582 +2022,4,28,1,New South Wales,152.918613,-31.445391 +2021,7,2,1,New South Wales,152.908986,-31.255802 +2021,5,5,1,New South Wales,150.638478,-34.49057 +2020,2,11,1,New South Wales,151.246389,-33.670556 +2021,10,31,1,New South Wales,152.071231,-32.719007 +2021,7,2,1,New South Wales,150.513927,-34.44698 +2022,8,30,1,New South Wales,149.320256,-36.298717 +2020,10,19,1,New South Wales,153.3033,-28.821668 +2021,5,28,1,New South Wales,150.518277,-34.451847 +2021,10,9,1,New South Wales,152.041118,-32.7361 +2020,11,13,1,New South Wales,153.218653,-28.826065 +2022,11,8,1,New South Wales,152.099897,-32.734379 +2020,11,15,1,New South Wales,150.641727,-33.664961 +2020,11,7,1,New South Wales,150.016942,-36.548959 +2021,7,3,1,New South Wales,150.62837,-34.391024 +2023,9,27,1,New South Wales,152.792962,-31.639708 +2020,11,10,1,New South Wales,152.902552,-31.454577 +2020,10,12,1,New South Wales,149.887989,-36.587028 +2021,4,2,1,New South Wales,153.325401,-28.669044 +2021,5,18,1,New South Wales,150.613339,-34.432014 +2021,9,1,1,New South Wales,150.52391,-34.463798 +2021,7,15,1,New South Wales,150.64532,-34.397004 +2021,8,10,1,New South Wales,152.757888,-31.628697 +2020,11,12,1,New South Wales,153.323111,-28.892909 +2023,2,2,1,New South Wales,153.54498,-28.557011 +2022,9,8,1,New South Wales,153.218178,-28.825221 +2022,7,22,1,New South Wales,152.908148,-31.434695 +2020,10,8,1,New South Wales,149.941793,-36.651646 +2023,7,9,1,New South Wales,152.913249,-31.265863 +2021,4,23,1,New South Wales,150.630921,-34.388495 +2021,10,6,1,New South Wales,152.920712,-31.463244 +2021,6,20,1,New South Wales,150.513112,-34.446189 +2021,4,28,1,New South Wales,150.637584,-34.488678 +2024,4,21,1,New South Wales,152.401193,-31.971958 +2021,10,22,1,New South Wales,153.229503,-28.889108 +2022,9,27,1,New South Wales,149.428811,-36.255489 +2020,7,8,1,New South Wales,151.70847,-32.690357 +2020,12,8,1,New South Wales,149.960499,-36.288011 +2021,4,22,1,New South Wales,150.617192,-34.433513 +2020,10,1,1,New South Wales,152.22156,-29.939291 +2021,9,19,1,New South Wales,151.04288,-33.874676 +2020,1,2,1,New South Wales,153.555546,-28.371012 +2023,6,28,1,New South Wales,153.064152,-28.535215 +2021,5,23,1,New South Wales,150.635944,-34.392767 +2021,10,26,1,New South Wales,153.382936,-28.649191 +2022,6,23,1,New South Wales,152.530821,-32.344089 +2021,9,6,1,New South Wales,150.514937,-34.447776 +2022,1,26,1,New South Wales,152.910464,-31.441604 +2023,9,29,1,New South Wales,153.490916,-28.228983 +2022,4,19,1,New South Wales,152.922644,-31.461105 +2021,7,9,1,New South Wales,150.520488,-34.465775 +2021,7,7,1,New South Wales,150.627476,-34.421515 +2022,10,12,1,New South Wales,152.939521,-30.240033 +2022,1,4,1,New South Wales,153.103811,-29.485571 +2023,8,2,1,New South Wales,152.926912,-30.508033 +2020,11,14,1,New South Wales,150.007695,-36.513507 +2020,4,15,1,New South Wales,151.887392,-32.470287 +2020,10,13,1,New South Wales,149.938155,-36.621708 +2021,11,28,1,New South Wales,152.87822,-31.448165 +2020,9,1,1,New South Wales,150.520078,-34.401227 +2020,10,12,1,New South Wales,152.899266,-29.630781 +2021,6,14,1,New South Wales,150.630131,-34.420737 +2021,1,24,1,New South Wales,151.769928,-32.593837 +2023,6,12,1,New South Wales,153.103913,-29.489596 +2021,6,28,1,New South Wales,150.512936,-34.447375 +2021,8,7,1,New South Wales,153.400816,-28.25619 +2021,9,21,1,New South Wales,150.649547,-34.396365 +2022,4,11,1,New South Wales,153.293195,-28.864618 +2021,7,8,1,New South Wales,150.597428,-34.415799 +2022,7,14,1,New South Wales,153.092262,-29.488125 +2021,4,2,1,New South Wales,150.531981,-34.460274 +2021,9,16,1,New South Wales,150.515575,-34.454515 +2020,10,7,1,New South Wales,151.803751,-32.700231 +2021,7,1,1,New South Wales,150.513087,-34.447054 +2020,1,1,1,New South Wales,153.109729,-29.490155 +2021,5,26,1,New South Wales,150.631847,-34.388035 +2021,9,13,1,New South Wales,150.530193,-34.472941 +2020,9,21,1,New South Wales,152.178771,-32.384235 +2020,9,29,1,New South Wales,152.918316,-31.470336 +2021,5,24,1,New South Wales,150.526669,-34.469525 +2021,2,28,1,New South Wales,150.521267,-34.447517 +2021,6,30,1,New South Wales,150.513263,-34.446967 +2022,12,18,1,New South Wales,151.575952,-30.416427 +2020,10,4,1,New South Wales,153.092154,-29.488195 +2021,6,16,1,New South Wales,150.519149,-34.459915 +2022,9,18,1,New South Wales,153.338838,-28.82461 +2023,1,2,1,New South Wales,152.07152,-32.712497 +2020,1,12,1,New South Wales,152.83769,-28.485365 +2021,5,13,1,New South Wales,150.633177,-34.417641 +2023,11,5,1,New South Wales,152.791844,-31.641172 +2021,6,24,1,New South Wales,150.520336,-34.465772 +2021,6,4,1,New South Wales,150.615846,-34.436435 +2022,8,14,1,New South Wales,153.186922,-28.888264 +2020,10,29,1,New South Wales,149.938213,-36.559404 +2020,6,6,1,New South Wales,152.917568,-31.475317 +2021,5,5,1,New South Wales,150.520324,-34.435995 +2023,9,12,1,New South Wales,152.621097,-30.33243 +2021,11,19,1,New South Wales,152.882611,-31.439756 +2021,10,23,1,New South Wales,152.083676,-32.737249 +2021,6,3,1,New South Wales,150.520052,-34.438946 +2023,9,28,1,New South Wales,153.040613,-28.51684 +2023,10,14,1,New South Wales,153.470746,-28.581865 +2023,6,22,1,New South Wales,152.39325,-31.945531 +2023,12,27,1,New South Wales,150.989204,-34.026878 +2020,12,4,1,New South Wales,152.90626,-31.449898 +2022,1,27,1,New South Wales,152.915388,-31.446036 +2020,10,1,1,New South Wales,150.812828,-34.159448 +2020,7,10,1,New South Wales,153.488399,-28.244289 +2022,12,1,1,New South Wales,153.313679,-28.859753 +2020,3,29,1,New South Wales,153.317732,-28.827343 +2021,4,23,1,New South Wales,150.006515,-36.579991 +2021,6,15,1,New South Wales,150.522441,-34.451616 +2023,7,10,1,New South Wales,153.108113,-29.490184 +2022,12,7,1,New South Wales,152.154443,-32.717165 +2020,8,27,1,New South Wales,152.924619,-31.465685 +2020,5,30,1,New South Wales,152.87968,-31.034586 +2021,3,9,1,New South Wales,152.905842,-31.437611 +2021,6,26,1,New South Wales,150.627413,-34.420261 +2021,6,2,1,New South Wales,150.626146,-34.390449 +2021,11,1,1,New South Wales,150.61549,-34.439421 +2023,9,30,1,New South Wales,150.785384,-33.705124 +2022,10,6,1,New South Wales,152.942889,-30.432705 +2020,11,22,1,New South Wales,149.942556,-36.497108 +2020,7,3,1,New South Wales,153.288292,-28.809314 +2020,4,24,1,New South Wales,152.894748,-31.415181 +2023,3,7,1,New South Wales,152.071474,-32.717608 +2021,7,31,1,New South Wales,152.405107,-31.920313 +2023,10,4,1,New South Wales,151.010276,-34.045117 +2021,9,28,1,New South Wales,150.784923,-34.207974 +2021,12,23,1,New South Wales,153.402165,-28.258429 +2020,11,2,1,New South Wales,149.967242,-36.561675 +2023,1,29,1,New South Wales,153.218565,-28.824713 +2021,2,26,1,New South Wales,150.518545,-34.446092 +2021,3,7,1,New South Wales,150.525066,-34.457818 +2020,1,14,1,New South Wales,150.666092,-33.570819 +2022,8,25,1,New South Wales,151.566244,-30.372588 +2022,1,13,1,New South Wales,153.562423,-28.384452 +2022,10,30,1,New South Wales,153.236747,-28.947304 +2021,8,16,1,New South Wales,150.530826,-34.472494 +2022,10,26,1,New South Wales,152.927595,-31.458662 +2024,2,26,1,New South Wales,152.091019,-28.785363 +2022,4,17,1,Queensland,153.447258,-28.102872 +2020,9,24,1,New South Wales,152.898342,-31.443498 +2023,9,28,1,New South Wales,152.914421,-31.451443 +2021,3,11,1,New South Wales,150.514255,-34.445824 +2021,6,8,1,New South Wales,152.7309,-30.135857 +2021,7,9,1,New South Wales,153.293279,-28.864491 +2023,8,10,1,New South Wales,152.891163,-30.468155 +2023,5,21,1,New South Wales,152.913036,-31.444944 +2023,6,7,1,New South Wales,150.883728,-34.067829 +2020,10,7,1,New South Wales,153.293078,-28.820375 +2021,10,1,1,New South Wales,152.709194,-31.596622 +2021,4,14,1,New South Wales,150.52815,-34.456203 +2021,3,18,1,New South Wales,150.517294,-34.45162 +2021,3,21,1,New South Wales,150.610061,-34.430192 +2021,4,26,1,New South Wales,150.635869,-34.419388 +2022,8,14,1,New South Wales,150.552778,-34.514917 +2021,9,6,1,New South Wales,152.927959,-31.452849 +2021,4,30,1,New South Wales,150.635359,-34.41973 +2021,12,16,1,New South Wales,152.092121,-28.783512 +2023,12,16,1,New South Wales,152.372764,-31.924864 +2020,9,8,1,New South Wales,150.00403,-31.13189 +2022,3,15,1,New South Wales,153.303722,-28.890095 +2021,8,17,1,New South Wales,152.973743,-28.530684 +2023,9,1,1,New South Wales,153.421408,-28.626925 +2023,12,27,1,New South Wales,153.095952,-29.484688 +2021,12,2,1,New South Wales,150.238599,-30.994481 +2022,3,24,1,New South Wales,153.071948,-30.880423 +2021,7,28,1,New South Wales,153.396864,-29.009458 +2020,11,24,1,New South Wales,153.342482,-28.805797 +2022,10,2,1,New South Wales,151.908878,-32.566315 +2022,4,27,1,New South Wales,151.246822,-33.184149 +2020,10,19,1,New South Wales,153.303174,-28.827996 +2020,11,24,1,New South Wales,153.342482,-28.805797 +2021,8,21,1,New South Wales,152.929725,-29.726637 +2021,9,24,1,New South Wales,151.739248,-32.066818 +2023,8,25,1,New South Wales,153.107995,-29.490376 +2023,11,19,1,New South Wales,152.912645,-31.47672 +2020,10,28,1,New South Wales,153.103752,-29.485557 +2023,12,8,1,New South Wales,153.103956,-29.489638 +2021,8,14,1,New South Wales,150.517064,-34.438056 +2023,10,21,1,New South Wales,152.928761,-31.459564 +2022,10,6,1,New South Wales,149.435857,-33.605481 +2022,6,27,1,New South Wales,152.857373,-31.530916 +2020,8,21,1,New South Wales,153.283463,-28.830737 +2022,4,,1,New South Wales,150.992986,-29.147488 +2020,10,3,1,New South Wales,153.316426,-28.812508 +2023,9,13,1,New South Wales,152.925217,-31.454039 +2020,8,14,1,New South Wales,150.060577,-33.773091 +2022,10,6,1,New South Wales,153.426366,-28.734027 +2021,1,31,1,New South Wales,153.314983,-28.949201 +2020,11,16,1,New South Wales,152.064607,-32.70652 +2021,2,8,1,New South Wales,150.850037,-34.08025 +2020,10,14,1,New South Wales,151.645013,-32.550869 +2022,6,21,1,New South Wales,153.108049,-29.490339 +2023,12,22,1,New South Wales,150.786087,-33.706055 +2021,5,17,1,New South Wales,150.516439,-34.44998 +2021,5,28,1,New South Wales,150.604248,-34.437939 +2021,5,1,1,New South Wales,150.616315,-34.43602 +2020,9,5,1,New South Wales,153.29012,-28.987277 +2022,12,30,1,New South Wales,150.994462,-34.058438 +2023,9,15,1,New South Wales,152.611768,-30.347707 +2022,3,28,1,New South Wales,146.404285,-34.695353 +2021,5,22,1,New South Wales,150.630508,-34.420853 +2023,8,2,1,New South Wales,152.028704,-32.19098 +2021,7,30,1,New South Wales,150.517566,-34.441312 +2020,11,24,1,New South Wales,152.791633,-29.500615 +2020,8,10,1,New South Wales,153.331243,-28.821749 +2021,11,3,1,New South Wales,152.824256,-29.811877 +2021,5,14,1,New South Wales,150.517436,-34.440912 +2021,4,17,1,New South Wales,150.608007,-34.433938 +2022,12,14,1,New South Wales,153.104133,-29.478739 +2021,6,13,1,New South Wales,150.660091,-34.455501 +2021,5,3,1,New South Wales,150.615864,-34.435038 +2023,10,31,1,New South Wales,152.403595,-31.928285 +2022,3,9,1,New South Wales,152.340675,-31.984281 +2022,2,11,1,New South Wales,153.30258,-28.845844 +2021,5,5,1,New South Wales,150.60854,-34.456451 +2021,5,7,1,New South Wales,150.609194,-34.420555 +2021,5,10,1,New South Wales,150.517105,-34.447685 +2023,7,24,1,New South Wales,150.946452,-29.77116 +2020,12,18,1,New South Wales,153.285105,-29.000226 +2020,10,15,1,New South Wales,149.956941,-36.59482 +2020,7,1,1,New South Wales,152.813707,-31.171527 +2021,6,15,1,New South Wales,150.612164,-34.432027 +2020,1,13,1,New South Wales,153.090749,-29.487486 +2021,3,27,1,New South Wales,150.525437,-34.460007 +2021,3,12,1,New South Wales,150.53256,-34.46428 +2020,1,2,1,New South Wales,153.339651,-28.820526 +2021,5,12,1,New South Wales,150.628938,-34.389755 +2023,11,1,1,New South Wales,152.065071,-32.699592 +2021,8,1,1,New South Wales,150.518191,-34.437114 +2021,12,21,2,South Australia,138.83188,-34.68823 +2021,6,8,1,New South Wales,150.523259,-34.466291 +2023,9,22,1,New South Wales,153.194827,-28.879587 +2023,11,2,1,New South Wales,152.975294,-31.192565 +2020,1,12,1,New South Wales,153.285323,-29.040946 +2021,7,31,1,New South Wales,153.314983,-28.949201 +2022,8,15,1,New South Wales,153.317598,-28.936565 +2021,4,26,1,New South Wales,150.60323,-34.437 +2020,10,24,1,New South Wales,153.108838,-29.493159 +2021,5,12,1,New South Wales,150.517879,-34.437739 +2021,7,6,1,New South Wales,150.603542,-34.419209 +2022,9,29,1,New South Wales,153.291674,-28.976263 +2024,1,15,1,New South Wales,150.784549,-33.717251 +2021,4,30,1,New South Wales,150.523955,-34.452692 +2023,10,30,1,New South Wales,152.204264,-32.226111 +2021,3,10,1,New South Wales,153.559334,-28.643569 +2021,5,8,1,New South Wales,150.605357,-34.437961 +2022,9,30,1,New South Wales,153.314983,-28.949201 +2023,8,2,1,New South Wales,153.108087,-29.490553 +2021,6,9,1,New South Wales,150.60576,-34.437572 +2021,11,5,1,New South Wales,152.297813,-31.948946 +2021,7,20,1,New South Wales,150.623368,-34.383282 +2020,1,7,1,New South Wales,150.13989,-34.50511 +2021,6,8,1,New South Wales,150.518768,-34.447412 +2022,7,21,1,New South Wales,153.119406,-29.489358 +2020,2,1,1,New South Wales,152.646596,-30.540165 +2023,9,10,1,New South Wales,153.108151,-29.490241 +2021,10,26,2,South Australia,138.63216,-34.95046 +2021,7,16,1,New South Wales,150.645298,-34.397004 +2021,3,17,1,New South Wales,150.609448,-34.430711 +2021,5,8,1,New South Wales,150.521407,-34.435791 +2020,11,2,1,New South Wales,149.998977,-36.551144 +2020,11,27,1,New South Wales,153.103806,-29.48558 +2021,10,4,1,New South Wales,153.285118,-28.981503 +2021,4,22,1,New South Wales,150.635513,-34.420463 +2020,11,18,1,New South Wales,150.004563,-36.508695 +2021,4,18,1,New South Wales,153.055997,-30.333952 +2023,9,12,1,New South Wales,152.812175,-31.654858 +2020,11,,1,New South Wales,152.916905,-31.453257 +2023,8,23,1,New South Wales,150.989817,-34.090346 +2020,4,8,1,New South Wales,150.144658,-34.916903 +2024,1,7,1,New South Wales,150.786115,-33.713208 +2022,11,28,1,New South Wales,152.794854,-30.893434 +2021,7,12,1,New South Wales,150.597086,-34.410247 +2024,10,13,1,New South Wales,150.036666,-32.325829 +2021,6,13,1,New South Wales,150.615939,-34.430883 +2020,9,18,1,New South Wales,153.104026,-29.484488 +2021,4,29,1,New South Wales,150.606647,-34.435092 +2020,10,2,2,South Australia,138.70115,-34.99731 +2021,6,19,1,New South Wales,150.642637,-34.394555 +2021,6,18,1,New South Wales,150.521381,-34.465748 +2021,6,13,1,New South Wales,150.520951,-34.45933 +2021,7,6,1,New South Wales,150.604534,-34.419148 +2023,8,15,1,New South Wales,153.103736,-29.485688 +2022,7,30,1,New South Wales,152.915488,-31.444831 +2023,10,15,1,New South Wales,150.786269,-33.706302 +2022,6,22,1,New South Wales,150.869932,-34.004143 +2020,1,13,1,New South Wales,153.092194,-29.488079 +2023,3,11,1,New South Wales,153.103543,-29.485454 +2023,11,9,1,New South Wales,150.987289,-34.096052 +2023,11,5,1,New South Wales,152.928692,-31.459123 +2023,9,16,1,New South Wales,151.795087,-32.527935 +2022,5,22,1,New South Wales,150.896729,-34.012814 +2021,8,22,1,New South Wales,152.926641,-31.455103 +2022,12,3,1,New South Wales,152.907705,-31.451374 +2022,12,26,1,New South Wales,153.103763,-29.485566 +2020,11,30,1,New South Wales,153.314983,-28.949201 +2023,3,3,1,New South Wales,153.347259,-28.885281 +2022,3,29,1,New South Wales,153.401691,-28.257477 +2020,4,14,1,New South Wales,153.560572,-28.375645 +2021,4,16,1,New South Wales,150.631228,-34.393397 +2020,11,24,1,New South Wales,152.898091,-29.632524 +2020,11,10,1,New South Wales,152.873914,-31.456825 +2021,3,31,1,New South Wales,153.314983,-28.949201 +2020,5,31,1,New South Wales,153.314983,-28.949201 +2020,11,4,1,New South Wales,150.054593,-33.766566 +2023,12,6,1,New South Wales,152.912528,-31.456873 +2020,6,30,1,New South Wales,153.314983,-28.949201 +2021,9,4,1,New South Wales,152.399014,-31.908353 +2021,12,,1,New South Wales,149.331429,-36.121951 +2020,11,11,1,New South Wales,150.016461,-36.575848 +2023,5,31,1,New South Wales,153.314983,-28.949201 +2024,2,19,1,New South Wales,152.100202,-32.732974 +2021,5,4,1,New South Wales,150.632785,-34.418814 +2021,4,27,1,New South Wales,150.637512,-34.488523 +2020,1,4,1,New South Wales,150.740113,-33.410439 +2021,2,25,1,New South Wales,150.610432,-34.420228 +2022,10,2,1,New South Wales,153.40425,-28.972865 +2021,7,21,1,New South Wales,150.600143,-34.419377 +2022,11,18,1,New South Wales,152.794854,-30.893434 +2020,11,17,1,New South Wales,153.371368,-28.799393 +2021,8,9,1,New South Wales,153.104085,-29.485109 +2021,6,13,1,New South Wales,150.604583,-34.438387 +2022,11,20,1,New South Wales,152.794854,-30.893434 +2022,3,5,1,New South Wales,152.063706,-32.706061 +2021,5,27,1,New South Wales,150.619014,-34.439472 +2022,11,18,1,New South Wales,152.794854,-30.893434 +2021,6,14,1,New South Wales,150.520478,-34.465739 +2021,8,5,1,New South Wales,150.645055,-34.398703 +2022,11,23,1,New South Wales,152.794945,-30.901933 +2021,11,12,1,New South Wales,152.623084,-31.784787 +2020,10,28,1,New South Wales,153.323187,-28.826164 +2020,10,27,1,New South Wales,152.610013,-30.997307 +2022,6,15,1,New South Wales,153.561629,-28.386672 +2023,12,21,1,New South Wales,152.910281,-30.505496 +2023,8,3,1,New South Wales,153.103505,-29.485552 +2022,11,11,1,New South Wales,152.150772,-32.716491 +2023,11,9,1,New South Wales,152.897674,-31.268449 +2022,7,29,1,New South Wales,152.824631,-29.505872 +2024,3,22,1,New South Wales,152.793187,-31.640987 +2020,4,20,1,New South Wales,152.855936,-31.430665 +2022,1,20,1,New South Wales,152.912204,-31.429671 +2021,6,27,1,New South Wales,153.584876,-28.631411 +2020,10,16,1,New South Wales,149.931009,-36.595007 +2021,5,20,1,New South Wales,150.617412,-34.449114 +2020,9,14,1,New South Wales,152.359003,-31.924406 +2020,10,17,1,New South Wales,149.931009,-36.595007 +2020,8,29,1,New South Wales,153.109481,-29.490502 +2021,8,21,1,New South Wales,150.520385,-34.465944 +2021,4,5,1,New South Wales,150.608144,-34.423023 +2021,6,8,1,New South Wales,150.625995,-34.388859 +2020,11,22,1,New South Wales,149.942556,-36.497108 +2022,9,30,1,New South Wales,153.314983,-28.949201 +2021,3,1,1,New South Wales,152.065499,-32.704805 +2022,3,,1,New South Wales,153.599218,-28.719867 +2021,7,23,1,New South Wales,150.516529,-34.448773 +2021,10,13,1,New South Wales,148.620278,-32.241064 +2021,9,14,1,New South Wales,150.516124,-34.437478 +2020,11,25,1,New South Wales,153.279241,-28.839565 +2021,7,4,1,New South Wales,150.627243,-34.421303 +2021,10,15,1,New South Wales,150.822599,-34.101707 +2020,6,14,1,New South Wales,152.039828,-32.732146 +2024,1,2,1,New South Wales,150.989891,-34.021993 +2022,8,30,1,New South Wales,149.323247,-36.297397 +2020,10,16,1,New South Wales,152.687663,-31.683757 +2023,1,27,1,New South Wales,153.218451,-28.825235 +2020,11,2,1,New South Wales,149.958519,-36.587122 +2021,5,8,1,New South Wales,152.100856,-32.732973 +2020,1,22,1,New South Wales,153.104278,-29.480093 +2020,8,5,1,New South Wales,153.32964,-28.93 +2021,9,3,1,New South Wales,150.518078,-34.439826 +2021,4,26,1,New South Wales,150.077739,-34.146763 +2021,5,4,1,New South Wales,150.615712,-34.435819 +2021,6,5,1,New South Wales,152.09711,-32.68189 +2021,3,29,1,New South Wales,150.525472,-34.459926 +2020,11,2,1,New South Wales,149.979238,-36.570187 +2020,9,3,1,New South Wales,153.508093,-28.619263 +2021,9,25,1,New South Wales,152.83195,-31.2816 +2021,7,31,1,New South Wales,153.409969,-28.894758 +2021,5,21,1,New South Wales,150.598766,-34.428356 +2020,8,6,1,New South Wales,152.847035,-31.545537 +2020,11,20,1,New South Wales,153.514697,-28.236705 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2021,10,28,1,New South Wales,152.104691,-32.726275 +2023,12,18,1,New South Wales,150.784943,-33.709928 +2020,4,14,1,New South Wales,150.057207,-33.770937 +2023,11,2,1,New South Wales,153.629488,-28.637325 +2023,11,2,1,New South Wales,152.909843,-31.471819 +2021,6,5,1,New South Wales,150.606801,-34.429298 +2022,10,11,1,New South Wales,150.989843,-33.979107 +2020,4,2,1,New South Wales,152.777444,-31.71252 +2023,3,11,1,New South Wales,152.9335,-28.74626 +2020,10,21,1,New South Wales,151.785497,-32.580189 +2020,11,5,1,New South Wales,153.351976,-28.988266 +2023,11,1,1,New South Wales,152.782683,-31.484304 +2021,7,17,1,New South Wales,150.515944,-34.446859 +2023,6,18,1,New South Wales,152.064603,-32.708983 +2021,6,20,1,New South Wales,150.519612,-34.461187 +2021,4,28,1,New South Wales,150.624361,-34.388557 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2023,6,17,1,New South Wales,152.863968,-28.964455 +2021,2,5,1,New South Wales,153.562095,-28.389309 +2020,7,16,1,New South Wales,153.103627,-29.485483 +2023,12,7,1,New South Wales,152.070821,-32.717911 +2020,10,23,1,New South Wales,149.923643,-36.618562 +2021,6,11,1,New South Wales,150.644426,-34.39632 +2020,11,3,1,New South Wales,149.998977,-36.551144 +2021,4,12,1,New South Wales,153.437583,-28.690255 +2021,4,27,1,New South Wales,150.616636,-34.429716 +2024,2,18,1,New South Wales,153.071801,-30.887245 +2023,10,10,1,New South Wales,152.192936,-32.526478 +2021,5,24,1,New South Wales,150.616044,-34.434843 +2024,1,6,1,New South Wales,152.929648,-31.453478 +2022,1,4,1,New South Wales,152.907546,-31.456012 +2021,5,29,1,New South Wales,150.602535,-34.424779 +2021,9,11,1,New South Wales,152.873211,-29.675181 +2021,4,16,1,New South Wales,150.529936,-34.459512 +2020,12,14,1,New South Wales,150.040777,-35.132751 +2023,8,21,1,New South Wales,153.109347,-29.49046 +2022,8,1,1,New South Wales,150.795234,-34.132341 +2021,5,26,1,New South Wales,150.602788,-34.434935 +2021,4,26,1,New South Wales,150.609511,-34.418948 +2024,3,18,1,New South Wales,150.989581,-34.029022 +2020,4,8,1,New South Wales,152.086083,-32.732412 +2021,5,30,1,New South Wales,150.523179,-34.464586 +2020,4,28,1,New South Wales,152.725853,-30.833943 +2020,5,17,1,New South Wales,149.304115,-36.067997 +2022,6,4,1,New South Wales,153.101499,-29.489479 +2024,3,2,1,New South Wales,152.071004,-32.718362 +2022,10,26,1,New South Wales,153.159336,-28.924715 +2020,9,3,1,New South Wales,152.775941,-31.490454 +2021,7,24,1,New South Wales,150.908879,-33.998335 +2023,6,22,1,New South Wales,152.079535,-32.726998 +2020,10,11,1,New South Wales,149.952917,-36.681355 +2022,8,26,1,New South Wales,150.870377,-34.035072 +2023,8,6,1,New South Wales,153.321983,-28.823206 +2022,8,4,1,New South Wales,150.794056,-34.221219 +2021,5,5,1,New South Wales,150.615951,-34.435815 +2023,7,26,1,New South Wales,150.785097,-33.710842 +2021,12,3,1,New South Wales,153.302529,-28.821648 +2021,1,14,1,New South Wales,153.288292,-28.809314 +2021,5,10,1,New South Wales,150.628132,-34.389802 +2021,8,10,1,New South Wales,150.631953,-34.418212 +2021,1,6,1,New South Wales,153.121061,-30.298281 +2021,4,29,1,New South Wales,150.604065,-34.427189 +2021,5,9,1,New South Wales,150.521103,-34.435407 +2021,6,28,1,New South Wales,150.518328,-34.444978 +2020,11,25,1,New South Wales,152.806889,-31.154067 +2021,7,9,1,New South Wales,150.640843,-34.393772 +2021,6,6,1,New South Wales,150.640107,-34.398662 +2020,10,23,1,New South Wales,149.950035,-36.601015 +2020,3,17,1,New South Wales,153.120151,-30.305382 +2021,5,10,1,New South Wales,150.615067,-34.434382 +2020,9,24,1,New South Wales,153.293015,-28.824663 +2020,8,5,1,New South Wales,150.06103,-33.773724 +2021,5,11,1,New South Wales,150.606817,-34.438657 +2023,10,18,1,New South Wales,153.124407,-30.296245 +2022,12,19,1,New South Wales,152.908578,-31.441092 +2021,6,15,1,New South Wales,150.610934,-34.535937 +2021,6,11,1,New South Wales,150.630873,-34.420635 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2021,9,15,1,New South Wales,150.528794,-34.472371 +2022,11,28,1,New South Wales,153.447249,-28.964835 +2021,4,27,1,New South Wales,150.635869,-34.419388 +2021,5,14,1,New South Wales,150.517868,-34.441399 +2021,3,12,1,New South Wales,150.514926,-34.445576 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2021,6,11,1,New South Wales,150.611645,-34.430754 +2022,9,28,1,New South Wales,152.868061,-29.666949 +2023,1,21,1,New South Wales,152.064617,-32.709052 +2023,3,1,1,New South Wales,152.197908,-32.219547 +2020,7,14,1,New South Wales,152.800026,-30.212319 +2021,8,19,1,New South Wales,150.645581,-34.401653 +2023,10,18,1,New South Wales,153.024437,-30.416657 +2021,4,20,1,New South Wales,150.636302,-34.485507 +2023,8,24,1,New South Wales,152.183981,-32.243312 +2020,5,4,1,New South Wales,151.001662,-34.060795 +2021,9,2,1,New South Wales,152.430062,-31.765321 +2021,10,19,1,New South Wales,152.810277,-29.805377 +2021,7,12,1,New South Wales,152.914953,-31.445557 +2021,5,6,1,New South Wales,150.639051,-34.491501 +2021,5,3,1,New South Wales,150.615114,-34.435393 +2020,6,11,1,New South Wales,153.300421,-28.819731 +2021,5,4,1,New South Wales,150.637312,-34.423788 +2021,5,15,1,New South Wales,150.600383,-34.428127 +2021,6,22,1,New South Wales,150.657638,-34.455662 +2021,6,28,1,New South Wales,150.513016,-34.44725 +2021,5,16,1,New South Wales,150.529922,-34.467742 +2021,4,20,1,New South Wales,150.610337,-34.418982 +2023,10,25,1,New South Wales,152.885766,-30.51747 +2021,7,28,1,New South Wales,150.625336,-34.385998 +2022,3,30,1,New South Wales,146.598442,-34.768567 +2021,5,28,1,New South Wales,150.516361,-34.44895 +2022,7,5,1,New South Wales,150.965449,-32.241611 +2021,12,15,1,New South Wales,153.347356,-28.714708 +2020,10,28,1,New South Wales,149.984095,-36.575978 +2021,6,6,1,New South Wales,150.523578,-34.465459 +2021,5,2,1,New South Wales,150.604932,-34.426918 +2020,10,29,1,New South Wales,149.955017,-36.576791 +2020,11,24,1,New South Wales,153.342482,-28.805797 +2020,10,9,1,New South Wales,150.641648,-33.429619 +2023,1,29,1,New South Wales,152.919324,-31.450952 +2021,8,28,1,New South Wales,153.429797,-29.016578 +2020,10,29,1,New South Wales,149.955017,-36.576791 +2022,10,2,1,New South Wales,152.913239,-31.451459 +2022,4,1,1,New South Wales,152.926244,-31.459063 +2020,6,11,1,New South Wales,149.961856,-36.436911 +2020,9,22,1,New South Wales,153.423034,-28.663391 +2021,9,2,1,New South Wales,153.537312,-28.333004 +2021,6,17,1,New South Wales,150.659596,-34.455294 +2021,10,15,1,New South Wales,150.973024,-34.123068 +2021,10,9,1,New South Wales,151.660794,-32.686035 +2023,8,2,1,New South Wales,152.028839,-32.19213 +2020,1,17,1,New South Wales,148.720973,-36.460941 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2021,2,23,1,New South Wales,150.515579,-34.448529 +2021,4,8,1,New South Wales,153.56409,-28.336216 +2020,12,24,1,New South Wales,153.274356,-28.872283 +2023,7,15,1,New South Wales,152.077249,-32.722554 +2020,11,14,1,New South Wales,153.035292,-28.600733 +2023,10,28,1,New South Wales,152.412514,-31.932252 +2021,5,2,1,New South Wales,150.615809,-34.435064 +2023,2,4,1,New South Wales,153.270217,-28.888324 +2024,2,3,1,New South Wales,152.50375,-32.376785 +2021,7,22,1,New South Wales,150.606961,-34.438569 +2021,12,18,1,New South Wales,150.616409,-34.441143 +2020,11,1,1,New South Wales,152.908286,-31.431417 +2023,9,27,1,New South Wales,150.784305,-33.717291 +2020,10,16,1,New South Wales,149.947183,-36.617465 +2020,11,10,1,New South Wales,152.903209,-31.453901 +2021,5,22,1,New South Wales,150.515718,-34.450794 +2020,10,31,1,New South Wales,149.967242,-36.561675 +2020,10,22,1,New South Wales,149.947183,-36.617465 +2022,11,1,1,New South Wales,152.412804,-31.933272 +2021,5,4,1,New South Wales,150.611449,-34.419671 +2024,2,4,1,New South Wales,150.786126,-33.713322 +2022,7,20,1,New South Wales,151.091422,-33.145025 +2020,10,17,1,New South Wales,153.556036,-28.399676 +2021,5,18,1,New South Wales,150.519788,-34.453005 +2023,10,21,1,New South Wales,150.786067,-33.711347 +2021,6,11,1,New South Wales,150.515889,-34.447237 +2021,10,15,1,New South Wales,153.556168,-28.330904 +2021,10,17,1,New South Wales,153.108119,-29.490315 +2020,2,10,1,New South Wales,149.398366,-33.489046 +2020,7,30,1,New South Wales,152.925939,-31.458825 +2022,1,14,1,New South Wales,153.308788,-29.053044 +2020,8,24,1,New South Wales,152.728863,-29.505129 +2020,4,5,1,New South Wales,153.082286,-29.073423 +2021,6,6,1,New South Wales,153.554212,-28.703481 +2020,11,25,1,New South Wales,149.62228,-33.543308 +2020,9,13,1,New South Wales,153.556929,-28.402046 +2021,9,6,1,New South Wales,150.643006,-34.400792 +2021,2,2,1,New South Wales,151.151185,-33.628687 +2020,10,23,1,New South Wales,149.955017,-36.576791 +2021,5,22,1,New South Wales,150.518066,-34.451617 +2021,9,8,1,New South Wales,150.520266,-34.447885 +2021,6,11,1,New South Wales,150.62718,-34.385799 +2023,1,9,1,New South Wales,152.743725,-28.942751 +2021,6,5,1,New South Wales,150.523438,-34.464663 +2020,9,10,1,New South Wales,153.555612,-28.398078 +2021,5,17,1,New South Wales,150.523868,-34.463752 +2021,6,4,1,New South Wales,153.075559,-30.346344 +2023,4,1,1,New South Wales,150.809052,-34.098164 +2021,5,9,1,New South Wales,150.52136,-34.466469 +2021,5,21,1,New South Wales,150.607272,-34.432634 +2021,7,7,1,New South Wales,150.631191,-34.387373 +2021,4,29,1,New South Wales,150.616064,-34.436448 +2020,10,12,1,New South Wales,149.938155,-36.621708 +2023,9,27,1,New South Wales,152.897385,-31.474898 +2021,6,21,1,New South Wales,150.603496,-34.420056 +2022,2,11,1,New South Wales,153.295041,-28.867789 +2023,11,4,1,New South Wales,152.381044,-31.907711 +2022,12,6,1,New South Wales,152.079651,-32.727242 +2023,7,16,1,New South Wales,153.074987,-28.55615 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2020,9,21,1,New South Wales,152.062034,-32.709332 +2020,11,2,1,New South Wales,149.994744,-36.560944 +2021,4,24,1,New South Wales,150.605373,-34.42369 +2021,7,9,1,New South Wales,153.279224,-28.930197 +2021,6,1,1,New South Wales,150.629043,-34.390289 +2023,3,29,1,New South Wales,150.827206,-34.127624 +2021,7,4,1,New South Wales,150.627411,-34.421108 +2024,6,7,1,New South Wales,152.873004,-31.479254 +2021,3,16,1,New South Wales,152.905273,-31.456865 +2021,7,11,1,New South Wales,150.513003,-34.447313 +2022,12,5,1,New South Wales,152.925061,-31.454131 +2023,8,1,1,New South Wales,150.652934,-34.208264 +2021,5,29,1,New South Wales,150.642764,-34.394674 +2021,4,21,1,New South Wales,150.637068,-34.422413 +2022,12,13,1,New South Wales,152.846388,-31.450226 +2021,8,24,1,New South Wales,150.608626,-34.453441 +2022,4,6,1,New South Wales,153.108178,-29.490208 +2021,4,27,1,New South Wales,150.602909,-34.435668 +2021,5,21,1,New South Wales,150.598698,-34.428436 +2020,8,16,1,New South Wales,152.986742,-29.031464 +2021,5,30,1,New South Wales,150.516694,-34.447235 +2021,6,9,1,New South Wales,150.610445,-34.43046 +2021,7,10,1,New South Wales,152.413049,-31.932582 +2024,6,26,1,New South Wales,152.857701,-31.544385 +2020,10,13,1,New South Wales,149.930096,-36.638123 +2023,1,14,1,New South Wales,150.99207,-33.981831 +2023,7,10,1,New South Wales,151.733037,-32.721269 +2021,4,21,1,New South Wales,150.604676,-34.424451 +2021,6,21,1,New South Wales,150.627918,-34.420884 +2021,4,26,1,New South Wales,150.601931,-34.425714 +2023,7,12,1,New South Wales,153.429069,-28.979462 +2022,6,21,1,New South Wales,153.103318,-29.486589 +2023,6,20,1,New South Wales,152.785092,-31.630398 +2024,7,16,1,New South Wales,152.250591,-32.211857 +2020,8,31,1,New South Wales,153.362296,-28.884228 +2023,1,20,1,New South Wales,152.374234,-31.916151 +2022,11,20,1,New South Wales,152.794854,-30.893434 +2021,4,29,1,New South Wales,150.517442,-34.445871 +2022,3,31,1,New South Wales,153.103806,-29.48551 +2022,1,3,1,New South Wales,150.615206,-34.439064 +2020,12,11,1,New South Wales,150.085865,-33.774449 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2020,4,28,1,New South Wales,152.710237,-30.838808 +2020,1,15,1,New South Wales,153.556207,-28.37234 +2024,9,18,1,New South Wales,146.562555,-34.757376 +2022,2,22,1,New South Wales,151.130058,-33.095045 +2020,11,20,1,New South Wales,152.083865,-32.727394 +2020,10,22,1,New South Wales,152.179389,-30.08386 +2023,10,26,1,New South Wales,153.109723,-29.490175 +2021,7,18,1,New South Wales,150.627925,-34.421019 +2020,12,19,1,New South Wales,153.104332,-29.489615 +2021,6,6,1,New South Wales,150.609187,-34.434529 +2021,5,16,1,New South Wales,150.628846,-34.389176 +2023,8,11,1,New South Wales,153.590203,-28.711656 +2022,9,4,1,New South Wales,152.848918,-31.560332 +2022,3,27,1,New South Wales,153.401629,-28.256938 +2022,7,29,1,New South Wales,152.810615,-31.152926 +2021,4,29,1,New South Wales,150.638596,-34.489491 +2021,11,3,1,New South Wales,153.51898,-28.57492 +2022,1,11,1,New South Wales,153.312268,-28.943292 +2022,4,2,1,New South Wales,153.103945,-29.489577 +2021,10,,1,New South Wales,149.209573,-35.909051 +2022,1,2,1,New South Wales,152.762446,-31.325051 +2023,8,14,1,New South Wales,153.110527,-29.490091 +2021,5,28,1,New South Wales,150.617559,-34.438605 +2021,5,21,1,New South Wales,150.630742,-34.387121 +2021,6,2,1,New South Wales,150.519897,-34.454855 +2021,6,6,1,New South Wales,150.607045,-34.429907 +2023,10,18,1,New South Wales,152.869618,-30.426042 +2021,6,19,1,New South Wales,150.622509,-34.384464 +2021,4,19,1,New South Wales,150.630949,-34.394049 +2021,4,22,1,New South Wales,150.605372,-34.432858 +2021,4,28,1,New South Wales,150.609463,-34.419109 +2021,6,4,1,New South Wales,150.519744,-34.447892 +2021,6,15,1,New South Wales,150.639768,-34.399133 +2021,10,2,1,New South Wales,152.913654,-31.477123 +2021,4,21,1,New South Wales,150.637034,-34.422449 +2023,6,5,1,New South Wales,150.7999,-34.17788 +2021,7,23,1,New South Wales,153.334927,-28.815011 +2021,6,9,1,New South Wales,150.518237,-34.453568 +2023,11,11,1,New South Wales,150.872535,-34.035178 +2021,7,18,1,New South Wales,153.561356,-28.382917 +2021,9,11,1,New South Wales,152.374098,-31.915671 +2022,10,7,1,New South Wales,149.5521,-33.491276 +2021,7,5,1,New South Wales,150.643903,-34.393227 +2021,1,24,1,New South Wales,152.922532,-31.460875 +2023,9,20,1,New South Wales,153.277353,-28.939508 +2023,5,28,1,New South Wales,152.986726,-29.030746 +2022,5,13,1,New South Wales,153.103795,-29.487924 +2021,4,21,1,New South Wales,150.522674,-34.465829 +2020,4,20,1,New South Wales,152.816138,-31.550406 +2023,2,6,1,New South Wales,153.61431,-28.662586 +2021,7,22,1,New South Wales,150.630298,-34.420966 +2021,4,26,1,New South Wales,150.635545,-34.418156 +2021,4,30,1,New South Wales,150.610091,-34.419996 +2023,12,30,1,New South Wales,150.786536,-33.704443 +2021,5,26,1,New South Wales,150.63129,-34.42012 +2022,12,30,1,New South Wales,153.110533,-29.490166 +2022,8,3,1,New South Wales,150.883653,-34.015618 +2023,5,30,1,New South Wales,150.785822,-33.715073 +2021,11,17,1,New South Wales,153.367535,-28.612172 +2021,5,19,1,New South Wales,150.630338,-34.395282 +2021,4,18,1,New South Wales,152.871849,-31.479051 +2021,6,21,1,New South Wales,150.657867,-34.456009 +2023,7,10,1,New South Wales,153.629186,-28.639492 +2023,6,12,1,New South Wales,151.515409,-30.499978 +2021,4,9,1,New South Wales,150.616765,-34.433216 +2021,4,28,1,New South Wales,152.106037,-32.729432 +2020,11,10,1,New South Wales,152.904344,-31.456114 +2023,9,21,1,New South Wales,152.729366,-31.600927 +2023,9,4,1,New South Wales,152.914061,-31.480401 +2021,7,18,1,New South Wales,150.624538,-34.386136 +2023,6,7,1,New South Wales,152.901443,-31.241831 +2021,4,14,1,New South Wales,153.562425,-28.389917 +2020,12,,1,New South Wales,152.791684,-31.630803 +2022,11,5,1,New South Wales,153.594564,-28.74324 +2021,5,9,1,New South Wales,150.637334,-34.423789 +2023,5,5,1,New South Wales,150.840287,-34.06378 +2021,6,21,1,New South Wales,150.628038,-34.420877 +2024,2,15,1,New South Wales,152.602409,-31.651771 +2021,3,11,1,New South Wales,150.53316,-34.475696 +2020,10,15,1,New South Wales,149.887989,-36.587028 +2023,7,14,1,New South Wales,153.045437,-30.463978 +2021,7,7,1,New South Wales,150.627446,-34.421812 +2023,9,25,1,New South Wales,153.301644,-28.821884 +2023,11,11,1,New South Wales,153.09592,-29.484576 +2022,3,15,1,New South Wales,150.994732,-34.056818 +2021,4,22,1,New South Wales,150.604337,-34.422245 +2021,6,25,1,New South Wales,153.094016,-29.488709 +2023,8,11,1,New South Wales,152.937903,-28.691735 +2021,7,15,1,New South Wales,150.627354,-34.421197 +2021,8,13,1,New South Wales,150.523195,-34.471032 +2021,6,20,1,New South Wales,150.520307,-34.465654 +2021,11,2,1,New South Wales,152.914021,-31.460392 +2021,7,1,1,New South Wales,150.626446,-34.390608 +2021,8,11,1,New South Wales,153.401468,-28.872044 +2020,11,10,1,New South Wales,152.904674,-31.456106 +2022,1,4,1,New South Wales,152.456293,-32.403623 +2020,4,20,1,New South Wales,152.867269,-31.467814 +2020,2,14,1,New South Wales,152.856583,-31.447396 +2021,5,7,1,New South Wales,150.632802,-34.418607 +2021,6,8,1,New South Wales,150.517926,-34.457096 +2021,5,1,1,New South Wales,150.519271,-34.466823 +2024,2,27,1,New South Wales,153.108097,-29.490311 +2021,4,26,1,New South Wales,150.635716,-34.418285 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2021,5,28,1,New South Wales,150.516404,-34.448969 +2021,4,17,1,New South Wales,150.627482,-34.386247 +2021,11,19,1,New South Wales,152.966033,-30.397046 +2023,10,5,1,New South Wales,152.063663,-32.705539 +2024,1,11,1,New South Wales,152.888257,-29.639691 +2022,4,2,1,New South Wales,150.016192,-34.806145 +2020,10,23,1,New South Wales,149.915309,-36.574566 +2024,9,24,2,New South Wales,146.544787,-34.753227 +2021,6,5,1,New South Wales,153.303677,-28.651197 +2021,7,30,1,New South Wales,151.506959,-30.511997 +2023,9,12,1,New South Wales,152.809887,-31.652347 +2021,9,9,1,New South Wales,150.789331,-34.200336 +2021,5,24,1,New South Wales,150.517335,-34.452053 +2021,3,27,1,New South Wales,150.607411,-34.422774 +2022,11,19,1,New South Wales,150.643659,-33.593623 +2021,8,28,1,New South Wales,150.513798,-34.447275 +2023,8,24,1,New South Wales,152.20507,-32.22231 +2020,10,30,1,New South Wales,149.938213,-36.559404 +2021,6,17,1,New South Wales,150.659471,-34.455472 +2022,3,15,1,New South Wales,153.557961,-28.393962 +2020,10,11,1,New South Wales,153.0802,-30.9008 +2023,5,30,1,New South Wales,152.191179,-31.59447 +2020,10,11,1,New South Wales,149.952917,-36.681355 +2023,10,12,1,New South Wales,153.100692,-30.302212 +2021,5,18,1,New South Wales,150.640705,-34.494229 +2020,5,14,1,New South Wales,150.685064,-34.352653 +2022,4,27,1,New South Wales,152.910592,-31.465498 +2020,11,15,1,New South Wales,151.69219,-32.697448 +2022,10,5,1,New South Wales,153.006924,-30.407796 +2021,1,15,1,New South Wales,153.104079,-29.48431 +2020,11,24,1,New South Wales,153.342482,-28.805797 +2020,11,3,1,New South Wales,152.037231,-32.729309 +2021,6,26,1,New South Wales,150.644384,-34.391595 +2021,5,13,1,New South Wales,150.517886,-34.437865 +2021,6,15,1,New South Wales,150.514312,-34.446483 +2024,2,28,1,New South Wales,152.89831,-31.442672 +2023,2,22,1,New South Wales,152.405107,-31.920313 +2020,10,20,1,New South Wales,149.947183,-36.617465 +2022,9,20,1,New South Wales,152.90909,-30.1759 +2020,5,4,1,New South Wales,152.498059,-28.313253 +2021,11,25,1,New South Wales,150.616564,-34.439893 +2022,1,29,1,New South Wales,152.405107,-31.920313 +2022,9,13,1,New South Wales,152.87191,-31.144825 +2022,4,2,1,New South Wales,153.110533,-29.490203 +2022,4,30,1,New South Wales,151.778706,-32.573337 +2022,9,13,1,New South Wales,150.789197,-34.195852 +2020,10,12,1,New South Wales,152.960451,-31.215618 +2020,6,14,1,New South Wales,153.529457,-28.588452 +2023,5,7,1,New South Wales,152.896567,-31.443303 +2022,4,16,1,New South Wales,153.110527,-29.49018 +2022,11,27,1,New South Wales,152.734049,-30.84847 +2021,4,21,1,New South Wales,150.604951,-34.423222 +2021,4,30,1,New South Wales,150.609044,-34.434959 +2022,12,10,1,New South Wales,146.532454,-34.741097 +2020,10,16,1,New South Wales,149.947183,-36.617465 +2020,10,20,1,New South Wales,153.273941,-28.820088 +2020,5,13,1,New South Wales,153.092232,-29.488095 +2021,6,1,1,New South Wales,150.521632,-34.465735 +2020,10,16,1,New South Wales,149.947183,-36.617465 +2020,8,13,1,New South Wales,153.553636,-28.359247 +2024,4,18,1,New South Wales,152.882534,-31.254847 +2021,5,19,1,New South Wales,150.641005,-34.494784 +2024,4,28,1,New South Wales,150.989495,-34.028018 +2024,2,20,1,New South Wales,144.895403,-35.971447 +2021,6,29,1,New South Wales,150.605824,-34.432642 +2021,7,4,1,New South Wales,150.627376,-34.421198 +2021,5,9,1,New South Wales,153.562707,-28.38545 +2020,10,13,1,New South Wales,153.396961,-28.558873 +2021,4,23,1,New South Wales,150.615339,-34.430944 +2020,11,3,1,New South Wales,152.916227,-31.480952 +2023,11,16,1,New South Wales,152.868165,-31.465331 +2021,6,10,1,New South Wales,150.646163,-34.39721 +2022,10,10,1,New South Wales,153.521767,-28.566824 +2022,11,27,1,New South Wales,152.777302,-30.885013 +2020,12,10,1,New South Wales,153.327762,-28.671784 +2021,7,12,1,New South Wales,150.597304,-34.410243 +2021,11,23,1,New South Wales,152.24139,-30.027688 +2021,6,25,1,New South Wales,152.412635,-31.932544 +2022,12,31,1,New South Wales,149.926899,-32.959492 +2021,10,29,1,New South Wales,153.283345,-28.830836 +2021,5,7,1,New South Wales,150.521137,-34.451932 +2020,10,15,1,New South Wales,152.797112,-31.637879 +2021,4,27,1,New South Wales,150.600953,-34.426452 +2021,9,12,1,New South Wales,150.532445,-34.477413 +2022,11,23,1,New South Wales,152.794945,-30.901933 +2023,4,20,1,New South Wales,153.299496,-28.821547 +2020,10,13,1,New South Wales,152.894749,-31.448294 +2021,3,18,1,New South Wales,150.603441,-34.43951 +2021,5,9,1,New South Wales,150.604871,-34.42679 +2021,7,22,1,New South Wales,150.623075,-34.382889 +2023,5,30,1,New South Wales,153.491477,-28.667264 +2021,5,26,1,New South Wales,150.619383,-34.439515 +2021,5,17,1,New South Wales,150.607182,-34.436942 +2021,5,21,1,New South Wales,150.659327,-34.457524 +2020,10,10,1,New South Wales,152.995193,-30.416487 +2023,9,9,1,New South Wales,152.88489,-31.429786 +2023,12,3,1,New South Wales,151.663314,-32.720474 +2023,9,23,1,New South Wales,150.786938,-33.707269 +2021,4,25,1,New South Wales,150.615491,-34.435527 +2023,7,12,1,New South Wales,153.108167,-29.490665 +2021,5,1,1,New South Wales,150.607953,-34.45607 +2020,6,5,1,New South Wales,152.906328,-31.481698 +2021,11,4,1,New South Wales,151.746577,-32.557035 +2023,11,6,1,New South Wales,152.384254,-31.884849 +2020,12,19,1,New South Wales,153.104069,-29.479267 +2023,1,16,1,New South Wales,152.923421,-31.46977 +2021,6,6,1,New South Wales,150.626675,-34.389035 +2021,5,27,1,New South Wales,150.527162,-34.469399 +2021,5,22,1,New South Wales,150.630452,-34.420924 +2021,9,18,1,New South Wales,150.633666,-34.418426 +2023,9,12,1,New South Wales,150.794403,-34.229736 +2022,9,12,1,New South Wales,152.87191,-31.15075 +2023,2,18,1,New South Wales,153.414197,-28.953621 +2021,5,4,1,New South Wales,150.627102,-34.389701 +2021,8,21,1,New South Wales,153.563878,-28.391181 +2022,7,9,1,New South Wales,150.177743,-29.174626 +2020,8,25,1,New South Wales,152.95523,-30.66673 +2023,12,27,1,New South Wales,150.973847,-34.106067 +2023,12,29,1,New South Wales,152.92596,-31.452378 +2023,10,15,1,New South Wales,152.710237,-31.78229 +2021,7,6,1,New South Wales,150.514311,-34.44651 +2022,8,14,1,New South Wales,152.090906,-32.781371 +2022,9,28,1,New South Wales,152.068944,-32.748672 +2021,10,1,1,New South Wales,153.451137,-28.928791 +2021,10,23,1,New South Wales,153.541925,-28.396572 +2022,9,25,1,New South Wales,151.096801,-29.778078 +2020,12,31,1,New South Wales,153.104208,-29.480061 +2021,6,26,1,New South Wales,150.643979,-34.391281 +2021,9,6,1,New South Wales,151.659379,-32.682451 +2023,9,25,1,New South Wales,150.9855,-34.091522 +2023,9,21,1,New South Wales,153.075452,-30.354936 +2021,4,26,1,New South Wales,150.603245,-34.425424 +2021,6,29,1,New South Wales,150.631527,-34.387822 +2024,4,19,1,New South Wales,152.387605,-31.902146 +2021,7,31,1,New South Wales,152.182672,-29.867849 +2021,9,20,1,New South Wales,150.649546,-34.396392 +2021,5,9,1,New South Wales,150.639241,-34.491703 +2021,8,11,1,New South Wales,152.182672,-29.867849 +2020,1,1,1,New South Wales,153.104305,-29.482592 +2023,8,12,1,New South Wales,153.109288,-29.490647 +2024,1,28,1,New South Wales,152.079414,-32.730969 +2024,4,19,1,New South Wales,152.9091,-31.4402 +2021,8,23,1,New South Wales,150.521679,-34.464889 +2020,12,10,1,New South Wales,153.555948,-28.398935 +2023,1,24,1,New South Wales,153.300463,-28.823805 +2020,5,3,1,New South Wales,153.103822,-29.485576 +2021,5,2,1,New South Wales,150.56651,-34.52307 +2023,11,14,1,New South Wales,153.100716,-29.490152 +2022,11,25,1,New South Wales,152.770676,-30.853416 +2021,5,31,1,New South Wales,150.606343,-34.436195 +2022,9,19,1,New South Wales,152.90779,-30.17379 +2021,6,22,1,New South Wales,150.639466,-34.392835 +2021,6,26,1,New South Wales,151.717938,-32.662349 +2022,3,10,1,New South Wales,152.063314,-32.705964 +2020,10,20,1,New South Wales,149.950035,-36.601015 +2020,11,25,1,New South Wales,152.153345,-32.731477 +2021,7,30,1,New South Wales,150.520709,-34.465681 +2021,9,3,1,New South Wales,152.03977,-32.73392 +2021,5,23,1,New South Wales,150.63091,-34.388477 +2021,8,20,1,New South Wales,153.07817,-30.340512 +2021,5,25,1,New South Wales,150.516447,-34.450088 +2024,1,1,1,New South Wales,153.109787,-29.490199 +2024,4,13,1,New South Wales,152.926356,-31.451697 +2022,1,18,1,New South Wales,153.523666,-28.38674 +2022,5,3,1,New South Wales,151.846832,-32.800506 +2021,5,5,1,New South Wales,150.638506,-34.490742 +2023,7,24,1,New South Wales,153.056771,-28.691576 +2023,7,27,1,New South Wales,153.316666,-28.820486 +2021,4,19,1,New South Wales,150.626878,-34.385685 +2022,1,4,1,New South Wales,150.844721,-29.834265 +2023,5,30,1,New South Wales,151.082325,-33.13776 +2021,6,5,1,New South Wales,150.63998,-34.397758 +2021,1,31,1,New South Wales,153.314983,-28.949201 +2021,8,6,1,New South Wales,150.628619,-34.389136 +2021,8,20,1,New South Wales,152.379396,-31.919751 +2021,3,18,1,New South Wales,150.532529,-34.48121 +2021,9,30,1,New South Wales,153.314983,-28.949201 +2022,5,5,1,New South Wales,152.924695,-31.443148 +2020,2,29,1,New South Wales,153.314983,-28.949201 +2021,6,1,1,New South Wales,150.639569,-34.39922 +2022,10,31,1,New South Wales,153.314983,-28.949201 +2023,9,20,1,New South Wales,149.140067,-35.971844 +2021,4,25,1,New South Wales,150.605392,-34.423762 +2021,10,27,1,New South Wales,150.911136,-33.968789 +2023,8,31,1,New South Wales,153.314983,-28.949201 +2020,2,7,1,New South Wales,153.104235,-29.479724 +2022,8,16,1,New South Wales,153.10401,-29.483993 +2021,11,17,1,New South Wales,152.152509,-32.722949 +2024,3,26,1,New South Wales,152.399507,-31.850735 +2023,11,27,1,New South Wales,149.398327,-33.489114 +2021,6,28,1,New South Wales,150.513094,-34.447171 +2021,6,13,1,New South Wales,150.625446,-34.384413 +2021,9,10,1,New South Wales,153.31798,-28.827161 +2021,4,27,1,New South Wales,150.616369,-34.429161 +2021,9,8,1,New South Wales,150.521454,-34.465885 +2021,5,9,1,New South Wales,150.52087,-34.466847 +2021,6,22,1,New South Wales,153.415221,-28.672232 +2021,5,11,1,New South Wales,150.521404,-34.466461 +2021,7,24,1,New South Wales,150.641399,-34.395667 +2020,12,1,1,New South Wales,152.67026,-31.166614 +2020,10,21,1,New South Wales,153.557215,-28.400332 +2022,11,18,1,New South Wales,152.770676,-30.853416 +2021,4,17,1,New South Wales,150.515752,-34.443042 +2023,11,16,1,New South Wales,152.887031,-31.439408 +2023,11,18,1,New South Wales,152.872797,-31.463682 +2023,2,24,1,New South Wales,153.38778,-28.678148 +2020,2,18,1,New South Wales,152.116571,-32.766323 +2021,7,21,1,New South Wales,150.62326,-34.383262 +2021,1,14,1,New South Wales,152.069137,-32.707881 +2021,7,18,1,New South Wales,150.516584,-34.446926 +2021,11,1,1,New South Wales,153.482136,-28.640286 +2021,5,31,1,New South Wales,150.604372,-34.424437 +2021,3,5,1,New South Wales,153.103666,-29.485819 +2020,10,13,1,New South Wales,149.947316,-36.607854 +2023,11,25,1,New South Wales,153.074095,-30.889394 +2020,6,24,1,New South Wales,152.884946,-31.430129 +2021,4,12,1,New South Wales,150.523906,-34.452511 +2020,10,18,1,New South Wales,149.921178,-36.633581 +2022,5,6,1,New South Wales,152.908079,-31.44189 +2020,10,30,1,New South Wales,149.984095,-36.575978 +2021,5,7,1,New South Wales,150.615901,-34.43567 +2021,1,23,1,New South Wales,152.003944,-32.727623 +2023,12,22,1,New South Wales,152.899011,-31.477865 +2020,8,21,1,New South Wales,153.10401,-29.484597 +2021,7,28,1,New South Wales,152.449782,-32.092397 +2021,9,16,1,New South Wales,152.37941,-31.919753 +2021,2,13,1,New South Wales,153.458876,-28.237207 +2021,5,25,1,New South Wales,150.631452,-34.387784 +2020,10,7,1,New South Wales,152.062125,-32.70915 +2020,10,5,1,New South Wales,152.944433,-29.346563 +2022,12,3,1,New South Wales,153.159359,-28.924729 +2022,9,24,1,New South Wales,153.110506,-29.49017 +2023,9,19,1,New South Wales,150.78684,-33.707786 +2020,12,19,1,New South Wales,153.328556,-28.816805 +2022,8,19,1,New South Wales,151.871287,-32.774392 +2022,8,2,1,New South Wales,150.79405,-34.138436 +2021,5,6,1,New South Wales,152.868319,-29.667247 +2021,8,9,1,New South Wales,150.51312,-34.445927 +2024,1,5,1,New South Wales,152.063272,-32.706203 +2020,10,23,1,New South Wales,149.923643,-36.618562 +2021,4,29,1,New South Wales,150.608876,-34.435127 +2021,9,17,1,New South Wales,150.64566,-34.400401 +2023,9,7,1,New South Wales,153.273349,-28.939137 +2024,5,14,1,New South Wales,151.816471,-32.354277 +2021,5,2,1,New South Wales,153.27792,-28.678948 +2022,6,24,1,New South Wales,153.56427,-28.380558 +2024,1,3,1,New South Wales,153.107894,-29.490213 +2023,12,9,1,New South Wales,152.414365,-31.93439 +2021,4,16,1,New South Wales,150.656008,-34.45866 +2021,6,18,1,New South Wales,150.622486,-34.384509 +2021,10,6,1,New South Wales,152.887473,-31.444077 +2021,5,9,1,New South Wales,150.516994,-34.447394 +2020,8,19,1,New South Wales,153.281819,-28.819816 +2021,5,16,1,New South Wales,150.52394,-34.46278 +2023,9,30,1,New South Wales,151.715294,-32.668945 +2020,11,1,1,New South Wales,149.915309,-36.574566 +2022,11,5,1,New South Wales,152.920882,-31.455795 +2023,11,6,1,New South Wales,152.870715,-31.461602 +2021,4,27,1,New South Wales,150.609512,-34.418911 +2022,6,4,1,New South Wales,153.104203,-29.47958 +2021,7,8,1,New South Wales,150.978567,-34.084685 +2021,2,15,1,New South Wales,153.186783,-28.888915 +2021,6,5,1,New South Wales,150.609177,-34.434502 +2021,6,2,1,New South Wales,150.603681,-34.437594 +2021,6,12,1,New South Wales,150.611986,-34.432158 +2023,1,5,1,New South Wales,153.557719,-28.388496 +2022,10,6,1,New South Wales,152.970412,-30.422788 +2021,1,2,1,New South Wales,152.666458,-31.863221 +2021,3,28,1,New South Wales,150.533125,-34.480942 +2021,8,2,1,New South Wales,150.5182,-34.437169 +2021,5,28,1,New South Wales,150.641698,-34.393509 +2021,5,5,1,New South Wales,150.637302,-34.423761 +2023,5,8,1,New South Wales,152.896425,-29.629872 +2021,5,20,1,New South Wales,150.522293,-34.4651 +2022,8,30,1,New South Wales,149.324916,-36.294197 +2023,10,17,1,New South Wales,152.306418,-32.200385 +2021,12,14,1,New South Wales,152.893086,-31.454902 +2023,11,3,1,New South Wales,152.19096,-32.219628 +2022,6,13,1,New South Wales,150.842335,-34.068546 +2020,3,17,1,New South Wales,152.897136,-31.442702 +2021,12,1,1,New South Wales,150.834442,-34.069204 +2023,9,26,1,New South Wales,150.785679,-33.70996 +2021,11,12,1,New South Wales,150.842335,-34.068546 +2021,9,11,1,New South Wales,152.910331,-31.440017 +2021,6,11,1,New South Wales,150.60426,-34.437876 +2021,1,6,1,New South Wales,152.887932,-31.439302 +2021,8,31,1,New South Wales,153.314983,-28.949201 +2021,10,16,1,New South Wales,153.107121,-29.474102 +2021,2,10,1,New South Wales,152.896714,-31.414153 +2021,5,17,1,New South Wales,150.520432,-34.454072 +2021,7,3,1,New South Wales,150.626969,-34.420983 +2022,8,31,1,New South Wales,153.314983,-28.949201 +2021,3,17,1,New South Wales,150.517286,-34.45152 +2023,9,18,1,New South Wales,153.560977,-28.387175 +2023,7,12,1,New South Wales,152.911145,-31.430037 +2020,11,15,1,New South Wales,153.321928,-28.998416 +2024,3,23,1,New South Wales,152.116143,-32.72405 +2023,8,24,1,New South Wales,153.134746,-30.253714 +2021,5,11,1,New South Wales,150.616947,-34.433716 +2022,12,23,1,New South Wales,152.077174,-32.722468 +2023,4,6,1,New South Wales,153.228742,-28.890876 +2024,8,21,1,New South Wales,152.383191,-31.912325 +2021,6,3,1,New South Wales,153.592081,-28.729263 +2023,11,14,1,New South Wales,152.90836,-31.45791 +2024,2,24,1,New South Wales,150.752609,-34.052067 +2023,8,5,1,New South Wales,151.027991,-34.034455 +2021,4,20,1,New South Wales,150.607514,-34.433306 +2020,7,30,1,New South Wales,152.794063,-31.127889 +2021,12,7,1,New South Wales,149.807665,-32.354846 +2021,7,8,1,New South Wales,150.627447,-34.421389 +2023,11,14,1,New South Wales,152.699685,-30.290428 +2022,8,25,1,New South Wales,151.649795,-30.326234 +2022,12,28,1,New South Wales,152.922865,-31.443033 +2021,2,27,1,New South Wales,150.52049,-34.467903 +2021,8,22,1,New South Wales,151.765664,-32.573191 +2021,9,19,1,New South Wales,150.862399,-34.061874 +2021,5,11,1,New South Wales,150.612691,-34.458596 +2021,5,25,1,New South Wales,150.603026,-34.435003 +2021,3,2,1,New South Wales,152.409406,-31.910186 +2023,10,22,1,New South Wales,150.812873,-34.099034 +2020,5,5,1,New South Wales,150.05724,-34.90931 +2020,5,20,1,New South Wales,153.10379,-29.485552 +2021,2,17,1,New South Wales,151.636403,-32.619635 +2021,5,3,1,New South Wales,150.633556,-34.418478 +2021,5,7,1,New South Wales,150.632833,-34.418653 +2021,7,7,1,New South Wales,153.103184,-29.486757 +2020,4,20,1,New South Wales,152.867952,-31.506576 +2021,6,22,1,New South Wales,150.519469,-34.463429 +2022,9,5,1,New South Wales,153.101977,-29.488798 +2021,11,2,1,New South Wales,152.909624,-31.431087 +2023,10,21,1,New South Wales,153.110527,-29.49017 +2021,2,1,1,New South Wales,153.104219,-29.47971 +2021,8,2,1,New South Wales,152.063752,-32.706596 +2024,1,16,1,New South Wales,152.907297,-31.470421 +2020,4,9,1,New South Wales,152.7295,-30.202696 +2021,5,7,1,New South Wales,150.605576,-34.437902 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2020,9,26,1,New South Wales,152.199852,-31.867495 +2022,12,21,1,New South Wales,150.990249,-33.979672 +2022,11,19,1,New South Wales,153.326028,-28.824541 +2021,4,26,1,New South Wales,150.603242,-34.436973 +2021,5,2,1,New South Wales,150.61549,-34.435572 +2023,8,3,1,New South Wales,150.786799,-33.703828 +2022,2,17,1,New South Wales,153.195273,-28.885959 +2020,11,26,1,New South Wales,153.158417,-28.926902 +2021,2,24,1,New South Wales,152.415397,-31.93318 +2021,4,7,1,New South Wales,150.517457,-34.446097 +2021,4,21,1,New South Wales,150.632678,-34.392902 +2021,7,4,1,New South Wales,152.829547,-29.642903 +2023,4,4,1,New South Wales,153.317755,-28.827612 +2021,8,10,1,New South Wales,150.631887,-34.388171 +2023,8,19,1,New South Wales,151.010067,-34.045103 +2021,5,14,1,New South Wales,150.6403,-34.49313 +2022,7,30,1,New South Wales,153.315188,-28.86024 +2021,4,26,1,New South Wales,150.637472,-34.488027 +2021,5,11,1,New South Wales,150.616363,-34.434335 +2022,11,19,1,New South Wales,152.769456,-30.916275 +2020,10,17,1,New South Wales,149.947048,-36.640426 +2021,6,6,1,New South Wales,150.616412,-34.436067 +2023,7,1,1,New South Wales,151.721643,-32.719454 +2020,5,13,1,New South Wales,153.527636,-28.477117 +2022,11,19,1,New South Wales,152.769456,-30.916275 +2021,5,1,1,New South Wales,150.618546,-34.399209 +2021,4,28,1,New South Wales,150.61548,-34.435562 +2022,11,30,1,New South Wales,152.769456,-30.916275 +2020,2,29,1,New South Wales,153.314983,-28.949201 +2021,7,20,1,New South Wales,150.630797,-34.420633 +2024,2,9,1,New South Wales,150.785172,-33.716224 +2021,6,21,1,New South Wales,150.602693,-34.439027 +2020,9,7,1,New South Wales,153.488941,-28.230411 +2022,9,30,1,New South Wales,153.314983,-28.949201 +2021,3,6,1,New South Wales,150.608353,-34.432114 +2023,7,18,1,New South Wales,153.103881,-29.484913 +2023,8,2,1,New South Wales,153.556831,-28.397475 +2021,7,5,1,New South Wales,152.404167,-31.945815 +2020,8,2,1,New South Wales,153.553711,-28.359273 +2022,1,26,1,New South Wales,153.104042,-29.485118 +2021,5,2,1,New South Wales,150.604809,-34.427033 +2021,6,19,1,New South Wales,150.627897,-34.420865 +2021,12,20,1,New South Wales,152.908755,-31.454806 +2020,7,16,1,New South Wales,152.895977,-31.434431 +2024,4,8,1,New South Wales,151.780438,-32.585358 +2024,8,12,1,New South Wales,152.292237,-32.206082 +2021,4,28,1,New South Wales,150.60461,-34.452704 +2020,1,13,1,New South Wales,152.875735,-31.468643 +2022,7,3,1,New South Wales,152.925908,-31.452762 +2021,3,3,1,New South Wales,150.520727,-34.468016 +2021,8,4,1,New South Wales,150.645306,-34.399429 +2024,1,9,1,New South Wales,152.076999,-32.722408 +2020,10,1,1,New South Wales,153.296613,-28.815434 +2022,9,16,1,New South Wales,153.395162,-29.096775 +2024,3,22,1,New South Wales,152.383596,-31.923029 +2021,6,8,1,New South Wales,150.629673,-34.420765 +2023,2,21,1,New South Wales,152.904596,-31.437091 +2021,5,17,1,New South Wales,150.614076,-34.432866 +2021,9,30,1,New South Wales,153.447243,-28.944391 +2020,11,17,1,New South Wales,149.957517,-36.504679 +2021,4,30,1,New South Wales,150.609028,-34.435139 +2020,10,15,1,New South Wales,150.89266,-33.991958 +2021,4,24,1,New South Wales,150.605684,-34.423461 +2021,10,,1,New South Wales,152.093798,-31.403015 +2023,1,23,1,New South Wales,152.956825,-28.624684 +2021,7,12,1,New South Wales,153.313972,-28.839543 +2021,2,26,1,New South Wales,150.655487,-33.522609 +2021,9,10,1,New South Wales,150.519061,-34.447409 +2021,5,7,1,New South Wales,150.52043,-34.435726 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2021,7,5,1,New South Wales,150.630719,-34.389871 +2023,6,2,1,New South Wales,150.790596,-34.188134 +2022,1,14,1,New South Wales,152.916798,-31.457462 +2021,6,30,1,New South Wales,153.103806,-29.48559 +2022,6,9,1,New South Wales,153.483264,-28.166129 +2021,5,30,1,New South Wales,150.639141,-34.491368 +2023,8,2,1,New South Wales,152.906069,-31.445847 +2020,12,3,1,New South Wales,153.104262,-29.479239 +2021,5,21,1,New South Wales,150.639144,-34.493198 +2021,5,9,1,New South Wales,150.616359,-34.436021 +2020,1,24,1,New South Wales,153.10416,-29.485221 +2021,4,27,1,New South Wales,150.520833,-34.466999 +2024,7,5,1,New South Wales,152.38516,-31.918272 +2021,8,9,1,New South Wales,153.110236,-29.491045 +2023,6,8,1,New South Wales,152.922607,-31.458564 +2022,3,16,1,New South Wales,152.916422,-31.450796 +2022,4,4,1,New South Wales,153.104106,-29.480705 +2021,5,6,1,New South Wales,152.927815,-31.464741 +2021,4,20,1,New South Wales,150.610185,-34.418961 +2021,5,6,1,New South Wales,150.609164,-34.420825 +2020,6,1,1,New South Wales,152.714104,-31.524851 +2022,9,16,1,New South Wales,153.101204,-29.489918 +2021,5,4,1,New South Wales,150.637378,-34.423754 +2022,9,8,1,New South Wales,152.797752,-31.120008 +2020,10,23,1,New South Wales,149.930096,-36.638123 +2024,2,29,1,New South Wales,152.926877,-31.459683 +2022,7,15,1,New South Wales,153.293263,-28.864646 +2020,10,12,1,New South Wales,149.930096,-36.638123 +2023,3,15,1,New South Wales,151.013656,-34.055279 +2022,6,14,1,New South Wales,151.06328,-33.341894 +2021,2,26,1,New South Wales,152.918145,-31.485113 +2021,5,13,1,New South Wales,150.637432,-34.423791 +2020,10,30,1,New South Wales,149.979238,-36.570187 +2021,7,10,1,New South Wales,152.41258,-31.932362 +2021,2,7,1,New South Wales,153.108167,-29.490208 +2022,1,30,1,New South Wales,153.103806,-29.48558 +2020,11,27,1,New South Wales,153.403053,-28.729278 +2021,8,4,1,New South Wales,150.602618,-34.426061 +2021,2,2,1,New South Wales,153.103806,-29.48558 +2021,4,30,1,New South Wales,150.808209,-34.098068 +2021,6,22,1,New South Wales,150.602488,-34.419928 +2020,10,8,1,New South Wales,153.431476,-28.889201 +2020,12,,1,New South Wales,151.316503,-33.344372 +2021,4,29,1,New South Wales,150.615803,-34.436443 +2020,3,2,1,New South Wales,152.22033,-31.79145 +2022,9,25,1,New South Wales,152.063366,-32.706463 +2024,2,10,1,New South Wales,153.093361,-29.486201 +2023,5,23,1,New South Wales,151.789503,-32.653544 +2020,5,18,1,New South Wales,153.09211,-29.488031 +2021,9,7,1,New South Wales,153.359559,-28.796653 +2020,10,21,1,New South Wales,152.775854,-30.200187 +2022,11,24,1,New South Wales,152.06487,-32.70167 +2023,7,20,1,New South Wales,150.785432,-33.703416 +2024,4,19,1,New South Wales,149.73938,-33.6859 +2021,6,13,1,New South Wales,153.395244,-28.960039 +2021,5,13,1,New South Wales,152.868319,-29.667247 +2021,7,27,1,New South Wales,150.630656,-34.420639 +2020,4,17,1,New South Wales,151.782466,-32.570605 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2020,11,15,1,New South Wales,152.12857,-30.106609 +2021,6,22,1,New South Wales,150.514176,-34.445904 +2021,5,18,1,New South Wales,150.516468,-34.450106 +2020,10,29,1,New South Wales,149.958935,-36.568735 +2020,11,16,1,New South Wales,150.001052,-36.513032 +2024,3,16,1,New South Wales,152.926608,-30.507724 +2021,7,2,1,New South Wales,150.627292,-34.390661 +2023,11,17,1,New South Wales,150.986725,-34.044634 +2021,5,14,1,New South Wales,150.629954,-34.395382 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2021,4,12,1,New South Wales,150.064067,-33.773598 +2020,1,6,1,New South Wales,153.104278,-29.480065 +2022,10,29,1,New South Wales,152.838719,-31.595037 +2020,11,3,1,New South Wales,149.958519,-36.587122 +2023,7,14,1,New South Wales,149.776514,-32.373929 +2024,8,20,1,New South Wales,152.413482,-31.933489 +2021,11,17,1,New South Wales,152.022955,-32.739427 +2021,6,16,1,New South Wales,150.5143,-34.446501 +2020,10,21,1,New South Wales,152.39209,-28.508652 +2021,6,20,1,New South Wales,150.603909,-34.439528 +2021,6,12,1,New South Wales,150.522082,-34.46597 +2023,8,5,1,New South Wales,152.786548,-31.634944 +2020,8,9,1,New South Wales,152.897863,-31.456211 +2022,4,17,1,New South Wales,152.114058,-32.764941 +2021,7,24,1,New South Wales,150.640916,-34.395423 +2021,2,5,1,New South Wales,153.189755,-29.425509 +2021,8,10,1,New South Wales,150.641103,-34.403099 +2023,12,3,1,New South Wales,150.991081,-34.020624 +2020,8,27,1,New South Wales,152.926295,-31.4583 +2022,3,15,1,New South Wales,153.103924,-29.489507 +2022,10,6,1,New South Wales,153.05409,-30.28033 +2021,6,6,1,New South Wales,150.630098,-34.420728 +2021,6,22,1,New South Wales,150.520282,-34.465753 +2022,7,18,1,New South Wales,152.853532,-31.553707 +2022,11,16,1,New South Wales,153.007472,-30.230104 +2021,8,15,1,New South Wales,151.277809,-29.980106 +2022,9,19,1,New South Wales,152.106248,-32.729413 +2021,7,5,1,New South Wales,150.524156,-34.466508 +2022,5,11,1,New South Wales,152.062537,-32.709575 +2021,4,15,1,New South Wales,150.532909,-34.475718 +2021,6,13,1,New South Wales,150.51598,-34.446734 +2021,2,26,1,New South Wales,150.615756,-34.43427 +2021,7,6,1,New South Wales,150.51445,-34.444755 +2021,9,17,1,New South Wales,153.394328,-28.275801 +2021,11,11,1,New South Wales,153.103495,-29.48883 +2021,5,25,1,New South Wales,150.639221,-34.392659 +2022,4,10,1,New South Wales,153.107836,-28.672293 +2021,5,31,1,New South Wales,150.638545,-34.491266 +2021,4,21,1,New South Wales,150.610289,-34.419134 +2023,11,19,1,New South Wales,150.78694,-33.706724 +2021,5,23,1,New South Wales,150.597659,-34.427866 +2021,5,27,1,New South Wales,150.599946,-34.425134 +2021,4,5,1,New South Wales,150.518071,-34.446695 +2021,6,2,1,New South Wales,150.531997,-34.463421 +2021,7,4,1,New South Wales,150.603022,-34.417603 +2021,6,15,1,New South Wales,150.612165,-34.431991 +2020,6,1,1,New South Wales,152.926385,-31.471982 +2022,1,7,1,New South Wales,151.475306,-31.48891 +2021,5,21,1,New South Wales,150.517162,-34.452032 +2022,8,8,1,New South Wales,152.875249,-31.450372 +2023,11,9,1,New South Wales,152.401054,-31.906647 +2021,4,24,1,New South Wales,150.625738,-34.395643 +2021,3,9,1,New South Wales,150.514736,-34.445762 +2022,10,27,1,New South Wales,151.122284,-33.114326 +2023,10,22,1,New South Wales,151.983415,-32.464227 +2022,7,27,1,New South Wales,152.817161,-31.131084 +2023,8,19,1,New South Wales,150.985326,-34.090695 +2023,2,7,1,New South Wales,152.923875,-29.732803 +2021,8,4,1,New South Wales,153.558289,-28.394194 +2020,12,28,1,New South Wales,152.709573,-31.787701 +2021,6,2,1,New South Wales,150.519581,-34.455236 +2021,8,11,1,New South Wales,150.632018,-34.418241 +2021,8,19,1,New South Wales,152.064574,-32.706704 +2021,5,6,1,New South Wales,150.516285,-34.447461 +2023,2,13,1,New South Wales,152.763216,-31.500782 +2021,11,12,1,New South Wales,153.449765,-28.92949 +2023,2,20,1,New South Wales,152.063384,-32.706016 +2021,3,5,1,New South Wales,150.609945,-34.43275 +2020,9,26,1,New South Wales,153.494976,-28.656932 +2021,4,20,1,New South Wales,150.606669,-34.434678 +2020,2,9,1,New South Wales,152.45426,-31.93643 +2021,4,18,1,New South Wales,150.627666,-34.386286 +2020,1,20,1,New South Wales,153.313553,-28.871982 +2022,10,,1,New South Wales,153.599218,-28.719867 +2021,4,30,1,New South Wales,150.610301,-34.419098 +2021,9,29,1,New South Wales,153.152137,-30.144069 +2021,6,6,1,New South Wales,150.519486,-34.456586 +2023,8,14,1,New South Wales,153.538393,-28.528678 +2023,8,11,1,New South Wales,152.832007,-31.631113 +2020,10,15,1,New South Wales,149.930096,-36.638123 +2021,7,24,1,New South Wales,150.630666,-34.420658 +2020,9,29,1,New South Wales,153.121592,-30.301315 +2023,8,3,1,New South Wales,152.208892,-31.56062 +2021,8,17,1,New South Wales,150.641297,-34.394637 +2021,5,3,1,New South Wales,150.603413,-34.427537 +2021,5,2,1,New South Wales,150.609644,-34.436431 +2021,6,12,1,New South Wales,150.612018,-34.432186 +2023,8,5,1,New South Wales,150.786957,-33.705748 +2022,12,15,1,New South Wales,150.921117,-33.967222 +2021,12,9,1,New South Wales,152.814505,-31.430757 +2021,11,22,1,New South Wales,152.899658,-29.631163 +2021,5,31,1,New South Wales,150.616009,-34.438007 +2020,11,14,1,New South Wales,150.004563,-36.508695 +2022,11,5,1,New South Wales,151.763999,-32.596543 +2021,4,12,1,New South Wales,153.13459,-28.52286 +2021,5,29,1,New South Wales,150.605617,-34.437254 +2021,4,21,1,New South Wales,150.636388,-34.485554 +2020,10,21,1,New South Wales,152.958719,-29.240543 +2022,8,29,1,New South Wales,151.4163,-30.636253 +2020,1,5,1,New South Wales,152.40417,-31.94582 +2021,11,15,1,New South Wales,153.101451,-29.489629 +2021,8,6,1,New South Wales,152.121313,-32.71906 +2023,8,11,1,New South Wales,153.037093,-30.895318 +2021,8,11,1,New South Wales,153.104058,-29.485277 +2021,5,22,1,New South Wales,150.529492,-34.471241 +2024,3,13,1,New South Wales,150.658791,-33.526907 +2021,6,10,1,New South Wales,150.630222,-34.420965 +2021,7,7,1,New South Wales,150.627488,-34.421489 +2021,3,9,1,New South Wales,150.604353,-34.438843 +2021,5,25,1,New South Wales,150.617814,-34.434977 +2023,1,20,1,New South Wales,152.926475,-31.451753 +2021,4,22,1,New South Wales,150.615071,-34.429262 +2020,9,10,1,New South Wales,153.092154,-29.488228 +2020,9,13,1,New South Wales,149.489237,-33.526989 +2020,11,18,1,New South Wales,152.817895,-31.264179 +2023,10,21,1,New South Wales,152.522986,-32.066605 +2021,5,29,1,New South Wales,150.526882,-34.469304 +2021,5,1,1,New South Wales,150.520315,-34.45398 +2021,5,2,1,New South Wales,150.637528,-34.488334 +2021,7,6,1,New South Wales,150.64221,-34.396999 +2023,9,17,1,New South Wales,153.109793,-29.490203 +2021,7,27,1,New South Wales,150.63071,-34.420658 +2020,2,23,1,New South Wales,152.892168,-31.438007 +2021,6,3,1,New South Wales,150.519534,-34.455343 +2021,10,5,1,New South Wales,152.926709,-31.445019 +2021,4,26,1,New South Wales,150.518248,-34.44879 +2023,11,22,1,New South Wales,152.900225,-31.470429 +2023,,,1,New South Wales,153.106672,-29.205067 +2021,6,25,1,New South Wales,150.645114,-34.391537 +2022,2,2,1,New South Wales,153.109363,-29.490581 +2021,1,13,1,New South Wales,152.064295,-32.708764 +2021,7,19,1,New South Wales,150.628005,-34.420507 +2022,1,9,1,New South Wales,152.930868,-29.726474 +2023,6,5,1,New South Wales,153.104423,-29.476885 +2023,1,15,1,New South Wales,149.466623,-33.583845 +2020,11,10,1,New South Wales,150.695548,-33.388037 +2021,5,1,1,New South Wales,150.663732,-34.458808 +2020,7,5,1,New South Wales,153.436507,-28.99284 +2021,10,17,1,New South Wales,152.867825,-29.667396 +2022,1,24,1,New South Wales,153.401309,-28.256241 +2022,12,18,1,New South Wales,151.734784,-30.443318 +2021,6,5,1,New South Wales,150.609221,-34.434503 +2022,8,24,1,New South Wales,153.101215,-29.489928 +2023,2,8,1,New South Wales,153.10431,-29.477786 +2021,7,2,1,New South Wales,150.627445,-34.390664 +2022,12,26,1,New South Wales,153.107395,-29.490124 +2023,12,22,1,New South Wales,153.108119,-29.490315 +2020,7,19,1,New South Wales,153.312419,-28.689831 +2020,5,25,1,New South Wales,152.799633,-29.168547 +2021,5,3,1,New South Wales,150.605158,-34.426237 +2021,1,4,1,New South Wales,153.433744,-28.573732 +2021,5,28,1,New South Wales,150.527176,-34.469319 +2020,8,8,1,New South Wales,152.922859,-31.466574 +2021,6,2,1,New South Wales,150.613857,-34.437135 +2020,12,31,1,New South Wales,153.092197,-29.488153 +2021,3,5,1,New South Wales,150.517866,-34.459114 +2021,7,6,1,New South Wales,150.522415,-34.465778 +2023,8,8,1,New South Wales,152.063529,-32.706158 +2023,12,5,1,New South Wales,150.784636,-33.715856 +2021,6,13,1,New South Wales,150.521464,-34.459268 +2023,2,16,1,New South Wales,150.648297,-33.545022 +2021,5,2,1,New South Wales,150.661908,-34.458259 +2021,3,5,1,New South Wales,150.608341,-34.432132 +2020,1,22,1,New South Wales,153.104058,-29.479748 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2023,6,2,1,New South Wales,153.364004,-28.833544 +2020,10,28,1,New South Wales,153.335481,-28.869015 +2021,10,27,1,New South Wales,152.39193,-31.812159 +2021,3,30,1,New South Wales,150.635375,-34.488653 +2020,11,18,1,New South Wales,152.818062,-31.264856 +2021,5,18,1,New South Wales,150.51649,-34.45008 +2020,1,2,1,New South Wales,152.910608,-31.459806 +2021,3,16,1,New South Wales,150.635284,-34.488011 +2021,6,16,1,New South Wales,150.630265,-34.420974 +2020,1,2,1,New South Wales,152.886828,-31.440355 +2021,8,9,1,New South Wales,150.513121,-34.445891 +2023,9,27,1,New South Wales,150.786618,-33.708388 +2023,11,2,1,New South Wales,152.40431,-31.925132 +2021,7,22,1,New South Wales,150.624604,-34.386119 +2021,4,25,1,New South Wales,150.635178,-34.420375 +2021,2,22,1,New South Wales,153.140473,-28.494266 +2021,11,19,1,New South Wales,153.103623,-29.485552 +2023,10,18,1,New South Wales,153.104841,-29.476717 +2021,9,22,1,New South Wales,152.923138,-31.462146 +2021,12,19,1,New South Wales,150.616008,-34.441081 +2021,1,19,1,New South Wales,153.103994,-29.485244 +2021,9,5,1,New South Wales,153.108172,-29.490199 +2020,5,19,1,New South Wales,153.093447,-29.488746 +2020,9,23,1,New South Wales,153.096628,-29.486248 +2023,9,21,1,New South Wales,153.049341,-30.912116 +2024,1,12,1,New South Wales,152.375108,-31.925624 +2022,1,29,1,New South Wales,150.616164,-34.437893 +2023,12,21,1,New South Wales,152.909937,-30.505342 +2020,9,25,1,New South Wales,153.09915,-29.490936 +2020,1,13,1,New South Wales,152.174613,-32.660899 +2021,10,15,1,New South Wales,153.564028,-28.387972 +2022,3,30,1,New South Wales,153.350925,-28.866397 +2021,10,,1,New South Wales,149.238855,-36.173957 +2023,3,14,1,New South Wales,152.762249,-30.015431 +2021,10,28,1,New South Wales,152.064462,-32.710356 +2021,7,1,1,New South Wales,150.627102,-34.390477 +2021,5,18,1,New South Wales,152.101735,-32.757248 +2021,5,4,1,New South Wales,150.603314,-34.427571 +2021,7,2,1,New South Wales,150.627992,-34.390918 +2021,4,20,1,New South Wales,150.638928,-34.418933 +2021,10,7,1,New South Wales,153.317262,-28.826294 +2021,3,6,1,New South Wales,150.603395,-34.436182 +2020,7,21,1,New South Wales,153.271853,-28.888732 +2022,5,25,1,New South Wales,150.833896,-34.084454 +2022,10,7,1,New South Wales,151.081623,-33.137746 +2023,2,27,1,New South Wales,153.388316,-28.556131 +2024,6,27,1,New South Wales,152.408078,-31.93345 +2021,5,23,1,New South Wales,150.630893,-34.420707 +2021,8,16,1,New South Wales,150.632031,-34.418169 +2021,8,16,1,New South Wales,153.098066,-29.488489 +2020,10,30,1,New South Wales,149.938213,-36.559404 +2021,7,20,1,New South Wales,150.516368,-34.448346 +2021,6,10,1,New South Wales,150.610378,-34.430549 +2021,7,1,1,New South Wales,150.51312,-34.447775 +2021,8,15,1,New South Wales,150.513278,-34.446111 +2020,11,26,1,New South Wales,150.845029,-29.834537 +2023,11,9,1,New South Wales,150.990993,-34.088588 +2020,1,9,1,New South Wales,153.040682,-28.459169 +2023,10,20,1,New South Wales,153.103876,-29.489587 +2022,6,18,1,New South Wales,153.403393,-28.259623 +2021,4,16,1,New South Wales,150.640245,-34.415821 +2021,6,21,1,New South Wales,150.639454,-34.392861 +2023,12,10,1,New South Wales,152.145044,-32.010099 +2020,9,9,1,New South Wales,149.99504,-31.13066 +2022,1,15,1,New South Wales,150.618841,-34.43982 +2020,11,15,1,New South Wales,152.868748,-29.667396 +2021,3,20,1,New South Wales,150.610042,-34.430128 +2020,5,,1,New South Wales,152.027864,-32.305059 +2021,5,13,1,New South Wales,150.523634,-34.464288 +2021,11,17,1,New South Wales,150.789337,-34.209417 +2020,1,16,1,New South Wales,151.769827,-32.593434 +2022,1,12,1,New South Wales,152.53008,-32.331354 +2021,5,6,1,New South Wales,150.605576,-34.43792 +2023,10,27,1,New South Wales,152.190362,-32.237057 +2021,9,4,1,New South Wales,153.103779,-29.48552 +2021,10,5,1,New South Wales,153.39044,-28.838189 +2021,4,26,1,New South Wales,150.615856,-34.436102 +2021,1,2,1,New South Wales,153.104031,-29.485342 +2023,9,1,1,New South Wales,153.506898,-28.804702 +2021,6,7,1,New South Wales,150.526063,-34.464617 +2020,10,19,1,New South Wales,149.931009,-36.595007 +2021,4,15,1,New South Wales,151.739822,-30.477672 +2020,10,17,1,New South Wales,149.931009,-36.595007 +2021,5,1,1,New South Wales,150.624177,-34.388923 +2023,11,13,1,New South Wales,150.899564,-33.984341 +2022,3,18,1,New South Wales,153.110527,-29.490194 +2021,9,12,1,New South Wales,150.513052,-34.446034 +2023,9,7,1,New South Wales,152.894402,-31.430362 +2020,12,4,1,New South Wales,152.904181,-31.439629 +2021,5,15,1,New South Wales,150.523863,-34.463527 +2021,5,2,1,New South Wales,150.611406,-34.419643 +2021,8,7,1,New South Wales,150.644257,-34.398075 +2020,10,20,1,New South Wales,150.859517,-34.072866 +2021,8,29,1,New South Wales,152.383672,-31.92367 +2021,9,28,1,New South Wales,150.582601,-34.500217 +2021,2,28,1,New South Wales,150.520681,-34.468087 +2023,4,4,1,New South Wales,152.031333,-32.132223 +2022,8,11,1,New South Wales,150.522169,-34.461987 +2021,11,20,1,New South Wales,152.387072,-28.907274 +2022,10,22,1,New South Wales,153.110939,-29.490648 +2023,12,29,1,New South Wales,150.825419,-34.150037 +2020,2,22,1,New South Wales,153.537089,-28.620414 +2021,9,2,1,New South Wales,152.540319,-32.060198 +2022,6,24,1,New South Wales,153.104037,-29.484357 +2020,10,20,1,New South Wales,149.947316,-36.607854 +2021,6,16,1,New South Wales,150.514096,-34.446407 +2021,4,3,1,New South Wales,150.51952,-34.447716 +2022,5,25,1,New South Wales,153.42816,-28.626811 +2022,1,3,1,New South Wales,153.475172,-28.684864 +2023,2,9,1,New South Wales,153.109379,-29.490502 +2020,10,29,1,New South Wales,149.999247,-36.565645 +2021,5,8,1,New South Wales,150.621801,-34.397947 +2021,6,12,1,New South Wales,152.171867,-32.664102 +2021,1,14,1,New South Wales,153.322317,-28.824589 +2022,10,10,1,New South Wales,153.303123,-28.848003 +2021,4,22,1,New South Wales,150.616969,-34.433689 +2021,7,18,1,New South Wales,150.834991,-34.069577 +2022,4,18,1,New South Wales,153.110222,-29.49025 +2021,5,4,1,New South Wales,150.520613,-34.436523 +2023,8,25,1,New South Wales,150.785145,-33.717059 +2021,7,25,1,New South Wales,150.641265,-34.395015 +2022,12,13,1,New South Wales,153.101451,-28.579904 +2023,11,2,1,New South Wales,152.192632,-32.228945 +2021,5,18,1,New South Wales,150.516481,-34.450043 +2021,10,10,1,New South Wales,153.402563,-28.960608 +2022,4,24,1,New South Wales,153.599218,-28.719867 +2020,12,7,1,New South Wales,153.388725,-28.86626 +2020,11,17,1,New South Wales,150.666101,-33.536353 +2021,5,2,1,New South Wales,150.605092,-34.426281 +2022,5,,1,New South Wales,153.599218,-28.719867 +2020,2,14,1,New South Wales,153.298465,-28.888411 +2020,12,3,1,New South Wales,152.056771,-32.736788 +2023,3,22,1,New South Wales,151.643177,-31.577395 +2022,5,5,1,New South Wales,153.110554,-29.489792 +2021,9,15,1,New South Wales,150.523877,-34.512751 +2021,3,31,1,New South Wales,150.520978,-34.454372 +2020,6,15,1,New South Wales,153.384531,-29.104379 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2022,10,5,1,New South Wales,153.448368,-28.25335 +2021,6,9,1,New South Wales,150.521633,-34.46569 +2020,12,7,1,New South Wales,152.703898,-31.71347 +2021,7,9,1,New South Wales,150.627422,-34.421487 +2021,6,13,1,New South Wales,150.625272,-34.384419 +2020,9,7,1,New South Wales,150.406039,-31.386864 +2020,1,8,1,New South Wales,150.61712,-33.51735 +2022,2,11,1,New South Wales,153.324332,-28.87971 +2021,10,19,1,New South Wales,152.913171,-31.443366 +2023,12,1,1,New South Wales,153.108151,-29.490259 +2020,10,12,1,New South Wales,152.954709,-31.240985 +2020,1,9,1,New South Wales,152.910567,-31.442553 +2021,5,29,1,New South Wales,150.642766,-34.39462 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2024,4,24,1,New South Wales,152.920812,-31.447702 +2024,3,13,1,New South Wales,152.86094,-31.428682 +2021,1,25,1,New South Wales,152.623847,-31.558983 +2023,5,1,1,New South Wales,150.787102,-33.706337 +2021,7,20,1,New South Wales,150.630665,-34.420703 +2021,4,20,1,New South Wales,150.610261,-34.418971 +2024,1,24,1,New South Wales,153.008997,-30.422742 +2023,11,20,1,New South Wales,153.075532,-30.354912 +2022,12,5,1,New South Wales,152.785298,-31.632051 +2021,6,21,1,New South Wales,150.520292,-34.465789 +2021,2,5,1,New South Wales,152.919469,-31.44294 +2021,6,26,1,New South Wales,152.804593,-31.604082 +2021,4,22,1,New South Wales,150.637008,-34.485566 +2023,8,29,1,New South Wales,151.751426,-32.402945 +2023,8,20,1,New South Wales,150.785351,-33.716985 +2021,10,30,1,New South Wales,150.616377,-34.43805 +2021,10,31,1,New South Wales,152.401392,-31.952115 +2023,8,26,1,New South Wales,152.540666,-32.060168 +2021,9,25,1,New South Wales,152.070612,-32.712686 +2023,9,20,1,New South Wales,152.885496,-31.439806 +2021,6,13,1,New South Wales,150.643612,-34.395854 +2020,12,8,1,New South Wales,153.31783,-28.915073 +2023,6,7,1,New South Wales,150.885513,-34.058521 +2022,2,26,1,New South Wales,152.063527,-32.706456 +2021,7,28,1,New South Wales,151.642358,-32.657896 +2021,6,5,1,New South Wales,150.630629,-34.42081 +2021,3,31,1,New South Wales,150.515396,-34.446992 +2021,5,11,1,New South Wales,150.519504,-34.435383 +2020,1,14,1,New South Wales,152.963413,-31.271709 +2020,10,14,1,New South Wales,152.212034,-30.093753 +2021,6,2,1,New South Wales,150.518688,-34.447537 +2021,4,23,1,New South Wales,150.605651,-34.423452 +2021,10,16,1,New South Wales,152.943361,-29.740625 +2021,9,18,1,New South Wales,150.523748,-34.449389 +2023,2,11,1,New South Wales,153.109819,-29.490184 +2021,8,13,1,New South Wales,152.949001,-30.637202 +2020,11,16,1,New South Wales,153.317852,-28.929063 +2020,1,20,1,New South Wales,153.319327,-28.822876 +2021,8,4,1,New South Wales,150.602696,-34.426378 +2021,5,29,1,New South Wales,150.516096,-34.448701 +2020,12,3,1,New South Wales,152.813636,-31.633635 +2021,4,21,1,New South Wales,150.614853,-34.429645 +2021,4,26,1,New South Wales,150.624425,-34.388216 +2024,1,15,1,New South Wales,152.925839,-31.452478 +2021,12,10,1,New South Wales,153.521123,-28.72186 +2020,10,30,1,New South Wales,152.624549,-30.523449 +2022,10,29,1,New South Wales,153.510347,-28.650448 +2023,5,28,1,New South Wales,152.770962,-31.211353 +2022,3,15,1,New South Wales,150.99348,-34.049268 +2021,10,22,1,New South Wales,152.107655,-31.419488 +2021,4,21,1,New South Wales,150.61026,-34.418998 +2021,6,9,1,New South Wales,150.604182,-34.437956 +2022,9,27,1,New South Wales,149.415444,-36.24865 +2020,5,15,1,New South Wales,149.307163,-36.108916 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2021,6,5,1,New South Wales,153.360581,-28.889576 +2021,6,3,1,New South Wales,150.637105,-34.48829 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2020,12,9,1,New South Wales,153.300206,-28.886464 +2023,8,24,1,New South Wales,152.888668,-30.451825 +2024,9,4,1,New South Wales,150.008091,-34.798494 +2021,6,22,1,New South Wales,150.624481,-34.385467 +2023,5,22,1,New South Wales,153.302047,-28.847893 +2023,2,15,1,New South Wales,152.396884,-31.902418 +2023,7,11,1,New South Wales,150.738141,-34.305637 +2020,11,3,1,New South Wales,153.335449,-28.872021 +2021,7,6,1,New South Wales,150.627409,-34.421577 +2023,1,20,1,New South Wales,152.814232,-31.432922 +2021,6,29,1,New South Wales,150.596082,-34.411517 +2021,9,21,1,New South Wales,152.933658,-29.681698 +2023,6,2,1,New South Wales,150.882558,-34.019176 +2021,3,2,1,New South Wales,150.615861,-34.434785 +2023,8,11,1,New South Wales,151.032037,-29.749057 +2021,1,4,1,New South Wales,152.415811,-31.933496 +2021,4,24,1,New South Wales,150.517276,-34.451863 +2021,5,3,1,New South Wales,150.621158,-34.398746 +2021,9,10,1,New South Wales,149.350972,-36.153826 +2021,4,2,1,New South Wales,152.404167,-31.945815 +2021,5,1,1,New South Wales,150.610357,-34.420208 +2021,11,16,1,New South Wales,152.825231,-29.810822 +2021,4,27,1,New South Wales,150.601411,-34.426786 +2022,7,25,1,New South Wales,152.894573,-31.445696 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2021,5,3,1,New South Wales,150.51939,-34.437031 +2022,11,28,1,New South Wales,153.091189,-28.598293 +2023,8,14,1,New South Wales,152.92553,-31.4693 +2020,11,2,1,New South Wales,149.998977,-36.551144 +2021,5,2,1,New South Wales,150.604899,-34.426926 +2021,6,22,1,New South Wales,150.602796,-34.41905 +2020,8,28,1,New South Wales,152.26304,-29.61859 +2021,10,31,1,New South Wales,153.314983,-28.949201 +2022,9,7,1,New South Wales,153.561462,-28.385534 +2022,7,21,1,New South Wales,152.914138,-31.476156 +2023,9,9,1,New South Wales,153.302198,-28.819847 +2023,11,6,1,New South Wales,152.919152,-31.474328 +2020,10,19,1,New South Wales,149.901576,-36.585256 +2023,1,31,1,New South Wales,153.314983,-28.949201 +2021,11,12,1,New South Wales,153.293095,-28.864561 +2021,8,21,1,New South Wales,153.406132,-28.977706 +2022,8,31,1,New South Wales,150.874203,-34.016726 +2021,5,3,1,New South Wales,150.615114,-34.435393 +2021,8,7,1,New South Wales,153.557511,-28.394642 +2021,5,9,1,New South Wales,153.401564,-28.260221 +2022,2,26,1,New South Wales,152.063539,-32.706445 +2021,5,3,1,New South Wales,150.615148,-34.435376 +2021,3,17,1,New South Wales,150.609758,-34.430546 +2021,1,20,1,New South Wales,152.15365,-32.73161 +2021,5,17,1,New South Wales,150.514497,-34.443909 +2021,6,11,1,New South Wales,150.610722,-34.430673 +2024,5,9,1,New South Wales,152.9091,-31.4402 +2023,4,15,1,New South Wales,153.167264,-28.873877 +2021,6,11,1,New South Wales,152.405625,-31.930397 +2021,8,15,1,New South Wales,153.109428,-29.490488 +2020,11,22,1,New South Wales,152.900123,-31.474111 +2023,10,27,1,New South Wales,150.785256,-33.716942 +2021,8,10,1,New South Wales,152.757834,-31.628735 +2021,5,4,1,New South Wales,152.063956,-32.706625 +2022,1,18,1,New South Wales,153.179945,-28.576441 +2023,6,2,1,New South Wales,150.808365,-34.219903 +2023,7,27,1,New South Wales,152.074059,-32.743793 +2021,8,17,1,New South Wales,153.110232,-29.488387 +2021,2,7,1,New South Wales,150.808238,-34.098107 +2021,8,8,1,New South Wales,150.605786,-34.426348 +2023,12,6,1,New South Wales,150.783941,-33.718259 +2023,8,15,1,New South Wales,153.104122,-29.478809 +2020,8,28,1,New South Wales,151.719347,-32.640221 +2024,2,22,1,New South Wales,151.707977,-32.662271 +2021,3,10,1,New South Wales,150.60908,-34.418804 +2022,11,18,1,New South Wales,153.309351,-28.823238 +2024,2,25,1,New South Wales,152.971583,-31.192702 +2023,8,30,1,New South Wales,150.786184,-33.706819 +2023,12,7,1,New South Wales,152.870774,-31.464317 +2021,6,24,1,New South Wales,150.625121,-34.386688 +2023,11,1,1,New South Wales,152.189573,-32.226267 +2021,8,29,1,New South Wales,152.060523,-32.710024 +2021,4,24,1,New South Wales,150.630556,-34.388695 +2021,6,14,1,New South Wales,150.52051,-34.465785 +2020,10,14,1,New South Wales,149.947316,-36.607854 +2021,11,3,1,New South Wales,152.824237,-29.810775 +2020,11,23,1,New South Wales,153.314609,-28.846843 +2024,6,18,1,New South Wales,152.916547,-31.445007 +2024,6,5,1,New South Wales,152.919393,-31.445729 +2020,3,26,1,New South Wales,153.102411,-29.488116 +2024,2,25,1,New South Wales,150.785112,-33.709567 +2023,10,28,1,New South Wales,150.984626,-34.095742 +2020,1,30,1,New South Wales,152.927627,-31.44683 +2021,7,21,1,New South Wales,153.285595,-28.659545 +2022,11,11,1,New South Wales,153.521809,-28.685947 +2021,5,14,1,New South Wales,150.600755,-34.428026 +2020,9,15,1,New South Wales,151.80501,-32.59644 +2022,4,11,1,New South Wales,152.081326,-32.776327 +2022,8,30,1,New South Wales,149.316332,-36.297746 +2020,10,30,1,New South Wales,149.999247,-36.565645 +2021,4,18,1,New South Wales,150.659334,-34.457272 +2021,10,,1,New South Wales,149.258827,-36.209173 +2021,5,28,1,New South Wales,150.639098,-34.491376 +2021,3,15,1,New South Wales,150.519948,-34.446499 +2021,5,16,1,New South Wales,150.614287,-34.433871 +2022,6,11,1,New South Wales,152.82607,-31.27226 +2020,10,13,1,New South Wales,149.947316,-36.607854 +2021,6,19,1,New South Wales,150.520306,-34.46569 +2021,11,29,1,New South Wales,153.302488,-28.848137 +2023,6,29,1,New South Wales,152.78529,-31.632279 +2021,7,17,1,New South Wales,150.62785,-34.421 +2023,6,17,1,New South Wales,150.790457,-34.141996 +2021,7,14,1,New South Wales,150.643005,-34.395382 +2021,6,23,1,New South Wales,153.501758,-28.236784 +2021,6,1,1,New South Wales,150.62901,-34.390297 +2021,5,31,1,New South Wales,150.523869,-34.464068 +2020,4,27,1,New South Wales,152.35899,-31.92441 +2021,5,5,1,New South Wales,150.522735,-34.459357 +2020,5,28,1,New South Wales,152.31217,-28.74465 +2021,8,5,1,New South Wales,153.60155,-28.68121 +2021,7,9,1,New South Wales,150.631485,-34.387776 +2023,5,7,1,New South Wales,152.8742,-31.459073 +2021,5,20,1,New South Wales,150.608,-34.433802 +2024,9,22,1,New South Wales,149.537372,-33.624442 +2021,3,14,1,New South Wales,150.532643,-34.478075 +2024,8,21,1,New South Wales,152.022263,-32.30351 +2021,8,9,1,New South Wales,150.900075,-34.001426 +2024,1,7,1,New South Wales,150.787368,-33.703721 +2020,10,18,1,New South Wales,149.921178,-36.633581 +2021,4,30,1,New South Wales,150.624188,-34.388924 +2021,4,27,1,New South Wales,150.602009,-34.42567 +2023,8,1,1,New South Wales,150.7868,-33.703819 +2022,8,31,1,New South Wales,153.314983,-28.949201 +2020,10,13,1,New South Wales,149.930096,-36.638123 +2021,5,10,1,New South Wales,150.605102,-34.427056 +2021,7,17,1,New South Wales,150.604308,-34.436227 +2021,9,30,1,New South Wales,153.314983,-28.949201 +2021,5,8,1,New South Wales,150.521332,-34.435763 +2021,5,26,1,New South Wales,150.517274,-34.454477 +2023,4,5,1,New South Wales,152.928854,-31.455393 +2021,7,8,1,New South Wales,150.641033,-34.395137 +2023,8,13,1,New South Wales,153.300789,-28.995147 +2021,5,14,1,New South Wales,150.637453,-34.4238 +2021,6,11,1,New South Wales,150.604292,-34.439067 +2020,1,5,1,New South Wales,153.104315,-29.480033 +2023,2,25,1,New South Wales,153.289504,-28.67706 +2021,6,8,1,New South Wales,152.904626,-31.439381 +2023,3,5,1,New South Wales,153.431324,-29.016415 +2020,4,7,1,New South Wales,153.282194,-29.3555 +2023,2,17,1,New South Wales,150.790444,-34.143248 +2020,10,21,1,New South Wales,153.328184,-28.831105 +2020,4,12,1,New South Wales,153.319132,-28.682751 +2020,10,8,1,New South Wales,152.698113,-31.364619 +2024,1,20,1,New South Wales,152.92517,-31.454193 +2020,9,8,1,New South Wales,153.091575,-29.487826 +2023,3,28,1,New South Wales,152.92594,-31.44677 +2020,3,11,1,New South Wales,153.311715,-28.466721 +2021,1,15,1,New South Wales,152.039572,-32.737423 +2022,4,27,1,New South Wales,151.244302,-33.185047 +2021,2,22,1,New South Wales,153.563995,-28.387986 +2024,1,7,1,New South Wales,152.413602,-31.944661 +2022,10,6,1,New South Wales,152.950102,-30.433774 +2023,12,21,1,New South Wales,153.071644,-30.885799 +2021,5,11,1,New South Wales,150.606795,-34.438683 +2021,5,5,1,New South Wales,150.520778,-34.436094 +2021,4,16,1,New South Wales,150.530029,-34.459667 +2022,11,14,1,New South Wales,152.085122,-32.771054 +2020,2,6,1,New South Wales,150.84097,-34.06006 +2022,12,2,1,New South Wales,153.277404,-28.938919 +2021,4,9,1,New South Wales,150.63379,-34.489254 +2021,6,9,1,New South Wales,152.15231,-31.456465 +2021,6,4,1,New South Wales,150.535033,-34.45938 +2023,10,29,1,New South Wales,150.818755,-29.665613 +2020,10,30,1,New South Wales,149.96897,-36.58553 +2021,8,28,1,New South Wales,153.322192,-28.816036 +2021,8,5,1,New South Wales,153.60155,-28.68121 +2020,5,4,1,New South Wales,152.929663,-31.458456 +2021,4,24,1,New South Wales,150.60651,-34.434918 +2023,9,15,1,New South Wales,150.7947,-34.19079 +2021,7,7,1,New South Wales,150.52161,-34.465374 +2020,11,,1,New South Wales,152.741355,-30.886861 +2023,4,21,1,New South Wales,153.103377,-29.48982 +2021,11,29,1,New South Wales,150.82287,-34.150124 +2021,6,29,1,New South Wales,150.596189,-34.411582 +2023,9,6,1,New South Wales,151.800149,-32.70424 +2021,3,9,1,New South Wales,150.523464,-34.451619 +2020,,,1,New South Wales,152.289282,-29.636094 +2022,6,9,1,New South Wales,150.822863,-34.127969 +2021,6,13,1,New South Wales,150.521257,-34.459282 +2021,10,31,1,New South Wales,146.546745,-34.746556 +2021,6,24,1,New South Wales,150.627274,-34.421358 +2021,9,11,1,New South Wales,150.530532,-34.468836 +2021,6,12,1,New South Wales,150.644023,-34.396321 +2023,3,22,1,New South Wales,152.063229,-32.70614 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2022,2,16,1,New South Wales,152.851464,-29.692524 +2022,9,21,1,New South Wales,150.953894,-33.958092 +2021,5,3,1,New South Wales,150.520732,-34.436535 +2023,9,21,1,New South Wales,153.393562,-28.664511 +2021,7,16,1,New South Wales,150.656788,-34.45451 +2022,9,11,1,New South Wales,153.019226,-28.541643 +2021,5,24,1,New South Wales,150.63924,-34.392767 +2023,1,5,1,New South Wales,152.897962,-31.435983 +2021,10,1,1,New South Wales,153.451085,-28.9288 +2021,9,27,1,New South Wales,153.406132,-28.977706 +2024,2,5,1,New South Wales,150.784754,-33.713287 +2021,6,16,1,New South Wales,150.617056,-34.433709 +2021,6,19,1,New South Wales,150.603912,-34.438645 +2021,6,24,1,New South Wales,150.512851,-34.470055 +2020,12,28,1,New South Wales,146.56544,-34.754683 +2022,10,29,1,New South Wales,151.647491,-30.502198 +2020,8,27,1,New South Wales,151.665507,-32.662006 +2023,2,4,1,New South Wales,151.03695,-34.038934 +2021,8,22,1,New South Wales,153.561649,-28.393472 +2024,7,16,1,New South Wales,153.411978,-28.955515 +2020,5,17,1,New South Wales,150.100826,-33.778308 +2023,11,8,1,New South Wales,153.62919,-28.639399 +2023,10,6,1,New South Wales,152.78536,-31.634038 +2021,5,8,1,New South Wales,150.63731,-34.42387 +2022,8,20,1,New South Wales,152.921277,-31.456387 +2021,12,31,1,New South Wales,153.314983,-28.949201 +2021,7,12,1,New South Wales,150.597336,-34.409901 +2021,4,30,1,New South Wales,150.617341,-34.399879 +2023,10,28,1,New South Wales,150.812014,-34.119816 +2023,6,17,1,New South Wales,153.104766,-29.489671 +2022,11,30,1,New South Wales,153.314983,-28.949201 +2021,11,16,1,New South Wales,152.824621,-29.81046 +2021,4,21,1,New South Wales,150.614853,-34.429645 +2021,3,3,1,New South Wales,150.807228,-34.068105 +2021,6,9,1,New South Wales,150.610379,-34.430495 +2021,6,11,1,New South Wales,150.611668,-34.43071 +2021,8,3,1,New South Wales,153.110892,-29.488354 +2021,6,19,1,New South Wales,150.619141,-34.436905 +2020,10,13,1,New South Wales,149.930096,-36.638123 +2021,9,18,1,New South Wales,153.393266,-28.273234 +2020,8,14,1,New South Wales,153.462981,-28.650733 +2020,12,4,1,New South Wales,152.534078,-30.630821 +2020,10,19,1,New South Wales,149.930096,-36.638123 +2021,7,7,1,New South Wales,150.599757,-34.418035 +2021,6,20,1,New South Wales,150.518772,-34.459754 +2020,8,7,1,New South Wales,150.913678,-34.068368 +2022,8,8,1,New South Wales,152.244418,-30.05116 +2021,6,1,1,New South Wales,150.523837,-34.463698 +2023,11,12,1,New South Wales,150.997768,-34.082098 +2022,9,9,1,New South Wales,152.911609,-31.458122 +2021,7,17,1,New South Wales,150.627959,-34.420975 +2020,4,9,1,New South Wales,152.665416,-30.064683 +2022,9,13,1,New South Wales,153.591395,-28.735249 +2021,6,12,1,New South Wales,150.518559,-34.444523 +2020,9,24,1,New South Wales,152.89832,-31.444108 +2021,12,11,1,New South Wales,153.101102,-29.490138 +2023,10,5,1,New South Wales,150.702658,-33.463326 +2022,12,7,1,New South Wales,152.920854,-31.468327 +2021,5,26,1,New South Wales,150.516481,-34.450025 +2022,11,20,1,New South Wales,152.777767,-30.902372 +2022,10,31,1,New South Wales,153.16206,-28.559994 +2020,6,17,1,New South Wales,150.04043,-33.782309 +2021,3,23,1,New South Wales,150.607942,-34.422108 +2021,9,22,1,New South Wales,152.827291,-31.249503 +2023,10,5,1,New South Wales,152.877095,-31.436169 +2021,3,27,1,New South Wales,152.789482,-31.638567 +2020,11,2,1,New South Wales,149.934245,-36.578531 +2021,5,10,1,New South Wales,150.62486,-34.399764 +2021,9,3,1,New South Wales,152.06845,-32.71973 +2021,8,12,1,New South Wales,150.645126,-34.39811 +2020,5,4,1,New South Wales,153.093625,-29.49284 +2024,1,8,1,New South Wales,152.927125,-31.45489 +2020,9,8,1,New South Wales,150.00003,-31.13163 +2021,1,28,1,New South Wales,153.103623,-29.488475 +2021,1,30,1,New South Wales,151.739718,-30.477694 +2021,6,19,1,New South Wales,150.622454,-34.384481 +2020,9,30,1,New South Wales,152.722139,-31.347215 +2021,8,10,1,New South Wales,153.343546,-28.833178 +2021,7,26,1,New South Wales,150.600783,-34.421734 +2022,9,27,1,New South Wales,151.816625,-32.851787 +2021,9,9,1,New South Wales,152.220622,-31.626749 +2020,10,7,1,New South Wales,152.824001,-29.677004 +2021,5,4,1,New South Wales,150.525238,-34.459363 +2021,2,21,1,New South Wales,152.083495,-32.730759 +2021,4,2,1,New South Wales,150.51958,-34.447167 +2020,11,16,1,New South Wales,150.004563,-36.508695 +2020,11,4,1,New South Wales,151.882004,-30.044041 +2023,9,6,1,New South Wales,151.660813,-32.66045 +2024,1,7,1,New South Wales,152.008903,-32.729118 +2020,1,16,1,New South Wales,153.557739,-28.397239 +2023,8,2,1,New South Wales,152.028806,-32.192157 +2021,8,13,1,New South Wales,150.78847,-34.187852 +2023,9,3,1,New South Wales,152.978134,-30.419039 +2023,6,17,1,New South Wales,153.2288,-28.888808 +2020,10,29,1,New South Wales,149.999247,-36.565645 +2023,8,1,1,New South Wales,152.985282,-29.539978 +2021,5,31,1,New South Wales,150.639692,-34.400268 +2021,3,30,1,New South Wales,152.907744,-31.451415 +2023,1,25,1,New South Wales,152.513623,-32.446719 +2020,5,17,1,New South Wales,150.818648,-34.108102 +2022,4,25,1,New South Wales,150.98722,-34.029501 +2021,6,22,1,New South Wales,150.628025,-34.42094 +2021,5,24,1,New South Wales,150.52322,-34.465407 +2024,1,2,1,New South Wales,153.110238,-29.490292 +2021,5,14,1,New South Wales,150.629623,-34.38939 +2021,5,11,1,New South Wales,150.624805,-34.399781 +2024,4,22,1,New South Wales,150.471305,-34.491512 +2020,11,16,1,New South Wales,153.316981,-28.949626 +2022,9,19,1,New South Wales,150.953773,-33.958243 +2021,11,17,1,New South Wales,152.152509,-32.722949 +2021,5,29,1,New South Wales,150.526845,-34.469438 +2021,6,18,1,New South Wales,150.618649,-34.435832 +2020,5,18,1,New South Wales,152.145408,-31.424874 +2023,4,21,1,New South Wales,153.337649,-28.264271 +2024,4,13,1,New South Wales,150.834904,-34.069441 +2024,7,16,1,New South Wales,152.077211,-32.722459 +2023,12,9,1,New South Wales,150.786509,-33.705817 +2023,8,30,1,New South Wales,152.786709,-31.629385 +2021,4,1,1,New South Wales,150.607556,-34.421911 +2023,8,10,1,New South Wales,152.913143,-31.451413 +2023,9,25,1,New South Wales,153.323402,-28.855565 +2021,3,24,1,New South Wales,150.607653,-34.422319 +2023,8,21,1,New South Wales,153.111009,-29.487764 +2021,3,24,1,New South Wales,150.607653,-34.422319 +2020,10,5,1,New South Wales,153.446727,-28.640965 +2023,8,28,1,New South Wales,151.234064,-33.11816 +2022,2,12,1,New South Wales,153.557526,-28.396851 +2021,8,19,1,New South Wales,153.092149,-29.488233 +2021,1,5,1,New South Wales,153.104155,-29.478515 +2021,5,8,1,New South Wales,150.63919,-34.491585 +2020,2,25,1,New South Wales,153.517391,-28.690489 +2021,5,1,1,New South Wales,150.607809,-34.455391 +2021,8,18,1,New South Wales,152.761003,-28.529721 +2023,9,3,1,New South Wales,152.897372,-31.475247 +2020,11,21,1,New South Wales,150.80827,-34.098133 +2022,6,5,1,New South Wales,153.301293,-28.685102 +2020,8,19,1,New South Wales,153.271325,-28.812352 +2020,4,14,1,New South Wales,150.085772,-33.772436 +2021,3,26,1,New South Wales,150.61069,-34.429897 +2022,9,10,1,New South Wales,150.790731,-34.185044 +2021,5,20,1,New South Wales,150.630093,-34.395088 +2024,3,7,1,New South Wales,150.785593,-33.713445 +2020,8,18,1,New South Wales,153.104106,-29.480061 +2023,1,31,1,New South Wales,152.063436,-32.70619 +2021,5,21,1,New South Wales,150.63322,-34.418435 +2020,10,29,1,New South Wales,149.955017,-36.576791 +2021,1,31,1,New South Wales,150.837567,-34.063743 +2023,4,22,1,New South Wales,150.787079,-33.707875 +2021,3,19,1,New South Wales,150.603803,-34.4394 +2021,5,15,1,New South Wales,150.520293,-34.453979 +2021,8,3,1,New South Wales,153.110012,-29.488335 +2021,6,23,1,New South Wales,150.625583,-34.38648 +2021,5,23,1,New South Wales,150.616435,-34.434472 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2020,12,11,1,New South Wales,149.960499,-36.288011 +2022,6,28,1,New South Wales,152.943779,-30.390621 +2022,12,1,1,New South Wales,150.838652,-34.063862 +2021,5,27,1,New South Wales,150.838698,-34.053453 +2023,8,3,1,New South Wales,152.916487,-31.468171 +2021,5,26,1,New South Wales,150.630786,-34.420642 +2024,6,13,1,New South Wales,152.883338,-31.428835 +2021,4,4,1,New South Wales,150.520036,-34.446834 +2020,11,19,1,New South Wales,153.555983,-28.398753 +2021,7,14,1,New South Wales,150.627255,-34.385828 +2020,10,13,1,New South Wales,149.930096,-36.638123 +2023,8,7,1,New South Wales,150.787334,-33.707015 +2023,5,10,1,New South Wales,152.008499,-32.727574 +2022,8,8,1,New South Wales,150.862399,-34.061874 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2024,1,23,1,New South Wales,152.786869,-31.629384 +2022,10,5,1,New South Wales,152.396884,-31.902418 +2023,7,8,1,New South Wales,151.01938,-32.99363 +2023,10,13,1,New South Wales,150.786194,-33.706012 +2022,4,28,1,New South Wales,151.242113,-33.188733 +2021,10,30,1,New South Wales,153.04155,-30.44822 +2022,11,25,1,New South Wales,152.770676,-30.853416 +2021,11,27,1,New South Wales,150.060932,-36.115541 +2024,2,29,1,New South Wales,150.78508,-33.714824 +2021,6,7,1,New South Wales,150.642029,-34.396842 +2021,7,26,1,New South Wales,150.641268,-34.393726 +2020,1,21,1,New South Wales,152.867775,-31.474363 +2021,6,30,1,New South Wales,150.513137,-34.44719 +2021,4,20,1,New South Wales,150.517872,-34.445321 +2021,5,25,1,New South Wales,150.619807,-34.439136 +2021,12,11,1,New South Wales,150.845877,-34.067124 +2020,8,,1,New South Wales,153.599218,-28.719867 +2021,10,23,1,New South Wales,152.083764,-32.735823 +2021,5,3,1,New South Wales,150.606984,-34.45532 +2021,2,16,1,New South Wales,152.926786,-31.45476 +2020,11,22,1,New South Wales,153.277427,-28.819703 +2024,9,28,2,New South Wales,146.561789,-34.761723 +2020,1,13,1,New South Wales,151.99786,-32.35728 +2021,5,16,1,New South Wales,150.524047,-34.463197 +2021,6,1,1,New South Wales,150.616084,-34.437666 +2023,6,11,1,New South Wales,153.070915,-28.76248 +2020,10,18,1,New South Wales,149.921178,-36.633581 +2020,1,13,1,New South Wales,153.099171,-29.48141 +2021,9,17,1,New South Wales,153.43466,-28.843672 +2020,5,13,1,New South Wales,149.3644,-36.012983 +2021,9,15,1,New South Wales,149.35095,-36.153888 +2021,6,5,1,New South Wales,150.606746,-34.429315 +2021,6,24,1,New South Wales,152.404167,-31.945815 +2023,12,30,1,New South Wales,152.881402,-29.737213 +2022,2,6,1,New South Wales,151.655618,-32.686232 +2021,5,25,1,New South Wales,150.594588,-34.427598 +2022,9,29,1,New South Wales,152.07558,-32.722675 +2021,10,26,1,New South Wales,152.062476,-32.709609 +2022,2,14,1,New South Wales,153.429595,-28.598997 +2023,9,23,1,New South Wales,150.985347,-34.091267 +2020,12,8,1,New South Wales,153.104149,-29.47873 +2021,4,30,1,New South Wales,150.615878,-34.436472 +2023,11,20,1,New South Wales,150.987632,-33.977147 +2021,7,5,1,New South Wales,150.627217,-34.420681 +2020,10,28,1,New South Wales,153.335481,-28.869015 +2020,12,1,1,New South Wales,153.412284,-28.955072 +2021,4,28,1,New South Wales,150.616041,-34.436114 +2023,8,10,1,New South Wales,150.786208,-33.705819 +2021,9,13,1,New South Wales,150.513017,-34.446088 +2022,9,24,1,New South Wales,153.104122,-29.48035 +2021,5,6,1,New South Wales,150.605566,-34.437893 +2022,11,26,1,New South Wales,153.526125,-28.665385 +2021,6,8,1,New South Wales,150.640501,-34.394694 +2020,10,25,1,New South Wales,149.960571,-36.556943 +2022,4,2,1,New South Wales,152.385545,-31.962169 +2021,4,16,1,New South Wales,150.631282,-34.393434 +2023,12,21,1,New South Wales,150.786018,-33.706031 +2021,7,6,1,New South Wales,153.561624,-28.385899 +2021,6,1,1,New South Wales,150.604885,-34.437339 +2021,6,27,1,New South Wales,150.644758,-34.392224 +2021,6,17,1,New South Wales,150.617203,-34.434262 +2020,5,1,1,New South Wales,152.920078,-31.480987 +2020,11,29,1,New South Wales,152.404167,-31.945815 +2023,3,9,1,New South Wales,149.950453,-36.576974 +2020,1,24,1,New South Wales,149.373649,-36.146025 +2023,7,14,1,New South Wales,152.056846,-32.737252 +2023,8,29,1,New South Wales,153.306761,-28.821787 +2020,6,6,1,New South Wales,153.466658,-28.556876 +2021,10,29,1,New South Wales,150.863276,-34.004553 +2021,5,17,1,New South Wales,150.516373,-34.450014 +2021,6,16,1,New South Wales,150.514222,-34.446563 +2021,3,4,1,New South Wales,150.635586,-34.486566 +2022,8,16,1,New South Wales,150.841742,-34.052162 +2021,7,3,1,New South Wales,150.627352,-34.421288 +2024,1,24,1,New South Wales,150.627317,-33.575771 +2020,10,14,1,New South Wales,149.577506,-33.419281 +2021,5,25,1,New South Wales,150.595647,-34.425942 +2020,11,13,1,New South Wales,150.01112,-36.547428 +2020,2,1,1,New South Wales,152.645569,-30.537649 +2020,5,,1,New South Wales,152.041279,-32.735288 +2023,3,18,1,New South Wales,150.851949,-34.050248 +2020,2,17,1,New South Wales,152.926358,-31.464279 +2022,11,23,1,New South Wales,152.760068,-30.904021 +2021,5,16,1,New South Wales,150.655826,-34.458557 +2024,10,9,1,New South Wales,150.854722,-34.048056 +2024,7,15,1,New South Wales,152.575285,-31.644542 +2021,7,11,1,New South Wales,150.642197,-34.39433 +2021,5,19,1,New South Wales,150.633677,-34.418426 +2023,9,20,1,New South Wales,153.302384,-28.84663 +2021,6,6,1,New South Wales,150.635326,-34.488048 +2020,10,30,1,New South Wales,149.968131,-36.578885 +2021,5,29,1,New South Wales,150.515887,-34.448769 +2023,7,29,1,New South Wales,153.327054,-29.038269 +2022,1,16,1,New South Wales,153.434299,-28.695152 +2021,2,12,1,New South Wales,153.395355,-28.959916 +2020,11,3,1,New South Wales,149.968131,-36.578885 +2023,1,22,1,New South Wales,150.79094,-34.133848 +2020,10,23,1,New South Wales,149.923643,-36.618562 +2023,10,18,1,New South Wales,150.973293,-34.100662 +2020,11,23,1,New South Wales,153.555833,-28.399167 +2021,4,28,1,New South Wales,150.636302,-34.421794 +2021,4,23,1,New South Wales,150.630909,-34.388513 +2021,5,4,1,New South Wales,150.627151,-34.389522 +2024,3,13,1,New South Wales,151.781386,-31.97075 +2021,5,27,1,New South Wales,150.638882,-34.491687 +2022,7,30,1,New South Wales,149.543438,-33.699723 +2021,5,14,1,New South Wales,150.603515,-34.437699 +2022,9,22,1,New South Wales,152.875485,-29.679487 +2020,11,3,1,New South Wales,149.955017,-36.576791 +2021,12,1,1,New South Wales,150.125195,-31.069662 +2021,10,11,1,New South Wales,153.401891,-28.260427 +2022,2,8,1,New South Wales,152.898825,-31.442271 +2021,6,11,1,New South Wales,150.611646,-34.430718 +2022,2,5,1,New South Wales,153.109776,-29.490175 +2021,6,7,1,New South Wales,150.607724,-34.430137 +2023,3,2,1,New South Wales,153.108162,-29.490469 +2021,8,14,1,New South Wales,150.513794,-34.44632 +2021,4,22,1,New South Wales,150.614177,-34.429704 +2022,9,17,1,New South Wales,150.883987,-34.018527 +2021,7,10,1,New South Wales,150.630982,-34.388235 +2021,8,10,1,New South Wales,150.631941,-34.388163 +2021,12,17,1,New South Wales,150.937207,-34.113996 +2021,1,23,1,New South Wales,152.092139,-32.738553 +2020,11,,1,New South Wales,152.216158,-32.418238 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2020,11,22,1,New South Wales,150.815095,-34.085656 +2021,5,13,1,New South Wales,150.524368,-34.466332 +2023,10,31,1,New South Wales,152.19096,-32.219628 +2023,9,6,1,New South Wales,153.042776,-28.469247 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2021,5,4,1,New South Wales,150.638552,-34.490653 +2021,6,30,1,New South Wales,150.521633,-34.465699 +2020,12,8,1,New South Wales,149.960499,-36.288011 +2021,5,15,1,New South Wales,150.629104,-34.395077 +2023,1,13,1,New South Wales,153.110104,-29.488265 +2023,9,15,1,New South Wales,152.818278,-31.65131 +2023,2,18,1,New South Wales,149.698554,-32.367276 +2021,6,23,1,New South Wales,150.601852,-34.418221 +2020,10,23,1,New South Wales,149.923643,-36.618562 +2021,6,1,1,New South Wales,150.616363,-34.438158 +2023,9,28,1,New South Wales,152.968749,-29.730159 +2021,5,26,1,New South Wales,150.52658,-34.469577 +2021,10,29,1,New South Wales,153.013297,-30.41381 +2021,6,4,1,New South Wales,152.911609,-31.458122 +2021,1,25,1,New South Wales,152.899894,-29.631732 +2021,5,21,1,New South Wales,150.639068,-34.493187 +2021,4,25,1,New South Wales,150.608504,-34.45352 +2021,6,17,1,New South Wales,150.522908,-34.450913 +2023,11,25,1,New South Wales,153.105158,-29.489746 +2023,9,21,1,New South Wales,152.605549,-30.344458 +2022,8,22,1,New South Wales,153.0406,-30.297238 +2021,7,12,1,New South Wales,152.413051,-31.932612 +2021,6,17,1,New South Wales,150.630168,-34.420964 +2020,9,5,1,New South Wales,153.537072,-28.222185 +2021,6,7,1,New South Wales,150.528079,-34.465641 +2022,6,7,1,New South Wales,152.879205,-31.457051 +2021,3,4,1,New South Wales,150.635236,-34.487001 +2021,4,12,1,New South Wales,150.577042,-29.838245 +2020,10,17,1,New South Wales,151.985894,-32.448613 +2022,8,2,1,New South Wales,152.063956,-32.706625 +2023,12,4,1,New South Wales,153.109766,-29.490208 +2022,7,29,1,New South Wales,153.316343,-28.939602 +2021,4,15,1,New South Wales,150.62584,-34.386242 +2021,5,18,1,New South Wales,150.631045,-34.389084 +2021,8,24,1,New South Wales,150.525117,-34.495511 +2020,9,22,1,New South Wales,153.282851,-28.821387 +2021,6,30,1,New South Wales,153.101209,-29.49003 +2022,11,18,1,New South Wales,152.795899,-30.884771 +2020,6,6,1,New South Wales,153.428133,-28.558093 +2024,4,9,1,New South Wales,150.659123,-33.527192 +2021,9,7,1,New South Wales,153.10453,-29.476913 +2023,3,26,1,New South Wales,152.063956,-32.706625 +2021,4,20,1,New South Wales,153.559692,-28.371061 +2021,6,14,1,New South Wales,150.605617,-34.437254 +2022,2,21,1,New South Wales,150.718739,-33.456402 +2023,9,21,1,New South Wales,152.926635,-31.472406 +2021,10,18,1,New South Wales,152.8124,-29.798531 +2022,8,1,1,New South Wales,153.104391,-29.482886 +2021,7,5,1,New South Wales,150.627185,-34.420644 +2021,3,1,1,New South Wales,150.603328,-34.436605 +2020,5,13,1,New South Wales,149.36557,-36.006435 +2021,12,19,1,New South Wales,152.904753,-31.439272 +2023,2,9,1,New South Wales,151.623,-30.438 +2022,3,13,1,New South Wales,153.109739,-29.490199 +2021,4,28,1,New South Wales,150.605865,-34.454487 +2021,6,22,1,New South Wales,150.602475,-34.42 +2020,1,9,1,New South Wales,153.336688,-28.868027 +2021,6,4,1,New South Wales,150.623914,-34.388972 +2021,5,21,1,New South Wales,153.63115,-28.63729 +2023,11,18,1,New South Wales,152.907637,-31.451214 +2021,8,6,1,New South Wales,150.632647,-34.418298 +2021,4,25,1,New South Wales,150.609379,-34.418999 +2021,5,28,1,New South Wales,153.59019,-28.65505 +2021,4,28,1,New South Wales,150.52509,-34.452598 +2024,6,7,1,New South Wales,152.872983,-31.479235 +2021,5,3,1,New South Wales,150.621159,-34.39871 +2020,10,11,1,New South Wales,149.986384,-36.655712 +2021,9,30,1,New South Wales,153.109219,-29.490857 +2021,4,21,1,New South Wales,150.631121,-34.387552 +2021,9,10,1,New South Wales,152.921692,-31.48029 +2022,3,3,1,New South Wales,153.101129,-29.4901 +2021,9,17,1,New South Wales,150.522173,-34.449267 +2024,8,25,1,New South Wales,152.077448,-32.7228 +2022,1,12,1,New South Wales,151.487783,-30.634036 +2021,5,15,1,New South Wales,150.640426,-34.49407 +2020,5,17,1,New South Wales,149.293747,-36.092276 +2021,7,18,1,New South Wales,150.599338,-34.41672 +2021,9,9,1,New South Wales,150.514386,-34.447269 +2021,6,15,1,New South Wales,152.894741,-30.874477 +2021,6,10,1,New South Wales,150.613971,-34.433144 +2021,3,29,1,New South Wales,153.331243,-28.821749 +2021,5,17,1,New South Wales,150.516384,-34.449987 +2021,5,21,1,New South Wales,150.517336,-34.452035 +2021,6,3,1,New South Wales,150.61533,-34.436605 +2022,9,5,1,New South Wales,153.283976,-28.66656 +2021,6,3,1,New South Wales,150.522433,-34.465887 +2021,4,2,1,New South Wales,150.522932,-34.45232 +2023,11,4,1,New South Wales,152.93665,-31.475011 +2023,5,21,1,New South Wales,152.986212,-29.036861 +2021,5,19,1,New South Wales,150.521577,-34.465752 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2022,2,28,1,New South Wales,153.342777,-28.860113 +2021,8,15,1,New South Wales,150.515598,-34.439415 +2020,10,17,1,New South Wales,153.605778,-28.659613 +2022,8,21,1,New South Wales,150.839981,-34.060713 +2022,1,2,1,New South Wales,152.927276,-31.457984 +2021,6,19,1,New South Wales,150.642551,-34.394517 +2023,2,2,1,New South Wales,151.93134,-32.586078 +2021,10,27,1,New South Wales,149.187264,-35.954515 +2021,4,23,1,New South Wales,150.604143,-34.422169 +2023,6,18,1,New South Wales,153.107722,-29.496754 +2020,2,17,1,New South Wales,153.108243,-29.490478 +2022,4,28,1,New South Wales,151.232474,-33.16171 +2022,2,5,1,New South Wales,153.110522,-29.490133 +2020,9,27,1,New South Wales,153.341595,-28.821788 +2021,4,22,1,New South Wales,150.614288,-34.429625 +2021,7,14,1,New South Wales,152.929157,-31.459635 +2024,3,31,1,New South Wales,152.337832,-32.302205 +2021,7,11,1,New South Wales,150.643222,-34.395395 +2021,6,13,1,New South Wales,150.522349,-34.465786 +2021,7,11,1,New South Wales,153.272094,-29.009814 +2020,1,31,1,New South Wales,152.041056,-32.737555 +2021,3,6,1,New South Wales,150.603413,-34.436291 +2021,9,8,1,New South Wales,153.103849,-29.484959 +2022,12,5,1,New South Wales,152.92633,-31.452736 +2020,1,8,1,New South Wales,152.866285,-29.692025 +2024,7,15,1,New South Wales,153.396648,-29.047472 +2020,10,2,1,New South Wales,152.928526,-31.459599 +2021,5,12,1,New South Wales,150.517237,-34.45316 +2022,9,25,1,New South Wales,152.876398,-31.492034 +2021,5,24,1,New South Wales,150.639176,-34.492829 +2020,10,15,1,New South Wales,152.878677,-29.662288 +2021,5,31,1,New South Wales,150.51733,-34.446346 +2023,9,22,1,New South Wales,150.782955,-33.719426 +2020,12,4,1,New South Wales,150.65973,-33.527099 +2021,8,16,1,New South Wales,150.530926,-34.472802 +2021,5,21,1,New South Wales,150.517378,-34.452063 +2023,9,23,1,New South Wales,150.786196,-33.705932 +2020,10,11,1,New South Wales,149.989087,-36.562421 +2022,7,13,1,New South Wales,152.02018,-32.739618 +2020,1,4,1,New South Wales,152.065232,-32.699661 +2021,5,5,1,New South Wales,150.615642,-34.435989 +2023,12,20,1,New South Wales,153.196837,-28.752435 +2021,9,10,1,New South Wales,150.525589,-34.447461 +2021,6,22,1,New South Wales,150.644045,-34.392824 +2020,11,12,1,New South Wales,151.982103,-32.640912 +2021,10,29,1,New South Wales,152.916607,-31.450595 +2020,11,27,1,New South Wales,153.104294,-29.480364 +2024,4,27,1,New South Wales,151.712468,-32.630412 +2021,4,21,1,New South Wales,150.609433,-34.419027 +2021,4,26,1,New South Wales,150.518203,-34.448843 +2021,5,12,1,New South Wales,150.609278,-34.420638 +2024,3,13,1,New South Wales,150.784546,-33.714173 +2023,10,18,1,New South Wales,152.105345,-32.736858 +2021,7,13,1,New South Wales,150.642774,-34.395089 +2022,6,15,1,New South Wales,153.108038,-29.490334 +2021,8,29,1,New South Wales,153.311308,-28.813376 +2022,7,5,1,New South Wales,152.908683,-31.48872 +2023,7,15,1,New South Wales,150.808277,-34.09809 +2021,1,17,1,New South Wales,153.393393,-28.269299 +2021,9,18,1,New South Wales,153.109455,-29.490483 +2023,9,26,1,New South Wales,150.725006,-34.320115 +2021,5,12,1,New South Wales,150.639953,-34.491951 +2020,11,6,1,New South Wales,149.994744,-36.560944 +2021,6,16,1,New South Wales,150.517624,-34.437157 +2021,1,25,1,New South Wales,153.328329,-28.814806 +2020,9,2,1,New South Wales,150.702147,-33.503703 +2020,10,8,1,New South Wales,150.721715,-33.443406 +2023,8,11,1,New South Wales,152.187922,-31.31995 +2020,6,24,1,New South Wales,149.57333,-32.61446 +2023,10,24,1,New South Wales,153.108135,-29.490553 +2021,4,9,1,New South Wales,152.916202,-31.485298 +2023,9,18,1,New South Wales,150.786363,-33.705897 +2021,5,13,1,New South Wales,150.604314,-34.437904 +2022,8,5,1,New South Wales,150.79001,-34.214698 +2020,11,30,1,New South Wales,149.573329,-32.614457 +2022,5,26,1,New South Wales,152.064111,-32.706973 +2021,2,18,1,New South Wales,150.99245,-31.018692 +2021,6,25,1,New South Wales,152.073009,-32.725859 +2021,5,16,1,New South Wales,150.637365,-34.423853 +2021,11,20,1,New South Wales,151.697481,-32.701926 +2024,1,4,1,New South Wales,153.104203,-29.479276 +2020,10,29,1,New South Wales,149.999247,-36.565645 +2021,6,1,1,New South Wales,150.639592,-34.399202 +2021,7,6,1,New South Wales,150.514333,-34.446511 +2020,12,,1,New South Wales,152.961976,-31.210305 +2023,7,7,1,New South Wales,149.554367,-33.584157 +2020,12,20,1,New South Wales,153.103736,-29.485758 +2023,11,21,1,New South Wales,152.940588,-29.774361 +2023,9,21,1,New South Wales,153.394474,-28.288414 +2021,5,3,1,New South Wales,150.637356,-34.488674 +2021,6,12,1,New South Wales,150.522174,-34.4658 +2020,3,25,1,New South Wales,150.125832,-35.065818 +2021,9,9,1,New South Wales,150.521496,-34.465183 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2021,9,4,1,New South Wales,153.293107,-28.864597 +2023,9,3,1,New South Wales,150.784228,-33.717272 +2021,9,6,1,New South Wales,150.532965,-34.495994 +2021,5,21,1,New South Wales,150.529371,-34.471265 +2021,5,10,1,New South Wales,150.52091,-34.466595 +2021,5,17,1,New South Wales,150.640577,-34.494127 +2020,1,4,1,New South Wales,153.109495,-29.490721 +2022,12,15,1,New South Wales,150.921108,-33.96715 +2022,8,21,1,New South Wales,153.309373,-28.823163 +2021,6,28,1,New South Wales,150.643291,-34.393323 +2023,7,22,1,New South Wales,152.064609,-32.699291 +2021,5,25,1,New South Wales,150.521577,-34.46577 +2020,10,7,1,New South Wales,152.630753,-31.224917 +2021,11,25,1,New South Wales,151.62858,-32.641127 +2023,9,8,1,New South Wales,150.785482,-33.709387 +2020,10,23,1,New South Wales,149.947183,-36.617465 +2021,4,18,1,New South Wales,152.404167,-31.945815 +2020,10,,1,New South Wales,150.54359,-34.373392 +2023,1,25,1,New South Wales,153.10998,-29.490203 +2021,6,25,1,New South Wales,150.51431,-34.447259 +2020,1,28,1,New South Wales,153.430681,-29.01629 +2020,10,14,1,New South Wales,152.079065,-28.78178 +2022,4,27,1,New South Wales,152.917246,-31.445453 +2024,4,28,1,New South Wales,152.925776,-31.447463 +2021,5,2,1,New South Wales,150.624144,-34.388923 +2021,5,15,1,New South Wales,150.628846,-34.389176 +2021,6,10,1,New South Wales,150.51801,-34.447631 +2021,9,30,1,New South Wales,153.314144,-28.816318 +2021,7,12,1,New South Wales,150.643049,-34.395392 +2022,3,18,1,New South Wales,153.37674,-28.304856 +2021,5,7,1,New South Wales,150.616182,-34.43572 +2021,2,24,1,New South Wales,153.39411,-28.959119 +2023,1,31,1,New South Wales,149.55755,-33.685964 +2021,7,17,1,New South Wales,150.625243,-34.385825 +2022,10,4,1,New South Wales,152.833242,-29.643678 +2020,7,2,1,New South Wales,150.184494,-34.547284 +2021,5,21,1,New South Wales,150.633756,-34.392463 +2021,3,24,1,New South Wales,150.525408,-34.45988 +2021,6,29,1,New South Wales,150.629131,-34.389083 +2021,1,5,1,New South Wales,152.913985,-31.485206 +2021,6,7,1,New South Wales,150.518756,-34.447421 +2021,5,31,1,New South Wales,150.631092,-34.420224 +2021,7,28,1,New South Wales,150.518116,-34.437446 +2022,1,29,1,New South Wales,153.262056,-28.925911 +2024,1,5,1,New South Wales,152.92083,-30.50456 +2021,8,29,1,New South Wales,153.103945,-29.484446 +2021,5,23,1,New South Wales,150.522463,-34.464887 +2021,4,24,1,New South Wales,150.637454,-34.42105 +2021,5,11,1,New South Wales,150.637212,-34.423859 +2020,1,8,1,New South Wales,152.124036,-32.719642 +2021,9,17,1,New South Wales,150.977022,-34.099086 +2021,5,23,1,New South Wales,150.630987,-34.38846 +2023,9,15,1,New South Wales,152.755027,-31.633668 +2021,7,1,1,New South Wales,150.522618,-34.465882 +2023,4,29,1,New South Wales,153.31535,-28.819753 +2023,8,2,1,New South Wales,153.299459,-28.82149 +2020,5,28,1,New South Wales,149.360515,-36.043897 +2024,1,3,1,New South Wales,152.919636,-31.469132 +2022,2,12,1,New South Wales,152.063375,-32.706714 +2021,12,11,1,New South Wales,153.10939,-29.490507 +2021,6,13,1,New South Wales,150.615143,-34.431328 +2022,7,23,1,New South Wales,152.863624,-31.29087 +2020,7,12,1,New South Wales,152.922191,-31.462006 +2021,5,5,1,New South Wales,150.608585,-34.456416 +2021,5,22,1,New South Wales,150.515898,-34.450987 +2020,7,23,1,New South Wales,151.775592,-32.590109 +2021,4,29,1,New South Wales,150.614888,-34.429592 +2021,4,29,1,New South Wales,150.610215,-34.419051 +2020,12,,1,New South Wales,152.909424,-31.176289 +2022,1,3,1,New South Wales,152.899054,-31.473898 +2022,8,9,1,New South Wales,150.526503,-34.452275 +2021,9,19,1,New South Wales,150.519061,-34.447427 +2021,10,5,1,New South Wales,153.39044,-28.838189 +2021,9,16,1,New South Wales,150.533281,-34.475996 +2021,5,13,1,New South Wales,150.523669,-34.464217 +2021,7,19,1,New South Wales,152.064351,-32.709494 +2020,2,17,1,New South Wales,149.870381,-29.441584 +2020,7,21,1,New South Wales,150.656179,-33.58539 +2022,11,17,1,New South Wales,152.07275,-32.711481 +2024,3,31,1,New South Wales,150.973564,-34.100438 +2022,3,31,1,New South Wales,153.108038,-29.490199 +2023,10,30,1,New South Wales,153.10976,-29.490217 +2021,8,27,1,New South Wales,150.514577,-34.443757 +2022,1,5,1,New South Wales,149.866667,-32.534167 +2023,10,18,1,New South Wales,152.888094,-31.44269 +2020,10,27,1,New South Wales,151.780333,-32.714185 +2020,10,12,1,New South Wales,152.881577,-31.45629 +2023,10,8,1,New South Wales,152.065267,-32.71098 +2020,10,27,1,New South Wales,151.780333,-32.714185 +2020,11,20,1,New South Wales,153.559028,-28.368921 +2021,6,10,1,New South Wales,150.518021,-34.447641 +2023,6,9,1,New South Wales,150.79337,-34.14318 +2024,1,25,1,New South Wales,150.785215,-33.714047 +2024,5,28,1,New South Wales,152.879352,-31.458976 +2022,11,14,1,New South Wales,150.929224,-33.954203 +2024,1,16,1,New South Wales,152.243859,-32.272637 +2023,2,8,1,New South Wales,153.10814,-29.490236 +2021,4,30,1,New South Wales,150.604065,-34.427189 +2021,7,5,1,New South Wales,150.522337,-34.465822 +2021,7,14,1,New South Wales,150.325379,-29.033489 +2021,5,19,1,New South Wales,150.640441,-34.494314 +2021,4,8,1,New South Wales,150.51808,-34.453718 +2021,5,19,1,New South Wales,150.615787,-34.430871 +2022,10,6,1,New South Wales,153.276239,-28.857815 +2023,9,11,1,New South Wales,150.694931,-34.275951 +2022,8,30,1,New South Wales,149.320726,-36.298398 +2021,6,13,1,New South Wales,150.521589,-34.465716 +2021,1,15,1,New South Wales,150.059868,-33.767296 +2021,10,17,1,New South Wales,153.103956,-29.489559 +2021,5,3,1,New South Wales,150.604217,-34.437866 +2020,1,14,1,New South Wales,152.537961,-28.896153 +2021,1,20,1,New South Wales,152.868404,-29.667098 +2023,7,21,1,New South Wales,150.785281,-33.714128 +2020,2,2,1,New South Wales,153.289698,-28.867701 +2021,9,1,1,New South Wales,150.601226,-34.448094 +2024,8,3,1,New South Wales,152.89731,-31.475427 +2021,9,8,1,New South Wales,153.489942,-28.631915 +2021,5,13,1,New South Wales,150.637301,-34.423806 +2021,2,24,1,New South Wales,150.516918,-34.453271 +2022,11,17,1,New South Wales,152.923312,-31.469731 +2021,6,7,1,New South Wales,150.519486,-34.456586 +2022,8,10,1,New South Wales,150.522403,-34.443234 +2024,9,16,2,New South Wales,146.562342,-34.762424 +2021,6,7,1,New South Wales,150.531234,-34.457906 +2024,2,13,1,New South Wales,152.793177,-31.641108 +2022,11,25,1,New South Wales,152.794945,-30.901933 +2022,11,18,1,New South Wales,152.795899,-30.884771 +2021,4,24,1,New South Wales,150.610302,-34.419053 +2022,11,24,1,New South Wales,152.794945,-30.901933 +2021,3,4,1,New South Wales,153.555424,-28.586714 +2021,8,3,1,New South Wales,150.632604,-34.418297 +2021,4,19,1,New South Wales,150.640029,-34.415375 +2021,7,29,1,New South Wales,150.518153,-34.437294 +2021,4,29,1,New South Wales,150.616147,-34.436197 +2022,4,15,1,New South Wales,150.998479,-34.043038 +2020,9,1,1,New South Wales,153.497818,-28.706206 +2021,6,22,1,New South Wales,150.519712,-34.463298 +2021,5,26,1,New South Wales,150.639177,-34.392667 +2021,5,14,1,New South Wales,150.516017,-34.449151 +2021,5,28,1,New South Wales,150.340865,-34.484944 +2022,7,27,1,New South Wales,152.904744,-31.465465 +2022,9,9,1,New South Wales,153.103457,-29.485674 +2021,12,16,1,New South Wales,150.905313,-33.418413 +2024,8,21,1,New South Wales,152.38461,-31.91601 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2021,4,13,1,New South Wales,150.517131,-34.444242 +2021,6,10,1,New South Wales,150.605663,-34.437525 +2023,11,21,1,New South Wales,150.659575,-33.527164 +2021,5,15,1,New South Wales,150.600797,-34.428081 +2021,4,23,1,New South Wales,150.635502,-34.420463 +2021,5,7,1,New South Wales,150.521894,-34.459466 +2021,7,14,1,New South Wales,153.604159,-28.661841 +2021,5,10,1,New South Wales,150.520796,-34.466782 +2020,10,10,1,New South Wales,153.494377,-28.242245 +2023,11,3,1,New South Wales,152.906016,-31.471952 +2024,1,28,1,New South Wales,152.17001,-32.74494 +2021,5,15,1,New South Wales,150.616209,-34.435946 +2022,11,16,1,New South Wales,152.88165,-30.911317 +2021,10,12,1,New South Wales,152.922224,-31.446776 +2023,9,18,1,New South Wales,152.909125,-31.440799 +2021,7,12,1,New South Wales,153.103581,-29.488508 +2022,11,11,1,New South Wales,152.105628,-32.727832 +2022,10,19,1,New South Wales,152.790379,-31.639046 +2021,1,26,1,New South Wales,153.103682,-29.485767 +2021,8,22,1,New South Wales,150.640962,-34.396506 +2021,4,10,1,New South Wales,150.518539,-34.448138 +2021,7,1,1,New South Wales,150.596951,-34.412697 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2023,9,5,1,New South Wales,150.989472,-34.027919 +2021,7,11,1,New South Wales,150.521961,-34.464561 +2023,9,3,1,New South Wales,150.783692,-33.719373 +2024,5,15,1,New South Wales,152.181044,-31.941779 +2022,6,12,1,New South Wales,153.103661,-29.485669 +2021,4,23,1,New South Wales,150.638872,-34.421727 +2023,1,8,1,New South Wales,152.926041,-31.452377 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2021,7,5,1,New South Wales,150.603076,-34.417631 +2021,6,21,1,New South Wales,150.604176,-34.422548 +2021,6,7,1,New South Wales,150.531138,-34.457841 +2021,6,10,1,New South Wales,150.524947,-34.458149 +2020,10,,1,New South Wales,150.559732,-34.535992 +2021,4,4,1,New South Wales,150.523301,-34.450894 +2021,6,24,1,New South Wales,150.514405,-34.446648 +2021,5,17,1,New South Wales,150.629048,-34.395112 +2021,4,26,1,New South Wales,150.60835,-34.454346 +2021,3,30,1,New South Wales,150.526486,-34.457278 +2023,11,26,1,New South Wales,153.10164,-30.286806 +2021,7,18,1,New South Wales,150.624265,-34.386193 +2020,5,4,1,New South Wales,151.0003,-34.0615 +2024,3,25,1,New South Wales,150.882544,-29.848616 +2022,12,20,1,New South Wales,153.099788,-29.491543 +2021,5,11,1,New South Wales,150.606794,-34.43871 +2021,11,1,1,New South Wales,152.914058,-31.460474 +2021,4,24,1,New South Wales,150.608809,-34.453508 +2021,5,20,1,New South Wales,150.639125,-34.493098 +2020,1,11,1,New South Wales,152.904141,-31.472325 +2020,1,12,1,New South Wales,153.221268,-28.826448 +2020,11,27,1,New South Wales,152.8978,-31.4354 +2021,2,28,1,New South Wales,150.521267,-34.447517 +2021,9,1,1,New South Wales,152.035846,-32.764338 +2021,12,29,1,New South Wales,150.616298,-34.440843 +2021,6,22,1,New South Wales,150.514187,-34.445904 +2022,3,30,1,New South Wales,153.279592,-28.831104 +2021,9,8,1,New South Wales,153.103795,-29.48558 +2020,11,23,1,New South Wales,153.314609,-28.846843 +2022,12,23,1,New South Wales,150.789513,-34.198962 +2022,8,2,1,New South Wales,150.796374,-34.139484 +2022,5,5,1,New South Wales,153.402257,-28.960528 +2021,6,8,1,New South Wales,150.615447,-34.432875 +2022,11,2,1,New South Wales,152.093659,-32.740062 +2021,5,28,1,New South Wales,150.516294,-34.448985 +2022,1,12,1,New South Wales,151.487783,-30.634036 +2023,5,31,1,New South Wales,150.784218,-33.717325 +2021,7,15,1,New South Wales,150.513751,-34.446319 +2021,7,8,1,New South Wales,150.975975,-34.087943 +2021,7,19,1,New South Wales,152.772842,-30.190688 +2021,11,28,1,New South Wales,152.063591,-32.705663 +2021,6,6,1,New South Wales,150.640443,-34.398308 +2021,4,26,1,New South Wales,150.625035,-34.388174 +2021,6,2,1,New South Wales,150.521566,-34.465752 +2024,4,8,1,New South Wales,151.084889,-29.729156 +2021,9,16,1,New South Wales,150.531841,-34.474642 +2021,5,9,1,New South Wales,150.5213,-34.435356 +2021,3,11,1,New South Wales,153.495634,-28.693276 +2020,10,12,1,New South Wales,149.930096,-36.638123 +2022,8,11,1,New South Wales,153.298638,-28.818456 +2021,6,22,1,New South Wales,152.905709,-31.447595 +2020,10,16,1,New South Wales,152.102475,-32.7347 +2021,3,12,1,New South Wales,150.796982,-33.473775 +2020,11,16,1,New South Wales,150.001052,-36.513032 +2020,10,15,1,New South Wales,149.919967,-36.589766 +2021,3,30,1,New South Wales,150.517241,-34.451564 +2020,10,15,1,New South Wales,149.919967,-36.589766 +2024,1,5,1,New South Wales,153.109787,-29.490217 +2020,10,2,1,New South Wales,150.058209,-33.769726 +2022,6,11,1,New South Wales,152.905405,-31.436777 +2023,8,10,1,New South Wales,152.877935,-31.435353 +2023,7,13,1,New South Wales,153.097636,-30.331099 +2021,7,5,1,New South Wales,150.513837,-34.44633 +2020,10,2,1,New South Wales,152.98111,-30.437334 +2020,5,29,1,New South Wales,152.9254,-31.4587 +2022,10,7,1,New South Wales,152.981428,-30.423644 +2020,11,5,1,New South Wales,149.994744,-36.560944 +2020,12,25,1,New South Wales,152.140155,-32.722972 +2021,6,19,1,New South Wales,150.5199,-34.452529 +2023,8,30,1,New South Wales,150.836937,-34.06522 +2021,5,28,1,New South Wales,150.642497,-34.394128 +2021,7,9,1,New South Wales,153.283377,-28.830775 +2020,6,6,1,New South Wales,150.063356,-33.775781 +2021,5,19,1,New South Wales,150.515308,-34.451038 +2020,9,2,1,New South Wales,150.507113,-33.714893 +2021,6,2,1,New South Wales,150.639385,-34.399595 +2021,6,26,1,New South Wales,150.597533,-34.418208 +2020,1,11,1,New South Wales,152.915729,-31.468482 +2021,3,28,1,New South Wales,150.523875,-34.452456 +2021,9,27,1,New South Wales,150.790392,-34.199948 +2021,4,15,1,New South Wales,150.609879,-34.45187 +2023,6,1,1,New South Wales,150.80038,-34.20323 +2020,12,9,1,New South Wales,153.300206,-28.886464 +2023,11,13,1,New South Wales,153.071583,-30.885675 +2020,1,15,1,New South Wales,153.555196,-28.370334 +2020,5,30,1,New South Wales,153.104026,-29.478599 +2021,4,26,1,New South Wales,150.603286,-34.436956 +2021,5,1,1,New South Wales,150.608946,-34.434975 +2020,1,11,1,New South Wales,152.925098,-31.459851 +2023,11,18,1,New South Wales,150.985961,-34.041246 +2021,10,23,1,New South Wales,152.867932,-29.667257 +2020,6,4,1,New South Wales,153.407575,-28.994054 +2021,7,18,1,New South Wales,150.516346,-34.447985 +2023,6,7,1,New South Wales,150.81808,-34.16363 +2023,8,12,1,New South Wales,153.085007,-30.921114 +2021,4,8,1,New South Wales,150.519865,-34.447831 +2023,6,19,1,New South Wales,153.382965,-28.786726 +2021,4,21,1,New South Wales,150.632678,-34.392884 +2020,8,24,1,New South Wales,153.002375,-28.623888 +2020,12,23,1,New South Wales,152.061869,-32.709238 +2023,9,12,1,New South Wales,150.785843,-33.714865 +2021,10,11,1,New South Wales,153.209446,-28.827015 +2021,12,5,1,New South Wales,153.378654,-28.255627 +2021,7,2,1,New South Wales,150.597718,-34.412901 +2020,5,4,1,New South Wales,151.961159,-32.018393 +2021,5,15,1,New South Wales,150.628766,-34.38931 +2021,6,9,1,New South Wales,150.521579,-34.465689 +2022,11,20,1,New South Wales,152.794854,-30.893434 +2021,2,23,1,New South Wales,150.609939,-34.449013 +2022,10,27,1,New South Wales,152.898357,-31.443494 +2021,6,5,1,New South Wales,150.51956,-34.45666 +2022,3,10,1,New South Wales,153.093209,-28.521893 +2020,10,17,1,New South Wales,153.103441,-29.486323 +2020,12,,1,New South Wales,150.600987,-34.533564 +2021,6,25,1,New South Wales,150.514348,-34.447449 +2021,5,26,1,New South Wales,150.794198,-34.142931 +2021,7,3,1,New South Wales,150.600752,-34.416333 +2023,1,27,1,New South Wales,153.218619,-28.824508 +2021,4,27,1,New South Wales,150.616301,-34.435768 +2022,9,14,1,New South Wales,151.097197,-29.775256 +2023,12,16,1,New South Wales,149.3282,-35.603929 +2021,5,20,1,New South Wales,150.517337,-34.452008 +2022,6,21,1,New South Wales,152.925875,-31.452727 +2020,12,21,1,New South Wales,151.222243,-33.100985 +2021,6,11,1,New South Wales,150.525264,-34.458849 +2024,5,15,1,New South Wales,152.187121,-31.953191 +2021,7,30,1,New South Wales,146.54612,-34.748244 +2020,8,28,1,New South Wales,151.681274,-31.485275 +2020,7,13,1,New South Wales,152.816316,-31.173335 +2020,10,29,1,New South Wales,149.958519,-36.587122 +2020,9,30,1,New South Wales,151.884006,-32.738597 +2021,5,13,1,New South Wales,150.601794,-34.428623 +2021,5,21,1,New South Wales,150.633821,-34.392473 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2021,9,22,1,New South Wales,152.104342,-32.724016 +2020,1,15,1,New South Wales,153.090523,-29.48714 +2021,5,8,1,New South Wales,150.639144,-34.491647 +2021,6,5,1,New South Wales,150.534607,-34.459435 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2021,5,30,1,New South Wales,150.527074,-34.469425 +2023,12,7,1,New South Wales,152.868652,-31.470543 +2020,11,18,1,New South Wales,150.061665,-33.775037 +2020,10,14,1,New South Wales,152.037483,-32.7317 +2021,1,11,1,New South Wales,152.244754,-30.051129 +2020,7,15,1,New South Wales,153.306745,-28.993607 +2023,11,16,1,New South Wales,150.659541,-33.527165 +2021,10,6,1,New South Wales,153.31725,-28.82292 +2021,6,5,1,New South Wales,150.623522,-34.389379 +2021,1,8,1,New South Wales,153.103811,-29.48558 +2021,3,16,1,New South Wales,150.517421,-34.445853 +2020,10,20,1,New South Wales,149.947183,-36.617465 +2021,6,7,1,New South Wales,153.394104,-28.958945 +2020,10,18,1,New South Wales,149.947183,-36.617465 +2021,8,28,1,New South Wales,150.643283,-34.395956 +2021,7,5,1,New South Wales,150.603641,-34.419175 +2021,7,16,1,New South Wales,150.625014,-34.385838 +2020,1,10,1,New South Wales,150.81368,-34.10476 +2021,6,2,1,New South Wales,150.603713,-34.437613 +2021,3,10,1,New South Wales,150.533174,-34.475958 +2022,12,7,1,New South Wales,152.591467,-30.182983 +2021,5,13,1,New South Wales,150.11279,-29.361515 +2023,7,12,1,New South Wales,151.061196,-29.74125 +2021,6,25,1,New South Wales,153.103811,-29.485506 +2021,6,10,1,New South Wales,150.51827,-34.453569 +2020,8,18,1,New South Wales,150.82369,-34.141271 +2020,6,5,1,New South Wales,153.39448,-28.67703 +2024,4,23,1,New South Wales,151.78254,-32.570557 +2020,1,4,1,New South Wales,153.041112,-28.459546 +2023,3,15,1,New South Wales,152.727941,-31.699914 +2021,4,4,1,New South Wales,150.608121,-34.42268 +2021,10,8,1,New South Wales,153.450062,-28.629026 +2024,5,15,1,New South Wales,152.9298,-31.4577 +2023,9,22,1,New South Wales,152.793198,-31.642098 +2020,2,25,1,New South Wales,153.5218,-28.68361 +2022,11,19,1,New South Wales,152.795899,-30.884771 +2022,10,26,1,New South Wales,152.373764,-31.9144 +2020,10,30,1,New South Wales,153.281559,-28.824938 +2021,4,17,1,New South Wales,150.627408,-34.386561 +2023,3,11,1,New South Wales,153.319528,-28.821248 +2021,10,11,1,New South Wales,153.339956,-28.837629 +2021,6,12,1,New South Wales,150.630162,-34.420404 +2021,9,14,1,New South Wales,150.532489,-34.477413 +2023,5,13,1,New South Wales,153.103897,-29.489601 +2021,5,2,1,New South Wales,150.52124,-34.466476 +2021,4,24,1,New South Wales,152.901735,-31.442402 +2021,5,28,1,New South Wales,153.59019,-28.65505 +2021,5,12,1,New South Wales,150.523738,-34.467419 +2023,4,23,1,New South Wales,150.787056,-33.7085 +2022,5,18,1,New South Wales,152.06419,-32.706541 +2021,4,29,1,New South Wales,150.634368,-34.420152 +2024,3,22,1,New South Wales,152.370974,-31.922322 +2021,5,15,1,New South Wales,150.614896,-34.433874 +2023,7,27,1,New South Wales,152.9023,-30.462251 +2021,,,1,New South Wales,150.527581,-34.455 +2022,1,15,1,New South Wales,153.393195,-28.268766 +2024,5,14,1,New South Wales,152.38002,-32.144524 +2023,3,25,1,New South Wales,150.809738,-34.099773 +2023,11,24,1,New South Wales,150.785577,-33.714683 +2022,2,11,1,New South Wales,150.645422,-34.55577 +2020,12,3,1,New South Wales,149.971776,-36.447388 +2020,9,21,1,New South Wales,153.40521,-28.871112 +2023,5,5,1,New South Wales,152.10572,-31.842287 +2021,5,1,1,New South Wales,150.636199,-34.423127 +2021,9,28,1,New South Wales,150.70578,-34.29327 +2020,6,14,1,New South Wales,152.039847,-32.73081 +2020,2,6,1,New South Wales,153.103834,-29.485162 +2021,9,15,1,New South Wales,153.59293,-28.660596 +2021,6,20,1,New South Wales,150.519877,-34.452583 +2021,5,13,1,New South Wales,150.51733,-34.439369 +2021,7,2,1,New South Wales,152.899098,-31.473979 +2020,11,3,1,New South Wales,149.988655,-36.56931 +2021,9,15,1,New South Wales,150.644436,-34.396347 +2022,2,17,1,New South Wales,150.940548,-34.11434 +2021,4,29,1,New South Wales,150.610213,-34.419124 +2021,4,22,1,New South Wales,150.63851,-34.422991 +2021,7,17,1,New South Wales,150.522476,-34.467024 +2021,7,6,1,New South Wales,150.521611,-34.465726 +2022,7,30,1,New South Wales,152.812239,-31.153342 +2022,7,14,1,New South Wales,153.104096,-29.479967 +2024,1,3,1,New South Wales,152.404017,-31.927499 +2021,6,24,1,New South Wales,150.644918,-34.391569 +2020,5,11,1,New South Wales,150.035213,-35.07081 +2021,6,13,1,New South Wales,150.521227,-34.4592 +2021,5,14,1,New South Wales,150.523702,-34.464218 +2021,9,21,1,New South Wales,150.607571,-34.450364 +2020,5,12,1,New South Wales,153.091822,-29.48791 +2021,6,6,1,New South Wales,150.635259,-34.488119 +2022,11,8,1,New South Wales,153.320399,-28.845128 +2020,10,19,1,New South Wales,153.3033,-28.821668 +2021,8,5,1,New South Wales,150.521959,-34.464606 +2022,8,31,1,New South Wales,153.314983,-28.949201 +2021,5,12,1,New South Wales,150.60458,-34.438883 +2021,5,7,1,New South Wales,150.603918,-34.427015 +2023,10,29,1,New South Wales,152.922343,-30.504111 +2020,10,18,1,New South Wales,149.887989,-36.587028 +2021,12,27,1,New South Wales,153.110544,-29.48983 +2020,11,13,1,New South Wales,150.01112,-36.547428 +2020,3,26,1,New South Wales,151.14366,-31.626872 +2021,5,31,1,New South Wales,150.6073,-34.437747 +2020,11,16,1,New South Wales,149.957744,-36.497148 +2020,7,30,1,New South Wales,152.797476,-31.125927 +2021,3,10,1,New South Wales,150.523256,-34.450929 +2021,6,12,1,New South Wales,150.521502,-34.459107 +2021,1,15,1,New South Wales,152.915821,-31.467856 +2021,6,12,1,New South Wales,150.521358,-34.459194 +2023,4,10,1,New South Wales,153.10799,-29.490409 +2023,2,27,1,New South Wales,153.185239,-28.889949 +2021,7,4,1,New South Wales,150.525601,-34.465491 +2023,4,9,1,New South Wales,152.904641,-29.593951 +2021,6,30,1,New South Wales,153.314983,-28.949201 +2021,9,13,1,New South Wales,153.085624,-30.326976 +2023,11,7,1,New South Wales,150.78524,-33.716966 +2023,1,1,1,New South Wales,153.395707,-28.66387 +2023,9,30,1,New South Wales,152.769597,-31.632675 +2022,8,31,1,New South Wales,153.314983,-28.949201 +2021,8,19,1,New South Wales,150.522234,-34.464531 +2021,6,6,1,New South Wales,150.61638,-34.43604 +2022,7,4,1,New South Wales,153.494983,-28.694361 +2020,10,27,1,New South Wales,153.352906,-28.83385 +2020,12,9,1,New South Wales,153.502222,-28.251271 +2020,10,14,1,New South Wales,149.947316,-36.607854 +2022,12,31,1,New South Wales,153.314983,-28.949201 +2021,7,11,1,New South Wales,150.599074,-34.411873 +2021,4,12,1,New South Wales,150.5341,-34.47851 +2021,5,28,1,New South Wales,150.527163,-34.46939 +2020,11,25,1,New South Wales,153.287996,-28.836062 +2023,10,31,1,New South Wales,152.189573,-32.226267 +2023,7,16,1,New South Wales,153.095899,-29.484628 +2024,2,6,1,New South Wales,152.226194,-31.425739 +2020,11,20,1,New South Wales,149.975174,-36.531199 +2022,5,23,1,New South Wales,153.103747,-29.485562 +2021,4,28,1,New South Wales,150.620042,-34.400897 +2020,11,24,1,New South Wales,153.342482,-28.805797 +2020,10,22,1,New South Wales,149.923643,-36.618562 +2022,10,17,1,New South Wales,152.064253,-32.70562 +2021,5,7,1,New South Wales,150.637301,-34.423788 +2020,10,26,1,New South Wales,153.364275,-28.834226 +2021,8,5,1,New South Wales,153.60155,-28.68121 +2023,7,6,1,New South Wales,152.904013,-30.521733 +2021,8,11,1,New South Wales,150.513949,-34.446981 +2021,6,7,1,New South Wales,153.39391,-28.959171 +2021,7,18,1,New South Wales,150.522724,-34.46747 +2021,6,4,1,New South Wales,150.534895,-34.463344 +2021,5,13,1,New South Wales,150.517406,-34.439361 +2023,10,20,1,New South Wales,150.786088,-33.711497 +2021,6,7,1,New South Wales,150.325643,-29.033804 +2021,6,16,1,New South Wales,150.516466,-34.459716 +2021,1,28,1,New South Wales,152.15428,-32.713792 +2021,5,2,1,New South Wales,150.637454,-34.423773 +2022,10,7,1,New South Wales,152.787573,-31.636396 +2021,3,19,1,New South Wales,150.609937,-34.430369 +2021,9,8,1,New South Wales,150.51298,-34.447349 +2023,5,5,1,New South Wales,152.911808,-30.867598 +2022,11,10,1,New South Wales,152.896282,-31.43633 +2020,10,6,1,New South Wales,153.057026,-30.361726 +2022,1,9,1,New South Wales,150.616316,-34.440979 +2021,11,18,1,New South Wales,153.320914,-28.840576 +2021,8,25,1,New South Wales,150.519948,-34.44649 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2021,5,12,1,New South Wales,150.637269,-34.423761 +2020,12,27,1,New South Wales,152.111973,-32.738085 +2021,4,28,1,New South Wales,150.616504,-34.429371 +2022,7,27,1,New South Wales,153.565628,-28.386819 +2023,11,14,1,New South Wales,152.919592,-31.470841 +2021,5,21,1,New South Wales,152.881873,-31.424601 +2020,8,23,1,New South Wales,153.592409,-28.635669 +2021,4,18,1,New South Wales,150.627655,-34.386304 +2020,10,14,1,New South Wales,153.103822,-29.485566 +2021,12,12,1,New South Wales,150.617329,-34.439791 +2023,11,18,1,New South Wales,153.105243,-29.489778 +2021,4,25,1,New South Wales,150.603846,-34.437526 +2020,10,31,1,New South Wales,149.967242,-36.561675 +2020,10,29,1,New South Wales,149.999247,-36.565645 +2021,4,6,1,New South Wales,150.517608,-34.446154 +2020,1,17,1,New South Wales,151.21098,-33.72181 +2020,9,21,1,New South Wales,152.912536,-31.447089 +2020,4,20,1,New South Wales,152.848395,-31.454602 +2021,1,26,1,New South Wales,153.103586,-29.485478 +2020,2,23,1,New South Wales,152.892379,-31.437899 +2020,10,5,1,New South Wales,152.199852,-31.867495 +2021,9,17,1,New South Wales,152.973743,-28.530684 +2022,8,1,1,New South Wales,153.100319,-29.500844 +2023,3,2,1,New South Wales,153.250676,-28.7646 +2021,4,23,1,New South Wales,150.604154,-34.42216 +2021,4,29,1,New South Wales,150.638762,-34.489395 +2023,7,9,1,New South Wales,153.074168,-30.886663 +2020,9,5,1,New South Wales,152.923338,-31.447023 +2023,7,16,1,New South Wales,153.075746,-28.555442 +2021,8,31,1,New South Wales,150.602451,-34.44673 +2021,5,1,1,New South Wales,150.616598,-34.435269 +2021,6,26,1,New South Wales,150.514232,-34.447347 +2021,3,8,1,New South Wales,150.603,-34.437049 +2023,9,7,1,New South Wales,152.415784,-31.937608 +2023,1,10,1,New South Wales,153.330186,-28.7244 +2023,7,26,1,New South Wales,149.899712,-31.10907 +2021,3,6,1,New South Wales,150.515086,-34.447897 +2024,3,3,1,New South Wales,152.246273,-29.543195 +2021,5,12,1,New South Wales,150.627294,-34.398297 +2023,8,8,1,New South Wales,153.096703,-29.486029 +2023,4,8,1,New South Wales,150.835357,-34.07024 +2023,9,4,1,New South Wales,149.3513,-36.16785 +2022,5,16,1,New South Wales,153.300297,-28.825142 +2022,7,4,1,New South Wales,153.109392,-30.298612 +2022,5,9,1,New South Wales,146.595473,-34.773121 +2023,9,29,1,New South Wales,152.929697,-31.466264 +2022,2,17,1,New South Wales,152.89174,-30.46122 +2023,7,5,1,New South Wales,152.750721,-31.643901 +2020,9,5,1,New South Wales,152.899572,-29.630855 +2021,8,30,1,New South Wales,150.644246,-34.394189 +2021,4,26,1,New South Wales,150.522507,-34.451599 +2021,7,31,1,New South Wales,153.430461,-29.019468 +2020,1,30,1,New South Wales,150.859648,-34.073391 +2021,4,28,1,New South Wales,150.603536,-34.427422 +2021,6,12,1,New South Wales,150.604672,-34.438335 +2020,8,26,1,New South Wales,152.896423,-31.443524 +2021,5,9,1,New South Wales,150.628069,-34.389729 +2021,3,9,1,New South Wales,150.52292,-34.450895 +2021,5,18,1,New South Wales,150.630963,-34.390074 +2021,6,4,1,New South Wales,150.623884,-34.388909 +2021,5,9,1,New South Wales,150.517049,-34.448126 +2021,2,23,1,New South Wales,150.609451,-34.420317 +2022,11,18,1,New South Wales,152.797565,-30.915154 +2022,1,16,1,New South Wales,152.118296,-32.766325 +2021,4,27,1,New South Wales,150.63564,-34.418248 +2021,11,27,1,New South Wales,153.103666,-29.48552 +2020,10,16,1,New South Wales,152.073059,-32.724707 +2020,4,14,1,New South Wales,151.897764,-32.465951 +2022,10,5,1,New South Wales,153.108113,-29.490278 +2023,2,28,1,New South Wales,153.314983,-28.949201 +2022,12,29,1,New South Wales,152.06347,-32.705503 +2021,6,6,1,New South Wales,150.519497,-34.456596 +2021,4,10,1,New South Wales,150.661866,-34.458204 +2021,7,31,1,New South Wales,153.109353,-29.490497 +2023,3,7,1,New South Wales,146.523293,-34.744263 +2022,11,27,1,New South Wales,152.777302,-30.885013 +2021,11,25,1,New South Wales,153.328401,-28.814762 +2021,6,20,1,New South Wales,150.628016,-34.420886 +2023,8,14,1,New South Wales,153.180586,-30.092113 +2021,4,29,1,New South Wales,150.616777,-34.399436 +2023,3,30,1,New South Wales,153.301335,-28.821349 +2022,12,16,1,New South Wales,152.865279,-31.284056 +2020,11,28,1,New South Wales,153.101864,-29.488844 +2024,4,24,1,New South Wales,150.990642,-34.026903 +2020,8,24,1,New South Wales,153.180055,-28.84707 +2022,5,1,1,New South Wales,152.244418,-30.05116 +2023,8,23,1,New South Wales,153.318205,-28.820654 +2021,10,14,1,New South Wales,153.296795,-28.889779 +2021,8,9,1,New South Wales,150.513121,-34.445891 +2021,5,7,1,New South Wales,150.627384,-34.390131 +2020,11,8,1,New South Wales,153.02234,-28.5838 +2023,7,10,1,New South Wales,152.8256,-30.286669 +2021,3,2,1,New South Wales,150.657866,-34.455684 +2020,11,5,1,New South Wales,152.915305,-31.433556 +2021,4,10,1,New South Wales,150.603353,-34.438778 +2020,10,31,1,New South Wales,149.938213,-36.559404 +2021,5,25,1,New South Wales,150.658869,-34.456371 +2024,1,16,1,New South Wales,150.787234,-33.703609 +2020,10,11,1,New South Wales,153.018941,-30.364789 +2020,1,4,1,New South Wales,153.097414,-29.491723 +2020,10,21,1,New South Wales,153.49683,-28.254577 +2021,5,4,1,New South Wales,150.603044,-34.427521 +2020,8,31,1,New South Wales,152.925633,-31.445399 +2023,1,5,1,New South Wales,153.072122,-30.881193 +2022,11,26,1,New South Wales,152.073059,-32.724707 +2021,10,26,1,New South Wales,153.01322,-30.41382 +2020,8,19,1,New South Wales,153.551948,-28.57084 +2021,1,16,1,New South Wales,152.94175,-30.494052 +2021,5,29,1,New South Wales,150.639111,-34.491304 +2021,8,5,1,New South Wales,150.627909,-34.389221 +2022,1,19,1,New South Wales,152.88542,-30.51746 +2021,6,27,1,New South Wales,150.644626,-34.392276 +2021,7,18,1,New South Wales,150.645998,-34.391419 +2021,10,11,1,New South Wales,153.293999,-28.864004 +2021,8,10,1,New South Wales,150.563856,-34.500349 +2022,12,19,1,New South Wales,152.908357,-31.442335 +2020,7,2,1,New South Wales,151.575024,-30.391757 +2020,12,30,1,New South Wales,152.036268,-32.727617 +2022,6,2,1,New South Wales,151.609718,-30.54727 +2022,9,26,1,New South Wales,153.103731,-29.48559 +2023,5,30,1,New South Wales,152.190148,-31.595366 +2020,11,30,1,New South Wales,152.039977,-32.730537 +2021,8,10,1,New South Wales,152.755429,-31.631952 +2023,11,26,1,New South Wales,153.104235,-29.489629 +2021,5,3,1,New South Wales,150.519315,-34.436984 +2022,7,2,1,New South Wales,152.062129,-32.70953 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2020,8,12,1,New South Wales,152.824856,-29.505641 +2022,10,31,1,New South Wales,153.485064,-28.680814 +2021,2,14,1,New South Wales,150.084886,-33.773407 +2022,7,31,1,New South Wales,153.314983,-28.949201 +2022,2,8,1,New South Wales,153.56029,-28.28575 +2022,8,11,1,New South Wales,150.9286,-33.95807 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2021,5,15,1,New South Wales,150.602887,-34.435289 +2021,1,31,1,New South Wales,153.314983,-28.949201 +2021,6,8,1,New South Wales,150.614977,-34.432586 +2021,9,15,1,New South Wales,150.608858,-34.452571 +2023,9,15,1,New South Wales,152.817524,-31.65301 +2023,1,4,1,New South Wales,152.812605,-31.576376 +2021,6,29,1,New South Wales,150.632237,-34.388467 +2020,11,6,1,New South Wales,150.010499,-36.556654 +2023,4,30,1,New South Wales,153.314983,-28.949201 +2022,1,21,1,New South Wales,153.601971,-28.647359 +2021,5,4,1,New South Wales,150.632696,-34.418903 +2021,6,12,1,New South Wales,150.612155,-34.432324 +2020,5,7,1,New South Wales,152.793681,-31.139654 +2020,12,3,1,New South Wales,152.896953,-30.17771 +2022,1,10,1,New South Wales,150.615796,-34.440888 +2021,4,29,1,New South Wales,150.606647,-34.435074 +2021,4,13,1,New South Wales,152.359003,-31.924406 +2021,3,25,1,New South Wales,150.51723,-34.451564 +2023,9,17,1,New South Wales,152.796061,-31.466512 +2021,7,1,1,New South Wales,150.076524,-33.749167 +2021,10,31,1,New South Wales,153.109589,-29.490297 +2024,7,16,1,New South Wales,152.694304,-30.752316 +2022,5,5,1,New South Wales,152.10253,-32.734327 +2021,4,18,1,New South Wales,151.014471,-34.047414 +2023,3,16,1,New South Wales,153.07189,-30.88453 +2021,7,2,1,New South Wales,152.41282,-31.932205 +2021,5,15,1,New South Wales,150.516265,-34.449246 +2021,2,14,1,New South Wales,153.601971,-28.647359 +2020,1,28,1,New South Wales,153.270156,-28.862716 +2021,10,23,1,New South Wales,152.87378,-31.479713 +2021,7,16,1,New South Wales,150.625119,-34.386742 +2021,4,30,1,New South Wales,150.616491,-34.429461 +2022,12,29,1,New South Wales,153.110506,-29.490124 +2020,1,9,1,New South Wales,150.809244,-34.099271 +2021,10,27,1,New South Wales,153.322765,-28.828705 +2021,3,7,1,New South Wales,150.603549,-34.435365 +2020,7,22,1,New South Wales,152.867911,-29.667382 +2021,12,7,1,New South Wales,153.104648,-29.477039 +2020,12,29,1,New South Wales,153.601971,-28.647359 +2023,3,21,1,New South Wales,153.393892,-28.958972 +2021,5,12,1,New South Wales,150.523747,-34.467464 +2020,5,31,1,New South Wales,152.928972,-31.459185 +2023,6,9,1,New South Wales,150.837921,-34.093742 +2021,9,30,1,New South Wales,153.314983,-28.949201 +2022,10,30,1,New South Wales,152.881409,-31.42923 +2022,7,29,1,New South Wales,152.762633,-31.63418 +2023,8,31,1,New South Wales,153.314983,-28.949201 +2020,12,4,1,New South Wales,149.972032,-36.288695 +2021,5,15,1,New South Wales,150.52762,-34.466443 +2021,9,29,1,New South Wales,152.881209,-31.427386 +2021,7,10,1,New South Wales,150.520292,-34.465762 +2020,6,3,1,New South Wales,153.299588,-28.904938 +2020,11,12,1,New South Wales,153.387929,-28.651872 +2020,2,29,1,New South Wales,153.323732,-28.826043 +2021,11,29,1,New South Wales,152.922761,-31.450523 +2022,11,19,1,New South Wales,152.794854,-30.893434 +2020,9,3,1,New South Wales,153.004941,-29.185265 +2020,1,31,1,New South Wales,153.314983,-28.949201 +2021,3,4,1,New South Wales,150.104854,-33.773481 +2020,4,17,1,New South Wales,153.092672,-29.49445 +2022,12,7,1,New South Wales,152.786397,-31.629606 +2023,1,20,1,New South Wales,152.907216,-31.454326 +2021,7,15,1,New South Wales,150.625163,-34.386752 +2020,10,19,1,New South Wales,152.78519,-31.631277 +2023,9,25,1,New South Wales,153.27253,-28.931499 +2021,6,21,1,New South Wales,150.520054,-34.453605 +2021,4,15,1,New South Wales,150.519232,-34.4652 +2023,10,30,1,New South Wales,150.785086,-33.713869 +2021,7,4,1,New South Wales,150.627046,-34.420957 +2021,9,28,1,New South Wales,153.244711,-28.878209 +2021,4,22,1,New South Wales,150.631197,-34.387554 +2021,6,6,1,New South Wales,150.532725,-34.458667 +2023,12,3,1,New South Wales,152.707442,-31.422255 +2020,2,27,1,New South Wales,152.877735,-31.423355 +2022,2,22,1,New South Wales,152.809615,-28.471333 +2021,5,29,1,New South Wales,150.518199,-34.451908 +2023,3,24,1,New South Wales,152.405625,-31.930397 +2023,10,10,1,New South Wales,153.092347,-29.488331 +2020,11,25,1,New South Wales,153.287996,-28.836062 +2021,5,17,1,New South Wales,150.604281,-34.437931 +2020,1,15,1,New South Wales,153.515677,-28.688354 +2023,8,23,1,New South Wales,152.24197,-32.22562 +2021,7,21,1,New South Wales,150.517475,-34.448423 +2023,6,17,1,New South Wales,153.109401,-29.490446 +2021,6,9,1,New South Wales,150.517958,-34.447567 +2021,6,5,1,New South Wales,150.623577,-34.38938 +2021,10,31,1,New South Wales,153.314983,-28.949201 +2024,4,27,1,New South Wales,152.7935,-31.6386 +2023,4,29,1,New South Wales,153.299519,-28.821485 +2023,9,30,1,New South Wales,152.924975,-31.4458 +2021,5,7,1,New South Wales,153.53859,-28.51027 +2021,4,29,1,New South Wales,150.62447,-34.388154 +2021,5,14,1,New South Wales,150.616423,-34.43531 +2022,10,15,1,New South Wales,152.950438,-30.417019 +2023,8,14,1,New South Wales,153.095325,-29.483983 +2022,8,2,1,New South Wales,153.104165,-29.478809 +2022,10,31,1,New South Wales,153.314983,-28.949201 +2021,10,2,1,New South Wales,152.072182,-32.747836 +2020,4,1,1,New South Wales,152.799788,-31.123738 +2022,4,2,1,New South Wales,150.96868,-34.121103 +2020,10,28,1,New South Wales,153.335481,-28.869015 +2022,7,31,1,New South Wales,153.314983,-28.949201 +2021,10,7,1,New South Wales,152.737543,-30.125115 +2020,1,3,1,New South Wales,153.103961,-29.484791 +2021,2,6,1,New South Wales,152.811316,-29.514635 +2023,8,31,1,New South Wales,153.314983,-28.949201 +2024,2,1,1,New South Wales,153.108113,-29.490217 +2023,5,23,1,New South Wales,153.370716,-29.088043 +2023,8,31,1,New South Wales,153.103092,-29.489358 +2022,8,12,1,New South Wales,150.88535,-34.033901 +2020,10,13,1,New South Wales,152.789011,-30.173984 +2023,7,1,1,New South Wales,153.10115,-29.489839 +2021,7,31,1,New South Wales,153.314983,-28.949201 +2022,12,6,1,New South Wales,152.978594,-31.187417 +2021,4,21,1,New South Wales,150.636409,-34.485563 +2022,2,23,1,New South Wales,151.923948,-31.97337 +2021,8,10,1,New South Wales,152.432247,-31.791377 +2020,3,2,1,New South Wales,150.79471,-33.50547 +2020,2,8,1,New South Wales,152.906923,-31.44689 +2023,12,13,1,New South Wales,152.926445,-31.466745 +2021,5,28,1,New South Wales,150.639094,-34.491493 +2022,2,7,1,New South Wales,151.627167,-30.492588 +2021,6,18,1,New South Wales,150.519053,-34.459823 +2021,2,26,1,New South Wales,152.918144,-31.485161 +2021,9,2,1,New South Wales,150.524155,-34.462866 +2020,1,23,1,New South Wales,153.103961,-29.489526 +2021,5,6,1,New South Wales,150.638687,-34.490872 +2021,11,9,1,New South Wales,150.616239,-34.440626 +2021,8,14,1,New South Wales,150.89266,-33.991958 +2022,8,2,1,New South Wales,153.337149,-28.815997 +2021,6,18,1,New South Wales,150.642979,-34.39476 +2021,4,14,1,New South Wales,150.635905,-34.394154 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,6,6,1,New South Wales,150.626643,-34.389025 +2021,5,5,1,New South Wales,150.622973,-34.397266 +2021,8,22,1,New South Wales,150.518431,-34.447018 +2021,6,5,1,New South Wales,151.6662,-30.501562 +2021,6,1,1,New South Wales,150.524934,-34.453442 +2021,5,7,1,New South Wales,150.603912,-34.427204 +2020,10,6,1,New South Wales,152.922473,-31.473405 +2022,3,14,1,New South Wales,153.323145,-28.835219 +2021,3,25,1,New South Wales,153.266981,-28.920453 +2023,8,14,1,New South Wales,153.302315,-28.846528 +2023,1,31,1,New South Wales,153.314983,-28.949201 +2020,10,26,1,New South Wales,153.364275,-28.834226 +2022,7,16,1,New South Wales,152.37932,-31.919786 +2022,11,30,1,New South Wales,153.314983,-28.949201 +2020,1,21,1,New South Wales,152.897871,-31.466808 +2020,10,26,1,New South Wales,153.364275,-28.834226 +2022,11,19,1,New South Wales,152.794854,-30.893434 +2021,6,13,1,New South Wales,150.604649,-34.438362 +2021,5,4,1,New South Wales,150.51607,-34.447385 +2021,3,10,1,New South Wales,153.29874,-28.818698 +2023,11,10,1,New South Wales,150.991888,-34.088098 +2021,7,12,1,New South Wales,150.626997,-34.420767 +2022,2,7,1,New South Wales,152.062936,-32.707434 +2024,6,13,1,New South Wales,152.896128,-31.433236 +2021,5,31,1,New South Wales,150.607179,-34.437798 +2020,12,12,1,New South Wales,152.926375,-31.454442 +2021,6,12,1,New South Wales,150.522261,-34.46582 +2021,5,13,1,New South Wales,150.604614,-34.438848 +2022,5,16,1,New South Wales,152.914995,-31.467438 +2022,3,31,1,New South Wales,150.932322,-29.679519 +2021,4,30,1,New South Wales,150.606891,-34.454363 +2022,8,30,1,New South Wales,149.319131,-36.299131 +2022,11,19,1,New South Wales,152.794854,-30.893434 +2023,5,30,1,New South Wales,152.190379,-31.594321 +2022,11,28,1,New South Wales,152.794854,-30.893434 +2023,3,6,1,New South Wales,153.096044,-29.484838 +2023,5,13,1,New South Wales,153.540173,-28.620621 +2022,1,24,1,New South Wales,153.103645,-29.485861 +2020,12,5,1,New South Wales,152.912654,-31.475782 +2021,5,21,1,New South Wales,150.598819,-34.428763 +2021,4,17,1,New South Wales,150.528472,-34.464837 +2021,11,16,1,New South Wales,152.826098,-29.812123 +2021,2,21,1,New South Wales,153.184589,-28.888911 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2021,5,22,1,New South Wales,150.597843,-34.427897 +2023,1,2,1,New South Wales,153.27934,-28.43501 +2022,9,15,1,New South Wales,150.520621,-34.539831 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2021,12,10,1,New South Wales,153.293115,-28.864682 +2021,5,20,1,New South Wales,150.515364,-34.450994 +2021,9,9,1,New South Wales,152.0728,-32.710594 +2021,4,15,1,New South Wales,150.518785,-34.444988 +2022,8,7,1,New South Wales,153.273234,-28.454834 +2022,8,1,1,New South Wales,150.794827,-34.139925 +2022,8,8,1,New South Wales,153.513619,-28.688896 +2023,5,20,1,New South Wales,153.10409,-29.477931 +2020,12,9,1,New South Wales,152.415641,-31.93348 +2020,1,13,1,New South Wales,153.49698,-28.54694 +2020,10,29,1,New South Wales,149.977333,-36.564828 +2021,9,14,1,New South Wales,152.92532,-31.478614 +2021,4,28,1,New South Wales,150.604584,-34.45283 +2020,10,30,1,New South Wales,149.977333,-36.564828 +2021,5,25,1,New South Wales,150.517345,-34.45208 +2021,9,3,1,New South Wales,150.535411,-34.497603 +2022,10,26,1,New South Wales,146.565443,-34.757484 +2021,5,6,1,New South Wales,150.519543,-34.468659 +2021,5,5,1,New South Wales,150.51955,-34.468785 +2021,9,24,1,New South Wales,152.917884,-31.460468 +2022,9,30,1,New South Wales,153.314983,-28.949201 +2021,8,4,1,New South Wales,150.626189,-34.39008 +2021,4,27,1,New South Wales,152.902544,-31.441789 +2021,6,1,1,New South Wales,150.616529,-34.438089 +2021,9,22,1,New South Wales,153.417286,-28.872591 +2023,6,25,1,New South Wales,153.104187,-29.483185 +2022,11,24,1,New South Wales,152.797565,-30.915154 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2023,1,12,1,New South Wales,152.825072,-31.175471 +2023,3,27,1,New South Wales,152.922566,-31.442336 +2020,1,8,1,New South Wales,152.922735,-31.459431 +2023,10,26,1,New South Wales,150.2237,-34.36645 +2021,6,20,1,New South Wales,150.627884,-34.420919 +2021,5,6,1,New South Wales,150.609225,-34.420592 +2021,5,18,1,New South Wales,150.520955,-34.45402 +2022,2,10,1,New South Wales,153.610517,-28.641912 +2021,8,8,1,New South Wales,150.517061,-34.436334 +2022,6,21,1,New South Wales,153.067923,-28.58182 +2021,4,6,1,New South Wales,150.517608,-34.446154 +2023,1,31,1,New South Wales,153.301618,-28.81838 +2021,6,7,1,New South Wales,150.641544,-34.395534 +2021,4,29,1,New South Wales,150.527441,-34.469558 +2020,11,2,1,New South Wales,149.977333,-36.564828 +2021,6,19,1,New South Wales,150.519181,-34.459907 +2022,8,18,1,New South Wales,150.859776,-34.03093 +2021,6,10,1,New South Wales,150.630279,-34.420866 +2021,5,7,1,New South Wales,153.401769,-28.259955 +2020,10,20,1,New South Wales,153.273941,-28.820088 +2022,9,30,1,New South Wales,150.897398,-33.993665 +2020,2,9,1,New South Wales,153.328328,-28.941153 +2021,5,19,1,New South Wales,150.63145,-34.387847 +2021,11,4,1,New South Wales,153.62828,-28.63718 +2020,4,23,1,New South Wales,152.913733,-31.428725 +2021,6,27,1,New South Wales,150.522191,-34.464142 +2020,8,22,1,New South Wales,153.103637,-29.485488 +2022,7,19,1,New South Wales,152.91347,-31.476855 +2021,4,24,1,New South Wales,150.638353,-34.485745 +2021,5,11,1,New South Wales,150.519119,-34.436619 +2023,5,10,1,New South Wales,149.955109,-36.55432 +2022,12,26,1,New South Wales,151.913679,-31.974702 +2021,12,10,1,New South Wales,153.454494,-28.664505 +2023,6,3,1,New South Wales,153.279661,-28.831073 +2021,7,19,1,New South Wales,150.627995,-34.420489 +2021,4,16,1,New South Wales,150.627458,-34.386318 +2024,1,23,1,New South Wales,152.139868,-32.040001 +2021,8,30,1,New South Wales,153.103983,-29.484492 +2021,5,2,1,New South Wales,150.63741,-34.42379 +2020,7,11,1,New South Wales,153.104101,-29.485263 +2021,1,27,1,New South Wales,149.549861,-33.563257 +2021,5,4,1,New South Wales,153.552253,-28.586547 +2021,3,21,1,New South Wales,150.53461,-34.462293 +2021,9,5,1,New South Wales,150.5975,-34.450527 +2021,9,29,1,New South Wales,150.813678,-34.104761 +2022,12,20,1,New South Wales,150.738271,-34.306245 +2021,5,13,1,New South Wales,150.633252,-34.417679 +2021,10,9,1,New South Wales,153.042529,-28.469144 +2021,3,7,1,New South Wales,150.615849,-34.432901 +2021,7,23,1,New South Wales,152.045481,-32.766559 +2021,5,19,1,New South Wales,150.608975,-34.434344 +2021,4,27,1,New South Wales,150.624172,-34.388698 +2021,5,8,1,New South Wales,150.604833,-34.426582 +2023,6,28,1,New South Wales,151.901331,-32.194045 +2022,9,11,1,New South Wales,152.916615,-31.474294 +2021,6,3,1,New South Wales,150.522434,-34.465851 +2020,11,20,1,New South Wales,152.81706,-31.261588 +2023,9,8,1,New South Wales,152.880425,-31.427597 +2022,7,28,1,New South Wales,152.815374,-31.150922 +2021,5,28,1,New South Wales,153.59019,-28.65505 +2021,6,30,1,New South Wales,150.513032,-34.44781 +2021,8,13,1,New South Wales,150.632509,-34.418178 +2023,5,28,1,New South Wales,152.899236,-29.631379 +2023,10,4,1,New South Wales,150.782857,-33.719494 +2021,6,4,1,New South Wales,150.607152,-34.435697 +2021,8,11,1,New South Wales,150.603559,-34.426629 +2020,11,1,1,New South Wales,149.96897,-36.58553 +2021,4,20,1,New South Wales,150.630574,-34.386911 +2021,6,2,1,New South Wales,150.604825,-34.427231 +2020,11,17,1,New South Wales,149.957744,-36.497148 +2021,4,22,1,New South Wales,150.637894,-34.422835 +2020,11,3,1,New South Wales,149.976368,-36.555504 +2021,3,3,1,New South Wales,150.521561,-34.45524 +2024,3,25,1,New South Wales,152.06373,-32.70658 +2021,5,31,1,New South Wales,150.630894,-34.420671 +2020,12,3,1,New South Wales,153.608327,-28.689888 +2021,6,18,1,New South Wales,150.603773,-34.426733 +2021,4,19,1,New South Wales,150.64002,-34.41533 +2021,5,8,1,New South Wales,150.516668,-34.447018 +2021,4,21,1,New South Wales,150.610263,-34.418908 +2021,6,30,1,New South Wales,150.642544,-34.395527 +2023,8,31,1,New South Wales,153.314983,-28.949201 +2021,8,17,1,New South Wales,150.518437,-34.442042 +2021,7,20,1,New South Wales,150.623366,-34.383381 +2021,7,16,1,New South Wales,150.6273,-34.421214 +2020,11,1,1,New South Wales,149.96897,-36.58553 +2020,10,31,1,New South Wales,153.314983,-28.949201 +2021,3,20,1,New South Wales,150.534666,-34.462231 +2021,9,24,1,New South Wales,153.320914,-28.840576 +2022,9,13,1,New South Wales,152.88655,-31.169705 +2021,5,4,1,New South Wales,150.632751,-34.418877 +2022,6,26,1,New South Wales,153.398424,-28.957721 +2020,4,10,1,New South Wales,152.411416,-31.20955 +2023,10,13,1,New South Wales,150.78488,-33.715847 +2022,11,24,1,New South Wales,153.159345,-28.924729 +2020,5,11,1,New South Wales,152.92085,-31.464543 +2021,5,13,1,New South Wales,150.616894,-34.434788 +2020,11,2,1,New South Wales,149.984303,-36.560469 +2021,8,7,1,New South Wales,153.40048,-28.256235 +2022,5,3,1,New South Wales,153.300295,-28.825033 +2020,11,5,1,New South Wales,152.925607,-31.452436 +2023,8,5,1,New South Wales,151.253226,-33.162369 +2022,10,12,1,New South Wales,153.116109,-28.561962 +2023,4,15,1,New South Wales,152.899582,-31.473907 +2021,6,8,1,New South Wales,150.52301,-34.466268 +2021,6,10,1,New South Wales,150.518252,-34.453442 +2021,6,18,1,New South Wales,150.622411,-34.384084 +2020,5,2,1,New South Wales,152.410246,-31.93345 +2021,6,14,1,New South Wales,150.60567,-34.437282 +2021,6,15,1,New South Wales,150.524122,-34.452182 +2020,9,24,1,New South Wales,152.898251,-31.44356 +2023,2,7,1,New South Wales,152.92979,-29.732341 +2020,4,24,1,New South Wales,152.894534,-31.415053 +2021,6,6,1,New South Wales,150.640151,-34.398645 +2020,9,2,1,New South Wales,152.01567,-32.72457 +2021,6,4,1,New South Wales,150.53471,-34.459266 +2020,7,11,1,New South Wales,153.103795,-29.485548 +2020,7,22,1,New South Wales,153.453433,-28.651578 +2022,11,18,1,New South Wales,152.794854,-30.893434 +2024,2,28,1,New South Wales,152.066519,-32.70769 +2023,3,24,1,New South Wales,152.94256,-30.493529 +2022,10,15,1,New South Wales,153.027589,-28.678126 +2024,4,29,1,New South Wales,152.872548,-31.462891 +2020,3,22,1,New South Wales,152.867846,-29.667546 +2021,5,14,1,New South Wales,150.629,-34.389513 +2022,8,1,1,New South Wales,150.796366,-34.14064 +2020,12,17,1,New South Wales,153.475131,-28.3123 +2024,4,23,1,New South Wales,150.47221,-34.49196 +2021,6,15,1,New South Wales,150.52042,-34.465855 +2020,6,28,1,New South Wales,152.039334,-32.729661 +2022,11,7,1,New South Wales,153.304528,-28.822093 +2021,6,3,1,New South Wales,150.606732,-34.437817 +2022,11,23,1,New South Wales,152.760068,-30.904021 +2021,5,25,1,New South Wales,150.63156,-34.387813 +2020,11,16,1,New South Wales,151.6662,-30.501562 +2023,9,14,1,New South Wales,150.786714,-33.711199 +2021,10,20,1,New South Wales,153.402083,-28.259763 +2021,7,2,1,New South Wales,150.513123,-34.447298 +2021,5,9,1,New South Wales,150.519406,-34.451212 +2024,7,16,1,New South Wales,152.592682,-31.795077 +2023,3,31,1,New South Wales,153.314983,-28.949201 +2021,8,1,1,New South Wales,150.601975,-34.424939 +2021,5,17,1,New South Wales,153.556057,-28.398547 +2021,4,25,1,New South Wales,150.605456,-34.423818 +2022,11,17,1,New South Wales,153.49024,-28.679852 +2021,11,30,1,New South Wales,153.314983,-28.949201 +2021,4,5,1,New South Wales,150.60709,-34.429836 +2022,11,28,1,New South Wales,152.795899,-30.884771 +2021,6,7,1,New South Wales,150.518659,-34.44741 +2021,5,8,1,New South Wales,150.621384,-34.398065 +2021,8,26,1,New South Wales,152.422603,-31.904256 +2021,6,15,1,New South Wales,150.602925,-34.45186 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2021,9,27,1,New South Wales,153.39821,-28.648599 +2022,8,21,1,New South Wales,152.919227,-31.474477 +2021,8,16,1,New South Wales,153.101156,-29.490063 +2023,3,9,1,New South Wales,153.558467,-28.673442 +2022,3,15,1,New South Wales,153.108205,-29.490222 +2021,9,29,1,New South Wales,153.10379,-29.485571 +2022,10,15,1,New South Wales,149.820828,-29.463426 +2024,6,16,1,New South Wales,152.077276,-32.722423 +2020,12,18,1,New South Wales,153.285105,-29.000226 +2021,5,4,1,New South Wales,150.605495,-34.437333 +2021,5,15,1,New South Wales,150.520432,-34.454054 +2021,7,12,1,New South Wales,153.316168,-28.837019 +2021,8,4,1,New South Wales,153.371651,-28.901369 +2022,1,13,1,New South Wales,152.90963,-31.428902 +2023,12,4,1,New South Wales,153.094949,-29.480983 +2022,3,30,1,New South Wales,153.340596,-28.902241 +2023,6,7,1,New South Wales,152.161756,-32.646741 +2022,11,28,1,New South Wales,153.428712,-28.974463 +2022,8,30,1,New South Wales,149.325428,-36.292153 +2021,8,19,1,New South Wales,153.395236,-28.95949 +2021,10,6,1,New South Wales,152.920712,-31.463244 +2021,6,8,1,New South Wales,150.629742,-34.42064 +2020,10,7,1,New South Wales,152.867395,-31.306784 +2021,7,7,1,New South Wales,150.64142,-34.395667 +2021,10,8,1,New South Wales,149.266987,-36.188613 +2021,5,4,1,New South Wales,150.6032,-34.427749 +2021,5,10,1,New South Wales,150.632753,-34.418029 +2022,11,24,1,New South Wales,153.545166,-28.733376 +2021,4,3,1,New South Wales,150.522853,-34.450957 +2021,8,2,1,New South Wales,150.64857,-34.402134 +2021,2,17,1,New South Wales,152.03904,-32.73749 +2022,6,25,1,New South Wales,153.40217,-28.259712 +2022,10,5,1,New South Wales,152.462945,-32.40625 +2021,6,15,1,New South Wales,150.611467,-34.430895 +2021,7,21,1,New South Wales,150.630742,-34.420677 +2021,5,4,1,New South Wales,150.521832,-34.466343 +2021,5,13,1,New South Wales,150.604326,-34.427582 +2021,9,28,1,New South Wales,152.065691,-32.743065 +2024,1,1,1,New South Wales,150.659476,-33.52695 +2021,4,24,1,New South Wales,150.521422,-34.46657 +2021,6,23,1,New South Wales,150.513826,-34.446338 +2020,3,23,1,New South Wales,152.808919,-31.136321 +2020,11,8,1,New South Wales,149.682001,-33.54208 +2021,6,16,1,New South Wales,150.660173,-34.455665 +2022,2,17,1,New South Wales,153.204194,-28.882861 +2021,4,25,1,New South Wales,150.609402,-34.418972 +2023,1,6,1,New South Wales,153.103505,-29.48545 +2021,7,19,1,New South Wales,150.623107,-34.383692 +2020,9,2,1,New South Wales,152.913498,-31.48567 +2023,9,13,1,New South Wales,153.394746,-28.275477 +2021,9,17,1,New South Wales,150.97432,-34.101945 +2022,12,7,1,New South Wales,153.558179,-28.393781 +2022,8,5,1,New South Wales,153.23033,-28.889525 +2021,6,17,1,New South Wales,150.65964,-34.455276 +2021,6,16,1,New South Wales,150.522523,-34.451789 +2021,6,14,1,New South Wales,150.630022,-34.420717 +2021,5,27,1,New South Wales,150.51605,-34.449503 +2021,8,6,1,New South Wales,153.56178,-28.642771 +2023,9,27,1,New South Wales,153.449713,-28.711485 +2020,6,30,1,New South Wales,152.811588,-31.156506 +2020,10,23,1,New South Wales,149.988655,-36.56931 +2021,8,5,1,New South Wales,150.521928,-34.46456 +2024,6,23,1,New South Wales,152.077233,-32.722432 +2020,6,10,1,New South Wales,152.864466,-31.466953 +2020,11,30,1,New South Wales,152.645868,-31.134489 +2020,12,13,1,New South Wales,153.37723,-28.253671 +2021,4,26,1,New South Wales,150.602031,-34.425662 +2022,2,16,1,New South Wales,153.104374,-29.477072 +2021,7,14,1,New South Wales,150.626783,-34.385972 +2021,4,26,1,New South Wales,150.609511,-34.418948 +2021,5,15,1,New South Wales,150.63323,-34.418471 +2022,8,16,1,New South Wales,153.103977,-29.485305 +2022,2,17,1,New South Wales,152.32559,-29.914054 +2023,2,8,1,New South Wales,153.315853,-28.849918 +2023,8,13,1,New South Wales,153.297906,-28.900041 +2023,2,19,1,New South Wales,153.477854,-28.415444 +2021,5,2,1,New South Wales,150.625991,-34.39014 +2021,7,17,1,New South Wales,150.516056,-34.443805 +2021,12,5,1,New South Wales,153.378654,-28.255627 +2021,10,8,1,New South Wales,153.15582,-28.580872 +2021,12,21,1,New South Wales,150.615627,-34.440704 +2021,4,29,1,New South Wales,150.605877,-34.454451 +2020,12,9,1,New South Wales,150.100633,-33.77797 +2021,5,7,1,New South Wales,150.523146,-34.45246 +2021,9,19,1,New South Wales,153.481476,-28.24765 +2021,5,12,1,New South Wales,150.62781,-34.397378 +2020,12,29,1,New South Wales,153.108221,-29.490217 +2021,8,6,1,New South Wales,150.516451,-34.440379 +2021,8,31,1,New South Wales,153.314983,-28.949201 +2021,8,20,1,New South Wales,150.645177,-34.3994 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2021,10,24,1,New South Wales,150.549897,-34.462307 +2021,2,28,1,New South Wales,153.314983,-28.949201 +2021,8,31,1,New South Wales,153.314983,-28.949201 +2023,9,20,1,New South Wales,150.49613,-34.52395 +2021,10,11,1,New South Wales,152.065493,-32.710418 +2021,8,31,1,New South Wales,153.314983,-28.949201 +2021,10,11,1,New South Wales,153.294297,-28.863788 +2022,12,2,1,New South Wales,152.421401,-31.946553 +2023,1,1,1,New South Wales,151.759453,-32.525553 +2022,1,13,1,New South Wales,152.063551,-32.706396 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2021,11,24,1,New South Wales,150.813678,-34.104761 +2021,5,27,1,New South Wales,150.516094,-34.449495 +2022,1,21,1,New South Wales,153.35706,-28.66967 +2020,6,21,1,New South Wales,151.067992,-34.039417 +2021,6,7,1,New South Wales,150.616597,-34.435683 +2021,3,19,1,New South Wales,150.516953,-34.446204 +2021,10,31,1,New South Wales,153.317176,-28.826895 +2021,10,8,1,New South Wales,150.9721,-34.100033 +2020,8,3,1,New South Wales,152.797643,-31.125972 +2021,8,25,1,New South Wales,150.606599,-34.444404 +2021,8,17,1,New South Wales,150.9721,-34.100033 +2021,9,24,1,New South Wales,152.824652,-31.256609 +2021,9,30,1,New South Wales,153.430075,-28.951623 +2022,11,17,1,New South Wales,152.794854,-30.893434 +2022,8,23,1,New South Wales,152.060186,-32.710565 +2022,5,13,1,New South Wales,152.904325,-31.444798 +2020,5,5,1,New South Wales,150.05334,-34.90719 +2022,11,18,1,New South Wales,152.794854,-30.893434 +2024,4,15,1,New South Wales,152.961398,-31.252531 +2020,10,26,1,New South Wales,151.6662,-30.501562 +2020,3,29,1,New South Wales,150.103174,-33.776569 +2021,6,7,1,New South Wales,150.629759,-34.420802 +2021,5,22,1,New South Wales,150.631236,-34.388114 +2020,10,29,1,New South Wales,149.96897,-36.58553 +2021,5,20,1,New South Wales,150.630283,-34.395281 +2021,5,26,1,New South Wales,150.517154,-34.453762 +2021,9,8,1,New South Wales,150.643766,-34.393449 +2020,8,11,1,New South Wales,153.104168,-29.485067 +2021,2,3,1,New South Wales,152.865711,-29.687054 +2020,9,22,1,New South Wales,152.851464,-29.692524 +2022,11,11,1,New South Wales,152.065095,-32.706601 +2021,11,5,1,New South Wales,152.930439,-30.224291 +2021,7,26,1,New South Wales,150.219332,-33.272422 +2023,9,21,1,New South Wales,152.607777,-30.341478 +2023,10,14,1,New South Wales,152.373765,-31.91533 +2022,11,21,1,New South Wales,152.784299,-30.842983 +2021,5,22,1,New South Wales,150.630764,-34.42066 +2021,8,17,1,New South Wales,150.607191,-34.431253 +2021,7,5,1,New South Wales,150.975603,-34.086966 +2022,11,9,1,New South Wales,153.279543,-28.830881 +2022,8,14,1,New South Wales,152.422603,-31.904256 +2021,4,20,1,New South Wales,150.606669,-34.434678 +2021,1,31,1,New South Wales,152.137878,-32.71888 +2020,9,12,1,New South Wales,153.103709,-29.48569 +2021,8,6,1,New South Wales,150.522262,-34.464693 +2020,10,6,1,New South Wales,152.894418,-31.447732 +2021,11,6,1,New South Wales,152.926281,-31.455827 +2020,2,7,1,New South Wales,149.374998,-36.155372 +2024,4,3,1,New South Wales,152.900722,-31.409189 +2020,9,24,1,New South Wales,153.295193,-28.821001 +2022,3,30,1,New South Wales,150.727939,-34.237888 +2021,8,26,1,New South Wales,150.521467,-34.465786 +2021,5,23,1,New South Wales,150.630829,-34.420679 +2022,8,5,1,New South Wales,152.108521,-32.738669 +2022,6,25,1,New South Wales,152.929924,-31.461236 +2021,6,7,1,New South Wales,150.615481,-34.432849 +2020,5,28,1,New South Wales,149.364908,-36.041221 +2020,1,22,1,New South Wales,152.814717,-31.394657 +2022,7,10,1,New South Wales,153.101242,-29.489974 +2021,8,29,1,New South Wales,152.91099,-31.478922 +2021,6,27,1,New South Wales,150.644948,-34.391254 +2024,1,4,1,New South Wales,152.337163,-32.302588 +2021,5,10,1,New South Wales,150.521566,-34.46687 +2021,11,7,1,New South Wales,150.61624,-34.437525 +2021,5,15,1,New South Wales,150.602493,-34.436516 +2023,12,30,1,New South Wales,152.869727,-31.470013 +2020,10,1,1,New South Wales,152.00455,-32.72723 +2020,9,16,1,New South Wales,153.597196,-28.6767 +2021,1,9,1,New South Wales,153.10931,-29.490703 +2024,6,17,1,New South Wales,153.413409,-29.031382 +2021,6,3,1,New South Wales,150.535565,-34.462375 +2021,9,13,1,New South Wales,149.790872,-32.382252 +2021,5,22,1,New South Wales,150.63091,-34.388486 +2023,3,3,1,New South Wales,153.11049,-29.490222 +2024,1,12,1,New South Wales,152.374394,-31.91144 +2020,11,26,1,New South Wales,152.060844,-32.710711 +2021,4,1,1,New South Wales,153.228485,-28.890175 +2021,6,26,1,New South Wales,150.605099,-34.450415 +2020,9,21,1,New South Wales,152.061622,-32.71098 +2023,12,23,1,New South Wales,152.928763,-31.459574 +2021,2,23,1,New South Wales,150.606624,-34.422137 +2022,2,19,1,New South Wales,153.434417,-28.971371 +2021,3,13,1,New South Wales,153.09062,-30.34737 +2021,3,24,1,New South Wales,153.297633,-28.93905 +2020,10,22,1,New South Wales,150.646441,-33.553714 +2021,6,29,1,New South Wales,150.522435,-34.465824 +2023,12,14,1,New South Wales,153.102797,-29.497716 +2022,8,25,1,New South Wales,150.891921,-34.018345 +2022,12,21,1,New South Wales,152.876586,-31.459273 +2022,8,2,1,New South Wales,150.793836,-34.137544 +2023,10,27,1,New South Wales,150.786179,-33.709692 +2021,4,26,1,New South Wales,150.615919,-34.436184 +2023,6,3,1,New South Wales,153.279103,-28.874212 +2023,5,6,1,New South Wales,153.100383,-29.488639 +2021,4,21,1,New South Wales,150.632952,-34.392817 +2024,1,7,1,New South Wales,152.382794,-31.92926 +2020,3,6,1,New South Wales,153.075322,-30.18664 +2021,9,21,1,New South Wales,151.698977,-32.68724 +2021,12,28,1,New South Wales,153.110549,-29.489848 +2022,11,17,1,New South Wales,152.794854,-30.893434 +2021,3,22,1,New South Wales,150.603791,-34.439454 +2021,5,29,1,New South Wales,150.639055,-34.491339 +2021,5,29,1,New South Wales,150.523973,-34.452458 +2023,6,1,1,New South Wales,153.43048,-28.600266 +2020,5,4,1,New South Wales,152.464706,-28.292708 +2024,2,25,1,New South Wales,150.861647,-29.609166 +2021,5,31,1,New South Wales,150.638504,-34.491202 +2020,9,,1,New South Wales,152.82921,-31.26336 +2020,5,29,1,New South Wales,152.41169,-31.935763 +2021,9,10,1,New South Wales,150.980864,-34.128057 +2021,10,27,1,New South Wales,152.905505,-31.437365 +2020,11,25,1,New South Wales,153.287996,-28.836062 +2022,7,12,1,New South Wales,152.897393,-31.474725 +2023,8,24,1,New South Wales,150.759571,-34.192686 +2023,12,9,1,New South Wales,150.78443,-33.716325 +2021,4,2,1,New South Wales,153.359413,-28.658223 +2022,10,5,1,New South Wales,153.002438,-30.410188 +2021,5,12,1,New South Wales,150.517291,-34.447662 +2022,8,21,1,New South Wales,150.879587,-34.01438 +2021,5,21,1,New South Wales,150.515227,-34.451587 +2021,7,1,1,New South Wales,150.640122,-34.396985 +2021,2,8,1,New South Wales,151.956732,-32.649601 +2023,9,2,1,New South Wales,151.209231,-32.78742 +2021,3,30,1,New South Wales,150.607665,-34.422283 +2021,8,10,1,New South Wales,150.78996,-34.207227 +2024,1,16,1,New South Wales,152.165315,-31.701901 +2021,5,14,1,New South Wales,150.526518,-34.46432 +2022,9,24,1,New South Wales,153.10122,-29.490072 +2022,7,10,1,New South Wales,152.421401,-31.946553 +2021,10,5,1,New South Wales,153.104594,-29.47724 +2021,6,21,1,New South Wales,150.624455,-34.38525 +2024,2,18,1,New South Wales,152.075946,-32.723251 +2022,11,20,1,New South Wales,153.313005,-28.823549 +2021,7,5,1,New South Wales,150.627268,-34.420781 +2020,9,22,1,New South Wales,150.11874,-31.09702 +2021,5,9,1,New South Wales,150.609264,-34.420746 +2023,9,5,1,New South Wales,153.316393,-28.827525 +2021,9,13,1,New South Wales,152.892687,-31.437502 +2021,6,19,1,New South Wales,150.622387,-34.384534 +2022,12,15,1,New South Wales,150.921165,-33.967052 +2021,4,13,1,New South Wales,150.617099,-34.434097 +2021,8,5,1,New South Wales,153.60155,-28.68121 +2021,5,10,1,New South Wales,150.605059,-34.427055 +2022,10,4,1,New South Wales,149.476719,-36.341347 +2021,5,29,1,New South Wales,150.631057,-34.387118 +2020,11,3,1,New South Wales,149.958519,-36.587122 +2023,1,8,1,New South Wales,151.68367,-32.515411 +2024,2,1,1,New South Wales,153.104444,-29.482699 +2022,4,10,1,New South Wales,152.92612,-31.471635 +2023,9,22,1,New South Wales,152.065318,-32.710989 +2020,6,22,1,New South Wales,153.43063,-28.6044 +2021,5,4,1,New South Wales,150.523682,-34.459358 +2022,8,11,1,New South Wales,150.52588,-34.460064 +2021,5,17,1,New South Wales,150.655957,-34.458551 +2022,1,17,1,New South Wales,152.89723,-31.475343 +2022,4,16,1,New South Wales,152.923383,-31.461041 +2021,5,7,1,New South Wales,150.52142,-34.435728 +2021,4,24,1,New South Wales,150.630589,-34.388687 +2023,12,19,1,New South Wales,152.80596,-31.654337 +2021,3,22,1,New South Wales,150.635923,-34.488132 +2021,2,17,1,New South Wales,152.444452,-31.889461 +2022,4,24,1,New South Wales,152.083636,-32.729371 +2021,12,9,1,New South Wales,153.323085,-28.828438 +2021,5,27,1,New South Wales,150.602764,-34.435016 +2024,1,30,1,New South Wales,150.784643,-33.713316 +2022,12,28,1,New South Wales,149.398354,-33.489106 +2022,3,31,1,New South Wales,152.660968,-28.610285 +2021,5,31,1,New South Wales,150.522778,-34.45238 +2024,9,16,1,New South Wales,146.56265,-34.760487 +2020,11,26,1,New South Wales,153.101692,-29.489419 +2021,6,19,1,New South Wales,150.522203,-34.451593 +2023,10,18,1,New South Wales,152.398462,-31.94177 +2021,6,6,1,New South Wales,150.635347,-34.488094 +2024,3,22,1,New South Wales,152.378229,-31.92659 +2020,8,25,1,New South Wales,153.102572,-29.487985 +2021,3,12,1,New South Wales,153.274628,-28.355583 +2024,1,29,1,New South Wales,153.104573,-29.489577 +2023,11,9,1,New South Wales,152.403898,-31.928298 +2023,4,26,1,New South Wales,153.032917,-30.380306 +2021,2,5,1,New South Wales,153.103688,-29.485739 +2023,2,18,1,New South Wales,153.562091,-28.389325 +2023,8,3,1,New South Wales,152.210153,-31.56082 +2022,1,15,1,New South Wales,152.775913,-31.633105 +2020,10,15,1,New South Wales,152.791002,-31.638653 +2022,5,3,1,New South Wales,152.880613,-29.606316 +2021,5,14,1,New South Wales,150.51742,-34.440353 +2021,5,19,1,New South Wales,150.631025,-34.389038 +2022,8,11,1,New South Wales,150.525876,-34.460059 +2021,5,26,1,New South Wales,150.619784,-34.43918 +2021,4,24,1,New South Wales,150.610279,-34.419107 +2020,10,2,1,New South Wales,153.09092,-29.487364 +2023,12,15,1,New South Wales,151.150223,-33.104783 +2023,9,29,1,New South Wales,152.065318,-32.711025 +2021,5,16,1,New South Wales,150.640532,-34.494189 +2021,3,23,1,New South Wales,150.521022,-34.453976 +2021,5,4,1,New South Wales,150.602905,-34.42741 +2022,8,30,1,New South Wales,149.322403,-36.298192 +2021,5,2,1,New South Wales,150.616643,-34.435215 +2021,5,19,1,New South Wales,150.608107,-34.434616 +2021,4,23,1,New South Wales,150.62921,-34.395152 +2022,11,26,1,New South Wales,152.759299,-30.84178 +2020,9,17,1,New South Wales,152.893317,-31.429901 +2021,3,5,1,New South Wales,150.514134,-34.449906 +2021,6,16,1,New South Wales,150.622676,-34.383927 +2021,4,14,1,New South Wales,150.65784,-34.458145 +2021,5,29,1,New South Wales,150.605605,-34.43729 +2021,4,21,1,New South Wales,150.630564,-34.386856 +2023,9,22,1,New South Wales,152.063631,-32.705566 +2020,8,13,1,New South Wales,152.913609,-31.458959 +2024,1,31,1,New South Wales,150.785931,-33.706422 +2021,6,10,1,New South Wales,150.518238,-34.453523 +2020,1,31,1,New South Wales,149.39945,-36.03167 +2020,10,,1,New South Wales,150.537335,-34.380735 +2021,3,6,1,New South Wales,150.609753,-34.419619 +2020,12,3,1,New South Wales,153.103817,-29.48558 +2023,11,11,1,New South Wales,152.923266,-31.447221 +2021,5,12,1,New South Wales,150.517308,-34.447816 +2022,1,13,1,New South Wales,152.532814,-32.22088 +2021,7,7,1,New South Wales,150.521504,-34.465291 +2020,10,31,1,New South Wales,153.33378,-28.815841 +2022,11,19,1,New South Wales,152.909715,-31.149088 +2023,11,28,1,New South Wales,152.893756,-31.445683 +2022,11,29,1,New South Wales,152.063796,-32.706755 +2021,4,28,1,New South Wales,150.603535,-34.427476 +2023,10,6,1,New South Wales,150.785291,-33.716972 +2021,5,24,1,New South Wales,150.307773,-29.122144 +2021,4,25,1,New South Wales,153.425502,-28.625477 +2020,10,,1,New South Wales,150.543918,-34.519414 +2021,7,10,1,New South Wales,150.599033,-34.412945 +2023,7,23,1,New South Wales,152.063956,-32.706625 +2020,8,1,1,New South Wales,153.224759,-28.945705 +2020,4,8,1,New South Wales,150.141529,-34.922751 +2021,7,5,1,New South Wales,150.309171,-29.065427 +2020,4,14,1,New South Wales,153.286906,-28.868965 +2021,7,14,1,New South Wales,150.513825,-34.446374 +2023,9,30,1,New South Wales,153.314983,-28.949201 +2022,2,17,1,New South Wales,152.353525,-31.92625 +2023,5,31,1,New South Wales,153.314983,-28.949201 +2021,9,2,1,New South Wales,152.06845,-32.719735 +2021,6,18,1,New South Wales,150.627578,-34.420967 +2023,7,20,1,New South Wales,153.104847,-29.476895 +2022,6,20,1,New South Wales,153.104128,-29.483853 +2023,9,22,1,New South Wales,150.94513,-29.823614 +2020,11,5,1,New South Wales,152.079053,-32.737201 +2020,10,31,1,New South Wales,149.92265,-36.572354 +2021,6,1,1,New South Wales,150.518678,-34.447852 +2020,,,1,New South Wales,152.948503,-31.217582 +2021,2,18,1,New South Wales,151.08389,-29.728542 +2023,9,30,1,New South Wales,153.314983,-28.949201 +2020,10,31,1,New South Wales,153.314983,-28.949201 +2023,12,16,1,New South Wales,152.795237,-31.636686 +2021,5,4,1,New South Wales,150.627118,-34.38953 +2022,7,13,1,New South Wales,152.87646,-29.67285 +2021,5,31,1,New South Wales,153.314983,-28.949201 +2021,6,29,1,New South Wales,150.656758,-34.454816 +2021,9,30,1,New South Wales,153.314983,-28.949201 +2021,6,1,1,New South Wales,150.523806,-34.463634 +2021,9,13,1,New South Wales,152.120699,-31.413327 +2021,5,14,1,New South Wales,150.656063,-34.458643 +2022,12,6,1,New South Wales,152.893086,-31.454902 +2022,11,28,1,New South Wales,152.795899,-30.884771 +2021,6,24,1,New South Wales,150.627336,-34.420305 +2021,10,13,1,New South Wales,152.061255,-32.710891 +2021,5,8,1,New South Wales,150.521375,-34.435764 +2021,4,17,1,New South Wales,150.636872,-34.420886 +2021,4,21,1,New South Wales,150.659942,-34.456932 +2020,2,11,1,New South Wales,152.838356,-31.595013 +2024,8,12,1,New South Wales,152.474076,-31.94068 +2022,4,2,1,New South Wales,153.546503,-28.734248 +2022,1,18,1,New South Wales,150.616516,-34.440812 +2020,5,,1,New South Wales,151.602102,-30.492865 +2020,10,30,1,New South Wales,149.92265,-36.572354 +2021,6,5,1,New South Wales,150.519451,-34.456685 +2020,1,20,1,New South Wales,153.158075,-28.927498 +2021,7,15,1,New South Wales,150.627186,-34.420987 +2021,7,2,1,New South Wales,150.639679,-34.398041 +2020,1,16,1,New South Wales,153.103902,-29.489512 +2021,10,3,1,New South Wales,152.885538,-31.444253 +2023,8,22,1,New South Wales,152.912867,-31.452965 +2021,4,21,1,New South Wales,150.607525,-34.433288 +2021,7,11,1,New South Wales,150.59917,-34.411181 +2021,7,9,1,New South Wales,153.273491,-28.817225 +2024,2,1,1,New South Wales,152.066164,-32.711226 +2020,7,16,1,New South Wales,153.104037,-29.484352 +2021,5,16,1,New South Wales,150.633242,-34.418445 +2023,5,31,1,New South Wales,153.314983,-28.949201 +2021,11,30,1,New South Wales,153.314983,-28.949201 +2020,6,30,1,New South Wales,153.314983,-28.949201 +2021,11,15,1,New South Wales,153.579366,-28.686554 +2021,8,31,1,New South Wales,153.314983,-28.949201 +2021,10,15,1,New South Wales,153.108167,-29.490665 +2021,5,5,1,New South Wales,150.603193,-34.427244 +2020,1,31,1,New South Wales,153.314983,-28.949201 +2020,1,16,1,New South Wales,153.01713,-30.37491 +2021,5,12,1,New South Wales,150.521336,-34.466162 +2020,10,29,1,New South Wales,149.958519,-36.587122 +2022,8,25,1,New South Wales,153.393389,-28.292207 +2021,3,16,1,New South Wales,150.658939,-34.458175 +2020,5,28,1,New South Wales,149.362519,-36.041873 +2020,10,30,1,New South Wales,149.92265,-36.572354 +2020,11,24,1,New South Wales,152.798904,-31.140005 +2021,7,8,1,New South Wales,150.513094,-34.447171 +2023,10,2,1,New South Wales,153.032917,-30.380306 +2021,7,7,1,New South Wales,150.658415,-34.454315 +2021,12,13,1,New South Wales,151.577692,-33.015404 +2020,7,11,1,New South Wales,152.712346,-30.45575 +2022,2,13,1,New South Wales,152.063642,-32.706486 +2021,8,5,1,New South Wales,153.322532,-28.835663 +2022,8,4,1,New South Wales,150.794721,-34.216289 +2020,1,21,1,New South Wales,152.979109,-28.64451 +2021,8,21,1,New South Wales,150.513928,-34.447323 +2024,1,16,1,New South Wales,152.74767,-30.901362 +2021,5,18,1,New South Wales,150.523923,-34.463726 +2020,7,11,1,New South Wales,150.826092,-34.102486 +2021,3,7,1,New South Wales,150.655867,-34.456313 +2020,8,24,1,New South Wales,152.924872,-31.443843 +2023,6,23,1,New South Wales,152.861473,-31.281434 +2021,6,11,1,New South Wales,150.522138,-34.465944 +2021,6,18,1,New South Wales,150.627569,-34.420931 +2021,6,3,1,New South Wales,150.519536,-34.447194 +2020,12,1,1,New South Wales,149.990128,-36.434481 +2024,2,8,1,New South Wales,152.820936,-31.559002 +2020,11,24,1,New South Wales,153.342482,-28.805797 +2022,12,14,1,New South Wales,153.095683,-30.325294 +2023,8,16,1,New South Wales,153.46611,-28.716302 +2021,11,16,1,New South Wales,152.826183,-29.810552 +2020,12,1,1,New South Wales,149.990128,-36.434481 +2020,10,13,1,New South Wales,152.91497,-31.429737 +2023,3,5,1,New South Wales,152.025636,-32.127955 +2020,10,19,1,New South Wales,153.3033,-28.821668 +2021,7,3,1,New South Wales,150.513672,-34.446416 +2020,7,8,1,New South Wales,152.903078,-31.46727 +2023,6,4,1,New South Wales,153.412006,-28.666558 +2021,9,26,1,New South Wales,152.283146,-31.897596 +2020,9,5,1,New South Wales,153.281772,-28.830931 +2023,5,19,1,New South Wales,153.217726,-28.824238 +2022,8,30,1,New South Wales,149.317811,-36.298311 +2020,10,24,1,New South Wales,152.996446,-30.413154 +2022,7,9,1,New South Wales,153.110152,-29.490241 +2020,10,11,1,New South Wales,151.702237,-32.693745 +2021,9,14,1,New South Wales,150.60983,-34.454727 +2022,11,19,1,New South Wales,152.794854,-30.893434 +2020,11,23,1,New South Wales,153.314609,-28.846843 +2023,5,23,1,New South Wales,153.385426,-28.784731 +2021,8,12,1,New South Wales,150.513928,-34.447323 +2020,8,31,1,New South Wales,152.809417,-29.634282 +2020,11,23,1,New South Wales,153.314609,-28.846843 +2020,8,31,1,New South Wales,153.314983,-28.949201 +2021,11,17,1,New South Wales,152.798012,-31.645162 +2022,11,18,1,New South Wales,152.900902,-30.235823 +2020,11,25,1,New South Wales,153.287996,-28.836062 +2020,9,13,1,New South Wales,152.158889,-32.712816 +2023,3,3,1,New South Wales,152.816964,-31.574053 +2020,1,28,1,New South Wales,149.332697,-35.95118 +2021,4,10,1,New South Wales,150.532939,-34.481696 +2023,6,9,1,New South Wales,150.794178,-34.14285 +2023,1,8,1,New South Wales,152.910686,-31.433967 +2023,4,18,1,New South Wales,153.104273,-29.477338 +2021,5,25,1,New South Wales,150.639251,-34.392749 +2023,5,18,1,New South Wales,153.10975,-29.490199 +2022,6,2,1,New South Wales,153.348488,-28.873812 +2021,4,2,1,New South Wales,150.609943,-34.429775 +2023,8,30,1,New South Wales,153.452259,-28.319728 +2021,3,28,1,New South Wales,150.525493,-34.459936 +2021,6,9,1,New South Wales,153.108205,-29.490194 +2020,11,,1,New South Wales,151.726309,-32.226163 +2021,11,20,1,New South Wales,152.316958,-29.478118 +2021,5,9,1,New South Wales,150.623077,-34.39936 +2021,5,28,1,New South Wales,150.518145,-34.451889 +2023,9,30,1,New South Wales,153.314983,-28.949201 +2023,1,31,1,New South Wales,153.314983,-28.949201 +2020,7,19,1,New South Wales,153.419273,-28.26485 +2022,7,14,1,New South Wales,153.556648,-28.400055 +2020,11,24,1,New South Wales,151.801786,-32.703317 +2020,11,25,1,New South Wales,152.796455,-31.655404 +2021,6,9,1,New South Wales,150.518695,-34.447303 +2020,8,19,1,New South Wales,153.534917,-28.336369 +2021,4,11,1,New South Wales,150.522857,-34.452643 +2021,5,11,1,New South Wales,150.517307,-34.453369 +2021,9,5,1,New South Wales,153.10379,-29.485576 +2021,10,23,1,New South Wales,152.074722,-32.738611 +2020,11,3,1,New South Wales,149.958519,-36.587122 +2021,3,2,1,New South Wales,150.516603,-34.452525 +2024,4,15,1,New South Wales,152.093007,-32.730671 +2021,6,10,1,New South Wales,150.605364,-34.438087 +2021,2,4,1,New South Wales,153.601971,-28.647359 +2022,6,22,1,New South Wales,153.226051,-28.887345 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2020,12,3,1,New South Wales,152.454406,-30.622544 +2020,10,19,1,New South Wales,153.3033,-28.821668 +2020,11,30,1,New South Wales,151.506959,-30.511997 +2020,9,17,1,New South Wales,152.899314,-29.631133 +2021,12,20,1,New South Wales,153.287759,-28.903508 +2021,5,4,1,New South Wales,150.622982,-34.39733 +2021,6,7,1,New South Wales,150.531265,-34.45797 +2021,7,8,1,New South Wales,150.630954,-34.388847 +2021,6,9,1,New South Wales,150.610454,-34.43056 +2021,6,4,1,New South Wales,150.639767,-34.39916 +2021,5,12,1,New South Wales,150.609135,-34.420707 +2021,10,16,1,New South Wales,151.844528,-32.711474 +2022,10,7,1,New South Wales,152.624996,-30.434936 +2021,4,9,1,New South Wales,152.905433,-31.437692 +2021,11,5,1,New South Wales,152.30027,-31.946761 +2021,6,10,1,New South Wales,150.646467,-34.397225 +2021,9,17,1,New South Wales,153.065606,-30.352435 +2021,5,6,1,New South Wales,150.615935,-34.435986 +2020,4,10,1,New South Wales,152.385256,-31.214472 +2021,5,26,1,New South Wales,150.631343,-34.420193 +2020,10,30,1,New South Wales,153.281559,-28.824938 +2020,10,19,1,New South Wales,153.3033,-28.821668 +2020,7,14,1,New South Wales,152.799985,-30.212228 +2023,1,12,1,New South Wales,153.518426,-28.216274 +2023,8,2,1,New South Wales,149.25953,-36.192351 +2021,7,10,1,New South Wales,150.601853,-34.412451 +2021,7,9,1,New South Wales,150.520435,-34.465729 +2021,6,20,1,New South Wales,150.603941,-34.439538 +2020,8,18,1,New South Wales,152.872878,-29.6018 +2021,11,5,1,New South Wales,152.924902,-31.459395 +2021,12,9,1,New South Wales,152.886713,-31.43873 +2021,5,20,1,New South Wales,150.633153,-34.418506 +2021,3,26,1,New South Wales,153.316522,-28.916769 +2021,7,4,1,New South Wales,150.627364,-34.421252 +2020,7,30,1,New South Wales,152.880224,-31.453547 +2022,10,25,1,New South Wales,153.326403,-28.815901 +2021,4,27,1,New South Wales,150.663662,-34.457806 +2021,10,31,1,New South Wales,153.314983,-28.949201 +2021,2,26,1,New South Wales,150.518763,-34.467038 +2021,4,12,1,New South Wales,150.062671,-33.765497 +2021,12,9,1,New South Wales,152.914455,-31.485196 +2021,9,12,1,New South Wales,150.530795,-34.470978 +2023,10,27,1,New South Wales,152.189959,-32.223426 +2021,5,17,1,New South Wales,150.53063,-34.469938 +2021,3,25,1,New South Wales,150.15407,-31.11356 +2022,6,18,1,New South Wales,152.454265,-31.936428 +2021,8,5,1,New South Wales,153.60155,-28.68121 +2023,1,18,1,New South Wales,152.8853,-30.51694 +2021,6,17,1,New South Wales,150.604736,-34.427329 +2021,9,19,1,New South Wales,150.549897,-34.462307 +2023,12,3,1,New South Wales,152.925225,-31.454221 +2024,6,28,1,New South Wales,152.916547,-31.445007 +2023,6,5,1,New South Wales,150.80651,-34.18147 +2021,1,17,1,New South Wales,152.415158,-31.933289 +2021,5,24,1,New South Wales,150.631407,-34.387837 +2021,10,27,1,New South Wales,153.447891,-28.650766 +2022,8,21,1,New South Wales,153.10321,-29.487383 +2023,4,19,1,New South Wales,149.950099,-36.567944 +2021,7,19,1,New South Wales,153.101172,-29.490077 +2021,12,18,1,New South Wales,152.927076,-31.465615 +2021,5,9,1,New South Wales,150.516668,-34.469448 +2022,10,27,1,New South Wales,150.840726,-34.058476 +2021,5,17,1,New South Wales,150.600512,-34.427399 +2021,,,1,New South Wales,149.82901,-32.416313 +2021,5,7,1,New South Wales,150.616041,-34.435348 +2023,10,31,1,New South Wales,152.490835,-31.921261 +2021,4,30,1,New South Wales,150.609006,-34.435165 +2021,6,20,1,New South Wales,150.519877,-34.452583 +2021,5,24,1,New South Wales,150.5175,-34.451993 +2021,6,14,1,New South Wales,150.515852,-34.44665 +2021,3,22,1,New South Wales,150.607914,-34.422333 +2021,5,30,1,New South Wales,150.522899,-34.452319 +2023,10,20,1,New South Wales,152.906709,-31.441585 +2020,1,16,1,New South Wales,153.54876,-28.72655 +2021,5,31,1,New South Wales,150.631179,-34.420217 +2023,6,30,1,New South Wales,153.314983,-28.949201 +2021,9,17,1,New South Wales,153.054919,-30.908562 +2021,6,29,1,New South Wales,150.608043,-34.449084 +2024,1,16,1,New South Wales,152.153499,-31.710926 +2021,7,12,1,New South Wales,150.631017,-34.386234 +2021,12,5,1,New South Wales,152.06373,-32.70643 +2020,9,26,1,New South Wales,153.103672,-29.485809 +2020,10,28,1,New South Wales,150.616682,-33.438925 +2024,8,25,1,New South Wales,152.231248,-31.733746 +2020,9,3,1,New South Wales,153.002855,-29.1819 +2023,11,11,1,New South Wales,153.112748,-29.488424 +2021,6,5,1,New South Wales,150.636196,-34.487705 +2021,6,13,1,New South Wales,150.626512,-34.385561 +2023,10,7,1,New South Wales,150.47385,-34.50049 +2021,9,10,1,New South Wales,150.52495,-34.48679 +2021,2,23,1,New South Wales,150.613391,-34.430175 +2023,1,17,1,New South Wales,152.924987,-31.459281 +2023,10,31,1,New South Wales,152.404027,-31.928099 +2021,3,11,1,New South Wales,150.520297,-34.446857 +2023,2,23,1,New South Wales,151.579593,-30.409963 +2020,10,23,1,New South Wales,149.96897,-36.58553 +2022,2,26,1,New South Wales,152.92591,-31.452721 +2022,11,16,1,New South Wales,152.929044,-31.450152 +2022,7,28,1,New South Wales,152.923044,-31.459918 +2023,9,27,1,New South Wales,152.92544,-31.445843 +2021,5,4,1,New South Wales,150.604172,-34.437938 +2021,1,21,1,New South Wales,153.104171,-29.478762 +2021,7,21,1,New South Wales,150.51743,-34.448494 +2021,2,1,1,New South Wales,152.851464,-29.692524 +2021,3,30,1,New South Wales,150.603825,-34.440167 +2021,5,28,1,New South Wales,150.603241,-34.436991 +2020,5,19,1,New South Wales,150.809413,-34.099825 +2022,3,12,1,New South Wales,153.110506,-29.490189 +2021,1,16,1,New South Wales,150.89266,-33.991958 +2023,7,29,1,New South Wales,149.458845,-33.670775 +2022,2,15,1,New South Wales,153.298557,-28.818698 +2022,12,7,1,New South Wales,153.555888,-28.399124 +2024,1,1,1,New South Wales,153.096253,-29.491422 +2022,9,19,1,New South Wales,152.90947,-30.17363 +2021,9,28,1,New South Wales,152.81796,-31.27746 +2021,1,17,1,New South Wales,153.608363,-28.663566 +2023,8,26,1,New South Wales,153.488231,-28.238831 +2021,10,13,1,New South Wales,152.387,-31.903583 +2021,6,19,1,New South Wales,150.602679,-34.425052 +2023,10,26,1,New South Wales,152.482146,-31.943627 +2022,2,20,1,New South Wales,152.899776,-29.630491 +2024,5,5,1,New South Wales,152.869551,-31.466469 +2023,5,1,1,New South Wales,152.071777,-32.725221 +2023,6,27,1,New South Wales,151.790271,-32.655267 +2020,9,3,1,New South Wales,153.004041,-29.18193 +2021,6,18,1,New South Wales,150.521435,-34.465785 +2020,2,17,1,New South Wales,153.325602,-28.814928 +2021,10,21,1,New South Wales,153.0128,-29.53787 +2023,2,18,1,New South Wales,153.545174,-28.332465 +2021,5,5,1,New South Wales,150.522735,-34.459357 +2021,5,25,1,New South Wales,150.631381,-34.419995 +2022,,,1,New South Wales,150.609073,-34.494 +2020,10,16,1,New South Wales,151.725342,-32.60351 +2020,4,9,1,New South Wales,152.704917,-30.185759 +2021,9,13,1,New South Wales,153.324337,-28.879744 +2020,11,22,1,New South Wales,153.29382,-28.816063 +2022,8,12,1,New South Wales,152.884433,-29.684315 +2021,5,19,1,New South Wales,150.516469,-34.450061 +2021,12,31,1,New South Wales,152.088846,-32.728032 +2022,2,17,1,New South Wales,152.856522,-31.356723 +2020,4,25,1,New South Wales,152.476167,-29.970004 +2021,5,15,1,New South Wales,150.64038,-34.494186 +2021,4,29,1,New South Wales,150.610235,-34.419133 +2021,4,26,1,New South Wales,150.615848,-34.435993 +2023,9,30,1,New South Wales,152.928396,-31.446264 +2023,12,21,1,New South Wales,152.909916,-30.505451 +2023,9,30,1,New South Wales,153.314983,-28.949201 +2022,10,31,1,New South Wales,153.314983,-28.949201 +2022,7,27,1,New South Wales,152.818125,-31.129215 +2020,11,3,1,New South Wales,149.958519,-36.587122 +2023,8,31,1,New South Wales,153.091559,-29.48799 +2020,6,22,1,New South Wales,150.641557,-33.742033 +2023,5,11,1,New South Wales,152.866563,-31.305739 +2020,6,21,1,New South Wales,151.098794,-33.204749 +2022,4,3,1,New South Wales,152.9255,-31.473048 +2020,3,17,1,New South Wales,153.31872,-28.927765 +2020,10,,1,New South Wales,150.547088,-34.454201 +2020,9,15,1,New South Wales,153.003004,-29.184643 +2022,12,27,1,New South Wales,146.535056,-34.755862 +2020,9,14,1,New South Wales,153.090749,-29.487093 +2020,11,9,1,New South Wales,152.336072,-31.2027 +2023,9,24,1,New South Wales,153.629659,-28.637548 +2023,9,15,1,New South Wales,151.904846,-31.999879 +2024,4,11,1,New South Wales,152.929736,-31.466875 +2020,8,21,1,New South Wales,152.925965,-31.45247 +2021,8,23,1,New South Wales,152.447227,-31.780553 +2021,2,28,1,New South Wales,150.51715,-34.44692 +2023,11,6,1,New South Wales,153.08602,-28.534632 +2021,9,18,1,New South Wales,153.46123,-28.636784 +2022,8,19,1,New South Wales,152.847465,-31.566357 +2023,7,14,1,New South Wales,153.565416,-28.70167 +2021,3,22,1,New South Wales,150.514791,-34.445736 +2020,5,30,1,New South Wales,151.66621,-30.50157 +2021,11,4,1,New South Wales,153.25027,-28.87722 +2020,11,23,1,New South Wales,153.601559,-28.827964 +2020,4,10,1,New South Wales,152.400264,-31.196849 +2024,7,9,1,New South Wales,152.109729,-31.906375 +2020,9,5,1,New South Wales,153.292036,-28.863396 +2023,4,4,1,New South Wales,153.510514,-28.809903 +2023,12,8,1,New South Wales,150.785187,-33.715752 +2022,6,12,1,New South Wales,153.104037,-29.484007 +2022,1,8,1,New South Wales,153.11057,-29.48982 +2023,12,21,1,New South Wales,148.729392,-36.429911 +2022,10,6,1,New South Wales,152.992754,-30.409133 +2021,4,25,1,New South Wales,150.609554,-34.418984 +2022,6,18,1,New South Wales,150.884017,-34.012525 +2020,9,5,1,New South Wales,153.38411,-28.687929 +2021,6,4,1,New South Wales,150.521623,-34.46569 +2021,4,29,1,New South Wales,150.635373,-34.41964 +2023,5,11,1,New South Wales,153.279661,-28.831073 +2021,7,24,1,New South Wales,152.860256,-29.627572 +2023,8,18,1,New South Wales,150.78543,-33.712815 +2021,3,10,1,New South Wales,150.656947,-34.456244 +2021,5,6,1,New South Wales,150.627289,-34.390021 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2020,12,2,1,New South Wales,150.069694,-33.78207 +2020,1,17,1,New South Wales,152.765229,-31.241379 +2023,1,18,1,New South Wales,152.911156,-31.433354 +2021,5,7,1,New South Wales,150.609181,-34.420618 +2021,7,13,1,New South Wales,153.285118,-28.981503 +2022,12,23,1,New South Wales,150.673349,-31.514535 +2021,5,13,1,New South Wales,150.523712,-34.464236 +2020,10,12,1,New South Wales,152.839947,-29.582131 +2020,4,22,1,New South Wales,152.926167,-31.452764 +2022,6,27,1,New South Wales,152.062949,-32.709065 +2023,6,15,1,New South Wales,152.422603,-31.904256 +2022,11,23,1,New South Wales,152.926647,-31.444435 +2021,6,14,1,New South Wales,150.630108,-34.420764 +2022,1,30,1,New South Wales,153.110511,-29.490128 +2021,5,22,1,New South Wales,150.633776,-34.392517 +2020,8,29,1,New South Wales,152.402791,-31.925249 +2021,5,5,1,New South Wales,150.608814,-34.455636 +2023,4,20,1,New South Wales,153.103495,-29.485679 +2021,6,10,1,New South Wales,150.630244,-34.420947 +2021,7,20,1,New South Wales,150.517428,-34.448548 +2022,9,1,1,New South Wales,153.606506,-28.689405 +2021,5,25,1,New South Wales,150.631484,-34.387812 +2021,7,10,1,New South Wales,150.626741,-34.421348 +2022,12,7,1,New South Wales,153.103559,-29.489156 +2021,5,14,1,New South Wales,150.629191,-34.395836 +2021,7,14,1,New South Wales,152.437799,-31.77813 +2021,3,24,1,New South Wales,150.532713,-34.48124 +2022,10,11,1,New South Wales,152.785424,-31.632767 +2021,4,6,1,New South Wales,150.607896,-34.422946 +2022,3,10,1,New South Wales,153.0906,-28.52307 +2020,10,20,1,New South Wales,149.931009,-36.595007 +2022,11,17,1,New South Wales,149.47594,-33.56161 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2021,5,16,1,New South Wales,150.516147,-34.449541 +2021,3,8,1,New South Wales,150.604275,-34.438877 +2021,5,8,1,New South Wales,150.609235,-34.42061 +2022,11,30,1,New South Wales,153.434011,-28.95773 +2023,7,29,1,New South Wales,152.908289,-31.447153 +2022,9,19,1,New South Wales,152.892569,-31.432408 +2021,5,19,1,New South Wales,150.613735,-34.431093 +2021,12,28,1,New South Wales,152.923048,-31.459491 +2021,3,9,1,New South Wales,150.524613,-34.456195 +2020,10,29,1,New South Wales,149.958519,-36.587122 +2021,6,22,1,New South Wales,150.603261,-34.439353 +2022,8,30,1,New South Wales,152.869709,-29.666732 +2020,11,10,1,New South Wales,152.904445,-31.456102 +2020,11,4,1,New South Wales,152.08478,-32.729647 +2023,7,29,1,New South Wales,153.311362,-28.874736 +2023,11,27,1,New South Wales,150.784224,-33.717698 +2022,4,5,1,New South Wales,151.009987,-34.042369 +2021,5,24,1,New South Wales,150.5275,-34.469397 +2023,4,9,1,New South Wales,153.561029,-28.33111 +2021,3,27,1,New South Wales,150.635425,-34.488393 +2020,1,18,1,New South Wales,153.563938,-28.393611 +2021,6,15,1,New South Wales,150.612351,-34.431571 +2021,7,14,1,New South Wales,150.626591,-34.385463 +2021,3,25,1,New South Wales,150.10384,-31.15777 +2021,11,16,1,New South Wales,152.82757,-29.810437 +2022,5,20,1,New South Wales,153.108156,-29.490259 +2022,6,3,1,New South Wales,153.31231,-28.815314 +2023,7,11,1,New South Wales,150.787145,-33.706952 +2021,3,4,1,New South Wales,150.522276,-34.456111 +2021,2,25,1,New South Wales,150.635029,-34.485067 +2023,4,11,1,New South Wales,153.15908,-28.924837 +2023,4,19,1,New South Wales,153.245654,-28.443445 +2021,5,5,1,New South Wales,153.360729,-28.796843 +2023,2,7,1,New South Wales,152.8839,-31.441036 +2022,1,9,1,New South Wales,152.422603,-31.904256 +2023,6,8,1,New South Wales,150.80653,-34.11211 +2020,9,25,1,New South Wales,150.848206,-34.030191 +2020,10,30,1,New South Wales,149.977333,-36.564828 +2020,1,7,1,New South Wales,153.442282,-28.591175 +2022,12,22,1,New South Wales,152.926769,-31.46416 +2022,1,17,1,New South Wales,150.618929,-34.440534 +2021,4,24,1,New South Wales,150.635053,-34.419787 +2023,9,24,1,New South Wales,152.156489,-32.002023 +2021,6,7,1,New South Wales,153.43282,-28.89017 +2021,5,6,1,New South Wales,150.639096,-34.491439 +2021,10,9,1,New South Wales,153.402047,-28.258067 +2023,4,3,1,New South Wales,153.110849,-29.48834 +2022,12,1,1,New South Wales,151.88176,-31.971247 +2021,8,22,1,New South Wales,152.886089,-30.361141 +2020,11,15,1,New South Wales,153.091864,-29.487984 +2021,6,5,1,New South Wales,150.630427,-34.420635 +2023,12,12,1,New South Wales,150.991128,-34.020318 +2021,5,7,1,New South Wales,150.521181,-34.451897 +2020,5,21,1,New South Wales,152.163446,-31.710288 +2021,10,23,1,New South Wales,153.103784,-29.48558 +2020,1,1,1,New South Wales,153.278243,-28.679411 +2021,8,22,1,New South Wales,150.610072,-34.438215 +2021,5,31,1,New South Wales,150.52245,-34.453176 +2022,1,16,1,New South Wales,152.305556,-30.054147 +2021,6,23,1,New South Wales,150.62744,-34.421262 +2024,9,25,2,New South Wales,153.284796,-28.666699 +2021,6,14,1,New South Wales,150.625248,-34.384499 +2021,5,11,1,New South Wales,150.605437,-34.427523 +2021,1,9,1,New South Wales,152.893086,-31.454902 +2021,6,20,1,New South Wales,150.519776,-34.452671 +2021,5,30,1,New South Wales,150.524158,-34.471619 +2021,5,14,1,New South Wales,150.520391,-34.453981 +2021,6,3,1,New South Wales,150.534838,-34.463424 +2020,10,4,1,New South Wales,153.021971,-28.629621 +2020,12,1,1,New South Wales,149.990128,-36.434481 +2021,5,16,1,New South Wales,152.921041,-31.448924 +2021,8,12,1,New South Wales,150.632083,-34.418242 +2022,10,9,1,New South Wales,152.828894,-29.642585 +2020,7,21,1,New South Wales,153.104012,-29.485265 +2023,10,17,1,New South Wales,152.814899,-31.653945 +2021,4,30,1,New South Wales,150.609028,-34.435139 +2021,7,24,1,New South Wales,152.911375,-31.446472 +2023,10,31,1,New South Wales,152.200143,-32.231881 +2020,10,7,1,New South Wales,152.930015,-29.726772 +2021,9,11,1,New South Wales,152.851464,-29.692524 +2020,1,17,1,New South Wales,152.74694,-31.188605 +2023,12,25,1,New South Wales,150.784795,-33.713659 +2021,6,15,1,New South Wales,152.901832,-31.442419 +2020,5,12,1,New South Wales,153.385016,-28.583473 +2021,4,21,1,New South Wales,150.630564,-34.386856 +2022,9,30,1,New South Wales,153.141034,-28.642768 +2021,6,10,1,New South Wales,150.630277,-34.420966 +2021,12,7,1,New South Wales,153.108205,-29.490245 +2021,10,19,1,New South Wales,153.092412,-29.488452 +2021,6,29,1,New South Wales,150.596394,-34.411631 +2021,4,5,1,New South Wales,150.665193,-34.458709 +2020,10,28,1,New South Wales,149.976368,-36.555504 +2023,8,23,1,New South Wales,149.261113,-36.191934 +2022,8,16,1,New South Wales,150.858339,-34.073367 +2020,10,29,1,New South Wales,149.976368,-36.555504 +2022,12,1,1,New South Wales,152.08543,-32.730356 +2021,9,19,1,New South Wales,153.601971,-28.647359 +2021,5,9,1,New South Wales,150.639217,-34.491784 +2020,10,10,1,New South Wales,150.809224,-34.102606 +2021,4,11,1,New South Wales,150.60915,-34.420572 +2023,8,19,1,New South Wales,150.785576,-33.716818 +2021,1,22,1,New South Wales,153.024653,-29.352429 +2021,1,7,1,New South Wales,153.101741,-29.489092 +2020,4,27,1,New South Wales,152.743147,-31.257149 +2021,6,30,1,New South Wales,150.629505,-34.388937 +2023,11,10,1,New South Wales,153.072069,-30.881516 +2021,3,13,1,New South Wales,150.520476,-34.467299 +2024,4,11,1,New South Wales,151.47811,-31.478289 +2023,6,7,1,New South Wales,152.902073,-31.241799 +2021,6,9,1,New South Wales,150.630873,-34.420653 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2023,8,9,1,New South Wales,150.785026,-33.716293 +2021,5,23,1,New South Wales,150.639219,-34.392713 +2021,9,2,1,New South Wales,153.601971,-28.647359 +2021,5,28,1,New South Wales,150.522427,-34.465724 +2020,11,30,1,New South Wales,153.343646,-28.866891 +2020,8,5,1,New South Wales,153.109392,-30.298612 +2021,7,20,1,New South Wales,150.623368,-34.383309 +2024,7,14,1,New South Wales,150.779793,-34.199263 +2024,2,11,1,New South Wales,152.389245,-31.94658 +2022,12,21,1,New South Wales,153.103758,-29.485552 +2022,4,17,1,New South Wales,153.55781,-28.393807 +2020,10,10,1,New South Wales,152.908073,-31.213404 +2022,6,8,1,New South Wales,151.008935,-34.041997 +2022,9,26,1,New South Wales,151.900142,-32.595412 +2021,7,2,1,New South Wales,150.522339,-34.465768 +2021,5,16,1,New South Wales,150.61447,-34.433938 +2023,5,18,1,New South Wales,153.319343,-28.821551 +2020,12,8,1,New South Wales,152.901026,-31.44241 +2020,5,26,1,New South Wales,150.100284,-33.778719 +2023,2,5,1,New South Wales,151.024254,-34.02736 +2021,4,16,1,New South Wales,150.524594,-34.452065 +2021,9,9,1,New South Wales,150.524633,-34.489425 +2023,7,16,1,New South Wales,151.585902,-30.143451 +2024,8,15,1,New South Wales,152.488513,-32.344787 +2023,9,15,1,New South Wales,153.106928,-29.366767 +2021,9,6,1,New South Wales,150.521025,-34.465642 +2021,5,23,1,New South Wales,150.635771,-34.392745 +2021,7,7,1,New South Wales,150.604854,-34.418992 +2024,4,22,1,New South Wales,152.400714,-31.98302 +2023,9,28,1,New South Wales,150.823235,-34.149772 +2022,12,31,1,New South Wales,153.314983,-28.949201 +2021,5,26,1,New South Wales,150.639164,-34.392739 +2022,1,7,1,New South Wales,152.919656,-31.470718 +2020,10,20,1,New South Wales,149.931009,-36.595007 +2022,8,3,1,New South Wales,152.602056,-30.704873 +2021,4,29,1,New South Wales,150.634245,-34.420294 +2023,1,31,1,New South Wales,153.314983,-28.949201 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2021,12,29,1,New South Wales,150.99624,-34.082946 +2021,3,31,1,New South Wales,150.517263,-34.451556 +2020,11,2,1,New South Wales,153.313992,-28.81222 +2020,12,31,1,New South Wales,153.314983,-28.949201 +2021,4,23,1,New South Wales,150.638442,-34.423071 +2020,2,26,1,New South Wales,153.201366,-29.022503 +2020,10,23,1,New South Wales,149.999247,-36.565645 +2020,1,31,1,New South Wales,153.314983,-28.949201 +2021,4,24,1,New South Wales,150.638173,-34.485561 +2020,12,7,1,New South Wales,153.23286,-28.88094 +2021,6,1,1,New South Wales,150.630399,-34.42086 +2023,2,19,1,New South Wales,150.82139,-34.089692 +2020,5,17,1,New South Wales,153.50629,-28.2387 +2023,1,10,1,New South Wales,153.231061,-28.889378 +2020,10,20,1,New South Wales,153.273941,-28.820088 +2021,9,25,1,New South Wales,153.265046,-28.85367 +2021,1,16,1,New South Wales,153.108135,-29.490572 +2021,9,10,1,New South Wales,146.611059,-34.734934 +2020,10,30,1,New South Wales,149.976368,-36.555504 +2023,7,28,1,New South Wales,150.786901,-33.705803 +2020,12,17,1,New South Wales,152.067068,-32.710545 +2021,5,1,1,New South Wales,150.637544,-34.488551 +2020,10,26,1,New South Wales,149.976368,-36.555504 +2021,7,2,1,New South Wales,150.642043,-34.395941 +2021,3,16,1,New South Wales,150.615921,-34.434967 +2021,9,16,1,New South Wales,152.384578,-31.923702 +2020,10,23,1,New South Wales,149.976368,-36.555504 +2021,9,9,1,New South Wales,150.515576,-34.454488 +2023,7,20,1,New South Wales,153.512741,-28.654339 +2020,1,10,1,New South Wales,151.795088,-32.589689 +2021,7,23,1,New South Wales,150.630786,-34.420651 +2021,6,6,1,New South Wales,150.523968,-34.466242 +2021,1,10,1,New South Wales,152.883889,-31.44098 +2021,6,10,1,New South Wales,150.614059,-34.433091 +2021,6,29,1,New South Wales,150.627366,-34.420413 +2021,8,18,1,New South Wales,150.522655,-34.466468 +2023,12,7,1,New South Wales,152.868617,-31.470543 +2020,7,12,1,New South Wales,153.279343,-28.678405 +2021,7,15,1,New South Wales,150.626891,-34.421035 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2021,5,19,1,New South Wales,150.631012,-34.389119 +2020,11,4,1,New South Wales,151.883057,-30.044378 +2021,8,1,1,New South Wales,150.650573,-34.40247 +2021,7,14,1,New South Wales,150.626804,-34.421024 +2024,9,4,1,New South Wales,152.173684,-31.571551 +2021,4,26,1,New South Wales,150.615749,-34.436027 +2021,6,25,1,New South Wales,150.522449,-34.464237 +2021,4,6,1,New South Wales,150.634188,-34.488639 +2022,11,14,1,New South Wales,153.318438,-28.851346 +2021,6,7,1,New South Wales,150.519453,-34.456604 +2024,2,14,1,New South Wales,150.785705,-33.715109 +2021,3,1,1,New South Wales,150.609294,-34.420097 +2022,6,4,1,New South Wales,152.852201,-31.551454 +2021,5,30,1,New South Wales,150.631168,-34.387427 +2021,8,3,1,New South Wales,150.520788,-34.436509 +2022,2,6,1,New South Wales,153.052888,-28.446447 +2021,7,11,1,New South Wales,150.631777,-34.387042 +2022,6,3,1,New South Wales,152.08114,-32.736715 +2020,9,14,1,New South Wales,150.08723,-31.15582 +2022,12,7,1,New South Wales,153.109921,-29.490199 +2022,11,5,1,New South Wales,153.491791,-28.660215 +2024,1,11,1,New South Wales,152.924377,-31.459524 +2022,11,20,1,New South Wales,152.794854,-30.893434 +2021,6,23,1,New South Wales,153.288292,-28.809314 +2021,9,11,1,New South Wales,152.352583,-31.925191 +2020,6,6,1,New South Wales,150.870348,-34.044223 +2021,5,30,1,New South Wales,150.603092,-34.424312 +2022,8,7,1,New South Wales,152.918648,-31.453513 +2021,5,16,1,New South Wales,150.633241,-34.418463 +2021,5,14,1,New South Wales,150.637311,-34.423824 +2022,7,11,1,New South Wales,153.104348,-29.489587 +2021,5,11,1,New South Wales,150.616331,-34.434335 +2023,1,28,1,New South Wales,153.045221,-30.237338 +2023,1,31,1,New South Wales,153.314983,-28.949201 +2023,9,13,1,New South Wales,152.956229,-31.281497 +2021,3,7,1,New South Wales,150.607875,-34.432096 +2023,6,30,1,New South Wales,153.314983,-28.949201 +2023,1,26,1,New South Wales,153.555983,-28.398849 +2020,10,30,1,New South Wales,153.092208,-29.488046 +2021,5,29,1,New South Wales,150.523968,-34.45263 +2023,1,4,1,New South Wales,152.927684,-31.465551 +2021,3,24,1,New South Wales,150.659535,-34.458277 +2021,7,9,1,New South Wales,150.640965,-34.393305 +2021,4,25,1,New South Wales,150.605169,-34.437696 +2021,2,25,1,New South Wales,150.612276,-34.429991 +2023,9,12,1,New South Wales,149.835402,-32.390141 +2021,5,27,1,New South Wales,150.526675,-34.469299 +2021,6,5,1,New South Wales,150.636248,-34.487805 +2020,4,7,1,New South Wales,150.0546,-33.777068 +2021,12,24,1,New South Wales,152.9054,-31.442054 +2023,12,26,1,New South Wales,152.064588,-32.708992 +2020,9,29,1,New South Wales,152.840035,-29.320091 +2022,9,23,1,New South Wales,152.891565,-31.446745 +2020,11,1,1,New South Wales,149.976368,-36.555504 +2023,11,2,1,New South Wales,152.190362,-32.237057 +2020,10,27,1,New South Wales,149.976368,-36.555504 +2024,5,22,1,New South Wales,152.868399,-31.335146 +2024,1,22,1,New South Wales,152.908813,-31.438865 +2021,5,18,1,New South Wales,150.608886,-34.434415 +2021,10,18,1,New South Wales,153.109342,-29.490689 +2023,4,1,1,New South Wales,153.629142,-28.637877 +2021,7,5,1,New South Wales,150.513764,-34.446247 +2021,7,23,1,New South Wales,150.80037,-34.102074 +2021,5,16,1,New South Wales,153.403012,-28.260479 +2021,6,17,1,New South Wales,150.603808,-34.426679 +2022,10,18,1,Victoria,145.466563,-36.852794 +2021,11,30,1,New South Wales,152.908386,-31.441624 +2021,5,3,1,New South Wales,150.637378,-34.423772 +2021,9,18,1,New South Wales,150.5236,-34.449223 +2021,8,4,1,New South Wales,153.316219,-28.837037 +2022,8,4,1,New South Wales,151.677366,-30.48466 +2021,5,1,1,New South Wales,150.608032,-34.455584 +2022,12,16,1,New South Wales,152.873607,-31.286699 +2021,7,6,1,New South Wales,150.64291,-34.395669 +2022,9,19,1,New South Wales,152.907975,-30.174625 +2024,1,15,1,New South Wales,152.435145,-31.811653 +2021,7,11,1,New South Wales,150.599095,-34.411892 +2022,3,8,1,New South Wales,153.110527,-29.490161 +2021,3,6,1,New South Wales,150.603373,-34.436182 +2024,3,22,1,New South Wales,152.37811,-31.922333 +2020,9,19,1,New South Wales,152.909233,-31.475937 +2023,8,23,1,New South Wales,150.786058,-33.707189 +2024,3,24,1,New South Wales,150.98483,-34.092534 +2021,8,1,1,New South Wales,152.081557,-32.735693 +2023,7,31,1,New South Wales,153.314983,-28.949201 +2020,12,24,1,New South Wales,153.608012,-28.690047 +2023,2,28,1,New South Wales,153.314983,-28.949201 +2021,9,17,1,New South Wales,150.646102,-34.401293 +2023,7,29,1,New South Wales,153.517873,-28.194829 +2022,8,1,1,New South Wales,152.972761,-31.194854 +2020,5,28,1,New South Wales,149.995981,-36.454235 +2023,6,20,1,New South Wales,149.998897,-36.566339 +2020,7,20,1,New South Wales,152.774456,-31.490713 +2021,9,16,1,New South Wales,150.612211,-34.452141 +2020,10,20,1,New South Wales,149.938155,-36.621708 +2023,12,12,1,New South Wales,152.812126,-29.515742 +2020,1,11,1,New South Wales,152.39268,-32.03516 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2023,10,14,1,New South Wales,152.901481,-31.4685 +2022,9,25,1,New South Wales,153.300252,-28.825525 +2021,3,15,1,New South Wales,150.603465,-34.439051 +2021,6,11,1,New South Wales,150.604191,-34.438786 +2024,5,29,1,New South Wales,152.575229,-31.61743 +2023,10,19,1,New South Wales,153.102856,-29.489433 +2021,4,29,1,New South Wales,150.608887,-34.435118 +2021,10,28,1,New South Wales,152.872978,-29.664828 +2021,5,25,1,New South Wales,150.60306,-34.434968 +2020,2,1,1,New South Wales,150.638597,-33.542902 +2021,6,20,1,New South Wales,150.639476,-34.392853 +2021,6,21,1,New South Wales,150.60332,-34.438813 +2020,5,18,1,New South Wales,152.106285,-31.400942 +2021,6,11,1,New South Wales,150.645018,-34.396521 +2022,12,14,1,New South Wales,153.104197,-29.482171 +2021,11,13,1,New South Wales,153.133965,-30.20916 +2021,3,21,1,New South Wales,150.603759,-34.439426 +2023,10,,1,New South Wales,153.07972,-30.335621 +2021,2,4,1,New South Wales,153.376715,-28.651191 +2021,5,12,1,New South Wales,150.605694,-34.42769 +2021,6,17,1,New South Wales,153.601971,-28.647359 +2021,8,17,1,New South Wales,150.643589,-34.399793 +2023,1,13,1,New South Wales,151.683667,-32.515411 +2020,9,29,1,New South Wales,153.601971,-28.647359 +2020,10,28,1,New South Wales,153.339182,-28.872021 +2021,8,2,1,New South Wales,150.626002,-34.389743 +2021,2,26,1,New South Wales,150.517031,-34.44689 +2021,4,29,1,New South Wales,150.605908,-34.454497 +2022,9,20,1,New South Wales,153.103961,-29.489591 +2022,7,19,1,New South Wales,153.081504,-28.593833 +2022,10,5,1,New South Wales,151.0946,-33.139355 +2021,5,5,1,New South Wales,150.622906,-34.39731 +2021,11,16,1,New South Wales,152.825705,-29.811869 +2021,6,26,1,New South Wales,153.109154,-29.49096 +2021,6,6,1,New South Wales,150.522839,-34.439273 +2021,4,18,1,New South Wales,150.637402,-34.421753 +2020,7,20,1,New South Wales,150.851595,-34.070391 +2020,1,9,1,New South Wales,152.792854,-30.218561 +2020,4,18,1,New South Wales,151.6525,-32.1088 +2021,3,5,1,New South Wales,150.611572,-34.420304 +2021,5,2,1,New South Wales,150.604732,-34.427058 +2021,5,4,1,New South Wales,150.638538,-34.490761 +2020,10,29,1,New South Wales,149.977333,-36.564828 +2021,11,26,1,New South Wales,153.281041,-28.873862 +2021,8,23,1,New South Wales,150.524806,-34.495739 +2021,9,9,1,New South Wales,150.979553,-34.127 +2022,5,29,1,New South Wales,152.361869,-31.979319 +2021,5,11,1,New South Wales,152.893086,-31.454902 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2022,9,25,1,New South Wales,152.065691,-32.743065 +2020,9,27,1,New South Wales,152.138925,-30.119255 +2021,3,3,1,New South Wales,150.517943,-34.446584 +2021,6,11,1,New South Wales,150.630874,-34.420608 +2023,8,25,1,New South Wales,153.109819,-29.490227 +2021,10,23,1,New South Wales,151.026978,-34.034505 +2023,9,24,1,New South Wales,153.491277,-28.672024 +2020,9,15,1,New South Wales,152.138925,-30.119255 +2021,6,4,1,New South Wales,150.630375,-34.420949 +2021,7,11,1,New South Wales,150.643266,-34.395387 +2021,7,10,1,New South Wales,150.631517,-34.387795 +2020,9,24,1,New South Wales,153.612241,-28.691428 +2021,5,4,1,New South Wales,150.622806,-34.397407 +2024,1,2,1,New South Wales,150.835074,-34.069641 +2021,11,3,1,New South Wales,152.879706,-29.656653 +2021,5,13,1,New South Wales,150.604369,-34.427601 +2023,2,21,1,New South Wales,152.787668,-31.636581 +2023,2,2,1,New South Wales,152.353525,-31.92625 +2020,9,17,1,New South Wales,153.601971,-28.647359 +2020,6,5,1,New South Wales,152.929642,-31.45793 +2021,8,4,1,New South Wales,150.517307,-34.446391 +2023,3,25,1,New South Wales,153.092948,-29.488303 +2021,6,30,1,New South Wales,150.862708,-34.060553 +2021,5,17,1,New South Wales,150.637309,-34.423906 +2024,3,27,1,New South Wales,153.071654,-30.88706 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2022,5,13,1,New South Wales,152.923384,-31.441071 +2022,4,3,1,New South Wales,153.393538,-28.958969 +2021,5,26,1,New South Wales,150.517903,-34.453444 +2021,11,22,1,New South Wales,153.095569,-30.301675 +2021,3,12,1,New South Wales,150.520337,-34.467206 +2022,11,24,1,New South Wales,152.079053,-32.737201 +2020,8,25,1,New South Wales,152.95453,-30.668054 +2021,6,3,1,New South Wales,150.535432,-34.462463 +2021,11,1,1,New South Wales,151.940123,-32.772764 +2023,12,20,1,New South Wales,153.019495,-30.367173 +2021,4,23,1,New South Wales,150.616268,-34.434252 +2020,10,31,1,New South Wales,153.314983,-28.949201 +2022,3,26,1,New South Wales,153.108049,-29.490156 +2020,4,15,1,New South Wales,153.400765,-28.260229 +2021,8,27,1,New South Wales,153.556667,-28.398611 +2021,6,19,1,New South Wales,150.602596,-34.425285 +2021,2,2,1,New South Wales,152.915983,-31.480968 +2020,10,11,1,New South Wales,150.82808,-34.157325 +2020,10,1,1,New South Wales,152.916549,-31.480363 +2021,5,6,1,New South Wales,150.608828,-34.45551 +2021,10,1,1,New South Wales,152.069041,-32.743669 +2021,6,3,1,New South Wales,150.535414,-34.463084 +2021,6,19,1,New South Wales,150.602664,-34.425187 +2024,4,23,1,New South Wales,151.781123,-32.585403 +2021,9,8,1,New South Wales,150.838066,-34.069668 +2024,5,29,1,New South Wales,152.319002,-31.925419 +2020,9,24,1,New South Wales,152.898089,-31.442973 +2022,5,5,1,New South Wales,152.929051,-31.450184 +2021,6,9,1,New South Wales,150.527864,-34.457036 +2021,5,24,1,New South Wales,150.602981,-34.435065 +2020,7,4,1,New South Wales,150.105535,-33.776967 +2021,5,2,1,New South Wales,150.637516,-34.488379 +2023,5,4,1,New South Wales,153.459024,-28.264562 +2023,1,1,1,New South Wales,153.033378,-28.473567 +2022,9,21,1,New South Wales,153.595927,-28.663694 +2021,5,25,1,New South Wales,150.526797,-34.469608 +2021,4,15,1,New South Wales,150.635729,-34.48573 +2020,9,30,1,New South Wales,153.314983,-28.949201 +2021,5,10,1,New South Wales,153.104144,-29.480878 +2021,7,26,1,New South Wales,150.600986,-34.421476 +2021,6,9,1,New South Wales,150.522931,-34.466339 +2021,6,23,1,New South Wales,150.627364,-34.421225 +2021,10,4,1,New South Wales,153.335173,-28.820381 +2020,1,4,1,New South Wales,149.338871,-31.578464 +2020,5,14,1,New South Wales,150.685023,-34.352651 +2022,4,16,1,New South Wales,152.926116,-31.458845 +2022,1,21,1,New South Wales,152.116373,-32.764554 +2021,8,6,1,New South Wales,150.516529,-34.440335 +2021,5,18,1,New South Wales,150.516481,-34.450043 +2021,9,9,1,New South Wales,150.980864,-34.128057 +2021,9,22,1,New South Wales,150.929005,-33.955393 +2022,4,24,1,New South Wales,153.110259,-29.490311 +2021,5,14,1,New South Wales,150.616805,-34.434876 +2020,10,29,1,New South Wales,149.949397,-36.554597 +2023,1,11,1,New South Wales,153.101167,-29.490091 +2024,1,14,1,New South Wales,151.085361,-29.728135 +2021,5,3,1,New South Wales,150.638564,-34.490608 +2022,1,9,1,New South Wales,150.616169,-34.441165 +2022,3,7,1,New South Wales,153.110527,-29.490161 +2020,1,19,1,New South Wales,153.091688,-29.488074 +2021,4,2,1,New South Wales,153.293271,-28.864619 +2021,5,11,1,New South Wales,150.517338,-34.447564 +2021,11,2,1,New South Wales,152.373911,-31.914769 +2023,12,30,1,New South Wales,153.045549,-30.239277 +2020,10,28,1,New South Wales,149.976368,-36.555504 +2023,12,12,1,New South Wales,153.438091,-28.986031 +2022,3,3,1,New South Wales,153.159167,-28.850803 +2021,4,13,1,New South Wales,150.520249,-34.4525 +2021,4,27,1,New South Wales,152.172872,-32.738319 +2021,5,12,1,New South Wales,150.519076,-34.436618 +2023,7,1,1,New South Wales,150.784919,-33.717359 +2021,4,30,1,New South Wales,150.637786,-34.488853 +2022,6,21,1,New South Wales,150.838978,-34.053416 +2020,10,22,1,New South Wales,149.923643,-36.618562 +2021,4,10,1,New South Wales,152.893086,-31.454902 +2024,1,2,1,New South Wales,150.988775,-34.024887 +2020,11,19,1,New South Wales,152.041278,-32.736421 +2020,10,23,1,New South Wales,149.999247,-36.565645 +2022,12,23,1,New South Wales,153.537089,-28.620522 +2023,6,10,1,New South Wales,153.103264,-29.489923 +2021,5,3,1,New South Wales,150.608612,-34.436005 +2023,2,14,1,New South Wales,152.063312,-32.706391 +2020,10,20,1,New South Wales,149.931009,-36.595007 +2022,8,8,1,New South Wales,150.523639,-34.428361 +2020,10,17,1,New South Wales,149.931009,-36.595007 +2021,7,24,1,New South Wales,153.61147,-28.673561 +2022,1,18,1,New South Wales,150.618833,-34.440478 +2021,8,19,1,New South Wales,152.378678,-31.917168 +2023,9,26,1,New South Wales,152.902955,-30.537056 +2022,10,24,1,New South Wales,153.071564,-28.586025 +2021,8,29,1,New South Wales,152.929257,-31.460519 +2022,12,14,1,New South Wales,152.904356,-31.470531 +2020,10,28,1,New South Wales,149.976368,-36.555504 +2020,8,14,1,New South Wales,153.331879,-28.815282 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2022,5,25,1,New South Wales,152.901452,-31.442512 +2021,5,21,1,New South Wales,150.599102,-34.429905 +2023,1,15,1,New South Wales,153.312962,-28.857269 +2023,9,24,1,New South Wales,152.838481,-31.594131 +2020,9,20,1,New South Wales,153.288825,-28.824405 +2023,9,27,1,New South Wales,153.184673,-28.889985 +2021,7,12,1,New South Wales,150.627293,-34.385242 +2021,10,29,1,New South Wales,153.324455,-28.879806 +2021,6,8,1,New South Wales,150.523043,-34.466233 +2021,6,28,1,New South Wales,150.631181,-34.388122 +2023,11,19,1,New South Wales,150.957128,-33.960016 +2021,10,9,1,New South Wales,153.31709,-28.827123 +2024,2,8,1,New South Wales,152.892365,-31.447555 +2021,5,17,1,New South Wales,150.530642,-34.469875 +2023,9,28,1,New South Wales,149.333542,-36.179003 +2022,6,21,1,New South Wales,153.10416,-29.482087 +2021,7,18,1,New South Wales,150.646561,-34.392683 +2021,10,29,1,New South Wales,153.104181,-29.482111 +2022,5,12,1,New South Wales,153.107974,-29.490465 +2021,6,5,1,New South Wales,150.606181,-34.449895 +2023,2,17,1,New South Wales,152.467677,-31.952415 +2021,5,11,1,New South Wales,150.604385,-34.438456 +2020,9,14,1,New South Wales,150.101252,-33.776903 +2024,3,12,1,New South Wales,152.416342,-31.938107 +2021,5,17,1,New South Wales,150.613951,-34.433071 +2022,10,18,1,New South Wales,151.720815,-32.644764 +2021,7,1,1,New South Wales,150.597533,-34.412898 +2022,8,11,1,New South Wales,152.848629,-31.543343 +2023,5,31,1,New South Wales,153.110549,-29.490166 +2021,10,7,1,New South Wales,153.475849,-28.734899 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2021,7,1,1,New South Wales,150.606411,-34.449458 +2021,6,1,1,New South Wales,150.605671,-34.437255 +2020,4,8,1,New South Wales,150.144851,-34.925553 +2022,2,25,1,New South Wales,152.916222,-31.453394 +2020,10,,1,New South Wales,150.518486,-34.439563 +2021,3,15,1,New South Wales,153.322343,-28.815962 +2023,9,14,1,New South Wales,150.989152,-34.027519 +2022,11,4,1,New South Wales,153.402296,-28.962269 +2021,10,24,1,New South Wales,150.813926,-34.092478 +2022,8,30,1,New South Wales,149.324981,-36.293454 +2021,4,30,1,New South Wales,150.517437,-34.443094 +2023,11,2,1,New South Wales,152.403724,-31.928393 +2021,9,4,1,New South Wales,151.004266,-34.049264 +2022,4,11,1,New South Wales,151.999308,-32.727656 +2021,8,22,1,New South Wales,150.641987,-34.396787 +2023,7,4,1,New South Wales,151.630567,-31.449045 +2021,6,16,1,New South Wales,150.617141,-34.433756 +2021,5,26,1,New South Wales,150.526645,-34.469227 +2021,6,12,1,New South Wales,150.626633,-34.385509 +2022,11,26,1,New South Wales,152.759299,-30.84178 +2022,10,1,1,New South Wales,150.813393,-33.365499 +2022,2,7,1,New South Wales,152.910194,-31.465858 +2021,9,19,1,New South Wales,152.066564,-32.713391 +2022,11,12,1,New South Wales,152.925304,-31.454171 +2021,6,22,1,New South Wales,150.627981,-34.420984 +2020,3,27,1,New South Wales,150.069922,-35.096731 +2021,9,3,1,New South Wales,152.978031,-28.638017 +2024,5,15,1,New South Wales,152.187119,-31.953195 +2021,3,1,1,New South Wales,152.065028,-32.710132 +2020,10,3,1,New South Wales,151.957573,-32.632623 +2021,4,12,1,New South Wales,152.72632,-30.157302 +2021,5,11,1,New South Wales,150.633029,-34.417503 +2021,4,18,1,New South Wales,150.630687,-34.39408 +2022,1,2,1,New South Wales,153.11057,-29.489872 +2023,4,11,1,New South Wales,153.10342,-29.489774 +2021,4,14,1,New South Wales,150.609379,-34.42055 +2021,11,7,1,New South Wales,150.878445,-34.016438 +2023,5,11,1,New South Wales,153.103527,-29.485473 +2021,11,12,1,New South Wales,153.516363,-28.368068 +2020,7,19,1,New South Wales,153.103795,-29.485566 +2020,11,1,1,New South Wales,152.878897,-29.707214 +2021,5,3,1,New South Wales,150.637346,-34.423735 +2022,11,25,1,New South Wales,149.303101,-36.153309 +2021,3,2,1,New South Wales,152.987212,-28.554269 +2022,11,4,1,New South Wales,153.307114,-28.849295 +2022,8,26,1,New South Wales,153.091961,-29.488181 +2023,10,1,1,New South Wales,152.287347,-32.374068 +2023,8,2,1,New South Wales,152.028885,-32.192146 +2021,7,31,1,New South Wales,153.565744,-28.329531 +2022,9,27,1,New South Wales,149.428853,-36.255633 +2024,2,18,1,New South Wales,152.063741,-32.706553 +2021,7,7,1,New South Wales,150.6309,-34.388837 +2021,7,2,1,New South Wales,150.642101,-34.395825 +2020,10,2,1,New South Wales,152.794441,-28.912407 +2020,5,25,1,New South Wales,152.50263,-28.25854 +2020,11,27,1,New South Wales,152.061808,-32.708907 +2021,3,5,1,New South Wales,150.515304,-34.448992 +2021,11,9,1,New South Wales,152.090111,-32.734772 +2022,10,4,1,New South Wales,151.830311,-31.933249 +2020,5,,1,New South Wales,152.09716,-32.739482 +2021,10,14,1,New South Wales,150.813678,-34.104761 +2020,10,,1,New South Wales,150.518486,-34.439563 +2021,10,6,1,New South Wales,153.27058,-29.01109 +2023,4,25,1,New South Wales,152.913278,-31.443769 +2024,4,8,1,New South Wales,150.989985,-34.023465 +2021,3,15,1,New South Wales,150.516129,-34.445394 +2021,10,8,1,New South Wales,153.309398,-28.640289 +2021,5,14,1,New South Wales,150.640289,-34.493139 +2021,6,13,1,New South Wales,150.520461,-34.454163 +2021,4,17,1,New South Wales,150.604326,-34.426446 +2020,5,18,1,New South Wales,152.15986,-31.444132 +2020,9,17,1,New South Wales,153.561539,-28.384411 +2024,2,13,1,New South Wales,153.094874,-29.488508 +2021,7,8,1,New South Wales,150.640612,-34.393848 +2022,3,11,1,New South Wales,151.414754,-30.643615 +2021,7,17,1,New South Wales,150.627917,-34.420929 +2020,11,1,1,New South Wales,149.976368,-36.555504 +2020,10,22,1,New South Wales,153.113079,-29.372752 +2020,9,14,1,New South Wales,152.085694,-32.731163 +2022,11,13,1,New South Wales,151.655831,-32.681773 +2021,9,13,1,New South Wales,150.516026,-34.437828 +2021,8,28,1,New South Wales,150.513903,-34.447061 +2021,4,29,1,New South Wales,150.603546,-34.427459 +2023,3,5,1,New South Wales,152.063559,-32.706202 +2024,6,20,1,New South Wales,153.040201,-30.365399 +2024,8,19,1,New South Wales,152.114827,-32.214895 +2021,5,4,1,New South Wales,150.611494,-34.419617 +2020,10,12,1,New South Wales,153.231452,-28.829328 +2022,2,19,1,New South Wales,152.404167,-31.945815 +2021,6,4,1,New South Wales,150.623645,-34.388886 +2022,9,24,1,New South Wales,153.104037,-29.485267 +2020,9,27,1,New South Wales,153.092991,-29.488546 +2021,4,24,1,New South Wales,150.615431,-34.428854 +2021,6,24,1,New South Wales,150.514255,-34.446563 +2024,1,16,1,New South Wales,152.692068,-31.483459 +2021,12,14,1,New South Wales,152.925246,-31.443157 +2020,11,23,1,New South Wales,153.310613,-28.822718 +2020,8,27,1,New South Wales,151.9593,-29.8927 +2024,7,24,1,New South Wales,151.721917,-32.719215 +2020,4,23,1,New South Wales,152.650812,-30.629244 +2020,10,22,1,New South Wales,152.868061,-29.667322 +2020,2,7,1,New South Wales,153.103763,-29.485534 +2022,9,16,1,New South Wales,153.104471,-29.482886 +2023,10,9,1,New South Wales,153.101183,-29.489937 +2021,10,1,1,New South Wales,153.434589,-28.620426 +2021,8,3,1,New South Wales,150.520422,-34.46581 +2023,10,2,1,New South Wales,152.921975,-31.457087 +2021,8,16,1,New South Wales,150.884776,-33.991206 +2020,6,15,1,New South Wales,153.091063,-29.487502 +2023,8,4,1,New South Wales,152.167306,-31.58959 +2022,8,2,1,New South Wales,152.913382,-31.45149 +2021,5,21,1,New South Wales,150.630787,-34.387077 +2022,2,7,1,New South Wales,150.979002,-34.131552 +2021,4,24,1,New South Wales,150.614899,-34.429565 +2021,3,5,1,New South Wales,150.521716,-34.464015 +2021,7,17,1,New South Wales,150.627971,-34.420948 +2020,9,24,1,New South Wales,153.063135,-30.922055 +2022,9,1,1,New South Wales,150.870343,-34.002523 +2022,10,17,1,New South Wales,153.31409,-28.8515 +2021,8,9,1,New South Wales,152.908102,-31.449129 +2021,7,21,1,New South Wales,150.516876,-34.448825 +2022,5,8,1,New South Wales,150.787474,-34.20052 +2021,4,24,1,New South Wales,150.634425,-34.420081 +2024,1,5,1,New South Wales,152.92609,-30.50624 +2021,4,27,1,New South Wales,150.600996,-34.426453 +2021,10,27,1,New South Wales,150.809396,-34.101146 +2024,9,8,1,New South Wales,151.648748,-30.705455 +2021,6,11,1,New South Wales,150.519969,-34.452404 +2022,5,5,1,New South Wales,152.532458,-32.046018 +2021,5,6,1,New South Wales,150.622025,-34.397717 +2021,6,28,1,New South Wales,150.595768,-34.413729 +2021,5,10,1,New South Wales,150.632655,-34.41801 +2021,5,11,1,New South Wales,152.868147,-29.667322 +2022,5,5,1,New South Wales,153.103929,-29.489573 +2021,4,24,1,New South Wales,150.638858,-34.421808 +2024,7,9,1,New South Wales,152.296273,-31.871261 +2020,4,8,1,New South Wales,150.142806,-34.928517 +2020,1,22,1,New South Wales,153.094779,-29.494334 +2022,5,29,1,New South Wales,152.904137,-31.440221 +2021,5,9,1,New South Wales,150.632572,-34.418251 +2021,2,19,1,New South Wales,151.970795,-29.493122 +2023,10,24,1,New South Wales,152.189959,-32.223426 +2021,8,13,1,New South Wales,150.631778,-34.418245 +2021,5,4,1,New South Wales,150.637377,-34.423817 +2023,9,13,1,New South Wales,153.393984,-28.959008 +2022,2,16,1,New South Wales,153.10483,-29.476871 +2024,1,7,1,New South Wales,150.979028,-34.094584 +2020,12,8,1,New South Wales,153.13439,-28.562399 +2023,4,23,1,New South Wales,152.813851,-31.574742 +2021,7,10,1,New South Wales,150.520299,-34.465546 +2023,4,29,1,New South Wales,152.93879,-29.728067 +2020,10,29,1,New South Wales,149.977333,-36.564828 +2021,4,28,1,New South Wales,150.637914,-34.488937 +2021,10,6,1,New South Wales,152.889349,-31.444292 +2021,5,15,1,New South Wales,150.600553,-34.427869 +2021,5,8,1,New South Wales,150.60486,-34.426781 +2023,7,19,1,New South Wales,150.784201,-33.717201 +2021,8,15,1,New South Wales,150.515531,-34.439485 +2021,6,29,1,New South Wales,150.627346,-34.420332 +2023,9,2,1,New South Wales,150.996403,-34.048304 +2020,10,26,1,New South Wales,153.360617,-28.840581 +2021,10,11,1,New South Wales,153.55705,-28.397447 +2021,11,17,1,New South Wales,152.068562,-32.706796 +2022,12,3,1,New South Wales,151.560008,-30.40352 +2021,7,12,1,New South Wales,150.512837,-34.446679 +2022,10,3,1,New South Wales,152.818259,-30.671226 +2020,10,20,1,New South Wales,153.273941,-28.820088 +2021,5,30,1,New South Wales,150.639189,-34.491215 +2020,10,7,1,New South Wales,150.702147,-33.503703 +2021,10,9,1,New South Wales,153.042529,-28.469144 +2023,8,26,1,New South Wales,150.784698,-33.716327 +2020,10,15,1,New South Wales,151.819545,-32.624381 +2022,10,5,1,New South Wales,152.993988,-30.41061 +2021,1,25,1,New South Wales,153.31591,-28.96395 +2021,10,28,1,New South Wales,150.702147,-33.503703 +2022,8,11,1,New South Wales,150.522177,-34.461982 +2021,11,13,1,New South Wales,150.615932,-34.437266 +2021,6,15,1,New South Wales,150.514537,-34.446596 +2021,6,22,1,New South Wales,150.625427,-34.386234 +2021,12,8,1,New South Wales,153.288877,-28.828331 +2022,3,1,1,New South Wales,146.402231,-34.554766 +2020,11,21,1,New South Wales,152.060767,-32.710582 +2023,11,8,1,New South Wales,152.340568,-31.987628 +2021,3,22,1,New South Wales,150.61006,-34.430228 +2022,9,2,1,New South Wales,146.590836,-34.757257 +2021,12,18,1,New South Wales,152.894797,-30.189812 +2022,4,25,1,New South Wales,150.382552,-31.440949 +2021,6,14,1,New South Wales,150.625337,-34.384411 +2021,6,6,1,New South Wales,150.60779,-34.430111 +2020,11,10,1,New South Wales,152.812711,-29.633965 +2023,11,15,1,New South Wales,152.93908,-30.23035 +2024,4,15,1,New South Wales,150.984291,-34.093484 +2021,10,6,1,New South Wales,152.885538,-31.444253 +2020,9,28,1,New South Wales,152.061703,-32.708992 +2020,7,7,1,New South Wales,152.868147,-29.667322 +2020,2,1,1,New South Wales,152.646584,-30.540256 +2021,6,30,1,New South Wales,150.656769,-34.454816 +2021,4,16,1,New South Wales,150.615646,-34.431229 +2020,5,,1,New South Wales,152.089312,-32.729332 +2022,10,30,1,New South Wales,150.014167,-31.729722 +2020,12,11,1,New South Wales,153.104235,-29.479888 +2021,3,28,1,New South Wales,152.065691,-32.743065 +2020,10,17,1,New South Wales,152.241946,-30.047586 +2021,6,22,1,New South Wales,150.624484,-34.385377 +2022,10,10,1,New South Wales,152.926647,-31.444435 +2023,1,8,1,New South Wales,153.312712,-28.858713 +2020,7,8,1,New South Wales,153.370506,-28.796339 +2021,4,20,1,New South Wales,150.515777,-34.449533 +2021,5,11,1,New South Wales,150.604343,-34.438428 +2021,6,10,1,New South Wales,150.517914,-34.447566 +2020,10,16,1,New South Wales,150.060051,-33.773304 +2021,5,12,1,New South Wales,150.516498,-34.44907 +2023,8,24,1,New South Wales,153.389441,-29.016289 +2020,7,17,1,New South Wales,153.103635,-29.485486 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2023,7,16,1,New South Wales,153.104155,-29.478917 +2020,10,2,1,New South Wales,152.908694,-31.476303 +2022,10,28,1,New South Wales,152.380171,-31.914588 +2020,11,18,1,New South Wales,153.561418,-28.390195 +2021,5,12,1,New South Wales,150.609238,-34.420529 +2021,5,11,1,New South Wales,150.626603,-34.398888 +2021,11,22,1,New South Wales,152.929333,-31.469243 +2021,5,29,1,New South Wales,150.522701,-34.464937 +2021,6,2,1,New South Wales,150.616529,-34.43808 +2023,12,1,1,New South Wales,152.063317,-32.706428 +2021,5,9,1,New South Wales,150.521831,-34.466361 +2022,9,25,1,New South Wales,153.562051,-28.383974 +2021,8,1,1,New South Wales,151.847077,-32.532721 +2024,1,3,1,New South Wales,150.987745,-34.024033 +2021,6,24,1,New South Wales,150.52039,-34.465782 +2020,7,28,1,New South Wales,153.339454,-28.807154 +2020,9,23,1,New South Wales,151.80526,-32.60102 +2023,12,4,1,New South Wales,152.06372,-32.706571 +2021,5,11,1,New South Wales,150.655766,-34.459133 +2021,11,3,1,New South Wales,152.899636,-29.630911 +2020,11,9,1,New South Wales,153.377297,-28.651917 +2023,6,7,1,New South Wales,150.884811,-34.067055 +2023,3,16,1,New South Wales,153.302722,-28.820461 +2021,3,2,1,New South Wales,153.552943,-28.587769 +2022,1,27,1,New South Wales,151.692338,-32.691094 +2021,5,25,1,New South Wales,150.631484,-34.387812 +2021,10,11,1,New South Wales,153.036423,-30.8961 +2020,1,7,1,New South Wales,153.104417,-29.489615 +2021,8,7,1,New South Wales,152.867966,-29.667091 +2020,11,2,1,New South Wales,149.958519,-36.587122 +2021,4,12,1,New South Wales,150.526173,-34.458309 +2022,12,13,1,New South Wales,153.523543,-28.669577 +2020,9,11,1,New South Wales,153.099718,-30.305679 +2020,9,25,1,New South Wales,152.066612,-32.71324 +2020,,,1,New South Wales,152.765461,-28.665933 +2023,12,12,1,New South Wales,153.087703,-30.255043 +2023,7,6,1,New South Wales,152.069221,-32.748434 +2021,4,22,1,New South Wales,150.636974,-34.48561 +2023,12,10,1,New South Wales,152.824625,-29.505784 +2021,6,12,1,New South Wales,150.515973,-34.446968 +2021,5,11,1,New South Wales,150.517382,-34.447547 +2021,2,6,1,New South Wales,153.093769,-29.488793 +2020,10,29,1,New South Wales,149.977333,-36.564828 +2020,9,5,1,New South Wales,153.423169,-28.726687 +2020,10,30,1,New South Wales,152.851464,-29.692524 +2021,4,16,1,New South Wales,150.612971,-34.430807 +2021,4,27,1,New South Wales,150.523712,-34.452444 +2022,4,27,1,New South Wales,153.110522,-29.490124 +2023,7,1,1,New South Wales,152.912034,-31.449446 +2020,11,25,1,New South Wales,150.844837,-29.834427 +2021,4,21,1,New South Wales,150.607579,-34.433298 +2021,7,31,1,New South Wales,153.410059,-28.894616 +2021,6,7,1,New South Wales,150.528058,-34.465595 +2023,1,9,1,New South Wales,152.782339,-31.630779 +2020,9,10,1,New South Wales,152.226817,-30.083019 +2022,6,16,1,New South Wales,153.393232,-28.647607 +2021,5,24,1,New South Wales,150.631291,-34.420111 +2021,4,17,1,New South Wales,150.616273,-34.430989 +2023,12,6,1,New South Wales,153.108108,-29.490245 +2021,6,19,1,New South Wales,150.627719,-34.420997 +2020,3,18,1,New South Wales,152.921646,-31.438521 +2021,7,5,1,New South Wales,150.524245,-34.466464 +2022,11,19,1,New South Wales,153.326028,-28.824541 +2023,12,17,1,New South Wales,152.915662,-31.453929 +2021,5,18,1,New South Wales,150.633821,-34.418348 +2023,12,16,1,New South Wales,152.37242,-31.924702 +2024,4,28,1,New South Wales,152.063642,-32.706549 +2021,4,22,1,New South Wales,150.616378,-34.433416 +2020,11,7,1,New South Wales,150.424455,-34.483098 +2020,10,26,1,New South Wales,149.976368,-36.555504 +2023,3,28,1,New South Wales,153.209291,-28.647468 +2023,10,18,1,New South Wales,153.02477,-30.416638 +2021,1,4,1,New South Wales,152.91426,-31.484938 +2021,9,16,1,New South Wales,150.51303,-34.446025 +2021,4,23,1,New South Wales,150.606517,-34.433918 +2022,11,11,1,New South Wales,153.55686,-28.39833 +2023,5,20,1,New South Wales,153.395145,-28.960091 +2021,6,9,1,New South Wales,150.609818,-34.43071 +2021,6,12,1,New South Wales,150.521379,-34.459212 +2022,1,7,1,New South Wales,153.080272,-30.351926 +2021,1,31,1,New South Wales,152.171948,-32.722892 +2020,8,18,1,New South Wales,152.767875,-31.25153 +2022,8,10,1,New South Wales,150.52392,-34.448128 +2021,7,27,1,New South Wales,153.528013,-28.230042 +2022,12,1,1,New South Wales,152.449444,-31.943502 +2022,11,6,1,New South Wales,150.834934,-34.066033 +2021,9,13,1,New South Wales,153.556726,-28.397422 +2021,2,12,1,New South Wales,152.8933,-31.443058 +2021,6,6,1,New South Wales,150.518955,-34.447326 +2022,12,19,1,New South Wales,152.07719,-32.722484 +2023,6,3,1,New South Wales,152.924902,-31.459395 +2021,5,18,1,New South Wales,150.632871,-34.394528 +2021,2,28,1,New South Wales,150.603528,-34.43458 +2021,9,27,1,New South Wales,152.912661,-31.448244 +2022,3,3,1,New South Wales,153.159167,-28.850803 +2024,2,5,1,New South Wales,150.785956,-33.707121 +2020,10,10,1,New South Wales,151.67419,-32.59988 +2020,10,23,1,New South Wales,149.976368,-36.555504 +2022,2,5,1,New South Wales,153.107995,-29.49011 +2022,7,12,1,New South Wales,150.56362,-34.523494 +2021,4,28,1,New South Wales,150.517075,-34.446134 +2023,11,12,1,New South Wales,152.501737,-31.894506 +2021,12,17,1,New South Wales,153.438617,-28.993818 +2021,5,18,1,New South Wales,152.920725,-31.448905 +2023,9,6,1,New South Wales,153.013071,-28.44216 +2022,9,3,1,New South Wales,153.095904,-29.484492 +2021,5,27,1,New South Wales,150.599781,-34.425185 +2023,10,19,1,New South Wales,150.78439,-33.718101 +2021,6,3,1,New South Wales,150.604747,-34.427302 +2021,8,9,1,New South Wales,150.643294,-34.404484 +2021,5,27,1,New South Wales,150.59793,-34.426023 +2021,6,3,1,New South Wales,150.604748,-34.427284 +2021,6,3,1,New South Wales,150.519726,-34.447026 +2021,7,9,1,New South Wales,150.51309,-34.447306 +2020,10,17,1,New South Wales,149.931009,-36.595007 +2021,6,12,1,New South Wales,153.104085,-29.479925 +2020,6,1,1,New South Wales,153.109374,-29.490595 +2021,5,1,1,New South Wales,150.624232,-34.388906 +2021,5,8,1,New South Wales,150.638896,-34.491561 +2021,10,6,1,New South Wales,150.791311,-34.185742 +2023,9,21,1,New South Wales,150.871109,-34.061451 +2024,1,19,1,New South Wales,152.89256,-31.458402 +2020,4,8,1,New South Wales,150.145934,-34.920722 +2021,10,6,1,New South Wales,153.27058,-29.01109 +2022,4,19,1,New South Wales,152.063754,-32.706452 +2020,2,19,1,New South Wales,152.792947,-30.218507 +2021,7,27,1,New South Wales,150.5159,-34.448706 +2021,10,23,1,New South Wales,150.813954,-34.092453 +2021,4,1,1,New South Wales,150.529187,-34.458307 +2021,10,18,1,New South Wales,150.972133,-34.100016 +2024,6,25,1,New South Wales,152.895989,-31.435036 +2022,6,22,1,New South Wales,153.295296,-28.854499 +2021,11,14,1,New South Wales,152.90667,-31.471524 +2020,1,10,1,New South Wales,153.31578,-28.857898 +2021,5,20,1,New South Wales,150.517152,-34.451977 +2020,10,22,1,New South Wales,152.995171,-28.474523 +2024,9,21,1,New South Wales,146.574405,-34.769076 +2022,7,31,1,New South Wales,153.314983,-28.949201 +2021,7,4,1,New South Wales,150.603087,-34.417623 +2021,9,6,1,New South Wales,153.001884,-28.621703 +2021,6,26,1,New South Wales,150.522632,-34.464313 +2024,1,20,1,New South Wales,153.110527,-29.490156 +2021,12,27,1,New South Wales,153.103849,-29.485515 +2023,9,24,1,New South Wales,153.362495,-28.679249 +2021,8,9,1,New South Wales,150.517063,-34.435874 +2021,4,18,1,New South Wales,151.003336,-34.072952 +2023,1,30,1,New South Wales,152.969835,-31.194172 +2021,6,20,1,New South Wales,150.603559,-34.424348 +2021,5,12,1,New South Wales,150.518133,-34.4376 +2020,8,23,1,New South Wales,152.796342,-31.686015 +2023,8,3,1,New South Wales,152.210253,-31.560625 +2023,10,30,1,New South Wales,152.89953,-31.472569 +2021,6,3,1,New South Wales,150.519636,-34.455219 +2023,12,26,1,New South Wales,151.890633,-32.078899 +2024,2,16,1,New South Wales,150.782496,-33.719098 +2020,10,30,1,New South Wales,149.976368,-36.555504 +2023,2,14,1,New South Wales,153.517743,-28.66879 +2021,3,28,1,New South Wales,150.529983,-34.460477 +2024,3,17,1,New South Wales,150.990088,-34.090633 +2021,12,23,1,New South Wales,153.320897,-28.84777 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,6,4,1,New South Wales,150.639574,-34.399066 +2021,5,22,1,New South Wales,150.635424,-34.392702 +2021,3,30,1,New South Wales,150.609969,-34.429631 +2022,11,20,1,New South Wales,153.404973,-28.973013 +2023,4,30,1,New South Wales,150.821777,-34.100964 +2023,1,30,1,New South Wales,153.099772,-29.491557 +2021,4,4,1,New South Wales,150.607054,-34.429961 +2021,5,22,1,New South Wales,150.630462,-34.42096 +2021,5,18,1,New South Wales,150.33606,-34.488852 +2021,3,12,1,New South Wales,152.902133,-31.442247 +2020,6,3,1,New South Wales,150.251059,-33.596826 +2021,3,8,1,New South Wales,150.518916,-34.446811 +2024,1,19,1,New South Wales,152.92418,-31.45999 +2023,11,1,1,Queensland,153.189185,-27.725482 +2021,5,21,1,New South Wales,150.659349,-34.457516 +2023,9,2,1,New South Wales,153.462903,-28.871873 +2022,7,26,1,New South Wales,152.896127,-31.434458 +2023,10,8,1,New South Wales,153.108151,-29.490269 +2021,4,28,1,New South Wales,150.62445,-34.388875 +2020,1,3,1,New South Wales,152.929268,-29.002578 +2021,5,15,1,New South Wales,150.520295,-34.453889 +2020,1,5,1,New South Wales,150.067105,-35.141087 +2021,3,6,1,New South Wales,150.636202,-34.486325 +2021,5,24,1,New South Wales,150.639238,-34.492965 +2023,12,11,1,New South Wales,152.874279,-31.458689 +2022,12,14,1,New South Wales,153.092835,-29.384284 +2020,7,30,1,New South Wales,152.794157,-31.127808 +2021,9,27,1,New South Wales,152.37486,-31.915593 +2021,5,17,1,New South Wales,150.629423,-34.389539 +2021,3,25,1,New South Wales,150.534634,-34.462221 +2020,4,13,1,New South Wales,152.924902,-31.468765 +2022,1,1,1,New South Wales,153.102964,-29.489419 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2023,1,18,1,New South Wales,152.063956,-32.706625 +2021,2,1,1,New South Wales,152.640191,-31.555827 +2021,6,11,1,New South Wales,150.611863,-34.431877 +2021,7,17,1,New South Wales,150.628004,-34.420922 +2020,12,9,1,New South Wales,150.910308,-29.713371 +2021,7,1,1,New South Wales,150.596832,-34.412668 +2021,8,17,1,New South Wales,153.109337,-29.490656 +2021,8,5,1,New South Wales,153.302389,-28.821933 +2020,9,30,1,New South Wales,152.923867,-31.452782 +2020,11,28,1,New South Wales,152.736874,-30.874352 +2021,5,24,1,New South Wales,150.516413,-34.450105 +2021,5,10,1,New South Wales,153.108231,-29.490241 +2022,1,17,1,New South Wales,150.840889,-34.082896 +2023,6,30,1,New South Wales,153.314983,-28.949201 +2021,3,29,1,New South Wales,152.926853,-31.457742 +2021,5,24,1,New South Wales,150.639101,-34.392665 +2021,7,8,1,New South Wales,150.513105,-34.447171 +2021,7,8,1,New South Wales,150.640611,-34.393894 +2021,7,11,1,New South Wales,153.621265,-28.650719 +2023,2,21,1,New South Wales,153.450627,-28.728127 +2021,1,31,1,New South Wales,153.314983,-28.949201 +2021,6,9,1,New South Wales,150.518812,-34.447368 +2021,5,7,1,New South Wales,150.521893,-34.459502 +2023,5,8,1,New South Wales,153.317468,-28.815186 +2020,9,12,1,New South Wales,152.91683,-31.47526 +2020,11,14,1,New South Wales,150.007695,-36.513507 +2020,9,3,1,New South Wales,151.96538,-32.73374 +2024,7,10,1,New South Wales,151.942669,-32.741931 +2022,9,3,1,New South Wales,146.46238,-34.690474 +2020,1,27,1,New South Wales,151.769527,-32.456803 +2021,10,22,1,New South Wales,150.6514,-33.584083 +2021,6,4,1,New South Wales,150.637083,-34.488299 +2021,6,20,1,New South Wales,150.639476,-34.392853 +2021,1,20,1,New South Wales,152.078143,-32.721993 +2020,10,28,1,New South Wales,149.976368,-36.555504 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2020,11,6,1,New South Wales,150.010499,-36.556654 +2021,4,30,1,New South Wales,150.636322,-34.421876 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2021,8,18,1,New South Wales,152.893086,-31.454902 +2023,9,25,1,New South Wales,150.785314,-33.714053 +2022,8,30,1,New South Wales,149.323715,-36.29884 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2020,12,7,1,New South Wales,149.68559,-33.539997 +2023,3,17,1,New South Wales,153.109392,-30.298612 +2021,7,8,1,New South Wales,150.64142,-34.395676 +2022,10,16,1,New South Wales,153.217972,-28.830391 +2021,4,21,1,New South Wales,150.617126,-34.433512 +2022,8,2,1,New South Wales,150.794805,-34.143337 +2020,5,13,1,New South Wales,150.685416,-34.353443 +2021,4,20,1,New South Wales,150.614376,-34.42923 +2021,4,24,1,New South Wales,150.606626,-34.434686 +2020,1,2,1,New South Wales,153.280168,-28.828381 +2021,6,26,1,New South Wales,150.597566,-34.418181 +2021,10,6,1,New South Wales,153.290682,-28.818095 +2021,6,11,1,New South Wales,150.604304,-34.437877 +2021,5,12,1,New South Wales,150.613327,-34.458059 +2021,1,27,1,New South Wales,152.899261,-29.63245 +2021,5,23,1,New South Wales,150.522451,-34.464905 +2022,8,10,1,New South Wales,153.107421,-29.490133 +2022,5,23,1,New South Wales,151.897794,-31.831385 +2023,5,4,1,New South Wales,149.961801,-36.581243 +2021,5,29,1,New South Wales,150.640872,-34.396216 +2020,10,10,1,New South Wales,152.924419,-31.469069 +2021,1,10,1,New South Wales,153.264264,-28.824654 +2021,3,5,1,New South Wales,151.506959,-30.511997 +2021,4,13,1,New South Wales,153.141199,-28.54005 +2022,9,23,1,New South Wales,152.922013,-31.479595 +2020,11,30,1,New South Wales,153.343646,-28.866891 +2021,5,13,1,New South Wales,150.613339,-34.458032 +2023,1,5,1,New South Wales,153.100732,-29.490096 +2021,6,20,1,New South Wales,150.628115,-34.420861 +2024,3,1,1,New South Wales,151.874878,-32.768082 +2023,3,27,1,New South Wales,153.108108,-29.490217 +2021,6,24,1,New South Wales,150.657359,-34.4559 +2021,7,6,1,New South Wales,153.312092,-28.840306 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2021,5,18,1,New South Wales,150.530497,-34.471477 +2021,4,22,1,New South Wales,150.616995,-34.433554 +2022,2,3,1,New South Wales,152.063595,-32.706024 +2021,9,11,1,New South Wales,151.045766,-34.028927 +2021,5,14,1,New South Wales,150.633197,-34.418489 +2020,5,13,1,New South Wales,149.371656,-36.007611 +2021,5,19,1,New South Wales,150.517531,-34.452805 +2020,11,18,1,New South Wales,150.925745,-33.427547 +2021,4,21,1,New South Wales,150.615786,-34.433197 +2021,5,4,1,New South Wales,150.5215,-34.452913 +2020,1,18,1,New South Wales,153.427267,-28.807715 +2024,5,22,1,New South Wales,152.843867,-31.425182 +2023,2,27,1,New South Wales,152.063534,-32.705935 +2021,5,20,1,New South Wales,150.529874,-34.471203 +2023,1,25,1,New South Wales,149.649028,-37.366438 +2023,12,13,1,New South Wales,153.413643,-29.031003 +2024,5,26,1,New South Wales,152.414737,-31.944193 +2024,6,12,1,New South Wales,153.394902,-29.033992 +2022,12,13,1,New South Wales,151.555123,-32.859442 +2021,4,25,1,New South Wales,150.615557,-34.435528 +2020,6,27,1,New South Wales,151.779136,-32.485756 +2022,8,11,1,New South Wales,151.433442,-30.644193 +2022,1,16,1,New South Wales,153.306645,-28.610402 +2022,6,15,1,New South Wales,153.403899,-28.260605 +2021,3,19,1,New South Wales,152.896425,-29.629872 +2020,10,2,1,New South Wales,153.104146,-29.485048 +2023,1,1,1,New South Wales,152.872153,-31.475391 +2021,6,12,1,New South Wales,150.515858,-34.447182 +2022,10,14,1,New South Wales,150.9286,-33.95807 +2021,9,9,1,New South Wales,150.644166,-34.393151 +2023,3,20,1,New South Wales,153.492577,-28.762975 +2021,8,26,1,New South Wales,150.641856,-34.394864 +2024,3,8,1,New South Wales,150.985764,-34.091881 +2022,8,24,1,New South Wales,152.793261,-31.641586 +2021,6,20,1,New South Wales,150.520382,-34.465665 +2021,5,17,1,New South Wales,150.516128,-34.45019 +2021,7,4,1,New South Wales,153.120167,-29.489619 +2021,5,8,1,New South Wales,150.632595,-34.418225 +2023,8,3,1,New South Wales,152.210153,-31.56082 +2020,12,9,1,New South Wales,153.093554,-29.488644 +2021,9,2,1,New South Wales,150.513111,-34.447334 +2020,4,10,1,New South Wales,150.104747,-34.986906 +2021,4,11,1,New South Wales,150.517637,-34.44775 +2023,11,3,1,New South Wales,150.784074,-33.717027 +2021,11,8,1,New South Wales,153.108221,-29.490245 +2021,7,18,1,New South Wales,150.624341,-34.386186 +2023,3,31,1,New South Wales,153.314983,-28.949201 +2022,7,27,1,New South Wales,151.091178,-29.774595 +2021,10,4,1,New South Wales,153.585614,-28.79922 +2021,10,2,1,New South Wales,153.400765,-28.257909 +2023,6,30,1,New South Wales,153.314983,-28.949201 +2021,3,22,1,New South Wales,150.533247,-34.480124 +2021,9,7,1,New South Wales,150.520005,-34.447519 +2021,8,30,1,New South Wales,150.51953,-34.437457 +2020,9,12,1,New South Wales,153.096537,-29.485583 +2020,10,19,1,New South Wales,153.3033,-28.821668 +2024,5,12,1,New South Wales,150.935874,-34.112713 +2023,3,30,1,New South Wales,153.301335,-28.821349 +2024,1,23,1,New South Wales,152.425949,-32.25695 +2021,9,19,1,New South Wales,153.104498,-29.477413 +2023,10,20,1,New South Wales,152.400316,-31.8524 +2020,11,2,1,New South Wales,153.61531,-28.66255 +2021,4,22,1,New South Wales,150.630917,-34.388243 +2020,10,10,1,Queensland,153.066745,-27.925369 +2021,10,28,1,New South Wales,152.807209,-29.812936 +2023,9,26,1,New South Wales,150.999001,-34.047966 +2021,3,28,1,New South Wales,150.517262,-34.451592 +2021,7,1,1,New South Wales,150.627046,-34.39053 +2021,6,9,1,New South Wales,150.642,-34.394371 +2024,1,8,1,New South Wales,152.816706,-31.573747 +2020,11,2,1,New South Wales,150.990984,-34.024525 +2020,12,8,1,New South Wales,149.972032,-36.288695 +2021,4,16,1,New South Wales,150.615172,-34.431067 +2021,11,16,1,New South Wales,153.316454,-28.823424 +2021,6,4,1,New South Wales,150.607357,-34.436125 +2023,8,12,1,New South Wales,153.044309,-30.912286 +2020,10,21,1,New South Wales,152.666458,-31.863221 +2023,8,3,1,New South Wales,152.060906,-32.248828 +2022,5,30,1,New South Wales,153.090803,-28.598745 +2021,3,9,1,New South Wales,150.607498,-34.430439 +2021,3,12,1,New South Wales,150.515111,-34.445932 +2020,7,26,1,New South Wales,153.331243,-28.821749 +2021,7,12,1,New South Wales,153.316219,-28.837037 +2022,8,9,1,New South Wales,152.915097,-31.481547 +2021,6,20,1,New South Wales,150.513828,-34.446266 +2022,10,16,1,New South Wales,150.790411,-34.143171 +2021,5,6,1,New South Wales,150.615892,-34.435985 +2021,5,8,1,New South Wales,150.518313,-34.451379 +2021,6,27,1,New South Wales,150.644329,-34.391603 +2022,8,3,1,New South Wales,151.054228,-34.040303 +2021,1,21,1,New South Wales,152.415158,-31.93326 +2022,11,2,1,New South Wales,152.085467,-32.728065 +2021,8,24,1,New South Wales,153.126154,-29.477165 +2021,6,7,1,New South Wales,150.607905,-34.430645 +2021,5,6,1,New South Wales,150.638731,-34.490882 +2021,4,27,1,New South Wales,150.624088,-34.400543 +2021,3,8,1,New South Wales,150.60756,-34.431288 +2021,5,21,1,New South Wales,150.630355,-34.420895 +2021,5,3,1,New South Wales,150.637334,-34.423771 +2021,5,14,1,New South Wales,150.51778,-34.441442 +2023,4,18,1,New South Wales,152.062288,-32.707956 +2020,11,1,1,New South Wales,149.976368,-36.555504 +2021,4,25,1,New South Wales,150.604064,-34.424926 +2021,8,28,1,New South Wales,150.602843,-34.444069 +2021,6,3,1,New South Wales,150.637019,-34.488243 +2020,6,29,1,New South Wales,153.4899,-28.66979 +2024,1,23,1,New South Wales,152.927121,-31.468863 +2021,7,8,1,New South Wales,150.662435,-34.454582 +2021,4,4,1,New South Wales,150.664166,-34.458861 +2021,7,31,1,New South Wales,150.52039,-34.465782 +2021,5,20,1,New South Wales,150.599232,-34.429168 +2021,5,24,1,New South Wales,150.616001,-34.434842 +2021,2,12,1,New South Wales,153.108221,-29.490231 +2020,4,2,1,New South Wales,152.781212,-31.712419 +2021,7,14,1,New South Wales,150.627376,-34.421189 +2021,11,30,1,New South Wales,152.923014,-31.450607 +2020,1,8,1,New South Wales,152.19875,-32.18785 +2021,4,16,1,New South Wales,150.515886,-34.448814 +2021,7,21,1,New South Wales,152.162077,-32.713414 +2021,12,9,1,New South Wales,153.214727,-28.647013 +2023,6,5,1,New South Wales,150.79581,-34.17807 +2021,5,31,1,New South Wales,150.630252,-34.389438 +2023,9,3,1,New South Wales,152.978134,-30.41922 +2023,1,16,1,New South Wales,152.106116,-32.728301 +2021,7,26,1,New South Wales,153.104042,-29.485188 +2023,11,16,1,New South Wales,150.786182,-33.706131 +2020,10,6,1,New South Wales,150.710361,-33.435893 +2021,3,3,1,New South Wales,150.526644,-34.427946 +2022,4,28,1,New South Wales,149.018361,-30.301056 +2023,6,19,1,New South Wales,151.768723,-32.712202 +2020,10,30,1,New South Wales,149.976368,-36.555504 +2022,11,11,1,New South Wales,150.472157,-34.492082 +2022,12,20,1,New South Wales,153.43068,-29.015315 +2022,8,16,1,New South Wales,151.915437,-31.972441 +2020,11,16,1,New South Wales,153.433927,-28.959788 +2022,10,6,1,New South Wales,150.472157,-34.492082 +2020,11,1,1,New South Wales,149.92265,-36.572354 +2021,7,7,1,New South Wales,150.604833,-34.418955 +2023,11,5,1,New South Wales,153.09246,-29.493062 +2021,3,19,1,New South Wales,150.635434,-34.488095 +2022,11,12,1,New South Wales,150.548214,-34.513975 +2020,9,17,1,New South Wales,152.927297,-31.477972 +2021,8,13,1,New South Wales,150.644179,-34.3993 +2024,4,13,1,New South Wales,152.063698,-32.7064 +2023,6,1,1,New South Wales,150.8133,-34.20098 +2020,5,30,1,New South Wales,153.103977,-29.48481 +2021,5,31,1,New South Wales,150.517307,-34.446391 +2020,11,6,1,New South Wales,150.007338,-36.56122 +2022,7,23,1,New South Wales,152.85141,-31.55344 +2021,7,12,1,New South Wales,153.314015,-28.840427 +2021,3,14,1,New South Wales,150.517285,-34.451556 +2020,3,24,1,New South Wales,152.160218,-32.712226 +2023,6,9,1,New South Wales,150.79688,-34.14645 +2021,8,8,1,New South Wales,150.522735,-34.463774 +2023,9,7,1,New South Wales,152.235288,-31.422726 +2023,5,5,1,New South Wales,152.911912,-30.867833 +2022,11,21,1,New South Wales,152.78933,-30.918792 +2023,7,21,1,New South Wales,149.597672,-32.732685 +2021,9,10,1,New South Wales,150.609028,-34.45271 +2021,7,10,1,New South Wales,150.513093,-34.447216 +2023,3,27,1,New South Wales,152.164126,-31.723834 +2023,11,15,1,New South Wales,150.78596,-33.713945 +2020,10,30,1,New South Wales,149.976368,-36.555504 +2024,6,9,1,New South Wales,152.746636,-31.416215 +2021,5,25,1,New South Wales,150.518001,-34.453464 +2021,4,14,1,New South Wales,150.516065,-34.448268 +2020,11,3,1,New South Wales,149.976368,-36.555504 +2023,8,25,1,New South Wales,152.19256,-32.242859 +2021,8,13,1,New South Wales,152.37945,-31.919871 +2020,11,3,1,New South Wales,149.976368,-36.555504 +2020,8,10,1,New South Wales,153.103795,-29.48559 +2020,2,4,1,New South Wales,150.824122,-34.150303 +2020,9,14,1,New South Wales,153.10402,-29.485263 +2024,1,18,1,New South Wales,150.78758,-33.703693 +2021,6,15,1,New South Wales,150.603252,-34.437 +2020,8,25,1,New South Wales,150.790866,-34.139954 +2021,11,4,1,New South Wales,152.378055,-31.919202 +2021,4,25,1,New South Wales,150.518292,-34.449143 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2021,5,17,1,New South Wales,150.600254,-34.427304 +2024,4,21,1,New South Wales,153.064997,-30.901921 +2023,12,16,1,New South Wales,151.00447,-34.04031 +2021,5,1,1,New South Wales,150.636187,-34.423163 +2021,4,17,1,New South Wales,150.604813,-34.426888 +2020,11,16,1,New South Wales,152.038578,-32.731657 +2023,7,23,1,New South Wales,150.785538,-33.713213 +2023,7,18,1,New South Wales,150.668664,-33.563918 +2021,3,1,1,New South Wales,150.520521,-34.467985 +2024,7,26,1,New South Wales,152.924339,-30.506281 +2022,1,30,1,New South Wales,153.476799,-28.932925 +2020,8,31,1,New South Wales,153.134651,-30.190244 +2020,11,12,1,New South Wales,150.010499,-36.556654 +2021,9,13,1,New South Wales,150.53253,-34.477486 +2021,7,5,1,New South Wales,150.51309,-34.445828 +2021,8,12,1,New South Wales,150.522303,-34.464748 +2020,1,5,1,New South Wales,153.096612,-29.491931 +2020,11,11,1,New South Wales,150.010499,-36.556654 +2021,6,10,1,New South Wales,150.518193,-34.453576 +2020,11,11,1,New South Wales,150.010499,-36.556654 +2023,12,18,1,New South Wales,150.78588,-33.706001 +2023,10,19,1,New South Wales,152.806158,-31.654347 +2021,4,27,1,New South Wales,150.615523,-34.435554 +2023,6,8,1,New South Wales,150.849716,-34.095055 +2020,6,7,1,New South Wales,152.913249,-31.429014 +2021,9,17,1,New South Wales,150.525187,-34.471036 +2021,6,11,1,New South Wales,150.519878,-34.452565 +2022,5,25,1,New South Wales,153.290625,-28.85211 +2021,3,13,1,New South Wales,150.532895,-34.476926 +2024,1,3,1,New South Wales,152.412471,-31.93309 +2023,12,3,1,New South Wales,153.103881,-29.489582 +2021,5,11,1,New South Wales,150.637334,-34.423798 +2021,6,4,1,New South Wales,150.534938,-34.463363 +2021,5,18,1,New South Wales,150.608981,-34.434525 +2021,12,14,1,New South Wales,153.103784,-29.48558 +2021,5,11,1,New South Wales,150.639125,-34.491962 +2022,9,14,1,New South Wales,151.939548,-32.739729 +2020,5,27,1,New South Wales,153.103452,-29.488686 +2022,8,30,1,New South Wales,153.52315,-28.68808 +2023,6,12,1,New South Wales,151.71994,-30.570134 +2021,1,5,1,New South Wales,150.010382,-33.765331 +2020,5,23,1,New South Wales,153.08988,-29.480588 +2022,11,18,1,New South Wales,152.759299,-30.84178 +2022,7,23,1,New South Wales,150.937434,-29.722443 +2023,7,1,1,New South Wales,152.924971,-31.454822 +2020,10,29,1,New South Wales,149.984303,-36.560469 +2021,3,19,1,New South Wales,150.813678,-34.104761 +2021,12,4,1,New South Wales,150.613161,-34.441341 +2020,10,30,1,New South Wales,149.976368,-36.555504 +2021,7,28,1,New South Wales,150.515285,-34.449253 +2020,9,17,1,New South Wales,153.394456,-28.959507 +2021,7,5,1,New South Wales,150.627228,-34.420681 +2024,2,17,1,New South Wales,153.109734,-29.490208 +2021,6,23,1,New South Wales,150.625737,-34.386438 +2022,1,27,1,New South Wales,153.108108,-29.490605 +2021,12,21,1,New South Wales,152.875185,-29.679519 +2022,7,27,1,New South Wales,152.824738,-29.505802 +2023,5,31,1,New South Wales,150.473352,-34.488637 +2021,9,8,1,New South Wales,153.219138,-28.827998 +2021,8,10,1,New South Wales,150.522414,-34.465805 +2020,7,20,1,New South Wales,152.811792,-31.131426 +2023,3,3,1,New South Wales,152.792962,-31.63998 +2021,3,16,1,New South Wales,150.603475,-34.439087 +2023,10,30,1,New South Wales,153.110533,-29.490133 +2021,6,23,1,New South Wales,150.60263,-34.418759 +2024,9,21,2,New South Wales,146.564765,-34.757557 +2023,11,13,1,New South Wales,150.785511,-33.713373 +2021,9,23,1,New South Wales,153.26733,-29.150028 +2021,5,3,1,New South Wales,150.521709,-34.46607 +2021,7,13,1,New South Wales,153.316266,-28.837077 +2022,12,16,1,New South Wales,152.870792,-31.285938 +2021,2,17,1,New South Wales,153.109294,-29.490852 +2020,11,3,1,New South Wales,149.976368,-36.555504 +2023,6,2,1,New South Wales,152.10991,-32.730377 +2022,4,1,1,New South Wales,153.103924,-29.489559 +2021,4,26,1,New South Wales,150.625035,-34.388174 +2021,8,1,1,New South Wales,153.435675,-28.571838 +2023,10,2,1,New South Wales,153.109776,-29.490119 +2022,11,23,1,New South Wales,152.760068,-30.904021 +2022,6,1,1,New South Wales,152.925879,-31.452754 +2022,12,18,1,New South Wales,152.072243,-32.710696 +2021,10,31,1,New South Wales,150.808991,-34.098826 +2020,9,30,1,New South Wales,152.914417,-31.48522 +2023,9,12,1,New South Wales,152.808811,-31.652367 +2020,1,13,1,New South Wales,152.795877,-31.463092 +2021,10,23,1,New South Wales,152.917202,-31.471145 +2021,5,30,1,New South Wales,150.603023,-34.424428 +2022,1,6,1,New South Wales,152.868758,-29.666954 +2022,9,28,1,New South Wales,150.885909,-34.016809 +2020,11,15,1,New South Wales,153.091741,-29.487906 +2020,11,1,1,New South Wales,149.96897,-36.58553 +2020,12,8,1,New South Wales,153.427361,-28.981083 +2022,1,20,1,New South Wales,152.884514,-31.439712 +2021,5,20,1,New South Wales,150.517192,-34.452095 +2020,12,31,1,New South Wales,153.096591,-29.485819 +2023,10,6,1,New South Wales,152.915743,-31.451391 +2021,9,24,1,New South Wales,153.332042,-28.712244 +2021,11,2,1,New South Wales,153.434849,-28.627709 +2023,9,16,1,New South Wales,151.774437,-32.589912 +2022,9,6,1,New South Wales,153.3116,-28.82111 +2020,8,27,1,New South Wales,151.636855,-32.634352 +2021,8,28,1,New South Wales,153.283294,-28.814781 +2021,9,23,1,New South Wales,153.325204,-28.82563 +2021,7,31,1,New South Wales,150.626021,-34.38831 +2022,7,4,1,New South Wales,152.353525,-31.92625 +2020,5,5,1,New South Wales,150.05832,-34.90814 +2022,9,14,1,New South Wales,153.104106,-29.477502 +2023,4,26,1,New South Wales,152.905478,-31.467655 +2021,3,21,1,New South Wales,150.04434,-31.13455 +2020,11,27,1,New South Wales,153.555944,-28.399282 +2023,10,13,1,New South Wales,151.642998,-32.658802 +2020,,,1,New South Wales,152.697129,-28.658431 +2024,2,29,1,New South Wales,150.786461,-33.703948 +2021,5,2,1,New South Wales,150.604965,-34.426927 +2021,7,18,1,New South Wales,150.516253,-34.446712 +2022,12,20,1,New South Wales,152.107255,-32.729371 +2021,5,1,1,New South Wales,150.637463,-34.488342 +2021,6,26,1,New South Wales,150.518445,-34.44361 +2021,5,29,1,New South Wales,150.604717,-34.437507 +2022,9,29,1,New South Wales,152.90598,-30.24071 +2022,1,8,1,New South Wales,152.379693,-31.917977 +2020,1,16,1,New South Wales,153.110189,-29.490185 +2020,5,28,1,New South Wales,152.92669,-30.51253 +2022,10,17,1,New South Wales,153.299584,-28.825056 +2021,7,9,1,New South Wales,153.293132,-28.864658 +2021,5,20,1,New South Wales,150.639233,-34.493127 +2021,12,26,1,New South Wales,150.968363,-34.097663 +2021,4,17,1,New South Wales,153.559427,-28.37077 +2023,8,16,1,New South Wales,153.10387,-29.489554 +2021,9,4,1,New South Wales,153.101864,-29.489671 +2023,9,28,1,New South Wales,153.166184,-28.649353 +2021,9,12,1,New South Wales,150.514784,-34.441913 +2021,7,10,1,New South Wales,150.601788,-34.412458 +2021,5,14,1,New South Wales,150.601805,-34.428596 +2023,8,13,1,New South Wales,153.299634,-28.825034 +2021,11,19,1,New South Wales,152.48052,-31.998759 +2021,2,26,1,New South Wales,153.288292,-28.809314 +2022,2,18,1,New South Wales,150.426888,-34.428813 +2020,11,4,1,New South Wales,150.061644,-33.77693 +2020,10,20,1,New South Wales,149.931009,-36.595007 +2023,1,25,1,New South Wales,152.892179,-31.447953 +2023,10,15,1,New South Wales,152.91318,-31.451323 +2023,4,27,1,New South Wales,152.916619,-31.461208 +2023,11,4,1,New South Wales,150.984248,-34.094271 +2021,1,15,1,New South Wales,152.964472,-30.394456 +2020,4,20,1,New South Wales,152.442889,-28.469062 +2021,4,18,1,New South Wales,150.62743,-34.386552 +2021,8,9,1,New South Wales,150.632614,-34.418333 +2021,4,22,1,New South Wales,150.604207,-34.422233 +2021,5,10,1,New South Wales,150.637324,-34.423744 +2021,4,27,1,New South Wales,150.636197,-34.422045 +2021,5,15,1,New South Wales,150.523869,-34.463716 +2022,2,11,1,New South Wales,152.919855,-31.443387 +2021,5,18,1,New South Wales,150.531003,-34.470929 +2021,11,1,1,New South Wales,153.268125,-28.888919 +2022,6,27,1,New South Wales,152.454265,-31.936428 +2023,8,30,1,New South Wales,149.552133,-33.491228 +2020,7,27,1,New South Wales,153.089719,-29.480626 +2023,3,10,1,New South Wales,149.945176,-36.590676 +2020,5,4,1,New South Wales,152.869955,-29.679624 +2024,9,21,1,New South Wales,146.584958,-34.775614 +2021,7,10,1,New South Wales,150.641736,-34.394096 +2021,6,23,1,New South Wales,150.644364,-34.393091 +2021,6,29,1,New South Wales,150.644072,-34.394564 +2020,1,4,1,New South Wales,153.041112,-28.459546 +2021,5,24,1,New South Wales,152.859794,-29.356404 +2020,1,4,1,New South Wales,153.54542,-28.654604 +2020,12,20,1,New South Wales,152.851464,-29.692524 +2021,8,14,1,New South Wales,149.345248,-36.160621 +2020,11,18,1,New South Wales,149.966791,-36.502277 +2021,9,17,1,New South Wales,153.434451,-28.719432 +2021,4,25,1,New South Wales,150.638019,-34.419925 +2020,10,19,1,New South Wales,149.931009,-36.595007 +2022,4,30,1,New South Wales,153.233289,-28.829497 +2021,6,21,1,New South Wales,150.520315,-34.465754 +2023,5,30,1,New South Wales,152.190633,-31.595405 +2023,7,3,1,New South Wales,153.091376,-29.487938 +2023,5,3,1,New South Wales,153.103559,-29.485515 +2024,7,16,1,New South Wales,152.861601,-29.682112 +2020,10,27,1,New South Wales,152.382276,-30.785785 +2023,3,2,1,New South Wales,153.110147,-29.490255 +2021,4,13,1,New South Wales,150.517834,-34.443283 +2021,4,23,1,New South Wales,150.60629,-34.433868 +2021,1,30,1,New South Wales,153.109304,-29.490815 +2023,9,6,1,New South Wales,150.786285,-33.706359 +2021,4,17,1,New South Wales,150.524614,-34.452102 +2020,10,17,1,New South Wales,149.931009,-36.595007 +2021,3,26,1,New South Wales,153.302087,-28.820919 +2021,6,4,1,New South Wales,150.606723,-34.437762 +2020,11,,1,New South Wales,150.582596,-34.498724 +2020,10,2,1,New South Wales,152.247552,-30.071263 +2023,10,27,1,New South Wales,152.927264,-31.465471 +2021,5,2,1,New South Wales,150.633577,-34.418514 +2021,5,12,1,New South Wales,150.627904,-34.389816 +2022,12,26,1,New South Wales,153.091371,-29.487668 +2021,6,7,1,New South Wales,150.607762,-34.430715 +2020,11,12,1,New South Wales,152.851464,-29.692524 +2021,10,20,1,New South Wales,153.453198,-28.646734 +2020,8,19,1,New South Wales,152.918126,-31.485138 +2021,5,19,1,New South Wales,150.516492,-34.450035 +2023,8,8,1,New South Wales,152.06515,-32.709113 +2021,5,20,1,New South Wales,150.515017,-34.451321 +2021,4,1,1,New South Wales,150.635364,-34.488626 +2021,4,29,1,New South Wales,150.603546,-34.427459 +2020,9,6,1,New South Wales,153.091103,-29.487892 +2021,5,4,1,New South Wales,150.522293,-34.453335 +2021,4,14,1,New South Wales,150.633573,-34.392396 +2020,5,3,1,New South Wales,153.125467,-29.088994 +2021,6,7,1,New South Wales,150.642041,-34.396797 +2022,8,30,1,New South Wales,149.324337,-36.295798 +2021,11,19,1,New South Wales,152.915403,-31.43169 +2021,5,9,1,New South Wales,150.632735,-34.418264 +2022,11,29,1,New South Wales,152.064174,-32.701665 +2022,4,6,1,New South Wales,152.898593,-31.474159 +2023,10,25,1,New South Wales,152.193373,-32.220759 +2020,11,30,1,New South Wales,153.343646,-28.866891 +2021,4,21,1,New South Wales,150.604327,-34.424499 +2021,8,23,1,New South Wales,153.324366,-28.855875 +2021,5,30,1,New South Wales,150.631047,-34.388263 +2023,12,13,1,New South Wales,153.104922,-29.489699 +2023,8,13,1,New South Wales,152.901022,-30.500021 +2023,5,15,1,New South Wales,152.910311,-31.471125 +2022,3,18,1,New South Wales,152.075901,-32.766602 +2021,2,26,1,New South Wales,150.611681,-34.419531 +2021,12,7,1,New South Wales,152.923751,-31.459238 +2020,11,,1,New South Wales,150.519407,-34.488077 +2021,8,1,1,New South Wales,152.063835,-32.706769 +2022,11,20,1,New South Wales,150.870732,-34.038268 +2021,3,14,1,New South Wales,150.517546,-34.453031 +2020,4,20,1,New South Wales,152.410285,-28.487113 +2023,10,7,1,New South Wales,150.989327,-34.027328 +2022,8,7,1,New South Wales,153.323748,-28.880788 +2021,6,27,1,New South Wales,150.522158,-34.464159 +2021,11,22,1,New South Wales,152.084003,-32.727197 +2021,5,9,1,New South Wales,152.81942,-31.653604 +2020,10,15,1,New South Wales,150.614483,-33.431245 +2021,11,3,1,New South Wales,150.618395,-34.440199 +2021,10,19,1,New South Wales,153.603596,-28.68841 +2021,7,5,1,New South Wales,150.978676,-34.084597 +2020,10,7,1,New South Wales,152.454265,-31.936428 +2022,10,2,1,New South Wales,152.381175,-31.922706 +2020,10,28,1,New South Wales,149.976368,-36.555504 +2021,4,30,1,New South Wales,150.635359,-34.41973 +2020,3,3,1,New South Wales,153.495959,-28.660629 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2023,5,7,1,New South Wales,149.398348,-33.489028 +2021,5,1,1,New South Wales,150.604722,-34.427418 +2021,6,1,1,New South Wales,150.527832,-34.46477 +2021,5,15,1,New South Wales,150.516037,-34.449205 +2020,4,21,1,New South Wales,150.100935,-33.778608 +2020,11,10,1,New South Wales,152.904476,-31.4531 +2024,3,14,1,New South Wales,151.886119,-32.275372 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2021,4,30,1,New South Wales,150.606883,-34.454273 +2024,6,13,1,New South Wales,151.841101,-32.858409 +2021,7,5,1,New South Wales,150.643892,-34.393254 +2022,11,27,1,New South Wales,152.777302,-30.885013 +2023,10,13,1,New South Wales,153.109283,-29.490806 +2021,6,20,1,New South Wales,150.627874,-34.420919 +2023,2,19,1,New South Wales,152.408923,-31.932184 +2023,10,22,1,New South Wales,153.225129,-29.977542 +2021,10,7,1,New South Wales,153.475849,-28.734899 +2021,5,28,1,New South Wales,150.602566,-34.424816 +2021,6,18,1,New South Wales,150.622433,-34.384048 +2020,10,29,1,New South Wales,149.949397,-36.554597 +2020,8,26,1,New South Wales,150.406039,-31.386864 +2023,7,1,1,New South Wales,152.926877,-31.459683 +2021,6,5,1,New South Wales,150.519333,-34.448172 +2021,12,28,1,New South Wales,153.103806,-29.48558 +2023,7,24,1,New South Wales,153.557353,-28.388482 +2021,10,26,1,New South Wales,153.104396,-29.476946 +2022,6,22,1,New South Wales,153.365264,-28.828356 +2020,1,8,1,New South Wales,150.901854,-34.005716 +2021,10,28,1,New South Wales,150.616853,-34.438159 +2020,7,23,1,New South Wales,152.909022,-31.490642 +2020,9,8,1,New South Wales,152.514736,-31.761352 +2021,4,22,1,New South Wales,150.633006,-34.392845 +2020,10,4,1,New South Wales,150.937896,-29.721364 +2023,1,22,1,New South Wales,153.102706,-29.489531 +2023,10,24,1,New South Wales,152.925302,-31.45411 +2021,1,13,1,New South Wales,152.037048,-32.728656 +2021,4,20,1,New South Wales,150.610097,-34.419022 +2021,4,23,1,New South Wales,150.637378,-34.485573 +2021,10,15,1,New South Wales,152.921764,-31.457591 +2021,3,26,1,New South Wales,152.790227,-31.63917 +2023,9,11,1,New South Wales,149.089203,-36.228097 +2023,11,18,1,New South Wales,150.785662,-33.713216 +2021,5,9,1,New South Wales,150.6158,-34.43501 +2021,7,23,1,New South Wales,152.045481,-32.766559 +2024,3,15,1,New South Wales,152.063956,-32.706625 +2022,2,7,1,New South Wales,153.370661,-29.088183 +2021,5,13,1,New South Wales,150.637303,-34.423725 +2021,9,11,1,New South Wales,153.198681,-28.842875 +2021,8,13,1,New South Wales,152.436467,-31.818389 +2021,4,2,1,New South Wales,153.123887,-30.214315 +2021,3,7,1,New South Wales,150.525066,-34.457818 +2022,8,21,1,New South Wales,150.801163,-34.112927 +2023,3,1,1,New South Wales,152.329499,-29.184817 +2020,3,28,1,New South Wales,150.069922,-35.096731 +2021,4,19,1,New South Wales,150.614277,-34.429634 +2021,7,15,1,New South Wales,150.513306,-34.445886 +2022,10,15,1,New South Wales,151.000349,-34.060319 +2021,6,19,1,New South Wales,150.520432,-34.465819 +2021,3,26,1,New South Wales,150.516902,-34.446464 +2020,11,,1,New South Wales,150.189109,-34.539893 +2021,11,5,1,New South Wales,153.101209,-29.489788 +2021,6,20,1,New South Wales,150.623195,-34.384027 +2023,9,29,1,New South Wales,152.769485,-29.449249 +2021,3,28,1,New South Wales,150.516161,-34.446864 +2022,12,7,1,New South Wales,149.690113,-33.149909 +2021,11,3,1,New South Wales,152.37362,-31.9144 +2020,8,16,1,New South Wales,153.017542,-29.014133 +2020,7,20,1,New South Wales,153.09525,-29.483481 +2022,9,6,1,New South Wales,152.1172,-32.7647 +2021,4,25,1,New South Wales,150.637329,-34.486924 +2021,5,11,1,New South Wales,150.627851,-34.389734 +2020,10,11,1,New South Wales,151.705196,-32.635735 +2021,8,7,1,New South Wales,150.996929,-34.050017 +2023,2,10,1,New South Wales,151.600439,-32.547632 +2022,4,10,1,New South Wales,153.401778,-28.260132 +2022,11,19,1,New South Wales,152.794854,-30.893434 +2021,4,23,1,New South Wales,150.637299,-34.485283 +2021,9,3,1,New South Wales,152.092394,-28.783947 +2022,10,29,1,New South Wales,151.739677,-30.477665 +2020,9,19,1,New South Wales,150.099467,-33.779232 +2021,6,3,1,New South Wales,150.624526,-34.388128 +2020,12,24,1,New South Wales,151.943663,-32.771163 +2021,5,2,1,New South Wales,150.611406,-34.419643 +2022,1,9,1,New South Wales,152.880375,-31.435946 +2021,11,15,1,New South Wales,152.926226,-31.454536 +2021,6,12,1,New South Wales,152.894407,-31.430976 +2021,10,1,1,New South Wales,152.832154,-29.638267 +2024,2,4,1,New South Wales,153.109734,-29.49017 +2021,9,2,1,New South Wales,152.774605,-30.109379 +2022,1,12,1,New South Wales,153.609404,-28.661237 +2023,8,13,1,New South Wales,150.78491,-33.716468 +2021,6,25,1,New South Wales,150.52271,-34.464252 +2021,7,6,1,New South Wales,150.627376,-34.421189 +2021,3,21,1,New South Wales,150.607846,-34.422043 +2021,3,19,1,New South Wales,150.525515,-34.459945 +2023,5,11,1,New South Wales,152.866933,-31.306324 +2021,6,3,1,New South Wales,150.522414,-34.465805 +2020,10,28,1,New South Wales,153.339182,-28.872021 +2021,6,5,1,New South Wales,150.607304,-34.4357 +2021,5,7,1,New South Wales,150.621733,-34.397657 +2021,9,24,1,New South Wales,150.615956,-34.436401 +2021,7,5,1,New South Wales,150.603031,-34.417694 +2021,10,18,1,New South Wales,152.405964,-32.03858 +2023,12,5,1,New South Wales,152.701348,-31.489794 +2024,3,12,1,New South Wales,150.784532,-33.713408 +2022,2,5,1,New South Wales,151.74064,-30.47779 +2024,1,20,1,New South Wales,150.786719,-33.703707 +2021,5,22,1,New South Wales,150.639023,-34.493259 +2021,3,29,1,New South Wales,150.607667,-34.422211 +2020,11,15,1,New South Wales,152.2405,-30.043804 +2021,5,4,1,New South Wales,150.637312,-34.423788 +2021,5,19,1,New South Wales,150.633785,-34.418464 +2020,12,9,1,New South Wales,149.972032,-36.288695 +2023,1,31,1,New South Wales,152.811499,-29.514934 +2021,8,2,1,New South Wales,153.104128,-29.480061 +2021,7,9,1,New South Wales,153.32981,-28.93367 +2021,2,26,1,New South Wales,152.893086,-31.454902 +2021,7,5,1,New South Wales,150.524212,-34.466473 +2024,2,21,1,New South Wales,150.783631,-33.717511 +2021,4,24,1,New South Wales,150.615431,-34.428854 +2021,6,21,1,New South Wales,150.623905,-34.384681 +2021,5,30,1,New South Wales,150.631169,-34.387409 +2020,3,20,1,New South Wales,150.06412,-33.768894 +2020,1,4,1,New South Wales,152.06476,-32.699654 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,6,18,1,New South Wales,150.604126,-34.438766 +2021,6,20,1,New South Wales,150.520298,-34.465591 +2021,12,25,1,New South Wales,150.563856,-34.5 +2021,9,4,1,New South Wales,153.39743,-28.259978 +2020,8,29,1,New South Wales,152.898586,-31.439154 +2021,5,23,1,New South Wales,150.631015,-34.388227 +2021,4,15,1,New South Wales,150.5295,-34.459142 +2021,4,9,1,New South Wales,150.702147,-33.503703 +2021,7,24,1,New South Wales,150.624555,-34.385929 +2021,4,12,1,New South Wales,150.615848,-34.432919 +2021,4,12,1,New South Wales,150.636063,-34.485854 +2023,2,16,1,New South Wales,153.053038,-28.446426 +2020,10,26,1,New South Wales,149.976368,-36.555504 +2022,3,17,1,New South Wales,153.609595,-28.661299 +2020,11,30,1,New South Wales,153.343646,-28.866891 +2020,10,23,1,New South Wales,149.976368,-36.555504 +2021,8,8,1,New South Wales,150.631243,-34.387456 +2023,6,30,1,New South Wales,150.784145,-33.717423 +2022,4,5,1,New South Wales,153.290554,-28.948697 +2021,3,16,1,New South Wales,150.525451,-34.459899 +2024,3,17,1,New South Wales,152.930406,-30.436573 +2023,7,20,1,New South Wales,150.786686,-33.705538 +2020,5,30,1,New South Wales,150.71658,-33.45018 +2021,7,21,1,New South Wales,153.52954,-28.54593 +2020,10,29,1,New South Wales,149.977333,-36.564828 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2020,10,31,1,New South Wales,149.977333,-36.564828 +2021,9,16,1,New South Wales,150.848589,-34.049453 +2021,5,7,1,New South Wales,150.621387,-34.397975 +2021,9,16,1,New South Wales,153.012908,-30.488945 +2020,10,30,1,New South Wales,149.977333,-36.564828 +2020,10,29,1,New South Wales,149.976368,-36.555504 +2021,10,29,1,New South Wales,153.043613,-30.450068 +2021,5,11,1,New South Wales,150.638991,-34.492059 +2022,8,26,1,New South Wales,151.013656,-34.055279 +2024,3,10,1,New South Wales,150.786066,-33.709601 +2021,4,23,1,New South Wales,150.630932,-34.388477 +2021,6,14,1,New South Wales,150.640015,-34.398444 +2021,4,30,1,New South Wales,150.610112,-34.420023 +2020,5,12,1,New South Wales,153.363072,-29.383336 +2022,11,11,1,New South Wales,150.621006,-33.445362 +2022,5,1,1,New South Wales,152.076805,-32.722636 +2021,5,30,1,New South Wales,150.517384,-34.441597 +2020,4,18,1,New South Wales,153.099787,-29.493454 +2021,5,3,1,New South Wales,150.606875,-34.4553 +2021,4,25,1,New South Wales,150.630704,-34.388834 +2021,8,23,1,New South Wales,150.520037,-34.446429 +2021,9,23,1,New South Wales,150.615902,-34.436391 +2022,11,3,1,New South Wales,152.909842,-31.467422 +2021,7,13,1,New South Wales,153.000187,-28.640453 +2021,6,18,1,New South Wales,150.519193,-34.459889 +2022,8,31,1,New South Wales,153.314983,-28.949201 +2023,7,31,1,New South Wales,153.314983,-28.949201 +2023,9,7,1,New South Wales,153.206394,-28.840079 +2022,9,27,1,New South Wales,152.880381,-29.676992 +2021,5,12,1,New South Wales,150.604294,-34.438977 +2021,4,26,1,New South Wales,150.635219,-34.420457 +2021,7,1,1,New South Wales,150.513066,-34.447765 +2021,7,19,1,New South Wales,150.597931,-34.417999 +2021,10,4,1,New South Wales,152.892899,-31.467024 +2023,10,8,1,New South Wales,153.092995,-29.493104 +2023,4,10,1,New South Wales,153.103918,-29.489596 +2023,11,5,1,New South Wales,153.112657,-29.488485 +2020,9,25,1,New South Wales,150.591317,-34.587106 +2021,4,25,1,New South Wales,150.6053,-34.437302 +2021,8,9,1,New South Wales,153.454912,-28.648522 +2020,4,1,1,New South Wales,152.79793,-31.12443 +2021,7,12,1,New South Wales,150.521976,-34.464417 +2021,7,2,1,New South Wales,150.626805,-34.420988 +2021,4,13,1,New South Wales,153.103859,-29.485043 +2021,1,3,1,New South Wales,152.083349,-32.728057 +2024,3,13,1,New South Wales,151.080776,-29.772271 +2021,7,27,1,New South Wales,150.625123,-34.385453 +2021,5,21,1,New South Wales,150.517335,-34.452044 +2021,4,15,1,New South Wales,150.515902,-34.448625 +2021,8,14,1,New South Wales,150.601703,-34.431047 +2022,11,5,1,New South Wales,152.896968,-31.475164 +2024,4,7,1,New South Wales,152.925299,-31.454119 +2021,10,17,1,New South Wales,153.557252,-28.397271 +2021,5,28,1,New South Wales,150.642743,-34.394638 +2023,10,1,1,New South Wales,151.849018,-32.033369 +2021,4,24,1,New South Wales,150.60539,-34.423834 +2020,10,31,1,New South Wales,149.977333,-36.564828 +2021,7,7,1,New South Wales,150.627704,-34.421898 +2024,3,18,1,New South Wales,150.98682,-34.090893 +2021,5,19,1,New South Wales,153.108124,-29.490189 +2023,8,7,1,New South Wales,149.549994,-33.567432 +2023,11,27,1,New South Wales,153.09975,-29.491553 +2021,8,28,1,New South Wales,150.899382,-33.9525 +2021,5,8,1,New South Wales,153.556602,-28.372279 +2020,8,3,1,New South Wales,152.797769,-31.126 +2021,3,7,1,New South Wales,150.525114,-34.458395 +2022,7,24,1,New South Wales,153.103688,-29.485828 +2022,8,31,1,New South Wales,153.314983,-28.949201 +2022,11,18,1,New South Wales,152.794854,-30.893434 +2020,9,10,1,New South Wales,152.933658,-29.681698 +2023,3,22,1,New South Wales,153.302025,-28.81949 +2022,10,27,1,New South Wales,152.076725,-32.722788 +2021,6,28,1,New South Wales,150.657593,-34.455715 +2021,6,15,1,New South Wales,150.515134,-34.446284 +2023,7,31,1,New South Wales,153.314983,-28.949201 +2020,11,7,1,New South Wales,152.280284,-31.494442 +2020,1,11,1,New South Wales,152.40417,-31.94582 +2023,10,14,1,New South Wales,152.377985,-31.927605 +2022,3,18,1,New South Wales,153.101285,-29.4899 +2020,11,6,1,New South Wales,150.002505,-36.541329 +2021,8,22,1,New South Wales,150.513777,-34.447266 +2023,7,15,1,New South Wales,152.79321,-31.64232 +2020,1,,1,New South Wales,153.599562,-28.71389 +2020,5,15,1,New South Wales,151.067778,-33.171111 +2023,1,31,1,New South Wales,153.314983,-28.949201 +2024,3,10,1,New South Wales,149.560672,-33.704938 +2022,11,20,1,New South Wales,152.794854,-30.893434 +2021,9,30,1,New South Wales,153.314983,-28.949201 +2020,11,24,1,New South Wales,153.342482,-28.805797 +2024,5,18,1,New South Wales,152.953593,-30.426799 +2021,3,31,1,New South Wales,153.314983,-28.949201 +2024,5,24,1,New South Wales,152.7841,-31.1123 +2020,1,5,1,New South Wales,150.788232,-34.187288 +2020,7,9,1,New South Wales,153.1668,-28.857761 +2021,6,1,1,New South Wales,150.639833,-34.400298 +2021,5,4,1,New South Wales,150.659243,-34.457406 +2021,5,18,1,New South Wales,150.631038,-34.390102 +2020,7,23,1,New South Wales,152.801923,-31.125618 +2021,4,26,1,New South Wales,150.610322,-34.419144 +2022,8,31,1,New South Wales,153.314983,-28.949201 +2021,4,25,1,New South Wales,150.605392,-34.423771 +2020,1,6,1,New South Wales,153.090904,-29.487439 +2020,1,7,1,New South Wales,153.286418,-29.025463 +2020,1,25,1,New South Wales,150.507953,-34.405156 +2023,8,6,1,New South Wales,150.973867,-31.786861 +2020,10,30,1,New South Wales,152.576341,-30.518654 +2021,12,26,1,New South Wales,152.897471,-29.623469 +2024,2,8,1,New South Wales,150.78551,-33.710552 +2024,2,7,1,New South Wales,152.926218,-31.471752 +2021,5,10,1,New South Wales,150.609182,-34.420591 +2021,5,4,1,New South Wales,150.638531,-34.490635 +2020,10,28,1,New South Wales,152.064777,-32.702123 +2021,5,1,1,New South Wales,150.52564,-34.464194 +2020,7,19,1,New South Wales,151.79902,-32.56969 +2023,8,19,1,New South Wales,150.834274,-34.074582 +2023,7,31,1,New South Wales,153.314983,-28.949201 +2021,7,19,1,New South Wales,150.623775,-34.383524 +2021,2,28,1,New South Wales,153.314983,-28.949201 +2021,7,17,1,New South Wales,150.624544,-34.385937 +2020,9,15,1,New South Wales,153.003188,-29.18344 +2020,10,30,1,New South Wales,149.92265,-36.572354 +2021,5,28,1,New South Wales,150.602488,-34.424868 +2021,7,9,1,New South Wales,153.564428,-28.388822 +2021,7,23,1,New South Wales,150.607453,-34.439616 +2021,5,6,1,New South Wales,150.632752,-34.418823 +2021,5,3,1,New South Wales,150.632705,-34.418939 +2021,5,12,1,New South Wales,150.62782,-34.397415 +2021,7,14,1,New South Wales,150.59665,-34.409914 +2021,5,12,1,New South Wales,150.522389,-34.465183 +2023,9,24,1,New South Wales,153.629579,-28.637434 +2021,9,2,1,New South Wales,152.928246,-31.47188 +2024,7,29,1,New South Wales,151.765325,-32.698008 +2021,6,1,1,New South Wales,150.638303,-34.490982 +2020,5,4,1,New South Wales,150.06455,-34.9085 +2021,6,13,1,New South Wales,150.615022,-34.43137 +2021,5,5,1,New South Wales,150.516131,-34.44753 +2023,10,6,1,New South Wales,152.540871,-30.211706 +2021,9,28,1,New South Wales,150.70031,-34.29345 +2023,2,12,1,New South Wales,153.075675,-30.35297 +2023,11,14,1,New South Wales,153.103366,-29.489928 +2021,4,28,1,New South Wales,150.616208,-34.429464 +2021,5,21,1,New South Wales,150.521653,-34.465763 +2020,11,7,1,New South Wales,152.908943,-28.998474 +2021,5,23,1,New South Wales,150.514492,-34.443332 +2021,5,15,1,New South Wales,150.62991,-34.395391 +2020,11,3,1,New South Wales,149.96897,-36.58553 +2021,5,23,1,New South Wales,150.528975,-34.471419 +2021,5,12,1,New South Wales,150.637301,-34.423806 +2022,8,5,1,New South Wales,153.3093,-28.824171 +2020,12,31,1,New South Wales,153.314983,-28.949201 +2022,4,11,1,New South Wales,150.122087,-31.146344 +2023,8,31,1,New South Wales,153.314983,-28.949201 +2023,6,9,1,New South Wales,150.79781,-34.13669 +2023,9,30,1,New South Wales,152.601403,-31.651525 +2023,10,24,1,New South Wales,152.797833,-31.509279 +2023,7,27,1,New South Wales,153.103774,-29.485632 +2022,7,19,1,New South Wales,152.794224,-31.643813 +2021,10,8,1,New South Wales,153.05698,-30.35793 +2021,4,17,1,New South Wales,150.616559,-34.430111 +2021,12,31,1,New South Wales,152.884882,-30.242155 +2021,6,14,1,New South Wales,150.515774,-34.446703 +2020,12,13,1,New South Wales,153.103774,-29.485632 +2020,11,15,1,New South Wales,149.966791,-36.502277 +2023,8,16,1,New South Wales,152.658078,-31.293099 +2023,1,15,1,New South Wales,153.22848,-28.89182 +2021,5,11,1,New South Wales,150.639158,-34.491936 +2023,2,10,1,New South Wales,152.925742,-31.447654 +2023,11,12,1,New South Wales,152.926653,-31.454718 +2024,1,16,1,New South Wales,152.729144,-31.221146 +2023,9,29,1,New South Wales,153.38445,-28.786676 +2020,11,24,1,New South Wales,153.342482,-28.805797 +2021,1,29,1,New South Wales,153.557603,-28.394378 +2021,4,18,1,New South Wales,150.63094,-34.393995 +2021,5,11,1,New South Wales,150.637386,-34.423871 +2023,6,30,1,New South Wales,153.314983,-28.949201 +2021,6,10,1,New South Wales,150.521653,-34.465763 +2020,11,30,1,New South Wales,150.813678,-34.104761 +2021,8,14,1,New South Wales,149.35109,-36.152128 +2023,9,24,1,New South Wales,152.793781,-31.641562 +2020,10,30,1,New South Wales,149.958519,-36.587122 +2021,7,10,1,New South Wales,150.626709,-34.42132 +2021,4,3,1,New South Wales,150.522853,-34.450957 +2023,2,12,1,New South Wales,153.218514,-28.82476 +2021,4,7,1,New South Wales,150.634308,-34.488651 +2020,12,8,1,New South Wales,149.972032,-36.288695 +2021,5,30,1,New South Wales,150.523912,-34.452655 +2022,4,10,1,New South Wales,153.40078,-28.258427 +2023,7,28,1,New South Wales,153.278692,-28.662138 +2020,12,4,1,New South Wales,149.972032,-36.288695 +2021,5,30,1,New South Wales,150.523912,-34.452655 +2023,10,9,1,New South Wales,152.408876,-31.941279 +2020,1,25,1,New South Wales,153.556042,-28.399591 +2020,4,17,1,New South Wales,152.87607,-29.677883 +2021,6,3,1,New South Wales,150.519536,-34.447194 +2021,5,1,1,New South Wales,150.609644,-34.436431 +2020,9,24,1,New South Wales,152.759361,-31.245812 +2021,5,25,1,New South Wales,150.638866,-34.492652 +2023,3,20,1,New South Wales,153.022335,-28.489141 +2021,9,22,1,New South Wales,150.789578,-34.194548 +2020,7,10,1,New South Wales,152.795197,-31.644405 +2024,8,22,1,New South Wales,152.80582,-31.675865 +2021,5,11,1,New South Wales,150.60684,-34.438603 +2022,4,23,1,New South Wales,153.108167,-29.490628 +2024,1,25,1,New South Wales,151.758368,-32.401848 +2021,9,27,1,New South Wales,150.842335,-34.068546 +2023,12,6,1,New South Wales,150.786346,-33.706435 +2021,11,18,1,New South Wales,153.103779,-29.48559 +2020,1,6,1,New South Wales,153.108194,-29.490208 +2021,5,10,1,New South Wales,150.628032,-34.389873 +2021,4,19,1,New South Wales,150.606737,-34.43458 +2021,5,10,1,New South Wales,150.517135,-34.447803 +2021,5,5,1,New South Wales,150.603302,-34.427237 +2020,4,14,1,New South Wales,153.28477,-28.868925 +2021,3,25,1,New South Wales,150.521146,-34.453843 +2021,2,28,1,New South Wales,150.657671,-34.456402 +2021,5,23,1,New South Wales,150.638843,-34.493066 +2023,11,26,1,New South Wales,150.783143,-33.718624 +2021,8,7,1,New South Wales,150.51414,-34.44639 +2021,5,12,1,New South Wales,153.108113,-29.490189 +2023,1,25,1,New South Wales,153.091098,-29.487766 +2021,5,24,1,New South Wales,152.899836,-31.466336 +2021,5,12,1,New South Wales,150.516554,-34.449044 +2020,6,2,1,New South Wales,153.102706,-29.487392 +2021,4,26,1,New South Wales,150.629461,-34.388584 +2023,8,5,1,New South Wales,153.103876,-29.489582 +2023,7,9,1,New South Wales,153.108097,-29.49025 +2021,7,5,1,New South Wales,150.642867,-34.395659 +2021,7,27,1,New South Wales,150.515188,-34.449233 +2021,5,19,1,New South Wales,150.523834,-34.46377 +2021,5,12,1,New South Wales,150.605694,-34.427681 +2020,1,7,1,New South Wales,153.559739,-28.393697 +2021,5,2,1,New South Wales,150.604899,-34.426944 +2020,10,29,1,New South Wales,149.949397,-36.554597 +2021,6,29,1,New South Wales,150.513074,-34.447125 +2021,5,19,1,New South Wales,150.607943,-34.433882 +2021,8,23,1,New South Wales,153.103913,-29.489563 +2020,11,1,1,New South Wales,149.92265,-36.572354 +2022,12,8,1,New South Wales,152.06622,-32.71155 +2023,7,22,1,New South Wales,153.103682,-29.485781 +2022,5,27,1,New South Wales,152.753132,-31.418317 +2021,4,7,1,New South Wales,152.38252,-31.949035 +2023,4,5,1,New South Wales,152.424916,-31.947999 +2021,7,18,1,New South Wales,150.624298,-34.386158 +2023,7,17,1,New South Wales,153.531713,-28.315525 +2021,6,27,1,New South Wales,150.644396,-34.391947 +2021,4,25,1,New South Wales,150.61469,-34.428876 +2020,7,30,1,New South Wales,152.126344,-32.719607 +2021,5,6,1,New South Wales,150.627322,-34.389994 +2021,2,22,1,New South Wales,150.517579,-34.446757 +2024,1,27,1,New South Wales,149.846327,-32.43428 +2022,3,10,1,New South Wales,152.171465,-32.662939 +2023,11,30,1,New South Wales,150.784241,-33.716202 +2022,11,20,1,New South Wales,152.100605,-32.73438 +2023,3,17,1,New South Wales,153.278824,-28.874355 +2021,5,28,1,New South Wales,153.104096,-29.479869 +2022,1,27,1,New South Wales,152.901479,-31.442521 +2021,4,25,1,New South Wales,150.615452,-34.428863 +2023,3,2,1,New South Wales,152.792583,-31.640093 +2021,6,5,1,New South Wales,150.534611,-34.459309 +2020,11,,1,New South Wales,152.617496,-31.53719 +2021,6,5,1,New South Wales,150.640035,-34.397741 +2021,5,9,1,New South Wales,150.609192,-34.420618 +2022,9,30,1,New South Wales,152.90282,-30.23946 +2021,8,2,1,New South Wales,150.518448,-34.437264 +2021,11,12,1,New South Wales,153.437486,-28.991078 +2021,5,17,1,New South Wales,150.600232,-34.427294 +2021,6,7,1,New South Wales,150.51888,-34.447307 +2023,10,18,1,New South Wales,149.354414,-36.264873 +2021,6,9,1,New South Wales,150.605215,-34.437994 +2023,11,1,1,New South Wales,149.347109,-36.156702 +2020,5,,1,New South Wales,152.074307,-32.737584 +2024,1,3,1,New South Wales,153.093315,-29.492686 +2023,10,25,1,New South Wales,152.189959,-32.223426 +2021,1,28,1,New South Wales,150.848803,-34.061856 +2023,9,21,1,New South Wales,150.854036,-34.08393 +2022,8,27,1,New South Wales,153.5622,-28.382031 +2020,11,24,1,New South Wales,153.407043,-28.980759 +2020,7,14,1,New South Wales,153.1038,-29.485557 +2023,9,20,1,New South Wales,152.077227,-32.722495 +2021,5,8,1,New South Wales,150.521068,-34.46677 +2023,10,30,1,New South Wales,150.992049,-34.02504 +2023,12,22,1,New South Wales,150.737887,-34.303706 +2020,9,15,1,New South Wales,153.00311,-29.183413 +2021,9,26,1,New South Wales,152.82517,-31.27014 +2022,9,17,1,New South Wales,150.883858,-34.018485 +2020,11,24,1,New South Wales,153.342482,-28.805797 +2020,2,17,1,New South Wales,153.276439,-28.818955 +2023,11,1,1,New South Wales,152.192632,-32.228945 +2021,5,17,1,New South Wales,150.516361,-34.450023 +2022,9,10,1,New South Wales,153.205871,-28.8389 +2021,5,20,1,New South Wales,150.615634,-34.430895 +2023,9,21,1,New South Wales,152.606185,-30.34141 +2020,10,25,1,New South Wales,153.10819,-28.739989 +2024,8,10,1,New South Wales,152.887234,-31.426437 +2023,11,2,1,New South Wales,152.443123,-31.941959 +2023,2,24,1,New South Wales,149.37439,-36.1536 +2021,5,20,1,New South Wales,150.632841,-34.417986 +2022,6,14,1,New South Wales,151.682457,-32.515849 +2021,11,18,1,New South Wales,153.323255,-28.828887 +2021,5,31,1,New South Wales,150.517608,-34.440646 +2021,4,26,1,New South Wales,150.607898,-34.454175 +2021,6,10,1,New South Wales,150.518097,-34.447624 +2020,2,6,1,New South Wales,152.417498,-31.961785 +2023,5,2,1,New South Wales,151.349231,-31.217538 +2022,10,26,1,New South Wales,153.556027,-28.398847 +2024,4,4,1,New South Wales,152.786957,-31.629316 +2021,1,23,1,New South Wales,152.914932,-31.456363 +2021,5,13,1,New South Wales,150.525348,-34.464134 +2021,10,20,1,New South Wales,152.92823,-31.465844 +2021,4,25,1,New South Wales,150.625751,-34.39558 +2021,9,27,1,New South Wales,152.82929,-31.26329 +2020,9,15,1,New South Wales,152.893086,-31.454902 +2023,8,24,1,New South Wales,153.258453,-28.798142 +2021,8,9,1,New South Wales,150.520916,-34.465297 +2021,7,2,1,New South Wales,150.626811,-34.421178 +2020,10,28,1,New South Wales,153.339182,-28.872021 +2020,11,16,1,New South Wales,152.998686,-30.53081 +2020,10,20,1,New South Wales,152.893086,-31.454902 +2021,9,21,1,New South Wales,150.64317,-34.396485 +2021,9,21,1,New South Wales,150.606675,-34.452024 +2023,4,12,1,New South Wales,150.822066,-34.101309 +2020,10,4,1,New South Wales,152.893086,-31.454902 +2020,5,15,1,New South Wales,150.686971,-34.356454 +2022,1,19,1,New South Wales,150.616916,-34.44091 +2024,6,19,1,New South Wales,153.413438,-29.030985 +2023,6,15,1,New South Wales,152.975988,-30.403008 +2021,5,13,1,New South Wales,150.633208,-34.418092 +2023,8,21,1,New South Wales,153.103913,-29.489573 +2021,6,23,1,New South Wales,150.625768,-34.386493 +2022,4,11,1,New South Wales,152.081413,-32.776174 +2021,6,7,1,New South Wales,150.518749,-34.447304 +2021,4,8,1,New South Wales,150.520305,-34.447299 +2023,10,18,1,New South Wales,153.103827,-29.485571 +2022,6,23,1,New South Wales,152.895055,-31.460843 +2021,4,18,1,New South Wales,150.52835,-34.464934 +2020,1,31,1,New South Wales,153.104058,-29.485314 +2022,9,14,1,New South Wales,149.449605,-33.529732 +2021,5,19,1,New South Wales,150.633677,-34.418426 +2024,1,19,1,New South Wales,150.782519,-33.71865 +2024,3,20,1,New South Wales,152.409255,-31.940165 +2024,3,9,1,New South Wales,150.785095,-33.713695 +2023,5,2,1,New South Wales,150.785933,-33.709177 +2023,12,19,1,New South Wales,152.10034,-32.733265 +2021,4,20,1,New South Wales,150.606643,-34.434452 +2021,5,2,1,New South Wales,150.637387,-34.423817 +2023,3,25,1,New South Wales,153.093388,-29.488854 +2021,6,19,1,New South Wales,150.658749,-34.455214 +2020,10,21,1,New South Wales,153.334283,-28.277245 +2021,9,6,1,New South Wales,150.643464,-34.404632 +2021,4,9,1,New South Wales,150.603776,-34.431231 +2023,5,1,1,New South Wales,152.913307,-31.452795 +2023,11,16,1,New South Wales,152.926621,-31.459696 +2022,12,4,1,New South Wales,150.999348,-34.061264 +2021,6,1,1,New South Wales,150.639813,-34.400243 +2021,5,16,1,New South Wales,150.640533,-34.494135 +2022,9,11,1,New South Wales,150.790816,-34.18447 +2021,3,22,1,New South Wales,150.659437,-34.458275 +2022,10,16,1,New South Wales,153.071137,-30.88339 +2021,7,2,1,New South Wales,152.41535,-31.933351 +2020,10,1,1,New South Wales,153.073287,-30.296539 +2021,4,8,1,New South Wales,153.445223,-28.625494 +2022,12,19,1,New South Wales,152.908451,-31.44235 +2024,1,3,1,New South Wales,150.988732,-34.02772 +2023,12,13,1,New South Wales,153.103913,-29.489605 +2023,12,26,1,New South Wales,150.989011,-34.028525 +2023,8,26,1,New South Wales,150.148745,-35.088795 +2021,6,21,1,New South Wales,150.602477,-34.419928 +2023,12,8,1,New South Wales,152.925113,-31.454107 +2021,1,5,1,New South Wales,152.891185,-31.470657 +2022,8,30,1,New South Wales,149.32554,-36.292067 +2021,9,16,1,New South Wales,153.17047,-28.936208 +2021,3,17,1,New South Wales,150.516195,-34.445359 +2021,5,11,1,New South Wales,150.609117,-34.420554 +2022,6,18,1,New South Wales,151.609345,-32.544025 +2021,9,17,1,New South Wales,152.892673,-31.447286 +2021,10,18,1,New South Wales,152.867857,-29.66741 +2021,11,12,1,New South Wales,153.315583,-28.825211 +2021,4,24,1,New South Wales,150.610279,-34.419107 +2023,10,16,1,New South Wales,150.838874,-34.055558 +2022,7,28,1,New South Wales,152.811477,-31.13853 +2022,5,19,1,New South Wales,152.632075,-30.226366 +2022,4,2,1,New South Wales,153.546503,-28.734248 +2023,8,4,1,New South Wales,151.77941,-32.311119 +2021,9,20,1,New South Wales,150.652116,-34.399407 +2022,4,21,1,New South Wales,150.937136,-34.113796 +2024,2,12,1,New South Wales,151.218303,-32.825211 +2023,11,18,1,New South Wales,153.099799,-29.491618 +2022,7,28,1,New South Wales,152.795629,-31.137865 +2021,5,11,1,New South Wales,150.609202,-34.420627 +2023,10,12,1,New South Wales,153.124169,-30.267407 +2021,10,3,1,New South Wales,150.972959,-34.122943 +2021,6,22,1,New South Wales,150.520464,-34.454082 +2022,12,31,1,New South Wales,153.547119,-28.675864 +2022,2,1,1,New South Wales,152.93841,-30.40561 +2022,6,2,1,New South Wales,152.905541,-31.436547 +2021,4,27,1,New South Wales,150.624174,-34.388635 +2021,9,12,1,New South Wales,152.384475,-31.917783 +2021,3,29,1,New South Wales,150.515045,-34.447797 +2021,3,24,1,New South Wales,152.929709,-29.725906 +2021,6,26,1,New South Wales,150.522458,-34.46431 +2021,3,8,1,New South Wales,150.602978,-34.437076 +2020,12,28,1,New South Wales,153.103935,-29.485314 +2021,7,26,1,New South Wales,150.682587,-33.567198 +2021,5,9,1,New South Wales,150.521105,-34.435352 +2022,12,21,1,New South Wales,150.870275,-34.044949 +2024,2,3,1,New South Wales,152.379287,-31.918889 +2023,6,16,1,New South Wales,153.09974,-29.491543 +2020,4,20,1,New South Wales,152.841123,-31.441926 +2021,3,7,1,New South Wales,150.60748,-34.431818 +2021,5,13,1,New South Wales,150.486827,-34.461697 +2024,2,28,1,New South Wales,152.896265,-31.433785 +2024,2,3,1,New South Wales,150.786012,-33.711988 +2021,5,20,1,New South Wales,150.639446,-34.493303 +2021,5,7,1,New South Wales,150.627384,-34.390131 +2021,2,14,1,New South Wales,153.103763,-29.48566 +2021,6,9,1,New South Wales,150.517978,-34.447973 +2021,9,22,1,New South Wales,152.915126,-31.467471 +2023,8,1,1,New South Wales,152.910643,-31.44136 +2020,10,8,1,New South Wales,149.941793,-36.651646 +2021,5,7,1,New South Wales,150.609852,-34.455097 +2021,1,3,1,New South Wales,150.735614,-34.298063 +2022,11,9,1,New South Wales,150.991088,-33.980476 +2020,10,23,1,New South Wales,149.984303,-36.560469 +2021,8,2,1,New South Wales,150.520261,-34.465726 +2022,8,30,1,New South Wales,152.865584,-28.566259 +2021,5,4,1,New South Wales,151.484799,-30.643623 +2020,11,5,1,New South Wales,149.984303,-36.560469 +2023,6,26,1,New South Wales,152.866809,-30.404843 +2022,10,7,1,New South Wales,153.564733,-28.386918 +2021,12,24,1,New South Wales,150.421208,-34.46879 +2021,4,12,1,New South Wales,150.524503,-34.454029 +2021,4,28,1,New South Wales,150.602239,-34.427135 +2021,5,2,1,New South Wales,150.637421,-34.423772 +2023,12,14,1,New South Wales,152.91361,-31.42747 +2021,9,21,1,New South Wales,150.703279,-33.413568 +2021,5,5,1,New South Wales,150.603316,-34.427147 +2020,10,20,1,New South Wales,153.109476,-29.490493 +2023,8,14,1,New South Wales,150.784909,-33.716431 +2023,5,11,1,New South Wales,151.8237,-30.44822 +2022,7,31,1,New South Wales,153.278029,-28.67904 +2021,11,30,1,New South Wales,153.314983,-28.949201 +2020,10,25,1,New South Wales,149.976368,-36.555504 +2022,11,25,1,New South Wales,152.794854,-30.893434 +2021,5,26,1,New South Wales,150.631276,-34.420255 +2023,8,4,1,New South Wales,153.055007,-28.551728 +2020,9,4,1,New South Wales,152.00956,-32.73332 +2022,11,18,1,New South Wales,152.794854,-30.893434 +2021,9,8,1,New South Wales,153.449558,-28.630671 +2021,5,18,1,New South Wales,150.5204,-34.454045 +2020,9,5,1,New South Wales,153.118221,-28.619466 +2020,7,19,1,New South Wales,151.783415,-32.587629 +2021,6,5,1,New South Wales,150.640139,-34.39869 +2020,10,27,1,New South Wales,149.976368,-36.555504 +2021,4,20,1,New South Wales,150.637205,-34.4222 +2021,8,13,1,New South Wales,150.513809,-34.447285 +2021,8,24,1,New South Wales,153.093785,-29.493075 +2024,2,18,1,New South Wales,152.892113,-31.4474 +2020,2,27,1,New South Wales,153.10331,-29.486757 +2022,12,7,1,New South Wales,153.557292,-28.39738 +2021,5,2,1,New South Wales,150.606975,-34.455248 +2021,8,5,1,New South Wales,153.60237,-28.69032 +2021,8,5,1,New South Wales,153.60237,-28.69032 +2021,6,22,1,New South Wales,153.281175,-28.858628 +2021,6,7,1,New South Wales,150.51888,-34.447307 +2021,6,27,1,New South Wales,150.522157,-34.464186 +2020,1,11,1,New South Wales,152.40417,-31.94582 +2020,1,17,1,New South Wales,150.71246,-34.1883 +2021,4,25,1,New South Wales,150.615843,-34.436164 +2021,9,22,1,New South Wales,153.093383,-29.492599 +2020,1,20,1,New South Wales,153.157975,-28.92735 +2020,10,23,1,New South Wales,152.824998,-29.81128 +2021,4,23,1,New South Wales,150.636136,-34.420367 +2021,4,26,1,New South Wales,150.625536,-34.399309 +2021,5,22,1,New South Wales,150.616703,-34.433477 +2021,4,29,1,New South Wales,150.604034,-34.427135 +2022,7,15,1,New South Wales,153.53215,-28.703269 +2022,12,29,1,New South Wales,153.353433,-28.882608 +2021,12,10,1,New South Wales,150.616514,-34.437818 +2021,4,15,1,New South Wales,150.633916,-34.392204 +2023,11,19,1,New South Wales,150.883228,-33.250899 +2021,4,14,1,New South Wales,150.604233,-34.428554 +2022,5,1,1,New South Wales,149.407376,-33.458229 +2024,1,10,1,New South Wales,152.913069,-31.427941 +2021,6,22,1,New South Wales,150.602627,-34.418867 +2021,9,14,1,New South Wales,153.288292,-28.809314 +2021,5,11,1,New South Wales,150.519054,-34.436609 +2021,4,27,1,New South Wales,150.635881,-34.41937 +2021,3,10,1,New South Wales,150.514445,-34.446017 +2022,12,2,1,New South Wales,151.823151,-32.000968 +2022,7,16,1,New South Wales,152.915547,-31.444673 +2021,5,7,1,New South Wales,150.604314,-34.426861 +2021,4,19,1,New South Wales,153.601971,-28.647359 +2021,5,21,1,New South Wales,150.529875,-34.471176 +2021,4,5,1,New South Wales,150.634188,-34.488657 +2022,2,20,1,New South Wales,152.3177,-29.4798 +2020,10,2,1,New South Wales,149.826826,-32.382287 +2021,5,21,1,New South Wales,150.52161,-34.465735 +2022,3,13,1,New South Wales,153.288292,-28.809314 +2021,5,28,1,New South Wales,150.612376,-34.449413 +2021,6,8,1,New South Wales,150.629674,-34.420747 +2021,9,3,1,New South Wales,150.514634,-34.447355 +2021,6,20,1,New South Wales,150.639217,-34.392785 +2021,4,20,1,New South Wales,150.614506,-34.429251 +2022,6,24,1,New South Wales,153.10624,-30.32532 +2021,1,27,1,New South Wales,152.863224,-31.459299 +2021,7,2,1,New South Wales,150.597077,-34.414385 +2021,7,9,1,New South Wales,150.520412,-34.465765 +2021,7,13,1,New South Wales,150.59741,-34.409947 +2020,11,10,1,New South Wales,153.559492,-28.389838 +2023,10,31,1,New South Wales,150.209959,-34.563126 +2021,6,3,1,New South Wales,150.51956,-34.447095 +2021,1,25,1,New South Wales,150.834686,-34.073462 +2021,6,14,1,New South Wales,150.518482,-34.457423 +2021,3,,1,New South Wales,150.796347,-31.522447 +2020,9,3,1,New South Wales,153.005654,-29.185057 +2021,6,2,1,New South Wales,150.535583,-34.462529 +2021,10,5,1,New South Wales,153.288292,-28.809314 +2021,9,15,1,New South Wales,150.798743,-34.189459 +2020,9,17,1,New South Wales,152.084295,-32.729472 +2023,12,6,1,New South Wales,153.110313,-29.490222 +2021,10,5,1,New South Wales,153.491708,-28.231058 +2021,6,22,1,New South Wales,150.628098,-34.42105 +2020,3,7,1,New South Wales,152.867846,-29.667396 +2021,5,7,1,New South Wales,150.604284,-34.42677 +2023,12,5,1,New South Wales,152.925408,-31.453849 +2021,5,15,1,New South Wales,150.633132,-34.418461 +2020,12,24,1,New South Wales,153.608012,-28.690047 +2021,6,12,1,New South Wales,150.522383,-34.465733 +2020,10,24,1,New South Wales,149.958519,-36.587122 +2023,12,1,1,New South Wales,152.802126,-30.325185 +2021,3,31,1,New South Wales,153.564237,-28.387719 +2021,8,5,1,New South Wales,150.645121,-34.398669 +2021,4,12,1,New South Wales,150.614992,-34.432821 +2020,8,28,1,New South Wales,153.278803,-28.994789 +2023,1,30,1,New South Wales,153.557385,-28.400362 +2020,10,19,1,New South Wales,151.780333,-32.714185 +2021,4,30,1,New South Wales,150.63873,-34.489349 +2021,6,2,1,New South Wales,150.519625,-34.45521 +2022,7,9,1,New South Wales,153.278539,-28.819149 +2023,4,7,1,New South Wales,152.076416,-32.763595 +2023,8,24,1,New South Wales,152.186704,-32.23975 +2021,6,16,1,New South Wales,150.514355,-34.446502 +2022,10,5,1,New South Wales,152.878731,-29.662824 +2021,12,8,1,New South Wales,149.807846,-32.35519 +2021,10,4,1,New South Wales,153.103811,-29.48559 +2021,5,19,1,New South Wales,150.613704,-34.431047 +2021,7,30,1,New South Wales,150.549897,-34.462307 +2023,9,12,1,New South Wales,153.108012,-29.490437 +2021,10,13,1,New South Wales,153.104037,-29.485113 +2022,2,8,1,New South Wales,152.907545,-31.45331 +2021,4,29,1,New South Wales,153.557729,-28.371592 +2021,4,30,1,New South Wales,150.60785,-34.455482 +2022,10,5,1,New South Wales,152.981559,-31.186681 +2020,4,28,1,New South Wales,153.297816,-28.827692 +2023,11,10,1,New South Wales,152.840003,-31.593183 +2021,6,8,1,New South Wales,150.604233,-34.437677 +2021,2,5,1,New South Wales,152.896105,-31.414552 +2021,7,30,1,New South Wales,152.423251,-31.826522 +2021,6,9,1,New South Wales,150.630797,-34.420633 +2021,5,1,1,New South Wales,150.62422,-34.388924 +2020,10,28,1,New South Wales,149.984303,-36.560469 +2023,10,15,1,New South Wales,151.072583,-33.145764 +2021,5,8,1,New South Wales,150.521367,-34.435682 +2021,9,17,1,New South Wales,150.533297,-34.476195 +2024,1,11,1,New South Wales,149.560247,-33.704611 +2020,10,29,1,New South Wales,149.984303,-36.560469 +2021,5,23,1,New South Wales,150.515697,-34.450767 +2021,5,11,1,New South Wales,150.517424,-34.447583 +2023,11,16,1,New South Wales,152.889456,-31.443489 +2024,2,24,1,New South Wales,150.78508,-33.710839 +2021,8,20,1,New South Wales,150.612165,-34.432369 +2022,7,9,1,New South Wales,153.557648,-28.398661 +2021,4,26,1,New South Wales,150.635407,-34.419956 +2021,4,22,1,New South Wales,150.605942,-34.432329 +2021,7,8,1,New South Wales,150.513049,-34.447242 +2021,6,16,1,New South Wales,150.516435,-34.45968 +2020,8,24,1,New South Wales,152.879669,-31.449383 +2021,7,2,1,New South Wales,150.626893,-34.420954 +2021,5,2,1,New South Wales,150.842335,-34.068546 +2021,12,1,1,New South Wales,153.283377,-28.830771 +2021,7,16,1,New South Wales,150.627366,-34.421189 +2021,6,20,1,New South Wales,150.628037,-34.420895 +2022,12,30,1,New South Wales,152.87316,-29.68017 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2023,10,18,1,New South Wales,152.914421,-31.451443 +2023,2,25,1,New South Wales,153.537089,-28.620414 +2022,11,17,1,New South Wales,152.794854,-30.893434 +2020,8,5,1,New South Wales,153.104155,-29.480439 +2021,1,31,1,New South Wales,153.314983,-28.949201 +2021,7,28,1,New South Wales,150.515453,-34.449455 +2023,6,30,1,New South Wales,153.314983,-28.949201 +2021,7,23,1,New South Wales,150.607467,-34.439508 +2022,11,30,1,New South Wales,153.314983,-28.949201 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2020,5,25,1,New South Wales,153.400679,-28.257786 +2021,6,21,1,New South Wales,150.519911,-34.452547 +2022,2,4,1,New South Wales,152.9063,-31.446912 +2022,8,14,1,New South Wales,153.313872,-28.815375 +2023,8,31,1,New South Wales,153.314983,-28.949201 +2020,12,10,1,New South Wales,149.954748,-36.297726 +2021,6,25,1,New South Wales,150.522517,-34.464167 +2022,3,17,1,New South Wales,150.974941,-34.133604 +2021,9,7,1,New South Wales,150.52136,-34.465748 +2023,1,18,1,New South Wales,150.502522,-34.362145 +2020,6,9,1,New South Wales,153.290026,-28.712208 +2021,9,18,1,New South Wales,150.78954,-34.194366 +2020,10,26,1,New South Wales,153.367731,-28.840454 +2024,1,16,1,New South Wales,152.237973,-32.275615 +2021,4,29,1,New South Wales,150.606659,-34.435056 +2020,8,31,1,Queensland,153.17289,-27.736088 +2021,6,11,1,New South Wales,150.515859,-34.447137 +2021,6,3,1,New South Wales,150.521893,-34.46611 +2020,12,9,1,New South Wales,153.300206,-28.886464 +2021,8,3,1,New South Wales,150.520403,-34.465701 +2024,2,7,1,New South Wales,152.621569,-30.296317 +2020,1,14,1,New South Wales,153.109728,-29.490156 +2020,12,1,1,New South Wales,153.20044,-29.309753 +2021,5,31,1,New South Wales,150.524998,-34.453498 +2021,12,29,1,New South Wales,150.616789,-34.440781 +2022,6,12,1,New South Wales,153.104224,-29.479795 +2023,12,12,1,New South Wales,153.091954,-29.492498 +2023,4,7,1,New South Wales,153.103677,-29.485664 +2021,5,9,1,New South Wales,150.639272,-34.491767 +2020,10,7,1,New South Wales,152.04132,-32.73534 +2020,11,9,1,New South Wales,150.016902,-36.541583 +2021,5,19,1,New South Wales,150.600271,-34.428602 +2021,8,20,1,New South Wales,153.078294,-30.338411 +2024,7,16,1,New South Wales,152.684792,-30.750399 +2021,4,25,1,New South Wales,150.528884,-34.470074 +2020,9,11,1,New South Wales,153.398422,-28.597171 +2021,5,17,1,New South Wales,149.27475,-36.056721 +2020,4,5,1,New South Wales,153.087117,-29.071746 +2020,10,12,1,New South Wales,149.96634,-36.680336 +2021,8,5,1,New South Wales,153.60155,-28.68121 +2023,12,31,1,New South Wales,152.404042,-31.938105 +2020,3,9,1,New South Wales,153.310945,-28.85141 +2020,6,16,1,New South Wales,152.922335,-31.451278 +2021,8,20,1,New South Wales,150.647765,-34.399783 +2021,7,16,1,New South Wales,150.625163,-34.386752 +2021,5,10,1,New South Wales,150.628022,-34.389863 +2022,8,1,1,New South Wales,153.104031,-29.485188 +2021,6,20,1,New South Wales,153.110238,-29.488317 +2023,9,26,1,New South Wales,150.03079,-34.773031 +2021,5,19,1,New South Wales,150.631192,-34.389285 +2022,7,31,1,New South Wales,152.481178,-32.039002 +2024,9,4,1,New South Wales,152.699508,-30.290327 +2023,1,11,1,New South Wales,152.106056,-32.728504 +2021,5,12,1,New South Wales,150.627789,-34.397351 +2021,8,20,1,New South Wales,153.078333,-30.338457 +2023,12,26,1,New South Wales,150.786702,-33.705566 +2021,9,18,1,New South Wales,152.884757,-31.443649 +2023,5,12,1,New South Wales,152.926877,-31.459683 +2023,6,30,1,New South Wales,152.783602,-31.630221 +2021,11,23,1,New South Wales,152.878917,-31.44848 +2020,12,5,1,New South Wales,153.092111,-29.488055 +2021,6,19,1,New South Wales,150.622541,-34.384456 +2023,11,19,1,New South Wales,150.985955,-34.041211 +2023,11,2,1,New South Wales,152.361746,-31.925813 +2023,9,5,1,New South Wales,150.78309,-33.71855 +2021,10,2,1,New South Wales,152.072182,-32.747836 +2021,8,25,1,New South Wales,152.869805,-29.679161 +2021,4,19,1,New South Wales,150.637454,-34.421465 +2021,7,9,1,New South Wales,150.520594,-34.465859 +2024,3,18,1,New South Wales,152.244357,-32.361361 +2022,2,8,1,New South Wales,152.905478,-31.467655 +2021,12,19,1,New South Wales,152.919855,-31.448981 +2021,10,27,1,New South Wales,153.108205,-29.490255 +2021,4,12,1,New South Wales,152.060681,-32.710847 +2023,8,31,1,New South Wales,149.5521,-33.491128 +2021,9,2,1,New South Wales,153.55418,-28.64023 +2020,9,18,1,New South Wales,152.92442,-31.44371 +2021,6,22,1,New South Wales,150.625615,-34.386508 +2022,9,21,1,New South Wales,153.109224,-29.490824 +2023,7,23,1,New South Wales,152.979279,-30.421837 +2021,7,30,1,New South Wales,150.520366,-34.465854 +2020,4,1,1,New South Wales,153.104058,-29.4853 +2021,9,24,1,New South Wales,152.066335,-32.714189 +2020,9,5,1,New South Wales,153.292036,-28.863396 +2024,8,23,1,New South Wales,151.985413,-32.39707 +2020,10,30,1,New South Wales,149.958935,-36.568735 +2021,10,3,1,New South Wales,153.103795,-29.48559 +2022,2,9,1,New South Wales,150.844948,-29.834366 +2021,6,13,1,New South Wales,150.611906,-34.432671 +2021,2,17,1,New South Wales,153.10357,-29.485492 +2021,5,6,1,New South Wales,150.609187,-34.420798 +2021,4,27,1,New South Wales,150.602784,-34.435467 +2024,1,21,1,New South Wales,151.712051,-32.681822 +2021,5,21,1,New South Wales,150.529864,-34.471158 +2021,7,9,1,New South Wales,150.513095,-34.447153 +2020,12,18,1,New South Wales,153.312767,-29.008668 +2021,6,6,1,New South Wales,150.626637,-34.389233 +2020,1,18,1,New South Wales,152.174569,-32.663575 +2023,9,2,1,New South Wales,153.566825,-28.387165 +2020,1,26,1,New South Wales,152.901111,-30.235831 +2021,5,7,1,New South Wales,150.639058,-34.491609 +2021,4,24,1,New South Wales,150.635402,-34.419749 +2020,1,6,1,New South Wales,153.104407,-29.489605 +2021,5,10,1,New South Wales,150.519653,-34.451316 +2021,6,10,1,New South Wales,150.646195,-34.397229 +2023,2,2,1,New South Wales,152.969997,-31.192743 +2023,6,27,1,New South Wales,153.103457,-29.485552 +2024,2,1,1,New South Wales,153.105179,-29.489708 +2022,4,13,1,New South Wales,150.291198,-31.170858 +2021,8,8,1,New South Wales,153.101258,-29.490021 +2021,6,12,1,New South Wales,150.630275,-34.42065 +2023,10,25,1,New South Wales,152.073219,-32.724502 +2022,2,7,1,New South Wales,153.312326,-28.81859 +2020,5,6,1,New South Wales,153.095227,-29.48344 +2020,7,9,1,New South Wales,153.553153,-28.586366 +2021,6,1,1,New South Wales,150.638554,-34.491338 +2020,9,26,1,New South Wales,152.131383,-30.103476 +2023,6,25,1,New South Wales,153.108151,-29.490231 +2021,10,3,1,New South Wales,153.40292,-28.260311 +2021,4,29,1,New South Wales,150.606647,-34.435065 +2022,6,14,1,New South Wales,153.359057,-28.793723 +2021,6,7,1,New South Wales,150.616565,-34.435674 +2022,8,19,1,New South Wales,153.101977,-29.4887 +2023,3,14,1,New South Wales,153.10814,-29.490269 +2021,5,25,1,New South Wales,150.638898,-34.492652 +2020,7,9,1,New South Wales,153.26476,-28.881002 +2023,6,8,1,New South Wales,152.16387,-32.646413 +2022,10,30,1,New South Wales,153.236747,-28.947304 +2020,8,7,1,New South Wales,153.104246,-29.483306 +2022,11,28,1,New South Wales,153.446492,-28.587252 +2021,4,25,1,New South Wales,150.62618,-34.39576 +2020,10,13,1,New South Wales,150.813678,-34.104761 +2024,6,13,1,New South Wales,150.861544,-29.609182 +2021,9,18,1,New South Wales,153.46123,-28.636784 +2021,10,10,1,New South Wales,150.540785,-34.49004 +2021,5,28,1,New South Wales,150.63228,-34.388098 +2021,5,1,1,New South Wales,153.109422,-29.490427 +2021,5,1,1,New South Wales,150.517308,-34.446355 +2020,10,8,1,New South Wales,153.28799,-29.02463 +2023,11,14,1,New South Wales,153.096569,-29.49187 +2021,6,24,1,New South Wales,150.605626,-34.437308 +2021,5,23,1,New South Wales,150.521579,-34.465689 +2022,1,7,1,New South Wales,153.104004,-29.489605 +2021,5,24,1,New South Wales,150.527354,-34.469548 +2023,10,27,1,New South Wales,152.697671,-31.732206 +2020,1,9,1,New South Wales,152.82545,-31.650768 +2021,4,30,1,New South Wales,150.618108,-34.429609 +2022,1,6,1,New South Wales,153.496278,-28.328913 +2022,9,30,1,New South Wales,152.90328,-30.23862 +2020,1,24,1,New South Wales,151.605529,-32.761925 +2021,2,18,1,New South Wales,153.29271,-28.864728 +2022,2,9,1,New South Wales,153.101327,-29.489979 +2021,5,9,1,New South Wales,150.606672,-34.438023 +2023,11,10,1,New South Wales,150.02594,-36.580507 +2021,9,11,1,New South Wales,152.074764,-31.108837 +2021,6,18,1,New South Wales,150.52124,-34.465745 +2020,10,7,1,New South Wales,152.65331,-30.559131 +2021,4,25,1,New South Wales,150.605206,-34.423822 +2024,6,24,1,New South Wales,153.071835,-30.887588 +2021,5,15,1,New South Wales,150.629898,-34.395444 +2021,12,14,1,New South Wales,152.921184,-31.480393 +2021,6,1,1,New South Wales,150.525193,-34.463833 +2021,6,1,1,New South Wales,150.604748,-34.427293 +2022,10,29,1,New South Wales,152.870746,-31.474449 +2021,5,29,1,New South Wales,150.603087,-34.424492 +2021,6,6,1,New South Wales,150.635334,-34.488166 +2023,2,1,1,New South Wales,152.295306,-31.930854 +2024,3,29,1,New South Wales,151.000423,-34.010121 +2020,9,6,1,New South Wales,153.406923,-28.325282 +2024,3,25,1,New South Wales,150.658893,-33.526924 +2021,5,6,1,New South Wales,150.609209,-34.420763 +2023,7,9,1,New South Wales,153.103736,-29.485548 +2021,1,21,1,New South Wales,153.103817,-29.485585 +2021,6,2,1,New South Wales,150.51778,-34.440333 +2021,4,12,1,New South Wales,150.526173,-34.458309 +2020,10,2,1,New South Wales,152.929804,-29.726432 +2021,1,2,1,New South Wales,152.912383,-31.475595 +2022,8,9,1,New South Wales,150.52849,-34.442891 +2021,3,12,1,New South Wales,150.611354,-34.420336 +2024,1,7,1,New South Wales,152.925196,-31.443321 +2020,11,18,1,New South Wales,151.6662,-30.501562 +2021,5,6,1,New South Wales,150.523117,-34.452333 +2021,3,10,1,New South Wales,150.519865,-34.466592 +2021,5,30,1,New South Wales,150.606443,-34.437649 +2021,4,23,1,New South Wales,150.609402,-34.418972 +2022,3,29,1,New South Wales,152.836,-30.434 +2023,6,9,1,New South Wales,152.306361,-31.952617 +2021,11,6,1,New South Wales,152.245688,-30.051427 +2022,3,13,1,New South Wales,153.102706,-29.489386 +2022,12,31,1,New South Wales,153.103688,-29.485805 +2022,,,1,New South Wales,153.434038,-28.969183 +2021,5,31,1,New South Wales,150.522856,-34.452328 +2022,3,5,1,New South Wales,152.899947,-29.63155 +2020,1,11,1,New South Wales,150.793255,-34.139925 +2021,6,8,1,New South Wales,150.603298,-34.43692 +2021,6,6,1,New South Wales,153.607389,-28.687767 +2021,5,27,1,New South Wales,150.632281,-34.388062 +2021,5,2,1,New South Wales,150.618503,-34.399181 +2021,5,27,1,New South Wales,150.598851,-34.426122 +2021,3,15,1,New South Wales,150.517263,-34.451556 +2021,11,1,1,New South Wales,152.975268,-28.500347 +2021,6,2,1,New South Wales,150.630817,-34.420697 +2021,4,14,1,New South Wales,152.114537,-32.77928 +2021,4,27,1,New South Wales,150.610369,-34.419 +2022,1,4,1,New South Wales,150.615161,-34.439117 +2022,2,15,1,New South Wales,153.430628,-28.604396 +2021,5,18,1,New South Wales,150.52042,-34.45409 +2022,11,19,1,New South Wales,152.794854,-30.893434 +2023,1,8,1,New South Wales,152.306361,-31.952617 +2021,7,12,1,New South Wales,153.104149,-29.483465 +2020,10,6,1,New South Wales,153.15582,-28.580872 +2022,12,9,1,New South Wales,153.109793,-29.490241 +2021,5,28,1,New South Wales,150.642868,-34.394469 +2021,6,7,1,New South Wales,150.627015,-34.389691 +2024,7,10,1,New South Wales,152.916547,-31.445007 +2021,1,13,1,New South Wales,153.055997,-30.333952 +2021,8,1,1,New South Wales,152.925678,-31.459341 +2023,12,12,1,New South Wales,152.900928,-31.473952 +2021,7,19,1,New South Wales,150.630666,-34.420658 +2021,4,22,1,New South Wales,150.632982,-34.392899 +2021,9,8,1,New South Wales,152.778371,-30.189687 +2023,7,10,1,New South Wales,152.786901,-31.629637 +2021,6,1,1,New South Wales,150.604433,-34.437943 +2020,11,2,1,New South Wales,152.867257,-30.400392 +2021,5,16,1,New South Wales,150.529192,-34.468106 +2021,6,1,1,New South Wales,153.404973,-28.257841 +2021,10,24,1,New South Wales,153.104299,-29.47781 +2021,10,6,1,New South Wales,150.88492,-34.01781 +2022,1,11,1,New South Wales,150.508868,-34.537204 +2022,2,15,1,New South Wales,153.298429,-28.818562 +2020,12,2,1,New South Wales,153.499022,-28.767981 +2021,5,24,1,New South Wales,150.639217,-34.392785 +2021,6,21,1,New South Wales,150.603911,-34.421525 +2020,9,26,1,New South Wales,152.925264,-31.440501 +2022,10,11,1,New South Wales,152.91523,-31.460963 +2022,2,25,1,New South Wales,151.590909,-30.508175 +2023,5,18,1,New South Wales,153.321887,-28.823774 +2022,5,21,1,New South Wales,153.292879,-28.86467 +2020,4,20,1,New South Wales,152.930642,-29.726744 +2022,7,24,1,New South Wales,150.998079,-34.047161 +2021,3,20,1,New South Wales,150.635543,-34.488071 +2021,5,28,1,New South Wales,153.59019,-28.65505 +2020,8,18,1,New South Wales,153.288292,-28.809314 +2021,6,16,1,New South Wales,150.659032,-34.455229 +2022,2,7,1,New South Wales,152.90058,-31.450524 +2023,1,26,1,New South Wales,152.964767,-31.202958 +2022,2,15,1,New South Wales,153.103811,-29.485585 +2022,1,17,1,New South Wales,153.03296,-30.43127 +2021,6,30,1,New South Wales,153.314983,-28.949201 +2023,11,14,1,New South Wales,150.96718,-34.026547 +2024,1,7,1,New South Wales,152.063336,-32.706212 +2024,6,21,1,New South Wales,152.353872,-31.957479 +2021,5,31,1,New South Wales,153.314983,-28.949201 +2021,10,25,1,New South Wales,152.996446,-30.413154 +2021,7,26,1,New South Wales,150.625439,-34.386198 +2022,1,5,1,New South Wales,150.616551,-34.437693 +2021,4,23,1,New South Wales,150.615339,-34.430944 +2021,8,14,1,New South Wales,150.643159,-34.398829 +2021,3,30,1,New South Wales,150.52336,-34.454781 +2022,5,7,1,New South Wales,153.103715,-29.489582 +2023,9,18,1,New South Wales,153.101188,-29.489988 +2022,11,18,1,New South Wales,152.795899,-30.884771 +2020,10,14,1,New South Wales,152.105314,-32.732711 +2024,2,24,1,New South Wales,153.279661,-28.831073 +2020,8,18,1,New South Wales,153.193545,-28.883603 +2024,2,27,1,New South Wales,153.110318,-29.490208 +2020,5,,1,New South Wales,152.061841,-32.293914 +2022,10,29,1,New South Wales,151.709268,-32.690949 +2023,10,22,1,New South Wales,150.997312,-34.055546 +2021,11,2,1,New South Wales,152.928432,-29.726418 +2021,8,31,1,New South Wales,150.514466,-34.443836 +2022,3,16,1,New South Wales,153.301064,-28.847295 +2024,3,13,1,New South Wales,150.783747,-33.717556 +2021,7,2,1,New South Wales,150.627412,-34.390645 +2021,4,23,1,New South Wales,150.839671,-34.078232 +2024,1,24,1,New South Wales,152.930413,-31.468031 +2023,10,7,1,New South Wales,150.791327,-34.148644 +2021,8,14,1,New South Wales,150.644974,-34.400036 +2021,4,27,1,New South Wales,150.602031,-34.425653 +2020,9,15,1,New South Wales,152.35359,-28.4161 +2021,5,20,1,New South Wales,150.600435,-34.428966 +2020,9,28,1,New South Wales,151.67491,-32.673424 +2022,6,3,1,New South Wales,153.31231,-28.815314 +2021,4,16,1,New South Wales,152.18685,-31.6704 +2021,1,25,1,New South Wales,153.601971,-28.647359 +2021,6,28,1,New South Wales,150.644948,-34.391254 +2021,5,14,1,New South Wales,150.640599,-34.494137 +2022,11,21,1,New South Wales,152.92911,-31.162202 +2020,10,27,1,New South Wales,152.894418,-31.447732 +2021,6,23,1,New South Wales,150.628416,-34.420578 +2021,9,13,1,New South Wales,153.556726,-28.397422 +2021,4,19,1,New South Wales,150.630864,-34.393958 +2022,8,17,1,New South Wales,152.908138,-31.435961 +2021,3,5,1,New South Wales,150.519263,-34.45312 +2021,5,25,1,New South Wales,150.522337,-34.465101 +2021,5,20,1,New South Wales,150.639188,-34.493181 +2021,9,2,1,New South Wales,150.515834,-34.442124 +2023,11,30,1,New South Wales,152.908596,-31.436814 +2023,8,4,1,New South Wales,150.78564,-33.704725 +2021,6,27,1,New South Wales,153.083638,-30.921885 +2021,5,26,1,New South Wales,150.630797,-34.420633 +2021,5,20,1,New South Wales,150.607421,-34.433106 +2021,10,19,1,New South Wales,153.262924,-28.923353 +2021,7,15,1,New South Wales,150.625119,-34.386769 +2021,3,30,1,New South Wales,150.609969,-34.429631 +2022,12,6,1,New South Wales,153.133676,-28.93965 +2020,3,24,1,New South Wales,152.160218,-32.712226 +2024,8,27,1,New South Wales,152.709618,-31.785832 +2021,12,1,1,New South Wales,153.293136,-28.864668 +2021,5,7,1,New South Wales,150.621755,-34.397639 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,5,12,1,New South Wales,150.633057,-34.417648 +2024,2,7,1,New South Wales,152.913033,-31.452747 +2020,10,28,1,New South Wales,149.976368,-36.555504 +2024,2,9,1,New South Wales,152.898899,-31.443448 +2022,12,24,1,New South Wales,152.915616,-31.478123 +2022,11,26,1,New South Wales,150.847597,-34.072147 +2020,,,1,New South Wales,152.749385,-28.678008 +2023,10,29,1,New South Wales,152.189573,-32.226267 +2020,10,2,1,New South Wales,153.101682,-29.489274 +2021,4,22,1,New South Wales,150.638521,-34.422955 +2022,11,27,1,New South Wales,152.777302,-30.885013 +2023,8,14,1,New South Wales,153.527275,-28.68614 +2021,6,1,1,New South Wales,150.518204,-34.446599 +2021,7,5,1,New South Wales,150.603075,-34.417668 +2021,5,9,1,New South Wales,150.609159,-34.420636 +2021,4,20,1,New South Wales,150.637223,-34.422687 +2022,6,28,1,New South Wales,153.402546,-28.259616 +2020,4,25,1,New South Wales,153.5218,-28.68361 +2021,6,30,1,New South Wales,150.596189,-34.41197 +2020,11,28,1,New South Wales,149.959252,-36.447255 +2020,10,29,1,New South Wales,149.967242,-36.561675 +2021,4,3,1,New South Wales,150.607692,-34.430109 +2021,5,17,1,New South Wales,150.637356,-34.423789 +2021,3,9,1,New South Wales,150.610097,-34.419374 +2021,5,3,1,New South Wales,150.611448,-34.419716 +2021,11,4,1,New South Wales,152.882284,-29.611382 +2021,5,18,1,New South Wales,150.600346,-34.428649 +2021,6,14,1,New South Wales,150.625227,-34.384481 +2023,9,22,1,New South Wales,153.10813,-29.490418 +2021,6,18,1,New South Wales,153.3234,-28.6762 +2021,7,29,1,New South Wales,150.632584,-34.419775 +2021,5,19,1,New South Wales,150.641024,-34.494875 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2020,10,19,1,New South Wales,149.931009,-36.595007 +2023,12,8,1,New South Wales,152.074818,-32.71872 +2021,6,21,1,New South Wales,150.639187,-34.392712 +2021,5,25,1,New South Wales,150.526623,-34.469587 +2021,6,27,1,New South Wales,150.522952,-34.466384 +2022,11,25,1,New South Wales,152.794854,-30.893434 +2021,11,30,1,New South Wales,153.316272,-28.823818 +2023,5,8,1,New South Wales,150.784785,-33.71637 +2022,11,27,1,New South Wales,152.794854,-30.893434 +2024,1,19,1,New South Wales,152.831723,-29.642008 +2022,11,24,1,New South Wales,150.799298,-34.213206 +2021,7,6,1,New South Wales,150.603652,-34.419175 +2022,3,3,1,New South Wales,153.101199,-29.48989 +2023,1,11,1,New South Wales,152.261915,-31.998166 +2020,4,25,1,New South Wales,152.743944,-31.380947 +2021,9,7,1,New South Wales,152.908584,-31.436921 +2021,3,4,1,New South Wales,153.553938,-28.588189 +2021,5,1,1,New South Wales,150.609131,-34.434961 +2022,10,5,1,New South Wales,149.435857,-33.605481 +2021,5,8,1,New South Wales,150.639135,-34.491602 +2022,6,26,1,New South Wales,153.104165,-29.48375 +2022,8,23,1,New South Wales,153.43454,-28.719419 +2021,1,6,1,New South Wales,151.770315,-32.593387 +2021,5,26,1,New South Wales,150.597992,-34.426123 +2020,5,6,1,New South Wales,152.926223,-31.454793 +2021,6,3,1,New South Wales,152.036062,-32.76419 +2022,11,18,1,New South Wales,152.760068,-30.904021 +2021,7,29,1,New South Wales,150.516435,-34.450097 +2022,7,4,1,New South Wales,153.401967,-28.258627 +2021,5,6,1,New South Wales,150.520187,-34.435839 +2023,10,11,1,New South Wales,152.063556,-32.70553 +2020,4,2,1,New South Wales,153.090757,-29.487035 +2020,4,20,1,New South Wales,152.869553,-31.498782 +2023,5,29,1,New South Wales,152.19028,-32.23868 +2020,12,28,1,New South Wales,152.920016,-31.443581 +2021,5,7,1,New South Wales,150.621411,-34.397894 +2022,10,25,1,New South Wales,153.608519,-28.702086 +2023,11,10,1,New South Wales,149.55855,-33.701284 +2021,5,10,1,New South Wales,150.60915,-34.420572 +2022,5,17,1,New South Wales,151.003427,-33.983463 +2023,12,7,1,New South Wales,152.870687,-31.464354 +2021,6,19,1,New South Wales,150.513797,-34.44623 +2022,7,24,1,New South Wales,153.395041,-29.02022 +2021,7,9,1,New South Wales,153.39756,-29.013101 +2021,6,23,1,New South Wales,150.644453,-34.3934 +2021,8,24,1,New South Wales,150.520035,-34.44651 +2021,6,17,1,New South Wales,150.618251,-34.43531 +2021,5,10,1,New South Wales,150.516376,-34.469749 +2021,2,7,1,New South Wales,153.109385,-29.490553 +2020,8,3,1,New South Wales,152.90942,-31.46628 +2022,1,8,1,New South Wales,150.89266,-33.991958 +2021,10,29,1,New South Wales,152.996446,-30.413154 +2023,6,25,1,New South Wales,153.611353,-28.683609 +2021,5,9,1,New South Wales,150.628264,-34.38976 +2021,6,27,1,New South Wales,150.596544,-34.416259 +2021,9,2,1,New South Wales,153.093458,-29.488686 +2021,4,29,1,New South Wales,150.636324,-34.421786 +2023,2,6,1,New South Wales,152.063194,-32.706391 +2022,8,1,1,New South Wales,152.794232,-31.64356 +2022,10,5,1,New South Wales,153.003268,-30.403632 +2021,5,31,1,New South Wales,153.586079,-28.632728 +2023,3,12,1,New South Wales,149.465176,-33.674475 +2021,10,,1,New South Wales,149.3099,-36.2184 +2024,8,20,1,New South Wales,152.091637,-32.175474 +2020,12,3,1,New South Wales,153.31792,-28.80604 +2023,12,5,1,New South Wales,152.90803,-31.457164 +2021,2,22,1,New South Wales,153.102628,-30.283432 +2021,7,17,1,New South Wales,150.62456,-34.386145 +2021,12,,1,New South Wales,149.327888,-36.154326 +2022,6,18,1,New South Wales,152.077119,-32.722469 +2023,6,3,1,New South Wales,153.27887,-28.874221 +2021,3,4,1,New South Wales,153.098989,-29.490068 +2021,8,17,1,New South Wales,150.633688,-34.418435 +2022,9,13,1,New South Wales,150.885636,-34.01791 +2022,11,20,1,New South Wales,152.794854,-30.893434 +2021,6,23,1,New South Wales,150.604251,-34.438967 +2021,6,4,1,New South Wales,150.52209,-34.466087 +2023,7,20,1,New South Wales,152.792947,-31.640473 +2024,9,21,1,New South Wales,146.601829,-34.763841 +2021,1,25,1,New South Wales,153.601971,-28.647359 +2021,6,30,1,New South Wales,150.595854,-34.411873 +2021,11,28,1,New South Wales,152.818075,-31.470638 +2023,3,10,1,New South Wales,153.316318,-28.943569 +2021,6,21,1,New South Wales,150.52025,-34.465743 +2021,4,1,1,New South Wales,150.521001,-34.453958 +2021,5,30,1,New South Wales,150.640883,-34.396225 +2021,5,21,1,New South Wales,150.472427,-34.491687 +2022,11,19,1,New South Wales,152.794854,-30.893434 +2023,11,14,1,New South Wales,153.101671,-29.48976 +2023,12,13,1,New South Wales,153.400945,-29.037765 +2021,10,17,1,New South Wales,152.72632,-30.157302 +2023,6,7,1,New South Wales,150.88678,-34.066475 +2021,6,30,1,New South Wales,150.628758,-34.38922 +2020,5,31,1,New South Wales,152.912612,-31.477621 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2022,11,28,1,New South Wales,152.794854,-30.893434 +2022,8,11,1,New South Wales,151.100431,-33.13453 +2021,7,28,1,New South Wales,150.53168,-34.40731 +2021,9,5,1,New South Wales,150.514667,-34.447717 +2024,9,26,1,New South Wales,152.64838,-31.875943 +2020,10,30,1,New South Wales,149.938213,-36.559404 +2021,4,21,1,New South Wales,150.519883,-34.453124 +2023,1,23,1,New South Wales,152.475404,-32.364632 +2021,7,25,1,New South Wales,150.516529,-34.449152 +2021,3,7,1,New South Wales,150.603427,-34.435435 +2021,8,25,1,New South Wales,152.361869,-31.979319 +2020,1,29,1,New South Wales,152.35899,-31.92441 +2023,12,19,1,New South Wales,152.784125,-31.630044 +2021,10,24,1,New South Wales,152.873902,-31.463787 +2020,3,3,1,New South Wales,151.726,-32.67 +2023,9,6,1,New South Wales,153.292244,-28.856083 +2021,5,7,1,New South Wales,150.523107,-34.452288 +2022,2,4,1,New South Wales,150.753039,-34.131708 +2021,3,1,1,New South Wales,150.603328,-34.436993 +2021,8,3,1,New South Wales,153.10821,-29.490245 +2023,10,29,1,New South Wales,151.007449,-34.046402 +2021,8,19,1,New South Wales,150.513095,-34.447144 +2023,3,4,1,New South Wales,153.494884,-28.694331 +2024,9,28,1,New South Wales,149.398288,-33.48917 +2021,7,10,1,New South Wales,150.513095,-34.447144 +2023,8,15,1,New South Wales,152.9185,-31.4573 +2021,4,20,1,New South Wales,150.614394,-34.428978 +2021,6,21,1,New South Wales,150.519573,-34.452567 +2022,12,1,1,New South Wales,152.079082,-32.7274 +2021,7,5,1,New South Wales,150.975593,-34.086979 +2021,11,1,1,New South Wales,153.342176,-28.651032 +2020,6,24,1,New South Wales,153.091156,-29.487889 +2020,4,4,1,New South Wales,153.2627,-28.879875 +2021,9,29,1,New South Wales,152.893403,-31.458473 +2021,5,31,1,New South Wales,150.522887,-34.452364 +2023,1,18,1,New South Wales,152.90409,-31.46969 +2020,1,28,1,New South Wales,152.978256,-28.481426 +2022,8,31,1,New South Wales,153.314983,-28.949201 +2022,4,23,1,New South Wales,150.835142,-34.069644 +2021,3,1,1,New South Wales,150.517379,-34.460141 +2021,3,12,1,New South Wales,153.601971,-28.647359 +2021,4,27,1,New South Wales,150.602031,-34.425653 +2022,8,26,1,New South Wales,153.103302,-29.489232 +2021,5,14,1,New South Wales,150.520465,-34.454028 +2021,7,9,1,New South Wales,150.62674,-34.421384 +2022,8,11,1,New South Wales,153.076791,-28.555115 +2023,8,23,1,New South Wales,153.384203,-28.651513 +2021,5,9,1,New South Wales,150.615214,-34.435323 +2021,7,12,1,New South Wales,153.10932,-29.490703 +2023,11,30,1,New South Wales,152.925961,-31.452402 +2022,11,22,1,New South Wales,153.50421,-28.65919 +2021,5,19,1,New South Wales,150.600169,-34.428736 +2021,4,22,1,New South Wales,150.605499,-34.432239 +2020,2,14,1,New South Wales,153.556979,-28.400244 +2021,6,27,1,New South Wales,150.627482,-34.420145 +2022,11,18,1,New South Wales,153.017126,-30.374914 +2021,5,23,1,New South Wales,150.630965,-34.388469 +2022,4,21,1,New South Wales,150.937136,-34.113796 +2024,4,6,1,New South Wales,150.99055,-34.025501 +2023,5,13,1,New South Wales,153.463046,-28.875821 +2023,4,23,1,New South Wales,151.762153,-32.767306 +2021,8,17,1,New South Wales,150.523072,-34.463781 +2021,2,18,1,New South Wales,153.103473,-29.487593 +2020,5,4,1,New South Wales,153.10387,-29.485576 +2021,10,5,1,New South Wales,152.934176,-29.722645 +2024,7,19,1,New South Wales,151.9342,-32.5563 +2023,10,18,1,New South Wales,152.875107,-31.454684 +2021,6,15,1,New South Wales,153.003857,-28.620437 +2021,5,21,1,New South Wales,153.559472,-28.645078 +2023,5,29,1,New South Wales,152.18678,-31.615428 +2021,8,9,1,New South Wales,150.632066,-34.41807 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2020,11,23,1,New South Wales,153.314609,-28.846843 +2021,7,14,1,New South Wales,150.626634,-34.385482 +2020,5,,1,New South Wales,152.041548,-32.736066 +2023,11,15,1,New South Wales,152.93752,-30.231856 +2024,3,21,1,New South Wales,152.947054,-30.434052 +2023,10,15,1,New South Wales,152.929611,-31.453392 +2021,5,15,1,New South Wales,150.600755,-34.428044 +2020,1,14,1,New South Wales,149.54344,-33.69972 +2023,10,15,1,New South Wales,152.133536,-32.733961 +2022,11,4,1,New South Wales,153.304453,-28.848398 +2021,5,20,1,New South Wales,150.515025,-34.445903 +2021,5,9,1,New South Wales,150.632518,-34.418259 +2021,6,20,1,New South Wales,153.110157,-29.490241 +2020,1,7,1,New South Wales,152.909109,-31.457637 +2023,9,20,1,New South Wales,152.374259,-31.912864 +2020,7,31,1,New South Wales,153.104165,-29.485197 +2023,6,9,1,New South Wales,150.79538,-34.12975 +2021,7,9,1,New South Wales,150.520604,-34.465886 +2021,3,22,1,New South Wales,150.51479,-34.445763 +2020,1,11,1,New South Wales,150.80952,-34.099962 +2023,8,6,1,New South Wales,150.842568,-34.057022 +2021,4,21,1,New South Wales,150.617064,-34.43379 +2020,9,23,1,New South Wales,153.093506,-29.488508 +2021,11,10,1,New South Wales,150.615419,-34.440745 +2021,10,25,1,New South Wales,152.150436,-32.102546 +2021,10,22,1,New South Wales,152.879504,-29.67808 +2021,10,3,1,New South Wales,152.890677,-31.444759 +2022,12,18,1,New South Wales,151.499597,-30.518681 +2022,1,21,1,New South Wales,153.110485,-29.490147 +2021,5,14,1,New South Wales,150.616546,-34.435159 +2021,6,22,1,New South Wales,150.513793,-34.446347 +2021,4,2,1,New South Wales,152.037266,-32.737725 +2020,11,30,1,New South Wales,150.885933,-34.017663 +2021,6,1,1,New South Wales,150.523848,-34.463689 +2023,7,29,1,New South Wales,153.103886,-29.489582 +2021,6,12,1,New South Wales,150.515903,-34.446777 +2021,5,14,1,New South Wales,150.63536,-33.57286 +2023,9,26,1,New South Wales,153.295433,-28.856388 +2021,4,15,1,New South Wales,150.633786,-34.392157 +2021,5,20,1,New South Wales,150.633693,-34.418264 +2023,6,27,1,New South Wales,152.232257,-32.165354 +2021,3,9,1,New South Wales,152.915859,-31.481819 +2020,8,13,1,New South Wales,153.562069,-28.388909 +2021,6,6,1,New South Wales,150.519475,-34.456622 +2020,5,25,1,New South Wales,149.361646,-35.999794 +2021,4,26,1,New South Wales,150.637238,-34.487824 +2022,8,28,1,New South Wales,152.443915,-31.954385 +2021,6,13,1,New South Wales,150.643601,-34.395853 +2021,7,25,1,New South Wales,150.630722,-34.420614 +2022,8,21,1,New South Wales,152.852814,-31.099432 +2021,6,5,1,New South Wales,150.523405,-34.46468 +2021,4,24,1,New South Wales,150.637661,-34.421072 +2023,1,20,1,New South Wales,152.914663,-31.469203 +2021,3,17,1,New South Wales,152.113549,-32.760534 +2021,4,24,1,New South Wales,150.638096,-34.485596 +2022,12,15,1,New South Wales,150.920837,-33.967181 +2022,8,1,1,New South Wales,150.796788,-34.135869 +2021,5,27,1,New South Wales,150.325471,-29.033609 +2022,10,3,1,New South Wales,152.82517,-31.27014 +2021,7,16,1,New South Wales,150.514983,-34.446596 +2021,3,31,1,New South Wales,150.516892,-34.446806 +2021,7,11,1,New South Wales,150.518232,-34.44714 +2021,5,27,1,New South Wales,150.515965,-34.449456 +2021,6,30,1,New South Wales,150.608045,-34.44903 +2020,10,17,1,New South Wales,153.557006,-28.400461 +2021,4,27,1,New South Wales,150.601423,-34.426741 +2022,3,18,1,New South Wales,152.887681,-31.438054 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2020,6,3,1,New South Wales,153.286326,-28.839825 +2021,2,25,1,New South Wales,150.516616,-34.446936 +2022,6,23,1,New South Wales,153.103795,-29.485599 +2023,9,21,1,New South Wales,152.609051,-30.342709 +2021,5,30,1,New South Wales,150.522794,-34.4522 +2024,1,31,1,New South Wales,153.10975,-29.490208 +2023,9,25,1,New South Wales,151.761695,-31.05438 +2021,4,20,1,New South Wales,150.616163,-34.434476 +2023,2,5,1,New South Wales,150.808586,-34.098254 +2021,5,1,1,New South Wales,150.62422,-34.388924 +2021,6,26,1,New South Wales,150.514257,-34.447231 +2020,11,16,1,New South Wales,152.788622,-31.640693 +2021,8,10,1,New South Wales,150.858134,-34.056316 +2023,11,8,1,New South Wales,152.067909,-32.709759 +2021,4,19,1,New South Wales,150.530523,-34.469503 +2020,1,16,1,New South Wales,153.290427,-28.86558 +2023,6,2,1,New South Wales,150.922668,-29.796463 +2022,1,4,1,New South Wales,153.053627,-28.45188 +2020,9,16,1,New South Wales,152.045855,-32.674267 +2020,4,8,1,New South Wales,150.141958,-34.920437 +2021,5,21,1,New South Wales,150.615357,-34.432612 +2023,4,12,1,New South Wales,152.834233,-31.473284 +2021,11,22,1,New South Wales,152.899658,-29.631163 +2021,9,25,1,New South Wales,152.82517,-31.27014 +2020,10,25,1,New South Wales,152.851464,-29.692524 +2023,5,31,1,New South Wales,150.79329,-34.2191 +2021,7,27,1,New South Wales,150.515856,-34.448733 +2021,3,10,1,New South Wales,150.514433,-34.446062 +2021,4,4,1,New South Wales,150.615171,-34.436458 +2021,7,4,1,New South Wales,150.603077,-34.417604 +2020,10,5,1,New South Wales,152.851464,-29.692524 +2020,10,2,1,New South Wales,152.823644,-29.491721 +2020,10,29,1,New South Wales,152.563215,-31.961506 +2021,4,26,1,New South Wales,150.606936,-34.454688 +2023,7,12,1,New South Wales,153.104138,-29.478833 +2023,10,9,1,New South Wales,153.110554,-29.489904 +2020,4,29,1,New South Wales,153.399901,-28.258429 +2023,12,16,1,New South Wales,153.110533,-29.490184 +2021,5,12,1,New South Wales,150.609271,-34.420521 +2020,10,19,1,New South Wales,149.931009,-36.595007 +2021,6,30,1,New South Wales,150.6274,-34.420351 +2020,10,19,1,New South Wales,149.931009,-36.595007 +2021,3,12,1,New South Wales,150.60761,-34.429927 +2020,10,15,1,New South Wales,153.109487,-29.490418 +2021,3,27,1,New South Wales,152.924534,-31.463513 +2023,11,28,1,New South Wales,152.918096,-31.485332 +2021,6,6,1,New South Wales,150.608592,-34.434788 +2022,3,6,1,New South Wales,153.108022,-29.490287 +2021,1,3,1,New South Wales,152.912369,-31.47551 +2021,4,7,1,New South Wales,150.634308,-34.488651 +2021,8,5,1,New South Wales,150.513165,-34.445892 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2022,5,24,1,New South Wales,153.110329,-29.490208 +2020,10,20,1,New South Wales,149.938155,-36.621708 +2020,1,15,1,New South Wales,152.92436,-31.46013 +2023,7,12,1,New South Wales,153.101242,-29.489858 +2022,8,3,1,New South Wales,152.926647,-31.444435 +2021,4,25,1,New South Wales,150.626236,-34.395725 +2021,5,16,1,New South Wales,150.628646,-34.395096 +2021,12,20,1,New South Wales,153.361086,-28.87282 +2021,5,27,1,New South Wales,150.630633,-34.420684 +2022,7,13,1,New South Wales,153.092449,-29.488186 +2021,5,27,1,New South Wales,150.639722,-34.393399 +2021,8,10,1,New South Wales,153.104063,-29.485169 +2020,11,28,1,New South Wales,152.833527,-30.434873 +2021,4,28,1,New South Wales,150.52527,-34.452025 +2021,5,5,1,New South Wales,150.627177,-34.389748 +2021,11,13,1,New South Wales,152.910119,-31.43403 +2020,10,30,1,New South Wales,149.977333,-36.564828 +2021,5,2,1,New South Wales,150.633647,-34.418335 +2020,5,27,1,New South Wales,153.270719,-28.873506 +2021,5,26,1,New South Wales,150.602526,-34.436138 +2023,2,25,1,New South Wales,153.099788,-29.491571 +2020,10,19,1,New South Wales,149.938155,-36.621708 +2020,11,7,1,New South Wales,152.039998,-32.730537 +2021,10,6,1,New South Wales,151.886646,-30.894513 +2021,12,16,1,New South Wales,152.063778,-32.706633 +2020,10,9,1,New South Wales,153.264096,-28.923918 +2023,12,30,1,New South Wales,150.786105,-33.714074 +2022,11,27,1,New South Wales,150.897402,-34.002039 +2021,6,11,1,New South Wales,150.645781,-34.397239 +2024,6,4,1,New South Wales,153.08564,-30.32139 +2021,3,27,1,New South Wales,150.531248,-34.461152 +2021,11,16,1,New South Wales,152.821774,-31.456865 +2021,3,12,1,New South Wales,150.523787,-34.461704 +2020,10,13,1,New South Wales,152.896425,-29.629872 +2022,4,3,1,New South Wales,153.479706,-28.592244 +2021,5,3,1,New South Wales,150.516768,-34.446588 +2023,10,31,1,New South Wales,152.370971,-31.918922 +2021,4,28,1,New South Wales,150.664655,-34.458104 +2021,7,21,1,New South Wales,153.52954,-28.54593 +2022,9,25,1,New South Wales,153.111861,-30.264335 +2021,6,12,1,New South Wales,150.644423,-34.396401 +2021,3,29,1,New South Wales,150.522736,-34.452316 +2021,7,17,1,New South Wales,150.627928,-34.420911 +2023,4,21,1,New South Wales,150.787018,-33.708673 +2024,8,28,1,New South Wales,152.284517,-32.423321 +2021,7,6,1,New South Wales,150.631147,-34.387418 +2022,11,9,1,New South Wales,152.785485,-31.632688 +2021,4,29,1,New South Wales,150.616681,-34.399001 +2021,4,24,1,New South Wales,150.635274,-34.419665 +2021,6,6,1,New South Wales,150.532821,-34.458723 +2023,5,12,1,New South Wales,153.301025,-28.847787 +2021,8,3,1,New South Wales,153.395147,-28.95998 +2023,8,30,1,New South Wales,150.657099,-31.673767 +2020,11,2,1,New South Wales,149.977333,-36.564828 +2021,8,25,1,New South Wales,150.513779,-34.447185 +2021,5,13,1,New South Wales,150.601793,-34.42865 +2021,1,1,1,New South Wales,152.415805,-31.933494 +2023,2,19,1,New South Wales,153.296921,-28.847242 +2023,6,8,1,New South Wales,150.81136,-34.11579 +2022,7,12,1,New South Wales,153.101274,-29.489942 +2022,8,26,1,New South Wales,153.323925,-28.817688 +2022,6,21,1,New South Wales,152.896425,-29.629872 +2021,8,20,1,New South Wales,152.485652,-32.059496 +2021,6,14,1,New South Wales,150.615047,-34.431254 +2021,6,14,1,New South Wales,150.615024,-34.431289 +2024,4,16,1,New South Wales,152.601915,-31.651566 +2022,6,16,1,New South Wales,152.063828,-32.706692 +2021,8,26,1,New South Wales,150.514074,-34.447903 +2021,5,16,1,New South Wales,150.52394,-34.462789 +2023,12,18,1,New South Wales,153.105217,-29.489778 +2020,9,17,1,New South Wales,150.16718,-31.2012 +2024,3,6,1,New South Wales,152.924693,-31.453779 +2022,2,28,1,New South Wales,153.101258,-29.48997 +2022,10,31,1,New South Wales,153.396801,-29.015679 +2023,9,13,1,New South Wales,152.19925,-32.23062 +2020,11,15,1,New South Wales,149.962048,-36.514707 +2023,9,20,1,New South Wales,149.397392,-36.228533 +2023,7,20,1,New South Wales,152.945609,-30.216522 +2021,5,28,1,New South Wales,150.527084,-34.46947 +2021,6,13,1,New South Wales,150.630214,-34.420487 +2021,6,25,1,New South Wales,150.644819,-34.391577 +2023,9,7,1,New South Wales,152.92292,-29.7306 +2023,11,25,1,New South Wales,151.930618,-32.562252 +2021,3,28,1,New South Wales,153.110544,-29.490166 +2023,8,30,1,New South Wales,150.280729,-31.066162 +2020,12,20,1,New South Wales,152.924401,-31.463568 +2022,8,24,1,New South Wales,151.654667,-32.683376 +2021,2,13,1,New South Wales,153.017126,-30.374914 +2020,11,20,1,New South Wales,153.103822,-29.485464 +2020,4,8,1,New South Wales,150.143469,-34.917107 +2022,1,20,1,New South Wales,150.9602,-34.104056 +2024,5,28,1,New South Wales,152.796027,-31.143027 +2021,10,4,1,New South Wales,152.709625,-31.787706 +2023,12,31,1,New South Wales,153.093347,-29.492651 +2021,10,16,1,New South Wales,152.859327,-31.129753 +2021,8,3,1,New South Wales,150.627032,-34.390241 +2022,5,6,1,New South Wales,153.400725,-28.260092 +2023,5,8,1,New South Wales,153.109331,-29.490656 +2021,7,14,1,New South Wales,150.520915,-34.465315 +2023,9,29,1,New South Wales,152.92577,-31.4468 +2023,8,1,1,New South Wales,150.652569,-34.207428 +2023,10,16,1,New South Wales,150.785335,-33.715655 +2021,9,9,1,New South Wales,150.513168,-34.447632 +2022,8,13,1,New South Wales,153.108038,-29.49017 +2020,12,26,1,New South Wales,152.893086,-31.454902 +2020,4,15,1,New South Wales,151.90452,-32.48353 +2023,7,10,1,New South Wales,150.992795,-33.981826 +2023,8,11,1,New South Wales,153.217968,-28.830692 +2021,5,22,1,New South Wales,150.616088,-34.433681 +2021,5,5,1,New South Wales,150.522914,-34.452545 +2021,9,30,1,New South Wales,153.572904,-28.368718 +2020,1,8,1,New South Wales,152.866357,-29.691624 +2022,11,2,1,New South Wales,153.315886,-28.849921 +2022,7,27,1,New South Wales,152.824526,-29.506386 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2020,4,20,1,New South Wales,152.881336,-31.490375 +2021,8,28,1,New South Wales,153.104053,-29.480019 +2020,2,27,1,New South Wales,153.31536,-28.818123 +2020,7,29,1,New South Wales,153.402412,-28.260564 +2022,2,26,1,New South Wales,153.101268,-29.489974 +2023,3,10,1,New South Wales,152.850223,-31.543877 +2021,5,12,1,New South Wales,150.605426,-34.42754 +2021,5,9,1,New South Wales,150.622195,-34.397837 +2020,10,15,1,New South Wales,149.930096,-36.638123 +2022,10,4,1,New South Wales,153.103838,-29.48502 +2020,8,7,1,New South Wales,152.162204,-31.617012 +2021,4,17,1,New South Wales,150.532621,-34.473648 +2023,9,26,1,New South Wales,150.877945,-34.105858 +2023,10,22,1,New South Wales,152.883882,-31.447591 +2020,4,8,1,New South Wales,150.141958,-34.920437 +2021,8,18,1,New South Wales,153.109326,-29.490493 +2021,8,24,1,New South Wales,150.519792,-34.446631 +2021,6,10,1,New South Wales,150.605738,-34.437563 +2024,5,23,1,New South Wales,151.767481,-32.565191 +2020,8,27,1,New South Wales,151.65611,-32.687001 +2020,10,16,1,New South Wales,149.930096,-36.638123 +2021,7,16,1,New South Wales,150.627971,-34.420921 +2022,8,6,1,New South Wales,150.800499,-34.239726 +2020,9,10,1,New South Wales,153.090752,-29.487086 +2021,3,3,1,New South Wales,150.604679,-34.439237 +2023,11,9,1,New South Wales,152.403932,-31.928294 +2020,1,8,1,New South Wales,153.094646,-29.494093 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2020,9,12,1,New South Wales,150.02704,-31.14292 +2023,10,30,1,New South Wales,153.103854,-29.489549 +2021,10,,1,New South Wales,149.34524,-36.16054 +2021,10,18,1,New South Wales,152.164297,-30.08274 +2020,7,20,1,New South Wales,152.893086,-31.454902 +2021,4,19,1,New South Wales,150.529497,-34.469212 +2021,3,19,1,New South Wales,150.533129,-34.479707 +2020,4,20,1,New South Wales,152.857777,-31.54224 +2022,11,19,1,New South Wales,152.795899,-30.884771 +2021,4,23,1,New South Wales,153.282702,-29.001489 +2022,8,30,1,New South Wales,149.324959,-36.293843 +2021,1,20,1,New South Wales,153.471335,-28.259491 +2020,10,6,1,New South Wales,152.92166,-31.451519 +2022,5,25,1,New South Wales,153.29459,-28.86386 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2021,5,5,1,New South Wales,150.632861,-34.418825 +2022,12,22,1,New South Wales,150.836384,-34.05628 +2021,11,12,1,New South Wales,153.103795,-29.485594 +2021,4,18,1,New South Wales,150.636962,-34.421149 +2020,9,22,1,New South Wales,152.899176,-31.445097 +2021,6,11,1,New South Wales,150.521989,-34.459198 +2021,5,26,1,New South Wales,150.638904,-34.491688 +2021,7,30,1,New South Wales,150.51747,-34.439047 +2021,10,1,1,New South Wales,153.287597,-28.964065 +2021,6,11,1,New South Wales,150.517061,-34.447342 +2023,10,30,1,New South Wales,153.07145,-30.885476 +2021,5,20,1,New South Wales,150.615856,-34.430728 +2022,12,14,1,New South Wales,151.598414,-30.492643 +2020,8,,1,New South Wales,153.599279,-28.716311 +2021,6,5,1,New South Wales,150.604779,-34.427329 +2021,5,5,1,New South Wales,150.608906,-34.420712 +2021,4,29,1,New South Wales,150.606644,-34.454241 +2021,4,30,1,New South Wales,150.616459,-34.399159 +2023,11,21,1,New South Wales,153.099766,-29.491595 +2022,1,18,1,New South Wales,152.893086,-31.454902 +2021,8,26,1,New South Wales,150.604929,-34.44265 +2020,11,9,1,New South Wales,150.003444,-36.572886 +2023,9,25,1,New South Wales,153.182292,-28.846945 +2021,5,21,1,New South Wales,150.63054,-34.39506 +2021,3,3,1,New South Wales,150.524627,-34.462352 +2020,11,18,1,New South Wales,152.817738,-31.26362 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2021,5,18,1,New South Wales,150.531208,-34.471005 +2024,3,29,1,New South Wales,152.398767,-31.965777 +2020,11,3,1,New South Wales,150.599275,-33.203062 +2020,10,29,1,New South Wales,149.979238,-36.570187 +2021,5,2,1,New South Wales,150.611438,-34.419679 +2021,6,22,1,New South Wales,150.519561,-34.463268 +2021,4,21,1,New South Wales,150.604676,-34.424451 +2022,3,18,1,New South Wales,152.782133,-31.569129 +2021,6,2,1,New South Wales,150.518737,-34.447709 +2021,7,13,1,New South Wales,150.512878,-34.446743 +2021,4,23,1,New South Wales,150.637204,-34.485182 +2021,6,16,1,New South Wales,150.522517,-34.451627 +2021,4,11,1,New South Wales,150.633344,-34.489606 +2021,6,1,1,New South Wales,150.604724,-34.424678 +2021,3,25,1,New South Wales,153.109342,-29.490941 +2022,12,2,1,New South Wales,152.065202,-32.710956 +2020,10,8,1,New South Wales,153.13439,-28.562399 +2024,8,20,1,New South Wales,152.092114,-32.172681 +2024,7,2,1,New South Wales,151.085125,-29.728597 +2023,9,1,1,New South Wales,153.54091,-28.345835 +2023,1,20,1,New South Wales,153.095217,-29.483507 +2022,2,6,1,New South Wales,153.103699,-29.485856 +2021,5,13,1,New South Wales,150.617107,-34.433827 +2023,12,1,1,New South Wales,152.078006,-32.759765 +2022,1,27,1,New South Wales,153.302555,-28.819938 +2023,12,8,1,New South Wales,152.929315,-31.459734 +2021,6,26,1,New South Wales,150.597608,-34.418236 +2021,5,8,1,New South Wales,150.518344,-34.451416 +2021,5,30,1,New South Wales,150.631359,-34.419995 +2021,12,11,1,New South Wales,153.108215,-29.490259 +2021,6,13,1,New South Wales,150.604369,-34.439014 +2021,5,29,1,New South Wales,150.630819,-34.420643 +2023,3,22,1,New South Wales,153.095963,-29.484693 +2021,6,25,1,New South Wales,150.514364,-34.447296 +2020,9,25,1,New South Wales,153.109392,-30.298612 +2023,9,11,1,New South Wales,153.274696,-28.45331 +2021,12,28,1,New South Wales,150.808599,-34.098258 +2021,9,28,1,New South Wales,153.014083,-28.435381 +2021,9,15,1,New South Wales,150.517987,-34.442168 +2023,2,9,1,New South Wales,152.905393,-31.436888 +2021,6,5,1,New South Wales,150.519442,-34.456622 +2023,10,22,1,New South Wales,152.98818,-30.640405 +2021,10,27,1,New South Wales,152.865734,-30.880361 +2022,9,16,1,New South Wales,153.103446,-29.485697 +2020,7,27,1,New South Wales,152.883273,-31.437175 +2023,2,7,1,New South Wales,150.064049,-34.961276 +2023,3,17,1,New South Wales,153.101274,-29.489979 +2023,2,25,1,New South Wales,153.562066,-28.389366 +2020,5,7,1,New South Wales,152.027861,-32.305058 +2021,5,1,1,New South Wales,150.604736,-34.427302 +2021,7,9,1,New South Wales,150.631183,-34.388816 +2022,2,12,1,New South Wales,152.924676,-31.453764 +2022,8,17,1,New South Wales,153.104171,-29.481966 +2021,3,8,1,New South Wales,150.604275,-34.438877 +2021,5,10,1,New South Wales,150.604885,-34.427043 +2023,11,11,1,New South Wales,150.785055,-33.716562 +2023,9,11,1,New South Wales,153.233127,-28.601453 +2021,6,30,1,New South Wales,150.629406,-34.388971 +2022,5,3,1,New South Wales,153.525002,-28.642488 +2021,5,15,1,New South Wales,150.516231,-34.449272 +2021,8,10,1,New South Wales,152.755897,-31.631223 +2021,4,28,1,New South Wales,150.636232,-34.421964 +2020,1,6,1,New South Wales,153.093356,-29.488812 +2020,11,16,1,New South Wales,149.962048,-36.514707 +2021,6,5,1,New South Wales,150.52379,-34.465265 +2023,10,13,1,New South Wales,152.921641,-31.452603 +2021,9,22,1,New South Wales,151.091178,-29.774595 +2020,8,5,1,New South Wales,151.55998,-32.878656 +2023,8,7,1,New South Wales,153.316988,-28.828021 +2021,6,19,1,New South Wales,150.627752,-34.420998 +2020,8,5,1,New South Wales,151.55998,-32.878656 +2023,3,16,1,New South Wales,153.40125,-28.976847 +2024,2,3,1,New South Wales,150.786436,-33.70815 +2023,7,3,1,New South Wales,153.110576,-29.48975 +2021,4,17,1,New South Wales,150.640286,-34.415912 +2020,11,16,1,New South Wales,153.316981,-28.949626 +2023,9,14,1,New South Wales,153.110527,-29.490175 +2023,11,13,1,New South Wales,153.108054,-29.49067 +2020,4,8,1,New South Wales,150.141958,-34.920437 +2020,11,18,1,New South Wales,149.966791,-36.502277 +2020,10,1,1,New South Wales,152.171269,-30.079403 +2020,11,15,1,New South Wales,149.966791,-36.502277 +2021,2,26,1,New South Wales,150.656895,-34.456125 +2020,,,1,New South Wales,152.756284,-28.682073 +2021,4,4,1,New South Wales,150.528836,-34.458795 +2024,6,28,1,New South Wales,151.802756,-32.862315 +2020,11,16,1,New South Wales,153.316981,-28.949626 +2023,2,11,1,New South Wales,153.389562,-29.088439 +2020,8,12,1,New South Wales,152.921772,-31.443669 +2021,9,3,1,New South Wales,152.91986,-31.438268 +2021,4,29,1,New South Wales,150.614855,-34.4296 +2022,11,14,1,New South Wales,152.897899,-31.436438 +2021,6,10,1,New South Wales,150.518185,-34.453477 +2024,4,25,1,New South Wales,152.064749,-32.709086 +2021,5,26,1,New South Wales,150.527177,-34.469643 +2020,9,3,1,New South Wales,153.002351,-29.181487 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2024,1,29,1,New South Wales,152.063272,-32.706167 +2024,2,2,1,New South Wales,153.071934,-30.885689 +2021,7,11,1,New South Wales,150.513105,-34.447162 +2021,6,20,1,New South Wales,150.657026,-34.454577 +2022,3,17,1,New South Wales,152.874803,-31.458526 +2020,7,8,1,New South Wales,153.10401,-29.478879 +2021,1,16,1,New South Wales,153.104138,-29.478847 +2021,9,13,1,New South Wales,150.64156,-34.396878 +2022,11,28,1,New South Wales,152.737721,-31.565834 +2020,7,6,1,New South Wales,150.82369,-34.141271 +2020,11,17,1,New South Wales,149.962048,-36.514707 +2021,8,27,1,New South Wales,153.597863,-28.667451 +2021,5,22,1,New South Wales,150.617641,-34.448731 +2022,11,4,1,New South Wales,153.304453,-28.848398 +2022,1,28,1,New South Wales,153.510002,-28.810799 +2021,3,3,1,New South Wales,150.51801,-34.446541 +2021,7,27,1,New South Wales,150.518139,-34.437023 +2022,6,4,1,New South Wales,152.82611,-31.26929 +2023,1,19,1,New South Wales,150.810126,-34.123635 +2024,1,15,1,New South Wales,150.787759,-33.704409 +2020,11,27,1,New South Wales,153.318273,-28.816339 +2021,8,2,1,New South Wales,152.422603,-31.904256 +2021,5,13,1,New South Wales,150.633251,-34.418093 +2021,11,15,1,New South Wales,152.066185,-32.708193 +2021,3,20,1,New South Wales,152.043528,-32.767142 +2021,7,28,1,New South Wales,152.105012,-32.72 +2021,6,14,1,New South Wales,150.625258,-34.384518 +2020,1,26,1,New South Wales,152.89309,-31.45491 +2021,8,5,1,New South Wales,150.604736,-34.427302 +2023,2,9,1,New South Wales,153.100861,-29.490035 +2020,11,3,1,New South Wales,153.317651,-28.862857 +2021,8,24,1,New South Wales,150.519971,-34.446445 +2023,11,3,1,New South Wales,152.927399,-31.468948 +2024,2,22,1,New South Wales,152.539394,-32.064887 +2024,6,10,1,New South Wales,152.077265,-32.722486 +2021,5,29,1,New South Wales,150.602557,-34.424744 +2021,5,9,1,New South Wales,150.628057,-34.389774 +2020,11,26,1,New South Wales,153.608603,-28.686728 +2021,5,14,1,New South Wales,150.61616,-34.435359 +2021,10,28,1,New South Wales,153.4064,-28.4371 +2020,1,21,1,New South Wales,151.77952,-32.91932 +2023,4,15,1,New South Wales,151.93908,-32.63183 +2021,5,16,1,New South Wales,150.52382,-34.463517 +2022,6,22,1,New South Wales,150.807753,-34.104236 +2023,6,12,1,New South Wales,153.561522,-28.385714 +2021,5,23,1,New South Wales,150.605565,-34.432213 +2020,8,31,1,New South Wales,152.908244,-31.160598 +2020,11,3,1,New South Wales,153.317651,-28.862857 +2024,1,7,1,New South Wales,152.926013,-31.45285 +2020,12,2,1,New South Wales,150.656179,-33.58539 +2021,8,9,1,New South Wales,150.632253,-34.388287 +2023,10,6,1,New South Wales,152.540927,-30.211856 +2020,4,4,1,New South Wales,153.45968,-28.32208 +2023,12,21,1,New South Wales,148.729322,-36.429981 +2021,3,15,1,New South Wales,150.532943,-34.481191 +2021,9,5,1,New South Wales,150.643674,-34.398695 +2021,1,23,1,New South Wales,150.596283,-29.838919 +2021,4,30,1,New South Wales,150.610124,-34.419978 +2020,10,13,1,New South Wales,149.930096,-36.638123 +2023,11,4,1,New South Wales,150.990376,-34.089255 +2023,10,8,1,New South Wales,152.929052,-31.450196 +2021,7,17,1,New South Wales,150.625275,-34.385834 +2020,3,3,1,New South Wales,151.726,-32.67 +2022,6,24,1,New South Wales,153.080079,-30.352065 +2021,5,5,1,New South Wales,150.615842,-34.43584 +2021,5,28,1,New South Wales,150.518147,-34.451844 +2023,1,25,1,New South Wales,153.109401,-29.490553 +2021,5,13,1,New South Wales,150.633469,-34.417719 +2021,5,30,1,New South Wales,150.606124,-34.437778 +2023,1,25,1,New South Wales,152.38345,-31.929091 +2021,3,3,1,New South Wales,150.658856,-34.456452 +2021,11,18,1,New South Wales,153.59435,-28.70969 +2021,10,,1,New South Wales,149.393998,-36.088697 +2021,4,2,1,New South Wales,150.663501,-34.458118 +2021,8,13,1,New South Wales,150.519252,-34.437659 +2021,5,10,1,New South Wales,150.624949,-34.399685 +2021,5,20,1,New South Wales,150.599408,-34.429099 +2022,11,16,1,New South Wales,153.578506,-28.86502 +2021,5,22,1,New South Wales,150.658753,-33.526844 +2022,11,29,1,New South Wales,152.769456,-30.916275 +2023,8,22,1,New South Wales,152.881858,-29.607118 +2021,4,21,1,New South Wales,150.617064,-34.43379 +2024,1,11,1,New South Wales,152.791835,-31.641062 +2023,7,28,1,New South Wales,153.278692,-28.662138 +2023,8,2,1,New South Wales,152.028715,-32.191062 +2021,8,29,1,New South Wales,152.104,-32.721 +2021,9,12,1,New South Wales,151.046007,-34.028857 +2021,3,4,1,New South Wales,150.635236,-34.487001 +2021,4,2,1,New South Wales,150.635333,-34.488598 +2022,11,28,1,New South Wales,152.794945,-30.901933 +2021,4,11,1,New South Wales,153.110168,-29.490231 +2022,8,2,1,New South Wales,150.797013,-34.14552 +2023,2,9,1,New South Wales,150.809221,-34.099449 +2022,12,12,1,New South Wales,152.077077,-32.725465 +2021,6,1,1,New South Wales,150.638477,-34.490994 +2020,11,2,1,New South Wales,152.924273,-31.45801 +2022,6,21,1,New South Wales,153.109392,-30.298612 +2022,1,27,1,New South Wales,152.086481,-32.729137 +2021,7,7,1,New South Wales,150.627455,-34.421497 +2021,6,17,1,New South Wales,150.521381,-34.465757 +2022,8,31,1,New South Wales,152.924256,-31.458937 +2021,5,23,1,New South Wales,150.528872,-34.47048 +2020,10,30,1,New South Wales,149.945227,-36.57753 +2021,5,1,1,New South Wales,153.10137,-29.489956 +2020,10,15,1,New South Wales,149.930096,-36.638123 +2023,5,15,1,New South Wales,150.785234,-33.716877 +2020,8,6,1,New South Wales,152.9208,-30.50587 +2023,6,1,1,New South Wales,153.095985,-29.484791 +2022,6,4,1,New South Wales,150.808211,-34.098128 +2020,6,2,1,New South Wales,152.929709,-29.727079 +2021,6,2,1,New South Wales,150.630398,-34.420905 +2021,10,19,1,New South Wales,151.765123,-32.697952 +2022,10,5,1,New South Wales,153.028493,-30.426521 +2021,10,25,1,New South Wales,153.00116,-30.40844 +2021,4,10,1,New South Wales,150.615127,-34.432653 +2021,4,14,1,New South Wales,152.927454,-31.465739 +2024,2,10,1,New South Wales,150.784665,-33.716589 +2021,7,19,1,New South Wales,150.623753,-34.383533 +2022,8,31,1,New South Wales,150.839671,-34.078232 +2021,6,14,1,New South Wales,150.630374,-34.420977 +2022,7,28,1,New South Wales,152.923035,-31.45989 +2020,5,7,1,New South Wales,150.05278,-34.89578 +2020,10,20,1,New South Wales,153.278132,-28.831137 +2020,9,29,1,New South Wales,153.109392,-30.298612 +2020,8,28,1,New South Wales,150.913678,-34.068368 +2023,5,11,1,New South Wales,151.370487,-30.466398 +2022,10,3,1,New South Wales,153.10932,-29.4906 +2023,12,30,1,New South Wales,151.083512,-29.745628 +2022,11,15,1,New South Wales,152.097044,-32.739428 +2021,6,17,1,New South Wales,150.513826,-34.446347 +2021,6,19,1,New South Wales,150.619188,-34.43678 +2024,1,18,1,New South Wales,151.682471,-32.51552 +2020,3,29,1,New South Wales,150.057881,-33.773306 +2021,6,4,1,New South Wales,150.519811,-34.447839 +2021,5,10,1,New South Wales,150.521136,-34.43538 +2023,9,14,1,New South Wales,152.606767,-30.34947 +2021,8,12,1,New South Wales,150.750163,-34.372582 +2021,4,23,1,New South Wales,150.609091,-34.418822 +2022,8,3,1,New South Wales,152.823948,-31.543136 +2021,9,26,1,New South Wales,152.148212,-32.725964 +2021,6,3,1,New South Wales,153.582378,-28.788736 +2021,3,31,1,New South Wales,150.63531,-34.488634 +2020,10,23,1,New South Wales,149.919967,-36.589766 +2021,1,17,1,New South Wales,151.645375,-32.551366 +2020,10,12,1,New South Wales,152.905249,-31.496287 +2020,4,11,1,New South Wales,152.867889,-29.667173 +2021,4,24,1,New South Wales,150.638091,-34.420098 +2021,5,6,1,New South Wales,150.632871,-34.418852 +2023,5,5,1,New South Wales,149.967242,-36.576557 +2021,5,16,1,New South Wales,150.600556,-34.4274 +2021,6,21,1,New South Wales,150.520358,-34.465746 +2023,8,10,1,New South Wales,152.921933,-31.452848 +2021,6,7,1,New South Wales,150.518924,-34.44728 +2021,6,25,1,New South Wales,150.520433,-34.46581 +2020,4,20,1,New South Wales,152.867203,-29.669559 +2021,5,28,1,New South Wales,150.604268,-34.438003 +2021,10,23,1,New South Wales,152.885405,-31.438864 +2021,9,2,1,New South Wales,152.374523,-31.915792 +2023,10,27,1,New South Wales,152.296447,-31.911313 +2024,1,3,1,New South Wales,151.059002,-29.73754 +2021,7,12,1,New South Wales,150.642995,-34.395364 +2020,11,16,1,New South Wales,153.316981,-28.949626 +2022,8,23,1,New South Wales,153.103768,-29.485585 +2020,11,18,1,New South Wales,153.369052,-28.953149 +2021,5,17,1,New South Wales,150.637346,-34.423735 +2020,7,5,1,New South Wales,153.094981,-29.491889 +2021,5,1,1,New South Wales,150.636189,-34.4231 +2021,8,29,1,New South Wales,152.374047,-31.913202 +2021,5,9,1,New South Wales,150.609158,-34.420672 +2021,6,16,1,New South Wales,150.630222,-34.420956 +2022,9,8,1,New South Wales,153.101204,-29.489872 +2020,8,6,1,New South Wales,152.919786,-30.505421 +2020,4,27,1,New South Wales,152.867632,-29.667098 +2024,4,24,1,New South Wales,152.3156,-31.94879 +2021,10,25,1,New South Wales,152.988323,-30.399605 +2020,10,24,1,New South Wales,149.960571,-36.556943 +2020,1,8,1,New South Wales,152.908019,-31.430194 +2022,6,25,1,New South Wales,153.402026,-28.259717 +2024,3,24,1,New South Wales,152.064373,-32.708977 +2020,8,27,1,New South Wales,152.924406,-31.46562 +2021,6,6,1,New South Wales,150.607725,-34.430092 +2021,3,9,1,New South Wales,150.604122,-34.439298 +2021,5,3,1,New South Wales,150.621159,-34.39871 +2022,7,30,1,New South Wales,152.794192,-31.13802 +2023,10,19,1,New South Wales,149.386551,-36.212525 +2021,5,30,1,New South Wales,150.607255,-34.437809 +2022,12,5,1,New South Wales,152.06621,-32.711568 +2020,12,8,1,New South Wales,149.972032,-36.288695 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2020,5,,1,New South Wales,152.041806,-32.31259 +2020,9,15,1,New South Wales,152.063763,-32.712407 +2020,1,1,1,New South Wales,153.548816,-28.674761 +2022,11,18,1,New South Wales,152.378608,-31.92933 +2021,7,12,1,New South Wales,150.522799,-34.46419 +2020,2,4,1,New South Wales,152.92853,-31.447756 +2020,10,16,1,New South Wales,150.616942,-33.436495 +2023,11,25,1,New South Wales,150.783927,-33.71756 +2023,11,6,1,New South Wales,153.110495,-29.4901 +2021,6,6,1,New South Wales,150.640564,-34.39712 +2024,1,3,1,New South Wales,152.373637,-31.914114 +2024,7,26,1,New South Wales,152.919608,-30.50608 +2021,7,6,1,New South Wales,150.51389,-34.446385 +2020,11,3,1,New South Wales,150.702147,-33.503703 +2022,2,21,1,New South Wales,150.807228,-34.068105 +2020,10,30,1,New South Wales,149.92265,-36.572354 +2023,11,19,1,New South Wales,150.886666,-33.254132 +2021,5,5,1,New South Wales,150.608607,-34.456407 +2024,4,18,1,New South Wales,150.65873,-33.526837 +2020,12,4,1,New South Wales,153.081517,-30.344269 +2021,12,19,1,New South Wales,152.035166,-32.765489 +2021,6,2,1,New South Wales,150.626058,-34.390465 +2021,5,7,1,New South Wales,150.639073,-34.491475 +2021,6,24,1,New South Wales,150.627393,-34.420234 +2021,6,20,1,New South Wales,150.603986,-34.439467 +2023,9,16,1,New South Wales,153.096049,-30.303122 +2022,1,8,1,New South Wales,152.916099,-31.480637 +2020,12,18,1,New South Wales,153.293126,-28.864629 +2021,4,30,1,New South Wales,150.615845,-34.43648 +2023,9,15,1,New South Wales,151.6573,-30.531555 +2021,6,10,1,New South Wales,150.610386,-34.430622 +2023,6,6,1,New South Wales,153.11635,-30.263063 +2020,7,5,1,New South Wales,152.404167,-31.945815 +2020,4,2,1,New South Wales,152.78204,-31.696785 +2022,8,1,1,New South Wales,150.796934,-34.133034 +2020,11,19,1,New South Wales,152.404167,-31.945815 +2024,3,18,1,New South Wales,152.063698,-32.706508 +2023,10,4,1,New South Wales,153.449143,-28.233606 +2021,5,13,1,New South Wales,153.60144,-28.7273 +2022,8,30,1,New South Wales,149.324818,-36.294353 +2021,10,7,1,New South Wales,153.274393,-29.010397 +2020,5,18,1,New South Wales,152.136151,-31.43267 +2021,6,19,1,New South Wales,150.603803,-34.439409 +2021,4,6,1,New South Wales,150.520249,-34.447361 +2020,3,5,1,New South Wales,151.19571,-29.78671 +2021,7,29,1,New South Wales,150.598038,-34.4268 +2021,8,16,1,New South Wales,153.248416,-28.726615 +2020,10,3,1,New South Wales,152.928233,-31.459579 +2021,7,1,1,New South Wales,150.513109,-34.447757 +2022,3,23,1,New South Wales,149.621917,-33.603863 +2021,4,16,1,New South Wales,150.523847,-34.452663 +2021,10,15,1,New South Wales,150.866027,-34.060984 +2021,10,21,1,New South Wales,153.01264,-29.53805 +2020,11,5,1,New South Wales,149.934245,-36.578531 +2021,5,5,1,New South Wales,150.637334,-34.423798 +2020,11,16,1,New South Wales,149.962048,-36.514707 +2020,5,23,1,New South Wales,153.09216,-29.488093 +2020,10,23,1,New South Wales,149.919967,-36.589766 +2021,4,29,1,New South Wales,150.616346,-34.429187 +2020,11,17,1,New South Wales,149.962048,-36.514707 +2021,7,24,1,New South Wales,150.51755,-34.444782 +2021,6,8,1,New South Wales,150.518659,-34.447392 +2023,6,28,1,New South Wales,153.4475,-28.65439 +2021,1,15,1,New South Wales,153.438146,-28.696419 +2023,9,11,1,New South Wales,150.911948,-33.969911 +2021,7,5,1,New South Wales,150.603088,-34.417596 +2021,9,7,1,New South Wales,152.379533,-31.919963 +2020,11,,1,New South Wales,152.216709,-32.419657 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2020,1,22,1,New South Wales,152.059352,-32.712079 +2021,4,27,1,New South Wales,150.610226,-34.419079 +2021,7,17,1,New South Wales,150.848837,-34.049087 +2023,10,7,1,New South Wales,152.138801,-32.108708 +2023,9,13,1,New South Wales,152.887207,-29.676818 +2021,10,25,1,New South Wales,152.988323,-30.399605 +2021,7,26,1,New South Wales,150.630632,-34.420702 +2021,5,30,1,New South Wales,150.604924,-34.437898 +2021,5,16,1,New South Wales,150.64049,-34.494125 +2024,4,4,1,New South Wales,149.946833,-36.308587 +2021,11,26,1,New South Wales,153.302601,-28.845501 +2021,5,23,1,New South Wales,150.605405,-34.43248 +2024,1,31,1,New South Wales,150.871066,-34.042622 +2021,6,4,1,New South Wales,150.604314,-34.42687 +2022,10,25,1,New South Wales,152.063775,-32.703195 +2023,9,30,1,New South Wales,150.816839,-33.481827 +2021,1,3,1,New South Wales,150.101295,-33.779148 +2020,4,20,1,New South Wales,152.85978,-31.428368 +2021,5,7,1,New South Wales,150.637408,-34.423853 +2021,4,28,1,New South Wales,150.624195,-34.388662 +2021,5,25,1,New South Wales,150.595495,-34.425939 +2021,7,29,1,New South Wales,150.974325,-34.086265 +2023,4,2,1,New South Wales,150.777493,-34.199736 +2020,11,23,1,New South Wales,153.608688,-28.683535 +2023,8,13,1,New South Wales,153.103859,-29.489587 +2021,5,19,1,New South Wales,150.600146,-34.42878 +2023,2,15,1,New South Wales,152.565372,-31.967869 +2020,11,10,1,New South Wales,152.921185,-31.455091 +2023,8,31,1,New South Wales,153.103892,-29.489582 +2021,11,7,1,New South Wales,151.765371,-32.69804 +2022,11,19,1,New South Wales,152.788781,-30.895519 +2021,9,8,1,New South Wales,150.642802,-34.394882 +2022,11,18,1,New South Wales,152.788781,-30.895519 +2021,3,10,1,New South Wales,152.924363,-31.454161 +2021,4,28,1,New South Wales,150.609555,-34.418957 +2023,5,3,1,New South Wales,150.786142,-33.710441 +2023,1,6,1,New South Wales,152.914101,-31.476541 +2021,4,21,1,New South Wales,150.631153,-34.387562 +2021,9,18,1,New South Wales,153.092278,-29.488121 +2021,6,11,1,New South Wales,150.519931,-34.452584 +2021,5,23,1,New South Wales,150.630906,-34.420635 +2023,4,28,1,New South Wales,150.786141,-33.710529 +2023,5,6,1,New South Wales,153.104085,-29.485282 +2020,6,7,1,New South Wales,152.913073,-31.428909 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2023,10,17,1,New South Wales,151.642093,-32.657279 +2021,6,28,1,New South Wales,150.644959,-34.391264 +2020,11,3,1,New South Wales,153.317651,-28.862857 +2020,2,7,1,New South Wales,152.467892,-31.947093 +2020,7,25,1,New South Wales,150.086409,-34.698469 +2021,6,19,1,New South Wales,150.602695,-34.42526 +2021,5,5,1,New South Wales,150.632793,-34.418905 +2021,5,1,1,New South Wales,150.634769,-34.423685 +2023,10,18,1,New South Wales,150.861754,-34.065212 +2021,4,20,1,New South Wales,150.614376,-34.429212 +2021,5,6,1,New South Wales,150.627544,-34.389845 +2020,10,23,1,New South Wales,149.934245,-36.578531 +2020,5,18,1,New South Wales,152.136708,-31.415541 +2022,8,2,1,New South Wales,152.920334,-31.478174 +2023,10,1,1,New South Wales,150.704278,-33.405506 +2021,12,2,1,New South Wales,152.883694,-31.429034 +2023,3,9,1,New South Wales,152.89723,-31.474846 +2020,12,10,1,New South Wales,153.377477,-28.85174 +2020,5,,1,New South Wales,152.096682,-32.739299 +2022,4,8,1,New South Wales,150.07765,-31.20481 +2022,1,9,1,New South Wales,152.905454,-31.437503 +2023,10,2,1,New South Wales,152.764875,-31.437918 +2020,7,11,1,New South Wales,150.79265,-34.13993 +2021,5,13,1,New South Wales,150.637347,-34.423699 +2020,12,22,1,New South Wales,153.104203,-29.478819 +2020,11,27,1,New South Wales,152.19874,-32.187837 +2021,7,13,1,New South Wales,150.627239,-34.420654 +2020,11,19,1,New South Wales,149.966791,-36.502277 +2021,6,2,1,New South Wales,150.521479,-34.46575 +2023,9,16,1,New South Wales,153.31535,-28.819753 +2022,11,15,1,New South Wales,153.43329,-28.868624 +2021,5,20,1,New South Wales,153.10821,-29.490208 +2023,11,15,1,New South Wales,152.918066,-30.281064 +2020,6,27,1,New South Wales,152.92331,-31.471353 +2020,12,,1,New South Wales,152.909424,-31.176289 +2022,4,29,1,New South Wales,152.929032,-31.450166 +2023,9,15,1,New South Wales,152.609987,-30.345617 +2021,10,17,1,New South Wales,150.813678,-34.104761 +2021,8,23,1,New South Wales,150.633637,-34.418678 +2023,8,3,1,New South Wales,153.104214,-29.47957 +2021,11,12,1,New South Wales,153.315766,-28.825103 +2021,5,4,1,New South Wales,150.627063,-34.389556 +2020,10,15,1,New South Wales,149.930096,-36.638123 +2023,5,23,1,New South Wales,152.229204,-28.604121 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2023,3,12,1,New South Wales,151.097629,-33.13681 +2021,6,16,1,New South Wales,150.514333,-34.446511 +2021,5,6,1,New South Wales,150.606004,-34.437793 +2022,9,19,1,New South Wales,150.953779,-33.958984 +2023,12,12,1,New South Wales,152.107278,-32.729397 +2021,9,6,1,New South Wales,151.710506,-32.629689 +2021,10,19,1,New South Wales,150.790596,-34.188134 +2022,6,20,1,New South Wales,153.1021,-29.488742 +2021,6,20,1,New South Wales,150.520295,-34.465681 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2020,12,9,1,New South Wales,152.061035,-32.710798 +2021,3,14,1,New South Wales,150.517621,-34.453051 +2021,4,12,1,New South Wales,153.469052,-28.262461 +2022,9,7,1,New South Wales,153.53013,-28.64474 +2024,3,21,1,New South Wales,152.063709,-32.706553 +2020,10,13,1,New South Wales,152.064327,-32.710664 +2023,10,4,1,New South Wales,150.785211,-33.713734 +2022,3,24,1,New South Wales,150.660325,-34.213129 +2021,7,3,1,New South Wales,150.513947,-34.447035 +2021,7,7,1,New South Wales,153.556647,-28.40001 +2021,6,30,1,New South Wales,150.522447,-34.46504 +2020,5,,1,New South Wales,152.097885,-32.739596 +2023,6,1,1,New South Wales,153.308373,-28.850232 +2020,11,5,1,New South Wales,153.103752,-29.485655 +2021,4,29,1,New South Wales,150.610294,-34.418954 +2020,8,21,1,New South Wales,153.558835,-28.369223 +2024,2,3,1,New South Wales,152.924998,-31.453622 +2021,6,3,1,New South Wales,150.519482,-34.447157 +2022,3,12,1,New South Wales,152.171948,-32.662579 +2023,8,20,1,New South Wales,153.431617,-29.014449 +2023,10,24,1,New South Wales,152.388204,-31.802283 +2021,4,21,1,New South Wales,150.636367,-34.485508 +2021,5,23,1,New South Wales,150.630863,-34.420634 +2020,10,12,1,New South Wales,149.930096,-36.638123 +2023,7,29,1,New South Wales,153.018884,-30.367373 +2023,11,23,1,New South Wales,150.785167,-33.714059 +2021,5,26,1,New South Wales,151.723503,-31.623706 +2021,5,13,1,New South Wales,150.629002,-34.395986 +2021,4,29,1,New South Wales,150.636248,-34.421793 +2023,5,6,1,New South Wales,153.103918,-29.489591 +2021,7,1,1,New South Wales,150.522772,-34.465849 +2020,1,8,1,New South Wales,152.866394,-29.692061 +2023,1,14,1,New South Wales,152.0749,-32.725189 +2020,8,5,1,New South Wales,149.236042,-35.366018 +2023,9,20,1,New South Wales,150.11421,-31.1731 +2021,4,13,1,New South Wales,152.896425,-29.629872 +2020,10,16,1,New South Wales,152.929283,-31.453573 +2021,5,8,1,New South Wales,150.521258,-34.46662 +2022,10,18,1,New South Wales,151.999308,-32.727656 +2023,8,20,1,New South Wales,150.983557,-34.094698 +2020,7,13,1,New South Wales,152.409406,-31.910186 +2023,10,26,1,New South Wales,150.786346,-33.707387 +2021,6,23,1,New South Wales,150.514309,-34.446574 +2021,5,17,1,New South Wales,150.520442,-34.4541 +2020,11,4,1,New South Wales,149.945227,-36.57753 +2021,10,6,1,New South Wales,152.901303,-31.440876 +2021,4,21,1,New South Wales,150.630552,-34.386901 +2023,12,5,1,New South Wales,152.86796,-31.475495 +2023,7,27,1,New South Wales,152.901944,-30.462694 +2020,11,27,1,New South Wales,153.556009,-28.398853 +2021,4,27,1,New South Wales,150.52673,-34.469652 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2021,6,1,1,New South Wales,150.521468,-34.46575 +2022,4,24,1,New South Wales,150.980482,-34.12769 +2021,10,22,1,New South Wales,152.038512,-32.735834 +2021,7,12,1,New South Wales,151.488028,-32.98809 +2021,3,9,1,New South Wales,153.292842,-28.864759 +2021,6,28,1,New South Wales,150.627337,-34.420278 +2021,6,15,1,New South Wales,150.516469,-34.439423 +2023,3,26,1,New South Wales,152.922612,-31.442475 +2020,12,14,1,New South Wales,153.404872,-28.972444 +2021,4,6,1,New South Wales,152.084555,-32.7306 +2021,6,20,1,New South Wales,150.604188,-34.422495 +2021,11,24,1,New South Wales,150.913678,-34.068368 +2021,6,18,1,New South Wales,150.603775,-34.426688 +2022,4,20,1,New South Wales,153.339842,-28.993026 +2021,5,28,1,New South Wales,150.913678,-34.068368 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2022,4,5,1,New South Wales,152.900816,-29.631326 +2021,5,4,1,New South Wales,150.52078,-34.43604 +2022,9,16,1,New South Wales,152.917147,-31.450665 +2022,4,,1,New South Wales,153.599218,-28.719867 +2021,3,5,1,New South Wales,150.609987,-34.432814 +2021,5,27,1,New South Wales,150.516063,-34.44944 +2022,11,27,1,New South Wales,153.207956,-28.898232 +2020,7,3,1,New South Wales,153.493666,-28.675247 +2021,8,2,1,New South Wales,150.602341,-34.42583 +2023,12,4,1,New South Wales,150.987053,-34.029231 +2020,1,3,1,New South Wales,152.929825,-29.000859 +2021,5,23,1,New South Wales,152.13525,-32.727203 +2021,8,17,1,New South Wales,152.867108,-31.467551 +2021,7,29,1,New South Wales,150.520282,-34.465753 +2021,5,9,1,New South Wales,150.622066,-34.39779 +2021,4,11,1,New South Wales,150.608841,-34.42071 +2020,9,12,1,New South Wales,150.10504,-31.15824 +2023,9,23,1,New South Wales,153.56561,-28.38741 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2020,8,22,1,New South Wales,152.92117,-31.479306 +2023,7,11,1,New South Wales,152.776098,-31.582983 +2023,11,27,1,New South Wales,150.785161,-33.7192 +2021,5,25,1,New South Wales,150.595795,-34.425702 +2024,1,26,1,New South Wales,150.039025,-33.263711 +2021,6,24,1,New South Wales,150.645213,-34.392287 +2021,9,17,1,New South Wales,153.29577,-28.819465 +2021,6,9,1,New South Wales,150.630861,-34.420688 +2020,11,17,1,New South Wales,150.001052,-36.513032 +2024,2,28,1,New South Wales,150.785324,-33.708181 +2021,6,8,1,New South Wales,150.854062,-34.087343 +2024,8,22,1,New South Wales,152.805449,-31.676474 +2021,3,19,1,New South Wales,153.338409,-29.001672 +2020,10,15,1,New South Wales,149.930096,-36.638123 +2021,6,3,1,New South Wales,150.637007,-34.488288 +2020,10,24,1,New South Wales,152.899733,-29.631074 +2021,6,28,1,New South Wales,150.606231,-34.432118 +2022,4,28,1,New South Wales,152.927052,-31.463281 +2024,4,14,1,New South Wales,152.857305,-31.299053 +2020,9,16,1,New South Wales,150.84661,-34.03158 +2021,12,21,1,New South Wales,150.616015,-34.440459 +2023,6,19,1,New South Wales,151.0945,-33.14425 +2021,4,23,1,New South Wales,150.607985,-34.454186 +2021,11,15,1,New South Wales,153.374069,-28.999868 +2021,5,10,1,New South Wales,150.609181,-34.420618 +2022,10,5,1,New South Wales,153.047357,-30.443767 +2023,5,18,1,New South Wales,150.786086,-33.712276 +2021,6,23,1,New South Wales,153.322262,-28.818233 +2021,4,28,1,New South Wales,150.624195,-34.388662 +2021,7,7,1,New South Wales,150.627507,-34.421579 +2024,7,13,1,New South Wales,153.421673,-28.98268 +2021,9,4,1,New South Wales,153.322231,-28.816046 +2024,8,23,1,New South Wales,152.409049,-31.670198 +2021,1,15,1,New South Wales,153.438146,-28.696419 +2023,12,19,1,New South Wales,152.926893,-31.452163 +2020,5,12,1,New South Wales,153.3505,-29.386646 +2021,12,27,1,New South Wales,153.370571,-28.877495 +2021,5,20,1,New South Wales,150.515272,-34.451542 +2024,1,28,1,New South Wales,152.077923,-32.731466 +2024,2,17,1,New South Wales,153.104745,-29.489634 +2020,1,17,1,New South Wales,153.29626,-28.828826 +2022,10,17,1,New South Wales,153.071505,-30.880259 +2021,3,23,1,New South Wales,150.517242,-34.451528 +2020,8,11,1,New South Wales,152.76313,-31.250592 +2022,8,15,1,New South Wales,152.785422,-31.6323 +2021,5,8,1,New South Wales,150.521388,-34.435719 +2021,5,28,1,New South Wales,150.630721,-34.42065 +2022,3,1,1,New South Wales,152.381501,-31.915208 +2024,1,17,1,New South Wales,152.365536,-31.951441 +2023,12,31,1,New South Wales,151.00492,-29.737246 +2022,6,10,1,New South Wales,150.814428,-34.103818 +2021,6,29,1,New South Wales,150.631505,-34.38783 +2021,5,7,1,New South Wales,152.868211,-29.667173 +2022,12,3,1,New South Wales,150.821121,-34.10191 +2021,4,1,1,New South Wales,152.067424,-32.759928 +2020,9,1,1,New South Wales,153.395182,-28.959966 +2020,6,24,1,New South Wales,153.51659,-28.668288 +2023,11,22,1,New South Wales,152.798519,-31.210815 +2021,6,21,1,New South Wales,150.619813,-34.439695 +2020,11,3,1,New South Wales,149.976368,-36.555504 +2020,6,4,1,New South Wales,152.902904,-31.479872 +2020,5,8,1,New South Wales,153.07705,-29.45099 +2021,7,10,1,New South Wales,150.626708,-34.421365 +2020,7,28,1,New South Wales,153.104165,-29.480892 +2021,8,18,1,New South Wales,150.533452,-34.479065 +2021,9,17,1,New South Wales,153.092181,-29.488065 +2022,2,9,1,New South Wales,152.899797,-31.443525 +2021,10,30,1,New South Wales,153.104144,-29.47887 +2021,5,11,1,New South Wales,150.616392,-34.434471 +2020,4,5,1,New South Wales,153.086936,-29.071477 +2021,7,19,1,New South Wales,150.516417,-34.447788 +2021,5,14,1,New South Wales,150.640408,-34.493547 +2022,11,11,1,New South Wales,152.921567,-31.453334 +2023,1,4,1,New South Wales,153.428936,-28.62677 +2021,7,5,1,New South Wales,150.979756,-34.085315 +2020,11,29,1,New South Wales,153.461156,-28.59417 +2021,8,10,1,New South Wales,150.6312,-34.387076 +2021,6,15,1,New South Wales,153.291127,-28.99283 +2021,7,10,1,New South Wales,150.519833,-34.447064 +2021,7,5,1,New South Wales,150.630587,-34.389922 +2021,2,3,1,New South Wales,152.96647,-31.201429 +2021,4,24,1,New South Wales,150.6263,-34.395771 +2023,10,8,1,New South Wales,152.909023,-31.435127 +2023,10,28,1,New South Wales,152.412796,-31.93298 +2020,6,25,1,New South Wales,152.809133,-31.661759 +2020,8,29,1,New South Wales,152.899454,-29.631228 +2021,9,5,1,New South Wales,150.514407,-34.443619 +2023,7,30,1,New South Wales,152.74475,-30.312932 +2020,11,21,1,New South Wales,152.900378,-31.473999 +2021,3,30,1,New South Wales,150.610171,-34.42977 +2021,10,10,1,New South Wales,153.341699,-28.806112 +2023,5,9,1,New South Wales,149.966961,-36.56748 +2021,1,14,1,New South Wales,152.081127,-32.736579 +2023,2,24,1,New South Wales,152.475416,-32.36447 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2023,8,10,1,New South Wales,153.315053,-29.02761 +2021,6,26,1,New South Wales,150.627152,-34.386772 +2020,12,13,1,New South Wales,153.104037,-29.484329 +2023,10,27,1,New South Wales,152.194095,-32.224416 +2021,6,24,1,New South Wales,150.605618,-34.437218 +2021,5,17,1,New South Wales,150.629557,-34.389406 +2020,11,18,1,New South Wales,151.651,-30.504 +2021,9,20,1,New South Wales,153.182534,-29.464112 +2023,8,9,1,New South Wales,152.065302,-32.710574 +2021,5,23,1,New South Wales,150.518247,-34.451414 +2020,12,8,1,New South Wales,149.972032,-36.288695 +2023,1,4,1,New South Wales,153.314501,-28.850797 +2020,12,4,1,New South Wales,149.972032,-36.288695 +2021,9,7,1,New South Wales,150.524916,-34.494596 +2021,9,13,1,New South Wales,150.606021,-34.45586 +2021,12,22,1,New South Wales,153.108199,-29.49025 +2021,4,10,1,New South Wales,150.615467,-34.432551 +2021,4,13,1,New South Wales,150.657849,-34.458208 +2022,3,3,1,New South Wales,152.872888,-31.468546 +2023,8,4,1,New South Wales,152.162214,-31.619148 +2021,6,2,1,New South Wales,150.527581,-34.455735 +2022,12,23,1,New South Wales,153.10412,-29.480635 +2021,5,8,1,New South Wales,150.606384,-34.438206 +2020,9,30,1,New South Wales,153.418171,-29.028046 +2020,11,16,1,New South Wales,149.966791,-36.502277 +2022,8,11,1,New South Wales,152.92576,-31.447655 +2023,10,25,1,New South Wales,152.907263,-31.44426 +2023,2,21,1,New South Wales,153.318261,-28.816002 +2021,5,31,1,New South Wales,150.638707,-34.491341 +2021,5,1,1,New South Wales,150.624222,-34.388879 +2020,8,4,1,New South Wales,153.434666,-28.572677 +2021,6,28,1,New South Wales,150.606461,-34.449243 +2023,11,2,1,New South Wales,152.40749,-31.911045 +2021,5,5,1,New South Wales,150.63853,-34.490653 +2020,12,18,1,New South Wales,152.034943,-32.727172 +2023,2,9,1,New South Wales,153.10813,-29.490497 +2020,5,12,1,New South Wales,153.377572,-28.572338 +2021,7,6,1,New South Wales,150.631085,-34.387299 +2024,1,8,1,New South Wales,153.09084,-29.487663 +2021,3,10,1,New South Wales,150.603801,-34.440238 +2020,11,3,1,New South Wales,153.317651,-28.862857 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2023,12,19,1,New South Wales,152.893855,-31.431878 +2021,6,28,1,New South Wales,153.036423,-30.8961 +2023,12,6,1,New South Wales,153.402873,-29.018571 +2020,8,30,1,New South Wales,152.899454,-29.6312 +2021,4,24,1,New South Wales,150.630597,-34.388777 +2021,6,3,1,New South Wales,150.639407,-34.399586 +2022,10,31,1,New South Wales,153.110195,-29.490348 +2021,3,4,1,New South Wales,150.614652,-34.435204 +2021,8,28,1,New South Wales,150.8001,-34.108335 +2021,3,17,1,New South Wales,150.607514,-34.421848 +2021,6,24,1,New South Wales,150.64532,-34.393119 +2020,6,8,1,New South Wales,152.7127,-30.4554 +2023,12,15,1,New South Wales,150.992879,-33.983402 +2020,12,10,1,New South Wales,152.037048,-32.728656 +2020,9,25,1,New South Wales,153.238384,-28.651388 +2023,8,24,1,New South Wales,152.902538,-30.462339 +2021,6,20,1,New South Wales,150.520284,-34.465681 +2021,5,18,1,New South Wales,150.607193,-34.436906 +2021,7,7,1,New South Wales,150.513918,-34.447269 +2023,2,2,1,New South Wales,153.104771,-29.47688 +2022,8,1,1,New South Wales,153.046988,-28.592858 +2023,11,29,1,New South Wales,153.109433,-29.490521 +2020,8,25,1,New South Wales,152.77949,-31.25626 +2021,3,9,1,New South Wales,150.521022,-34.446998 +2020,6,3,1,New South Wales,152.802877,-31.130961 +2023,7,20,1,New South Wales,153.103339,-29.489872 +2023,11,1,1,New South Wales,152.189959,-32.223426 +2021,7,1,1,New South Wales,150.627391,-34.390645 +2021,4,29,1,New South Wales,150.624542,-34.38793 +2022,11,9,1,New South Wales,152.884553,-31.429832 +2020,9,21,1,New South Wales,150.06694,-31.13794 +2021,8,27,1,New South Wales,149.80659,-32.360245 +2021,5,15,1,New South Wales,150.633001,-34.418494 +2022,2,9,1,New South Wales,152.063428,-32.706351 +2021,6,19,1,New South Wales,150.642803,-34.394071 +2021,12,,1,New South Wales,149.334677,-36.153555 +2021,5,13,1,New South Wales,150.524856,-34.464187 +2021,7,4,1,New South Wales,150.643743,-34.394675 +2021,3,1,1,New South Wales,150.61096,-34.432256 +2022,1,9,1,New South Wales,153.110533,-29.490082 +2021,7,28,1,New South Wales,150.521775,-34.464936 +2020,10,4,1,New South Wales,152.061041,-32.710699 +2021,6,13,1,New South Wales,150.63014,-34.420395 +2020,6,7,1,New South Wales,152.922502,-30.509654 +2021,4,26,1,New South Wales,150.60294,-34.435723 +2021,7,15,1,New South Wales,150.625166,-34.386644 +2021,5,28,1,New South Wales,150.617721,-34.438617 +2024,3,12,1,New South Wales,150.658883,-33.526959 +2022,6,30,1,New South Wales,150.97665,-34.024485 +2020,7,9,1,New South Wales,152.923296,-31.46013 +2021,5,19,1,New South Wales,150.640332,-34.493942 +2024,2,21,1,New South Wales,150.784504,-33.711996 +2021,6,11,1,New South Wales,152.404167,-31.945815 +2021,8,8,1,New South Wales,152.884465,-28.440333 +2021,7,31,1,New South Wales,152.06378,-32.706516 +2022,9,4,1,New South Wales,153.309355,-28.823148 +2021,6,6,1,New South Wales,150.616442,-34.43614 +2022,10,2,1,New South Wales,153.44401,-28.681058 +2021,3,16,1,New South Wales,150.658993,-34.458176 +2020,,,1,New South Wales,153.441148,-28.980713 +2022,12,7,1,New South Wales,152.894991,-31.429386 +2020,10,29,1,New South Wales,149.934245,-36.578531 +2023,1,22,1,New South Wales,152.911551,-31.470146 +2020,9,17,1,New South Wales,150.848206,-34.030191 +2024,2,1,1,New South Wales,152.880034,-29.68301 +2023,7,26,1,New South Wales,152.077045,-32.722541 +2020,8,25,1,New South Wales,153.561958,-28.385488 +2023,10,23,1,New South Wales,151.008324,-34.046804 +2023,8,13,1,New South Wales,153.629825,-28.637745 +2020,10,10,1,New South Wales,152.245604,-30.018307 +2023,4,5,1,New South Wales,152.849138,-31.558365 +2021,4,19,1,New South Wales,150.630295,-34.394469 +2021,5,19,1,New South Wales,150.830615,-34.159765 +2020,2,18,1,New South Wales,150.65618,-33.58539 +2021,5,13,1,New South Wales,150.640224,-34.493138 +2021,2,24,1,New South Wales,150.613466,-34.43024 +2021,4,21,1,New South Wales,150.617065,-34.433772 +2021,5,25,1,New South Wales,150.631528,-34.387795 +2021,3,20,1,New South Wales,150.610061,-34.430201 +2021,6,22,1,New South Wales,153.279605,-28.858453 +2021,4,22,1,New South Wales,150.632701,-34.392857 +2021,1,27,1,New South Wales,151.627535,-32.644012 +2020,5,4,1,New South Wales,151.000327,-34.06167 +2022,10,5,1,New South Wales,152.079082,-32.7274 +2021,4,21,1,New South Wales,150.638807,-34.419373 +2023,9,14,1,New South Wales,153.555885,-28.398905 +2023,3,21,1,New South Wales,153.104718,-29.477039 +2021,4,30,1,New South Wales,150.972995,-33.335487 +2023,3,10,1,New South Wales,149.945176,-36.590676 +2021,3,6,1,New South Wales,153.354732,-29.09726 +2020,11,16,1,New South Wales,153.316984,-28.937089 +2023,12,8,1,New South Wales,150.785679,-33.706617 +2021,5,8,1,New South Wales,150.637324,-34.423753 +2022,3,31,1,New South Wales,149.29591,-36.161958 +2022,8,8,1,New South Wales,153.236621,-28.899114 +2021,8,14,1,New South Wales,151.81422,-31.990086 +2020,8,13,1,New South Wales,153.47943,-28.621739 +2020,9,6,1,New South Wales,150.702147,-33.503703 +2021,5,11,1,New South Wales,150.639158,-34.491936 +2022,11,7,1,New South Wales,153.401068,-29.037639 +2023,6,16,1,New South Wales,150.785232,-33.717104 +2020,11,14,1,New South Wales,150.004563,-36.508695 +2023,12,7,1,New South Wales,152.086195,-32.733832 +2020,1,6,1,New South Wales,152.908734,-31.454816 +2021,6,7,1,New South Wales,150.519793,-34.457638 +2023,2,13,1,New South Wales,153.49554,-28.693785 +2020,11,,1,New South Wales,152.923537,-31.478065 +2021,6,10,1,New South Wales,150.518293,-34.453533 +2021,12,9,1,New South Wales,150.8452,-29.834389 +2023,10,28,1,New South Wales,152.189959,-32.223426 +2023,7,3,1,New South Wales,150.784998,-33.716169 +2021,10,9,1,New South Wales,153.468557,-28.328904 +2021,2,8,1,New South Wales,153.10379,-29.48558 +2022,8,9,1,New South Wales,150.89165,-34.015134 +2021,5,6,1,New South Wales,150.609159,-34.420627 +2020,11,24,1,New South Wales,152.011021,-32.727779 +2021,8,5,1,New South Wales,150.60468,-34.427364 +2024,5,30,1,New South Wales,152.07719,-32.722432 +2021,7,8,1,New South Wales,150.513127,-34.447163 +2021,5,30,1,New South Wales,150.52397,-34.46398 +2021,3,4,1,New South Wales,150.604405,-34.43815 +2023,9,29,1,New South Wales,153.220131,-28.865702 +2021,2,13,1,New South Wales,153.103811,-29.48558 +2021,6,17,1,New South Wales,150.519138,-34.459915 +2021,3,4,1,New South Wales,150.610583,-34.43251 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2021,5,31,1,New South Wales,150.63103,-34.38884 +2021,4,26,1,New South Wales,150.602052,-34.42568 +2022,1,3,1,New South Wales,152.78371,-31.329011 +2021,9,1,1,New South Wales,150.643886,-34.396174 +2020,4,3,1,New South Wales,152.867889,-29.667173 +2021,3,29,1,New South Wales,150.516096,-34.446862 +2021,5,16,1,New South Wales,150.516223,-34.449542 +2023,9,24,1,New South Wales,153.302722,-28.84815 +2024,6,13,1,Queensland,153.069309,-27.518362 +2023,1,18,1,New South Wales,150.89337,-33.971509 +2024,3,7,1,New South Wales,150.987363,-34.091866 +2023,6,8,1,New South Wales,152.401708,-31.920062 +2020,8,25,1,New South Wales,153.561958,-28.385488 +2020,4,16,1,New South Wales,153.193314,-28.844131 +2023,6,23,1,New South Wales,152.414839,-31.938825 +2023,12,27,1,New South Wales,152.371166,-31.916537 +2023,9,24,1,New South Wales,153.095447,-28.603172 +2020,10,13,1,New South Wales,149.930096,-36.638123 +2022,3,4,1,New South Wales,152.901761,-31.441937 +2022,11,7,1,New South Wales,153.395189,-29.047296 +2023,6,23,1,New South Wales,152.866559,-31.305806 +2021,1,23,1,New South Wales,153.334817,-28.814874 +2023,11,8,1,New South Wales,150.78416,-33.716917 +2020,8,27,1,New South Wales,152.928768,-31.459504 +2020,11,,1,New South Wales,150.644174,-34.548357 +2021,5,28,1,New South Wales,150.631711,-34.387059 +2020,4,2,1,New South Wales,152.727124,-31.837541 +2022,5,6,1,New South Wales,153.101757,-29.48912 +2021,10,26,1,New South Wales,152.112532,-32.7457 +2021,4,4,1,New South Wales,150.528836,-34.458795 +2021,6,9,1,New South Wales,150.613927,-34.433152 +2021,5,11,1,New South Wales,150.61642,-34.434246 +2021,11,27,1,New South Wales,150.060139,-36.115954 +2021,9,15,1,New South Wales,150.97652,-34.101927 +2020,7,8,1,New South Wales,153.102894,-29.487798 +2021,9,,1,New South Wales,153.594424,-28.712315 +2021,6,6,1,New South Wales,150.519399,-34.456594 +2020,5,7,1,New South Wales,150.04327,-34.91114 +2021,3,2,1,New South Wales,150.521395,-34.461223 +2021,4,23,1,New South Wales,150.639131,-34.421768 +2020,10,28,1,New South Wales,152.8933,-31.443058 +2022,9,14,1,New South Wales,152.038905,-32.732426 +2021,3,18,1,New South Wales,150.609725,-34.430546 +2020,10,11,1,New South Wales,153.012979,-29.015323 +2021,3,14,1,New South Wales,150.525249,-34.46159 +2023,12,22,1,New South Wales,152.923377,-31.45733 +2020,12,30,1,New South Wales,153.116803,-30.24956 +2020,1,19,1,New South Wales,152.909438,-31.447377 +2021,1,27,1,New South Wales,150.081732,-33.746099 +2021,3,24,1,New South Wales,150.63064,-33.56246 +2021,8,15,1,New South Wales,150.513094,-34.446089 +2023,12,23,1,New South Wales,153.110495,-29.489979 +2024,6,19,1,New South Wales,152.925728,-31.447656 +2021,10,23,1,New South Wales,152.07422,-32.738611 +2022,8,29,1,New South Wales,153.169802,-28.545168 +2021,4,27,1,New South Wales,150.607101,-34.454268 +2021,4,6,1,New South Wales,150.6156,-34.435547 +2020,9,23,1,New South Wales,152.884863,-31.439029 +2023,3,10,1,New South Wales,149.945176,-36.590676 +2021,7,1,1,New South Wales,150.626814,-34.421061 +2020,10,29,1,New South Wales,153.558084,-28.387756 +2021,6,21,1,New South Wales,150.60422,-34.422513 +2023,6,5,1,New South Wales,150.79904,-34.1844 +2020,4,15,1,New South Wales,150.863381,-34.04301 +2024,8,27,1,New South Wales,152.685016,-31.819477 +2021,5,10,1,New South Wales,150.628129,-34.38992 +2024,1,16,1,New South Wales,152.874244,-30.917112 +2020,1,3,1,New South Wales,152.928735,-31.459112 +2022,9,30,1,New South Wales,152.90645,-30.23878 +2021,9,3,1,New South Wales,152.37328,-31.915914 +2021,4,9,1,New South Wales,150.535156,-34.46298 +2020,12,2,1,New South Wales,152.795197,-31.644405 +2023,6,20,1,New South Wales,151.007085,-34.037982 +2022,8,9,1,New South Wales,150.519035,-34.44278 +2020,11,27,1,New South Wales,152.902981,-31.447769 +2022,11,3,1,New South Wales,152.064551,-32.708741 +2023,10,1,1,New South Wales,152.372057,-31.921041 +2021,10,25,1,New South Wales,153.095813,-29.48799 +2022,6,13,1,New South Wales,151.974079,-32.356517 +2022,8,2,1,New South Wales,150.794056,-34.137838 +2021,5,10,1,New South Wales,150.637453,-34.423791 +2023,9,21,1,New South Wales,152.065286,-32.71098 +2022,8,4,1,New South Wales,150.796905,-34.216613 +2022,3,21,1,New South Wales,153.40174,-28.260425 +2021,7,1,1,New South Wales,150.513074,-34.447116 +2021,5,4,1,New South Wales,150.615957,-34.436392 +2023,1,21,1,New South Wales,153.315064,-28.819292 +2020,11,2,1,New South Wales,149.988655,-36.56931 +2020,1,3,1,New South Wales,153.280168,-28.828381 +2023,9,11,1,New South Wales,153.394415,-28.95947 +2021,7,8,1,New South Wales,150.597934,-34.41561 +2023,5,14,1,New South Wales,152.786782,-31.62914 +2021,6,27,1,New South Wales,150.602432,-34.434856 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2020,12,28,1,New South Wales,153.10821,-29.490222 +2021,6,17,1,New South Wales,150.604294,-34.438995 +2021,2,13,1,New South Wales,153.10821,-29.490222 +2021,2,1,1,New South Wales,150.850906,-34.082195 +2020,1,10,1,New South Wales,152.261018,-31.404289 +2021,7,11,1,New South Wales,150.626276,-34.421231 +2023,4,10,1,New South Wales,151.6637,-32.67563 +2020,5,18,1,New South Wales,152.40941,-31.91019 +2020,1,19,1,New South Wales,153.37553,-29.000055 +2020,12,4,1,New South Wales,152.901838,-31.442345 +2023,4,15,1,New South Wales,152.792125,-31.641325 +2021,5,27,1,New South Wales,150.639128,-34.491476 +2021,5,6,1,New South Wales,150.615889,-34.436084 +2024,1,28,1,New South Wales,152.079426,-32.73103 +2021,5,11,1,New South Wales,150.519437,-34.435454 +2021,8,3,1,New South Wales,153.101285,-29.489979 +2023,10,19,1,New South Wales,150.70361,-34.26211 +2024,7,23,1,New South Wales,153.432333,-28.968909 +2022,7,26,1,New South Wales,153.104273,-29.477572 +2023,10,17,1,New South Wales,152.924609,-31.439934 +2021,5,16,1,New South Wales,150.62907,-34.395113 +2021,5,5,1,New South Wales,150.516447,-34.447501 +2021,6,28,1,New South Wales,150.522445,-34.465842 +2023,10,19,1,New South Wales,153.104466,-29.489643 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2023,9,29,1,New South Wales,152.107713,-32.7784 +2021,5,20,1,New South Wales,150.515294,-34.451516 +2021,10,4,1,New South Wales,152.889712,-31.443386 +2022,4,11,1,New South Wales,152.897211,-31.18492 +2021,8,26,1,New South Wales,150.515249,-34.444961 +2020,10,26,1,New South Wales,153.360617,-28.840581 +2021,6,5,1,New South Wales,150.607241,-34.435618 +2021,5,6,1,New South Wales,150.627439,-34.390087 +2022,9,15,1,New South Wales,153.51289,-28.689059 +2022,5,18,1,New South Wales,152.578608,-31.758628 +2020,5,8,1,New South Wales,151.994539,-32.297172 +2023,7,7,1,New South Wales,153.011964,-30.422181 +2023,6,8,1,New South Wales,150.84671,-34.096581 +2020,11,8,1,New South Wales,150.021287,-36.554124 +2021,9,30,1,New South Wales,153.423246,-29.020809 +2024,1,11,1,New South Wales,152.927274,-31.46875 +2021,8,3,1,New South Wales,150.626114,-34.39043 +2020,7,10,1,New South Wales,152.409406,-31.910186 +2023,9,27,1,New South Wales,152.619533,-30.341413 +2022,9,27,1,New South Wales,150.804381,-34.113876 +2021,5,29,1,New South Wales,150.603076,-34.424474 +2020,8,24,1,New South Wales,153.28726,-29.02696 +2020,8,31,1,New South Wales,152.92577,-31.445572 +2023,,,1,New South Wales,153.073578,-29.228892 +2021,5,14,1,New South Wales,150.523944,-34.463763 +2021,5,31,1,New South Wales,150.640399,-34.397559 +2024,3,24,1,New South Wales,150.841982,-34.055805 +2020,10,28,1,New South Wales,153.339182,-28.872021 +2021,6,22,1,New South Wales,150.52037,-34.46571 +2020,7,30,1,New South Wales,152.794126,-31.127799 +2020,11,20,1,New South Wales,150.673168,-33.547441 +2023,9,25,1,New South Wales,153.319946,-28.850559 +2023,9,24,1,New South Wales,153.110989,-29.48742 +2021,5,5,1,New South Wales,150.637302,-34.42377 +2021,5,2,1,New South Wales,150.61147,-34.41968 +2021,6,12,1,New South Wales,150.52139,-34.459203 +2021,5,21,1,New South Wales,150.517378,-34.452072 +2022,12,1,1,New South Wales,152.754102,-30.882465 +2020,1,16,1,New South Wales,151.1103,-29.76276 +2023,7,29,1,New South Wales,152.911175,-31.441625 +2021,5,21,1,New South Wales,150.515782,-34.450832 +2023,8,30,1,New South Wales,150.785344,-33.71562 +2020,11,19,1,New South Wales,152.895808,-31.460426 +2024,6,29,1,New South Wales,151.695043,-32.246702 +2021,3,7,1,New South Wales,150.517222,-34.445208 +2022,8,2,1,New South Wales,150.796747,-34.144733 +2020,4,20,1,New South Wales,152.842181,-31.431984 +2024,2,6,1,New South Wales,152.072518,-32.712381 +2021,5,17,1,New South Wales,150.600358,-34.428595 +2020,1,3,1,New South Wales,153.194708,-28.666969 +2021,4,5,1,New South Wales,150.606976,-34.430014 +2021,5,17,1,New South Wales,150.637486,-34.423783 +2022,12,13,1,New South Wales,152.903978,-31.47143 +2023,1,23,1,New South Wales,153.298814,-28.82595 +2021,6,6,1,New South Wales,150.616383,-34.435941 +2023,8,18,1,New South Wales,152.961427,-30.221394 +2021,5,9,1,New South Wales,150.609269,-34.420593 +2021,9,9,1,New South Wales,153.104026,-29.484343 +2021,6,14,1,New South Wales,150.640112,-34.396949 +2020,7,6,1,New South Wales,153.628907,-28.638007 +2022,9,26,1,New South Wales,153.277512,-28.939154 +2021,8,8,1,New South Wales,150.513749,-34.446382 +2020,9,22,1,New South Wales,152.900226,-31.443713 +2021,11,3,1,New South Wales,152.823592,-29.812977 +2023,2,5,1,New South Wales,152.916425,-31.468153 +2021,9,2,1,New South Wales,153.103645,-29.485842 +2021,5,8,1,New South Wales,150.60927,-34.420548 +2020,4,8,1,New South Wales,150.14393,-34.925929 +2022,12,7,1,New South Wales,153.557242,-28.400324 +2020,1,3,1,New South Wales,152.929682,-29.001618 +2020,10,10,1,New South Wales,151.634846,-32.622374 +2021,8,27,1,New South Wales,153.101333,-29.489764 +2021,4,6,1,New South Wales,151.083343,-29.728258 +2021,4,21,1,New South Wales,150.617064,-34.43379 +2021,6,23,1,New South Wales,150.602536,-34.41864 +2022,7,8,1,New South Wales,153.31049,-28.816404 +2021,4,2,1,New South Wales,152.036281,-32.737211 +2021,7,27,1,New South Wales,150.63084,-34.42067 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2023,2,9,1,New South Wales,153.10975,-29.490175 +2020,10,30,1,New South Wales,152.630321,-30.52389 +2021,9,10,1,New South Wales,150.514643,-34.44741 +2023,7,13,1,New South Wales,150.862909,-34.042414 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2020,10,31,1,New South Wales,149.92265,-36.572354 +2022,10,11,1,New South Wales,150.992016,-33.981733 +2021,7,17,1,New South Wales,150.516308,-34.446695 +2021,3,8,1,New South Wales,150.602999,-34.437076 +2023,10,5,1,New South Wales,150.782843,-33.719452 +2023,12,7,1,New South Wales,153.10394,-29.489596 +2021,6,12,1,New South Wales,150.612031,-34.432105 +2021,8,6,1,New South Wales,150.51312,-34.445945 +2020,1,19,1,New South Wales,151.060823,-33.01119 +2021,7,14,1,New South Wales,150.59728,-34.410332 +2021,7,30,1,New South Wales,150.52062,-34.465724 +2024,5,4,1,New South Wales,151.821592,-32.3538 +2021,12,,1,New South Wales,149.3242,-36.130339 +2023,3,25,1,New South Wales,153.092551,-29.488429 +2023,9,12,1,New South Wales,153.293987,-28.36298 +2020,4,14,1,New South Wales,151.991649,-32.720984 +2021,7,8,1,New South Wales,150.521939,-34.46457 +2022,9,13,1,New South Wales,152.804016,-31.379004 +2022,4,26,1,New South Wales,152.908086,-31.442519 +2021,4,29,1,New South Wales,150.606615,-34.435047 +2023,5,14,1,New South Wales,153.465282,-28.658498 +2020,5,7,1,New South Wales,153.291613,-28.830538 +2021,11,3,1,New South Wales,152.824371,-29.811037 +2021,3,27,1,New South Wales,150.533193,-34.479727 +2020,1,25,1,New South Wales,152.034866,-32.765345 +2021,4,10,1,New South Wales,153.546233,-28.615939 +2021,4,7,1,New South Wales,150.606063,-34.429608 +2022,6,1,1,New South Wales,152.925303,-31.454083 +2020,11,17,1,New South Wales,149.957517,-36.504679 +2020,10,8,1,New South Wales,152.630753,-31.224917 +2021,9,2,1,New South Wales,152.899157,-31.449716 +2021,5,6,1,New South Wales,150.627225,-34.389974 +2021,5,1,1,New South Wales,150.624176,-34.38895 +2021,9,17,1,New South Wales,152.887505,-31.439237 +2023,5,28,1,New South Wales,152.885358,-31.43966 +2023,9,12,1,New South Wales,150.748795,-34.191807 +2021,5,14,1,New South Wales,150.61624,-34.435992 +2021,10,23,1,New South Wales,150.618756,-34.435536 +2020,12,31,1,New South Wales,153.10821,-29.490203 +2021,4,24,1,New South Wales,150.637529,-34.421106 +2021,6,19,1,New South Wales,150.622486,-34.384491 +2020,5,3,1,New South Wales,150.064683,-33.772639 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2023,1,22,1,New South Wales,152.811429,-29.514883 +2022,3,18,1,New South Wales,153.10799,-29.490128 +2021,6,2,1,New South Wales,150.639387,-34.399532 +2024,7,25,1,New South Wales,151.863769,-32.745607 +2024,7,21,1,New South Wales,150.64526,-33.738636 +2022,11,25,1,New South Wales,152.788781,-30.895519 +2021,3,31,1,New South Wales,150.607542,-34.422001 +2023,12,22,1,New South Wales,152.905317,-31.444907 +2022,3,24,1,New South Wales,152.422603,-31.904256 +2023,7,19,1,New South Wales,150.78543,-33.705096 +2021,4,24,1,New South Wales,150.606874,-34.434384 +2023,6,7,1,New South Wales,152.865666,-31.271033 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2020,11,28,1,New South Wales,153.36534,-28.612167 +2023,10,5,1,New South Wales,150.785119,-33.713856 +2023,12,10,1,New South Wales,152.90872,-31.468605 +2021,12,25,1,New South Wales,152.893086,-31.454902 +2021,6,20,1,New South Wales,150.62796,-34.42093 +2020,4,16,1,New South Wales,153.218113,-28.83034 +2023,11,24,1,New South Wales,152.260884,-32.038888 +2020,12,9,1,New South Wales,153.28218,-28.870872 +2021,11,8,1,New South Wales,152.914864,-31.452967 +2022,8,11,1,New South Wales,152.904739,-31.439368 +2020,2,13,1,New South Wales,152.470268,-31.93607 +2020,1,12,1,New South Wales,153.294082,-28.830236 +2021,6,2,1,New South Wales,150.604326,-34.43786 +2022,4,18,1,New South Wales,153.401659,-28.256931 +2021,6,14,1,New South Wales,149.525377,-33.56275 +2020,10,6,1,New South Wales,152.98111,-30.437334 +2020,1,1,1,New South Wales,153.303792,-28.890141 +2023,10,29,1,New South Wales,152.971512,-28.621638 +2023,10,10,1,New South Wales,151.5525,-32.073611 +2021,6,11,1,New South Wales,150.521937,-34.459106 +2022,4,23,1,New South Wales,152.016119,-32.725778 +2020,9,21,1,New South Wales,151.6887,-32.06324 +2021,6,13,1,New South Wales,150.63011,-34.420701 +2022,8,2,1,New South Wales,151.083496,-33.131013 +2023,9,18,1,New South Wales,153.109771,-29.490203 +2021,6,29,1,New South Wales,150.644499,-34.393716 +2020,9,29,1,New South Wales,153.468241,-28.319679 +2021,4,29,1,New South Wales,150.521281,-34.466936 +2021,11,10,1,New South Wales,152.98111,-30.437334 +2021,11,15,1,New South Wales,153.222404,-28.827614 +2021,7,11,1,New South Wales,153.276422,-28.931139 +2022,3,12,1,New South Wales,153.367596,-28.866001 +2021,4,30,1,New South Wales,150.603651,-34.427596 +2024,3,30,1,New South Wales,152.017053,-32.50466 +2020,4,26,1,New South Wales,152.867632,-29.667098 +2021,7,10,1,New South Wales,150.513061,-34.447197 +2024,4,3,1,New South Wales,152.924126,-31.473213 +2021,4,25,1,New South Wales,150.62576,-34.395626 +2022,5,22,1,New South Wales,152.851464,-29.692524 +2023,2,15,1,New South Wales,152.79077,-31.639705 +2021,11,22,1,New South Wales,152.890571,-31.43873 +2023,4,22,1,New South Wales,153.256039,-28.88374 +2021,7,23,1,New South Wales,150.521608,-34.465807 +2021,8,10,1,New South Wales,150.514065,-34.447082 +2021,9,23,1,New South Wales,152.790996,-31.642577 +2023,12,14,1,New South Wales,153.439274,-28.945257 +2024,1,4,1,New South Wales,152.067727,-32.70761 +2020,12,1,1,New South Wales,153.189755,-29.425511 +2020,10,29,1,New South Wales,153.17527,-29.048582 +2021,6,20,1,New South Wales,150.622884,-34.383877 +2020,10,20,1,New South Wales,149.938155,-36.621708 +2021,5,5,1,New South Wales,150.60918,-34.418752 +2021,3,16,1,New South Wales,153.562334,-28.384369 +2022,1,5,1,New South Wales,150.616298,-34.438148 +2021,5,12,1,New South Wales,150.522473,-34.465257 +2021,5,10,1,New South Wales,150.624894,-34.399729 +2021,7,19,1,New South Wales,150.623289,-34.383407 +2021,7,22,1,New South Wales,150.978938,-34.085494 +2020,11,20,1,New South Wales,152.824529,-29.506055 +2021,7,2,1,New South Wales,150.596919,-34.414184 +2021,5,5,1,New South Wales,150.632893,-34.418853 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2021,5,26,1,New South Wales,150.639209,-34.392685 +2024,1,6,1,New South Wales,152.063444,-32.706212 +2023,10,29,1,New South Wales,149.551572,-33.492399 +2020,10,11,1,New South Wales,149.959933,-36.657162 +2021,10,1,1,New South Wales,153.288292,-28.809314 +2021,12,15,1,New South Wales,152.929642,-31.459429 +2022,11,14,1,New South Wales,152.070636,-32.718438 +2021,4,26,1,New South Wales,150.604147,-34.438054 +2021,7,13,1,New South Wales,150.626522,-34.385588 +2021,5,14,1,New South Wales,150.60086,-34.427793 +2021,5,27,1,New South Wales,150.630742,-34.420677 +2021,6,21,1,New South Wales,150.520338,-34.4657 +2023,9,16,1,New South Wales,153.565533,-28.390616 +2022,5,13,1,New South Wales,153.108012,-29.490357 +2021,7,5,1,New South Wales,150.643947,-34.39321 +2023,3,27,1,New South Wales,153.26682,-28.919901 +2021,11,3,1,New South Wales,152.911534,-31.442998 +2022,10,3,1,New South Wales,152.911372,-31.42952 +2023,10,17,1,New South Wales,150.82101,-34.232265 +2021,6,2,1,New South Wales,150.529194,-34.464744 +2021,12,9,1,New South Wales,152.81531,-31.42933 +2022,12,16,1,New South Wales,152.864848,-31.28448 +2021,4,25,1,New South Wales,150.609446,-34.418946 +2020,10,23,1,New South Wales,149.988655,-36.56931 +2022,11,17,1,New South Wales,152.92367,-31.461438 +2021,5,23,1,New South Wales,150.639206,-34.392794 +2021,7,12,1,New South Wales,150.522733,-34.464207 +2024,8,28,1,New South Wales,152.285216,-32.422769 +2021,9,3,1,New South Wales,152.426115,-31.804233 +2024,5,10,1,New South Wales,152.063677,-32.706544 +2021,5,10,1,New South Wales,150.606755,-34.438556 +2020,10,15,1,New South Wales,153.035359,-30.298384 +2021,8,25,1,New South Wales,150.513841,-34.447294 +2021,9,15,1,New South Wales,150.200413,-29.353949 +2022,6,25,1,New South Wales,152.906599,-31.4445 +2020,4,7,1,New South Wales,150.079318,-33.770165 +2021,6,25,1,New South Wales,150.625256,-34.38614 +2020,4,4,1,New South Wales,153.5511,-28.330316 +2021,3,29,1,New South Wales,150.603702,-34.4403 +2024,2,24,1,New South Wales,153.108172,-29.490385 +2021,9,23,1,New South Wales,150.615902,-34.436391 +2022,7,25,1,New South Wales,151.480648,-30.607837 +2020,7,30,1,New South Wales,150.460586,-34.496059 +2021,8,30,1,New South Wales,153.559675,-28.286866 +2023,4,14,1,New South Wales,149.325836,-36.330067 +2021,5,27,1,New South Wales,150.516041,-34.44944 +2023,9,7,1,New South Wales,152.97324,-30.418677 +2020,8,9,1,New South Wales,153.561326,-28.385519 +2022,8,4,1,New South Wales,153.073138,-28.764379 +2021,3,6,1,New South Wales,150.607897,-34.43206 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2021,6,24,1,New South Wales,150.605672,-34.43721 +2021,5,29,1,New South Wales,150.615798,-34.438535 +2021,5,3,1,New South Wales,150.632707,-34.418885 +2020,12,10,1,New South Wales,152.705218,-31.362425 +2023,11,28,1,New South Wales,152.896122,-31.433483 +2021,7,17,1,New South Wales,150.627949,-34.420939 +2020,9,11,1,New South Wales,152.10016,-32.734449 +2022,9,21,1,New South Wales,150.02203,-33.81689 +2023,11,4,1,New South Wales,153.092364,-29.493611 +2022,6,21,1,New South Wales,153.104439,-29.48262 +2021,12,28,1,New South Wales,152.919166,-31.474521 +2024,3,29,1,New South Wales,152.063762,-32.706589 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2022,9,1,1,New South Wales,153.110474,-29.490147 +2023,,,1,New South Wales,153.412483,-29.12139 +2021,7,12,1,New South Wales,150.522228,-34.464341 +2021,4,21,1,New South Wales,150.614822,-34.429608 +2021,3,5,1,New South Wales,150.523192,-34.456418 +2024,3,22,1,New South Wales,152.375786,-31.923629 +2021,6,25,1,New South Wales,150.514375,-34.447296 +2020,12,4,1,New South Wales,152.538685,-30.621556 +2023,1,29,1,New South Wales,153.31535,-28.819753 +2021,6,8,1,New South Wales,150.528966,-34.457328 +2022,6,3,1,New South Wales,152.082066,-32.736384 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2020,12,4,1,New South Wales,152.90304,-31.441136 +2021,5,24,1,New South Wales,150.522338,-34.465046 +2022,10,14,1,New South Wales,153.069323,-30.882419 +2021,9,11,1,New South Wales,152.869519,-29.668902 +2023,9,17,1,New South Wales,153.10115,-29.490138 +2021,4,19,1,New South Wales,150.635072,-34.486267 +2020,10,17,1,New South Wales,152.00351,-32.728513 +2022,11,3,1,New South Wales,152.466934,-32.400845 +2022,11,14,1,New South Wales,152.085957,-32.769061 +2020,10,19,1,New South Wales,153.036423,-30.8961 +2021,5,18,1,New South Wales,150.630834,-34.390026 +2021,5,8,1,New South Wales,150.616073,-34.435349 +2022,12,24,1,New South Wales,150.790691,-34.147882 +2022,12,16,1,New South Wales,152.872409,-31.286671 +2022,1,14,1,New South Wales,153.29309,-28.864642 +2021,4,30,1,New South Wales,150.616377,-34.398968 +2021,6,16,1,New South Wales,150.518123,-34.437564 +2020,10,20,1,New South Wales,153.273941,-28.820088 +2021,1,16,1,New South Wales,152.415262,-31.933106 +2021,3,17,1,New South Wales,150.522441,-34.454564 +2020,12,10,1,New South Wales,152.941206,-29.139918 +2021,5,1,1,New South Wales,150.616315,-34.43602 +2020,8,31,1,New South Wales,150.813678,-34.104761 +2022,1,30,1,New South Wales,153.103184,-29.486724 +2021,8,27,1,New South Wales,153.597863,-28.667451 +2021,6,13,1,New South Wales,153.562037,-28.384015 +2020,10,,1,New South Wales,151.658961,-30.517151 +2021,4,21,1,New South Wales,150.604417,-34.424392 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2021,6,3,1,New South Wales,150.636997,-34.488261 +2021,11,18,1,New South Wales,153.110104,-29.488377 +2022,8,15,1,New South Wales,153.104203,-29.483124 +2020,8,27,1,New South Wales,152.912645,-31.431407 +2020,11,19,1,New South Wales,150.722306,-33.456448 +2020,1,15,1,New South Wales,152.804825,-31.361339 +2021,5,3,1,New South Wales,150.611437,-34.419697 +2021,4,20,1,New South Wales,150.614411,-34.42915 +2021,5,24,1,New South Wales,150.515844,-34.450599 +2022,9,17,1,New South Wales,152.077182,-32.724036 +2021,5,24,1,New South Wales,150.631302,-34.420111 +2020,5,3,1,New South Wales,150.059311,-33.776018 +2021,4,19,1,New South Wales,150.604262,-34.425642 +2023,9,28,1,New South Wales,153.323421,-28.855525 +2021,7,12,1,New South Wales,150.643082,-34.395348 +2023,10,29,1,New South Wales,152.196402,-32.225666 +2020,11,2,1,New South Wales,149.988655,-36.56931 +2023,7,29,1,New South Wales,152.080111,-32.728237 +2022,7,7,1,New South Wales,153.557555,-28.397173 +2023,9,27,1,New South Wales,151.140966,-32.938278 +2021,5,28,1,New South Wales,150.522436,-34.465797 +2021,5,9,1,New South Wales,150.609135,-34.420689 +2023,2,19,1,New South Wales,153.279565,-28.874205 +2021,5,4,1,New South Wales,150.63274,-34.418868 +2021,9,11,1,New South Wales,151.046985,-34.0268 +2021,5,18,1,New South Wales,150.633082,-34.41946 +2021,7,21,1,New South Wales,152.739882,-30.10949 +2020,8,28,1,New South Wales,152.883318,-31.426607 +2021,5,3,1,New South Wales,150.520311,-34.454115 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2020,7,5,1,New South Wales,153.430349,-28.617278 +2021,9,28,1,New South Wales,153.101215,-29.490072 +2020,10,2,1,New South Wales,153.399989,-29.037542 +2020,7,8,1,New South Wales,152.893086,-31.454902 +2022,1,3,1,New South Wales,150.793482,-34.147572 +2022,11,19,1,New South Wales,152.754102,-30.882465 +2021,4,4,1,New South Wales,150.522725,-34.450846 +2022,9,29,1,New South Wales,152.90623,-30.24025 +2021,7,7,1,New South Wales,153.104106,-29.479869 +2021,5,29,1,New South Wales,150.630922,-34.386917 +2023,9,4,1,New South Wales,153.395292,-28.959956 +2020,5,4,1,New South Wales,150.06271,-34.9003 +2020,9,13,1,New South Wales,150.07661,-31.13394 +2020,7,8,1,New South Wales,152.902757,-31.441155 +2021,7,27,1,New South Wales,150.62584,-34.386269 +2021,6,30,1,New South Wales,150.513072,-34.447197 +2020,10,31,1,New South Wales,152.908529,-31.43315 +2022,7,17,1,New South Wales,153.293361,-28.877875 +2020,11,,1,New South Wales,152.822341,-31.562884 +2021,7,10,1,New South Wales,150.631527,-34.387813 +2022,5,11,1,New South Wales,151.61384,-32.548814 +2020,5,12,1,New South Wales,153.368881,-28.575404 +2023,12,15,1,New South Wales,152.919013,-31.453816 +2021,9,20,1,New South Wales,151.559823,-30.400634 +2022,3,30,1,New South Wales,151.887282,-32.529237 +2021,5,23,1,New South Wales,150.518367,-34.451398 +2021,12,11,1,New South Wales,153.09408,-29.488802 +2021,4,20,1,New South Wales,150.526073,-34.464617 +2020,10,,1,New South Wales,150.566043,-34.524474 +2021,7,1,1,New South Wales,150.639724,-34.39796 +2022,12,13,1,New South Wales,153.264671,-28.637651 +2021,5,22,1,New South Wales,150.606154,-34.432153 +2020,12,13,1,New South Wales,153.12396,-28.56031 +2021,6,20,1,New South Wales,150.520261,-34.465717 +2021,5,10,1,New South Wales,150.616435,-34.434472 +2021,5,11,1,New South Wales,150.519214,-34.436378 +2020,3,11,1,New South Wales,152.917862,-31.457832 +2021,10,29,1,New South Wales,152.988323,-30.399605 +2021,5,28,1,New South Wales,150.603221,-34.436918 +2023,11,1,1,New South Wales,153.054528,-30.450893 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2022,12,28,1,New South Wales,152.090064,-28.785628 +2021,3,20,1,New South Wales,150.516942,-34.44623 +2021,6,7,1,New South Wales,153.560256,-28.644396 +2022,4,6,1,New South Wales,152.910295,-31.45824 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2021,5,7,1,New South Wales,150.520427,-34.467838 +2022,11,28,1,New South Wales,152.769456,-30.916275 +2022,10,16,1,New South Wales,152.920119,-31.475296 +2022,6,6,1,New South Wales,152.906503,-31.441802 +2020,5,14,1,New South Wales,153.07705,-29.45099 +2021,6,21,1,New South Wales,150.602476,-34.419973 +2021,9,3,1,New South Wales,152.655397,-28.378901 +2021,11,8,1,New South Wales,152.481061,-30.174551 +2020,11,16,1,New South Wales,149.966791,-36.502277 +2021,4,29,1,New South Wales,150.519123,-34.467406 +2022,11,26,1,New South Wales,152.794945,-30.901933 +2021,6,22,1,New South Wales,150.52013,-34.453579 +2023,8,23,1,New South Wales,152.922257,-31.477951 +2021,5,24,1,New South Wales,150.630863,-34.420634 +2022,11,24,1,New South Wales,152.794945,-30.901933 +2024,8,17,1,New South Wales,153.095148,-30.224124 +2022,11,22,1,New South Wales,152.794945,-30.901933 +2021,6,29,1,New South Wales,150.596359,-34.411712 +2022,11,26,1,New South Wales,152.794945,-30.901933 +2020,1,22,1,New South Wales,153.103795,-29.485576 +2024,5,7,1,New South Wales,152.132663,-32.199691 +2024,6,3,1,New South Wales,152.878701,-30.407462 +2020,8,16,1,New South Wales,151.653306,-32.686224 +2023,11,26,1,New South Wales,153.072091,-30.881118 +2021,5,29,1,New South Wales,150.792663,-34.104108 +2023,12,4,1,New South Wales,153.395128,-29.058325 +2020,7,8,1,New South Wales,152.907396,-31.483981 +2021,8,4,1,New South Wales,153.104214,-29.477558 +2021,3,10,1,New South Wales,150.533018,-34.475693 +2021,8,20,1,New South Wales,153.078601,-30.338459 +2022,11,29,1,New South Wales,152.071552,-32.709636 +2021,4,1,1,New South Wales,152.067424,-32.759928 +2020,10,28,1,New South Wales,150.058876,-33.76757 +2023,8,2,1,New South Wales,153.110565,-29.490035 +2021,10,6,1,New South Wales,152.097873,-32.739864 +2023,9,25,1,New South Wales,150.785187,-33.70957 +2021,2,1,1,New South Wales,153.278056,-28.934678 +2023,8,27,1,New South Wales,153.092526,-29.493185 +2022,6,29,1,New South Wales,152.871723,-31.49771 +2020,4,2,1,New South Wales,153.11437,-28.71385 +2022,9,19,1,New South Wales,152.90875,-30.1741 +2021,5,17,1,New South Wales,150.600265,-34.427286 +2021,5,18,1,New South Wales,150.641159,-34.494742 +2021,2,7,1,New South Wales,152.910478,-31.458298 +2021,6,15,1,New South Wales,150.615872,-34.433226 +2021,6,4,1,New South Wales,150.636643,-34.488074 +2022,6,21,1,New South Wales,153.104187,-29.478847 +2024,1,22,1,New South Wales,150.784162,-33.717754 +2021,7,30,1,New South Wales,150.822863,-34.127969 +2021,3,23,1,New South Wales,150.520373,-34.453846 +2022,8,16,1,New South Wales,153.302203,-28.818589 +2020,11,15,1,New South Wales,149.966791,-36.502277 +2021,3,6,1,New South Wales,150.655909,-34.456359 +2021,5,5,1,New South Wales,150.602872,-34.427436 +2021,8,8,1,New South Wales,152.693838,-31.786259 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2021,5,16,1,New South Wales,150.530594,-34.470028 +2020,9,17,1,New South Wales,153.561539,-28.384411 +2020,1,23,1,New South Wales,153.103857,-29.485341 +2022,12,13,1,New South Wales,150.962107,-32.230681 +2022,10,17,1,New South Wales,152.117097,-32.764425 +2020,8,25,1,New South Wales,152.402691,-31.925277 +2022,11,30,1,New South Wales,152.754102,-30.882465 +2020,8,14,1,New South Wales,152.867546,-29.667173 +2020,,,1,New South Wales,152.744942,-28.808943 +2024,5,27,1,New South Wales,152.077268,-32.72261 +2021,7,11,1,New South Wales,153.617799,-28.655322 +2021,7,20,1,New South Wales,150.644991,-34.391273 +2022,4,22,1,New South Wales,153.101655,-29.48982 +2020,12,23,1,New South Wales,153.561186,-28.389286 +2021,6,22,1,New South Wales,150.602511,-34.419892 +2023,4,12,1,New South Wales,152.924645,-31.463588 +2021,6,29,1,New South Wales,150.627315,-34.420286 +2021,5,6,1,New South Wales,150.608839,-34.455519 +2020,12,5,1,New South Wales,153.264101,-28.923918 +2021,4,24,1,New South Wales,150.518108,-34.449112 +2021,10,23,1,Queensland,152.83702,-27.11172 +2020,1,21,1,New South Wales,151.83394,-31.878915 +2021,6,1,1,New South Wales,150.524321,-34.463888 +2023,11,1,1,New South Wales,152.782778,-31.484484 +2023,1,14,1,New South Wales,152.915077,-31.446374 +2022,8,20,1,New South Wales,150.791567,-34.189305 +2022,7,29,1,New South Wales,152.001192,-32.779054 +2021,10,7,1,New South Wales,153.28661,-28.868575 +2023,8,25,1,New South Wales,153.299863,-28.299788 +2023,3,24,1,New South Wales,153.31535,-28.819753 +2020,10,29,1,New South Wales,153.030808,-28.849862 +2021,6,12,1,New South Wales,150.613691,-34.431894 +2020,1,11,1,New South Wales,151.646419,-32.679433 +2021,5,3,1,New South Wales,150.60602,-34.457429 +2021,3,28,1,New South Wales,150.610196,-34.429653 +2021,5,15,1,New South Wales,150.517727,-34.441396 +2021,3,7,1,New South Wales,150.530233,-34.470841 +2021,5,8,1,New South Wales,150.51634,-34.447435 +2021,4,17,1,New South Wales,150.794344,-34.148089 +2021,3,22,1,New South Wales,150.52031,-34.454124 +2023,1,14,1,New South Wales,149.378611,-35.751639 +2022,10,6,1,New South Wales,153.315304,-28.818774 +2021,9,8,1,New South Wales,153.336412,-28.819019 +2022,11,19,1,New South Wales,153.316829,-28.865354 +2022,2,10,1,New South Wales,153.59353,-28.659742 +2021,7,8,1,New South Wales,153.516792,-28.675567 +2023,1,2,1,New South Wales,152.899406,-31.450083 +2021,5,18,1,New South Wales,150.600234,-34.428746 +2024,2,4,1,New South Wales,152.355033,-31.912948 +2021,6,26,1,New South Wales,150.627339,-34.420196 +2020,12,13,1,New South Wales,152.039499,-32.732065 +2020,11,10,1,New South Wales,152.920915,-31.455066 +2021,5,1,1,New South Wales,150.618026,-34.429815 +2021,4,11,1,New South Wales,150.519042,-34.444768 +2020,9,26,1,New South Wales,153.041711,-30.386833 +2021,5,12,1,New South Wales,150.521764,-34.46718 +2022,8,13,1,New South Wales,152.063944,-32.707463 +2024,2,18,1,New South Wales,153.102242,-29.489394 +2020,4,20,1,New South Wales,152.85259,-31.45089 +2021,3,14,1,New South Wales,150.615675,-34.434043 +2021,4,26,1,New South Wales,150.603274,-34.436973 +2020,10,29,1,New South Wales,149.945227,-36.57753 +2020,2,5,1,New South Wales,153.103819,-29.485473 +2020,10,5,1,New South Wales,149.959933,-36.657162 +2021,10,27,1,New South Wales,150.616504,-34.441262 +2021,5,28,1,New South Wales,150.599935,-34.425143 +2022,6,26,1,New South Wales,153.104165,-29.478907 +2021,6,16,1,New South Wales,150.622864,-34.383804 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2022,9,27,1,New South Wales,149.410686,-36.249969 +2021,7,21,1,New South Wales,150.517405,-34.448584 +2021,5,18,1,New South Wales,150.630553,-34.394988 +2022,9,16,1,New South Wales,152.916781,-31.445843 +2021,4,17,1,New South Wales,150.516633,-34.442699 +2021,3,9,1,New South Wales,150.604182,-34.438713 +2024,2,2,1,New South Wales,150.785089,-33.713738 +2021,6,17,1,New South Wales,150.630244,-34.420965 +2021,5,4,1,New South Wales,150.604128,-34.437955 +2024,6,12,1,New South Wales,152.93503,-30.4267 +2021,7,21,1,New South Wales,150.6237,-34.383496 +2022,6,20,1,New South Wales,153.103833,-29.48502 +2023,7,19,1,New South Wales,150.787616,-33.703431 +2021,5,15,1,New South Wales,150.640382,-34.494087 +2021,6,30,1,New South Wales,150.513151,-34.447812 +2023,3,20,1,New South Wales,152.915934,-31.445138 +2021,11,15,1,New South Wales,152.926366,-31.454632 +2021,7,2,1,New South Wales,151.738485,-30.48123 +2022,4,24,1,New South Wales,152.916431,-31.444861 +2021,5,10,1,New South Wales,150.604788,-34.427032 +2023,12,30,1,New South Wales,152.92234,-31.451634 +2020,,,1,New South Wales,152.74254,-28.831278 +2021,5,3,1,New South Wales,150.637345,-34.423798 +2020,11,17,1,New South Wales,153.036423,-30.8961 +2022,1,20,1,New South Wales,152.171052,-32.663111 +2022,7,23,1,New South Wales,153.609484,-28.661269 +2022,5,6,1,New South Wales,152.917933,-31.469217 +2020,9,21,1,New South Wales,150.792474,-34.197003 +2024,8,9,1,New South Wales,151.791,-32.6534 +2021,5,8,1,New South Wales,150.604283,-34.426418 +2021,5,9,1,New South Wales,150.604905,-34.427097 +2021,5,16,1,New South Wales,150.530597,-34.469947 +2023,8,11,1,New South Wales,152.199103,-31.312712 +2022,2,3,1,New South Wales,152.893666,-31.445699 +2021,5,20,1,New South Wales,150.631505,-34.38783 +2023,2,10,1,New South Wales,153.301854,-28.819317 +2021,11,16,1,New South Wales,152.82757,-29.810617 +2022,3,12,1,New South Wales,153.211011,-28.832687 +2021,2,27,1,New South Wales,150.615419,-34.433109 +2021,5,3,1,New South Wales,150.611448,-34.419707 +2024,3,10,1,New South Wales,150.043647,-33.766239 +2023,10,19,1,New South Wales,150.985134,-34.096131 +2020,10,24,1,New South Wales,153.242187,-28.648643 +2021,9,4,1,New South Wales,153.46202,-28.650301 +2020,7,7,1,New South Wales,150.913678,-34.068368 +2020,12,24,1,New South Wales,152.151376,-30.094786 +2020,10,4,1,New South Wales,153.285019,-28.816541 +2021,7,8,1,New South Wales,153.101451,-29.48983 +2020,7,22,1,New South Wales,153.120282,-30.309053 +2021,5,17,1,New South Wales,150.632815,-34.418896 +2023,9,2,1,New South Wales,152.905155,-31.436028 +2020,12,8,1,New South Wales,149.960499,-36.288011 +2021,3,8,1,New South Wales,150.523604,-34.456111 +2021,3,10,1,New South Wales,150.609191,-34.418743 +2021,6,30,1,New South Wales,150.522447,-34.46504 +2021,4,25,1,New South Wales,150.614422,-34.429519 +2021,5,15,1,New South Wales,150.527846,-34.466501 +2021,5,31,1,New South Wales,150.524139,-34.471529 +2021,8,31,1,New South Wales,150.515254,-34.443338 +2023,1,16,1,New South Wales,153.49089,-28.229488 +2022,6,12,1,New South Wales,153.104149,-29.478851 +2021,9,29,1,New South Wales,152.907694,-31.447111 +2021,3,22,1,New South Wales,150.514791,-34.445736 +2020,4,30,1,New South Wales,153.095228,-29.48344 +2020,9,21,1,New South Wales,152.921498,-31.48086 +2021,6,28,1,New South Wales,150.523022,-34.466232 +2022,11,25,1,New South Wales,152.374047,-31.913202 +2020,1,22,1,New South Wales,152.917569,-31.47705 +2021,11,1,1,New South Wales,152.909507,-31.428137 +2020,1,15,1,New South Wales,150.809,-34.20866 +2021,5,23,1,New South Wales,150.630828,-34.420715 +2022,4,25,1,New South Wales,153.505206,-28.376623 +2021,6,17,1,New South Wales,150.521198,-34.46569 +2021,5,19,1,New South Wales,150.600499,-34.429003 +2021,,,1,New South Wales,152.85899,-29.316805 +2021,12,8,1,New South Wales,152.399266,-31.958536 +2023,11,2,1,New South Wales,152.198472,-32.23465 +2021,7,7,1,New South Wales,150.63117,-34.387364 +2020,12,18,1,New South Wales,153.103817,-29.489559 +2022,10,15,1,New South Wales,152.899196,-29.630883 +2022,9,14,1,New South Wales,152.066682,-32.707344 +2021,5,12,1,New South Wales,150.604325,-34.43905 +2020,10,20,1,New South Wales,150.702147,-33.503703 +2022,6,26,1,New South Wales,150.996392,-34.082462 +2023,10,30,1,New South Wales,152.166342,-31.975252 +2021,7,4,1,New South Wales,150.628479,-34.390999 +2023,2,17,1,New South Wales,150.79064,-34.143427 +2021,7,18,1,New South Wales,150.623104,-34.383782 +2024,2,11,1,New South Wales,153.107995,-29.490992 +2022,12,3,1,New South Wales,149.548005,-33.556403 +2022,8,12,1,New South Wales,152.147678,-29.899372 +2020,9,21,1,New South Wales,152.921498,-31.48086 +2023,2,15,1,New South Wales,152.868583,-31.470596 +2022,2,8,1,New South Wales,152.900435,-31.443667 +2022,4,7,1,New South Wales,153.110576,-29.490199 +2022,7,14,1,New South Wales,153.323668,-28.830037 +2021,5,1,1,New South Wales,150.617814,-34.399321 +2024,1,27,1,New South Wales,150.332334,-33.730889 +2023,6,1,1,New South Wales,150.79925,-34.19726 +2024,3,7,1,New South Wales,150.985431,-34.092652 +2020,12,6,1,New South Wales,149.960499,-36.288011 +2024,5,15,1,New South Wales,152.184738,-31.957954 +2021,6,17,1,New South Wales,150.622421,-34.384102 +2021,4,25,1,New South Wales,150.614255,-34.429633 +2021,5,14,1,New South Wales,150.602569,-34.436906 +2023,8,3,1,New South Wales,152.209443,-31.560893 +2021,4,25,1,New South Wales,150.614255,-34.429633 +2024,6,22,1,New South Wales,152.405729,-31.930687 +2021,6,2,1,New South Wales,150.637578,-34.488507 +2021,3,27,1,New South Wales,153.394463,-28.959453 +2021,2,27,1,New South Wales,150.603956,-34.43293 +2023,7,8,1,New South Wales,152.916732,-31.449176 +2021,4,4,1,New South Wales,150.533886,-34.479118 +2022,10,4,1,New South Wales,152.413633,-31.908158 +2023,5,30,1,New South Wales,152.191214,-31.594083 +2021,6,7,1,New South Wales,150.528286,-34.464869 +2021,6,20,1,New South Wales,150.519621,-34.461241 +2020,8,28,1,New South Wales,152.867804,-29.667434 +2021,10,11,1,New South Wales,153.043387,-28.469182 +2020,10,1,1,New South Wales,153.558084,-28.387756 +2021,9,6,1,New South Wales,153.324384,-28.879786 +2023,10,31,1,New South Wales,152.192089,-32.216754 +2021,5,19,1,New South Wales,150.630054,-34.395321 +2023,9,9,1,New South Wales,150.53167,-34.40265 +2020,7,11,1,New South Wales,152.712889,-30.455209 +2021,11,1,1,New South Wales,153.104396,-29.477623 +2020,11,27,1,New South Wales,152.905922,-31.447809 +2021,4,16,1,New South Wales,150.61586,-34.43099 +2023,12,19,1,New South Wales,152.786873,-31.629322 +2021,4,29,1,New South Wales,150.616779,-34.399382 +2020,1,20,1,New South Wales,153.103843,-29.485454 +2022,4,25,1,New South Wales,152.923977,-31.459397 +2024,9,24,2,New South Wales,153.092437,-29.486475 +2021,9,12,1,New South Wales,150.582601,-34.500217 +2020,10,12,1,New South Wales,153.592081,-28.729263 +2020,9,1,1,New South Wales,152.7773,-31.490051 +2021,6,8,1,New South Wales,153.283689,-28.679315 +2021,4,26,1,New South Wales,150.603978,-34.424898 +2021,3,6,1,New South Wales,150.603595,-34.435645 +2021,6,18,1,New South Wales,150.521223,-34.465574 +2022,4,25,1,New South Wales,153.334406,-28.814156 +2023,10,24,1,New South Wales,153.103371,-29.489876 +2024,9,24,1,New South Wales,150.906611,-33.978448 +2021,5,6,1,New South Wales,150.632893,-34.418844 +2020,5,19,1,New South Wales,152.409406,-31.910186 +2022,4,25,1,New South Wales,153.334406,-28.814156 +2020,7,30,1,New South Wales,153.150101,-28.531599 +2024,2,15,1,Queensland,153.014755,-27.217488 +2021,1,26,1,New South Wales,153.027045,-28.430094 +2020,11,26,1,New South Wales,149.917922,-36.474664 +2021,10,6,1,New South Wales,152.893086,-31.454902 +2022,8,19,1,New South Wales,153.103457,-29.485683 +2022,8,2,1,New South Wales,153.103468,-29.485655 +2023,11,28,1,New South Wales,153.101274,-29.490007 +2020,4,20,1,New South Wales,152.867927,-31.479102 +2024,8,15,1,New South Wales,152.485401,-32.346581 +2021,3,10,1,New South Wales,150.521022,-34.446998 +2020,12,8,1,New South Wales,153.472241,-28.264159 +2020,6,29,1,New South Wales,150.659912,-33.527214 +2021,5,23,1,New South Wales,150.597929,-34.427943 +2023,2,23,1,New South Wales,152.792649,-31.640153 +2021,9,20,1,New South Wales,153.319462,-28.814504 +2021,7,17,1,New South Wales,150.51602,-34.44687 +2020,10,29,1,New South Wales,153.562995,-28.381709 +2021,5,5,1,New South Wales,150.63286,-34.418843 +2022,3,17,1,New South Wales,152.925416,-31.447703 +2024,6,28,1,Queensland,153.020108,-27.211485 +2021,7,13,1,New South Wales,150.627062,-34.42075 +2021,6,8,1,New South Wales,152.124133,-32.719895 +2022,7,18,1,New South Wales,150.562536,-34.520916 +2021,6,11,1,New South Wales,153.47209,-28.264043 +2021,5,20,1,New South Wales,150.52989,-34.471041 +2021,7,1,1,New South Wales,150.627352,-34.421288 +2021,5,15,1,New South Wales,150.614853,-34.433873 +2021,6,19,1,New South Wales,150.62796,-34.420957 +2023,11,24,1,New South Wales,152.917449,-31.474536 +2023,10,4,1,New South Wales,152.969402,-31.185418 +2021,4,26,1,New South Wales,150.602398,-34.425768 +2023,1,12,1,New South Wales,153.556039,-28.398769 +2023,10,13,1,New South Wales,152.414565,-31.941299 +2021,5,21,1,New South Wales,150.63117,-34.387364 +2021,5,25,1,New South Wales,150.638765,-34.492731 +2022,11,,1,New South Wales,152.754102,-30.882465 +2022,11,3,1,New South Wales,153.304452,-28.848765 +2022,5,18,1,New South Wales,153.117387,-28.618971 +2020,10,14,1,New South Wales,149.947316,-36.607854 +2022,10,27,1,New South Wales,152.899657,-29.630702 +2021,6,16,1,New South Wales,150.630235,-34.420902 +2021,5,12,1,New South Wales,150.616379,-34.433407 +2020,7,22,1,New South Wales,152.805319,-31.127058 +2021,11,3,1,New South Wales,152.160691,-30.088985 +2021,7,22,1,New South Wales,150.603457,-34.418396 +2023,11,3,1,New South Wales,152.196402,-32.225666 +2020,10,28,1,New South Wales,149.934245,-36.578531 +2021,6,17,1,New South Wales,150.521427,-34.465677 +2021,4,29,1,New South Wales,150.636259,-34.421785 +2023,11,29,1,New South Wales,150.786217,-33.705786 +2022,10,15,1,New South Wales,153.462917,-28.872476 +2020,11,3,1,New South Wales,149.934245,-36.578531 +2021,7,3,1,New South Wales,150.62795,-34.390863 +2020,11,6,1,New South Wales,150.010499,-36.556654 +2021,4,18,1,New South Wales,152.404167,-31.945815 +2021,4,30,1,New South Wales,150.624371,-34.387836 +2021,4,29,1,New South Wales,150.610288,-34.419161 +2023,11,21,1,New South Wales,153.10814,-29.490273 +2021,4,14,1,New South Wales,150.616162,-34.436054 +2021,8,5,1,New South Wales,150.743496,-34.335476 +2021,4,8,1,New South Wales,150.663361,-34.458052 +2021,4,23,1,New South Wales,150.522037,-34.465671 +2021,5,10,1,New South Wales,150.521346,-34.466929 +2022,11,28,1,New South Wales,152.788781,-30.895519 +2023,11,6,1,New South Wales,152.918698,-31.454216 +2020,1,16,1,New South Wales,153.40136,-28.626581 +2021,6,4,1,New South Wales,150.639799,-34.399188 +2021,6,1,1,New South Wales,150.639843,-34.400334 +2023,2,21,1,New South Wales,152.372164,-31.921114 +2022,3,1,1,New South Wales,152.907958,-31.47067 +2022,10,23,1,New South Wales,152.064276,-32.706784 +2021,7,16,1,New South Wales,150.625047,-34.385839 +2023,8,4,1,New South Wales,152.230895,-31.314991 +2022,6,26,1,New South Wales,153.104208,-29.482111 +2021,12,,1,New South Wales,149.30962,-36.106472 +2021,1,6,1,New South Wales,153.108194,-29.490203 +2023,12,13,1,New South Wales,152.90858,-31.454667 +2021,8,1,1,New South Wales,150.648549,-34.402097 +2021,6,7,1,New South Wales,150.635136,-34.488234 +2020,10,23,1,New South Wales,149.930096,-36.638123 +2021,5,5,1,New South Wales,150.520401,-34.435978 +2023,2,28,1,New South Wales,153.10813,-29.490259 +2020,11,23,1,New South Wales,152.441685,-32.090675 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2023,6,20,1,New South Wales,149.999945,-36.563902 +2021,1,16,1,New South Wales,152.060993,-32.710788 +2021,3,5,1,New South Wales,150.609911,-34.432812 +2023,4,1,1,New South Wales,152.78534,-31.633204 +2022,9,27,1,New South Wales,149.411228,-36.250306 +2020,7,4,1,New South Wales,153.104117,-29.484098 +2024,4,27,1,New South Wales,152.412629,-31.932184 +2021,10,6,1,New South Wales,152.887473,-31.444077 +2020,1,30,1,New South Wales,153.10379,-29.485585 +2024,2,5,1,New South Wales,151.057879,-29.737362 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2020,9,16,1,New South Wales,152.076638,-32.727673 +2022,1,18,1,New South Wales,150.984826,-34.108222 +2022,2,26,1,New South Wales,153.329621,-28.83393 +2021,7,10,1,New South Wales,150.520248,-34.465779 +2021,5,8,1,New South Wales,150.521068,-34.466761 +2021,,,1,New South Wales,149.313487,-36.152467 +2022,4,27,1,New South Wales,152.908669,-31.46972 +2021,5,29,1,New South Wales,150.657017,-34.455298 +2021,4,26,1,New South Wales,150.521328,-34.46645 +2020,10,1,1,New South Wales,152.887854,-31.074894 +2021,10,11,1,New South Wales,153.559556,-28.289734 +2023,9,5,1,New South Wales,152.924359,-30.506388 +2022,7,16,1,New South Wales,152.036798,-32.735675 +2020,10,13,1,New South Wales,149.930096,-36.638123 +2020,10,19,1,New South Wales,153.040372,-30.884354 +2023,1,29,1,New South Wales,152.91001,-31.464583 +2021,2,19,1,New South Wales,153.34881,-28.823987 +2024,7,10,1,New South Wales,150.884417,-34.047237 +2022,10,2,1,New South Wales,153.30197,-28.810765 +2021,7,1,1,New South Wales,150.642577,-34.395527 +2023,9,18,1,New South Wales,153.010503,-30.364222 +2022,11,19,1,New South Wales,153.352564,-28.883003 +2021,11,2,1,New South Wales,150.839633,-34.057357 +2023,7,22,1,New South Wales,152.058964,-32.737745 +2021,6,7,1,New South Wales,150.532734,-34.458721 +2021,6,1,1,New South Wales,152.86972,-31.304815 +2021,7,12,1,New South Wales,153.346127,-28.912792 +2020,8,4,1,New South Wales,152.807615,-31.12735 +2023,11,2,1,New South Wales,152.198292,-32.220827 +2024,1,15,1,New South Wales,152.371016,-31.949251 +2021,4,21,1,New South Wales,150.604579,-34.424441 +2020,11,29,1,New South Wales,151.70521,-32.630479 +2021,3,16,1,New South Wales,150.607641,-34.421976 +2021,3,2,1,New South Wales,150.52006,-34.446393 +2021,4,20,1,New South Wales,150.614484,-34.429232 +2021,11,12,1,New South Wales,150.95194,-33.970139 +2024,5,10,1,New South Wales,153.018915,-30.367341 +2023,12,29,1,New South Wales,152.077203,-32.722493 +2020,1,22,1,New South Wales,150.791327,-34.141963 +2020,10,15,1,New South Wales,149.919967,-36.589766 +2020,5,4,1,New South Wales,152.459501,-28.27124 +2021,4,2,1,New South Wales,150.516008,-34.447248 +2023,2,17,1,New South Wales,153.104798,-29.489671 +2020,4,25,1,New South Wales,153.081525,-28.462257 +2020,1,1,1,New South Wales,152.926919,-31.454898 +2021,5,7,1,New South Wales,150.518323,-34.451397 +2023,9,23,1,New South Wales,153.433562,-28.238026 +2021,7,6,1,New South Wales,150.603848,-34.440113 +2020,4,20,1,New South Wales,152.843124,-31.428457 +2020,4,29,1,New South Wales,153.378488,-28.874261 +2021,4,3,1,New South Wales,150.794283,-34.135544 +2021,7,6,1,New South Wales,150.522329,-34.465722 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2020,3,23,1,New South Wales,153.092219,-29.488102 +2020,4,17,1,New South Wales,150.65618,-33.58539 +2021,7,20,1,New South Wales,153.313447,-28.948849 +2020,5,4,1,New South Wales,152.468304,-28.282873 +2021,5,4,1,New South Wales,150.638487,-34.490625 +2021,7,20,1,New South Wales,153.313447,-28.948849 +2021,3,9,1,New South Wales,150.52213,-34.465078 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2020,10,22,1,New South Wales,149.919967,-36.589766 +2024,9,7,1,New South Wales,150.660374,-33.525168 +2021,10,18,1,New South Wales,152.812484,-29.798034 +2020,10,30,1,New South Wales,149.96897,-36.58553 +2021,6,28,1,New South Wales,150.627337,-34.420278 +2021,7,15,1,New South Wales,150.645757,-34.397337 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2020,10,19,1,New South Wales,149.930096,-36.638123 +2021,6,4,1,New South Wales,150.636599,-34.488091 +2023,4,19,1,New South Wales,152.251817,-31.917669 +2021,4,30,1,New South Wales,150.603577,-34.427513 +2021,6,15,1,New South Wales,150.515819,-34.446667 +2021,6,28,1,New South Wales,150.644948,-34.391245 +2023,8,7,1,New South Wales,153.279295,-28.678508 +2021,5,19,1,New South Wales,150.630917,-34.388252 +2021,9,8,1,New South Wales,152.894089,-31.478456 +2020,10,4,1,New South Wales,153.330266,-28.659346 +2021,5,6,1,New South Wales,150.519992,-34.435799 +2023,10,14,1,New South Wales,152.072718,-32.724859 +2020,8,30,1,New South Wales,152.215502,-30.082651 +2021,6,3,1,New South Wales,152.882224,-31.430954 +2021,6,6,1,New South Wales,150.616487,-34.435726 +2020,9,12,1,New South Wales,152.105286,-32.732798 +2021,10,30,1,New South Wales,152.868447,-29.666912 +2021,9,1,1,New South Wales,152.928111,-31.472115 +2021,6,8,1,New South Wales,150.514125,-34.45499 +2021,6,29,1,New South Wales,150.522603,-34.464917 +2024,7,14,1,New South Wales,152.808444,-31.500755 +2021,11,11,1,New South Wales,152.352266,-32.232834 +2021,5,8,1,New South Wales,153.292004,-28.832625 +2021,5,11,1,New South Wales,150.517412,-34.453515 +2020,11,4,1,New South Wales,153.334493,-28.813462 +2021,6,29,1,New South Wales,150.513073,-34.447143 +2021,5,12,1,New South Wales,150.627305,-34.398306 +2021,4,24,1,New South Wales,150.615438,-34.435498 +2021,5,29,1,New South Wales,152.921041,-31.448924 +2020,9,6,1,New South Wales,153.101939,-29.489414 +2022,8,21,1,New South Wales,152.897611,-31.474563 +2023,10,17,1,New South Wales,152.822549,-31.453664 +2021,4,28,1,New South Wales,150.616269,-34.429213 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2023,11,4,1,New South Wales,150.990379,-34.090322 +2020,10,16,1,New South Wales,150.119432,-33.751393 +2020,1,15,1,New South Wales,149.39945,-36.03167 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2022,9,27,1,New South Wales,153.109953,-29.488354 +2020,1,15,1,New South Wales,152.81879,-31.300384 +2022,11,25,1,New South Wales,152.840384,-31.593288 +2021,6,17,1,New South Wales,150.513836,-34.446384 +2021,1,4,1,New South Wales,152.039673,-32.732024 +2021,4,24,1,New South Wales,150.610334,-34.41909 +2023,4,28,1,New South Wales,152.063563,-32.706869 +2022,11,7,1,New South Wales,149.551286,-33.490136 +2020,9,8,1,New South Wales,153.394466,-28.960362 +2023,9,15,1,New South Wales,152.819431,-31.648854 +2021,5,2,1,New South Wales,150.618547,-34.399173 +2023,10,11,1,New South Wales,149.552141,-33.491215 +2021,4,28,1,New South Wales,150.610226,-34.419052 +2022,8,24,1,New South Wales,150.877258,-34.015981 +2022,9,19,1,New South Wales,152.90927,-30.17377 +2023,8,6,1,New South Wales,153.614641,-28.663312 +2021,5,5,1,New South Wales,150.627196,-34.389469 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2020,8,22,1,New South Wales,153.110901,-28.662949 +2021,8,15,1,New South Wales,153.402368,-28.257634 +2020,10,21,1,New South Wales,152.879064,-29.66219 +2020,9,11,1,New South Wales,152.921641,-31.451681 +2021,5,26,1,New South Wales,150.631943,-34.387713 +2023,1,22,1,New South Wales,152.881689,-31.161695 +2020,10,23,1,New South Wales,149.96897,-36.58553 +2022,8,9,1,New South Wales,152.90957,-31.466093 +2020,3,1,1,New South Wales,152.91203,-31.456044 +2021,5,10,1,New South Wales,150.885195,-33.439079 +2020,11,1,1,New South Wales,149.96897,-36.58553 +2022,12,8,1,New South Wales,152.905666,-31.444749 +2020,10,26,1,New South Wales,152.905929,-31.442757 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2022,7,30,1,New South Wales,152.815652,-31.150235 +2022,6,18,1,New South Wales,152.971219,-31.163249 +2020,10,23,1,New South Wales,149.96897,-36.58553 +2020,5,11,1,New South Wales,153.532505,-28.632876 +2020,11,24,1,New South Wales,152.901012,-31.442508 +2021,6,10,1,New South Wales,150.521608,-34.465807 +2021,5,12,1,New South Wales,150.521426,-34.466092 +2021,11,8,1,New South Wales,150.616314,-34.438734 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2023,2,11,1,New South Wales,152.841836,-31.463745 +2021,4,18,1,New South Wales,150.616383,-34.430189 +2021,5,31,1,New South Wales,150.604885,-34.437348 +2024,8,8,1,New South Wales,150.78917,-34.16827 +2020,12,10,1,New South Wales,153.143428,-28.542074 +2024,1,29,1,New South Wales,152.935775,-31.473085 +2022,3,8,1,New South Wales,153.023076,-28.489243 +2022,11,10,1,New South Wales,153.494261,-28.604427 +2023,8,26,1,New South Wales,152.2239,-32.254112 +2022,9,27,1,New South Wales,153.445624,-28.589197 +2020,10,19,1,New South Wales,153.303135,-28.824882 +2021,5,14,1,New South Wales,150.51779,-34.441479 +2021,6,5,1,New South Wales,150.630689,-34.420631 +2023,10,11,1,New South Wales,150.785307,-33.716982 +2021,6,16,1,New South Wales,150.630276,-34.420984 +2020,10,11,1,New South Wales,149.959933,-36.657162 +2021,9,3,1,New South Wales,152.979499,-28.64423 +2021,5,14,1,New South Wales,150.525176,-34.464058 +2022,2,7,1,New South Wales,152.172138,-30.079573 +2022,5,13,1,New South Wales,151.004731,-33.983737 +2021,9,10,1,New South Wales,153.104031,-29.484063 +2023,11,6,1,New South Wales,150.785634,-33.713126 +2021,8,6,1,New South Wales,150.605893,-34.435943 +2023,12,21,1,New South Wales,152.910052,-30.505406 +2021,6,18,1,New South Wales,150.642379,-34.395614 +2021,10,7,1,New South Wales,153.226806,-28.88908 +2021,5,9,1,New South Wales,150.659041,-34.457618 +2021,5,17,1,New South Wales,150.523814,-34.463724 +2021,8,18,1,New South Wales,150.643642,-34.39983 +2021,7,16,1,New South Wales,150.542801,-34.43387 +2020,6,26,1,New South Wales,151.779398,-32.485966 +2021,10,4,1,New South Wales,153.074223,-28.556532 +2022,7,27,1,New South Wales,152.921498,-31.474776 +2022,6,23,1,New South Wales,152.612505,-28.331788 +2023,9,28,1,New South Wales,153.401793,-28.960826 +2021,7,2,1,New South Wales,153.104047,-29.484292 +2021,4,26,1,New South Wales,150.637325,-34.488204 +2021,5,5,1,New South Wales,150.615751,-34.435955 +2021,6,17,1,New South Wales,150.642392,-34.395551 +2021,4,22,1,New South Wales,150.614364,-34.430032 +2023,10,25,1,New South Wales,152.194095,-32.224416 +2021,9,4,1,New South Wales,152.381308,-31.907463 +2023,1,22,1,New South Wales,150.822863,-34.127969 +2021,5,21,1,New South Wales,150.607485,-34.433152 +2021,7,23,1,New South Wales,150.603288,-34.419718 +2020,3,10,1,New South Wales,153.302593,-28.819803 +2021,4,24,1,New South Wales,150.606783,-34.434509 +2023,11,3,1,New South Wales,152.187392,-32.232904 +2023,12,19,1,New South Wales,152.809024,-31.654759 +2020,11,9,1,New South Wales,153.091747,-29.487906 +2022,10,4,1,New South Wales,152.986311,-30.417822 +2021,9,3,1,New South Wales,150.535263,-34.497438 +2022,9,10,1,New South Wales,153.621211,-28.658782 +2022,11,10,1,New South Wales,152.788974,-31.442366 +2024,1,15,1,New South Wales,152.371521,-31.949329 +2023,11,21,1,New South Wales,152.885077,-31.431045 +2020,11,3,1,New South Wales,153.317651,-28.862857 +2021,3,7,1,New South Wales,150.603032,-34.437077 +2023,7,27,1,New South Wales,153.303545,-28.824066 +2021,6,26,1,New South Wales,150.62712,-34.386763 +2021,6,26,1,New South Wales,150.657673,-34.455581 +2021,7,3,1,New South Wales,150.51413,-34.446372 +2022,10,5,1,New South Wales,152.926671,-31.454472 +2021,12,17,1,New South Wales,153.385826,-28.792334 +2022,10,28,1,New South Wales,153.078646,-30.353928 +2023,12,30,1,New South Wales,152.868375,-31.472935 +2022,11,25,1,New South Wales,152.788781,-30.895519 +2022,11,18,1,New South Wales,152.788781,-30.895519 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2021,5,10,1,New South Wales,150.517058,-34.447828 +2021,4,21,1,New South Wales,150.632962,-34.392862 +2021,5,22,1,New South Wales,150.521621,-34.465744 +2021,5,5,1,New South Wales,150.608553,-34.456406 +2023,10,26,1,New South Wales,150.986069,-34.096923 +2022,3,31,1,New South Wales,153.568665,-28.694927 +2021,7,7,1,New South Wales,152.855893,-29.316805 +2021,5,30,1,New South Wales,150.604848,-34.437861 +2020,9,23,1,New South Wales,151.6601,-30.3125 +2021,5,1,1,New South Wales,150.60812,-34.455911 +2021,5,17,1,New South Wales,150.60048,-34.42738 +2021,9,11,1,New South Wales,152.875173,-29.683015 +2021,5,11,1,New South Wales,150.605501,-34.427181 +2023,6,16,1,New South Wales,153.104809,-29.489643 +2021,7,10,1,New South Wales,150.626709,-34.42132 +2024,1,25,1,New South Wales,152.810158,-29.65991 +2021,12,25,1,New South Wales,150.937814,-29.721532 +2021,5,12,1,New South Wales,150.517103,-34.454383 +2021,11,17,1,New South Wales,152.81246,-31.276485 +2020,10,20,1,New South Wales,149.930096,-36.638123 +2022,12,30,1,New South Wales,153.103908,-29.489591 +2021,4,28,1,New South Wales,150.635258,-34.420251 +2021,4,26,1,New South Wales,150.521328,-34.46645 +2021,5,1,1,New South Wales,150.637512,-34.488532 +2021,5,28,1,New South Wales,150.630828,-34.420715 +2021,5,16,1,New South Wales,150.515895,-34.449608 +2021,5,3,1,New South Wales,150.611284,-34.419721 +2021,4,27,1,New South Wales,150.516236,-34.440284 +2021,5,14,1,New South Wales,150.640332,-34.493158 +2021,6,4,1,New South Wales,152.730163,-30.154348 +2020,11,9,1,New South Wales,152.38406,-31.215107 +2021,9,4,1,New South Wales,153.184652,-28.889402 +2021,7,16,1,New South Wales,150.515733,-34.44479 +2020,5,12,1,New South Wales,153.371578,-28.577608 +2021,12,27,1,New South Wales,153.092246,-29.488144 +2020,5,3,1,New South Wales,150.049498,-33.767832 +2021,5,23,1,New South Wales,150.63916,-34.493027 +2022,10,11,1,New South Wales,152.896425,-29.629872 +2021,5,10,1,New South Wales,153.40198,-28.260019 +2021,5,27,1,New South Wales,152.896425,-29.629872 +2022,9,20,1,New South Wales,152.90877,-30.17587 +2023,9,7,1,New South Wales,153.110517,-29.490128 +2021,6,19,1,New South Wales,150.627974,-34.420822 +2022,7,3,1,New South Wales,152.035761,-32.765102 +2022,1,8,1,New South Wales,150.616398,-34.441152 +2023,3,8,1,New South Wales,153.302762,-28.844678 +2021,4,30,1,New South Wales,153.278089,-28.679004 +2021,5,5,1,New South Wales,150.622035,-34.397735 +2020,4,15,1,New South Wales,153.40076,-28.260139 +2020,4,3,1,New South Wales,153.109436,-29.490572 +2024,1,16,1,New South Wales,152.88146,-30.913293 +2021,4,5,1,New South Wales,150.60797,-34.423028 +2021,7,30,1,New South Wales,150.517562,-34.448794 +2021,6,12,1,New South Wales,150.519877,-34.452574 +2024,1,12,1,New South Wales,152.371067,-31.923406 +2023,7,5,1,New South Wales,153.108146,-29.490483 +2022,1,31,1,New South Wales,153.31604,-28.823019 +2020,1,20,1,New South Wales,153.294848,-28.633009 +2020,11,20,1,New South Wales,149.965237,-36.459771 +2022,10,17,1,New South Wales,153.300533,-28.817031 +2023,7,27,1,New South Wales,153.302829,-28.84799 +2022,10,20,1,New South Wales,150.798005,-34.113009 +2024,1,10,1,New South Wales,150.784451,-33.716562 +2024,9,3,1,New South Wales,152.178566,-31.569922 +2022,5,13,1,New South Wales,153.103999,-29.477651 +2020,11,18,1,New South Wales,153.369052,-28.953149 +2020,11,16,1,New South Wales,153.438839,-28.985803 +2021,9,5,1,New South Wales,150.514452,-34.443592 +2022,10,25,1,New South Wales,151.775507,-32.587074 +2023,6,18,1,New South Wales,151.993228,-32.720823 +2020,5,25,1,New South Wales,152.803819,-29.216759 +2021,4,3,1,New South Wales,150.634979,-34.488781 +2023,8,30,1,New South Wales,153.481364,-28.626738 +2021,10,11,1,New South Wales,153.16197,-28.535507 +2020,4,10,1,New South Wales,152.384816,-31.196379 +2022,9,8,1,New South Wales,152.79253,-31.116376 +2020,10,28,1,New South Wales,153.551098,-28.582477 +2023,9,15,1,New South Wales,152.812379,-31.65796 +2023,1,12,1,New South Wales,152.768706,-28.962296 +2021,5,19,1,New South Wales,150.613813,-34.431022 +2021,8,1,1,New South Wales,150.602053,-34.424896 +2023,6,28,1,New South Wales,152.784306,-31.520381 +2021,4,27,1,New South Wales,150.624417,-34.388108 +2021,6,29,1,New South Wales,150.824153,-34.150322 +2020,9,29,1,New South Wales,151.040386,-32.990919 +2022,4,7,1,New South Wales,153.609571,-28.661288 +2023,1,8,1,Queensland,152.627528,-25.589136 +2021,11,11,1,New South Wales,153.394922,-28.274474 +2021,2,9,1,New South Wales,152.915361,-31.482549 +2022,5,17,1,New South Wales,153.10394,-29.485342 +2022,10,16,1,New South Wales,152.409406,-31.910186 +2021,2,28,1,New South Wales,150.635921,-34.485499 +2021,5,31,1,New South Wales,150.615648,-34.438063 +2022,10,3,1,New South Wales,152.927413,-31.465873 +2021,3,10,1,New South Wales,150.607757,-34.430128 +2020,10,11,1,New South Wales,149.989087,-36.562421 +2021,12,6,1,New South Wales,150.616825,-34.44144 +2023,10,25,1,New South Wales,152.824679,-29.504234 +2023,2,5,1,New South Wales,153.110565,-29.489984 +2021,2,18,1,New South Wales,152.884543,-31.451821 +2022,9,5,1,New South Wales,150.885204,-34.01789 +2021,6,2,1,New South Wales,150.639757,-34.399133 +2021,2,16,1,New South Wales,152.915526,-28.849111 +2022,8,22,1,New South Wales,152.921026,-31.456439 +2021,4,26,1,New South Wales,150.602398,-34.425768 +2021,6,19,1,New South Wales,150.602864,-34.424668 +2020,9,16,1,New South Wales,152.160763,-32.712341 +2020,11,15,1,New South Wales,149.966791,-36.502277 +2021,4,21,1,New South Wales,150.604875,-34.423987 +2023,8,16,1,New South Wales,153.104997,-29.489648 +2020,11,30,1,New South Wales,153.367822,-28.866277 +2021,12,18,1,New South Wales,150.597474,-33.459707 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2020,9,24,1,New South Wales,153.562646,-28.391295 +2022,6,13,1,New South Wales,153.097054,-28.559312 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2021,9,24,1,New South Wales,152.449444,-31.943502 +2022,10,6,1,New South Wales,153.05413,-30.28047 +2020,10,25,1,New South Wales,149.945227,-36.57753 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2024,8,20,1,New South Wales,152.385526,-32.027634 +2021,9,6,1,New South Wales,150.513926,-34.447738 +2021,5,8,1,New South Wales,150.518375,-34.451479 +2021,7,31,1,New South Wales,150.650562,-34.402443 +2020,10,20,1,New South Wales,152.954394,-31.333756 +2021,6,4,1,New South Wales,150.521961,-34.466012 +2022,8,1,1,New South Wales,150.795513,-34.135124 +2023,12,9,1,New South Wales,152.928698,-31.459337 +2022,3,5,1,New South Wales,153.110495,-29.490077 +2023,2,4,1,New South Wales,153.46244,-28.627856 +2021,4,27,1,New South Wales,150.636275,-34.421983 +2020,3,19,1,New South Wales,152.828044,-29.712486 +2022,4,18,1,New South Wales,150.635535,-33.57235 +2020,10,21,1,New South Wales,152.065043,-32.699743 +2022,10,23,1,New South Wales,153.616938,-28.659556 +2024,1,11,1,New South Wales,153.110576,-29.48996 +2020,1,3,1,New South Wales,152.930133,-29.000938 +2021,2,2,1,New South Wales,153.102293,-29.488093 +2023,6,27,1,New South Wales,152.788599,-31.640312 +2021,4,23,1,New South Wales,150.605006,-34.433104 +2021,6,14,1,New South Wales,150.515732,-34.446666 +2023,10,22,1,New South Wales,151.006961,-34.046596 +2023,11,30,1,New South Wales,150.659907,-33.527182 +2020,10,5,1,New South Wales,153.389281,-28.883743 +2023,9,14,1,New South Wales,153.096022,-29.484875 +2022,11,16,1,New South Wales,149.68917,-32.733612 +2020,10,28,1,New South Wales,153.335481,-28.869015 +2020,10,18,1,New South Wales,149.949786,-36.632867 +2023,10,29,1,New South Wales,152.926883,-30.507898 +2023,11,3,1,New South Wales,152.192249,-32.23198 +2024,1,15,1,New South Wales,151.240369,-33.107983 +2022,11,9,1,New South Wales,150.785693,-34.206601 +2023,9,20,1,New South Wales,153.109326,-29.490586 +2023,5,14,1,New South Wales,150.821686,-34.136415 +2020,7,25,1,New South Wales,150.086521,-34.698285 +2021,3,28,1,New South Wales,153.09401,-29.488802 +2021,5,18,1,New South Wales,150.632762,-34.419616 +2023,9,9,1,New South Wales,153.032917,-30.380306 +2021,10,5,1,New South Wales,152.92067,-31.463326 +2023,2,25,1,New South Wales,152.896244,-31.436102 +2021,5,8,1,New South Wales,150.632734,-34.418309 +2022,4,12,1,New South Wales,153.402087,-28.258755 +2022,7,31,1,New South Wales,152.914745,-31.458772 +2023,3,22,1,New South Wales,153.100721,-29.490082 +2021,5,17,1,New South Wales,150.640552,-34.494244 +2022,5,15,1,New South Wales,152.024044,-32.139475 +2020,10,6,1,New South Wales,149.959933,-36.657162 +2021,5,27,1,New South Wales,150.619339,-34.439523 +2020,10,12,1,New South Wales,152.409406,-31.910186 +2023,9,13,1,New South Wales,150.43394,-31.57941 +2021,7,9,1,New South Wales,150.640843,-34.393772 +2021,5,8,1,New South Wales,150.632604,-34.418279 +2023,12,1,1,New South Wales,152.82476,-29.506699 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2023,11,1,1,New South Wales,152.678244,-31.489578 +2023,6,13,1,New South Wales,150.94014,-34.113815 +2023,11,11,1,New South Wales,153.017872,-30.378965 +2020,2,28,1,New South Wales,152.404167,-31.945815 +2023,11,11,1,New South Wales,153.107475,-29.490133 +2021,5,23,1,New South Wales,150.59781,-34.427932 +2021,12,21,1,New South Wales,152.908628,-31.454864 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2022,3,13,1,New South Wales,153.545595,-28.733691 +2021,3,16,1,New South Wales,151.944201,-29.999273 +2023,11,14,1,New South Wales,153.109337,-29.490493 +2021,6,18,1,New South Wales,150.627698,-34.42097 +2023,2,15,1,New South Wales,153.299324,-28.888717 +2024,3,9,1,New South Wales,152.929736,-31.466875 +2020,5,28,1,New South Wales,153.095235,-29.483464 +2022,9,9,1,New South Wales,150.790596,-34.188134 +2021,8,1,1,New South Wales,150.520327,-34.465709 +2022,1,19,1,New South Wales,153.192512,-30.077654 +2021,6,13,1,New South Wales,150.615864,-34.430828 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2023,4,28,1,New South Wales,150.812345,-34.124693 +2020,11,,1,New South Wales,150.644174,-34.548357 +2020,10,5,1,New South Wales,149.959933,-36.657162 +2021,9,8,1,New South Wales,152.778194,-30.190057 +2022,5,17,1,New South Wales,153.110517,-29.490189 +2020,11,22,1,New South Wales,152.904803,-29.785312 +2021,8,1,1,New South Wales,150.601527,-34.425021 +2021,4,18,1,New South Wales,151.991936,-32.721693 +2023,5,23,1,New South Wales,151.789731,-32.655136 +2022,12,4,1,New South Wales,153.334806,-28.816123 +2024,6,19,1,New South Wales,152.918723,-31.445741 +2021,3,13,1,New South Wales,153.272431,-28.355594 +2020,5,,1,New South Wales,152.021561,-32.737724 +2022,8,11,1,New South Wales,153.341303,-28.649831 +2021,9,16,1,New South Wales,150.519726,-34.448847 +2023,1,14,1,New South Wales,150.812345,-34.124693 +2022,11,6,1,New South Wales,151.186173,-33.670798 +2021,6,7,1,New South Wales,150.528243,-34.464878 +2020,9,11,1,New South Wales,150.12311,-31.14123 +2021,6,25,1,New South Wales,150.645113,-34.391564 +2021,9,8,1,New South Wales,150.521427,-34.491064 +2023,6,6,1,New South Wales,150.892059,-34.043064 +2023,8,24,1,New South Wales,153.009757,-30.527157 +2020,10,30,1,New South Wales,150.82369,-34.141271 +2020,6,17,1,New South Wales,152.783236,-30.225945 +2021,6,11,1,New South Wales,150.604405,-34.438925 +2020,1,8,1,New South Wales,152.404167,-31.945815 +2021,5,31,1,New South Wales,150.630819,-34.420634 +2023,8,24,1,New South Wales,153.300521,-28.810998 +2022,8,15,1,New South Wales,151.918673,-31.973327 +2021,6,9,1,New South Wales,150.626389,-34.387217 +2021,10,18,1,New South Wales,153.108081,-29.490306 +2021,8,10,1,New South Wales,150.519253,-34.437623 +2021,10,22,1,New South Wales,152.077632,-32.725263 +2022,6,19,1,New South Wales,150.869923,-34.004128 +2020,1,6,1,New South Wales,153.094822,-29.494264 +2022,10,4,1,New South Wales,153.347055,-28.822851 +2022,7,8,1,New South Wales,153.300476,-28.952324 +2021,9,6,1,New South Wales,150.596278,-34.450242 +2023,6,5,1,New South Wales,150.79873,-34.17958 +2023,10,30,1,New South Wales,152.196402,-32.225666 +2023,8,12,1,New South Wales,153.309361,-28.8232 +2022,12,16,1,New South Wales,152.871191,-31.286182 +2022,9,13,1,New South Wales,152.071768,-32.710587 +2023,3,4,1,New South Wales,153.300714,-28.821774 +2023,3,9,1,New South Wales,153.303139,-28.848246 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2021,7,7,1,New South Wales,150.597886,-34.418025 +2022,8,11,1,New South Wales,152.126308,-31.415433 +2022,6,28,1,New South Wales,152.886308,-31.471414 +2021,7,14,1,New South Wales,152.047151,-32.473472 +2021,5,2,1,New South Wales,150.633657,-34.418363 +2023,2,25,1,New South Wales,152.53994,-31.958765 +2021,4,24,1,New South Wales,150.637431,-34.421095 +2020,12,17,1,New South Wales,150.808271,-34.098135 +2020,8,8,1,New South Wales,153.104074,-29.484362 +2021,10,8,1,New South Wales,152.02201,-32.659322 +2020,4,30,1,New South Wales,152.085295,-32.730287 +2020,4,17,1,New South Wales,152.878659,-29.677495 +2021,4,26,1,New South Wales,150.608439,-34.454655 +2021,1,19,1,New South Wales,153.103677,-29.485758 +2021,6,7,1,New South Wales,150.325641,-29.033802 +2023,8,9,1,New South Wales,153.103489,-29.48558 +2021,4,3,1,New South Wales,150.519971,-34.446463 +2022,10,22,1,New South Wales,153.205572,-28.611714 +2021,5,7,1,New South Wales,150.603971,-34.427061 +2023,12,13,1,New South Wales,152.925366,-31.454328 +2021,8,17,1,New South Wales,152.911539,-31.478801 +2022,8,9,1,New South Wales,150.517475,-34.452048 +2024,2,1,1,New South Wales,152.983838,-30.421293 +2023,6,7,1,New South Wales,153.37681,-28.547537 +2021,3,4,1,New South Wales,150.604646,-34.438849 +2021,12,16,1,New South Wales,153.104053,-29.484352 +2021,8,22,1,New South Wales,150.520068,-34.446492 +2022,12,22,1,New South Wales,152.926422,-31.444487 +2021,5,31,1,New South Wales,150.638684,-34.491359 +2021,4,30,1,New South Wales,150.61008,-34.419995 +2021,5,7,1,New South Wales,150.521069,-34.466734 +2021,5,9,1,New South Wales,150.516607,-34.468933 +2021,6,7,1,New South Wales,150.325661,-29.033812 +2020,10,23,1,New South Wales,152.910587,-31.475018 +2023,6,5,1,New South Wales,150.80465,-34.183601 +2023,11,30,1,New South Wales,153.109353,-29.49046 +2020,2,23,1,New South Wales,152.89783,-31.4562 +2020,10,9,1,New South Wales,151.660029,-32.659963 +2021,5,2,1,New South Wales,150.633558,-34.418424 +2021,9,1,1,New South Wales,150.600344,-34.44851 +2021,10,11,1,New South Wales,150.847722,-34.056 +2023,10,14,1,New South Wales,150.817626,-29.617546 +2021,7,17,1,New South Wales,150.624571,-34.386118 +2020,12,12,1,New South Wales,152.926628,-31.456781 +2022,1,12,1,New South Wales,150.616032,-34.439874 +2020,10,13,1,New South Wales,153.436863,-28.633136 +2023,4,22,1,New South Wales,153.464754,-28.395726 +2021,4,21,1,New South Wales,150.609433,-34.419027 +2021,3,12,1,New South Wales,149.751273,-30.932674 +2020,11,3,1,New South Wales,149.934245,-36.578531 +2023,9,20,1,New South Wales,152.792854,-31.641715 +2023,10,29,1,New South Wales,152.189959,-32.223426 +2021,5,30,1,New South Wales,150.52727,-34.469429 +2021,7,11,1,New South Wales,150.642315,-34.394413 +2022,11,24,1,New South Wales,153.217709,-28.919419 +2022,11,5,1,New South Wales,153.58815,-28.85266 +2022,9,19,1,New South Wales,152.562655,-29.037002 +2021,3,30,1,New South Wales,150.635418,-34.488645 +2021,7,14,1,New South Wales,153.420282,-28.982812 +2024,1,7,1,New South Wales,152.372243,-31.921372 +2021,8,14,1,New South Wales,153.532794,-28.400667 +2021,5,10,1,New South Wales,150.517092,-34.447784 +2021,4,5,1,New South Wales,150.606991,-34.437515 +2022,3,25,1,New South Wales,153.324396,-28.834072 +2021,3,14,1,New South Wales,149.54979,-33.496074 +2021,7,20,1,New South Wales,150.517443,-34.448422 +2020,10,14,1,New South Wales,149.919967,-36.589766 +2023,4,28,1,New South Wales,153.109385,-29.490507 +2023,11,3,1,New South Wales,152.192632,-32.228945 +2021,2,24,1,New South Wales,150.609621,-34.420059 +2020,11,3,1,New South Wales,149.96897,-36.58553 +2020,8,16,1,New South Wales,152.985717,-29.030717 +2020,10,4,1,New South Wales,152.040736,-32.73704 +2023,3,20,1,New South Wales,152.915994,-31.445155 +2021,4,3,1,New South Wales,150.605793,-34.437546 +2022,11,24,1,New South Wales,153.270395,-28.931139 +2023,11,25,1,New South Wales,152.247983,-32.048603 +2022,10,4,1,New South Wales,153.434047,-29.013135 +2022,11,29,1,New South Wales,152.754102,-30.882465 +2020,10,15,1,New South Wales,152.943926,-29.267695 +2021,5,15,1,New South Wales,150.523967,-34.4637 +2021,5,26,1,New South Wales,150.516052,-34.44944 +2021,5,15,1,New South Wales,150.602612,-34.436555 +2022,1,7,1,New South Wales,150.978213,-34.083624 +2021,11,1,1,New South Wales,152.658441,-28.421637 +2021,6,26,1,New South Wales,150.522761,-34.46437 +2022,6,9,1,New South Wales,152.865207,-29.628263 +2024,1,19,1,New South Wales,152.921838,-31.451722 +2023,7,18,1,New South Wales,150.824172,-34.151085 +2022,8,29,1,New South Wales,152.032975,-32.732124 +2021,11,15,1,New South Wales,152.374224,-31.915707 +2023,1,22,1,New South Wales,153.15909,-28.924799 +2021,7,9,1,New South Wales,150.640821,-34.393753 +2021,5,21,1,New South Wales,150.63103,-34.387298 +2021,9,10,1,New South Wales,149.352767,-36.154709 +2021,5,27,1,New South Wales,150.630688,-34.420658 +2021,6,24,1,New South Wales,150.510824,-34.471231 +2020,7,6,1,New South Wales,152.757767,-31.240611 +2023,10,9,1,New South Wales,152.913953,-31.447768 +2020,9,9,1,New South Wales,153.251483,-28.273111 +2021,8,4,1,New South Wales,150.518113,-34.446741 +2021,4,21,1,New South Wales,150.515852,-34.449589 +2022,9,6,1,New South Wales,150.802682,-34.111148 +2021,5,19,1,New South Wales,150.656203,-34.458691 +2022,1,10,1,New South Wales,150.615751,-34.440941 +2020,5,13,1,New South Wales,149.366286,-36.002004 +2020,7,10,1,New South Wales,152.922578,-31.458172 +2021,5,12,1,New South Wales,150.604328,-34.438941 +2023,11,4,1,New South Wales,153.108113,-29.490208 +2021,6,29,1,New South Wales,153.382589,-28.523791 +2023,10,16,1,New South Wales,152.861595,-30.342791 +2022,8,27,1,New South Wales,153.104063,-29.479837 +2020,11,16,1,New South Wales,153.316984,-28.937089 +2020,11,,1,New South Wales,151.720013,-32.224087 +2023,1,30,1,New South Wales,150.316157,-31.206418 +2020,5,28,1,New South Wales,153.46202,-28.650301 +2020,11,19,1,New South Wales,151.512471,-30.655961 +2021,3,4,1,New South Wales,153.108156,-29.49025 +2022,7,27,1,New South Wales,152.812214,-31.13881 +2021,4,27,1,New South Wales,150.616368,-34.428791 +2020,8,3,1,New South Wales,152.797444,-31.126171 +2021,5,3,1,New South Wales,150.637342,-34.423897 +2020,4,4,1,New South Wales,153.09578,-30.15738 +2021,3,13,1,New South Wales,150.515554,-34.445319 +2021,8,9,1,New South Wales,150.517138,-34.435912 +2022,12,23,1,New South Wales,153.104221,-29.482149 +2023,8,13,1,New South Wales,152.919643,-31.4692 +2021,8,10,1,New South Wales,153.335473,-28.817598 +2021,11,12,1,New South Wales,153.293477,-28.864625 +2020,6,30,1,New South Wales,152.800023,-30.218771 +2021,5,18,1,New South Wales,152.893086,-31.454902 +2021,5,26,1,New South Wales,150.639177,-34.392676 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2024,1,16,1,New South Wales,152.231631,-32.272112 +2024,3,16,1,New South Wales,150.990921,-34.021472 +2023,1,29,1,New South Wales,153.507595,-28.8093 +2021,7,2,1,New South Wales,150.59698,-34.414338 +2020,12,31,1,New South Wales,150.379713,-33.721678 +2021,4,27,1,New South Wales,150.624378,-34.388359 +2020,1,11,1,New South Wales,153.413555,-28.54853 +2021,3,13,1,New South Wales,150.517241,-34.451573 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2021,7,2,1,New South Wales,150.626882,-34.420963 +2020,10,12,1,New South Wales,149.959933,-36.657162 +2022,9,14,1,New South Wales,153.349266,-28.873789 +2021,10,23,1,New South Wales,152.874191,-31.463856 +2021,9,17,1,New South Wales,150.520158,-34.449334 +2021,4,29,1,New South Wales,150.624447,-34.387838 +2021,6,14,1,New South Wales,150.605637,-34.437299 +2024,4,28,1,Queensland,153.164469,-27.865117 +2022,11,16,1,New South Wales,153.324009,-28.825305 +2021,6,6,1,New South Wales,150.525374,-34.464711 +2021,5,18,1,New South Wales,150.516404,-34.450069 +2021,5,2,1,New South Wales,150.617498,-34.399729 +2023,11,22,1,New South Wales,152.192737,-28.619829 +2022,1,8,1,New South Wales,152.163248,-32.71419 +2022,5,5,1,New South Wales,152.92593,-31.452743 +2021,5,5,1,New South Wales,150.61583,-34.435858 +2024,2,1,1,New South Wales,153.092406,-29.488377 +2021,10,6,1,New South Wales,153.101065,-29.490063 +2020,10,21,1,New South Wales,150.639046,-33.434393 +2022,10,9,1,New South Wales,152.077045,-32.722541 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2022,4,20,1,New South Wales,153.312767,-29.008668 +2021,4,2,1,New South Wales,150.516008,-34.447248 +2021,12,28,1,New South Wales,153.459387,-28.650505 +2024,7,6,1,New South Wales,151.41194,-32.86789 +2024,2,15,1,New South Wales,153.028339,-28.537034 +2021,6,15,1,New South Wales,150.520305,-34.466078 +2021,3,4,1,New South Wales,150.608992,-34.420371 +2020,11,7,1,New South Wales,150.016582,-36.557254 +2020,9,28,1,New South Wales,153.443557,-28.232986 +2021,8,9,1,New South Wales,153.104063,-29.479972 +2020,8,19,1,New South Wales,152.911301,-31.435032 +2020,4,8,1,New South Wales,153.424803,-28.874576 +2022,12,4,1,New South Wales,151.624167,-31.899167 +2021,4,22,1,New South Wales,150.632701,-34.392857 +2021,7,9,1,New South Wales,150.513075,-34.447098 +2023,10,9,1,New South Wales,150.261177,-34.305931 +2023,10,5,1,New South Wales,152.88948,-30.468265 +2021,5,14,1,New South Wales,150.629552,-34.389217 +2020,10,16,1,New South Wales,151.559712,-30.400741 +2021,7,13,1,New South Wales,150.512835,-34.446742 +2022,8,1,1,New South Wales,150.796589,-34.145052 +2021,3,1,1,New South Wales,150.616059,-34.43433 +2020,11,28,1,New South Wales,153.091779,-29.487938 +2023,4,29,1,New South Wales,150.982567,-29.732031 +2024,1,2,1,New South Wales,152.908797,-31.464597 +2023,11,4,1,New South Wales,153.101665,-29.489676 +2020,1,13,1,New South Wales,153.293075,-28.864687 +2023,8,13,1,New South Wales,150.833889,-34.073083 +2022,5,15,1,New South Wales,153.293176,-28.86456 +2021,11,23,1,New South Wales,150.913678,-34.068368 +2021,4,18,1,New South Wales,150.604157,-34.425884 +2021,9,26,1,New South Wales,152.927638,-31.472595 +2021,4,25,1,New South Wales,150.615265,-34.428571 +2021,6,14,1,New South Wales,150.518375,-34.457375 +2021,3,31,1,New South Wales,150.662402,-34.458476 +2021,5,28,1,New South Wales,150.630863,-34.420616 +2020,10,29,1,New South Wales,149.945227,-36.57753 +2021,5,9,1,New South Wales,150.519451,-34.451168 +2021,3,29,1,New South Wales,150.523454,-34.453061 +2021,5,4,1,New South Wales,150.632739,-34.418922 +2020,10,7,1,New South Wales,152.036133,-32.732037 +2021,8,1,1,New South Wales,151.645394,-32.551095 +2021,7,23,1,New South Wales,150.90609,-33.968421 +2020,9,30,1,New South Wales,153.564052,-28.374668 +2021,4,24,1,New South Wales,150.616271,-34.435659 +2022,4,25,1,New South Wales,152.916522,-31.444834 +2021,3,5,1,New South Wales,150.616331,-34.434317 +2022,2,19,1,New South Wales,153.282056,-28.830721 +2021,4,7,1,New South Wales,152.077192,-32.734199 +2021,5,23,1,New South Wales,150.605542,-34.432231 +2021,6,13,1,New South Wales,150.521273,-34.465737 +2023,10,11,1,New South Wales,153.192386,-29.425126 +2020,5,8,1,New South Wales,152.957757,-30.662362 +2021,6,6,1,New South Wales,150.518903,-34.447244 +2023,10,3,1,New South Wales,152.063448,-32.705404 +2021,7,3,1,New South Wales,150.627431,-34.421181 +2021,4,7,1,New South Wales,150.663806,-34.458097 +2021,3,11,1,New South Wales,150.532375,-34.46168 +2020,6,3,1,New South Wales,152.916023,-31.437375 +2020,11,2,1,New South Wales,149.988655,-36.56931 +2021,5,29,1,New South Wales,153.104106,-29.480126 +2021,5,24,1,New South Wales,150.521621,-34.465744 +2021,10,21,1,New South Wales,153.556505,-28.399929 +2021,9,4,1,New South Wales,153.400689,-28.644539 +2020,10,7,1,New South Wales,152.54165,-29.107663 +2021,6,23,1,New South Wales,150.625789,-34.386511 +2023,10,31,1,New South Wales,152.898133,-31.474397 +2021,5,15,1,New South Wales,150.520335,-34.454007 +2021,4,25,1,New South Wales,150.610322,-34.419135 +2023,5,1,1,New South Wales,153.033896,-30.367412 +2020,10,20,1,New South Wales,153.293285,-28.864609 +2023,12,2,1,New South Wales,153.067707,-30.888275 +2021,3,6,1,New South Wales,150.518248,-34.446591 +2020,11,11,1,New South Wales,150.010499,-36.556654 +2021,5,24,1,New South Wales,150.639005,-34.492744 +2023,10,30,1,New South Wales,152.194095,-32.224416 +2021,5,4,1,New South Wales,150.637357,-34.423735 +2023,3,3,1,New South Wales,153.109369,-29.490525 +2023,8,16,1,New South Wales,153.110554,-29.489881 +2021,6,12,1,New South Wales,150.51991,-34.452556 +2021,11,23,1,New South Wales,150.790388,-34.190761 +2021,5,16,1,New South Wales,150.637345,-34.423771 +2022,11,23,1,New South Wales,152.180569,-32.654013 +2021,6,18,1,New South Wales,150.521242,-34.465664 +2020,5,17,1,New South Wales,150.046999,-33.757316 +2021,7,11,1,New South Wales,150.643323,-34.395307 +2021,5,22,1,New South Wales,150.515835,-34.450905 +2020,1,4,1,New South Wales,153.094901,-29.494293 +2021,6,8,1,New South Wales,150.602966,-34.45196 +2021,5,22,1,New South Wales,151.78214,-32.57073 +2023,9,15,1,New South Wales,150.80057,-34.17502 +2020,11,18,1,New South Wales,153.369052,-28.953149 +2020,1,11,1,New South Wales,152.796786,-31.327271 +2021,5,17,1,New South Wales,150.807228,-34.068105 +2021,4,23,1,New South Wales,150.616397,-34.4343 +2021,6,27,1,New South Wales,150.513994,-34.447288 +2021,9,29,1,New South Wales,153.620962,-28.647233 +2021,7,14,1,New South Wales,150.627322,-34.421197 +2024,4,6,1,New South Wales,152.076102,-32.738979 +2021,7,21,1,New South Wales,150.645688,-34.392792 +2024,1,16,1,New South Wales,152.818969,-30.914258 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2023,1,6,1,New South Wales,153.103811,-29.484787 +2023,3,17,1,New South Wales,153.10012,-29.490796 +2020,9,26,1,New South Wales,150.838287,-34.069699 +2022,9,8,1,New South Wales,150.890624,-34.018545 +2022,7,12,1,New South Wales,153.103398,-29.486421 +2021,4,3,1,New South Wales,153.362291,-28.65032 +2022,1,16,1,New South Wales,150.618794,-34.440694 +2020,1,8,1,New South Wales,152.866362,-29.691624 +2021,6,10,1,New South Wales,150.630279,-34.420894 +2022,1,27,1,New South Wales,153.110619,-29.489531 +2020,11,17,1,New South Wales,149.962048,-36.514707 +2023,9,9,1,New South Wales,150.985223,-34.091455 +2021,10,29,1,New South Wales,153.104578,-29.477263 +2021,6,6,1,New South Wales,150.532775,-34.458821 +2021,5,17,1,New South Wales,150.530595,-34.470001 +2021,4,22,1,New South Wales,150.637425,-34.420536 +2023,12,19,1,New South Wales,153.108119,-29.490283 +2021,7,14,1,New South Wales,150.513836,-34.446384 +2020,10,,1,New South Wales,150.566043,-34.524474 +2021,7,9,1,New South Wales,150.599209,-34.413986 +2023,4,16,1,New South Wales,152.928636,-31.459553 +2021,4,29,1,New South Wales,150.610201,-34.419159 +2021,8,1,1,New South Wales,153.103935,-29.489559 +2021,6,3,1,New South Wales,150.535291,-34.463181 +2021,6,18,1,New South Wales,150.518985,-34.459921 +2020,9,5,1,New South Wales,152.16856,-32.748567 +2022,10,7,1,New South Wales,150.899382,-33.9525 +2020,10,30,1,New South Wales,149.945227,-36.57753 +2023,10,21,1,New South Wales,150.988969,-34.032932 +2021,5,25,1,New South Wales,150.631291,-34.420102 +2024,7,8,1,New South Wales,152.924126,-31.473213 +2023,8,31,1,New South Wales,153.091999,-29.48792 +2020,11,18,1,New South Wales,153.369052,-28.953149 +2023,8,16,1,New South Wales,150.789567,-34.195769 +2021,12,4,1,New South Wales,153.389066,-28.31409 +2021,9,28,1,New South Wales,150.595561,-34.514666 +2021,4,7,1,New South Wales,153.101537,-29.489746 +2024,1,17,1,New South Wales,152.929672,-31.454994 +2021,5,8,1,New South Wales,150.639145,-34.491629 +2022,1,2,1,New South Wales,152.915349,-31.445683 +2021,4,1,1,New South Wales,150.532299,-34.480907 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2021,5,22,1,New South Wales,150.522246,-34.464846 +2022,10,27,1,New South Wales,153.412703,-28.954611 +2021,6,21,1,New South Wales,153.092796,-28.603622 +2023,7,30,1,New South Wales,153.076773,-28.556729 +2021,3,15,1,New South Wales,150.535909,-34.463284 +2021,7,17,1,New South Wales,150.62796,-34.420939 +2023,5,18,1,New South Wales,153.299609,-28.888282 +2020,9,6,1,New South Wales,152.899379,-29.630981 +2020,6,15,1,New South Wales,152.71462,-31.348046 +2020,9,13,1,New South Wales,151.976902,-32.704115 +2021,4,17,1,New South Wales,150.61696,-34.430561 +2021,1,2,1,New South Wales,152.06317,-32.703313 +2024,6,7,1,New South Wales,152.898564,-31.466618 +2022,3,1,1,New South Wales,152.907391,-31.470566 +2021,4,25,1,New South Wales,150.609446,-34.418946 +2024,2,13,1,New South Wales,150.784985,-33.714279 +2021,5,14,1,New South Wales,150.604126,-34.438018 +2022,10,24,1,New South Wales,153.469004,-28.55641 +2021,5,15,1,New South Wales,150.640426,-34.494088 +2021,6,16,1,New South Wales,150.62282,-34.383839 +2021,9,1,1,New South Wales,153.400565,-28.25774 +2020,10,29,1,New South Wales,149.96897,-36.58553 +2022,2,15,1,New South Wales,153.104932,-29.477282 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2020,3,22,1,New South Wales,153.1205,-30.305313 +2024,5,26,1,New South Wales,152.063689,-32.706612 +2021,5,26,1,New South Wales,150.631288,-34.420201 +2021,6,1,1,New South Wales,150.518193,-34.446598 +2020,10,8,1,New South Wales,151.936835,-30.894257 +2021,10,29,1,New South Wales,153.563161,-28.381373 +2022,2,7,1,New South Wales,151.70221,-32.694076 +2021,3,5,1,New South Wales,150.611572,-34.420304 +2022,7,27,1,New South Wales,152.000971,-32.727376 +2021,6,17,1,New South Wales,150.524401,-34.451602 +2023,11,27,1,New South Wales,150.870852,-34.042809 +2021,7,16,1,New South Wales,150.594786,-34.412321 +2021,5,28,1,New South Wales,150.639051,-34.491474 +2021,8,21,1,New South Wales,152.116778,-32.721097 +2021,4,23,1,New South Wales,152.915846,-31.482057 +2022,1,4,1,New South Wales,153.390561,-28.738745 +2022,8,3,1,New South Wales,152.784326,-31.63034 +2022,8,4,1,New South Wales,150.794751,-34.216295 +2021,8,2,1,New South Wales,150.518254,-34.437197 +2021,6,29,1,New South Wales,150.059118,-33.768071 +2020,10,19,1,New South Wales,153.303174,-28.827996 +2023,8,4,1,New South Wales,150.860181,-34.072566 +2023,9,12,1,New South Wales,152.81132,-31.654141 +2021,6,28,1,New South Wales,150.513799,-34.447266 +2020,10,16,1,New South Wales,153.094112,-29.483946 +2020,7,22,1,New South Wales,150.659213,-33.527046 +2021,6,18,1,New South Wales,150.64267,-34.394555 +2021,6,23,1,New South Wales,150.601872,-34.418257 +2022,12,24,1,New South Wales,153.088276,-30.341761 +2021,4,24,1,New South Wales,150.614763,-34.430905 +2021,11,23,1,New South Wales,153.176398,-28.853228 +2022,2,20,1,New South Wales,153.405203,-28.254739 +2021,5,31,1,New South Wales,150.523075,-34.45226 +2021,3,17,1,New South Wales,150.525407,-34.459925 +2021,5,11,1,New South Wales,150.637248,-34.423733 +2020,12,27,1,New South Wales,150.808214,-34.098091 +2022,3,18,1,New South Wales,152.020691,-32.767712 +2021,4,30,1,New South Wales,150.606816,-34.454334 +2021,9,4,1,New South Wales,150.514613,-34.447337 +2021,4,3,1,New South Wales,150.519561,-34.447798 +2021,1,25,1,New South Wales,152.034866,-32.765345 +2020,1,8,1,New South Wales,152.701691,-31.549481 +2023,7,27,1,New South Wales,150.784778,-33.717731 +2021,5,26,1,New South Wales,151.8658,-32.74536 +2021,4,26,1,New South Wales,150.607817,-34.454345 +2021,6,24,1,New South Wales,150.64533,-34.393164 +2020,3,27,1,New South Wales,153.611444,-28.683591 +2020,7,11,1,New South Wales,152.713317,-30.454894 +2021,8,31,1,New South Wales,150.863532,-34.054048 +2021,6,30,1,New South Wales,150.644564,-34.393699 +2023,11,1,1,New South Wales,152.196402,-32.225666 +2020,11,11,1,New South Wales,150.010499,-36.556654 +2021,12,24,1,New South Wales,153.419337,-28.872666 +2021,5,24,1,New South Wales,150.594663,-34.427627 +2023,10,7,1,New South Wales,152.90872,-31.468605 +2021,10,26,1,New South Wales,153.043079,-28.469347 +2020,7,12,1,New South Wales,153.561351,-28.385497 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2021,6,8,1,New South Wales,150.629763,-34.420658 +2021,4,23,1,New South Wales,150.604231,-34.422153 +2022,8,29,1,New South Wales,151.725898,-30.403506 +2020,12,6,1,New South Wales,149.972032,-36.288695 +2021,7,2,1,New South Wales,153.10335,-29.4865 +2021,7,9,1,New South Wales,150.512968,-34.447403 +2020,11,3,1,New South Wales,149.96897,-36.58553 +2023,9,9,1,New South Wales,153.077753,-30.354966 +2021,8,5,1,New South Wales,153.023368,-28.489023 +2023,4,27,1,New South Wales,153.315862,-28.845483 +2021,6,22,1,New South Wales,150.624516,-34.385396 +2022,5,4,1,New South Wales,150.984461,-34.027084 +2023,12,28,1,New South Wales,150.783549,-33.71737 +2022,11,13,1,New South Wales,151.60416,-30.4623 +2021,6,14,1,New South Wales,150.516368,-34.439511 +2021,11,7,1,New South Wales,152.916067,-31.485096 +2021,3,1,1,New South Wales,150.657349,-34.455079 +2021,8,4,1,New South Wales,150.67229,-33.56933 +2024,1,12,1,New South Wales,152.063451,-32.706065 +2023,11,3,1,New South Wales,152.189959,-32.223426 +2021,10,7,1,New South Wales,153.101344,-29.489713 +2023,9,27,1,New South Wales,152.103398,-32.759406 +2023,6,28,1,New South Wales,153.394536,-28.959554 +2021,5,1,1,New South Wales,150.664782,-34.458999 +2021,6,17,1,New South Wales,150.622606,-34.384079 +2021,5,6,1,New South Wales,150.615696,-34.435999 +2021,9,26,1,New South Wales,150.0652,-31.19372 +2022,,,1,New South Wales,150.556772,-34.474 +2022,9,28,1,New South Wales,153.11127,-30.299322 +2020,10,30,1,New South Wales,149.96897,-36.58553 +2021,7,30,1,New South Wales,150.597729,-34.427326 +2022,11,26,1,New South Wales,152.073059,-32.724707 +2020,10,16,1,New South Wales,152.067546,-32.708104 +2022,11,21,1,New South Wales,152.794945,-30.901933 +2022,2,3,1,New South Wales,153.022552,-28.489326 +2021,9,9,1,New South Wales,150.525723,-34.448464 +2022,11,24,1,New South Wales,152.794945,-30.901933 +2021,5,30,1,New South Wales,150.517351,-34.446365 +2020,10,25,1,New South Wales,149.960571,-36.556943 +2022,11,23,1,New South Wales,152.794945,-30.901933 +2020,3,5,1,New South Wales,150.111778,-35.050172 +2021,5,16,1,New South Wales,150.614592,-34.433877 +2023,11,19,1,New South Wales,152.064604,-32.709009 +2021,6,16,1,New South Wales,150.607043,-34.43034 +2020,9,3,1,New South Wales,153.004136,-29.182571 +2022,12,6,1,New South Wales,149.355934,-37.177314 +2021,8,5,1,New South Wales,153.101285,-29.489946 +2024,2,4,1,New South Wales,152.786775,-31.629191 +2020,3,31,1,New South Wales,152.803298,-31.125286 +2020,8,28,1,New South Wales,153.103811,-29.485566 +2020,10,30,1,New South Wales,149.96897,-36.58553 +2023,7,27,1,New South Wales,152.908728,-31.454794 +2020,8,11,1,New South Wales,153.108207,-29.490147 +2021,5,13,1,New South Wales,150.523668,-34.464244 +2021,6,14,1,New South Wales,150.615078,-34.431308 +2023,5,16,1,New South Wales,153.29891,-28.716155 +2021,4,19,1,New South Wales,150.637317,-34.421679 +2021,6,5,1,New South Wales,150.519333,-34.448154 +2021,10,10,1,New South Wales,150.577567,-34.476912 +2021,5,7,1,New South Wales,150.670546,-33.534787 +2021,5,3,1,New South Wales,150.637344,-34.423816 +2021,9,6,1,New South Wales,153.104165,-29.477716 +2021,5,17,1,New South Wales,150.606694,-34.43686 +2022,3,30,1,New South Wales,151.887282,-32.529237 +2020,11,1,1,New South Wales,149.96897,-36.58553 +2021,5,4,1,New South Wales,150.520675,-34.436633 +2022,9,10,1,New South Wales,150.862399,-34.061874 +2023,9,29,1,New South Wales,153.2214,-28.874841 +2022,11,18,1,New South Wales,151.736408,-31.539621 +2022,10,21,1,New South Wales,152.87781,-31.453164 +2021,5,11,1,New South Wales,150.605028,-34.427001 +2023,6,9,1,New South Wales,153.40362,-28.61199 +2023,2,14,1,New South Wales,153.02264,-28.489004 +2021,1,13,1,New South Wales,150.780551,-34.199469 +2020,1,6,1,New South Wales,153.556701,-28.400142 +2020,5,3,1,New South Wales,153.11529,-29.085168 +2021,4,3,1,New South Wales,150.605793,-34.437546 +2021,3,8,1,New South Wales,150.604233,-34.438822 +2021,5,3,1,New South Wales,150.606059,-34.457223 +2020,5,27,1,New South Wales,149.367531,-36.021952 +2020,9,13,1,New South Wales,152.056633,-32.736868 +2021,9,3,1,New South Wales,152.425241,-31.803805 +2021,2,21,1,New South Wales,153.109712,-29.490128 +2020,11,4,1,New South Wales,153.334493,-28.813462 +2020,4,14,1,New South Wales,151.886915,-32.457662 +2021,10,5,1,New South Wales,153.465371,-28.877163 +2021,10,,1,New South Wales,149.361347,-36.182528 +2023,11,13,1,New South Wales,153.103924,-29.489591 +2020,10,19,1,New South Wales,149.930096,-36.638123 +2020,10,22,1,New South Wales,152.844255,-31.321668 +2020,7,16,1,New South Wales,151.290886,-33.010532 +2022,10,24,1,New South Wales,153.596142,-28.652281 +2021,6,17,1,New South Wales,150.604802,-34.427294 +2021,8,15,1,New South Wales,150.998241,-34.082165 +2021,7,17,1,New South Wales,153.071682,-28.585441 +2022,11,30,1,New South Wales,152.754102,-30.882465 +2021,5,30,1,New South Wales,150.522857,-34.452264 +2021,7,9,1,New South Wales,150.63091,-34.388856 +2023,7,6,1,New South Wales,153.635866,-28.63932 +2021,4,24,1,New South Wales,150.616261,-34.43565 +2021,12,14,1,New South Wales,152.921182,-31.46494 +2022,11,26,1,New South Wales,152.794945,-30.901933 +2023,7,25,1,New South Wales,153.31535,-28.819753 +2021,4,28,1,New South Wales,150.615469,-34.435562 +2021,4,4,1,New South Wales,150.528836,-34.458795 +2023,10,24,1,New South Wales,152.196402,-32.225666 +2022,1,27,1,New South Wales,152.871283,-31.261157 +2022,11,12,1,New South Wales,150.929224,-33.954203 +2020,7,11,1,New South Wales,153.098382,-30.296388 +2021,10,21,1,New South Wales,151.692898,-32.69221 +2021,7,16,1,New South Wales,150.514331,-34.446556 +2020,4,23,1,New South Wales,153.314521,-28.826027 +2021,5,31,1,New South Wales,150.615631,-34.437891 +2020,10,21,1,New South Wales,153.604455,-28.675648 +2024,1,2,1,New South Wales,153.093385,-29.492686 +2023,4,26,1,New South Wales,153.160405,-28.570554 +2022,9,13,1,New South Wales,152.890323,-31.158252 +2021,7,4,1,New South Wales,150.604657,-34.439218 +2024,6,29,1,New South Wales,151.153507,-29.875983 +2020,9,26,1,New South Wales,153.102089,-29.48891 +2020,5,9,1,New South Wales,150.809577,-34.100074 +2021,8,22,1,New South Wales,152.374047,-31.913202 +2022,8,17,1,New South Wales,150.890465,-34.018007 +2020,1,28,1,New South Wales,152.35899,-31.92441 +2021,9,20,1,New South Wales,151.651139,-32.683786 +2021,6,23,1,New South Wales,152.885141,-31.441225 +2024,2,10,1,New South Wales,153.107888,-29.490184 +2021,7,19,1,New South Wales,150.627995,-34.420471 +2020,10,13,1,New South Wales,152.894734,-31.448279 +2020,8,17,1,New South Wales,153.064703,-28.535245 +2021,11,23,1,New South Wales,150.813678,-34.104761 +2022,8,24,1,New South Wales,152.071501,-32.710049 +2023,9,27,1,New South Wales,153.323456,-28.8555 +2023,5,11,1,New South Wales,150.785076,-33.717456 +2023,10,7,1,New South Wales,152.881749,-31.452604 +2022,10,13,1,New South Wales,152.92945,-31.459749 +2021,6,16,1,New South Wales,150.522645,-34.451728 +2021,7,23,1,New South Wales,150.603407,-34.419739 +2021,3,19,1,New South Wales,151.755975,-32.770005 +2022,1,25,1,New South Wales,152.063708,-32.706505 +2022,5,6,1,New South Wales,152.924705,-31.443222 +2022,3,29,1,New South Wales,153.108049,-29.490348 +2020,10,30,1,New South Wales,149.934245,-36.578531 +2021,6,17,1,New South Wales,150.597519,-34.450248 +2021,10,29,1,New South Wales,153.041931,-30.448523 +2023,7,2,1,New South Wales,152.009514,-32.727299 +2021,4,24,1,New South Wales,150.614836,-34.431042 +2020,5,19,1,New South Wales,152.705386,-31.355749 +2021,7,3,1,New South Wales,150.627065,-34.421435 +2021,3,1,1,New South Wales,150.636217,-34.485794 +2020,9,26,1,New South Wales,153.496173,-28.693467 +2024,2,24,1,New South Wales,152.060559,-32.710787 +2020,4,14,1,New South Wales,152.873297,-31.467563 +2021,4,23,1,New South Wales,150.6064,-34.433807 +2023,7,23,1,New South Wales,152.340682,-31.978738 +2023,8,23,1,New South Wales,152.2399,-32.22183 +2022,5,1,1,New South Wales,151.009193,-34.045304 +2023,9,29,1,New South Wales,153.09456,-30.371451 +2020,1,6,1,New South Wales,152.896469,-31.415265 +2020,9,18,1,New South Wales,152.720724,-31.345913 +2022,6,14,1,New South Wales,152.14511,-32.72636 +2021,3,15,1,New South Wales,150.517589,-34.45305 +2020,9,17,1,New South Wales,153.463115,-28.421083 +2023,2,10,1,New South Wales,152.907012,-31.454517 +2023,8,24,1,New South Wales,152.18776,-32.238477 +2021,10,6,1,New South Wales,153.109734,-29.490161 +2020,11,6,1,New South Wales,150.010499,-36.556654 +2020,11,4,1,New South Wales,153.108226,-29.48996 +2021,4,30,1,New South Wales,150.638764,-34.489323 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2023,4,5,1,New South Wales,153.299422,-28.818202 +2023,7,11,1,New South Wales,152.751827,-31.348315 +2020,10,20,1,New South Wales,153.293285,-28.864609 +2023,10,8,1,New South Wales,152.897126,-31.47481 +2021,5,16,1,New South Wales,150.629512,-34.389469 +2023,2,9,1,New South Wales,153.095239,-29.483502 +2020,4,8,1,New South Wales,152.913909,-31.478485 +2021,10,9,1,New South Wales,152.890004,-30.509293 +2022,2,13,1,New South Wales,152.899695,-29.631042 +2020,9,16,1,New South Wales,152.898073,-31.438449 +2021,7,9,1,New South Wales,150.598892,-34.413691 +2021,9,21,1,New South Wales,153.396186,-29.095797 +2022,12,9,1,New South Wales,150.444246,-34.470853 +2020,4,20,1,New South Wales,152.851304,-31.438807 +2021,9,1,1,New South Wales,150.513012,-34.447368 +2020,1,26,1,New South Wales,150.149708,-35.079356 +2022,3,15,1,New South Wales,153.093415,-29.488765 +2021,5,11,1,New South Wales,150.517391,-34.453488 +2020,1,6,1,New South Wales,152.40941,-31.91019 +2021,9,4,1,New South Wales,153.558072,-28.389679 +2021,6,5,1,New South Wales,152.09711,-32.68189 +2021,6,4,1,New South Wales,150.519624,-34.455255 +2021,4,24,1,New South Wales,150.605683,-34.423489 +2021,8,28,1,New South Wales,150.516218,-34.440915 +2023,6,27,1,New South Wales,153.101108,-29.489844 +2023,1,8,1,New South Wales,152.961209,-31.250814 +2021,5,20,1,New South Wales,150.629942,-34.395436 +2022,9,18,1,New South Wales,150.840957,-34.062897 +2021,3,8,1,New South Wales,152.60767,-30.52283 +2021,5,21,1,New South Wales,150.529501,-34.471313 +2021,5,2,1,New South Wales,150.615511,-34.435599 +2021,5,30,1,New South Wales,150.523745,-34.464228 +2021,9,22,1,New South Wales,150.643171,-34.396458 +2021,4,19,1,New South Wales,150.606659,-34.434651 +2021,7,11,1,New South Wales,150.513004,-34.447277 +2022,7,25,1,New South Wales,152.812082,-31.133161 +2020,7,5,1,New South Wales,153.31652,-28.826909 +2021,11,13,1,New South Wales,153.136982,-30.208566 +2021,6,22,1,New South Wales,150.519633,-34.463035 +2023,11,2,1,New South Wales,152.187392,-32.232904 +2023,7,9,1,New South Wales,152.789139,-31.636895 +2023,11,8,1,New South Wales,152.92379,-31.470585 +2023,12,10,1,New South Wales,150.785977,-33.706001 +2022,9,2,1,New South Wales,153.170861,-29.436645 +2021,9,8,1,New South Wales,153.584997,-28.637966 +2021,6,27,1,New South Wales,151.013656,-34.055279 +2021,5,3,1,New South Wales,150.633546,-34.418442 +2022,1,31,1,New South Wales,152.823192,-31.098829 +2023,4,27,1,New South Wales,153.316066,-28.846075 +2023,6,17,1,New South Wales,151.627171,-32.641265 +2021,5,17,1,New South Wales,150.629136,-34.395087 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2021,10,18,1,New South Wales,153.116051,-28.561518 +2021,6,13,1,New South Wales,150.518585,-34.445498 +2021,4,25,1,New South Wales,150.605266,-34.437328 +2022,8,7,1,New South Wales,150.883289,-34.015205 +2020,11,10,1,New South Wales,153.103817,-29.48558 +2021,6,25,1,New South Wales,150.600092,-34.418105 +2021,5,4,1,New South Wales,150.638531,-34.490608 +2024,1,16,1,New South Wales,150.784476,-33.716577 +2021,5,15,1,New South Wales,150.523831,-34.463517 +2022,8,23,1,New South Wales,152.102173,-32.757024 +2024,4,3,1,New South Wales,152.914764,-31.448743 +2021,3,3,1,New South Wales,153.553572,-28.588037 +2022,7,4,1,New South Wales,153.494926,-28.694325 +2021,6,8,1,New South Wales,150.532545,-34.476096 +2020,8,31,1,New South Wales,152.920959,-31.481416 +2020,10,11,1,New South Wales,149.959933,-36.657162 +2021,5,1,1,New South Wales,150.616641,-34.435288 +2024,7,16,1,New South Wales,150.620911,-34.553314 +2023,8,9,1,New South Wales,152.920411,-30.505521 +2024,2,9,1,New South Wales,152.903,-30.424 +2020,10,12,1,New South Wales,149.959933,-36.657162 +2021,5,1,1,New South Wales,150.608799,-34.435152 +2021,5,2,1,New South Wales,150.624177,-34.388923 +2024,1,4,1,New South Wales,152.063422,-32.706176 +2023,9,30,1,New South Wales,153.302432,-28.846316 +2020,9,22,1,New South Wales,153.445905,-28.693131 +2023,10,11,1,New South Wales,150.939787,-29.769423 +2022,6,22,1,New South Wales,152.063416,-32.706457 +2023,6,12,1,New South Wales,153.039631,-28.517676 +2021,12,2,1,New South Wales,153.114488,-28.661766 +2020,5,29,1,New South Wales,153.103865,-29.485422 +2021,1,27,1,New South Wales,152.039191,-32.730856 +2020,1,5,1,New South Wales,151.646918,-32.679834 +2021,5,8,1,New South Wales,150.604292,-34.426869 +2021,8,5,1,New South Wales,150.604963,-34.427757 +2023,12,18,1,New South Wales,152.919858,-30.506044 +2020,11,26,1,New South Wales,149.917922,-36.474664 +2021,5,12,1,New South Wales,150.792944,-34.220619 +2020,12,26,1,New South Wales,153.379659,-28.251097 +2021,11,20,1,New South Wales,153.458379,-28.268828 +2020,5,22,1,New South Wales,153.31568,-28.39973 +2023,7,30,1,New South Wales,153.104777,-29.476955 +2023,11,2,1,New South Wales,152.885213,-31.401436 +2021,6,23,1,New South Wales,153.108248,-29.490217 +2022,10,20,1,New South Wales,152.716141,-31.472364 +2021,4,18,1,New South Wales,150.526108,-34.466024 +2023,5,11,1,New South Wales,153.381445,-28.485028 +2023,10,18,1,New South Wales,153.124085,-30.296119 +2022,12,4,1,New South Wales,150.84089,-34.060553 +2023,11,28,1,New South Wales,153.110796,-29.488401 +2022,11,27,1,New South Wales,150.987324,-33.966344 +2022,1,24,1,New South Wales,153.108194,-29.490241 +2020,10,28,1,New South Wales,153.335481,-28.869015 +2022,7,2,1,New South Wales,152.061378,-32.709636 +2020,11,6,1,New South Wales,150.016902,-36.541583 +2023,12,12,1,New South Wales,152.894832,-31.43879 +2021,5,17,1,New South Wales,150.530597,-34.469929 +2023,7,29,1,New South Wales,150.785718,-33.709931 +2021,6,6,1,New South Wales,150.625927,-34.389715 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2021,6,9,1,New South Wales,150.626557,-34.387049 +2021,5,16,1,New South Wales,150.633197,-34.41848 +2022,11,5,1,New South Wales,151.707045,-32.631825 +2023,9,8,1,New South Wales,152.924261,-31.464557 +2024,1,23,1,New South Wales,153.071503,-30.887395 +2020,1,10,1,New South Wales,152.26095,-31.404321 +2021,6,21,1,New South Wales,150.513019,-34.446033 +2021,3,11,1,New South Wales,150.893304,-33.468613 +2023,7,9,1,New South Wales,152.792619,-31.640099 +2021,10,12,1,New South Wales,152.391412,-31.902486 +2021,5,6,1,New South Wales,150.637314,-34.423725 +2021,6,25,1,New South Wales,150.522686,-34.464323 +2021,4,2,1,New South Wales,150.607618,-34.422003 +2021,5,6,1,New South Wales,150.523021,-34.452241 +2022,7,30,1,New South Wales,150.850922,-34.053036 +2021,11,2,1,New South Wales,150.913678,-34.068368 +2022,11,25,1,New South Wales,152.788781,-30.895519 +2021,5,22,1,New South Wales,150.529051,-34.471412 +2021,11,19,1,New South Wales,149.802282,-32.396792 +2021,5,15,1,New South Wales,150.637269,-34.42377 +2020,7,27,1,New South Wales,153.103988,-29.485319 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2023,5,20,1,New South Wales,152.972026,-31.187716 +2021,5,5,1,New South Wales,150.638509,-34.490616 +2020,11,3,1,New South Wales,149.96897,-36.58553 +2022,10,5,1,New South Wales,153.043701,-30.424995 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2021,2,7,1,New South Wales,153.108231,-29.490357 +2021,5,15,1,New South Wales,150.628768,-34.389238 +2024,6,13,1,New South Wales,150.862941,-29.609982 +2021,8,14,1,New South Wales,149.370847,-36.172917 +2023,7,17,1,New South Wales,153.225998,-28.887675 +2023,7,18,1,New South Wales,150.786698,-33.705548 +2022,1,24,1,New South Wales,150.615266,-34.439246 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2021,4,30,1,New South Wales,150.603895,-34.42742 +2021,5,15,1,New South Wales,150.520474,-34.454109 +2021,4,13,1,New South Wales,150.640652,-34.412584 +2020,2,1,1,New South Wales,153.448584,-28.969732 +2021,5,4,1,New South Wales,150.622883,-34.397382 +2020,10,22,1,New South Wales,149.919967,-36.589766 +2021,10,5,1,New South Wales,153.27308,-28.688959 +2021,8,29,1,New South Wales,152.105012,-32.721031 +2021,7,30,1,New South Wales,152.067959,-32.758352 +2023,10,12,1,New South Wales,153.109267,-29.490703 +2022,4,16,1,New South Wales,153.401824,-28.25994 +2023,12,6,1,New South Wales,152.925941,-31.452616 +2022,9,29,1,New South Wales,152.90706,-30.23649 +2021,4,20,1,New South Wales,150.638897,-34.418897 +2021,3,7,1,New South Wales,153.108205,-29.490572 +2020,12,17,1,New South Wales,152.921271,-31.467664 +2022,11,27,1,New South Wales,152.788781,-30.895519 +2020,8,18,1,New South Wales,152.682143,-28.904438 +2023,9,5,1,New South Wales,150.788721,-34.197945 +2021,6,28,1,New South Wales,150.522479,-34.465798 +2021,3,24,1,New South Wales,150.607653,-34.422319 +2023,5,11,1,New South Wales,152.908289,-31.447153 +2024,1,18,1,New South Wales,152.923409,-31.476736 +2022,4,30,1,New South Wales,152.753087,-31.418633 +2021,5,12,1,New South Wales,150.633112,-34.417622 +2021,7,2,1,New South Wales,150.619503,-33.430557 +2021,7,3,1,New South Wales,150.604372,-34.438924 +2020,10,20,1,New South Wales,149.947316,-36.607854 +2021,4,1,1,New South Wales,152.907767,-31.451539 +2022,6,12,1,New South Wales,153.492841,-28.680197 +2020,8,16,1,New South Wales,150.06316,-33.776461 +2020,9,17,1,New South Wales,153.614329,-28.656321 +2020,1,26,1,New South Wales,153.555888,-28.399064 +2023,5,16,1,New South Wales,153.100743,-29.490105 +2020,9,19,1,New South Wales,153.29324,-28.864581 +2021,7,13,1,New South Wales,150.540898,-34.43568 +2023,9,11,1,New South Wales,150.785356,-33.717928 +2021,4,18,1,New South Wales,150.629807,-34.394424 +2023,10,11,1,New South Wales,150.786181,-33.705993 +2022,6,4,1,New South Wales,153.104793,-29.476927 +2020,1,16,1,New South Wales,152.89695,-30.1777 +2023,6,8,1,New South Wales,150.785059,-33.717429 +2021,5,21,1,New South Wales,150.607593,-34.432812 +2022,8,30,1,New South Wales,149.31627,-36.29773 +2020,5,27,1,New South Wales,153.10413,-29.485249 +2020,1,13,1,New South Wales,152.823142,-31.452655 +2021,5,19,1,New South Wales,150.608975,-34.434335 +2022,1,18,1,New South Wales,152.8853,-30.51694 +2021,4,21,1,New South Wales,150.60759,-34.433308 +2021,4,26,1,New South Wales,150.626192,-34.395733 +2021,8,17,1,New South Wales,153.563451,-28.390181 +2024,5,15,1,New South Wales,152.952853,-30.426644 +2021,10,31,1,New South Wales,152.913501,-31.460767 +2021,11,4,1,New South Wales,149.555599,-33.49061 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2021,6,30,1,New South Wales,150.627337,-34.420278 +2023,7,12,1,New South Wales,150.785024,-33.707671 +2021,9,8,1,New South Wales,153.312569,-28.980549 +2021,10,24,1,New South Wales,152.594613,-30.52455 +2024,7,27,1,New South Wales,151.069643,-34.045331 +2021,9,17,1,New South Wales,150.614011,-34.45278 +2023,7,6,1,New South Wales,152.786538,-31.629209 +2023,2,18,1,New South Wales,153.104101,-29.478566 +2020,2,7,1,New South Wales,153.354531,-28.974056 +2022,7,30,1,New South Wales,152.906945,-31.471631 +2021,5,12,1,New South Wales,150.517991,-34.437624 +2021,4,23,1,New South Wales,150.614791,-34.431077 +2020,8,24,1,New South Wales,153.538997,-28.25245 +2023,7,29,1,New South Wales,152.901907,-31.446801 +2020,,,1,New South Wales,151.477315,-33.069532 +2024,1,8,1,New South Wales,150.7863,-33.703904 +2021,5,4,1,New South Wales,150.520627,-34.436407 +2023,7,2,1,New South Wales,152.928537,-29.725885 +2020,9,11,1,New South Wales,150.00465,-31.12993 +2022,1,29,1,New South Wales,153.234429,-28.689307 +2024,3,3,1,New South Wales,152.077954,-32.733018 +2021,5,1,1,New South Wales,150.61041,-34.420245 +2020,11,16,1,New South Wales,153.316984,-28.937089 +2021,5,20,1,New South Wales,150.632689,-34.417965 +2020,10,23,1,New South Wales,150.592259,-33.45874 +2021,9,27,1,New South Wales,150.513126,-34.44609 +2023,6,25,1,New South Wales,153.10416,-29.483278 +2020,5,14,1,New South Wales,152.899754,-31.473918 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2021,7,2,1,New South Wales,150.65718,-34.456086 +2021,4,25,1,New South Wales,150.635289,-34.420278 +2020,11,,1,New South Wales,152.923537,-31.478065 +2021,3,26,1,New South Wales,150.517239,-34.45161 +2023,11,7,1,New South Wales,153.095995,-29.484871 +2022,9,20,1,New South Wales,150.884233,-34.018221 +2021,8,26,1,New South Wales,152.742658,-30.095975 +2021,6,11,1,New South Wales,150.521632,-34.465384 +2021,6,4,1,New South Wales,150.519669,-34.447458 +2020,8,30,1,New South Wales,152.896425,-29.629872 +2022,3,8,1,New South Wales,153.101268,-29.490021 +2021,4,21,1,New South Wales,150.636412,-34.485473 +2022,10,26,1,New South Wales,153.434373,-28.980672 +2020,11,19,1,New South Wales,149.966791,-36.502277 +2023,11,25,1,New South Wales,150.786214,-33.706054 +2021,5,20,1,New South Wales,150.615065,-34.431389 +2022,10,4,1,New South Wales,153.103484,-29.485692 +2021,7,15,1,New South Wales,150.627002,-34.420965 +2020,8,6,1,New South Wales,153.32564,-28.671148 +2021,6,2,1,New South Wales,150.61389,-34.437127 +2020,10,20,1,New South Wales,153.293285,-28.864609 +2021,8,15,1,New South Wales,150.632007,-34.418231 +2021,6,3,1,New South Wales,152.880217,-31.429171 +2021,4,19,1,New South Wales,150.637499,-34.421394 +2023,11,25,1,New South Wales,153.03255,-30.380747 +2020,6,22,1,New South Wales,153.589768,-28.665842 +2021,5,1,1,New South Wales,150.634779,-34.423739 +2021,6,12,1,New South Wales,150.611941,-34.431833 +2023,8,22,1,New South Wales,153.103441,-29.48565 +2023,2,17,1,New South Wales,149.713137,-31.788246 +2021,5,2,1,New South Wales,150.637524,-34.488488 +2021,4,23,1,New South Wales,150.605595,-34.422775 +2020,11,10,1,New South Wales,152.2405,-30.043804 +2021,11,20,1,New South Wales,152.063436,-32.706499 +2021,9,11,1,New South Wales,152.379715,-31.918337 +2021,6,15,1,New South Wales,150.615535,-34.432074 +2021,4,17,1,New South Wales,150.515752,-34.443042 +2020,9,20,1,New South Wales,152.042293,-32.750796 +2023,6,5,1,New South Wales,150.80795,-34.17551 +2021,1,10,1,New South Wales,153.293033,-28.864597 +2023,6,20,1,New South Wales,150.003869,-36.562813 +2020,1,14,1,New South Wales,153.104031,-29.48954 +2024,9,21,1,New South Wales,146.557441,-34.753572 +2023,10,22,1,New South Wales,152.897001,-31.415095 +2020,10,20,1,New South Wales,149.919967,-36.589766 +2023,9,28,1,New South Wales,153.469035,-28.229955 +2021,6,17,1,New South Wales,150.524432,-34.451647 +2022,12,6,1,New South Wales,152.897346,-31.474873 +2023,3,26,1,New South Wales,150.901605,-34.001296 +2020,10,21,1,New South Wales,149.919967,-36.589766 +2021,5,11,1,New South Wales,150.517579,-34.453023 +2021,8,12,1,New South Wales,150.603567,-34.426729 +2021,5,18,1,New South Wales,150.631962,-34.394772 +2023,3,20,1,New South Wales,152.905816,-31.437758 +2023,8,24,1,New South Wales,153.109272,-29.490829 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2020,11,3,1,New South Wales,149.934245,-36.578531 +2023,8,13,1,New South Wales,153.108135,-29.491086 +2020,8,31,1,New South Wales,150.813678,-34.104761 +2022,4,25,1,New South Wales,152.902769,-31.441873 +2023,9,25,1,New South Wales,152.074,-32.7391 +2023,4,15,1,New South Wales,152.924861,-31.453972 +2021,5,10,1,New South Wales,150.606817,-34.438666 +2022,11,10,1,New South Wales,152.064276,-32.706784 +2023,2,27,1,New South Wales,152.079281,-32.732048 +2023,6,8,1,New South Wales,150.845932,-34.098083 +2021,4,30,1,New South Wales,150.61008,-34.419986 +2023,9,13,1,New South Wales,152.878789,-31.159095 +2020,11,13,1,New South Wales,150.002505,-36.541329 +2021,5,22,1,New South Wales,150.630429,-34.420951 +2020,4,20,1,New South Wales,152.875078,-31.493428 +2021,5,31,1,New South Wales,150.523848,-34.464058 +2022,5,16,1,New South Wales,153.192914,-28.642332 +2021,4,24,1,New South Wales,150.616316,-34.435606 +2021,4,26,1,New South Wales,150.616246,-34.435767 +2021,5,26,1,New South Wales,150.639241,-34.392704 +2023,8,26,1,New South Wales,146.607093,-34.760236 +2020,10,13,1,New South Wales,149.880784,-36.581514 +2021,10,1,1,New South Wales,152.709563,-31.596577 +2021,8,30,1,New South Wales,152.380203,-31.914783 +2021,4,16,1,New South Wales,150.62703,-34.386472 +2021,6,20,1,New South Wales,150.60356,-34.424294 +2023,3,22,1,New South Wales,153.302076,-28.819328 +2022,7,18,1,New South Wales,152.929863,-29.147294 +2021,4,25,1,New South Wales,150.626246,-34.395743 +2020,10,20,1,New South Wales,149.931009,-36.595007 +2020,11,20,1,New South Wales,152.920355,-31.453468 +2023,3,27,1,New South Wales,152.920697,-31.441037 +2021,6,30,1,New South Wales,150.627379,-34.420314 +2021,8,28,1,New South Wales,150.641048,-34.396147 +2021,4,16,1,New South Wales,150.615647,-34.431202 +2023,11,11,1,New South Wales,153.096902,-29.486313 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2023,2,8,1,New South Wales,153.104069,-29.485296 +2021,2,3,1,New South Wales,153.611298,-28.662198 +2021,8,31,1,New South Wales,150.523803,-34.463715 +2021,5,3,1,New South Wales,150.611471,-34.419671 +2023,10,29,1,New South Wales,152.994159,-30.380971 +2020,10,19,1,New South Wales,153.303174,-28.827996 +2023,9,6,1,New South Wales,152.894915,-31.429025 +2020,10,8,1,New South Wales,153.366394,-29.084312 +2020,1,4,1,New South Wales,152.900733,-31.466639 +2021,5,17,1,New South Wales,150.516469,-34.450052 +2021,6,16,1,New South Wales,150.520719,-34.465699 +2021,2,1,1,New South Wales,153.103682,-29.485622 +2021,6,28,1,New South Wales,150.627412,-34.420315 +2022,6,19,1,New South Wales,153.103795,-29.485618 +2020,10,8,1,New South Wales,153.104222,-29.47976 +2021,3,3,1,New South Wales,150.609316,-34.420467 +2021,5,21,1,New South Wales,150.522769,-34.464848 +2021,8,10,1,New South Wales,150.519276,-34.437569 +2023,9,25,1,New South Wales,153.465488,-28.593693 +2021,4,2,1,New South Wales,150.534154,-34.480007 +2020,10,25,1,New South Wales,153.196403,-29.399619 +2020,5,,1,New South Wales,152.089801,-32.729525 +2021,4,25,1,New South Wales,150.615418,-34.428908 +2021,5,8,1,New South Wales,150.621994,-34.39805 +2021,6,14,1,New South Wales,150.615003,-34.43128 +2021,4,15,1,New South Wales,150.633465,-34.392376 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2022,10,17,1,New South Wales,152.154177,-32.731525 +2021,4,26,1,New South Wales,150.616259,-34.428825 +2024,9,5,1,New South Wales,152.189185,-31.571533 +2024,2,19,1,New South Wales,150.782771,-33.719339 +2021,4,23,1,New South Wales,150.104417,-33.772677 +2022,2,12,1,New South Wales,153.397127,-28.617099 +2020,11,,1,New South Wales,152.857811,-31.540913 +2021,5,24,1,New South Wales,150.63084,-34.420661 +2021,5,2,1,New South Wales,150.615493,-34.435491 +2020,10,29,1,New South Wales,152.151606,-31.736787 +2022,2,16,1,New South Wales,153.30242,-28.820049 +2020,3,27,1,New South Wales,152.914426,-31.46659 +2021,4,22,1,New South Wales,150.516096,-34.450171 +2021,6,28,1,New South Wales,150.643651,-34.390959 +2023,7,15,1,New South Wales,153.311177,-29.054 +2020,10,30,1,New South Wales,149.92265,-36.572354 +2021,7,9,1,New South Wales,150.630889,-34.388828 +2021,5,26,1,New South Wales,150.516053,-34.449431 +2023,10,10,1,New South Wales,152.171434,-32.74099 +2022,7,23,1,New South Wales,153.104096,-29.481896 +2022,7,7,1,New South Wales,149.810983,-29.375997 +2021,3,30,1,New South Wales,150.616246,-34.434234 +2020,6,17,1,New South Wales,152.780908,-30.225933 +2020,11,18,1,New South Wales,153.369052,-28.953149 +2021,9,10,1,New South Wales,152.879171,-29.661873 +2022,1,2,1,New South Wales,152.383414,-28.90659 +2021,3,19,1,New South Wales,150.534514,-34.462228 +2023,9,9,1,New South Wales,153.318912,-28.820992 +2023,3,8,1,New South Wales,153.329225,-28.9337 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2022,6,26,1,New South Wales,153.399404,-28.260274 +2021,1,23,1,New South Wales,152.941831,-30.493987 +2021,6,11,1,New South Wales,150.518315,-34.443211 +2020,11,25,1,New South Wales,152.105283,-32.732815 +2021,6,4,1,New South Wales,150.623839,-34.388962 +2024,9,18,1,New South Wales,149.57812,-32.599922 +2022,2,3,1,New South Wales,152.893666,-31.445699 +2020,11,27,1,New South Wales,149.965237,-36.459771 +2021,4,21,1,New South Wales,150.614438,-34.428943 +2021,6,9,1,New South Wales,150.630754,-34.420641 +2021,4,21,1,New South Wales,152.890228,-31.435483 +2021,3,8,1,New South Wales,150.610301,-34.419116 +2023,4,4,1,New South Wales,149.95152,-36.604072 +2023,6,28,1,New South Wales,153.38548,-28.784683 +2021,6,9,1,New South Wales,150.516185,-34.454518 +2023,11,16,1,New South Wales,152.925625,-31.471947 +2020,7,11,1,New South Wales,153.454723,-28.650316 +2021,7,26,1,New South Wales,150.599735,-34.421866 +2023,6,23,1,New South Wales,153.46202,-28.650301 +2020,2,3,1,New South Wales,153.104144,-29.480035 +2021,7,24,1,New South Wales,150.602924,-34.419909 +2022,11,25,1,New South Wales,152.788781,-30.895519 +2021,4,24,1,New South Wales,150.635296,-34.419647 +2021,6,9,1,New South Wales,150.528094,-34.457013 +2024,2,2,1,New South Wales,150.785444,-33.707643 +2021,5,13,1,New South Wales,150.604006,-34.42735 +2020,10,15,1,New South Wales,149.919557,-36.628449 +2023,11,3,1,New South Wales,152.077322,-31.400794 +2023,12,29,1,New South Wales,152.906016,-31.471952 +2020,11,30,1,New South Wales,153.343646,-28.866891 +2020,8,19,1,New South Wales,150.866027,-34.060984 +2020,7,5,1,New South Wales,150.057532,-33.767105 +2022,7,28,1,New South Wales,152.919078,-31.453819 +2021,6,1,1,New South Wales,150.605179,-34.436966 +2021,5,15,1,New South Wales,150.527727,-34.466508 +2021,6,20,1,New South Wales,150.656905,-34.454611 +2021,6,23,1,New South Wales,150.645248,-34.394145 +2021,8,5,1,New South Wales,152.867975,-29.667396 +2023,5,17,1,New South Wales,150.832551,-34.073018 +2021,3,28,1,New South Wales,153.104026,-29.484282 +2022,10,1,1,New South Wales,153.325745,-28.83253 +2023,1,20,1,New South Wales,151.341171,-30.620867 +2024,3,4,1,New South Wales,152.063486,-32.705905 +2021,11,29,1,New South Wales,152.524799,-32.048272 +2023,9,13,1,New South Wales,150.727493,-34.189621 +2023,11,4,1,New South Wales,152.406916,-31.916192 +2022,8,23,1,New South Wales,150.889048,-34.017517 +2023,9,22,1,New South Wales,153.319007,-28.915558 +2021,4,26,1,New South Wales,150.614499,-34.429467 +2024,7,16,1,New South Wales,149.54435,-37.303755 +2021,5,4,1,New South Wales,150.520587,-34.436289 +2020,10,28,1,New South Wales,153.335481,-28.869015 +2020,11,8,1,New South Wales,150.003444,-36.572886 +2021,4,26,1,New South Wales,150.603297,-34.436947 +2021,8,24,1,New South Wales,150.639584,-34.397146 +2020,9,16,1,New South Wales,150.764999,-33.402278 +2021,5,5,1,New South Wales,150.605437,-34.437458 +2021,10,25,1,New South Wales,152.98111,-30.437334 +2020,10,23,1,New South Wales,149.934245,-36.578531 +2022,4,21,1,New South Wales,153.476653,-28.702104 +2023,10,20,1,New South Wales,150.985861,-34.095942 +2021,3,17,1,New South Wales,150.525483,-34.459899 +2020,1,6,1,New South Wales,150.7419,-32.9245 +2021,4,27,1,New South Wales,150.607211,-34.454586 +2021,1,7,1,New South Wales,151.521912,-30.515248 +2022,11,8,1,New South Wales,152.955799,-30.662604 +2020,9,9,1,New South Wales,153.506461,-28.61641 +2021,8,6,1,New South Wales,150.628781,-34.389175 +2021,6,10,1,New South Wales,150.51824,-34.453478 +2021,6,9,1,New South Wales,150.640515,-34.394604 +2020,10,24,1,New South Wales,151.110282,-29.762752 +2022,8,27,1,New South Wales,153.394057,-28.959163 +2020,8,25,1,New South Wales,153.555278,-28.413889 +2024,1,19,1,New South Wales,152.175471,-32.412013 +2023,8,6,1,New South Wales,149.46813,-33.675605 +2020,11,23,1,New South Wales,152.039966,-32.730546 +2023,7,12,1,New South Wales,152.939679,-30.394559 +2021,5,29,1,New South Wales,150.615743,-34.438552 +2024,9,23,2,New South Wales,153.010238,-30.363375 +2020,1,15,1,New South Wales,150.056415,-32.945732 +2023,7,14,1,New South Wales,152.157229,-31.999045 +2024,3,23,1,New South Wales,152.898219,-31.453149 +2023,4,1,1,New South Wales,150.808552,-34.098466 +2021,5,2,1,New South Wales,150.633547,-34.418396 +2021,7,15,1,New South Wales,150.513248,-34.446029 +2021,9,9,1,New South Wales,152.895774,-31.427705 +2021,7,5,1,New South Wales,152.086088,-32.727685 +2021,7,9,1,New South Wales,150.631503,-34.387893 +2023,7,29,1,New South Wales,149.467513,-33.676702 +2021,4,14,1,New South Wales,150.517837,-34.445401 +2021,6,9,1,New South Wales,150.613951,-34.433053 +2021,9,1,1,New South Wales,150.824212,-34.075632 +2021,7,7,1,New South Wales,150.630949,-34.388243 +2021,6,8,1,New South Wales,150.531277,-34.457925 +2021,7,22,1,New South Wales,150.602707,-34.418751 +2023,11,1,1,New South Wales,152.894261,-29.745376 +2022,8,2,1,New South Wales,150.792871,-34.143687 +2021,5,16,1,New South Wales,153.278058,-28.679028 +2020,6,5,1,New South Wales,153.104235,-29.479944 +2023,2,8,1,New South Wales,153.103731,-29.485646 +2021,1,17,1,New South Wales,150.901197,-33.990352 +2021,7,3,1,New South Wales,150.523257,-34.466012 +2021,6,1,1,New South Wales,150.616267,-34.438093 +2022,10,28,1,New South Wales,152.82352,-31.235485 +2021,4,6,1,New South Wales,150.607896,-34.422946 +2021,5,7,1,New South Wales,150.616054,-34.435628 +2021,5,24,1,New South Wales,150.51648,-34.450053 +2021,5,12,1,New South Wales,150.516841,-34.454054 +2020,10,12,1,New South Wales,149.952917,-36.681355 +2021,6,17,1,New South Wales,150.604207,-34.438984 +2021,7,31,1,New South Wales,150.520432,-34.465837 +2023,10,6,1,New South Wales,151.010606,-29.729832 +2021,6,18,1,New South Wales,150.642379,-34.395623 +2021,5,2,1,New South Wales,150.615448,-34.435535 +2023,2,16,1,New South Wales,153.251164,-28.764473 +2021,5,6,1,New South Wales,150.638856,-34.491452 +2024,9,21,1,New South Wales,146.595319,-34.772745 +2021,6,2,1,New South Wales,150.616517,-34.438125 +2021,7,7,1,New South Wales,153.101236,-29.489904 +2020,11,2,1,New South Wales,149.977333,-36.564828 +2021,5,12,1,New South Wales,150.633069,-34.41763 +2020,9,12,1,New South Wales,153.103838,-29.485515 +2023,9,7,1,New South Wales,150.816513,-33.686813 +2021,6,26,1,New South Wales,150.627424,-34.420261 +2021,4,26,1,New South Wales,150.609511,-34.418948 +2021,7,13,1,New South Wales,150.512846,-34.446742 +2021,5,1,1,New South Wales,150.637928,-34.488856 +2020,1,26,1,New South Wales,152.34022,-31.98075 +2020,7,2,1,New South Wales,150.659729,-33.527077 +2021,6,12,1,New South Wales,150.644426,-34.39632 +2021,1,22,1,New South Wales,152.914426,-31.486275 +2023,9,5,1,New South Wales,152.92173,-31.480991 +2021,5,13,1,New South Wales,150.640181,-34.493119 +2022,1,10,1,New South Wales,152.063573,-32.706411 +2024,7,17,1,New South Wales,151.083081,-29.730169 +2021,7,20,1,New South Wales,150.51627,-34.448317 +2021,7,1,1,New South Wales,150.513063,-34.447116 +2022,6,22,1,New South Wales,152.969818,-29.730798 +2020,1,19,1,New South Wales,152.909438,-31.447377 +2021,12,31,1,New South Wales,153.314983,-28.949201 +2021,7,13,1,New South Wales,150.626766,-34.385421 +2024,6,10,1,New South Wales,152.925841,-31.452768 +2022,7,9,1,New South Wales,150.185309,-29.164403 +2022,9,30,1,New South Wales,153.314983,-28.949201 +2023,4,15,1,New South Wales,153.110506,-29.490222 +2021,6,18,1,New South Wales,150.618854,-34.436277 +2021,4,25,1,New South Wales,150.614244,-34.429651 +2020,11,9,1,New South Wales,152.917332,-31.457772 +2021,3,8,1,New South Wales,150.635562,-34.485105 +2021,5,29,1,New South Wales,150.639098,-34.491358 +2022,3,17,1,New South Wales,153.273129,-28.93162 +2022,9,24,1,New South Wales,153.30216,-28.819412 +2023,11,6,1,New South Wales,153.497766,-28.769005 +2022,3,18,1,New South Wales,153.108178,-29.490231 +2021,4,21,1,New South Wales,150.632602,-34.392891 +2020,2,4,1,New South Wales,152.8983,-31.443404 +2021,5,15,1,New South Wales,150.602885,-34.435352 +2021,7,2,1,New South Wales,153.317062,-28.826946 +2021,6,3,1,New South Wales,150.637029,-34.48828 +2020,10,26,1,New South Wales,151.512471,-30.655961 +2020,4,2,1,New South Wales,152.755607,-31.732573 +2021,3,16,1,New South Wales,150.520889,-34.454073 +2020,10,14,1,New South Wales,152.746918,-31.539121 +2021,7,14,1,New South Wales,150.627012,-34.420983 +2021,1,16,1,New South Wales,153.46332,-28.6759 +2021,5,19,1,New South Wales,150.600292,-34.42863 +2021,5,22,1,New South Wales,150.517216,-34.452024 +2021,8,5,1,New South Wales,150.516743,-34.4364 +2021,10,7,1,New South Wales,150.595561,-34.514666 +2021,6,29,1,New South Wales,150.522413,-34.465823 +2020,1,14,1,New South Wales,150.809,-34.20866 +2020,1,12,1,New South Wales,152.880189,-31.423627 +2021,11,17,1,New South Wales,153.359208,-28.645253 +2020,1,14,1,New South Wales,150.83898,-34.05342 +2022,6,26,1,New South Wales,152.914099,-31.460115 +2020,11,27,1,New South Wales,152.905121,-31.448906 +2021,2,9,1,New South Wales,153.311634,-28.820975 +2023,1,20,1,New South Wales,152.817107,-31.431247 +2021,9,7,1,New South Wales,150.644881,-34.401414 +2021,5,27,1,New South Wales,150.639743,-34.393444 +2021,6,16,1,New South Wales,150.603273,-34.437 +2021,7,19,1,New South Wales,150.516339,-34.448211 +2020,4,3,1,New South Wales,150.058029,-33.772769 +2021,8,25,1,New South Wales,150.12983,-34.43494 +2022,10,9,1,New South Wales,152.786625,-31.629861 +2021,5,15,1,New South Wales,150.516314,-34.449066 +2021,10,4,1,New South Wales,153.438638,-28.203027 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2021,3,31,1,New South Wales,150.607575,-34.421984 +2020,9,22,1,New South Wales,149.577506,-33.419281 +2023,7,9,1,New South Wales,153.104106,-29.483736 +2021,8,20,1,New South Wales,150.522677,-34.464269 +2020,9,24,1,New South Wales,153.411697,-28.821838 +2020,12,3,1,New South Wales,149.967708,-36.441911 +2020,1,5,1,New South Wales,152.404167,-31.945815 +2021,2,25,1,New South Wales,153.435927,-28.611007 +2021,5,25,1,New South Wales,150.619785,-34.439153 +2021,5,12,1,New South Wales,150.615751,-34.433269 +2020,12,6,1,New South Wales,149.960499,-36.288011 +2021,10,25,1,New South Wales,152.995701,-30.415077 +2023,7,6,1,New South Wales,152.900904,-30.523239 +2020,9,17,1,New South Wales,152.897238,-31.451422 +2021,5,23,1,New South Wales,150.515499,-34.450853 +2022,9,15,1,New South Wales,153.442425,-28.680143 +2021,5,31,1,New South Wales,150.61616,-34.438037 +2021,6,19,1,New South Wales,150.519834,-34.452573 +2024,1,2,1,New South Wales,152.918769,-31.468662 +2020,2,8,1,New South Wales,152.908326,-31.435399 +2021,4,14,1,New South Wales,150.636938,-34.395725 +2021,6,19,1,New South Wales,150.520284,-34.465681 +2023,12,23,1,New South Wales,152.1103,-32.7787 +2021,5,31,1,New South Wales,150.523791,-34.470043 +2024,2,25,1,New South Wales,150.824772,-34.150689 +2021,4,24,1,New South Wales,150.630597,-34.388777 +2021,6,27,1,New South Wales,150.631528,-34.387795 +2022,9,20,1,New South Wales,152.106248,-32.729413 +2022,6,12,1,New South Wales,152.073546,-32.715121 +2021,6,14,1,New South Wales,150.521198,-34.465681 +2020,1,31,1,New South Wales,153.611163,-28.662456 +2021,5,11,1,New South Wales,150.605208,-34.427185 +2021,5,27,1,New South Wales,150.619274,-34.439513 +2023,11,25,1,New South Wales,152.178297,-28.636013 +2021,8,10,1,New South Wales,150.541384,-34.546225 +2021,5,15,1,New South Wales,150.523798,-34.463516 +2021,6,6,1,New South Wales,150.606755,-34.429388 +2021,4,10,1,New South Wales,150.63348,-34.489825 +2021,7,10,1,New South Wales,153.110184,-29.488317 +2021,7,14,1,New South Wales,150.662721,-34.454064 +2023,7,14,1,New South Wales,152.056847,-32.737295 +2021,6,8,1,New South Wales,150.607784,-34.430679 +2020,10,11,1,New South Wales,149.959933,-36.657162 +2021,4,26,1,New South Wales,150.637359,-34.488151 +2023,9,18,1,New South Wales,152.858239,-31.461955 +2024,5,1,1,New South Wales,152.065281,-32.710517 +2021,2,26,1,New South Wales,151.634162,-32.6193 +2021,5,11,1,New South Wales,150.627858,-34.389878 +2021,5,14,1,New South Wales,150.527837,-34.466456 +2021,5,20,1,New South Wales,153.351814,-28.8907 +2021,8,16,1,New South Wales,153.282276,-28.869759 +2021,6,8,1,New South Wales,150.607807,-34.430652 +2021,5,2,1,New South Wales,150.637456,-34.423719 +2023,5,15,1,New South Wales,153.103886,-29.489568 +2021,8,20,1,New South Wales,152.788922,-30.117272 +2023,9,16,1,New South Wales,151.238912,-33.127838 +2021,8,6,1,New South Wales,150.604704,-34.427292 +2024,8,16,1,New South Wales,152.524588,-32.337819 +2020,11,10,1,New South Wales,153.283781,-28.98326 +2021,6,6,1,New South Wales,150.640031,-34.398661 +2021,7,5,1,New South Wales,150.976896,-34.086596 +2021,6,18,1,New South Wales,151.54528,-31.582975 +2023,12,22,1,New South Wales,152.792734,-31.641753 +2021,11,17,1,New South Wales,152.910682,-31.434972 +2021,6,5,1,New South Wales,150.519486,-34.456595 +2021,8,5,1,New South Wales,150.520477,-34.465784 +2021,5,16,1,New South Wales,150.601024,-34.427779 +2022,11,17,1,New South Wales,152.788781,-30.895519 +2023,9,25,1,New South Wales,152.920655,-29.701378 +2020,7,28,1,New South Wales,152.248544,-30.059088 +2021,3,31,1,New South Wales,150.607575,-34.421984 +2021,8,11,1,New South Wales,152.439684,-31.817654 +2022,1,30,1,New South Wales,153.100416,-29.491128 +2020,11,10,1,New South Wales,152.778159,-31.360232 +2021,10,7,1,New South Wales,153.101199,-29.489998 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2023,10,22,1,New South Wales,153.225699,-29.982234 +2020,7,1,1,New South Wales,153.033328,-30.386222 +2021,6,10,1,New South Wales,150.61398,-34.433189 +2021,7,30,1,New South Wales,150.651029,-34.400928 +2021,5,27,1,New South Wales,150.616225,-34.451444 +2022,9,7,1,New South Wales,150.82001,-34.098495 +2020,10,9,1,New South Wales,152.896425,-29.629872 +2021,3,15,1,New South Wales,153.292802,-28.864663 +2021,11,26,1,New South Wales,152.056954,-32.737563 +2020,11,,1,New South Wales,150.620818,-34.350933 +2021,3,16,1,New South Wales,150.635165,-34.487991 +2020,2,15,1,New South Wales,152.922483,-31.457655 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2021,12,1,1,New South Wales,152.06372,-32.705843 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2021,6,2,1,New South Wales,150.603681,-34.437603 +2021,5,14,1,New South Wales,150.601544,-34.4286 +2021,10,10,1,New South Wales,153.401902,-28.25933 +2020,12,10,1,New South Wales,153.377477,-28.85174 +2021,11,18,1,New South Wales,150.984157,-33.970394 +2021,4,20,1,New South Wales,150.637375,-34.422338 +2021,12,1,1,New South Wales,150.122991,-31.071707 +2021,5,26,1,New South Wales,150.63072,-34.420659 +2021,7,30,1,New South Wales,150.646162,-34.397634 +2021,6,27,1,New South Wales,150.51381,-34.447258 +2021,4,24,1,New South Wales,150.528978,-34.470202 +2021,5,24,1,New South Wales,150.631527,-34.387813 +2020,5,10,1,New South Wales,150.065904,-33.774201 +2021,3,4,1,New South Wales,150.608992,-34.420371 +2021,6,10,1,New South Wales,150.627181,-34.386124 +2021,5,15,1,New South Wales,150.520355,-34.454071 +2021,6,11,1,New South Wales,150.630872,-34.42068 +2023,7,21,1,New South Wales,150.798126,-34.11278 +2020,10,10,1,New South Wales,152.993961,-30.778676 +2023,9,17,1,New South Wales,153.241488,-28.918802 +2021,5,11,1,New South Wales,150.637387,-34.423817 +2022,5,23,1,New South Wales,153.110511,-29.490189 +2024,8,21,1,New South Wales,152.015707,-32.296325 +2023,7,16,1,New South Wales,153.319002,-28.821014 +2021,6,18,1,New South Wales,150.513761,-34.446337 +2021,6,9,1,New South Wales,150.521515,-34.465661 +2021,11,3,1,New South Wales,152.824553,-29.813574 +2022,12,6,1,New South Wales,152.166754,-32.745404 +2023,9,30,1,New South Wales,152.929776,-31.460649 +2023,3,25,1,New South Wales,153.611091,-28.672041 +2021,5,25,1,New South Wales,150.631025,-34.388245 +2021,8,13,1,New South Wales,150.513821,-34.44724 +2021,5,10,1,New South Wales,150.521608,-34.466934 +2023,9,24,1,New South Wales,152.791822,-31.641127 +2022,2,9,1,New South Wales,152.897784,-31.442842 +2021,4,22,1,New South Wales,150.637007,-34.485602 +2021,9,19,1,New South Wales,150.633665,-34.418462 +2023,9,28,1,New South Wales,153.434223,-28.489191 +2021,6,6,1,New South Wales,150.640074,-34.398688 +2021,8,6,1,New South Wales,150.632614,-34.418306 +2021,9,7,1,New South Wales,151.307585,-30.588898 +2021,5,16,1,New South Wales,150.628865,-34.389258 +2021,7,16,1,New South Wales,150.595647,-34.414159 +2021,5,10,1,New South Wales,150.609148,-34.420635 +2020,10,10,1,New South Wales,152.98111,-30.437334 +2021,6,8,1,New South Wales,152.124133,-32.719895 +2021,6,25,1,New South Wales,150.627369,-34.420287 +2023,12,17,1,New South Wales,152.924412,-31.460164 +2021,5,9,1,New South Wales,150.61015,-34.454977 +2021,4,25,1,New South Wales,150.614422,-34.429519 +2021,11,17,1,New South Wales,153.142663,-28.645111 +2023,4,21,1,New South Wales,153.103945,-29.489601 +2024,5,20,1,New South Wales,149.866517,-32.565851 +2022,10,1,1,New South Wales,153.101258,-29.489914 +2021,5,23,1,New South Wales,153.48113,-28.228416 +2021,4,29,1,New South Wales,150.616821,-34.399418 +2022,2,14,1,New South Wales,152.907905,-31.468404 +2021,5,25,1,New South Wales,150.602626,-34.43642 +2021,6,25,1,New South Wales,150.604918,-34.4377 +2020,11,15,1,New South Wales,149.966791,-36.502277 +2023,1,12,1,New South Wales,152.863317,-31.143567 +2020,10,6,1,New South Wales,150.647999,-33.538902 +2023,9,6,1,New South Wales,153.324023,-28.879696 +2021,11,2,1,New South Wales,152.891714,-31.442328 +2022,,,1,New South Wales,150.582601,-34.5 +2021,5,1,1,New South Wales,150.634425,-34.420054 +2023,11,26,1,New South Wales,153.10387,-29.489554 +2020,11,11,1,New South Wales,153.109487,-29.490493 +2021,5,28,1,New South Wales,150.639084,-34.491493 +2022,6,13,1,New South Wales,152.064147,-32.706714 +2023,1,12,1,New South Wales,152.822192,-31.42428 +2021,4,8,1,New South Wales,150.517521,-34.446143 +2024,1,16,1,New South Wales,152.821589,-30.912069 +2023,10,20,1,New South Wales,150.987529,-34.029065 +2021,5,12,1,New South Wales,150.633214,-34.417488 +2022,6,26,1,New South Wales,153.104165,-29.48375 +2021,7,27,1,New South Wales,152.445366,-31.914027 +2023,3,31,1,New South Wales,152.9259,-31.44678 +2022,11,19,1,New South Wales,152.794945,-30.901933 +2021,1,7,1,New South Wales,153.411497,-28.903544 +2023,1,18,1,New South Wales,153.497534,-28.694006 +2021,5,21,1,New South Wales,150.614949,-34.431657 +2021,5,15,1,New South Wales,150.637362,-34.423934 +2022,10,11,1,New South Wales,152.538378,-30.541214 +2022,1,20,1,New South Wales,150.638281,-33.839982 +2023,8,21,1,New South Wales,150.785817,-33.715297 +2020,1,21,1,New South Wales,153.103983,-29.489563 +2024,6,23,1,New South Wales,153.071788,-30.887381 +2024,6,3,1,Queensland,153.36257,-27.844633 +2023,9,12,1,New South Wales,153.080084,-30.352004 +2020,6,11,1,New South Wales,152.909185,-31.452532 +2021,5,26,1,New South Wales,150.638989,-34.491752 +2020,12,,1,New South Wales,152.791684,-31.630803 +2023,1,4,1,New South Wales,152.811638,-29.514957 +2021,5,26,1,New South Wales,150.639249,-34.392803 +2024,3,14,1,New South Wales,152.077945,-32.723753 +2021,8,31,1,New South Wales,153.429844,-28.711115 +2021,9,5,1,New South Wales,150.535523,-34.497497 +2021,1,5,1,New South Wales,150.010258,-33.767672 +2023,3,22,1,New South Wales,152.875718,-31.466242 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2022,7,17,1,New South Wales,153.093517,-29.488798 +2022,6,30,1,New South Wales,149.554471,-33.492121 +2021,5,24,1,New South Wales,150.517475,-34.451371 +2024,1,25,1,New South Wales,153.103892,-29.489582 +2022,1,13,1,New South Wales,150.8369,-34.056619 +2021,6,13,1,New South Wales,150.625272,-34.384428 +2021,4,3,1,New South Wales,150.523833,-34.452401 +2021,10,6,1,New South Wales,150.595561,-34.514666 +2022,6,26,1,New South Wales,152.795028,-31.636454 +2021,5,8,1,New South Wales,150.609235,-34.420619 +2021,5,31,1,New South Wales,150.604681,-34.424677 +2021,7,19,1,New South Wales,153.466171,-28.237404 +2023,8,15,1,New South Wales,153.109921,-29.490142 +2022,10,17,1,New South Wales,153.295489,-28.876261 +2023,9,26,1,New South Wales,151.778535,-32.589101 +2020,2,12,1,New South Wales,153.40107,-28.260281 +2023,2,19,1,New South Wales,153.302055,-28.847839 +2021,6,15,1,New South Wales,150.615829,-34.433207 +2023,10,20,1,New South Wales,150.785329,-33.705146 +2021,1,27,1,New South Wales,150.082135,-33.747262 +2021,9,11,1,New South Wales,150.517161,-34.448371 +2021,4,18,1,New South Wales,150.616809,-34.430504 +2021,7,10,1,New South Wales,150.641127,-34.393714 +2024,5,3,1,New South Wales,151.847888,-32.124511 +2021,4,13,1,New South Wales,150.616857,-34.434201 +2023,7,30,1,New South Wales,153.418498,-28.592481 +2021,6,8,1,New South Wales,150.626005,-34.388887 +2021,3,7,1,New South Wales,150.518237,-34.446572 +2024,2,5,1,New South Wales,152.899231,-31.474269 +2023,9,22,1,New South Wales,153.402228,-28.960679 +2021,9,30,1,New South Wales,152.855893,-29.316805 +2023,10,19,1,New South Wales,152.907698,-31.470808 +2020,5,30,1,New South Wales,151.66621,-30.50157 +2020,7,27,1,New South Wales,153.489654,-28.66697 +2020,12,4,1,New South Wales,152.902868,-31.44133 +2021,4,20,1,New South Wales,150.632015,-34.393655 +2021,6,3,1,New South Wales,150.519932,-34.438935 +2021,7,15,1,New South Wales,150.978499,-34.086199 +2021,3,9,1,New South Wales,152.88521,-31.440545 +2020,6,1,1,New South Wales,150.746881,-33.499256 +2023,11,27,1,New South Wales,150.785499,-33.703494 +2022,12,19,1,New South Wales,152.910694,-31.441544 +2024,9,5,1,New South Wales,152.184769,-31.577586 +2022,11,30,1,New South Wales,152.754102,-30.882465 +2022,8,24,1,New South Wales,152.373714,-31.914523 +2021,5,19,1,New South Wales,150.516403,-34.450087 +2023,1,4,1,New South Wales,151.335354,-30.638859 +2023,7,14,1,New South Wales,153.614981,-28.660834 +2021,11,1,1,New South Wales,153.298855,-28.889328 +2023,11,27,1,New South Wales,153.102658,-29.497585 +2021,5,16,1,New South Wales,150.523851,-34.463563 +2020,7,24,1,New South Wales,151.974623,-32.472237 +2021,3,3,1,New South Wales,150.657761,-34.455547 +2023,6,27,1,New South Wales,153.108156,-29.490236 +2024,8,29,1,New South Wales,152.077179,-32.72245 +2020,12,4,1,New South Wales,152.902369,-31.441884 +2021,3,24,1,New South Wales,150.517262,-34.451592 +2022,8,5,1,New South Wales,153.23033,-28.889525 +2021,10,18,1,New South Wales,153.316972,-28.921541 +2021,7,7,1,New South Wales,150.627516,-34.421624 +2023,8,12,1,New South Wales,152.441161,-30.520641 +2020,6,10,1,New South Wales,152.9083,-31.438518 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2021,5,21,1,New South Wales,153.140083,-30.211837 +2021,6,12,1,New South Wales,150.616184,-34.431068 +2020,10,21,1,New South Wales,153.328184,-28.831105 +2021,5,4,1,New South Wales,150.611755,-34.419631 +2022,2,3,1,New South Wales,152.898657,-31.4423 +2020,10,20,1,New South Wales,149.949786,-36.632867 +2020,11,4,1,New South Wales,151.661322,-32.659096 +2023,2,13,1,New South Wales,152.785873,-31.490778 +2021,8,28,1,New South Wales,150.799936,-34.108194 +2020,10,17,1,New South Wales,152.925776,-31.447463 +2021,8,6,1,New South Wales,153.561275,-28.642464 +2021,5,4,1,New South Wales,150.637203,-34.423804 +2024,2,10,1,New South Wales,153.10975,-29.490199 +2021,5,30,1,New South Wales,150.517395,-34.446348 +2023,8,22,1,New South Wales,153.206597,-28.357926 +2024,7,29,1,New South Wales,152.391256,-29.441323 +2022,6,21,1,New South Wales,152.896425,-29.629872 +2021,6,27,1,New South Wales,150.51907,-34.443822 +2020,12,9,1,New South Wales,153.315098,-28.940993 +2023,10,28,1,New South Wales,152.194095,-32.224416 +2024,5,21,1,New South Wales,152.86618,-31.30501 +2022,4,28,1,New South Wales,152.9249,-31.214814 +2022,6,17,1,New South Wales,151.978516,-32.564229 +2022,6,14,1,New South Wales,153.425399,-28.807966 +2020,10,11,1,New South Wales,149.959933,-36.657162 +2021,1,25,1,New South Wales,153.091017,-29.487509 +2021,5,25,1,New South Wales,151.867683,-32.744554 +2023,6,8,1,New South Wales,150.80817,-34.11002 +2021,5,29,1,New South Wales,150.617114,-34.439309 +2020,10,6,1,New South Wales,149.959933,-36.657162 +2020,8,23,1,New South Wales,153.005012,-28.627092 +2022,5,5,1,New South Wales,152.924675,-31.443012 +2021,9,23,1,New South Wales,150.639829,-34.398125 +2021,6,10,1,New South Wales,150.521653,-34.465393 +2021,5,12,1,New South Wales,150.627827,-34.389833 +2021,6,5,1,New South Wales,150.523696,-34.438614 +2024,3,7,1,New South Wales,152.380162,-31.913207 +2024,2,10,1,New South Wales,152.540148,-32.059961 +2020,2,12,1,New South Wales,150.790492,-34.142899 +2022,9,24,1,New South Wales,151.634,-30.509 +2023,9,13,1,New South Wales,150.762407,-34.185552 +2020,7,22,1,New South Wales,152.805204,-31.127013 +2023,10,18,1,New South Wales,149.353274,-36.263594 +2020,1,14,1,New South Wales,152.924743,-31.474015 +2021,7,4,1,New South Wales,150.513836,-34.446384 +2024,1,16,1,New South Wales,152.82203,-31.13153 +2020,11,3,1,New South Wales,152.775987,-31.506659 +2021,9,29,1,New South Wales,150.82303,-34.150123 +2022,4,1,1,New South Wales,146.535084,-34.756999 +2023,2,25,1,New South Wales,153.394923,-28.960734 +2022,7,7,1,New South Wales,149.81114,-29.375724 +2020,1,6,1,New South Wales,153.103859,-29.485566 +2020,12,11,1,New South Wales,150.102656,-33.773023 +2021,5,13,1,New South Wales,150.828826,-34.151791 +2020,7,23,1,New South Wales,152.804126,-31.125513 +2021,4,17,1,New South Wales,150.616212,-34.431213 +2021,3,18,1,New South Wales,150.534622,-34.462266 +2020,2,13,1,New South Wales,153.47548,-28.701807 +2021,6,14,1,New South Wales,150.640089,-34.396985 +2024,1,19,1,New South Wales,152.741968,-31.200077 +2023,10,25,1,New South Wales,152.190362,-32.237057 +2021,3,4,1,New South Wales,150.610336,-34.432766 +2021,7,7,1,New South Wales,150.64142,-34.395685 +2021,9,8,1,New South Wales,150.896516,-33.999498 +2021,1,4,1,New South Wales,153.110211,-29.488349 +2020,4,2,1,New South Wales,152.675853,-31.862754 +2021,3,6,1,New South Wales,150.530575,-34.469955 +2021,4,25,1,New South Wales,150.638337,-34.485925 +2023,9,21,1,New South Wales,152.606185,-30.341428 +2023,6,24,1,New South Wales,152.787629,-31.636545 +2021,3,5,1,New South Wales,150.609921,-34.432848 +2021,7,13,1,New South Wales,150.539028,-34.441196 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2020,5,9,1,New South Wales,150.809213,-34.100058 +2020,4,28,1,New South Wales,153.339943,-28.837646 +2022,9,8,1,New South Wales,152.78476,-31.630324 +2020,9,14,1,New South Wales,150.07184,-31.18279 +2024,2,23,1,New South Wales,150.785264,-33.711774 +2021,9,28,1,New South Wales,153.014083,-28.435381 +2020,3,1,1,New South Wales,150.765084,-34.130358 +2023,1,2,1,New South Wales,152.785389,-31.634082 +2021,12,1,1,New South Wales,151.47215,-33.386167 +2021,3,25,1,New South Wales,150.808249,-34.098098 +2024,1,18,1,New South Wales,152.924512,-30.504726 +2023,12,20,1,New South Wales,150.783227,-33.718597 +2021,7,9,1,New South Wales,150.513123,-34.447289 +2021,5,31,1,New South Wales,150.638491,-34.491265 +2021,5,17,1,New South Wales,150.600173,-34.427455 +2023,9,20,1,New South Wales,153.299233,-28.826058 +2020,10,13,1,New South Wales,149.930096,-36.638123 +2020,2,2,1,New South Wales,153.303792,-28.890141 +2021,5,11,1,New South Wales,152.404167,-31.945815 +2022,10,25,1,New South Wales,152.827999,-31.652303 +2023,10,23,1,New South Wales,150.733563,-34.210123 +2021,5,24,1,New South Wales,150.595767,-34.428595 +2022,2,8,1,New South Wales,152.503083,-32.371029 +2023,7,23,1,New South Wales,152.049335,-32.747849 +2023,2,19,1,New South Wales,152.913871,-31.447822 +2021,1,30,1,New South Wales,153.328577,-28.81682 +2020,10,29,1,New South Wales,149.934245,-36.578531 +2021,6,4,1,New South Wales,150.630797,-34.42066 +2020,9,5,1,New South Wales,153.423146,-28.72786 +2021,7,2,1,New South Wales,150.641705,-34.396764 +2021,6,15,1,New South Wales,150.615643,-34.432122 +2023,12,25,1,New South Wales,153.110844,-29.488223 +2022,9,28,1,New South Wales,153.101231,-29.489918 +2023,10,25,1,New South Wales,152.192089,-32.216754 +2022,10,5,1,New South Wales,153.294316,-28.857212 +2023,2,26,1,New South Wales,152.361427,-31.925977 +2021,6,28,1,New South Wales,150.523085,-34.466288 +2020,9,8,1,New South Wales,150.00032,-31.12692 +2022,1,8,1,New South Wales,152.163984,-32.713744 +2020,8,1,1,New South Wales,149.190889,-33.164156 +2023,5,25,1,New South Wales,150.784197,-33.717009 +2024,6,13,1,New South Wales,149.979346,-32.638624 +2021,9,23,1,New South Wales,150.6129,-34.448593 +2021,5,2,1,New South Wales,153.321764,-28.823898 +2023,8,4,1,New South Wales,152.908952,-31.467945 +2020,4,17,1,New South Wales,153.103845,-29.485482 +2021,7,8,1,New South Wales,150.513094,-34.447171 +2022,1,29,1,New South Wales,153.295529,-28.847195 +2020,7,20,1,New South Wales,152.813154,-31.132276 +2021,6,17,1,New South Wales,150.513793,-34.446365 +2021,6,28,1,New South Wales,150.523268,-34.466364 +2020,10,14,1,New South Wales,153.450417,-28.550673 +2022,11,18,1,New South Wales,152.788781,-30.895519 +2023,9,9,1,New South Wales,152.878285,-31.427361 +2021,2,3,1,New South Wales,152.916758,-31.434283 +2022,8,30,1,New South Wales,149.325289,-36.292108 +2021,7,12,1,New South Wales,153.103822,-29.485529 +2021,4,16,1,New South Wales,150.53284,-34.475473 +2021,7,8,1,New South Wales,153.33331,-28.86133 +2023,11,8,1,New South Wales,153.109369,-29.490493 +2022,8,12,1,New South Wales,150.870984,-34.034041 +2024,2,15,1,New South Wales,150.78279,-33.719284 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2021,3,2,1,New South Wales,150.52007,-34.446429 +2021,6,22,1,New South Wales,152.062857,-32.709368 +2020,11,20,1,New South Wales,151.800994,-32.807643 +2021,5,18,1,New South Wales,150.523922,-34.463771 +2023,8,31,1,New South Wales,150.783035,-33.718593 +2021,4,22,1,New South Wales,150.616291,-34.433415 +2021,3,28,1,New South Wales,150.610319,-34.429556 +2021,3,4,1,New South Wales,150.086896,-33.773977 +2021,7,9,1,New South Wales,152.173592,-32.664896 +2022,8,26,1,New South Wales,153.554092,-28.389651 +2023,7,9,1,New South Wales,153.101569,-29.489685 +2024,7,18,1,New South Wales,151.197726,-33.086731 +2022,9,24,1,New South Wales,153.104128,-29.478571 +2021,3,11,1,New South Wales,150.514255,-34.445824 +2022,11,24,1,New South Wales,153.235702,-28.8863 +2021,4,23,1,New South Wales,150.516497,-34.450215 +2023,6,8,1,New South Wales,150.81944,-34.10841 +2023,2,1,1,New South Wales,153.510476,-28.808868 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2021,3,21,1,New South Wales,150.607953,-34.422081 +2021,5,13,1,New South Wales,150.617132,-34.434089 +2020,4,15,1,New South Wales,151.897628,-32.490361 +2021,4,1,1,New South Wales,150.604004,-34.440369 +2024,6,21,1,New South Wales,152.518808,-32.066025 +2023,9,23,1,New South Wales,150.985306,-34.096129 +2021,1,3,1,New South Wales,153.109465,-29.490516 +2023,1,20,1,New South Wales,153.110157,-29.490255 +2020,11,5,1,New South Wales,152.899669,-31.450328 +2022,1,13,1,New South Wales,153.562348,-28.384052 +2021,6,7,1,New South Wales,153.007852,-28.623993 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2020,6,8,1,New South Wales,150.658736,-33.526675 +2020,10,31,1,New South Wales,149.934245,-36.578531 +2024,6,7,1,New South Wales,152.900195,-31.467019 +2020,5,5,1,New South Wales,150.055873,-33.771735 +2022,1,16,1,New South Wales,152.915397,-31.482553 +2020,7,2,1,New South Wales,151.740305,-32.397187 +2021,4,14,1,New South Wales,150.609132,-34.420788 +2023,11,1,1,New South Wales,152.708331,-31.53525 +2022,12,23,1,New South Wales,153.101242,-29.489932 +2021,9,2,1,New South Wales,150.600145,-34.446712 +2021,6,12,1,New South Wales,150.519899,-34.452565 +2023,8,22,1,New South Wales,151.246163,-33.170112 +2022,12,29,1,New South Wales,150.87066,-34.044618 +2023,1,4,1,New South Wales,150.645373,-33.7527 +2021,3,8,1,New South Wales,150.602967,-34.437067 +2021,3,7,1,New South Wales,150.603481,-34.435454 +2023,11,19,1,New South Wales,153.033673,-30.41867 +2021,9,16,1,New South Wales,152.568548,-31.971351 +2023,9,23,1,New South Wales,150.650098,-33.559749 +2023,5,13,1,New South Wales,152.0637,-32.706529 +2020,11,26,1,New South Wales,149.917922,-36.474664 +2021,4,25,1,New South Wales,150.635175,-34.420105 +2022,8,12,1,New South Wales,153.168497,-28.641007 +2020,1,12,1,New South Wales,153.104283,-29.480014 +2022,4,2,1,New South Wales,152.732519,-31.472074 +2021,4,10,1,New South Wales,153.278128,-28.679019 +2023,11,3,1,New South Wales,152.194095,-32.224416 +2022,7,8,1,New South Wales,152.07148,-32.709625 +2021,10,7,1,New South Wales,152.091699,-28.784935 +2021,5,6,1,New South Wales,150.621981,-34.397743 +2021,6,10,1,New South Wales,150.604292,-34.437904 +2023,10,1,1,New South Wales,150.785873,-33.703919 +2021,7,11,1,New South Wales,150.513134,-34.447307 +2021,9,7,1,New South Wales,153.110495,-29.490119 +2023,11,1,1,New South Wales,152.200143,-32.231881 +2021,5,9,1,New South Wales,150.632587,-34.418134 +2023,2,16,1,New South Wales,152.786931,-31.629232 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2021,6,8,1,New South Wales,150.609486,-34.43092 +2021,9,3,1,New South Wales,152.373272,-31.915923 +2021,3,8,1,New South Wales,150.519257,-34.448144 +2024,8,22,1,New South Wales,151.98208,-32.282843 +2020,12,14,1,New South Wales,152.932774,-31.47032 +2021,5,17,1,New South Wales,150.614064,-34.43292 +2023,8,2,1,New South Wales,152.02845,-32.191443 +2020,10,18,1,New South Wales,149.919967,-36.589766 +2023,6,8,1,New South Wales,150.81944,-34.10841 +2022,3,4,1,New South Wales,152.374028,-31.915694 +2020,8,25,1,New South Wales,152.955501,-30.66791 +2021,5,2,1,New South Wales,150.61847,-34.39918 +2021,6,8,1,New South Wales,150.514058,-34.455025 +2024,3,3,1,New South Wales,150.785428,-33.704473 +2022,2,1,1,New South Wales,152.93921,-30.4057 +2023,12,12,1,New South Wales,152.651081,-29.568082 +2021,4,20,1,New South Wales,150.610301,-34.419116 +2021,6,20,1,New South Wales,150.513794,-34.446338 +2020,3,28,1,New South Wales,150.121111,-35.066402 +2022,1,19,1,New South Wales,153.556353,-28.399896 +2021,11,17,1,New South Wales,152.962989,-30.653909 +2021,7,7,1,New South Wales,150.521589,-34.465356 +2021,10,1,1,New South Wales,150.972611,-34.122691 +2021,10,31,1,New South Wales,150.615434,-34.437924 +2023,9,15,1,New South Wales,150.786446,-33.706012 +2021,6,19,1,New South Wales,150.602708,-34.425188 +2021,4,27,1,New South Wales,150.616704,-34.429618 +2023,12,11,2,New South Wales,153.420852,-28.982755 +2022,12,28,1,New South Wales,152.793571,-31.638956 +2023,7,7,1,New South Wales,152.089005,-32.444733 +2023,5,6,1,New South Wales,152.6754,-28.337076 +2020,11,6,1,New South Wales,149.976368,-36.555504 +2020,11,26,1,New South Wales,149.917922,-36.474664 +2021,6,11,1,New South Wales,150.521564,-34.465473 +2021,3,17,1,New South Wales,150.60329,-34.439471 +2021,4,22,1,New South Wales,153.071778,-30.885673 +2023,5,5,1,New South Wales,149.967242,-36.576557 +2021,6,5,1,New South Wales,150.625927,-34.389733 +2020,7,27,1,New South Wales,150.80901,-34.099851 +2021,7,3,1,New South Wales,150.628011,-34.391017 +2021,5,12,1,New South Wales,150.640017,-34.491971 +2022,9,25,1,New South Wales,153.561778,-28.384598 +2021,12,1,1,New South Wales,150.120282,-31.074582 +2021,6,7,1,New South Wales,150.52474,-34.464807 +2021,4,28,1,New South Wales,150.604182,-34.434909 +2021,4,8,1,New South Wales,150.61617,-34.434611 +2023,11,1,1,New South Wales,152.192249,-32.23198 +2021,5,17,1,New South Wales,150.524154,-34.462902 +2020,2,10,1,New South Wales,153.294891,-28.817999 +2024,5,20,1,New South Wales,153.629471,-28.63754 +2021,3,14,1,New South Wales,153.09482,-30.34655 +2023,10,8,1,New South Wales,150.786004,-34.203743 +2020,5,5,1,New South Wales,150.05804,-34.90502 +2021,11,11,1,New South Wales,149.823105,-32.405872 +2020,12,25,1,New South Wales,151.003682,-34.006923 +2021,6,25,1,New South Wales,150.645206,-34.39098 +2021,2,19,1,New South Wales,152.855893,-29.316805 +2022,12,28,1,New South Wales,150.974638,-34.100506 +2021,7,27,1,New South Wales,150.59521,-34.423337 +2023,2,8,1,New South Wales,151.656196,-32.683417 +2021,9,21,1,New South Wales,152.422603,-31.904256 +2021,9,5,1,New South Wales,152.99306,-28.431739 +2021,6,26,1,New South Wales,150.629334,-34.387292 +2022,12,23,1,New South Wales,151.572474,-32.890081 +2021,7,12,1,New South Wales,150.630814,-34.386474 +2021,3,8,1,New South Wales,150.635636,-34.485169 +2021,5,13,1,New South Wales,150.516566,-34.448981 +2022,5,20,1,New South Wales,153.428156,-28.626815 +2021,1,9,1,New South Wales,152.924453,-31.444562 +2023,8,3,1,New South Wales,153.322256,-28.824246 +2020,12,9,1,New South Wales,149.960499,-36.288011 +2020,10,20,1,New South Wales,149.938155,-36.621708 +2020,6,29,1,New South Wales,153.401162,-28.257882 +2021,6,25,1,New South Wales,150.520421,-34.465837 +2023,6,29,1,New South Wales,152.934854,-30.381783 +2021,1,3,1,New South Wales,153.009644,-28.625073 +2021,6,22,1,New South Wales,150.519611,-34.463053 +2020,4,20,1,New South Wales,152.863442,-31.428833 +2022,11,1,1,New South Wales,152.784826,-31.632157 +2020,11,23,1,New South Wales,153.557778,-28.396944 +2021,10,25,1,New South Wales,152.98111,-30.437334 +2021,5,10,1,New South Wales,150.521907,-34.466372 +2021,6,25,1,New South Wales,150.520412,-34.465783 +2021,4,16,1,New South Wales,150.636107,-34.420619 +2021,5,2,1,New South Wales,150.609678,-34.436396 +2020,9,16,1,New South Wales,151.110282,-29.762752 +2023,10,31,1,New South Wales,152.192632,-32.228945 +2020,2,5,1,New South Wales,152.918886,-31.47876 +2022,6,15,1,New South Wales,152.076267,-32.723531 +2021,7,4,1,New South Wales,150.646684,-34.395669 +2024,2,26,1,New South Wales,152.899476,-31.44402 +2022,8,16,1,New South Wales,150.850922,-34.053036 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2020,11,16,1,New South Wales,149.910112,-36.460589 +2022,3,22,1,New South Wales,152.924525,-31.463537 +2020,2,18,1,New South Wales,150.71964,-34.99077 +2021,5,24,1,New South Wales,150.82332,-34.091455 +2022,11,22,1,New South Wales,150.23067,-31.026491 +2021,5,5,1,New South Wales,150.615835,-34.435696 +2021,10,11,1,New South Wales,153.014876,-28.435381 +2020,11,16,1,New South Wales,153.316984,-28.937089 +2020,11,18,1,New South Wales,151.783819,-32.611264 +2020,6,22,1,New South Wales,151.166847,-33.176969 +2020,9,2,1,New South Wales,152.536308,-32.028138 +2022,11,19,1,New South Wales,152.794945,-30.901933 +2020,11,2,1,New South Wales,149.977333,-36.564828 +2023,4,29,1,New South Wales,153.31535,-28.819753 +2024,8,27,1,New South Wales,152.714205,-31.78251 +2021,6,15,1,New South Wales,150.639801,-34.399098 +2022,8,24,1,New South Wales,151.650835,-30.333629 +2020,9,16,1,New South Wales,152.160763,-32.712341 +2023,10,10,1,New South Wales,150.784497,-33.717286 +2021,6,29,1,New South Wales,150.631656,-34.387851 +2023,9,29,1,New South Wales,151.236903,-33.167389 +2021,3,6,1,New South Wales,152.34022,-31.980755 +2022,10,12,1,New South Wales,153.293302,-28.864539 +2022,10,30,1,New South Wales,153.400618,-28.291481 +2021,5,11,1,New South Wales,150.624905,-34.39972 +2021,4,12,1,New South Wales,152.059278,-32.739099 +2021,7,30,1,New South Wales,150.626048,-34.387761 +2023,2,9,1,New South Wales,152.034303,-32.118551 +2021,4,8,1,New South Wales,150.533543,-34.481167 +2021,7,11,1,New South Wales,150.62633,-34.421259 +2021,5,17,1,New South Wales,150.632814,-34.418932 +2024,7,4,1,New South Wales,152.924126,-31.473213 +2021,5,24,1,New South Wales,150.631428,-34.387847 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2021,2,19,1,New South Wales,152.001394,-32.777801 +2021,5,24,1,New South Wales,150.515889,-34.450536 +2021,3,17,1,New South Wales,150.607514,-34.421848 +2020,11,3,1,New South Wales,149.934245,-36.578531 +2023,6,7,1,New South Wales,150.881149,-34.066635 +2023,7,16,1,New South Wales,153.103479,-29.485613 +2021,4,30,1,New South Wales,150.62421,-34.388906 +2023,9,5,1,New South Wales,152.817301,-31.450133 +2021,5,21,1,New South Wales,150.631115,-34.38739 +2020,4,26,1,New South Wales,152.916681,-31.444654 +2021,11,16,1,New South Wales,153.394944,-28.276042 +2020,5,27,1,New South Wales,149.978709,-36.441024 +2024,3,2,1,New South Wales,152.42581,-32.256754 +2023,12,11,1,New South Wales,153.043697,-30.240723 +2021,3,7,1,New South Wales,150.602955,-34.437093 +2023,11,9,1,New South Wales,152.407933,-31.932825 +2021,6,17,1,New South Wales,150.622684,-34.384017 +2021,3,9,1,New South Wales,153.277931,-28.937591 +2022,8,26,1,New South Wales,153.104278,-29.477408 +2022,7,12,1,New South Wales,153.330787,-28.93301 +2024,3,2,1,New South Wales,152.893951,-31.446093 +2020,4,4,1,New South Wales,153.104106,-29.481233 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2021,5,24,1,New South Wales,150.630875,-34.42059 +2024,7,26,1,New South Wales,152.920567,-30.505539 +2021,10,22,1,New South Wales,152.175292,-30.083437 +2021,4,13,1,New South Wales,150.520189,-34.452697 +2023,5,23,1,New South Wales,151.789818,-32.65325 +2022,12,30,1,New South Wales,153.103741,-29.485622 +2021,2,20,1,New South Wales,149.577506,-33.419281 +2022,9,8,1,New South Wales,153.301624,-28.818314 +2022,3,5,1,New South Wales,153.557183,-28.397356 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2020,8,22,1,New South Wales,152.92117,-31.479306 +2021,4,16,1,New South Wales,150.609468,-34.42047 +2020,2,13,1,New South Wales,153.104187,-29.48506 +2021,8,21,1,New South Wales,152.068005,-32.723739 +2020,9,24,1,New South Wales,152.898127,-31.443408 +2021,4,28,1,New South Wales,150.518251,-34.443156 +2021,7,20,1,New South Wales,150.630633,-34.420675 +2021,4,24,1,New South Wales,150.635211,-34.420376 +2020,9,23,1,New South Wales,153.555885,-28.399201 +2023,6,27,1,New South Wales,153.274332,-28.943575 +2021,6,1,1,New South Wales,150.529173,-34.464716 +2021,7,14,1,New South Wales,150.542192,-34.434597 +2022,4,3,1,New South Wales,153.403053,-28.260355 +2021,5,21,1,New South Wales,150.632965,-34.419395 +2021,5,11,1,New South Wales,150.609223,-34.420655 +2021,8,2,1,New South Wales,150.602039,-34.424995 +2021,5,12,1,New South Wales,150.605504,-34.427488 +2023,9,17,1,New South Wales,153.108108,-29.490567 +2021,5,25,1,New South Wales,150.521534,-34.465733 +2021,6,29,1,New South Wales,150.596103,-34.411535 +2021,6,25,1,New South Wales,152.893015,-31.272449 +2023,10,9,1,New South Wales,152.932573,-31.474899 +2020,5,16,1,New South Wales,149.314368,-36.065959 +2020,1,6,1,New South Wales,152.928339,-31.459437 +2021,8,29,1,New South Wales,150.811485,-33.366611 +2024,1,24,1,New South Wales,152.922096,-31.451705 +2020,10,20,1,New South Wales,153.278132,-28.831137 +2021,6,5,1,New South Wales,150.607305,-34.435673 +2023,1,9,1,New South Wales,151.68367,-32.515411 +2024,9,4,2,New South Wales,153.629255,-28.637597 +2022,12,14,1,New South Wales,153.322064,-28.824627 +2021,7,30,1,New South Wales,150.517085,-34.435884 +2021,6,5,1,New South Wales,150.625432,-34.389903 +2021,4,30,1,New South Wales,150.624512,-34.387848 +2020,11,8,1,New South Wales,150.016582,-36.557254 +2021,6,1,1,New South Wales,150.605694,-34.437201 +2022,3,17,1,New South Wales,153.51374,-28.21383 +2023,2,8,1,New South Wales,151.84068,-32.52093 +2021,6,2,1,New South Wales,150.521556,-34.465725 +2020,11,24,1,New South Wales,152.137467,-32.724689 +2023,7,29,1,New South Wales,152.061778,-32.711316 +2021,6,14,1,New South Wales,150.52277,-34.452263 +2021,10,1,1,New South Wales,153.10122,-29.48996 +2023,12,1,1,New South Wales,150.270899,-33.633295 +2022,1,27,1,New South Wales,150.617309,-34.440502 +2024,1,22,1,New South Wales,150.78401,-33.716958 +2021,4,20,1,New South Wales,150.61711,-34.433719 +2021,5,4,1,New South Wales,150.611755,-34.419631 +2024,8,15,1,New South Wales,152.485991,-32.351167 +2020,9,17,1,New South Wales,152.074678,-32.722295 +2021,7,11,1,New South Wales,150.662388,-34.454689 +2021,6,11,1,New South Wales,150.613309,-34.432689 +2021,2,14,1,New South Wales,152.065422,-32.74272 +2024,1,18,1,New South Wales,150.784524,-33.717517 +2021,8,22,1,New South Wales,152.90101,-31.479582 +2021,10,27,1,New South Wales,151.628875,-32.643439 +2021,8,4,1,New South Wales,150.520399,-34.465846 +2021,6,12,1,New South Wales,150.52191,-34.465903 +2021,6,3,1,New South Wales,150.604692,-34.427346 +2023,7,18,1,New South Wales,153.103473,-29.479673 +2021,6,23,1,New South Wales,150.52042,-34.45409 +2023,6,20,1,New South Wales,152.831796,-31.470148 +2023,5,7,1,New South Wales,150.785358,-33.716076 +2023,11,22,1,New South Wales,153.10335,-29.489928 +2021,7,20,1,New South Wales,150.600111,-34.419367 +2021,6,20,1,New South Wales,150.513783,-34.446319 +2021,1,29,1,New South Wales,153.103001,-29.486799 +2022,4,7,1,New South Wales,153.470376,-28.260565 +2020,10,21,1,New South Wales,152.822303,-31.254982 +2021,5,24,1,New South Wales,150.616,-34.434851 +2023,7,7,1,New South Wales,153.012516,-30.422876 +2023,1,4,1,New South Wales,152.785674,-31.629599 +2021,6,2,1,New South Wales,150.615193,-34.437234 +2023,1,21,1,New South Wales,150.802112,-34.111394 +2021,9,19,1,New South Wales,152.849552,-31.546884 +2021,9,9,1,New South Wales,153.561633,-28.367891 +2021,10,18,1,New South Wales,150.784747,-34.192296 +2021,7,23,1,New South Wales,150.521662,-34.465817 +2022,8,4,1,New South Wales,153.104197,-29.483175 +2021,4,27,1,New South Wales,150.602785,-34.435828 +2021,4,21,1,New South Wales,150.637406,-34.422771 +2023,9,27,1,New South Wales,153.071468,-30.885783 +2022,9,25,1,New South Wales,151.007507,-34.039406 +2023,11,29,1,New South Wales,153.100495,-30.30214 +2023,7,15,1,New South Wales,153.10416,-29.483787 +2021,5,20,1,New South Wales,150.63145,-34.387856 +2020,6,10,1,New South Wales,150.056592,-33.777864 +2021,8,1,1,New South Wales,150.633668,-34.418363 +2021,6,13,1,New South Wales,150.660048,-34.455465 +2023,3,9,1,New South Wales,153.070336,-30.876896 +2021,4,30,1,New South Wales,150.624254,-34.388898 +2021,5,4,1,New South Wales,150.603025,-34.427421 +2021,6,19,1,New South Wales,150.519139,-34.45987 +2020,8,5,1,New South Wales,153.35714,-28.885692 +2020,10,19,1,New South Wales,153.303135,-28.824882 +2021,4,28,1,New South Wales,150.635484,-34.420318 +2021,5,7,1,New South Wales,150.637211,-34.423895 +2023,9,11,1,New South Wales,152.927705,-31.465493 +2024,8,28,1,New South Wales,152.332371,-32.345114 +2021,7,15,1,New South Wales,153.109363,-29.490591 +2022,11,27,1,New South Wales,152.182993,-32.718501 +2024,4,22,1,New South Wales,152.9117,-31.4301 +2020,8,18,1,New South Wales,152.822887,-31.650231 +2023,1,14,1,New South Wales,153.429944,-28.598104 +2024,9,28,1,New South Wales,146.539207,-34.747587 +2021,7,5,1,New South Wales,150.513066,-34.445926 +2023,10,4,1,New South Wales,150.706944,-34.33 +2022,10,6,1,New South Wales,153.276239,-28.857815 +2023,3,17,1,New South Wales,153.277789,-28.874003 +2021,4,24,1,New South Wales,150.626312,-34.395708 +2021,4,11,1,New South Wales,150.615003,-34.432812 +2023,9,26,1,New South Wales,153.107486,-29.490133 +2020,9,3,1,New South Wales,153.002187,-29.181255 +2021,6,15,1,New South Wales,150.515608,-34.446789 +2023,1,20,1,New South Wales,152.897962,-30.240161 +2021,5,22,1,New South Wales,150.639072,-34.493043 +2021,6,1,1,New South Wales,150.521608,-34.465807 +2020,5,27,1,New South Wales,153.109434,-29.490532 +2021,4,21,1,New South Wales,150.605587,-34.432187 +2023,7,9,1,New South Wales,153.298311,-28.876449 +2024,1,28,1,New South Wales,152.915121,-31.446293 +2020,8,6,1,New South Wales,153.612356,-28.662032 +2021,5,23,1,New South Wales,150.59781,-34.427914 +2020,1,8,1,New South Wales,152.929855,-31.450925 +2021,6,14,1,New South Wales,150.516681,-34.456854 +2022,11,2,1,New South Wales,153.315763,-28.850078 +2020,1,8,1,New South Wales,153.109455,-29.490507 +2020,3,26,1,New South Wales,150.062479,-33.775552 +2021,11,15,1,New South Wales,151.007627,-34.046892 +2023,11,20,1,New South Wales,150.738019,-34.194229 +2023,5,8,1,New South Wales,152.064733,-32.699847 +2022,3,6,1,New South Wales,153.110522,-29.490189 +2020,9,22,1,New South Wales,152.815345,-31.09505 +2023,2,25,1,New South Wales,152.378599,-31.929321 +2023,6,2,1,New South Wales,152.875612,-31.453664 +2021,5,11,1,New South Wales,152.868147,-29.667322 +2021,10,20,1,New South Wales,152.927066,-31.458199 +2023,10,9,1,New South Wales,150.78273,-33.718836 +2024,3,6,1,New South Wales,152.899652,-31.454565 +2020,11,8,1,New South Wales,153.11027,-29.49018 +2024,2,7,1,New South Wales,152.359276,-31.85489 +2021,5,11,1,New South Wales,150.519045,-34.436546 +2022,6,3,1,New South Wales,152.081127,-32.736579 +2021,3,5,1,New South Wales,150.516239,-34.445693 +2021,4,23,1,New South Wales,150.605651,-34.423452 +2020,10,27,1,New South Wales,152.89945,-29.630963 +2020,11,5,1,New South Wales,153.103935,-29.489549 +2021,2,8,1,New South Wales,152.911609,-31.458122 +2021,8,14,1,New South Wales,153.103774,-29.485496 +2023,8,13,1,New South Wales,150.787134,-33.704336 +2021,7,6,1,New South Wales,152.755998,-28.97172 +2020,12,11,1,New South Wales,153.093469,-29.48876 +2021,6,7,1,New South Wales,150.519344,-34.457368 +2020,2,4,1,New South Wales,153.103865,-29.485426 +2021,6,6,1,New South Wales,150.630586,-34.4208 +2021,7,21,1,New South Wales,150.630765,-34.420623 +2021,2,26,1,New South Wales,150.604968,-34.43368 +2021,7,10,1,New South Wales,150.626696,-34.421383 +2021,6,23,1,New South Wales,150.625737,-34.386438 +2021,6,11,1,New South Wales,150.525298,-34.458823 +2021,7,15,1,New South Wales,152.864586,-29.630628 +2020,2,24,1,New South Wales,153.302593,-28.819803 +2021,5,29,1,New South Wales,150.52171,-34.465665 +2021,4,2,1,New South Wales,152.409406,-31.910186 +2023,11,23,1,New South Wales,150.785369,-33.706379 +2022,5,17,1,New South Wales,153.239911,-28.662796 +2022,3,16,1,New South Wales,153.561382,-28.384773 +2021,5,12,1,New South Wales,150.637302,-34.42377 +2021,4,22,1,New South Wales,150.521863,-34.46602 +2021,5,16,1,New South Wales,150.629146,-34.395105 +2020,4,1,1,New South Wales,153.428491,-28.955717 +2020,4,17,1,New South Wales,153.297647,-28.983839 +2021,5,5,1,New South Wales,150.523044,-34.452223 +2021,6,20,1,New South Wales,150.622844,-34.384525 +2021,9,11,1,New South Wales,151.817328,-32.353794 +2022,6,14,1,New South Wales,152.064147,-32.706714 +2021,4,9,1,New South Wales,150.524647,-34.452102 +2021,8,15,1,New South Wales,152.867197,-29.685304 +2024,1,8,1,New South Wales,153.103843,-29.484899 +2023,4,26,1,New South Wales,153.109379,-29.490497 +2021,6,24,1,New South Wales,150.644839,-34.39164 +2021,6,22,1,New South Wales,150.645205,-34.392972 +2022,5,27,1,New South Wales,152.921536,-31.474669 +2021,5,20,1,New South Wales,150.617371,-34.449041 +2021,5,26,1,New South Wales,150.6028,-34.434909 +2024,1,11,1,New South Wales,152.784192,-31.630152 +2023,8,4,1,New South Wales,151.788112,-32.313314 +2021,10,8,1,New South Wales,152.249957,-29.534829 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2023,1,21,1,New South Wales,153.314923,-28.819709 +2020,9,16,1,New South Wales,153.318679,-28.916312 +2021,5,27,1,New South Wales,150.630666,-34.420676 +2022,10,4,1,New South Wales,153.422758,-29.020005 +2023,12,12,1,New South Wales,153.110329,-29.490236 +2020,11,8,1,New South Wales,150.845124,-29.834373 +2020,5,24,1,New South Wales,150.870511,-34.407976 +2021,3,12,1,New South Wales,150.532963,-34.47571 +2022,4,28,1,New South Wales,148.893097,-30.918861 +2022,11,2,1,New South Wales,152.907276,-31.236216 +2022,8,28,1,New South Wales,153.316139,-28.948953 +2020,9,18,1,New South Wales,152.896099,-31.448194 +2022,1,19,1,New South Wales,153.101193,-29.489914 +2021,6,9,1,New South Wales,150.613995,-34.433063 +2020,2,3,1,New South Wales,151.19617,-29.78675 +2021,5,9,1,New South Wales,150.632585,-34.418198 +2020,12,31,1,New South Wales,150.348,-34.3928 +2021,12,28,1,New South Wales,150.616545,-34.439036 +2020,10,29,1,New South Wales,152.921011,-31.464859 +2021,7,9,1,New South Wales,150.640987,-34.393288 +2021,5,18,1,New South Wales,150.613448,-34.431998 +2021,6,8,1,New South Wales,150.626556,-34.387067 +2023,7,3,1,New South Wales,153.103784,-29.485468 +2022,11,30,1,New South Wales,152.754102,-30.882465 +2020,1,27,1,New South Wales,151.57961,-32.64281 +2021,9,4,1,New South Wales,153.075188,-28.555675 +2020,11,28,1,New South Wales,153.29174,-28.863841 +2021,6,4,1,New South Wales,153.5871,-28.63277 +2021,5,5,1,New South Wales,150.615751,-34.435955 +2023,7,30,1,New South Wales,150.838342,-34.055463 +2021,8,10,1,New South Wales,152.75666,-31.62889 +2024,1,24,1,New South Wales,150.785285,-33.716847 +2021,9,9,1,New South Wales,153.09517,-30.34676 +2021,9,8,1,New South Wales,150.515565,-34.454496 +2021,1,24,1,New South Wales,152.099256,-31.831604 +2020,11,3,1,New South Wales,150.604246,-33.220975 +2021,4,25,1,New South Wales,150.610279,-34.419125 +2021,7,9,1,New South Wales,150.520467,-34.465739 +2021,5,7,1,New South Wales,150.521179,-34.435787 +2021,5,24,1,New South Wales,150.60307,-34.434986 +2021,5,13,1,New South Wales,150.640184,-34.49302 +2022,7,22,1,New South Wales,153.478744,-28.69642 +2020,7,21,1,New South Wales,151.465317,-33.115211 +2020,11,1,1,New South Wales,149.988655,-36.56931 +2023,7,15,1,New South Wales,153.311177,-29.054 +2021,6,25,1,New South Wales,150.602419,-34.4372 +2020,8,21,1,New South Wales,153.153574,-28.579378 +2022,2,3,1,New South Wales,152.914822,-31.445797 +2021,1,3,1,New South Wales,152.802773,-31.217602 +2023,10,10,1,New South Wales,152.788591,-31.637518 +2020,6,20,1,New South Wales,153.103918,-29.485594 +2022,9,4,1,New South Wales,153.449423,-28.628079 +2024,2,15,1,New South Wales,150.861647,-29.609175 +2021,5,8,1,New South Wales,150.637256,-34.42385 +2022,6,28,1,New South Wales,152.94298,-30.39539 +2021,9,18,1,New South Wales,150.519267,-34.44745 +2020,11,5,1,New South Wales,153.448052,-28.627485 +2022,10,7,1,New South Wales,152.940581,-30.413736 +2022,8,24,1,New South Wales,152.149568,-32.004563 +2021,9,17,1,New South Wales,150.85412,-34.047799 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2020,11,19,1,New South Wales,152.916217,-31.481002 +2020,4,2,1,New South Wales,153.431849,-28.732179 +2020,11,6,1,New South Wales,152.87856,-31.4527 +2020,12,15,1,New South Wales,153.528762,-28.431212 +2021,2,2,1,New South Wales,153.141639,-30.197143 +2021,5,6,1,New South Wales,150.523021,-34.452241 +2023,5,6,1,New South Wales,152.925128,-31.453953 +2022,5,30,1,New South Wales,152.863323,-31.283793 +2020,11,10,1,New South Wales,151.660017,-32.660001 +2021,8,28,1,New South Wales,152.018265,-32.728847 +2022,11,5,1,New South Wales,151.71307,-32.62421 +2023,8,17,1,New South Wales,152.914177,-31.453175 +2020,11,10,1,New South Wales,152.907012,-31.454665 +2023,6,9,1,New South Wales,150.79871,-34.14623 +2021,5,19,1,New South Wales,150.600413,-34.428966 +2023,10,17,1,New South Wales,152.926905,-31.472381 +2022,11,3,1,New South Wales,152.18174,-32.719823 +2020,5,,1,New South Wales,152.090821,-32.729911 +2023,5,18,1,New South Wales,153.394013,-28.95907 +2021,5,9,1,New South Wales,150.637304,-34.423698 +2021,6,19,1,New South Wales,150.603804,-34.439391 +2020,5,20,1,New South Wales,150.755356,-29.233568 +2022,1,17,1,New South Wales,153.109433,-29.490507 +2021,3,12,1,New South Wales,150.604421,-34.440629 +2021,2,26,1,New South Wales,150.520911,-34.458473 +2020,10,10,1,New South Wales,153.155315,-29.38253 +2021,9,16,1,New South Wales,153.108237,-29.490227 +2022,7,3,1,New South Wales,151.025,-29.78 +2022,11,7,1,New South Wales,153.292968,-28.864588 +2023,10,30,1,New South Wales,152.192632,-32.228945 +2020,10,20,1,New South Wales,150.852499,-34.076921 +2024,1,23,1,New South Wales,150.784855,-33.713256 +2024,1,6,1,New South Wales,153.110029,-29.490236 +2021,1,6,1,New South Wales,153.07789,-30.32102 +2020,9,2,1,New South Wales,150.804307,-34.157182 +2023,1,4,1,New South Wales,152.06621,-32.711568 +2021,4,27,1,New South Wales,150.620023,-34.400797 +2024,1,3,1,New South Wales,152.375212,-31.910431 +2023,7,21,1,New South Wales,150.786246,-33.704703 +2021,8,1,1,New South Wales,150.602009,-34.424913 +2022,6,27,1,New South Wales,153.104374,-29.482891 +2024,6,3,1,New South Wales,152.926265,-31.472015 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2021,10,11,1,New South Wales,153.277841,-28.679036 +2021,4,20,1,New South Wales,150.614485,-34.429205 +2022,8,17,1,New South Wales,150.827206,-34.127624 +2021,2,19,1,New South Wales,151.512471,-30.655961 +2022,7,26,1,New South Wales,153.110136,-29.490241 +2022,9,4,1,New South Wales,153.609571,-28.661288 +2021,8,19,1,New South Wales,153.109406,-29.490609 +2024,1,22,1,New South Wales,152.412845,-31.932237 +2020,10,22,1,New South Wales,149.919557,-36.628449 +2023,9,17,1,New South Wales,153.071673,-28.554293 +2023,4,1,1,New South Wales,153.328391,-28.832072 +2022,11,16,1,New South Wales,152.792982,-31.642119 +2022,10,14,1,New South Wales,152.809901,-31.654867 +2021,6,17,1,New South Wales,150.603816,-34.426752 +2021,5,24,1,New South Wales,150.639119,-34.392801 +2022,11,16,1,New South Wales,152.792982,-31.642119 +2023,5,9,1,New South Wales,150.996409,-29.518732 +2023,9,21,1,New South Wales,150.854036,-34.08393 +2021,5,27,1,New South Wales,150.517304,-34.452747 +2021,5,6,1,New South Wales,150.632893,-34.418844 +2021,9,26,1,New South Wales,152.737543,-30.125115 +2021,6,25,1,New South Wales,150.644819,-34.391595 +2021,4,29,1,New South Wales,150.616521,-34.398881 +2022,6,28,1,New South Wales,152.943204,-30.395187 +2022,1,31,1,New South Wales,152.103509,-32.759368 +2021,5,11,1,New South Wales,150.637312,-34.423797 +2022,3,2,1,New South Wales,153.396108,-28.559611 +2023,9,16,1,New South Wales,152.075672,-32.724323 +2021,5,14,1,New South Wales,153.305638,-28.826765 +2022,12,4,1,New South Wales,150.962131,-32.184258 +2021,7,28,1,New South Wales,150.862399,-34.061874 +2021,6,4,1,New South Wales,150.630399,-34.420851 +2020,9,12,1,New South Wales,150.12901,-31.13463 +2021,9,24,1,New South Wales,152.832,-31.26349 +2022,5,11,1,New South Wales,150.9286,-33.95807 +2021,6,16,1,New South Wales,150.630221,-34.42101 +2022,9,26,1,New South Wales,153.108178,-29.490409 +2021,5,14,1,New South Wales,150.63345,-34.417619 +2021,10,5,1,New South Wales,152.934212,-29.722693 +2020,8,18,1,New South Wales,152.402368,-31.938661 +2023,9,1,1,New South Wales,153.107464,-29.490138 +2021,7,4,1,New South Wales,150.644061,-34.393798 +2021,3,10,1,New South Wales,152.916023,-31.454389 +2021,3,14,1,New South Wales,150.616179,-34.434314 +2021,8,3,1,New South Wales,150.632603,-34.418315 +2022,9,19,1,New South Wales,152.90988,-30.17297 +2021,5,10,1,New South Wales,150.609191,-34.420636 +2023,7,27,1,New South Wales,153.2101,-28.928384 +2020,12,,1,New South Wales,152.909424,-31.176289 +2020,10,23,1,New South Wales,152.516775,-32.444507 +2021,5,13,1,New South Wales,150.516619,-34.449028 +2023,12,30,1,New South Wales,153.10983,-29.490199 +2021,5,29,1,New South Wales,150.518344,-34.451812 +2020,9,11,1,New South Wales,153.456711,-28.78346 +2021,5,14,1,New South Wales,150.520856,-34.454072 +2020,10,27,1,New South Wales,153.352906,-28.83385 +2021,5,22,1,New South Wales,150.639111,-34.493215 +2021,7,23,1,New South Wales,150.517629,-34.442855 +2021,4,11,1,New South Wales,150.517949,-34.447874 +2021,5,31,1,New South Wales,150.604632,-34.424496 +2021,4,30,1,New South Wales,150.624369,-34.387881 +2020,11,11,1,New South Wales,150.929224,-33.954203 +2022,1,8,1,New South Wales,153.3944,-28.855254 +2023,11,14,1,New South Wales,150.785981,-33.712349 +2021,5,26,1,New South Wales,150.795089,-34.138664 +2021,7,22,1,New South Wales,150.908792,-33.998345 +2022,7,2,1,New South Wales,153.381541,-28.695055 +2023,5,16,1,New South Wales,153.096982,-29.486561 +2020,1,1,1,New South Wales,153.103913,-29.489489 +2020,7,20,1,New South Wales,152.718696,-31.348795 +2021,8,12,1,New South Wales,150.749512,-34.372303 +2020,4,29,1,New South Wales,153.493083,-28.693786 +2021,5,16,1,New South Wales,150.632762,-34.41885 +2021,12,6,1,New South Wales,153.557034,-28.397415 +2022,10,4,1,New South Wales,153.270671,-28.862636 +2023,10,21,1,New South Wales,152.063516,-32.705335 +2021,4,27,1,New South Wales,150.619965,-34.400931 +2021,8,21,1,New South Wales,150.864858,-34.021526 +2023,8,4,1,New South Wales,150.83513,-34.069677 +2022,12,21,1,New South Wales,153.103693,-29.485669 +2021,4,26,1,New South Wales,150.624282,-34.4006 +2021,5,11,1,New South Wales,150.521206,-34.466908 +2021,6,17,1,New South Wales,150.513783,-34.446319 +2021,7,14,1,New South Wales,153.316281,-28.837109 +2020,10,19,1,New South Wales,153.303135,-28.824882 +2020,11,4,1,New South Wales,152.903671,-31.445015 +2021,2,11,1,New South Wales,152.891077,-31.442912 +2020,6,10,1,New South Wales,152.906855,-31.44044 +2020,12,1,1,New South Wales,153.391298,-28.838377 +2020,8,20,1,New South Wales,152.926148,-31.459147 +2020,1,27,1,New South Wales,153.482997,-28.246907 +2021,12,3,1,New South Wales,152.791854,-31.527069 +2023,5,9,1,New South Wales,149.966961,-36.56748 +2020,11,10,1,New South Wales,152.930028,-31.476538 +2022,6,22,1,New South Wales,153.109793,-29.490175 +2021,5,24,1,New South Wales,150.639066,-34.392746 +2021,9,12,1,New South Wales,153.037953,-28.851502 +2022,6,21,1,New South Wales,152.969856,-29.731011 +2024,8,27,1,New South Wales,150.825278,-34.149167 +2022,8,12,1,New South Wales,153.288785,-28.978011 +2020,12,10,1,New South Wales,153.26473,-28.85414 +2023,6,4,1,New South Wales,150.809326,-34.102169 +2024,7,9,1,New South Wales,152.876259,-31.425153 +2023,11,11,1,New South Wales,152.391142,-31.90253 +2023,4,16,1,New South Wales,152.601677,-31.651391 +2020,7,28,1,New South Wales,153.370187,-28.258902 +2020,7,23,1,New South Wales,150.806894,-34.100577 +2021,4,30,1,New South Wales,150.615878,-34.436472 +2023,7,5,1,New South Wales,153.110533,-29.490128 +2021,6,25,1,New South Wales,150.645161,-34.391024 +2021,5,12,1,New South Wales,150.60547,-34.427505 +2021,5,20,1,New South Wales,150.517293,-34.452007 +2021,10,7,1,New South Wales,152.063292,-32.706656 +2023,5,11,1,New South Wales,153.320936,-28.918269 +2020,10,18,1,New South Wales,149.921178,-36.633581 +2020,8,26,1,New South Wales,150.852145,-34.403156 +2021,5,19,1,New South Wales,150.51646,-34.449998 +2020,10,17,1,New South Wales,149.921178,-36.633581 +2020,3,25,1,New South Wales,150.124778,-35.0641 +2022,3,12,1,New South Wales,150.993648,-34.071083 +2023,10,11,1,New South Wales,153.103892,-29.489563 +2021,10,18,1,New South Wales,150.778378,-34.139613 +2023,10,22,1,New South Wales,150.783204,-33.718565 +2021,6,16,1,New South Wales,150.5143,-34.44651 +2020,4,20,1,New South Wales,152.852033,-31.443752 +2020,11,10,1,New South Wales,153.605918,-28.689425 +2021,6,21,1,New South Wales,150.63912,-34.392765 +2022,8,2,1,New South Wales,152.972566,-31.194882 +2020,9,9,1,New South Wales,153.09354,-30.33917 +2020,10,13,1,New South Wales,153.07842,-30.35548 +2020,12,9,1,New South Wales,151.956904,-32.651449 +2023,6,2,1,New South Wales,152.924924,-31.459262 +2022,8,7,1,New South Wales,152.905566,-31.436889 +2020,7,27,1,New South Wales,152.917419,-31.45773 +2021,5,10,1,New South Wales,150.517261,-34.453097 +2022,1,31,1,New South Wales,152.09291,-32.653034 +2021,9,26,1,New South Wales,152.933658,-29.681698 +2022,1,13,1,New South Wales,150.93782,-29.721303 +2020,4,15,1,New South Wales,152.924154,-31.444136 +2023,3,24,1,New South Wales,153.345753,-28.832697 +2021,6,15,1,New South Wales,152.605261,-30.520053 +2022,2,17,1,New South Wales,152.088711,-32.735951 +2021,5,3,1,New South Wales,150.611525,-34.419672 +2020,3,29,1,New South Wales,153.328844,-28.814901 +2021,5,23,1,New South Wales,150.616256,-34.434261 +2020,10,20,1,New South Wales,150.793402,-34.207563 +2021,6,25,1,New South Wales,150.600038,-34.418095 +2020,4,26,1,New South Wales,153.011589,-30.596306 +2022,12,24,1,New South Wales,152.063502,-32.706006 +2023,11,10,1,New South Wales,150.98472,-34.096067 +2021,5,10,1,New South Wales,150.521046,-34.435505 +2024,8,22,1,New South Wales,152.386755,-31.882179 +2021,8,31,1,New South Wales,153.10409,-29.480145 +2022,4,13,1,New South Wales,153.110517,-29.490184 +2021,12,,1,New South Wales,148.761746,-36.371011 +2023,11,28,1,New South Wales,150.786191,-33.705952 +2020,11,24,1,New South Wales,153.342482,-28.805797 +2023,12,9,1,New South Wales,151.66582,-30.534255 +2022,6,21,1,New South Wales,152.896425,-29.629872 +2020,1,8,1,New South Wales,152.40941,-31.91019 +2022,12,29,1,New South Wales,152.06621,-32.711568 +2023,8,15,1,New South Wales,152.919643,-31.4692 +2021,5,11,1,New South Wales,151.6887,-32.06324 +2021,10,13,1,New South Wales,152.539599,-32.064646 +2022,8,30,1,New South Wales,149.324661,-36.293208 +2022,8,25,1,New South Wales,151.577918,-30.32236 +2023,8,2,1,New South Wales,153.109304,-29.490852 +2021,7,3,1,New South Wales,150.513915,-34.447007 +2023,11,14,1,New South Wales,152.699739,-30.289868 +2022,1,22,1,New South Wales,152.926957,-31.463308 +2021,5,26,1,New South Wales,150.631912,-34.387667 +2021,12,28,1,New South Wales,153.317734,-28.822728 +2020,11,16,1,New South Wales,150.004563,-36.508695 +2021,7,25,1,New South Wales,150.516343,-34.442576 +2020,11,2,1,New South Wales,153.367535,-28.612172 +2020,6,30,1,New South Wales,152.810751,-31.167271 +2020,5,,1,New South Wales,152.037481,-32.307677 +2024,2,20,1,New South Wales,151.150223,-33.104783 +2024,1,15,1,New South Wales,152.905712,-31.453709 +2023,5,20,1,New South Wales,153.402513,-28.960704 +2020,10,11,1,New South Wales,150.11759,-34.77234 +2023,6,26,1,New South Wales,153.230164,-28.925076 +2023,12,2,1,New South Wales,151.150223,-33.104783 +2021,4,18,1,New South Wales,150.616412,-34.430334 +2024,6,7,1,New South Wales,152.109373,-32.736099 +2021,7,8,1,New South Wales,150.513228,-34.447056 +2023,8,16,1,New South Wales,152.077206,-32.722459 +2021,11,7,1,New South Wales,152.915048,-31.485269 +2021,10,22,1,New South Wales,149.299548,-36.137257 +2021,1,25,1,New South Wales,153.564434,-28.336159 +2021,10,19,1,New South Wales,152.870846,-31.464661 +2021,6,13,1,New South Wales,150.520572,-34.454093 +2021,4,14,1,New South Wales,150.606888,-34.439587 +2020,5,17,1,New South Wales,153.095228,-29.483442 +2021,7,7,1,New South Wales,150.513874,-34.447304 +2022,12,19,1,New South Wales,153.395195,-28.959932 +2022,12,19,1,New South Wales,150.915166,-33.969835 +2021,11,11,1,New South Wales,152.91921,-31.442813 +2021,5,29,1,New South Wales,150.526868,-34.469411 +2021,5,3,1,New South Wales,150.626025,-34.390095 +2023,2,7,1,New South Wales,150.066993,-34.958306 +2023,7,15,1,New South Wales,153.104176,-29.479169 +2021,11,11,1,New South Wales,152.428977,-31.833611 +2023,7,15,1,New South Wales,153.103473,-29.485632 +2021,5,18,1,New South Wales,150.523969,-34.463646 +2022,4,17,1,New South Wales,151.671111,-32.596389 +2020,11,15,1,New South Wales,150.004563,-36.508695 +2021,1,20,1,New South Wales,150.913678,-34.068368 +2021,6,11,1,New South Wales,150.645432,-34.396871 +2020,11,14,1,New South Wales,150.004563,-36.508695 +2021,5,10,1,New South Wales,150.637345,-34.423798 +2024,1,25,1,New South Wales,152.883375,-31.435592 +2020,12,14,1,New South Wales,152.415642,-31.933481 +2021,6,11,1,New South Wales,150.515768,-34.447288 +2020,11,15,1,New South Wales,153.11158,-29.465633 +2023,5,19,1,New South Wales,153.232154,-28.830347 +2022,4,8,1,New South Wales,152.907313,-31.470435 +2021,12,27,1,New South Wales,152.923097,-31.459411 +2021,8,6,1,New South Wales,150.985097,-34.067516 +2022,6,7,1,New South Wales,150.776613,-33.382543 +2022,11,28,1,New South Wales,152.769456,-30.916275 +2021,9,10,1,New South Wales,152.914514,-31.455166 +2021,6,5,1,New South Wales,153.32228,-28.815537 +2023,8,21,1,New South Wales,150.665621,-33.548838 +2023,1,19,1,New South Wales,153.093687,-29.375133 +2023,8,21,1,New South Wales,152.909102,-31.435188 +2020,10,15,1,New South Wales,150.615698,-33.432441 +2023,9,5,1,New South Wales,152.92782,-31.464683 +2021,9,16,1,New South Wales,150.824095,-34.150308 +2023,5,28,1,New South Wales,153.562188,-28.38399 +2024,8,28,1,New South Wales,152.332731,-32.34502 +2023,9,1,1,New South Wales,153.020569,-28.429244 +2021,11,1,1,New South Wales,153.295029,-28.821687 +2020,11,5,1,New South Wales,153.092026,-29.48799 +2022,12,28,1,New South Wales,153.579254,-28.687931 +2021,8,22,1,New South Wales,152.996234,-28.635247 +2021,10,5,1,New South Wales,152.085609,-32.731046 +2021,5,7,1,New South Wales,150.604023,-34.426756 +2021,8,10,1,New South Wales,152.756185,-31.63103 +2021,10,8,1,New South Wales,153.05578,-30.3566 +2020,12,29,1,New South Wales,152.409406,-31.910186 +2020,10,29,1,New South Wales,149.999247,-36.565645 +2021,7,3,1,New South Wales,150.523257,-34.465994 +2023,10,10,1,New South Wales,152.924757,-31.464357 +2022,9,10,1,New South Wales,150.890633,-34.018549 +2021,10,22,1,New South Wales,152.204862,-30.095476 +2020,4,1,1,New South Wales,153.328511,-28.816736 +2023,9,27,1,New South Wales,151.658636,-32.663196 +2021,12,21,1,New South Wales,152.895208,-30.440188 +2022,11,19,1,New South Wales,152.929133,-31.455984 +2021,9,16,1,New South Wales,150.645703,-34.400402 +2020,11,6,1,New South Wales,149.995573,-36.572611 +2021,7,4,1,New South Wales,150.513154,-34.445883 +2020,1,2,1,New South Wales,151.806784,-32.469856 +2021,11,20,1,New South Wales,153.303503,-28.81632 +2021,6,10,1,New South Wales,150.518284,-34.45347 +2023,7,23,1,New South Wales,150.785538,-33.708025 +2023,9,25,1,New South Wales,153.299324,-28.888717 +2020,5,3,1,New South Wales,150.00568,-34.84227 +2022,12,8,1,New South Wales,152.91872,-31.478956 +2021,7,26,1,New South Wales,150.63071,-34.420649 +2023,6,15,1,New South Wales,150.802682,-34.111148 +2021,1,9,1,New South Wales,152.888659,-30.452702 +2021,5,7,1,New South Wales,150.632588,-34.418459 +2020,1,29,1,New South Wales,150.959769,-33.739042 +2024,1,21,1,New South Wales,153.110554,-29.489862 +2021,7,21,1,New South Wales,150.623764,-34.383506 +2023,12,14,1,New South Wales,150.785586,-33.709569 +2022,8,7,1,New South Wales,150.787159,-34.241266 +2022,2,15,1,New South Wales,150.410095,-34.495547 +2021,7,9,1,New South Wales,150.599031,-34.412981 +2021,7,11,1,New South Wales,150.521045,-34.464245 +2023,,,1,New South Wales,153.044328,-29.169249 +2021,2,9,1,New South Wales,151.795412,-32.570205 +2024,3,29,1,New South Wales,152.447094,-32.385025 +2024,5,16,1,New South Wales,152.923672,-30.505757 +2020,10,24,1,New South Wales,152.916376,-31.481892 +2020,9,24,1,New South Wales,152.89841,-31.443221 +2022,7,25,1,New South Wales,152.817021,-31.130437 +2021,2,9,1,New South Wales,153.320503,-28.916298 +2021,9,28,1,New South Wales,152.063994,-32.706663 +2022,9,1,1,New South Wales,150.79071,-34.186332 +2021,10,17,1,New South Wales,153.559907,-28.393177 +2023,8,4,1,New South Wales,153.315214,-29.028258 +2021,3,11,1,New South Wales,150.514255,-34.445824 +2023,11,22,1,New South Wales,150.785009,-33.71322 +2021,5,16,1,New South Wales,150.628688,-34.395159 +2021,3,7,1,New South Wales,150.603363,-34.435379 +2021,9,13,1,New South Wales,149.79132,-32.382158 +2021,6,12,1,New South Wales,153.394619,-28.960666 +2023,10,5,1,New South Wales,152.9785,-30.4193 +2021,11,24,1,New South Wales,150.616424,-34.439097 +2022,4,1,1,New South Wales,153.568679,-28.695089 +2024,4,11,1,New South Wales,152.929911,-31.466543 +2021,4,8,1,New South Wales,150.634145,-34.488611 +2022,8,2,1,New South Wales,149.551199,-33.490003 +2021,8,24,1,New South Wales,152.980215,-30.323526 +2020,11,27,1,New South Wales,152.905835,-31.448039 +2021,6,25,1,New South Wales,150.69013,-33.442443 +2022,12,29,1,New South Wales,146.469528,-34.721257 +2020,1,4,1,New South Wales,152.900733,-31.466687 +2023,10,7,1,New South Wales,149.925447,-35.104734 +2021,6,13,1,New South Wales,150.521611,-34.465726 +2020,9,17,1,New South Wales,152.105286,-32.732798 +2021,6,10,1,New South Wales,150.627255,-34.385819 +2020,3,18,1,New South Wales,149.553276,-33.556385 +2023,11,15,1,New South Wales,152.93881,-30.23025 +2023,2,24,1,New South Wales,153.319838,-28.844336 +2021,6,8,1,New South Wales,150.640379,-34.395178 +2021,1,13,1,New South Wales,152.064106,-32.708778 +2024,1,1,1,New South Wales,152.298817,-31.945384 +2021,6,5,1,New South Wales,150.608845,-34.435081 +2021,6,3,1,New South Wales,150.604108,-34.426829 +2023,2,17,1,New South Wales,153.200153,-28.881273 +2022,10,28,1,New South Wales,153.433909,-28.989862 +2023,12,22,1,New South Wales,150.545624,-33.683565 +2021,7,13,1,New South Wales,150.521639,-34.464753 +2023,2,24,1,New South Wales,152.077238,-32.722476 +2020,7,13,1,New South Wales,152.888066,-31.453502 +2021,5,5,1,New South Wales,150.608795,-34.455536 +2021,5,29,1,New South Wales,150.52713,-34.469381 +2021,6,13,1,New South Wales,150.642991,-34.394742 +2022,7,9,1,New South Wales,153.10424,-29.479972 +2022,1,26,1,New South Wales,150.61849,-34.4403 +2020,11,28,1,New South Wales,153.555865,-28.398951 +2023,11,1,1,New South Wales,152.189597,-32.229205 +2021,4,14,1,New South Wales,150.528165,-34.456429 +2021,3,31,1,New South Wales,153.103817,-29.485604 +2023,7,27,1,New South Wales,150.833816,-29.656348 +2021,7,21,1,New South Wales,150.623722,-34.383469 +2021,10,5,1,New South Wales,150.945417,-29.770741 +2022,1,25,1,New South Wales,152.37032,-31.91938 +2020,7,17,1,New South Wales,153.103783,-29.485584 +2021,4,20,1,New South Wales,150.604555,-34.424494 +2020,1,12,1,New South Wales,153.331908,-28.85774 +2020,1,13,1,New South Wales,151.968181,-32.447469 +2021,10,26,1,New South Wales,153.01301,-30.41382 +2021,6,4,1,New South Wales,152.895106,-31.435995 +2021,6,6,1,New South Wales,150.53461,-34.459345 +2022,1,21,1,New South Wales,153.101274,-29.489918 +2020,10,,1,New South Wales,151.696428,-30.40374 +2021,4,20,1,New South Wales,150.636398,-34.485554 +2021,4,22,1,New South Wales,150.605073,-34.43306 +2023,11,5,1,New South Wales,151.858769,-31.906259 +2020,6,23,1,New South Wales,151.128847,-33.11426 +2021,7,22,1,New South Wales,150.62437,-34.38515 +2022,4,7,1,New South Wales,153.293166,-28.864637 +2021,3,5,1,New South Wales,150.518845,-34.446639 +2021,8,14,1,New South Wales,150.521329,-34.464936 +2020,10,19,1,New South Wales,153.303174,-28.827996 +2021,2,3,1,New South Wales,153.337558,-28.81758 +2021,6,2,1,New South Wales,150.616518,-34.43808 +2021,11,27,1,New South Wales,153.101338,-29.489676 +2023,10,2,1,New South Wales,151.007752,-34.045989 +2024,3,22,1,New South Wales,152.378239,-31.91701 +2020,7,8,1,New South Wales,150.835252,-34.085996 +2021,6,21,1,New South Wales,150.520315,-34.465745 +2020,11,11,1,New South Wales,151.65772,-32.689837 +2021,6,28,1,New South Wales,150.61624,-33.35049 +2022,1,25,1,New South Wales,150.616338,-34.43942 +2023,8,11,1,New South Wales,152.887495,-31.448437 +2023,8,5,1,New South Wales,152.178209,-28.635946 +2023,3,14,1,New South Wales,153.101226,-29.489923 +2024,7,4,1,New South Wales,152.07705,-32.722522 +2021,12,14,1,New South Wales,153.131817,-28.836564 +2021,7,15,1,New South Wales,150.542263,-34.434409 +2023,3,10,1,New South Wales,153.272286,-29.010473 +2020,10,25,1,New South Wales,153.46202,-28.650301 +2021,5,13,1,New South Wales,153.109369,-29.490642 +2021,8,12,1,New South Wales,150.63257,-34.418323 +2020,2,19,1,New South Wales,152.899616,-31.466722 +2020,1,28,1,New South Wales,153.092082,-29.48803 +2021,1,27,1,New South Wales,152.039191,-32.730856 +2021,9,27,1,New South Wales,152.014476,-32.666802 +2020,11,13,1,New South Wales,153.561338,-28.28902 +2022,1,26,1,New South Wales,153.104085,-29.479888 +2021,6,12,1,New South Wales,150.515859,-34.447155 +2022,1,28,1,New South Wales,150.616591,-34.437802 +2020,4,10,1,New South Wales,152.405012,-31.20122 +2021,5,11,1,New South Wales,150.633104,-34.417531 +2023,9,25,1,New South Wales,150.846588,-34.112049 +2021,7,29,1,New South Wales,150.518522,-34.438068 +2021,6,7,1,New South Wales,150.608297,-34.434079 +2020,6,18,1,New South Wales,153.079208,-28.733192 +2020,9,22,1,New South Wales,152.899468,-31.443901 +2021,8,11,1,New South Wales,152.907827,-31.449107 +2021,5,16,1,New South Wales,150.520602,-34.453832 +2021,9,9,1,New South Wales,150.597442,-34.455972 +2021,7,29,1,New South Wales,150.51833,-34.437189 +2022,8,4,1,New South Wales,153.316408,-28.823502 +2021,2,25,1,New South Wales,150.610156,-34.419979 +2022,12,18,1,New South Wales,151.764483,-30.47882 +2022,7,10,1,New South Wales,153.10379,-29.48559 +2021,5,18,1,New South Wales,150.523823,-34.463787 +2021,4,29,1,New South Wales,150.63535,-34.419657 +2021,6,3,1,New South Wales,153.55879,-28.33206 +2021,4,4,1,New South Wales,150.607092,-34.437806 +2023,12,11,1,New South Wales,152.920148,-31.468121 +2021,3,7,1,New South Wales,150.517367,-34.456859 +2024,3,30,1,New South Wales,152.37417,-31.91495 +2020,9,4,1,New South Wales,153.091081,-29.487864 +2023,4,3,1,New South Wales,153.107953,-29.490194 +2023,9,4,1,New South Wales,152.418326,-31.949518 +2021,4,27,1,New South Wales,150.637729,-34.488564 +2022,11,26,1,New South Wales,152.19925,-32.22062 +2023,5,17,1,New South Wales,153.110865,-29.488546 +2021,5,12,1,New South Wales,150.609203,-34.420591 +2020,5,,1,New South Wales,152.070445,-32.717963 +2021,7,27,1,New South Wales,153.400646,-28.257815 +2022,12,12,1,New South Wales,153.322971,-28.890057 +2023,8,3,1,New South Wales,150.783797,-33.718718 +2024,9,10,1,New South Wales,151.077406,-33.148032 +2022,2,5,1,New South Wales,153.270921,-28.630745 +2021,5,31,1,New South Wales,153.104299,-29.482419 +2021,11,1,1,New South Wales,153.01536,-28.63955 +2021,3,11,1,New South Wales,150.519841,-34.466673 +2021,4,9,1,New South Wales,150.518604,-34.444497 +2023,8,24,1,New South Wales,150.783674,-33.713509 +2023,8,23,1,New South Wales,153.318297,-28.82451 +2021,5,5,1,New South Wales,150.609402,-34.418963 +2022,12,14,1,New South Wales,153.046608,-30.378604 +2021,6,17,1,New South Wales,150.604261,-34.438985 +2022,6,28,1,New South Wales,152.944414,-30.39082 +2020,8,25,1,New South Wales,152.780584,-31.25536 +2022,6,22,1,New South Wales,153.10402,-29.484296 +2023,10,12,1,New South Wales,153.094492,-30.299789 +2022,10,5,1,New South Wales,153.044301,-30.425221 +2021,5,28,1,New South Wales,150.642484,-34.394182 +2023,11,1,1,New South Wales,152.783304,-31.48444 +2021,6,15,1,New South Wales,150.640048,-34.398463 +2021,4,18,1,New South Wales,150.60715,-34.45407 +2022,6,17,1,New South Wales,151.980769,-32.564261 +2021,4,26,1,New South Wales,150.602031,-34.425662 +2021,5,3,1,New South Wales,150.606015,-34.457222 +2021,4,24,1,New South Wales,150.610379,-34.419037 +2022,10,5,1,New South Wales,152.068751,-32.749205 +2021,4,30,1,New South Wales,150.606968,-34.454346 +2021,5,24,1,New South Wales,150.603133,-34.435068 +2020,12,,1,New South Wales,152.965822,-31.200967 +2021,7,14,1,New South Wales,152.191886,-31.565273 +2020,1,21,1,New South Wales,150.72129,-33.56781 +2021,4,21,1,New South Wales,150.630688,-34.387111 +2023,1,20,1,New South Wales,152.811633,-29.515027 +2021,4,30,1,New South Wales,150.664166,-34.45887 +2021,7,20,1,New South Wales,150.517303,-34.443957 +2021,3,30,1,New South Wales,150.610171,-34.42977 +2021,2,22,1,New South Wales,150.515339,-34.448893 +2020,8,26,1,New South Wales,153.312672,-28.692616 +2021,7,6,1,New South Wales,153.247804,-28.614653 +2023,9,26,1,New South Wales,153.11638,-28.561523 +2021,6,2,1,New South Wales,150.519658,-34.45522 +2023,10,24,1,New South Wales,152.879058,-29.70733 +2022,12,2,1,New South Wales,150.790887,-34.204612 +2021,6,27,1,New South Wales,153.104219,-29.479902 +2021,5,6,1,New South Wales,150.61604,-34.43615 +2021,5,30,1,New South Wales,150.606197,-34.437887 +2021,4,25,1,New South Wales,150.605191,-34.437678 +2023,10,3,1,New South Wales,150.786073,-33.706023 +2022,4,30,1,New South Wales,153.258387,-28.796603 +2023,11,4,1,New South Wales,153.092483,-29.493094 +2020,10,29,1,New South Wales,149.967242,-36.561675 +2020,12,9,1,New South Wales,151.95699,-32.639158 +2020,11,10,1,New South Wales,152.873518,-31.457717 +2021,3,17,1,New South Wales,150.520843,-34.467036 +2020,10,19,1,New South Wales,152.918812,-31.45932 +2022,7,28,1,New South Wales,151.993445,-32.72283 +2022,1,13,1,New South Wales,152.067352,-32.710382 +2022,8,30,1,New South Wales,149.322764,-36.298458 +2023,9,12,1,New South Wales,152.017903,-32.54935 +2023,5,11,1,New South Wales,152.863625,-31.291832 +2021,5,14,1,New South Wales,153.400846,-28.2564 +2021,5,28,1,New South Wales,153.59019,-28.65505 +2022,1,27,1,New South Wales,150.121961,-31.079077 +2020,10,14,1,New South Wales,150.61997,-33.430377 +2023,1,30,1,New South Wales,153.123295,-30.300543 +2020,,,1,New South Wales,152.83192,-31.28162 +2022,10,30,1,New South Wales,151.061178,-29.741257 +2021,1,5,1,New South Wales,153.435927,-28.611007 +2021,4,10,1,New South Wales,150.53189,-34.460426 +2020,6,19,1,New South Wales,152.30042,-31.94825 +2023,8,28,1,New South Wales,153.008286,-28.623894 +2023,12,30,1,New South Wales,153.092122,-29.488046 +2024,6,10,1,New South Wales,152.913816,-31.480407 +2023,12,7,1,New South Wales,150.870765,-34.044516 +2021,12,,1,New South Wales,149.311799,-36.13566 +2020,10,24,1,New South Wales,153.108864,-29.493136 +2021,11,26,1,New South Wales,150.616268,-34.441131 +2020,9,9,1,New South Wales,152.917631,-31.455367 +2024,8,8,1,New South Wales,150.48788,-34.38806 +2021,7,16,1,New South Wales,150.627398,-34.421207 +2020,11,16,1,New South Wales,150.004563,-36.508695 +2021,3,28,1,New South Wales,150.533602,-34.479545 +2020,11,5,1,New South Wales,152.825474,-28.841974 +2023,12,31,1,New South Wales,152.540596,-32.059349 +2021,4,30,1,New South Wales,150.60686,-34.454308 +2021,8,21,1,New South Wales,150.513097,-34.447081 +2023,12,14,1,New South Wales,152.39892,-31.96562 +2021,5,7,1,New South Wales,150.609876,-34.455043 +2021,10,29,1,New South Wales,152.10331,-32.759364 +2020,4,20,1,New South Wales,152.758487,-31.263233 +2021,5,18,1,New South Wales,150.632763,-34.419607 +2020,6,4,1,New South Wales,152.928817,-31.459628 +2021,5,1,1,New South Wales,153.108215,-29.490633 +2021,3,26,1,New South Wales,150.516764,-34.446344 +2021,5,11,1,New South Wales,150.517293,-34.447608 +2021,6,22,1,New South Wales,150.603162,-34.439378 +2024,1,25,1,New South Wales,152.541704,-32.329929 +2021,6,12,1,New South Wales,150.626613,-34.385464 +2021,3,12,1,New South Wales,150.520262,-34.450598 +2020,2,4,1,New South Wales,152.928708,-31.466484 +2023,9,25,1,New South Wales,153.268126,-28.91324 +2023,9,14,1,New South Wales,153.107448,-29.490156 +2021,5,7,1,New South Wales,153.40177,-28.259899 +2022,8,19,1,New South Wales,153.104144,-29.480794 +2021,5,23,1,New South Wales,150.630862,-34.420652 +2022,3,1,1,New South Wales,152.380483,-31.914336 +2021,7,2,1,New South Wales,150.627958,-34.390971 +2020,2,8,1,New South Wales,153.034669,-30.35524 +2021,6,9,1,New South Wales,150.605681,-34.437652 +2021,8,19,1,New South Wales,150.513047,-34.447296 +2021,4,1,1,New South Wales,152.067456,-32.75982 +2022,7,9,1,New South Wales,153.109986,-29.490255 +2022,6,17,1,New South Wales,152.113964,-32.768796 +2021,1,20,1,New South Wales,152.788487,-28.609553 +2023,10,30,1,New South Wales,150.785294,-33.709241 +2021,6,29,1,New South Wales,150.522593,-34.46488 +2021,7,12,1,New South Wales,150.512846,-34.446733 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2021,5,20,1,New South Wales,153.56206,-28.383751 +2021,2,18,1,New South Wales,150.088095,-33.847854 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2020,9,13,1,New South Wales,153.506293,-28.238698 +2021,5,18,1,New South Wales,150.53041,-34.471494 +2023,8,3,1,New South Wales,152.031643,-32.197389 +2020,12,9,1,New South Wales,149.960499,-36.288011 +2021,6,6,1,New South Wales,150.532777,-34.458749 +2023,2,1,1,New South Wales,152.970013,-31.192675 +2023,10,24,1,New South Wales,150.78702,-33.70844 +2021,4,29,1,New South Wales,150.635372,-34.419667 +2023,11,18,1,New South Wales,150.786459,-33.705953 +2020,3,27,1,New South Wales,149.376021,-36.01439 +2022,1,18,1,New South Wales,152.7152,-31.636783 +2021,5,27,1,New South Wales,150.63904,-34.491474 +2020,10,24,1,New South Wales,151.651193,-32.608963 +2022,12,18,1,New South Wales,151.427455,-30.480875 +2021,6,20,1,New South Wales,150.518964,-34.460254 +2022,4,1,1,New South Wales,153.401777,-28.260089 +2023,10,28,1,New South Wales,152.390502,-31.876097 +2020,1,6,1,New South Wales,151.771284,-32.588266 +2021,4,15,1,New South Wales,150.625873,-34.386252 +2021,5,22,1,New South Wales,150.639145,-34.493162 +2020,11,3,1,New South Wales,152.06176,-32.708918 +2022,6,4,1,New South Wales,153.104176,-29.479038 +2022,7,6,1,New South Wales,153.103693,-29.485767 +2020,2,5,1,New South Wales,152.919349,-31.442598 +2020,11,7,1,New South Wales,150.016942,-36.548959 +2023,11,1,1,New South Wales,152.782999,-31.484367 +2020,10,20,1,New South Wales,153.278132,-28.831137 +2024,1,3,1,New South Wales,152.904895,-31.445308 +2021,6,27,1,New South Wales,150.630982,-34.388253 +2023,4,28,1,New South Wales,150.812345,-34.124693 +2021,8,11,1,New South Wales,150.518041,-34.438869 +2020,9,21,1,New South Wales,150.011,-31.12414 +2021,6,11,1,New South Wales,150.644414,-34.396347 +2021,10,22,1,New South Wales,152.175292,-30.083437 +2021,4,23,1,New South Wales,150.639323,-34.421907 +2021,9,12,1,New South Wales,151.044713,-34.029825 +2020,10,20,1,New South Wales,152.819826,-31.101184 +2021,4,23,1,New South Wales,150.634411,-34.42018 +2021,4,1,1,New South Wales,150.616213,-34.434251 +2021,6,29,1,New South Wales,150.596176,-34.411654 +2020,1,24,1,New South Wales,152.91932,-31.476258 +2021,3,25,1,New South Wales,150.610257,-34.430186 +2021,5,6,1,New South Wales,150.603379,-34.427212 +2021,4,25,1,New South Wales,150.63829,-34.419985 +2020,5,6,1,New South Wales,153.34163,-28.805638 +2023,4,24,1,New South Wales,149.336911,-36.307015 +2021,7,17,1,New South Wales,150.514996,-34.446515 +2020,10,12,1,New South Wales,149.959933,-36.657162 +2021,4,27,1,New South Wales,150.635881,-34.41937 +2024,8,19,1,New South Wales,152.064358,-32.70898 +2021,4,20,1,New South Wales,150.606692,-34.43466 +2021,10,5,1,New South Wales,152.062125,-32.709923 +2021,6,23,1,New South Wales,150.519613,-34.46299 +2021,8,4,1,New South Wales,150.644245,-34.399283 +2020,6,9,1,New South Wales,150.658805,-33.526978 +2021,12,2,1,New South Wales,150.97285,-34.12311 +2021,4,9,1,New South Wales,150.603776,-34.431231 +2021,5,30,1,New South Wales,150.608247,-34.450333 +2021,6,20,1,New South Wales,150.51904,-34.460256 +2021,6,12,1,New South Wales,150.604137,-34.438757 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2023,10,25,1,New South Wales,151.044532,-34.019374 +2020,10,24,1,New South Wales,149.945227,-36.57753 +2021,7,4,1,New South Wales,150.517228,-34.440953 +2022,9,26,1,New South Wales,150.884147,-34.018322 +2021,5,17,1,New South Wales,153.319111,-28.864188 +2020,11,,1,New South Wales,152.216373,-32.408145 +2023,2,26,1,New South Wales,152.917959,-31.445289 +2023,3,14,1,New South Wales,149.944869,-36.572615 +2021,5,2,1,New South Wales,150.606702,-34.456027 +2024,2,26,1,New South Wales,153.109755,-29.490222 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2021,4,22,1,New South Wales,150.605619,-34.432214 +2020,1,29,1,New South Wales,149.382114,-36.157321 +2021,5,2,1,New South Wales,150.633577,-34.418496 +2022,2,16,1,New South Wales,152.929239,-31.461813 +2021,5,5,1,New South Wales,150.605516,-34.437342 +2023,8,20,1,New South Wales,152.784826,-31.63246 +2021,5,7,1,New South Wales,150.637282,-34.423707 +2021,7,25,1,New South Wales,153.278317,-28.818924 +2020,11,17,1,New South Wales,153.077049,-29.450991 +2021,6,2,1,New South Wales,150.529163,-34.464301 +2023,11,22,1,New South Wales,151.86406,-32.74329 +2020,10,29,1,New South Wales,149.999247,-36.565645 +2020,7,25,1,New South Wales,153.103723,-29.485674 +2023,2,19,1,New South Wales,153.110597,-29.489584 +2022,2,11,1,New South Wales,152.881437,-31.452384 +2023,9,20,1,New South Wales,152.858675,-31.129495 +2020,10,13,1,New South Wales,152.485682,-32.16053 +2021,6,23,1,New South Wales,150.519666,-34.463009 +2020,11,5,1,New South Wales,153.102996,-29.489381 +2023,8,29,1,New South Wales,150.786253,-33.706566 +2021,11,27,1,New South Wales,153.041838,-28.601622 +2023,8,25,1,New South Wales,150.989361,-34.029329 +2022,8,8,1,New South Wales,150.517437,-34.435996 +2021,5,8,1,New South Wales,150.606276,-34.438186 +2021,4,22,1,New South Wales,150.615232,-34.429346 +2021,3,12,1,New South Wales,150.634815,-34.487651 +2021,9,4,1,New South Wales,153.262256,-28.950844 +2023,9,22,1,New South Wales,153.187773,-28.825298 +2021,7,9,1,New South Wales,150.626729,-34.421384 +2020,12,9,1,New South Wales,149.960189,-36.280531 +2021,2,27,1,New South Wales,150.657576,-34.455913 +2024,10,12,1,New South Wales,150.790833,-34.138333 +2020,8,11,1,New South Wales,153.103838,-29.48558 +2021,6,21,1,New South Wales,150.602661,-34.439026 +2020,10,12,1,New South Wales,149.950035,-36.601015 +2021,5,9,1,New South Wales,150.604889,-34.426926 +2021,3,3,1,New South Wales,150.517532,-34.445783 +2021,5,18,1,New South Wales,153.103956,-29.485183 +2020,11,25,1,New South Wales,152.9215,-31.47939 +2021,4,23,1,New South Wales,150.639131,-34.421768 +2021,7,15,1,New South Wales,150.51375,-34.446355 +2023,8,28,1,New South Wales,150.786054,-33.712279 +2023,12,2,1,New South Wales,152.926703,-31.455103 +2023,11,15,1,New South Wales,152.836933,-31.483097 +2023,9,27,1,New South Wales,153.317183,-28.817365 +2020,1,2,1,New South Wales,153.321649,-28.8901 +2021,5,2,1,New South Wales,150.520474,-34.4541 +2022,8,26,1,New South Wales,152.659218,-30.181345 +2021,4,23,1,New South Wales,150.637104,-34.485234 +2021,5,3,1,New South Wales,150.603313,-34.427634 +2021,6,18,1,New South Wales,150.603348,-34.42676 +2021,7,3,1,New South Wales,150.627887,-34.390789 +2021,5,17,1,New South Wales,150.640749,-34.49423 +2023,11,29,1,New South Wales,152.100691,-32.733103 +2022,4,25,1,New South Wales,152.916547,-31.445007 +2021,8,25,1,New South Wales,150.519824,-34.446641 +2021,9,6,1,New South Wales,150.515167,-34.447745 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2021,9,25,1,New South Wales,152.81903,-31.27443 +2021,7,11,1,New South Wales,153.620069,-28.658108 +2021,5,17,1,New South Wales,149.282752,-36.056042 +2020,9,23,1,New South Wales,150.777889,-34.2012 +2023,4,26,1,New South Wales,153.629802,-28.637418 +2022,7,6,1,New South Wales,153.556223,-28.398629 +2023,4,27,1,New South Wales,151.789154,-32.653858 +2022,10,28,1,New South Wales,150.600433,-34.522986 +2022,11,29,1,New South Wales,152.754102,-30.882465 +2021,6,23,1,New South Wales,150.657412,-34.455946 +2021,10,23,1,New South Wales,152.909306,-31.453225 +2023,6,10,1,New South Wales,150.784153,-33.716735 +2022,9,5,1,New South Wales,153.103902,-29.484903 +2021,10,22,1,New South Wales,150.627594,-34.537087 +2021,11,5,1,New South Wales,152.065429,-32.710463 +2021,3,6,1,New South Wales,150.521963,-34.46375 +2024,2,4,1,New South Wales,150.41864,-34.42638 +2021,5,8,1,New South Wales,150.609255,-34.420701 +2022,12,16,1,New South Wales,152.866613,-31.284238 +2022,8,17,1,New South Wales,153.386733,-28.637772 +2020,9,9,1,New South Wales,150.00185,-31.12511 +2021,5,5,1,New South Wales,150.627177,-34.389748 +2021,5,2,1,New South Wales,150.637347,-34.488583 +2021,7,15,1,New South Wales,150.627441,-34.421226 +2023,10,13,1,New South Wales,152.785085,-31.629799 +2022,10,,1,New South Wales,150.22997,-31.86089 +2021,4,29,1,New South Wales,150.606977,-34.454401 +2021,3,25,1,New South Wales,150.610274,-34.429988 +2020,8,20,1,New South Wales,153.103924,-29.489489 +2021,9,10,1,New South Wales,153.323245,-28.817949 +2021,5,15,1,New South Wales,150.628812,-34.389212 +2021,10,9,1,New South Wales,153.401827,-28.258487 +2024,2,1,1,New South Wales,150.785495,-33.706431 +2021,4,22,1,New South Wales,150.605092,-34.423216 +2021,5,2,1,New South Wales,150.520366,-34.454071 +2021,9,3,1,New South Wales,150.836994,-34.055761 +2021,4,25,1,New South Wales,150.638294,-34.485897 +2022,10,19,1,New South Wales,152.825402,-31.64956 +2021,5,11,1,New South Wales,150.633072,-34.417522 +2020,10,23,1,New South Wales,149.934245,-36.578531 +2021,10,23,1,New South Wales,153.108199,-29.490259 +2021,5,15,1,New South Wales,150.523831,-34.463535 +2023,11,5,1,New South Wales,152.897234,-31.475332 +2021,1,26,1,New South Wales,153.378153,-28.885242 +2021,6,3,1,New South Wales,150.630064,-34.421169 +2021,5,10,1,New South Wales,150.604884,-34.427088 +2021,5,14,1,New South Wales,150.640246,-34.493138 +2024,3,13,1,New South Wales,152.111271,-32.732169 +2021,9,19,1,New South Wales,150.61569,-34.450757 +2021,6,15,1,New South Wales,150.603821,-34.436885 +2020,1,2,1,New South Wales,151.806799,-32.465571 +2021,7,21,1,New South Wales,150.52249,-34.464346 +2023,12,9,1,New South Wales,152.928968,-31.459686 +2023,12,3,1,New South Wales,150.78318,-33.718605 +2022,9,26,1,New South Wales,153.101156,-29.489914 +2020,3,31,1,New South Wales,153.314983,-28.949201 +2021,5,12,1,New South Wales,150.627238,-34.39835 +2021,8,31,1,New South Wales,153.314983,-28.949201 +2021,8,16,1,New South Wales,150.641722,-34.395781 +2021,6,16,1,New South Wales,150.639798,-34.40036 +2020,10,18,1,New South Wales,149.947316,-36.607854 +2022,11,10,1,New South Wales,153.316206,-28.850613 +2024,4,6,1,New South Wales,152.913348,-31.477106 +2022,7,27,1,New South Wales,150.838674,-34.085646 +2021,10,4,1,New South Wales,152.889948,-31.444008 +2021,4,25,1,New South Wales,150.60857,-34.453494 +2021,5,14,1,New South Wales,150.516156,-34.449244 +2020,9,20,1,New South Wales,152.066821,-32.738907 +2023,1,17,1,New South Wales,153.316082,-28.820485 +2023,7,11,1,New South Wales,152.190117,-31.593167 +2021,5,4,1,New South Wales,150.615839,-34.4363 +2020,11,4,1,New South Wales,150.072356,-33.781566 +2023,2,1,1,New South Wales,152.829766,-29.653645 +2023,12,21,1,New South Wales,152.925495,-31.454213 +2021,5,2,1,New South Wales,150.611425,-34.419751 +2020,10,24,1,New South Wales,149.934245,-36.578531 +2021,7,27,1,New South Wales,152.404167,-31.945815 +2021,7,8,1,New South Wales,150.512758,-34.447119 +2020,9,9,1,New South Wales,153.470997,-28.555904 +2020,1,1,1,New South Wales,152.909363,-31.453378 +2021,9,12,1,New South Wales,150.605057,-34.456455 +2020,9,27,1,New South Wales,153.370133,-28.259275 +2021,5,11,1,New South Wales,152.404167,-31.945815 +2022,11,15,1,New South Wales,153.109778,-28.655817 +2021,7,10,1,New South Wales,150.640975,-34.393306 +2021,5,5,1,New South Wales,150.520757,-34.436085 +2021,6,10,1,New South Wales,150.613895,-34.433124 +2022,12,14,1,New South Wales,153.103538,-29.485506 +2021,7,10,1,New South Wales,152.404167,-31.945815 +2023,9,26,1,New South Wales,153.279539,-28.678813 +2021,8,29,1,New South Wales,150.518933,-34.437418 +2022,6,1,1,New South Wales,151.219427,-33.81748 +2023,5,31,1,New South Wales,153.103468,-29.48559 +2021,5,4,1,New South Wales,150.605425,-34.437484 +2021,5,26,1,New South Wales,150.639239,-34.392776 +2023,6,25,1,New South Wales,149.551369,-33.492269 +2022,2,15,1,New South Wales,150.805876,-34.175806 +2020,12,7,1,New South Wales,152.069137,-32.707881 +2020,8,19,1,New South Wales,153.104063,-29.479356 +2021,10,8,1,New South Wales,152.926247,-31.47667 +2023,5,1,1,New South Wales,152.785975,-31.629353 +2021,7,31,1,New South Wales,150.518981,-34.4354 +2020,,,1,New South Wales,152.318289,-29.480554 +2020,7,19,1,New South Wales,152.882376,-31.428673 +2021,2,17,1,New South Wales,152.927815,-31.464749 +2021,7,12,1,New South Wales,153.316211,-28.837046 +2020,7,8,1,New South Wales,152.925868,-31.453019 +2021,5,17,1,New South Wales,150.62907,-34.395122 +2020,1,8,1,New South Wales,152.921302,-31.447009 +2021,9,2,1,New South Wales,153.571487,-28.696016 +2020,7,13,1,New South Wales,153.256484,-28.798844 +2021,6,26,1,New South Wales,150.597637,-34.41839 +2021,8,7,1,New South Wales,150.642812,-34.398011 +2020,11,17,1,New South Wales,153.036423,-30.8961 +2020,2,27,1,New South Wales,152.020331,-32.735877 +2020,11,18,1,New South Wales,153.071758,-30.885713 +2021,10,21,1,New South Wales,153.400512,-28.259128 +2021,5,21,1,New South Wales,153.63115,-28.63729 +2023,12,15,1,New South Wales,152.490336,-32.352926 +2023,1,21,1,New South Wales,150.675042,-31.516414 +2020,,,1,New South Wales,152.82611,-31.26929 +2022,6,26,1,New South Wales,152.10181,-32.734228 +2023,9,22,1,New South Wales,153.107459,-29.490156 +2022,9,19,1,New South Wales,152.562655,-29.037002 +2022,1,4,1,New South Wales,153.104176,-29.477277 +2020,11,20,1,New South Wales,149.965237,-36.459771 +2023,10,15,1,New South Wales,150.785122,-33.714179 +2020,7,17,1,New South Wales,150.89337,-33.971509 +2020,7,2,1,New South Wales,152.797792,-30.212216 +2021,6,5,1,New South Wales,150.62541,-34.389912 +2020,11,5,1,New South Wales,149.934245,-36.578531 +2021,4,26,1,New South Wales,150.635837,-34.419378 +2023,10,14,1,New South Wales,152.968057,-31.173216 +2021,6,23,1,New South Wales,150.520433,-34.454036 +2020,10,1,1,New South Wales,150.82926,-34.077175 +2021,6,10,1,New South Wales,150.630265,-34.421001 +2021,7,16,1,New South Wales,150.627185,-34.420635 +2023,7,23,1,New South Wales,152.786855,-31.629354 +2022,9,20,1,New South Wales,150.790608,-34.109424 +2024,3,15,1,New South Wales,152.87476,-31.46143 +2023,1,11,1,New South Wales,153.522225,-28.654909 +2020,5,14,1,New South Wales,152.87158,-29.653412 +2021,5,28,1,New South Wales,150.632313,-34.388098 +2021,9,23,1,New South Wales,150.613709,-34.449592 +2021,3,29,1,New South Wales,150.517241,-34.451546 +2021,4,16,1,New South Wales,150.635044,-34.486096 +2021,3,7,1,New South Wales,150.636083,-34.485539 +2023,9,19,1,New South Wales,150.78574,-33.706002 +2021,5,13,1,New South Wales,150.627732,-34.397449 +2021,2,1,1,New South Wales,153.427006,-28.80193 +2023,3,15,1,New South Wales,152.063559,-32.706148 +2023,3,23,1,New South Wales,152.926153,-31.471501 +2021,6,22,1,New South Wales,150.628003,-34.420967 +2021,6,28,1,New South Wales,150.627271,-34.420312 +2022,9,21,1,New South Wales,153.108178,-29.490427 +2022,8,8,1,New South Wales,153.496278,-28.328913 +2021,5,6,1,New South Wales,150.519929,-34.435743 +2021,3,14,1,New South Wales,150.515788,-34.444765 +2021,6,13,1,New South Wales,150.520398,-34.454117 +2021,6,13,1,New South Wales,150.517608,-34.446163 +2021,3,8,1,New South Wales,150.656193,-34.455544 +2020,10,29,1,New South Wales,149.934245,-36.578531 +2021,6,13,1,New South Wales,150.611712,-34.432992 +2021,11,14,1,New South Wales,152.923313,-31.446109 +2021,4,23,1,New South Wales,150.61728,-34.434218 +2021,4,29,1,New South Wales,150.605998,-34.454391 +2021,5,28,1,New South Wales,150.630862,-34.420652 +2023,2,2,1,New South Wales,152.965047,-30.648712 +2021,11,3,1,New South Wales,153.108189,-29.490222 +2020,4,20,1,New South Wales,152.825169,-31.549417 +2022,10,19,1,New South Wales,152.184606,-32.713683 +2023,4,9,1,New South Wales,153.094259,-28.603471 +2021,8,2,1,New South Wales,150.6337,-34.41839 +2020,9,22,1,New South Wales,152.888518,-31.434721 +2021,1,15,1,New South Wales,152.062966,-32.708428 +2020,8,3,1,New South Wales,153.562778,-28.332222 +2022,9,19,1,New South Wales,152.90881,-30.17148 +2023,12,9,1,New South Wales,152.967553,-31.1828 +2020,6,30,1,New South Wales,153.314983,-28.949201 +2022,9,22,1,New South Wales,152.928539,-31.464162 +2020,11,6,1,New South Wales,150.007338,-36.56122 +2024,3,5,1,New South Wales,153.41554,-28.734681 +2023,11,1,1,New South Wales,152.782987,-31.484836 +2021,8,2,1,New South Wales,150.602017,-34.424994 +2022,7,20,1,New South Wales,150.877346,-34.013124 +2020,11,,1,New South Wales,152.667755,-31.20241 +2023,2,13,1,New South Wales,153.077155,-29.446786 +2022,1,8,1,New South Wales,152.38363,-31.923848 +2023,9,24,1,New South Wales,151.009634,-34.045246 +2021,4,28,1,New South Wales,150.636291,-34.421794 +2021,12,23,1,New South Wales,150.615705,-34.439894 +2021,4,30,1,New South Wales,150.836213,-34.067813 +2024,2,6,1,New South Wales,152.248574,-31.423039 +2021,5,3,1,New South Wales,150.604247,-34.437966 +2021,8,18,1,New South Wales,150.643489,-34.399863 +2021,4,23,1,New South Wales,150.637104,-34.485252 +2020,2,1,1,New South Wales,152.645191,-30.537583 +2022,6,19,1,New South Wales,153.403788,-28.260718 +2021,3,28,1,New South Wales,150.6593,-34.459282 +2023,6,14,1,New South Wales,150.786073,-33.714064 +2021,6,22,1,New South Wales,150.520068,-34.453479 +2020,9,25,1,New South Wales,153.092272,-29.488051 +2020,11,3,1,New South Wales,149.968131,-36.578885 +2021,6,15,1,New South Wales,153.291127,-28.99283 +2023,1,26,1,New South Wales,152.07383,-32.72208 +2021,6,4,1,New South Wales,150.519487,-34.456568 +2022,12,12,1,New South Wales,152.904817,-30.437703 +2021,4,2,1,New South Wales,150.604172,-34.44021 +2021,6,29,1,New South Wales,153.166559,-29.4313 +2023,4,3,1,New South Wales,153.1038,-29.489531 +2021,4,10,1,New South Wales,150.60396,-34.431253 +2021,5,8,1,New South Wales,150.52129,-34.435717 +2023,4,25,1,New South Wales,151.787884,-32.652522 +2021,5,1,1,New South Wales,150.634338,-34.420071 +2020,11,1,1,New South Wales,149.96897,-36.58553 +2020,11,14,1,New South Wales,150.004563,-36.508695 +2021,6,11,1,New South Wales,150.645737,-34.397274 +2020,11,4,1,New South Wales,149.551256,-33.563104 +2023,3,10,1,New South Wales,153.318473,-28.931395 +2021,4,26,1,New South Wales,151.73973,-30.477815 +2021,9,16,1,New South Wales,150.529679,-34.47229 +2023,3,1,1,New South Wales,152.924994,-31.459265 +2022,8,3,1,New South Wales,151.68364,-32.5154 +2022,7,31,1,New South Wales,152.788405,-31.151223 +2020,12,4,1,New South Wales,152.90196,-31.442204 +2022,3,7,1,New South Wales,152.094433,-32.7608 +2021,6,28,1,New South Wales,150.630922,-34.388071 +2022,9,9,1,New South Wales,152.91383,-31.452542 +2022,12,31,1,New South Wales,153.314983,-28.949201 +2020,9,24,1,New South Wales,152.898305,-31.443558 +2023,11,18,1,New South Wales,150.785478,-33.707915 +2024,1,16,1,New South Wales,150.659645,-33.527127 +2020,11,17,1,New South Wales,153.036423,-30.8961 +2021,2,8,1,New South Wales,150.821878,-34.101248 +2023,10,17,1,New South Wales,150.784226,-33.717253 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2020,4,29,1,New South Wales,152.925776,-31.447463 +2021,12,14,1,New South Wales,150.775981,-34.12523 +2022,8,1,1,New South Wales,150.796862,-34.135908 +2021,6,5,1,New South Wales,150.640002,-34.397776 +2021,9,16,1,New South Wales,153.607877,-28.68664 +2023,11,27,1,New South Wales,152.352747,-31.924268 +2020,2,17,1,New South Wales,153.32762,-28.814661 +2021,5,22,1,New South Wales,150.639099,-34.493251 +2021,6,19,1,New South Wales,150.622508,-34.384491 +2023,9,30,1,New South Wales,150.989152,-34.028881 +2021,12,31,1,New South Wales,152.818111,-31.572611 +2021,6,26,1,New South Wales,150.597521,-34.418235 +2021,5,24,1,New South Wales,150.522403,-34.465075 +2020,10,24,1,New South Wales,149.958935,-36.568735 +2020,7,28,1,New South Wales,153.403424,-28.683671 +2021,4,27,1,New South Wales,150.635801,-34.419504 +2023,9,28,1,New South Wales,150.766463,-34.246745 +2020,9,21,1,New South Wales,150.691442,-34.366275 +2021,4,21,1,New South Wales,150.610279,-34.419125 +2022,9,13,1,New South Wales,152.870423,-31.163733 +2021,5,14,1,New South Wales,150.629134,-34.395934 +2021,6,28,1,New South Wales,150.64325,-34.393232 +2023,11,24,1,New South Wales,152.87194,-31.464025 +2020,7,29,1,New South Wales,150.059244,-33.77543 +2022,12,26,1,New South Wales,153.10423,-29.482171 +2020,2,3,1,New South Wales,153.103851,-29.485001 +2021,4,17,1,New South Wales,150.627364,-34.386596 +2021,12,31,1,New South Wales,152.90077,-31.442886 +2021,6,10,1,New South Wales,150.630254,-34.421001 +2021,3,8,1,New South Wales,152.060997,-32.710803 +2021,3,6,1,New South Wales,150.514723,-34.445816 +2021,5,17,1,New South Wales,150.516161,-34.45019 +2023,9,21,1,New South Wales,152.398988,-31.940952 +2021,4,29,1,New South Wales,150.636303,-34.421776 +2021,7,7,1,New South Wales,150.662767,-34.454759 +2021,4,30,1,New South Wales,150.610126,-34.419897 +2022,4,25,1,New South Wales,153.334393,-28.814137 +2022,8,27,1,New South Wales,152.785319,-31.633263 +2023,8,4,1,New South Wales,151.777049,-32.314506 +2022,12,31,1,New South Wales,152.379054,-31.921832 +2021,5,30,1,New South Wales,150.522749,-34.452262 +2022,9,27,1,New South Wales,150.81321,-34.139662 +2020,11,28,1,New South Wales,153.521255,-28.685121 +2023,9,5,1,New South Wales,150.78418,-33.717369 +2021,5,20,1,New South Wales,150.529954,-34.471088 +2021,12,2,1,New South Wales,153.373712,-29.029983 +2021,5,4,1,New South Wales,150.615786,-34.436263 +2022,9,16,1,New South Wales,153.303468,-28.817396 +2021,5,22,1,New South Wales,150.529009,-34.471375 +2020,10,14,1,New South Wales,152.972324,-29.238849 +2023,4,17,1,New South Wales,153.103838,-29.489573 +2021,5,5,1,New South Wales,150.522982,-34.452483 +2021,6,8,1,New South Wales,150.518726,-34.447348 +2022,4,21,1,New South Wales,152.909493,-31.457714 +2021,6,15,1,New South Wales,150.615848,-34.433307 +2022,10,6,1,New South Wales,152.934932,-30.423849 +2021,5,18,1,New South Wales,150.531024,-34.470947 +2020,11,23,1,New South Wales,153.296079,-28.820682 +2022,3,1,1,New South Wales,153.496691,-28.686235 +2021,5,10,1,New South Wales,150.637236,-34.423778 +2023,12,14,1,New South Wales,153.433788,-28.985675 +2020,11,17,1,New South Wales,153.614926,-28.663144 +2022,10,31,1,New South Wales,152.478425,-31.940053 +2021,7,1,1,New South Wales,150.513075,-34.447098 +2021,5,5,1,New South Wales,150.609255,-34.418762 +2024,1,9,1,New South Wales,153.110533,-29.490152 +2023,9,28,1,New South Wales,152.834899,-31.584987 +2022,8,19,1,New South Wales,153.104149,-29.478898 +2020,11,16,1,New South Wales,153.317852,-28.929063 +2021,7,19,1,New South Wales,150.522738,-34.467353 +2020,7,27,1,New South Wales,152.721403,-29.365098 +2021,4,7,1,New South Wales,150.517583,-34.453618 +2021,3,25,1,New South Wales,153.607389,-28.687767 +2021,4,29,1,New South Wales,150.624439,-34.388108 +2020,10,11,1,New South Wales,150.789371,-34.197984 +2021,5,16,1,New South Wales,150.52391,-34.462698 +2021,5,14,1,New South Wales,150.517792,-34.441407 +2024,3,26,1,New South Wales,152.063784,-32.706589 +2021,6,20,1,New South Wales,150.603804,-34.439391 +2021,6,11,1,New South Wales,150.60436,-34.438969 +2021,5,9,1,New South Wales,150.518313,-34.45137 +2021,8,27,1,New South Wales,153.109294,-29.490609 +2023,7,14,1,New South Wales,149.760909,-32.403341 +2022,8,2,1,New South Wales,153.296846,-28.820795 +2021,7,23,1,New South Wales,152.819471,-30.169833 +2021,6,4,1,New South Wales,150.639844,-34.399144 +2022,10,28,1,New South Wales,152.83272,-31.210101 +2021,5,2,1,New South Wales,150.606435,-34.45549 +2021,5,26,1,New South Wales,150.521559,-34.465617 +2022,1,7,1,New South Wales,152.386288,-31.914637 +2022,8,10,1,New South Wales,152.79663,-31.653461 +2021,6,22,1,New South Wales,150.52025,-34.465725 +2021,4,29,1,New South Wales,150.60403,-34.427261 +2020,9,21,1,New South Wales,152.911617,-31.470209 +2021,5,27,1,New South Wales,150.516241,-34.448957 +2021,5,4,1,New South Wales,150.611623,-34.419656 +2023,4,19,1,New South Wales,153.303075,-28.824231 +2020,9,14,1,New South Wales,150.011629,-29.300857 +2021,6,12,1,New South Wales,150.613691,-34.431867 +2023,12,31,1,New South Wales,150.786353,-33.704003 +2020,6,26,1,New South Wales,153.371143,-28.884607 +2021,7,3,1,New South Wales,150.523256,-34.46603 +2020,5,26,1,New South Wales,150.064348,-33.772343 +2023,11,2,1,New South Wales,152.371996,-31.921066 +2021,8,20,1,New South Wales,152.910459,-31.439111 +2020,11,5,1,New South Wales,149.943147,-36.549371 +2021,6,5,1,New South Wales,150.625012,-34.389787 +2021,5,18,1,New South Wales,150.607966,-34.436515 +2021,4,30,1,New South Wales,150.616347,-34.436057 +2021,10,20,1,New South Wales,152.06473,-32.709738 +2023,4,10,1,New South Wales,152.374047,-31.913202 +2020,11,24,1,New South Wales,153.598349,-28.723183 +2021,7,18,1,New South Wales,150.645207,-34.392891 +2022,9,18,1,New South Wales,152.104582,-32.183 +2023,4,11,1,New South Wales,153.15908,-28.924837 +2021,11,15,1,New South Wales,152.133659,-30.11224 +2021,9,7,1,New South Wales,150.567012,-34.483871 +2021,11,15,1,New South Wales,152.382663,-31.924317 +2022,11,8,1,New South Wales,153.320399,-28.845128 +2023,10,28,1,New South Wales,151.075072,-29.746346 +2022,9,16,1,New South Wales,153.396418,-29.097349 +2022,12,7,1,New South Wales,153.230493,-28.943992 +2021,3,14,1,New South Wales,150.222847,-33.719265 +2021,4,20,1,New South Wales,150.610246,-34.419124 +2021,6,9,1,New South Wales,150.626588,-34.387104 +2021,7,8,1,New South Wales,150.975593,-34.086979 +2020,10,14,1,New South Wales,149.947316,-36.607854 +2021,11,23,1,New South Wales,152.888659,-30.452702 +2021,12,22,1,New South Wales,153.101145,-29.4899 +2022,10,12,1,New South Wales,152.879652,-31.445395 +2020,2,10,1,New South Wales,152.914901,-31.449087 +2021,6,6,1,New South Wales,150.62598,-34.389779 +2020,10,21,1,New South Wales,152.166503,-32.744762 +2021,4,14,1,New South Wales,152.592108,-31.574115 +2021,5,8,1,New South Wales,150.622106,-34.397917 +2020,11,2,1,New South Wales,149.934245,-36.578531 +2023,10,29,1,New South Wales,150.838296,-34.074675 +2021,7,8,1,New South Wales,150.521916,-34.464605 +2020,6,7,1,New South Wales,153.071318,-30.887664 +2023,10,25,1,New South Wales,150.722727,-34.189762 +2020,9,18,1,New South Wales,152.897501,-31.447814 +2020,9,27,1,New South Wales,149.947895,-36.653563 +2023,12,6,1,New South Wales,152.655098,-30.174476 +2024,1,25,1,New South Wales,152.915779,-31.478301 +2023,3,24,1,New South Wales,153.104176,-29.478627 +2021,9,14,1,New South Wales,150.532413,-34.477394 +2020,5,2,1,New South Wales,153.094037,-29.48877 +2024,3,4,1,New South Wales,152.913159,-31.47739 +2020,1,6,1,New South Wales,152.409406,-31.910186 +2020,4,10,1,New South Wales,152.382538,-31.225485 +2022,6,25,1,New South Wales,152.89393,-31.44729 +2020,7,16,1,New South Wales,152.409406,-31.910186 +2021,3,11,1,New South Wales,150.514249,-34.446022 +2023,5,21,1,New South Wales,152.786071,-31.631664 +2023,11,14,1,New South Wales,150.046861,-32.626972 +2022,6,29,1,New South Wales,153.325951,-28.825963 +2022,11,23,1,New South Wales,152.760068,-30.904021 +2023,11,7,1,New South Wales,153.103951,-29.489601 +2023,5,30,1,New South Wales,152.190904,-31.594568 +2022,3,10,1,New South Wales,153.415262,-28.672208 +2021,5,18,1,New South Wales,150.607944,-34.436533 +2022,3,18,1,New South Wales,152.020961,-32.7672 +2021,11,3,1,New South Wales,151.027556,-34.031189 +2023,8,7,1,New South Wales,150.784958,-33.718725 +2020,3,3,1,New South Wales,153.516583,-28.690653 +2021,6,6,1,New South Wales,150.616275,-34.435893 +2022,12,17,1,New South Wales,152.387172,-31.87656 +2023,1,25,1,New South Wales,149.649253,-37.366721 +2022,12,30,1,New South Wales,152.793312,-31.643042 +2021,11,11,1,New South Wales,153.438811,-28.993709 +2021,4,29,1,New South Wales,150.616316,-34.429097 +2021,3,16,1,New South Wales,150.5166,-34.445656 +2021,3,30,1,New South Wales,150.615802,-34.434171 +2020,8,5,1,New South Wales,153.554787,-28.35802 +2020,10,17,1,New South Wales,149.887989,-36.587028 +2021,5,8,1,New South Wales,150.604447,-34.426385 +2022,8,30,1,New South Wales,151.155463,-31.47032 +2021,10,5,1,New South Wales,150.790837,-34.185914 +2021,5,31,1,New South Wales,150.640333,-34.397603 +2023,7,25,1,New South Wales,150.784625,-33.716301 +2023,12,27,1,New South Wales,152.92546,-31.47324 +2022,9,27,1,New South Wales,153.079899,-30.271084 +2023,7,8,1,New South Wales,153.110522,-29.490194 +2021,5,14,1,New South Wales,150.602645,-34.436537 +2021,6,29,1,New South Wales,150.513106,-34.447135 +2020,9,17,1,New South Wales,153.616359,-28.656503 +2023,9,25,1,New South Wales,153.278713,-28.933174 +2021,8,14,1,New South Wales,150.808227,-34.098164 +2020,11,27,1,New South Wales,149.965237,-36.459771 +2022,8,11,1,New South Wales,152.921257,-31.456454 +2022,2,24,1,New South Wales,152.404167,-31.945815 +2021,4,29,1,New South Wales,150.522899,-34.452328 +2021,5,24,1,New South Wales,150.52219,-34.465278 +2023,10,25,1,New South Wales,152.201795,-32.233788 +2021,9,9,1,New South Wales,153.12941,-30.257728 +2021,3,31,1,New South Wales,150.517263,-34.451556 +2023,1,23,1,New South Wales,152.892374,-31.447505 +2022,12,16,1,New South Wales,152.873378,-31.285084 +2023,12,17,1,New South Wales,152.063741,-32.706607 +2020,7,28,1,New South Wales,152.79769,-31.128598 +2020,11,20,1,New South Wales,149.965237,-36.459771 +2024,4,11,1,New South Wales,151.404353,-31.449245 +2021,4,17,1,New South Wales,150.629714,-34.394269 +2021,6,19,1,New South Wales,150.602629,-34.425277 +2021,3,27,1,New South Wales,150.517498,-34.446179 +2024,4,9,1,New South Wales,152.772987,-31.631353 +2022,10,2,1,New South Wales,152.924785,-31.454082 +2023,3,10,1,New South Wales,149.945176,-36.590676 +2024,1,3,1,New South Wales,152.07727,-32.722477 +2021,9,6,1,New South Wales,151.650528,-32.682711 +2020,10,30,1,New South Wales,149.984095,-36.575978 +2022,6,5,1,New South Wales,153.200436,-28.874343 +2021,4,23,1,New South Wales,150.616375,-34.434309 +2023,2,27,1,New South Wales,153.388588,-28.556385 +2022,11,20,1,New South Wales,152.769456,-30.916275 +2021,6,11,1,New South Wales,150.518217,-34.453514 +2020,1,9,1,New South Wales,150.806817,-34.109266 +2021,6,26,1,New South Wales,150.645216,-34.391025 +2021,5,29,1,New South Wales,150.523106,-34.464485 +2023,9,30,1,New South Wales,152.906016,-31.471952 +2023,8,22,1,New South Wales,153.190863,-28.705862 +2021,5,14,1,New South Wales,150.629591,-34.389371 +2021,4,12,1,New South Wales,150.526216,-34.45831 +2023,1,21,1,New South Wales,153.299324,-28.888717 +2023,3,9,1,New South Wales,153.393908,-28.960305 +2023,10,31,1,New South Wales,152.900157,-31.468923 +2022,8,16,1,New South Wales,150.875431,-34.057821 +2023,2,13,1,New South Wales,153.104176,-29.48212 +2021,1,19,1,New South Wales,153.109599,-29.492781 +2021,3,13,1,New South Wales,150.658739,-34.45754 +2023,9,15,1,New South Wales,152.620978,-30.339125 +2021,5,15,1,New South Wales,150.60059,-34.428086 +2023,4,22,1,New South Wales,149.265895,-36.067862 +2021,9,15,1,New South Wales,150.513015,-34.445808 +2020,11,30,1,New South Wales,149.964283,-36.48252 +2021,6,19,1,New South Wales,150.514004,-34.445837 +2021,1,24,1,New South Wales,152.944433,-29.346563 +2021,4,26,1,New South Wales,150.661806,-34.45841 +2021,6,9,1,New South Wales,150.516631,-34.454139 +2022,11,8,1,New South Wales,151.07685,-33.147056 +2021,1,21,1,New South Wales,152.177949,-32.666409 +2020,10,27,1,New South Wales,152.908156,-31.44469 +2021,8,11,1,New South Wales,153.401468,-28.872044 +2023,8,7,1,New South Wales,152.833041,-31.634218 +2021,6,23,1,New South Wales,150.628405,-34.420587 +2021,4,29,1,New South Wales,150.636248,-34.421775 +2020,8,12,1,New South Wales,152.102532,-28.615302 +2022,1,6,1,New South Wales,153.310754,-28.942372 +2021,9,8,1,New South Wales,152.778695,-30.188975 +2024,1,13,1,New South Wales,149.559709,-33.691976 +2020,8,1,1,New South Wales,150.849458,-34.063193 +2020,12,21,1,New South Wales,153.317534,-28.827945 +2021,5,9,1,New South Wales,150.60493,-34.42699 +2021,8,10,1,New South Wales,152.428165,-31.792171 +2021,3,1,1,New South Wales,150.528027,-34.457805 +2020,3,25,1,New South Wales,150.129471,-35.065122 +2021,5,29,1,New South Wales,150.517395,-34.441588 +2020,4,14,1,New South Wales,152.97348,-30.4283 +2020,10,7,1,New South Wales,151.740306,-32.397042 +2021,10,7,1,New South Wales,153.000754,-30.386962 +2021,3,10,1,New South Wales,150.519948,-34.466377 +2020,12,8,1,New South Wales,149.972032,-36.288695 +2020,5,3,1,New South Wales,152.928887,-31.459167 +2024,2,22,1,New South Wales,152.892084,-31.443426 +2021,5,2,1,New South Wales,150.633546,-34.41846 +2024,9,15,1,New South Wales,153.629237,-28.637406 +2022,11,2,1,New South Wales,153.402846,-28.963784 +2021,4,26,1,New South Wales,150.637248,-34.48786 +2022,3,4,1,New South Wales,153.08973,-28.597841 +2024,1,5,1,New South Wales,150.658674,-33.526857 +2020,11,16,1,New South Wales,149.910112,-36.460589 +2021,6,2,1,New South Wales,150.532756,-34.463166 +2021,5,31,1,New South Wales,150.61613,-34.437955 +2021,5,1,1,New South Wales,150.608412,-34.455601 +2021,5,12,1,New South Wales,150.633134,-34.417622 +2021,4,28,1,New South Wales,150.635388,-34.420271 +2021,5,31,1,New South Wales,150.616115,-34.437711 +2024,3,5,1,New South Wales,150.704764,-33.479658 +2023,12,3,1,New South Wales,150.784203,-33.717759 +2022,10,10,1,New South Wales,152.91428,-31.458611 +2021,8,18,1,New South Wales,149.953129,-36.635401 +2021,5,21,1,New South Wales,150.599516,-34.429913 +2020,12,16,1,New South Wales,149.729928,-32.475211 +2020,10,10,1,New South Wales,152.247202,-30.053999 +2021,4,8,1,New South Wales,150.53587,-34.463138 +2023,5,23,1,New South Wales,153.285038,-28.971537 +2020,5,27,1,New South Wales,149.367548,-36.01979 +2020,9,2,1,New South Wales,152.772634,-31.486569 +2021,9,11,1,New South Wales,152.15231,-31.445045 +2020,10,12,1,New South Wales,149.887989,-36.587028 +2022,7,7,1,Victoria,142.625011,-38.278043 +2023,3,21,1,New South Wales,152.89975,-31.473967 +2021,10,20,1,New South Wales,153.331914,-28.814261 +2020,11,26,1,New South Wales,149.965237,-36.459771 +2021,6,17,1,New South Wales,150.65947,-34.45512 +2022,9,17,1,New South Wales,152.921957,-31.474015 +2021,7,5,1,New South Wales,150.602999,-34.417675 +2020,9,18,1,New South Wales,149.172153,-35.958656 +2020,10,18,1,New South Wales,153.437028,-28.874832 +2020,4,27,1,New South Wales,153.301536,-28.9982 +2023,12,23,1,New South Wales,150.785167,-33.705197 +2023,9,13,1,New South Wales,152.413017,-31.932287 +2023,4,24,1,New South Wales,149.325489,-36.330698 +2021,4,24,1,New South Wales,150.637888,-34.48561 +2022,4,13,1,New South Wales,152.00351,-32.728513 +2021,12,15,1,New South Wales,152.900238,-31.474171 +2021,4,25,1,New South Wales,150.615589,-34.435528 +2022,9,1,1,New South Wales,153.410239,-28.724964 +2021,8,11,1,New South Wales,152.439172,-31.81832 +2020,5,3,1,New South Wales,153.141493,-29.070701 +2023,9,5,1,New South Wales,152.816526,-31.449466 +2021,5,23,1,New South Wales,150.527447,-34.469351 +2021,5,7,1,New South Wales,150.615116,-34.435348 +2021,4,22,1,New South Wales,150.63852,-34.422991 +2023,3,14,1,New South Wales,153.60798,-28.675791 +2021,11,3,1,New South Wales,152.065365,-32.71049 +2021,7,19,1,New South Wales,150.978275,-34.084622 +2023,7,8,1,New South Wales,152.373466,-31.914313 +2022,11,19,1,New South Wales,152.769456,-30.916275 +2022,11,21,1,New South Wales,152.78933,-30.918792 +2023,8,25,1,New South Wales,153.110517,-29.489942 +2021,12,17,1,New South Wales,153.43729,-28.993218 +2021,5,10,1,New South Wales,150.615217,-34.434836 +2020,5,,1,New South Wales,152.061473,-32.739184 +2021,7,4,1,New South Wales,150.51414,-34.446399 +2020,10,28,1,New South Wales,149.984095,-36.575978 +2022,7,24,1,New South Wales,153.335199,-28.815073 +2021,11,14,1,New South Wales,152.912435,-31.444867 +2021,12,3,1,New South Wales,152.131065,-32.731099 +2021,7,23,1,New South Wales,150.630266,-34.420965 +2024,1,16,1,New South Wales,152.728427,-31.222164 +2023,11,5,1,New South Wales,150.784993,-33.714304 +2020,8,9,1,New South Wales,152.896466,-31.461292 +2020,1,26,1,New South Wales,152.914487,-31.467406 +2022,9,11,1,New South Wales,152.905614,-31.436771 +2021,3,8,1,New South Wales,150.532365,-34.473111 +2020,10,8,1,New South Wales,149.941793,-36.651646 +2021,7,30,1,New South Wales,150.626048,-34.387752 +2024,1,2,1,New South Wales,153.107454,-29.490119 +2020,4,27,1,New South Wales,153.301536,-28.9982 +2020,10,29,1,New South Wales,149.958935,-36.568735 +2021,4,26,1,New South Wales,150.614368,-34.4295 +2022,9,5,1,New South Wales,153.104997,-29.489662 +2021,6,19,1,New South Wales,150.622442,-34.384508 +2021,4,26,1,New South Wales,150.638246,-34.419975 +2024,3,20,1,New South Wales,152.11039,-32.767366 +2023,12,14,1,New South Wales,152.925978,-31.452385 +2023,7,13,1,New South Wales,153.006466,-30.421604 +2022,2,4,1,New South Wales,152.90294,-31.441314 +2021,5,21,1,New South Wales,150.60741,-34.433142 +2022,2,20,1,New South Wales,152.867589,-29.667284 +2021,11,15,1,New South Wales,153.451135,-28.664276 +2021,6,2,1,New South Wales,150.519123,-34.439441 +2023,1,9,1,New South Wales,153.109261,-29.491854 +2020,10,5,1,New South Wales,152.119993,-32.718829 +2021,11,19,1,New South Wales,153.557046,-28.397354 +2023,7,9,1,New South Wales,153.315879,-28.849906 +2020,4,26,1,New South Wales,152.91657,-31.444681 +2020,12,1,1,New South Wales,153.60947,-28.689615 +2020,7,23,1,New South Wales,151.775575,-32.590076 +2024,1,9,1,New South Wales,150.78515,-33.716916 +2021,5,11,1,New South Wales,152.036618,-32.768798 +2021,5,17,1,New South Wales,150.637345,-34.42378 +2021,5,29,1,New South Wales,150.515866,-34.448751 +2021,6,29,1,New South Wales,153.104176,-29.479813 +2021,7,30,1,New South Wales,153.067614,-30.331498 +2023,10,27,1,New South Wales,149.546776,-33.488559 +2023,8,14,1,New South Wales,153.103881,-29.489587 +2020,9,10,1,New South Wales,150.778378,-34.139613 +2021,5,26,1,New South Wales,150.630819,-34.420652 +2024,2,18,1,New South Wales,152.921716,-31.463686 +2021,4,27,1,New South Wales,150.635836,-34.419414 +2021,10,24,1,New South Wales,150.704764,-33.479658 +2024,4,19,1,New South Wales,152.747238,-31.568896 +2023,2,18,1,New South Wales,150.704764,-33.479658 +2021,5,16,1,New South Wales,150.51451,-34.443828 +2022,6,10,1,New South Wales,153.104058,-29.485099 +2020,5,3,1,New South Wales,153.14077,-29.030627 +2023,9,3,1,New South Wales,153.302891,-28.844077 +2021,4,23,1,New South Wales,150.629244,-34.395107 +2021,7,22,1,New South Wales,150.976896,-34.086596 +2023,4,5,1,New South Wales,153.555947,-28.399393 +2023,9,14,1,New South Wales,153.394052,-28.959014 +2024,3,17,1,New South Wales,152.924725,-31.439548 +2021,5,23,1,New South Wales,150.518407,-34.451507 +2020,7,11,1,New South Wales,152.712042,-30.456182 +2021,6,11,1,New South Wales,150.627223,-34.3858 +2020,10,21,1,New South Wales,149.913134,-36.588285 +2023,11,25,1,New South Wales,153.109379,-29.49046 +2023,5,9,1,New South Wales,153.103355,-29.489904 +2021,4,6,1,New South Wales,150.533064,-34.479679 +2021,1,9,1,New South Wales,153.104058,-29.485048 +2024,3,12,1,New South Wales,152.370545,-31.919529 +2021,8,31,1,New South Wales,150.256079,-31.008933 +2021,10,22,1,New South Wales,146.547073,-34.746596 +2022,9,30,1,New South Wales,153.563801,-28.395201 +2023,11,17,1,New South Wales,152.925144,-31.454012 +2024,9,16,1,New South Wales,149.551708,-33.492358 +2021,8,17,1,New South Wales,152.374256,-31.916023 +2021,9,19,1,New South Wales,150.615462,-34.449951 +2021,7,3,1,New South Wales,150.523256,-34.466021 +2021,8,11,1,New South Wales,152.443051,-31.823416 +2021,5,14,1,New South Wales,150.616255,-34.435839 +2021,11,17,1,New South Wales,150.615352,-34.44005 +2021,5,27,1,New South Wales,150.527204,-34.469445 +2023,2,11,1,New South Wales,152.076605,-32.724731 +2023,10,14,1,New South Wales,150.784731,-33.713391 +2024,8,19,1,New South Wales,151.92539,-32.586245 +2021,12,11,1,New South Wales,149.322263,-33.497426 +2021,5,31,1,New South Wales,150.645521,-33.589049 +2021,2,27,1,New South Wales,150.518314,-34.450964 +2021,10,4,1,New South Wales,153.101306,-29.489923 +2022,9,4,1,New South Wales,150.812345,-34.124693 +2022,10,19,1,New South Wales,151.574475,-32.838109 +2020,12,10,1,New South Wales,149.960189,-36.280531 +2021,12,4,1,New South Wales,152.925188,-31.453488 +2021,4,6,1,New South Wales,150.517239,-34.451988 +2022,11,28,1,New South Wales,152.794854,-30.893434 +2024,6,20,1,New South Wales,149.540998,-37.301692 +2024,3,27,1,New South Wales,152.398389,-31.906075 +2023,8,5,1,New South Wales,153.480602,-28.702654 +2022,3,21,1,New South Wales,152.922989,-31.475595 +2021,7,1,1,New South Wales,150.627137,-34.421175 +2021,8,29,1,New South Wales,153.472525,-28.557038 +2024,9,1,1,New South Wales,152.916585,-31.450474 +2021,5,19,1,New South Wales,150.841456,-34.134377 +2023,11,14,1,New South Wales,150.990368,-34.025794 +2020,9,3,1,New South Wales,153.003025,-29.182078 +2020,12,,1,New South Wales,152.965822,-31.200967 +2021,6,4,1,New South Wales,150.606722,-34.437807 +2023,4,30,1,New South Wales,152.91454,-31.46705 +2020,9,7,1,New South Wales,152.920964,-31.445923 +2021,5,22,1,New South Wales,150.515792,-34.450877 +2023,9,24,1,New South Wales,153.629659,-28.637548 +2021,8,4,1,New South Wales,150.632647,-34.418316 +2020,10,,1,New South Wales,150.559732,-34.535992 +2024,2,1,1,New South Wales,153.103908,-29.489596 +2023,4,26,1,New South Wales,152.374234,-31.916151 +2020,10,28,1,New South Wales,151.001829,-34.05547 +2021,6,20,1,New South Wales,150.602811,-34.424622 +2021,3,,1,New South Wales,153.44088,-28.982871 +2023,11,30,1,New South Wales,150.709614,-29.634217 +2021,10,28,1,New South Wales,152.878559,-29.662073 +2021,5,5,1,New South Wales,150.62717,-34.389595 +2022,4,16,1,New South Wales,150.993848,-34.049743 +2021,6,15,1,New South Wales,150.630353,-34.42094 +2020,4,20,1,New South Wales,152.682486,-30.480298 +2021,3,11,1,New South Wales,150.63506,-34.486303 +2021,4,19,1,New South Wales,150.614134,-34.429703 +2021,7,25,1,New South Wales,150.522337,-34.465822 +2023,7,25,1,New South Wales,152.92333,-31.470015 +2022,9,9,1,New South Wales,152.761695,-31.492172 +2022,9,21,1,New South Wales,149.936226,-32.322262 +2021,4,17,1,New South Wales,150.524638,-34.452048 +2021,5,8,1,New South Wales,150.609942,-34.455018 +2022,4,24,1,New South Wales,152.374205,-31.915303 +2023,9,27,1,New South Wales,153.394592,-28.960091 +2020,4,30,1,New South Wales,153.283518,-28.774274 +2023,2,7,1,New South Wales,152.930119,-29.734477 +2021,6,30,1,New South Wales,150.644223,-34.394225 +2021,6,12,1,New South Wales,152.894407,-31.430976 +2020,3,25,1,New South Wales,150.126517,-35.066677 +2021,8,14,1,New South Wales,150.521351,-34.464936 +2021,5,13,1,New South Wales,150.517939,-34.437903 +2021,9,22,1,New South Wales,150.513827,-34.446311 +2023,12,4,2,New South Wales,153.395108,-29.047548 +2023,9,15,1,New South Wales,152.787664,-31.636692 +2023,9,10,1,New South Wales,153.396431,-29.095634 +2021,7,26,1,New South Wales,150.516326,-34.448643 +2020,3,29,1,New South Wales,153.315556,-28.827302 +2023,6,26,1,New South Wales,153.091698,-30.353831 +2021,1,31,1,New South Wales,153.313361,-28.855518 +2020,10,6,1,New South Wales,152.822669,-31.56309 +2020,10,,1,New South Wales,149.887989,-36.587028 +2021,1,,1,New South Wales,153.120998,-30.297938 +2021,6,14,1,New South Wales,150.642916,-34.394695 +2024,2,4,1,New South Wales,150.003869,-32.696024 +2021,5,30,1,New South Wales,151.717837,-32.662351 +2021,6,14,1,New South Wales,150.622973,-34.385744 +2020,4,28,1,New South Wales,152.916581,-31.439114 +2023,5,8,1,New South Wales,150.997525,-29.517807 +2024,1,15,1,New South Wales,153.107969,-29.490222 +2021,6,24,1,New South Wales,150.601298,-34.417398 +2023,9,12,1,New South Wales,152.89453,-31.44548 +2020,1,4,1,New South Wales,152.872851,-29.689675 +2020,12,,1,New South Wales,152.965822,-31.200967 +2022,10,1,1,New South Wales,152.136691,-32.719138 +2021,6,12,1,New South Wales,150.522083,-34.465943 +2022,8,22,1,New South Wales,152.879472,-31.448729 +2022,8,7,1,New South Wales,152.841739,-31.546836 +2021,6,21,1,New South Wales,150.603397,-34.438779 +2022,11,23,1,New South Wales,152.905097,-31.466051 +2021,5,2,1,New South Wales,150.605211,-34.426319 +2023,9,15,1,New South Wales,152.077686,-32.722004 +2020,10,15,1,New South Wales,149.887989,-36.587028 +2021,10,5,1,New South Wales,153.288957,-28.818109 +2021,2,24,1,New South Wales,153.375095,-28.252332 +2021,6,11,1,New South Wales,150.523468,-34.459219 +2020,10,18,1,New South Wales,149.887989,-36.587028 +2020,8,5,1,New South Wales,152.976748,-31.139874 +2020,12,9,1,New South Wales,152.092424,-32.738356 +2021,5,5,1,New South Wales,150.637346,-34.423762 +2020,10,23,1,New South Wales,149.934245,-36.578531 +2020,10,9,1,New South Wales,153.302976,-28.68189 +2024,5,23,1,New South Wales,151.243253,-33.127446 +2023,4,25,1,New South Wales,153.265614,-28.892998 +2021,8,3,1,New South Wales,150.518997,-34.438564 +2022,7,28,1,New South Wales,152.780737,-31.631109 +2020,9,13,1,New South Wales,152.728124,-31.454545 +2021,5,25,1,New South Wales,150.631499,-34.388416 +2022,7,7,1,New South Wales,153.29339,-28.864601 +2024,6,4,1,New South Wales,152.916581,-31.444823 +2021,7,11,1,New South Wales,150.556772,-34.474832 +2022,12,1,1,New South Wales,152.834928,-31.472086 +2021,4,25,1,New South Wales,150.638043,-34.419854 +2022,12,22,1,New South Wales,153.284,-28.970108 +2021,6,4,1,New South Wales,150.534883,-34.463362 +2020,3,28,1,New South Wales,153.607178,-28.662723 +2021,10,9,1,New South Wales,152.089552,-32.728099 +2021,4,6,1,New South Wales,150.606812,-34.429677 +2022,11,20,1,New South Wales,152.769456,-30.916275 +2021,8,3,1,New South Wales,150.602294,-34.425964 +2022,8,24,1,New South Wales,152.793049,-31.641807 +2022,11,8,1,New South Wales,153.395101,-29.034894 +2020,9,7,1,New South Wales,153.093699,-29.488863 +2021,5,19,1,New South Wales,150.630529,-34.395051 +2021,6,19,1,New South Wales,150.619143,-34.436833 +2021,9,7,1,New South Wales,153.565144,-28.388785 +2021,4,30,1,New South Wales,150.603999,-34.427594 +2023,12,20,1,New South Wales,151.689145,-32.499604 +2022,5,26,1,New South Wales,151.478898,-31.444171 +2020,6,6,1,New South Wales,153.428133,-28.558093 +2023,7,3,1,New South Wales,150.564402,-29.545672 +2021,9,12,1,New South Wales,152.378502,-31.914527 +2022,4,12,1,New South Wales,153.104133,-29.480887 +2022,2,1,1,New South Wales,153.383849,-28.786751 +2021,8,5,1,New South Wales,150.515698,-34.438632 +2021,7,14,1,New South Wales,150.515778,-34.444737 +2021,8,19,1,New South Wales,150.611309,-34.430712 +2021,12,14,1,New South Wales,152.069137,-32.707881 +2021,9,12,1,New South Wales,150.639614,-34.399184 +2021,7,8,1,New South Wales,150.995496,-34.086919 +2021,4,19,1,New South Wales,150.614225,-34.429543 +2022,2,22,1,New South Wales,151.168349,-33.12666 +2020,9,14,1,New South Wales,153.314,-28.885388 +2021,6,24,1,New South Wales,152.404167,-31.945815 +2021,6,30,1,New South Wales,150.644542,-34.393726 +2020,10,9,1,New South Wales,152.404167,-31.945815 +2022,1,20,1,New South Wales,153.393381,-28.275426 +2021,4,30,1,New South Wales,150.635252,-34.419683 +2020,11,24,1,New South Wales,153.342482,-28.805797 +2020,10,29,1,New South Wales,149.999247,-36.565645 +2022,12,3,1,New South Wales,152.079387,-32.727247 +2022,9,5,1,New South Wales,153.472894,-28.625862 +2020,2,5,1,New South Wales,151.886858,-31.205821 +2024,6,10,1,New South Wales,152.919629,-30.506035 +2021,1,22,1,New South Wales,152.040663,-32.738125 +2023,2,22,1,New South Wales,153.314238,-28.851397 +2022,10,6,1,New South Wales,152.920332,-31.446761 +2020,5,,1,New South Wales,152.041302,-32.735072 +2021,9,3,1,New South Wales,150.641287,-34.398883 +2024,4,13,1,New South Wales,152.708098,-31.312682 +2020,8,26,1,New South Wales,152.958028,-30.648678 +2020,8,8,1,New South Wales,152.922915,-31.460633 +2022,10,17,1,New South Wales,152.88604,-31.439303 +2020,10,19,1,New South Wales,153.561166,-28.389204 +2024,9,11,1,New South Wales,149.28521,-36.17839 +2020,11,13,1,New South Wales,153.091543,-29.487742 +2024,8,20,1,New South Wales,152.084305,-32.177989 +2021,5,10,1,New South Wales,150.605007,-34.426964 +2021,4,23,1,New South Wales,150.639109,-34.421777 +2021,2,26,1,New South Wales,150.520371,-34.467152 +2021,6,5,1,New South Wales,150.519333,-34.448154 +2021,3,15,1,New South Wales,150.615481,-34.434363 +2021,5,27,1,New South Wales,150.641375,-34.393412 +2021,4,26,1,New South Wales,150.614487,-34.429512 +2021,5,23,1,New South Wales,150.515888,-34.450581 +2021,5,21,1,New South Wales,150.633104,-34.419479 +2021,9,24,1,New South Wales,150.514613,-34.447328 +2021,5,11,1,New South Wales,150.521207,-34.466132 +2021,5,7,1,New South Wales,150.521238,-34.466539 +2020,10,26,1,New South Wales,149.984095,-36.575978 +2021,5,27,1,New South Wales,153.39864,-28.960219 +2020,2,13,1,New South Wales,151.683858,-32.515445 +2021,7,5,1,New South Wales,150.513806,-34.446284 +2023,9,12,1,New South Wales,150.786379,-33.706316 +2021,6,19,1,New South Wales,150.658106,-34.454463 +2023,8,13,1,New South Wales,153.300789,-28.995147 +2021,5,24,1,New South Wales,150.639159,-34.493072 +2022,7,9,1,New South Wales,153.008877,-28.626573 +2021,6,9,1,New South Wales,150.613983,-34.433081 +2021,5,14,1,New South Wales,150.629591,-34.389353 +2021,8,27,1,New South Wales,150.602818,-34.443023 +2023,9,3,1,New South Wales,153.508229,-28.618208 +2020,10,13,1,New South Wales,153.424955,-28.627538 +2022,12,17,1,New South Wales,152.929616,-31.459632 +2021,3,13,1,New South Wales,150.532756,-34.477951 +2022,10,22,1,New South Wales,152.899936,-29.630967 +2020,10,18,1,New South Wales,149.956941,-36.59482 +2022,1,4,1,New South Wales,153.103892,-29.489573 +2023,11,17,1,New South Wales,152.919691,-31.469079 +2024,1,8,1,New South Wales,153.026355,-30.90106 +2021,6,4,1,New South Wales,150.615113,-34.435447 +2021,6,21,1,New South Wales,150.602692,-34.439072 +2021,4,8,1,New South Wales,152.924957,-31.459173 +2020,12,7,1,New South Wales,151.937485,-32.734873 +2023,7,13,1,New South Wales,153.333126,-28.657342 +2024,9,24,1,New South Wales,152.941256,-30.406006 +2023,10,24,1,New South Wales,151.003078,-34.070351 +2021,6,11,1,New South Wales,150.517058,-34.447441 +2020,10,24,1,New South Wales,149.958935,-36.568735 +2022,12,1,1,New South Wales,152.06619,-32.71154 +2020,1,10,1,New South Wales,153.115787,-28.663467 +2021,11,29,1,New South Wales,153.398048,-28.289478 +2022,8,11,1,New South Wales,150.521879,-34.456675 +2024,6,20,1,New South Wales,149.54112,-37.301986 +2023,6,7,1,New South Wales,150.886444,-34.060429 +2023,10,12,1,New South Wales,152.790104,-31.097275 +2020,7,2,1,New South Wales,152.797907,-30.211999 +2023,12,1,1,New South Wales,150.793777,-34.124127 +2020,3,12,1,New South Wales,152.920937,-31.464877 +2021,5,18,1,New South Wales,153.292716,-28.864016 +2021,5,25,1,New South Wales,150.639057,-34.491673 +2020,6,16,1,New South Wales,153.311084,-29.053851 +2021,3,10,1,New South Wales,150.524933,-34.460844 +2022,12,16,1,New South Wales,153.092648,-29.488298 +2020,9,8,1,New South Wales,152.355785,-31.85809 +2021,12,13,1,New South Wales,153.549488,-28.588621 +2021,4,20,1,New South Wales,150.636366,-34.485553 +2020,6,30,1,New South Wales,153.307622,-28.994679 +2020,11,28,1,New South Wales,153.464244,-28.861577 +2020,8,25,1,New South Wales,150.814622,-34.131671 +2021,4,21,1,New South Wales,150.632678,-34.392884 +2021,4,29,1,New South Wales,150.638454,-34.489506 +2021,11,18,1,New South Wales,153.104037,-29.478006 +2020,11,7,1,New South Wales,153.218628,-28.826754 +2022,9,1,1,New South Wales,152.944451,-28.736781 +2020,1,5,1,New South Wales,153.418019,-28.873275 +2022,2,17,1,New South Wales,153.194715,-28.885461 +2024,8,15,1,New South Wales,152.487147,-32.353914 +2023,1,31,1,New South Wales,152.87264,-29.685835 +2021,6,2,1,New South Wales,150.521533,-34.46576 +2024,1,10,1,New South Wales,152.867939,-31.116674 +2024,1,3,1,New South Wales,150.658671,-33.526795 +2020,10,25,1,New South Wales,153.557066,-28.393549 +2020,10,31,1,New South Wales,153.104074,-29.484236 +2020,11,1,1,New South Wales,149.934245,-36.578531 +2021,5,28,1,New South Wales,150.51727,-34.452773 +2021,7,16,1,New South Wales,150.627185,-34.420662 +2021,11,11,1,New South Wales,150.615616,-34.440704 +2020,10,13,1,New South Wales,149.950035,-36.601015 +2020,11,21,1,New South Wales,151.042791,-34.024321 +2021,10,2,1,New South Wales,150.438099,-34.463528 +2020,1,16,1,New South Wales,152.928887,-31.459167 +2022,8,30,1,New South Wales,152.413695,-31.932247 +2021,6,10,1,New South Wales,150.525333,-34.458373 +2021,6,21,1,New South Wales,150.519628,-34.452551 +2020,10,8,1,New South Wales,153.451604,-28.590321 +2021,5,4,1,New South Wales,150.522181,-34.453423 +2022,11,28,1,New South Wales,152.769456,-30.916275 +2021,6,4,1,New South Wales,150.519764,-34.447207 +2021,10,21,1,New South Wales,150.685616,-34.265974 +2022,12,7,1,New South Wales,153.629029,-28.639415 +2023,4,1,1,New South Wales,153.394112,-28.959793 +2022,8,7,1,New South Wales,152.910758,-31.431245 +2021,6,14,1,New South Wales,150.520431,-34.45409 +2022,5,4,1,New South Wales,153.103366,-29.489872 +2022,2,1,1,New South Wales,153.276388,-28.944726 +2021,5,29,1,New South Wales,150.639133,-34.491295 +2021,7,27,1,New South Wales,150.593823,-34.423932 +2021,4,7,1,New South Wales,150.634263,-34.488695 +2021,7,3,1,New South Wales,150.628067,-34.390964 +2021,10,13,1,New South Wales,153.108172,-29.490222 +2021,5,18,1,New South Wales,150.530475,-34.471495 +2021,9,11,1,New South Wales,151.811161,-32.349456 +2022,11,3,1,New South Wales,152.084116,-32.739909 +2021,6,6,1,New South Wales,150.519377,-34.45662 +2021,5,6,1,New South Wales,150.609187,-34.420771 +2021,4,11,1,New South Wales,152.035758,-32.764938 +2021,7,2,1,New South Wales,150.627321,-34.421233 +2024,2,23,1,New South Wales,150.784542,-33.717099 +2022,11,4,1,New South Wales,151.897341,-32.142993 +2021,10,6,1,New South Wales,152.574425,-31.763675 +2023,12,17,1,New South Wales,152.090768,-31.681695 +2021,5,3,1,New South Wales,150.637346,-34.488628 +2022,10,4,1,New South Wales,153.492426,-28.677125 +2021,4,30,1,New South Wales,150.616926,-34.399574 +2022,1,22,1,New South Wales,150.974625,-34.125502 +2022,12,6,1,New South Wales,149.355934,-37.177314 +2022,9,13,1,New South Wales,152.105459,-32.732607 +2020,2,14,1,New South Wales,152.85722,-31.446555 +2020,9,20,1,New South Wales,151.645882,-32.548688 +2021,6,18,1,New South Wales,150.513951,-34.445809 +2020,11,23,1,New South Wales,152.586472,-31.317656 +2024,4,29,1,New South Wales,152.063422,-32.706338 +2020,9,15,1,New South Wales,153.607267,-28.677151 +2022,11,23,1,New South Wales,152.916386,-31.444891 +2021,5,6,1,New South Wales,150.520035,-34.435818 +2021,8,5,1,New South Wales,150.628651,-34.389136 +2021,6,22,1,New South Wales,153.415221,-28.672232 +2021,7,15,1,New South Wales,150.522478,-34.465834 +2023,12,11,1,New South Wales,150.785201,-33.716898 +2024,3,22,1,New South Wales,152.371019,-31.922893 +2021,6,29,1,New South Wales,150.627391,-34.420279 +2021,5,28,1,New South Wales,152.085488,-32.728518 +2021,8,17,1,New South Wales,153.543661,-28.555867 +2021,5,6,1,New South Wales,153.556967,-28.390131 +2021,5,24,1,New South Wales,150.616913,-34.434914 +2023,11,5,1,New South Wales,150.822801,-34.15023 +2021,3,3,1,New South Wales,150.517532,-34.445783 +2020,1,22,1,New South Wales,152.922675,-31.460634 +2021,5,17,1,New South Wales,150.630798,-34.395164 +2023,6,24,1,New South Wales,152.785398,-31.632313 +2021,6,27,1,New South Wales,150.842815,-34.054474 +2021,4,15,1,New South Wales,150.625774,-34.386286 +2022,4,8,1,New South Wales,153.103849,-29.485482 +2023,9,16,1,New South Wales,150.786167,-33.706031 +2021,8,23,1,New South Wales,150.519961,-34.446427 +2021,7,19,1,New South Wales,150.627961,-34.420533 +2021,6,4,1,New South Wales,150.519513,-34.455325 +2020,6,17,1,New South Wales,149.984112,-36.436474 +2023,11,16,1,New South Wales,152.870673,-31.462223 +2023,2,28,1,New South Wales,152.793401,-31.640939 +2021,5,11,1,New South Wales,150.655795,-34.458881 +2023,11,10,1,New South Wales,152.893853,-31.448539 +2021,4,24,1,New South Wales,150.627216,-34.396438 +2022,9,13,1,New South Wales,152.898402,-31.156809 +2021,7,15,1,New South Wales,150.514299,-34.446537 +2021,6,5,1,New South Wales,150.518723,-34.447096 +2024,8,21,1,New South Wales,152.401173,-31.913783 +2021,12,11,1,New South Wales,152.064274,-32.710658 +2023,11,5,1,New South Wales,151.058595,-29.74027 +2020,1,13,1,New South Wales,152.786302,-31.489078 +2020,4,17,1,New South Wales,153.414272,-28.869268 +2021,6,29,1,New South Wales,150.608045,-34.449012 +2021,5,6,1,New South Wales,150.615892,-34.435985 +2021,6,22,1,New South Wales,150.520326,-34.465745 +2021,6,10,1,New South Wales,150.521586,-34.465816 +2022,8,8,1,New South Wales,153.546274,-28.607652 +2022,6,24,1,New South Wales,152.540835,-28.334542 +2022,8,16,1,New South Wales,153.104171,-29.478104 +2020,10,24,1,New South Wales,149.934245,-36.578531 +2022,4,2,1,New South Wales,153.108178,-29.490633 +2024,6,20,1,New South Wales,153.071819,-30.887327 +2022,4,3,1,New South Wales,152.910397,-31.46707 +2021,5,23,1,New South Wales,150.630932,-34.388477 +2020,10,20,1,New South Wales,152.867889,-29.667322 +2021,10,2,1,New South Wales,150.259326,-30.414646 +2024,4,4,1,New South Wales,152.372334,-31.921596 +2020,5,1,1,New South Wales,152.869955,-29.679624 +2022,1,29,1,New South Wales,153.10115,-29.490105 +2020,11,29,1,New South Wales,153.094686,-29.488443 +2022,12,6,1,New South Wales,152.367718,-31.87515 +2022,1,11,1,New South Wales,152.927012,-31.463165 +2023,10,7,1,New South Wales,153.103902,-29.489596 +2021,5,7,1,New South Wales,150.632772,-34.418517 +2024,2,3,1,New South Wales,152.379214,-31.918664 +2021,6,20,1,New South Wales,150.513369,-34.445977 +2023,9,5,1,New South Wales,153.315755,-28.826573 +2020,10,18,1,New South Wales,149.887989,-36.587028 +2021,4,30,1,New South Wales,150.616481,-34.429433 +2021,5,16,1,New South Wales,150.632815,-34.418923 +2023,12,28,1,New South Wales,150.978942,-34.094098 +2021,5,18,1,New South Wales,150.530398,-34.471511 +2021,9,25,1,New South Wales,150.513108,-34.447793 +2021,5,22,1,New South Wales,150.515686,-34.450794 +2021,4,8,1,New South Wales,153.104069,-29.485333 +2022,8,23,1,New South Wales,150.531589,-34.407116 +2021,8,17,1,New South Wales,150.531339,-34.473198 +2021,4,22,1,New South Wales,150.637294,-34.420552 +2023,5,17,1,New South Wales,153.279507,-28.675667 +2022,11,9,1,New South Wales,153.073278,-28.764551 +2022,8,30,1,New South Wales,149.32363,-36.298805 +2021,7,1,1,New South Wales,150.640111,-34.396985 +2021,7,14,1,New South Wales,150.325382,-29.03349 +2021,7,19,1,New South Wales,150.645233,-34.391557 +2021,3,2,1,New South Wales,150.604434,-34.437889 +2022,10,17,1,New South Wales,153.314439,-28.850926 +2021,6,5,1,New South Wales,150.636688,-34.488021 +2021,6,1,1,New South Wales,150.630388,-34.420869 +2021,2,3,1,New South Wales,152.912457,-31.487467 +2021,4,20,1,New South Wales,150.637269,-34.422219 +2021,8,4,1,New South Wales,150.602311,-34.426136 +2021,4,4,1,New South Wales,150.520571,-34.446791 +2023,6,20,1,New South Wales,150.036879,-36.579011 +2021,5,14,1,New South Wales,150.520431,-34.45409 +2021,5,28,1,New South Wales,150.641387,-34.393359 +2021,12,15,1,New South Wales,151.887619,-30.032042 +2020,8,5,1,New South Wales,152.976748,-31.139874 +2021,6,10,1,New South Wales,150.613906,-34.433107 +2020,10,28,1,New South Wales,149.958935,-36.568735 +2020,10,30,1,New South Wales,152.786222,-29.577973 +2021,5,7,1,New South Wales,150.60529,-34.438023 +2023,9,15,1,New South Wales,152.817791,-31.650375 +2021,4,26,1,New South Wales,150.635608,-34.418238 +2022,9,8,1,New South Wales,153.355915,-28.54496 +2023,8,16,1,New South Wales,152.793752,-31.641257 +2021,7,2,1,New South Wales,150.522991,-34.466178 +2020,11,24,1,New South Wales,153.279743,-28.831273 +2020,10,30,1,New South Wales,149.934245,-36.578531 +2020,4,5,1,New South Wales,152.935177,-29.040719 +2021,5,10,1,New South Wales,150.516542,-34.469274 +2021,12,15,1,New South Wales,152.824887,-31.529078 +2023,4,25,1,New South Wales,153.108113,-29.490287 +2021,7,6,1,New South Wales,150.642131,-34.396294 +2022,5,13,1,New South Wales,153.101274,-29.489722 +2021,5,8,1,New South Wales,150.516571,-34.44698 +2021,7,6,1,New South Wales,150.642855,-34.395695 +2021,3,27,1,New South Wales,153.10401,-29.485165 +2021,5,1,1,New South Wales,150.617406,-34.399881 +2020,1,15,1,New South Wales,152.820061,-31.300188 +2021,4,27,1,New South Wales,150.602031,-34.425644 +2024,1,4,1,New South Wales,150.986501,-34.025301 +2020,5,4,1,New South Wales,152.499903,-28.324552 +2021,12,3,1,New South Wales,152.883935,-31.42899 +2023,8,3,1,New South Wales,152.209378,-31.560754 +2021,3,23,1,New South Wales,150.533036,-34.481364 +2020,4,5,1,New South Wales,152.935141,-29.041187 +2021,9,10,1,New South Wales,150.200485,-29.353951 +2021,4,23,1,New South Wales,150.609509,-34.419011 +2022,7,13,1,New South Wales,152.063784,-32.706589 +2020,11,13,1,New South Wales,152.872473,-31.476795 +2024,2,11,1,New South Wales,153.094107,-29.488751 +2020,9,24,1,New South Wales,153.000663,-30.408676 +2021,5,3,1,New South Wales,150.637346,-34.488628 +2023,7,14,1,New South Wales,152.057755,-32.738231 +2022,11,13,1,New South Wales,152.925013,-31.453919 +2021,5,18,1,New South Wales,150.530412,-34.471421 +2020,12,4,1,New South Wales,152.907025,-31.450114 +2021,6,10,1,New South Wales,150.626515,-34.386228 +2021,5,13,1,New South Wales,150.637158,-34.423858 +2022,7,24,1,New South Wales,152.907157,-31.440919 +2022,10,5,1,New South Wales,152.980914,-30.419707 +2021,10,25,1,New South Wales,152.924983,-31.459272 +2021,6,24,1,New South Wales,150.627379,-34.420332 +2021,5,3,1,New South Wales,150.637782,-34.49016 +2020,11,16,1,New South Wales,153.316981,-28.949626 +2021,4,25,1,New South Wales,150.608415,-34.454357 +2021,6,24,1,New South Wales,150.644297,-34.393135 +2021,3,4,1,New South Wales,150.608992,-34.420371 +2022,9,24,1,Victoria,143.859976,-38.670984 +2021,12,31,1,New South Wales,152.90077,-31.442793 +2021,6,7,1,New South Wales,150.522368,-34.440472 +2023,9,11,1,New South Wales,152.873002,-31.431589 +2024,1,12,1,New South Wales,152.385203,-31.928475 +2024,10,9,1,New South Wales,150.807222,-34.218889 +2023,10,29,1,New South Wales,152.204264,-32.226111 +2021,5,27,1,New South Wales,150.638882,-34.491687 +2022,10,15,1,New South Wales,152.955477,-30.419061 +2022,2,6,1,New South Wales,153.077049,-29.450991 +2023,6,7,1,New South Wales,150.883133,-34.064487 +2022,7,17,1,New South Wales,153.110281,-29.490208 +2023,5,27,1,New South Wales,150.783268,-33.717888 +2022,8,11,1,New South Wales,150.527366,-34.444546 +2023,1,3,1,New South Wales,153.431324,-29.016415 +2023,10,15,1,New South Wales,152.870526,-31.467144 +2020,11,4,1,New South Wales,149.931388,-36.568584 +2021,6,20,1,New South Wales,150.604356,-34.423111 +2023,12,1,1,New South Wales,152.857326,-30.314157 +2021,6,11,1,New South Wales,150.627233,-34.385827 +2022,4,21,1,New South Wales,150.043056,-30.892416 +2021,6,24,1,New South Wales,150.514204,-34.446445 +2022,12,22,1,New South Wales,150.822863,-34.127969 +2021,5,12,1,New South Wales,150.640028,-34.492746 +2020,10,14,1,New South Wales,153.563634,-28.372948 +2024,1,30,1,New South Wales,152.912844,-31.485941 +2021,1,31,1,New South Wales,153.612126,-28.661581 +2020,8,7,1,New South Wales,153.408667,-28.660662 +2021,5,20,1,New South Wales,150.517337,-34.451999 +2023,7,31,1,New South Wales,153.314983,-28.949201 +2021,10,31,1,New South Wales,153.314983,-28.949201 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2021,8,21,1,New South Wales,153.077582,-30.345268 +2023,11,23,1,New South Wales,153.104273,-29.480103 +2020,5,31,1,New South Wales,153.314983,-28.949201 +2021,7,22,1,New South Wales,150.524032,-34.463332 +2020,2,29,1,New South Wales,153.314983,-28.949201 +2021,6,21,1,New South Wales,150.519974,-34.452621 +2021,6,24,1,New South Wales,150.520402,-34.465737 +2021,5,23,1,New South Wales,150.597929,-34.427934 +2023,9,30,1,New South Wales,153.314983,-28.949201 +2020,1,7,1,New South Wales,152.91509,-31.482501 +2023,2,27,1,New South Wales,153.388879,-28.556794 +2023,6,30,1,New South Wales,153.314983,-28.949201 +2020,10,5,1,New South Wales,152.923338,-31.447023 +2021,5,11,1,New South Wales,150.605059,-34.427037 +2021,7,2,1,New South Wales,150.597004,-34.414267 +2022,4,10,1,New South Wales,153.415262,-28.672208 +2021,10,7,1,New South Wales,152.064437,-32.707572 +2022,11,1,1,New South Wales,152.073059,-32.724707 +2020,10,15,1,New South Wales,152.133162,-30.090648 +2021,3,4,1,New South Wales,150.526107,-34.465339 +2020,7,28,1,New South Wales,152.59149,-31.558658 +2023,10,29,1,New South Wales,152.192632,-32.228945 +2020,5,12,1,New South Wales,153.238682,-29.349537 +2023,9,13,1,New South Wales,152.956199,-28.598747 +2022,8,30,1,New South Wales,149.314239,-36.297175 +2021,6,13,1,New South Wales,150.615876,-34.430801 +2021,8,16,1,New South Wales,150.632033,-34.418106 +2021,5,4,1,New South Wales,150.637313,-34.423743 +2021,6,13,1,New South Wales,150.630251,-34.420343 +2021,4,27,1,New South Wales,150.624418,-34.388081 +2021,9,4,1,New South Wales,152.359003,-31.924406 +2021,6,19,1,New South Wales,150.520373,-34.46562 +2021,4,7,1,New South Wales,152.034457,-32.626309 +2021,4,28,1,New South Wales,150.527408,-34.469558 +2020,1,15,1,New South Wales,152.815948,-31.280222 +2021,10,15,1,New South Wales,152.968362,-28.370084 +2024,5,14,1,New South Wales,152.38222,-32.142053 +2022,2,24,1,New South Wales,152.841109,-31.463547 +2021,11,7,1,New South Wales,152.922015,-31.439312 +2023,6,25,1,New South Wales,153.109798,-29.492809 +2021,4,30,1,New South Wales,150.636325,-34.421741 +2021,6,14,1,New South Wales,150.615055,-34.431371 +2021,6,14,1,New South Wales,150.521307,-34.465693 +2023,9,4,1,New South Wales,150.798232,-34.112167 +2023,10,28,1,New South Wales,153.109347,-29.490535 +2021,7,16,1,New South Wales,153.277774,-28.938183 +2021,6,19,1,New South Wales,150.627698,-34.420979 +2020,10,30,1,New South Wales,149.999247,-36.565645 +2021,5,7,1,New South Wales,150.632777,-34.418697 +2023,11,10,1,New South Wales,150.785095,-33.714137 +2020,10,29,1,New South Wales,149.999247,-36.565645 +2023,4,15,1,New South Wales,152.923313,-31.463554 +2022,2,4,1,New South Wales,152.900779,-31.44303 +2020,8,27,1,New South Wales,153.499021,-28.769005 +2022,2,3,1,New South Wales,152.915386,-31.445726 +2021,9,4,1,New South Wales,153.318048,-28.825027 +2021,5,24,1,New South Wales,150.597107,-34.428522 +2023,5,2,1,New South Wales,152.381458,-31.886017 +2022,10,19,1,New South Wales,152.081079,-32.732887 +2024,8,3,1,New South Wales,149.527217,-32.597777 +2020,4,2,1,New South Wales,152.649182,-31.862684 +2021,7,5,1,New South Wales,150.659724,-34.455783 +2021,4,22,1,New South Wales,150.516826,-34.445002 +2022,10,1,1,New South Wales,152.065329,-32.711305 +2020,4,25,1,New South Wales,150.104457,-33.779809 +2021,6,13,1,New South Wales,150.516086,-34.446844 +2020,10,23,1,New South Wales,149.938213,-36.559404 +2021,5,25,1,New South Wales,150.594676,-34.427573 +2020,10,17,1,New South Wales,153.432053,-28.568771 +2022,12,31,1,New South Wales,153.103849,-29.484973 +2021,4,1,1,New South Wales,152.91498,-31.455568 +2020,11,30,1,New South Wales,153.394509,-28.271479 +2021,5,11,1,New South Wales,150.606861,-34.438639 +2021,12,31,1,New South Wales,153.293096,-28.864669 +2021,8,1,1,New South Wales,150.633678,-34.41839 +2022,4,11,1,New South Wales,150.790562,-34.143596 +2023,7,13,1,New South Wales,150.786962,-33.705834 +2021,7,14,1,New South Wales,150.513106,-34.446026 +2021,7,29,1,New South Wales,150.516515,-34.449972 +2023,12,19,1,New South Wales,152.816719,-30.258617 +2020,10,21,1,New South Wales,149.586413,-31.733473 +2023,10,5,1,New South Wales,152.924359,-30.506388 +2021,6,6,1,New South Wales,153.41204,-28.955488 +2021,8,25,1,New South Wales,150.640992,-34.393883 +2021,9,23,1,New South Wales,150.640582,-34.395714 +2021,2,16,1,New South Wales,152.921011,-31.464859 +2020,10,26,1,New South Wales,153.360617,-28.840581 +2022,9,20,1,New South Wales,150.822079,-34.099806 +2020,9,3,1,New South Wales,153.00415,-29.184506 +2021,7,5,1,New South Wales,150.522328,-34.465777 +2021,11,2,1,New South Wales,153.321625,-28.823754 +2022,8,12,1,New South Wales,152.963785,-31.255633 +2021,6,6,1,New South Wales,150.523607,-34.465577 +2022,8,1,1,New South Wales,150.838978,-34.053416 +2022,1,24,1,New South Wales,152.922398,-31.478063 +2020,5,20,1,New South Wales,152.927639,-31.465638 +2021,4,8,1,New South Wales,153.430628,-28.604396 +2023,9,5,1,New South Wales,153.303853,-28.820797 +2022,12,23,1,New South Wales,153.488157,-28.244245 +2020,2,10,1,New South Wales,153.340736,-28.835022 +2023,3,1,1,New South Wales,152.404551,-31.924329 +2020,2,1,1,New South Wales,152.646747,-30.539993 +2022,2,4,1,New South Wales,152.900779,-31.44303 +2021,1,7,1,New South Wales,150.113424,-33.774132 +2022,3,11,1,New South Wales,152.795771,-31.451845 +2021,5,29,1,New South Wales,150.639088,-34.49134 +2021,6,18,1,New South Wales,150.627727,-34.421096 +2020,5,4,1,New South Wales,150.06684,-34.91043 +2022,5,1,1,New South Wales,151.628116,-32.644476 +2021,5,23,1,New South Wales,150.597808,-34.428004 +2022,7,9,1,New South Wales,152.793878,-31.642109 +2023,8,5,1,New South Wales,152.868227,-31.472958 +2021,9,28,1,New South Wales,153.108156,-29.490586 +2022,1,24,1,New South Wales,153.104074,-29.479958 +2022,11,18,1,New South Wales,152.794854,-30.893434 +2023,9,14,1,New South Wales,153.394441,-28.95951 +2021,5,22,1,New South Wales,150.522213,-34.464873 +2024,3,21,1,New South Wales,150.984472,-34.093044 +2021,4,4,1,New South Wales,150.608538,-34.422562 +2021,10,2,1,New South Wales,152.072142,-32.747146 +2022,12,8,1,New South Wales,150.699196,-34.245314 +2021,3,9,1,New South Wales,152.905233,-31.438806 +2022,11,8,1,New South Wales,153.490213,-28.665061 +2021,5,11,1,New South Wales,150.521398,-34.466659 +2023,4,8,1,New South Wales,152.907677,-29.618322 +2022,2,8,1,New South Wales,152.907578,-31.450986 +2023,5,5,1,New South Wales,152.786943,-31.629349 +2023,10,15,1,New South Wales,152.060163,-31.796829 +2020,1,23,1,New South Wales,152.708619,-31.551166 +2022,9,3,1,New South Wales,152.072752,-32.710743 +2021,6,14,1,New South Wales,150.515819,-34.446676 +2021,4,28,1,New South Wales,150.635335,-34.420198 +2021,4,19,1,New South Wales,150.6272,-34.385836 +2021,6,23,1,New South Wales,150.520278,-34.465897 +2021,11,14,1,New South Wales,153.183766,-29.442147 +2021,4,19,1,New South Wales,150.516039,-34.449872 +2021,5,16,1,New South Wales,150.628856,-34.389203 +2021,6,29,1,New South Wales,150.596082,-34.411499 +2021,3,29,1,New South Wales,150.635361,-34.488365 +2022,8,26,1,New South Wales,153.363012,-28.809402 +2020,7,28,1,New South Wales,153.270683,-28.873561 +2021,4,30,1,New South Wales,150.664144,-34.45887 +2022,10,30,1,New South Wales,152.709125,-31.78661 +2022,3,15,1,New South Wales,153.110538,-29.490189 +2023,3,21,1,New South Wales,153.188823,-28.921839 +2020,1,15,1,New South Wales,153.219057,-28.825024 +2022,12,27,1,New South Wales,152.873532,-31.457439 +2021,2,25,1,New South Wales,152.929225,-31.457249 +2021,6,1,1,New South Wales,150.604354,-34.450229 +2021,8,14,1,New South Wales,150.513903,-34.447061 +2021,9,21,1,New South Wales,150.643049,-34.395365 +2023,6,2,1,New South Wales,150.798476,-34.210931 +2020,9,10,1,New South Wales,153.556106,-28.398612 +2024,2,26,1,New South Wales,153.109422,-29.490488 +2020,8,2,1,New South Wales,153.481092,-28.705596 +2023,10,13,1,New South Wales,153.124516,-30.296554 +2023,2,12,1,New South Wales,152.893458,-31.438416 +2021,4,9,1,New South Wales,150.63379,-34.489254 +2021,7,9,1,New South Wales,153.103532,-29.485464 +2022,8,21,1,New South Wales,153.105201,-29.48968 +2021,4,18,1,New South Wales,150.629795,-34.394469 +2022,5,12,1,New South Wales,152.076592,-32.725201 +2023,3,30,1,New South Wales,152.905728,-31.437105 +2022,4,9,1,New South Wales,153.559543,-28.393755 +2021,7,8,1,New South Wales,150.597446,-34.416674 +2020,7,6,1,New South Wales,152.856176,-31.134726 +2021,5,29,1,New South Wales,150.617259,-34.438437 +2021,5,6,1,New South Wales,150.605972,-34.437775 +2022,11,28,1,New South Wales,152.794854,-30.893434 +2020,1,29,1,New South Wales,152.921166,-31.447007 +2021,4,17,1,New South Wales,150.515821,-34.448813 +2021,4,23,1,New South Wales,150.605178,-34.433179 +2022,9,17,1,New South Wales,152.038319,-32.023018 +2020,11,5,1,New South Wales,152.915305,-31.433556 +2021,3,18,1,New South Wales,150.607684,-34.422004 +2021,8,11,1,New South Wales,150.647891,-34.398001 +2020,2,10,1,New South Wales,150.82371,-34.150763 +2020,8,12,1,New South Wales,153.564663,-28.327875 +2021,5,24,1,New South Wales,150.631473,-34.387812 +2023,6,14,1,New South Wales,153.307849,-28.849639 +2022,9,13,1,New South Wales,152.87268,-31.15015 +2023,10,10,1,New South Wales,153.093225,-29.492672 +2021,10,10,1,New South Wales,150.532545,-34.476 +2023,8,23,1,New South Wales,152.8479,-31.2031 +2021,8,18,1,New South Wales,153.311323,-28.838303 +2023,9,30,1,New South Wales,153.395223,-28.959983 +2021,9,2,1,New South Wales,153.562205,-28.669181 +2023,3,12,1,New South Wales,152.404497,-31.920338 +2023,5,20,1,New South Wales,153.103876,-29.489554 +2024,3,21,1,New South Wales,152.919793,-31.471842 +2021,5,30,1,New South Wales,150.630939,-34.388234 +2020,3,12,1,New South Wales,153.293212,-28.864673 +2023,9,28,1,New South Wales,153.303848,-28.888958 +2021,7,31,1,New South Wales,150.625981,-34.387822 +2021,7,6,1,New South Wales,150.809779,-34.093907 +2021,5,6,1,New South Wales,150.516355,-34.4473 +2021,10,20,1,New South Wales,150.778378,-34.139613 +2021,5,11,1,New South Wales,150.609147,-34.420671 +2020,11,15,1,New South Wales,149.966791,-36.502277 +2024,7,15,1,New South Wales,152.921265,-31.440595 +2022,3,25,1,New South Wales,153.322444,-28.825855 +2023,5,12,1,New South Wales,150.85229,-34.076232 +2021,5,29,1,New South Wales,150.527028,-34.469514 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2021,5,12,1,New South Wales,150.637312,-34.423788 +2021,7,3,1,New South Wales,153.077582,-30.345268 +2021,5,31,1,New South Wales,150.63979,-34.400288 +2023,11,15,1,New South Wales,151.078045,-29.765612 +2021,4,7,1,New South Wales,150.606992,-34.437488 +2021,6,4,1,New South Wales,150.604533,-34.426432 +2021,6,1,1,New South Wales,150.518237,-34.446599 +2021,6,15,1,New South Wales,150.622972,-34.385781 +2020,11,13,1,New South Wales,149.995573,-36.572611 +2021,4,12,1,New South Wales,150.604802,-34.431107 +2022,7,27,1,New South Wales,153.205077,-28.74311 +2022,3,30,1,New South Wales,153.355939,-28.892514 +2021,8,5,1,New South Wales,153.54948,-28.59176 +2020,7,11,1,New South Wales,152.712084,-30.456245 +2021,5,30,1,New South Wales,150.527128,-34.469444 +2020,12,18,1,New South Wales,152.0566,-32.73714 +2022,7,30,1,New South Wales,152.796574,-31.15266 +2023,8,29,1,New South Wales,153.434152,-28.868822 +2020,4,15,1,New South Wales,150.813428,-33.365815 +2023,4,25,1,New South Wales,153.10379,-29.485394 +2020,11,9,1,New South Wales,152.728373,-31.351 +2021,5,26,1,New South Wales,150.595842,-34.425594 +2021,10,16,1,New South Wales,153.10696,-29.474508 +2021,5,2,1,New South Wales,150.606671,-34.45599 +2020,11,7,1,New South Wales,150.010074,-36.579686 +2022,11,14,1,New South Wales,153.299477,-28.888595 +2020,10,18,1,New South Wales,149.921178,-36.633581 +2022,1,22,1,New South Wales,152.041634,-32.736268 +2021,6,6,1,New South Wales,153.104128,-29.480084 +2021,9,10,1,New South Wales,152.922407,-31.463065 +2022,7,2,1,New South Wales,152.374047,-31.913202 +2021,7,17,1,New South Wales,150.64612,-34.394847 +2023,1,2,1,New South Wales,153.33019,-28.72455 +2021,6,19,1,New South Wales,150.603757,-34.439507 +2023,3,23,1,New South Wales,152.884499,-31.430245 +2022,8,30,1,New South Wales,149.324858,-36.294142 +2022,4,20,1,New South Wales,152.063761,-32.706506 +2022,1,15,1,New South Wales,150.844837,-29.834296 +2022,6,18,1,New South Wales,151.609345,-32.544025 +2023,8,4,1,New South Wales,150.782582,-33.71937 +2021,12,28,1,New South Wales,153.427129,-28.627546 +2020,7,10,1,New South Wales,153.104015,-29.485366 +2021,7,1,1,New South Wales,150.596533,-34.411355 +2022,11,22,1,New South Wales,152.793317,-31.521223 +2021,11,22,1,New South Wales,152.964893,-28.617114 +2024,2,11,1,New South Wales,152.929282,-31.450504 +2023,11,5,1,New South Wales,152.412507,-31.932356 +2021,12,2,1,New South Wales,153.103774,-29.485585 +2022,9,30,1,New South Wales,152.90615,-30.23792 +2021,12,15,1,New South Wales,152.355785,-31.85809 +2021,5,8,1,New South Wales,150.615955,-34.43531 +2021,6,18,1,New South Wales,150.519148,-34.459942 +2021,4,24,1,New South Wales,150.62714,-34.396455 +2021,11,29,1,New South Wales,153.322828,-28.833741 +2021,4,24,1,New South Wales,150.518324,-34.451379 +2020,12,8,1,New South Wales,149.960499,-36.288011 +2021,10,1,1,New South Wales,153.329144,-28.814882 +2022,10,18,1,New South Wales,153.31614,-28.820272 +2021,5,10,1,New South Wales,150.632647,-34.417928 +2020,12,8,1,New South Wales,149.960499,-36.288011 +2023,10,21,1,New South Wales,150.786234,-33.706006 +2021,6,13,1,New South Wales,150.626554,-34.385625 +2021,6,9,1,New South Wales,150.640605,-34.394876 +2021,6,3,1,New South Wales,150.639363,-34.399603 +2023,3,22,1,New South Wales,153.184984,-28.923632 +2021,6,22,1,New South Wales,150.628024,-34.420994 +2024,1,11,1,New South Wales,152.925578,-31.458842 +2021,4,20,1,New South Wales,150.632215,-34.393885 +2023,7,25,1,New South Wales,152.920189,-31.475328 +2021,7,17,1,New South Wales,153.108231,-29.490208 +2022,12,19,1,New South Wales,152.908508,-31.442382 +2021,5,19,1,New South Wales,150.530108,-34.47101 +2021,6,18,1,New South Wales,150.522206,-34.451476 +2021,6,6,1,New South Wales,150.60672,-34.45005 +2021,8,15,1,New South Wales,150.605671,-34.431539 +2021,6,19,1,New South Wales,150.518997,-34.459876 +2021,6,3,1,New South Wales,150.606521,-34.450948 +2024,1,10,1,New South Wales,152.063709,-32.706409 +2020,11,1,1,New South Wales,152.160787,-30.094803 +2021,6,29,1,New South Wales,150.631483,-34.38783 +2020,12,31,1,New South Wales,152.061046,-32.710844 +2021,4,13,1,New South Wales,150.606647,-34.439654 +2021,4,20,1,New South Wales,150.616163,-34.434503 +2023,1,20,1,New South Wales,153.10998,-29.49025 +2020,8,25,1,New South Wales,149.39323,-36.16555 +2023,2,24,1,New South Wales,150.835114,-34.069621 +2020,10,16,1,New South Wales,152.919343,-31.455352 +2023,1,29,1,New South Wales,152.970444,-31.192111 +2021,7,2,1,New South Wales,150.523259,-34.465931 +2021,10,14,1,New South Wales,152.880948,-31.42427 +2020,5,13,1,New South Wales,149.372063,-36.009731 +2021,5,25,1,New South Wales,150.522357,-34.465137 +2020,11,17,1,New South Wales,150.004563,-36.508695 +2022,5,5,1,New South Wales,152.910603,-31.465481 +2021,5,7,1,New South Wales,150.632777,-34.418697 +2020,11,1,1,New South Wales,149.943147,-36.549371 +2020,3,11,1,New South Wales,152.171289,-32.728985 +2021,4,23,1,New South Wales,150.609319,-34.419214 +2020,7,23,1,New South Wales,152.802007,-31.125681 +2021,7,16,1,New South Wales,150.522625,-34.466747 +2021,5,28,1,New South Wales,150.617709,-34.438653 +2021,10,19,1,New South Wales,152.810422,-29.805125 +2021,6,14,1,New South Wales,150.630077,-34.4207 +2023,9,13,1,New South Wales,152.067068,-32.71018 +2020,1,22,1,New South Wales,153.33124,-28.82175 +2020,1,10,1,New South Wales,149.37953,-32.41352 +2022,3,17,1,New South Wales,153.109379,-29.490591 +2022,6,19,1,New South Wales,153.091103,-28.599122 +2020,10,23,1,New South Wales,152.910308,-31.475697 +2021,12,8,1,New South Wales,152.14047,-31.463603 +2021,10,8,1,New South Wales,153.103656,-29.485548 +2020,2,10,1,New South Wales,152.914523,-31.466584 +2021,9,22,1,New South Wales,153.417286,-28.872591 +2022,12,21,1,New South Wales,152.387172,-31.87656 +2021,5,3,1,New South Wales,150.526079,-34.457775 +2021,7,2,1,New South Wales,153.103784,-29.485524 +2022,11,3,1,New South Wales,152.895156,-31.42587 +2021,6,29,1,New South Wales,150.627391,-34.420297 +2020,5,6,1,New South Wales,152.466287,-29.222477 +2021,6,16,1,New South Wales,150.52074,-34.465708 +2021,7,9,1,New South Wales,150.519071,-34.447464 +2021,10,11,1,New South Wales,153.367005,-28.98155 +2021,8,15,1,New South Wales,150.641678,-34.39578 +2021,9,15,1,New South Wales,152.929081,-29.725873 +2021,5,24,1,New South Wales,150.595794,-34.428424 +2021,11,30,1,New South Wales,152.063875,-32.706456 +2022,1,7,1,New South Wales,153.493023,-28.675517 +2022,10,14,1,New South Wales,152.916257,-29.594605 +2021,5,12,1,New South Wales,150.627842,-34.397379 +2020,11,14,1,New South Wales,150.004563,-36.508695 +2021,6,26,1,New South Wales,150.629299,-34.387373 +2021,5,20,1,New South Wales,150.630032,-34.39533 +2020,1,31,1,New South Wales,152.10379,-32.759253 +2021,5,14,1,New South Wales,150.517698,-34.441639 +2023,5,11,1,New South Wales,152.863454,-31.299562 +2023,9,28,1,New South Wales,153.27744,-28.940107 +2022,4,28,1,New South Wales,150.977487,-34.024355 +2021,6,30,1,New South Wales,150.627393,-34.420224 +2021,7,21,1,New South Wales,150.516998,-34.448738 +2021,6,19,1,New South Wales,150.513917,-34.445835 +2020,8,5,1,New South Wales,152.402904,-31.925023 +2021,6,6,1,New South Wales,150.627101,-34.389719 +2021,4,24,1,New South Wales,150.606417,-34.435133 +2020,3,8,1,New South Wales,153.557375,-28.397359 +2023,8,1,1,New South Wales,152.890899,-30.241888 +2021,4,25,1,New South Wales,150.970601,-34.02929 +2021,5,1,1,New South Wales,150.616375,-34.43622 +2021,8,11,1,New South Wales,153.40074,-28.256434 +2022,11,16,1,New South Wales,152.105332,-32.72777 +2021,5,10,1,New South Wales,150.624861,-34.399746 +2021,6,18,1,New South Wales,150.627942,-34.420821 +2021,6,4,1,New South Wales,150.523373,-34.464662 +2021,7,3,1,New South Wales,150.514096,-34.446398 +2024,1,18,1,New South Wales,152.15762,-32.724723 +2023,7,4,1,New South Wales,150.1747,-29.173097 +2021,2,4,1,New South Wales,153.108773,-29.49004 +2022,3,6,1,New South Wales,152.063499,-32.706456 +2023,4,25,1,New South Wales,151.789896,-32.654848 +2021,9,24,1,New South Wales,152.90139,-31.440417 +2020,4,27,1,New South Wales,153.301536,-28.9982 +2023,12,6,1,New South Wales,153.412731,-28.95397 +2020,10,29,1,New South Wales,149.943147,-36.549371 +2021,4,27,1,New South Wales,150.62395,-34.388883 +2020,5,18,1,New South Wales,152.14174,-31.417406 +2021,7,11,1,New South Wales,150.606502,-34.435216 +2023,2,11,1,New South Wales,150.970782,-33.797571 +2021,7,30,1,New South Wales,150.62756,-34.385419 +2022,7,25,1,New South Wales,152.808442,-31.13789 +2020,12,21,1,New South Wales,153.337681,-28.867843 +2021,4,20,1,New South Wales,150.522441,-34.453455 +2021,3,7,1,New South Wales,150.61574,-34.43289 +2021,10,9,1,New South Wales,152.037864,-32.736847 +2022,4,10,1,New South Wales,153.326352,-28.997617 +2022,1,8,1,New South Wales,150.617817,-34.439845 +2020,10,29,1,New South Wales,149.955017,-36.576791 +2022,8,2,1,New South Wales,152.823278,-31.424486 +2021,5,14,1,New South Wales,150.5239,-34.463771 +2021,6,4,1,New South Wales,150.615782,-34.436425 +2021,6,2,1,New South Wales,150.638248,-34.491017 +2022,11,19,1,New South Wales,152.794854,-30.893434 +2021,4,16,1,New South Wales,152.92202,-31.450036 +2023,9,14,1,New South Wales,150.786177,-33.706019 +2022,12,8,1,New South Wales,152.895067,-31.429062 +2022,10,13,1,New South Wales,152.824668,-29.505756 +2020,1,4,1,New South Wales,153.104053,-29.48446 +2021,6,1,1,New South Wales,150.529215,-34.464744 +2020,7,29,1,New South Wales,150.059244,-33.77543 +2020,5,26,1,New South Wales,149.377538,-36.015884 +2022,6,10,1,New South Wales,153.560176,-28.363195 +2021,11,16,1,New South Wales,152.862974,-31.282072 +2022,7,28,1,New South Wales,149.982157,-29.417711 +2022,8,30,1,New South Wales,149.324487,-36.295504 +2022,11,24,1,New South Wales,152.908524,-31.454681 +2020,8,27,1,New South Wales,153.44811,-28.627782 +2020,11,16,1,New South Wales,150.001052,-36.513032 +2021,5,2,1,New South Wales,150.611461,-34.419635 +2023,2,15,1,New South Wales,152.064496,-32.709985 +2021,4,14,1,New South Wales,150.636938,-34.395725 +2021,10,5,1,New South Wales,151.74933,-32.629336 +2021,6,19,1,New South Wales,150.520358,-34.465746 +2020,9,13,1,New South Wales,153.562182,-28.331902 +2020,7,24,1,New South Wales,151.974623,-32.472237 +2021,12,14,1,New South Wales,152.094135,-32.742004 +2021,7,2,1,New South Wales,150.597751,-34.412884 +2024,9,3,1,New South Wales,152.186866,-31.575244 +2022,1,28,1,New South Wales,150.980537,-34.110316 +2020,6,6,1,New South Wales,153.268233,-28.9309 +2021,11,21,1,New South Wales,153.101199,-29.490091 +2021,4,30,1,New South Wales,150.615726,-34.436478 +2020,8,25,1,New South Wales,152.355785,-31.85809 +2020,10,19,1,New South Wales,153.303174,-28.827996 +2023,9,17,1,New South Wales,150.985401,-34.094344 +2020,11,17,1,New South Wales,150.670358,-33.534594 +2022,8,1,1,New South Wales,150.796366,-34.14064 +2024,4,3,1,New South Wales,152.899861,-31.409524 +2021,6,7,1,New South Wales,150.616572,-34.4358 +2023,12,13,1,New South Wales,153.400956,-29.038 +2023,10,15,1,New South Wales,152.39843,-31.90595 +2021,11,12,1,New South Wales,153.323595,-28.881036 +2022,7,13,1,New South Wales,153.104326,-29.489615 +2021,6,22,1,New South Wales,150.602586,-34.438988 +2022,7,9,1,New South Wales,153.31616,-28.94913 +2021,9,15,1,New South Wales,150.90885,-33.99814 +2020,9,19,1,New South Wales,150.103626,-33.775651 +2024,1,12,1,New South Wales,153.093431,-29.49254 +2020,6,21,1,New South Wales,151.07331,-34.033 +2020,10,28,1,New South Wales,153.562809,-28.374906 +2021,4,20,1,New South Wales,152.863435,-31.299548 +2023,8,21,1,New South Wales,152.95885,-30.641952 +2022,2,3,1,New South Wales,152.898504,-31.442482 +2023,9,23,1,New South Wales,153.198403,-28.82107 +2021,6,26,1,New South Wales,150.63155,-34.387777 +2022,10,7,1,New South Wales,152.792478,-31.64191 +2021,12,11,1,New South Wales,152.918236,-31.441536 +2022,5,29,1,New South Wales,153.109374,-29.490423 +2023,12,1,1,New South Wales,150.785697,-33.706986 +2022,11,7,1,New South Wales,150.582601,-34.5 +2021,5,6,1,New South Wales,153.55715,-28.389919 +2022,12,2,1,New South Wales,152.911279,-31.473038 +2021,3,25,1,New South Wales,152.404167,-31.945815 +2024,3,4,1,New South Wales,150.785188,-33.705157 +2022,11,19,1,New South Wales,152.794854,-30.893434 +2020,7,24,1,New South Wales,152.800558,-31.12669 +2022,9,27,1,New South Wales,153.07969,-30.27118 +2021,7,6,1,New South Wales,150.522457,-34.465815 +2024,1,15,1,New South Wales,152.32627,-31.949063 +2021,4,1,1,New South Wales,153.101413,-29.48996 +2024,9,17,1,New South Wales,149.551576,-33.492192 +2020,2,14,1,New South Wales,153.103881,-29.485415 +2021,6,25,1,New South Wales,150.514418,-34.447315 +2021,6,7,1,New South Wales,150.532888,-34.45867 +2020,10,29,1,New South Wales,149.934245,-36.578531 +2021,5,18,1,New South Wales,150.53099,-34.471009 +2020,10,24,1,New South Wales,153.103817,-29.485576 +2022,11,12,1,New South Wales,150.809835,-34.099623 +2021,5,13,1,New South Wales,150.633197,-34.418083 +2023,5,22,1,New South Wales,150.825249,-34.150187 +2023,2,13,1,New South Wales,150.789593,-34.164932 +2020,4,16,1,New South Wales,153.262872,-28.880776 +2020,4,4,1,New South Wales,153.262958,-28.880776 +2021,4,20,1,New South Wales,150.610246,-34.419124 +2023,10,30,1,New South Wales,152.9781,-30.4187 +2020,2,11,1,New South Wales,152.921889,-31.475979 +2021,4,24,1,New South Wales,150.615586,-34.435637 +2022,9,30,1,New South Wales,152.065329,-32.711305 +2021,9,30,1,New South Wales,153.314144,-28.816318 +2022,10,31,1,New South Wales,153.314983,-28.949201 +2022,11,28,1,New South Wales,152.769456,-30.916275 +2022,7,31,1,New South Wales,153.314983,-28.949201 +2020,7,9,1,New South Wales,152.928887,-31.459166 +2023,4,30,1,New South Wales,153.314983,-28.949201 +2021,7,29,1,New South Wales,152.777471,-30.192745 +2021,10,,1,New South Wales,149.380851,-36.157098 +2021,6,21,1,New South Wales,150.514574,-34.443883 +2021,5,22,1,New South Wales,150.517466,-34.452038 +2021,6,3,1,New South Wales,150.624461,-34.38809 +2023,3,10,1,New South Wales,152.281838,-28.410669 +2021,5,3,1,New South Wales,150.526079,-34.457775 +2022,10,16,1,New South Wales,152.920703,-31.448101 +2020,4,8,1,New South Wales,152.768652,-31.2557 +2020,10,27,1,New South Wales,149.984095,-36.575978 +2023,12,16,1,New South Wales,150.78559,-33.709335 +2021,5,30,1,New South Wales,150.63126,-34.420056 +2020,3,8,1,New South Wales,153.10387,-29.485585 +2021,4,12,1,New South Wales,150.60472,-34.438931 +2022,4,18,1,New South Wales,152.081922,-32.723578 +2020,11,,1,New South Wales,152.138047,-31.402485 +2022,11,30,1,New South Wales,152.367884,-31.875301 +2021,4,20,1,New South Wales,150.630314,-34.394596 +2023,2,7,1,New South Wales,153.320324,-28.845513 +2022,11,1,1,New South Wales,152.908557,-31.454647 +2021,7,27,1,New South Wales,150.518052,-34.437391 +2021,2,25,1,New South Wales,153.10814,-29.490236 +2023,6,16,1,New South Wales,153.329006,-28.932845 +2023,11,28,1,New South Wales,152.89788,-31.437104 +2023,3,13,1,New South Wales,153.109385,-29.490483 +2021,5,2,1,New South Wales,150.611425,-34.419751 +2021,6,9,1,New South Wales,150.521589,-34.465707 +2021,8,3,1,New South Wales,150.602314,-34.426019 +2021,6,12,1,New South Wales,150.521334,-34.459256 +2022,9,9,1,New South Wales,153.110554,-29.489816 +2024,2,22,1,New South Wales,151.479316,-33.047677 +2023,6,18,1,New South Wales,152.927715,-31.465028 +2023,8,15,1,New South Wales,150.785107,-33.703515 +2024,7,25,1,New South Wales,153.317256,-28.817328 +2021,5,18,1,New South Wales,153.400534,-28.26025 +2020,12,8,1,New South Wales,149.960499,-36.288011 +2021,5,9,1,New South Wales,150.622086,-34.397853 +2021,3,17,1,New South Wales,150.520843,-34.467036 +2024,2,23,1,New South Wales,150.991011,-34.026413 +2023,7,19,1,New South Wales,153.300864,-28.824751 +2021,4,10,1,New South Wales,150.633991,-34.489835 +2020,5,25,1,New South Wales,153.400729,-28.257882 +2022,11,22,1,New South Wales,153.308174,-28.823221 +2021,9,21,1,New South Wales,153.310718,-28.822395 +2022,7,6,1,New South Wales,152.476197,-28.912169 +2020,6,24,1,New South Wales,152.076961,-32.75853 +2020,1,13,1,New South Wales,152.86746,-29.667546 +2021,6,2,1,New South Wales,150.522491,-34.465771 +2021,5,,1,New South Wales,150.813439,-33.392849 +2021,7,22,1,New South Wales,150.64152,-34.395985 +2021,8,2,1,New South Wales,150.520282,-34.465744 +2021,7,3,1,New South Wales,150.596905,-34.414301 +2022,9,3,1,New South Wales,153.101231,-29.4899 +2021,6,6,1,New South Wales,153.520242,-28.234366 +2023,2,8,1,New South Wales,151.697314,-32.67423 +2020,11,28,1,New South Wales,152.560751,-28.367745 +2021,5,24,1,New South Wales,150.516096,-34.45018 +2021,6,24,1,New South Wales,150.625277,-34.38615 +2021,6,12,1,New South Wales,150.521762,-34.459148 +2023,1,3,1,New South Wales,150.842133,-34.070234 +2021,5,3,1,New South Wales,150.611437,-34.419697 +2021,4,19,1,New South Wales,150.637204,-34.422209 +2023,5,12,1,New South Wales,150.788885,-34.337843 +2024,4,16,1,New South Wales,151.083331,-29.745797 +2022,4,27,1,New South Wales,153.367362,-28.81355 +2021,10,5,1,New South Wales,153.289433,-28.815723 +2022,8,11,1,New South Wales,150.517314,-34.457259 +2021,4,13,1,New South Wales,150.532963,-34.475728 +2021,6,26,1,New South Wales,153.493277,-28.657288 +2021,4,24,1,New South Wales,150.610246,-34.419124 +2020,11,16,1,New South Wales,153.091891,-29.487882 +2021,6,19,1,New South Wales,150.520307,-34.465654 +2021,5,30,1,New South Wales,150.60379,-34.424254 +2021,4,15,1,New South Wales,150.606708,-34.454666 +2021,5,16,1,New South Wales,150.633225,-34.418643 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2021,6,24,1,New South Wales,150.514432,-34.447198 +2023,9,25,1,New South Wales,153.268126,-28.91324 +2021,10,16,1,New South Wales,152.943361,-29.740625 +2023,2,10,1,New South Wales,153.110522,-29.490166 +2023,11,4,1,New South Wales,150.252033,-30.991512 +2021,4,17,1,New South Wales,150.616604,-34.430085 +2021,5,24,1,New South Wales,150.527355,-34.469502 +2023,8,18,1,New South Wales,152.077238,-32.722486 +2020,11,12,1,New South Wales,153.276731,-28.819935 +2021,5,29,1,New South Wales,150.609524,-34.449835 +2020,11,3,1,New South Wales,149.934245,-36.578531 +2021,6,27,1,New South Wales,150.522145,-34.464204 +2021,3,25,1,New South Wales,153.261383,-28.925495 +2021,5,8,1,New South Wales,150.518322,-34.451433 +2020,11,1,1,New South Wales,149.934245,-36.578531 +2022,10,19,1,New South Wales,153.072051,-30.881008 +2022,6,26,1,New South Wales,152.10181,-32.734228 +2024,2,12,1,New South Wales,152.788661,-31.637364 +2020,11,10,1,New South Wales,152.917419,-31.45773 +2020,6,18,1,New South Wales,153.103752,-29.485559 +2020,1,15,1,New South Wales,151.84278,-31.926276 +2022,10,4,1,New South Wales,150.744874,-34.335302 +2023,8,6,1,New South Wales,152.06416,-32.709827 +2023,10,25,1,New South Wales,152.885005,-30.517586 +2020,7,12,1,New South Wales,153.103822,-29.485566 +2020,8,13,1,New South Wales,149.950373,-36.572524 +2021,11,3,1,New South Wales,152.824223,-29.813131 +2023,12,7,1,New South Wales,150.785033,-33.717548 +2021,7,19,1,New South Wales,150.623687,-34.383559 +2021,9,11,1,New South Wales,150.64012,-34.397039 +2023,8,22,1,New South Wales,152.893049,-29.74359 +2021,6,17,1,New South Wales,150.519117,-34.459879 +2021,5,29,1,New South Wales,150.630861,-34.42067 +2021,7,24,1,New South Wales,150.978821,-34.08358 +2021,7,22,1,New South Wales,152.429114,-31.830274 +2021,1,5,1,New South Wales,152.899228,-29.630697 +2021,7,9,1,New South Wales,150.640667,-34.39385 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2020,4,2,1,New South Wales,152.797986,-31.681563 +2022,2,28,1,New South Wales,152.908302,-31.447296 +2020,10,30,1,New South Wales,149.934245,-36.578531 +2022,10,22,1,New South Wales,151.116954,-33.113691 +2021,6,28,1,New South Wales,150.778378,-34.139613 +2021,6,23,1,New South Wales,150.62569,-34.386555 +2020,10,23,1,New South Wales,149.934245,-36.578531 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2021,5,27,1,New South Wales,150.630667,-34.42064 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2022,11,15,1,New South Wales,153.559344,-28.353854 +2021,1,22,1,New South Wales,153.351311,-28.897022 +2020,11,3,1,New South Wales,149.934245,-36.578531 +2023,7,7,1,New South Wales,153.012027,-30.423237 +2021,5,25,1,New South Wales,150.639317,-34.392724 +2024,2,7,1,New South Wales,152.899018,-31.443513 +2021,5,18,1,New South Wales,150.60715,-34.436905 +2022,12,25,1,New South Wales,152.823523,-29.810675 +2021,5,9,1,New South Wales,150.6281,-34.389775 +2024,4,6,1,New South Wales,152.913291,-31.477103 +2021,6,7,1,New South Wales,150.532885,-34.458778 +2021,4,15,1,New South Wales,150.631228,-34.393415 +2021,10,17,1,New South Wales,150.811934,-34.1003 +2020,10,28,1,New South Wales,153.399644,-28.607691 +2021,7,4,1,New South Wales,150.525634,-34.465492 +2023,10,31,1,New South Wales,152.921805,-31.472801 +2021,5,1,1,New South Wales,150.634252,-34.420042 +2023,7,31,1,New South Wales,153.516654,-28.68913 +2023,10,5,1,New South Wales,151.291271,-29.78795 +2022,8,21,1,New South Wales,153.561812,-28.393242 +2020,1,16,1,New South Wales,153.104058,-29.478963 +2020,10,10,1,New South Wales,152.996446,-30.413154 +2020,10,13,1,New South Wales,152.895079,-31.448181 +2021,5,8,1,New South Wales,150.605312,-34.438005 +2020,12,8,1,New South Wales,149.960189,-36.280531 +2021,5,25,1,New South Wales,150.516459,-34.450034 +2023,7,19,1,New South Wales,152.033799,-32.730877 +2021,9,14,1,New South Wales,152.926913,-31.470517 +2021,5,23,1,New South Wales,150.518311,-34.451451 +2021,6,10,1,New South Wales,150.6465,-34.397199 +2021,5,20,1,New South Wales,150.639254,-34.493155 +2021,6,23,1,New South Wales,150.778378,-34.139613 +2021,6,25,1,New South Wales,150.627262,-34.420249 +2023,12,30,1,New South Wales,153.096129,-29.491291 +2022,3,15,1,New South Wales,153.55609,-28.398479 +2021,8,21,1,New South Wales,150.645189,-34.399364 +2021,4,16,1,New South Wales,150.630093,-34.39433 +2023,7,4,1,New South Wales,152.329045,-31.948763 +2023,12,11,1,New South Wales,150.784351,-33.717757 +2021,5,7,1,New South Wales,150.609211,-34.420718 +2023,10,16,1,New South Wales,152.920387,-30.505623 +2022,6,22,1,New South Wales,152.933658,-29.681698 +2022,12,30,1,New South Wales,151.702131,-32.694088 +2023,10,2,1,New South Wales,151.010502,-34.04555 +2021,2,28,1,New South Wales,152.933658,-29.681698 +2023,4,17,1,New South Wales,153.295269,-28.867392 +2021,9,10,1,New South Wales,153.071682,-28.585441 +2021,5,15,1,New South Wales,150.628866,-34.38924 +2022,8,21,1,New South Wales,153.557023,-28.397385 +2021,9,7,1,New South Wales,152.374317,-31.915168 +2023,11,17,1,New South Wales,150.585877,-33.704328 +2021,5,15,1,New South Wales,150.628888,-34.389222 +2022,12,23,1,New South Wales,153.517724,-28.684252 +2024,3,9,1,New South Wales,150.989323,-34.020007 +2022,12,2,1,New South Wales,150.87977,-32.89005 +2021,5,10,1,New South Wales,150.60669,-34.438519 +2021,7,21,1,New South Wales,150.53188,-34.39938 +2020,10,24,1,New South Wales,152.897512,-29.632795 +2021,7,29,1,New South Wales,150.597438,-34.426076 +2021,7,4,1,New South Wales,150.627057,-34.420939 +2021,2,24,1,New South Wales,150.609682,-34.420204 +2024,3,22,1,New South Wales,152.3791,-31.915198 +2023,2,17,1,New South Wales,150.79071,-34.143433 +2021,7,15,1,New South Wales,150.625163,-34.386734 +2022,1,17,1,New South Wales,153.101435,-29.489694 +2021,4,12,1,New South Wales,150.614992,-34.432821 +2022,6,5,1,New South Wales,153.301293,-28.685102 +2020,9,15,1,New South Wales,153.095325,-29.483897 +2021,9,1,1,New South Wales,150.514531,-34.443865 +2020,4,2,1,New South Wales,152.780839,-31.686858 +2021,10,15,1,New South Wales,153.10321,-29.486813 +2021,6,3,1,New South Wales,150.606746,-34.437718 +2021,10,11,1,New South Wales,153.229422,-28.889109 +2021,8,6,1,New South Wales,150.632615,-34.418297 +2020,10,9,1,New South Wales,153.321087,-28.828008 +2021,6,8,1,New South Wales,150.518724,-34.447421 +2024,8,24,1,New South Wales,152.41745,-31.935801 +2021,5,6,1,New South Wales,150.622219,-34.397766 +2021,6,14,1,New South Wales,153.474541,-28.257896 +2021,3,19,1,New South Wales,150.520676,-34.466419 +2021,4,18,1,New South Wales,150.607255,-34.45419 +2024,6,26,1,New South Wales,152.779169,-31.636544 +2022,8,24,1,New South Wales,152.847991,-30.656119 +2021,5,16,1,New South Wales,150.62877,-34.389166 +2021,8,18,1,New South Wales,150.993648,-34.058152 +2021,5,29,1,New South Wales,150.604748,-34.437561 +2023,10,24,1,New South Wales,152.996012,-30.410631 +2021,6,17,1,New South Wales,153.101226,-29.489834 +2021,9,25,1,New South Wales,152.355785,-31.85809 +2021,5,4,1,New South Wales,150.521511,-34.452895 +2022,11,23,1,New South Wales,152.760068,-30.904021 +2021,5,8,1,New South Wales,150.605302,-34.437987 +2023,12,19,1,New South Wales,150.783786,-33.718313 +2020,4,3,1,New South Wales,150.101859,-33.779072 +2024,8,19,1,New South Wales,152.118528,-32.217241 +2021,2,3,1,New South Wales,149.964408,-31.03128 +2021,5,7,1,New South Wales,152.914908,-31.455499 +2021,5,4,1,New South Wales,150.522181,-34.453423 +2023,6,27,1,New South Wales,152.785519,-31.521544 +2021,5,11,1,New South Wales,150.517379,-34.453515 +2022,9,17,1,New South Wales,150.840892,-34.064785 +2021,5,7,1,New South Wales,150.609202,-34.420636 +2021,10,28,1,New South Wales,151.739274,-32.066822 +2022,1,13,1,New South Wales,152.856013,-31.12578 +2022,6,17,1,New South Wales,153.409145,-29.015392 +2021,10,30,1,New South Wales,153.332807,-28.81836 +2021,8,9,1,New South Wales,150.632604,-34.418297 +2021,10,18,1,New South Wales,153.131276,-28.578875 +2022,12,12,1,New South Wales,152.881297,-31.447106 +2021,6,3,1,New South Wales,150.605729,-34.437499 +2022,6,20,1,New South Wales,150.995318,-34.054916 +2021,4,23,1,New South Wales,150.630932,-34.388477 +2021,5,13,1,New South Wales,150.629612,-34.389389 +2020,10,12,1,New South Wales,152.895604,-31.123772 +2021,5,29,1,New South Wales,150.610443,-34.448897 +2021,1,16,1,New South Wales,152.00351,-32.728513 +2021,4,26,1,New South Wales,152.875782,-31.424988 +2023,12,15,1,New South Wales,152.85763,-31.544374 +2021,9,1,1,New South Wales,150.513106,-34.447135 +2020,10,19,1,New South Wales,153.303174,-28.827996 +2021,10,9,1,New South Wales,150.567012,-34.483871 +2022,2,11,1,New South Wales,153.302585,-28.845567 +2021,1,12,1,New South Wales,152.858729,-31.546371 +2024,7,14,1,New South Wales,153.428356,-28.972812 +2023,11,8,1,New South Wales,152.920448,-31.452622 +2022,11,16,1,New South Wales,153.324009,-28.825305 +2020,5,,1,New South Wales,151.877235,-32.77945 +2021,5,13,1,New South Wales,150.604691,-34.438813 +2021,5,9,1,New South Wales,150.51698,-34.447493 +2020,10,26,1,New South Wales,153.364275,-28.834226 +2020,11,25,1,New South Wales,150.057292,-33.767829 +2022,7,28,1,New South Wales,152.795888,-31.14082 +2020,11,16,1,New South Wales,153.316981,-28.949626 +2023,3,23,1,New South Wales,150.896157,-29.874354 +2020,12,9,1,New South Wales,149.960189,-36.280531 +2021,11,24,1,New South Wales,152.925108,-31.460113 +2020,4,2,1,New South Wales,152.650294,-31.873495 +2021,7,2,1,New South Wales,150.513049,-34.447242 +2021,5,25,1,New South Wales,150.522358,-34.465128 +2021,6,25,1,New South Wales,150.60503,-34.437603 +2024,3,7,1,New South Wales,150.786492,-33.706754 +2021,9,10,1,New South Wales,153.564397,-28.391396 +2021,5,30,1,New South Wales,150.638759,-34.491405 +2021,5,6,1,New South Wales,150.638698,-34.49089 +2022,8,14,1,New South Wales,150.87956,-34.014572 +2020,10,17,1,New South Wales,149.947048,-36.640426 +2021,12,13,1,New South Wales,153.54705,-28.57956 +2021,4,17,1,New South Wales,150.627428,-34.386624 +2020,9,18,1,New South Wales,152.355785,-31.85809 +2021,6,21,1,New South Wales,150.60242,-34.439075 +2021,7,20,1,New South Wales,150.51694,-34.448854 +2020,6,15,1,New South Wales,153.384531,-29.104379 +2021,6,14,1,New South Wales,152.925907,-31.470191 +2023,4,10,1,New South Wales,150.808212,-34.098106 +2021,5,1,1,New South Wales,150.610334,-34.420253 +2021,9,1,1,New South Wales,153.245689,-28.666246 +2022,2,4,1,New South Wales,153.110506,-29.49018 +2021,10,2,1,New South Wales,152.072187,-32.74631 +2020,5,5,1,New South Wales,151.000276,-34.060623 +2021,4,19,1,New South Wales,150.606659,-34.434651 +2021,4,19,1,New South Wales,150.637454,-34.421465 +2021,2,27,1,New South Wales,150.603956,-34.43293 +2021,4,30,1,New South Wales,150.606902,-34.454381 +2021,5,9,1,New South Wales,150.51682,-34.44777 +2020,9,19,1,New South Wales,150.1245,-31.07036 +2023,11,17,1,New South Wales,150.784687,-33.713329 +2023,12,2,1,New South Wales,151.335227,-29.779277 +2020,8,22,1,New South Wales,150.940088,-33.953175 +2024,1,25,1,New South Wales,152.89491,-31.414354 +2021,5,9,1,New South Wales,150.518236,-34.451404 +2021,8,30,1,New South Wales,150.582601,-34.500217 +2021,8,30,1,New South Wales,150.517338,-34.441659 +2021,7,9,1,New South Wales,150.630856,-34.388855 +2023,3,25,1,New South Wales,150.808762,-34.09827 +2021,11,17,1,New South Wales,152.920253,-31.475419 +2022,12,6,1,New South Wales,149.355934,-37.177314 +2020,12,4,1,New South Wales,152.359003,-31.924406 +2021,8,27,1,New South Wales,150.514042,-34.447875 +2021,3,10,1,New South Wales,150.60387,-34.440123 +2021,5,1,1,New South Wales,150.604658,-34.427363 +2020,11,3,1,New South Wales,153.335449,-28.872021 +2021,7,25,1,New South Wales,153.278317,-28.818924 +2022,5,19,1,New South Wales,150.94316,-34.114375 +2021,8,16,1,New South Wales,153.56178,-28.642771 +2024,2,4,1,New South Wales,152.881536,-31.447964 +2020,8,25,1,New South Wales,152.95556,-30.667693 +2021,4,23,1,New South Wales,150.630932,-34.388477 +2021,4,13,1,New South Wales,150.63582,-34.485975 +2021,3,25,1,New South Wales,152.915019,-31.436334 +2021,9,12,1,New South Wales,151.046985,-34.0268 +2023,10,25,1,New South Wales,152.065929,-32.743384 +2020,8,7,1,New South Wales,153.307399,-28.824302 +2021,4,21,1,New South Wales,152.864571,-31.29642 +2020,4,14,1,New South Wales,153.056,-30.33395 +2021,6,20,1,New South Wales,150.60356,-34.424294 +2023,5,23,1,New South Wales,150.77058,-34.29484 +2021,1,17,1,New South Wales,152.1038,-32.72055 +2021,4,24,1,New South Wales,150.638141,-34.485524 +2023,9,29,1,New South Wales,153.108135,-29.490539 +2022,10,4,1,New South Wales,152.11039,-32.773866 +2021,7,5,1,New South Wales,150.630708,-34.389852 +2023,5,26,1,New South Wales,152.896115,-31.4357 +2024,7,11,1,New South Wales,153.414498,-28.982567 +2021,5,4,1,New South Wales,150.61147,-34.419689 +2021,5,9,1,New South Wales,150.628146,-34.389704 +2023,10,10,1,New South Wales,150.62087,-34.54599 +2022,9,30,1,New South Wales,152.90301,-30.23943 +2020,5,14,1,New South Wales,153.095229,-29.483443 +2021,10,28,1,New South Wales,153.198472,-28.601773 +2022,6,22,1,New South Wales,153.103935,-29.489563 +2020,6,1,1,New South Wales,153.031718,-30.389051 +2022,9,26,1,New South Wales,150.980951,-34.016936 +2021,5,9,1,New South Wales,150.632675,-34.418082 +2023,9,20,1,New South Wales,150.901126,-34.01627 +2022,9,13,1,New South Wales,150.841735,-34.072142 +2022,6,15,1,New South Wales,153.293076,-28.864654 +2022,4,2,1,New South Wales,150.932322,-29.679519 +2021,5,27,1,New South Wales,150.517335,-34.45281 +2023,10,26,1,New South Wales,153.101183,-29.489946 +2021,7,7,1,New South Wales,150.604842,-34.419009 +2021,6,22,1,New South Wales,150.65764,-34.455959 +2023,6,18,1,New South Wales,152.379454,-31.919902 +2023,7,13,1,New South Wales,153.096011,-29.484791 +2021,5,17,1,New South Wales,150.637314,-34.423716 +2024,7,15,1,New South Wales,151.367945,-32.886264 +2023,3,1,1,New South Wales,152.794038,-31.63888 +2021,12,20,1,New South Wales,149.374187,-33.580892 +2021,6,9,1,New South Wales,150.609584,-34.430921 +2022,8,14,1,New South Wales,150.877198,-34.016253 +2023,6,30,1,New South Wales,152.911609,-31.458122 +2020,9,2,1,New South Wales,152.9232,-31.469713 +2022,10,23,1,New South Wales,152.162997,-32.714611 +2021,4,24,1,New South Wales,150.516541,-34.450198 +2021,7,28,1,New South Wales,150.625154,-34.386292 +2022,1,11,1,New South Wales,150.615924,-34.440611 +2023,8,9,1,New South Wales,153.103876,-29.489587 +2022,5,17,1,New South Wales,152.878917,-31.44848 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2021,6,4,1,New South Wales,150.534881,-34.463443 +2022,3,13,1,New South Wales,153.548753,-28.726548 +2022,10,13,1,New South Wales,152.919893,-31.474066 +2020,10,2,1,New South Wales,151.95742,-32.639285 +2021,5,20,1,New South Wales,150.630406,-34.395184 +2020,10,18,1,New South Wales,149.921178,-36.633581 +2020,11,17,1,New South Wales,150.001052,-36.513032 +2024,4,11,1,New South Wales,152.927472,-31.472397 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2021,5,7,1,New South Wales,150.603863,-34.427014 +2021,7,3,1,New South Wales,152.863743,-29.6794 +2021,3,18,1,New South Wales,150.635315,-34.488066 +2021,5,22,1,New South Wales,150.616638,-34.433484 +2021,6,10,1,New South Wales,153.077049,-29.450991 +2024,5,10,1,New South Wales,152.1016,-32.761 +2021,5,12,1,New South Wales,150.518614,-34.437159 +2021,12,27,1,New South Wales,150.616149,-34.438424 +2021,7,31,1,New South Wales,150.597826,-34.426986 +2021,7,7,1,New South Wales,152.063304,-32.707137 +2023,2,24,1,New South Wales,153.323871,-28.828834 +2023,8,6,1,New South Wales,150.786988,-33.705787 +2023,12,14,1,New South Wales,152.924333,-31.45422 +2023,12,19,1,New South Wales,152.399058,-31.965324 +2023,6,21,1,New South Wales,153.077982,-28.557669 +2022,12,18,1,New South Wales,151.373241,-30.457365 +2021,10,18,1,New South Wales,153.095115,-29.489437 +2023,3,6,1,New South Wales,153.108146,-29.49025 +2023,5,3,1,New South Wales,153.104063,-29.485155 +2022,11,4,1,New South Wales,153.490226,-28.679923 +2021,7,16,1,New South Wales,150.522839,-34.466508 +2023,10,15,1,New South Wales,152.92885,-31.455952 +2020,10,24,1,New South Wales,149.984095,-36.575978 +2020,11,14,1,New South Wales,150.004563,-36.508695 +2023,4,7,1,New South Wales,153.110506,-29.490184 +2021,8,7,1,New South Wales,150.632602,-34.41836 +2021,5,29,1,New South Wales,150.527203,-34.469499 +2021,9,9,1,New South Wales,150.200414,-29.35394 +2021,6,22,1,New South Wales,150.625291,-34.386069 +2021,8,25,1,New South Wales,153.077049,-29.450991 +2020,12,29,1,New South Wales,150.629212,-33.771456 +2020,1,17,1,New South Wales,152.88129,-31.448673 +2021,12,19,1,New South Wales,152.034735,-32.764257 +2021,3,11,1,New South Wales,150.603665,-34.440831 +2023,8,30,1,New South Wales,152.006171,-32.72771 +2021,5,18,1,New South Wales,150.632839,-34.419609 +2024,2,9,1,New South Wales,153.09975,-29.49159 +2020,4,12,1,New South Wales,150.057148,-33.778022 +2022,8,11,1,New South Wales,150.528417,-34.462781 +2023,9,15,1,New South Wales,152.812127,-31.659526 +2023,3,4,1,New South Wales,152.915394,-31.431811 +2024,2,27,1,New South Wales,150.785634,-33.707566 +2023,1,12,1,New South Wales,151.515025,-30.531532 +2023,8,2,1,New South Wales,152.02857,-32.191823 +2021,4,22,1,New South Wales,150.637143,-34.485397 +2021,5,3,1,New South Wales,150.519292,-34.437038 +2021,7,10,1,New South Wales,150.631517,-34.387795 +2022,4,16,1,New South Wales,152.00351,-32.728513 +2020,5,4,1,New South Wales,152.43247,-28.319558 +2021,6,24,1,New South Wales,150.513852,-34.447295 +2023,9,5,1,New South Wales,153.028287,-29.172117 +2023,1,10,1,New South Wales,152.77402,-28.94955 +2023,8,20,1,New South Wales,150.989821,-34.090328 +2021,8,8,1,New South Wales,150.641195,-34.402145 +2024,1,27,1,New South Wales,150.784206,-33.711877 +2021,7,10,1,New South Wales,150.513077,-34.447369 +2020,9,24,1,New South Wales,153.006715,-30.405141 +2021,8,13,1,New South Wales,150.513851,-34.44697 +2020,8,5,1,New South Wales,152.923476,-31.464075 +2020,12,9,1,New South Wales,149.960189,-36.280531 +2021,3,24,1,New South Wales,150.11475,-31.09187 +2022,10,6,1,New South Wales,152.993874,-30.405923 +2021,5,21,1,New South Wales,150.639026,-34.493132 +2023,10,31,1,New South Wales,152.187392,-32.232904 +2021,5,10,1,New South Wales,150.521394,-34.466434 +2021,5,28,1,New South Wales,153.59019,-28.65505 +2023,2,13,1,New South Wales,150.80368,-34.10951 +2021,6,22,1,New South Wales,150.602415,-34.419827 +2023,5,26,1,New South Wales,153.603568,-28.823354 +2020,11,23,1,New South Wales,153.607389,-28.687767 +2021,6,14,1,New South Wales,150.611713,-34.432955 +2020,5,20,1,New South Wales,152.807328,-31.136512 +2021,5,28,1,New South Wales,150.527173,-34.469418 +2020,1,12,1,New South Wales,151.10183,-34.01217 +2023,11,18,1,New South Wales,150.835721,-34.069552 +2021,9,11,1,New South Wales,153.104358,-29.477137 +2022,11,18,1,New South Wales,152.894742,-31.443076 +2021,4,30,1,New South Wales,150.616926,-34.399574 +2023,11,21,1,New South Wales,150.786474,-33.709587 +2021,9,11,1,New South Wales,150.639636,-34.399185 +2021,4,7,1,New South Wales,150.615796,-34.434766 +2021,4,26,1,New South Wales,150.608524,-34.45435 +2021,8,19,1,New South Wales,150.645328,-34.401359 +2021,6,10,1,New South Wales,150.64592,-34.397341 +2023,10,12,1,New South Wales,152.914421,-31.451443 +2021,12,2,1,New South Wales,149.55776,-33.495076 +2021,1,12,1,New South Wales,152.415131,-31.933183 +2023,10,26,1,New South Wales,152.189597,-32.229205 +2021,4,7,1,New South Wales,151.154762,-33.882417 +2023,10,15,1,New South Wales,149.607994,-32.570904 +2021,5,22,1,New South Wales,150.639111,-34.493215 +2021,3,3,1,New South Wales,150.516766,-34.452528 +2023,6,18,1,New South Wales,150.783983,-33.717609 +2021,5,18,1,New South Wales,150.599964,-34.428704 +2023,9,1,1,New South Wales,153.5166,-28.215655 +2021,8,12,1,New South Wales,150.632549,-34.418305 +2021,1,26,1,New South Wales,151.647191,-32.551731 +2021,4,27,1,New South Wales,150.63602,-34.419436 +2020,10,1,1,New South Wales,152.03122,-32.73444 +2021,5,19,1,New South Wales,152.815706,-31.094993 +2021,3,24,1,New South Wales,150.659499,-34.458393 +2023,10,22,1,New South Wales,152.923544,-31.470669 +2021,5,26,1,New South Wales,150.631321,-34.420192 +2022,12,21,1,New South Wales,152.793442,-31.642139 +2020,11,26,1,New South Wales,153.41931,-28.872633 +2021,4,11,1,New South Wales,150.604706,-34.431051 +2021,5,8,1,New South Wales,150.637345,-34.423798 +2022,9,20,1,New South Wales,153.395818,-28.560281 +2021,9,22,1,New South Wales,150.3201,-34.40016 +2021,5,27,1,New South Wales,150.598623,-34.426127 +2023,11,19,1,New South Wales,149.367249,-33.435848 +2021,6,18,1,New South Wales,150.603267,-34.426579 +2021,4,23,1,New South Wales,150.636168,-34.420367 +2020,5,7,1,New South Wales,150.05219,-34.90092 +2023,9,27,1,New South Wales,152.613348,-30.345383 +2020,10,3,1,New South Wales,152.404167,-31.945815 +2021,7,25,1,New South Wales,150.624603,-34.386155 +2022,9,18,1,New South Wales,153.555987,-28.398817 +2022,11,29,1,New South Wales,153.111104,-28.812518 +2021,8,8,1,New South Wales,150.639736,-34.399484 +2020,4,9,1,New South Wales,153.103935,-29.485576 +2021,11,22,1,New South Wales,152.030533,-32.731152 +2020,8,16,1,New South Wales,152.985913,-29.030774 +2022,9,29,1,New South Wales,152.90635,-30.23551 +2021,9,1,1,New South Wales,153.104299,-29.477899 +2023,3,11,1,New South Wales,153.101274,-29.490142 +2020,10,19,1,New South Wales,153.303135,-28.824882 +2021,4,30,1,New South Wales,150.635449,-34.41965 +2021,4,28,1,New South Wales,150.619932,-34.400949 +2021,10,13,1,New South Wales,153.104482,-29.482265 +2021,6,14,1,New South Wales,150.611635,-34.432999 +2021,6,13,1,New South Wales,150.515782,-34.446793 +2023,11,23,1,New South Wales,152.894048,-31.431816 +2021,4,26,1,New South Wales,150.607929,-34.454239 +2020,1,1,1,New South Wales,152.175398,-32.66323 +2021,4,3,1,New South Wales,150.664592,-34.458409 +2023,4,12,1,New South Wales,153.302733,-28.848165 +2020,11,3,1,New South Wales,153.335449,-28.872021 +2021,6,22,1,New South Wales,150.520155,-34.45349 +2020,7,17,1,New South Wales,152.910301,-31.453481 +2020,5,20,1,New South Wales,153.20197,-28.49591 +2021,5,5,1,New South Wales,150.608502,-34.456279 +2023,2,2,1,New South Wales,153.101199,-29.490021 +2021,9,12,1,New South Wales,152.666458,-31.863221 +2021,6,18,1,New South Wales,150.603902,-34.438618 +2022,9,14,1,New South Wales,153.104138,-29.480299 +2021,4,20,1,New South Wales,150.636355,-34.485553 +2020,9,13,1,New South Wales,152.068395,-32.707939 +2020,10,15,1,New South Wales,150.873769,-34.035121 +2021,10,13,1,New South Wales,152.928706,-29.726842 +2023,8,8,1,New South Wales,153.104503,-29.477843 +2022,9,27,1,New South Wales,149.428856,-36.255658 +2022,9,25,1,New South Wales,150.790805,-34.187249 +2023,11,10,1,New South Wales,150.985957,-34.096995 +2021,5,9,1,New South Wales,150.521425,-34.466497 +2022,8,2,1,New South Wales,150.883653,-34.015618 +2021,5,8,1,New South Wales,150.637235,-34.423823 +2021,5,24,1,New South Wales,150.631474,-34.387776 +2021,3,8,1,New South Wales,150.524355,-34.464583 +2021,5,18,1,New South Wales,152.75671,-28.983446 +2024,2,23,1,New South Wales,150.587927,-33.696169 +2020,10,27,1,New South Wales,152.898464,-29.631668 +2021,6,20,1,New South Wales,150.519878,-34.452565 +2020,4,1,1,New South Wales,150.057931,-33.772803 +2022,7,26,1,New South Wales,153.319487,-28.887191 +2020,7,30,1,New South Wales,153.401939,-28.258372 +2020,1,6,1,New South Wales,152.409406,-31.910186 +2021,7,21,1,New South Wales,150.523823,-34.463778 +2021,5,8,1,New South Wales,150.606353,-34.438134 +2021,10,11,1,New South Wales,152.093939,-28.793596 +2021,10,25,1,New South Wales,150.618349,-34.436826 +2020,8,24,1,New South Wales,152.867889,-29.667359 +2021,11,15,1,New South Wales,152.87426,-31.47948 +2021,5,12,1,New South Wales,153.103715,-29.485576 +2021,6,28,1,New South Wales,152.415558,-31.933111 +2021,6,18,1,New South Wales,150.604251,-34.438976 +2024,3,22,1,New South Wales,152.371278,-31.923237 +2024,5,7,1,New South Wales,152.133866,-32.200309 +2021,5,14,1,New South Wales,150.516041,-34.449097 +2021,5,4,1,New South Wales,150.622884,-34.397328 +2021,5,1,1,New South Wales,150.517714,-34.441459 +2023,10,7,1,New South Wales,150.784938,-33.707417 +2020,10,27,1,New South Wales,151.780333,-32.714185 +2024,7,12,1,New South Wales,152.929913,-31.456954 +2020,10,11,1,New South Wales,152.920965,-31.447899 +2021,4,9,1,New South Wales,150.617191,-34.434289 +2021,5,13,1,New South Wales,150.627841,-34.397415 +2023,5,23,1,New South Wales,151.789094,-32.65405 +2021,6,11,1,New South Wales,150.521625,-34.465591 +2020,11,16,1,New South Wales,152.923379,-31.459753 +2022,6,15,1,New South Wales,153.3,-28.819705 +2021,4,22,1,New South Wales,150.631153,-34.387589 +2021,9,20,1,New South Wales,150.790619,-34.210895 +2020,2,1,1,New South Wales,150.8283,-29.654873 +2020,6,8,1,New South Wales,151.140925,-31.405729 +2023,4,4,1,New South Wales,152.830733,-31.558788 +2021,8,25,1,New South Wales,153.563734,-28.381087 +2023,7,26,1,New South Wales,153.109294,-29.490661 +2023,11,16,1,New South Wales,152.928198,-31.459067 +2020,11,14,1,New South Wales,149.934931,-36.503907 +2021,8,12,1,New South Wales,150.513808,-34.447303 +2020,11,8,1,New South Wales,150.791213,-34.142897 +2022,5,27,1,New South Wales,153.468814,-28.261709 +2022,6,27,1,New South Wales,153.107995,-29.490353 +2021,4,26,1,New South Wales,150.521057,-34.466778 +2022,8,6,1,New South Wales,153.104085,-29.480042 +2021,5,23,1,New South Wales,151.970066,-32.441261 +2024,7,22,1,New South Wales,152.895449,-30.556073 +2021,5,1,1,New South Wales,150.616719,-34.435199 +2020,10,10,1,New South Wales,149.955028,-36.650407 +2021,9,27,1,New South Wales,153.459136,-28.59158 +2022,12,29,1,New South Wales,152.018682,-32.73197 +2021,12,24,1,New South Wales,153.085576,-30.345674 +2022,8,25,1,Queensland,153.164873,-27.570077 +2021,6,19,1,New South Wales,150.641805,-34.393971 +2022,7,28,1,New South Wales,152.794057,-31.138285 +2024,1,16,1,New South Wales,150.784259,-33.717281 +2021,4,28,1,New South Wales,150.604384,-34.452971 +2021,5,9,1,New South Wales,150.518344,-34.451425 +2023,9,30,1,New South Wales,153.22866,-28.890701 +2020,3,30,1,New South Wales,152.973787,-31.189198 +2022,4,11,1,New South Wales,152.102978,-32.732683 +2023,9,17,1,New South Wales,150.787184,-33.70647 +2022,5,1,1,New South Wales,152.062868,-32.701107 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2021,7,14,1,New South Wales,150.626956,-34.421036 +2023,4,2,1,New South Wales,153.420146,-29.018511 +2021,6,17,1,New South Wales,150.51373,-34.446291 +2024,5,15,1,New South Wales,151.986493,-32.400494 +2021,3,29,1,New South Wales,153.104117,-29.480971 +2023,11,30,1,New South Wales,150.99014,-34.020666 +2023,10,3,1,New South Wales,152.063695,-32.70553 +2021,5,15,1,New South Wales,150.602613,-34.436501 +2022,4,21,1,New South Wales,152.929022,-31.450193 +2023,1,7,1,New South Wales,153.108119,-29.490301 +2020,11,17,1,New South Wales,149.915993,-35.114641 +2021,10,,1,New South Wales,149.307547,-36.184802 +2023,12,19,1,New South Wales,152.163715,-32.738297 +2020,8,5,1,New South Wales,152.926348,-31.459118 +2020,9,7,1,New South Wales,151.810724,-32.456416 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2021,3,18,1,New South Wales,150.805509,-34.099116 +2023,9,18,1,New South Wales,152.897093,-31.474709 +2024,9,24,1,New South Wales,152.692037,-31.872313 +2024,6,5,1,New South Wales,152.911729,-31.44531 +2020,7,10,1,New South Wales,153.10372,-29.485662 +2024,3,6,1,New South Wales,150.986632,-34.092261 +2024,7,15,1,New South Wales,153.395537,-29.047123 +2021,9,5,1,New South Wales,150.597688,-34.450793 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2023,11,6,1,New South Wales,152.911833,-31.448367 +2021,6,1,1,New South Wales,150.639667,-34.399222 +2020,5,13,1,New South Wales,150.00164,-36.458645 +2024,1,6,1,New South Wales,152.17252,-32.738943 +2021,9,19,1,New South Wales,152.344442,-31.879506 +2021,8,8,1,New South Wales,150.520978,-34.465407 +2021,5,4,1,New South Wales,150.520679,-34.436507 +2022,3,17,1,New South Wales,153.10799,-29.49017 +2021,8,21,1,New South Wales,150.513233,-34.447624 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2021,5,6,1,New South Wales,150.632905,-34.418799 +2021,3,25,1,New South Wales,150.607892,-34.422333 +2020,9,27,1,New South Wales,153.298493,-28.816771 +2020,3,10,1,New South Wales,153.296347,-28.452492 +2020,9,13,1,New South Wales,153.611771,-28.663195 +2022,6,6,1,New South Wales,152.925215,-31.454065 +2023,9,29,1,New South Wales,153.324527,-28.834015 +2023,11,30,1,New South Wales,152.356055,-31.880571 +2024,4,2,1,New South Wales,152.925332,-31.453886 +2022,10,26,1,New South Wales,153.426793,-28.626008 +2021,8,21,1,New South Wales,150.513109,-34.447045 +2023,1,19,1,New South Wales,152.870544,-31.464604 +2021,9,27,1,New South Wales,152.336867,-31.201726 +2023,1,9,1,New South Wales,152.30372,-32.295994 +2020,6,26,1,New South Wales,152.909436,-31.44738 +2022,7,27,1,New South Wales,153.301256,-28.81811 +2020,3,11,1,New South Wales,153.31428,-28.468766 +2021,5,16,1,New South Wales,150.61394,-34.43308 +2024,1,31,1,New South Wales,153.102338,-29.48956 +2020,6,24,1,New South Wales,152.884999,-31.429958 +2021,5,8,1,New South Wales,150.632571,-34.418296 +2023,9,5,1,New South Wales,152.905708,-31.437973 +2022,7,30,1,New South Wales,152.79647,-31.136433 +2021,2,19,1,New South Wales,152.04316,-32.76786 +2020,11,6,1,New South Wales,153.10423,-29.479388 +2021,5,10,1,New South Wales,150.606981,-34.438633 +2021,6,22,1,New South Wales,150.602436,-34.419864 +2023,10,14,1,New South Wales,153.101274,-29.489886 +2021,10,2,1,New South Wales,150.438807,-34.466001 +2021,7,1,1,New South Wales,150.101871,-33.779018 +2021,4,20,1,New South Wales,150.636399,-34.485527 +2021,6,13,1,New South Wales,150.515978,-34.446797 +2021,3,23,1,New South Wales,150.610105,-34.430192 +2020,6,13,1,New South Wales,151.54093,-30.4225 +2023,10,19,1,New South Wales,150.703243,-34.265205 +2021,3,31,1,New South Wales,150.532545,-34.482157 +2023,8,2,1,New South Wales,152.62903,-31.430488 +2020,7,16,1,New South Wales,153.103833,-29.48541 +2020,1,9,1,New South Wales,152.432266,-31.938701 +2021,10,10,1,New South Wales,153.401753,-28.258658 +2020,10,28,1,New South Wales,153.339182,-28.872021 +2020,11,15,1,New South Wales,153.094048,-29.488798 +2021,4,14,1,New South Wales,153.103827,-29.485104 +2022,7,28,1,New South Wales,152.787206,-31.630249 +2020,11,18,1,New South Wales,150.004563,-36.508695 +2022,6,3,1,New South Wales,152.710377,-31.782474 +2021,3,27,1,New South Wales,150.604709,-34.439319 +2020,10,5,1,New South Wales,149.959933,-36.657162 +2020,11,18,1,New South Wales,150.004563,-36.508695 +2023,10,27,1,New South Wales,150.808212,-34.098106 +2021,5,6,1,New South Wales,150.615892,-34.435985 +2020,10,5,1,New South Wales,149.959933,-36.657162 +2021,5,9,1,New South Wales,150.616411,-34.436094 +2023,1,20,1,New South Wales,153.517315,-28.574486 +2021,6,23,1,New South Wales,150.619747,-34.439694 +2021,11,3,1,New South Wales,152.82356,-29.813572 +2021,10,26,1,New South Wales,150.616592,-34.441219 +2023,8,23,1,New South Wales,152.066015,-32.706147 +2023,5,29,1,New South Wales,152.186343,-31.615984 +2021,1,28,1,New South Wales,150.792316,-34.197216 +2020,2,15,1,New South Wales,152.922488,-31.457663 +2020,12,2,1,New South Wales,149.978195,-36.450213 +2020,5,16,1,New South Wales,149.311703,-36.06528 +2021,5,28,1,New South Wales,150.631701,-34.38705 +2024,1,17,1,New South Wales,152.710489,-31.782134 +2023,10,19,1,New South Wales,150.786059,-33.712248 +2021,10,21,1,New South Wales,153.01269,-29.53837 +2023,9,1,1,New South Wales,150.784127,-33.71767 +2021,3,16,1,New South Wales,150.532837,-34.482226 +2020,12,15,1,New South Wales,153.363,-28.676944 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2021,7,29,1,New South Wales,150.597828,-34.426138 +2020,11,3,1,New South Wales,149.96897,-36.58553 +2023,8,8,1,New South Wales,150.787259,-33.704008 +2021,2,7,1,New South Wales,152.918173,-31.485116 +2021,8,2,1,New South Wales,150.626484,-34.390005 +2022,2,8,1,New South Wales,153.033527,-30.193444 +2021,6,25,1,New South Wales,150.644863,-34.391586 +2020,10,13,1,New South Wales,152.894394,-31.448332 +2021,1,28,1,New South Wales,153.323839,-28.828351 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2021,9,8,1,New South Wales,150.596957,-34.453131 +2021,4,20,1,New South Wales,150.606234,-34.454134 +2023,4,21,1,New South Wales,152.86892,-31.305746 +2023,11,9,1,New South Wales,152.103437,-32.759345 +2020,4,13,1,New South Wales,152.878747,-31.425973 +2021,6,19,1,New South Wales,150.51375,-34.446355 +2021,5,18,1,New South Wales,150.640705,-34.494238 +2021,9,4,1,New South Wales,153.478762,-28.734126 +2021,3,24,1,New South Wales,150.607686,-34.422293 +2022,10,10,1,New South Wales,150.811897,-34.101384 +2021,5,11,1,New South Wales,150.625701,-34.399267 +2021,6,18,1,New South Wales,150.513794,-34.446338 +2020,10,19,1,New South Wales,151.780333,-32.714185 +2021,6,6,1,New South Wales,150.641954,-34.396813 +2021,5,31,1,New South Wales,150.640355,-34.397585 +2021,1,28,1,New South Wales,153.104004,-29.478361 +2023,10,26,1,New South Wales,153.10747,-29.49011 +2021,5,16,1,New South Wales,150.62907,-34.395122 +2022,5,13,1,New South Wales,153.110511,-29.490194 +2021,4,20,1,New South Wales,150.630338,-34.394488 +2021,5,17,1,New South Wales,150.60045,-34.42729 +2022,8,5,1,New South Wales,150.798583,-34.213583 +2024,1,3,1,New South Wales,152.916857,-31.461235 +2022,1,7,1,New South Wales,153.108231,-29.490301 +2021,5,19,1,New South Wales,150.5239,-34.463753 +2021,4,22,1,New South Wales,150.616378,-34.433425 +2020,11,17,1,New South Wales,152.067434,-32.708155 +2020,4,20,1,New South Wales,152.35899,-31.92441 +2021,7,19,1,New South Wales,150.516354,-34.448058 +2021,5,29,1,New South Wales,150.640743,-34.395789 +2020,6,5,1,New South Wales,152.868018,-29.667098 +2020,1,24,1,New South Wales,152.35899,-31.92441 +2020,1,15,1,New South Wales,153.104154,-29.485155 +2020,7,16,1,New South Wales,153.036423,-30.8961 +2021,4,24,1,New South Wales,150.514341,-34.444771 +2021,2,20,1,New South Wales,153.092187,-29.488083 +2021,7,5,1,New South Wales,153.10806,-29.490278 +2023,9,13,1,New South Wales,153.368965,-28.850295 +2020,10,30,1,New South Wales,149.943147,-36.549371 +2022,6,27,1,New South Wales,152.94056,-30.39296 +2023,7,22,1,New South Wales,153.071467,-30.885804 +2020,10,18,1,New South Wales,149.947316,-36.607854 +2021,3,5,1,New South Wales,150.514983,-34.445478 +2021,5,29,1,New South Wales,150.631475,-34.386964 +2020,10,1,1,New South Wales,152.867932,-29.667378 +2022,6,27,1,New South Wales,152.444452,-31.889461 +2021,5,28,1,New South Wales,150.603274,-34.436991 +2022,1,29,1,New South Wales,153.110635,-29.489624 +2021,5,23,1,New South Wales,150.618115,-34.448885 +2021,4,24,1,New South Wales,150.610246,-34.419124 +2022,5,20,1,New South Wales,153.343996,-28.749883 +2022,11,17,1,New South Wales,152.90863,-31.468191 +2022,1,16,1,New South Wales,153.557006,-28.397367 +2022,11,27,1,New South Wales,152.788781,-30.895519 +2021,9,19,1,New South Wales,153.104959,-29.476717 +2022,6,24,1,New South Wales,153.1031,-30.32312 +2020,3,23,1,New South Wales,150.103604,-33.780771 +2022,1,2,1,New South Wales,151.015549,-33.993767 +2022,7,6,1,New South Wales,150.98585,-34.096545 +2023,11,4,1,New South Wales,151.990138,-32.015229 +2021,6,2,1,New South Wales,150.604693,-34.427292 +2020,12,30,1,New South Wales,152.0356,-32.72787 +2020,9,28,1,New South Wales,151.655574,-32.656069 +2021,6,22,1,New South Wales,150.519456,-34.463131 +2020,11,10,1,New South Wales,152.934952,-29.049454 +2021,9,3,1,New South Wales,152.919477,-31.438352 +2024,6,6,1,New South Wales,152.37867,-31.91053 +2021,10,18,1,New South Wales,152.067965,-32.708121 +2023,4,19,1,New South Wales,153.303608,-28.824272 +2021,6,2,1,New South Wales,150.519625,-34.455219 +2021,9,16,1,New South Wales,150.993251,-34.00383 +2021,9,24,1,New South Wales,153.103806,-29.485571 +2022,10,4,1,New South Wales,153.46253,-28.6551 +2021,7,16,1,New South Wales,150.514929,-34.446595 +2023,6,8,1,New South Wales,150.81153,-34.11539 +2021,6,12,1,New South Wales,150.604265,-34.439256 +2020,12,19,1,New South Wales,151.782387,-32.570505 +2020,11,1,1,New South Wales,149.999247,-36.565645 +2021,5,20,1,New South Wales,150.522372,-34.465011 +2022,10,7,1,New South Wales,152.621789,-30.332939 +2021,5,7,1,New South Wales,150.616085,-34.435709 +2020,1,24,1,New South Wales,153.103935,-29.489519 +2021,9,28,1,New South Wales,150.784611,-34.208131 +2021,7,14,1,New South Wales,150.627355,-34.421179 +2023,1,10,1,New South Wales,153.137558,-28.836932 +2021,6,14,1,New South Wales,150.611646,-34.432999 +2023,7,14,1,New South Wales,150.785865,-33.708864 +2023,11,21,1,New South Wales,152.897073,-31.41371 +2020,3,24,1,New South Wales,152.913536,-31.46026 +2022,8,30,1,New South Wales,149.316407,-36.297781 +2021,6,4,1,New South Wales,150.605672,-34.449795 +2024,3,16,1,New South Wales,150.98807,-34.09004 +2024,4,8,1,New South Wales,152.41279,-31.93319 +2021,8,2,1,New South Wales,150.518782,-34.447296 +2021,6,1,1,New South Wales,150.525236,-34.463843 +2020,4,23,1,New South Wales,153.5578,-28.3967 +2022,11,14,1,New South Wales,151.692628,-32.69137 +2020,10,,1,New South Wales,150.426635,-34.418535 +2023,6,21,1,New South Wales,149.955116,-36.511881 +2021,5,22,1,New South Wales,150.630994,-34.388217 +2020,10,30,1,New South Wales,152.623477,-30.52295 +2020,10,13,1,New South Wales,149.887989,-36.587028 +2024,1,7,1,New South Wales,151.62839,-32.643446 +2023,10,17,1,New South Wales,151.551593,-32.821996 +2021,8,26,1,New South Wales,150.515196,-34.444924 +2020,10,30,1,New South Wales,149.984095,-36.575978 +2021,6,3,1,New South Wales,150.521884,-34.466038 +2020,12,29,1,New South Wales,153.101762,-29.488914 +2021,7,29,1,New South Wales,150.520476,-34.46582 +2021,3,21,1,New South Wales,150.533239,-34.479655 +2023,9,25,1,New South Wales,153.27253,-28.931499 +2020,10,9,1,New South Wales,150.640647,-33.428491 +2023,11,30,1,New South Wales,152.41587,-31.937591 +2024,1,7,1,New South Wales,152.378678,-31.929292 +2021,5,10,1,New South Wales,150.605006,-34.427009 +2021,5,31,1,New South Wales,150.638491,-34.491283 +2020,11,16,1,New South Wales,153.316981,-28.949626 +2021,8,4,1,New South Wales,150.517505,-34.446323 +2021,5,30,1,New South Wales,150.517317,-34.446409 +2021,4,25,1,New South Wales,150.608396,-34.454248 +2021,6,1,1,New South Wales,150.630268,-34.420866 +2024,5,22,1,New South Wales,150.8973,-33.982033 +2021,4,14,1,New South Wales,150.040415,-33.75577 +2023,9,10,1,New South Wales,150.785333,-33.715628 +2021,12,13,1,New South Wales,150.615879,-34.439871 +2022,8,25,1,New South Wales,151.722038,-30.404143 +2020,10,18,1,New South Wales,149.887989,-36.587028 +2021,5,11,1,New South Wales,150.517619,-34.447614 +2021,6,18,1,New South Wales,150.604295,-34.438959 +2020,10,29,1,New South Wales,149.984095,-36.575978 +2022,4,30,1,New South Wales,153.108076,-29.490208 +2020,9,9,1,New South Wales,150.00819,-31.12411 +2021,1,28,1,New South Wales,153.607904,-28.686299 +2021,8,13,1,New South Wales,150.60089,-34.42866 +2023,10,24,1,New South Wales,153.110544,-29.490124 +2022,2,10,1,New South Wales,152.084204,-32.739839 +2022,9,16,1,New South Wales,153.303468,-28.817396 +2021,7,19,1,New South Wales,150.628123,-34.420563 +2023,9,28,1,New South Wales,153.395419,-28.959344 +2020,11,7,1,New South Wales,150.021287,-36.554124 +2021,6,21,1,New South Wales,150.622894,-34.383922 +2021,7,24,1,New South Wales,153.322496,-28.825978 +2023,8,31,1,New South Wales,153.398949,-28.839339 +2022,9,,1,New South Wales,150.595561,-34.514 +2021,5,26,1,New South Wales,150.619815,-34.439217 +2023,8,11,1,New South Wales,151.689383,-32.687204 +2021,4,29,1,New South Wales,150.63536,-34.419712 +2022,2,9,1,New South Wales,152.92932,-29.735127 +2021,5,4,1,New South Wales,150.607359,-34.457798 +2020,2,11,1,New South Wales,153.611289,-28.674533 +2021,5,8,1,New South Wales,150.520476,-34.468011 +2020,11,4,1,New South Wales,149.943147,-36.549371 +2022,11,20,1,New South Wales,152.794945,-30.901933 +2024,3,2,1,New South Wales,150.792974,-34.198469 +2020,1,9,1,New South Wales,151.82212,-32.50942 +2020,1,6,1,New South Wales,152.883981,-31.44028 +2020,8,17,1,New South Wales,153.089837,-29.480644 +2020,3,29,1,New South Wales,150.057881,-33.773306 +2023,1,7,1,New South Wales,152.908472,-31.438559 +2023,9,20,1,New South Wales,153.277528,-28.939564 +2020,10,28,1,New South Wales,151.437207,-32.819711 +2023,9,4,1,New South Wales,150.652498,-34.206821 +2022,8,4,1,New South Wales,153.104155,-29.478847 +2023,9,9,1,New South Wales,153.109256,-29.490871 +2023,12,2,1,New South Wales,152.398902,-31.965647 +2024,1,13,1,New South Wales,152.918537,-31.474461 +2021,12,6,1,New South Wales,153.557034,-28.397415 +2021,5,12,1,New South Wales,150.524302,-34.466736 +2022,7,22,1,New South Wales,152.908825,-31.467006 +2020,10,30,1,New South Wales,149.968131,-36.578885 +2023,1,21,1,New South Wales,153.299324,-28.888717 +2021,4,7,1,New South Wales,150.664052,-34.458264 +2021,8,19,1,New South Wales,150.517009,-34.435855 +2020,,,1,New South Wales,153.260809,-28.872249 +2021,4,23,1,New South Wales,150.637867,-34.485609 +2020,11,3,1,New South Wales,149.968131,-36.578885 +2020,12,25,1,New South Wales,152.415508,-31.933093 +2020,10,17,1,New South Wales,151.780333,-32.714185 +2022,8,19,1,New South Wales,150.533272,-34.509597 +2021,8,13,1,New South Wales,153.436019,-28.885863 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2020,10,12,1,New South Wales,149.887989,-36.587028 +2021,6,10,1,New South Wales,153.562022,-28.383321 +2022,10,5,1,New South Wales,153.208025,-28.827843 +2020,8,5,1,New South Wales,152.923476,-31.464075 +2021,7,16,1,New South Wales,150.522372,-34.46575 +2023,4,22,1,New South Wales,152.921736,-31.479919 +2024,3,22,1,New South Wales,152.372502,-31.924451 +2023,3,7,1,New South Wales,153.314681,-28.850904 +2021,3,7,1,New South Wales,150.603481,-34.435454 +2023,7,8,1,New South Wales,150.785902,-33.709203 +2022,5,28,1,New South Wales,152.962076,-31.210203 +2022,6,14,1,New South Wales,152.529336,-32.033006 +2021,5,22,1,New South Wales,150.515548,-34.451034 +2024,1,19,1,New South Wales,152.924479,-31.471134 +2021,4,30,1,New South Wales,150.603978,-34.427188 +2023,7,12,1,New South Wales,153.318036,-28.827209 +2020,12,29,1,New South Wales,152.404167,-31.945815 +2022,11,28,1,New South Wales,153.352564,-28.883003 +2023,6,29,1,New South Wales,152.934926,-30.382351 +2022,12,12,1,New South Wales,152.077095,-32.725433 +2021,3,16,1,New South Wales,150.534634,-34.462212 +2021,6,4,1,New South Wales,150.519513,-34.455334 +2022,11,29,1,New South Wales,152.769456,-30.916275 +2020,12,18,1,New South Wales,153.108231,-29.490222 +2023,12,17,1,New South Wales,153.043825,-30.240612 +2023,2,24,1,New South Wales,152.063481,-32.706026 +2024,9,26,1,New South Wales,152.110571,-32.776498 +2020,9,24,1,New South Wales,152.898271,-31.443569 +2020,,,1,New South Wales,153.409056,-28.966716 +2021,10,3,1,New South Wales,152.133996,-30.090977 +2020,11,26,1,New South Wales,149.965237,-36.459771 +2020,9,2,1,New South Wales,153.104066,-29.484362 +2020,2,3,1,New South Wales,152.56322,-31.96151 +2023,9,25,1,New South Wales,153.565849,-28.387262 +2022,6,17,1,New South Wales,153.103237,-29.486715 +2021,5,26,1,New South Wales,150.619811,-34.439388 +2020,1,1,1,New South Wales,152.174569,-32.663575 +2020,10,19,1,New South Wales,153.303174,-28.827996 +2020,7,12,1,New South Wales,152.922191,-31.462006 +2023,6,8,1,New South Wales,153.109267,-29.490857 +2022,2,13,1,New South Wales,152.916477,-31.444782 +2021,5,15,1,New South Wales,150.629059,-34.395104 +2024,8,22,1,New South Wales,152.809365,-31.668887 +2021,5,26,1,New South Wales,150.63083,-34.420634 +2023,8,29,1,New South Wales,153.409804,-28.330362 +2021,5,13,1,New South Wales,150.525328,-34.464052 +2020,9,15,1,New South Wales,153.003613,-29.184232 +2022,5,12,1,New South Wales,151.776189,-32.574698 +2020,5,16,1,New South Wales,149.307606,-36.127793 +2023,12,11,1,New South Wales,152.90777,-31.470617 +2021,6,14,1,New South Wales,150.604396,-34.438068 +2024,7,12,1,New South Wales,152.070405,-31.72525 +2020,2,2,1,New South Wales,152.56322,-31.96151 +2021,7,13,1,New South Wales,150.627217,-34.420681 +2022,9,23,1,New South Wales,152.466547,-32.020247 +2021,4,6,1,New South Wales,150.606812,-34.429677 +2023,1,12,1,New South Wales,152.819043,-31.161712 +2021,6,15,1,New South Wales,150.630861,-34.420688 +2023,9,12,1,New South Wales,152.977836,-28.621112 +2021,6,12,1,New South Wales,150.644424,-34.396365 +2020,4,19,1,New South Wales,153.377137,-28.873182 +2020,7,8,1,New South Wales,151.706798,-32.671492 +2021,10,17,1,New South Wales,153.410861,-28.660666 +2021,6,18,1,New South Wales,150.521144,-34.465662 +2022,6,25,1,New South Wales,151.923198,-32.779394 +2023,7,31,1,New South Wales,153.108135,-29.490586 +2020,9,1,1,New South Wales,153.306909,-28.74018 +2021,5,4,1,New South Wales,150.632751,-34.418877 +2022,6,9,1,New South Wales,153.337491,-28.872387 +2021,6,12,1,New South Wales,150.521915,-34.459106 +2021,8,26,1,New South Wales,153.238101,-28.580227 +2020,5,20,1,New South Wales,152.173215,-31.724545 +2021,1,30,1,New South Wales,153.498072,-28.652831 +2021,11,14,1,New South Wales,152.867422,-31.476833 +2021,2,19,1,New South Wales,153.558418,-28.369256 +2021,6,20,1,New South Wales,150.603729,-34.439335 +2021,5,19,1,New South Wales,150.514936,-34.444882 +2020,10,19,1,New South Wales,153.277395,-28.679675 +2024,8,1,1,New South Wales,152.06478,-32.70125 +2021,5,18,1,New South Wales,150.51648,-34.450062 +2022,4,6,1,New South Wales,152.92772,-31.465217 +2021,8,25,1,New South Wales,152.058972,-32.738424 +2023,8,1,1,New South Wales,153.289662,-28.865871 +2021,5,4,1,New South Wales,150.615839,-34.4363 +2020,11,9,1,New South Wales,150.016902,-36.541583 +2021,5,26,1,New South Wales,150.639054,-34.491763 +2021,9,23,1,New South Wales,152.897996,-31.429608 +2020,9,28,1,New South Wales,153.510417,-28.580017 +2020,12,1,1,New South Wales,153.402012,-28.955103 +2020,9,26,1,New South Wales,153.281771,-28.82399 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2020,4,20,1,New South Wales,152.441841,-28.4721 +2021,9,15,1,New South Wales,153.609367,-28.662723 +2021,6,2,1,New South Wales,150.624407,-34.388089 +2024,2,16,1,New South Wales,153.102015,-29.489332 +2020,7,7,1,New South Wales,152.802526,-30.214308 +2022,4,19,1,New South Wales,150.24024,-30.990422 +2020,1,17,1,New South Wales,152.723608,-31.247912 +2021,6,27,1,New South Wales,150.627269,-34.420366 +2021,4,21,1,New South Wales,150.522663,-34.465828 +2020,11,4,1,New South Wales,153.334493,-28.813462 +2022,10,24,1,New South Wales,152.828692,-31.649886 +2020,8,18,1,New South Wales,153.092506,-28.602098 +2023,9,21,1,New South Wales,152.604999,-30.341289 +2020,4,15,1,New South Wales,151.892485,-32.479536 +2021,7,8,1,New South Wales,150.630879,-34.38881 +2020,8,16,1,New South Wales,153.477969,-28.627914 +2021,6,19,1,New South Wales,150.603759,-34.439435 +2021,4,1,1,New South Wales,150.532519,-34.481191 +2022,3,11,1,New South Wales,153.312962,-28.821282 +2020,11,3,1,New South Wales,149.992311,-36.556255 +2021,4,1,1,New South Wales,150.66177,-34.458518 +2023,11,13,1,New South Wales,152.908621,-31.454671 +2021,6,13,1,New South Wales,150.630237,-34.420433 +2021,3,28,1,New South Wales,150.615691,-34.434241 +2021,5,23,1,New South Wales,150.518389,-34.451371 +2023,12,11,1,New South Wales,152.786779,-31.629236 +2020,7,1,1,New South Wales,151.178816,-32.569474 +2022,9,19,1,New South Wales,153.278851,-28.87422 +2022,4,30,1,New South Wales,153.110576,-29.489746 +2021,5,31,1,New South Wales,150.60452,-34.424602 +2021,7,2,1,New South Wales,150.512928,-34.447258 +2024,1,9,1,New South Wales,152.06373,-32.706598 +2022,3,30,1,New South Wales,153.061861,-28.691744 +2021,6,13,1,New South Wales,150.604371,-34.43896 +2020,12,4,1,New South Wales,152.906957,-31.449666 +2022,4,22,1,New South Wales,152.373836,-31.914365 +2023,3,19,1,New South Wales,152.063534,-32.705503 +2023,10,21,1,New South Wales,152.9012,-31.4318 +2021,5,31,1,New South Wales,150.630901,-34.388801 +2021,5,7,1,New South Wales,150.632833,-34.418653 +2021,11,7,1,New South Wales,153.561414,-28.393378 +2021,6,28,1,New South Wales,150.789143,-34.142259 +2020,11,27,1,New South Wales,149.965237,-36.459771 +2021,6,17,1,New South Wales,150.618121,-34.435271 +2021,11,12,1,New South Wales,153.315583,-28.825211 +2022,8,16,1,New South Wales,151.765361,-32.698012 +2023,6,26,1,New South Wales,153.32569,-28.824673 +2022,3,12,1,New South Wales,152.063599,-32.706385 +2023,8,21,1,New South Wales,150.784017,-33.71767 +2021,5,23,1,New South Wales,150.63817,-34.392521 +2023,2,2,1,New South Wales,152.372097,-31.920908 +2022,8,31,1,New South Wales,152.783266,-31.630003 +2021,7,12,1,New South Wales,150.626511,-34.421028 +2021,9,7,1,New South Wales,150.517609,-34.446118 +2021,5,2,1,New South Wales,150.625453,-34.38994 +2021,6,27,1,New South Wales,150.630982,-34.388235 +2021,11,29,1,New South Wales,152.063531,-32.706509 +2023,5,25,1,New South Wales,153.600875,-28.819443 +2022,4,15,1,New South Wales,153.101724,-29.489106 +2020,10,24,1,New South Wales,149.934245,-36.578531 +2021,7,31,1,New South Wales,150.651063,-34.400505 +2021,6,21,1,New South Wales,150.512999,-34.445979 +2021,5,25,1,New South Wales,150.516523,-34.450071 +2022,5,1,1,New South Wales,153.119529,-29.489349 +2021,5,2,1,New South Wales,150.625453,-34.38994 +2023,7,21,1,New South Wales,152.971426,-30.642352 +2023,10,17,1,New South Wales,152.924691,-31.439956 +2021,9,4,1,New South Wales,153.435953,-28.869026 +2021,7,21,1,New South Wales,150.514629,-34.444588 +2020,8,26,1,New South Wales,153.103817,-29.485744 +2023,7,9,1,New South Wales,152.79338,-31.642558 +2021,11,16,1,New South Wales,153.561989,-28.383579 +2021,8,5,1,New South Wales,153.60155,-28.68121 +2021,4,6,1,New South Wales,150.606812,-34.429677 +2020,2,12,1,New South Wales,153.288462,-28.824458 +2021,4,25,1,New South Wales,150.609466,-34.419019 +2022,3,27,1,New South Wales,149.557445,-33.494664 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2022,2,13,1,New South Wales,153.561373,-28.331098 +2022,11,20,1,New South Wales,152.769456,-30.916275 +2021,5,9,1,New South Wales,150.628156,-34.38974 +2020,11,5,1,New South Wales,149.934245,-36.578531 +2021,7,28,1,New South Wales,153.536587,-28.680566 +2022,11,28,1,New South Wales,152.769456,-30.916275 +2024,5,22,1,New South Wales,152.378929,-31.919799 +2021,6,10,1,New South Wales,150.605739,-34.437554 +2021,5,1,1,New South Wales,150.517714,-34.441459 +2020,2,16,1,New South Wales,153.37553,-29.000055 +2023,10,12,1,New South Wales,153.428401,-28.62709 +2022,2,6,1,New South Wales,153.303633,-28.817616 +2023,11,8,1,New South Wales,151.074088,-33.148599 +2020,7,30,1,New South Wales,152.809947,-31.125883 +2021,7,10,1,New South Wales,150.60181,-34.412441 +2020,10,16,1,New South Wales,153.272904,-28.928842 +2021,7,15,1,New South Wales,150.522479,-34.465816 +2021,6,22,1,New South Wales,150.51442,-34.445773 +2021,10,28,1,New South Wales,152.396884,-31.902418 +2023,12,14,1,New South Wales,149.56022,-33.691925 +2024,5,17,1,New South Wales,152.913511,-31.473286 +2020,10,20,1,New South Wales,150.691115,-33.129661 +2020,11,10,1,New South Wales,152.873554,-31.457697 +2020,5,,1,New South Wales,152.011509,-32.726984 +2021,6,8,1,New South Wales,150.629726,-34.42082 +2021,6,15,1,New South Wales,150.603757,-34.436848 +2020,5,31,1,New South Wales,150.899707,-33.999119 +2021,6,25,1,New South Wales,150.641382,-33.431129 +2021,6,15,1,New South Wales,150.612164,-34.432009 +2023,11,8,1,New South Wales,152.792607,-31.640827 +2021,5,23,1,New South Wales,150.630971,-34.388253 +2021,3,4,1,New South Wales,150.609924,-34.43274 +2020,10,23,1,New South Wales,149.934245,-36.578531 +2021,5,4,1,New South Wales,150.615749,-34.436054 +2021,7,13,1,New South Wales,150.626997,-34.420758 +2021,5,6,1,New South Wales,150.603958,-34.427115 +2021,4,19,1,New South Wales,150.516095,-34.449477 +2020,6,17,1,New South Wales,152.923886,-31.444286 +2021,1,22,1,New South Wales,153.362191,-28.649451 +2021,5,5,1,New South Wales,150.637389,-34.423763 +2021,5,12,1,New South Wales,150.640081,-34.492801 +2020,3,26,1,New South Wales,150.045814,-33.764796 +2021,5,3,1,New South Wales,150.605296,-34.426357 +2023,8,5,1,New South Wales,151.245715,-33.171595 +2021,5,30,1,New South Wales,150.638748,-34.491405 +2021,6,1,1,New South Wales,150.638381,-34.491299 +2021,4,24,1,New South Wales,150.51465,-34.444615 +2021,6,13,1,New South Wales,150.642915,-34.394713 +2020,10,11,1,New South Wales,149.986384,-36.655712 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2023,9,29,1,New South Wales,150.640251,-33.541888 +2021,6,6,1,New South Wales,150.534762,-34.45933 +2021,4,27,1,New South Wales,152.355785,-31.85809 +2021,6,7,1,New South Wales,150.630109,-34.420728 +2020,9,30,1,New South Wales,153.103902,-29.485548 +2022,4,20,1,New South Wales,151.699262,-32.691489 +2023,9,30,1,New South Wales,153.22866,-28.890701 +2021,4,22,1,New South Wales,150.60496,-34.423267 +2020,12,8,1,New South Wales,152.901458,-31.442526 +2024,1,19,1,New South Wales,152.898595,-31.474334 +2021,12,21,1,New South Wales,152.91598,-31.480897 +2021,6,12,1,New South Wales,153.402665,-28.960617 +2021,7,29,1,New South Wales,150.640626,-34.397626 +2021,12,11,1,New South Wales,152.895305,-31.445707 +2020,2,1,1,New South Wales,153.103642,-29.48583 +2022,5,19,1,New South Wales,152.501842,-32.373539 +2024,2,9,1,New South Wales,153.10504,-29.489694 +2023,8,8,1,New South Wales,153.095866,-29.484544 +2021,8,26,1,New South Wales,150.641688,-34.394663 +2021,5,8,1,New South Wales,150.60515,-34.437984 +2021,5,30,1,New South Wales,150.527173,-34.469418 +2020,6,15,1,New South Wales,152.773803,-30.202024 +2023,10,10,1,New South Wales,152.403889,-31.927822 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2023,6,29,1,New South Wales,152.19419,-32.212387 +2022,8,17,1,New South Wales,150.885703,-34.016682 +2021,12,14,1,New South Wales,153.549457,-28.588934 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2021,5,16,1,New South Wales,150.637334,-34.42378 +2024,5,15,1,New South Wales,152.187404,-31.952836 +2024,1,22,1,New South Wales,151.709065,-32.633094 +2020,4,21,1,New South Wales,153.103854,-29.485468 +2021,5,29,1,New South Wales,150.518232,-34.4519 +2020,3,26,1,New South Wales,152.925149,-31.459057 +2021,4,14,1,New South Wales,150.062574,-33.7756 +2021,9,8,1,New South Wales,150.644276,-34.396606 +2023,12,28,1,New South Wales,150.979631,-34.095597 +2022,3,8,1,New South Wales,152.063364,-32.706283 +2020,1,10,1,New South Wales,152.819043,-31.161712 +2021,6,15,1,New South Wales,150.630343,-34.420913 +2021,5,20,1,New South Wales,150.515278,-34.450966 +2024,2,15,1,New South Wales,152.879613,-31.453309 +2023,8,20,1,New South Wales,153.608593,-28.688273 +2020,3,24,1,New South Wales,149.526899,-33.667782 +2021,5,6,1,New South Wales,150.603791,-34.427274 +2020,6,19,1,New South Wales,151.281077,-33.127471 +2021,5,5,1,New South Wales,150.520666,-34.436218 +2021,3,14,1,New South Wales,150.813985,-34.127738 +2021,7,8,1,New South Wales,150.630543,-34.388767 +2022,1,4,1,New South Wales,152.907653,-31.455989 +2021,8,31,1,New South Wales,150.643874,-34.393488 +2020,11,9,1,New South Wales,149.995573,-36.572611 +2022,4,15,1,New South Wales,153.110511,-29.490222 +2021,5,6,1,New South Wales,150.603791,-34.427274 +2021,7,1,1,New South Wales,150.605549,-34.432393 +2021,5,2,1,New South Wales,150.604831,-34.427024 +2020,1,1,1,New South Wales,152.914032,-31.480308 +2021,6,18,1,New South Wales,150.627579,-34.42094 +2020,11,9,1,New South Wales,149.995573,-36.572611 +2021,10,20,1,New South Wales,152.404167,-31.945815 +2021,5,25,1,New South Wales,150.51648,-34.450062 +2024,3,17,1,New South Wales,152.077694,-32.723503 +2023,11,13,1,New South Wales,152.925788,-31.47137 +2021,6,16,1,New South Wales,152.355785,-31.85809 +2020,10,8,1,New South Wales,149.941793,-36.651646 +2021,5,8,1,New South Wales,150.616062,-34.435348 +2020,11,9,1,New South Wales,152.355785,-31.85809 +2021,6,3,1,New South Wales,150.630002,-34.421041 +2022,2,11,1,New South Wales,152.89159,-31.450291 +2021,4,18,1,New South Wales,150.522924,-34.452599 +2020,10,31,1,New South Wales,153.103918,-29.489503 +2020,12,4,1,New South Wales,152.693612,-31.234745 +2021,5,12,1,New South Wales,150.519109,-34.43661 +2020,12,27,1,New South Wales,152.039612,-32.737851 +2020,8,21,1,New South Wales,153.276362,-28.932217 +2021,6,12,1,New South Wales,150.630086,-34.420764 +2023,6,29,1,New South Wales,152.78408,-31.633444 +2021,6,15,1,New South Wales,150.516141,-34.459286 +2021,8,31,1,New South Wales,150.603359,-34.445828 +2020,10,10,1,New South Wales,149.941793,-36.651646 +2021,5,26,1,New South Wales,150.602505,-34.436111 +2020,9,28,1,New South Wales,150.82296,-34.150074 +2023,8,2,1,New South Wales,153.103881,-29.489577 +2022,2,12,1,New South Wales,152.067915,-32.707654 +2022,5,5,1,New South Wales,152.914944,-31.44496 +2021,7,1,1,New South Wales,150.639659,-34.397977 +2023,3,12,1,New South Wales,152.063492,-32.705827 +2021,6,13,1,New South Wales,150.612185,-34.432415 +2021,11,3,1,New South Wales,152.823771,-29.810892 +2021,6,4,1,New South Wales,150.520008,-34.438945 +2021,4,22,1,New South Wales,150.609156,-34.418805 +2021,12,28,1,New South Wales,150.616607,-34.441075 +2021,12,11,1,New South Wales,150.808608,-34.098235 +2021,8,22,1,New South Wales,153.108167,-29.4906 +2020,6,28,1,New South Wales,153.095559,-29.485105 +2021,6,21,1,New South Wales,150.519908,-34.452655 +2022,2,22,1,New South Wales,153.289542,-28.676152 +2020,8,13,1,New South Wales,152.824852,-29.50573 +2021,11,16,1,New South Wales,152.8249,-29.810388 +2020,11,25,1,New South Wales,153.287996,-28.836062 +2021,8,3,1,New South Wales,153.280421,-28.806664 +2023,12,14,1,New South Wales,153.433264,-28.958481 +2021,5,25,1,New South Wales,150.638987,-34.491815 +2024,3,25,1,New South Wales,150.862976,-29.609964 +2021,5,9,1,New South Wales,150.609203,-34.420591 +2021,7,17,1,New South Wales,150.515828,-34.446713 +2021,5,27,1,New South Wales,150.51712,-34.453807 +2021,6,22,1,New South Wales,150.60251,-34.419928 +2021,7,30,1,New South Wales,149.351047,-36.153498 +2023,7,25,1,New South Wales,152.06373,-32.706589 +2021,7,22,1,New South Wales,150.516758,-34.44876 +2023,1,23,1,New South Wales,152.926072,-31.458849 +2020,11,16,1,New South Wales,149.957744,-36.497148 +2022,12,15,1,New South Wales,152.778774,-31.640651 +2021,10,7,1,New South Wales,153.56215,-28.383603 +2024,1,28,1,New South Wales,150.785312,-33.711735 +2020,11,14,1,New South Wales,150.004563,-36.508695 +2022,9,23,1,New South Wales,152.885466,-31.444068 +2023,6,9,1,New South Wales,150.793442,-34.140294 +2023,12,18,1,New South Wales,152.077777,-32.720929 +2020,9,14,1,New South Wales,152.130128,-30.094961 +2020,10,10,1,New South Wales,149.941793,-36.651646 +2021,5,6,1,New South Wales,150.637334,-34.42378 +2021,6,6,1,New South Wales,150.640581,-34.397283 +2021,7,15,1,New South Wales,150.62697,-34.420956 +2021,3,19,1,New South Wales,150.659566,-34.458331 +2023,10,6,1,New South Wales,150.78465,-33.708 +2023,10,15,1,New South Wales,152.911934,-31.465554 +2021,5,21,1,New South Wales,150.632996,-34.419432 +2020,11,1,1,New South Wales,149.943147,-36.549371 +2023,2,28,1,New South Wales,153.496872,-28.694936 +2020,1,6,1,New South Wales,152.921051,-31.463833 +2020,1,13,1,New South Wales,152.175427,-32.661444 +2020,1,20,1,New South Wales,153.555503,-28.387761 +2020,4,20,1,New South Wales,152.83529,-31.533488 +2020,12,2,1,New South Wales,152.86819,-29.66721 +2020,8,5,1,New South Wales,152.870255,-31.465057 +2021,4,17,1,New South Wales,150.629856,-34.394244 +2021,10,30,1,New South Wales,153.399429,-28.615874 +2021,5,4,1,New South Wales,150.608142,-34.456686 +2023,3,24,1,New South Wales,153.104079,-29.485174 +2021,4,28,1,New South Wales,150.636097,-34.421745 +2021,4,14,1,New South Wales,150.635848,-34.394631 +2022,10,25,1,New South Wales,152.917748,-31.457821 +2021,5,6,1,New South Wales,150.520025,-34.435817 +2021,6,10,1,New South Wales,150.605806,-34.437492 +2022,8,17,1,New South Wales,153.167614,-29.432852 +2021,10,31,1,New South Wales,153.077049,-29.450991 +2020,6,25,1,New South Wales,153.03081,-28.84987 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2022,11,17,1,New South Wales,152.794854,-30.893434 +2021,12,9,1,New South Wales,150.61671,-34.438985 +2022,11,28,1,New South Wales,152.794854,-30.893434 +2021,6,14,1,New South Wales,150.611998,-34.432123 +2021,4,28,1,New South Wales,150.610293,-34.419008 +2021,6,2,1,New South Wales,150.604783,-34.427194 +2023,4,3,1,New South Wales,149.337997,-31.578855 +2021,4,14,1,New South Wales,150.052241,-33.766537 +2024,8,7,1,New South Wales,152.386918,-31.947618 +2022,1,13,1,New South Wales,150.616521,-34.439901 +2020,3,13,1,New South Wales,152.916175,-31.485816 +2021,6,8,1,New South Wales,149.958366,-29.321941 +2021,9,26,1,New South Wales,150.846997,-34.051962 +2020,10,18,1,New South Wales,153.515757,-28.685659 +2021,6,11,1,New South Wales,150.518207,-34.453495 +2021,7,7,1,New South Wales,150.631148,-34.387355 +2021,6,3,1,New South Wales,150.624481,-34.388163 +2021,6,13,1,New South Wales,150.630153,-34.420323 +2023,12,25,1,New South Wales,153.103902,-29.489507 +2021,5,3,1,New South Wales,150.607671,-34.436573 +2021,12,9,1,New South Wales,151.657688,-32.689158 +2021,4,25,1,New South Wales,150.609379,-34.418999 +2021,7,27,1,New South Wales,153.110281,-29.488377 +2021,5,24,1,New South Wales,150.521641,-34.465799 +2023,11,16,1,New South Wales,153.109669,-29.492804 +2020,11,20,1,New South Wales,153.091763,-29.487901 +2023,1,31,1,New South Wales,152.064599,-32.709086 +2020,9,25,1,New South Wales,152.758981,-31.246497 +2021,5,27,1,New South Wales,150.517136,-34.453618 +2021,4,26,1,New South Wales,150.635464,-34.419867 +2021,4,23,1,New South Wales,150.609319,-34.419214 +2021,6,11,1,New South Wales,150.521655,-34.465339 +2021,8,5,1,New South Wales,150.632614,-34.418315 +2021,4,9,1,New South Wales,150.609313,-34.420557 +2023,9,26,1,New South Wales,153.095384,-29.484025 +2024,1,20,1,New South Wales,152.863798,-31.5351 +2021,6,4,1,New South Wales,150.630389,-34.420842 +2021,7,15,1,New South Wales,153.392856,-28.959199 +2022,8,24,1,New South Wales,151.640641,-30.330867 +2024,3,13,1,New South Wales,150.785146,-33.712583 +2021,4,26,1,New South Wales,150.625035,-34.388174 +2021,5,19,1,New South Wales,150.519791,-34.452923 +2022,12,28,1,New South Wales,151.855343,-32.611534 +2022,5,6,1,New South Wales,152.912557,-31.452162 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2021,4,20,1,New South Wales,150.610333,-34.419126 +2021,5,12,1,New South Wales,150.517238,-34.447607 +2021,11,15,1,New South Wales,153.279948,-28.831062 +2022,6,27,1,New South Wales,152.9407,-30.39354 +2021,8,5,1,New South Wales,150.516696,-34.436516 +2020,4,29,1,New South Wales,151.66621,-30.50157 +2021,5,8,1,New South Wales,150.604416,-34.426727 +2022,1,5,1,New South Wales,152.920242,-31.475378 +2021,9,11,1,New South Wales,151.04178,-34.02843 +2020,2,16,1,New South Wales,151.66621,-30.50157 +2021,5,6,1,New South Wales,150.638676,-34.490881 +2021,9,19,1,New South Wales,150.519072,-34.447437 +2021,5,15,1,New South Wales,150.614796,-34.433953 +2023,8,6,1,New South Wales,151.030153,-34.033559 +2021,6,14,1,New South Wales,150.520473,-34.454127 +2021,8,23,1,New South Wales,152.069953,-32.712723 +2021,8,12,1,New South Wales,150.606749,-34.455911 +2021,6,13,1,New South Wales,150.643676,-34.395882 +2021,4,22,1,New South Wales,150.637099,-34.485414 +2021,5,9,1,New South Wales,150.521212,-34.435409 +2021,7,26,1,New South Wales,150.515776,-34.448848 +2021,3,12,1,New South Wales,150.515111,-34.445932 +2020,12,10,1,New South Wales,153.323139,-28.823823 +2024,9,8,1,New South Wales,150.990241,-34.019721 +2021,11,3,1,New South Wales,152.823968,-29.810938 +2021,7,6,1,New South Wales,150.60384,-34.44078 +2022,9,19,1,New South Wales,152.90868,-30.17362 +2024,3,31,1,New South Wales,149.467721,-33.679947 +2023,11,28,1,New South Wales,152.79369,-31.64099 +2021,5,5,1,New South Wales,150.632741,-34.418823 +2021,10,16,1,New South Wales,152.921613,-31.480341 +2022,8,1,1,New South Wales,150.795187,-34.143231 +2021,10,20,1,New South Wales,149.723822,-34.528943 +2023,6,10,1,New South Wales,153.345513,-28.821842 +2023,2,24,1,New South Wales,153.103945,-29.489587 +2023,1,10,1,New South Wales,152.084703,-32.772039 +2020,7,22,1,New South Wales,150.05965,-33.776504 +2021,12,16,1,New South Wales,153.592747,-28.660502 +2023,10,20,1,New South Wales,152.41096,-31.940063 +2020,7,29,1,New South Wales,152.725575,-29.400071 +2024,3,7,1,New South Wales,152.373609,-31.914578 +2022,6,14,1,New South Wales,150.952449,-33.978417 +2021,11,4,1,New South Wales,152.06545,-32.710536 +2021,6,15,1,New South Wales,153.52658,-28.48505 +2021,3,11,1,New South Wales,150.521389,-34.450405 +2020,7,5,1,New South Wales,153.077049,-29.450991 +2021,5,18,1,New South Wales,150.61357,-34.431919 +2021,7,7,1,New South Wales,150.521484,-34.464849 +2021,2,25,1,New South Wales,151.692859,-32.696456 +2021,4,30,1,New South Wales,150.624254,-34.388898 +2022,11,17,1,New South Wales,152.794854,-30.893434 +2021,8,25,1,New South Wales,150.828648,-34.079153 +2023,2,22,1,New South Wales,152.904889,-31.45223 +2022,11,20,1,New South Wales,152.794854,-30.893434 +2021,7,6,1,New South Wales,150.52161,-34.465374 +2021,5,27,1,New South Wales,150.631989,-34.38802 +2020,7,13,1,New South Wales,150.19405,-34.546593 +2020,11,16,1,New South Wales,153.316981,-28.949626 +2020,4,20,1,New South Wales,152.845857,-31.44268 +2021,5,14,1,New South Wales,150.523669,-34.464217 +2023,5,30,1,New South Wales,150.991996,-33.981805 +2023,8,2,1,New South Wales,152.028358,-32.191234 +2023,6,9,1,New South Wales,150.79572,-34.14609 +2021,3,25,1,New South Wales,153.103221,-29.487948 +2021,3,31,1,New South Wales,150.517197,-34.451591 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2020,9,30,1,New South Wales,151.884006,-32.738597 +2022,12,16,1,New South Wales,152.865195,-31.284119 +2021,6,2,1,New South Wales,150.624373,-34.388125 +2021,3,1,1,New South Wales,150.616059,-34.43433 +2023,11,5,1,New South Wales,153.103377,-29.489918 +2023,4,19,1,New South Wales,152.775888,-31.583494 +2020,12,15,1,New South Wales,153.104031,-29.485557 +2021,1,21,1,New South Wales,151.961159,-32.018393 +2021,7,14,1,New South Wales,150.513826,-34.446347 +2021,6,24,1,New South Wales,153.428951,-28.972711 +2022,8,24,1,New South Wales,153.107395,-29.490077 +2023,11,4,1,New South Wales,152.373699,-31.914518 +2022,12,29,1,New South Wales,152.933658,-29.681698 +2023,8,5,1,New South Wales,150.785291,-33.704553 +2021,6,28,1,New South Wales,150.59578,-34.413693 +2024,9,8,1,New South Wales,150.938952,-29.789508 +2022,10,6,1,New South Wales,152.905161,-31.439029 +2020,11,30,1,New South Wales,153.367822,-28.866277 +2022,7,30,1,New South Wales,152.911315,-31.472923 +2021,7,5,1,New South Wales,150.659876,-34.455389 +2021,12,30,1,New South Wales,151.82202,-32.352909 +2021,4,12,1,New South Wales,150.524503,-34.454029 +2021,2,6,1,New South Wales,152.8933,-31.443058 +2023,1,6,1,New South Wales,153.103382,-29.48636 +2022,10,19,1,New South Wales,153.617473,-28.659644 +2021,8,6,1,New South Wales,150.513805,-34.44632 +2023,4,16,1,New South Wales,150.838075,-34.071086 +2023,12,7,1,New South Wales,153.103436,-29.485604 +2021,3,18,1,New South Wales,153.104004,-29.484343 +2022,11,20,1,New South Wales,152.769456,-30.916275 +2021,10,25,1,New South Wales,152.922894,-31.475207 +2020,12,8,1,New South Wales,153.07149,-30.3352 +2021,5,12,1,New South Wales,150.639987,-34.49188 +2021,5,11,1,New South Wales,150.605362,-34.427115 +2020,10,29,1,New South Wales,149.958935,-36.568735 +2021,5,15,1,New South Wales,150.628767,-34.389283 +2023,2,12,1,New South Wales,153.299324,-28.888717 +2021,8,9,1,New South Wales,150.604915,-34.42753 +2021,5,29,1,New South Wales,150.617314,-34.43879 +2023,11,10,1,New South Wales,153.018597,-30.367895 +2021,7,7,1,New South Wales,150.641376,-34.395693 +2021,5,10,1,New South Wales,153.412705,-29.02485 +2023,11,10,1,New South Wales,153.018597,-30.367895 +2020,1,14,1,New South Wales,153.104079,-29.4793 +2020,5,19,1,New South Wales,152.039928,-32.730415 +2020,8,25,1,New South Wales,152.284801,-28.468062 +2021,6,29,1,New South Wales,150.513139,-34.447127 +2024,2,7,1,New South Wales,152.621538,-30.296253 +2021,9,1,1,New South Wales,152.780153,-30.191711 +2021,5,9,1,New South Wales,150.622129,-34.39789 +2020,9,25,1,New South Wales,152.822057,-31.448906 +2020,12,10,1,New South Wales,153.10372,-29.485767 +2021,5,30,1,New South Wales,150.639088,-34.491349 +2021,7,29,1,New South Wales,150.631238,-34.420047 +2021,8,26,1,New South Wales,152.856357,-31.465625 +2022,7,3,1,New South Wales,152.036297,-32.764669 +2022,4,4,1,New South Wales,152.065247,-32.710111 +2021,9,7,1,New South Wales,152.781895,-30.19323 +2020,5,,1,New South Wales,152.029143,-32.737359 +2024,1,11,1,New South Wales,152.928515,-31.459619 +2021,5,27,1,New South Wales,150.639094,-34.491493 +2022,5,11,1,New South Wales,152.061344,-32.709636 +2022,6,4,1,New South Wales,152.8278,-31.26337 +2020,10,29,1,New South Wales,150.873769,-34.035121 +2023,5,6,1,New South Wales,152.890236,-31.448028 +2023,1,6,1,New South Wales,152.101771,-32.733438 +2022,12,29,1,New South Wales,152.793417,-31.642535 +2022,9,8,1,New South Wales,152.92928,-31.456425 +2022,8,28,1,New South Wales,150.812345,-34.124693 +2024,1,11,1,New South Wales,152.063401,-32.70627 +2022,9,21,1,New South Wales,152.719371,-31.691318 +2023,9,25,1,New South Wales,153.106638,-29.489732 +2021,5,31,1,New South Wales,150.629001,-34.390243 +2022,10,29,1,New South Wales,152.9738,-28.53064 +2021,6,19,1,New South Wales,150.618897,-34.436314 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2020,10,12,1,New South Wales,149.887989,-36.587028 +2021,4,27,1,New South Wales,150.637315,-34.488168 +2020,10,17,1,New South Wales,149.887989,-36.587028 +2023,10,12,1,New South Wales,152.105345,-32.736858 +2022,10,25,1,New South Wales,150.600433,-34.522986 +2020,10,16,1,New South Wales,149.887989,-36.587028 +2024,2,27,1,New South Wales,153.110511,-29.490152 +2021,5,6,1,New South Wales,150.608751,-34.455553 +2022,11,19,1,New South Wales,152.769456,-30.916275 +2021,9,7,1,New South Wales,151.300833,-30.587777 +2020,11,,1,New South Wales,151.714357,-32.2256 +2021,5,2,1,New South Wales,150.606629,-34.455548 +2020,5,26,1,New South Wales,149.377833,-36.013252 +2024,2,2,1,New South Wales,152.921534,-31.450081 +2023,7,9,1,New South Wales,150.787065,-33.706769 +2023,5,11,1,New South Wales,152.866068,-31.305093 +2021,6,12,1,New South Wales,150.612218,-34.432424 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2021,3,5,1,New South Wales,150.519305,-34.453148 +2022,1,12,1,New South Wales,152.911279,-31.473747 +2020,6,24,1,New South Wales,152.913295,-31.48996 +2021,7,22,1,New South Wales,150.640289,-34.396457 +2022,1,5,1,New South Wales,152.00351,-32.728513 +2022,12,7,1,New South Wales,152.786549,-31.629548 +2022,10,15,1,New South Wales,153.0756,-28.555634 +2020,11,25,1,New South Wales,152.908016,-31.441579 +2021,4,21,1,New South Wales,150.604405,-34.424419 +2023,11,3,1,New South Wales,150.79959,-34.19051 +2022,8,24,1,New South Wales,152.914194,-29.590572 +2021,6,30,1,New South Wales,150.644245,-34.394207 +2021,7,29,1,New South Wales,150.626785,-34.384737 +2023,11,19,1,New South Wales,153.08864,-28.525889 +2023,11,30,1,New South Wales,150.785297,-33.717005 +2022,8,8,1,New South Wales,153.101193,-29.489956 +2020,11,8,1,New South Wales,151.638,-30.468 +2021,6,12,1,New South Wales,150.630095,-34.420448 +2020,10,18,1,New South Wales,149.887989,-36.587028 +2021,4,25,1,New South Wales,150.661708,-34.458408 +2021,10,20,1,New South Wales,150.822863,-34.127969 +2021,4,4,1,New South Wales,150.615238,-34.436414 +2021,5,30,1,New South Wales,150.631347,-34.42004 +2021,6,14,1,New South Wales,150.625348,-34.384411 +2023,9,25,1,New South Wales,152.079053,-32.737201 +2021,10,3,1,New South Wales,153.10446,-29.477497 +2020,11,14,1,New South Wales,152.359003,-31.924406 +2023,6,18,1,New South Wales,153.097572,-29.487971 +2023,6,9,1,New South Wales,150.79369,-34.14482 +2022,2,14,1,New South Wales,150.980807,-34.128146 +2020,11,19,1,New South Wales,153.298434,-28.820007 +2023,12,19,1,New South Wales,152.790445,-30.251187 +2021,6,9,1,New South Wales,150.626174,-34.386735 +2021,9,10,1,New South Wales,153.071682,-28.585441 +2021,7,25,1,New South Wales,150.516541,-34.449116 +2020,7,25,1,New South Wales,152.167168,-32.720107 +2020,1,26,1,New South Wales,153.555888,-28.399064 +2021,5,10,1,New South Wales,150.521102,-34.435425 +2021,5,6,1,New South Wales,150.608915,-34.420802 +2021,5,26,1,New South Wales,150.631521,-34.388417 +2021,6,8,1,New South Wales,150.641543,-34.395561 +2024,1,6,1,New South Wales,152.917599,-31.474412 +2021,7,20,1,New South Wales,150.516831,-34.448491 +2021,9,12,1,New South Wales,150.64075,-34.402867 +2023,6,19,1,New South Wales,153.218502,-28.824827 +2020,9,12,1,New South Wales,151.649042,-32.656556 +2021,3,15,1,New South Wales,150.607976,-34.43007 +2021,1,30,1,New South Wales,153.102813,-29.486963 +2023,10,31,1,New South Wales,152.189959,-32.223426 +2021,9,19,1,New South Wales,150.200465,-29.353932 +2022,7,30,1,New South Wales,153.561776,-28.385806 +2024,1,2,1,New South Wales,152.480093,-31.997967 +2022,2,9,1,New South Wales,152.929617,-29.734975 +2021,4,21,1,New South Wales,150.630798,-34.387041 +2021,2,18,1,New South Wales,152.908106,-31.434723 +2020,10,29,1,New South Wales,149.934245,-36.578531 +2020,1,16,1,New South Wales,152.060972,-32.710932 +2022,3,8,1,New South Wales,153.108151,-29.490161 +2020,4,15,1,New South Wales,152.6046,-30.082446 +2021,4,19,1,New South Wales,150.637476,-34.421817 +2020,8,25,1,New South Wales,152.921094,-31.479547 +2020,11,12,1,New South Wales,150.016461,-36.575848 +2021,6,13,1,New South Wales,150.630238,-34.420406 +2020,11,6,1,New South Wales,149.984303,-36.560469 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2021,7,10,1,New South Wales,150.661011,-34.455285 +2020,4,3,1,New South Wales,150.117587,-35.059619 +2020,8,9,1,New South Wales,152.896633,-31.461992 +2020,11,2,1,New South Wales,149.984303,-36.560469 +2021,6,9,1,New South Wales,150.523053,-34.46626 +2023,10,9,1,New South Wales,150.784414,-33.717982 +2021,6,5,1,New South Wales,150.518783,-34.44725 +2021,5,21,1,New South Wales,150.598861,-34.428818 +2020,10,30,1,New South Wales,149.984095,-36.575978 +2022,7,29,1,New South Wales,153.325475,-28.825055 +2023,1,11,1,New South Wales,153.510582,-28.808619 +2021,7,22,1,New South Wales,151.709135,-31.489597 +2023,4,10,1,New South Wales,153.364087,-28.68098 +2021,3,19,1,New South Wales,150.520663,-34.466861 +2021,12,31,1,New South Wales,150.615941,-34.438456 +2023,4,21,1,New South Wales,152.877785,-31.467171 +2021,6,3,1,New South Wales,153.55905,-28.33191 +2021,4,30,1,New South Wales,150.635328,-34.419666 +2020,10,26,1,New South Wales,153.364275,-28.834226 +2023,7,2,1,New South Wales,153.098066,-29.489012 +2021,3,17,1,New South Wales,153.103623,-29.488438 +2021,1,16,1,New South Wales,152.415213,-31.933254 +2020,5,3,1,New South Wales,152.74925,-29.56628 +2022,4,25,1,New South Wales,152.895739,-31.431324 +2023,6,12,1,New South Wales,151.624378,-30.416721 +2020,11,23,1,New South Wales,153.103956,-29.489545 +2022,11,19,1,New South Wales,152.769456,-30.916275 +2021,4,14,1,New South Wales,152.927896,-31.465414 +2024,4,9,1,New South Wales,150.659523,-33.526971 +2021,3,10,1,New South Wales,153.465972,-28.673632 +2023,11,4,1,New South Wales,152.385243,-31.928404 +2021,10,29,1,New South Wales,153.101719,-29.489391 +2022,9,17,1,New South Wales,153.561944,-28.38531 +2022,11,26,1,New South Wales,153.562886,-28.349043 +2020,4,24,1,New South Wales,152.913417,-31.4292 +2021,6,13,1,New South Wales,150.520692,-34.453735 +2021,10,25,1,New South Wales,152.996446,-30.413154 +2021,7,23,1,New South Wales,153.494107,-28.226932 +2021,4,25,1,New South Wales,150.625792,-34.395635 +2023,6,6,1,New South Wales,150.849548,-34.080418 +2021,3,25,1,New South Wales,150.51723,-34.451564 +2021,5,18,1,New South Wales,150.630909,-34.390064 +2023,2,8,1,New South Wales,152.026172,-32.123382 +2021,9,11,1,New South Wales,150.563856,-34.500349 +2024,7,3,1,New South Wales,152.064475,-32.706797 +2021,6,7,1,New South Wales,150.519486,-34.456604 +2022,3,5,1,New South Wales,152.359068,-31.912724 +2023,9,27,1,New South Wales,153.323456,-28.8555 +2021,5,4,1,New South Wales,150.627073,-34.389557 +2021,10,6,1,New South Wales,153.101188,-29.489881 +2023,2,22,1,New South Wales,152.928637,-31.459523 +2024,1,21,1,New South Wales,153.073313,-30.888204 +2021,6,25,1,New South Wales,150.62739,-34.420306 +2021,1,,1,New South Wales,149.539442,-32.891945 +2021,7,10,1,New South Wales,150.520979,-34.464271 +2022,11,28,1,New South Wales,152.769456,-30.916275 +2023,11,17,1,New South Wales,152.889196,-30.608559 +2020,10,26,1,New South Wales,153.364275,-28.834226 +2021,7,2,1,New South Wales,150.597751,-34.412857 +2021,8,5,1,New South Wales,150.632646,-34.418343 +2021,2,11,1,New South Wales,153.561829,-28.391217 +2021,6,17,1,New South Wales,150.604295,-34.43895 +2021,6,17,1,New South Wales,150.603651,-34.42646 +2020,1,8,1,New South Wales,153.31413,-28.85164 +2020,10,18,1,New South Wales,149.956941,-36.59482 +2020,11,6,1,New South Wales,150.010499,-36.556654 +2020,8,4,1,New South Wales,153.118509,-28.717485 +2020,10,15,1,New South Wales,149.956941,-36.59482 +2023,2,19,1,New South Wales,153.302055,-28.847839 +2022,12,21,1,New South Wales,150.988759,-33.978324 +2023,11,30,1,New South Wales,150.924176,-29.795667 +2024,1,15,1,New South Wales,152.949789,-31.171211 +2021,5,28,1,New South Wales,150.641385,-34.39344 +2020,7,26,1,New South Wales,153.422407,-28.874361 +2022,9,22,1,New South Wales,153.316405,-28.866354 +2021,12,31,1,New South Wales,150.618424,-34.439938 +2021,5,26,1,New South Wales,150.598041,-34.425926 +2021,10,16,1,New South Wales,153.400571,-28.257686 +2021,10,12,1,New South Wales,153.467897,-28.32819 +2021,4,20,1,New South Wales,150.606837,-34.434528 +2021,5,26,1,New South Wales,150.517253,-34.454468 +2023,6,21,1,New South Wales,153.299068,-28.889469 +2021,4,20,1,New South Wales,150.632646,-34.392883 +2024,1,15,1,New South Wales,151.057947,-29.737034 +2021,6,10,1,New South Wales,150.51761,-34.44756 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2020,6,13,1,New South Wales,150.860742,-34.069334 +2021,10,28,1,New South Wales,153.040736,-30.886881 +2020,10,2,1,New South Wales,152.908694,-31.476303 +2021,6,14,1,New South Wales,150.518451,-34.457368 +2021,5,23,1,New South Wales,152.9,-31.466435 +2023,6,7,1,New South Wales,150.882095,-34.066811 +2023,11,14,1,New South Wales,150.658781,-33.526821 +2020,7,19,1,New South Wales,153.413761,-28.26577 +2022,1,6,1,New South Wales,152.911108,-31.429599 +2021,3,18,1,New South Wales,150.51765,-34.446182 +2023,10,9,1,New South Wales,152.065178,-32.71096 +2021,4,9,1,New South Wales,150.63379,-34.489254 +2024,6,25,1,New South Wales,153.512127,-28.723421 +2021,11,27,1,New South Wales,150.060932,-36.115541 +2022,6,17,1,New South Wales,153.089215,-28.597991 +2023,12,28,1,New South Wales,152.895827,-31.473211 +2021,3,26,1,New South Wales,150.514528,-34.444694 +2021,3,7,1,New South Wales,150.520037,-34.444607 +2023,5,19,1,New South Wales,152.898387,-31.435116 +2020,8,28,1,New South Wales,151.719185,-32.639258 +2020,8,25,1,New South Wales,152.955565,-30.667309 +2021,6,20,1,New South Wales,150.622928,-34.38385 +2021,5,17,1,New South Wales,150.629777,-34.390087 +2020,12,10,1,New South Wales,153.092144,-29.488065 +2021,3,5,1,New South Wales,150.636166,-34.485703 +2023,3,2,1,New South Wales,153.100767,-29.490142 +2021,5,1,1,New South Wales,150.604765,-34.427068 +2021,6,17,1,New South Wales,150.522875,-34.450931 +2021,7,19,1,New South Wales,150.6288,-34.420865 +2023,9,13,1,New South Wales,153.296358,-28.825967 +2021,5,25,1,New South Wales,150.516434,-34.450151 +2021,7,14,1,New South Wales,153.109363,-29.490684 +2022,12,14,1,New South Wales,153.09282,-29.488363 +2021,10,11,1,New South Wales,150.567012,-34.483871 +2021,3,15,1,New South Wales,150.659793,-34.458381 +2024,2,16,1,New South Wales,150.784899,-33.712935 +2021,7,28,1,New South Wales,150.515696,-34.449712 +2021,6,29,1,New South Wales,150.643644,-34.394709 +2020,11,,1,New South Wales,150.514777,-34.456674 +2020,11,4,1,New South Wales,153.108205,-29.490586 +2021,6,19,1,New South Wales,150.519854,-34.452618 +2021,5,21,1,New South Wales,150.522251,-34.465036 +2021,6,15,1,New South Wales,150.514266,-34.446537 +2021,5,18,1,New South Wales,150.640736,-34.494283 +2021,2,22,1,New South Wales,150.515447,-34.448941 +2021,8,12,1,New South Wales,150.514569,-34.447345 +2023,11,14,1,New South Wales,150.990022,-34.029758 +2020,10,6,1,New South Wales,150.641557,-33.742033 +2021,5,1,1,New South Wales,150.604765,-34.427068 +2023,8,5,1,New South Wales,152.958955,-29.560748 +2023,12,2,1,New South Wales,150.989154,-34.02876 +2021,5,10,1,New South Wales,150.632753,-34.418029 +2020,12,,1,New South Wales,152.969665,-31.197088 +2021,8,14,1,New South Wales,150.513903,-34.447061 +2023,9,21,1,New South Wales,152.607518,-30.343733 +2020,11,16,1,New South Wales,149.957744,-36.497148 +2023,8,18,1,New South Wales,150.785219,-33.705671 +2021,6,15,1,New South Wales,150.522588,-34.451808 +2020,7,11,1,New South Wales,152.162082,-32.71238 +2021,12,1,1,New South Wales,153.293928,-28.864534 +2021,5,6,1,New South Wales,150.603623,-34.427433 +2021,5,23,1,New South Wales,150.528581,-34.470384 +2021,7,20,1,New South Wales,153.104047,-29.485146 +2023,9,12,1,New South Wales,152.81106,-31.654179 +2020,11,1,1,New South Wales,149.943147,-36.549371 +2023,9,15,1,New South Wales,152.818669,-31.649283 +2024,1,19,1,New South Wales,152.383566,-31.885699 +2020,10,26,1,New South Wales,153.364275,-28.834226 +2021,3,10,1,New South Wales,153.102711,-29.48764 +2023,5,17,1,New South Wales,152.373696,-31.914323 +2024,3,24,1,New South Wales,151.08315,-29.728634 +2021,10,29,1,New South Wales,152.996446,-30.413154 +2021,5,2,1,New South Wales,150.637467,-34.42371 +2020,9,20,1,New South Wales,150.12752,-31.10136 +2021,5,3,1,New South Wales,150.637334,-34.42378 +2021,5,17,1,New South Wales,150.63202,-34.394629 +2023,12,6,1,New South Wales,153.103876,-29.489605 +2022,12,17,1,New South Wales,152.910811,-31.431343 +2022,9,19,1,New South Wales,152.90656,-30.17504 +2022,12,14,1,New South Wales,152.909428,-31.475575 +2021,5,5,1,New South Wales,150.627086,-34.389494 +2021,12,12,1,New South Wales,152.093798,-31.403015 +2023,1,4,1,New South Wales,152.412804,-31.933272 +2021,3,21,1,New South Wales,150.517185,-34.451626 +2021,7,6,1,New South Wales,150.514324,-34.446421 +2021,5,24,1,New South Wales,150.639186,-34.39273 +2022,11,19,1,New South Wales,152.788781,-30.895519 +2021,7,4,1,New South Wales,150.603083,-34.417749 +2022,11,26,1,New South Wales,152.919099,-31.480973 +2023,11,5,1,New South Wales,152.792576,-31.641596 +2021,8,5,1,New South Wales,153.60237,-28.69032 +2022,1,17,1,New South Wales,152.083715,-32.73127 +2023,1,4,1,New South Wales,152.785405,-31.632709 +2020,1,30,1,New South Wales,153.335403,-28.87187 +2020,10,30,1,New South Wales,149.943147,-36.549371 +2021,4,28,1,New South Wales,150.637618,-34.488625 +2022,11,28,1,New South Wales,152.794854,-30.893434 +2020,10,12,1,New South Wales,149.887989,-36.587028 +2021,10,21,1,New South Wales,152.91622,-31.435971 +2022,8,21,1,New South Wales,150.801022,-34.112924 +2020,11,21,1,New South Wales,148.54409,-31.877279 +2022,4,19,1,New South Wales,153.402077,-28.260205 +2024,6,6,1,New South Wales,152.389894,-31.902771 +2021,6,19,1,New South Wales,150.622867,-34.384489 +2021,6,16,1,New South Wales,150.514345,-34.446457 +2021,6,8,1,New South Wales,150.531266,-34.457934 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2020,10,17,1,New South Wales,149.887989,-36.587028 +2020,10,11,1,New South Wales,152.00351,-32.728513 +2021,7,6,1,New South Wales,150.603468,-34.419127 +2021,4,21,1,New South Wales,150.63884,-34.419373 +2023,10,2,1,New South Wales,151.009605,-34.04509 +2021,5,27,1,New South Wales,150.639051,-34.491492 +2022,4,12,1,New South Wales,150.079785,-31.131996 +2021,10,27,1,New South Wales,153.077049,-29.450991 +2021,3,8,1,New South Wales,153.368221,-28.614583 +2020,12,1,1,New South Wales,152.087119,-32.763923 +2022,8,4,1,New South Wales,152.876892,-31.490985 +2022,1,13,1,New South Wales,150.615856,-34.439933 +2021,5,30,1,New South Wales,150.63119,-34.387428 +2020,10,28,1,New South Wales,152.957701,-30.648918 +2023,11,16,1,New South Wales,152.921265,-31.440595 +2021,6,16,1,New South Wales,150.520434,-34.465765 +2022,11,8,1,New South Wales,150.862399,-34.061874 +2021,5,30,1,New South Wales,150.527073,-34.469479 +2021,6,24,1,New South Wales,150.520279,-34.465834 +2023,9,24,1,New South Wales,152.838424,-31.594859 +2021,1,11,1,New South Wales,153.608429,-28.689794 +2024,2,5,1,New South Wales,152.299948,-31.945874 +2021,7,2,1,New South Wales,150.628079,-34.390928 +2021,10,19,1,New South Wales,152.810624,-29.807661 +2023,11,5,1,New South Wales,152.376681,-31.918591 +2024,1,14,1,New South Wales,150.787233,-33.704205 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2021,11,15,1,New South Wales,152.065456,-32.701662 +2020,10,8,1,New South Wales,152.613328,-31.231404 +2020,1,6,1,New South Wales,152.919383,-31.471416 +2021,6,12,1,New South Wales,150.519902,-34.452484 +2024,7,25,1,New South Wales,152.3105,-32.4936 +2021,7,7,1,New South Wales,150.514455,-34.446036 +2023,12,28,1,New South Wales,152.063677,-32.706607 +2021,5,12,1,New South Wales,150.656266,-34.458773 +2022,6,23,1,New South Wales,153.496998,-28.546915 +2023,1,4,1,New South Wales,153.629115,-28.637699 +2024,3,30,1,New South Wales,152.910278,-31.469568 +2021,5,19,1,New South Wales,150.617,-34.448682 +2021,5,17,1,New South Wales,150.630886,-34.39009 +2024,8,22,1,New South Wales,152.808048,-31.670899 +2021,11,15,1,New South Wales,153.205304,-28.61071 +2020,10,10,1,New South Wales,149.955028,-36.650407 +2021,3,20,1,New South Wales,153.290135,-28.832358 +2021,5,23,1,New South Wales,150.522169,-34.464863 +2022,6,23,1,New South Wales,153.296191,-28.82055 +2021,4,22,1,New South Wales,150.609266,-34.41878 +2020,1,6,1,New South Wales,153.553297,-28.713344 +2022,1,25,1,New South Wales,153.527643,-28.404354 +2021,3,31,1,New South Wales,150.616198,-34.434395 +2021,4,25,1,New South Wales,150.609379,-34.418999 +2021,5,20,1,New South Wales,150.608012,-34.433767 +2022,10,3,1,New South Wales,152.992784,-30.40912 +2023,3,1,1,New South Wales,152.451672,-31.937801 +2021,3,15,1,New South Wales,152.899175,-29.63079 +2020,8,20,1,New South Wales,152.818579,-28.464975 +2021,6,5,1,New South Wales,150.640118,-34.398662 +2022,9,19,1,New South Wales,152.9096,-30.17195 +2021,7,22,1,New South Wales,150.516476,-34.448736 +2021,7,14,1,New South Wales,150.597325,-34.41027 +2023,3,19,1,New South Wales,151.041366,-29.771693 +2020,10,11,1,New South Wales,153.015786,-29.014317 +2021,7,16,1,New South Wales,150.646608,-34.395659 +2020,10,20,1,New South Wales,153.278132,-28.831137 +2021,7,4,1,New South Wales,150.525468,-34.464839 +2022,5,1,1,New South Wales,152.919934,-31.470342 +2022,12,21,1,New South Wales,152.908105,-31.467834 +2023,6,30,1,New South Wales,152.934681,-30.376323 +2021,6,5,1,New South Wales,150.615833,-34.43501 +2021,10,16,1,New South Wales,153.108076,-29.490395 +2022,8,3,1,New South Wales,151.996728,-32.72173 +2021,6,21,1,New South Wales,150.51964,-34.461341 +2020,4,20,1,New South Wales,152.84451,-31.44267 +2021,3,,1,New South Wales,153.599218,-28.719867 +2021,2,8,1,New South Wales,153.108194,-29.490194 +2022,12,3,1,New South Wales,152.03531,-32.737212 +2020,12,9,1,New South Wales,149.960499,-36.288011 +2020,9,15,1,New South Wales,151.80501,-32.59644 +2021,9,10,1,New South Wales,151.765357,-32.698016 +2023,9,27,1,New South Wales,153.613603,-28.659011 +2020,4,20,1,New South Wales,153.102443,-29.487854 +2021,7,6,1,New South Wales,152.926758,-29.610298 +2021,6,10,1,New South Wales,150.51801,-34.447622 +2020,10,20,1,New South Wales,150.89337,-33.971509 +2020,11,10,1,New South Wales,152.73246,-31.3521 +2024,4,23,1,New South Wales,152.946426,-30.434623 +2021,7,19,1,New South Wales,150.628048,-34.420517 +2020,7,18,1,New South Wales,150.468386,-34.492522 +2021,5,22,1,New South Wales,150.630764,-34.42066 +2022,1,29,1,New South Wales,153.315572,-28.928747 +2022,12,2,1,New South Wales,153.277501,-28.939088 +2024,4,17,1,New South Wales,150.659817,-33.527032 +2020,11,18,1,New South Wales,152.817516,-31.26453 +2020,10,29,1,New South Wales,149.968131,-36.578885 +2020,10,29,1,New South Wales,151.780333,-32.714185 +2021,5,17,1,New South Wales,150.613919,-34.433062 +2021,4,20,1,New South Wales,150.636489,-34.48542 +2021,11,25,1,New South Wales,153.107287,-29.36636 +2021,5,26,1,New South Wales,150.639753,-34.393444 +2021,5,18,1,New South Wales,150.798022,-34.181472 +2021,3,24,1,New South Wales,153.109428,-29.490413 +2020,1,5,1,New South Wales,149.3242,-31.2246 +2022,11,17,1,New South Wales,152.97363,-28.531036 +2021,6,22,1,New South Wales,150.51949,-34.463465 +2021,5,28,1,New South Wales,150.630861,-34.420679 +2021,5,20,1,New South Wales,150.515395,-34.451049 +2021,11,11,1,New South Wales,153.103865,-29.485478 +2021,9,19,1,New South Wales,150.928061,-33.960643 +2022,6,29,1,New South Wales,150.608346,-33.450598 +2021,6,4,1,New South Wales,150.519481,-34.455288 +2020,11,16,1,New South Wales,149.957744,-36.497148 +2021,3,16,1,New South Wales,150.520979,-34.453948 +2021,4,6,1,New South Wales,150.606812,-34.429677 +2022,11,5,1,New South Wales,153.073011,-30.887776 +2020,5,6,1,New South Wales,150.0179,-34.91382 +2021,6,17,1,New South Wales,150.639846,-34.400226 +2021,5,9,1,New South Wales,150.521763,-34.46609 +2021,4,22,1,New South Wales,150.60496,-34.423267 +2022,12,15,1,New South Wales,152.893471,-31.446843 +2021,4,24,1,New South Wales,150.610302,-34.419062 +2021,10,16,1,New South Wales,153.571052,-28.35228 +2021,5,4,1,New South Wales,150.522892,-34.452554 +2020,,,1,New South Wales,153.247347,-28.331337 +2021,9,1,1,New South Wales,152.415506,-31.933346 +2021,7,18,1,New South Wales,153.502334,-28.631954 +2024,6,15,1,New South Wales,151.05663,-29.736541 +2023,9,6,1,New South Wales,150.784992,-33.716253 +2021,5,11,1,New South Wales,150.730478,-34.280976 +2023,11,20,1,New South Wales,152.785381,-31.632241 +2021,6,15,1,New South Wales,150.522526,-34.451699 +2021,8,19,1,New South Wales,152.873385,-31.480109 +2021,4,26,1,New South Wales,150.626302,-34.39569 +2024,2,6,1,New South Wales,150.785163,-33.707955 +2020,9,15,1,New South Wales,153.002783,-29.182518 +2020,7,14,1,New South Wales,153.283622,-28.975112 +2021,7,19,1,New South Wales,150.59787,-34.418214 +2021,7,6,1,New South Wales,150.642134,-34.396213 +2021,10,11,1,New South Wales,153.238522,-28.887087 +2023,1,28,1,New South Wales,153.202587,-28.882121 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2023,3,1,1,New South Wales,153.300285,-28.816625 +2022,1,4,1,New South Wales,150.615556,-34.437863 +2023,5,2,1,New South Wales,153.077049,-29.450991 +2020,10,28,1,New South Wales,149.999247,-36.565645 +2023,12,3,1,New South Wales,150.989341,-34.019784 +2022,1,21,1,New South Wales,150.617233,-34.440113 +2021,6,6,1,New South Wales,150.640411,-34.398289 +2021,7,15,1,New South Wales,150.978669,-34.086105 +2021,6,15,1,New South Wales,150.520436,-34.465684 +2024,6,5,1,New South Wales,150.636157,-33.530988 +2022,2,14,1,New South Wales,152.905823,-31.469733 +2024,1,31,1,New South Wales,150.871059,-34.042623 +2021,7,18,1,New South Wales,150.516263,-34.446721 +2023,3,24,1,New South Wales,149.287624,-36.056623 +2021,6,11,1,New South Wales,150.630873,-34.420662 +2020,11,16,1,New South Wales,153.296394,-28.813954 +2020,12,8,1,New South Wales,149.960499,-36.288011 +2023,9,25,1,New South Wales,153.585514,-28.861774 +2021,8,13,1,New South Wales,150.52075,-34.465366 +2022,12,15,1,New South Wales,150.836468,-34.083944 +2022,6,20,1,New South Wales,153.109696,-29.490161 +2021,5,10,1,New South Wales,150.60684,-34.438621 +2022,8,28,1,New South Wales,150.90303,-33.995725 +2021,6,3,1,New South Wales,150.522066,-34.466159 +2020,10,20,1,New South Wales,153.395276,-28.959511 +2021,6,8,1,New South Wales,150.626556,-34.387085 +2024,9,21,1,New South Wales,146.579053,-34.753602 +2020,4,27,1,New South Wales,153.301536,-28.9982 +2021,11,14,1,New South Wales,153.593712,-28.720013 +2021,5,20,1,New South Wales,150.631145,-34.38749 +2021,5,1,1,New South Wales,150.604726,-34.427301 +2021,7,1,1,New South Wales,150.627285,-34.390525 +2022,3,6,1,New South Wales,153.430595,-29.019566 +2021,2,26,1,New South Wales,153.293441,-28.864666 +2021,5,24,1,New South Wales,150.514663,-34.443074 +2020,11,17,1,New South Wales,149.957744,-36.497148 +2022,9,7,1,New South Wales,153.564281,-28.380731 +2020,11,7,1,New South Wales,152.823025,-31.560964 +2022,11,23,1,New South Wales,151.805568,-32.663236 +2022,3,5,1,New South Wales,153.297509,-28.819437 +2021,6,5,1,New South Wales,150.519044,-34.447256 +2022,5,17,1,New South Wales,152.905527,-31.436613 +2020,12,4,1,New South Wales,153.091301,-29.487733 +2020,5,18,1,New South Wales,152.136183,-31.409637 +2022,5,22,1,New South Wales,152.661161,-28.610492 +2021,4,4,1,New South Wales,150.851218,-34.070352 +2021,5,30,1,New South Wales,153.102256,-29.488303 +2023,4,13,1,New South Wales,153.103393,-29.48982 +2022,11,18,1,New South Wales,152.894504,-31.446452 +2022,1,23,1,New South Wales,151.777285,-32.586323 +2021,7,19,1,New South Wales,153.39409,-28.275602 +2020,9,12,1,New South Wales,153.103845,-29.485476 +2020,7,27,1,New South Wales,152.958,-30.6487 +2021,5,8,1,New South Wales,150.615657,-34.43544 +2020,11,2,1,New South Wales,149.984303,-36.560469 +2021,5,6,1,New South Wales,150.604035,-34.427089 +2021,6,28,1,New South Wales,150.63152,-34.388444 +2021,6,14,1,New South Wales,150.605572,-34.437289 +2021,6,8,1,New South Wales,150.641512,-34.395507 +2021,3,19,1,New South Wales,150.805509,-34.099116 +2021,6,27,1,New South Wales,150.644361,-34.391631 +2020,9,22,1,New South Wales,152.991279,-28.438359 +2020,1,16,1,New South Wales,150.73066,-31.63837 +2021,7,18,1,New South Wales,150.603426,-34.436228 +2021,5,13,1,New South Wales,150.604646,-34.438858 +2021,6,2,1,New South Wales,150.603673,-34.437477 +2023,7,16,1,New South Wales,153.097728,-29.487756 +2021,6,8,1,New South Wales,149.6371,-33.670955 +2023,7,13,1,New South Wales,153.302905,-28.822099 +2021,7,4,1,New South Wales,150.628359,-34.391006 +2021,6,15,1,New South Wales,150.630764,-34.420651 +2023,9,22,1,New South Wales,153.194827,-28.879587 +2022,10,10,1,New South Wales,150.952604,-33.974574 +2021,9,4,1,New South Wales,150.598784,-34.449777 +2020,2,3,1,New South Wales,153.104141,-29.479825 +2021,3,7,1,New South Wales,150.602977,-34.437085 +2021,12,26,1,New South Wales,150.616557,-34.437846 +2021,3,23,1,New South Wales,150.534526,-34.462192 +2021,6,27,1,New South Wales,150.630984,-34.38819 +2023,8,31,1,New South Wales,153.393973,-28.958943 +2021,1,20,1,New South Wales,153.092224,-29.48813 +2021,5,14,1,New South Wales,150.516278,-34.449156 +2024,1,24,1,New South Wales,152.925873,-31.455317 +2024,7,24,1,New South Wales,150.97736,-34.049349 +2022,6,24,1,New South Wales,153.10333,-30.3232 +2020,9,28,1,New South Wales,150.655487,-33.522609 +2021,6,17,1,New South Wales,150.618223,-34.43512 +2020,10,10,1,New South Wales,150.655487,-33.522609 +2021,3,10,1,New South Wales,150.531622,-34.460285 +2020,3,24,1,New South Wales,153.613395,-28.683843 +2023,2,25,1,New South Wales,153.099048,-29.49017 +2021,6,5,1,New South Wales,150.604793,-34.427222 +2021,5,1,1,New South Wales,150.637828,-34.488917 +2021,6,17,1,New South Wales,150.639636,-34.39996 +2021,9,10,1,New South Wales,151.834239,-30.920053 +2020,10,12,1,New South Wales,149.941793,-36.651646 +2022,10,21,1,New South Wales,148.609603,-32.251163 +2020,1,7,1,New South Wales,152.985196,-29.031727 +2023,9,28,1,New South Wales,153.307732,-28.996723 +2021,7,22,1,New South Wales,150.515974,-34.444741 +2021,4,29,1,New South Wales,150.624439,-34.388108 +2021,4,17,1,New South Wales,150.616604,-34.430058 +2021,5,29,1,New South Wales,150.640732,-34.39578 +2022,9,29,1,New South Wales,152.351876,-31.889204 +2020,10,12,1,New South Wales,151.961159,-32.018393 +2022,1,13,1,New South Wales,151.706922,-32.697245 +2021,6,3,1,New South Wales,150.522435,-34.465815 +2021,6,6,1,New South Wales,153.609248,-28.689343 +2021,6,22,1,New South Wales,150.52058,-34.453823 +2023,9,6,1,New South Wales,153.324023,-28.879696 +2021,8,12,1,New South Wales,152.063893,-32.706577 +2021,6,17,1,New South Wales,150.604174,-34.439011 +2020,11,4,1,New South Wales,152.061935,-32.709033 +2022,2,6,1,New South Wales,150.62519,-33.445172 +2021,5,22,1,New South Wales,150.630895,-34.420626 +2020,12,9,1,New South Wales,153.104256,-29.479846 +2021,5,28,1,New South Wales,152.478835,-28.309888 +2021,5,6,1,New South Wales,150.622013,-34.397744 +2021,8,22,1,New South Wales,153.077049,-29.450991 +2021,5,18,1,New South Wales,150.641062,-34.494686 +2021,5,18,1,New South Wales,150.632097,-34.394612 +2021,4,4,1,New South Wales,152.915335,-31.484169 +2020,2,29,1,New South Wales,150.611655,-34.161578 +2021,4,26,1,New South Wales,150.615963,-34.436149 +2021,8,14,1,New South Wales,150.518451,-34.437516 +2024,2,15,1,New South Wales,150.784546,-33.713259 +2023,4,22,1,New South Wales,152.923604,-31.461738 +2023,8,30,1,New South Wales,150.784508,-33.717262 +2020,12,8,1,New South Wales,149.960189,-36.280531 +2020,10,24,1,New South Wales,149.945227,-36.57753 +2021,3,21,1,New South Wales,150.659536,-34.458241 +2023,1,30,1,New South Wales,152.063194,-32.706517 +2020,1,6,1,New South Wales,153.109522,-29.490453 +2020,11,2,1,New South Wales,149.945227,-36.57753 +2021,10,11,1,New South Wales,153.524971,-28.221994 +2020,10,12,1,New South Wales,151.721529,-32.611485 +2020,11,25,1,New South Wales,153.103795,-29.485534 +2021,10,5,1,New South Wales,153.104053,-29.485169 +2020,12,28,1,New South Wales,152.415333,-31.933309 +2023,7,31,1,New South Wales,153.103838,-29.489601 +2020,11,11,1,New South Wales,152.65396,-30.554911 +2020,10,29,1,New South Wales,149.943147,-36.549371 +2021,3,1,1,New South Wales,150.603328,-34.436605 +2023,12,9,1,New South Wales,152.916126,-31.477406 +2021,8,14,1,New South Wales,150.602664,-34.431291 +2024,3,11,1,New South Wales,150.782845,-33.719261 +2022,6,4,1,New South Wales,153.103918,-29.489535 +2021,9,7,1,New South Wales,152.914605,-31.432742 +2024,1,3,1,New South Wales,151.057525,-29.739686 +2020,10,17,1,New South Wales,149.887989,-36.587028 +2024,4,23,1,New South Wales,151.781261,-32.585355 +2023,1,13,1,New South Wales,153.32305,-28.919792 +2021,10,7,1,New South Wales,153.521268,-28.656899 +2021,7,10,1,New South Wales,150.513091,-34.447279 +2020,11,16,1,New South Wales,153.11863,-28.737148 +2023,12,8,1,New South Wales,153.3939,-28.959234 +2021,4,30,1,New South Wales,150.624404,-34.387828 +2020,1,17,1,New South Wales,152.817207,-31.506494 +2020,11,27,1,New South Wales,149.965237,-36.459771 +2023,11,7,1,New South Wales,152.785517,-31.632377 +2021,5,18,1,New South Wales,150.812219,-34.12193 +2023,1,4,1,New South Wales,153.109374,-29.490437 +2021,11,27,1,New South Wales,153.389547,-28.864549 +2021,5,10,1,New South Wales,150.521093,-34.435379 +2021,5,26,1,New South Wales,150.516422,-34.449799 +2020,1,17,1,New South Wales,152.74857,-31.187336 +2020,7,10,1,New South Wales,153.104128,-29.485223 +2021,8,18,1,New South Wales,150.610379,-34.430513 +2021,4,26,1,New South Wales,150.522507,-34.451608 +2020,9,27,1,New South Wales,152.033774,-32.73771 +2022,9,9,1,New South Wales,153.107432,-29.490128 +2022,2,8,1,New South Wales,152.904535,-31.450459 +2022,11,28,1,New South Wales,152.769456,-30.916275 +2022,4,23,1,New South Wales,152.914917,-31.455547 +2021,5,22,1,New South Wales,150.515226,-34.444988 +2021,12,7,1,New South Wales,153.103902,-29.484899 +2022,10,4,1,New South Wales,152.902573,-31.442435 +2021,11,22,1,New South Wales,152.030533,-32.731152 +2021,7,18,1,New South Wales,150.59785,-34.41816 +2022,11,30,1,New South Wales,151.006125,-33.978105 +2021,3,2,1,New South Wales,150.5177,-34.446715 +2021,6,27,1,New South Wales,150.51382,-34.447276 +2020,10,26,1,New South Wales,153.360617,-28.840581 +2020,8,14,1,New South Wales,153.308552,-28.823389 +2023,3,10,1,New South Wales,152.824652,-29.506316 +2021,2,23,1,New South Wales,152.88694,-31.439442 +2021,12,28,1,New South Wales,152.082142,-32.723709 +2022,10,27,1,New South Wales,152.90519,-31.466106 +2023,2,9,1,New South Wales,152.919629,-31.469108 +2020,4,6,1,New South Wales,153.37193,-29.08315 +2020,5,2,1,New South Wales,152.921496,-31.481973 +2024,2,7,1,New South Wales,152.62159,-30.296217 +2023,2,9,1,New South Wales,151.650323,-30.423315 +2021,5,8,1,New South Wales,150.62798,-34.389818 +2020,5,27,1,New South Wales,152.445114,-31.940663 +2023,8,17,1,New South Wales,150.786891,-33.706188 +2021,5,24,1,New South Wales,150.517227,-34.452042 +2022,4,25,1,New South Wales,152.901349,-31.443021 +2021,5,14,1,New South Wales,150.62991,-34.395418 +2020,11,25,1,New South Wales,153.287996,-28.836062 +2021,5,29,1,New South Wales,150.604935,-34.437881 +2021,5,17,1,New South Wales,150.632783,-34.418896 +2021,4,27,1,New South Wales,150.601466,-34.42676 +2020,9,8,1,New South Wales,152.514736,-31.761352 +2021,1,3,1,New South Wales,152.063463,-32.705973 +2020,10,20,1,New South Wales,153.296004,-28.818579 +2020,7,8,1,New South Wales,153.555255,-28.586881 +2021,9,10,1,New South Wales,150.522978,-34.464023 +2021,2,8,1,New South Wales,153.109728,-29.490156 +2020,7,11,1,New South Wales,152.713286,-30.454678 +2020,10,20,1,New South Wales,153.296004,-28.818579 +2021,7,18,1,New South Wales,150.516222,-34.446658 +2021,10,26,1,New South Wales,149.337376,-36.183568 +2020,5,14,1,New South Wales,150.68494,-34.352816 +2021,7,20,1,New South Wales,150.63071,-34.42064 +2023,6,4,1,New South Wales,150.822861,-34.101723 +2021,6,4,1,New South Wales,150.60776,-34.436493 +2021,7,10,1,New South Wales,150.513105,-34.44718 +2021,7,12,1,New South Wales,150.512893,-34.446617 +2023,3,7,1,New South Wales,149.956571,-36.590303 +2021,5,18,1,New South Wales,150.530979,-34.471018 +2021,5,23,1,New South Wales,150.51549,-34.450781 +2020,10,13,1,New South Wales,149.938155,-36.621708 +2021,5,12,1,New South Wales,150.627914,-34.389816 +2021,4,15,1,New South Wales,150.515843,-34.448777 +2020,10,10,1,New South Wales,149.941793,-36.651646 +2020,9,5,1,New South Wales,153.044077,-28.584407 +2021,5,7,1,New South Wales,150.637279,-34.423797 +2023,10,14,1,New South Wales,152.250632,-32.086059 +2020,11,19,1,New South Wales,152.817515,-31.25983 +2022,8,14,1,New South Wales,150.542723,-34.510836 +2023,10,18,1,New South Wales,152.784287,-31.630076 +2021,10,,1,New South Wales,149.3743,-36.1895 +2021,9,27,1,New South Wales,152.82517,-31.27014 +2021,2,28,1,New South Wales,153.314983,-28.949201 +2021,3,19,1,New South Wales,153.19487,-28.882593 +2021,5,,1,New South Wales,151.826833,-32.809409 +2023,5,6,1,New South Wales,152.794547,-31.642597 +2022,8,8,1,New South Wales,150.880542,-34.012784 +2023,6,30,1,New South Wales,153.314983,-28.949201 +2020,11,1,1,New South Wales,153.509243,-28.666544 +2021,3,8,1,New South Wales,153.493595,-28.671265 +2023,2,21,1,New South Wales,152.063502,-32.705971 +2022,9,28,1,New South Wales,153.193722,-29.42512 +2021,5,26,1,New South Wales,150.631545,-34.388345 +2023,7,28,1,New South Wales,152.943768,-31.171199 +2023,6,8,1,New South Wales,153.103736,-29.485585 +2021,9,2,1,New South Wales,152.899584,-31.449881 +2022,11,18,1,New South Wales,153.324544,-28.825256 +2021,5,26,1,New South Wales,150.602633,-34.436177 +2021,6,11,1,New South Wales,150.604305,-34.438986 +2020,10,,1,New South Wales,150.545289,-34.514293 +2021,8,9,1,New South Wales,150.604756,-34.427392 +2022,12,27,1,New South Wales,152.900099,-31.474255 +2021,3,23,1,New South Wales,150.516963,-34.44624 +2020,11,6,1,New South Wales,153.291205,-28.823077 +2021,5,10,1,New South Wales,150.639207,-34.491748 +2021,4,15,1,New South Wales,150.633454,-34.392358 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2022,8,31,1,New South Wales,151.577922,-30.322363 +2023,10,2,1,New South Wales,153.074069,-30.887317 +2024,1,23,1,New South Wales,152.794033,-31.643395 +2023,3,13,1,New South Wales,153.110147,-29.488331 +2021,12,20,1,New South Wales,153.104294,-29.476866 +2020,4,14,1,New South Wales,153.390999,-28.868907 +2021,5,3,1,New South Wales,150.607747,-34.436556 +2020,1,28,1,New South Wales,153.262731,-28.880416 +2021,8,1,1,New South Wales,151.830473,-32.503964 +2020,12,28,1,New South Wales,146.567646,-34.758651 +2023,10,7,1,New South Wales,152.085488,-32.728518 +2023,10,3,1,New South Wales,153.094585,-30.371502 +2021,3,10,1,New South Wales,150.635576,-34.485376 +2021,4,15,1,New South Wales,150.636903,-34.420923 +2020,9,3,1,New South Wales,153.004467,-29.182571 +2020,9,16,1,New South Wales,152.888196,-28.803618 +2021,10,28,1,New South Wales,152.071462,-32.713922 +2021,4,11,1,New South Wales,153.526374,-28.70571 +2020,10,10,1,New South Wales,152.117738,-32.726204 +2021,6,7,1,New South Wales,150.642009,-34.396769 +2021,,,1,New South Wales,149.286695,-36.172096 +2023,12,20,1,New South Wales,153.103886,-29.489591 +2021,5,22,1,New South Wales,150.518367,-34.451389 +2021,4,25,1,New South Wales,150.608626,-34.45345 +2022,8,12,1,New South Wales,153.558536,-28.39414 +2022,3,3,1,New South Wales,153.103693,-29.485814 +2022,9,7,1,New South Wales,153.229575,-28.88915 +2020,10,30,1,New South Wales,149.999247,-36.565645 +2021,9,19,1,New South Wales,153.101156,-29.48996 +2021,3,7,1,New South Wales,153.103827,-29.484903 +2021,4,26,1,New South Wales,150.635663,-34.418212 +2021,4,19,1,New South Wales,150.627201,-34.385809 +2020,1,13,1,New South Wales,150.809,-34.20866 +2020,1,10,1,New South Wales,152.822435,-31.143689 +2020,10,30,1,New South Wales,152.919628,-31.438894 +2023,3,3,1,New South Wales,152.365596,-31.951256 +2023,5,11,1,New South Wales,152.864019,-31.299042 +2021,9,29,1,New South Wales,152.893373,-31.429585 +2024,6,12,1,New South Wales,152.07705,-32.722522 +2020,10,20,1,New South Wales,153.278132,-28.831137 +2022,3,8,1,New South Wales,153.110184,-29.490245 +2023,9,3,1,New South Wales,152.854391,-31.547614 +2021,11,27,1,New South Wales,152.056152,-32.737994 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2021,6,3,1,New South Wales,150.61577,-34.436434 +2023,4,30,1,New South Wales,153.314983,-28.949201 +2021,12,17,1,New South Wales,153.287878,-28.823779 +2021,4,,1,New South Wales,150.368935,-34.387953 +2021,9,3,1,New South Wales,150.645251,-34.399473 +2020,2,29,1,New South Wales,153.314983,-28.949201 +2021,3,29,1,New South Wales,150.635361,-34.488365 +2022,5,6,1,New South Wales,153.109288,-29.490675 +2023,2,28,1,New South Wales,153.314983,-28.949201 +2020,2,2,1,New South Wales,152.907375,-31.44425 +2021,5,28,1,New South Wales,150.521589,-34.465725 +2021,6,7,1,New South Wales,150.843857,-34.082069 +2021,6,16,1,New South Wales,152.92207,-31.48033 +2024,1,20,1,New South Wales,152.350019,-31.978754 +2023,6,10,1,New South Wales,149.552124,-33.49119 +2021,5,26,1,New South Wales,150.522145,-34.46497 +2021,7,20,1,New South Wales,150.60007,-34.419285 +2021,5,20,1,New South Wales,150.515179,-34.451378 +2023,2,27,1,New South Wales,153.386672,-28.560609 +2022,12,15,1,New South Wales,150.921152,-33.966691 +2020,10,12,1,New South Wales,149.887989,-36.587028 +2023,7,9,1,New South Wales,153.092552,-28.598584 +2020,12,7,1,New South Wales,153.103752,-29.485608 +2021,6,17,1,New South Wales,150.524435,-34.451548 +2020,4,27,1,New South Wales,152.925693,-31.447659 +2021,3,1,1,New South Wales,150.520489,-34.467948 +2020,12,25,1,New South Wales,150.96493,-34.02833 +2021,8,31,1,New South Wales,150.513172,-34.44784 +2021,4,26,1,New South Wales,150.60295,-34.43575 +2021,10,20,1,New South Wales,151.794214,-32.589817 +2021,6,4,1,New South Wales,150.6398,-34.399161 +2024,6,20,1,New South Wales,152.912574,-31.451029 +2021,10,8,1,New South Wales,153.06158,-30.35986 +2020,4,20,1,New South Wales,152.858113,-31.529031 +2020,10,12,1,New South Wales,149.96634,-36.680336 +2020,11,5,1,New South Wales,149.96897,-36.58553 +2021,6,12,1,New South Wales,150.626508,-34.385326 +2020,10,29,1,New South Wales,149.96897,-36.58553 +2021,6,14,1,New South Wales,150.515774,-34.446694 +2022,12,14,1,New South Wales,153.103774,-29.485604 +2022,3,29,1,New South Wales,152.821657,-31.646568 +2024,2,5,1,New South Wales,152.365667,-32.142592 +2021,2,16,1,New South Wales,153.189446,-28.889666 +2023,7,2,1,New South Wales,152.825611,-30.286651 +2022,12,10,1,New South Wales,152.86882,-31.473007 +2023,5,30,1,New South Wales,149.760909,-32.403341 +2022,6,28,1,New South Wales,152.94413,-30.39088 +2022,6,17,1,New South Wales,153.089215,-28.597991 +2021,6,23,1,New South Wales,153.433407,-28.95821 +2021,3,13,1,New South Wales,150.634921,-34.487752 +2023,9,26,1,New South Wales,150.985306,-34.096128 +2021,5,25,1,New South Wales,150.521544,-34.465761 +2021,5,9,1,New South Wales,150.604925,-34.4268 +2020,11,28,1,New South Wales,153.334878,-28.815042 +2020,1,21,1,New South Wales,153.104289,-29.480131 +2021,5,4,1,New South Wales,150.603055,-34.427512 +2021,6,18,1,New South Wales,150.514348,-34.446367 +2020,5,7,1,New South Wales,150.03941,-34.91134 +2021,7,2,1,New South Wales,150.522599,-34.465782 +2023,12,16,1,New South Wales,152.172395,-32.736793 +2023,3,10,1,New South Wales,152.87463,-31.462053 +2021,3,3,1,New South Wales,152.415339,-31.93317 +2021,7,20,1,New South Wales,153.393029,-28.269182 +2023,10,12,1,New South Wales,152.917599,-31.474412 +2021,9,11,1,New South Wales,150.523265,-34.485971 +2021,5,24,1,New South Wales,150.63881,-34.492705 +2021,8,3,1,New South Wales,153.104074,-29.480098 +2021,5,2,1,New South Wales,150.626033,-34.390195 +2023,7,31,1,New South Wales,153.314983,-28.949201 +2020,8,3,1,New South Wales,152.797444,-31.126171 +2023,8,22,1,New South Wales,152.21206,-32.22908 +2021,6,30,1,New South Wales,150.596614,-34.411185 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2020,11,16,1,New South Wales,153.316984,-28.937089 +2020,11,3,1,New South Wales,153.335449,-28.872021 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2021,4,29,1,New South Wales,150.638651,-34.489438 +2022,9,20,1,New South Wales,152.076541,-32.725255 +2021,5,20,1,New South Wales,152.893086,-31.454902 +2022,9,8,1,New South Wales,153.109374,-29.490441 +2023,9,27,1,New South Wales,153.436484,-28.667693 +2020,11,12,1,New South Wales,153.276731,-28.819935 +2021,5,8,1,New South Wales,150.609248,-34.420547 +2021,6,20,1,New South Wales,150.518933,-34.460208 +2021,4,18,1,New South Wales,150.530566,-34.469522 +2020,1,28,1,New South Wales,152.915691,-31.482531 +2021,5,4,1,New South Wales,150.627058,-34.38971 +2020,1,21,1,New South Wales,152.911508,-31.429323 +2021,9,22,1,New South Wales,150.47147,-34.49539 +2022,1,20,1,New South Wales,152.063752,-32.706596 +2021,6,14,1,New South Wales,150.518429,-34.457394 +2021,4,6,1,New South Wales,150.523128,-34.464089 +2020,7,14,1,New South Wales,153.373615,-28.25059 +2022,8,22,1,New South Wales,152.661161,-28.610492 +2023,11,5,1,New South Wales,150.786088,-33.712288 +2020,9,5,1,New South Wales,152.404167,-31.945815 +2020,10,,1,New South Wales,150.566043,-34.524474 +2021,9,5,1,New South Wales,150.64143,-34.400734 +2021,3,4,1,New South Wales,150.608992,-34.420371 +2021,4,10,1,New South Wales,150.517893,-34.4479 +2020,9,7,1,New South Wales,153.339458,-28.89613 +2021,5,30,1,New South Wales,150.63118,-34.420163 +2021,4,27,1,New South Wales,150.602031,-34.425644 +2024,7,19,1,New South Wales,152.40587,-31.930546 +2021,4,19,1,New South Wales,151.698317,-32.696955 +2021,2,1,1,New South Wales,153.06132,-30.3598 +2021,6,10,1,New South Wales,150.646467,-34.397198 +2021,6,9,1,New South Wales,150.64351,-34.395221 +2023,8,4,1,New South Wales,149.54966,-33.569109 +2021,3,23,1,New South Wales,150.534515,-34.462201 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2021,10,5,1,New South Wales,153.318368,-28.82437 +2021,5,29,1,New South Wales,150.602588,-34.424825 +2021,6,2,1,New South Wales,150.532002,-34.46325 +2020,9,16,1,New South Wales,151.702712,-32.688033 +2021,4,20,1,New South Wales,150.604589,-34.424468 +2024,1,24,1,New South Wales,150.785882,-33.704526 +2021,11,22,1,New South Wales,153.109363,-29.490511 +2021,6,15,1,New South Wales,150.630354,-34.420904 +2021,3,6,1,New South Wales,150.838432,-34.055514 +2021,11,13,1,New South Wales,150.786856,-34.208051 +2023,11,11,1,New South Wales,149.948533,-36.61303 +2021,6,21,1,New South Wales,150.624526,-34.385414 +2021,6,20,1,New South Wales,153.110479,-29.490138 +2023,8,28,1,New South Wales,152.922646,-31.467053 +2020,6,25,1,New South Wales,152.924145,-31.460578 +2020,4,9,1,New South Wales,152.701034,-30.181572 +2020,5,8,1,New South Wales,153.095227,-29.483442 +2021,6,4,1,New South Wales,150.519787,-34.447172 +2020,1,26,1,New South Wales,150.06994,-35.09674 +2022,8,31,1,New South Wales,150.878876,-34.014065 +2022,8,26,1,New South Wales,153.110533,-29.490124 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2021,4,8,1,New South Wales,152.923929,-31.459449 +2020,11,17,1,New South Wales,150.004563,-36.508695 +2022,11,25,1,New South Wales,152.383844,-31.92905 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2021,5,30,1,New South Wales,150.522889,-34.452301 +2021,3,25,1,New South Wales,150.607892,-34.422333 +2021,11,3,1,New South Wales,153.315789,-28.683037 +2024,1,15,1,New South Wales,150.82422,-34.150349 +2021,5,20,1,New South Wales,150.659714,-34.4581 +2021,2,27,1,New South Wales,150.615253,-34.433196 +2021,1,17,1,New South Wales,152.114096,-32.724199 +2021,1,27,1,New South Wales,153.10939,-29.490521 +2020,10,28,1,New South Wales,153.335481,-28.869015 +2021,5,16,1,New South Wales,150.628647,-34.389281 +2021,12,29,1,New South Wales,153.115459,-28.63227 +2021,11,6,1,New South Wales,150.851094,-34.04429 +2022,1,26,1,New South Wales,152.06416,-32.70664 +2022,11,21,1,New South Wales,152.78933,-30.918792 +2021,11,29,1,New South Wales,153.103999,-29.485267 +2024,7,8,1,New South Wales,152.077233,-32.722459 +2023,10,25,1,New South Wales,149.407657,-36.2338 +2020,7,5,1,New South Wales,153.103758,-29.48558 +2021,9,17,1,New South Wales,153.103522,-29.485482 +2021,4,26,1,New South Wales,150.626171,-34.39878 +2020,11,4,1,New South Wales,153.183766,-29.442147 +2020,7,18,1,New South Wales,153.491683,-28.233759 +2021,4,27,1,New South Wales,150.51698,-34.440534 +2023,10,28,1,New South Wales,150.58451,-34.52604 +2020,8,30,1,New South Wales,153.297172,-28.819012 +2021,2,15,1,New South Wales,153.525862,-28.80884 +2021,3,5,1,New South Wales,150.519132,-34.460122 +2020,3,28,1,New South Wales,150.1299,-35.069995 +2021,5,7,1,New South Wales,150.637334,-34.42378 +2022,10,25,1,New South Wales,153.36363,-28.6777 +2020,4,16,1,New South Wales,152.923886,-31.444286 +2023,12,22,1,New South Wales,152.395186,-31.94463 +2021,9,15,1,New South Wales,153.54974,-28.56479 +2020,1,23,1,New South Wales,150.89337,-33.97151 +2021,7,3,1,New South Wales,153.087009,-30.34056 +2023,2,23,1,New South Wales,152.928752,-31.459623 +2021,6,4,1,New South Wales,150.51967,-34.456626 +2021,5,26,1,New South Wales,150.658374,-34.45619 +2023,9,10,1,New South Wales,152.063,-32.706299 +2023,6,26,1,New South Wales,153.109626,-29.492813 +2020,10,15,1,New South Wales,152.16658,-32.723988 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2021,7,15,1,New South Wales,150.522578,-34.465782 +2021,4,27,1,New South Wales,150.602918,-34.435722 +2023,2,13,1,New South Wales,153.306661,-28.816046 +2024,1,22,1,New South Wales,152.374339,-31.949355 +2021,6,23,1,New South Wales,150.602648,-34.418912 +2022,10,9,1,New South Wales,153.594928,-28.854885 +2021,12,27,1,New South Wales,153.10115,-29.490012 +2021,7,23,1,New South Wales,150.630873,-34.420662 +2020,10,16,1,New South Wales,152.802445,-31.635927 +2023,6,6,1,New South Wales,151.759579,-32.767934 +2020,7,31,1,New South Wales,153.397476,-28.560814 +2021,11,27,1,New South Wales,153.224432,-28.886197 +2023,10,23,1,New South Wales,153.103902,-29.489601 +2021,6,3,1,New South Wales,150.615375,-34.436561 +2022,11,24,1,New South Wales,153.21759,-28.919236 +2021,8,23,1,New South Wales,153.093277,-29.492609 +2020,11,,1,New South Wales,152.884272,-31.457599 +2022,7,7,1,New South Wales,149.811205,-29.375479 +2020,2,27,1,New South Wales,153.34377,-28.833424 +2020,10,30,1,New South Wales,153.319891,-28.823212 +2021,6,2,1,New South Wales,150.606281,-34.45097 +2022,7,26,1,New South Wales,152.81408,-31.130775 +2020,10,26,1,New South Wales,153.360617,-28.840581 +2021,6,3,1,New South Wales,153.607389,-28.687767 +2020,10,1,1,New South Wales,153.522363,-28.220704 +2021,5,14,1,New South Wales,150.520924,-34.453992 +2023,5,5,1,New South Wales,152.92337,-31.460774 +2021,8,12,1,New South Wales,150.452596,-35.365574 +2021,4,8,1,New South Wales,150.60928,-34.420566 +2020,10,12,1,New South Wales,149.941793,-36.651646 +2021,4,10,1,New South Wales,150.609441,-34.420668 +2022,7,13,1,New South Wales,152.071492,-32.710569 +2020,8,18,1,New South Wales,152.863097,-29.599543 +2021,5,24,1,New South Wales,150.597075,-34.428494 +2021,10,6,1,New South Wales,152.929061,-31.45098 +2023,5,5,1,New South Wales,149.967242,-36.576557 +2023,6,22,1,New South Wales,150.784917,-33.71849 +2021,5,10,1,New South Wales,150.625028,-34.399596 +2022,12,10,1,New South Wales,150.70813,-33.12797 +2023,5,16,1,New South Wales,153.108012,-29.490404 +2021,5,25,1,New South Wales,150.603115,-34.434933 +2021,10,18,1,New South Wales,150.582601,-34.500217 +2021,2,24,1,New South Wales,150.838978,-34.053416 +2023,7,7,1,New South Wales,152.90958,-31.444162 +2023,1,19,1,New South Wales,150.797004,-34.117213 +2020,10,7,1,New South Wales,152.921882,-31.451535 +2020,12,,1,New South Wales,152.864165,-31.291869 +2021,5,21,1,New South Wales,150.61713,-34.433764 +2021,8,24,1,New South Wales,150.51382,-34.447285 +2021,5,22,1,New South Wales,150.518056,-34.451599 +2021,5,25,1,New South Wales,150.63899,-34.491716 +2021,5,3,1,New South Wales,150.637389,-34.423763 +2024,1,31,1,New South Wales,152.914922,-31.468154 +2021,6,13,1,New South Wales,150.521275,-34.465656 +2021,5,7,1,New South Wales,150.639072,-34.49152 +2021,5,24,1,New South Wales,150.51607,-34.450297 +2021,6,24,1,New South Wales,150.601261,-34.41719 +2020,10,16,1,New South Wales,149.887989,-36.587028 +2022,7,21,1,New South Wales,150.862529,-34.04391 +2022,4,24,1,New South Wales,153.108097,-29.490306 +2021,5,22,1,New South Wales,150.597812,-34.42786 +2020,11,1,1,New South Wales,149.945227,-36.57753 +2022,8,30,1,New South Wales,149.317865,-36.298423 +2021,7,8,1,New South Wales,150.842294,-34.082676 +2021,8,4,1,New South Wales,150.602903,-34.426364 +2020,7,10,1,New South Wales,153.274356,-28.872288 +2021,5,31,1,New South Wales,150.523891,-34.46405 +2023,1,9,1,New South Wales,152.782748,-31.62996 +2021,8,4,1,New South Wales,150.645278,-34.398897 +2023,5,31,1,New South Wales,153.118753,-30.26309 +2022,3,4,1,New South Wales,153.109379,-29.490437 +2021,10,21,1,New South Wales,150.978269,-34.083986 +2022,12,31,1,New South Wales,153.104004,-29.47802 +2021,5,9,1,New South Wales,150.606617,-34.438031 +2020,1,16,1,New South Wales,152.85616,-31.163855 +2023,12,31,1,New South Wales,153.097326,-29.487037 +2021,3,29,1,New South Wales,152.924481,-31.461866 +2023,12,25,1,New South Wales,150.783165,-33.718582 +2020,10,2,1,New South Wales,152.923188,-31.47532 +2023,11,21,1,New South Wales,152.921158,-31.453608 +2020,9,16,1,New South Wales,152.359003,-31.924406 +2021,12,23,1,New South Wales,153.436633,-28.57405 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2023,12,23,1,New South Wales,153.110318,-29.490273 +2021,6,23,1,New South Wales,150.602492,-34.418648 +2021,5,4,1,New South Wales,150.611799,-34.419596 +2022,7,27,1,New South Wales,152.809452,-31.140208 +2021,1,22,1,New South Wales,151.859808,-32.805023 +2022,2,7,1,New South Wales,150.9739,-34.124092 +2023,11,8,1,New South Wales,152.258023,-32.345957 +2020,5,5,1,New South Wales,152.954415,-30.666881 +2021,7,30,1,New South Wales,153.556057,-28.398603 +2020,11,15,1,New South Wales,149.966791,-36.502277 +2021,4,3,1,New South Wales,150.616593,-34.435837 +2024,4,19,1,New South Wales,151.230894,-33.09847 +2020,10,19,1,New South Wales,149.938155,-36.621708 +2021,8,2,1,New South Wales,152.925662,-31.459506 +2020,1,16,1,New South Wales,150.809,-34.20866 +2020,2,3,1,New South Wales,153.11128,-28.663535 +2020,10,20,1,New South Wales,149.938155,-36.621708 +2022,11,15,1,New South Wales,152.448841,-32.17698 +2020,10,11,1,New South Wales,149.941793,-36.651646 +2021,1,18,1,New South Wales,152.063779,-32.706537 +2020,4,22,1,New South Wales,152.171498,-32.667886 +2022,12,13,1,New South Wales,150.840628,-34.060701 +2021,6,18,1,New South Wales,150.522183,-34.451503 +2020,5,31,1,New South Wales,153.47857,-28.232574 +2022,6,16,1,New South Wales,152.919463,-31.443561 +2021,4,25,1,New South Wales,150.608504,-34.45352 +2021,4,22,1,New South Wales,150.61421,-34.429714 +2021,4,30,1,New South Wales,150.636288,-34.42192 +2021,6,26,1,New South Wales,150.645217,-34.390989 +2021,9,12,1,New South Wales,150.638438,-34.403111 +2022,10,29,1,New South Wales,152.066398,-32.706001 +2021,4,27,1,New South Wales,150.602963,-34.435678 +2020,2,2,1,New South Wales,152.916502,-31.47588 +2022,11,21,1,New South Wales,152.78933,-30.918792 +2022,1,7,1,New South Wales,150.911136,-33.968789 +2021,5,28,1,New South Wales,150.516262,-34.448957 +2021,5,15,1,New South Wales,150.600383,-34.4281 +2020,10,14,1,New South Wales,149.880784,-36.581514 +2021,7,11,1,New South Wales,150.631455,-34.388046 +2024,2,5,1,New South Wales,153.10394,-29.48961 +2021,5,29,1,New South Wales,150.523085,-34.464458 +2020,10,5,1,New South Wales,153.306646,-28.831058 +2021,6,2,1,New South Wales,150.546628,-34.514336 +2021,4,21,1,New South Wales,150.630687,-34.387138 +2023,4,7,1,New South Wales,153.104825,-29.490301 +2021,7,1,1,New South Wales,150.642641,-34.395573 +2021,12,,1,New South Wales,149.330907,-36.109474 +2021,10,26,1,New South Wales,152.06499,-32.699624 +2023,5,5,1,New South Wales,150.785663,-33.713367 +2020,7,6,1,New South Wales,152.359003,-31.924406 +2021,10,10,1,New South Wales,153.043427,-30.887589 +2020,10,6,1,New South Wales,150.602656,-34.527337 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2021,3,16,1,New South Wales,150.517321,-34.45144 +2024,3,29,1,New South Wales,150.006295,-31.690323 +2021,1,15,1,New South Wales,150.100651,-33.77871 +2024,7,13,1,New South Wales,153.415401,-28.982555 +2022,7,29,1,New South Wales,152.550241,-31.643698 +2021,4,21,1,New South Wales,150.607487,-34.433089 +2021,5,19,1,New South Wales,150.608858,-34.434252 +2021,6,23,1,New South Wales,150.601818,-34.418247 +2021,6,21,1,New South Wales,150.620974,-34.439429 +2021,6,2,1,New South Wales,150.518816,-34.447621 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2020,1,2,1,New South Wales,152.927762,-31.46623 +2021,6,5,1,New South Wales,150.615947,-34.435184 +2021,6,16,1,New South Wales,150.609483,-34.430631 +2021,6,13,1,New South Wales,150.612187,-34.432334 +2021,3,25,1,New South Wales,150.525547,-34.459973 +2021,6,22,1,New South Wales,150.602404,-34.419827 +2022,11,9,1,New South Wales,152.918781,-31.453774 +2021,5,31,1,New South Wales,150.607255,-34.437791 +2022,11,23,1,New South Wales,152.073373,-32.716992 +2021,8,15,1,New South Wales,150.521057,-34.464561 +2021,10,24,1,New South Wales,150.200394,-29.354364 +2024,2,26,1,New South Wales,153.105206,-29.489788 +2024,1,30,1,New South Wales,152.298863,-31.945372 +2021,6,17,1,New South Wales,150.522776,-34.450965 +2021,7,14,1,New South Wales,150.626557,-34.385499 +2022,11,23,1,New South Wales,152.769456,-30.916275 +2024,1,16,1,New South Wales,152.728756,-30.90699 +2023,11,18,1,New South Wales,152.103453,-32.759387 +2021,12,16,1,New South Wales,153.07448,-28.5551 +2022,11,19,1,New South Wales,152.769456,-30.916275 +2023,7,1,1,New South Wales,153.31535,-28.819753 +2022,8,11,1,New South Wales,153.336079,-28.813325 +2020,11,26,1,New South Wales,150.56515,-34.52211 +2022,6,28,1,New South Wales,152.9439,-30.3905 +2020,6,25,1,New South Wales,152.795548,-30.222274 +2023,11,2,1,New South Wales,152.904746,-31.116484 +2022,3,14,1,New South Wales,151.136462,-29.782422 +2022,11,18,1,New South Wales,152.760068,-30.904021 +2021,3,5,1,New South Wales,150.604276,-34.438102 +2021,6,26,1,New South Wales,150.514342,-34.447295 +2021,3,2,1,New South Wales,150.521327,-34.448826 +2021,4,24,1,New South Wales,150.606761,-34.434508 +2020,8,8,1,New South Wales,152.185919,-30.095375 +2021,5,25,1,New South Wales,150.639209,-34.392703 +2023,11,25,1,New South Wales,149.552171,-33.491225 +2023,8,27,1,New South Wales,150.98,-34.09 +2021,1,9,1,New South Wales,153.563417,-28.38145 +2020,7,10,1,New South Wales,153.363258,-29.37758 +2023,9,15,1,New South Wales,151.910427,-32.215233 +2020,12,19,1,New South Wales,153.298557,-28.81845 +2020,10,8,1,New South Wales,153.155147,-29.38163 +2021,6,27,1,New South Wales,150.627325,-34.420322 +2021,6,17,1,New South Wales,150.642381,-34.39555 +2021,3,16,1,New South Wales,150.609058,-34.43065 +2021,11,6,1,New South Wales,153.461614,-28.46623 +2023,8,6,1,New South Wales,153.103463,-29.485632 +2021,4,26,1,New South Wales,150.609511,-34.418948 +2021,5,27,1,New South Wales,150.522404,-34.46576 +2020,1,25,1,New South Wales,152.915856,-31.476822 +2021,6,7,1,New South Wales,150.658814,-34.455639 +2021,6,8,1,New South Wales,150.520238,-34.442574 +2021,5,24,1,New South Wales,150.639248,-34.493002 +2021,9,7,1,New South Wales,153.104267,-29.482228 +2022,10,10,1,New South Wales,152.917952,-31.470297 +2023,11,5,1,New South Wales,152.909957,-31.47042 +2021,7,13,1,New South Wales,153.103758,-29.485557 +2021,7,18,1,New South Wales,150.624593,-34.38611 +2022,12,16,1,New South Wales,152.87222,-31.286472 +2021,6,13,1,New South Wales,150.611971,-34.432663 +2022,9,28,1,New South Wales,153.103795,-29.485459 +2022,11,25,1,New South Wales,152.794854,-30.893434 +2022,10,14,1,New South Wales,152.03389,-32.732605 +2020,9,21,1,New South Wales,152.922317,-31.444411 +2021,6,8,1,New South Wales,150.52312,-34.466225 +2021,5,29,1,New South Wales,150.515854,-34.448796 +2021,5,16,1,New South Wales,150.60438,-34.43558 +2021,4,29,1,New South Wales,150.62445,-34.388099 +2020,8,28,1,New South Wales,153.516301,-28.688361 +2022,,,1,New South Wales,153.486459,-28.163166 +2022,3,21,1,New South Wales,152.916735,-31.445658 +2021,3,21,1,New South Wales,150.6595,-34.458339 +2021,3,18,1,New South Wales,150.517596,-34.446181 +2021,3,7,1,New South Wales,150.603427,-34.435435 +2022,1,16,1,New South Wales,153.096628,-29.491926 +2024,6,24,1,New South Wales,152.403775,-31.927523 +2022,10,12,1,New South Wales,152.893283,-31.457903 +2024,5,29,1,New South Wales,152.809083,-31.146388 +2022,10,10,1,New South Wales,152.921229,-31.454443 +2023,4,17,1,New South Wales,146.586089,-34.77279 +2022,8,18,1,New South Wales,152.087047,-32.762364 +2024,4,29,1,New South Wales,151.011472,-29.71997 +2020,11,9,1,New South Wales,149.563827,-33.689127 +2024,1,16,1,New South Wales,152.743508,-30.903953 +2021,12,20,1,New South Wales,153.108194,-29.490259 +2020,4,20,1,New South Wales,152.877587,-31.434324 +2020,9,13,1,Queensland,152.991477,-26.43875 +2021,7,20,1,New South Wales,153.219631,-28.339384 +2021,5,14,1,New South Wales,150.601197,-34.428197 +2020,10,20,1,New South Wales,152.756388,-31.005135 +2020,10,2,1,New South Wales,153.445719,-28.589459 +2021,5,4,1,New South Wales,150.520721,-34.436544 +2023,6,25,1,New South Wales,152.926507,-31.47563 +2021,5,26,1,New South Wales,150.51649,-34.44971 +2021,6,23,1,New South Wales,150.520337,-34.465718 +2021,9,14,1,New South Wales,152.921536,-31.479428 +2021,5,27,1,New South Wales,150.526706,-34.469354 +2020,1,19,1,New South Wales,153.103208,-29.487423 +2020,12,4,1,New South Wales,152.833513,-30.434893 +2020,1,8,1,New South Wales,152.867673,-29.691697 +2024,8,23,1,New South Wales,152.44218,-31.95546 +2021,4,22,1,New South Wales,150.632721,-34.392903 +2021,6,5,1,New South Wales,150.534654,-34.459319 +2021,5,5,1,New South Wales,150.521666,-34.466052 +2021,9,20,1,New South Wales,150.859518,-34.050756 +2020,10,27,1,New South Wales,152.87918,-31.44857 +2022,4,18,1,New South Wales,153.557079,-28.394204 +2020,12,2,1,New South Wales,153.415946,-28.982816 +2021,1,11,1,New South Wales,152.88391,-31.44104 +2021,8,29,1,New South Wales,150.60405,-34.444489 +2021,6,13,1,New South Wales,150.615168,-34.431202 +2021,5,18,1,New South Wales,150.520443,-34.454037 +2024,4,22,1,New South Wales,152.912782,-31.476147 +2020,9,17,1,New South Wales,153.543661,-28.555867 +2020,12,1,1,New South Wales,152.904597,-31.439218 +2024,9,4,1,New South Wales,152.174222,-31.570282 +2021,7,7,1,New South Wales,150.606013,-34.44204 +2021,10,13,1,New South Wales,152.250288,-30.066931 +2021,5,3,1,New South Wales,150.607747,-34.436556 +2022,12,3,1,New South Wales,151.77082,-32.587972 +2021,6,19,1,New South Wales,150.5139,-34.446421 +2021,8,14,1,New South Wales,150.604335,-34.431441 +2020,4,16,1,New South Wales,153.103827,-29.485571 +2022,2,6,1,New South Wales,151.007009,-34.046504 +2021,8,27,1,New South Wales,150.514545,-34.447408 +2021,5,23,1,New South Wales,150.659288,-34.457352 +2022,5,22,1,New South Wales,152.909177,-31.466371 +2023,9,4,1,New South Wales,150.79,-34.14382 +2021,7,6,1,New South Wales,150.521609,-34.465771 +2021,5,20,1,New South Wales,150.599713,-34.429105 +2020,11,6,1,New South Wales,150.010499,-36.556654 +2023,2,10,1,New South Wales,153.315752,-28.850061 +2020,7,20,1,New South Wales,153.259862,-28.925911 +2021,10,,1,New South Wales,149.3039,-36.2037 +2022,9,30,1,New South Wales,153.314983,-28.949201 +2021,7,26,1,New South Wales,150.641101,-34.393867 +2020,4,28,1,New South Wales,150.060153,-33.774415 +2021,4,30,1,New South Wales,153.314983,-28.949201 +2021,4,27,1,New South Wales,150.616559,-34.429732 +2022,11,30,1,New South Wales,152.754102,-30.882465 +2023,10,29,1,New South Wales,150.78604,-33.709625 +2021,5,19,1,New South Wales,150.613681,-34.431083 +2023,10,29,1,New South Wales,150.786533,-33.70956 +2021,6,7,1,New South Wales,150.607699,-34.430226 +2023,7,12,1,New South Wales,150.785842,-33.709049 +2024,3,16,1,New South Wales,152.063741,-32.706535 +2020,11,2,1,New South Wales,149.998977,-36.551144 +2021,5,31,1,New South Wales,150.51744,-34.441526 +2021,7,1,1,New South Wales,150.099074,-33.776491 +2021,9,15,1,New South Wales,150.642765,-34.394629 +2021,6,10,1,New South Wales,150.626566,-34.386328 +2021,4,28,1,New South Wales,150.615458,-34.435553 +2021,6,21,1,New South Wales,150.513165,-34.445892 +2021,6,14,1,New South Wales,150.630388,-34.420869 +2021,6,17,1,New South Wales,150.513972,-34.446179 +2020,10,26,1,New South Wales,151.52664,-32.96288 +2020,8,29,1,New South Wales,152.908969,-31.466613 +2022,12,31,1,New South Wales,153.314983,-28.949201 +2021,3,25,1,New South Wales,150.520902,-34.453974 +2020,10,29,1,New South Wales,149.979238,-36.570187 +2024,3,31,1,New South Wales,152.412818,-31.93321 +2021,1,17,1,New South Wales,153.454728,-28.649429 +2022,5,29,1,New South Wales,153.108151,-29.490217 +2021,3,3,1,New South Wales,150.517582,-34.446667 +2021,9,18,1,New South Wales,152.913234,-31.479295 +2021,4,13,1,New South Wales,150.516054,-34.448295 +2021,5,3,1,New South Wales,150.621105,-34.398718 +2020,10,24,1,New South Wales,152.359003,-31.924406 +2022,8,2,1,New South Wales,152.793146,-31.639074 +2022,8,12,1,New South Wales,152.927387,-31.45599 +2021,1,3,1,New South Wales,152.068413,-32.707662 +2022,1,14,1,New South Wales,150.618928,-34.439804 +2021,8,14,1,New South Wales,150.641375,-34.396523 +2022,10,31,1,New South Wales,153.314983,-28.949201 +2021,6,24,1,New South Wales,150.625265,-34.3866 +2022,11,30,1,New South Wales,153.314983,-28.949201 +2023,12,17,1,New South Wales,150.785316,-33.709762 +2022,12,4,1,New South Wales,152.925868,-31.453019 +2023,9,6,1,New South Wales,152.943056,-31.176806 +2022,7,14,1,New South Wales,153.431324,-29.016415 +2022,9,30,1,New South Wales,153.314983,-28.949201 +2020,9,12,1,New South Wales,152.820092,-31.463064 +2021,5,22,1,New South Wales,150.617854,-34.448906 +2021,5,30,1,New South Wales,153.41301,-29.031736 +2021,7,18,1,New South Wales,150.516355,-34.448031 +2021,5,17,1,New South Wales,150.520292,-34.454015 +2022,7,6,1,New South Wales,153.318601,-28.824435 +2024,4,27,1,New South Wales,151.150223,-33.104783 +2020,1,11,1,New South Wales,150.794683,-34.140137 +2020,10,12,1,New South Wales,149.96634,-36.680336 +2021,3,13,1,New South Wales,150.609157,-34.42032 +2021,11,15,1,New South Wales,150.616092,-34.438513 +2021,3,11,1,New South Wales,150.977585,-34.041189 +2021,8,22,1,New South Wales,150.520268,-34.465473 +2023,11,27,1,New South Wales,153.101301,-29.489998 +2021,5,23,1,New South Wales,150.597885,-34.427951 +2024,1,15,1,New South Wales,153.110506,-29.490147 +2021,7,9,1,New South Wales,150.627246,-34.421574 +2021,9,17,1,New South Wales,152.923386,-29.725122 +2021,3,27,1,New South Wales,150.610554,-34.429723 +2021,7,2,1,New South Wales,153.193992,-29.42432 +2020,11,,1,New South Wales,150.519407,-34.488077 +2022,5,23,1,New South Wales,153.315136,-28.862636 +2020,7,30,1,New South Wales,152.794251,-31.128277 +2021,1,21,1,New South Wales,152.355785,-31.85809 +2023,6,11,1,New South Wales,153.31535,-28.819753 +2022,3,30,1,New South Wales,153.398238,-28.261188 +2020,2,24,1,New South Wales,153.110203,-29.490217 +2021,3,5,1,New South Wales,150.611882,-34.420499 +2021,6,25,1,New South Wales,150.597121,-34.41701 +2020,3,31,1,New South Wales,153.314983,-28.949201 +2021,6,5,1,New South Wales,150.623601,-34.3893 +2020,9,5,1,New South Wales,152.848859,-30.582438 +2020,7,3,1,New South Wales,153.590336,-28.660527 +2021,4,10,1,New South Wales,150.609264,-34.420746 +2020,2,29,1,New South Wales,153.314983,-28.949201 +2021,1,13,1,New South Wales,150.039726,-33.756339 +2020,8,22,1,New South Wales,153.55998,-28.331279 +2022,5,8,1,New South Wales,153.109401,-29.490446 +2020,11,16,1,New South Wales,153.316981,-28.949626 +2022,9,5,1,New South Wales,152.879212,-31.448716 +2021,4,17,1,New South Wales,150.636136,-34.42034 +2023,6,29,1,New South Wales,152.865602,-29.652568 +2023,9,16,1,New South Wales,152.755229,-31.633106 +2022,11,19,1,New South Wales,152.928742,-31.455921 +2020,7,1,1,New South Wales,152.909944,-31.458085 +2022,10,7,1,New South Wales,153.043951,-30.428741 +2022,6,16,1,New South Wales,153.30059,-28.81707 +2021,7,17,1,New South Wales,150.624544,-34.385919 +2021,8,1,1,New South Wales,150.520097,-34.436693 +2021,4,2,1,New South Wales,150.607564,-34.421993 +2021,9,15,1,New South Wales,150.787655,-34.188482 +2021,5,22,1,New South Wales,150.598226,-34.427841 +2021,4,12,1,New South Wales,150.634891,-34.487661 +2022,8,6,1,New South Wales,152.99617,-30.383883 +2021,6,17,1,New South Wales,150.617158,-34.434324 +2020,11,10,1,New South Wales,150.693565,-33.3858 +2020,10,20,1,New South Wales,153.394595,-28.960088 +2021,3,30,1,New South Wales,153.170518,-29.011799 +2021,6,23,1,New South Wales,150.520339,-34.465646 +2022,8,25,1,New South Wales,151.649653,-30.332811 +2021,1,27,1,New South Wales,153.104171,-29.478847 +2021,7,2,1,New South Wales,150.626968,-34.421019 +2023,8,27,1,New South Wales,150.985492,-34.095849 +2022,12,6,1,New South Wales,152.08885,-32.73655 +2023,9,2,1,New South Wales,150.784178,-33.717758 +2023,6,7,1,New South Wales,150.843837,-34.137132 +2021,6,17,1,New South Wales,149.546315,-33.541189 +2020,11,17,1,New South Wales,152.878493,-31.138286 +2021,4,24,1,New South Wales,150.605062,-34.4239 +2021,7,1,1,New South Wales,150.626774,-34.420934 +2021,6,4,1,New South Wales,150.615168,-34.435421 +2022,12,23,1,New South Wales,153.224344,-28.941391 +2021,6,13,1,New South Wales,153.108205,-29.490199 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2020,10,9,1,New South Wales,150.703279,-33.413568 +2023,6,8,1,New South Wales,150.841415,-34.097889 +2021,4,21,1,New South Wales,150.614384,-34.428924 +2023,5,1,1,New South Wales,152.926532,-31.458562 +2022,1,29,1,New South Wales,153.258624,-28.89478 +2021,3,17,1,New South Wales,153.270839,-28.93365 +2021,7,15,1,New South Wales,150.627079,-34.420949 +2021,8,18,1,New South Wales,150.645436,-34.401388 +2021,8,5,1,New South Wales,150.632615,-34.418297 +2023,1,12,1,New South Wales,152.820061,-31.300188 +2020,10,12,1,New South Wales,149.96634,-36.680336 +2021,6,17,1,New South Wales,150.630353,-34.42094 +2020,3,30,1,New South Wales,150.102885,-33.779051 +2023,8,4,1,New South Wales,152.923326,-31.460961 +2021,4,21,1,New South Wales,150.616847,-34.43338 +2023,9,7,1,New South Wales,152.943009,-31.177132 +2020,11,7,1,New South Wales,150.007338,-36.56122 +2023,11,5,1,New South Wales,152.37372,-31.914471 +2020,10,,1,New South Wales,150.547088,-34.454201 +2020,10,4,1,New South Wales,150.652692,-33.685113 +2021,12,2,1,New South Wales,152.065397,-32.710481 +2021,6,30,1,New South Wales,150.595775,-34.41198 +2020,8,12,1,New South Wales,153.462475,-28.649629 +2020,7,18,1,New South Wales,152.822977,-31.099793 +2021,7,20,1,New South Wales,150.630689,-34.420613 +2022,9,7,1,New South Wales,150.79082,-34.18594 +2020,1,8,1,New South Wales,152.866231,-29.69152 +2021,8,7,1,New South Wales,150.604374,-34.425527 +2022,7,14,1,New South Wales,152.790908,-31.639483 +2021,6,28,1,New South Wales,150.596127,-34.411446 +2021,1,20,1,New South Wales,152.06976,-32.712615 +2023,12,27,1,New South Wales,153.095089,-29.48339 +2022,11,13,1,New South Wales,152.925204,-31.454163 +2022,1,6,1,New South Wales,153.555267,-28.408776 +2021,4,15,1,New South Wales,150.518524,-34.444973 +2021,4,29,1,New South Wales,150.605908,-34.454497 +2022,12,14,1,New South Wales,153.104112,-29.480654 +2021,12,8,1,New South Wales,151.992728,-32.721099 +2021,4,19,1,New South Wales,150.637608,-34.421405 +2024,3,7,1,New South Wales,151.699657,-32.636469 +2021,12,21,1,New South Wales,152.910219,-31.465185 +2020,5,25,1,New South Wales,152.639454,-28.802118 +2021,6,14,1,New South Wales,150.625291,-34.384518 +2021,5,24,1,New South Wales,150.605073,-34.432663 +2020,11,17,1,New South Wales,149.910112,-36.460589 +2022,10,16,1,New South Wales,150.838978,-34.053416 +2022,3,1,1,New South Wales,152.063231,-32.70675 +2021,7,27,1,New South Wales,150.639432,-34.397549 +2021,4,29,1,New South Wales,150.636335,-34.421786 +2020,3,28,1,New South Wales,150.127277,-35.062989 +2020,10,4,1,New South Wales,153.075165,-30.296857 +2020,5,21,1,New South Wales,149.990835,-36.467774 +2023,11,7,1,New South Wales,152.928677,-31.459587 +2020,11,7,1,New South Wales,150.010074,-36.579686 +2020,8,17,1,New South Wales,152.910694,-31.447017 +2021,7,9,1,New South Wales,153.559532,-28.393748 +2023,9,2,1,New South Wales,150.996088,-34.047767 +2021,3,29,1,New South Wales,150.616169,-34.43426 +2021,9,8,1,New South Wales,150.655487,-33.522609 +2021,4,22,1,New South Wales,150.605909,-34.432328 +2023,12,15,1,New South Wales,150.786096,-33.710257 +2021,5,7,1,New South Wales,150.604034,-34.427125 +2021,9,12,1,New South Wales,153.331312,-28.362476 +2021,8,24,1,New South Wales,150.607768,-34.44156 +2023,12,22,1,New South Wales,152.793234,-31.642307 +2021,6,11,1,New South Wales,150.518249,-34.453532 +2021,4,18,1,New South Wales,150.616466,-34.430344 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2021,3,21,1,New South Wales,150.517283,-34.45161 +2020,12,2,1,New South Wales,149.978195,-36.450213 +2021,7,6,1,New South Wales,150.842133,-34.070234 +2021,5,15,1,New South Wales,150.603561,-34.43532 +2023,6,14,1,New South Wales,152.919207,-31.474519 +2021,6,21,1,New South Wales,150.624527,-34.385387 +2023,10,14,1,New South Wales,152.372069,-31.920942 +2021,12,17,1,New South Wales,150.970802,-34.121228 +2022,9,20,1,New South Wales,152.91153,-30.17532 +2021,5,2,1,New South Wales,150.606587,-34.455863 +2023,3,22,1,New South Wales,153.184797,-28.925356 +2021,5,23,1,New South Wales,150.522247,-34.464828 +2022,2,14,1,New South Wales,152.90797,-31.468387 +2021,4,20,1,New South Wales,150.610338,-34.418955 +2022,7,19,1,New South Wales,153.398373,-28.261128 +2021,6,19,1,New South Wales,150.618878,-34.436206 +2023,3,23,1,New South Wales,152.69692,-31.480755 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2021,6,24,1,New South Wales,150.600046,-34.418194 +2022,6,15,1,New South Wales,153.103822,-29.485608 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2020,1,12,1,New South Wales,152.359003,-31.924406 +2023,7,30,1,New South Wales,153.093329,-29.488546 +2022,11,29,1,New South Wales,152.105595,-32.727871 +2021,6,1,1,New South Wales,150.517986,-34.446973 +2020,12,20,1,New South Wales,153.104289,-29.489615 +2021,5,1,1,New South Wales,150.60481,-34.427384 +2021,6,11,1,New South Wales,150.521698,-34.46534 +2020,3,27,1,New South Wales,152.92886,-31.4595 +2021,4,26,1,New South Wales,150.638277,-34.420048 +2021,6,17,1,New South Wales,150.520848,-34.465755 +2021,9,4,1,New South Wales,153.096011,-29.484824 +2021,6,24,1,New South Wales,150.604997,-34.43762 +2020,12,15,1,New South Wales,153.278038,-28.937203 +2021,6,9,1,New South Wales,150.630786,-34.420651 +2021,5,1,1,New South Wales,150.609646,-34.436386 +2021,10,14,1,New South Wales,153.296795,-28.889779 +2021,7,2,1,New South Wales,149.353038,-36.155701 +2020,4,3,1,New South Wales,152.807462,-31.125284 +2021,3,21,1,New South Wales,150.517018,-34.446214 +2020,10,13,1,New South Wales,149.718566,-33.857114 +2022,8,21,1,New South Wales,153.103795,-29.485585 +2022,12,3,1,New South Wales,150.821259,-34.101929 +2022,6,27,1,New South Wales,152.944311,-30.389981 +2022,11,9,1,New South Wales,152.893248,-31.458012 +2021,3,8,1,New South Wales,150.514896,-34.445873 +2022,9,29,1,New South Wales,150.890156,-34.01746 +2020,5,11,1,New South Wales,152.812053,-31.285018 +2023,10,30,1,New South Wales,152.505486,-32.053775 +2022,3,20,1,New South Wales,152.056954,-32.737563 +2024,7,12,1,New South Wales,153.434446,-28.980816 +2021,5,22,1,New South Wales,150.607315,-34.432626 +2020,11,7,1,New South Wales,150.007338,-36.56122 +2020,8,26,1,New South Wales,150.796982,-33.473775 +2023,6,6,1,New South Wales,152.934505,-28.945503 +2024,2,11,1,New South Wales,150.782593,-33.719424 +2020,6,21,1,New South Wales,150.659256,-33.527026 +2021,7,17,1,New South Wales,153.212338,-28.825764 +2021,3,2,1,New South Wales,150.636229,-34.485767 +2020,10,18,1,New South Wales,149.921178,-36.633581 +2024,5,19,1,New South Wales,153.053324,-30.445093 +2022,1,22,1,New South Wales,150.616009,-34.439125 +2021,12,10,1,New South Wales,150.940432,-34.114645 +2021,8,26,1,New South Wales,150.533158,-34.497197 +2023,10,25,1,New South Wales,150.786198,-33.707259 +2022,4,21,1,New South Wales,152.910172,-31.45807 +2023,1,31,1,New South Wales,149.563961,-33.689184 +2023,12,12,1,New South Wales,152.929582,-31.458613 +2021,6,30,1,New South Wales,150.522053,-34.4655 +2021,8,19,1,New South Wales,149.350694,-36.154319 +2022,8,6,1,New South Wales,150.884315,-34.018617 +2022,7,26,1,New South Wales,153.334647,-28.813771 +2020,9,8,1,New South Wales,152.914453,-31.485158 +2022,9,21,1,New South Wales,153.583032,-28.861422 +2021,4,18,1,New South Wales,150.627548,-34.385833 +2022,2,10,1,New South Wales,152.912999,-31.468778 +2020,10,12,1,New South Wales,152.858679,-29.312652 +2022,1,30,1,New South Wales,150.617351,-34.439764 +2023,1,30,1,New South Wales,150.890522,-33.993426 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2021,9,15,1,New South Wales,150.610291,-34.454979 +2020,11,10,1,New South Wales,152.929788,-31.476379 +2021,1,27,1,New South Wales,153.549025,-28.634338 +2020,11,2,1,New South Wales,149.915309,-36.574566 +2021,5,23,1,New South Wales,150.616038,-34.435059 +2021,6,12,1,New South Wales,150.644046,-34.396268 +2022,1,30,1,New South Wales,152.999358,-28.524623 +2020,4,15,1,New South Wales,153.103786,-29.485589 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2023,9,24,1,New South Wales,153.395282,-28.959963 +2020,11,26,1,New South Wales,152.914641,-31.436683 +2021,4,26,1,New South Wales,150.610433,-34.419056 +2021,4,16,1,New South Wales,150.612956,-34.430564 +2022,4,13,1,New South Wales,151.042,-29.66 +2020,7,24,1,New South Wales,152.921342,-31.446905 +2023,10,18,1,New South Wales,152.890444,-31.446958 +2020,11,30,1,New South Wales,153.608837,-28.687614 +2021,4,27,1,New South Wales,150.6102,-34.419195 +2021,6,20,1,New South Wales,150.604336,-34.42302 +2022,11,16,1,New South Wales,153.309506,-28.851012 +2021,5,22,1,New South Wales,150.597962,-34.427917 +2021,4,26,1,New South Wales,150.635575,-34.418255 +2021,5,10,1,New South Wales,150.518613,-34.451529 +2024,2,14,1,New South Wales,149.343932,-33.48096 +2022,9,16,1,New South Wales,153.396186,-29.095797 +2020,1,14,1,New South Wales,153.110632,-29.490269 +2020,10,6,1,New South Wales,150.616081,-33.448338 +2022,6,27,1,New South Wales,152.907333,-31.470442 +2021,6,22,1,New South Wales,150.625643,-34.386698 +2024,1,26,1,New South Wales,150.784668,-33.712525 +2021,8,7,1,New South Wales,150.816508,-34.091934 +2021,2,26,1,New South Wales,150.634442,-34.485435 +2021,11,8,1,New South Wales,152.059137,-32.738104 +2021,5,28,1,New South Wales,150.600022,-34.425127 +2021,9,12,1,New South Wales,153.101306,-29.489988 +2021,10,18,1,New South Wales,153.095115,-29.489437 +2023,3,9,1,New South Wales,153.393908,-28.960305 +2021,5,20,1,New South Wales,150.630293,-34.395308 +2021,7,8,1,New South Wales,150.641453,-34.395668 +2021,10,1,1,New South Wales,153.450746,-28.92872 +2023,12,3,1,New South Wales,153.095727,-29.490535 +2022,12,3,1,New South Wales,152.353525,-31.92625 +2022,9,28,1,New South Wales,151.738435,-30.481454 +2020,5,4,1,New South Wales,150.06308,-34.90234 +2021,9,10,1,New South Wales,150.645216,-34.394108 +2023,6,24,1,New South Wales,149.933771,-36.681231 +2022,4,4,1,New South Wales,152.910618,-31.465413 +2020,10,30,1,New South Wales,149.96897,-36.58553 +2021,5,3,1,New South Wales,150.611404,-34.419715 +2020,6,14,1,New South Wales,153.475241,-28.689402 +2021,6,2,1,New South Wales,150.637837,-34.490892 +2022,6,27,1,New South Wales,150.840277,-34.077271 +2021,6,18,1,New South Wales,150.520432,-34.465828 +2023,2,6,1,New South Wales,152.913786,-31.468743 +2021,6,23,1,New South Wales,152.074343,-32.747654 +2021,9,14,1,New South Wales,150.518811,-34.440048 +2020,4,2,1,New South Wales,152.753459,-31.71872 +2021,7,8,1,New South Wales,150.627424,-34.421433 +2022,11,1,1,New South Wales,149.374462,-36.167586 +2021,6,9,1,New South Wales,150.604204,-34.437956 +2021,5,27,1,New South Wales,150.526652,-34.469353 +2021,5,10,1,New South Wales,150.615811,-34.435019 +2023,2,14,1,New South Wales,153.256332,-28.88355 +2021,5,3,1,New South Wales,151.506959,-30.511997 +2022,11,24,1,New South Wales,150.799298,-34.213206 +2023,4,3,1,New South Wales,153.110474,-29.490269 +2020,1,1,1,New South Wales,153.303792,-28.890141 +2021,10,5,1,New South Wales,152.89175,-31.459003 +2020,9,22,1,New South Wales,152.006224,-32.728775 +2021,1,12,1,New South Wales,152.064009,-32.708626 +2020,4,23,1,New South Wales,153.323257,-28.893976 +2021,6,5,1,New South Wales,150.608855,-34.435108 +2021,4,20,1,New South Wales,150.610333,-34.419126 +2021,7,11,1,New South Wales,150.597286,-34.410125 +2021,4,25,1,New South Wales,150.635333,-34.420261 +2021,2,25,1,New South Wales,152.91475,-31.485522 +2021,5,9,1,New South Wales,150.615125,-34.435393 +2022,11,21,1,New South Wales,152.784299,-30.842983 +2021,5,16,1,New South Wales,150.524113,-34.462829 +2021,4,24,1,New South Wales,151.717435,-32.662279 +2020,5,14,1,New South Wales,150.685179,-34.352882 +2021,10,11,1,New South Wales,153.563539,-28.3813 +2023,7,5,1,New South Wales,150.785322,-33.715611 +2021,11,15,1,New South Wales,152.112039,-32.76175 +2021,6,3,1,New South Wales,150.62433,-34.388106 +2024,7,5,1,New South Wales,150.862965,-29.608586 +2021,7,22,1,New South Wales,150.641376,-34.395693 +2021,5,2,1,New South Wales,150.608884,-34.436398 +2022,8,31,1,New South Wales,153.345447,-28.809458 +2023,8,3,1,New South Wales,152.210152,-31.560833 +2021,10,23,1,New South Wales,150.861976,-34.037772 +2022,10,5,1,New South Wales,153.103656,-29.485814 +2021,5,14,1,New South Wales,150.600894,-34.42774 +2020,10,26,1,New South Wales,153.44585,-28.591357 +2021,6,15,1,New South Wales,150.520519,-34.465821 +2021,1,7,1,New South Wales,153.103784,-29.485464 +2020,11,2,1,New South Wales,149.977333,-36.564828 +2021,10,16,1,New South Wales,151.844528,-32.711474 +2021,5,29,1,New South Wales,150.521589,-34.465707 +2021,4,1,1,New South Wales,150.525493,-34.459936 +2021,5,14,1,New South Wales,150.523892,-34.464041 +2021,6,16,1,New South Wales,150.604813,-34.427303 +2023,10,28,1,Queensland,153.059241,-27.557712 +2022,6,24,1,New South Wales,152.564844,-28.330518 +2020,10,25,1,New South Wales,153.556055,-28.399735 +2021,5,13,1,New South Wales,150.62781,-34.397369 +2021,4,13,1,New South Wales,150.609113,-34.42031 +2020,10,8,1,New South Wales,153.28537,-28.987066 +2020,10,24,1,New South Wales,149.991891,-36.579679 +2023,9,26,1,New South Wales,152.901874,-30.522681 +2020,11,21,1,New South Wales,150.847233,-34.068362 +2022,12,7,1,New South Wales,151.853723,-32.791439 +2020,9,23,1,New South Wales,153.085892,-28.536314 +2021,5,26,1,New South Wales,150.632006,-34.387786 +2021,4,17,1,New South Wales,150.808618,-34.098147 +2023,9,27,1,New South Wales,150.785862,-33.708246 +2021,4,12,1,New South Wales,150.604136,-34.438793 +2021,5,15,1,New South Wales,150.629092,-34.395086 +2021,7,1,1,New South Wales,150.641098,-34.396283 +2021,10,26,1,New South Wales,150.617742,-34.438663 +2022,8,2,1,New South Wales,150.792484,-34.144268 +2020,10,29,1,New South Wales,149.958519,-36.587122 +2020,8,10,1,New South Wales,153.327395,-28.818892 +2023,9,28,1,New South Wales,152.910328,-31.470538 +2020,10,28,1,New South Wales,149.958519,-36.587122 +2021,10,11,1,New South Wales,153.629186,-28.639841 +2021,7,24,1,New South Wales,150.602902,-34.419909 +2021,5,21,1,New South Wales,150.598631,-34.428516 +2023,9,15,1,New South Wales,152.613306,-30.348298 +2022,11,25,1,New South Wales,152.794854,-30.893434 +2022,10,9,1,New South Wales,150.841516,-34.063478 +2021,8,5,1,New South Wales,150.645046,-34.398613 +2022,6,25,1,New South Wales,152.928233,-31.459579 +2021,8,16,1,New South Wales,153.081018,-28.580764 +2024,3,26,1,New South Wales,149.650137,-33.113703 +2021,7,21,1,New South Wales,150.630223,-34.42092 +2023,9,27,1,New South Wales,153.45051,-28.711329 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2022,11,27,1,New South Wales,152.777302,-30.885013 +2020,9,22,1,New South Wales,152.900377,-31.443546 +2023,3,2,1,New South Wales,152.926283,-31.458852 +2021,5,3,1,New South Wales,150.525301,-34.459445 +2023,10,28,1,New South Wales,151.075099,-29.746351 +2021,3,29,1,New South Wales,150.659164,-34.459072 +2021,5,29,1,New South Wales,150.604902,-34.437889 +2021,6,8,1,New South Wales,150.838139,-34.09259 +2021,6,11,1,New South Wales,150.627179,-34.385808 +2021,4,3,1,New South Wales,150.522853,-34.450957 +2021,11,1,1,New South Wales,152.975268,-28.500347 +2020,2,22,1,New South Wales,153.556034,-28.399486 +2023,7,10,1,New South Wales,150.786995,-33.705878 +2021,8,7,1,New South Wales,150.606634,-34.437066 +2021,6,28,1,New South Wales,150.631533,-34.388381 +2022,8,31,1,New South Wales,153.411379,-29.014939 +2021,6,18,1,New South Wales,150.602597,-34.425276 +2023,1,10,1,New South Wales,152.064443,-32.709018 +2022,11,19,1,New South Wales,150.95177,-33.947266 +2020,1,7,1,New South Wales,153.103849,-29.485566 +2021,5,31,1,New South Wales,150.61597,-34.437826 +2021,5,31,1,New South Wales,150.518237,-34.446581 +2023,4,25,1,New South Wales,153.103865,-29.489535 +2021,3,24,1,New South Wales,150.532825,-34.481153 +2020,4,9,1,New South Wales,153.109418,-29.490627 +2021,6,9,1,New South Wales,150.528104,-34.457023 +2021,4,26,1,New South Wales,150.609511,-34.418948 +2020,9,15,1,New South Wales,153.395157,-28.275076 +2021,4,26,1,New South Wales,150.609511,-34.418948 +2021,8,10,1,New South Wales,150.52208,-34.466051 +2020,10,27,1,New South Wales,153.367603,-28.818638 +2021,6,2,1,New South Wales,150.519603,-34.45521 +2021,5,10,1,New South Wales,150.517125,-34.447758 +2020,12,13,1,New South Wales,153.092774,-29.49413 +2020,5,12,1,New South Wales,153.35792,-29.401221 +2021,5,27,1,New South Wales,150.516266,-34.44921 +2021,6,8,1,New South Wales,150.604092,-34.438053 +2023,1,30,1,New South Wales,152.811467,-29.51499 +2022,11,19,1,New South Wales,152.797565,-30.915154 +2023,6,8,1,New South Wales,152.064461,-32.706824 +2021,7,31,1,New South Wales,150.651046,-34.400694 +2023,9,8,1,New South Wales,153.072034,-28.56689 +2023,5,3,1,New South Wales,152.84034,-31.593195 +2023,6,11,1,New South Wales,150.785102,-33.716282 +2021,7,1,1,New South Wales,150.626448,-34.390527 +2022,10,2,1,New South Wales,152.928719,-31.459191 +2020,8,31,1,New South Wales,150.821928,-34.101151 +2021,3,9,1,New South Wales,153.104031,-29.485366 +2022,3,18,1,New South Wales,153.103886,-29.489591 +2020,10,26,1,New South Wales,152.080846,-32.722426 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2021,7,30,1,New South Wales,150.627674,-34.386377 +2021,5,30,1,New South Wales,150.522812,-34.452345 +2021,6,24,1,New South Wales,150.605649,-34.437263 +2021,4,21,1,New South Wales,150.63272,-34.392957 +2021,6,21,1,New South Wales,150.519515,-34.46333 +2021,5,9,1,New South Wales,150.639179,-34.491585 +2020,10,6,1,New South Wales,152.815969,-31.563824 +2023,12,3,1,New South Wales,150.785894,-33.704017 +2021,4,21,1,New South Wales,150.632983,-34.392863 +2022,11,9,1,New South Wales,152.875238,-31.458037 +2024,4,22,1,New South Wales,152.392849,-31.977079 +2020,1,3,1,New South Wales,152.017532,-32.732613 +2021,5,31,1,New South Wales,150.63132,-34.420229 +2022,11,18,1,New South Wales,152.797565,-30.915154 +2021,9,8,1,New South Wales,152.821558,-30.912042 +2022,1,21,1,New South Wales,152.912507,-31.429663 +2023,2,27,1,New South Wales,150.827643,-34.15646 +2021,5,9,1,New South Wales,150.632734,-34.418318 +2021,4,27,1,New South Wales,150.637524,-34.488488 +2021,12,12,1,New South Wales,150.617298,-34.439745 +2021,5,11,1,New South Wales,150.605513,-34.427524 +2021,11,19,1,New South Wales,152.38251,-31.9159 +2021,3,18,1,New South Wales,150.137736,-31.180584 +2021,5,23,1,New South Wales,150.659147,-34.457737 +2021,6,23,1,New South Wales,150.644348,-34.39365 +2021,3,4,1,New South Wales,150.518825,-34.446584 +2024,3,6,1,New South Wales,152.920583,-31.449626 +2023,9,14,1,New South Wales,153.556968,-28.397401 +2024,7,23,1,New South Wales,151.84826,-32.799571 +2021,3,11,1,New South Wales,150.533007,-34.475711 +2023,5,30,1,New South Wales,152.190265,-31.594077 +2021,8,28,1,New South Wales,153.593108,-28.797493 +2021,9,4,1,New South Wales,150.645077,-34.398686 +2020,11,25,1,New South Wales,153.279241,-28.839565 +2020,1,25,1,New South Wales,153.103342,-29.48725 +2020,,,1,New South Wales,153.440827,-28.982484 +2024,1,5,1,New South Wales,150.786193,-33.706245 +2021,6,8,1,New South Wales,150.518056,-34.457107 +2022,3,20,1,New South Wales,153.557586,-28.394686 +2021,10,17,1,New South Wales,153.450482,-28.638721 +2024,4,10,1,New South Wales,153.07168,-30.887705 +2021,5,30,1,New South Wales,150.523988,-34.452693 +2022,3,27,1,New South Wales,146.594753,-34.773332 +2021,9,3,1,New South Wales,152.06845,-32.71973 +2023,10,10,1,New South Wales,152.34591,-32.298768 +2021,6,18,1,New South Wales,150.60385,-34.426734 +2024,3,22,1,New South Wales,152.371277,-31.92352 +2023,9,6,1,New South Wales,152.292394,-31.611878 +2022,11,16,1,New South Wales,153.00805,-30.23166 +2023,8,10,1,New South Wales,153.110286,-29.490161 +2020,12,16,1,New South Wales,150.89266,-33.991958 +2021,6,11,1,New South Wales,150.515858,-34.447164 +2022,7,20,1,New South Wales,152.909528,-31.466054 +2021,5,13,1,New South Wales,150.628814,-34.389545 +2024,1,2,1,New South Wales,150.988359,-34.03627 +2021,7,21,1,New South Wales,150.66003,-34.455735 +2020,8,25,1,New South Wales,152.006267,-32.72873 +2021,4,14,1,New South Wales,152.11459,-32.779102 +2022,8,14,1,New South Wales,153.155464,-28.532129 +2020,5,18,1,New South Wales,153.092083,-29.488136 +2021,9,2,1,New South Wales,150.516515,-34.440795 +2023,1,26,1,New South Wales,152.063805,-32.706607 +2024,4,23,1,New South Wales,152.514058,-31.950012 +2021,2,21,1,New South Wales,152.063543,-32.706122 +2020,1,9,1,New South Wales,150.89266,-33.99196 +2021,9,11,1,New South Wales,153.397897,-28.259715 +2020,11,2,1,New South Wales,149.958519,-36.587122 +2023,2,20,1,New South Wales,152.563604,-31.975751 +2021,5,2,1,New South Wales,150.637599,-34.488525 +2021,10,11,1,New South Wales,153.55705,-28.397447 +2021,6,12,1,New South Wales,150.521366,-34.459266 +2024,6,2,1,New South Wales,151.056697,-29.739233 +2022,11,18,1,New South Wales,152.794854,-30.893434 +2020,9,21,1,New South Wales,153.376753,-28.875831 +2023,10,25,1,New South Wales,150.725531,-34.188759 +2022,11,17,1,New South Wales,152.794854,-30.893434 +2021,8,14,1,New South Wales,153.081228,-28.59283 +2021,5,27,1,New South Wales,150.517154,-34.453762 +2021,6,26,1,New South Wales,152.911259,-31.470447 +2020,10,30,1,New South Wales,149.976368,-36.555504 +2021,4,20,1,New South Wales,152.863565,-31.299415 +2021,7,8,1,New South Wales,150.662174,-34.45418 +2023,1,21,1,New South Wales,152.869656,-31.393213 +2021,7,8,1,New South Wales,150.513212,-34.447236 +2021,4,29,1,New South Wales,150.616192,-34.436153 +2024,8,22,1,New South Wales,152.805718,-31.675783 +2023,2,18,1,New South Wales,153.103752,-29.485585 +2021,10,14,1,New South Wales,153.104444,-29.482751 +2021,9,19,1,New South Wales,153.618366,-28.642822 +2021,5,9,1,New South Wales,150.521299,-34.435392 +2022,8,12,1,New South Wales,150.516168,-34.469778 +2021,4,27,1,New South Wales,150.616838,-34.429503 +2024,4,18,1,New South Wales,150.862909,-29.611714 +2021,2,23,1,New South Wales,150.632834,-34.483615 +2021,7,12,1,New South Wales,150.522747,-34.464117 +2023,1,20,1,New South Wales,153.091039,-29.487756 +2022,6,8,1,New South Wales,152.133659,-30.11224 +2021,3,28,1,New South Wales,150.525449,-34.459953 +2023,11,8,1,New South Wales,153.104031,-29.485137 +2022,4,24,1,New South Wales,153.102846,-29.489433 +2021,6,21,1,New South Wales,150.519346,-34.462065 +2021,5,18,1,New South Wales,150.607954,-34.43656 +2024,6,5,1,New South Wales,150.44063,-34.469484 +2024,2,14,1,New South Wales,152.915047,-31.446344 +2021,6,18,1,New South Wales,150.618243,-34.435193 +2020,9,13,1,New South Wales,152.067952,-32.723551 +2021,8,8,1,New South Wales,150.643661,-34.403815 +2021,6,19,1,New South Wales,150.519008,-34.438564 +2021,6,24,1,New South Wales,150.657603,-34.45613 +2023,12,21,1,New South Wales,152.909979,-30.505785 +2021,10,11,1,New South Wales,153.421868,-28.820583 +2021,4,28,1,New South Wales,150.634626,-34.420284 +2021,10,14,1,New South Wales,151.580448,-32.863373 +2021,6,1,1,New South Wales,151.655273,-32.688545 +2022,2,8,1,New South Wales,152.902021,-31.448275 +2021,4,27,1,New South Wales,150.619998,-34.400914 +2020,11,2,1,New South Wales,149.977333,-36.564828 +2020,1,24,1,New South Wales,151.58005,-32.64283 +2020,11,6,1,New South Wales,153.293102,-28.864616 +2023,12,5,1,New South Wales,151.739332,-32.067098 +2024,1,18,1,New South Wales,150.658886,-33.526945 +2023,12,9,1,New South Wales,153.108113,-29.490255 +2022,11,18,1,New South Wales,152.794854,-30.893434 +2023,8,31,1,New South Wales,153.314983,-28.949201 +2022,2,13,1,New South Wales,152.882581,-31.459139 +2022,11,21,1,New South Wales,152.794854,-30.893434 +2020,11,12,1,New South Wales,150.007338,-36.56122 +2021,8,14,1,New South Wales,151.819164,-31.994786 +2021,4,16,1,New South Wales,150.615636,-34.431193 +2022,12,16,1,New South Wales,152.872105,-31.286301 +2023,9,29,1,New South Wales,153.306243,-29.055077 +2021,9,11,1,New South Wales,152.35312,-31.92302 +2021,4,28,1,New South Wales,150.064169,-33.775998 +2021,10,11,1,New South Wales,153.459962,-28.952373 +2022,12,31,1,New South Wales,153.314983,-28.949201 +2021,5,3,1,New South Wales,150.626035,-34.39014 +2021,6,4,1,New South Wales,153.394732,-28.960694 +2020,11,2,1,New South Wales,153.224314,-28.647513 +2023,7,31,1,New South Wales,153.314983,-28.949201 +2021,12,16,1,New South Wales,153.108205,-29.490208 +2023,8,21,1,New South Wales,153.10813,-29.490213 +2021,10,24,1,New South Wales,150.618884,-34.436377 +2021,4,19,1,New South Wales,150.637454,-34.421465 +2021,6,18,1,New South Wales,150.51375,-34.446337 +2021,7,27,1,New South Wales,150.518246,-34.43744 +2020,12,25,1,New South Wales,152.066564,-32.713391 +2020,7,27,1,New South Wales,153.085229,-28.535988 +2021,7,4,1,New South Wales,150.643742,-34.394711 +2021,7,5,1,New South Wales,150.513123,-34.445846 +2023,9,7,1,New South Wales,152.973345,-30.418587 +2024,3,23,1,New South Wales,152.92819,-31.458556 +2023,11,15,1,New South Wales,152.925424,-31.453888 +2021,7,11,1,New South Wales,150.513059,-34.447242 +2023,9,21,1,New South Wales,150.787301,-33.706853 +2024,8,20,1,New South Wales,152.381369,-32.029779 +2020,10,6,1,New South Wales,152.826214,-31.543812 +2021,7,11,1,New South Wales,150.631634,-34.387121 +2023,4,1,1,New South Wales,153.610336,-28.721583 +2021,3,28,1,New South Wales,153.298493,-28.81679 +2021,6,15,1,New South Wales,150.623287,-34.385787 +2022,3,8,1,New South Wales,153.560036,-28.841696 +2022,10,5,1,New South Wales,152.359276,-31.958138 +2021,4,29,1,New South Wales,150.616358,-34.398869 +2021,7,3,1,New South Wales,150.59752,-34.415233 +2020,2,21,1,New South Wales,153.322384,-28.953942 +2020,12,8,1,New South Wales,151.698911,-30.478856 +2021,3,26,1,New South Wales,149.547784,-33.623333 +2020,9,24,1,New South Wales,152.905358,-31.442862 +2021,7,18,1,New South Wales,150.62457,-34.386154 +2023,4,18,1,New South Wales,152.983236,-30.421928 +2023,5,16,1,New South Wales,153.09011,-29.486005 +2021,7,13,1,New South Wales,150.521014,-34.46529 +2023,1,2,1,New South Wales,152.784261,-31.630309 +2021,3,6,1,New South Wales,150.515048,-34.459084 +2021,4,30,1,New South Wales,150.636324,-34.421804 +2021,5,14,1,New South Wales,150.637334,-34.423798 +2023,3,11,1,New South Wales,153.394678,-28.95969 +2021,4,24,1,New South Wales,150.626585,-34.396056 +2021,4,11,1,New South Wales,150.660295,-34.458336 +2020,4,14,1,New South Wales,152.873293,-31.467175 +2021,8,15,1,New South Wales,152.090193,-32.738962 +2021,4,18,1,New South Wales,150.617091,-34.430545 +2022,8,6,1,New South Wales,152.930261,-31.456145 +2020,7,6,1,New South Wales,153.103859,-29.485585 +2022,11,19,1,New South Wales,152.794854,-30.893434 +2020,6,3,1,New South Wales,150.059885,-33.778799 +2020,10,23,1,New South Wales,153.404587,-28.972241 +2021,11,9,1,New South Wales,152.904969,-31.466083 +2021,7,28,1,New South Wales,150.520581,-34.465209 +2021,10,5,1,New South Wales,153.292968,-28.805609 +2021,4,24,1,New South Wales,150.606784,-34.434473 +2020,6,5,1,New South Wales,150.872102,-34.040711 +2023,1,7,1,New South Wales,153.28759,-29.041176 +2022,9,19,1,New South Wales,152.90829,-30.17149 +2021,12,3,1,New South Wales,150.589332,-33.462578 +2021,5,10,1,New South Wales,150.639463,-34.491951 +2021,5,11,1,New South Wales,150.627118,-34.398771 +2022,6,14,1,New South Wales,152.139095,-32.735486 +2022,11,28,1,New South Wales,152.063828,-32.706746 +2022,12,19,1,New South Wales,153.103924,-29.478366 +2020,11,3,1,New South Wales,152.775955,-31.506722 +2021,4,21,1,New South Wales,150.515916,-34.449996 +2021,6,3,1,New South Wales,150.604949,-34.427107 +2020,12,10,1,New South Wales,152.415866,-31.933496 +2020,11,6,1,New South Wales,153.292217,-28.856146 +2021,3,24,1,New South Wales,150.615498,-34.435671 +2021,6,2,1,New South Wales,150.636993,-34.488387 +2023,12,14,1,New South Wales,152.857656,-31.544439 +2024,3,8,1,New South Wales,150.784742,-33.708256 +2020,5,18,1,New South Wales,152.40417,-31.94582 +2023,2,3,1,New South Wales,153.071943,-30.887517 +2021,1,26,1,New South Wales,150.087135,-33.774893 +2023,6,8,1,New South Wales,153.279661,-28.831073 +2021,5,15,1,New South Wales,150.614896,-34.433892 +2020,10,28,1,New South Wales,149.984303,-36.560469 +2020,7,10,1,New South Wales,150.840082,-34.0668 +2021,6,24,1,New South Wales,150.627347,-34.420296 +2021,1,14,1,New South Wales,152.139095,-32.735486 +2021,10,15,1,New South Wales,150.813678,-34.104761 +2022,2,10,1,New South Wales,153.279696,-28.678852 +2021,4,6,1,New South Wales,150.606812,-34.429677 +2021,5,16,1,New South Wales,150.628678,-34.395132 +2021,5,17,1,New South Wales,150.630052,-34.395384 +2020,2,27,1,New South Wales,151.985731,-32.751428 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2020,11,2,1,New South Wales,149.967242,-36.561675 +2022,4,29,1,New South Wales,153.298208,-28.825805 +2021,6,2,1,New South Wales,150.616529,-34.438062 +2020,11,11,1,New South Wales,152.865519,-31.271386 +2021,8,1,1,New South Wales,150.517324,-34.448032 +2021,9,19,1,New South Wales,150.650089,-34.403407 +2023,11,9,1,New South Wales,152.40798,-31.932795 +2021,6,19,1,New South Wales,150.520481,-34.465631 +2020,5,27,1,New South Wales,149.962098,-36.44151 +2021,4,29,1,New South Wales,153.491585,-28.677649 +2024,1,29,1,New South Wales,150.785955,-33.709634 +2021,11,26,1,New South Wales,153.302724,-28.844725 +2023,5,24,1,New South Wales,150.838978,-34.053416 +2020,11,27,1,New South Wales,153.556379,-28.399966 +2024,1,28,1,New South Wales,152.298857,-31.945396 +2021,11,19,1,New South Wales,151.995551,-32.740523 +2020,5,26,1,New South Wales,153.104063,-29.4853 +2022,4,13,1,New South Wales,153.110586,-29.489867 +2020,9,4,1,New South Wales,153.093581,-29.488779 +2023,12,26,1,New South Wales,152.122807,-32.096155 +2021,3,14,1,New South Wales,150.233122,-33.711138 +2020,2,17,1,New South Wales,153.332351,-28.813621 +2024,3,26,1,New South Wales,150.834515,-34.073845 +2022,1,18,1,New South Wales,153.523666,-28.38674 +2020,1,1,1,New South Wales,153.104667,-29.489636 +2021,9,15,1,New South Wales,151.914825,-31.793452 +2023,11,10,1,New South Wales,152.901357,-31.473757 +2021,5,4,1,New South Wales,150.611799,-34.419596 +2021,3,10,1,New South Wales,150.607283,-34.430336 +2022,7,1,1,New South Wales,146.529813,-34.746415 +2021,3,2,1,New South Wales,150.658856,-34.45647 +2022,7,24,1,New South Wales,153.103784,-29.485529 +2021,2,21,1,New South Wales,153.107545,-29.490138 +2023,7,9,1,New South Wales,152.78993,-31.637334 +2021,5,24,1,New South Wales,150.597139,-34.42855 +2023,6,7,1,New South Wales,150.885391,-34.066471 +2022,9,10,1,New South Wales,152.914314,-31.484727 +2021,5,10,1,New South Wales,151.615346,-32.642844 +2020,2,28,1,New South Wales,153.61121,-28.674873 +2021,7,19,1,New South Wales,150.976926,-34.086171 +2021,8,23,1,New South Wales,153.104208,-29.477735 +2022,9,8,1,New South Wales,152.794359,-31.126555 +2024,8,7,1,New South Wales,152.374059,-31.949133 +2021,6,29,1,New South Wales,153.108215,-29.490245 +2021,4,28,1,New South Wales,150.609555,-34.41893 +2021,4,27,1,New South Wales,150.602031,-34.425653 +2020,11,1,1,New South Wales,149.967242,-36.561675 +2021,8,29,1,New South Wales,150.643218,-34.395927 +2021,6,1,1,New South Wales,150.52454,-34.463829 +2021,11,12,1,New South Wales,153.283377,-28.830775 +2023,8,2,1,New South Wales,152.028909,-32.191262 +2021,5,30,1,New South Wales,150.516156,-34.447765 +2023,8,10,1,New South Wales,151.301493,-30.587496 +2022,11,27,1,New South Wales,153.242496,-28.648123 +2020,10,10,1,New South Wales,153.006896,-30.420651 +2021,4,23,1,New South Wales,150.615371,-34.430944 +2021,3,24,1,New South Wales,150.525472,-34.459926 +2021,1,10,1,New South Wales,152.063978,-32.706538 +2021,11,1,1,New South Wales,151.706476,-32.684018 +2021,4,27,1,New South Wales,150.616245,-34.435821 +2023,8,13,1,New South Wales,152.901147,-30.500156 +2024,9,4,1,New South Wales,152.702666,-30.298502 +2022,11,21,1,New South Wales,153.2897,-28.75957 +2020,2,25,1,New South Wales,153.298364,-28.818059 +2021,6,17,1,New South Wales,150.604782,-34.42723 +2021,10,19,1,New South Wales,152.869823,-30.881917 +2023,10,5,1,New South Wales,152.41473,-31.93297 +2021,5,21,1,New South Wales,150.617125,-34.433548 +2023,11,4,1,New South Wales,152.403593,-31.928286 +2022,11,1,1,New South Wales,151.077021,-33.147148 +2021,5,26,1,New South Wales,150.598008,-34.425943 +2021,4,29,1,New South Wales,150.517011,-34.446088 +2021,4,18,1,New South Wales,152.405107,-31.920313 +2020,10,31,1,New South Wales,149.967242,-36.561675 +2023,9,5,1,New South Wales,153.316393,-28.827525 +2020,2,21,1,New South Wales,153.322384,-28.953942 +2021,4,20,1,New South Wales,150.604614,-34.424739 +2021,6,3,1,New South Wales,150.639439,-34.399605 +2020,3,1,1,New South Wales,152.186532,-32.713173 +2023,7,12,1,New South Wales,153.318036,-28.827209 +2021,5,6,1,New South Wales,150.616303,-34.435696 +2020,12,10,1,New South Wales,153.095207,-29.483465 +2023,8,30,1,New South Wales,150.834555,-34.073921 +2023,4,25,1,New South Wales,153.630114,-28.637403 +2022,8,17,1,New South Wales,153.411653,-28.955029 +2023,2,9,1,New South Wales,150.184395,-34.562316 +2022,6,15,1,New South Wales,150.885017,-34.014328 +2021,2,23,1,New South Wales,150.614411,-34.432575 +2020,11,26,1,New South Wales,153.451854,-28.671784 +2020,9,5,1,New South Wales,153.319157,-28.916787 +2021,5,5,1,New South Wales,150.627106,-34.389566 +2022,1,28,1,New South Wales,152.830824,-29.81019 +2022,6,7,1,New South Wales,152.488711,-32.032221 +2021,3,19,1,New South Wales,150.813678,-34.104761 +2021,10,3,1,New South Wales,153.10821,-29.49025 +2021,7,15,1,New South Wales,150.627239,-34.421042 +2023,1,7,1,New South Wales,153.103822,-29.484861 +2021,8,18,1,New South Wales,153.565884,-28.387113 +2021,5,12,1,New South Wales,150.605694,-34.427681 +2024,1,30,1,New South Wales,150.78558,-33.710168 +2021,12,12,1,New South Wales,153.103876,-29.484903 +2020,10,12,1,New South Wales,153.409381,-28.871817 +2020,4,2,1,New South Wales,152.788456,-31.696462 +2023,9,12,1,New South Wales,150.755722,-34.191742 +2023,7,30,1,New South Wales,152.787346,-31.635736 +2021,6,21,1,New South Wales,152.077083,-32.722708 +2021,4,28,1,New South Wales,150.619243,-34.400719 +2020,7,4,1,New South Wales,150.101991,-33.775135 +2020,10,21,1,New South Wales,152.359003,-31.924406 +2023,11,3,1,New South Wales,152.370526,-31.923032 +2020,5,31,1,New South Wales,153.029678,-29.194282 +2020,10,20,1,New South Wales,152.04058,-32.735846 +2021,5,6,1,New South Wales,150.627301,-34.389985 +2021,5,29,1,New South Wales,150.515822,-34.44875 +2021,4,16,1,New South Wales,152.867847,-29.66721 +2023,7,30,1,New South Wales,152.91127,-31.441732 +2024,1,18,1,New South Wales,153.108017,-29.490404 +2022,4,5,1,New South Wales,153.401969,-28.260365 +2020,12,27,1,New South Wales,150.377621,-33.713011 +2021,6,3,1,New South Wales,150.606294,-34.450889 +2024,3,22,1,New South Wales,152.383387,-31.920923 +2020,5,11,1,New South Wales,153.111333,-29.46469 +2023,2,5,1,New South Wales,150.836991,-34.073711 +2023,7,2,1,New South Wales,153.073874,-30.886238 +2023,9,17,1,New South Wales,151.932749,-32.240126 +2022,8,7,1,New South Wales,150.838524,-34.063823 +2021,11,12,1,New South Wales,152.894119,-31.446332 +2021,10,23,1,New South Wales,150.928579,-33.958262 +2024,5,15,1,New South Wales,152.181442,-31.957561 +2020,10,10,1,New South Wales,149.941793,-36.651646 +2023,6,17,1,New South Wales,153.103886,-29.485436 +2021,8,26,1,New South Wales,152.856111,-31.46544 +2021,9,19,1,New South Wales,150.650143,-34.403444 +2021,6,4,1,New South Wales,150.522357,-34.464776 +2021,5,30,1,New South Wales,150.630962,-34.388198 +2021,11,12,1,New South Wales,153.113632,-28.631257 +2023,9,22,1,New South Wales,150.985375,-34.090657 +2021,5,16,1,New South Wales,150.520602,-34.453832 +2023,5,11,1,New South Wales,150.028318,-36.532196 +2021,5,22,1,New South Wales,150.631149,-34.388112 +2021,6,4,1,New South Wales,150.623815,-34.389024 +2021,9,4,1,New South Wales,150.645045,-34.398658 +2021,7,21,1,New South Wales,150.517398,-34.448466 +2021,9,11,1,New South Wales,151.045771,-34.029025 +2021,4,30,1,New South Wales,150.616807,-34.399535 +2023,9,9,1,New South Wales,153.070235,-30.885558 +2021,9,6,1,New South Wales,152.781441,-30.191822 +2023,3,4,1,New South Wales,152.069356,-32.707602 +2020,1,17,1,New South Wales,151.76491,-32.63767 +2021,1,26,1,New South Wales,152.915946,-31.48169 +2020,6,11,1,New South Wales,153.426477,-28.87809 +2023,6,30,1,New South Wales,150.263389,-31.116816 +2022,11,29,1,New South Wales,152.794854,-30.893434 +2021,7,13,1,New South Wales,153.45545,-28.651328 +2022,11,19,1,New South Wales,152.794854,-30.893434 +2023,8,11,1,New South Wales,151.689549,-32.686954 +2021,8,2,1,New South Wales,150.518406,-34.4372 +2021,7,2,1,New South Wales,150.523,-34.466214 +2024,9,21,2,New South Wales,146.578625,-34.767703 +2020,1,2,1,New South Wales,153.287936,-28.686572 +2020,4,2,1,New South Wales,150.102412,-33.77867 +2022,8,1,1,New South Wales,153.109396,-29.49046 +2022,9,14,1,New South Wales,150.823674,-34.150166 +2020,4,9,1,New South Wales,152.664512,-30.203358 +2020,8,26,1,New South Wales,152.912464,-31.431369 +2021,8,22,1,New South Wales,153.336244,-28.8161 +2021,3,9,1,New South Wales,150.519301,-34.448153 +2022,11,17,1,New South Wales,152.792848,-31.640725 +2023,10,14,1,New South Wales,152.37838,-31.918271 +2023,2,19,1,New South Wales,153.307837,-28.849617 +2021,3,7,1,New South Wales,150.523687,-34.465443 +2021,6,10,1,New South Wales,150.518218,-34.453478 +2021,3,24,1,New South Wales,150.534634,-34.46223 +2021,4,28,1,New South Wales,150.602916,-34.435425 +2021,6,13,1,New South Wales,150.520497,-34.454074 +2020,9,27,1,New South Wales,152.900364,-31.436311 +2021,6,20,1,New South Wales,150.657039,-34.454487 +2021,4,6,1,New South Wales,150.634188,-34.488639 +2023,3,3,1,New South Wales,152.919855,-31.469033 +2020,5,26,1,New South Wales,153.103484,-29.488139 +2023,2,12,1,New South Wales,153.230526,-28.830629 +2020,10,10,1,New South Wales,152.848879,-29.339319 +2023,2,15,1,New South Wales,152.916885,-31.454109 +2021,6,12,1,New South Wales,150.630173,-34.420783 +2021,3,31,1,New South Wales,150.515932,-34.446525 +2021,6,16,1,New South Wales,150.608471,-34.430647 +2023,5,18,1,New South Wales,153.10975,-29.490199 +2024,1,5,1,New South Wales,152.9214,-30.50416 +2021,9,26,1,New South Wales,153.394144,-28.959727 +2023,12,30,1,New South Wales,153.105201,-29.489788 +2023,9,26,1,New South Wales,150.722098,-34.314732 +2020,2,18,1,New South Wales,152.899746,-31.466668 +2021,7,17,1,New South Wales,150.516096,-34.446844 +2021,5,4,1,New South Wales,153.280652,-28.68319 +2020,9,12,1,New South Wales,152.06635,-32.712685 +2023,8,23,1,New South Wales,153.547463,-28.676052 +2021,5,24,1,New South Wales,150.605009,-34.432608 +2021,3,23,1,New South Wales,150.607942,-34.422108 +2020,11,21,1,New South Wales,150.82411,-34.150311 +2022,11,28,1,New South Wales,152.794854,-30.893434 +2022,5,12,1,New South Wales,151.775894,-32.574766 +2021,4,30,1,New South Wales,150.616443,-34.436122 +2021,6,3,1,New South Wales,150.604735,-34.427338 +2020,2,4,1,New South Wales,152.924873,-31.44384 +2023,3,14,1,New South Wales,149.944869,-36.572615 +2024,6,14,1,New South Wales,152.86125,-31.144333 +2021,4,19,1,New South Wales,150.637457,-34.421745 +2021,5,29,1,New South Wales,150.52161,-34.465735 +2022,1,7,1,New South Wales,150.617162,-34.439156 +2023,10,30,1,New South Wales,152.357065,-31.981248 +2022,4,17,1,New South Wales,152.114072,-32.764939 +2022,10,18,1,New South Wales,152.87778,-31.434325 +2021,5,6,1,New South Wales,150.609085,-34.420544 +2021,3,23,1,New South Wales,150.615216,-34.435647 +2021,5,8,1,New South Wales,150.628133,-34.389793 +2022,10,7,1,New South Wales,150.80858,-34.079579 +2023,4,13,1,New South Wales,151.720227,-32.903614 +2021,6,27,1,New South Wales,153.558596,-28.394529 +2022,5,10,1,New South Wales,152.929008,-31.450184 +2021,2,17,1,New South Wales,152.068045,-32.712151 +2021,5,24,1,New South Wales,150.61697,-34.435204 +2022,6,29,1,New South Wales,149.345255,-36.160568 +2021,5,21,1,New South Wales,150.607723,-34.43322 +2020,8,12,1,New South Wales,152.877363,-31.447447 +2023,10,17,1,New South Wales,152.926763,-31.471934 +2021,6,23,1,New South Wales,150.60368,-34.438766 +2020,10,4,1,New South Wales,153.366858,-28.851685 +2021,6,20,1,New South Wales,150.639175,-34.392757 +2021,5,20,1,New South Wales,150.53011,-34.470965 +2020,10,14,1,New South Wales,153.548753,-28.726548 +2023,10,29,1,New South Wales,152.01404,-32.667342 +2022,10,13,1,New South Wales,153.275153,-28.813955 +2021,3,21,1,New South Wales,150.635914,-34.488051 +2021,5,2,1,New South Wales,150.617488,-34.399702 +2021,5,6,1,New South Wales,150.603914,-34.427132 +2020,1,10,1,New South Wales,150.83898,-34.05342 +2023,3,24,1,New South Wales,149.562103,-33.4937 +2021,4,2,1,New South Wales,150.635375,-34.488626 +2023,10,29,1,New South Wales,152.911729,-31.44531 +2021,9,27,1,New South Wales,152.378708,-31.914293 +2021,3,19,1,New South Wales,150.80858,-34.079579 +2021,10,18,1,New South Wales,153.095115,-29.489437 +2023,11,30,1,New South Wales,150.88723,-33.251643 +2021,2,12,1,New South Wales,153.471538,-28.632652 +2021,8,23,1,New South Wales,150.521916,-34.464596 +2021,7,11,1,New South Wales,150.631423,-34.388018 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2021,6,21,1,New South Wales,150.596971,-34.450382 +2021,5,3,1,New South Wales,150.526014,-34.457774 +2021,4,14,1,New South Wales,150.520644,-34.464174 +2021,6,9,1,New South Wales,150.527695,-34.456879 +2020,12,2,1,New South Wales,150.062109,-33.774038 +2021,8,4,1,New South Wales,150.632604,-34.418306 +2021,6,11,1,New South Wales,150.613279,-34.432607 +2021,6,16,1,New South Wales,150.630223,-34.420947 +2021,7,24,1,New South Wales,150.630818,-34.42067 +2023,9,25,1,New South Wales,153.221964,-28.868818 +2021,5,1,1,New South Wales,150.526304,-34.46455 +2021,6,18,1,New South Wales,150.618347,-34.435348 +2024,6,20,1,New South Wales,152.924126,-31.473213 +2023,8,17,1,New South Wales,150.785747,-33.712649 +2021,9,29,1,New South Wales,153.101279,-29.48975 +2020,9,16,1,New South Wales,153.607389,-28.687767 +2023,10,9,1,New South Wales,153.098152,-29.489274 +2022,10,18,1,New South Wales,152.87778,-31.434325 +2023,9,10,1,New South Wales,153.104315,-29.480439 +2022,12,1,1,New South Wales,153.293232,-28.86456 +2021,7,4,1,New South Wales,149.62228,-33.543308 +2023,8,6,1,New South Wales,150.841815,-34.060288 +2020,11,,1,New South Wales,152.927995,-31.457568 +2023,5,28,1,New South Wales,152.987135,-29.030312 +2021,11,15,1,New South Wales,152.90916,-31.448576 +2021,5,1,1,New South Wales,150.634791,-34.423695 +2020,1,6,1,New South Wales,152.503231,-29.092827 +2020,9,15,1,New South Wales,153.002583,-29.182206 +2021,8,7,1,New South Wales,150.632604,-34.418306 +2022,10,11,1,New South Wales,153.308213,-28.823247 +2023,9,9,1,New South Wales,153.099761,-29.491529 +2022,9,16,1,New South Wales,153.103817,-29.484936 +2021,5,13,1,New South Wales,150.520344,-34.454071 +2023,11,28,1,New South Wales,152.925258,-31.45418 +2021,7,30,1,New South Wales,150.632585,-34.41973 +2022,11,20,1,New South Wales,152.794854,-30.893434 +2023,1,7,1,New South Wales,152.973995,-28.530409 +2021,5,30,1,New South Wales,150.517416,-34.441615 +2021,5,20,1,New South Wales,150.607347,-34.433032 +2021,4,22,1,New South Wales,150.604586,-34.422665 +2022,1,21,1,New South Wales,153.08973,-28.598067 +2023,3,31,1,New South Wales,153.314983,-28.949201 +2020,11,11,1,New South Wales,150.063013,-33.777296 +2023,3,16,1,New South Wales,153.302218,-28.847331 +2021,7,19,1,New South Wales,150.304449,-33.325293 +2021,6,25,1,New South Wales,150.645633,-34.391646 +2020,10,28,1,New South Wales,153.339182,-28.872021 +2022,8,19,1,New South Wales,153.10416,-29.482115 +2021,5,16,1,New South Wales,150.520479,-34.453938 +2021,7,7,1,New South Wales,150.516338,-34.447868 +2021,4,23,1,New South Wales,150.63025,-34.388744 +2020,3,31,1,New South Wales,150.02093,-34.80854 +2023,8,24,1,New South Wales,153.420144,-29.018727 +2021,10,,1,New South Wales,149.406876,-36.250309 +2022,8,18,1,New South Wales,153.165825,-29.305723 +2021,6,18,1,New South Wales,150.519063,-34.459877 +2022,8,2,1,New South Wales,153.30278,-28.817457 +2021,10,12,1,New South Wales,150.778378,-34.139613 +2021,5,9,1,New South Wales,150.604976,-34.42691 +2020,3,28,1,New South Wales,150.127277,-35.062989 +2020,10,26,1,New South Wales,149.984095,-36.575978 +2021,8,26,1,New South Wales,152.373563,-31.915901 +2021,7,6,1,New South Wales,150.51453,-34.446443 +2020,10,30,1,New South Wales,149.984095,-36.575978 +2022,10,29,1,New South Wales,153.044217,-30.912587 +2021,4,21,1,New South Wales,150.61028,-34.419089 +2020,10,28,1,New South Wales,149.984095,-36.575978 +2021,9,29,1,New South Wales,153.300335,-28.82356 +2022,11,25,1,New South Wales,153.185174,-28.923013 +2021,9,11,1,New South Wales,151.042791,-34.024321 +2023,5,1,1,New South Wales,153.394206,-28.95915 +2021,3,10,1,New South Wales,150.514445,-34.446017 +2022,12,30,1,New South Wales,153.278306,-28.934723 +2024,1,24,1,New South Wales,150.785282,-33.711778 +2022,11,18,1,New South Wales,152.793528,-31.642546 +2023,9,25,1,New South Wales,153.104122,-29.480444 +2020,3,15,1,New South Wales,150.791179,-34.140905 +2023,9,27,1,New South Wales,153.491504,-28.671454 +2023,9,4,1,New South Wales,152.924261,-31.464557 +2021,5,8,1,New South Wales,150.621382,-34.397749 +2021,4,19,1,New South Wales,150.630873,-34.394039 +2021,6,3,1,New South Wales,150.639407,-34.399595 +2021,5,21,1,New South Wales,150.615077,-34.431335 +2021,5,27,1,New South Wales,150.639094,-34.491493 +2021,5,6,1,New South Wales,150.639083,-34.491511 +2022,3,30,1,New South Wales,153.325737,-28.883842 +2021,4,20,1,New South Wales,150.610291,-34.41908 +2020,8,23,1,New South Wales,150.784263,-34.276055 +2021,5,8,1,New South Wales,150.516102,-34.447755 +2021,7,26,1,New South Wales,150.522457,-34.465815 +2023,1,26,1,New South Wales,153.301419,-28.823212 +2021,10,31,1,New South Wales,152.966901,-31.253271 +2020,7,21,1,New South Wales,152.300422,-31.948252 +2023,5,2,1,New South Wales,152.900319,-31.474216 +2022,2,24,1,New South Wales,153.289504,-28.67706 +2021,6,29,1,New South Wales,150.62738,-34.420305 +2023,7,12,1,New South Wales,153.104557,-29.477376 +2021,5,1,1,New South Wales,150.618763,-34.429523 +2023,8,17,1,New South Wales,153.514459,-28.2398 +2020,10,10,1,New South Wales,149.955028,-36.650407 +2021,8,8,1,New South Wales,153.574456,-28.365997 +2022,11,4,1,New South Wales,153.335751,-28.819626 +2021,8,21,1,New South Wales,152.374047,-31.913202 +2021,1,28,1,New South Wales,153.32037,-28.843373 +2022,4,9,1,New South Wales,153.110501,-29.490161 +2021,5,6,1,New South Wales,150.637279,-34.423797 +2023,4,8,1,New South Wales,153.430653,-29.016187 +2021,7,2,1,New South Wales,150.522946,-34.466222 +2021,4,21,1,New South Wales,150.617048,-34.433583 +2023,7,1,1,New South Wales,152.661161,-28.610492 +2020,11,10,1,New South Wales,152.749856,-30.210355 +2021,4,28,1,New South Wales,150.609391,-34.418972 +2021,5,3,1,New South Wales,153.102561,-29.488041 +2021,4,21,1,New South Wales,150.638872,-34.419383 +2021,7,11,1,New South Wales,150.513058,-34.447296 +2021,5,4,1,New South Wales,150.6373,-34.423842 +2020,6,4,1,New South Wales,153.531976,-28.638162 +2021,10,7,1,New South Wales,150.659547,-34.354778 +2022,12,24,1,New South Wales,152.071229,-32.7091 +2020,10,10,1,New South Wales,149.941793,-36.651646 +2021,5,13,1,New South Wales,150.522386,-34.465255 +2020,5,19,1,New South Wales,153.103833,-29.485566 +2021,10,25,1,New South Wales,153.091849,-29.48813 +2022,9,7,1,New South Wales,153.418449,-28.591399 +2020,10,12,1,New South Wales,153.103725,-29.485737 +2020,5,,1,New South Wales,152.011194,-32.315304 +2022,7,29,1,New South Wales,153.447181,-28.636135 +2023,5,25,1,New South Wales,150.75978,-34.26555 +2022,4,7,1,New South Wales,153.303635,-28.839872 +2020,9,17,1,New South Wales,150.16788,-31.22944 +2023,9,10,1,New South Wales,152.033432,-32.748493 +2022,5,27,1,New South Wales,153.103693,-29.485758 +2021,5,6,1,New South Wales,150.627396,-34.390077 +2023,7,21,1,New South Wales,150.785155,-33.709453 +2022,6,27,1,New South Wales,152.836071,-31.532957 +2021,5,10,1,New South Wales,150.639317,-34.491696 +2020,6,12,1,New South Wales,153.329782,-28.822269 +2024,9,5,2,New South Wales,153.015765,-30.379068 +2022,12,18,1,New South Wales,151.751141,-30.483565 +2023,10,26,1,New South Wales,150.785132,-33.709474 +2024,9,15,2,New South Wales,150.937159,-29.726114 +2021,6,16,1,New South Wales,150.515334,-34.46046 +2021,3,30,1,New South Wales,150.52547,-34.45998 +2021,6,10,1,New South Wales,150.518283,-34.453488 +2023,4,16,1,New South Wales,153.426177,-28.62832 +2020,4,6,1,New South Wales,153.37193,-29.08315 +2023,10,25,1,New South Wales,152.89726,-31.41529 +2021,10,5,1,New South Wales,153.525734,-28.685552 +2021,6,7,1,New South Wales,150.86069,-34.076756 +2020,10,3,1,New South Wales,153.285223,-28.815115 +2020,2,20,1,New South Wales,152.061388,-32.709662 +2023,7,28,1,New South Wales,150.78398,-33.717635 +2020,1,8,1,New South Wales,153.104262,-29.482153 +2023,11,1,1,New South Wales,152.903644,-31.113865 +2021,6,2,1,New South Wales,150.613995,-34.437255 +2021,6,23,1,New South Wales,150.519872,-34.46304 +2022,10,26,1,New South Wales,153.557137,-28.397324 +2021,4,30,1,New South Wales,150.635434,-34.419785 +2021,2,23,1,New South Wales,152.118095,-32.76419 +2022,9,10,1,New South Wales,152.352281,-31.926205 +2021,7,5,1,New South Wales,150.63071,-34.389807 +2021,6,2,1,New South Wales,150.603787,-34.437687 +2023,10,17,1,New South Wales,150.785118,-33.713868 +2021,7,26,1,New South Wales,150.518009,-34.438851 +2021,4,17,1,New South Wales,150.838978,-34.053416 +2024,8,17,1,New South Wales,151.624176,-32.647053 +2022,4,6,1,New South Wales,150.13794,-31.13819 +2021,10,31,1,New South Wales,152.204862,-30.095476 +2022,11,19,1,New South Wales,152.769456,-30.916275 +2020,4,5,1,New South Wales,153.079295,-29.070677 +2022,10,19,1,New South Wales,149.33336,-33.432002 +2022,6,21,1,New South Wales,152.679161,-28.38948 +2022,8,31,1,New South Wales,153.103961,-29.48531 +2022,11,25,1,New South Wales,153.017126,-30.374914 +2022,2,7,1,New South Wales,153.277461,-28.67595 +2021,6,15,1,New South Wales,150.516111,-34.459204 +2020,12,28,1,New South Wales,153.017126,-30.374914 +2023,7,27,1,New South Wales,153.21011,-28.928314 +2022,12,28,1,New South Wales,146.587798,-34.768008 +2023,10,18,1,New South Wales,153.027007,-30.407831 +2021,6,14,1,New South Wales,150.5161,-34.459222 +2023,12,19,1,New South Wales,150.785202,-33.705726 +2023,12,8,1,New South Wales,151.058657,-29.740227 +2021,4,20,1,New South Wales,150.610246,-34.419124 +2021,6,9,1,New South Wales,150.630917,-34.420635 +2024,1,17,1,New South Wales,152.924348,-31.45954 +2022,7,29,1,New South Wales,152.810319,-31.149497 +2021,2,18,1,New South Wales,153.104197,-29.479332 +2021,3,18,1,New South Wales,150.609758,-34.430519 +2021,9,27,1,New South Wales,150.549897,-34.462307 +2023,6,21,1,New South Wales,153.465978,-28.716027 +2020,11,15,1,New South Wales,152.918202,-31.485223 +2021,6,14,1,New South Wales,150.520304,-34.453962 +2021,6,21,1,New South Wales,150.639175,-34.39273 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2023,6,21,1,New South Wales,151.058613,-29.7403 +2021,7,12,1,New South Wales,150.663406,-34.45488 +2020,12,14,1,New South Wales,153.231893,-28.889765 +2021,6,4,1,New South Wales,150.519611,-34.455318 +2023,8,21,1,New South Wales,153.09717,-29.486879 +2021,5,3,1,New South Wales,150.632717,-34.418912 +2021,10,5,1,New South Wales,153.104391,-29.477235 +2021,8,10,1,New South Wales,152.755283,-31.632616 +2023,8,13,1,New South Wales,152.065485,-32.711058 +2021,8,10,1,New South Wales,150.603716,-34.426091 +2021,7,24,1,New South Wales,150.517487,-34.444736 +2021,5,23,1,New South Wales,150.527525,-34.469272 +2024,1,14,1,New South Wales,152.097222,-28.721083 +2021,5,15,1,New South Wales,150.516236,-34.449128 +2023,3,16,1,New South Wales,153.370132,-28.950323 +2021,7,6,1,New South Wales,150.522183,-34.465882 +2024,1,10,1,New South Wales,150.990148,-34.024625 +2021,6,21,1,New South Wales,150.513087,-34.445954 +2020,2,2,1,New South Wales,149.35486,-36.18352 +2021,3,29,1,New South Wales,150.526142,-34.458245 +2021,6,1,1,New South Wales,153.429213,-29.031125 +2021,5,6,1,New South Wales,150.627225,-34.389974 +2021,5,22,1,New South Wales,150.51579,-34.450949 +2022,11,5,1,New South Wales,153.293305,-28.864429 +2023,8,25,1,New South Wales,150.78539,-33.714207 +2020,12,12,1,New South Wales,151.739807,-30.477681 +2022,9,20,1,New South Wales,153.305197,-28.821686 +2020,4,15,1,New South Wales,153.309927,-28.845355 +2021,6,15,1,New South Wales,150.612157,-34.431504 +2020,8,19,1,New South Wales,150.826181,-34.092443 +2021,11,30,1,New South Wales,150.813678,-34.104761 +2022,10,2,1,New South Wales,152.32559,-32.097185 +2021,8,21,1,New South Wales,150.551525,-34.352874 +2022,8,6,1,New South Wales,152.99617,-30.383883 +2024,2,7,1,New South Wales,150.78455,-33.710245 +2023,7,31,1,New South Wales,153.017865,-28.430159 +2024,4,3,1,New South Wales,152.415576,-31.940637 +2021,2,26,1,New South Wales,150.611681,-34.419531 +2021,5,17,1,New South Wales,150.523976,-34.463763 +2021,11,12,1,New South Wales,153.103897,-29.485272 +2022,12,23,1,New South Wales,152.921058,-31.473832 +2020,5,27,1,New South Wales,149.962098,-36.44151 +2021,5,15,1,New South Wales,150.633209,-34.418444 +2023,3,5,1,New South Wales,153.394037,-29.020033 +2021,4,28,1,New South Wales,150.604798,-34.4526 +2020,8,26,1,New South Wales,153.427208,-28.229862 +2021,5,18,1,New South Wales,150.523909,-34.463834 +2021,6,20,1,New South Wales,150.623306,-34.383966 +2021,6,16,1,New South Wales,150.52071,-34.465645 +2021,4,11,1,New South Wales,150.533367,-34.480857 +2021,4,28,1,New South Wales,150.624572,-34.388805 +2021,8,30,1,New South Wales,150.643896,-34.393488 +2023,7,12,1,New South Wales,150.786864,-33.708407 +2020,9,27,1,New South Wales,149.577506,-33.419281 +2021,5,26,1,New South Wales,150.602787,-34.434972 +2023,7,30,1,New South Wales,152.897239,-31.474786 +2023,12,7,1,New South Wales,153.109862,-29.490175 +2022,11,25,1,New South Wales,153.510594,-28.808559 +2020,7,27,1,New South Wales,152.9199,-31.46144 +2022,1,27,1,New South Wales,153.103795,-29.485566 +2023,1,28,1,New South Wales,153.202587,-28.882121 +2023,12,30,1,New South Wales,153.109288,-29.490871 +2021,5,25,1,New South Wales,150.516522,-34.450098 +2021,6,1,1,New South Wales,150.616395,-34.438204 +2021,4,29,1,New South Wales,150.615895,-34.436247 +2021,7,22,1,New South Wales,150.523911,-34.463375 +2021,4,25,1,New South Wales,150.638028,-34.419998 +2021,3,29,1,New South Wales,150.635328,-34.488743 +2021,1,21,1,New South Wales,151.905864,-32.193036 +2021,6,17,1,New South Wales,150.622556,-34.383951 +2020,8,21,1,New South Wales,153.388541,-28.31471 +2022,8,15,1,New South Wales,150.68425,-34.354355 +2021,7,12,1,New South Wales,153.276945,-28.931808 +2020,1,14,1,New South Wales,153.109969,-29.490172 +2023,9,5,1,New South Wales,153.315755,-28.826573 +2023,1,31,1,New South Wales,151.938478,-32.154128 +2023,6,22,1,New South Wales,153.316076,-28.81754 +2021,8,26,1,New South Wales,152.882512,-31.459671 +2020,11,26,1,New South Wales,153.109449,-29.490413 +2021,8,26,1,New South Wales,153.103666,-29.48579 +2020,8,20,1,New South Wales,153.32644,-28.62251 +2020,3,27,1,New South Wales,150.069922,-35.096731 +2022,11,29,1,New South Wales,153.472011,-28.264551 +2020,10,29,1,New South Wales,149.976368,-36.555504 +2021,5,20,1,New South Wales,150.600404,-34.428884 +2022,11,29,1,New South Wales,152.769456,-30.916275 +2021,11,9,1,New South Wales,152.915703,-31.451348 +2021,3,30,1,New South Wales,153.281284,-28.826273 +2021,7,13,1,New South Wales,150.626511,-34.385597 +2021,5,6,1,New South Wales,150.659008,-34.457653 +2021,5,28,1,New South Wales,150.639043,-34.491393 +2022,11,17,1,New South Wales,152.794854,-30.893434 +2020,4,15,1,New South Wales,152.929942,-29.726523 +2021,4,23,1,New South Wales,150.630376,-34.388539 +2022,11,19,1,New South Wales,152.794854,-30.893434 +2021,7,25,1,New South Wales,150.51663,-34.449037 +2021,6,29,1,New South Wales,150.596135,-34.411572 +2021,5,7,1,New South Wales,150.615127,-34.435321 +2021,12,30,1,New South Wales,150.075773,-31.041075 +2024,9,5,1,New South Wales,152.187934,-31.573591 +2020,11,6,1,New South Wales,153.104176,-29.485118 +2023,6,23,1,New South Wales,152.863085,-31.30097 +2022,11,25,1,New South Wales,153.373978,-28.851337 +2021,8,26,1,New South Wales,152.379013,-31.919738 +2022,10,6,1,New South Wales,152.787166,-31.63015 +2020,10,31,1,New South Wales,150.625201,-33.568445 +2021,9,23,1,New South Wales,150.641827,-34.394755 +2022,11,,1,New South Wales,152.794854,-30.893434 +2021,5,18,1,New South Wales,150.53101,-34.471073 +2023,10,2,1,New South Wales,150.784238,-33.717264 +2021,6,30,1,New South Wales,150.596588,-34.411329 +2021,5,13,1,New South Wales,153.401382,-28.260223 +2022,11,28,1,New South Wales,152.794854,-30.893434 +2021,5,6,1,New South Wales,150.519959,-34.435825 +2020,10,27,1,New South Wales,151.97042,-30.901413 +2021,3,1,1,New South Wales,150.616239,-34.434099 +2021,7,27,1,New South Wales,150.641469,-34.394721 +2021,7,4,1,New South Wales,150.525623,-34.465492 +2021,10,15,1,New South Wales,153.563264,-28.393411 +2020,8,16,1,New South Wales,153.104224,-29.479844 +2022,,,1,New South Wales,153.42936,-28.952428 +2021,6,5,1,New South Wales,150.639971,-34.397704 +2021,4,4,1,New South Wales,150.53374,-34.478926 +2021,5,12,1,New South Wales,150.656162,-34.459005 +2021,6,30,1,New South Wales,150.627123,-34.390513 +2021,5,23,1,New South Wales,150.639096,-34.49299 +2020,4,20,1,New South Wales,152.838289,-31.443537 +2021,12,12,1,New South Wales,153.317663,-28.824892 +2020,3,4,1,New South Wales,152.910451,-31.453918 +2021,8,11,1,New South Wales,150.522281,-34.464757 +2021,10,25,1,New South Wales,152.992853,-30.400937 +2023,1,22,1,New South Wales,153.101274,-29.489853 +2021,5,12,1,New South Wales,150.627788,-34.397387 +2021,7,21,1,New South Wales,150.603317,-34.41833 +2021,8,31,1,New South Wales,150.513093,-34.447216 +2021,6,6,1,New South Wales,150.616315,-34.436047 +2022,12,9,1,New South Wales,152.905555,-31.444529 +2023,5,29,1,New South Wales,153.559577,-28.393761 +2021,7,1,1,New South Wales,150.597446,-34.412869 +2021,5,5,1,New South Wales,150.62717,-34.389595 +2023,12,19,1,New South Wales,152.803234,-30.254708 +2020,7,27,1,New South Wales,153.489654,-28.66697 +2021,5,8,1,New South Wales,150.52144,-34.435774 +2020,12,9,1,New South Wales,153.502222,-28.251271 +2020,8,5,1,New South Wales,152.926095,-31.476858 +2021,10,27,1,New South Wales,153.415221,-28.672232 +2021,7,11,1,New South Wales,150.601884,-34.412514 +2020,10,29,1,New South Wales,149.96897,-36.58553 +2020,2,17,1,New South Wales,149.870381,-29.441584 +2023,4,26,1,New South Wales,153.248563,-28.764982 +2024,2,28,1,New South Wales,152.919764,-31.442821 +2021,2,28,1,New South Wales,150.615931,-34.433074 +2021,5,26,1,New South Wales,150.526611,-34.469623 +2021,6,20,1,New South Wales,150.513142,-34.445937 +2022,12,30,1,New South Wales,151.697867,-32.691981 +2021,6,29,1,New South Wales,150.627347,-34.420296 +2021,5,7,1,New South Wales,150.521222,-34.435788 +2023,11,18,1,New South Wales,153.095169,-29.483255 +2024,1,15,1,New South Wales,152.823148,-31.650337 +2021,4,30,1,New South Wales,150.635347,-34.419766 +2024,4,22,1,New South Wales,152.400438,-31.985428 +2023,9,12,1,New South Wales,150.785746,-34.189867 +2023,8,23,1,New South Wales,152.859604,-31.101405 +2020,1,27,1,New South Wales,149.498434,-36.09905 +2021,6,4,1,New South Wales,150.52161,-34.465735 +2021,7,9,1,New South Wales,150.598298,-34.412769 +2021,5,24,1,New South Wales,150.527498,-34.469469 +2021,6,26,1,New South Wales,150.627108,-34.386798 +2022,7,7,1,New South Wales,151.650275,-32.690809 +2023,8,25,1,New South Wales,153.103216,-29.489279 +2020,12,9,1,New South Wales,151.955971,-32.648007 +2021,7,11,1,New South Wales,150.601787,-34.412485 +2023,1,7,1,New South Wales,153.591191,-28.638053 +2023,2,10,1,New South Wales,150.673181,-35.048723 +2021,6,3,1,New South Wales,150.604213,-34.438002 +2021,4,21,1,New South Wales,150.636928,-34.485681 +2023,7,31,1,New South Wales,150.787695,-33.703492 +2020,9,11,1,New South Wales,152.881609,-31.447602 +2021,4,30,1,New South Wales,150.615956,-34.43641 +2020,1,7,1,New South Wales,153.286418,-29.025463 +2023,3,7,1,New South Wales,149.956571,-36.590303 +2020,7,21,1,New South Wales,151.968804,-32.428513 +2021,5,6,1,New South Wales,150.637212,-34.423877 +2023,9,22,1,New South Wales,151.847435,-32.726537 +2020,9,14,1,New South Wales,150.102546,-33.777258 +2021,7,4,1,New South Wales,150.513194,-34.445992 +2022,12,30,1,New South Wales,153.10115,-29.489951 +2022,12,21,1,New South Wales,150.840449,-34.078012 +2021,4,7,1,New South Wales,150.520291,-34.447407 +2020,7,18,1,New South Wales,149.559384,-33.531531 +2021,7,6,1,New South Wales,150.513806,-34.446275 +2022,2,1,1,New South Wales,152.103901,-32.759638 +2022,4,27,1,New South Wales,151.237597,-33.172732 +2021,5,7,1,New South Wales,150.62143,-34.397976 +2021,7,11,1,New South Wales,150.626938,-34.421298 +2022,1,17,1,New South Wales,153.099302,-29.490877 +2021,4,21,1,New South Wales,150.632657,-34.392883 +2024,8,3,1,New South Wales,151.733212,-32.721365 +2021,11,30,1,New South Wales,151.70833,-30.398845 +2021,6,14,1,New South Wales,150.623005,-34.385763 +2021,4,24,1,New South Wales,150.518324,-34.451379 +2020,2,16,1,New South Wales,150.044944,-35.134333 +2020,8,14,1,New South Wales,153.280046,-28.818329 +2021,6,3,1,New South Wales,150.522435,-34.465833 +2021,6,2,1,New South Wales,150.630784,-34.420714 +2021,6,26,1,New South Wales,150.514308,-34.447331 +2021,5,7,1,New South Wales,150.605555,-34.437884 +2023,1,11,1,New South Wales,153.095239,-29.483502 +2022,8,8,1,New South Wales,150.527609,-34.436748 +2020,11,28,1,New South Wales,153.109766,-29.490194 +2020,11,16,1,New South Wales,153.046222,-30.896823 +2021,6,27,1,New South Wales,152.066564,-32.713391 +2021,6,26,1,New South Wales,150.514236,-34.447212 +2020,12,16,1,New South Wales,152.876663,-31.46373 +2022,7,30,1,New South Wales,152.063956,-32.706625 +2021,6,10,1,New South Wales,150.521618,-34.465843 +2023,4,19,1,New South Wales,153.348793,-28.904888 +2022,8,4,1,New South Wales,150.793683,-34.218206 +2022,8,10,1,New South Wales,153.526358,-28.685405 +2022,4,28,1,New South Wales,153.110533,-29.490166 +2024,1,31,1,New South Wales,152.92659,-31.459778 +2021,5,17,1,New South Wales,150.613559,-34.431946 +2023,6,26,1,New South Wales,153.07216,-28.58481 +2021,4,24,1,New South Wales,150.637823,-34.485626 +2023,10,29,1,New South Wales,150.835694,-34.069805 +2024,8,31,1,New South Wales,150.790694,-34.147778 +2021,9,14,1,New South Wales,150.644198,-34.397064 +2021,4,13,1,New South Wales,150.873769,-34.035121 +2020,5,19,1,New South Wales,152.924557,-31.44445 +2020,10,10,1,New South Wales,149.941793,-36.651646 +2020,10,19,1,New South Wales,149.941399,-36.632151 +2022,1,7,1,New South Wales,150.617769,-34.440016 +2022,11,25,1,New South Wales,152.78933,-30.918792 +2020,11,12,1,New South Wales,150.01112,-36.547428 +2021,10,6,1,New South Wales,153.271235,-29.012361 +2021,5,14,1,New South Wales,150.629899,-34.395417 +2021,6,15,1,New South Wales,150.516345,-34.439538 +2020,4,23,1,New South Wales,153.321727,-28.894283 +2021,6,17,1,New South Wales,150.513794,-34.44632 +2020,11,10,1,New South Wales,152.927516,-31.457812 +2022,5,24,1,New South Wales,153.109712,-29.490147 +2020,11,20,1,New South Wales,153.506293,-28.238698 +2021,3,9,1,New South Wales,151.157008,-33.097989 +2021,3,24,1,New South Wales,150.604794,-34.439753 +2022,9,19,1,New South Wales,152.9088,-30.17185 +2021,11,23,1,New South Wales,152.037231,-32.731218 +2021,9,9,1,New South Wales,152.931186,-31.47065 +2020,11,20,1,New South Wales,150.674086,-33.546935 +2021,5,7,1,New South Wales,150.621507,-34.397968 +2023,11,22,1,New South Wales,152.930099,-31.461622 +2023,9,15,1,New South Wales,153.298463,-28.81848 +2021,9,27,1,New South Wales,152.014607,-32.666903 +2020,10,5,1,New South Wales,152.074143,-32.725131 +2023,9,29,1,New South Wales,153.62882,-28.637878 +2021,9,2,1,New South Wales,153.108199,-29.490259 +2020,10,29,1,New South Wales,149.958519,-36.587122 +2021,5,1,1,New South Wales,150.618107,-34.429645 +2021,7,11,1,New South Wales,150.643233,-34.395414 +2020,1,8,1,New South Wales,152.86634,-29.692017 +2021,5,3,1,New South Wales,150.638607,-34.490645 +2021,5,20,1,New South Wales,150.615175,-34.431364 +2022,6,23,1,New South Wales,153.067923,-28.58182 +2024,5,15,1,New South Wales,152.182816,-31.961599 +2021,6,17,1,New South Wales,150.519212,-34.459971 +2023,10,31,1,New South Wales,150.785422,-33.713891 +2022,6,5,1,New South Wales,153.315491,-28.819132 +2021,6,15,1,New South Wales,150.60333,-34.436929 +2023,6,9,1,New South Wales,150.838333,-34.09214 +2022,1,7,1,New South Wales,152.90422,-31.439189 +2020,11,16,1,New South Wales,153.104133,-29.485165 +2021,5,16,1,New South Wales,150.629025,-34.395148 +2022,10,22,1,New South Wales,152.314657,-31.924726 +2024,2,6,1,New South Wales,153.110951,-29.487523 +2023,9,11,1,New South Wales,152.894005,-30.551316 +2021,5,12,1,New South Wales,150.627777,-34.397378 +2020,9,22,1,New South Wales,152.50487,-32.069784 +2023,9,14,1,New South Wales,149.32161,-36.183184 +2021,9,13,1,New South Wales,153.461447,-28.919346 +2022,2,20,1,New South Wales,152.899776,-29.630491 +2020,11,30,1,New South Wales,153.314983,-28.949201 +2020,2,24,1,New South Wales,153.102679,-29.488144 +2020,9,2,1,New South Wales,151.671292,-32.664107 +2023,4,30,1,New South Wales,153.314983,-28.949201 +2023,12,1,1,New South Wales,150.784866,-33.716385 +2022,7,12,1,New South Wales,150.591274,-34.205152 +2020,11,30,1,New South Wales,153.314983,-28.949201 +2020,10,4,1,New South Wales,153.553525,-28.640579 +2020,12,8,1,New South Wales,152.902595,-31.441108 +2022,12,31,1,New South Wales,153.314983,-28.949201 +2021,6,1,1,New South Wales,150.605501,-34.437486 +2021,9,23,1,New South Wales,150.514333,-34.446511 +2024,8,22,1,New South Wales,152.401928,-31.850361 +2020,5,2,1,New South Wales,153.10298,-29.487037 +2020,10,19,1,New South Wales,153.3033,-28.821668 +2020,10,18,1,New South Wales,149.887989,-36.587028 +2021,6,21,1,New South Wales,150.597699,-34.450414 +2020,10,2,1,New South Wales,152.12561,-30.100682 +2020,10,16,1,New South Wales,149.887989,-36.587028 +2023,4,2,1,New South Wales,150.777581,-34.199629 +2020,5,13,1,New South Wales,153.441702,-28.983022 +2021,9,14,1,New South Wales,152.795265,-31.64814 +2021,5,14,1,New South Wales,150.520388,-34.454081 +2022,6,28,1,New South Wales,152.894704,-31.460778 +2021,5,10,1,New South Wales,150.624812,-34.399547 +2021,6,28,1,New South Wales,153.108221,-29.490231 +2023,1,19,1,New South Wales,151.80593,-32.682192 +2022,9,28,1,New South Wales,153.108156,-29.490371 +2023,4,4,1,New South Wales,151.527885,-30.518805 +2021,7,18,1,New South Wales,150.623202,-34.383802 +2023,12,20,1,New South Wales,150.786159,-33.706008 +2022,1,9,1,New South Wales,152.905454,-31.437546 +2021,4,26,1,New South Wales,150.609511,-34.418948 +2021,9,3,1,New South Wales,150.563856,-34.500349 +2021,4,28,1,New South Wales,150.603535,-34.427476 +2020,8,4,1,New South Wales,152.926095,-31.476858 +2021,6,13,1,New South Wales,150.516193,-34.446882 +2021,5,12,1,New South Wales,150.616992,-34.433645 +2021,4,28,1,New South Wales,150.601412,-34.426759 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2021,4,23,1,New South Wales,150.615678,-34.431248 +2021,6,9,1,New South Wales,150.51811,-34.44794 +2021,5,13,1,New South Wales,150.604159,-34.438001 +2021,7,3,1,New South Wales,150.627957,-34.390998 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2020,10,30,1,New South Wales,149.967242,-36.561675 +2023,9,28,1,New South Wales,153.404093,-28.913129 +2020,1,15,1,New South Wales,152.793051,-30.21858 +2022,1,26,1,New South Wales,152.81287,-31.576523 +2024,1,4,1,New South Wales,150.785134,-33.713566 +2021,7,10,1,New South Wales,150.626708,-34.421374 +2021,6,22,1,New South Wales,152.924801,-29.735136 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2021,5,8,1,New South Wales,150.516339,-34.447471 +2021,8,23,1,New South Wales,153.208094,-28.900565 +2023,10,8,1,New South Wales,150.756278,-34.3205 +2020,10,12,1,New South Wales,152.83709,-31.59299 +2021,8,5,1,New South Wales,150.645189,-34.398976 +2021,9,21,1,New South Wales,151.02349,-34.035977 +2021,5,8,1,New South Wales,150.518322,-34.451424 +2022,8,9,1,New South Wales,150.519033,-34.442781 +2020,6,1,1,New South Wales,153.1094,-30.29861 +2020,5,8,1,New South Wales,152.041806,-32.312586 +2020,10,29,1,New South Wales,149.984303,-36.560469 +2022,3,15,1,New South Wales,153.557446,-28.396942 +2020,10,29,1,New South Wales,149.943147,-36.549371 +2021,12,1,1,New South Wales,152.900839,-31.474068 +2020,11,24,1,New South Wales,153.342482,-28.805797 +2021,6,29,1,New South Wales,150.513072,-34.44717 +2022,8,2,1,New South Wales,150.795133,-34.143508 +2021,7,19,1,New South Wales,150.308938,-33.309603 +2023,6,29,1,New South Wales,153.593647,-28.711535 +2023,6,24,1,New South Wales,149.940238,-36.651821 +2022,11,19,1,New South Wales,152.928804,-31.455937 +2021,4,14,1,New South Wales,153.558228,-28.394156 +2023,9,28,1,New South Wales,153.27744,-28.940107 +2021,12,12,1,New South Wales,152.480034,-31.998586 +2022,10,1,1,New South Wales,153.108113,-29.490255 +2022,6,17,1,New South Wales,153.324396,-28.834072 +2023,12,12,1,New South Wales,153.094793,-30.299239 +2021,10,16,1,New South Wales,150.971233,-34.12137 +2021,6,19,1,New South Wales,150.056839,-33.765926 +2021,6,2,1,New South Wales,150.630817,-34.420715 +2020,2,29,1,New South Wales,153.314983,-28.949201 +2022,8,2,1,New South Wales,153.30278,-28.817457 +2021,4,29,1,New South Wales,150.638539,-34.489553 +2021,4,22,1,New South Wales,150.617115,-34.433539 +2021,3,1,1,New South Wales,150.520357,-34.447751 +2023,9,3,1,New South Wales,152.978394,-30.419761 +2024,2,14,1,New South Wales,150.782872,-33.719291 +2021,9,9,1,New South Wales,153.590651,-28.688792 +2023,11,2,1,New South Wales,152.189959,-32.223426 +2021,6,23,1,New South Wales,150.520413,-34.46572 +2021,9,8,1,New South Wales,150.804942,-34.111115 +2021,3,21,1,New South Wales,150.615444,-34.435661 +2021,6,29,1,New South Wales,150.057545,-33.763571 +2021,6,27,1,New South Wales,150.597668,-34.418436 +2021,10,30,1,New South Wales,150.615467,-34.437933 +2023,10,15,1,New South Wales,153.452439,-28.518941 +2021,9,13,1,New South Wales,150.638383,-34.403137 +2023,3,30,1,New South Wales,153.110039,-29.490259 +2020,12,2,1,New South Wales,152.359003,-31.924406 +2020,11,20,1,New South Wales,152.910635,-31.488169 +2023,8,11,1,New South Wales,150.824495,-34.15623 +2021,4,23,1,New South Wales,150.514341,-34.444744 +2021,7,20,1,New South Wales,150.517029,-34.448784 +2021,4,28,1,New South Wales,150.624151,-34.388697 +2021,6,20,1,New South Wales,150.639232,-34.39265 +2021,5,8,1,New South Wales,150.628102,-34.389721 +2024,5,29,1,New South Wales,152.797861,-31.145805 +2021,8,11,1,New South Wales,152.063754,-32.706607 +2021,3,6,1,New South Wales,150.523378,-34.454159 +2021,4,22,1,New South Wales,150.636854,-34.485238 +2020,11,4,1,New South Wales,149.945227,-36.57753 +2020,7,1,1,New South Wales,152.919799,-31.482764 +2021,5,13,1,New South Wales,150.655621,-34.458499 +2021,7,4,1,New South Wales,150.626999,-34.421082 +2022,5,12,1,New South Wales,153.110515,-29.490064 +2021,2,24,1,New South Wales,150.648892,-34.454304 +2021,5,22,1,New South Wales,150.515824,-34.450914 +2022,6,4,1,New South Wales,153.29881,-28.889997 +2021,5,26,1,New South Wales,150.619782,-34.439225 +2021,4,26,1,New South Wales,150.603014,-34.42551 +2021,6,14,1,New South Wales,150.614992,-34.431289 +2022,10,28,1,New South Wales,152.11736,-32.76438 +2021,6,17,1,New South Wales,150.622433,-34.384048 +2022,7,4,1,New South Wales,152.062822,-32.701038 +2021,4,7,1,New South Wales,150.52048,-34.447285 +2021,7,28,1,New South Wales,150.866027,-34.060984 +2020,4,27,1,New South Wales,152.743252,-31.257275 +2021,1,22,1,New South Wales,152.885035,-31.441169 +2023,8,12,1,New South Wales,150.787878,-33.70335 +2021,5,17,1,New South Wales,150.629832,-34.390061 +2022,6,10,1,New South Wales,152.093798,-31.403015 +2021,4,23,1,New South Wales,150.606517,-34.433918 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2021,10,23,1,New South Wales,153.510079,-28.810373 +2021,8,17,1,New South Wales,150.517837,-34.439884 +2021,1,23,1,New South Wales,152.09001,-32.733047 +2023,8,8,1,New South Wales,152.893735,-31.448292 +2020,6,4,1,New South Wales,150.996801,-33.994363 +2023,3,14,1,New South Wales,152.905432,-31.437735 +2023,11,3,1,New South Wales,149.521265,-33.54555 +2021,5,15,1,New South Wales,150.63728,-34.423788 +2023,10,4,1,New South Wales,152.921047,-31.481587 +2022,12,16,1,New South Wales,152.871508,-31.28482 +2021,6,2,1,New South Wales,150.630421,-34.42086 +2020,10,26,1,New South Wales,151.943636,-32.77124 +2022,9,4,1,New South Wales,152.913506,-31.455223 +2023,1,14,1,New South Wales,153.319712,-28.955977 +2020,11,10,1,New South Wales,152.873213,-31.457905 +2021,4,28,1,New South Wales,150.518052,-34.447704 +2021,5,23,1,New South Wales,150.639131,-34.492909 +2020,8,31,1,New South Wales,152.920871,-31.481563 +2020,10,19,1,New South Wales,149.941399,-36.632151 +2023,6,5,1,New South Wales,153.108108,-29.490283 +2024,2,6,1,New South Wales,153.110302,-29.490301 +2022,9,20,1,New South Wales,152.909815,-31.467296 +2023,4,28,1,New South Wales,153.354441,-28.891207 +2022,11,1,1,New South Wales,152.874732,-29.661227 +2021,10,6,1,New South Wales,152.886806,-31.44302 +2023,11,14,1,New South Wales,152.699727,-30.290446 +2021,5,19,1,New South Wales,150.519911,-34.45289 +2020,1,14,1,New South Wales,152.270246,-32.484725 +2022,9,24,1,New South Wales,153.455295,-28.651026 +2021,6,28,1,New South Wales,150.627368,-34.420314 +2020,10,14,1,New South Wales,153.521789,-28.683592 +2023,9,19,1,New South Wales,153.14999,-28.556389 +2023,12,12,1,New South Wales,152.907072,-31.444171 +2020,2,5,1,New South Wales,153.103826,-29.485159 +2020,5,9,1,New South Wales,150.809,-34.20866 +2021,1,7,1,New South Wales,153.101209,-29.490044 +2020,11,18,1,New South Wales,149.966791,-36.502277 +2021,5,12,1,New South Wales,150.605388,-34.42772 +2024,4,14,1,New South Wales,152.900359,-31.474155 +2024,2,12,1,New South Wales,152.921463,-31.452173 +2022,11,24,1,New South Wales,152.78933,-30.918792 +2021,5,28,1,New South Wales,150.631443,-34.386946 +2020,10,12,1,New South Wales,149.96634,-36.680336 +2021,7,19,1,New South Wales,150.516526,-34.447773 +2021,6,2,1,New South Wales,150.518658,-34.447816 +2021,6,6,1,New South Wales,150.519519,-34.456578 +2021,7,12,1,New South Wales,150.626343,-34.421169 +2022,2,1,1,New South Wales,152.93813,-30.4053 +2021,2,27,1,New South Wales,150.524297,-34.46212 +2023,6,16,1,New South Wales,149.855475,-33.660153 +2022,6,12,1,New South Wales,153.103291,-29.487565 +2022,8,5,1,New South Wales,150.7915,-34.218972 +2021,3,23,1,New South Wales,153.186783,-28.888915 +2022,5,9,1,New South Wales,146.580079,-34.766634 +2021,6,20,1,New South Wales,150.519877,-34.452583 +2022,11,28,1,New South Wales,152.769456,-30.916275 +2021,12,17,1,New South Wales,152.915585,-31.445958 +2020,10,22,1,New South Wales,153.103623,-29.485833 +2021,6,5,1,New South Wales,150.524022,-34.466271 +2021,11,16,1,New South Wales,152.82372,-29.810856 +2020,10,28,1,New South Wales,149.984303,-36.560469 +2020,3,6,1,New South Wales,152.92546,-31.47324 +2021,10,11,1,New South Wales,153.293074,-28.86465 +2020,5,30,1,New South Wales,151.682,-30.417 +2021,4,8,1,New South Wales,150.535295,-34.463433 +2023,2,12,1,New South Wales,153.077049,-29.450991 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2020,9,30,1,New South Wales,152.041096,-32.737608 +2021,10,28,1,New South Wales,152.872978,-29.664828 +2021,11,25,1,New South Wales,150.84497,-29.834378 +2023,10,17,1,New South Wales,152.065878,-32.707495 +2021,5,22,1,New South Wales,150.616671,-34.433449 +2022,9,20,1,New South Wales,152.900435,-31.45678 +2023,11,18,1,New South Wales,152.824566,-29.50457 +2023,5,17,1,New South Wales,152.37346,-31.914295 +2023,9,30,1,New South Wales,153.302888,-28.84369 +2023,1,10,1,New South Wales,152.782807,-31.631326 +2021,5,12,1,New South Wales,150.609127,-34.420608 +2023,1,27,1,New South Wales,152.964644,-31.202931 +2022,5,27,1,New South Wales,153.104562,-29.477333 +2022,9,16,1,New South Wales,153.396186,-29.095797 +2020,1,18,1,New South Wales,152.991128,-28.440359 +2020,2,10,1,New South Wales,150.89266,-33.99196 +2021,3,10,1,New South Wales,150.523256,-34.450929 +2021,5,20,1,New South Wales,150.633757,-34.418301 +2023,10,23,1,New South Wales,150.786187,-33.706016 +2021,6,10,1,New South Wales,150.517583,-34.447713 +2021,6,1,1,New South Wales,150.604747,-34.427311 +2021,5,12,1,New South Wales,150.522342,-34.46529 +2021,10,8,1,New South Wales,153.089624,-28.524436 +2020,7,1,1,New South Wales,152.990198,-28.623747 +2023,8,2,1,New South Wales,150.988852,-33.978217 +2020,7,30,1,New South Wales,153.104138,-29.48531 +2021,8,30,1,New South Wales,150.610982,-34.452505 +2023,1,8,1,New South Wales,152.06372,-32.706544 +2021,3,25,1,New South Wales,150.60516,-34.439129 +2023,10,5,1,New South Wales,150.786296,-33.705961 +2020,10,15,1,New South Wales,149.950035,-36.601015 +2022,10,5,1,New South Wales,152.993768,-30.411614 +2021,5,5,1,New South Wales,150.632816,-34.418878 +2020,4,6,1,New South Wales,152.913797,-31.478312 +2023,9,30,1,New South Wales,153.10122,-29.490091 +2020,9,19,1,New South Wales,153.104208,-29.479458 +2024,9,11,1,New South Wales,151.027295,-29.665515 +2021,5,19,1,New South Wales,150.844879,-29.834312 +2021,8,22,1,New South Wales,151.737838,-32.573656 +2023,2,26,1,New South Wales,153.096045,-29.484657 +2020,10,28,1,New South Wales,153.068987,-28.810553 +2021,5,31,1,New South Wales,150.517241,-34.446408 +2022,9,29,1,New South Wales,153.017126,-30.374914 +2022,12,7,1,New South Wales,152.925438,-31.458684 +2021,6,19,1,New South Wales,150.519911,-34.452529 +2020,11,18,1,New South Wales,153.091736,-29.487892 +2021,6,21,1,New South Wales,150.639175,-34.39273 +2022,6,14,1,New South Wales,152.150532,-32.728197 +2020,1,2,1,New South Wales,153.108194,-29.490208 +2020,9,23,1,New South Wales,153.537072,-28.222185 +2022,6,14,1,New South Wales,153.493043,-28.673033 +2021,5,8,1,New South Wales,150.609102,-34.420716 +2021,10,21,1,New South Wales,152.06523,-32.710459 +2020,8,18,1,New South Wales,153.285454,-28.820487 +2020,5,10,1,New South Wales,150.028546,-35.081492 +2021,7,17,1,New South Wales,150.624512,-34.385901 +2021,5,25,1,New South Wales,150.639177,-34.392685 +2020,10,24,1,New South Wales,153.376844,-28.651078 +2020,2,10,1,New South Wales,150.65549,-33.52261 +2021,9,5,1,New South Wales,150.520703,-34.465131 +2021,10,1,1,New South Wales,153.204977,-28.841908 +2020,10,14,1,New South Wales,153.091741,-29.486972 +2022,9,26,1,New South Wales,153.096017,-29.49109 +2021,3,22,1,New South Wales,150.60791,-34.42209 +2020,11,11,1,New South Wales,150.016461,-36.575848 +2020,2,25,1,New South Wales,153.104149,-29.485202 +2021,7,4,1,New South Wales,150.603009,-34.417675 +2024,1,11,1,New South Wales,153.110517,-29.490213 +2020,11,11,1,New South Wales,150.016461,-36.575848 +2021,12,30,1,New South Wales,150.618391,-34.439947 +2021,5,16,1,New South Wales,150.614034,-34.433605 +2021,7,8,1,New South Wales,150.597903,-34.414402 +2020,10,29,1,New South Wales,149.96897,-36.58553 +2021,7,2,1,New South Wales,150.597227,-34.413334 +2021,5,15,1,New South Wales,150.632602,-34.418351 +2021,12,10,1,New South Wales,153.425915,-28.621616 +2023,3,22,1,New South Wales,153.302397,-28.820041 +2023,12,21,1,New South Wales,150.784145,-33.717699 +2021,8,30,1,New South Wales,152.08478,-32.729647 +2021,10,15,1,New South Wales,153.446567,-28.629 +2021,7,5,1,New South Wales,150.603043,-34.417649 +2021,5,29,1,New South Wales,150.631475,-34.386955 +2020,4,28,1,New South Wales,152.734409,-30.867392 +2021,5,30,1,New South Wales,150.527105,-34.469497 +2020,11,16,1,New South Wales,153.316981,-28.949626 +2021,6,2,1,New South Wales,150.629764,-34.42101 +2023,8,18,1,New South Wales,153.528744,-28.402583 +2021,4,26,1,New South Wales,153.426896,-28.63165 +2021,6,15,1,New South Wales,150.515624,-34.459501 +2020,12,4,1,New South Wales,152.9023,-31.441777 +2020,10,2,1,New South Wales,153.192734,-28.668946 +2021,2,28,1,New South Wales,150.515975,-34.458661 +2020,6,18,1,New South Wales,151.04278,-34.02432 +2021,8,12,1,New South Wales,150.520739,-34.465375 +2020,8,7,1,New South Wales,153.103752,-29.485585 +2021,5,3,1,New South Wales,150.62315,-34.397558 +2021,3,15,1,New South Wales,150.516018,-34.444715 +2022,7,16,1,New South Wales,152.062583,-32.709749 +2023,6,6,1,New South Wales,153.103924,-29.489596 +2021,12,22,1,New South Wales,151.556672,-32.968863 +2022,8,21,1,New South Wales,150.824297,-34.14907 +2022,5,25,1,New South Wales,152.920984,-31.447639 +2021,5,17,1,New South Wales,150.614016,-34.433064 +2021,5,13,1,New South Wales,150.628968,-34.389476 +2023,3,17,1,New South Wales,153.278824,-28.874355 +2020,1,17,1,New South Wales,152.916147,-31.448746 +2020,10,13,1,New South Wales,152.788897,-30.173921 +2021,5,2,1,New South Wales,150.615479,-34.435589 +2024,9,21,2,New South Wales,146.590933,-34.769805 +2021,7,13,1,New South Wales,150.597651,-34.410268 +2021,9,16,1,New South Wales,153.095309,-29.483932 +2021,10,23,1,New South Wales,153.115857,-28.561624 +2023,2,21,1,New South Wales,153.1621,-28.850549 +2021,3,5,1,New South Wales,150.604276,-34.438102 +2021,3,9,1,New South Wales,150.655913,-34.456242 +2022,8,10,1,New South Wales,150.52392,-34.448119 +2021,6,3,1,New South Wales,150.624012,-34.388596 +2021,4,29,1,New South Wales,150.608461,-34.4352 +2023,1,13,1,New South Wales,152.899322,-31.4662 +2023,9,23,1,New South Wales,152.383795,-31.929085 +2021,3,31,1,New South Wales,150.515396,-34.446992 +2020,8,22,1,New South Wales,153.293198,-28.864647 +2020,11,24,1,New South Wales,153.342482,-28.805797 +2021,4,27,1,New South Wales,150.616305,-34.428718 +2024,2,9,1,New South Wales,150.785381,-33.713244 +2020,11,24,1,New South Wales,153.342482,-28.805797 +2021,6,12,1,New South Wales,152.033792,-32.73815 +2020,9,14,1,New South Wales,153.413693,-28.639313 +2023,8,21,1,New South Wales,152.95885,-30.641952 +2020,1,27,1,New South Wales,151.769527,-32.456803 +2021,5,31,1,New South Wales,150.64026,-34.398656 +2022,11,11,1,New South Wales,153.405095,-28.972767 +2023,8,10,1,New South Wales,152.889585,-30.467908 +2021,8,14,1,New South Wales,150.631971,-34.418357 +2021,1,21,1,New South Wales,150.840647,-34.078313 +2021,4,13,1,New South Wales,150.640898,-34.42008 +2022,1,8,1,New South Wales,150.850888,-34.435494 +2024,6,12,1,New South Wales,152.8995,-31.145777 +2021,4,30,1,New South Wales,150.606945,-34.454382 +2021,6,15,1,New South Wales,153.108113,-29.490586 +2023,10,18,1,New South Wales,153.123949,-30.296029 +2020,4,16,1,New South Wales,151.652436,-31.521912 +2021,5,16,1,New South Wales,150.520525,-34.453849 +2023,11,25,1,New South Wales,150.822925,-34.150224 +2021,5,10,1,New South Wales,150.637282,-34.423689 +2021,5,18,1,New South Wales,153.107427,-29.490124 +2021,5,7,1,New South Wales,150.627384,-34.390131 +2021,6,27,1,New South Wales,150.627391,-34.420279 +2021,3,29,1,New South Wales,150.603702,-34.4403 +2020,11,3,1,New South Wales,149.96897,-36.58553 +2021,6,12,1,New South Wales,150.604274,-34.43931 +2021,5,24,1,New South Wales,150.516116,-34.450225 +2022,12,5,1,New South Wales,152.926752,-31.45465 +2022,11,20,1,New South Wales,152.78933,-30.918792 +2021,6,9,1,New South Wales,150.518251,-34.447961 +2021,7,10,1,New South Wales,150.599086,-34.412982 +2021,5,21,1,New South Wales,150.515716,-34.450866 +2021,4,10,1,New South Wales,153.563915,-28.374668 +2022,11,25,1,New South Wales,152.78933,-30.918792 +2022,9,8,1,New South Wales,152.798305,-31.121738 +2021,4,17,1,New South Wales,150.627407,-34.386597 +2023,6,25,1,New South Wales,153.109986,-29.492463 +2021,1,14,1,New South Wales,153.448574,-28.632125 +2021,4,27,1,New South Wales,152.300422,-31.948252 +2020,3,28,1,New South Wales,150.1299,-35.069995 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2021,6,4,1,New South Wales,150.604212,-34.426606 +2023,6,27,1,New South Wales,152.788615,-31.640304 +2022,4,26,1,New South Wales,153.328317,-29.03086 +2022,1,9,1,New South Wales,152.400065,-31.930225 +2020,10,8,1,New South Wales,149.941793,-36.651646 +2021,5,27,1,New South Wales,150.63971,-34.393452 +2021,6,29,1,New South Wales,153.466019,-28.924822 +2020,1,4,1,New South Wales,152.919351,-31.44523 +2021,6,6,1,New South Wales,150.616577,-34.435989 +2023,2,13,1,New South Wales,153.108215,-29.490241 +2021,5,30,1,New South Wales,150.516067,-34.448214 +2020,11,8,1,New South Wales,153.301753,-28.667825 +2020,10,15,1,New South Wales,149.887989,-36.587028 +2022,8,19,1,New South Wales,153.192812,-29.437147 +2021,10,28,1,New South Wales,152.807397,-29.812458 +2021,5,3,1,New South Wales,150.608645,-34.435979 +2020,4,4,1,New South Wales,153.053386,-28.661655 +2021,5,19,1,New South Wales,150.641102,-34.494831 +2020,10,1,1,New South Wales,153.077049,-29.450991 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2024,1,5,1,New South Wales,150.782986,-33.716153 +2021,3,5,1,New South Wales,150.655871,-34.456178 +2023,10,10,1,New South Wales,152.910423,-31.4322 +2021,4,24,1,New South Wales,150.610149,-34.419095 +2021,5,10,1,New South Wales,150.659166,-34.459009 +2020,6,14,1,New South Wales,153.104158,-29.478606 +2023,3,9,1,New South Wales,153.209622,-28.928136 +2021,9,2,1,New South Wales,150.521586,-34.465816 +2021,5,23,1,New South Wales,150.528933,-34.471383 +2023,2,21,1,New South Wales,153.05985,-28.44262 +2020,5,9,1,New South Wales,153.089219,-29.484693 +2021,1,14,1,New South Wales,153.550491,-28.583656 +2020,11,29,1,New South Wales,151.70521,-32.630479 +2023,4,22,1,New South Wales,153.428712,-29.016259 +2020,1,16,1,New South Wales,153.11064,-29.489937 +2021,6,18,1,New South Wales,150.64287,-34.394767 +2021,7,16,1,New South Wales,153.206273,-28.839441 +2021,8,21,1,New South Wales,153.087339,-30.33947 +2020,11,29,1,New South Wales,149.980514,-36.435679 +2021,2,13,1,New South Wales,153.335722,-28.816947 +2021,6,24,1,New South Wales,150.514451,-34.447271 +2020,11,6,1,New South Wales,153.31904,-28.93375 +2022,4,19,1,New South Wales,150.243684,-30.991875 +2020,12,,1,New South Wales,152.784268,-31.3706 +2021,7,13,1,New South Wales,150.626523,-34.38557 +2021,6,8,1,New South Wales,150.607896,-34.430591 +2021,5,11,1,New South Wales,150.51961,-34.435475 +2020,12,6,1,New South Wales,149.960189,-36.280531 +2023,8,26,1,New South Wales,150.51272,-34.55135 +2022,8,17,1,New South Wales,153.101789,-29.48982 +2021,3,18,1,New South Wales,150.521197,-34.454331 +2022,11,11,1,New South Wales,153.431324,-29.016415 +2023,6,30,1,New South Wales,152.913209,-31.458348 +2021,10,6,1,New South Wales,152.888038,-31.44389 +2022,,,1,New South Wales,152.139986,-32.730578 +2023,5,30,1,New South Wales,150.784001,-34.209846 +2020,,,1,New South Wales,152.801772,-31.602768 +2022,8,8,1,New South Wales,150.529755,-34.440147 +2020,1,31,1,New South Wales,153.314983,-28.949201 +2021,5,7,1,New South Wales,153.277839,-28.679011 +2021,3,18,1,New South Wales,150.615556,-34.435537 +2020,8,16,1,New South Wales,152.403266,-31.925198 +2022,8,1,1,New South Wales,153.103924,-29.489535 +2021,5,16,1,New South Wales,150.516374,-34.44996 +2020,11,20,1,New South Wales,153.091741,-29.487915 +2022,8,28,1,New South Wales,153.130051,-28.512102 +2020,10,,1,New South Wales,152.892385,-31.477808 +2021,7,27,1,New South Wales,150.595198,-34.423373 +2021,3,7,1,New South Wales,153.10821,-29.490236 +2021,2,14,1,New South Wales,153.103677,-29.485711 +2024,1,14,1,New South Wales,152.788667,-31.637379 +2021,12,21,1,New South Wales,153.559875,-28.650053 +2021,1,23,1,New South Wales,152.355785,-31.85809 +2021,4,28,1,New South Wales,150.636289,-34.421866 +2020,12,7,1,New South Wales,152.867959,-29.667187 +2021,8,4,1,New South Wales,153.314434,-28.839794 +2021,5,11,1,New South Wales,150.519445,-34.435544 +2021,5,1,1,New South Wales,150.610378,-34.420227 +2021,6,12,1,New South Wales,150.611895,-34.431895 +2022,11,17,1,New South Wales,152.886569,-29.635356 +2020,8,31,1,New South Wales,153.314983,-28.949201 +2021,10,5,1,New South Wales,153.318368,-28.82437 +2022,10,1,1,New South Wales,152.908706,-31.443648 +2022,4,30,1,New South Wales,153.103951,-29.489563 +2021,5,31,1,New South Wales,150.604659,-34.424686 +2024,3,21,1,New South Wales,152.808721,-31.500172 +2023,8,14,1,New South Wales,153.543844,-28.679772 +2021,5,24,1,New South Wales,150.639219,-34.39274 +2022,11,28,1,New South Wales,152.794854,-30.893434 +2021,6,20,1,New South Wales,150.619219,-34.436834 +2024,9,25,2,New South Wales,153.277428,-28.59695 +2022,11,30,1,New South Wales,152.794854,-30.893434 +2023,8,14,1,New South Wales,152.064506,-32.708972 +2021,5,29,1,New South Wales,150.604726,-34.43757 +2021,12,28,1,New South Wales,152.916822,-31.450375 +2023,5,5,1,New South Wales,152.926823,-31.459713 +2021,4,3,1,New South Wales,150.616593,-34.435837 +2021,5,2,1,New South Wales,150.62541,-34.389939 +2021,6,25,1,New South Wales,153.10195,-29.488742 +2024,8,19,1,New South Wales,152.356186,-32.180517 +2023,7,9,1,New South Wales,153.25443,-28.902453 +2021,5,13,1,New South Wales,150.628969,-34.395976 +2022,6,22,1,New South Wales,150.563856,-34.5 +2021,6,28,1,New South Wales,150.513809,-34.447285 +2022,7,9,1,New South Wales,150.808174,-34.098204 +2023,7,20,1,New South Wales,153.104128,-29.483778 +2020,4,3,1,New South Wales,150.115727,-35.061219 +2021,5,18,1,New South Wales,150.615736,-34.449514 +2020,11,13,1,New South Wales,150.665994,-33.571064 +2023,12,5,1,New South Wales,152.926839,-31.454648 +2020,2,13,1,New South Wales,151.141399,-33.109066 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2021,2,1,1,New South Wales,152.386934,-31.876653 +2021,11,30,1,New South Wales,152.126308,-31.413327 +2020,11,2,1,New South Wales,149.999247,-36.565645 +2021,5,31,1,New South Wales,150.523985,-34.470462 +2020,11,4,1,New South Wales,149.943147,-36.549371 +2023,3,17,1,New South Wales,153.347684,-28.812094 +2022,11,19,1,New South Wales,152.794854,-30.893434 +2020,11,4,1,New South Wales,149.943147,-36.549371 +2021,12,19,1,New South Wales,150.61542,-34.440736 +2021,2,28,1,New South Wales,153.530618,-28.681056 +2021,7,31,1,New South Wales,153.314434,-28.839794 +2021,8,14,1,New South Wales,153.310312,-28.824722 +2023,7,22,1,New South Wales,153.155768,-28.579383 +2020,11,7,1,New South Wales,150.010074,-36.579686 +2021,6,23,1,New South Wales,153.180893,-30.096213 +2021,5,29,1,New South Wales,150.516077,-34.448223 +2020,1,5,1,New South Wales,151.64852,-32.69442 +2023,10,25,1,New South Wales,152.203368,-32.229858 +2021,6,23,1,New South Wales,150.513826,-34.446338 +2023,6,1,1,New South Wales,153.108049,-29.490367 +2023,5,16,1,New South Wales,153.103366,-29.489858 +2020,11,15,1,New South Wales,152.91044,-31.469486 +2021,3,3,1,New South Wales,150.636211,-34.486019 +2022,8,4,1,New South Wales,150.794723,-34.216292 +2024,8,22,1,New South Wales,152.805731,-31.675812 +2021,4,6,1,New South Wales,153.104047,-29.4853 +2022,9,20,1,New South Wales,152.089896,-32.728381 +2020,2,16,1,New South Wales,153.108273,-29.49032 +2021,8,15,1,New South Wales,150.520292,-34.465771 +2020,7,12,1,New South Wales,153.561351,-28.385497 +2020,11,10,1,New South Wales,150.010074,-36.579686 +2022,1,8,1,New South Wales,152.380773,-31.922592 +2021,10,23,1,New South Wales,153.499008,-28.78141 +2021,5,27,1,New South Wales,150.604281,-34.437904 +2022,1,30,1,New South Wales,152.894238,-31.456199 +2020,11,10,1,New South Wales,152.928242,-31.474888 +2020,1,7,1,New South Wales,153.286418,-29.025463 +2021,6,20,1,New South Wales,150.657078,-34.454272 +2021,4,19,1,New South Wales,150.626921,-34.385695 +2020,6,16,1,New South Wales,151.022421,-34.038905 +2021,5,25,1,New South Wales,150.603138,-34.434897 +2022,6,28,1,New South Wales,152.883722,-31.468453 +2021,2,2,1,New South Wales,152.08026,-32.72794 +2020,9,11,1,New South Wales,149.263454,-35.740656 +2021,6,17,1,New South Wales,150.618154,-34.435263 +2023,9,12,1,New South Wales,152.838167,-31.544176 +2021,8,4,1,New South Wales,151.887504,-32.07277 +2024,3,15,1,New South Wales,152.897911,-31.466536 +2020,10,29,1,New South Wales,149.979238,-36.570187 +2021,1,24,1,New South Wales,153.092068,-29.488037 +2022,12,10,1,New South Wales,146.530127,-34.745239 +2024,7,7,1,New South Wales,152.062595,-32.700714 +2022,4,1,1,New South Wales,152.532467,-31.529299 +2020,8,25,1,New South Wales,150.819336,-34.098427 +2022,7,3,1,New South Wales,152.034077,-32.763162 +2023,7,24,1,New South Wales,150.784622,-33.716304 +2023,10,15,1,New South Wales,149.607683,-32.570532 +2022,11,20,1,New South Wales,146.624949,-35.955867 +2022,11,24,1,New South Wales,152.760068,-30.904021 +2022,8,29,1,New South Wales,151.91114,-32.650013 +2021,6,15,1,New South Wales,150.639936,-34.398578 +2021,5,15,1,New South Wales,150.632658,-34.418316 +2024,1,11,1,New South Wales,152.063956,-32.706625 +2021,6,27,1,New South Wales,150.62738,-34.420278 +2021,3,3,1,New South Wales,153.549446,-28.589579 +2021,11,17,1,New South Wales,152.632574,-31.870324 +2021,9,21,1,New South Wales,153.002156,-29.211324 +2021,4,4,1,New South Wales,150.615238,-34.436414 +2020,4,9,1,New South Wales,153.104181,-29.485188 +2022,4,1,1,New South Wales,153.108162,-29.490558 +2024,3,22,1,New South Wales,152.381829,-31.914264 +2021,7,8,1,New South Wales,150.627422,-34.421505 +2023,7,30,1,New South Wales,153.103886,-29.489577 +2021,10,18,1,New South Wales,153.48166,-28.625868 +2023,9,25,1,New South Wales,153.272536,-28.931665 +2021,5,30,1,New South Wales,150.606992,-34.437488 +2021,4,24,1,New South Wales,150.614866,-34.431106 +2021,9,19,1,New South Wales,150.523891,-34.46405 +2021,10,12,1,New South Wales,152.929231,-31.461909 +2021,5,17,1,New South Wales,150.629059,-34.395122 +2021,9,2,1,New South Wales,153.03851,-29.079372 +2021,5,11,1,New South Wales,150.521686,-34.466133 +2023,12,12,1,New South Wales,153.087713,-30.255052 +2023,7,28,1,New South Wales,152.072592,-32.725218 +2021,5,8,1,New South Wales,150.518292,-34.451351 +2021,3,12,1,New South Wales,150.607912,-34.430023 +2021,4,20,1,New South Wales,150.616977,-34.433789 +2023,10,12,1,New South Wales,153.094347,-30.30034 +2020,11,2,1,New South Wales,149.934245,-36.578531 +2023,7,24,1,New South Wales,152.886332,-31.280144 +2023,10,2,1,New South Wales,153.105184,-29.489699 +2021,3,27,1,New South Wales,150.659195,-34.459118 +2021,4,25,1,New South Wales,150.605153,-34.437858 +2020,1,10,1,New South Wales,152.9083,-31.4358 +2020,11,25,1,New South Wales,152.92304,-31.4359 +2020,5,18,1,New South Wales,153.089901,-29.48056 +2021,6,4,1,New South Wales,150.519301,-34.448126 +2021,6,8,1,New South Wales,150.523088,-34.46618 +2023,1,12,1,New South Wales,152.794025,-31.638566 +2021,5,15,1,New South Wales,150.51617,-34.449514 +2020,11,10,1,New South Wales,152.899978,-31.453169 +2021,10,14,1,New South Wales,152.879841,-31.448971 +2023,9,14,1,New South Wales,150.76181,-34.169865 +2022,7,12,1,New South Wales,153.110522,-29.49018 +2022,11,9,1,New South Wales,152.92901,-31.459605 +2021,4,22,1,New South Wales,150.630931,-34.388495 +2021,8,29,1,New South Wales,152.928873,-31.460469 +2022,5,9,1,New South Wales,150.17621,-31.09678 +2020,2,11,1,New South Wales,152.838392,-31.59502 +2021,5,3,1,New South Wales,150.603423,-34.427582 +2022,8,11,1,New South Wales,150.684441,-34.356036 +2023,4,25,1,New South Wales,150.785948,-33.714314 +2021,5,25,1,New South Wales,150.638978,-34.49177 +2021,7,11,1,New South Wales,150.631289,-34.388142 +2021,9,23,1,New South Wales,150.514524,-34.447398 +2024,9,4,2,New South Wales,153.428944,-28.626509 +2021,10,27,1,New South Wales,153.415221,-28.672232 +2022,8,6,1,New South Wales,153.398789,-28.258738 +2023,10,11,1,New South Wales,152.824357,-29.505009 +2020,11,16,1,New South Wales,152.923379,-31.459753 +2020,6,29,1,New South Wales,150.908967,-29.713294 +2022,2,7,1,New South Wales,152.902506,-31.44542 +2020,5,10,1,New South Wales,150.059594,-33.779405 +2021,7,24,1,New South Wales,150.602449,-34.419792 +2024,3,3,1,New South Wales,151.083101,-29.730627 +2021,6,30,1,New South Wales,150.606167,-34.432072 +2023,1,17,1,New South Wales,151.880598,-31.920475 +2020,11,18,1,New South Wales,153.369052,-28.953149 +2022,8,8,1,New South Wales,150.51606,-34.437979 +2020,11,18,1,New South Wales,153.369052,-28.953149 +2020,9,20,1,New South Wales,153.5017,-28.328728 +2022,8,2,1,New South Wales,152.490193,-32.031041 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2024,3,9,1,New South Wales,152.063304,-32.706167 +2020,11,30,1,New South Wales,153.367822,-28.866277 +2022,2,6,1,New South Wales,153.110908,-29.486811 +2021,5,9,1,New South Wales,150.519549,-34.45117 +2020,8,3,1,New South Wales,152.793561,-31.127121 +2022,1,27,1,New South Wales,152.105015,-32.7352 +2024,3,20,1,New South Wales,152.146482,-32.639151 +2021,7,3,1,New South Wales,150.643651,-34.396774 +2020,,,1,New South Wales,151.955751,-32.650004 +2021,6,26,1,New South Wales,150.631474,-34.387776 +2022,12,7,1,New South Wales,152.884616,-31.44444 +2021,5,12,1,New South Wales,150.616992,-34.433645 +2023,11,25,1,New South Wales,152.921855,-31.46584 +2021,7,1,1,New South Wales,150.627308,-34.421314 +2023,8,16,1,New South Wales,153.103522,-29.48558 +2021,12,21,1,New South Wales,152.915982,-31.480925 +2023,7,24,1,New South Wales,150.786983,-33.705799 +2023,12,17,1,New South Wales,150.78292,-33.716621 +2023,12,10,1,New South Wales,151.876097,-32.085936 +2021,6,24,1,New South Wales,150.600069,-34.418159 +2022,10,26,1,New South Wales,153.555924,-28.398741 +2021,5,9,1,New South Wales,150.622088,-34.39779 +2020,10,26,1,New South Wales,153.555227,-28.586475 +2021,4,28,1,New South Wales,150.604596,-34.452803 +2021,3,17,1,New South Wales,150.517321,-34.445923 +2023,11,8,1,New South Wales,152.902522,-30.462703 +2021,5,1,1,New South Wales,153.184459,-28.889703 +2020,11,11,1,New South Wales,150.010499,-36.556654 +2021,4,18,1,New South Wales,150.616212,-34.430095 +2021,5,15,1,New South Wales,150.520474,-34.4541 +2021,6,22,1,New South Wales,152.924371,-29.733175 +2022,5,27,1,New South Wales,153.103924,-29.489563 +2020,10,13,1,New South Wales,152.331052,-29.488 +2022,9,19,1,New South Wales,150.832866,-34.238646 +2020,11,25,1,New South Wales,150.051182,-33.113951 +2021,5,17,1,New South Wales,150.614072,-34.433011 +2022,1,6,1,New South Wales,153.292875,-28.864692 +2021,6,3,1,New South Wales,150.629969,-34.421059 +2021,8,26,1,New South Wales,150.518692,-34.444815 +2021,7,12,1,New South Wales,150.513103,-34.447252 +2020,12,13,1,New South Wales,151.315355,-33.345951 +2022,10,30,1,New South Wales,146.534284,-34.747516 +2021,5,11,1,New South Wales,150.633082,-34.417549 +2023,10,14,1,New South Wales,150.785937,-33.706624 +2020,1,21,1,New South Wales,153.316818,-28.823055 +2021,5,2,1,New South Wales,150.609646,-34.436386 +2020,3,30,1,New South Wales,153.557802,-28.396817 +2020,4,8,1,New South Wales,152.879008,-31.424151 +2021,5,7,1,New South Wales,150.520434,-34.467965 +2021,3,6,1,New South Wales,150.523378,-34.454159 +2024,4,23,1,New South Wales,153.317993,-28.820852 +2020,6,26,1,New South Wales,150.62578,-33.76384 +2021,5,14,1,New South Wales,153.402115,-28.260547 +2023,11,10,1,New South Wales,152.929791,-31.455727 +2021,7,18,1,New South Wales,152.900306,-29.330013 +2021,4,16,1,New South Wales,150.608261,-34.434962 +2022,9,16,1,New South Wales,153.104256,-29.48318 +2024,6,16,1,New South Wales,152.910327,-31.469437 +2023,10,17,1,New South Wales,152.898021,-30.330959 +2021,5,26,1,New South Wales,150.639209,-34.392694 +2022,10,11,1,New South Wales,152.784984,-31.630248 +2020,10,29,1,New South Wales,149.96897,-36.58553 +2021,7,7,1,New South Wales,151.992127,-32.719866 +2020,7,25,1,New South Wales,150.056895,-33.775645 +2020,3,11,1,New South Wales,152.175,-32.72574 +2023,12,19,1,New South Wales,150.785995,-33.711352 +2022,11,25,1,New South Wales,152.78933,-30.918792 +2021,3,3,1,New South Wales,150.51913,-34.454668 +2021,6,11,1,New South Wales,150.522049,-34.465996 +2024,9,21,1,New South Wales,146.573313,-34.767365 +2021,5,17,1,New South Wales,150.600266,-34.427259 +2020,10,29,1,New South Wales,149.999247,-36.565645 +2023,4,5,1,New South Wales,152.850839,-31.55547 +2021,6,5,1,New South Wales,150.615524,-34.435536 +2021,3,26,1,New South Wales,150.520918,-34.453442 +2024,5,22,1,New South Wales,152.868399,-31.335146 +2022,7,24,1,New South Wales,153.109379,-29.490441 +2021,5,16,1,New South Wales,150.60097,-34.427751 +2023,1,22,1,New South Wales,153.099783,-29.491557 +2024,8,21,1,New South Wales,152.01894,-32.29582 +2021,5,1,1,New South Wales,150.604672,-34.427282 +2021,6,3,1,New South Wales,150.630321,-34.420948 +2020,2,9,1,New South Wales,151.141399,-33.109066 +2024,3,22,1,New South Wales,152.899845,-31.409514 +2021,12,8,1,New South Wales,149.324303,-36.130563 +2023,9,30,1,New South Wales,150.990858,-34.025693 +2022,3,13,1,New South Wales,153.107432,-29.490096 +2023,11,3,1,New South Wales,152.196338,-32.230264 +2020,8,18,1,New South Wales,153.372262,-28.999986 +2021,4,26,1,New South Wales,150.626235,-34.395752 +2023,12,21,1,New South Wales,152.921208,-31.458149 +2020,10,29,1,New South Wales,149.999247,-36.565645 +2023,12,16,1,New South Wales,152.795512,-31.636282 +2021,6,12,1,New South Wales,150.659459,-34.455147 +2021,6,2,1,New South Wales,150.625305,-34.389405 +2020,11,1,1,New South Wales,149.999247,-36.565645 +2021,4,20,1,New South Wales,150.610246,-34.419133 +2021,6,3,1,New South Wales,150.604816,-34.427186 +2020,1,5,1,New South Wales,151.642979,-32.663949 +2023,8,2,1,New South Wales,152.028525,-32.191563 +2021,4,30,1,New South Wales,150.610047,-34.419995 +2021,5,21,1,New South Wales,150.529843,-34.471139 +2022,5,30,1,New South Wales,151.329514,-30.681882 +2022,5,13,1,New South Wales,153.100802,-29.490007 +2024,2,8,1,New South Wales,152.282676,-32.061484 +2021,8,6,1,New South Wales,150.628813,-34.389203 +2021,9,14,1,New South Wales,150.63391,-33.57314 +2020,11,17,1,New South Wales,153.27827,-28.679393 +2021,2,28,1,New South Wales,150.885453,-34.018442 +2021,5,16,1,New South Wales,150.602885,-34.435361 +2023,8,10,1,New South Wales,151.486471,-32.984102 +2023,12,10,1,New South Wales,150.990611,-34.029876 +2022,1,14,1,New South Wales,153.108135,-29.490269 +2021,7,27,1,New South Wales,150.515865,-34.448796 +2021,11,27,1,New South Wales,152.920617,-31.439849 +2021,9,13,1,New South Wales,153.542842,-28.584015 +2023,7,27,1,New South Wales,153.518787,-28.636204 +2022,11,20,1,New South Wales,152.794854,-30.893434 +2021,7,7,1,New South Wales,150.642185,-34.396304 +2022,11,27,1,New South Wales,153.5253,-28.723573 +2024,1,13,1,New South Wales,150.783787,-33.717587 +2021,5,11,1,New South Wales,150.52135,-34.466442 +2023,6,7,1,New South Wales,150.84,-34.13748 +2020,11,30,1,New South Wales,153.39438,-28.271322 +2021,7,4,1,New South Wales,150.516835,-34.438809 +2021,7,5,1,New South Wales,150.627397,-34.421225 +2022,1,6,1,New South Wales,153.55336,-28.407803 +2020,5,4,1,New South Wales,150.06673,-34.90619 +2021,4,27,1,New South Wales,150.616224,-34.435802 +2024,3,12,1,New South Wales,152.37939,-31.929515 +2021,4,1,1,New South Wales,150.525041,-34.453508 +2020,1,13,1,New South Wales,152.874984,-31.46849 +2023,5,14,1,New South Wales,150.932034,-31.092748 +2021,5,23,1,New South Wales,150.515944,-34.450537 +2021,4,22,1,New South Wales,150.637863,-34.422762 +2021,5,18,1,New South Wales,150.60025,-34.428575 +2023,9,12,1,New South Wales,152.797276,-31.637274 +2024,1,15,1,New South Wales,152.433393,-31.790624 +2021,8,2,1,New South Wales,150.518513,-34.447552 +2022,11,2,1,New South Wales,151.04544,-34.019695 +2021,7,24,1,New South Wales,150.624532,-34.385964 +2021,5,3,1,New South Wales,150.616001,-34.436375 +2020,11,4,1,New South Wales,149.943147,-36.549371 +2020,12,4,1,New South Wales,152.90616,-31.449983 +2023,9,18,1,New South Wales,150.784399,-33.718032 +2020,11,6,1,New South Wales,149.995573,-36.572611 +2024,2,17,1,New South Wales,150.785593,-33.71026 +2020,3,28,1,New South Wales,150.120508,-35.076865 +2023,7,31,1,New South Wales,150.784754,-33.715263 +2022,3,19,1,New South Wales,152.784552,-31.590569 +2021,5,22,1,New South Wales,150.639079,-34.493197 +2020,11,5,1,New South Wales,149.943147,-36.549371 +2023,6,1,1,New South Wales,152.78503,-31.632369 +2024,1,1,1,New South Wales,152.888969,-31.476594 +2020,10,29,1,New South Wales,149.979238,-36.570187 +2021,4,27,1,New South Wales,150.602009,-34.42567 +2021,4,25,1,New South Wales,150.638033,-34.419827 +2022,10,6,1,New South Wales,152.78703,-31.630117 +2020,11,22,1,New South Wales,153.10409,-29.479645 +2021,9,21,1,New South Wales,151.650005,-32.683942 +2022,7,14,1,New South Wales,153.101392,-29.490012 +2023,6,8,1,New South Wales,152.922714,-31.475384 +2020,2,26,1,New South Wales,153.486663,-28.691138 +2021,11,24,1,New South Wales,152.897331,-31.438712 +2021,5,24,1,New South Wales,150.631506,-34.387803 +2023,6,7,1,New South Wales,150.886108,-34.058746 +2023,6,24,1,New South Wales,153.108119,-29.490535 +2021,11,8,1,New South Wales,153.103666,-29.485538 +2021,4,20,1,New South Wales,150.627192,-34.385727 +2023,4,23,1,New South Wales,153.296166,-28.925133 +2021,6,28,1,New South Wales,150.630982,-34.388253 +2021,3,6,1,New South Wales,152.110584,-32.767718 +2024,3,22,1,New South Wales,152.379576,-31.918199 +2021,4,23,1,New South Wales,150.637172,-34.485136 +2021,7,30,1,New South Wales,153.556057,-28.398603 +2021,3,16,1,New South Wales,150.517321,-34.45144 +2021,4,28,1,New South Wales,150.637892,-34.488954 +2022,9,20,1,New South Wales,152.90799,-30.17557 +2021,4,22,1,New South Wales,150.614364,-34.430032 +2023,11,8,1,New South Wales,152.268663,-32.335288 +2021,7,30,1,New South Wales,150.632757,-34.419824 +2021,5,15,1,New South Wales,150.637267,-34.42386 +2021,5,4,1,New South Wales,150.520709,-34.43658 +2020,8,6,1,New South Wales,152.403088,-31.925107 +2021,6,7,1,New South Wales,150.531199,-34.457996 +2021,4,28,1,New South Wales,150.604232,-34.435045 +2021,5,16,1,New South Wales,150.637346,-34.423735 +2020,5,,1,New South Wales,152.074378,-32.736962 +2021,5,18,1,New South Wales,153.107421,-29.490114 +2021,6,15,1,New South Wales,150.524217,-34.452653 +2023,10,31,1,New South Wales,149.227204,-35.179604 +2022,6,1,1,New South Wales,153.104546,-29.477319 +2023,9,24,1,New South Wales,152.065264,-32.711007 +2021,2,5,1,New South Wales,153.103849,-29.484693 +2021,5,22,1,New South Wales,150.529416,-34.471221 +2023,7,17,1,New South Wales,153.300847,-28.821734 +2021,9,18,1,New South Wales,152.913379,-31.479328 +2021,5,16,1,New South Wales,150.600785,-34.427738 +2021,5,31,1,New South Wales,150.631267,-34.420173 +2021,3,29,1,New South Wales,150.604015,-34.440765 +2022,12,24,1,New South Wales,152.921826,-31.460668 +2021,7,21,1,New South Wales,150.600078,-34.419385 +2021,7,7,1,New South Wales,150.521864,-34.464532 +2024,9,22,1,New South Wales,149.51629,-33.641224 +2021,4,9,1,New South Wales,150.524647,-34.452102 +2021,4,23,1,New South Wales,150.609392,-34.418945 +2021,10,27,1,New South Wales,153.415221,-28.672232 +2021,4,20,1,New South Wales,150.637239,-34.422146 +2021,6,22,1,New South Wales,150.644001,-34.392841 +2022,5,15,1,New South Wales,153.556168,-28.330904 +2020,1,27,1,New South Wales,149.35486,-36.18352 +2021,5,25,1,New South Wales,150.526689,-34.469579 +2021,4,23,1,New South Wales,150.635391,-34.420524 +2021,8,7,1,New South Wales,150.629638,-34.388867 +2023,2,6,1,New South Wales,152.988079,-30.32528 +2021,5,18,1,New South Wales,150.632138,-34.394298 +2021,9,22,1,New South Wales,150.514345,-34.446457 +2020,4,25,1,New South Wales,153.01536,-28.63955 +2023,8,10,1,New South Wales,153.037179,-30.895341 +2021,5,20,1,New South Wales,152.3233,-28.59082 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2020,8,30,1,New South Wales,152.922214,-31.461796 +2022,2,19,1,New South Wales,152.344742,-31.903915 +2021,4,30,1,New South Wales,150.616817,-34.399554 +2021,11,18,1,New South Wales,152.893086,-31.454902 +2022,11,10,1,New South Wales,152.921998,-29.739464 +2023,7,16,1,New South Wales,153.10814,-29.490502 +2023,6,2,1,New South Wales,150.880905,-34.021389 +2020,12,10,1,New South Wales,152.900076,-29.631196 +2021,5,5,1,New South Wales,150.523272,-34.452237 +2021,8,13,1,New South Wales,150.838978,-34.053416 +2021,4,30,1,New South Wales,150.603914,-34.427529 +2020,10,20,1,New South Wales,153.278132,-28.831137 +2020,2,14,1,New South Wales,152.856894,-31.447028 +2020,4,7,1,New South Wales,152.037804,-32.731544 +2024,1,6,1,New South Wales,153.095421,-29.4841 +2021,11,21,1,New South Wales,150.844843,-29.834535 +2023,12,13,1,New South Wales,151.882303,-32.752293 +2021,7,4,1,New South Wales,150.514096,-34.446398 +2023,9,25,1,New South Wales,150.786461,-33.709609 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2021,3,15,1,New South Wales,150.524614,-34.460946 +2022,7,7,1,New South Wales,149.811338,-29.375458 +2021,10,26,1,New South Wales,153.01327,-30.41356 +2020,4,13,1,New South Wales,152.92489,-31.468791 +2022,1,16,1,New South Wales,150.618817,-34.440279 +2023,12,12,1,New South Wales,151.064694,-29.683519 +2023,1,17,1,New South Wales,152.08916,-32.728082 +2021,3,20,1,New South Wales,150.615386,-34.435786 +2023,11,13,1,New South Wales,153.096634,-29.491861 +2023,10,10,1,New South Wales,152.887399,-31.261111 +2021,5,17,1,New South Wales,153.403175,-28.260624 +2021,7,6,1,New South Wales,150.603575,-34.41921 +2023,8,17,1,New South Wales,153.4658,-28.675702 +2022,1,10,1,New South Wales,152.635197,-30.140644 +2020,10,10,1,New South Wales,152.117738,-32.726204 +2021,5,10,1,New South Wales,150.609114,-34.420671 +2021,8,28,1,New South Wales,153.22503,-28.826912 +2020,12,22,1,New South Wales,152.901512,-31.435939 +2020,9,7,1,New South Wales,150.46757,-34.49092 +2021,3,29,1,New South Wales,150.51589,-34.446849 +2021,7,22,1,New South Wales,153.276437,-28.818985 +2023,8,14,1,New South Wales,150.839123,-34.056603 +2021,8,3,1,New South Wales,150.520261,-34.465708 +2021,8,19,1,New South Wales,152.379887,-31.913487 +2023,6,7,1,New South Wales,150.843837,-34.137132 +2022,12,6,1,New South Wales,148.974951,-36.171177 +2021,11,30,1,New South Wales,153.316272,-28.823818 +2021,6,23,1,New South Wales,150.603702,-34.438767 +2021,1,10,1,New South Wales,150.82369,-34.141271 +2023,7,13,1,New South Wales,153.006664,-30.42108 +2020,10,7,1,New South Wales,152.833456,-30.434821 +2021,6,12,1,New South Wales,150.604583,-34.438397 +2021,5,4,1,New South Wales,150.627193,-34.389577 +2022,3,7,1,New South Wales,153.60953,-28.661306 +2022,12,16,1,New South Wales,152.072676,-32.710616 +2021,6,6,1,New South Wales,150.518957,-34.447272 +2021,8,13,1,New South Wales,150.601262,-34.428937 +2021,4,1,1,New South Wales,150.515383,-34.447055 +2021,5,22,1,New South Wales,150.517181,-34.452131 +2021,9,15,1,New South Wales,153.304545,-28.825156 +2020,9,28,1,New South Wales,153.072209,-30.342321 +2021,5,12,1,New South Wales,150.616313,-34.433406 +2021,9,16,1,New South Wales,153.09165,-29.488041 +2020,6,16,1,New South Wales,152.393235,-31.945523 +2022,10,23,1,New South Wales,152.064147,-32.70236 +2021,7,12,1,New South Wales,150.597296,-34.410161 +2021,7,10,1,New South Wales,150.601776,-34.412485 +2023,9,18,1,New South Wales,153.317837,-28.821082 +2020,6,30,1,New South Wales,151.660173,-32.655466 +2021,5,18,1,New South Wales,150.514553,-34.443847 +2023,9,17,1,New South Wales,153.39669,-28.874375 +2023,3,19,1,New South Wales,153.326024,-28.824405 +2021,5,13,1,New South Wales,150.629592,-34.389326 +2021,5,10,1,New South Wales,150.609283,-34.420476 +2023,7,21,1,New South Wales,152.897321,-31.47494 +2024,6,5,1,New South Wales,152.412874,-31.933085 +2021,10,,1,New South Wales,149.238121,-36.184928 +2020,10,8,1,New South Wales,153.079297,-30.35381 +2022,3,4,1,New South Wales,152.819478,-31.449373 +2022,11,25,1,New South Wales,152.788781,-30.895519 +2020,11,,1,New South Wales,152.86799,-31.479129 +2021,4,27,1,New South Wales,150.635587,-34.41822 +2021,5,20,1,New South Wales,150.615361,-34.431296 +2021,10,20,1,New South Wales,152.878844,-29.662059 +2021,6,12,1,New South Wales,150.604243,-34.439246 +2021,8,14,1,New South Wales,150.631918,-34.418329 +2021,1,20,1,New South Wales,152.415185,-31.933138 +2021,5,25,1,New South Wales,150.517334,-34.452098 +2021,5,16,1,New South Wales,150.600405,-34.428091 +2022,2,8,1,New South Wales,152.900459,-31.44365 +2023,12,24,1,New South Wales,150.785938,-33.703959 +2022,8,8,1,New South Wales,150.529768,-34.440138 +2022,11,26,1,New South Wales,153.292385,-28.856019 +2020,6,13,1,New South Wales,152.404167,-31.945815 +2021,1,11,1,New South Wales,153.374722,-28.2525 +2021,6,8,1,New South Wales,150.523044,-34.466197 +2024,1,19,1,New South Wales,152.746956,-31.203254 +2020,8,27,1,New South Wales,152.177441,-30.099383 +2021,4,22,1,New South Wales,150.61705,-34.433528 +2024,3,4,1,New South Wales,151.083923,-29.728212 +2023,6,21,1,New South Wales,150.785297,-33.717133 +2023,10,6,1,New South Wales,152.928529,-31.464149 +2020,8,2,1,New South Wales,153.558425,-28.394206 +2021,5,27,1,New South Wales,150.59791,-34.425932 +2024,4,26,1,New South Wales,152.070176,-32.72335 +2020,11,7,1,New South Wales,150.010074,-36.579686 +2024,1,19,1,New South Wales,152.901052,-31.474153 +2021,3,23,1,New South Wales,153.556301,-28.399832 +2022,8,18,1,New South Wales,150.808078,-34.093737 +2020,4,8,1,New South Wales,150.145816,-34.932599 +2021,4,5,1,New South Wales,150.520069,-34.446817 +2020,12,7,1,New South Wales,153.280631,-28.861053 +2020,2,2,1,New South Wales,152.881693,-31.4527 +2020,12,4,1,New South Wales,152.902077,-31.442154 +2023,1,6,1,New South Wales,153.548838,-28.675365 +2020,12,28,1,New South Wales,153.293072,-28.864673 +2020,11,5,1,New South Wales,152.899817,-31.450312 +2021,7,11,1,New South Wales,150.60182,-34.412459 +2020,5,25,1,New South Wales,152.627183,-28.831591 +2021,7,30,1,New South Wales,150.597804,-34.426985 +2021,5,14,1,New South Wales,150.629046,-34.389424 +2024,3,22,1,New South Wales,152.384162,-31.922893 +2022,7,13,1,New South Wales,153.434311,-28.644485 +2021,4,26,1,New South Wales,150.603169,-34.425405 +2020,8,29,1,New South Wales,153.10416,-29.485207 +2021,5,9,1,New South Wales,150.623109,-34.399361 +2022,11,28,1,New South Wales,152.788781,-30.895519 +2021,10,16,1,New South Wales,150.979882,-34.130124 +2024,8,17,1,New South Wales,152.526032,-32.346095 +2020,1,6,1,New South Wales,150.77507,-34.3838 +2022,4,2,1,New South Wales,152.895053,-31.437714 +2021,10,4,1,New South Wales,153.324344,-28.879257 +2021,8,2,1,New South Wales,152.283175,-31.698289 +2021,10,11,1,New South Wales,153.486365,-28.677452 +2022,11,20,1,New South Wales,152.769456,-30.916275 +2021,11,12,1,New South Wales,152.915678,-31.482596 +2021,3,7,1,New South Wales,150.602955,-34.437093 +2023,5,29,1,New South Wales,152.19904,-32.23808 +2023,3,31,1,New South Wales,153.314983,-28.949201 +2022,8,4,1,New South Wales,152.824642,-29.504766 +2023,12,30,1,New South Wales,153.2884,-28.9904 +2021,9,14,1,New South Wales,150.513185,-34.445956 +2020,11,10,1,New South Wales,152.873698,-31.457795 +2022,8,31,1,New South Wales,153.314983,-28.949201 +2023,9,20,1,New South Wales,153.110533,-29.490227 +2021,6,17,1,New South Wales,150.630266,-34.420965 +2022,10,31,1,New South Wales,153.314983,-28.949201 +2023,11,27,1,New South Wales,152.358778,-31.926457 +2022,4,26,1,New South Wales,150.410742,-31.483349 +2021,5,27,1,New South Wales,150.630688,-34.420658 +2024,3,5,1,New South Wales,150.784484,-33.712917 +2023,6,30,1,New South Wales,153.314983,-28.949201 +2022,12,1,1,New South Wales,146.565741,-34.757454 +2022,2,11,1,New South Wales,153.376426,-28.253243 +2024,2,24,1,New South Wales,153.109728,-29.490217 +2024,4,12,1,New South Wales,152.937114,-30.439187 +2020,10,30,1,New South Wales,149.999247,-36.565645 +2022,7,26,1,New South Wales,153.104176,-29.478926 +2022,11,30,1,New South Wales,149.39999,-36.16674 +2021,5,8,1,New South Wales,150.632615,-34.418297 +2021,4,17,1,New South Wales,150.792031,-34.145239 +2021,2,10,1,New South Wales,153.457587,-28.369446 +2023,3,19,1,New South Wales,153.109326,-29.490707 +2021,5,10,1,New South Wales,150.521855,-34.466308 +2021,9,16,1,New South Wales,153.036423,-30.8961 +2021,5,10,1,New South Wales,150.628057,-34.389783 +2021,10,20,1,New South Wales,153.559092,-28.393945 +2021,2,25,1,New South Wales,150.653982,-34.455619 +2021,4,16,1,New South Wales,150.606307,-34.454992 +2021,5,11,1,New South Wales,150.639191,-34.491928 +2022,3,7,1,New South Wales,153.423548,-29.105122 +2021,4,29,1,New South Wales,150.616192,-34.436153 +2022,11,17,1,New South Wales,151.739939,-30.477854 +2021,7,21,1,New South Wales,150.606992,-34.437479 +2023,1,11,1,New South Wales,152.785354,-31.629703 +2021,5,8,1,New South Wales,150.521349,-34.46646 +2021,4,9,1,New South Wales,150.661853,-34.458267 +2020,10,27,1,New South Wales,153.342482,-28.818352 +2021,5,19,1,New South Wales,150.515182,-34.450901 +2023,8,28,1,New South Wales,151.854344,-32.611461 +2021,6,25,1,New South Wales,150.522555,-34.464357 +2022,6,23,1,New South Wales,153.104208,-29.482111 +2021,6,3,1,New South Wales,150.623538,-34.388812 +2020,10,12,1,New South Wales,152.967622,-31.185868 +2021,7,10,1,New South Wales,153.103543,-29.485426 +2021,4,15,1,New South Wales,150.633498,-34.392368 +2021,5,11,1,New South Wales,150.639986,-34.491925 +2024,2,24,1,New South Wales,153.107942,-29.49017 +2022,3,2,1,New South Wales,153.394751,-28.854553 +2021,7,10,1,New South Wales,152.412852,-31.932493 +2023,12,30,1,New South Wales,150.990234,-34.026262 +2021,5,9,1,New South Wales,150.606353,-34.438134 +2021,3,23,1,New South Wales,150.659578,-34.458277 +2023,4,5,1,New South Wales,153.110399,-29.490637 +2022,11,24,1,New South Wales,152.794854,-30.893434 +2023,12,27,1,New South Wales,152.063773,-32.706607 +2021,5,16,1,New South Wales,150.516405,-34.450006 +2021,9,22,1,New South Wales,152.895697,-31.435745 +2021,4,19,1,New South Wales,150.617478,-34.434934 +2023,5,31,1,New South Wales,153.299324,-28.888717 +2021,5,11,1,New South Wales,150.627837,-34.38986 +2021,6,9,1,New South Wales,150.641375,-34.394954 +2022,8,11,1,New South Wales,153.378802,-28.876314 +2021,5,5,1,New South Wales,150.522827,-34.452552 +2023,6,28,1,New South Wales,153.2138,-28.8234 +2021,7,11,1,New South Wales,150.630817,-34.386384 +2023,9,7,1,New South Wales,152.234521,-31.40059 +2021,5,8,1,New South Wales,150.609832,-34.455043 +2022,9,18,1,New South Wales,152.909886,-31.467459 +2021,2,11,1,New South Wales,149.549946,-33.567539 +2021,3,31,1,New South Wales,150.662807,-34.45842 +2021,3,24,1,New South Wales,150.06731,-31.03932 +2023,6,4,1,New South Wales,150.809067,-34.098713 +2023,1,5,1,New South Wales,151.517753,-30.516811 +2021,4,3,1,New South Wales,150.531982,-34.460229 +2021,4,20,1,New South Wales,153.460073,-28.272041 +2021,5,20,1,New South Wales,150.521588,-34.465743 +2021,5,22,1,New South Wales,150.616704,-34.43345 +2020,1,11,1,New South Wales,152.45426,-31.93643 +2023,4,26,1,New South Wales,151.789385,-32.653981 +2021,10,31,1,New South Wales,153.10379,-29.485571 +2021,4,29,1,New South Wales,150.604086,-34.427235 +2021,4,28,1,New South Wales,150.605839,-34.454225 +2021,12,15,1,New South Wales,149.69177,-34.071526 +2021,4,22,1,New South Wales,150.636996,-34.485592 +2021,3,25,1,New South Wales,150.63539,-34.4885 +2021,5,5,1,New South Wales,150.521419,-34.466326 +2022,12,28,1,New South Wales,152.793198,-31.641869 +2020,11,10,1,New South Wales,152.749317,-30.209704 +2022,1,4,1,New South Wales,153.493023,-28.675517 +2020,4,5,1,New South Wales,152.935644,-29.041882 +2021,8,5,1,New South Wales,153.60155,-28.68121 +2023,11,12,1,New South Wales,152.080271,-32.722386 +2021,9,6,1,New South Wales,150.713472,-32.721615 +2021,11,12,1,New South Wales,153.293095,-28.864561 +2023,9,21,1,New South Wales,153.092149,-29.488051 +2020,4,15,1,New South Wales,151.907103,-32.477379 +2021,1,15,1,New South Wales,152.699151,-31.728498 +2024,4,4,1,New South Wales,150.835074,-34.069559 +2021,3,19,1,New South Wales,150.635468,-34.488042 +2021,7,10,1,New South Wales,150.520222,-34.465553 +2022,9,18,1,New South Wales,150.886924,-34.01577 +2020,11,14,1,New South Wales,149.934931,-36.503907 +2020,10,14,1,New South Wales,152.77719,-30.566023 +2020,11,6,1,New South Wales,149.984303,-36.560469 +2021,5,30,1,New South Wales,150.615757,-34.438444 +2021,6,9,1,New South Wales,150.518727,-34.447312 +2024,3,21,1,New South Wales,152.134335,-32.64183 +2021,6,1,1,New South Wales,150.605177,-34.437011 +2022,8,11,1,New South Wales,153.229584,-28.889165 +2021,7,9,1,New South Wales,150.599172,-34.413786 +2020,5,12,1,New South Wales,153.377332,-28.582538 +2021,6,26,1,New South Wales,150.627577,-34.386735 +2021,3,12,1,New South Wales,150.6595,-34.457555 +2021,8,2,1,New South Wales,149.821627,-35.407548 +2020,9,27,1,New South Wales,151.709143,-32.691444 +2022,10,7,1,New South Wales,152.907921,-31.445302 +2020,8,10,1,New South Wales,152.95772,-30.648466 +2021,4,30,1,New South Wales,150.616817,-34.399554 +2021,4,16,1,New South Wales,150.631236,-34.393514 +2023,7,3,1,New South Wales,153.091098,-29.487593 +2021,8,26,1,New South Wales,150.881052,-34.048436 +2022,7,23,1,New South Wales,152.15203,-29.66244 +2023,8,28,1,New South Wales,153.30184,-28.822956 +2022,11,4,1,New South Wales,153.496543,-28.694824 +2020,11,10,1,New South Wales,152.907086,-31.454655 +2021,5,14,1,New South Wales,150.523802,-34.463778 +2020,9,7,1,New South Wales,153.274519,-28.882387 +2020,12,18,1,New South Wales,152.0566,-32.73714 +2022,11,25,1,New South Wales,152.794854,-30.893434 +2021,8,2,1,New South Wales,150.602419,-34.425787 +2021,6,11,1,New South Wales,150.630863,-34.420634 +2021,6,10,1,New South Wales,150.610443,-34.430542 +2023,10,6,1,New South Wales,152.786519,-31.629167 +2022,2,3,1,New South Wales,152.898504,-31.442482 +2022,8,11,1,New South Wales,150.97869,-34.1615 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2020,9,9,1,New South Wales,149.99181,-31.13359 +2023,8,20,1,New South Wales,151.718276,-32.717564 +2020,11,11,1,New South Wales,150.867733,-33.451036 +2020,3,25,1,New South Wales,150.121216,-35.081255 +2021,3,14,1,New South Wales,152.064971,-32.710083 +2020,5,18,1,New South Wales,152.123807,-31.404491 +2021,5,20,1,New South Wales,150.517422,-34.452064 +2021,1,28,1,New South Wales,153.103699,-29.485781 +2022,5,26,1,New South Wales,153.557601,-28.38855 +2022,11,4,1,New South Wales,152.925738,-31.454207 +2022,2,15,1,New South Wales,152.895096,-31.443086 +2021,4,7,1,New South Wales,152.925165,-31.453952 +2023,8,23,1,New South Wales,152.372097,-31.921045 +2020,12,19,1,New South Wales,153.09224,-29.488144 +2021,4,14,1,New South Wales,150.636793,-34.420975 +2022,2,7,1,New South Wales,152.915556,-31.444948 +2021,5,13,1,New South Wales,150.628768,-34.389635 +2021,4,21,1,New South Wales,150.517423,-34.446159 +2021,7,2,1,New South Wales,150.626891,-34.421026 +2021,3,3,1,New South Wales,150.63605,-34.485935 +2021,6,5,1,New South Wales,150.518849,-34.447234 +2020,8,25,1,New South Wales,153.01536,-28.63955 +2021,6,19,1,New South Wales,150.520341,-34.46561 +2020,4,20,1,New South Wales,151.710282,-32.616911 +2022,9,2,1,New South Wales,152.589764,-31.798099 +2021,5,21,1,New South Wales,150.617596,-34.448775 +2023,12,8,1,New South Wales,150.784322,-33.718254 +2021,9,12,1,New South Wales,150.789597,-34.195798 +2021,8,3,1,New South Wales,150.602312,-34.426082 +2023,2,16,1,New South Wales,152.063438,-32.70598 +2021,5,14,1,New South Wales,151.825499,-32.806959 +2022,2,16,1,New South Wales,150.438813,-32.241752 +2023,7,25,1,New South Wales,149.46456,-33.491102 +2022,10,4,1,New South Wales,153.10122,-29.489951 +2023,12,3,1,New South Wales,150.98877,-34.027287 +2024,6,13,1,New South Wales,150.861619,-29.609284 +2021,3,21,1,New South Wales,150.610052,-34.430155 +2021,7,19,1,New South Wales,150.51625,-34.44792 +2022,8,28,1,New South Wales,153.27974,-28.678998 +2020,7,21,1,New South Wales,153.017126,-30.374914 +2021,4,25,1,New South Wales,150.630725,-34.388888 +2024,4,8,1,New South Wales,152.9276,-31.4541 +2024,1,10,1,New South Wales,152.963573,-31.255768 +2021,4,23,1,New South Wales,150.606784,-34.434482 +2023,9,3,1,New South Wales,153.061154,-30.916151 +2023,4,12,1,New South Wales,153.103441,-29.489848 +2021,6,4,1,New South Wales,150.523135,-34.438432 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2022,6,6,1,New South Wales,153.10372,-29.485604 +2020,1,12,1,New South Wales,153.285323,-29.040946 +2021,5,10,1,New South Wales,150.632763,-34.418057 +2021,7,15,1,New South Wales,150.513141,-34.445946 +2021,5,20,1,New South Wales,150.639232,-34.493191 +2021,5,28,1,New South Wales,150.632215,-34.388088 +2023,9,10,1,New South Wales,153.299324,-28.888717 +2021,4,30,1,New South Wales,150.52002,-34.467614 +2023,9,29,1,Queensland,149.062543,-21.160705 +2022,2,14,1,New South Wales,151.005503,-34.045587 +2021,5,4,1,New South Wales,150.627074,-34.38953 +2021,8,3,1,New South Wales,152.105574,-32.760544 +2020,11,2,1,New South Wales,149.984303,-36.560469 +2022,1,5,1,New South Wales,153.101574,-29.489414 +2020,10,19,1,New South Wales,153.303135,-28.824882 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2022,9,9,1,New South Wales,152.063956,-32.706625 +2022,10,23,1,New South Wales,152.466547,-32.020247 +2022,1,4,1,New South Wales,152.456293,-32.403623 +2021,3,3,1,New South Wales,153.527598,-28.404354 +2021,5,26,1,New South Wales,150.598008,-34.425934 +2021,9,22,1,New South Wales,150.546628,-34.514336 +2023,7,6,1,New South Wales,153.103618,-29.485646 +2020,5,,1,New South Wales,152.087904,-32.728239 +2021,6,23,1,New South Wales,150.627427,-34.421307 +2021,5,5,1,New South Wales,150.62717,-34.389595 +2021,6,29,1,New South Wales,150.51801,-34.444332 +2021,1,15,1,New South Wales,150.833136,-34.085987 +2023,6,15,1,New South Wales,152.100262,-32.733304 +2024,1,11,1,New South Wales,153.108146,-29.490297 +2021,6,24,1,New South Wales,150.626039,-34.386138 +2022,10,3,1,New South Wales,153.001032,-30.414469 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2021,9,27,1,New South Wales,152.415374,-31.93308 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2021,5,10,1,New South Wales,153.277955,-28.678994 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,6,2,1,New South Wales,150.529239,-34.464663 +2020,6,30,1,New South Wales,152.800106,-30.218879 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,8,6,1,New South Wales,150.645056,-34.398676 +2020,12,2,1,New South Wales,149.978195,-36.450213 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,3,15,1,New South Wales,150.609004,-34.43064 +2021,5,11,1,New South Wales,150.521696,-34.466142 +2022,9,26,1,New South Wales,153.096242,-29.491483 +2021,1,2,1,New South Wales,152.03482,-32.765351 +2021,5,6,1,New South Wales,150.521927,-34.459431 +2020,12,9,1,New South Wales,152.92666,-28.473761 +2021,7,17,1,New South Wales,150.645218,-34.392891 +2020,10,24,1,New South Wales,149.945227,-36.57753 +2021,12,13,1,New South Wales,150.398058,-34.37673 +2022,8,16,1,New South Wales,153.104106,-29.47845 +2021,6,16,1,New South Wales,153.57307,-28.665253 +2022,12,17,1,New South Wales,153.306614,-28.822635 +2023,9,12,1,New South Wales,153.302174,-28.818627 +2022,6,23,1,New South Wales,150.801348,-34.112152 +2022,10,20,1,New South Wales,153.096489,-30.34975 +2023,8,2,1,New South Wales,152.029056,-32.191495 +2021,3,25,1,New South Wales,150.605101,-34.438939 +2023,7,11,1,New South Wales,148.039429,-35.777938 +2022,8,30,1,New South Wales,149.316321,-36.297737 +2020,9,21,1,New South Wales,150.52964,-34.51358 +2021,4,25,1,New South Wales,150.638045,-34.420178 +2022,3,15,1,New South Wales,150.993823,-34.048508 +2023,8,8,1,New South Wales,153.108113,-29.490497 +2021,12,9,1,New South Wales,150.616612,-34.43782 +2023,7,31,1,New South Wales,151.103015,-29.769074 +2021,6,4,1,New South Wales,150.615783,-34.436389 +2021,7,20,1,New South Wales,150.630711,-34.420604 +2021,11,17,1,New South Wales,150.866027,-34.060984 +2023,11,1,1,New South Wales,152.78048,-31.48568 +2023,10,15,1,New South Wales,152.986767,-30.485692 +2022,3,11,1,New South Wales,152.79576,-31.451319 +2021,5,14,1,New South Wales,150.516097,-34.449017 +2021,5,10,1,New South Wales,150.604907,-34.427034 +2022,4,21,1,New South Wales,150.059758,-30.927524 +2021,5,15,1,New South Wales,150.632602,-34.418351 +2023,11,17,1,New South Wales,152.413018,-31.932772 +2020,7,27,1,New South Wales,152.917354,-31.457605 +2021,7,1,1,New South Wales,150.627307,-34.421332 +2020,5,17,1,New South Wales,149.307204,-36.124832 +2023,3,19,1,New South Wales,152.897363,-31.474877 +2021,5,25,1,New South Wales,150.631378,-34.420112 +2021,3,6,1,New South Wales,150.603594,-34.435682 +2020,1,19,1,New South Wales,152.907848,-31.456237 +2021,3,12,1,New South Wales,150.533116,-34.475695 +2020,9,9,1,New South Wales,153.561257,-28.390177 +2020,7,24,1,New South Wales,152.895044,-31.431 +2022,10,6,1,New South Wales,153.05392,-30.28081 +2023,11,10,1,New South Wales,151.0666,-32.9108 +2021,11,22,1,New South Wales,152.893775,-31.445449 +2021,5,2,1,New South Wales,150.607007,-34.455258 +2021,3,4,1,New South Wales,150.518071,-34.446686 +2021,4,8,1,New South Wales,150.60928,-34.420566 +2020,1,7,1,New South Wales,153.286418,-29.025463 +2020,7,23,1,New South Wales,153.103884,-29.485401 +2021,5,25,1,New South Wales,150.516414,-34.450087 +2023,8,23,1,New South Wales,153.531367,-28.704717 +2022,9,20,1,New South Wales,153.302579,-28.846194 +2020,3,16,1,New South Wales,152.917579,-31.440989 +2020,4,1,1,New South Wales,153.437028,-28.974833 +2020,1,28,1,New South Wales,152.980473,-28.481454 +2020,11,1,1,New South Wales,150.072732,-33.778771 +2024,2,13,1,New South Wales,152.915047,-31.446301 +2022,6,10,1,New South Wales,152.82929,-31.26569 +2022,9,2,1,New South Wales,153.608782,-28.674101 +2022,11,12,1,New South Wales,153.441201,-28.699307 +2020,7,11,1,New South Wales,152.879128,-29.661957 +2021,7,14,1,New South Wales,150.52095,-34.465253 +2021,5,31,1,New South Wales,150.628955,-34.390323 +2020,5,11,1,New South Wales,150.039438,-35.078506 +2021,5,13,1,New South Wales,150.616672,-34.434955 +2021,8,21,1,New South Wales,152.241178,-30.027575 +2021,5,2,1,New South Wales,150.611461,-34.419635 +2021,9,22,1,New South Wales,152.070155,-32.713766 +2022,10,9,1,New South Wales,149.51451,-33.580187 +2023,6,12,1,New South Wales,150.785282,-33.715313 +2022,3,13,1,New South Wales,153.284266,-28.666818 +2021,1,22,1,New South Wales,153.104047,-29.484385 +2021,7,10,1,New South Wales,150.631527,-34.387831 +2020,1,3,1,New South Wales,153.094635,-29.494083 +2021,5,21,1,New South Wales,150.6151,-34.431318 +2020,10,,1,New South Wales,150.537335,-34.380735 +2021,6,22,1,New South Wales,150.645146,-34.393115 +2021,6,22,1,New South Wales,150.628024,-34.420994 +2022,12,14,1,New South Wales,153.110554,-29.489848 +2021,10,25,1,New South Wales,153.229587,-28.889132 +2021,9,15,1,New South Wales,153.007682,-28.625544 +2023,5,28,1,New South Wales,153.608154,-28.690049 +2021,5,13,1,New South Wales,150.486827,-34.461697 +2021,12,12,1,New South Wales,152.91782,-31.438393 +2024,2,13,1,New South Wales,153.091607,-29.487836 +2023,11,29,1,New South Wales,153.09317,-29.492624 +2021,5,25,1,New South Wales,150.619762,-34.439198 +2020,9,17,1,New South Wales,153.305432,-28.269898 +2021,9,24,1,New South Wales,150.51312,-34.447775 +2021,7,14,1,New South Wales,153.328215,-28.667194 +2021,5,16,1,New South Wales,150.520462,-34.454145 +2020,1,14,1,New South Wales,153.103833,-29.484987 +2023,7,9,1,New South Wales,152.92597,-28.965193 +2021,6,12,1,New South Wales,150.626512,-34.38557 +2021,8,10,1,New South Wales,150.522414,-34.465796 +2023,11,3,1,New South Wales,150.48515,-34.39801 +2021,6,16,1,New South Wales,150.520841,-34.465629 +2021,4,23,1,New South Wales,150.605696,-34.423417 +2021,4,19,1,New South Wales,152.860293,-29.627806 +2021,12,18,1,New South Wales,150.61642,-34.441143 +2020,9,22,1,New South Wales,152.901465,-31.448796 +2021,8,29,1,New South Wales,150.247246,-33.854489 +2020,11,,1,New South Wales,152.216815,-32.411142 +2021,4,30,1,New South Wales,150.614887,-34.429601 +2022,11,16,1,New South Wales,153.544989,-28.733635 +2020,10,29,1,New South Wales,149.999247,-36.565645 +2023,11,10,1,New South Wales,150.783887,-33.71694 +2021,6,12,1,New South Wales,150.626602,-34.385472 +2022,2,4,1,New South Wales,152.891577,-31.44651 +2024,4,16,1,New South Wales,152.063261,-32.706194 +2021,6,6,1,New South Wales,150.518967,-34.447281 +2020,8,10,1,New South Wales,152.689833,-31.793819 +2021,6,12,1,New South Wales,150.139812,-32.698758 +2023,10,25,1,New South Wales,153.107438,-29.490142 +2021,5,18,1,New South Wales,150.51647,-34.450043 +2021,4,24,1,New South Wales,150.638851,-34.421681 +2021,6,13,1,New South Wales,150.604263,-34.438922 +2021,10,2,1,New South Wales,152.6143,-30.53562 +2020,10,25,1,New South Wales,153.307732,-28.996723 +2021,5,13,1,New South Wales,150.633242,-34.417651 +2023,6,20,1,New South Wales,153.233803,-29.328715 +2021,5,31,1,New South Wales,150.524419,-34.46499 +2021,8,30,1,New South Wales,150.604152,-34.444717 +2020,12,4,1,New South Wales,152.905822,-31.448677 +2023,7,30,1,New South Wales,153.117442,-28.618439 +2021,11,11,1,New South Wales,153.325686,-28.894918 +2020,3,24,1,New South Wales,152.909346,-31.453298 +2022,12,3,1,New South Wales,150.808544,-34.097588 +2021,8,21,1,New South Wales,152.248544,-30.059088 +2021,1,9,1,New South Wales,153.108189,-29.49025 +2021,4,19,1,New South Wales,150.515382,-34.444134 +2021,6,23,1,New South Wales,150.513825,-34.446365 +2021,7,1,1,New South Wales,150.522357,-34.465876 +2021,8,26,1,New South Wales,152.374025,-31.915828 +2022,8,18,1,New South Wales,153.206595,-28.839568 +2023,4,27,1,New South Wales,153.227641,-28.890086 +2021,6,11,1,New South Wales,150.611909,-34.431796 +2023,10,24,1,New South Wales,152.203368,-32.229858 +2023,11,27,1,New South Wales,152.455197,-31.936369 +2023,6,8,1,New South Wales,150.84256,-34.095871 +2020,9,15,1,New South Wales,150.15712,-31.12662 +2022,2,25,1,New South Wales,153.01171,-30.373861 +2024,7,25,1,New South Wales,152.414615,-31.939633 +2021,10,9,1,New South Wales,146.56435,-34.748414 +2023,4,28,1,New South Wales,153.159083,-28.924809 +2022,11,19,1,New South Wales,153.123305,-30.300643 +2021,9,17,1,New South Wales,153.10475,-29.477016 +2023,3,15,1,New South Wales,153.302967,-28.82047 +2021,7,7,1,New South Wales,150.630931,-34.388892 +2020,2,16,1,New South Wales,152.924533,-31.46356 +2023,11,27,1,New South Wales,152.071511,-32.71712 +2024,1,19,1,New South Wales,151.962627,-32.65561 +2021,6,24,1,New South Wales,150.644287,-34.393126 +2024,1,29,1,New South Wales,150.786057,-33.714026 +2022,10,3,1,New South Wales,152.975743,-31.191933 +2023,5,23,1,New South Wales,151.789792,-32.654088 +2021,12,14,1,New South Wales,151.661001,-32.68591 +2020,12,4,1,New South Wales,152.907054,-31.449658 +2020,1,14,1,New South Wales,152.897875,-31.456325 +2020,9,12,1,New South Wales,153.091468,-29.487747 +2022,8,4,1,New South Wales,153.276657,-28.818014 +2021,12,17,1,New South Wales,150.981735,-34.130172 +2021,4,11,1,New South Wales,150.604208,-34.438966 +2020,10,27,1,New South Wales,153.093454,-29.492534 +2022,11,22,1,New South Wales,150.808987,-34.208693 +2021,4,23,1,New South Wales,153.277281,-28.679386 +2021,2,17,1,New South Wales,151.771158,-32.587406 +2020,3,6,1,New South Wales,153.354401,-28.66184 +2021,6,8,1,New South Wales,150.531214,-34.457852 +2022,11,30,1,New South Wales,152.893768,-31.443094 +2021,6,15,1,New South Wales,152.605868,-30.521931 +2021,4,3,1,New South Wales,150.634724,-34.48856 +2020,11,11,1,New South Wales,150.010074,-36.579686 +2022,8,30,1,New South Wales,149.321078,-36.298331 +2021,5,28,1,New South Wales,153.109728,-29.490208 +2020,6,1,1,New South Wales,149.552017,-33.49075 +2021,1,12,1,New South Wales,153.101392,-29.489732 +2024,2,3,1,New South Wales,150.870993,-34.043832 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2021,5,27,1,New South Wales,150.632021,-34.388039 +2023,7,14,1,New South Wales,153.430479,-29.016164 +2021,8,6,1,New South Wales,152.14047,-31.463603 +2021,10,27,1,New South Wales,149.354865,-36.1835 +2022,6,5,1,New South Wales,153.301293,-28.685102 +2020,7,18,1,New South Wales,153.128071,-28.563076 +2020,1,6,1,New South Wales,152.40941,-31.91019 +2021,4,1,1,New South Wales,150.609889,-34.429755 +2021,5,16,1,New South Wales,150.51622,-34.449642 +2020,10,25,1,New South Wales,149.955017,-36.576791 +2022,11,17,1,New South Wales,152.794854,-30.893434 +2021,11,5,1,New South Wales,151.694627,-32.697232 +2022,11,20,1,New South Wales,152.794854,-30.893434 +2020,7,22,1,New South Wales,152.923472,-31.476918 +2023,11,21,1,New South Wales,152.073109,-32.712611 +2023,1,26,1,New South Wales,152.910026,-31.489791 +2021,6,16,1,New South Wales,150.639832,-34.400325 +2021,2,15,1,New South Wales,153.103688,-29.485786 +2021,9,16,1,New South Wales,153.607362,-28.686607 +2024,2,18,1,New South Wales,152.075981,-32.723348 +2021,6,16,1,New South Wales,150.603777,-34.436884 +2023,11,11,1,New South Wales,150.999003,-34.083054 +2023,10,11,1,New South Wales,150.67208,-33.564761 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2021,12,22,1,New South Wales,150.615705,-34.439876 +2021,12,1,1,New South Wales,150.549897,-34.462 +2020,7,28,1,New South Wales,152.723772,-29.384661 +2021,2,26,1,New South Wales,150.522958,-34.453267 +2020,10,23,1,New South Wales,153.138784,-30.208097 +2020,9,4,1,New South Wales,149.481758,-32.664717 +2023,7,16,1,New South Wales,150.787267,-33.707068 +2020,4,9,1,New South Wales,152.70963,-30.140485 +2023,7,7,1,New South Wales,150.786197,-33.710453 +2021,5,30,1,New South Wales,150.527268,-34.469519 +2021,4,19,1,New South Wales,150.636232,-34.485668 +2024,2,2,1,New South Wales,153.109755,-29.490217 +2021,5,4,1,New South Wales,150.623104,-34.39762 +2021,4,27,1,New South Wales,150.602906,-34.435407 +2021,4,20,1,New South Wales,150.613947,-34.429366 +2020,10,20,1,New South Wales,153.445237,-28.704084 +2022,1,30,1,New South Wales,152.914421,-31.485895 +2021,7,22,1,New South Wales,150.644688,-34.39317 +2021,1,10,1,New South Wales,153.506227,-28.798532 +2021,4,23,1,New South Wales,150.609319,-34.419214 +2021,5,9,1,New South Wales,150.52182,-34.466379 +2020,10,20,1,New South Wales,153.433733,-28.574646 +2021,5,9,1,New South Wales,150.639013,-34.491681 +2024,6,19,1,New South Wales,152.898578,-31.474157 +2023,2,17,1,New South Wales,152.830729,-29.640893 +2021,4,23,1,New South Wales,150.635469,-34.420462 +2021,10,2,1,New South Wales,150.438946,-34.46442 +2020,2,28,1,New South Wales,153.45439,-28.65348 +2022,7,29,1,New South Wales,150.092991,-31.049286 +2023,2,25,1,New South Wales,153.352005,-28.882533 +2021,6,17,1,New South Wales,150.520752,-34.46569 +2021,9,2,1,New South Wales,150.518055,-34.439879 +2023,1,2,1,New South Wales,153.31269,-28.638 +2021,12,12,1,New South Wales,153.27655,-28.872288 +2020,12,15,1,New South Wales,151.480202,-32.815056 +2020,1,4,1,New South Wales,152.898599,-31.455572 +2021,5,29,1,New South Wales,150.527195,-34.4694 +2023,1,11,1,New South Wales,153.510618,-28.808662 +2021,9,23,1,New South Wales,153.108124,-29.490637 +2023,7,23,1,New South Wales,152.978966,-30.421882 +2021,5,13,1,New South Wales,150.517505,-34.453652 +2022,10,7,1,New South Wales,152.378362,-31.918245 +2021,5,1,1,New South Wales,150.604722,-34.427409 +2021,4,28,1,New South Wales,153.6109,-28.68185 +2021,5,19,1,New South Wales,150.630539,-34.395078 +2020,,,1,New South Wales,152.950561,-31.216978 +2020,12,25,1,New South Wales,153.400633,-28.257664 +2020,1,9,1,New South Wales,153.33124,-28.82175 +2021,4,26,1,New South Wales,150.62946,-34.388611 +2021,6,17,1,New South Wales,150.513835,-34.446411 +2023,9,29,1,New South Wales,153.216831,-28.87218 +2021,5,12,1,New South Wales,151.57815,-30.33197 +2023,10,18,1,New South Wales,152.910589,-31.431446 +2021,5,10,1,New South Wales,153.401898,-28.259943 +2023,8,25,1,New South Wales,152.902216,-30.462807 +2021,5,9,1,New South Wales,150.516902,-34.447933 +2020,9,26,1,New South Wales,152.958535,-31.287935 +2021,6,26,1,New South Wales,150.643949,-34.391208 +2021,6,12,1,New South Wales,150.613493,-34.431953 +2020,11,23,1,New South Wales,153.314609,-28.846843 +2024,1,12,1,New South Wales,150.796001,-34.207579 +2022,,,1,New South Wales,149.649508,-37.366283 +2021,4,24,1,New South Wales,150.627172,-34.396473 +2024,8,26,1,New South Wales,152.36433,-31.9505 +2022,3,11,1,New South Wales,153.313065,-28.821373 +2023,11,24,1,New South Wales,153.099788,-29.491609 +2020,11,19,1,New South Wales,149.989088,-36.503585 +2021,5,9,1,New South Wales,150.606295,-34.438277 +2020,9,23,1,New South Wales,153.531294,-28.229296 +2022,4,7,1,New South Wales,153.494903,-28.210224 +2021,7,8,1,New South Wales,152.903199,-29.337796 +2023,9,13,1,New South Wales,152.893638,-31.446628 +2021,6,6,1,New South Wales,150.625973,-34.389625 +2022,3,10,1,New South Wales,151.042,-29.66 +2020,4,27,1,New South Wales,153.301536,-28.9982 +2021,5,21,1,New South Wales,150.639109,-34.493278 +2021,6,27,1,New South Wales,150.627379,-34.420323 +2022,9,30,1,New South Wales,152.90267,-30.23729 +2022,8,9,1,New South Wales,150.518142,-34.451829 +2020,10,28,1,New South Wales,153.555195,-28.586543 +2020,2,12,1,New South Wales,153.262977,-28.881084 +2023,12,30,1,New South Wales,151.083496,-29.745618 +2022,8,27,1,New South Wales,153.104133,-29.480383 +2022,10,24,1,New South Wales,152.065095,-32.706601 +2022,9,26,1,New South Wales,152.925348,-31.45409 +2020,11,5,1,New South Wales,149.984303,-36.560469 +2020,2,20,1,New South Wales,152.061388,-32.709662 +2024,5,31,1,New South Wales,152.916075,-31.445661 +2021,5,8,1,New South Wales,150.627689,-34.390091 +2022,10,31,1,New South Wales,153.484337,-28.680835 +2021,3,2,1,New South Wales,150.520403,-34.468649 +2021,7,10,1,New South Wales,150.812613,-34.10581 +2021,9,12,1,New South Wales,150.514373,-34.444763 +2023,8,17,1,New South Wales,152.910807,-31.431749 +2021,4,17,1,New South Wales,150.630115,-34.394295 +2021,11,24,1,New South Wales,152.063851,-32.705836 +2021,7,1,1,New South Wales,150.63969,-34.398032 +2021,6,15,1,New South Wales,153.318734,-28.815308 +2021,5,16,1,New South Wales,150.629697,-34.389454 +2020,11,30,1,New South Wales,153.367822,-28.866277 +2021,3,6,1,New South Wales,150.515048,-34.459084 +2024,3,22,1,New South Wales,152.379615,-31.911521 +2021,6,6,1,New South Wales,150.630572,-34.42089 +2020,11,7,1,New South Wales,150.015337,-36.564757 +2023,4,10,1,New South Wales,150.170039,-31.071839 +2021,7,16,1,New South Wales,151.64,-30.484131 +2021,6,11,1,New South Wales,150.519878,-34.452538 +2021,7,23,1,New South Wales,152.498708,-31.928166 +2021,6,8,1,New South Wales,150.524717,-34.465221 +2023,11,22,1,New South Wales,152.929586,-31.460967 +2021,1,26,1,New South Wales,153.091339,-29.487798 +2021,8,18,1,New South Wales,150.563856,-34.500349 +2023,4,14,1,New South Wales,152.878361,-29.707102 +2020,12,18,1,New South Wales,152.796737,-30.826158 +2022,9,19,1,New South Wales,153.279776,-28.873889 +2020,12,10,1,New South Wales,152.039666,-32.728849 +2023,11,16,1,New South Wales,152.819515,-31.465131 +2021,11,6,1,New South Wales,153.262928,-28.923326 +2021,4,8,1,New South Wales,150.51808,-34.453718 +2021,3,3,1,New South Wales,150.604679,-34.439237 +2020,9,9,1,New South Wales,152.072576,-32.722656 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2021,6,21,1,New South Wales,150.513149,-34.446072 +2023,5,8,1,New South Wales,152.893782,-31.446463 +2020,11,7,1,New South Wales,150.010074,-36.579686 +2021,5,24,1,New South Wales,150.822272,-34.091605 +2021,6,27,1,New South Wales,150.523012,-34.464339 +2023,10,18,1,New South Wales,150.798386,-34.136195 +2020,11,10,1,New South Wales,152.778159,-31.360232 +2020,8,22,1,New South Wales,152.69903,-30.1873 +2020,7,30,1,New South Wales,152.797403,-31.125764 +2023,7,23,1,New South Wales,150.784951,-33.708134 +2021,10,8,1,New South Wales,150.200415,-29.353952 +2023,10,2,1,New South Wales,152.888212,-31.442949 +2021,7,9,1,New South Wales,152.786303,-29.578019 +2020,1,9,1,New South Wales,150.60054,-34.60904 +2021,9,12,1,New South Wales,151.046163,-34.028699 +2023,10,9,1,New South Wales,152.914421,-31.451443 +2023,8,20,1,New South Wales,152.06535,-32.710944 +2021,6,30,1,New South Wales,150.596146,-34.411545 +2020,10,29,1,New South Wales,152.073562,-32.739975 +2021,7,12,1,New South Wales,150.630815,-34.386438 +2023,10,23,1,New South Wales,152.914421,-31.451443 +2022,10,26,1,New South Wales,153.3159,-28.822574 +2020,6,30,1,New South Wales,151.66621,-30.50157 +2021,7,15,1,New South Wales,150.625142,-34.386706 +2020,3,26,1,New South Wales,152.800782,-31.139683 +2021,6,16,1,New South Wales,150.61707,-34.43434 +2021,6,6,1,New South Wales,150.51943,-34.456666 +2024,5,22,1,New South Wales,152.87026,-31.304217 +2023,1,21,1,New South Wales,152.06385,-32.706782 +2023,8,23,1,New South Wales,152.24788,-32.22768 +2021,4,20,1,New South Wales,150.614467,-34.429088 +2021,5,27,1,New South Wales,150.632215,-34.388466 +2020,5,17,1,New South Wales,149.298614,-36.08564 +2021,3,16,1,New South Wales,150.635165,-34.487991 +2020,10,21,1,New South Wales,153.321214,-28.827891 +2021,10,31,1,New South Wales,150.808214,-34.098121 +2023,8,9,1,New South Wales,150.858454,-34.072662 +2022,5,3,1,New South Wales,152.731727,-28.803954 +2024,5,15,1,New South Wales,152.1867,-31.957841 +2021,6,15,1,New South Wales,150.623211,-34.385767 +2021,4,23,1,New South Wales,150.617124,-34.434359 +2022,10,8,1,New South Wales,153.288292,-28.809314 +2021,6,19,1,New South Wales,150.639508,-34.392881 +2020,2,13,1,New South Wales,152.907433,-31.440849 +2022,3,20,1,New South Wales,152.916509,-31.450675 +2023,6,4,1,New South Wales,150.230275,-34.263916 +2021,5,28,1,New South Wales,153.59019,-28.65505 +2021,5,23,1,New South Wales,150.521579,-34.465707 +2021,5,22,1,New South Wales,150.598598,-34.428506 +2021,7,3,1,New South Wales,150.514129,-34.446417 +2021,5,2,1,New South Wales,150.626025,-34.390104 +2021,5,21,1,New South Wales,150.633076,-34.418514 +2023,8,31,1,New South Wales,153.103479,-29.485622 +2020,10,24,1,New South Wales,149.945227,-36.57753 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2023,7,27,1,New South Wales,153.302578,-28.845525 +2021,5,2,1,New South Wales,150.604799,-34.427023 +2020,11,3,1,New South Wales,153.346548,-28.910046 +2022,3,14,1,New South Wales,152.915576,-31.445979 +2021,5,3,1,New South Wales,150.520358,-34.453972 +2023,10,31,1,New South Wales,152.189597,-32.229205 +2022,6,22,1,New South Wales,150.961107,-34.095162 +2021,5,14,1,New South Wales,150.656065,-34.45858 +2021,5,11,1,New South Wales,150.517381,-34.447574 +2021,4,20,1,New South Wales,150.610247,-34.419106 +2021,5,1,1,New South Wales,150.608412,-34.45561 +2023,9,3,1,New South Wales,152.067342,-32.710612 +2021,5,10,1,New South Wales,150.624822,-34.399574 +2021,11,27,1,New South Wales,152.092547,-28.783966 +2022,3,15,1,New South Wales,153.103704,-29.4858 +2021,5,30,1,New South Wales,150.527159,-34.469526 +2021,11,26,1,New South Wales,153.285445,-28.822308 +2021,3,8,1,New South Wales,150.602999,-34.437085 +2024,3,9,1,New South Wales,150.98719,-34.091408 +2021,4,25,1,New South Wales,150.609402,-34.418972 +2021,7,4,1,New South Wales,150.630696,-34.389888 +2021,12,21,1,New South Wales,153.085519,-30.345701 +2021,4,21,1,New South Wales,150.607442,-34.433133 +2021,5,14,1,New South Wales,150.629,-34.389513 +2021,7,30,1,New South Wales,150.651174,-34.399632 +2022,9,1,1,New South Wales,150.791103,-34.186262 +2023,3,17,1,New South Wales,152.387318,-31.947317 +2021,11,10,1,New South Wales,149.066364,-30.92833 +2021,4,20,1,New South Wales,150.636211,-34.485649 +2023,10,18,1,New South Wales,153.105024,-29.489666 +2021,5,27,1,New South Wales,150.517262,-34.452701 +2021,9,9,1,New South Wales,150.200414,-29.35394 +2023,7,24,1,New South Wales,153.305757,-28.822191 +2021,5,17,1,New South Wales,150.520313,-34.454025 +2021,8,26,1,New South Wales,150.514407,-34.444745 +2021,5,14,1,New South Wales,150.637217,-34.423678 +2021,4,29,1,New South Wales,150.638564,-34.489463 +2021,6,24,1,New South Wales,152.404167,-31.945815 +2021,4,1,1,New South Wales,150.607577,-34.42193 +2021,3,19,1,New South Wales,150.521197,-34.454331 +2023,3,17,1,New South Wales,152.388471,-31.946624 +2023,1,12,1,New South Wales,152.821464,-31.425533 +2021,5,16,1,New South Wales,150.524157,-34.463172 +2020,2,27,1,New South Wales,153.086458,-30.186651 +2023,1,22,1,New South Wales,153.334169,-28.814201 +2021,9,2,1,New South Wales,152.374042,-31.915437 +2021,6,16,1,New South Wales,150.519169,-34.459943 +2020,12,14,1,New South Wales,153.228173,-28.889032 +2023,12,20,1,New South Wales,152.325936,-31.904941 +2023,3,10,1,New South Wales,149.945176,-36.590676 +2021,6,1,1,New South Wales,150.605211,-34.436966 +2021,6,11,1,New South Wales,150.62659,-34.385481 +2021,5,27,1,New South Wales,150.516095,-34.44945 +2023,3,4,1,New South Wales,152.063516,-32.706102 +2021,6,18,1,New South Wales,150.627898,-34.42082 +2020,11,7,1,New South Wales,150.010074,-36.579686 +2023,9,18,1,New South Wales,153.106133,-30.319659 +2021,7,23,1,New South Wales,150.641466,-34.395993 +2021,9,1,1,New South Wales,150.865353,-34.024511 +2022,8,11,1,New South Wales,152.126308,-31.415433 +2020,4,29,1,New South Wales,150.7644,-34.65589 +2021,5,2,1,New South Wales,150.61549,-34.435572 +2022,10,21,1,New South Wales,152.877874,-31.453184 +2021,5,20,1,New South Wales,150.632918,-34.417961 +2021,9,24,1,New South Wales,153.437732,-28.993352 +2021,4,20,1,New South Wales,150.606647,-34.434687 +2023,8,24,1,New South Wales,153.389441,-29.016289 +2020,6,15,1,New South Wales,152.773834,-30.202024 +2021,5,31,1,New South Wales,150.62901,-34.390315 +2021,7,4,1,New South Wales,150.627364,-34.421225 +2021,6,16,1,New South Wales,150.617192,-34.434261 +2021,4,20,1,New South Wales,150.627135,-34.385834 +2021,4,6,1,New South Wales,150.634188,-34.488639 +2021,8,10,1,New South Wales,152.755218,-31.632291 +2021,7,5,1,New South Wales,150.513155,-34.445838 +2024,7,16,1,New South Wales,152.401322,-31.322372 +2020,10,7,1,New South Wales,152.927917,-29.727368 +2020,12,1,1,New South Wales,149.990128,-36.434481 +2021,6,21,1,New South Wales,150.622927,-34.383895 +2021,8,13,1,New South Wales,150.519363,-34.437571 +2021,4,9,1,New South Wales,150.609268,-34.420629 +2023,7,13,1,New South Wales,153.011319,-30.423408 +2021,11,23,1,New South Wales,153.101188,-29.490063 +2021,6,9,1,New South Wales,150.518705,-34.447321 +2021,4,22,1,New South Wales,150.605015,-34.42325 +2023,8,19,1,New South Wales,150.838417,-34.052138 +2020,10,3,1,New South Wales,152.03524,-32.736973 +2021,5,25,1,New South Wales,150.61717,-34.435054 +2023,7,28,1,New South Wales,150.784457,-33.709294 +2020,7,24,1,New South Wales,152.800906,-31.12568 +2020,10,10,1,New South Wales,152.244418,-30.05116 +2020,10,23,1,New South Wales,152.90922,-31.46662 +2021,6,29,1,New South Wales,150.608043,-34.449084 +2021,8,20,1,New South Wales,153.402244,-28.256771 +2020,10,25,1,New South Wales,150.979649,-34.104728 +2021,9,20,1,New South Wales,151.692597,-32.704025 +2021,6,18,1,New South Wales,150.60416,-34.43874 +2020,6,6,1,New South Wales,152.34022,-31.98075 +2021,6,14,1,New South Wales,150.625258,-34.384545 +2022,5,5,1,New South Wales,152.795492,-31.656124 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2021,4,10,1,New South Wales,152.905437,-31.480025 +2024,1,26,1,New South Wales,150.83685,-34.050188 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2022,6,11,1,New South Wales,153.429996,-28.616286 +2021,5,22,1,New South Wales,150.529447,-34.471294 +2022,11,24,1,New South Wales,150.78122,-34.102787 +2022,6,13,1,New South Wales,149.170801,-32.720415 +2021,11,23,1,New South Wales,153.10364,-29.485744 +2021,5,1,1,New South Wales,150.617434,-34.399692 +2021,7,22,1,New South Wales,150.630298,-34.420975 +2021,5,17,1,New South Wales,150.520315,-34.45398 +2020,9,15,1,New South Wales,153.001875,-29.183701 +2021,5,7,1,New South Wales,150.639094,-34.491511 +2022,11,9,1,New South Wales,152.836236,-31.594241 +2020,12,9,1,New South Wales,152.215502,-30.082651 +2021,7,11,1,New South Wales,150.642836,-34.395595 +2023,1,2,1,New South Wales,152.378915,-31.915114 +2021,7,17,1,New South Wales,150.515675,-34.446746 +2021,3,6,1,New South Wales,150.603336,-34.436344 +2021,6,13,1,New South Wales,150.643635,-34.395827 +2024,4,27,1,New South Wales,152.373819,-31.914471 +2021,6,12,1,New South Wales,150.521839,-34.459122 +2021,6,9,1,New South Wales,150.528051,-34.456994 +2021,9,15,1,New South Wales,150.199809,-29.354577 +2021,3,14,1,New South Wales,150.532806,-34.478078 +2021,4,11,1,New South Wales,150.523424,-34.45297 +2021,6,21,1,New South Wales,150.519909,-34.45261 +2021,8,8,1,New South Wales,150.60584,-34.426377 +2023,7,29,1,New South Wales,153.299072,-28.821034 +2023,2,27,1,New South Wales,153.110662,-29.489339 +2021,4,16,1,New South Wales,150.606126,-34.454871 +2021,5,23,1,New South Wales,150.630819,-34.420643 +2020,9,4,1,New South Wales,153.514752,-28.237891 +2021,5,21,1,New South Wales,150.633059,-34.419532 +2021,5,1,1,New South Wales,150.633678,-34.418408 +2021,4,30,1,New South Wales,150.608958,-34.434921 +2022,11,13,1,New South Wales,152.075749,-32.725127 +2020,1,10,1,New South Wales,151.19617,-29.78675 +2021,1,31,1,New South Wales,153.314983,-28.949201 +2020,10,17,1,New South Wales,153.359794,-28.654774 +2022,8,3,1,New South Wales,152.790413,-31.129063 +2023,12,1,1,New South Wales,152.857493,-30.314103 +2021,9,14,1,New South Wales,150.61099,-34.45337 +2021,6,20,1,New South Wales,150.513097,-34.445972 +2021,4,14,1,New South Wales,150.640959,-34.414032 +2021,8,29,1,New South Wales,150.264751,-30.983682 +2024,4,25,1,New South Wales,152.857111,-30.959107 +2021,5,13,1,New South Wales,150.516188,-34.449262 +2021,5,7,1,New South Wales,150.516298,-34.44702 +2021,5,10,1,New South Wales,150.637287,-34.423923 +2022,8,31,1,New South Wales,153.137379,-28.858113 +2024,2,9,1,New South Wales,153.108113,-29.490199 +2022,1,15,1,New South Wales,152.117875,-32.766593 +2021,6,13,1,New South Wales,150.604648,-34.438407 +2020,9,28,1,New South Wales,152.981813,-30.437766 +2021,7,10,1,New South Wales,150.520299,-34.465546 +2021,5,27,1,New South Wales,150.632227,-34.38843 +2021,7,29,1,New South Wales,150.56513,-33.6434 +2021,10,27,1,New South Wales,150.916185,-33.944023 +2023,5,10,1,New South Wales,152.903345,-31.443998 +2021,1,19,1,New South Wales,150.406039,-31.386864 +2022,1,1,1,New South Wales,152.066185,-32.708193 +2021,7,26,1,New South Wales,152.925931,-31.459219 +2021,7,2,1,New South Wales,150.513949,-34.446972 +2020,11,2,1,New South Wales,149.945227,-36.57753 +2023,9,7,1,New South Wales,152.973397,-30.418407 +2021,6,26,1,New South Wales,150.627381,-34.420269 +2020,10,30,1,New South Wales,149.945227,-36.57753 +2022,12,2,1,New South Wales,153.278284,-28.93445 +2021,8,16,1,New South Wales,150.513057,-34.447323 +2021,7,11,1,New South Wales,150.597265,-34.410089 +2020,9,15,1,New South Wales,153.002652,-29.182353 +2021,4,25,1,New South Wales,150.637225,-34.487896 +2022,1,18,1,New South Wales,152.917952,-31.479203 +2022,1,6,1,New South Wales,153.103913,-29.489573 +2021,5,16,1,New South Wales,153.285507,-28.852027 +2021,5,15,1,New South Wales,150.602908,-34.435334 +2021,5,29,1,New South Wales,150.640949,-34.39619 +2023,11,4,1,New South Wales,152.193373,-32.220759 +2021,9,2,1,New South Wales,152.06845,-32.719735 +2020,12,9,1,New South Wales,153.092144,-29.488065 +2023,10,14,1,New South Wales,152.925162,-31.454135 +2020,11,18,1,New South Wales,153.369052,-28.953149 +2020,10,2,1,New South Wales,153.091205,-29.487901 +2021,4,29,1,New South Wales,150.63861,-34.489365 +2022,4,4,1,New South Wales,153.023207,-28.413351 +2021,6,24,1,New South Wales,150.601238,-34.417235 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2021,5,6,1,New South Wales,150.609071,-34.42067 +2020,10,,1,New South Wales,152.892385,-31.477808 +2021,4,18,1,New South Wales,150.514574,-34.443856 +2022,11,16,1,New South Wales,152.073059,-32.724707 +2021,11,22,1,New South Wales,152.892125,-31.446909 +2021,4,25,1,New South Wales,150.605236,-34.423913 +2021,8,2,1,New South Wales,150.884961,-34.003485 +2022,5,29,1,New South Wales,150.524542,-34.267546 +2024,3,22,1,New South Wales,152.382914,-31.921347 +2020,4,20,1,New South Wales,152.853946,-31.431989 +2023,11,2,1,New South Wales,152.197719,-32.009414 +2023,12,10,1,New South Wales,152.176238,-28.635524 +2021,5,24,1,New South Wales,150.639293,-34.392795 +2021,8,14,1,New South Wales,150.786098,-34.211503 +2021,9,15,1,New South Wales,150.97543,-34.104028 +2020,9,14,1,New South Wales,152.711167,-31.34267 +2021,3,17,1,New South Wales,153.104053,-29.485146 +2022,7,4,1,New South Wales,152.916227,-31.453287 +2020,7,12,1,New South Wales,153.277975,-28.678974 +2021,3,20,1,New South Wales,150.520978,-34.453993 +2020,10,21,1,New South Wales,152.878226,-31.449067 +2023,1,29,1,New South Wales,152.063291,-32.706091 +2021,5,27,1,New South Wales,150.618959,-34.439498 +2021,11,3,1,New South Wales,152.816573,-29.814294 +2022,3,28,1,New South Wales,152.903112,-30.236849 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2021,7,23,1,New South Wales,150.624669,-34.386129 +2021,5,7,1,New South Wales,150.609862,-34.455124 +2020,6,27,1,New South Wales,153.104171,-29.480794 +2020,1,8,1,New South Wales,153.104283,-29.480033 +2024,1,15,1,New South Wales,152.433598,-31.793323 +2021,5,7,1,New South Wales,150.615202,-34.435386 +2023,11,21,1,New South Wales,153.109664,-29.491506 +2022,8,24,1,New South Wales,153.103865,-29.485384 +2023,6,2,1,New South Wales,150.886398,-34.014812 +2022,4,24,1,New South Wales,152.063817,-32.706548 +2023,2,5,1,New South Wales,152.897307,-31.47489 +2021,6,5,1,New South Wales,150.607195,-34.435698 +2020,6,25,1,New South Wales,151.100714,-33.153346 +2020,3,23,1,New South Wales,153.33124,-28.82175 +2021,7,10,1,New South Wales,150.631103,-34.388183 +2020,5,20,1,New South Wales,153.469126,-28.55567 +2021,11,12,1,New South Wales,153.407003,-29.032061 +2021,11,3,1,New South Wales,150.616955,-34.441073 +2020,10,3,1,New South Wales,152.143949,-30.090195 +2023,1,1,1,New South Wales,148.646979,-32.173607 +2021,12,6,1,New South Wales,150.790513,-34.143688 +2023,8,14,1,New South Wales,150.785672,-33.705307 +2022,8,14,1,New South Wales,152.943605,-29.708536 +2023,10,1,1,New South Wales,153.094604,-30.371512 +2023,9,26,1,New South Wales,150.671616,-34.286451 +2022,8,31,1,New South Wales,153.314983,-28.949201 +2022,12,20,1,New South Wales,152.908902,-31.440674 +2021,9,8,1,New South Wales,153.598093,-28.712751 +2020,6,17,1,New South Wales,151.223866,-33.133958 +2023,4,30,1,New South Wales,153.314983,-28.949201 +2022,10,17,1,New South Wales,152.915469,-31.445901 +2023,12,25,1,New South Wales,153.363168,-28.689494 +2023,8,25,1,New South Wales,153.10402,-29.485291 +2021,6,21,1,New South Wales,150.51964,-34.461341 +2021,6,11,1,New South Wales,150.51586,-34.447128 +2020,1,8,1,New South Wales,150.855847,-34.076045 +2021,4,22,1,New South Wales,150.615071,-34.429253 +2023,11,10,1,New South Wales,152.818836,-31.467868 +2023,9,24,1,New South Wales,152.988571,-28.68585 +2021,6,3,1,New South Wales,150.519559,-34.447158 +2021,5,4,1,New South Wales,150.61585,-34.436318 +2021,7,12,1,New South Wales,150.516512,-34.446411 +2021,2,8,1,New South Wales,153.402776,-28.711977 +2023,2,16,1,New South Wales,152.380327,-31.921976 +2021,7,21,1,New South Wales,150.623733,-34.383478 +2023,1,15,1,New South Wales,152.906905,-31.163662 +2022,2,15,1,New South Wales,153.293141,-28.864651 +2021,6,11,1,New South Wales,150.613241,-34.432787 +2023,12,23,1,New South Wales,153.10813,-29.490558 +2021,7,8,1,New South Wales,150.59876,-34.414103 +2021,6,12,1,New South Wales,150.51585,-34.447074 +2020,12,1,1,New South Wales,149.990128,-36.434481 +2022,7,24,1,New South Wales,153.104337,-29.477735 +2023,11,8,1,New South Wales,152.530614,-28.930282 +2021,4,2,1,New South Wales,152.918172,-31.485159 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2020,11,10,1,New South Wales,152.822099,-31.268543 +2021,5,8,1,New South Wales,150.605335,-34.437969 +2021,7,7,1,New South Wales,150.514387,-34.446521 +2021,2,16,1,New South Wales,152.92957,-31.458613 +2021,5,2,1,New South Wales,150.617521,-34.399658 +2021,1,5,1,New South Wales,153.092203,-29.488186 +2021,5,14,1,New South Wales,150.640245,-34.493156 +2021,6,17,1,New South Wales,150.60442,-34.438006 +2020,8,12,1,New South Wales,149.547784,-33.623333 +2020,9,24,1,New South Wales,152.913935,-31.473649 +2021,4,22,1,New South Wales,150.604981,-34.423303 +2023,6,18,1,New South Wales,153.103371,-29.489914 +2021,5,11,1,New South Wales,150.605349,-34.427169 +2022,11,24,1,New South Wales,153.270395,-28.931139 +2022,7,2,1,New South Wales,153.555981,-28.398851 +2020,7,12,1,New South Wales,150.798237,-34.190765 +2023,2,2,1,New South Wales,152.892464,-29.854432 +2022,5,17,1,New South Wales,152.905629,-31.436665 +2020,11,9,1,New South Wales,153.555851,-28.399168 +2021,4,11,1,New South Wales,150.533446,-34.479641 +2021,5,13,1,New South Wales,150.604613,-34.438866 +2020,11,3,1,New South Wales,153.335449,-28.872021 +2021,2,16,1,New South Wales,153.107411,-29.490068 +2023,6,10,1,New South Wales,152.940498,-28.640638 +2020,9,21,1,New South Wales,152.907773,-31.489249 +2021,6,26,1,New South Wales,150.597722,-34.418464 +2020,1,17,1,New South Wales,152.746224,-31.256329 +2020,3,19,1,New South Wales,153.444405,-28.901995 +2020,9,10,1,New South Wales,150.822089,-34.100918 +2021,9,20,1,New South Wales,150.614781,-34.450947 +2021,7,8,1,New South Wales,150.630965,-34.388839 +2021,5,17,1,New South Wales,150.530957,-34.471009 +2021,6,7,1,New South Wales,150.519332,-34.457404 +2020,11,9,1,New South Wales,153.1038,-29.485585 +2020,11,3,1,New South Wales,153.346548,-28.910046 +2021,7,9,1,New South Wales,150.520293,-34.465753 +2021,6,18,1,New South Wales,150.603932,-34.438699 +2021,8,9,1,New South Wales,150.520967,-34.465415 +2024,1,9,1,New South Wales,152.919139,-31.46431 +2021,9,9,1,New South Wales,152.911292,-31.430776 +2020,2,19,1,New South Wales,153.333259,-28.818643 +2023,10,13,1,New South Wales,152.063631,-32.705557 +2020,11,,1,New South Wales,152.822341,-31.562884 +2021,5,17,1,New South Wales,150.632098,-34.394549 +2021,4,15,1,New South Wales,150.635664,-34.485738 +2020,1,31,1,New South Wales,149.39945,-36.03167 +2021,5,12,1,New South Wales,150.637333,-34.423816 +2023,6,7,1,New South Wales,150.881836,-34.069134 +2021,6,10,1,New South Wales,150.610655,-34.430753 +2023,5,18,1,New South Wales,150.842335,-34.068546 +2021,11,6,1,New South Wales,153.01346,-30.412503 +2023,2,21,1,New South Wales,152.905296,-31.435838 +2021,5,20,1,New South Wales,150.630022,-34.395294 +2021,4,23,1,New South Wales,150.639219,-34.421752 +2021,2,6,1,New South Wales,153.091285,-29.487901 +2023,4,20,1,New South Wales,153.261246,-28.913441 +2021,6,2,1,New South Wales,150.522402,-34.465823 +2020,10,23,1,New South Wales,149.934245,-36.578531 +2021,4,14,1,New South Wales,150.624683,-34.383695 +2023,9,30,1,New South Wales,153.30978,-28.850935 +2023,6,1,1,New South Wales,152.969997,-31.192743 +2021,11,27,1,New South Wales,153.103741,-29.485454 +2021,5,19,1,New South Wales,150.519866,-34.45297 +2024,1,16,1,New South Wales,153.104847,-29.489699 +2021,5,21,1,New South Wales,153.379512,-29.086999 +2021,8,25,1,New South Wales,152.058972,-32.738424 +2021,2,26,1,New South Wales,153.607954,-28.664639 +2024,1,21,1,New South Wales,150.784078,-33.71671 +2020,11,30,1,New South Wales,153.367822,-28.866277 +2022,4,8,1,New South Wales,153.108199,-29.490269 +2023,10,29,1,New South Wales,152.914421,-31.451443 +2023,2,5,1,New South Wales,153.31535,-28.819753 +2022,1,9,1,New South Wales,152.930133,-29.726604 +2023,10,12,1,New South Wales,152.009401,-31.993933 +2020,8,12,1,New South Wales,152.925984,-31.458851 +2021,7,25,1,New South Wales,150.630676,-34.420676 +2021,6,10,1,New South Wales,150.61391,-34.432971 +2020,10,29,1,New South Wales,149.979238,-36.570187 +2021,2,22,1,New South Wales,153.108151,-29.490222 +2022,11,5,1,New South Wales,152.928607,-31.463982 +2021,5,16,1,New South Wales,150.600306,-34.428125 +2022,9,28,1,New South Wales,153.034932,-30.26903 +2023,4,30,1,New South Wales,153.314983,-28.949201 +2021,5,11,1,New South Wales,150.62715,-34.398781 +2021,11,5,1,New South Wales,152.107655,-31.419488 +2020,12,22,1,New South Wales,152.65317,-30.556321 +2021,6,26,1,New South Wales,150.644383,-34.391613 +2021,5,5,1,New South Wales,150.621936,-34.397769 +2021,8,21,1,New South Wales,153.394737,-28.854476 +2021,7,26,1,New South Wales,150.516391,-34.448662 +2021,5,20,1,New South Wales,150.600174,-34.428943 +2020,3,28,1,New South Wales,150.123233,-35.076012 +2021,6,8,1,New South Wales,150.640192,-34.395238 +2020,7,12,1,New South Wales,153.108231,-29.490032 +2023,10,13,1,New South Wales,152.379417,-31.915685 +2022,8,4,1,New South Wales,153.108119,-29.490213 +2024,7,7,1,New South Wales,152.413213,-31.932117 +2020,10,17,1,New South Wales,149.887989,-36.587028 +2020,1,14,1,New South Wales,150.666119,-33.571047 +2021,6,30,1,New South Wales,150.627293,-34.420304 +2024,9,14,1,New South Wales,149.513928,-33.637563 +2023,1,8,1,New South Wales,153.311341,-28.87453 +2021,4,26,1,New South Wales,150.637249,-34.488221 +2021,4,19,1,New South Wales,150.604539,-34.424692 +2021,5,20,1,New South Wales,150.53001,-34.471008 +2020,1,30,1,New South Wales,153.104165,-29.480224 +2021,5,29,1,New South Wales,150.630917,-34.420635 +2022,1,2,1,New South Wales,150.234723,-31.644972 +2023,9,5,1,New South Wales,152.804326,-31.603505 +2022,12,30,1,New South Wales,153.278306,-28.934472 +2020,10,23,1,New South Wales,149.984303,-36.560469 +2021,6,13,1,New South Wales,150.602977,-34.45196 +2023,2,4,1,New South Wales,153.464226,-28.709279 +2020,9,29,1,New South Wales,151.675,-32.662 +2021,10,14,1,New South Wales,152.271045,-31.934235 +2022,12,11,1,New South Wales,150.813062,-33.376554 +2021,4,24,1,New South Wales,150.521337,-34.466135 +2023,6,27,1,New South Wales,150.662826,-33.526307 +2020,6,5,1,New South Wales,151.735887,-32.515004 +2021,2,4,1,New South Wales,152.173331,-32.666864 +2021,3,12,1,New South Wales,150.531722,-34.464623 +2024,8,27,1,New South Wales,152.698976,-31.785133 +2021,5,17,1,New South Wales,150.599657,-34.427265 +2022,11,16,1,New South Wales,150.716872,-34.284386 +2021,10,13,1,New South Wales,153.017126,-30.374914 +2023,5,4,1,New South Wales,150.786364,-33.711685 +2021,6,4,1,New South Wales,150.604206,-34.426813 +2021,7,21,1,New South Wales,152.162329,-32.713215 +2023,1,7,1,New South Wales,153.336838,-28.816684 +2022,9,28,1,New South Wales,152.915153,-31.446399 +2021,5,15,1,New South Wales,152.415353,-31.933102 +2023,10,23,1,New South Wales,152.875957,-31.450726 +2020,11,16,1,New South Wales,149.987449,-36.51267 +2020,10,30,1,New South Wales,153.09651,-29.485608 +2021,7,23,1,New South Wales,150.642152,-34.397106 +2022,2,3,1,New South Wales,152.906239,-31.44696 +2020,11,18,1,New South Wales,153.369052,-28.953149 +2021,5,28,1,New South Wales,150.522277,-34.465631 +2021,9,8,1,New South Wales,153.10107,-29.490077 +2021,3,26,1,New South Wales,150.532552,-34.481165 +2021,9,11,1,New South Wales,151.046985,-34.0268 +2021,8,22,1,New South Wales,150.513063,-34.447125 +2021,11,2,1,New South Wales,153.059473,-30.911228 +2021,8,24,1,New South Wales,150.64178,-34.395638 +2021,4,15,1,New South Wales,150.614506,-34.436896 +2020,6,8,1,New South Wales,153.323702,-28.672297 +2023,8,2,1,New South Wales,152.03058,-32.184695 +2022,9,11,1,New South Wales,151.089603,-33.139385 +2024,6,13,1,New South Wales,152.845694,-31.192916 +2021,9,27,1,New South Wales,150.844126,-34.063186 +2024,3,22,1,New South Wales,152.379891,-31.920849 +2021,9,11,1,New South Wales,153.317943,-28.82636 +2020,5,18,1,New South Wales,152.105304,-31.411202 +2022,12,2,1,New South Wales,149.97061,-36.58782 +2021,5,14,1,New South Wales,153.108151,-29.490287 +2020,1,10,1,New South Wales,152.913957,-29.006796 +2024,3,9,1,New South Wales,150.785751,-33.70761 +2023,11,11,1,New South Wales,151.79325,-32.697386 +2023,1,11,1,New South Wales,153.10394,-29.489605 +2022,3,23,1,New South Wales,152.109971,-32.738404 +2021,9,4,1,New South Wales,153.262256,-28.950844 +2020,8,4,1,New South Wales,150.804653,-34.157179 +2023,10,30,1,New South Wales,152.189959,-32.223426 +2021,5,10,1,New South Wales,150.639109,-34.491746 +2021,5,18,1,New South Wales,150.640758,-34.494284 +2021,6,6,1,New South Wales,150.608616,-34.433941 +2021,10,4,1,New South Wales,150.982585,-34.130917 +2021,3,31,1,New South Wales,150.635419,-34.488609 +2020,10,17,1,New South Wales,149.361953,-35.992618 +2021,6,24,1,New South Wales,150.601353,-34.417381 +2021,6,23,1,New South Wales,152.893086,-31.454902 +2021,1,5,1,New South Wales,150.02666,-33.76622 +2021,5,21,1,New South Wales,150.633809,-34.392509 +2021,5,3,1,New South Wales,150.520498,-34.454047 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2021,8,7,1,New South Wales,150.513806,-34.446302 +2024,3,8,1,New South Wales,150.785441,-33.707706 +2020,10,12,1,New South Wales,149.941793,-36.651646 +2024,3,27,1,New South Wales,152.924126,-31.473213 +2024,9,29,2,New South Wales,150.76497,-34.927256 +2022,6,27,1,New South Wales,152.94061,-30.39287 +2021,6,24,1,New South Wales,150.51385,-34.447358 +2021,5,6,1,New South Wales,150.60596,-34.437819 +2022,7,19,1,New South Wales,153.613718,-28.658397 +2021,6,20,1,New South Wales,150.622854,-34.384561 +2020,7,30,1,New South Wales,152.927732,-30.507605 +2021,4,29,1,New South Wales,150.60582,-34.454531 +2022,11,30,1,New South Wales,152.754102,-30.882465 +2024,4,23,1,New South Wales,152.43636,-31.943356 +2020,1,3,1,New South Wales,152.909127,-31.453398 +2021,5,29,1,New South Wales,150.642946,-34.394786 +2021,10,10,1,New South Wales,151.655534,-32.686569 +2021,5,27,1,New South Wales,150.616337,-34.451356 +2022,,,1,New South Wales,153.440619,-28.981717 +2021,6,19,1,New South Wales,150.513829,-34.446257 +2021,5,12,1,New South Wales,150.51746,-34.453724 +2023,9,12,1,New South Wales,152.808817,-31.652253 +2022,11,7,1,New South Wales,149.552103,-33.491237 +2020,12,7,1,New South Wales,153.388372,-28.61134 +2023,6,29,1,New South Wales,153.218372,-28.885717 +2021,6,6,1,New South Wales,150.630618,-34.420801 +2021,11,6,1,New South Wales,150.577567,-34.476 +2021,5,16,1,New South Wales,150.628801,-34.389238 +2024,2,1,1,New South Wales,150.78484,-33.713675 +2021,3,4,1,New South Wales,150.520946,-34.466839 +2020,10,28,1,New South Wales,153.339182,-28.872021 +2020,9,7,1,New South Wales,152.237605,-31.637937 +2020,11,21,1,New South Wales,153.10151,-29.489526 +2020,6,29,1,New South Wales,153.273906,-28.888635 +2021,8,26,1,New South Wales,152.94059,-29.736166 +2023,9,1,1,New South Wales,150.21371,-34.61875 +2020,5,8,1,New South Wales,153.095532,-29.483435 +2021,4,19,1,New South Wales,150.627201,-34.385809 +2021,9,16,1,New South Wales,150.200473,-29.354393 +2021,4,24,1,New South Wales,150.606626,-34.434668 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2021,1,28,1,New South Wales,153.10932,-29.490787 +2021,8,15,1,New South Wales,150.520235,-34.465509 +2021,4,14,1,New South Wales,150.520153,-34.453571 +2023,9,15,1,New South Wales,152.794163,-31.638555 +2020,9,14,1,New South Wales,152.923854,-31.443304 +2021,7,2,1,New South Wales,150.615629,-33.431033 +2020,4,24,1,New South Wales,153.317214,-28.846236 +2021,6,2,1,New South Wales,150.521459,-34.465705 +2021,7,11,1,New South Wales,150.626277,-34.421204 +2021,8,13,1,New South Wales,152.436118,-31.818397 +2023,9,17,1,New South Wales,150.786946,-33.708375 +2022,9,10,1,New South Wales,152.374871,-31.915681 +2023,1,26,1,New South Wales,153.108065,-29.490339 +2021,4,27,1,New South Wales,150.615512,-34.435563 +2024,1,18,1,New South Wales,152.924357,-30.504964 +2020,5,28,1,New South Wales,149.365456,-36.015923 +2023,11,13,1,New South Wales,152.926107,-31.471364 +2020,12,4,1,New South Wales,153.012809,-30.365322 +2021,7,3,1,New South Wales,150.62807,-34.390847 +2021,6,3,1,New South Wales,150.604159,-34.437983 +2021,5,14,1,New South Wales,150.520431,-34.45409 +2021,5,22,1,New South Wales,150.518068,-34.451563 +2021,11,30,1,New South Wales,150.095687,-31.079438 +2020,8,9,1,New South Wales,152.890135,-31.458972 +2021,4,4,1,New South Wales,150.608538,-34.422562 +2021,3,11,1,New South Wales,150.603665,-34.440831 +2021,12,2,1,New South Wales,153.504788,-28.794781 +2021,9,4,1,New South Wales,153.052346,-28.468198 +2023,10,29,1,New South Wales,152.198292,-32.220827 +2021,6,17,1,New South Wales,150.521404,-34.465722 +2022,8,17,1,New South Wales,153.167463,-29.432632 +2020,5,15,1,New South Wales,153.293409,-28.864618 +2022,1,22,1,New South Wales,151.77252,-32.428555 +2021,8,9,1,New South Wales,150.604735,-34.427338 +2022,9,6,1,New South Wales,152.938192,-29.722007 +2021,4,23,1,New South Wales,150.636212,-34.420341 +2021,7,17,1,New South Wales,150.596693,-34.414865 +2021,5,21,1,New South Wales,150.607616,-34.432758 +2021,7,18,1,New South Wales,152.803229,-29.560969 +2021,5,24,1,New South Wales,152.905478,-31.467655 +2022,12,26,1,New South Wales,146.829753,-34.878995 +2023,2,19,1,New South Wales,153.217689,-28.830442 +2021,4,14,1,New South Wales,152.926578,-31.454549 +2021,8,20,1,New South Wales,152.377772,-31.91785 +2023,1,14,1,New South Wales,152.915039,-31.446352 +2020,9,24,1,New South Wales,150.859776,-34.03093 +2021,5,26,1,New South Wales,150.055172,-33.764804 +2024,6,15,1,New South Wales,152.876081,-31.455905 +2021,9,19,1,New South Wales,150.650362,-34.40298 +2021,2,1,1,New South Wales,153.017126,-30.374914 +2024,8,20,1,New South Wales,152.098861,-32.175333 +2021,12,27,1,New South Wales,153.353824,-28.894609 +2020,9,23,1,New South Wales,150.781397,-34.196128 +2021,2,1,1,New South Wales,152.638392,-31.555227 +2023,11,6,1,New South Wales,151.854278,-32.726415 +2023,6,25,1,New South Wales,150.784899,-33.716394 +2020,10,6,1,New South Wales,149.936774,-36.662249 +2021,4,28,1,New South Wales,153.6109,-28.68185 +2020,8,8,1,New South Wales,153.281817,-28.822398 +2021,4,13,1,New South Wales,152.885124,-31.440551 +2020,10,13,1,New South Wales,151.780333,-32.714185 +2021,5,21,1,New South Wales,150.517455,-34.452056 +2022,8,19,1,New South Wales,153.556828,-28.403846 +2021,9,30,1,New South Wales,153.314983,-28.949201 +2020,8,5,1,New South Wales,152.92573,-31.444134 +2020,1,16,1,New South Wales,153.092272,-29.488144 +2021,5,16,1,New South Wales,150.637302,-34.423752 +2022,11,24,1,New South Wales,152.788781,-30.895519 +2021,4,25,1,New South Wales,150.610322,-34.419117 +2021,11,30,1,New South Wales,153.314983,-28.949201 +2021,11,4,1,New South Wales,152.914215,-31.460656 +2022,5,3,1,New South Wales,152.915994,-31.444793 +2022,1,27,1,New South Wales,152.894418,-31.448305 +2022,10,11,1,New South Wales,152.83008,-31.650157 +2020,11,30,1,New South Wales,153.314983,-28.949201 +2023,10,10,1,New South Wales,153.095909,-29.482624 +2021,11,30,1,New South Wales,153.314983,-28.949201 +2023,5,31,1,New South Wales,153.314983,-28.949201 +2021,3,28,1,New South Wales,152.065691,-32.743065 +2021,4,30,1,New South Wales,150.615878,-34.436481 +2024,1,8,1,New South Wales,151.083234,-29.74731 +2021,7,17,1,New South Wales,150.625275,-34.385834 +2023,1,31,1,New South Wales,153.314983,-28.949201 +2021,6,5,1,New South Wales,152.922548,-31.4469 +2021,6,12,1,New South Wales,150.644351,-34.396274 +2021,12,15,1,New South Wales,150.831321,-29.654391 +2020,3,17,1,New South Wales,152.924859,-31.453985 +2021,11,30,1,New South Wales,153.314983,-28.949201 +2021,6,25,1,New South Wales,150.60492,-34.437655 +2022,5,26,1,New South Wales,150.817545,-29.618249 +2021,3,6,1,New South Wales,150.655834,-34.45633 +2020,1,16,1,New South Wales,150.809,-34.20866 +2020,10,27,1,New South Wales,152.896393,-31.447575 +2021,4,19,1,New South Wales,150.604539,-34.424692 +2022,7,5,1,New South Wales,152.909796,-31.471601 +2021,6,26,1,New South Wales,150.643817,-34.390881 +2020,8,2,1,New South Wales,152.9581,-30.6487 +2021,6,3,1,New South Wales,150.534664,-34.463421 +2021,11,3,1,New South Wales,152.823603,-29.812571 +2022,7,16,1,New South Wales,152.039817,-32.735366 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2020,4,3,1,New South Wales,150.109142,-35.047975 +2022,1,7,1,New South Wales,153.110597,-29.489582 +2022,10,11,1,New South Wales,150.933901,-33.952749 +2021,5,13,1,New South Wales,150.637304,-34.423698 +2021,7,3,1,New South Wales,150.643253,-34.397019 +2022,2,21,1,New South Wales,152.418213,-31.905008 +2021,11,19,1,New South Wales,149.767163,-32.406834 +2021,5,28,1,New South Wales,150.639127,-34.491503 +2021,9,19,1,New South Wales,153.092224,-29.488102 +2023,9,17,1,New South Wales,151.039191,-34.018358 +2022,11,4,1,New South Wales,149.552078,-33.491254 +2024,9,,1,New South Wales,149.574448,-32.588052 +2021,8,8,1,New South Wales,150.520766,-34.465222 +2021,5,13,1,New South Wales,150.629031,-34.389567 +2021,12,10,1,New South Wales,153.521123,-28.72186 +2021,7,2,1,New South Wales,150.977245,-34.086512 +2020,8,21,1,New South Wales,153.103755,-29.485585 +2020,3,10,1,New South Wales,153.385934,-29.091518 +2021,3,2,1,New South Wales,150.521633,-34.449147 +2020,7,12,1,New South Wales,152.403053,-31.925208 +2021,6,19,1,New South Wales,153.49754,-28.768431 +2021,4,22,1,New South Wales,150.637104,-34.485252 +2024,8,9,1,New South Wales,152.523761,-32.338572 +2020,10,4,1,New South Wales,153.272199,-29.010393 +2021,1,15,1,New South Wales,149.549569,-33.563409 +2023,3,31,1,New South Wales,153.314983,-28.949201 +2022,12,9,1,New South Wales,152.923591,-31.456352 +2021,5,28,1,New South Wales,153.59019,-28.65505 +2022,8,31,1,New South Wales,153.314983,-28.949201 +2021,7,5,1,New South Wales,150.978594,-34.084503 +2023,4,16,1,New South Wales,152.928862,-31.459497 +2023,2,28,1,New South Wales,153.314983,-28.949201 +2021,4,3,1,New South Wales,150.607164,-34.437573 +2022,9,11,1,New South Wales,152.895113,-31.457515 +2021,2,9,1,New South Wales,150.848251,-34.078728 +2022,11,30,1,New South Wales,153.314983,-28.949201 +2023,9,15,1,New South Wales,153.298463,-28.81848 +2021,12,31,1,New South Wales,153.314983,-28.949201 +2020,9,3,1,New South Wales,153.004617,-29.182696 +2021,6,13,1,New South Wales,150.521274,-34.465692 +2021,5,12,1,New South Wales,150.616992,-34.433663 +2022,11,3,1,New South Wales,152.908555,-31.454642 +2021,5,3,1,New South Wales,150.520399,-34.454054 +2021,4,12,1,New South Wales,150.609206,-34.420483 +2023,2,5,1,New South Wales,150.808288,-34.098117 +2021,6,24,1,New South Wales,150.627232,-34.421294 +2022,2,21,1,New South Wales,153.104031,-29.484371 +2021,11,24,1,New South Wales,153.109363,-29.490586 +2023,12,21,1,New South Wales,152.910323,-30.505568 +2022,10,12,1,New South Wales,152.784391,-31.630507 +2021,5,22,1,New South Wales,150.515552,-34.450899 +2022,12,13,1,New South Wales,150.824237,-34.151179 +2020,11,11,1,New South Wales,152.930019,-31.4766 +2021,6,9,1,New South Wales,150.613964,-34.433008 +2021,3,23,1,New South Wales,150.533034,-34.481085 +2020,5,13,1,New South Wales,152.02848,-32.73263 +2020,10,29,1,New South Wales,149.958519,-36.587122 +2021,3,8,1,New South Wales,152.409406,-31.910186 +2022,12,11,1,New South Wales,152.085295,-32.729403 +2021,6,30,1,New South Wales,150.596308,-34.411963 +2020,11,18,1,New South Wales,149.977337,-36.522201 +2020,9,14,1,New South Wales,153.296147,-28.809588 +2023,7,12,1,New South Wales,151.066755,-29.742098 +2021,8,4,1,New South Wales,153.523472,-28.686915 +2021,6,25,1,New South Wales,150.600047,-34.418176 +2020,9,29,1,New South Wales,152.840035,-29.320091 +2021,6,1,1,New South Wales,150.60486,-34.425257 +2020,7,23,1,New South Wales,152.806661,-31.127475 +2023,10,14,1,New South Wales,152.38376,-31.929119 +2020,10,26,1,New South Wales,153.499496,-28.223126 +2021,6,12,1,New South Wales,150.519933,-34.452539 +2021,5,1,1,New South Wales,150.604781,-34.427275 +2020,9,8,1,New South Wales,152.907877,-31.468619 +2020,12,30,1,New South Wales,153.10821,-29.490213 +2020,8,25,1,New South Wales,152.955919,-30.667328 +2023,12,12,1,New South Wales,151.851809,-32.046777 +2021,3,25,1,New South Wales,150.635326,-34.488454 +2020,5,1,1,New South Wales,153.400672,-28.258145 +2021,6,1,1,New South Wales,150.616581,-34.438162 +2022,10,3,1,New South Wales,153.599218,-28.719867 +2020,12,16,1,New South Wales,153.414263,-28.666771 +2020,8,15,1,New South Wales,153.549427,-28.569742 +2021,5,4,1,New South Wales,150.627027,-34.389673 +2023,9,16,1,New South Wales,153.316134,-28.821099 +2023,6,19,1,New South Wales,153.109755,-29.490199 +2021,10,10,1,New South Wales,153.104546,-29.477319 +2021,6,12,1,New South Wales,150.604144,-34.439289 +2020,11,5,1,New South Wales,153.103935,-29.489549 +2021,5,31,1,New South Wales,150.638671,-34.491431 +2024,4,3,1,New South Wales,152.900722,-31.409189 +2020,10,30,1,New South Wales,149.958519,-36.587122 +2023,2,19,1,New South Wales,153.279565,-28.874205 +2021,5,16,1,New South Wales,150.614567,-34.433976 +2020,1,12,1,New South Wales,153.285323,-29.040946 +2020,8,13,1,New South Wales,153.547279,-28.384631 +2020,11,10,1,New South Wales,152.778159,-31.360232 +2021,6,30,1,New South Wales,150.513093,-34.447225 +2022,8,2,1,New South Wales,150.792885,-34.143675 +2023,8,11,1,New South Wales,152.891395,-30.467635 +2021,5,5,1,New South Wales,150.627137,-34.389603 +2021,12,1,1,New South Wales,152.900919,-31.474006 +2022,9,24,1,New South Wales,153.108162,-29.490539 +2020,9,15,1,New South Wales,153.002256,-29.182481 +2021,6,11,1,New South Wales,150.613279,-34.432598 +2020,8,19,1,New South Wales,153.09202,-29.488027 +2021,6,15,1,New South Wales,150.623159,-34.385685 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2024,7,12,1,New South Wales,151.774513,-32.236859 +2021,5,4,1,New South Wales,150.632793,-34.418905 +2021,2,24,1,New South Wales,150.616224,-34.434621 +2021,6,6,1,New South Wales,150.608322,-34.435089 +2021,9,11,1,New South Wales,153.394064,-28.267041 +2021,2,13,1,New South Wales,153.095224,-28.601078 +2024,4,8,1,New South Wales,150.989041,-34.030317 +2023,9,3,1,New South Wales,153.508229,-28.618208 +2021,4,23,1,New South Wales,150.617192,-34.434271 +2023,9,15,1,New South Wales,152.81935,-31.648892 +2021,5,20,1,New South Wales,150.958541,-33.709989 +2020,11,27,1,New South Wales,153.487886,-28.682671 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2021,7,1,1,New South Wales,150.627242,-34.390534 +2021,11,14,1,New South Wales,152.418213,-31.905008 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2020,4,23,1,New South Wales,152.802107,-31.474753 +2021,7,24,1,New South Wales,150.624298,-34.386185 +2021,5,9,1,New South Wales,150.615878,-34.434957 +2020,9,25,1,New South Wales,153.090856,-29.480131 +2021,4,27,1,New South Wales,150.6095,-34.418947 +2023,4,7,1,New South Wales,153.104761,-29.489666 +2021,5,13,1,New South Wales,150.629001,-34.396031 +2020,9,12,1,New South Wales,150.53304,-34.38071 +2022,8,13,1,New South Wales,150.705766,-33.344283 +2020,4,24,1,New South Wales,150.679901,-32.3877 +2020,12,8,1,New South Wales,152.901864,-31.442303 +2021,8,5,1,New South Wales,153.60155,-28.68121 +2020,4,1,1,New South Wales,150.055339,-33.778195 +2021,4,5,1,New South Wales,150.520618,-34.450714 +2023,6,29,1,New South Wales,152.90819,-31.475785 +2021,12,31,1,New South Wales,153.314983,-28.949201 +2020,9,7,1,New South Wales,152.007737,-32.728287 +2023,1,13,1,New South Wales,153.557714,-28.398325 +2021,6,16,1,New South Wales,150.630234,-34.420947 +2021,12,31,1,New South Wales,153.109363,-29.490469 +2021,4,24,1,New South Wales,150.610442,-34.419119 +2024,2,1,1,New South Wales,153.071428,-30.888396 +2023,8,4,1,New South Wales,152.922969,-31.460013 +2021,5,3,1,New South Wales,150.606644,-34.457703 +2021,10,30,1,New South Wales,153.322321,-28.817057 +2021,11,6,1,New South Wales,150.876658,-34.015472 +2023,1,6,1,New South Wales,152.928707,-31.459113 +2021,11,23,1,New South Wales,150.808987,-34.208693 +2021,5,14,1,New South Wales,150.517727,-34.441378 +2021,5,28,1,New South Wales,150.527149,-34.469489 +2021,3,20,1,New South Wales,150.635618,-34.488144 +2022,4,23,1,New South Wales,153.561219,-28.393386 +2021,4,25,1,New South Wales,150.661695,-34.458471 +2021,7,25,1,New South Wales,150.517916,-34.444943 +2021,5,27,1,New South Wales,150.639094,-34.491511 +2022,6,15,1,New South Wales,153.391331,-28.867547 +2022,8,15,1,New South Wales,150.797306,-34.113612 +2022,3,11,1,New South Wales,150.793315,-34.129134 +2021,5,23,1,New South Wales,150.527512,-34.469352 +2020,6,3,1,New South Wales,153.468596,-28.557 +2021,1,14,1,New South Wales,150.101318,-33.778446 +2020,4,14,1,New South Wales,151.896381,-32.472815 +2022,12,14,1,New South Wales,153.390054,-28.282383 +2020,4,30,1,New South Wales,153.314983,-28.949201 +2023,1,12,1,New South Wales,152.907801,-31.434663 +2023,9,27,1,New South Wales,150.666545,-34.249366 +2020,7,31,1,New South Wales,153.314983,-28.949201 +2021,3,11,1,New South Wales,150.514255,-34.445824 +2020,12,1,1,New South Wales,153.42455,-28.662539 +2020,9,15,1,New South Wales,153.002312,-29.182186 +2021,8,26,1,New South Wales,150.784406,-34.192158 +2023,9,24,1,New South Wales,153.306421,-28.821728 +2020,3,29,1,New South Wales,152.926025,-31.458898 +2020,5,,1,New South Wales,152.039889,-32.730533 +2021,9,9,1,New South Wales,152.868196,-31.474859 +2021,9,10,1,New South Wales,153.290989,-28.711703 +2020,10,17,1,New South Wales,149.887989,-36.587028 +2021,6,20,1,New South Wales,153.328392,-28.666586 +2023,11,1,1,New South Wales,152.782127,-31.483779 +2021,6,20,1,New South Wales,150.519898,-34.45261 +2021,7,11,1,New South Wales,150.626752,-34.421348 +2022,3,19,1,New South Wales,152.390764,-31.95843 +2022,11,17,1,New South Wales,150.866622,-34.023931 +2021,6,3,1,New South Wales,150.639431,-34.399514 +2021,4,26,1,New South Wales,150.61029,-34.419125 +2022,9,29,1,New South Wales,152.90641,-30.24074 +2021,10,31,1,New South Wales,153.10416,-29.478791 +2023,10,27,1,New South Wales,152.928733,-31.459115 +2021,7,16,1,New South Wales,150.514585,-34.446453 +2023,7,11,1,New South Wales,150.99157,-29.705835 +2023,10,28,1,New South Wales,152.189597,-32.229205 +2021,9,20,1,New South Wales,150.513095,-34.446035 +2021,4,28,1,New South Wales,150.604245,-34.435 +2021,6,13,1,New South Wales,150.515747,-34.446891 +2020,9,27,1,New South Wales,153.101419,-29.489648 +2021,8,30,1,New South Wales,152.930481,-31.449625 +2021,6,9,1,New South Wales,150.525394,-34.45887 +2024,8,22,1,New South Wales,152.807865,-31.670986 +2023,1,7,1,New South Wales,153.59617,-28.65207 +2020,9,25,1,New South Wales,152.758918,-31.246496 +2022,8,30,1,New South Wales,149.324745,-36.294353 +2021,12,3,1,New South Wales,152.063608,-32.705708 +2023,6,6,1,New South Wales,152.38713,-31.876522 +2023,9,26,1,New South Wales,153.531123,-28.687383 +2023,9,14,1,New South Wales,150.790894,-34.135265 +2023,3,27,1,New South Wales,153.296899,-28.820794 +2022,7,31,1,New South Wales,152.17254,-29.891456 +2023,7,1,1,New South Wales,150.84311,-34.05664 +2020,11,24,1,New South Wales,153.406428,-28.978044 +2021,4,22,1,New South Wales,150.614364,-34.430032 +2023,6,29,1,New South Wales,153.382819,-28.7863 +2022,11,30,1,New South Wales,152.754102,-30.882465 +2020,2,26,1,New South Wales,153.556012,-28.399483 +2021,3,15,1,New South Wales,152.912089,-31.469217 +2021,5,3,1,New South Wales,150.637345,-34.488673 +2020,12,,1,New South Wales,152.825124,-31.652416 +2021,5,28,1,New South Wales,150.527195,-34.469391 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2023,11,5,1,New South Wales,150.786241,-33.706027 +2022,12,21,1,New South Wales,153.63661,-28.63518 +2021,6,16,1,New South Wales,150.514406,-34.446612 +2020,5,3,1,New South Wales,150.0108,-34.83788 +2021,4,27,1,New South Wales,150.521383,-34.466433 +2023,8,1,1,New South Wales,153.60798,-28.68934 +2022,8,2,1,New South Wales,150.793832,-34.137524 +2021,11,16,1,New South Wales,152.826153,-29.809912 +2021,5,12,1,New South Wales,150.637324,-34.423744 +2022,7,21,1,New South Wales,152.897146,-31.460297 +2024,4,14,1,New South Wales,153.331167,-28.719403 +2021,4,1,1,New South Wales,150.053503,-33.774437 +2021,5,4,1,New South Wales,150.632738,-34.41894 +2023,8,19,1,New South Wales,151.670037,-32.606552 +2023,10,25,1,New South Wales,152.081965,-32.73276 +2021,5,9,1,New South Wales,150.51707,-34.447405 +2023,1,17,1,New South Wales,152.81152,-29.515097 +2021,3,12,1,New South Wales,151.851816,-32.722852 +2022,4,26,1,New South Wales,153.279987,-29.033708 +2021,4,17,1,New South Wales,150.630081,-34.394348 +2021,4,26,1,New South Wales,150.62442,-34.399936 +2022,1,1,1,New South Wales,153.456385,-28.649096 +2021,10,14,1,New South Wales,153.591093,-28.74039 +2023,1,2,1,New South Wales,151.3166,-30.3 +2024,1,4,1,New South Wales,152.403784,-31.939273 +2020,3,29,1,New South Wales,152.928234,-31.459581 +2021,7,12,1,New South Wales,150.626343,-34.421187 +2021,6,28,1,New South Wales,150.62738,-34.420287 +2022,12,10,1,New South Wales,153.224344,-28.941391 +2021,6,8,1,New South Wales,150.515133,-34.456958 +2021,7,21,1,New South Wales,150.623744,-34.383461 +2023,6,17,1,New South Wales,153.104911,-29.476792 +2023,9,24,1,New South Wales,153.394689,-28.95968 +2021,6,15,1,New South Wales,150.615535,-34.432093 +2021,5,23,1,New South Wales,150.518323,-34.451397 +2021,4,29,1,New South Wales,150.824127,-34.150307 +2021,2,3,1,New South Wales,149.552928,-33.561952 +2021,6,11,1,New South Wales,150.644078,-34.396313 +2021,3,22,1,New South Wales,150.51718,-34.446253 +2023,2,17,1,New South Wales,153.629331,-28.637349 +2021,5,17,1,New South Wales,150.600481,-34.427344 +2021,5,4,1,New South Wales,150.622817,-34.397399 +2023,10,25,1,New South Wales,152.198292,-32.220827 +2021,12,14,1,New South Wales,153.552367,-28.586544 +2022,12,7,1,New South Wales,153.104106,-29.483885 +2021,6,2,1,New South Wales,151.082882,-29.728539 +2024,2,1,1,New South Wales,153.109363,-29.490455 +2022,2,17,1,New South Wales,152.067434,-32.708155 +2020,3,6,1,New South Wales,152.916167,-31.485794 +2022,1,28,1,New South Wales,152.895326,-31.447895 +2021,3,24,1,New South Wales,153.109392,-30.298612 +2023,8,29,1,New South Wales,150.785979,-33.714084 +2021,5,3,1,New South Wales,150.637334,-34.488664 +2023,9,28,1,New South Wales,150.786645,-33.708651 +2022,7,17,1,New South Wales,153.108049,-29.490184 +2020,5,24,1,New South Wales,152.89309,-31.45491 +2020,4,9,1,New South Wales,152.714762,-30.139603 +2023,9,13,1,New South Wales,152.912151,-30.488316 +2022,2,15,1,New South Wales,151.170878,-33.200215 +2021,4,17,1,New South Wales,150.640309,-34.415877 +2021,6,17,1,New South Wales,150.622631,-34.383998 +2020,5,10,1,New South Wales,150.034879,-35.079586 +2023,10,6,1,New South Wales,153.101167,-29.49004 +2021,8,18,1,New South Wales,153.110865,-29.488503 +2021,9,3,1,New South Wales,150.514176,-34.447373 +2023,4,20,1,New South Wales,153.557697,-28.388099 +2021,6,13,1,New South Wales,150.630185,-34.420342 +2022,7,24,1,New South Wales,152.897428,-31.475274 +2024,3,23,1,New South Wales,150.985399,-34.091166 +2021,4,24,1,New South Wales,150.610271,-34.419025 +2023,12,1,1,New South Wales,152.802063,-30.325257 +2023,9,28,1,New South Wales,149.250553,-36.019986 +2021,6,9,1,New South Wales,150.6465,-34.39718 +2021,6,28,1,New South Wales,150.522383,-34.465751 +2022,4,11,1,New South Wales,153.103924,-29.489573 +2022,11,15,1,New South Wales,150.9286,-33.95807 +2021,5,7,1,New South Wales,150.521179,-34.435787 +2022,6,19,1,New South Wales,152.995213,-28.473948 +2022,9,2,1,New South Wales,152.066185,-32.708193 +2021,6,9,1,New South Wales,150.525435,-34.458591 +2021,6,12,1,New South Wales,150.604266,-34.439211 +2021,3,6,1,New South Wales,150.603438,-34.435435 +2021,6,15,1,New South Wales,150.615709,-34.43325 +2023,10,6,1,New South Wales,152.877911,-31.450436 +2020,2,19,1,New South Wales,153.283251,-28.822308 +2020,2,3,1,New South Wales,151.991907,-32.720714 +2023,8,25,1,New South Wales,153.101966,-29.488975 +2023,2,7,1,New South Wales,152.905546,-31.437726 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,5,17,1,New South Wales,150.813678,-34.104761 +2021,6,8,1,New South Wales,150.615215,-34.432618 +2021,7,31,1,New South Wales,150.518584,-34.435608 +2020,11,3,1,New South Wales,149.976368,-36.555504 +2021,6,12,1,New South Wales,150.626602,-34.385463 +2021,5,2,1,New South Wales,150.637467,-34.42371 +2021,3,8,1,New South Wales,152.6077,-30.52432 +2023,9,21,1,New South Wales,151.79325,-32.697386 +2023,4,20,1,New South Wales,152.92671,-31.471075 +2020,7,27,1,New South Wales,150.813678,-34.104761 +2022,1,8,1,New South Wales,152.02018,-32.739618 +2022,11,14,1,New South Wales,153.316363,-28.822558 +2020,10,3,1,New South Wales,152.230194,-29.934297 +2021,8,29,1,New South Wales,153.080304,-30.35221 +2022,6,9,1,New South Wales,150.651208,-33.531096 +2020,1,6,1,New South Wales,153.09341,-29.488788 +2021,4,17,1,New South Wales,150.61612,-34.431013 +2021,4,20,1,New South Wales,150.606614,-34.434334 +2021,5,22,1,New South Wales,150.529008,-34.471393 +2021,5,13,1,New South Wales,150.518677,-34.454875 +2020,5,8,1,New South Wales,150.04376,-34.91207 +2023,8,10,1,New South Wales,153.472453,-28.268646 +2022,12,31,1,New South Wales,148.646979,-32.173607 +2023,5,3,1,New South Wales,152.900602,-31.471746 +2021,7,14,1,New South Wales,150.627474,-34.421191 +2024,1,6,1,New South Wales,152.911447,-31.429645 +2023,1,14,1,New South Wales,152.906388,-31.465805 +2020,11,1,1,New South Wales,149.976368,-36.555504 +2021,10,9,1,New South Wales,153.373633,-29.084298 +2021,4,30,1,New South Wales,150.624232,-34.388897 +2023,3,1,1,New South Wales,153.498212,-28.767297 +2024,8,20,1,New South Wales,152.086695,-32.17517 +2020,10,25,1,New South Wales,149.976368,-36.555504 +2021,6,16,1,New South Wales,150.611208,-34.4308 +2021,9,4,1,New South Wales,153.052346,-28.468198 +2020,10,27,1,New South Wales,149.976368,-36.555504 +2020,12,9,1,New South Wales,149.972032,-36.288695 +2022,12,29,1,New South Wales,151.668509,-32.66138 +2023,9,20,1,New South Wales,153.236855,-28.287244 +2020,12,8,1,New South Wales,149.972032,-36.288695 +2022,8,30,1,New South Wales,149.316428,-36.297807 +2021,3,9,1,New South Wales,151.15607,-33.076619 +2021,5,2,1,New South Wales,150.637528,-34.488334 +2020,12,9,1,New South Wales,149.972032,-36.288695 +2023,7,26,1,New South Wales,152.373528,-31.914352 +2022,11,25,1,New South Wales,153.288541,-28.692644 +2021,8,23,1,New South Wales,152.439049,-31.781095 +2021,7,5,1,New South Wales,150.513808,-34.446221 +2021,5,1,1,New South Wales,150.616315,-34.43602 +2020,5,,1,New South Wales,151.562078,-32.86916 +2022,4,22,1,New South Wales,153.415262,-28.672208 +2020,1,28,1,New South Wales,150.823749,-34.149854 +2021,3,29,1,New South Wales,152.926853,-31.454742 +2020,11,7,1,New South Wales,152.828322,-31.651749 +2021,6,6,1,New South Wales,150.630529,-34.420898 +2023,9,11,1,New South Wales,150.69488,-34.27594 +2021,4,26,1,New South Wales,150.63562,-34.418211 +2021,4,12,1,New South Wales,152.068443,-32.753251 +2021,1,10,1,New South Wales,153.104122,-29.485132 +2021,5,23,1,New South Wales,152.139095,-32.735486 +2021,6,23,1,New South Wales,150.604263,-34.438922 +2021,1,4,1,New South Wales,153.416729,-28.735117 +2020,8,12,1,New South Wales,153.272353,-28.313877 +2020,11,24,1,New South Wales,150.849405,-34.062263 +2020,10,10,1,New South Wales,149.941793,-36.651646 +2020,8,18,1,New South Wales,152.577613,-28.890594 +2020,11,,1,New South Wales,150.519407,-34.488077 +2021,6,5,1,New South Wales,150.630678,-34.420631 +2021,6,29,1,New South Wales,153.49413,-28.236882 +2021,5,28,1,New South Wales,153.59019,-28.65505 +2023,8,11,1,New South Wales,150.790728,-34.140954 +2021,5,26,1,New South Wales,150.517154,-34.453753 +2021,5,6,1,New South Wales,150.873769,-34.035121 +2022,5,23,1,New South Wales,152.880613,-29.606316 +2024,1,12,1,New South Wales,150.782566,-33.718649 +2021,9,15,1,New South Wales,150.789285,-34.203692 +2022,6,27,1,New South Wales,152.825809,-31.539511 +2021,6,17,1,New South Wales,150.513704,-34.446426 +2020,11,18,1,New South Wales,153.104133,-29.485104 +2024,7,23,1,New South Wales,153.454569,-28.960713 +2021,6,30,1,New South Wales,150.513089,-34.447333 +2021,4,28,1,New South Wales,150.619996,-34.400995 +2020,11,,1,New South Wales,152.138047,-31.402485 +2023,10,6,1,New South Wales,150.033612,-32.64028 +2021,4,27,1,New South Wales,152.898037,-29.632897 +2021,8,15,1,New South Wales,150.641887,-34.396875 +2020,2,7,1,New South Wales,153.355485,-28.974107 +2020,5,25,1,New South Wales,149.364111,-35.991781 +2023,9,25,1,New South Wales,150.649967,-34.31447 +2020,12,2,1,New South Wales,149.552664,-33.562043 +2021,8,10,1,New South Wales,150.519009,-34.438141 +2021,12,1,1,New South Wales,153.557416,-28.397082 +2021,5,23,1,New South Wales,150.636036,-34.392606 +2021,5,1,1,New South Wales,150.608948,-34.434894 +2021,8,24,1,New South Wales,150.513851,-34.447331 +2020,1,28,1,New South Wales,152.887338,-31.439547 +2021,5,26,1,New South Wales,150.619387,-34.439362 +2023,11,21,1,New South Wales,150.785108,-33.71409 +2021,12,15,1,New South Wales,152.926506,-31.46311 +2023,1,8,1,New South Wales,152.924623,-31.443758 +2021,3,9,1,New South Wales,150.609403,-34.418945 +2020,8,10,1,New South Wales,151.110282,-29.762752 +2021,5,17,1,New South Wales,150.5204,-34.454045 +2021,5,18,1,New South Wales,150.524396,-34.463934 +2021,9,19,1,New South Wales,150.968568,-34.12129 +2020,12,30,1,New South Wales,152.918155,-31.485305 +2023,8,14,1,New South Wales,150.790124,-34.190837 +2021,5,4,1,New South Wales,150.51654,-34.447295 +2024,3,9,1,New South Wales,150.791789,-34.205559 +2021,11,3,1,New South Wales,152.823673,-29.81369 +2021,3,7,1,New South Wales,150.524945,-34.453425 +2021,5,2,1,New South Wales,150.633668,-34.418381 +2022,8,4,1,New South Wales,150.796472,-34.214306 +2022,9,29,1,New South Wales,152.925194,-31.453947 +2022,8,8,1,New South Wales,152.702188,-31.867385 +2021,4,22,1,New South Wales,150.659501,-34.457537 +2024,1,19,1,New South Wales,152.82203,-31.13135 +2021,4,27,1,New South Wales,150.607168,-34.454585 +2024,1,17,1,New South Wales,152.100633,-31.984778 +2021,3,14,1,New South Wales,152.06546,-32.710276 +2023,4,11,1,New South Wales,152.903255,-31.469654 +2020,10,6,1,New South Wales,149.941793,-36.651646 +2023,9,28,1,New South Wales,153.183588,-28.656304 +2021,5,2,1,New South Wales,150.52052,-34.454029 +2022,11,30,1,New South Wales,152.819479,-31.473808 +2021,5,17,1,New South Wales,150.629544,-34.389487 +2020,11,11,1,New South Wales,153.104144,-29.478646 +2022,8,13,1,New South Wales,150.528771,-34.443934 +2023,7,11,1,New South Wales,151.061151,-29.741266 +2021,6,7,1,New South Wales,150.626038,-34.388851 +2021,5,4,1,New South Wales,153.550376,-28.581206 +2020,11,11,1,New South Wales,150.010074,-36.579686 +2021,7,25,1,New South Wales,150.640574,-34.392883 +2020,4,25,1,New South Wales,153.103752,-29.485557 +2020,10,12,1,New South Wales,149.96634,-36.680336 +2022,1,9,1,New South Wales,152.422603,-31.904256 +2022,6,27,1,New South Wales,152.94117,-30.39315 +2021,9,23,1,New South Wales,153.336244,-28.8161 +2023,10,24,1,New South Wales,152.201795,-32.233788 +2021,5,9,1,New South Wales,150.639216,-34.49182 +2023,1,18,1,New South Wales,152.786994,-31.636124 +2020,10,14,1,New South Wales,152.02759,-32.73831 +2023,8,9,1,New South Wales,153.090947,-29.487705 +2021,2,18,1,New South Wales,153.104176,-29.482036 +2023,7,20,1,New South Wales,153.108162,-29.49025 +2020,11,4,1,New South Wales,153.356996,-28.890884 +2021,11,15,1,New South Wales,152.907381,-31.444323 +2022,2,19,1,New South Wales,150.713637,-33.44778 +2022,8,31,1,New South Wales,153.317607,-28.824828 +2021,5,4,1,New South Wales,150.627118,-34.38953 +2021,4,9,1,New South Wales,150.60332,-34.438804 +2021,5,22,1,New South Wales,150.522247,-34.464828 +2024,9,29,1,New South Wales,150.989988,-34.028961 +2021,5,25,1,New South Wales,150.618485,-34.435477 +2021,5,13,1,New South Wales,150.519705,-34.454734 +2022,1,1,1,New South Wales,150.615829,-34.438598 +2021,5,22,1,New South Wales,150.598632,-34.42848 +2021,5,5,1,New South Wales,152.92131,-31.457717 +2021,8,8,1,New South Wales,150.6311,-34.387155 +2021,5,31,1,New South Wales,150.638707,-34.491341 +2021,12,24,1,New South Wales,153.431428,-28.878292 +2023,1,10,1,New South Wales,152.085313,-32.774205 +2021,11,18,1,New South Wales,149.710008,-33.300997 +2022,10,4,1,New South Wales,152.028949,-32.737829 +2023,11,4,1,New South Wales,150.98716,-34.095113 +2021,3,23,1,New South Wales,153.10423,-29.479804 +2023,4,4,1,New South Wales,149.951303,-36.599554 +2020,4,13,1,New South Wales,152.924902,-31.468765 +2023,12,20,1,New South Wales,152.971625,-31.192721 +2020,3,25,1,New South Wales,153.037045,-28.868777 +2021,5,5,1,New South Wales,150.632763,-34.418814 +2023,12,7,1,New South Wales,150.785175,-33.717501 +2021,6,17,1,New South Wales,150.51915,-34.459879 +2021,3,28,1,New South Wales,150.529983,-34.460477 +2021,7,22,1,New South Wales,150.624392,-34.385159 +2020,7,15,1,New South Wales,152.402899,-31.925266 +2022,11,18,1,New South Wales,152.783554,-31.63077 +2023,10,2,1,New South Wales,150.786205,-33.706009 +2022,11,2,1,New South Wales,150.745843,-34.343302 +2020,12,17,1,New South Wales,151.696517,-32.701772 +2020,1,9,1,New South Wales,152.895153,-29.005137 +2022,12,11,1,New South Wales,150.880542,-34.012784 +2022,1,25,1,New South Wales,152.063585,-32.705836 +2022,5,23,1,New South Wales,153.331636,-28.8452 +2021,5,25,1,New South Wales,150.619782,-34.439225 +2020,3,6,1,New South Wales,153.434738,-28.65498 +2022,5,17,1,New South Wales,152.876255,-31.45852 +2021,11,12,1,New South Wales,153.139673,-30.207711 +2020,11,30,1,New South Wales,153.10088,-30.352687 +2021,6,24,1,New South Wales,150.625164,-34.386707 +2021,7,20,1,New South Wales,150.516953,-34.448773 +2020,1,12,1,New South Wales,152.838837,-31.595265 +2024,8,28,1,New South Wales,150.965833,-33.964444 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2022,11,20,1,New South Wales,152.78933,-30.918792 +2021,11,6,1,New South Wales,152.976369,-30.436107 +2022,12,31,1,New South Wales,153.314485,-28.81441 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2023,11,29,1,New South Wales,152.9054,-31.43674 +2021,5,30,1,New South Wales,150.657809,-34.456143 +2022,9,19,1,New South Wales,152.90749,-30.17413 +2023,9,21,1,New South Wales,152.786855,-31.629319 +2021,6,8,1,New South Wales,150.528014,-34.457138 +2020,11,6,1,New South Wales,150.007338,-36.56122 +2021,4,14,1,New South Wales,150.633588,-34.393037 +2024,1,18,1,New South Wales,153.071793,-30.887299 +2023,12,28,1,New South Wales,150.78669,-33.703792 +2021,4,27,1,New South Wales,150.61658,-34.429778 +2021,7,19,1,New South Wales,150.623948,-34.383546 +2020,5,10,1,New South Wales,150.662866,-33.52725 +2021,3,11,1,New South Wales,152.907639,-31.45119 +2021,4,24,1,New South Wales,150.61609,-34.435538 +2020,8,13,1,New South Wales,153.549454,-28.384628 +2021,9,1,1,New South Wales,153.40063,-28.257901 +2023,11,13,1,New South Wales,152.176919,-28.63703 +2021,2,2,1,New South Wales,150.85134,-34.083377 +2020,4,14,1,New South Wales,151.89786,-32.469052 +2020,7,22,1,New South Wales,151.77213,-32.590716 +2020,10,28,1,New South Wales,153.339182,-28.872021 +2022,9,21,1,New South Wales,152.82929,-31.26329 +2022,11,19,1,New South Wales,152.797565,-30.915154 +2021,4,18,1,New South Wales,150.627429,-34.386597 +2021,4,21,1,New South Wales,153.48519,-28.244216 +2020,11,16,1,New South Wales,153.316981,-28.949626 +2022,11,20,1,New South Wales,152.794854,-30.893434 +2021,3,18,1,New South Wales,150.659512,-34.458312 +2021,12,13,1,New South Wales,152.921251,-31.464817 +2020,2,3,1,New South Wales,153.547185,-28.390166 +2022,12,15,1,New South Wales,153.108848,-29.49087 +2021,6,16,1,New South Wales,152.355785,-31.85809 +2022,6,17,1,New South Wales,153.104176,-29.482022 +2022,12,3,1,New South Wales,150.82139,-34.101425 +2020,11,6,1,New South Wales,153.293102,-28.864616 +2021,6,5,1,New South Wales,150.519421,-34.456594 +2020,1,27,1,New South Wales,149.375368,-36.15513 +2022,9,12,1,New South Wales,152.233106,-29.931016 +2023,4,29,1,New South Wales,152.926877,-31.459683 +2021,10,28,1,New South Wales,152.878801,-29.662176 +2022,2,8,1,New South Wales,152.910583,-31.45681 +2021,9,26,1,New South Wales,150.51305,-34.446106 +2020,11,19,1,New South Wales,149.966791,-36.502277 +2021,5,13,1,New South Wales,150.62898,-34.396004 +2022,4,25,1,New South Wales,152.064359,-32.70643 +2021,6,5,1,New South Wales,150.519428,-34.456712 +2021,4,23,1,New South Wales,150.606013,-34.422972 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2021,3,26,1,New South Wales,150.52545,-34.459926 +2022,8,14,1,New South Wales,153.342293,-28.818133 +2020,1,13,1,New South Wales,153.334878,-28.815042 +2023,9,30,1,New South Wales,153.354949,-28.66949 +2021,5,6,1,New South Wales,150.627544,-34.389845 +2020,1,15,1,New South Wales,153.09415,-29.488784 +2023,11,30,1,New South Wales,152.403699,-31.928326 +2021,4,28,1,New South Wales,150.637608,-34.488597 +2021,7,4,1,New South Wales,150.603107,-34.417677 +2022,11,10,1,New South Wales,152.105574,-32.760544 +2021,5,20,1,New South Wales,150.530011,-34.47099 +2023,10,26,1,New South Wales,152.19096,-32.219628 +2020,8,31,1,New South Wales,153.314983,-28.949201 +2021,9,21,1,New South Wales,153.395162,-29.096775 +2023,3,17,1,New South Wales,150.813404,-33.365499 +2023,9,26,1,New South Wales,152.901468,-30.522816 +2021,5,26,1,New South Wales,150.521669,-34.465601 +2021,3,18,1,New South Wales,152.359003,-31.924406 +2022,9,13,1,New South Wales,153.52513,-28.66571 +2021,4,22,1,New South Wales,150.637894,-34.422844 +2022,12,16,1,New South Wales,152.873672,-31.285093 +2021,4,24,1,New South Wales,150.614749,-34.431013 +2021,6,5,1,New South Wales,150.636676,-34.488056 +2021,5,25,1,New South Wales,150.631317,-34.419967 +2021,7,12,1,New South Wales,150.626523,-34.420974 +2024,3,21,1,New South Wales,152.919548,-31.471534 +2021,7,4,1,New South Wales,150.603,-34.417639 +2021,3,10,1,New South Wales,152.926729,-31.454715 +2020,9,13,1,New South Wales,150.04816,-31.13479 +2022,8,21,1,New South Wales,153.318052,-28.824876 +2020,10,3,1,New South Wales,152.412132,-31.935307 +2023,10,23,1,New South Wales,153.110413,-29.490044 +2020,12,2,1,New South Wales,150.656179,-33.58539 +2021,6,23,1,New South Wales,150.514677,-34.444787 +2021,6,1,1,New South Wales,150.520978,-34.454742 +2023,9,24,1,New South Wales,153.110857,-28.662989 +2021,5,22,1,New South Wales,150.616315,-34.434506 +2020,9,12,1,New South Wales,152.878917,-31.44848 +2021,2,2,1,New South Wales,153.07978,-30.32507 +2021,4,16,1,New South Wales,150.607038,-34.438535 +2021,5,15,1,New South Wales,150.629932,-34.395382 +2021,12,30,1,New South Wales,152.926891,-31.457146 +2021,6,11,1,New South Wales,150.644122,-34.396287 +2022,12,4,1,New South Wales,153.520079,-28.722016 +2020,11,6,1,New South Wales,150.007338,-36.56122 +2021,4,23,1,New South Wales,150.637833,-34.485654 +2021,4,19,1,New South Wales,150.609129,-34.418985 +2023,11,9,1,New South Wales,152.92038,-31.452639 +2022,1,21,1,New South Wales,150.615952,-34.439232 +2022,7,22,1,New South Wales,152.852629,-31.552937 +2022,1,12,1,New South Wales,153.329859,-28.930457 +2021,9,10,1,New South Wales,153.306378,-28.977316 +2021,8,11,1,New South Wales,150.603642,-34.426757 +2021,6,8,1,New South Wales,150.51878,-34.44735 +2020,7,12,1,New South Wales,150.161603,-34.759018 +2022,10,6,1,New South Wales,152.92636,-30.418651 +2022,11,25,1,New South Wales,152.78933,-30.918792 +2021,5,7,1,New South Wales,150.60574,-34.437518 +2020,8,26,1,New South Wales,153.278134,-28.679301 +2022,7,15,1,New South Wales,151.625848,-32.636305 +2021,6,17,1,New South Wales,150.61722,-34.434424 +2023,9,12,1,New South Wales,152.809253,-31.652221 +2023,12,21,1,New South Wales,152.798276,-31.637 +2020,5,2,1,New South Wales,153.089499,-29.480593 +2023,8,3,1,New South Wales,152.209529,-31.560727 +2021,5,11,1,New South Wales,150.51727,-34.447652 +2021,4,23,1,New South Wales,150.614666,-34.430886 +2021,6,2,1,New South Wales,150.535445,-34.462391 +2021,8,27,1,New South Wales,153.474745,-28.930299 +2021,5,28,1,New South Wales,150.515887,-34.448778 +2021,3,13,1,New South Wales,152.879202,-31.425634 +2021,3,14,1,New South Wales,150.866027,-34.060984 +2021,9,9,1,New South Wales,150.795584,-34.206121 +2023,4,21,1,New South Wales,152.903765,-31.326927 +2020,3,3,1,New South Wales,151.726,-32.67 +2021,6,11,1,New South Wales,150.517025,-34.447449 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2020,11,12,1,New South Wales,153.091081,-29.487528 +2021,5,26,1,New South Wales,150.616334,-34.451437 +2024,1,7,1,New South Wales,152.378576,-31.917179 +2023,11,19,1,New South Wales,151.696604,-32.684623 +2021,7,13,1,New South Wales,153.316219,-28.837037 +2020,6,6,1,New South Wales,152.154518,-32.718543 +2022,6,15,1,New South Wales,153.104122,-29.480794 +2022,3,2,1,New South Wales,152.097247,-32.772258 +2021,6,14,1,New South Wales,150.605028,-34.437657 +2020,4,23,1,New South Wales,152.630315,-30.627392 +2021,4,22,1,New South Wales,150.659382,-34.456723 +2022,12,13,1,New South Wales,152.842629,-31.44175 +2022,3,6,1,New South Wales,152.92717,-31.450891 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2023,12,3,1,New South Wales,152.92468,-31.454243 +2020,11,,1,New South Wales,150.52863,-34.513591 +2021,6,1,1,New South Wales,150.626048,-34.390456 +2021,5,21,1,New South Wales,150.598709,-34.429581 +2023,2,6,1,New South Wales,152.985867,-30.326866 +2020,1,10,1,New South Wales,149.80289,-32.8791 +2022,6,21,1,New South Wales,153.10394,-29.484376 +2020,10,12,1,New South Wales,149.96634,-36.680336 +2023,7,23,1,New South Wales,152.785809,-31.632016 +2021,10,19,1,New South Wales,152.809794,-29.808932 +2022,4,28,1,New South Wales,151.242145,-33.171243 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2021,11,20,1,New South Wales,153.30358,-28.816492 +2020,7,18,1,New South Wales,153.318696,-28.933563 +2021,7,16,1,New South Wales,150.625213,-34.386879 +2021,5,27,1,New South Wales,150.63191,-34.388109 +2023,9,21,1,New South Wales,150.41131,-31.46991 +2024,4,4,1,New South Wales,149.359541,-36.175635 +2023,1,10,1,New South Wales,153.476882,-28.616529 +2023,10,20,1,New South Wales,152.880504,-31.444767 +2021,8,12,1,New South Wales,153.602345,-28.679345 +2020,4,25,1,New South Wales,153.434038,-28.732183 +2020,7,11,1,New South Wales,152.712126,-30.455966 +2020,7,5,1,New South Wales,153.109392,-30.298612 +2023,9,20,1,New South Wales,153.299233,-28.826058 +2021,7,21,1,New South Wales,150.52249,-34.464328 +2021,6,2,1,New South Wales,150.616517,-34.438098 +2020,7,17,1,New South Wales,152.881952,-31.463796 +2020,7,19,1,New South Wales,153.103975,-29.485303 +2024,2,21,1,New South Wales,152.909401,-31.474332 +2022,6,27,1,New South Wales,152.93946,-30.3919 +2021,4,27,1,New South Wales,150.635815,-34.419396 +2020,9,13,1,New South Wales,152.066185,-32.708193 +2020,5,28,1,New South Wales,149.361927,-36.041388 +2021,12,15,1,New South Wales,153.374809,-28.828409 +2023,10,30,1,New South Wales,153.091672,-29.48791 +2020,5,13,1,New South Wales,150.063462,-33.776153 +2020,10,5,1,New South Wales,152.910622,-31.435079 +2021,7,9,1,New South Wales,150.519071,-34.447455 +2020,6,5,1,New South Wales,152.87901,-31.456783 +2020,10,26,1,New South Wales,153.103811,-29.48559 +2023,8,24,1,New South Wales,153.565066,-28.389868 +2020,1,15,1,New South Wales,152.814708,-31.286691 +2021,5,27,1,New South Wales,150.518453,-34.44298 +2020,6,,1,New South Wales,151.642244,-30.48978 +2021,6,25,1,New South Wales,150.627391,-34.420288 +2022,9,20,1,New South Wales,152.91096,-30.17498 +2022,6,11,1,New South Wales,152.893086,-31.454902 +2021,4,25,1,New South Wales,150.638066,-34.420197 +2021,5,9,1,New South Wales,150.606617,-34.438031 +2023,10,21,1,New South Wales,150.671829,-33.565013 +2021,7,29,1,New South Wales,150.627592,-34.385447 +2024,3,22,1,New South Wales,152.385326,-31.91537 +2021,7,26,1,New South Wales,150.295045,-33.27166 +2021,3,18,1,New South Wales,153.10821,-29.490577 +2023,10,16,1,New South Wales,152.910422,-31.472718 +2021,4,21,1,New South Wales,150.604992,-34.423313 +2021,5,22,1,New South Wales,150.607379,-34.432681 +2020,9,13,1,New South Wales,152.926635,-31.444425 +2021,6,8,1,New South Wales,150.626037,-34.388896 +2021,5,3,1,New South Wales,150.611491,-34.419707 +2022,1,28,1,New South Wales,152.125215,-28.664007 +2022,1,25,1,New South Wales,153.471848,-28.24154 +2020,10,1,1,New South Wales,152.474267,-30.168938 +2021,4,21,1,New South Wales,152.865626,-31.304447 +2021,6,2,1,New South Wales,150.604769,-34.427293 +2022,8,4,1,New South Wales,152.86658,-31.501305 +2022,5,9,1,New South Wales,152.064319,-32.706888 +2022,12,29,1,New South Wales,150.54652,-34.359944 +2021,6,29,1,New South Wales,150.513095,-34.447144 +2023,10,10,1,New South Wales,152.398164,-31.942142 +2022,1,12,1,New South Wales,150.836877,-34.056588 +2020,10,7,1,New South Wales,153.108913,-30.318813 +2021,5,27,1,New South Wales,150.521574,-34.465869 +2021,9,9,1,New South Wales,152.37354,-31.914308 +2021,5,23,1,New South Wales,150.597951,-34.427926 +2021,11,22,1,New South Wales,152.974022,-31.192818 +2022,1,4,1,New South Wales,152.914785,-31.450459 +2023,8,23,1,New South Wales,152.796194,-30.87937 +2024,4,2,1,New South Wales,152.893876,-31.431846 +2020,7,30,1,New South Wales,153.424775,-29.114869 +2023,9,27,1,New South Wales,152.613391,-30.345041 +2020,10,21,1,New South Wales,152.778176,-30.193432 +2021,3,13,1,New South Wales,150.607655,-34.429892 +2023,5,26,1,New South Wales,150.784231,-33.716597 +2020,,,1,New South Wales,152.82512,-31.27024 +2022,10,18,1,New South Wales,152.390764,-31.95843 +2023,12,27,1,New South Wales,152.077045,-32.722541 +2023,2,23,1,New South Wales,153.473688,-28.268359 +2023,3,18,1,New South Wales,150.850271,-34.051381 +2022,8,30,1,New South Wales,149.32325,-36.297286 +2023,10,21,1,New South Wales,151.058608,-29.740284 +2021,4,20,1,New South Wales,150.610333,-34.419126 +2023,10,2,1,New South Wales,152.87591,-29.670882 +2021,2,23,1,New South Wales,150.634688,-34.48464 +2021,5,31,1,New South Wales,150.522459,-34.453221 +2021,9,23,1,New South Wales,150.606601,-34.453861 +2022,7,30,1,New South Wales,152.851072,-31.555324 +2021,6,6,1,New South Wales,150.616288,-34.43584 +2021,6,7,1,New South Wales,150.629888,-34.420841 +2021,11,6,1,New South Wales,152.868705,-29.667322 +2021,1,13,1,New South Wales,153.156475,-28.926928 +2021,9,17,1,New South Wales,151.091178,-29.774595 +2024,2,11,1,New South Wales,153.105211,-29.489741 +2022,11,30,1,New South Wales,152.064745,-32.708565 +2021,4,27,1,New South Wales,150.635606,-34.418328 +2021,6,20,1,New South Wales,150.517196,-34.441674 +2021,,,1,New South Wales,149.81765,-32.422645 +2022,5,1,1,New South Wales,149.179967,-31.266761 +2021,1,13,1,New South Wales,153.39381,-28.855126 +2021,9,21,1,New South Wales,150.615492,-34.450429 +2023,6,9,1,New South Wales,152.898132,-29.63205 +2021,6,14,1,New South Wales,150.641436,-34.395099 +2021,6,22,1,New South Wales,150.51599,-34.44384 +2024,9,6,2,New South Wales,150.979581,-29.779195 +2023,10,31,1,New South Wales,153.10416,-29.478814 +2020,11,26,1,New South Wales,153.489332,-28.673234 +2021,10,15,1,New South Wales,150.813678,-34.104761 +2022,7,22,1,New South Wales,153.099772,-29.491529 +2023,2,8,1,New South Wales,152.932247,-28.954711 +2021,7,2,1,New South Wales,150.523077,-34.466206 +2022,10,3,1,New South Wales,150.790681,-34.204511 +2021,8,15,1,New South Wales,150.520315,-34.465745 +2021,7,21,1,New South Wales,150.516844,-34.448807 +2021,5,6,1,New South Wales,150.609187,-34.42078 +2021,8,16,1,New South Wales,152.353525,-31.92625 +2021,4,2,1,New South Wales,150.635375,-34.488626 +2022,5,29,1,New South Wales,153.1102,-29.490292 +2020,10,15,1,New South Wales,150.61642,-33.430832 +2020,7,24,1,New South Wales,150.998276,-34.053946 +2020,9,5,1,New South Wales,152.247202,-30.053999 +2020,1,8,1,New South Wales,152.866239,-29.691415 +2023,9,6,1,New South Wales,152.776019,-31.63241 +2020,7,22,1,New South Wales,150.813678,-34.104761 +2020,10,14,1,New South Wales,152.01619,-32.72417 +2022,2,25,1,New South Wales,152.880419,-31.426452 +2021,6,6,1,New South Wales,150.534643,-34.459327 +2024,2,14,1,New South Wales,152.077182,-32.724077 +2021,10,21,1,New South Wales,153.497224,-28.651787 +2020,10,6,1,New South Wales,149.941793,-36.651646 +2021,5,31,1,New South Wales,150.604489,-34.424547 +2023,10,15,1,New South Wales,152.412776,-31.932137 +2023,2,7,1,New South Wales,150.875183,-34.022401 +2021,7,10,1,New South Wales,150.642047,-34.394246 +2021,11,21,1,New South Wales,150.617718,-34.439501 +2022,10,6,1,New South Wales,153.054765,-30.280293 +2021,7,7,1,New South Wales,150.521653,-34.465402 +2021,5,23,1,New South Wales,150.605328,-34.432497 +2020,8,16,1,New South Wales,152.93218,-29.054449 +2020,12,19,1,New South Wales,153.561867,-28.388795 +2020,10,27,1,New South Wales,149.976368,-36.555504 +2021,4,26,1,New South Wales,150.607961,-34.454267 +2021,6,20,1,New South Wales,150.513896,-34.446187 +2020,11,25,1,New South Wales,152.90954,-31.176198 +2021,4,21,1,New South Wales,150.630564,-34.386856 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2022,8,12,1,New South Wales,150.519563,-34.469837 +2022,8,31,1,New South Wales,153.104535,-29.476736 +2021,9,30,1,New South Wales,153.428287,-28.956006 +2021,3,30,1,New South Wales,150.525525,-34.459972 +2020,11,6,1,New South Wales,153.103366,-29.486346 +2021,9,25,1,New South Wales,153.42536,-28.875296 +2022,9,22,1,New South Wales,153.461641,-28.870616 +2021,4,26,1,New South Wales,150.609467,-34.418983 +2023,12,26,1,New South Wales,150.784944,-33.715387 +2020,10,5,1,New South Wales,153.315369,-28.94184 +2021,5,3,1,New South Wales,150.603878,-34.426897 +2021,12,10,1,New South Wales,152.898317,-31.442672 +2021,4,4,1,New South Wales,150.607143,-34.437545 +2021,5,23,1,New South Wales,150.630863,-34.420616 +2020,11,19,1,New South Wales,150.67903,-33.489673 +2024,2,8,1,New South Wales,150.784785,-33.713322 +2021,4,30,1,New South Wales,150.609027,-34.435184 +2022,8,24,1,New South Wales,151.649794,-30.326233 +2021,5,5,1,New South Wales,150.632816,-34.418878 +2021,6,15,1,New South Wales,150.516156,-34.459151 +2021,9,15,1,New South Wales,150.642734,-34.394584 +2021,8,12,1,New South Wales,153.541208,-28.393545 +2020,4,2,1,New South Wales,150.069922,-35.096731 +2021,3,2,1,New South Wales,150.521305,-34.448825 +2021,4,16,1,New South Wales,150.056935,-33.764062 +2023,4,11,1,New South Wales,152.926823,-31.459818 +2020,10,23,1,New South Wales,152.893086,-31.454902 +2020,11,10,1,New South Wales,152.925573,-31.458864 +2021,5,7,1,New South Wales,150.605671,-34.437652 +2023,2,2,1,New South Wales,150.825173,-34.149808 +2023,6,19,1,New South Wales,149.954611,-36.5994 +2023,12,22,1,New South Wales,152.369116,-31.949378 +2021,7,30,1,New South Wales,153.110286,-29.490264 +2024,8,8,1,New South Wales,151.721095,-32.71793 +2021,5,30,1,New South Wales,150.630917,-34.388234 +2021,5,17,1,New South Wales,150.632752,-34.418832 +2020,3,19,1,New South Wales,152.890696,-31.081243 +2021,6,13,1,New South Wales,150.515993,-34.44668 +2021,7,11,1,New South Wales,150.513066,-34.447378 +2023,8,26,1,New South Wales,151.024832,-33.222527 +2024,1,17,1,New South Wales,152.412602,-31.93235 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2021,5,4,1,New South Wales,150.520722,-34.436517 +2021,12,11,1,New South Wales,150.616778,-34.438103 +2022,10,26,1,New South Wales,153.31679,-28.817282 +2021,5,21,1,New South Wales,150.51738,-34.452018 +2021,3,20,1,New South Wales,151.699282,-30.404171 +2020,6,11,1,New South Wales,153.098466,-30.296061 +2021,7,5,1,New South Wales,150.603246,-34.418167 +2023,11,26,1,New South Wales,152.085037,-31.908858 +2020,2,27,1,New South Wales,153.069058,-30.910992 +2022,11,17,1,New South Wales,152.894842,-31.446178 +2020,1,24,1,New South Wales,153.09577,-29.49004 +2021,7,20,1,New South Wales,150.63069,-34.420586 +2022,12,1,1,New South Wales,152.754102,-30.882465 +2021,4,27,1,New South Wales,150.521423,-34.46656 +2021,5,29,1,New South Wales,150.523956,-34.452656 +2021,5,14,1,New South Wales,150.603002,-34.437743 +2023,10,5,1,New South Wales,152.299643,-31.899816 +2021,7,3,1,New South Wales,150.627332,-34.421206 +2023,7,9,1,New South Wales,153.104192,-29.478996 +2020,10,11,1,New South Wales,153.301696,-28.819415 +2022,9,11,1,New South Wales,150.880149,-34.014418 +2021,6,22,1,New South Wales,150.602663,-34.438927 +2020,9,14,1,New South Wales,152.439573,-31.951329 +2023,3,20,1,New South Wales,152.063527,-32.705721 +2020,10,12,1,New South Wales,152.857251,-31.54185 +2021,7,22,1,New South Wales,150.521641,-34.465817 +2024,2,15,1,New South Wales,153.109723,-29.490222 +2021,5,23,1,New South Wales,150.518336,-34.451325 +2023,3,4,1,New South Wales,153.110522,-29.490203 +2024,4,11,1,Queensland,153.08192,-26.790627 +2021,12,2,1,New South Wales,150.841671,-34.08271 +2021,4,22,1,New South Wales,150.630754,-34.393649 +2021,3,2,1,New South Wales,150.519548,-34.447149 +2020,6,18,1,New South Wales,153.103988,-29.484315 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2021,6,6,1,New South Wales,150.523563,-34.439071 +2022,4,16,1,New South Wales,152.079143,-32.72314 +2021,10,6,1,New South Wales,152.889384,-31.444995 +2023,5,11,1,New South Wales,152.864498,-31.297769 +2021,9,8,1,New South Wales,153.041213,-30.884135 +2020,9,27,1,New South Wales,152.89977,-29.631951 +2024,7,15,1,New South Wales,152.896932,-31.475419 +2021,12,19,1,New South Wales,152.923894,-31.463907 +2021,5,8,1,New South Wales,150.521343,-34.435763 +2023,2,15,1,New South Wales,150.640056,-33.541697 +2021,5,5,1,New South Wales,150.602981,-34.42742 +2023,8,13,1,New South Wales,152.900594,-30.500084 +2021,4,24,1,New South Wales,150.626552,-34.395686 +2021,1,6,1,New South Wales,153.103795,-29.485552 +2021,3,13,1,New South Wales,150.520098,-34.446962 +2020,5,20,1,New South Wales,151.740463,-32.560405 +2020,4,23,1,New South Wales,152.644721,-30.654151 +2023,1,4,1,New South Wales,153.109615,-29.492841 +2021,12,1,1,New South Wales,152.063638,-32.706152 +2022,12,4,1,New South Wales,153.520079,-28.722016 +2021,7,28,1,New South Wales,150.630798,-34.420606 +2020,1,9,1,New South Wales,152.894307,-29.005774 +2021,6,5,1,New South Wales,150.607282,-34.435691 +2021,5,9,1,New South Wales,152.819409,-31.653256 +2023,10,22,1,New South Wales,152.784289,-31.63011 +2022,8,1,1,New South Wales,150.796938,-34.133033 +2021,11,21,1,New South Wales,153.48166,-28.625868 +2022,12,31,1,New South Wales,153.110517,-29.490175 +2021,5,18,1,New South Wales,150.52389,-34.463717 +2021,4,28,1,New South Wales,150.601455,-34.426777 +2020,10,21,1,New South Wales,150.10201,-33.779057 +2022,11,24,1,New South Wales,153.270395,-28.931139 +2021,4,21,1,New South Wales,150.604992,-34.423313 +2021,6,8,1,New South Wales,150.609573,-34.43093 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2023,6,2,1,New South Wales,150.224518,-34.340535 +2022,1,14,1,New South Wales,150.21501,-34.53145 +2022,11,11,1,New South Wales,150.813678,-34.104761 +2020,5,3,1,New South Wales,153.152734,-29.12052 +2021,10,5,1,New South Wales,153.158949,-28.584906 +2021,5,21,1,New South Wales,150.515781,-34.450877 +2021,9,1,1,New South Wales,150.957161,-34.106034 +2020,9,22,1,New South Wales,152.50221,-28.25447 +2020,9,28,1,New South Wales,150.483836,-34.52938 +2022,12,10,1,New South Wales,152.89746,-31.47462 +2020,6,27,1,New South Wales,149.552103,-33.491237 +2020,1,23,1,New South Wales,152.065776,-32.710867 +2022,3,30,1,New South Wales,151.887282,-32.529237 +2020,,,1,New South Wales,153.433693,-28.970096 +2020,10,29,1,New South Wales,149.934245,-36.578531 +2022,7,15,1,New South Wales,153.010179,-28.625631 +2021,4,15,1,New South Wales,150.62582,-34.386205 +2021,6,12,1,New South Wales,150.612133,-34.432342 +2021,4,26,1,New South Wales,150.614401,-34.429501 +2023,4,15,1,New South Wales,153.522745,-28.72669 +2021,3,9,1,New South Wales,153.26621,-28.87101 +2022,1,30,1,New South Wales,153.109385,-29.490511 +2020,10,23,1,New South Wales,149.96897,-36.58553 +2021,5,15,1,New South Wales,150.637156,-34.42393 +2020,8,5,1,New South Wales,153.101015,-30.323015 +2021,5,4,1,New South Wales,150.615737,-34.436063 +2022,10,4,1,New South Wales,153.109358,-29.490614 +2021,4,30,1,New South Wales,150.636302,-34.421813 +2020,8,4,1,New South Wales,152.084414,-32.727892 +2021,5,31,1,New South Wales,150.524997,-34.453507 +2020,10,18,1,New South Wales,153.550749,-28.647381 +2021,3,18,1,New South Wales,150.615328,-34.435532 +2022,9,29,1,New South Wales,152.065383,-32.710983 +2021,4,23,1,New South Wales,150.521895,-34.465678 +2021,5,29,1,New South Wales,150.52714,-34.469408 +2021,3,6,1,New South Wales,151.224001,-33.137308 +2022,4,5,1,New South Wales,153.400804,-28.259876 +2021,10,7,1,New South Wales,149.341081,-36.185399 +2021,5,14,1,New South Wales,150.616534,-34.435222 +2021,6,4,1,New South Wales,150.607759,-34.436538 +2022,5,2,1,New South Wales,150.813056,-34.122257 +2021,8,20,1,New South Wales,150.514115,-34.444676 +2021,5,19,1,New South Wales,150.5304,-34.471466 +2021,5,9,1,New South Wales,150.639249,-34.491784 +2022,11,18,1,New South Wales,151.7355,-32.405683 +2020,9,13,1,New South Wales,152.036232,-32.727802 +2020,10,28,1,New South Wales,153.339182,-28.872021 +2021,8,2,1,New South Wales,152.83173,-30.204467 +2023,11,7,1,New South Wales,153.095164,-29.483325 +2021,4,24,1,New South Wales,150.637424,-34.420581 +2021,4,27,1,New South Wales,150.607146,-34.454593 +2023,7,26,1,New South Wales,152.36208,-31.924229 +2020,11,18,1,New South Wales,153.433991,-28.957973 +2021,6,2,1,New South Wales,150.638249,-34.490954 +2023,6,7,1,New South Wales,150.880417,-34.066879 +2020,10,22,1,New South Wales,150.686923,-33.14282 +2023,10,1,1,New South Wales,152.824663,-29.505205 +2022,5,19,1,New South Wales,153.224597,-28.830677 +2021,4,29,1,New South Wales,150.664088,-34.458544 +2020,2,,1,New South Wales,152.481865,-32.311041 +2023,7,8,1,New South Wales,152.916788,-31.449124 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2021,12,9,1,New South Wales,152.063414,-32.706381 +2020,4,9,1,New South Wales,152.731567,-30.206671 +2023,9,22,1,New South Wales,153.229111,-28.889404 +2020,11,6,1,New South Wales,150.015337,-36.564757 +2021,4,14,1,New South Wales,152.884757,-31.443649 +2022,8,30,1,New South Wales,149.323764,-36.296628 +2021,5,28,1,New South Wales,150.641352,-34.393439 +2021,4,8,1,New South Wales,150.520769,-34.465105 +2020,8,24,1,New South Wales,150.738381,-34.349138 +2023,8,9,1,New South Wales,150.785389,-33.705596 +2021,6,15,1,New South Wales,150.61713,-34.433773 +2020,10,12,1,New South Wales,149.941399,-36.632151 +2021,9,28,1,New South Wales,152.82517,-31.27014 +2020,10,31,1,New South Wales,149.977333,-36.564828 +2021,5,12,1,New South Wales,150.516985,-34.453948 +2021,9,28,1,New South Wales,152.82517,-31.27014 +2020,8,16,1,New South Wales,152.934971,-29.049404 +2024,1,20,1,New South Wales,152.964486,-31.207704 +2024,1,22,1,New South Wales,152.970853,-31.190524 +2021,7,1,1,New South Wales,150.517375,-34.441533 +2022,10,25,1,New South Wales,150.827612,-33.459323 +2022,5,17,1,New South Wales,152.900937,-31.442819 +2022,7,26,1,New South Wales,153.334647,-28.813771 +2022,10,17,1,New South Wales,150.915959,-33.970174 +2020,9,28,1,New South Wales,153.05434,-30.889174 +2020,12,1,1,New South Wales,153.30654,-29.055661 +2020,9,,1,New South Wales,151.696174,-30.534748 +2020,9,24,1,New South Wales,153.22771,-28.8883 +2022,5,26,1,New South Wales,152.91062,-31.465447 +2021,1,18,1,New South Wales,153.0571,-30.35799 +2023,10,23,1,New South Wales,153.104374,-29.477702 +2020,9,19,1,New South Wales,153.10416,-29.484147 +2021,5,19,1,New South Wales,150.600282,-34.428585 +2021,4,22,1,New South Wales,150.637136,-34.485262 +2020,10,12,1,New South Wales,149.96634,-36.680336 +2021,10,,1,New South Wales,149.282607,-35.942751 +2021,5,5,1,New South Wales,150.516293,-34.447542 +2021,5,30,1,New South Wales,150.638885,-34.4912 +2021,5,31,1,New South Wales,150.640355,-34.397576 +2020,3,29,1,New South Wales,150.0592,-33.772617 +2021,6,10,1,New South Wales,150.518293,-34.443211 +2022,10,31,1,New South Wales,150.934924,-34.11331 +2024,4,3,1,New South Wales,152.961324,-31.252539 +2021,4,27,1,New South Wales,150.602906,-34.435398 +2021,8,8,1,New South Wales,150.631679,-34.388194 +2020,10,29,1,New South Wales,149.977333,-36.564828 +2021,5,18,1,New South Wales,150.613725,-34.431084 +2021,5,2,1,New South Wales,150.6376,-34.488516 +2020,10,28,1,New South Wales,153.339182,-28.872021 +2021,7,3,1,New South Wales,150.514141,-34.446354 +2020,9,20,1,New South Wales,153.298042,-28.812146 +2021,5,20,1,New South Wales,152.32289,-28.5926 +2022,6,15,1,New South Wales,153.561629,-28.386672 +2021,5,28,1,New South Wales,150.604771,-34.437535 +2021,4,27,1,New South Wales,150.624438,-34.388144 +2021,5,8,1,New South Wales,150.621961,-34.39804 +2024,1,18,1,New South Wales,151.632887,-32.049839 +2024,5,26,1,New South Wales,152.406347,-31.946897 +2021,3,22,1,New South Wales,152.10131,-32.728444 +2021,5,28,1,New South Wales,150.632389,-34.3881 +2021,6,10,1,New South Wales,152.385302,-31.883018 +2020,10,31,1,New South Wales,149.977333,-36.564828 +2021,6,3,1,New South Wales,150.615323,-34.43647 +2022,7,7,1,New South Wales,152.90199,-31.448084 +2022,10,26,1,New South Wales,152.37806,-31.918902 +2021,6,9,1,New South Wales,150.514103,-34.454972 +2020,11,18,1,New South Wales,153.369052,-28.953149 +2021,4,6,1,New South Wales,150.634296,-34.488677 +2021,11,5,1,New South Wales,153.10446,-29.482993 +2021,5,29,1,New South Wales,152.90244,-30.56221 +2020,10,12,1,New South Wales,149.887989,-36.587028 +2020,10,14,1,New South Wales,152.0415,-32.7357 +2021,2,6,1,New South Wales,153.243706,-28.29284 +2020,8,17,1,New South Wales,152.710031,-31.353062 +2022,9,20,1,New South Wales,152.909817,-31.467176 +2021,6,1,1,New South Wales,150.518281,-34.446564 +2023,12,21,1,New South Wales,152.909916,-30.505388 +2024,3,7,1,New South Wales,152.379581,-31.919584 +2021,5,22,1,New South Wales,150.659319,-34.457416 +2023,10,3,1,New South Wales,153.106719,-29.367253 +2021,11,12,1,New South Wales,153.400651,-29.03875 +2023,8,2,1,New South Wales,152.029276,-32.19165 +2021,5,6,1,New South Wales,150.51639,-34.447238 +2023,7,9,1,New South Wales,153.110522,-29.490152 +2022,4,7,1,New South Wales,153.108178,-29.490217 +2021,8,21,1,New South Wales,150.610288,-34.438283 +2021,3,20,1,New South Wales,150.525453,-34.459827 +2024,1,11,1,New South Wales,152.172488,-32.740464 +2021,7,13,1,New South Wales,149.346884,-33.5028 +2021,6,11,1,New South Wales,150.613323,-34.43259 +2021,6,18,1,New South Wales,150.604328,-34.43895 +2021,5,6,1,New South Wales,150.523011,-34.452213 +2021,3,21,1,New South Wales,150.520692,-34.454105 +2023,8,25,1,New South Wales,150.786219,-33.706123 +2021,4,22,1,New South Wales,150.604932,-34.422744 +2022,9,13,1,New South Wales,150.041621,-35.148653 +2021,5,20,1,New South Wales,153.561513,-28.38924 +2021,6,8,1,New South Wales,150.524814,-34.465232 +2023,9,26,1,New South Wales,153.427458,-28.623455 +2021,6,21,1,New South Wales,150.639511,-34.392799 +2024,1,2,1,New South Wales,152.884453,-31.457285 +2020,4,20,1,New South Wales,152.406634,-28.489589 +2021,9,13,1,New South Wales,153.091414,-29.48777 +2021,5,13,1,New South Wales,150.628812,-34.389617 +2021,7,1,1,New South Wales,150.522369,-34.465849 +2024,4,3,1,New South Wales,150.979244,-29.779021 +2020,8,20,1,New South Wales,152.922394,-31.459862 +2023,5,31,1,New South Wales,150.79185,-34.21635 +2021,8,9,1,New South Wales,153.607914,-28.689364 +2024,1,16,1,New South Wales,152.855376,-30.902069 +2021,6,17,1,New South Wales,150.622608,-34.384024 +2020,8,30,1,New South Wales,152.925587,-31.447411 +2020,4,20,1,New South Wales,152.875766,-31.522625 +2020,10,24,1,New South Wales,149.984303,-36.560469 +2020,10,27,1,New South Wales,153.367603,-28.818638 +2021,6,19,1,New South Wales,150.642659,-34.394528 +2021,2,3,1,New South Wales,153.053502,-30.27934 +2023,9,28,1,New South Wales,153.281384,-28.826361 +2022,9,16,1,New South Wales,152.881469,-31.165052 +2020,12,10,1,New South Wales,152.940819,-29.136396 +2022,8,11,1,New South Wales,150.526615,-34.466523 +2020,11,2,1,New South Wales,149.967242,-36.561675 +2020,6,17,1,New South Wales,152.782717,-30.225566 +2024,8,23,1,New South Wales,151.985514,-32.413347 +2021,4,12,1,New South Wales,152.059278,-32.739099 +2020,11,13,1,New South Wales,150.886004,-34.01043 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2021,6,3,1,New South Wales,153.137472,-30.223309 +2020,11,17,1,New South Wales,153.16197,-28.535507 +2023,8,2,1,New South Wales,153.107405,-29.490096 +2021,7,16,1,New South Wales,150.6252,-34.385806 +2021,2,14,1,New South Wales,153.103854,-29.484819 +2023,10,27,1,New South Wales,152.928743,-31.459097 +2020,4,3,1,New South Wales,150.109142,-35.047975 +2023,6,8,1,New South Wales,150.81996,-34.10918 +2024,1,14,1,New South Wales,151.084565,-29.729673 +2023,9,10,1,New South Wales,150.989044,-34.028811 +2022,5,28,1,New South Wales,152.156818,-30.095391 +2022,1,4,1,New South Wales,153.139413,-28.589585 +2022,3,5,1,New South Wales,150.983866,-34.093843 +2022,1,24,1,New South Wales,153.274462,-28.640611 +2022,8,4,1,New South Wales,153.347296,-28.817853 +2023,9,28,1,New South Wales,153.556406,-28.398552 +2020,11,10,1,New South Wales,152.749627,-30.210364 +2022,1,26,1,New South Wales,151.951946,-32.313717 +2023,4,30,1,New South Wales,153.314983,-28.949201 +2021,6,15,1,New South Wales,150.605027,-34.437702 +2021,5,15,1,New South Wales,150.528272,-34.467583 +2022,4,15,1,New South Wales,150.999302,-34.042123 +2022,9,15,1,New South Wales,152.818975,-31.650563 +2021,6,29,1,New South Wales,150.608013,-34.449012 +2022,12,16,1,New South Wales,152.865132,-31.284254 +2020,11,11,1,New South Wales,150.016582,-36.557254 +2023,3,15,1,New South Wales,151.961014,-32.054737 +2021,5,15,1,New South Wales,150.640368,-34.494222 +2021,4,28,1,New South Wales,152.805614,-31.169097 +2021,7,27,1,New South Wales,150.450525,-34.439069 +2021,10,19,1,New South Wales,152.870462,-31.464391 +2021,10,31,1,New South Wales,153.314983,-28.949201 +2022,8,31,1,New South Wales,153.314983,-28.949201 +2021,5,18,1,New South Wales,150.523944,-34.463745 +2021,11,30,1,New South Wales,153.314983,-28.949201 +2024,1,19,1,Victoria,144.582084,-37.496627 +2021,6,3,1,New South Wales,150.63957,-34.399193 +2021,12,30,1,New South Wales,150.807228,-34.068105 +2020,1,31,1,New South Wales,152.909438,-31.447377 +2024,1,5,1,New South Wales,152.92022,-30.50456 +2021,7,21,1,New South Wales,150.6447,-34.393134 +2021,6,4,1,New South Wales,150.519624,-34.455237 +2022,4,20,1,New South Wales,150.985078,-34.021161 +2021,12,15,1,New South Wales,153.108199,-29.490259 +2023,6,8,1,New South Wales,153.103554,-29.485482 +2021,9,4,1,New South Wales,153.293107,-28.864674 +2021,5,10,1,New South Wales,150.628112,-34.389766 +2024,3,3,1,New South Wales,150.98767,-34.096709 +2021,2,6,1,New South Wales,152.8933,-31.443058 +2021,6,22,1,New South Wales,150.624526,-34.385414 +2022,2,1,1,New South Wales,152.93786,-30.40529 +2024,1,14,1,New South Wales,150.785186,-33.717297 +2021,5,14,1,New South Wales,150.51752,-34.44031 +2022,7,25,1,New South Wales,152.810398,-31.13994 +2021,4,10,1,New South Wales,150.609264,-34.420746 +2020,10,,1,New South Wales,151.662782,-30.515005 +2022,11,16,1,New South Wales,152.19565,-32.02353 +2021,8,28,1,New South Wales,150.516484,-34.440361 +2021,6,14,1,New South Wales,150.521276,-34.465647 +2021,12,19,1,New South Wales,152.113549,-32.770718 +2021,3,23,1,New South Wales,153.109503,-29.490404 +2023,3,27,1,New South Wales,153.314475,-28.817881 +2021,9,27,1,New South Wales,153.3114,-28.822295 +2021,6,21,1,New South Wales,150.514143,-34.44593 +2023,10,29,1,New South Wales,152.924222,-30.505165 +2021,6,28,1,New South Wales,152.805362,-31.604609 +2023,10,7,1,New South Wales,150.784983,-33.716439 +2021,8,2,1,New South Wales,150.609415,-34.451338 +2021,8,25,1,New South Wales,153.395153,-28.959978 +2022,11,11,1,New South Wales,151.038719,-33.197974 +2021,5,13,1,New South Wales,150.633228,-34.418138 +2022,9,16,1,New South Wales,152.925728,-31.453554 +2021,10,18,1,New South Wales,152.747238,-31.419429 +2021,7,31,1,New South Wales,150.626048,-34.387734 +2021,6,28,1,New South Wales,150.643246,-34.393403 +2023,10,25,1,New South Wales,150.723282,-34.189691 +2021,4,22,1,New South Wales,150.631208,-34.387572 +2021,3,11,1,New South Wales,150.717277,-33.45288 +2021,5,8,1,New South Wales,150.632626,-34.418288 +2021,6,21,1,New South Wales,152.065459,-32.713171 +2021,3,13,1,New South Wales,150.533589,-34.462975 +2022,6,26,1,New South Wales,153.108167,-29.490423 +2021,3,5,1,New South Wales,150.609921,-34.432848 +2021,9,7,1,Queensland,152.700219,-28.336934 +2021,9,5,1,New South Wales,150.514096,-34.447867 +2021,5,19,1,New South Wales,150.608107,-34.434634 +2021,7,8,1,New South Wales,150.630511,-34.388758 +2021,5,2,1,New South Wales,150.616717,-34.43528 +2023,2,28,1,New South Wales,152.793505,-31.639259 +2022,8,16,1,New South Wales,150.908104,-34.024959 +2022,5,10,1,New South Wales,150.809328,-34.104545 +2023,12,14,1,New South Wales,152.906953,-31.225805 +2020,10,5,1,New South Wales,152.882699,-31.42924 +2023,11,29,1,New South Wales,152.875707,-31.453935 +2020,2,13,1,New South Wales,152.175164,-32.663273 +2023,12,25,1,New South Wales,152.336317,-32.302744 +2024,7,2,1,New South Wales,152.079401,-32.722866 +2021,9,9,1,New South Wales,150.6438,-34.393405 +2023,12,15,1,New South Wales,152.924589,-31.440522 +2021,5,5,1,New South Wales,150.615763,-34.43592 +2022,4,26,1,New South Wales,153.607758,-28.660915 +2021,9,23,1,New South Wales,153.017126,-30.374914 +2022,2,14,1,New South Wales,153.108194,-29.490259 +2021,1,27,1,New South Wales,153.103854,-29.484665 +2021,4,15,1,New South Wales,150.607059,-34.43858 +2020,6,11,1,New South Wales,153.284708,-29.02619 +2023,9,10,1,New South Wales,153.109299,-29.490469 +2021,4,11,1,New South Wales,150.615107,-34.432589 +2023,2,1,1,New South Wales,152.1024,-32.733421 +2021,1,24,1,New South Wales,152.916192,-31.485855 +2021,3,25,1,New South Wales,150.514483,-34.444729 +2021,10,11,1,New South Wales,153.229565,-28.889215 +2020,10,2,1,New South Wales,152.138925,-30.119255 +2021,6,13,1,New South Wales,150.518539,-34.458451 +2020,10,20,1,New South Wales,150.813678,-34.104761 +2023,12,11,2,New South Wales,153.428671,-28.974427 +2021,3,5,1,New South Wales,150.604308,-34.436218 +2022,8,31,1,New South Wales,153.137379,-28.858113 +2021,4,12,1,New South Wales,150.659154,-34.459036 +2021,7,10,1,New South Wales,153.362835,-29.080189 +2021,6,7,1,New South Wales,150.641942,-34.39684 +2021,6,20,1,New South Wales,150.603864,-34.439554 +2020,6,28,1,New South Wales,153.1019,-29.488544 +2020,11,20,1,New South Wales,149.975174,-36.531199 +2021,6,19,1,New South Wales,150.520444,-34.465801 +2020,5,18,1,New South Wales,152.105398,-31.43014 +2020,11,30,1,New South Wales,153.367822,-28.866277 +2021,7,8,1,New South Wales,150.9783,-34.084978 +2023,9,12,1,New South Wales,152.620848,-30.332293 +2022,1,17,1,New South Wales,152.083663,-32.731136 +2020,11,6,1,New South Wales,150.016582,-36.557254 +2022,11,19,1,New South Wales,153.302446,-28.887405 +2020,8,3,1,New South Wales,152.793929,-31.126833 +2021,10,8,1,New South Wales,153.05718,-30.35819 +2020,2,10,1,New South Wales,153.355464,-28.655528 +2022,6,5,1,New South Wales,150.745287,-34.329175 +2020,5,13,1,New South Wales,153.103184,-29.486911 +2022,11,17,1,New South Wales,152.891913,-31.429138 +2020,7,18,1,New South Wales,150.796982,-33.473775 +2024,7,26,1,New South Wales,152.194346,-32.03718 +2023,10,18,1,New South Wales,151.784679,-32.488271 +2022,2,8,1,New South Wales,152.905478,-31.467655 +2021,6,15,1,New South Wales,150.623418,-34.384212 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2021,5,24,1,New South Wales,150.517335,-34.452044 +2023,1,24,1,New South Wales,153.095837,-29.38182 +2021,7,28,1,New South Wales,150.630873,-34.420644 +2021,7,5,1,New South Wales,150.630696,-34.389915 +2021,7,12,1,New South Wales,150.522075,-34.464383 +2024,3,1,1,New South Wales,152.064607,-32.70652 +2020,12,28,1,New South Wales,146.57015,-34.755701 +2021,6,4,1,New South Wales,152.927599,-31.45948 +2021,8,15,1,New South Wales,152.191408,-29.862543 +2023,8,6,1,New South Wales,149.467794,-33.678452 +2021,6,4,1,New South Wales,150.623616,-34.388741 +2021,6,8,1,New South Wales,150.531223,-34.457942 +2020,11,15,1,New South Wales,152.924781,-31.463925 +2021,8,26,1,New South Wales,152.856079,-31.465698 +2023,10,17,1,New South Wales,152.905367,-31.43684 +2021,4,17,1,New South Wales,150.528567,-34.464208 +2021,9,7,1,New South Wales,152.916219,-31.467923 +2021,6,21,1,New South Wales,150.603893,-34.421416 +2021,3,27,1,New South Wales,152.057893,-32.737661 +2021,12,17,1,New South Wales,151.883896,-32.747766 +2023,11,6,1,New South Wales,152.919013,-31.453816 +2020,3,25,1,New South Wales,150.119215,-35.062511 +2021,6,14,1,New South Wales,150.520474,-34.454091 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2020,8,28,1,New South Wales,153.036423,-30.8961 +2021,3,,1,New South Wales,151.2467,-33.10191 +2021,9,27,1,New South Wales,150.513792,-34.446013 +2021,5,24,1,New South Wales,149.577506,-33.419281 +2020,9,10,1,New South Wales,153.303922,-28.908353 +2022,3,21,1,New South Wales,151.738163,-32.897817 +2022,2,6,1,New South Wales,153.302428,-28.819449 +2024,1,14,1,New South Wales,152.798319,-31.636955 +2023,10,11,1,New South Wales,153.10968,-29.49017 +2020,9,4,1,New South Wales,152.007806,-32.733877 +2021,7,9,1,New South Wales,150.513134,-34.44728 +2021,5,8,1,New South Wales,150.518387,-34.451444 +2023,9,9,1,New South Wales,153.377137,-28.2538 +2021,5,17,1,New South Wales,150.640705,-34.494238 +2021,4,29,1,New South Wales,150.636235,-34.421847 +2021,6,3,1,New South Wales,150.519624,-34.455237 +2021,5,27,1,New South Wales,150.639722,-34.393399 +2021,7,15,1,New South Wales,152.412515,-31.932197 +2020,6,19,1,New South Wales,153.103752,-29.485578 +2020,11,30,1,New South Wales,153.367822,-28.866277 +2020,8,28,1,New South Wales,153.091916,-29.487974 +2020,5,12,1,New South Wales,153.325993,-28.604299 +2021,7,5,1,New South Wales,150.627353,-34.421233 +2021,7,12,1,New South Wales,150.6263,-34.421177 +2021,5,3,1,New South Wales,150.839671,-34.078232 +2021,4,24,1,New South Wales,150.521284,-34.466846 +2021,6,4,1,New South Wales,150.63956,-34.399174 +2021,1,4,1,New South Wales,153.416729,-28.735117 +2021,5,24,1,New South Wales,150.51738,-34.452 +2021,8,13,1,New South Wales,153.28111,-28.826154 +2021,7,7,1,New South Wales,150.51302,-34.447097 +2020,9,24,1,New South Wales,152.898222,-31.443448 +2021,5,7,1,New South Wales,150.605617,-34.437605 +2020,11,15,1,New South Wales,149.966791,-36.502277 +2022,7,9,1,New South Wales,152.891412,-31.447942 +2021,2,8,1,New South Wales,152.212482,-31.92602 +2022,3,21,1,New South Wales,152.8933,-31.443058 +2023,1,8,1,New South Wales,152.00098,-32.74141 +2021,3,27,1,New South Wales,150.521046,-34.466409 +2024,8,22,1,New South Wales,152.802775,-31.676328 +2021,6,5,1,New South Wales,150.606721,-34.450023 +2021,6,6,1,New South Wales,150.523924,-34.466251 +2021,6,21,1,New South Wales,150.603485,-34.420074 +2021,6,25,1,New South Wales,150.62712,-34.386745 +2021,2,26,1,New South Wales,150.518117,-34.456144 +2021,6,20,1,New South Wales,150.513642,-34.446326 +2021,4,6,1,New South Wales,151.120388,-33.085576 +2024,1,25,1,New South Wales,150.785566,-33.714767 +2021,9,18,1,New South Wales,153.623961,-28.643867 +2020,12,2,1,New South Wales,153.415946,-28.982816 +2024,8,1,1,New South Wales,151.833508,-32.323583 +2021,8,25,1,New South Wales,150.640965,-34.393287 +2021,5,20,1,New South Wales,150.631548,-34.38784 +2021,8,9,1,New South Wales,150.521608,-34.465825 +2021,3,16,1,New South Wales,149.391328,-33.501001 +2021,8,8,1,New South Wales,152.884465,-28.440333 +2020,9,5,1,New South Wales,153.423562,-28.727556 +2022,1,16,1,New South Wales,152.488711,-32.032221 +2022,8,1,1,New South Wales,150.79567,-34.139848 +2023,8,13,1,New South Wales,150.785297,-33.705697 +2021,11,18,1,New South Wales,152.076629,-32.722654 +2022,1,25,1,New South Wales,153.453198,-28.646734 +2021,5,9,1,New South Wales,150.624822,-34.399565 +2020,7,10,1,New South Wales,152.865331,-31.465972 +2021,8,12,1,New South Wales,153.602885,-28.680184 +2022,2,9,1,New South Wales,152.92489,-29.733729 +2022,9,3,1,New South Wales,153.337868,-28.814127 +2023,8,4,1,New South Wales,150.693914,-34.240851 +2022,9,2,1,New South Wales,153.290107,-28.972103 +2021,11,11,1,New South Wales,153.325686,-28.894918 +2021,12,16,1,New South Wales,153.394017,-28.998449 +2021,12,31,1,New South Wales,153.101161,-29.490072 +2021,11,6,1,New South Wales,150.616109,-34.437937 +2022,4,28,1,New South Wales,151.233191,-33.161187 +2021,12,3,1,New South Wales,150.613567,-34.43969 +2020,2,17,1,New South Wales,152.90348,-31.491273 +2021,1,30,1,New South Wales,150.713472,-32.721615 +2021,12,19,1,New South Wales,152.115386,-32.770144 +2020,10,12,1,New South Wales,149.887989,-36.587028 +2023,9,12,1,New South Wales,152.810627,-31.652997 +2021,5,16,1,New South Wales,150.613969,-34.433586 +2020,10,27,1,New South Wales,150.114595,-33.749522 +2021,7,16,1,New South Wales,150.522826,-34.466571 +2022,10,13,1,New South Wales,153.093984,-30.318214 +2021,5,14,1,New South Wales,150.523879,-34.463743 +2023,8,7,1,New South Wales,152.009829,-32.727173 +2022,9,20,1,New South Wales,152.91001,-30.1757 +2021,9,13,1,New South Wales,150.638335,-34.402117 +2021,5,3,1,New South Wales,150.633458,-34.418476 +2023,7,10,1,New South Wales,152.920536,-31.458194 +2022,4,8,1,New South Wales,150.01137,-31.19265 +2023,9,12,1,New South Wales,152.808051,-31.652531 +2021,11,22,1,New South Wales,153.10122,-29.490007 +2023,11,22,1,New South Wales,152.081165,-32.721606 +2020,2,5,1,New South Wales,153.29238,-28.864021 +2022,10,28,1,New South Wales,153.293151,-28.864601 +2021,6,27,1,New South Wales,150.597554,-34.418235 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2022,5,5,1,New South Wales,153.110513,-29.490082 +2022,8,24,1,New South Wales,153.103463,-29.485678 +2023,5,6,1,New South Wales,153.394509,-28.960502 +2020,7,3,1,New South Wales,153.49754,-28.768431 +2020,12,9,1,New South Wales,153.091806,-29.487981 +2021,11,11,1,New South Wales,152.898604,-31.455951 +2021,5,22,1,New South Wales,150.63083,-34.420643 +2021,3,27,1,New South Wales,151.6662,-30.501562 +2020,12,15,1,New South Wales,153.47285,-28.647443 +2024,1,31,1,New South Wales,151.628085,-32.643567 +2021,6,2,1,New South Wales,150.637009,-34.488216 +2023,6,28,1,New South Wales,150.785838,-33.714843 +2021,10,30,1,New South Wales,151.778772,-32.926388 +2021,5,1,1,New South Wales,150.624221,-34.388897 +2021,7,18,1,New South Wales,153.316265,-28.82245 +2020,1,6,1,New South Wales,153.097288,-29.491711 +2021,6,8,1,New South Wales,150.640469,-34.39509 +2021,5,8,1,New South Wales,150.604306,-34.426383 +2022,7,11,1,New South Wales,146.535179,-34.74523 +2023,1,14,1,New South Wales,152.072098,-32.710683 +2021,6,16,1,New South Wales,150.639833,-34.400307 +2021,8,3,1,New South Wales,150.632614,-34.418306 +2023,7,27,1,New South Wales,152.9065,-30.503138 +2020,12,23,1,New South Wales,153.274837,-28.874085 +2020,3,27,1,New South Wales,150.124272,-35.078534 +2023,4,20,1,New South Wales,152.8666,-31.299177 +2023,9,1,1,New South Wales,153.54091,-28.345835 +2022,9,23,1,New South Wales,153.11049,-29.490199 +2021,10,29,1,New South Wales,152.170903,-32.730846 +2021,6,29,1,New South Wales,150.522583,-34.464862 +2023,4,26,1,New South Wales,153.157949,-28.574595 +2020,10,20,1,New South Wales,153.296004,-28.818579 +2020,12,25,1,New South Wales,151.6662,-30.501562 +2021,4,20,1,New South Wales,150.614515,-34.429287 +2021,5,25,1,New South Wales,150.595536,-34.426021 +2022,7,30,1,New South Wales,152.79675,-31.152305 +2022,7,18,1,New South Wales,153.052792,-28.446872 +2024,4,12,1,New South Wales,152.063349,-32.70632 +2021,5,21,1,New South Wales,150.517381,-34.451991 +2023,11,12,1,New South Wales,153.108146,-29.490222 +2021,5,9,1,New South Wales,150.516966,-34.447259 +2021,10,14,1,New South Wales,153.104187,-29.477502 +2023,9,7,1,New South Wales,150.785371,-33.710151 +2021,7,3,1,New South Wales,150.646725,-34.39576 +2021,6,4,1,New South Wales,150.519469,-34.455333 +2021,6,14,1,New South Wales,150.615525,-34.432065 +2021,9,11,1,New South Wales,153.397897,-28.259715 +2023,9,9,1,New South Wales,153.104227,-30.362586 +2021,4,25,1,New South Wales,150.63791,-34.419941 +2022,6,24,1,New South Wales,153.10297,-30.32338 +2022,1,17,1,New South Wales,152.063684,-32.706122 +2021,9,22,1,New South Wales,150.642959,-34.39896 +2023,10,10,1,New South Wales,152.912534,-31.444928 +2022,9,4,1,New South Wales,150.884823,-34.017953 +2021,5,19,1,New South Wales,150.519857,-34.452898 +2021,3,19,1,New South Wales,150.6079,-34.422053 +2020,6,5,1,New South Wales,152.89309,-31.45491 +2020,1,4,1,New South Wales,150.655,-33.520759 +2021,6,17,1,New South Wales,150.519116,-34.459897 +2023,3,2,1,New South Wales,153.091242,-29.487649 +2020,5,26,1,New South Wales,153.109449,-29.490488 +2021,12,19,1,New South Wales,153.108205,-29.490236 +2020,12,25,1,New South Wales,151.695225,-32.696461 +2021,8,1,1,New South Wales,150.62407,-34.388849 +2022,11,20,1,New South Wales,152.786722,-31.629178 +2021,3,2,1,New South Wales,150.520733,-34.460813 +2021,5,6,1,New South Wales,150.60884,-34.455483 +2023,1,2,1,New South Wales,151.43339,-32.54383 +2020,12,24,1,New South Wales,152.412719,-31.932131 +2021,3,4,1,New South Wales,150.514386,-34.450938 +2020,1,5,1,New South Wales,153.10416,-29.489548 +2021,2,17,1,New South Wales,153.22254,-28.885381 +2020,1,7,1,New South Wales,152.921425,-31.463343 +2023,6,9,1,New South Wales,149.660965,-32.564169 +2023,11,2,1,New South Wales,152.403573,-31.927966 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2023,5,3,1,New South Wales,152.87764,-31.453845 +2021,5,11,1,New South Wales,150.624894,-34.399702 +2021,5,21,1,New South Wales,150.630391,-34.395319 +2020,1,30,1,New South Wales,153.28464,-28.825104 +2021,8,4,1,New South Wales,153.103747,-29.485538 +2021,5,23,1,New South Wales,150.616273,-34.434442 +2020,9,29,1,New South Wales,153.103913,-29.485538 +2020,4,25,1,New South Wales,150.057972,-33.775084 +2022,8,17,1,New South Wales,152.918687,-30.296694 +2020,7,11,1,New South Wales,153.554438,-28.586098 +2021,5,4,1,New South Wales,150.61585,-34.436318 +2021,5,2,1,New South Wales,150.617573,-34.399758 +2023,11,9,1,New South Wales,150.786067,-33.709599 +2021,8,11,1,New South Wales,150.647048,-34.39784 +2021,11,23,1,New South Wales,150.616522,-34.439099 +2021,4,27,1,New South Wales,150.602963,-34.435678 +2021,4,15,1,New South Wales,150.633487,-34.392367 +2021,6,12,1,New South Wales,150.515883,-34.447056 +2020,9,14,1,New South Wales,150.101252,-33.776903 +2023,7,13,1,New South Wales,152.89714,-31.474811 +2021,7,26,1,New South Wales,153.528278,-28.231176 +2024,1,12,1,New South Wales,152.899467,-31.443637 +2020,7,5,1,New South Wales,152.893086,-31.454902 +2023,3,10,1,New South Wales,152.91782,-31.438393 +2021,4,24,1,New South Wales,150.610334,-34.41909 +2021,12,17,1,New South Wales,153.437732,-28.993352 +2021,5,5,1,New South Wales,150.520357,-34.435986 +2021,6,4,1,New South Wales,153.06119,-28.541139 +2020,1,20,1,New South Wales,153.104267,-29.480084 +2022,4,24,1,New South Wales,152.377799,-31.926101 +2024,2,8,1,New South Wales,152.751422,-31.450315 +2021,12,9,1,New South Wales,152.815095,-31.42985 +2021,11,16,1,New South Wales,152.823969,-29.810297 +2023,10,26,1,New South Wales,152.825076,-29.507987 +2021,5,7,1,New South Wales,150.52119,-34.435778 +2023,10,2,1,New South Wales,151.010546,-34.045544 +2020,11,10,1,New South Wales,152.904095,-31.456144 +2021,4,13,1,New South Wales,150.637557,-34.419718 +2021,4,19,1,New South Wales,150.630839,-34.394074 +2022,8,20,1,New South Wales,152.913618,-31.476768 +2022,1,7,1,New South Wales,153.561808,-28.330657 +2023,1,21,1,New South Wales,150.788792,-34.202172 +2022,11,24,1,New South Wales,152.064574,-32.699547 +2022,8,18,1,New South Wales,153.496849,-28.693467 +2022,7,8,1,New South Wales,152.918504,-31.470118 +2021,8,3,1,New South Wales,150.518768,-34.447403 +2022,11,28,1,New South Wales,152.782929,-31.53933 +2021,7,13,1,New South Wales,153.002877,-28.622261 +2020,10,12,1,New South Wales,149.887989,-36.587028 +2021,5,5,1,New South Wales,150.638519,-34.490652 +2022,6,24,1,New South Wales,153.1033,-30.32307 +2021,7,1,1,New South Wales,152.641843,-31.707901 +2021,5,24,1,New South Wales,150.630787,-34.420624 +2024,8,29,1,New South Wales,152.079896,-31.845958 +2020,7,9,1,New South Wales,153.510553,-28.69241 +2022,9,27,1,New South Wales,152.692046,-31.869627 +2022,10,13,1,New South Wales,152.920514,-29.698519 +2024,1,17,1,New South Wales,152.868199,-31.471944 +2023,4,5,1,New South Wales,153.555979,-28.398963 +2021,5,17,1,New South Wales,150.516583,-34.449874 +2021,6,26,1,New South Wales,150.522124,-34.464195 +2024,1,12,1,New South Wales,152.982849,-30.432207 +2021,3,9,1,New South Wales,150.530607,-34.459264 +2021,5,24,1,New South Wales,153.495167,-28.69445 +2021,6,14,1,New South Wales,150.521284,-34.465719 +2020,8,15,1,New South Wales,152.172614,-29.911288 +2024,5,23,1,New South Wales,152.071535,-32.71063 +2023,10,15,1,New South Wales,152.894649,-30.46734 +2021,5,6,1,New South Wales,150.603557,-34.427468 +2020,8,11,1,New South Wales,152.929137,-31.474405 +2021,6,29,1,New South Wales,150.631484,-34.387812 +2021,7,12,1,New South Wales,150.513018,-34.44716 +2020,10,29,1,New South Wales,149.984303,-36.560469 +2022,11,28,1,New South Wales,152.794854,-30.893434 +2021,6,25,1,New South Wales,150.645137,-34.391492 +2020,12,15,1,New South Wales,152.926634,-31.454746 +2021,12,27,1,New South Wales,153.308213,-28.89079 +2021,3,25,1,New South Wales,150.525483,-34.459917 +2021,11,2,1,New South Wales,152.911566,-31.443198 +2021,5,19,1,New South Wales,150.524098,-34.463703 +2021,6,19,1,New South Wales,150.513791,-34.446067 +2022,5,4,1,New South Wales,150.981507,-34.0247 +2021,10,5,1,New South Wales,152.819927,-31.305577 +2022,1,18,1,New South Wales,153.101317,-29.489662 +2020,1,7,1,New South Wales,152.013478,-32.73255 +2022,,,1,New South Wales,153.599207,-28.716257 +2024,5,15,1,New South Wales,152.186911,-31.953816 +2020,12,12,1,New South Wales,152.077637,-32.72246 +2020,10,25,1,New South Wales,149.945227,-36.57753 +2023,12,19,1,New South Wales,152.790539,-30.251232 +2022,4,14,1,New South Wales,153.100184,-30.3065 +2024,2,18,1,New South Wales,150.785872,-33.708828 +2020,9,3,1,New South Wales,153.00569,-29.185283 +2021,7,13,1,New South Wales,150.5128,-34.446822 +2020,9,16,1,New South Wales,151.617112,-32.600859 +2021,4,19,1,New South Wales,150.626857,-34.385667 +2023,9,17,1,New South Wales,153.033221,-30.379586 +2023,7,29,1,New South Wales,153.112725,-30.263392 +2022,9,27,1,New South Wales,153.4261,-28.35734 +2020,11,29,1,New South Wales,153.295453,-28.983835 +2020,11,5,1,New South Wales,149.984303,-36.560469 +2021,4,20,1,New South Wales,150.636918,-34.422708 +2021,5,5,1,New South Wales,150.637334,-34.423771 +2022,9,18,1,New South Wales,153.555987,-28.398817 +2020,10,30,1,New South Wales,150.808356,-34.098074 +2021,3,3,1,New South Wales,150.520858,-34.467613 +2022,8,30,1,New South Wales,149.324831,-36.294306 +2021,12,9,1,New South Wales,152.81527,-31.42801 +2024,7,29,1,New South Wales,152.077211,-32.722468 +2021,11,17,1,New South Wales,152.935139,-29.709626 +2022,12,31,1,New South Wales,153.103468,-29.485599 +2021,8,19,1,New South Wales,150.645582,-34.401626 +2021,7,18,1,New South Wales,150.624287,-34.386185 +2022,1,21,1,New South Wales,152.116346,-32.764542 +2021,11,3,1,New South Wales,152.823694,-29.813401 +2022,9,19,1,New South Wales,152.242595,-32.387432 +2021,10,21,1,New South Wales,150.975455,-34.085671 +2021,4,22,1,New South Wales,150.609156,-34.418805 +2020,9,,1,New South Wales,150.653641,-33.53116 +2023,9,5,1,New South Wales,153.303853,-28.820797 +2020,12,21,1,New South Wales,146.588099,-34.769461 +2020,8,30,1,New South Wales,152.984371,-30.646868 +2021,5,12,1,New South Wales,150.6402,-34.492831 +2020,7,22,1,New South Wales,152.895568,-31.461866 +2021,5,11,1,New South Wales,150.63728,-34.423779 +2021,11,27,1,New South Wales,152.075352,-32.719816 +2023,8,2,1,New South Wales,150.78494,-33.719256 +2021,8,3,1,New South Wales,150.684569,-34.355784 +2021,8,13,1,New South Wales,153.10813,-29.490726 +2021,5,25,1,New South Wales,150.516416,-34.450024 +2023,8,,1,New South Wales,153.127304,-29.195909 +2020,10,30,1,New South Wales,149.92265,-36.572354 +2021,1,8,1,New South Wales,153.108221,-29.490213 +2021,8,27,1,New South Wales,153.132682,-28.581914 +2020,10,29,1,New South Wales,149.96897,-36.58553 +2024,6,13,1,New South Wales,153.399764,-29.03767 +2022,8,12,1,New South Wales,152.904691,-31.439395 +2021,11,30,1,New South Wales,150.972884,-34.123039 +2022,11,19,1,New South Wales,152.754102,-30.882465 +2023,1,26,1,New South Wales,153.300294,-28.82525 +2021,3,24,1,New South Wales,150.16432,-31.07321 +2022,11,16,1,New South Wales,153.500772,-28.788298 +2023,8,3,1,New South Wales,152.08747,-32.74408 +2021,12,21,1,New South Wales,150.957118,-34.105555 +2023,4,19,1,New South Wales,149.950099,-36.567944 +2021,6,1,1,New South Wales,150.60472,-34.424822 +2021,4,21,1,New South Wales,150.637024,-34.422431 +2021,4,1,1,New South Wales,150.662766,-34.458311 +2021,4,10,1,New South Wales,150.604696,-34.431403 +2021,5,5,1,New South Wales,150.602994,-34.427358 +2021,7,16,1,New South Wales,150.594499,-34.410584 +2021,11,29,1,New South Wales,150.615998,-34.440306 +2020,10,31,1,New South Wales,153.314983,-28.949201 +2023,4,13,1,New South Wales,151.855044,-32.738832 +2021,5,20,1,New South Wales,150.615108,-34.431399 +2021,5,11,1,New South Wales,150.637324,-34.423762 +2021,5,16,1,New South Wales,150.520419,-34.454117 +2021,6,8,1,New South Wales,150.630144,-34.420666 +2022,1,29,1,New South Wales,153.510401,-28.809978 +2021,9,4,1,New South Wales,153.329229,-28.830312 +2021,4,30,1,New South Wales,150.608854,-34.435144 +2021,6,29,1,New South Wales,153.103849,-29.485057 +2021,5,27,1,New South Wales,150.630633,-34.420657 +2020,11,6,1,New South Wales,150.016582,-36.557254 +2021,5,13,1,New South Wales,150.524425,-34.466252 +2021,6,4,1,New South Wales,150.637028,-34.488316 +2021,5,21,1,New South Wales,150.639067,-34.493223 +2022,8,25,1,New South Wales,150.801671,-34.112369 +2022,10,30,1,New South Wales,152.313744,-32.140794 +2020,7,28,1,New South Wales,152.798999,-31.124684 +2021,6,20,1,New South Wales,150.519535,-34.461212 +2020,12,28,1,New South Wales,153.104224,-29.479603 +2020,6,26,1,New South Wales,152.915663,-31.482664 +2021,12,19,1,New South Wales,153.280525,-28.676823 +2022,9,19,1,New South Wales,152.323041,-32.213007 +2020,2,29,1,New South Wales,153.314983,-28.949201 +2023,12,29,1,New South Wales,151.987275,-32.400924 +2021,5,13,1,New South Wales,150.613362,-34.457987 +2021,7,1,1,New South Wales,150.522641,-34.465846 +2021,6,23,1,New South Wales,150.520414,-34.465711 +2022,8,20,1,New South Wales,152.83066,-29.640871 +2023,12,13,1,New South Wales,152.725457,-30.221828 +2022,10,3,1,New South Wales,152.327772,-31.87703 +2020,9,24,1,New South Wales,152.633936,-30.081071 +2023,9,17,1,New South Wales,152.1067,-32.728703 +2021,5,5,1,New South Wales,150.615785,-34.435902 +2021,5,4,1,New South Wales,150.606611,-34.457684 +2020,5,18,1,New South Wales,152.132313,-31.415267 +2021,4,30,1,New South Wales,150.606899,-34.454462 +2021,5,4,1,New South Wales,150.523635,-34.459465 +2020,4,20,1,New South Wales,152.661937,-30.469192 +2021,8,15,1,New South Wales,151.295088,-30.009664 +2021,11,2,1,New South Wales,152.323041,-32.213007 +2023,9,30,1,New South Wales,153.560832,-28.37442 +2023,2,2,1,New South Wales,152.897126,-31.474927 +2021,5,15,1,New South Wales,150.527726,-34.466526 +2021,3,6,1,New South Wales,150.524508,-34.453876 +2021,4,12,1,New South Wales,150.634891,-34.487661 +2023,4,4,1,New South Wales,149.951303,-36.599554 +2022,2,7,1,New South Wales,152.902607,-31.45439 +2022,12,22,1,New South Wales,152.208012,-31.420297 +2020,11,7,1,New South Wales,150.016582,-36.557254 +2020,5,25,1,New South Wales,152.163099,-31.710087 +2021,6,10,1,New South Wales,152.926157,-31.459104 +2022,1,6,1,New South Wales,152.059198,-28.999361 +2022,11,19,1,New South Wales,152.797565,-30.915154 +2020,1,23,1,New South Wales,149.421412,-36.164086 +2021,5,27,1,New South Wales,150.618961,-34.439408 +2024,7,23,1,New South Wales,153.432335,-28.969541 +2021,6,22,1,New South Wales,150.645157,-34.393116 +2021,7,23,1,New South Wales,153.600953,-28.687002 +2023,8,15,1,New South Wales,152.918407,-31.470168 +2021,5,5,1,New South Wales,150.609402,-34.418963 +2021,6,3,1,New South Wales,150.605773,-34.4375 +2022,11,30,1,New South Wales,152.754102,-30.882465 +2020,10,15,1,New South Wales,152.885439,-29.312999 +2021,5,12,1,New South Wales,150.517208,-34.447525 +2021,5,25,1,New South Wales,150.517366,-34.452099 +2024,4,24,1,New South Wales,153.124177,-30.29436 +2023,8,26,1,New South Wales,150.786378,-33.706328 +2024,9,20,1,New South Wales,150.797056,-34.117278 +2021,5,20,1,New South Wales,150.517215,-34.452078 +2022,10,12,1,New South Wales,153.526866,-28.68424 +2022,5,1,1,New South Wales,153.111037,-29.48707 +2020,8,14,1,New South Wales,152.402887,-31.925334 +2021,5,22,1,New South Wales,150.630993,-34.388226 +2022,11,21,1,New South Wales,153.43077,-29.016172 +2020,11,9,1,New South Wales,152.067434,-32.708155 +2022,10,14,1,New South Wales,153.492705,-28.677275 +2023,6,19,1,New South Wales,153.207817,-28.830086 +2021,4,29,1,New South Wales,150.616485,-34.398619 +2020,12,11,1,New South Wales,153.103983,-29.489549 +2021,4,26,1,New South Wales,150.521057,-34.466778 +2023,6,8,1,New South Wales,152.068252,-32.710545 +2023,1,22,1,New South Wales,153.090781,-29.487588 +2020,12,11,1,New South Wales,153.108162,-29.490591 +2023,8,28,1,New South Wales,153.289497,-28.998903 +2021,6,2,1,New South Wales,150.604795,-34.427158 +2021,5,5,1,New South Wales,150.632894,-34.418826 +2021,4,30,1,New South Wales,150.517242,-34.446381 +2024,1,14,1,New South Wales,152.921646,-31.474953 +2023,7,30,1,New South Wales,152.786427,-31.634861 +2023,9,15,1,New South Wales,152.385763,-31.876729 +2022,8,8,1,New South Wales,150.534404,-34.426658 +2021,5,19,1,New South Wales,150.633758,-34.418247 +2023,2,2,1,New South Wales,150.849072,-34.052919 +2022,4,30,1,New South Wales,152.617483,-31.828573 +2021,4,24,1,New South Wales,150.605168,-34.437732 +2021,8,10,1,New South Wales,150.631974,-34.418258 +2022,11,25,1,New South Wales,152.379287,-31.918732 +2020,11,,1,New South Wales,151.725171,-32.224807 +2021,5,25,1,New South Wales,150.631315,-34.420021 +2021,5,14,1,New South Wales,150.601772,-34.428623 +2023,11,22,1,New South Wales,150.785225,-33.70573 +2021,8,13,1,New South Wales,152.380233,-31.920978 +2022,6,27,1,New South Wales,150.813393,-33.365499 +2021,6,2,1,New South Wales,150.604325,-34.437905 +2021,4,5,1,New South Wales,150.634188,-34.488657 +2020,10,,1,New South Wales,152.39132,-31.203574 +2021,6,8,1,New South Wales,150.629685,-34.420711 +2021,5,5,1,New South Wales,150.615751,-34.435982 +2023,2,6,1,New South Wales,152.98601,-30.326332 +2021,8,1,1,New South Wales,150.51857,-34.447472 +2021,10,20,1,New South Wales,153.29749,-29.00401 +2021,5,5,1,New South Wales,150.609146,-34.418769 +2021,6,20,1,New South Wales,150.639501,-34.392745 +2021,8,15,1,New South Wales,152.191408,-29.862543 +2021,6,3,1,New South Wales,150.519656,-34.455283 +2023,1,5,1,New South Wales,152.897998,-31.436032 +2021,6,4,1,New South Wales,150.521611,-34.465717 +2023,6,12,1,New South Wales,150.23013,-34.263818 +2020,8,25,1,New South Wales,152.955146,-30.666958 +2021,5,5,1,New South Wales,150.609577,-34.418552 +2023,5,17,1,New South Wales,150.823257,-34.100528 +2024,4,1,1,New South Wales,152.161312,-32.716024 +2021,10,29,1,New South Wales,153.010861,-30.417681 +2024,2,25,1,New South Wales,150.786153,-33.71321 +2021,8,13,1,New South Wales,152.851464,-29.692524 +2023,7,28,1,New South Wales,153.011912,-30.422885 +2021,7,18,1,New South Wales,150.627942,-34.420406 +2020,11,16,1,New South Wales,149.962048,-36.514707 +2024,8,28,1,New South Wales,152.281171,-32.405773 +2023,1,18,1,New South Wales,152.824518,-29.505452 +2021,5,9,1,New South Wales,150.615158,-34.435403 +2023,7,23,1,New South Wales,152.979071,-30.420393 +2021,9,10,1,New South Wales,150.64204,-34.395282 +2022,6,3,1,New South Wales,152.900998,-31.442765 +2024,9,12,2,New South Wales,152.967148,-31.184721 +2021,2,7,1,New South Wales,153.5569,-28.400371 +2020,9,23,1,New South Wales,150.781736,-34.196299 +2022,9,25,1,New South Wales,152.9249,-31.214814 +2023,8,11,1,New South Wales,152.919045,-31.458791 +2020,9,24,1,New South Wales,153.400596,-28.257714 +2021,5,25,1,New South Wales,150.631511,-34.388398 +2023,9,23,1,New South Wales,153.322093,-28.837715 +2020,9,25,1,New South Wales,153.390578,-28.838594 +2021,3,2,1,New South Wales,153.557172,-28.397528 +2021,6,4,1,New South Wales,150.636676,-34.488047 +2021,9,12,1,New South Wales,150.998642,-34.082932 +2020,2,4,1,New South Wales,153.29336,-28.864551 +2020,7,8,1,New South Wales,150.01615,-36.226553 +2021,6,18,1,New South Wales,150.522236,-34.451567 +2023,5,3,1,New South Wales,152.908308,-31.438637 +2021,5,4,1,New South Wales,150.61147,-34.419689 +2023,6,7,1,New South Wales,150.883942,-34.063969 +2021,3,19,1,New South Wales,150.521241,-34.454314 +2021,9,8,1,New South Wales,152.824706,-29.505434 +2020,12,8,1,New South Wales,151.421792,-31.750441 +2023,9,23,1,New South Wales,152.414856,-31.933292 +2023,10,26,1,New South Wales,152.198292,-32.220827 +2023,9,30,1,New South Wales,150.784669,-33.717881 +2021,8,25,1,New South Wales,153.018706,-28.560007 +2021,9,27,1,New South Wales,152.014607,-32.666903 +2023,10,26,1,New South Wales,152.193373,-32.220759 +2021,6,6,1,New South Wales,150.518344,-34.447007 +2021,11,17,1,New South Wales,152.152571,-32.722902 +2023,4,22,1,New South Wales,153.428712,-29.016259 +2022,1,27,1,New South Wales,151.774796,-32.446115 +2021,6,26,1,New South Wales,150.522167,-34.464214 +2020,9,24,1,New South Wales,152.897944,-31.442907 +2020,1,25,1,New South Wales,153.375005,-28.998794 +2022,7,3,1,New South Wales,152.924933,-31.454184 +2023,9,5,1,New South Wales,152.9193,-31.459265 +2023,11,4,1,New South Wales,152.187392,-32.232904 +2023,9,12,1,New South Wales,152.91757,-31.477051 +2021,5,30,1,New South Wales,150.833136,-34.085987 +2021,5,13,1,New South Wales,150.60576,-34.427646 +2020,2,27,1,New South Wales,151.985731,-32.751428 +2021,12,3,1,New South Wales,151.688766,-32.689812 +2021,9,4,1,New South Wales,153.052346,-28.468198 +2021,5,14,1,New South Wales,150.640362,-34.494051 +2021,8,4,1,New South Wales,153.317531,-28.648876 +2024,4,21,1,New South Wales,152.395436,-31.966894 +2020,3,27,1,New South Wales,153.102733,-29.487686 +2021,4,1,1,New South Wales,150.528896,-34.457489 +2021,5,24,1,New South Wales,150.605009,-34.432626 +2021,11,27,1,New South Wales,152.056469,-32.737992 +2021,9,17,1,New South Wales,150.520127,-34.449297 +2021,6,17,1,New South Wales,150.597551,-34.449501 +2021,7,21,1,New South Wales,150.623338,-34.3832 +2021,2,14,1,New South Wales,153.277646,-28.939107 +2020,11,,1,New South Wales,150.556893,-34.363394 +2021,6,14,1,New South Wales,150.64287,-34.394767 +2021,10,29,1,New South Wales,152.107655,-31.419488 +2021,5,4,1,New South Wales,150.60317,-34.427686 +2021,4,25,1,New South Wales,150.604214,-34.437966 +2022,3,28,1,New South Wales,152.661161,-28.610492 +2024,1,7,1,New South Wales,149.912959,-32.494759 +2021,5,15,1,New South Wales,150.637311,-34.423824 +2021,7,13,1,New South Wales,150.626866,-34.38536 +2021,4,21,1,New South Wales,150.615809,-34.433153 +2021,7,26,1,New South Wales,150.625852,-34.386215 +2021,4,23,1,New South Wales,150.605696,-34.423417 +2022,1,22,1,New South Wales,153.304113,-28.822468 +2022,11,9,1,New South Wales,150.790835,-34.157616 +2022,11,19,1,New South Wales,152.754102,-30.882465 +2021,5,13,1,New South Wales,150.516697,-34.448993 +2021,4,20,1,New South Wales,150.836892,-34.056615 +2021,6,28,1,New South Wales,150.52312,-34.466225 +2024,1,12,1,New South Wales,153.108167,-29.490227 +2021,8,30,1,New South Wales,150.816907,-34.098443 +2020,7,10,1,New South Wales,153.363197,-29.377847 +2022,12,16,1,New South Wales,152.872682,-31.286978 +2022,6,27,1,New South Wales,152.943613,-30.389611 +2021,6,22,1,New South Wales,150.657531,-34.455957 +2020,9,10,1,New South Wales,153.103001,-29.48778 +2021,6,7,1,New South Wales,150.518081,-34.457009 +2020,8,21,1,New South Wales,150.833136,-34.085987 +2020,1,30,1,New South Wales,153.10158,-29.489862 +2023,11,15,1,New South Wales,152.927638,-30.244629 +2023,7,22,1,New South Wales,152.059388,-32.738106 +2021,1,13,1,New South Wales,153.607389,-28.687767 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2021,3,31,1,New South Wales,150.525494,-34.4599 +2022,12,16,1,New South Wales,152.872086,-31.284893 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2021,11,26,1,New South Wales,153.101301,-29.489974 +2021,6,3,1,New South Wales,150.639453,-34.399488 +2021,6,27,1,New South Wales,150.597636,-34.418408 +2020,10,24,1,New South Wales,152.133157,-32.720012 +2021,10,31,1,New South Wales,151.031397,-34.031656 +2021,3,14,1,New South Wales,150.535233,-34.462215 +2024,5,15,1,New South Wales,152.182861,-31.960117 +2021,7,10,1,New South Wales,150.520185,-34.465724 +2021,5,26,1,New South Wales,150.619817,-34.439154 +2023,6,7,1,New South Wales,150.785264,-33.717019 +2023,2,5,1,New South Wales,150.836945,-34.073654 +2021,5,10,1,New South Wales,150.637269,-34.423788 +2021,6,18,1,New South Wales,150.642413,-34.395569 +2024,7,9,1,New South Wales,153.071807,-30.887407 +2022,12,15,1,New South Wales,152.078185,-32.727389 +2022,4,21,1,New South Wales,153.108162,-29.490199 +2022,7,28,1,New South Wales,152.794884,-31.153665 +2020,10,20,1,New South Wales,152.919458,-31.438717 +2020,5,3,1,New South Wales,153.325851,-28.672561 +2024,5,22,1,New South Wales,152.379321,-31.919949 +2021,4,27,1,New South Wales,150.601987,-34.42604 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2021,10,26,1,New South Wales,153.315922,-28.929694 +2023,10,26,1,New South Wales,153.105024,-29.48968 +2020,12,4,1,New South Wales,152.906378,-31.449505 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2022,6,29,1,New South Wales,150.88363,-34.015498 +2021,5,9,1,New South Wales,150.518343,-34.451461 +2021,3,26,1,New South Wales,152.915166,-31.436227 +2020,8,8,1,New South Wales,153.487864,-28.228241 +2023,12,16,1,New South Wales,152.09566,-31.668072 +2023,9,1,1,New South Wales,153.563882,-28.380941 +2021,6,22,1,New South Wales,150.657643,-34.455842 +2024,1,3,1,New South Wales,151.060645,-29.740244 +2023,10,19,1,New South Wales,152.299722,-31.905384 +2021,6,20,1,New South Wales,150.518985,-34.460282 +2023,2,20,1,New South Wales,153.195391,-28.879711 +2020,4,2,1,New South Wales,152.732899,-31.832329 +2021,9,1,1,New South Wales,150.642043,-34.39595 +2021,10,22,1,New South Wales,152.375866,-31.953089 +2023,1,1,1,New South Wales,152.372252,-31.921251 +2021,5,15,1,New South Wales,150.656053,-34.458634 +2021,3,29,1,New South Wales,153.111219,-30.286304 +2020,9,18,1,New South Wales,150.808286,-34.098116 +2021,6,18,1,New South Wales,150.519149,-34.459888 +2021,3,9,1,New South Wales,150.604266,-34.438823 +2021,5,26,1,New South Wales,151.701571,-32.692029 +2021,10,16,1,New South Wales,153.501114,-28.224592 +2021,6,13,1,New South Wales,150.792881,-34.139386 +2021,5,25,1,New South Wales,150.638988,-34.491806 +2021,7,11,1,New South Wales,150.521884,-34.464596 +2021,4,21,1,New South Wales,150.617065,-34.433754 +2020,9,11,1,New South Wales,150.01413,-31.13273 +2023,3,17,1,New South Wales,152.916955,-31.443061 +2021,5,13,1,New South Wales,150.604655,-34.438903 +2023,1,9,1,New South Wales,152.78529,-31.633797 +2023,11,19,1,New South Wales,150.986961,-34.043858 +2023,5,18,1,New South Wales,153.284425,-29.021761 +2024,2,16,1,New South Wales,153.10975,-29.490194 +2021,4,23,1,New South Wales,150.636137,-34.420331 +2023,9,9,1,New South Wales,153.26475,-28.874133 +2021,10,18,1,New South Wales,152.928861,-31.459497 +2021,5,24,1,New South Wales,150.59462,-34.427608 +2021,5,9,1,New South Wales,150.637268,-34.423824 +2023,7,24,1,New South Wales,152.888406,-31.281793 +2021,5,10,1,New South Wales,150.624896,-34.399657 +2021,6,17,1,New South Wales,150.604299,-34.438048 +2022,12,6,1,New South Wales,152.911398,-31.472546 +2021,5,26,1,New South Wales,150.630894,-34.420662 +2020,10,3,1,New South Wales,152.863782,-29.682681 +2023,11,4,1,New South Wales,153.10976,-29.490222 +2021,6,1,1,New South Wales,150.604725,-34.42466 +2020,12,4,1,New South Wales,153.092052,-29.488018 +2021,5,17,1,New South Wales,150.797297,-34.22351 +2021,5,21,1,New South Wales,150.639224,-34.493091 +2022,1,2,1,New South Wales,153.289166,-28.715757 +2023,6,29,1,New South Wales,152.98038,-30.435319 +2023,12,10,1,New South Wales,150.990212,-34.030144 +2021,3,28,1,New South Wales,150.517241,-34.451555 +2023,8,22,1,New South Wales,152.21262,-32.23042 +2021,5,3,1,New South Wales,150.621126,-34.398718 +2023,1,14,1,New South Wales,152.925147,-31.453371 +2021,4,23,1,New South Wales,150.629286,-34.395153 +2020,12,2,1,New South Wales,153.292768,-28.864702 +2024,3,22,1,New South Wales,152.38381,-31.914717 +2023,4,10,1,New South Wales,151.738755,-30.484348 +2022,11,25,1,New South Wales,152.794854,-30.893434 +2021,5,31,1,New South Wales,150.524107,-34.471492 +2023,12,14,1,New South Wales,152.924256,-31.466746 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2022,11,17,1,New South Wales,152.924837,-31.454029 +2023,10,27,1,New South Wales,152.870552,-31.461666 +2021,5,5,1,New South Wales,150.611681,-34.419531 +2021,2,21,1,New South Wales,153.337337,-28.80993 +2024,1,22,1,New South Wales,152.925853,-31.452737 +2022,8,2,1,New South Wales,149.552143,-33.491319 +2022,7,3,1,New South Wales,153.279615,-28.831045 +2023,10,27,1,New South Wales,152.19096,-32.219628 +2023,9,22,1,New South Wales,150.785249,-33.705564 +2022,6,26,1,New South Wales,152.925301,-31.459125 +2021,3,31,1,New South Wales,150.528243,-34.457494 +2021,5,11,1,New South Wales,150.624949,-34.399685 +2022,11,30,1,New South Wales,153.531038,-28.36289 +2024,9,21,1,New South Wales,152.795091,-31.637937 +2020,10,23,1,New South Wales,149.979238,-36.570187 +2021,7,9,1,New South Wales,150.626751,-34.421375 +2021,3,19,1,New South Wales,150.615372,-34.435533 +2022,4,21,1,New South Wales,153.516943,-28.555383 +2023,5,11,1,New South Wales,153.092229,-29.488135 +2021,5,29,1,New South Wales,150.639086,-34.491421 +2023,6,30,1,New South Wales,153.314983,-28.949201 +2021,8,4,1,New South Wales,150.604784,-34.439347 +2023,5,25,1,New South Wales,152.785889,-31.631598 +2020,11,30,1,New South Wales,153.314983,-28.949201 +2023,6,13,1,New South Wales,150.785296,-33.715649 +2022,1,14,1,New South Wales,150.221668,-34.51311 +2021,6,15,1,New South Wales,150.630354,-34.420904 +2021,11,22,1,New South Wales,152.868104,-29.667303 +2021,4,17,1,New South Wales,150.859156,-34.073063 +2023,8,24,1,New South Wales,153.096151,-29.485141 +2021,10,5,1,New South Wales,153.402686,-28.960638 +2021,4,19,1,New South Wales,150.615849,-34.429836 +2023,10,27,1,New South Wales,152.927881,-31.475533 +2021,7,8,1,New South Wales,150.513078,-34.447351 +2021,6,11,1,New South Wales,150.627107,-34.385672 +2021,8,26,1,New South Wales,150.513933,-34.447891 +2021,6,22,1,New South Wales,150.627354,-34.421215 +2021,5,3,1,New South Wales,150.608612,-34.436005 +2020,11,4,1,New South Wales,150.696147,-33.443484 +2021,7,18,1,New South Wales,150.522746,-34.467444 +2023,10,31,1,New South Wales,152.403627,-31.928254 +2021,9,23,1,New South Wales,153.325204,-28.82563 +2021,5,1,1,New South Wales,150.610445,-34.420156 +2021,5,15,1,New South Wales,150.616307,-34.435921 +2021,5,26,1,New South Wales,151.8658,-32.74536 +2021,4,21,1,New South Wales,150.636399,-34.485536 +2021,3,7,1,New South Wales,152.879562,-29.707344 +2021,9,14,1,New South Wales,153.394445,-28.959546 +2021,6,15,1,New South Wales,150.524249,-34.45268 +2021,5,11,1,New South Wales,150.517436,-34.453435 +2021,3,23,1,New South Wales,150.604751,-34.439743 +2021,4,4,1,New South Wales,150.634431,-34.488536 +2020,9,20,1,New South Wales,152.90386,-31.493585 +2022,12,1,1,New South Wales,152.073059,-32.724707 +2021,5,24,1,New South Wales,150.630863,-34.420616 +2023,10,28,1,New South Wales,152.198292,-32.220827 +2022,5,3,1,New South Wales,151.652462,-32.685393 +2022,12,19,1,New South Wales,153.5451,-28.596155 +2021,3,30,1,New South Wales,152.92604,-31.463023 +2022,3,28,1,New South Wales,146.590309,-34.769934 +2021,6,20,1,New South Wales,150.619176,-34.436815 +2024,3,7,1,New South Wales,152.063517,-32.706311 +2021,5,5,1,New South Wales,150.60297,-34.427429 +2021,3,20,1,New South Wales,150.607824,-34.422052 +2020,11,7,1,New South Wales,150.007338,-36.56122 +2021,7,6,1,New South Wales,150.51405,-34.446118 +2024,1,10,1,New South Wales,150.988518,-34.028515 +2022,5,23,1,New South Wales,151.906449,-31.832643 +2023,8,3,1,New South Wales,152.210284,-31.560739 +2021,5,25,1,New South Wales,150.516481,-34.450034 +2023,4,10,1,New South Wales,153.287241,-29.164296 +2021,2,23,1,New South Wales,150.63739,-34.405634 +2023,10,19,1,New South Wales,152.864984,-31.476451 +2020,12,2,1,New South Wales,152.70819,-31.360285 +2023,10,11,1,New South Wales,152.006699,-32.63318 +2021,4,27,1,New South Wales,150.607211,-34.454586 +2021,6,2,1,New South Wales,150.63013,-34.421161 +2020,11,26,1,New South Wales,152.922345,-31.444372 +2020,12,30,1,New South Wales,152.466843,-32.401005 +2020,10,14,1,New South Wales,150.866027,-34.060984 +2021,6,5,1,New South Wales,153.318447,-28.82675 +2021,5,7,1,New South Wales,150.609071,-34.455415 +2023,9,20,1,New South Wales,153.302384,-28.84663 +2023,5,17,1,New South Wales,150.975774,-34.054438 +2021,6,5,1,New South Wales,150.636205,-34.487777 +2021,5,5,1,New South Wales,150.523423,-34.459272 +2021,6,6,1,New South Wales,150.630597,-34.420783 +2021,7,11,1,New South Wales,150.631497,-34.38811 +2022,12,26,1,New South Wales,152.784006,-31.630053 +2021,5,11,1,New South Wales,150.628079,-34.389747 +2021,2,26,1,New South Wales,150.656569,-34.456525 +2020,11,23,1,New South Wales,153.608688,-28.683535 +2023,3,5,1,New South Wales,153.307739,-28.996723 +2021,6,4,1,New South Wales,150.640035,-34.397759 +2020,1,7,1,New South Wales,153.109433,-29.490637 +2021,6,5,1,New South Wales,150.625011,-34.389796 +2023,1,24,1,New South Wales,153.31678,-28.94975 +2024,2,13,1,New South Wales,153.109819,-29.490199 +2021,4,22,1,New South Wales,150.604949,-34.423294 +2023,11,29,1,New South Wales,150.82301,-34.149664 +2021,4,26,1,New South Wales,150.610334,-34.41909 +2021,5,10,1,New South Wales,150.615811,-34.435019 +2023,1,23,1,New South Wales,152.930912,-29.725051 +2021,3,28,1,New South Wales,150.615626,-34.434231 +2022,12,3,1,New South Wales,153.204928,-28.844961 +2020,11,2,1,New South Wales,149.967242,-36.561675 +2020,1,4,1,New South Wales,151.715263,-32.669349 +2021,11,20,1,New South Wales,152.387108,-28.908123 +2020,11,13,1,New South Wales,150.01112,-36.547428 +2021,9,29,1,New South Wales,153.300004,-28.88526 +2020,10,29,1,New South Wales,149.967242,-36.561675 +2021,5,2,1,New South Wales,150.521102,-34.466734 +2020,1,2,1,New South Wales,152.45426,-31.93643 +2020,7,1,1,New South Wales,153.01536,-28.63955 +2024,9,30,1,New South Wales,150.82767,-34.155923 +2020,9,23,1,New South Wales,152.898896,-31.437176 +2022,9,16,1,New South Wales,153.396418,-29.097349 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2023,5,2,1,New South Wales,151.058604,-29.740281 +2021,5,25,1,New South Wales,151.506959,-30.511997 +2022,11,20,1,New South Wales,152.794854,-30.893434 +2020,7,25,1,New South Wales,151.376234,-30.750596 +2021,3,12,1,New South Wales,150.615802,-34.434171 +2022,8,30,1,New South Wales,149.32438,-36.295538 +2022,8,16,1,New South Wales,152.891511,-31.45737 +2021,7,27,1,New South Wales,150.640884,-34.397712 +2022,12,24,1,New South Wales,153.159104,-28.924853 +2020,6,22,1,New South Wales,152.905758,-31.489708 +2021,2,24,1,New South Wales,150.515885,-34.448102 +2020,11,13,1,New South Wales,152.03724,-32.729431 +2021,5,30,1,New South Wales,150.523967,-34.452648 +2020,4,10,1,New South Wales,150.101687,-34.971087 +2020,5,,1,New South Wales,152.011377,-32.727316 +2023,6,6,1,New South Wales,152.895521,-31.44785 +2021,5,14,1,New South Wales,150.640289,-34.493166 +2023,10,6,1,New South Wales,152.858691,-31.129566 +2021,4,17,1,New South Wales,150.616603,-34.430094 +2021,3,14,1,New South Wales,150.603836,-34.43941 +2024,1,16,1,New South Wales,152.395775,-31.943961 +2023,6,1,1,New South Wales,153.292847,-28.720511 +2023,12,6,1,New South Wales,152.656167,-30.17465 +2021,4,10,1,New South Wales,150.609441,-34.420668 +2021,9,22,1,New South Wales,150.639816,-34.398179 +2023,9,25,1,New South Wales,153.178153,-28.863762 +2021,1,23,1,New South Wales,152.092193,-32.738862 +2020,4,2,1,New South Wales,152.716509,-31.749083 +2022,8,30,1,New South Wales,149.321783,-36.29805 +2021,8,29,1,New South Wales,150.514592,-34.447292 +2021,7,29,1,New South Wales,150.597944,-34.425897 +2021,9,20,1,New South Wales,153.586284,-28.66561 +2021,5,11,1,New South Wales,150.63306,-34.417558 +2021,4,2,1,New South Wales,151.739603,-30.477824 +2023,3,19,1,New South Wales,152.890607,-30.245461 +2020,1,8,1,New South Wales,153.10379,-29.485473 +2021,12,17,1,New South Wales,153.108065,-29.490142 +2021,6,4,1,New South Wales,150.623691,-34.388815 +2021,2,18,1,New South Wales,153.107373,-29.490091 +2023,11,9,1,New South Wales,152.373707,-31.914407 +2021,7,16,1,New South Wales,150.627228,-34.420681 +2022,11,20,1,New South Wales,152.78933,-30.918792 +2022,5,4,1,New South Wales,153.413708,-28.889073 +2020,10,14,1,New South Wales,152.896993,-31.47441 +2021,6,8,1,New South Wales,150.603656,-34.436548 +2020,11,2,1,New South Wales,149.977333,-36.564828 +2020,5,7,1,New South Wales,152.028315,-32.305041 +2021,4,6,1,New South Wales,150.606639,-34.437652 +2021,5,17,1,New South Wales,150.604214,-34.437993 +2020,9,24,1,New South Wales,153.562646,-28.391295 +2023,4,20,1,New South Wales,152.903765,-31.326927 +2020,11,30,1,New South Wales,153.343646,-28.866891 +2021,5,6,1,New South Wales,150.605001,-34.437864 +2022,12,9,1,New South Wales,151.675478,-32.510486 +2024,8,22,1,New South Wales,152.806579,-31.674782 +2023,8,20,1,New South Wales,153.099772,-29.491567 +2021,5,9,1,New South Wales,150.63735,-34.423618 +2023,11,5,1,New South Wales,152.378286,-31.92017 +2020,9,24,1,New South Wales,152.898533,-31.443043 +2021,6,5,1,New South Wales,150.630709,-34.420667 +2022,11,20,1,New South Wales,152.78933,-30.918792 +2021,6,26,1,New South Wales,150.522426,-34.464291 +2023,11,21,1,New South Wales,151.05149,-29.744032 +2021,4,19,1,New South Wales,151.739707,-30.479329 +2021,6,14,1,New South Wales,150.516035,-34.459203 +2020,11,18,1,New South Wales,153.369052,-28.953149 +2021,5,17,1,New South Wales,150.997694,-34.075588 +2020,11,10,1,New South Wales,150.697215,-33.408392 +2021,1,19,1,New South Wales,152.078142,-32.727834 +2021,10,22,1,New South Wales,152.175292,-30.083437 +2021,6,15,1,New South Wales,150.520413,-34.465747 +2023,12,10,1,New South Wales,152.926618,-31.466445 +2020,9,2,1,New South Wales,153.114205,-28.524725 +2022,9,30,1,New South Wales,153.282479,-28.805242 +2020,10,12,1,New South Wales,152.733213,-31.342321 +2023,11,10,1,New South Wales,152.916532,-31.444859 +2021,5,16,1,New South Wales,150.523884,-34.463581 +2023,11,15,1,New South Wales,152.939246,-30.230133 +2023,11,18,1,New South Wales,152.897256,-31.475115 +2021,7,20,1,New South Wales,150.623335,-34.383326 +2020,9,16,1,New South Wales,150.798877,-33.484283 +2024,2,10,1,New South Wales,153.090341,-29.480588 +2021,7,3,1,New South Wales,150.514162,-34.446399 +2021,5,6,1,New South Wales,150.637302,-34.423779 +2020,8,20,1,New South Wales,153.27327,-28.889411 +2021,10,8,1,New South Wales,152.092381,-28.784217 +2021,4,10,1,New South Wales,150.609264,-34.420746 +2021,5,21,1,New South Wales,150.630965,-34.387288 +2020,2,24,1,New South Wales,153.554571,-28.58454 +2023,9,17,1,New South Wales,153.074309,-28.555194 +2023,1,29,1,New South Wales,153.315573,-28.951212 +2020,2,4,1,New South Wales,152.874801,-31.457385 +2020,8,30,1,New South Wales,152.91584,-31.482126 +2022,12,25,1,New South Wales,153.099426,-30.307389 +2020,5,11,1,New South Wales,153.297816,-28.827692 +2020,9,9,1,New South Wales,153.496076,-28.695179 +2023,8,27,1,New South Wales,150.786073,-33.71231 +2021,10,18,1,New South Wales,152.780121,-31.350774 +2021,2,4,1,New South Wales,153.60724,-28.664312 +2021,5,13,1,New South Wales,150.616609,-34.43489 +2020,7,8,1,New South Wales,153.552129,-28.585012 +2021,7,23,1,New South Wales,150.516918,-34.442975 +2021,4,17,1,New South Wales,150.532441,-34.471255 +2023,12,2,1,New South Wales,152.791628,-31.640364 +2024,4,27,1,New South Wales,149.368325,-33.501247 +2021,6,7,1,New South Wales,150.629731,-34.420649 +2024,2,4,1,New South Wales,153.108119,-29.491002 +2020,9,11,1,New South Wales,150.103132,-33.775559 +2021,5,20,1,New South Wales,150.514619,-34.446021 +2021,3,29,1,New South Wales,150.616367,-34.434588 +2021,11,30,1,New South Wales,151.300556,-30.587778 +2021,6,10,1,New South Wales,150.610367,-34.430531 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2020,6,6,1,New South Wales,150.047763,-33.76085 +2020,4,20,1,New South Wales,152.857153,-31.447385 +2021,4,30,1,New South Wales,150.610347,-34.419018 +2023,5,26,1,New South Wales,152.406107,-31.932222 +2021,1,3,1,New South Wales,153.469339,-28.260576 +2020,4,29,1,New South Wales,153.217453,-28.834132 +2022,8,11,1,New South Wales,150.528528,-34.456526 +2021,5,10,1,New South Wales,150.609226,-34.420565 +2022,3,31,1,New South Wales,153.396299,-29.094796 +2023,3,20,1,New South Wales,152.071786,-32.710657 +2021,7,13,1,New South Wales,150.627263,-34.420961 +2020,10,27,1,New South Wales,153.367603,-28.818638 +2024,2,1,1,New South Wales,153.103677,-29.485552 +2021,5,28,1,New South Wales,150.602521,-34.424887 +2023,5,11,1,New South Wales,153.229863,-28.889491 +2021,10,31,1,New South Wales,152.077144,-32.722397 +2022,11,20,1,New South Wales,152.794854,-30.893434 +2021,5,22,1,New South Wales,150.63116,-34.388094 +2022,11,21,1,New South Wales,152.764422,-30.891124 +2021,5,3,1,New South Wales,150.659532,-34.457591 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2021,6,6,1,New South Wales,150.519454,-34.456586 +2024,4,19,1,New South Wales,152.226191,-31.619955 +2021,6,30,1,New South Wales,150.644191,-34.394215 +2023,8,2,1,New South Wales,150.784915,-33.704889 +2021,7,10,1,New South Wales,150.513072,-34.44717 +2021,6,12,1,New South Wales,150.626602,-34.385445 +2021,3,22,1,New South Wales,150.520259,-34.454015 +2021,6,26,1,New South Wales,150.514452,-34.447244 +2021,3,15,1,New South Wales,150.660167,-34.458235 +2021,2,9,1,New South Wales,153.109546,-29.492795 +2021,5,25,1,New South Wales,150.517379,-34.452027 +2024,9,7,1,New South Wales,150.985794,-34.090362 +2021,6,21,1,New South Wales,150.63922,-34.392695 +2024,1,14,1,New South Wales,153.10814,-29.490255 +2021,5,18,1,New South Wales,150.600325,-34.428612 +2021,5,7,1,New South Wales,150.637356,-34.423771 +2021,4,29,1,New South Wales,150.636247,-34.421802 +2021,11,16,1,New South Wales,152.825478,-29.811319 +2023,11,4,1,New South Wales,150.98509,-34.096265 +2021,6,1,1,New South Wales,150.525066,-34.453409 +2023,9,6,1,New South Wales,153.109776,-29.490222 +2020,12,29,1,New South Wales,152.060759,-32.711087 +2020,9,10,1,New South Wales,153.521789,-28.683592 +2020,3,10,1,New South Wales,152.884859,-31.429377 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2021,4,30,1,New South Wales,150.637831,-34.488809 +2024,6,8,1,New South Wales,150.204506,-34.622911 +2023,4,12,1,New South Wales,152.926324,-31.476079 +2022,11,3,1,New South Wales,152.809901,-31.654877 +2022,11,21,1,New South Wales,152.794854,-30.893434 +2021,2,7,1,New South Wales,150.89266,-33.991958 +2023,6,13,1,New South Wales,151.081243,-29.744744 +2021,8,11,1,New South Wales,150.52205,-34.465942 +2023,1,29,1,New South Wales,153.610351,-28.658739 +2020,9,2,1,New South Wales,152.026121,-32.729398 +2022,7,30,1,New South Wales,153.313061,-28.816234 +2022,11,14,1,New South Wales,153.316807,-28.817043 +2020,5,3,1,New South Wales,153.147631,-29.067039 +2024,2,17,1,New South Wales,152.925124,-31.453367 +2021,10,3,1,New South Wales,152.890613,-31.444781 +2021,7,23,1,New South Wales,150.516759,-34.448715 +2021,4,20,1,New South Wales,150.610291,-34.41908 +2022,11,4,1,New South Wales,152.816767,-31.654173 +2021,6,9,1,New South Wales,150.610715,-34.430565 +2021,5,27,1,New South Wales,150.632184,-34.38842 +2021,6,4,1,New South Wales,150.63083,-34.420616 +2020,11,5,1,New South Wales,149.984303,-36.560469 +2020,8,19,1,New South Wales,151.003682,-34.006923 +2021,7,19,1,New South Wales,150.623357,-34.383291 +2024,1,22,1,New South Wales,152.412383,-31.933158 +2020,11,25,1,New South Wales,153.109422,-29.490511 +2024,1,16,1,New South Wales,152.724564,-30.934538 +2024,2,15,1,New South Wales,152.063752,-32.706553 +2023,7,9,1,New South Wales,152.785604,-31.631781 +2023,7,16,1,New South Wales,153.289364,-29.042938 +2020,8,16,1,New South Wales,152.986734,-29.031105 +2020,12,4,1,New South Wales,152.902945,-31.441249 +2023,11,1,1,New South Wales,152.682237,-31.507705 +2023,6,7,1,New South Wales,150.84,-34.13748 +2021,7,19,1,New South Wales,150.516337,-34.448283 +2021,4,26,1,New South Wales,150.63588,-34.419406 +2021,10,18,1,New South Wales,152.077177,-32.725789 +2020,11,17,1,New South Wales,150.823266,-34.149678 +2021,9,12,1,New South Wales,153.103988,-29.48452 +2022,4,3,1,New South Wales,152.851078,-31.55526 +2021,3,6,1,New South Wales,150.515048,-34.459084 +2021,9,27,1,New South Wales,152.107655,-31.419488 +2023,12,12,1,New South Wales,149.298072,-36.181236 +2020,8,27,1,New South Wales,149.553286,-33.556303 +2021,5,3,1,New South Wales,150.604963,-34.437665 +2020,10,2,1,New South Wales,150.837478,-34.078737 +2022,12,13,1,New South Wales,152.078075,-32.72797 +2022,6,3,1,New South Wales,152.904981,-31.437349 +2023,10,24,1,New South Wales,152.986144,-30.398276 +2022,3,13,1,New South Wales,153.110517,-29.49018 +2022,3,12,1,New South Wales,152.171924,-32.662551 +2021,6,4,1,New South Wales,150.630376,-34.420913 +2021,11,18,1,New South Wales,152.91088,-31.431803 +2024,1,15,1,New South Wales,152.896382,-31.435137 +2023,9,18,1,New South Wales,152.928901,-31.447295 +2021,5,9,1,New South Wales,150.616381,-34.436004 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2021,6,30,1,New South Wales,150.628757,-34.389256 +2021,4,25,1,New South Wales,150.638304,-34.485924 +2021,9,3,1,New South Wales,153.026376,-30.410794 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2021,6,13,1,New South Wales,150.604662,-34.438678 +2022,2,25,1,New South Wales,153.399378,-28.260511 +2022,1,18,1,New South Wales,153.10114,-29.489932 +2021,4,20,1,New South Wales,152.863579,-31.299381 +2021,4,26,1,New South Wales,150.637472,-34.488036 +2021,5,4,1,New South Wales,150.604081,-34.438071 +2021,3,22,1,New South Wales,150.534559,-34.462183 +2022,8,25,1,New South Wales,153.507271,-28.690609 +2021,4,14,1,New South Wales,153.293195,-28.864615 +2021,6,26,1,New South Wales,150.514128,-34.447174 +2020,12,6,1,New South Wales,153.607389,-28.687767 +2020,12,9,1,New South Wales,149.972032,-36.288695 +2021,5,12,1,New South Wales,150.522031,-34.465482 +2024,4,10,1,New South Wales,151.481451,-31.470887 +2021,5,27,1,New South Wales,150.639754,-34.393426 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2023,1,2,1,New South Wales,153.03887,-28.8445 +2021,11,21,1,New South Wales,152.077229,-32.722465 +2020,3,25,1,New South Wales,150.121806,-35.06333 +2024,1,9,1,New South Wales,153.108092,-29.490259 +2021,7,1,1,New South Wales,153.45436,-28.669384 +2022,7,9,1,New South Wales,153.104197,-29.483203 +2021,11,30,1,New South Wales,152.115767,-32.724028 +2022,7,29,1,New South Wales,152.895436,-31.447884 +2023,9,6,1,New South Wales,153.110527,-29.49017 +2021,5,8,1,New South Wales,152.96702,-28.342929 +2021,4,20,1,New South Wales,150.61029,-34.419098 +2024,1,24,1,New South Wales,152.922045,-31.451678 +2023,11,5,1,New South Wales,152.377586,-31.917085 +2022,3,10,1,New South Wales,152.374123,-31.916245 +2022,11,12,1,New South Wales,152.92906,-31.450157 +2023,11,26,1,New South Wales,149.747024,-34.982344 +2021,11,16,1,New South Wales,150.617274,-34.439808 +2020,11,29,1,New South Wales,149.980514,-36.435679 +2024,2,18,1,New South Wales,151.772168,-32.586484 +2021,7,2,1,New South Wales,150.513106,-34.447153 +2024,1,16,1,New South Wales,152.394987,-31.944776 +2020,3,2,1,New South Wales,152.907862,-31.48887 +2021,4,16,1,New South Wales,150.615215,-34.431104 +2022,9,5,1,New South Wales,150.486641,-34.452853 +2021,6,24,1,New South Wales,150.657378,-34.45599 +2020,11,6,1,New South Wales,153.103495,-29.487322 +2020,10,,1,New South Wales,150.545289,-34.514293 +2020,10,10,1,New South Wales,152.981126,-30.437303 +2021,1,12,1,New South Wales,152.944433,-29.346563 +2021,6,23,1,New South Wales,150.60142,-34.417707 +2022,8,12,1,New South Wales,151.723591,-32.664011 +2021,3,15,1,New South Wales,150.635209,-34.487974 +2020,10,16,1,New South Wales,152.76081,-31.713817 +2021,9,3,1,New South Wales,153.101354,-29.489904 +2022,7,25,1,New South Wales,152.990735,-30.180461 +2020,2,5,1,New South Wales,151.733337,-32.246573 +2024,9,5,1,New South Wales,152.188489,-31.575228 +2020,6,18,1,New South Wales,152.908066,-31.470576 +2021,5,3,1,New South Wales,150.615158,-34.435385 +2021,6,6,1,New South Wales,150.655487,-33.522609 +2021,6,22,1,New South Wales,150.514096,-34.446416 +2021,10,28,1,New South Wales,150.813678,-34.104761 +2021,9,20,1,New South Wales,150.614812,-34.450993 +2021,7,8,1,New South Wales,150.518281,-34.448791 +2022,4,11,1,New South Wales,152.966338,-31.254088 +2024,6,25,1,New South Wales,152.084753,-32.745927 +2020,9,17,1,New South Wales,152.922243,-31.448166 +2021,10,17,1,New South Wales,153.004171,-28.931463 +2021,8,12,1,New South Wales,149.311159,-36.108498 +2022,11,23,1,New South Wales,153.224127,-28.476852 +2022,12,20,1,New South Wales,153.108113,-29.490241 +2021,3,9,1,New South Wales,150.61281,-33.44793 +2020,6,28,1,New South Wales,153.103744,-29.485594 +2021,3,16,1,New South Wales,150.517305,-34.451593 +2021,7,18,1,New South Wales,150.51447,-34.443331 +2023,2,8,1,New South Wales,152.926654,-31.464065 +2023,4,14,1,New South Wales,150.656179,-33.58539 +2021,9,18,1,New South Wales,150.523527,-34.447635 +2023,7,16,1,New South Wales,152.794013,-31.642007 +2024,9,5,1,New South Wales,152.314015,-32.331635 +2020,10,11,1,New South Wales,152.07177,-32.713518 +2021,4,18,1,New South Wales,150.629741,-34.394441 +2023,9,7,1,New South Wales,152.198215,-31.412421 +2021,9,14,1,New South Wales,152.923301,-31.445315 +2021,7,6,1,New South Wales,150.604823,-34.418919 +2021,6,9,1,New South Wales,150.605761,-34.437536 +2021,5,2,1,New South Wales,150.517351,-34.446365 +2021,6,4,1,New South Wales,152.895654,-31.435753 +2023,12,6,1,New South Wales,153.39275,-28.959102 +2021,6,3,1,New South Wales,150.604138,-34.437964 +2023,12,31,1,New South Wales,153.107421,-29.490068 +2021,6,5,1,New South Wales,150.630555,-34.420746 +2022,4,6,1,New South Wales,152.064158,-32.709016 +2020,4,7,1,New South Wales,151.86688,-32.488185 +2020,5,28,1,New South Wales,149.360515,-36.043897 +2021,11,15,1,New South Wales,152.066029,-32.71021 +2023,11,1,1,New South Wales,152.194095,-32.224416 +2024,2,17,1,New South Wales,152.909325,-31.471614 +2021,7,6,1,New South Wales,150.64212,-34.397078 +2020,10,29,1,New South Wales,149.949397,-36.554597 +2022,4,10,1,New South Wales,152.915425,-31.445894 +2023,7,14,1,New South Wales,152.371872,-31.921004 +2021,5,27,1,New South Wales,150.632345,-34.388117 +2021,6,8,1,New South Wales,150.06137,-33.776734 +2021,4,28,1,New South Wales,150.616895,-34.429396 +2021,5,22,1,New South Wales,150.617172,-34.433837 +2020,8,29,1,New South Wales,152.900097,-29.631513 +2021,4,23,1,New South Wales,150.631008,-34.388488 +2023,10,21,1,New South Wales,152.888297,-31.444794 +2021,4,22,1,New South Wales,150.63089,-34.387656 +2022,9,10,1,New South Wales,153.34886,-28.809095 +2020,8,17,1,New South Wales,150.82369,-34.141271 +2021,5,3,1,New South Wales,150.63348,-34.418467 +2020,9,30,1,New South Wales,153.314983,-28.949201 +2021,5,20,1,New South Wales,150.51741,-34.452109 +2020,4,28,1,New South Wales,153.443622,-28.625849 +2020,9,23,1,New South Wales,152.721054,-31.340843 +2022,8,31,1,New South Wales,153.314983,-28.949201 +2021,8,29,1,New South Wales,150.517927,-34.437569 +2021,7,21,1,New South Wales,153.292109,-28.649467 +2021,6,24,1,New South Wales,150.625148,-34.386111 +2020,4,20,1,New South Wales,152.891395,-31.477897 +2020,1,9,1,New South Wales,153.336688,-28.868027 +2021,3,31,1,New South Wales,153.314983,-28.949201 +2021,4,24,1,New South Wales,150.63826,-34.485932 +2021,2,22,1,New South Wales,153.104171,-29.481424 +2022,8,18,1,New South Wales,151.110282,-29.762752 +2023,11,5,1,New South Wales,153.109793,-29.490208 +2021,6,23,1,New South Wales,150.513794,-34.446338 +2022,8,6,1,New South Wales,152.78528,-31.629699 +2021,4,26,1,New South Wales,150.637364,-34.48798 +2021,11,28,1,New South Wales,152.885087,-31.428965 +2022,9,5,1,New South Wales,150.847722,-34.056 +2020,11,18,1,New South Wales,153.369052,-28.953149 +2020,9,12,1,New South Wales,150.10822,-31.15847 +2023,9,30,1,New South Wales,153.164587,-28.660285 +2023,4,19,1,New South Wales,153.320408,-28.845006 +2023,11,4,1,New South Wales,153.094949,-29.489003 +2020,10,19,1,New South Wales,153.303174,-28.827996 +2021,11,23,1,New South Wales,152.992896,-30.380565 +2021,10,7,1,New South Wales,152.832,-31.26349 +2022,3,3,1,New South Wales,152.901577,-31.441884 +2022,3,30,1,New South Wales,153.052931,-28.4464 +2023,9,21,1,New South Wales,152.609383,-30.342971 +2021,8,10,1,New South Wales,150.604726,-34.427292 +2023,11,15,1,New South Wales,152.915981,-30.275567 +2021,7,26,1,New South Wales,149.818352,-32.38639 +2021,6,29,1,New South Wales,153.166228,-29.430623 +2022,11,22,1,New South Wales,152.764422,-30.891124 +2023,11,20,1,New South Wales,153.482892,-28.246903 +2021,5,13,1,New South Wales,150.518612,-34.454874 +2023,1,26,1,New South Wales,153.10931,-29.490735 +2022,11,19,1,New South Wales,152.788781,-30.895519 +2021,4,19,1,New South Wales,150.61678,-34.430386 +2021,7,10,1,New South Wales,150.602021,-34.412301 +2021,7,5,1,New South Wales,153.104004,-29.485123 +2024,3,6,1,New South Wales,151.849654,-32.7884 +2021,8,5,1,New South Wales,153.60237,-28.69032 +2021,7,26,1,New South Wales,150.522414,-34.465805 +2020,5,21,1,New South Wales,153.545455,-28.731653 +2020,10,11,1,New South Wales,152.846008,-30.598083 +2020,1,22,1,New South Wales,152.926704,-31.463091 +2021,6,24,1,New South Wales,150.601474,-34.417717 +2023,10,30,1,New South Wales,152.187392,-32.232904 +2024,2,10,1,New South Wales,152.403946,-31.996932 +2021,5,10,1,New South Wales,150.517458,-34.44753 +2020,10,17,1,New South Wales,152.924659,-31.456239 +2021,3,7,1,New South Wales,150.524874,-34.453261 +2021,6,19,1,New South Wales,150.51917,-34.459934 +2020,1,21,1,New South Wales,151.96116,-32.01839 +2020,9,20,1,New South Wales,150.12038,-31.1112 +2021,12,1,1,New South Wales,150.813678,-34.104761 +2020,5,8,1,New South Wales,153.312357,-28.815323 +2022,4,20,1,New South Wales,152.929001,-31.45017 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2021,5,1,1,New South Wales,150.617498,-34.39972 +2024,1,10,1,New South Wales,150.786166,-33.705991 +2021,4,21,1,New South Wales,150.610213,-34.419124 +2020,9,18,1,New South Wales,153.548387,-28.556838 +2020,2,3,1,New South Wales,152.928736,-31.466442 +2021,6,14,1,New South Wales,150.641688,-34.394645 +2021,2,24,1,New South Wales,150.635119,-34.484222 +2023,11,14,1,New South Wales,152.699675,-30.290301 +2023,7,31,1,New South Wales,152.911398,-31.44142 +2020,10,11,1,New South Wales,149.955028,-36.650407 +2021,6,13,1,New South Wales,150.604627,-34.43837 +2021,4,8,1,New South Wales,150.60512,-34.429878 +2021,4,28,1,New South Wales,150.63528,-34.420215 +2023,11,17,1,New South Wales,150.784781,-33.708275 +2020,11,30,1,New South Wales,153.314983,-28.949201 +2020,10,19,1,New South Wales,152.955746,-29.236904 +2022,1,29,1,New South Wales,153.101488,-29.489937 +2021,8,1,1,New South Wales,150.624482,-34.388127 +2021,5,21,1,New South Wales,150.52946,-34.471204 +2022,7,31,1,New South Wales,153.314983,-28.949201 +2021,8,13,1,New South Wales,150.518582,-34.43971 +2020,5,13,1,New South Wales,153.217711,-28.830222 +2023,5,31,1,New South Wales,153.314983,-28.949201 +2023,6,5,1,New South Wales,153.103645,-29.485678 +2021,5,3,1,New South Wales,150.615799,-34.435028 +2022,9,25,1,New South Wales,152.967002,-28.345422 +2021,4,23,1,New South Wales,150.635908,-34.420344 +2024,7,22,1,New South Wales,152.414579,-31.933849 +2021,5,17,1,New South Wales,152.15231,-31.456465 +2021,5,31,1,New South Wales,150.52388,-34.464068 +2023,6,6,1,New South Wales,151.79094,-32.654299 +2020,10,20,1,New South Wales,153.296004,-28.818579 +2021,8,20,1,New South Wales,153.10078,-29.48996 +2023,1,9,1,New South Wales,152.903576,-31.441724 +2023,12,6,2,New South Wales,153.42898,-28.972323 +2023,1,28,1,New South Wales,150.846601,-34.055784 +2020,3,24,1,New South Wales,150.087296,-31.101711 +2021,4,29,1,New South Wales,150.520052,-34.467624 +2021,4,9,1,New South Wales,150.517873,-34.444906 +2020,10,15,1,Queensland,153.191476,-27.652236 +2023,10,20,1,New South Wales,150.878065,-33.252204 +2023,5,2,1,New South Wales,152.907416,-31.44561 +2023,12,19,1,New South Wales,152.699633,-30.290446 +2021,5,5,1,New South Wales,150.609402,-34.418963 +2022,10,19,1,New South Wales,152.914172,-31.458481 +2021,11,2,1,New South Wales,152.919133,-31.471961 +2020,10,15,1,New South Wales,152.91471,-31.43089 +2021,11,9,1,New South Wales,152.059973,-32.709087 +2021,4,22,1,New South Wales,150.637395,-34.422771 +2021,7,16,1,New South Wales,150.605194,-34.439103 +2023,2,25,1,New South Wales,153.096204,-29.485225 +2021,4,23,1,New South Wales,150.605091,-34.43316 +2021,6,2,1,New South Wales,150.603669,-34.437621 +2020,10,,1,New South Wales,150.52627,-34.427219 +2023,10,6,1,New South Wales,149.303667,-31.148381 +2023,11,14,1,New South Wales,152.927087,-31.449715 +2021,6,9,1,New South Wales,150.523075,-34.46626 +2021,5,3,1,New South Wales,150.637279,-34.423815 +2020,6,16,1,New South Wales,152.923461,-31.478974 +2024,8,19,1,New South Wales,151.577868,-32.999699 +2022,11,16,1,New South Wales,153.577766,-28.866595 +2023,9,24,1,New South Wales,153.629579,-28.637434 +2021,4,23,1,New South Wales,150.514552,-34.444992 +2020,10,12,1,New South Wales,149.887989,-36.587028 +2021,6,21,1,New South Wales,153.409445,-28.642979 +2021,4,24,1,New South Wales,150.626911,-34.396459 +2023,2,11,1,New South Wales,151.687532,-32.672298 +2021,7,11,1,New South Wales,150.520938,-34.464189 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2021,7,21,1,New South Wales,153.52954,-28.54593 +2022,4,23,1,New South Wales,153.110511,-29.490203 +2020,9,,1,New South Wales,153.188,-28.523 +2021,6,18,1,New South Wales,153.522273,-28.358392 +2021,7,21,1,New South Wales,153.52954,-28.54593 +2022,7,15,1,New South Wales,153.116477,-28.620707 +2020,9,20,1,New South Wales,153.10343,-29.488555 +2020,3,2,1,New South Wales,153.556747,-28.400128 +2021,5,4,1,New South Wales,150.522936,-34.452564 +2023,6,15,1,New South Wales,149.586298,-33.50023 +2024,4,24,1,New South Wales,150.99372,-33.98015 +2020,10,25,1,New South Wales,149.945227,-36.57753 +2022,8,26,1,New South Wales,153.105227,-29.489741 +2023,11,3,1,New South Wales,152.927071,-31.459712 +2022,9,30,1,New South Wales,152.90373,-30.239 +2021,6,9,1,New South Wales,150.514908,-34.454636 +2022,3,2,1,New South Wales,152.300422,-31.948252 +2021,8,10,1,New South Wales,152.441107,-31.816334 +2022,8,26,1,New South Wales,152.661159,-30.178769 +2021,5,21,1,New South Wales,150.639024,-34.493205 +2022,6,18,1,New South Wales,151.708481,-30.39916 +2022,9,9,1,New South Wales,152.914814,-31.459637 +2021,7,7,1,New South Wales,150.514333,-34.446511 +2021,7,8,1,New South Wales,150.627455,-34.421497 +2021,5,24,1,New South Wales,150.605001,-34.432518 +2022,2,2,1,New South Wales,152.875695,-29.679836 +2021,8,14,1,New South Wales,150.52026,-34.465744 +2024,3,7,1,New South Wales,152.373959,-31.915566 +2021,4,26,1,New South Wales,150.625843,-34.388451 +2021,4,5,1,New South Wales,150.533675,-34.478889 +2024,1,28,1,New South Wales,152.91969,-31.46913 +2021,6,27,1,New South Wales,150.522157,-34.464168 +2021,5,8,1,New South Wales,150.622004,-34.398059 +2021,3,8,1,New South Wales,150.615053,-34.432588 +2023,7,25,1,New South Wales,150.785139,-33.703553 +2021,3,15,1,New South Wales,150.525409,-34.459835 +2023,11,8,1,New South Wales,152.914755,-31.428986 +2020,2,17,1,New South Wales,152.924873,-31.44384 +2023,11,16,1,New South Wales,152.796696,-31.645619 +2021,4,22,1,New South Wales,150.608699,-34.45356 +2023,11,28,1,New South Wales,152.865888,-30.405003 +2023,6,14,1,New South Wales,152.908106,-31.466926 +2022,8,11,1,New South Wales,152.105266,-32.761256 +2020,11,1,1,New South Wales,153.461306,-28.365769 +2020,8,13,1,New South Wales,153.563952,-28.38915 +2022,1,10,1,New South Wales,151.782221,-32.611134 +2021,5,1,1,New South Wales,150.624242,-34.388916 +2020,8,13,1,New South Wales,153.293429,-28.864665 +2021,6,25,1,New South Wales,150.658308,-34.455819 +2020,10,24,1,New South Wales,149.945227,-36.57753 +2021,7,3,1,New South Wales,150.523466,-34.466304 +2020,1,4,1,New South Wales,151.715263,-32.669349 +2020,11,2,1,New South Wales,149.958519,-36.587122 +2020,10,24,1,New South Wales,149.945227,-36.57753 +2021,12,30,1,New South Wales,152.914214,-31.452721 +2020,10,29,1,New South Wales,149.958519,-36.587122 +2021,5,17,1,New South Wales,150.523943,-34.46379 +2020,12,2,1,New South Wales,151.659955,-32.659978 +2021,5,9,1,New South Wales,150.606736,-34.438051 +2021,7,26,1,New South Wales,150.625487,-34.386055 +2020,4,20,1,New South Wales,152.444789,-28.46907 +2023,11,5,1,New South Wales,152.901831,-31.447277 +2022,11,3,1,New South Wales,153.401541,-29.040372 +2023,1,21,1,New South Wales,150.790376,-34.202477 +2020,11,2,1,New South Wales,149.958519,-36.587122 +2023,2,3,1,New South Wales,153.593426,-28.711692 +2020,11,,1,New South Wales,152.822341,-31.562884 +2020,11,27,1,New South Wales,153.018994,-30.365294 +2020,1,17,1,New South Wales,151.209269,-33.705439 +2021,3,29,1,New South Wales,152.750964,-28.961088 +2020,7,3,1,New South Wales,153.590336,-28.660527 +2024,1,10,1,New South Wales,153.107464,-29.490114 +2021,3,15,1,New South Wales,150.520796,-34.467134 +2022,1,4,1,New South Wales,153.101306,-29.489988 +2021,6,1,1,New South Wales,150.630388,-34.42086 +2021,4,29,1,New South Wales,150.616521,-34.398881 +2023,5,19,1,New South Wales,149.552103,-33.491237 +2021,9,1,1,New South Wales,150.607912,-34.453671 +2021,3,29,1,New South Wales,150.517229,-34.451591 +2021,10,18,1,New South Wales,152.879347,-31.458729 +2022,10,11,1,New South Wales,146.532263,-34.744251 +2022,11,29,1,New South Wales,153.298251,-28.82038 +2021,11,11,1,New South Wales,152.351609,-32.232731 +2021,7,2,1,New South Wales,150.640554,-34.398238 +2020,11,,1,New South Wales,150.644174,-34.548357 +2020,5,8,1,New South Wales,152.061841,-32.293912 +2021,5,24,1,New South Wales,150.596096,-34.428881 +2024,1,7,1,New South Wales,152.912794,-31.45463 +2022,1,27,1,New South Wales,153.101188,-29.489914 +2023,11,19,1,New South Wales,152.897335,-31.474953 +2021,5,25,1,New South Wales,150.526765,-34.469599 +2020,11,19,1,New South Wales,149.989088,-36.503585 +2022,4,28,1,New South Wales,152.92706,-31.463296 +2021,9,20,1,New South Wales,153.103736,-29.485805 +2021,4,29,1,New South Wales,150.605876,-34.454469 +2023,11,3,1,New South Wales,152.926682,-31.472034 +2020,12,12,1,New South Wales,151.201931,-33.550659 +2021,6,11,1,New South Wales,150.62718,-34.385799 +2022,12,27,1,New South Wales,146.594919,-34.773396 +2022,4,14,1,New South Wales,153.110538,-29.489965 +2023,4,20,1,New South Wales,149.938839,-36.568285 +2022,8,28,1,New South Wales,153.111016,-29.487201 +2021,2,1,1,New South Wales,153.273816,-28.931667 +2023,7,13,1,New South Wales,153.109744,-29.490184 +2022,10,5,1,New South Wales,153.04413,-30.42899 +2021,4,21,1,New South Wales,150.614383,-34.428978 +2021,5,12,1,New South Wales,150.524398,-34.466422 +2022,10,7,1,New South Wales,150.796544,-34.119269 +2023,10,31,1,New South Wales,150.47857,-34.4866 +2023,12,1,1,New South Wales,152.801762,-30.324995 +2021,4,27,1,New South Wales,150.637325,-34.488204 +2023,9,25,1,New South Wales,150.644372,-34.314397 +2022,6,10,1,New South Wales,153.103929,-29.489573 +2023,12,29,1,New South Wales,150.824721,-34.151409 +2023,4,24,1,New South Wales,149.295,-36.058 +2023,7,14,1,New South Wales,150.787865,-33.703312 +2020,8,18,1,New South Wales,153.104176,-29.480915 +2020,1,13,1,New South Wales,151.9746,-32.47224 +2020,10,30,1,New South Wales,149.934245,-36.578531 +2021,7,23,1,New South Wales,150.521632,-34.465726 +2023,6,19,1,New South Wales,153.516485,-28.239324 +2023,10,29,1,New South Wales,152.926675,-31.459654 +2022,1,4,1,New South Wales,150.961299,-34.103425 +2020,11,,1,New South Wales,150.556893,-34.363394 +2020,,,1,New South Wales,153.432697,-28.957716 +2021,6,21,1,New South Wales,150.519642,-34.46125 +2021,3,7,1,New South Wales,150.603032,-34.437077 +2022,1,26,1,New South Wales,150.618793,-34.440721 +2021,10,30,1,New South Wales,152.864758,-29.630516 +2021,9,4,1,New South Wales,150.514861,-34.441897 +2024,1,4,1,New South Wales,149.345233,-36.160578 +2021,6,21,1,New South Wales,150.628002,-34.420994 +2022,9,8,1,New South Wales,152.791716,-31.126306 +2023,9,1,1,New South Wales,150.21104,-34.62353 +2021,4,26,1,New South Wales,150.609511,-34.418948 +2021,5,2,1,New South Wales,153.108226,-29.490311 +2023,9,11,1,New South Wales,152.91631,-31.194907 +2022,5,22,1,New South Wales,150.277813,-28.718685 +2020,7,29,1,New South Wales,153.403914,-28.26064 +2021,11,19,1,New South Wales,153.05707,-30.44826 +2021,8,13,1,New South Wales,150.521329,-34.464936 +2021,6,19,1,New South Wales,150.658511,-34.454804 +2021,5,30,1,New South Wales,150.638759,-34.491423 +2021,10,22,1,New South Wales,153.108151,-29.490605 +2023,11,4,1,New South Wales,153.096204,-29.485296 +2020,6,27,1,New South Wales,152.112115,-32.738157 +2022,12,14,1,New South Wales,153.092783,-29.383562 +2021,9,25,1,New South Wales,153.395229,-28.275319 +2021,9,13,1,New South Wales,150.515574,-34.439135 +2021,4,24,1,New South Wales,150.637822,-34.485662 +2022,2,,1,New South Wales,151.071543,-29.425825 +2021,6,5,1,New South Wales,150.519043,-34.447292 +2021,2,14,1,New South Wales,150.786775,-34.117194 +2021,7,18,1,New South Wales,150.516337,-34.447904 +2021,5,13,1,New South Wales,150.633252,-34.417697 +2024,1,28,1,New South Wales,153.103859,-29.489591 +2021,3,15,1,New South Wales,153.107416,-29.49011 +2023,8,1,1,New South Wales,153.071736,-30.887326 +2023,10,15,1,New South Wales,152.450455,-31.914194 +2021,8,6,1,New South Wales,150.644246,-34.398066 +2020,3,8,1,New South Wales,152.867846,-29.667401 +2022,9,24,1,New South Wales,152.921976,-31.454908 +2020,10,31,1,New South Wales,152.08418,-32.72557 +2021,4,22,1,New South Wales,150.605025,-34.423286 +2021,6,6,1,New South Wales,150.609157,-34.434447 +2021,6,24,1,New South Wales,150.625164,-34.386707 +2022,2,3,1,New South Wales,150.96084,-34.100415 +2021,7,15,1,New South Wales,153.563451,-28.390181 +2021,5,13,1,New South Wales,150.60915,-34.420572 +2024,1,31,1,New South Wales,153.20438,-28.827062 +2020,10,18,1,New South Wales,152.076895,-32.722543 +2020,10,23,1,New South Wales,152.910679,-31.475075 +2023,4,4,1,New South Wales,149.951303,-36.599554 +2023,5,23,1,New South Wales,150.783933,-33.717563 +2021,6,13,1,New South Wales,150.630076,-34.420736 +2023,9,6,1,New South Wales,153.321914,-28.823981 +2020,11,19,1,New South Wales,149.966791,-36.502277 +2021,1,25,1,New South Wales,153.419288,-28.872605 +2021,3,18,1,New South Wales,150.522448,-34.454699 +2023,5,23,1,New South Wales,152.786204,-31.631915 +2021,7,21,1,New South Wales,152.855893,-29.316805 +2021,7,5,1,New South Wales,149.62228,-33.543308 +2023,8,24,1,New South Wales,152.187169,-32.240856 +2021,5,23,1,New South Wales,150.605532,-34.432222 +2021,6,10,1,New South Wales,150.5255,-34.458602 +2023,2,24,1,New South Wales,149.27087,-36.29988 +2021,9,7,1,New South Wales,150.59825,-34.453229 +2021,5,18,1,New South Wales,150.600215,-34.428664 +2021,6,6,1,New South Wales,150.518763,-34.447196 +2021,6,8,1,New South Wales,150.524847,-34.465251 +2020,11,4,1,New South Wales,153.334493,-28.813462 +2022,1,8,1,New South Wales,150.813678,-34.104761 +2021,6,6,1,New South Wales,150.607394,-34.450839 +2023,11,1,1,New South Wales,152.782809,-31.484692 +2021,2,10,1,New South Wales,152.077653,-32.739136 +2022,3,18,1,New South Wales,153.36019,-28.794203 +2020,10,14,1,New South Wales,152.01582,-32.72376 +2020,3,11,1,New South Wales,153.319916,-28.846402 +2020,9,27,1,New South Wales,153.468842,-28.5583 +2021,11,2,1,New South Wales,153.010861,-30.417681 +2021,5,12,1,New South Wales,150.60429,-34.438382 +2020,10,20,1,New South Wales,153.277965,-28.8186 +2020,10,10,1,New South Wales,149.955028,-36.650407 +2021,9,13,1,New South Wales,150.859396,-34.051222 +2020,4,20,1,New South Wales,152.849049,-31.453574 +2024,1,12,1,New South Wales,153.10939,-29.490455 +2021,5,17,1,New South Wales,150.632796,-34.41959 +2021,5,24,1,New South Wales,150.639177,-34.392676 +2022,7,14,1,New South Wales,153.01413,-28.421165 +2023,9,15,1,New South Wales,152.3933,-31.903028 +2024,7,7,1,New South Wales,151.021577,-29.743827 +2021,5,4,1,New South Wales,150.608342,-34.456528 +2020,10,15,1,New South Wales,153.10946,-29.490465 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2021,5,7,1,New South Wales,150.609178,-34.455453 +2021,7,7,1,New South Wales,150.642152,-34.396339 +2021,6,17,1,New South Wales,153.6062,-28.66747 +2021,10,6,1,New South Wales,153.092347,-29.488149 +2021,5,3,1,New South Wales,150.626698,-34.38936 +2023,7,27,1,New South Wales,153.301111,-28.824359 +2021,3,29,1,New South Wales,153.563931,-28.388052 +2022,12,30,1,New South Wales,152.063481,-32.705566 +2020,8,26,1,New South Wales,153.427208,-28.229862 +2021,4,25,1,New South Wales,150.615125,-34.435402 +2022,6,14,1,New South Wales,151.972865,-32.35706 +2021,7,4,1,New South Wales,150.52559,-34.465518 +2023,9,27,1,New South Wales,153.591776,-28.734759 +2020,4,6,1,New South Wales,153.433757,-28.732156 +2022,10,11,1,New South Wales,152.926159,-31.470586 +2023,10,25,1,New South Wales,152.907196,-31.44446 +2020,8,14,1,New South Wales,153.281772,-28.830931 +2021,5,20,1,New South Wales,152.32312,-28.59278 +2021,5,17,1,New South Wales,150.516467,-34.450124 +2021,6,14,1,New South Wales,150.52412,-34.452624 +2020,10,30,1,New South Wales,149.92265,-36.572354 +2020,11,,1,New South Wales,150.514777,-34.456674 +2023,9,18,1,New South Wales,150.786774,-33.707842 +2021,5,3,1,New South Wales,150.616013,-34.436312 +2021,7,6,1,New South Wales,153.109594,-29.490395 +2023,4,23,1,New South Wales,153.108044,-29.49039 +2021,5,26,1,New South Wales,150.516621,-34.442717 +2021,11,2,1,New South Wales,150.808987,-34.208693 +2022,6,1,1,New South Wales,152.384342,-32.10128 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2020,8,21,1,New South Wales,153.446164,-28.588399 +2022,11,28,1,New South Wales,153.040115,-28.54473 +2021,5,17,1,New South Wales,150.629856,-34.390007 +2020,11,18,1,New South Wales,152.818011,-31.263827 +2021,9,9,1,New South Wales,152.783572,-30.191203 +2023,2,15,1,New South Wales,153.184802,-28.88936 +2021,10,20,1,New South Wales,151.842163,-32.029955 +2020,4,14,1,New South Wales,152.924469,-31.444037 +2023,2,19,1,New South Wales,153.27916,-28.87382 +2021,5,5,1,New South Wales,153.378429,-28.850227 +2024,3,11,1,New South Wales,150.784289,-33.710679 +2022,9,4,1,New South Wales,153.109873,-29.492767 +2023,9,20,1,New South Wales,152.825149,-31.649272 +2021,4,16,1,New South Wales,150.518338,-34.443176 +2021,5,21,1,New South Wales,150.633165,-34.418443 +2021,3,16,1,New South Wales,153.103774,-29.48559 +2021,9,7,1,New South Wales,150.513157,-34.447244 +2022,6,19,1,New South Wales,152.787075,-31.629368 +2023,6,8,1,New South Wales,150.80876,-34.11556 +2020,11,10,1,New South Wales,152.300422,-31.948252 +2021,12,31,1,New South Wales,153.101236,-29.48982 +2020,3,19,1,New South Wales,153.363468,-29.387549 +2020,11,12,1,New South Wales,149.995573,-36.572611 +2021,5,12,1,New South Wales,150.51682,-34.448509 +2022,11,7,1,New South Wales,152.896223,-31.442885 +2021,4,11,1,New South Wales,152.916037,-31.481883 +2021,6,11,1,New South Wales,150.604307,-34.438923 +2020,3,12,1,New South Wales,151.991124,-32.720894 +2021,3,31,1,New South Wales,150.515396,-34.446992 +2021,8,17,1,New South Wales,152.378992,-31.920145 +2023,11,29,1,New South Wales,150.784153,-33.717419 +2021,6,23,1,New South Wales,150.600124,-34.451228 +2023,5,28,1,New South Wales,153.562188,-28.38399 +2021,5,19,1,New South Wales,150.613753,-34.430841 +2021,2,26,1,New South Wales,150.517024,-34.446773 +2022,10,2,1,New South Wales,153.344753,-28.74829 +2021,3,7,1,New South Wales,152.412714,-31.932238 +2021,5,10,1,New South Wales,150.518431,-34.451805 +2023,5,20,1,New South Wales,153.103463,-29.485599 +2022,9,19,1,New South Wales,153.088652,-30.326988 +2021,5,28,1,New South Wales,150.60429,-34.437967 +2020,10,29,1,New South Wales,149.984303,-36.560469 +2021,5,12,1,New South Wales,150.60437,-34.438996 +2022,9,3,1,New South Wales,152.064139,-32.705776 +2021,1,29,1,New South Wales,153.091613,-29.487812 +2020,8,27,1,New South Wales,152.778519,-31.486714 +2022,3,5,1,New South Wales,150.985108,-34.093124 +2021,11,1,1,New South Wales,152.066307,-32.709746 +2021,9,14,1,New South Wales,150.823287,-34.150217 +2023,4,19,1,New South Wales,151.7782,-32.58805 +2022,11,3,1,New South Wales,151.256355,-33.210524 +2021,6,29,1,New South Wales,150.51315,-34.447136 +2021,4,20,1,New South Wales,150.60468,-34.424686 +2021,4,20,1,New South Wales,150.606647,-34.434687 +2021,4,16,1,New South Wales,150.634948,-34.486022 +2020,1,31,1,New South Wales,152.0527,-32.6278 +2022,12,27,1,New South Wales,146.534785,-34.75678 +2021,11,21,1,New South Wales,150.61551,-34.437934 +2023,6,7,1,New South Wales,150.89035,-34.057941 +2023,9,15,1,New South Wales,152.078464,-32.721216 +2022,4,29,1,New South Wales,152.926482,-31.451825 +2023,10,26,1,New South Wales,152.196402,-32.225666 +2021,4,21,1,New South Wales,150.632983,-34.392863 +2021,4,15,1,New South Wales,150.604435,-34.428314 +2020,8,7,1,New South Wales,151.622262,-32.570265 +2022,6,2,1,New South Wales,153.348488,-28.873812 +2022,10,26,1,New South Wales,152.916034,-31.446169 +2021,6,18,1,New South Wales,150.642369,-34.395586 +2023,10,6,1,New South Wales,153.108146,-29.490227 +2021,5,30,1,New South Wales,150.516055,-34.448232 +2022,8,22,1,New South Wales,150.888867,-34.017438 +2022,11,29,1,New South Wales,152.754102,-30.882465 +2020,10,10,1,New South Wales,150.848206,-34.030191 +2020,1,15,1,New South Wales,152.822526,-31.241046 +2020,10,6,1,New South Wales,153.400598,-28.25783 +2020,1,16,1,New South Wales,152.756187,-31.378519 +2020,12,31,1,New South Wales,152.415901,-31.933404 +2021,6,5,1,New South Wales,150.625915,-34.389759 +2022,8,4,1,New South Wales,153.101247,-29.489858 +2020,7,10,1,New South Wales,152.795197,-31.644405 +2021,7,9,1,New South Wales,150.626719,-34.421347 +2022,2,23,1,New South Wales,153.556988,-28.397314 +2021,11,15,1,New South Wales,152.065276,-32.701664 +2024,4,2,1,New South Wales,152.886512,-31.439513 +2021,9,6,1,New South Wales,150.515264,-34.455834 +2023,10,10,1,New South Wales,153.09732,-29.487107 +2021,5,23,1,New South Wales,150.518386,-34.451471 +2020,12,2,1,New South Wales,153.422166,-28.982543 +2023,12,3,1,New South Wales,150.9892,-34.028785 +2023,8,14,1,New South Wales,153.302801,-28.844273 +2021,3,20,1,New South Wales,150.607824,-34.422052 +2021,4,24,1,New South Wales,150.61615,-34.435711 +2023,8,8,1,New South Wales,150.784989,-33.71604 +2022,11,23,1,New South Wales,152.760068,-30.904021 +2022,12,18,1,New South Wales,151.824666,-30.448436 +2022,11,10,1,New South Wales,152.874899,-31.456848 +2021,7,13,1,New South Wales,150.663396,-34.454853 +2022,6,14,1,New South Wales,152.925782,-31.470069 +2021,4,27,1,New South Wales,150.61636,-34.435589 +2021,9,8,1,New South Wales,152.91439,-31.473064 +2022,7,6,1,New South Wales,152.905478,-31.467655 +2023,10,7,1,New South Wales,153.110511,-29.490175 +2023,5,24,1,New South Wales,150.783426,-33.717197 +2024,3,2,1,New South Wales,150.786096,-33.710617 +2021,5,28,1,New South Wales,150.516283,-34.448994 +2021,6,28,1,New South Wales,153.557323,-28.387638 +2021,3,25,1,New South Wales,153.4039,-28.8605 +2021,4,22,1,New South Wales,150.635479,-34.420489 +2023,10,25,1,New South Wales,152.870504,-31.461934 +2021,5,11,1,New South Wales,150.616322,-34.434263 +2021,11,11,1,New South Wales,153.325686,-28.894918 +2021,6,23,1,New South Wales,152.87339,-31.479873 +2021,5,29,1,New South Wales,150.605526,-34.437387 +2020,8,29,1,New South Wales,153.103755,-29.48558 +2021,9,2,1,New South Wales,153.073472,-30.887528 +2020,11,11,1,New South Wales,150.010499,-36.556654 +2020,10,28,1,New South Wales,149.976368,-36.555504 +2021,10,20,1,New South Wales,152.915447,-31.435403 +2024,8,22,1,New South Wales,152.389984,-31.88371 +2020,10,16,1,New South Wales,153.091693,-29.488055 +2022,9,25,1,New South Wales,153.418498,-28.592481 +2023,3,6,1,New South Wales,153.022335,-28.489141 +2020,8,21,1,New South Wales,153.103626,-29.485473 +2023,8,28,1,New South Wales,153.382218,-28.785698 +2020,1,26,1,New South Wales,153.515119,-28.571967 +2020,11,19,1,New South Wales,149.966791,-36.502277 +2021,5,14,1,New South Wales,150.604214,-34.437966 +2021,9,23,1,New South Wales,150.85704,-34.042234 +2021,4,19,1,New South Wales,153.108215,-29.490203 +2023,1,6,1,New South Wales,152.105567,-32.727829 +2020,5,22,1,New South Wales,153.095232,-29.48345 +2021,6,29,1,New South Wales,150.629288,-34.388941 +2020,10,12,1,New South Wales,149.941399,-36.632151 +2022,12,8,1,New South Wales,152.909109,-31.4908 +2021,6,18,1,New South Wales,150.603337,-34.426769 +2024,2,25,1,New South Wales,152.925831,-31.450573 +2021,7,12,1,New South Wales,150.522228,-34.464341 +2021,9,17,1,New South Wales,150.983419,-34.1081 +2021,11,11,1,New South Wales,153.438286,-28.993269 +2021,4,8,1,New South Wales,153.103806,-29.485576 +2024,9,1,1,New South Wales,151.037077,-34.036214 +2022,1,31,1,New South Wales,152.93786,-30.40529 +2021,4,9,1,New South Wales,150.533722,-34.484317 +2021,3,11,1,New South Wales,150.611578,-34.420494 +2022,6,20,1,New South Wales,152.933658,-29.681698 +2020,3,25,1,New South Wales,153.502349,-28.67286 +2020,6,16,1,New South Wales,153.093141,-29.488639 +2022,1,4,1,New South Wales,153.110522,-29.489909 +2021,4,4,1,New South Wales,150.519593,-34.446365 +2021,5,31,1,New South Wales,150.522997,-34.452321 +2020,6,26,1,New South Wales,152.919075,-31.470742 +2021,5,18,1,New South Wales,150.519879,-34.452898 +2021,7,2,1,New South Wales,150.627369,-34.390635 +2020,1,7,1,New South Wales,153.563435,-28.393303 +2022,12,5,1,New South Wales,152.785676,-31.631882 +2021,8,16,1,New South Wales,150.640796,-34.394267 +2021,6,22,1,New South Wales,150.520391,-34.465746 +2020,9,11,1,New South Wales,150.804225,-34.157278 +2021,5,6,1,New South Wales,150.632945,-34.418926 +2023,8,21,1,New South Wales,152.929855,-31.455771 +2022,10,17,1,New South Wales,152.352277,-31.926624 +2023,1,4,1,New South Wales,153.40366,-28.815522 +2021,4,12,1,New South Wales,152.059278,-32.739099 +2023,1,7,1,New South Wales,153.103307,-29.486346 +2021,6,25,1,New South Wales,153.104079,-29.479556 +2021,5,31,1,New South Wales,150.630818,-34.420679 +2020,12,5,1,New South Wales,153.432401,-28.620422 +2021,7,11,1,New South Wales,150.631743,-34.387096 +2021,1,21,1,New South Wales,153.456029,-28.806225 +2021,9,13,1,New South Wales,150.820437,-34.098917 +2021,11,10,1,New South Wales,153.323701,-28.855997 +2021,5,19,1,New South Wales,150.517476,-34.452804 +2020,6,11,1,New South Wales,149.967562,-36.436787 +2021,5,2,1,New South Wales,150.61661,-34.435224 +2021,4,17,1,New South Wales,150.629795,-34.394469 +2020,2,4,1,New South Wales,153.28829,-28.80931 +2022,7,2,1,New South Wales,153.556462,-28.400123 +2022,6,16,1,New South Wales,153.49897,-28.766815 +2021,1,14,1,New South Wales,150.841833,-34.069613 +2024,1,7,1,New South Wales,153.376871,-28.286849 +2023,7,13,1,New South Wales,150.787493,-33.705699 +2021,6,15,1,New South Wales,150.522526,-34.451681 +2021,6,2,1,New South Wales,150.630829,-34.420679 +2020,10,24,1,New South Wales,149.976368,-36.555504 +2021,6,17,1,New South Wales,150.522906,-34.450976 +2021,3,26,1,New South Wales,150.659167,-34.458955 +2023,8,11,1,New South Wales,153.03747,-30.896555 +2020,5,4,1,New South Wales,152.43885,-28.316831 +2021,5,11,1,New South Wales,150.616506,-34.434284 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,7,26,1,New South Wales,150.641479,-34.394749 +2021,5,30,1,New South Wales,150.631301,-34.420147 +2024,9,21,1,New South Wales,146.601837,-34.763847 +2022,11,8,1,New South Wales,153.434872,-29.02895 +2021,12,8,1,New South Wales,152.063473,-32.706494 +2022,12,7,1,New South Wales,152.920664,-31.433425 +2022,7,30,1,New South Wales,152.798937,-31.146275 +2021,8,16,1,New South Wales,150.514552,-34.444965 +2020,1,16,1,New South Wales,152.863253,-31.144587 +2021,6,22,1,New South Wales,150.514176,-34.445913 +2021,4,22,1,New South Wales,150.605487,-34.432248 +2023,10,2,1,New South Wales,153.032631,-30.380497 +2021,6,9,1,New South Wales,150.525943,-34.457961 +2021,4,20,1,New South Wales,150.523815,-34.452644 +2021,5,28,1,New South Wales,150.601505,-34.425029 +2021,6,3,1,New South Wales,150.519667,-34.455265 +2020,1,9,1,New South Wales,152.925939,-31.458825 +2023,4,7,1,New South Wales,153.102218,-29.488368 +2021,8,12,1,New South Wales,153.60215,-28.679346 +2023,9,26,1,New South Wales,152.902329,-30.53739 +2022,9,21,1,New South Wales,153.300219,-28.825013 +2020,2,2,1,New South Wales,149.35486,-36.18352 +2021,5,28,1,New South Wales,150.639116,-34.491511 +2020,2,2,1,New South Wales,149.35486,-36.18352 +2021,5,10,1,New South Wales,150.624799,-34.399619 +2021,5,20,1,New South Wales,150.615788,-34.430835 +2024,8,20,1,New South Wales,152.378675,-32.022615 +2023,6,24,1,New South Wales,150.822597,-34.226993 +2023,8,14,1,New South Wales,153.302464,-28.846215 +2021,1,13,1,New South Wales,153.108135,-29.490605 +2020,5,7,1,New South Wales,153.434588,-28.96827 +2020,7,12,1,New South Wales,153.436829,-28.992784 +2022,1,27,1,New South Wales,152.913432,-31.460823 +2021,8,25,1,New South Wales,150.027288,-30.803565 +2021,8,18,1,New South Wales,150.554112,-34.498603 +2021,5,2,1,New South Wales,150.621104,-34.398754 +2020,2,27,1,New South Wales,152.921168,-31.464927 +2020,6,4,1,New South Wales,151.00368,-34.00692 +2021,2,14,1,New South Wales,153.267067,-28.870978 +2020,6,20,1,New South Wales,153.044,-30.382537 +2023,9,10,1,New South Wales,153.110511,-29.490142 +2021,9,15,1,New South Wales,152.409406,-31.910186 +2021,5,16,1,New South Wales,150.628834,-34.389203 +2021,5,13,1,New South Wales,150.616994,-34.434348 +2021,6,10,1,New South Wales,150.525329,-34.45886 +2024,3,9,1,New South Wales,150.986375,-34.094181 +2021,9,17,1,New South Wales,150.513017,-34.446097 +2021,5,7,1,New South Wales,150.609225,-34.420601 +2023,7,30,1,New South Wales,153.103463,-29.485576 +2020,1,19,1,New South Wales,153.096258,-29.491459 +2023,10,31,1,New South Wales,152.194095,-32.224416 +2021,6,22,1,New South Wales,152.068194,-32.712362 +2022,11,19,1,New South Wales,153.21666,-28.61243 +2021,9,15,1,New South Wales,153.110195,-29.490208 +2021,5,4,1,New South Wales,150.611799,-34.419596 +2021,3,5,1,New South Wales,150.530443,-34.46924 +2021,9,20,1,New South Wales,150.517307,-34.446382 +2020,1,20,1,New South Wales,153.158075,-28.927498 +2022,11,13,1,New South Wales,153.316467,-28.822219 +2021,6,14,1,New South Wales,150.515918,-34.440016 +2021,4,27,1,New South Wales,150.635913,-34.419389 +2021,3,4,1,New South Wales,150.059118,-33.768071 +2021,6,10,1,New South Wales,150.646283,-34.397185 +2021,6,18,1,New South Wales,150.522206,-34.451467 +2022,8,23,1,New South Wales,153.103473,-29.48565 +2021,5,17,1,New South Wales,150.637419,-34.423872 +2022,11,30,1,New South Wales,152.754102,-30.882465 +2021,5,17,1,New South Wales,150.656031,-34.458624 +2023,8,11,1,New South Wales,150.790728,-34.140954 +2021,7,14,1,New South Wales,150.60568,-34.437318 +2022,4,20,1,New South Wales,153.103935,-29.489563 +2021,4,26,1,New South Wales,150.614422,-34.429519 +2020,7,29,1,New South Wales,150.859148,-34.073291 +2023,3,18,1,New South Wales,151.061116,-29.741249 +2021,7,18,1,New South Wales,150.516358,-34.447949 +2020,9,17,1,New South Wales,152.927297,-31.477972 +2023,10,10,1,New South Wales,150.786056,-33.709721 +2021,4,19,1,New South Wales,150.52289,-34.452274 +2021,9,18,1,New South Wales,150.65009,-34.403389 +2021,6,20,1,New South Wales,150.520358,-34.465755 +2021,7,5,1,New South Wales,150.631727,-34.388448 +2023,4,12,1,New South Wales,153.108172,-29.490255 +2020,10,10,1,New South Wales,152.928861,-31.459497 +2021,5,27,1,New South Wales,150.518346,-34.443266 +2021,6,29,1,New South Wales,153.167359,-29.428979 +2021,4,29,1,New South Wales,150.638564,-34.489463 +2024,4,27,1,New South Wales,150.993075,-34.02005 +2023,2,17,1,New South Wales,152.951757,-31.165077 +2021,5,3,1,New South Wales,150.516739,-34.44647 +2020,11,3,1,New South Wales,149.934245,-36.578531 +2020,10,21,1,New South Wales,153.104117,-29.483895 +2023,10,12,1,New South Wales,152.824368,-29.504677 +2023,1,9,1,New South Wales,152.063741,-32.706571 +2022,6,27,1,New South Wales,153.315144,-28.890161 +2021,4,26,1,New South Wales,150.603292,-34.425299 +2021,8,3,1,New South Wales,150.645767,-34.402404 +2024,5,12,1,New South Wales,151.654056,-32.686273 +2021,5,13,1,New South Wales,150.52052,-34.454029 +2021,4,23,1,New South Wales,150.627153,-34.396383 +2020,12,8,1,New South Wales,149.972032,-36.288695 +2021,5,6,1,New South Wales,150.632871,-34.418852 +2024,8,25,1,New South Wales,152.06673,-32.70916 +2023,1,2,1,New South Wales,152.92794,-31.464663 +2021,5,12,1,New South Wales,150.517293,-34.44759 +2021,9,21,1,New South Wales,150.563856,-34.500349 +2024,3,22,1,New South Wales,152.381738,-31.91479 +2024,8,5,1,New South Wales,152.254209,-31.973658 +2021,4,21,1,New South Wales,150.630574,-34.386902 +2023,9,27,1,New South Wales,152.619522,-30.341575 +2022,3,16,1,New South Wales,153.107421,-29.490119 +2023,11,14,1,New South Wales,152.699633,-30.290446 +2023,6,7,1,New South Wales,150.843593,-34.137759 +2023,3,4,1,New South Wales,152.899582,-31.474001 +2020,10,10,1,New South Wales,152.988323,-30.399605 +2023,7,27,1,New South Wales,153.302578,-28.845525 +2021,7,20,1,New South Wales,150.630688,-34.420658 +2021,5,3,1,New South Wales,150.604968,-34.437863 +2024,1,17,1,New South Wales,150.78429,-33.717263 +2023,9,23,1,New South Wales,153.124797,-30.296661 +2021,10,28,1,New South Wales,152.80718,-29.81225 +2023,1,24,1,New South Wales,152.063593,-32.705336 +2022,8,18,1,New South Wales,152.179389,-30.08386 +2021,6,9,1,New South Wales,150.630099,-34.42071 +2020,1,9,1,New South Wales,150.808546,-34.098368 +2022,7,31,1,New South Wales,152.909507,-31.466107 +2020,6,18,1,New South Wales,152.101463,-32.73989 +2020,10,18,1,New South Wales,153.296745,-28.871902 +2023,4,25,1,New South Wales,151.790756,-32.653944 +2021,9,10,1,New South Wales,150.470737,-34.490979 +2021,6,7,1,New South Wales,150.532841,-34.458786 +2021,5,3,1,New South Wales,150.626004,-34.390077 +2023,5,7,1,New South Wales,151.67482,-32.67359 +2022,11,5,1,New South Wales,150.577567,-34.476 +2023,10,4,1,New South Wales,151.010064,-34.045189 +2023,5,18,1,New South Wales,153.10387,-29.489577 +2021,4,27,1,New South Wales,151.714462,-30.579869 +2023,9,15,1,New South Wales,152.610215,-30.345726 +2024,1,5,1,New South Wales,152.077563,-32.733212 +2022,6,13,1,New South Wales,149.548634,-33.555788 +2023,3,5,1,New South Wales,153.298075,-28.829574 +2023,8,5,1,New South Wales,152.908714,-31.468617 +2021,5,26,1,New South Wales,150.521502,-34.465724 +2021,6,13,1,New South Wales,150.518549,-34.458461 +2020,12,23,1,New South Wales,153.103849,-29.489559 +2020,1,12,1,New South Wales,153.109492,-29.490479 +2021,3,5,1,New South Wales,150.523148,-34.456787 +2021,12,14,1,New South Wales,150.933067,-33.955172 +2022,1,21,1,New South Wales,153.392884,-28.276269 +2021,4,25,1,New South Wales,150.605392,-34.423771 +2021,11,11,1,New South Wales,152.929598,-31.466199 +2022,12,21,1,New South Wales,151.90778,-32.676634 +2021,3,14,1,New South Wales,150.520345,-34.467305 +2022,3,21,1,New South Wales,153.402426,-28.260597 +2020,6,15,1,New South Wales,151.992714,-32.721097 +2021,11,1,1,New South Wales,152.868447,-29.666912 +2021,6,20,1,New South Wales,150.603289,-34.438759 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2021,8,5,1,New South Wales,150.604746,-34.427338 +2020,9,3,1,New South Wales,152.775869,-31.48966 +2021,5,17,1,New South Wales,150.523945,-34.463709 +2021,6,25,1,New South Wales,150.625277,-34.386168 +2022,7,26,1,New South Wales,152.820537,-31.125268 +2021,2,28,1,New South Wales,150.0628,-33.775948 +2023,10,16,1,New South Wales,152.910158,-31.472727 +2022,10,25,1,New South Wales,152.208268,-32.229632 +2021,5,22,1,New South Wales,150.522203,-34.464845 +2023,6,8,1,New South Wales,150.81844,-34.11073 +2020,10,20,1,New South Wales,152.739734,-31.020056 +2022,11,28,1,New South Wales,152.788781,-30.895519 +2022,3,1,1,New South Wales,152.9133,-31.452728 +2020,3,9,1,New South Wales,152.07814,-32.2991 +2022,11,18,1,New South Wales,152.788781,-30.895519 +2021,5,18,1,New South Wales,150.520781,-34.454025 +2023,9,1,1,New South Wales,149.552133,-33.491228 +2021,1,30,1,New South Wales,153.103688,-29.485272 +2021,1,11,1,New South Wales,153.374722,-28.2525 +2021,5,17,1,New South Wales,150.520249,-34.453997 +2020,4,29,1,New South Wales,153.378488,-28.874261 +2022,4,7,1,New South Wales,153.293166,-28.864637 +2022,8,27,1,New South Wales,150.783953,-29.632844 +2020,4,9,1,New South Wales,152.655689,-30.215789 +2021,5,16,1,New South Wales,150.628634,-34.39514 +2023,9,24,1,New South Wales,150.9025,-34.012389 +2021,6,6,1,New South Wales,150.528103,-34.465569 +2021,5,20,1,New South Wales,153.400174,-28.260447 +2022,11,24,1,New South Wales,150.838978,-34.053416 +2021,6,18,1,New South Wales,150.642347,-34.395577 +2021,6,8,1,New South Wales,150.614015,-34.433118 +2023,1,12,1,New South Wales,152.794025,-31.638566 +2021,7,18,1,New South Wales,150.516536,-34.447791 +2021,8,11,1,New South Wales,150.518413,-34.438814 +2023,4,20,1,New South Wales,150.58705,-34.284048 +2021,3,3,1,New South Wales,150.609226,-34.420565 +2021,10,30,1,New South Wales,153.322321,-28.817057 +2020,10,10,1,New South Wales,152.114096,-32.724199 +2021,3,3,1,New South Wales,150.520858,-34.467613 +2022,11,26,1,New South Wales,152.78933,-30.918792 +2022,7,12,1,New South Wales,152.793878,-31.642109 +2022,6,24,1,New South Wales,152.565808,-28.328511 +2020,5,27,1,New South Wales,152.30042,-31.94825 +2020,11,2,1,New South Wales,153.313992,-28.81222 +2022,7,7,1,New South Wales,150.995551,-34.048247 +2022,11,27,1,New South Wales,152.788781,-30.895519 +2020,7,4,1,New South Wales,150.055832,-33.778621 +2020,10,11,1,New South Wales,151.1559,-33.6881 +2022,12,16,1,New South Wales,152.452211,-31.937691 +2022,2,22,1,New South Wales,153.609474,-28.661336 +2020,2,18,1,New South Wales,152.924576,-31.443876 +2021,7,18,1,New South Wales,150.627959,-34.420596 +2021,4,21,1,New South Wales,150.630564,-34.386856 +2023,9,26,1,New South Wales,153.090954,-28.667113 +2023,1,8,1,New South Wales,153.511168,-28.24167 +2020,2,16,1,New South Wales,152.40417,-31.94582 +2021,9,4,1,New South Wales,150.514816,-34.44195 +2021,6,5,1,New South Wales,152.925107,-31.454077 +2021,5,24,1,New South Wales,150.617063,-34.434971 +2021,4,21,1,New South Wales,150.617065,-34.433754 +2021,4,6,1,New South Wales,150.533064,-34.479679 +2020,12,5,1,New South Wales,149.972988,-33.356554 +2024,3,1,1,New South Wales,152.786859,-31.629319 +2021,3,19,1,New South Wales,150.516102,-34.445546 +2021,9,9,1,New South Wales,153.480946,-28.639176 +2021,5,20,1,New South Wales,150.615721,-34.430897 +2021,10,6,1,New South Wales,152.889825,-31.444037 +2021,2,6,1,New South Wales,153.108151,-29.490222 +2021,4,29,1,New South Wales,150.624468,-34.388235 +2021,5,4,1,New South Wales,150.520723,-34.436111 +2021,5,28,1,New South Wales,153.59019,-28.65505 +2024,1,29,1,New South Wales,150.78512,-33.7108 +2022,8,17,1,New South Wales,153.049424,-28.877092 +2023,8,7,1,New South Wales,149.563734,-33.689354 +2021,3,12,1,New South Wales,150.517229,-34.4516 +2020,9,21,1,New South Wales,152.009529,-32.727935 +2021,5,2,1,New South Wales,150.609724,-34.436324 +2023,6,26,1,New South Wales,153.411934,-28.666495 +2022,9,26,1,New South Wales,151.911101,-32.586257 +2021,11,3,1,New South Wales,152.823947,-29.810965 +2022,10,13,1,New South Wales,152.352531,-32.157782 +2021,6,12,1,New South Wales,150.626522,-34.385597 +2024,1,7,1,New South Wales,150.986372,-34.0251 +2021,4,28,1,New South Wales,150.616514,-34.429416 +2023,9,9,1,New South Wales,150.983828,-34.094798 +2020,11,12,1,New South Wales,150.010499,-36.556654 +2024,4,28,1,New South Wales,152.540692,-32.06005 +2021,5,22,1,New South Wales,150.617216,-34.433811 +2020,7,22,1,New South Wales,152.505439,-31.986332 +2021,7,5,1,New South Wales,150.524234,-34.466455 +2023,10,6,1,New South Wales,150.990029,-34.020781 +2022,10,30,1,New South Wales,153.177428,-28.934629 +2020,8,2,1,New South Wales,150.829553,-34.149515 +2021,8,24,1,New South Wales,150.514341,-34.447313 +2020,9,13,1,New South Wales,150.08917,-31.13574 +2021,5,4,1,New South Wales,153.549545,-28.589152 +2023,9,27,1,New South Wales,152.933578,-31.47209 +2021,5,22,1,New South Wales,150.598652,-34.428516 +2022,9,7,1,New South Wales,150.784274,-34.207721 +2020,2,22,1,New South Wales,153.0686,-30.911362 +2021,2,2,1,New South Wales,152.824652,-29.506027 +2022,8,1,1,New South Wales,153.10342,-29.48566 +2020,10,27,1,New South Wales,153.555155,-28.586525 +2021,4,28,1,New South Wales,150.619965,-34.400949 +2021,4,14,1,New South Wales,150.602711,-34.42966 +2020,10,6,1,New South Wales,152.840769,-29.674618 +2021,4,3,1,New South Wales,150.608967,-34.421633 +2023,6,22,1,New South Wales,153.393931,-28.874994 +2021,5,17,1,New South Wales,150.516094,-34.450234 +2021,11,1,1,New South Wales,152.896484,-30.517778 +2022,3,28,1,New South Wales,152.062415,-32.709429 +2021,4,17,1,New South Wales,150.629849,-34.39447 +2021,6,19,1,New South Wales,150.519075,-34.459815 +2023,11,20,1,New South Wales,150.498,-34.46885 +2021,6,7,1,New South Wales,150.607925,-34.430727 +2021,2,26,1,New South Wales,150.605166,-34.433206 +2022,10,18,1,New South Wales,153.27553,-28.81467 +2022,11,25,1,New South Wales,152.78933,-30.918792 +2021,1,1,1,New South Wales,153.103774,-29.485688 +2021,10,14,1,New South Wales,153.395308,-28.960009 +2020,11,6,1,New South Wales,150.007338,-36.56122 +2021,5,7,1,New South Wales,150.521135,-34.466726 +2020,2,7,1,New South Wales,153.489945,-28.626289 +2022,10,31,1,New South Wales,150.828305,-34.091345 +2021,3,12,1,New South Wales,152.882185,-31.424843 +2021,6,16,1,New South Wales,150.520412,-34.465783 +2021,7,29,1,New South Wales,153.389223,-28.299964 +2020,11,13,1,New South Wales,151.635202,-32.650668 +2021,8,21,1,New South Wales,153.400572,-28.257746 +2020,8,7,1,New South Wales,150.913678,-34.068368 +2023,8,11,1,New South Wales,152.218526,-31.355661 +2021,5,26,1,New South Wales,150.631498,-34.388452 +2024,3,12,1,New South Wales,150.785233,-33.712916 +2023,12,13,1,New South Wales,152.86834,-31.473725 +2021,6,18,1,New South Wales,150.51916,-34.459906 +2024,9,24,1,New South Wales,146.601837,-34.763847 +2020,12,30,1,New South Wales,153.60972,-28.662022 +2024,2,5,1,New South Wales,153.109353,-29.490437 +2022,9,29,1,New South Wales,152.90636,-30.24079 +2021,1,12,1,New South Wales,152.928616,-31.466547 +2021,4,13,1,New South Wales,150.533018,-34.475711 +2023,9,24,1,New South Wales,151.008325,-34.045661 +2021,12,12,1,New South Wales,153.084825,-28.535791 +2021,9,11,1,New South Wales,153.394064,-28.267041 +2020,11,18,1,New South Wales,149.977337,-36.522201 +2023,9,9,1,New South Wales,150.983913,-34.094834 +2023,6,27,1,New South Wales,150.785391,-33.715354 +2021,6,27,1,New South Wales,150.513766,-34.447257 +2022,10,5,1,New South Wales,153.001329,-30.407587 +2021,3,26,1,New South Wales,150.616214,-34.435369 +2021,1,24,1,New South Wales,152.941816,-30.493985 +2024,1,16,1,New South Wales,152.72868,-30.90034 +2021,7,4,1,New South Wales,150.513779,-34.446473 +2020,1,7,1,New South Wales,153.286418,-29.025463 +2021,6,27,1,New South Wales,150.597491,-34.418153 +2021,7,5,1,New South Wales,150.524158,-34.466454 +2020,8,,1,New South Wales,150.781648,-34.278848 +2021,10,28,1,New South Wales,152.608876,-31.792494 +2021,4,18,1,New South Wales,150.636953,-34.421095 +2023,11,1,1,New South Wales,152.708733,-31.534592 +2020,10,23,1,New South Wales,152.090922,-32.739 +2021,5,5,1,New South Wales,150.608826,-34.455582 +2021,5,22,1,New South Wales,150.63116,-34.388094 +2023,5,26,1,New South Wales,152.40555,-31.933339 +2022,1,17,1,New South Wales,150.61887,-34.440335 +2021,4,29,1,New South Wales,150.638487,-34.489462 +2024,1,21,1,New South Wales,153.110522,-29.490124 +2021,1,11,1,New South Wales,152.897379,-31.451891 +2021,5,1,1,New South Wales,150.609131,-34.434961 +2024,2,5,1,New South Wales,152.077227,-32.722468 +2024,1,31,1,New South Wales,152.06372,-32.706544 +2023,4,27,1,New South Wales,153.316506,-28.845967 +2021,,,1,New South Wales,149.848566,-32.43791 +2021,5,14,1,New South Wales,150.629116,-34.395808 +2023,9,27,1,New South Wales,152.619471,-30.341503 +2022,9,20,1,New South Wales,153.301402,-28.824247 +2021,5,26,1,New South Wales,150.630677,-34.420658 +2023,7,3,1,New South Wales,152.385639,-31.875282 +2020,3,18,1,New South Wales,150.68562,-34.26599 +2023,9,12,1,New South Wales,152.615807,-30.331223 +2020,4,26,1,New South Wales,153.321716,-28.823033 +2021,8,19,1,New South Wales,150.61185,-34.430803 +2020,11,16,1,New South Wales,152.924847,-31.463887 +2022,2,17,1,New South Wales,152.89138,-30.4613 +2023,11,25,1,New South Wales,151.990528,-32.243349 +2020,8,10,1,New South Wales,150.845125,-29.834745 +2023,8,31,1,New South Wales,150.785729,-33.71013 +2020,6,19,1,New South Wales,151.02698,-34.03451 +2022,6,1,1,New South Wales,152.242562,-29.840897 +2021,5,29,1,New South Wales,150.640873,-34.39618 +2020,6,10,1,New South Wales,150.056592,-33.777864 +2023,4,27,1,New South Wales,152.063678,-32.706728 +2023,2,14,1,New South Wales,152.916661,-31.456429 +2022,2,13,1,New South Wales,152.907331,-31.47046 +2022,8,8,1,New South Wales,152.785306,-31.633293 +2024,1,19,1,New South Wales,152.885379,-31.429437 +2022,4,20,1,New South Wales,150.985078,-34.021161 +2023,11,30,1,New South Wales,151.846984,-31.961389 +2021,3,26,1,New South Wales,150.616214,-34.435369 +2022,11,4,1,New South Wales,153.313629,-28.850792 +2021,4,21,1,New South Wales,150.636333,-34.485543 +2021,2,5,1,New South Wales,153.101156,-29.49017 +2022,3,17,1,New South Wales,152.933894,-29.68938 +2021,11,7,1,New South Wales,150.616254,-34.438192 +2023,10,21,1,New South Wales,151.650573,-32.693439 +2021,2,27,1,New South Wales,150.517094,-34.446964 +2022,1,18,1,New South Wales,153.108178,-29.490217 +2020,12,29,1,New South Wales,153.094048,-29.488821 +2020,10,13,1,New South Wales,149.930096,-36.638123 +2020,1,2,1,New South Wales,152.034822,-32.765351 +2021,5,7,1,New South Wales,150.621398,-34.397948 +2023,12,31,1,New South Wales,153.095893,-29.484581 +2020,1,30,1,New South Wales,150.89337,-33.97151 +2020,10,16,1,New South Wales,152.918972,-31.460634 +2020,11,20,1,New South Wales,148.54409,-31.877279 +2021,4,21,1,New South Wales,150.636974,-34.422646 +2021,3,30,1,New South Wales,150.516145,-34.446674 +2021,8,12,1,New South Wales,153.541208,-28.393545 +2022,11,18,1,New South Wales,152.788781,-30.895519 +2021,7,27,1,New South Wales,150.521756,-34.464872 +2020,12,4,1,New South Wales,152.902386,-31.441974 +2020,9,28,1,New South Wales,152.988323,-30.399605 +2023,10,28,1,New South Wales,152.19096,-32.219628 +2020,12,28,1,New South Wales,146.562101,-34.763879 +2022,2,6,1,New South Wales,151.007009,-34.046504 +2021,11,23,1,New South Wales,152.126308,-31.413327 +2022,2,11,1,New South Wales,153.302783,-28.844246 +2020,1,4,1,New South Wales,153.094708,-29.494158 +2020,6,1,1,New South Wales,153.163396,-28.35569 +2021,3,29,1,New South Wales,150.531498,-34.482965 +2020,11,19,1,New South Wales,153.0693,-28.585389 +2020,2,3,1,New South Wales,152.918296,-31.446349 +2023,7,23,1,New South Wales,153.095893,-29.484656 +2020,10,19,1,New South Wales,149.930096,-36.638123 +2021,5,25,1,New South Wales,150.618854,-34.435917 +2021,7,15,1,New South Wales,150.642959,-34.395859 +2020,12,31,1,New South Wales,152.115157,-32.769544 +2021,7,5,1,New South Wales,150.643626,-34.394583 +2021,6,16,1,New South Wales,150.622876,-34.383768 +2022,10,30,1,New South Wales,152.70897,-31.786665 +2021,5,1,1,New South Wales,150.604765,-34.427068 +2021,8,23,1,New South Wales,153.104037,-29.478029 +2021,7,18,1,New South Wales,153.502334,-28.631954 +2022,11,30,1,New South Wales,151.017493,-33.975565 +2021,5,10,1,New South Wales,150.628124,-34.389721 +2020,1,7,1,New South Wales,150.532126,-34.408735 +2021,6,16,1,New South Wales,150.65918,-34.455385 +2020,12,31,1,New South Wales,153.108199,-29.490595 +2024,3,3,1,New South Wales,151.084576,-29.729649 +2021,7,27,1,New South Wales,150.566447,-34.460307 +2021,4,10,1,New South Wales,152.924026,-31.459953 +2021,4,20,1,New South Wales,150.627178,-34.385853 +2021,1,24,1,New South Wales,152.829547,-29.642903 +2021,7,8,1,New South Wales,150.630351,-34.388655 +2023,10,6,1,New South Wales,153.104144,-29.483773 +2020,5,14,1,New South Wales,153.092111,-29.487976 +2020,9,15,1,New South Wales,153.296258,-28.901462 +2021,5,2,1,New South Wales,150.518767,-34.439335 +2021,4,19,1,New South Wales,150.6375,-34.421755 +2023,12,17,1,New South Wales,150.786149,-33.7063 +2023,3,4,1,New South Wales,153.311649,-28.811929 +2020,1,10,1,New South Wales,153.249624,-28.618525 +2021,6,19,1,New South Wales,150.62793,-34.420857 +2020,9,12,1,New South Wales,153.110037,-29.490201 +2021,7,3,1,New South Wales,150.642121,-34.395906 +2021,5,24,1,New South Wales,150.594557,-34.427516 +2021,5,14,1,New South Wales,150.604138,-34.437973 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2022,8,11,1,New South Wales,150.521591,-34.463905 +2022,7,11,1,New South Wales,150.937199,-34.113878 +2021,6,12,1,New South Wales,150.612026,-34.43188 +2021,5,29,1,New South Wales,150.617007,-34.439243 +2021,5,12,1,New South Wales,150.609179,-34.420681 +2021,4,20,1,New South Wales,150.637204,-34.422614 +2022,10,26,1,New South Wales,153.434162,-28.949687 +2021,3,25,1,New South Wales,150.516847,-34.44649 +2022,5,16,1,New South Wales,153.427337,-28.62623 +2021,5,28,1,New South Wales,150.526867,-34.469457 +2023,1,31,1,New South Wales,152.409406,-31.910186 +2021,11,8,1,New South Wales,153.12381,-30.300468 +2021,5,31,1,New South Wales,150.604905,-34.437402 +2021,7,14,1,New South Wales,153.109336,-30.291368 +2023,6,7,1,New South Wales,150.814484,-34.16744 +2020,9,20,1,New South Wales,153.288381,-28.827512 +2021,5,27,1,New South Wales,150.597919,-34.425996 +2021,9,1,1,New South Wales,153.399388,-28.662281 +2020,10,17,1,New South Wales,152.875432,-31.424892 +2022,3,17,1,New South Wales,153.110527,-29.49018 +2021,4,6,1,New South Wales,150.607852,-34.422981 +2023,11,15,1,New South Wales,150.170879,-34.077914 +2023,7,30,1,New South Wales,153.108113,-29.490563 +2021,3,30,1,New South Wales,150.530838,-34.483555 +2021,12,6,1,New South Wales,152.89825,-31.474203 +2021,5,10,1,New South Wales,150.633082,-34.417531 +2023,8,1,1,New South Wales,153.109294,-29.490614 +2021,4,11,1,New South Wales,150.527144,-34.457833 +2023,1,13,1,New South Wales,151.993994,-32.721947 +2021,8,21,1,New South Wales,150.985308,-34.096581 +2020,11,18,1,New South Wales,153.369052,-28.953149 +2023,3,10,1,New South Wales,149.951075,-36.595044 +2021,11,2,1,New South Wales,153.37174,-28.250411 +2023,7,28,1,New South Wales,153.071468,-30.885807 +2023,8,12,1,New South Wales,153.110324,-29.490199 +2021,4,24,1,New South Wales,150.627172,-34.396464 +2021,4,22,1,New South Wales,150.61642,-34.433471 +2023,9,15,1,New South Wales,151.641306,-30.489236 +2020,11,22,1,New South Wales,153.091752,-29.487882 +2023,2,8,1,New South Wales,153.104192,-29.479696 +2021,5,3,1,New South Wales,150.603956,-34.426817 +2021,7,6,1,New South Wales,150.631161,-34.38731 +2021,3,30,1,New South Wales,150.527424,-34.457207 +2022,4,15,1,New South Wales,153.109793,-29.490208 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2020,4,12,1,New South Wales,153.103913,-29.485632 +2021,11,18,1,New South Wales,150.938471,-34.114161 +2021,3,4,1,New South Wales,150.608992,-34.420371 +2021,7,16,1,New South Wales,150.514385,-34.446575 +2023,10,15,1,New South Wales,152.923687,-31.470478 +2021,3,9,1,New South Wales,153.560834,-28.36428 +2021,2,27,1,New South Wales,150.615253,-34.433196 +2021,8,8,1,New South Wales,153.108215,-29.490236 +2021,6,7,1,New South Wales,150.635359,-34.488049 +2023,8,2,1,New South Wales,152.05636,-32.737 +2021,9,26,1,New South Wales,153.376231,-28.811791 +2022,2,6,1,New South Wales,152.97089,-28.503093 +2020,9,14,1,New South Wales,153.124319,-30.300157 +2022,4,26,1,New South Wales,152.9038,-31.440281 +2021,7,11,1,New South Wales,150.522154,-34.464285 +2021,7,1,1,New South Wales,150.642566,-34.395536 +2024,1,21,1,New South Wales,150.787065,-33.705505 +2021,5,9,1,New South Wales,150.616435,-34.436014 +2023,9,26,1,New South Wales,153.272785,-28.931395 +2021,8,13,1,New South Wales,150.520741,-34.465321 +2020,10,15,1,New South Wales,149.703121,-33.509987 +2021,5,1,1,New South Wales,150.637478,-34.423701 +2024,9,11,1,New South Wales,153.071134,-30.876775 +2021,7,3,1,New South Wales,152.926863,-31.447238 +2021,5,22,1,New South Wales,150.598462,-34.428332 +2021,5,16,1,New South Wales,150.640609,-34.494173 +2021,6,19,1,New South Wales,150.603865,-34.439536 +2021,10,8,1,New South Wales,152.173118,-32.738165 +2021,5,1,1,New South Wales,150.63451,-34.420128 +2021,6,4,1,New South Wales,153.103822,-29.485571 +2023,7,3,1,New South Wales,153.108135,-29.490493 +2023,7,31,1,New South Wales,152.91861,-31.469198 +2022,8,24,1,New South Wales,152.374087,-31.915492 +2023,6,8,1,New South Wales,152.905795,-31.446475 +2021,6,6,1,New South Wales,150.52384,-34.466177 +2021,6,3,1,New South Wales,150.522078,-34.466114 +2022,1,24,1,New South Wales,150.615814,-34.439121 +2022,6,13,1,New South Wales,152.884877,-31.435087 +2021,7,18,1,New South Wales,150.516453,-34.446563 +2021,4,15,1,New South Wales,150.639964,-34.415374 +2022,11,3,1,New South Wales,150.847998,-34.057627 +2021,12,17,1,New South Wales,152.602233,-31.802226 +2021,4,23,1,New South Wales,150.637906,-34.485745 +2021,6,20,1,New South Wales,153.103913,-29.485333 +2021,5,27,1,New South Wales,150.516251,-34.448975 +2023,3,27,1,New South Wales,152.9152,-31.458826 +2022,9,20,1,New South Wales,153.303014,-28.824059 +2023,1,9,1,New South Wales,151.149711,-33.961723 +2022,8,15,1,New South Wales,153.103806,-29.485599 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2020,12,13,1,New South Wales,153.12396,-28.56031 +2021,7,15,1,New South Wales,150.644716,-34.396434 +2020,3,5,1,New South Wales,152.039969,-32.731768 +2021,6,21,1,New South Wales,150.62456,-34.385388 +2021,11,23,1,New South Wales,153.303301,-28.817757 +2021,4,25,1,New South Wales,150.626269,-34.395717 +2020,5,17,1,New South Wales,153.425634,-28.630438 +2021,7,24,1,New South Wales,150.978821,-34.08358 +2021,6,19,1,New South Wales,150.513749,-34.446382 +2021,10,26,1,New South Wales,153.395846,-28.268696 +2023,3,30,1,New South Wales,150.675242,-33.564904 +2023,9,29,1,New South Wales,153.306243,-29.055077 +2023,9,24,1,New South Wales,153.022884,-28.488685 +2021,7,13,1,New South Wales,150.626987,-34.420721 +2021,7,29,1,New South Wales,150.642016,-34.398482 +2021,6,19,1,New South Wales,150.603931,-34.439502 +2022,2,13,1,New South Wales,151.66884,-30.441575 +2021,9,3,1,New South Wales,150.517284,-34.43981 +2022,6,5,1,New South Wales,153.329859,-28.930457 +2022,6,22,1,New South Wales,150.96115,-34.101493 +2021,7,16,1,New South Wales,150.627924,-34.420659 +2022,11,4,1,New South Wales,153.293334,-28.864548 +2024,6,24,1,New South Wales,151.62532,-32.565734 +2021,4,7,1,New South Wales,150.634308,-34.488651 +2020,1,9,1,New South Wales,153.369056,-28.615161 +2021,10,19,1,New South Wales,152.811214,-29.807806 +2023,9,2,1,New South Wales,153.036615,-28.839311 +2020,11,18,1,New South Wales,153.361038,-28.941392 +2021,5,22,1,New South Wales,150.633746,-34.392427 +2020,11,18,1,New South Wales,153.361038,-28.941392 +2021,10,26,1,New South Wales,152.06574,-32.710698 +2021,7,3,1,New South Wales,150.646703,-34.395778 +2024,5,27,1,New South Wales,150.796332,-34.117089 +2023,3,10,1,New South Wales,152.899826,-31.467055 +2023,5,29,1,New South Wales,150.76611,-34.23673 +2022,9,26,1,New South Wales,150.878723,-34.01437 +2022,7,9,1,New South Wales,150.183852,-29.177135 +2020,5,26,1,New South Wales,150.87045,-34.408105 +2021,7,20,1,New South Wales,150.630732,-34.420632 +2021,11,5,1,New South Wales,152.868705,-29.667322 +2021,6,18,1,New South Wales,152.924403,-31.449186 +2020,10,23,1,New South Wales,150.588079,-33.460525 +2023,10,26,1,New South Wales,152.189959,-32.223426 +2021,6,30,1,New South Wales,150.522458,-34.465049 +2022,12,18,1,New South Wales,152.787095,-31.629903 +2021,5,4,1,New South Wales,150.611799,-34.419596 +2021,12,21,1,New South Wales,153.29927,-28.817999 +2020,10,19,1,New South Wales,153.3033,-28.821668 +2021,6,26,1,New South Wales,150.522581,-34.464213 +2020,4,9,1,New South Wales,153.101639,-29.489825 +2021,4,8,1,New South Wales,152.059278,-32.739099 +2020,9,7,1,New South Wales,153.054871,-30.240487 +2021,8,10,1,New South Wales,152.922143,-31.462295 +2022,8,7,1,New South Wales,152.877828,-29.677381 +2023,8,27,1,New South Wales,151.718278,-32.717574 +2020,4,1,1,New South Wales,152.867975,-29.666874 +2021,6,9,1,New South Wales,150.630098,-34.420737 +2023,12,22,1,New South Wales,151.554827,-32.916872 +2021,11,27,1,New South Wales,153.102642,-29.489531 +2021,8,5,1,New South Wales,153.302389,-28.821933 +2021,6,15,1,New South Wales,150.611374,-34.430713 +2021,6,30,1,New South Wales,150.596135,-34.411563 +2021,5,23,1,New South Wales,150.605394,-34.432462 +2021,6,2,1,New South Wales,150.813678,-34.104761 +2021,4,21,1,New South Wales,150.615863,-34.43319 +2022,6,20,1,New South Wales,153.104128,-29.483853 +2021,4,21,1,New South Wales,150.604436,-34.424501 +2021,6,6,1,New South Wales,153.60949,-28.68934 +2020,3,23,1,New South Wales,152.913159,-31.460209 +2020,12,10,1,New South Wales,152.492294,-32.381509 +2020,7,19,1,New South Wales,153.419273,-28.26485 +2020,11,,1,New South Wales,150.63226,-34.537916 +2024,2,18,1,New South Wales,150.782969,-33.719615 +2020,9,23,1,New South Wales,152.991787,-28.454802 +2020,4,14,1,New South Wales,152.97101,-30.42822 +2023,1,10,1,New South Wales,150.575889,-34.87874 +2024,4,19,1,New South Wales,151.323158,-33.053353 +2021,6,23,1,New South Wales,150.645124,-34.393142 +2022,8,25,1,New South Wales,151.664803,-30.350074 +2021,3,27,1,New South Wales,150.517317,-34.451557 +2021,5,16,1,New South Wales,150.524065,-34.463324 +2021,6,29,1,New South Wales,150.627369,-34.420296 +2020,8,12,1,New South Wales,152.91618,-31.483446 +2021,5,7,1,New South Wales,150.520994,-34.466696 +2021,5,24,1,New South Wales,150.60405,-34.43267 +2021,5,28,1,New South Wales,150.617573,-34.438488 +2024,9,21,1,New South Wales,146.603422,-34.763563 +2021,5,1,1,New South Wales,150.608948,-34.434894 +2021,4,26,1,New South Wales,150.614212,-34.429642 +2021,5,2,1,New South Wales,150.6374,-34.488251 +2021,12,20,1,New South Wales,152.923393,-31.475555 +2022,8,30,1,New South Wales,149.324895,-36.293679 +2021,7,14,1,New South Wales,150.643298,-34.395424 +2021,6,11,1,New South Wales,150.611898,-34.431805 +2020,12,7,1,New South Wales,153.280642,-28.861197 +2022,10,4,1,New South Wales,152.962004,-31.251 +2020,3,22,1,New South Wales,153.43429,-28.731887 +2021,11,12,1,New South Wales,153.323595,-28.881036 +2020,2,4,1,New South Wales,152.905944,-31.479611 +2021,6,13,1,New South Wales,150.604663,-34.438632 +2023,5,3,1,New South Wales,153.209526,-28.928931 +2023,8,18,1,New South Wales,150.262595,-33.687268 +2021,12,17,1,New South Wales,150.617128,-34.441112 +2023,4,25,1,New South Wales,152.913301,-31.479918 +2023,8,9,1,New South Wales,153.400546,-28.60426 +2024,3,9,1,New South Wales,150.986111,-34.092132 +2021,5,29,1,New South Wales,150.517362,-34.441578 +2023,11,5,1,New South Wales,153.100743,-29.490175 +2021,7,21,1,New South Wales,150.623368,-34.3833 +2024,6,20,1,New South Wales,152.913236,-31.45318 +2021,5,21,1,New South Wales,150.630479,-34.395302 +2023,2,7,1,New South Wales,151.452197,-32.848503 +2021,10,14,1,New South Wales,153.563655,-28.388033 +2021,8,25,1,New South Wales,150.640385,-34.394953 +2021,6,22,1,New South Wales,150.639575,-34.392846 +2021,10,19,1,New South Wales,153.387305,-28.648221 +2021,5,13,1,New South Wales,150.524625,-34.46429 +2020,7,19,1,New South Wales,152.173585,-32.735538 +2020,11,22,1,New South Wales,153.103731,-29.485646 +2021,8,5,1,New South Wales,153.60155,-28.68121 +2022,9,7,1,New South Wales,153.554897,-28.643692 +2023,9,3,1,New South Wales,152.915361,-31.194397 +2021,2,22,1,New South Wales,149.596912,-33.528787 +2020,4,7,1,New South Wales,153.302775,-29.051534 +2022,11,16,1,New South Wales,153.062018,-28.94236 +2021,8,16,1,New South Wales,153.062833,-30.917722 +2023,10,26,1,New South Wales,152.907318,-31.444289 +2022,6,21,1,New South Wales,152.907177,-31.443855 +2021,5,28,1,New South Wales,150.51735,-34.441623 +2021,5,17,1,New South Wales,150.632739,-34.418904 +2022,9,27,1,New South Wales,152.063323,-32.706418 +2023,6,7,1,New South Wales,152.901649,-31.241792 +2021,11,29,1,New South Wales,153.298166,-28.818677 +2022,8,18,1,New South Wales,150.808018,-34.09361 +2020,4,29,1,New South Wales,153.403554,-28.626581 +2022,3,29,1,New South Wales,151.784837,-32.511437 +2021,4,4,1,New South Wales,150.519902,-34.44657 +2021,7,11,1,New South Wales,150.522114,-34.464528 +2021,8,23,1,New South Wales,150.519902,-34.44657 +2021,7,19,1,New South Wales,150.597982,-34.418099 +2021,8,5,1,New South Wales,153.60155,-28.68121 +2023,3,9,1,New South Wales,149.950453,-36.576974 +2024,4,12,1,New South Wales,152.258665,-32.086565 +2022,10,4,1,New South Wales,152.865295,-29.650135 +2024,9,5,1,New South Wales,152.540594,-32.069776 +2021,4,26,1,New South Wales,150.614422,-34.429528 +2020,9,26,1,New South Wales,153.374444,-28.252222 +2021,4,6,1,New South Wales,150.607852,-34.422981 +2020,6,7,1,New South Wales,153.34652,-28.349908 +2022,9,27,1,New South Wales,149.417403,-36.248408 +2020,9,12,1,New South Wales,153.092748,-28.603203 +2022,7,14,1,New South Wales,153.304113,-28.822848 +2021,5,9,1,New South Wales,150.606618,-34.438004 +2021,8,13,1,New South Wales,150.645375,-34.399305 +2023,4,6,1,New South Wales,149.933675,-36.577361 +2021,3,12,1,New South Wales,151.631137,-31.526558 +2021,1,29,1,New South Wales,153.283431,-28.830728 +2024,2,7,1,New South Wales,153.105292,-29.489769 +2023,11,6,1,Victoria,146.165938,-38.711062 +2020,9,4,1,New South Wales,153.093959,-29.488744 +2022,9,30,1,New South Wales,152.90455,-30.23833 +2020,9,16,1,New South Wales,153.093367,-29.488471 +2020,11,24,1,New South Wales,153.342482,-28.805797 +2020,5,1,1,New South Wales,153.093978,-29.488802 +2021,7,28,1,New South Wales,152.061019,-32.710742 +2021,2,12,1,New South Wales,151.203649,-33.825788 +2023,1,26,1,New South Wales,153.562095,-28.389309 +2021,5,17,1,New South Wales,150.629512,-34.389451 +2021,7,22,1,New South Wales,150.630266,-34.420956 +2022,2,3,1,New South Wales,151.49,-30.653 +2021,7,11,1,New South Wales,150.626742,-34.421321 +2020,5,,1,New South Wales,152.077228,-32.722451 +2021,7,15,1,New South Wales,150.514332,-34.44652 +2020,12,2,1,New South Wales,152.72318,-31.515379 +2023,5,17,1,New South Wales,152.908264,-31.438655 +2023,9,26,1,New South Wales,151.78239,-32.582884 +2022,7,23,1,New South Wales,153.283805,-28.666682 +2021,9,15,1,New South Wales,150.515565,-34.454496 +2020,8,3,1,New South Wales,152.793519,-31.127211 +2021,4,23,1,New South Wales,150.614699,-34.430886 +2023,8,4,1,New South Wales,152.903897,-31.439976 +2023,4,16,1,New South Wales,153.302231,-28.821335 +2021,7,4,1,New South Wales,150.628402,-34.391025 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2021,7,3,1,New South Wales,150.642132,-34.395888 +2022,1,10,1,New South Wales,152.92433,-31.459822 +2021,8,22,1,New South Wales,153.104053,-29.477903 +2020,3,2,1,New South Wales,152.907779,-31.489287 +2021,6,17,1,New South Wales,150.524411,-34.451611 +2021,5,20,1,New South Wales,150.517391,-34.452018 +2021,5,16,1,New South Wales,150.640533,-34.494135 +2021,5,20,1,New South Wales,150.521651,-34.465817 +2021,5,9,1,New South Wales,150.606342,-34.438142 +2023,10,26,1,New South Wales,152.922891,-31.455164 +2023,6,5,1,New South Wales,150.80026,-34.17452 +2022,12,26,1,New South Wales,152.921496,-31.45372 +2021,5,5,1,New South Wales,150.638529,-34.49068 +2021,9,13,1,New South Wales,149.646068,-32.565707 +2023,1,15,1,New South Wales,152.912431,-31.470606 +2021,5,31,1,New South Wales,150.638522,-34.491311 +2023,11,4,1,New South Wales,151.532728,-32.973135 +2021,5,19,1,New South Wales,150.52159,-34.465698 +2022,5,12,1,New South Wales,153.101955,-29.488784 +2023,9,13,1,New South Wales,152.415176,-31.933124 +2022,10,1,1,New South Wales,153.103463,-29.485692 +2021,8,31,1,New South Wales,150.644348,-34.396751 +2020,3,13,1,New South Wales,153.01713,-30.37491 +2020,9,29,1,New South Wales,152.840035,-29.320091 +2022,5,29,1,New South Wales,153.102867,-29.489479 +2022,11,11,1,New South Wales,152.153782,-32.714128 +2021,7,6,1,New South Wales,150.631755,-34.388214 +2023,6,5,1,New South Wales,150.996362,-34.06232 +2021,7,9,1,New South Wales,150.598341,-34.412796 +2022,9,6,1,New South Wales,150.802439,-34.111104 +2021,7,13,1,New South Wales,150.627196,-34.420635 +2022,8,11,1,New South Wales,152.361906,-32.157662 +2021,5,28,1,New South Wales,152.478835,-28.309888 +2023,1,6,1,New South Wales,152.811536,-29.51492 +2020,2,28,1,New South Wales,153.433168,-28.729078 +2021,6,10,1,New South Wales,150.525376,-34.458383 +2023,11,1,1,New South Wales,153.109728,-30.266518 +2023,1,17,1,New South Wales,152.063773,-32.706517 +2021,4,25,1,New South Wales,150.610323,-34.41909 +2021,6,21,1,New South Wales,150.623915,-34.384708 +2021,7,31,1,New South Wales,150.624449,-34.388144 +2021,4,17,1,New South Wales,153.239028,-28.83787 +2021,12,12,1,New South Wales,152.926432,-31.455656 +2021,5,2,1,New South Wales,150.520325,-34.453989 +2022,10,9,1,New South Wales,152.831683,-29.642883 +2022,2,3,1,New South Wales,152.040754,-32.737065 +2021,7,15,1,New South Wales,150.625184,-34.386761 +2022,2,3,1,New South Wales,153.109379,-29.490535 +2021,5,18,1,New South Wales,150.600203,-34.4287 +2021,4,28,1,New South Wales,150.601542,-34.42677 +2021,11,1,1,New South Wales,150.252967,-34.577916 +2021,6,14,1,New South Wales,150.515819,-34.446649 +2021,6,2,1,New South Wales,150.518748,-34.447701 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2020,11,1,1,New South Wales,149.976368,-36.555504 +2020,3,7,1,New South Wales,153.29541,-28.818006 +2022,6,3,1,New South Wales,152.904809,-31.439311 +2021,4,16,1,New South Wales,150.626499,-34.386038 +2021,9,9,1,New South Wales,150.644482,-34.393923 +2020,10,13,1,New South Wales,152.798162,-31.374754 +2020,1,14,1,New South Wales,152.922993,-31.481206 +2021,9,17,1,New South Wales,150.200421,-29.354409 +2022,1,30,1,New South Wales,150.616161,-34.438776 +2020,5,18,1,New South Wales,152.107825,-31.422741 +2020,7,25,1,New South Wales,153.402111,-28.259317 +2021,7,22,1,New South Wales,152.42921,-31.83022 +2020,10,8,1,New South Wales,153.41537,-28.982474 +2021,4,2,1,New South Wales,150.534154,-34.480007 +2021,6,7,1,New South Wales,150.61582,-34.433171 +2022,11,23,1,New South Wales,152.384457,-31.880154 +2020,5,29,1,New South Wales,153.55964,-28.30651 +2021,7,2,1,New South Wales,150.513103,-34.447225 +2021,6,16,1,New South Wales,153.556688,-28.400022 +2021,5,27,1,New South Wales,150.517315,-34.452747 +2021,3,6,1,New South Wales,151.088534,-33.404535 +2021,1,29,1,New South Wales,152.916045,-31.436245 +2024,1,22,1,New South Wales,153.109755,-29.490222 +2023,2,16,1,New South Wales,150.244031,-30.989232 +2021,7,12,1,New South Wales,153.315839,-28.83683 +2023,10,30,1,New South Wales,152.203368,-32.229858 +2020,2,27,1,New South Wales,152.921471,-31.480814 +2021,7,5,1,New South Wales,150.642856,-34.395659 +2021,6,1,1,New South Wales,150.604128,-34.450495 +2023,11,14,1,New South Wales,153.096666,-29.491879 +2021,6,24,1,New South Wales,150.601322,-34.417354 +2022,4,21,1,New South Wales,152.141361,-32.73087 +2020,7,31,1,New South Wales,150.747633,-33.501137 +2020,11,3,1,New South Wales,153.346548,-28.910046 +2021,10,28,1,New South Wales,150.616307,-34.440907 +2023,10,25,1,New South Wales,149.316236,-36.06671 +2021,11,11,1,New South Wales,153.394982,-28.274429 +2020,1,20,1,New South Wales,153.104176,-29.485225 +2021,11,17,1,New South Wales,152.908978,-31.435541 +2022,10,10,1,New South Wales,153.291111,-28.360278 +2023,10,29,1,New South Wales,152.809107,-31.641968 +2021,7,6,1,New South Wales,150.603587,-34.419156 +2021,7,5,1,New South Wales,150.631755,-34.388214 +2023,8,25,1,New South Wales,152.213451,-32.242985 +2020,5,17,1,New South Wales,149.316856,-36.067117 +2021,4,23,1,New South Wales,153.282702,-29.001489 +2021,3,7,1,New South Wales,150.636062,-34.48552 +2020,6,26,1,New South Wales,153.321446,-28.816748 +2024,2,10,1,New South Wales,153.10748,-29.490128 +2024,6,29,1,New South Wales,152.929425,-31.456442 +2022,2,11,1,New South Wales,153.103758,-29.485571 +2021,9,28,1,New South Wales,153.390849,-28.738895 +2023,12,13,1,New South Wales,150.785196,-33.709666 +2021,2,28,1,New South Wales,150.609622,-34.419635 +2021,4,15,1,New South Wales,150.640027,-34.415438 +2021,7,10,1,New South Wales,153.291892,-28.867701 +2022,8,29,1,New South Wales,153.288143,-28.98796 +2023,8,23,1,New South Wales,150.835933,-34.072488 +2020,4,4,1,New South Wales,153.109448,-29.490524 +2021,5,12,1,New South Wales,150.609191,-34.420645 +2022,1,21,1,New South Wales,153.108178,-29.490623 +2024,8,21,1,New South Wales,152.386019,-31.914225 +2021,5,29,1,New South Wales,150.617282,-34.438762 +2023,10,24,1,New South Wales,152.791737,-31.526396 +2021,6,5,1,New South Wales,150.607162,-34.435715 +2020,9,30,1,New South Wales,153.095233,-29.483806 +2021,4,16,1,New South Wales,150.608261,-34.434962 +2021,10,30,1,New South Wales,152.064619,-32.699775 +2021,5,6,1,New South Wales,150.632948,-34.418809 +2021,1,6,1,New South Wales,152.06353,-32.706861 +2022,4,4,1,New South Wales,150.807228,-34.068105 +2023,4,30,1,New South Wales,150.856933,-34.072934 +2021,7,24,1,New South Wales,150.630645,-34.420639 +2024,1,19,1,New South Wales,152.817132,-31.169438 +2020,5,18,1,New South Wales,153.375432,-28.999887 +2023,10,6,1,New South Wales,151.008744,-34.045474 +2023,10,18,1,New South Wales,150.785124,-33.713876 +2024,6,9,1,New South Wales,152.541045,-32.058882 +2022,11,17,1,New South Wales,151.740357,-30.480107 +2021,5,10,1,New South Wales,150.624882,-34.399747 +2022,10,3,1,New South Wales,150.792357,-34.153305 +2020,6,18,1,New South Wales,153.007718,-28.625416 +2021,6,27,1,New South Wales,150.644409,-34.391866 +2023,10,12,1,New South Wales,153.427687,-28.626373 +2021,7,1,1,New South Wales,150.522664,-34.465801 +2021,6,19,1,New South Wales,150.513957,-34.446332 +2020,8,6,1,New South Wales,150.080328,-33.77411 +2021,8,27,1,New South Wales,150.913647,-33.94594 +2021,9,17,1,New South Wales,152.923632,-31.440969 +2021,4,25,1,New South Wales,150.63069,-34.388951 +2023,1,20,1,New South Wales,152.91638,-31.468126 +2022,8,3,1,New South Wales,150.795035,-34.143542 +2021,3,26,1,New South Wales,150.525438,-34.459971 +2021,6,2,1,New South Wales,150.63747,-34.488486 +2020,7,29,1,New South Wales,151.77068,-32.59321 +2021,1,5,1,New South Wales,150.994495,-34.142425 +2022,4,20,1,New South Wales,153.109342,-29.490385 +2021,5,21,1,New South Wales,150.630689,-34.387066 +2022,10,30,1,New South Wales,152.421401,-31.946553 +2021,2,20,1,New South Wales,152.17355,-32.72578 +2020,1,20,1,New South Wales,152.909758,-31.467259 +2020,11,11,1,New South Wales,150.010499,-36.556654 +2020,12,12,1,New South Wales,152.040714,-32.736745 +2020,2,2,1,New South Wales,152.103295,-32.759137 +2023,9,15,1,New South Wales,152.818343,-31.651946 +2021,5,7,1,New South Wales,150.615115,-34.435366 +2021,6,27,1,New South Wales,150.52302,-34.466268 +2023,12,19,1,New South Wales,153.103913,-29.48961 +2021,6,16,1,New South Wales,153.104096,-29.480672 +2022,12,21,1,New South Wales,153.101118,-29.49004 +2023,8,10,1,New South Wales,153.472453,-28.268646 +2023,9,25,1,New South Wales,153.273098,-28.931581 +2023,12,6,1,New South Wales,152.793922,-31.643396 +2022,9,12,1,New South Wales,152.000911,-32.729651 +2021,7,13,1,New South Wales,153.31217,-28.840513 +2023,12,11,1,New South Wales,149.548002,-33.516421 +2023,7,3,1,New South Wales,153.104916,-29.476782 +2021,9,10,1,New South Wales,150.979274,-29.779303 +2020,3,24,1,New South Wales,152.928887,-31.459167 +2021,4,7,1,New South Wales,150.607189,-34.422562 +2021,12,12,1,New South Wales,152.925969,-31.453137 +2023,4,2,1,New South Wales,152.911256,-31.465777 +2023,6,27,1,New South Wales,152.789189,-31.64041 +2021,9,6,1,New South Wales,150.524983,-34.495616 +2021,10,5,1,New South Wales,152.879032,-31.452558 +2021,4,12,1,New South Wales,150.609249,-34.420502 +2021,8,17,1,New South Wales,150.513044,-34.447774 +2021,4,30,1,New South Wales,150.63872,-34.48934 +2021,7,9,1,New South Wales,153.556187,-28.398598 +2021,5,11,1,New South Wales,150.628067,-34.389792 +2022,12,21,1,New South Wales,153.49754,-28.768431 +2023,11,10,1,New South Wales,152.914724,-31.479999 +2024,10,16,1,New South Wales,150.965833,-33.964722 +2022,9,10,1,New South Wales,153.561793,-28.383579 +2021,9,7,1,New South Wales,151.694853,-32.24532 +2023,8,3,1,New South Wales,152.209893,-31.560471 +2021,6,11,1,New South Wales,150.630108,-34.420782 +2022,3,7,1,New South Wales,152.113547,-32.763889 +2021,5,30,1,New South Wales,150.615789,-34.438453 +2021,7,14,1,New South Wales,150.513826,-34.446329 +2021,5,21,1,New South Wales,150.515324,-34.451607 +2021,6,21,1,New South Wales,150.513811,-34.446122 +2021,5,1,1,New South Wales,150.634489,-34.42011 +2023,10,14,1,New South Wales,152.904605,-31.443779 +2021,4,21,1,New South Wales,150.516308,-34.447038 +2023,2,4,1,New South Wales,153.555848,-28.398928 +2021,4,21,1,New South Wales,150.604556,-34.424476 +2021,5,16,1,New South Wales,150.637324,-34.423744 +2022,5,19,1,New South Wales,152.91574,-31.444719 +2022,10,15,1,New South Wales,152.948669,-30.415963 +2023,11,5,1,New South Wales,152.913215,-31.479773 +2021,5,28,1,New South Wales,150.617603,-34.438588 +2022,6,30,1,New South Wales,150.837478,-34.078737 +2023,10,8,1,New South Wales,150.983926,-34.094764 +2023,12,6,1,New South Wales,152.932654,-30.38791 +2021,7,13,1,New South Wales,149.347514,-33.502354 +2023,2,20,1,New South Wales,152.912566,-31.45219 +2021,8,10,1,New South Wales,152.756048,-31.631096 +2023,10,23,1,New South Wales,150.725647,-34.20747 +2021,6,25,1,New South Wales,150.514279,-34.447592 +2021,5,6,1,New South Wales,153.556471,-28.389677 +2022,8,30,1,New South Wales,149.313139,-36.296967 +2021,9,25,1,New South Wales,150.838978,-34.053416 +2023,8,31,1,New South Wales,153.395278,-28.95995 +2020,10,13,1,New South Wales,152.060844,-32.710711 +2023,2,6,1,New South Wales,152.985286,-30.324668 +2023,8,25,1,New South Wales,153.124549,-30.298884 +2023,8,1,1,New South Wales,152.911128,-31.441098 +2022,7,30,1,New South Wales,153.557389,-28.397143 +2023,7,7,1,New South Wales,153.012047,-30.421973 +2020,11,6,1,New South Wales,153.293102,-28.864616 +2021,3,15,1,New South Wales,150.609376,-34.420658 +2021,11,15,1,New South Wales,153.103532,-29.485482 +2024,7,24,1,New South Wales,150.996577,-33.995358 +2021,5,29,1,New South Wales,150.630841,-34.420634 +2022,9,1,1,New South Wales,152.90511,-30.43784 +2021,4,4,1,New South Wales,150.607143,-34.437545 +2021,4,21,1,New South Wales,150.610052,-34.419075 +2020,5,20,1,New South Wales,150.511437,-34.545781 +2020,8,17,1,New South Wales,153.400684,-28.257824 +2020,5,1,1,New South Wales,153.089722,-29.485713 +2020,11,22,1,New South Wales,152.879112,-29.661971 +2021,3,17,1,New South Wales,150.534726,-34.462403 +2023,2,28,1,New South Wales,153.314983,-28.949201 +2023,10,14,1,New South Wales,153.104197,-29.477371 +2020,11,5,1,New South Wales,153.383637,-28.692655 +2021,5,21,1,New South Wales,150.515523,-34.451872 +2021,5,8,1,New South Wales,150.61559,-34.435492 +2023,9,30,1,New South Wales,153.314983,-28.949201 +2022,12,8,1,New South Wales,150.738184,-34.306234 +2021,6,22,1,New South Wales,150.603271,-34.439381 +2021,11,3,1,New South Wales,153.288698,-28.936406 +2020,1,7,1,New South Wales,152.013478,-32.73255 +2021,6,20,1,New South Wales,150.628025,-34.42094 +2023,5,5,1,New South Wales,153.49553,-28.693291 +2021,6,1,1,New South Wales,150.518162,-34.446562 +2022,7,3,1,New South Wales,151.025245,-29.778838 +2022,2,16,1,New South Wales,153.108178,-29.490507 +2020,11,13,1,New South Wales,150.01112,-36.547428 +2021,7,15,1,New South Wales,153.395443,-28.95972 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2020,1,14,1,New South Wales,150.790474,-34.190016 +2023,9,24,1,New South Wales,150.785627,-33.710166 +2021,6,12,1,New South Wales,150.604101,-34.438892 +2021,6,15,1,New South Wales,150.524079,-34.45256 +2021,5,20,1,New South Wales,153.404449,-28.644927 +2021,3,15,1,New South Wales,150.635208,-34.487992 +2020,4,21,1,New South Wales,150.055816,-33.780027 +2024,2,23,1,New South Wales,150.988775,-34.027732 +2023,6,24,1,New South Wales,149.937727,-36.656364 +2021,7,5,1,New South Wales,153.271235,-29.012361 +2021,5,23,1,New South Wales,150.616457,-34.434473 +2023,11,1,1,New South Wales,152.925261,-31.45393 +2023,11,1,1,New South Wales,152.704503,-31.533373 +2022,11,24,1,New South Wales,150.799325,-34.213357 +2021,2,28,1,New South Wales,150.615931,-34.433074 +2021,7,14,1,New South Wales,150.521502,-34.465706 +2023,9,25,1,New South Wales,153.178153,-28.863762 +2021,10,26,1,New South Wales,153.053889,-30.233101 +2021,1,23,1,New South Wales,153.109755,-29.490166 +2020,10,18,1,New South Wales,152.060844,-32.710711 +2023,11,9,1,New South Wales,150.785265,-33.716973 +2023,10,9,1,New South Wales,152.93177,-31.474266 +2020,11,,1,New South Wales,153.320345,-28.824308 +2020,10,28,1,New South Wales,153.339182,-28.872021 +2021,6,24,1,New South Wales,150.601546,-34.417881 +2023,6,23,1,New South Wales,153.46202,-28.650301 +2021,1,10,1,New South Wales,152.067513,-32.748356 +2021,4,23,1,New South Wales,150.637116,-34.485216 +2024,1,11,1,New South Wales,150.786272,-33.7064 +2021,6,12,1,New South Wales,150.515895,-34.44703 +2023,12,1,1,New South Wales,152.857337,-30.314076 +2021,5,20,1,New South Wales,152.882485,-31.425961 +2024,1,25,1,New South Wales,153.109755,-29.490189 +2021,4,30,1,New South Wales,150.616807,-34.399535 +2021,4,21,1,New South Wales,153.53868,-28.58252 +2021,9,26,1,New South Wales,150.259326,-30.414646 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2021,5,4,1,New South Wales,150.638487,-34.490643 +2022,10,2,1,New South Wales,153.062266,-28.492487 +2021,4,25,1,New South Wales,150.629451,-34.388557 +2020,10,23,1,New South Wales,149.984303,-36.560469 +2021,8,27,1,New South Wales,153.261976,-28.808246 +2021,5,7,1,New South Wales,150.523106,-34.452324 +2021,4,13,1,New South Wales,153.007023,-30.59987 +2021,5,8,1,New South Wales,150.604282,-34.426842 +2021,5,18,1,New South Wales,150.640791,-34.494257 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2021,5,19,1,New South Wales,150.521621,-34.465726 +2020,11,4,1,New South Wales,149.96897,-36.58553 +2021,6,1,1,New South Wales,150.52171,-34.465683 +2021,7,21,1,New South Wales,153.60117,-28.70899 +2021,4,30,1,New South Wales,153.314983,-28.949201 +2021,9,19,1,New South Wales,153.104348,-29.477628 +2021,5,4,1,New South Wales,150.522181,-34.453414 +2021,5,21,1,New South Wales,150.630338,-34.395255 +2021,4,30,1,New South Wales,150.616871,-34.399582 +2023,11,2,1,New South Wales,152.192089,-32.216754 +2021,4,23,1,New South Wales,150.6292,-34.395133 +2021,7,12,1,New South Wales,150.522109,-34.464348 +2023,5,20,1,New South Wales,150.785187,-33.716996 +2023,11,10,1,New South Wales,153.07276,-30.884454 +2023,2,16,1,New South Wales,152.785915,-31.62955 +2022,2,2,1,New South Wales,152.067434,-32.708155 +2021,4,30,1,New South Wales,150.615033,-34.429441 +2021,9,12,1,New South Wales,150.514384,-34.444772 +2020,12,16,1,New South Wales,152.060935,-32.710089 +2023,8,12,1,New South Wales,153.110554,-29.490026 +2021,6,16,1,New South Wales,150.630264,-34.42101 +2022,10,16,1,New South Wales,153.445597,-28.874167 +2024,4,7,1,New South Wales,150.984453,-34.095222 +2021,3,7,1,New South Wales,150.514217,-34.445995 +2021,7,6,1,New South Wales,150.522075,-34.465853 +2021,5,25,1,New South Wales,150.631047,-34.388236 +2021,5,19,1,New South Wales,150.521498,-34.465841 +2022,11,30,1,New South Wales,152.063724,-32.706574 +2021,7,12,1,New South Wales,150.522173,-34.464367 +2021,6,7,1,New South Wales,150.62706,-34.389655 +2021,8,25,1,New South Wales,152.898285,-31.460223 +2023,9,21,1,New South Wales,152.608995,-30.343746 +2021,5,27,1,New South Wales,150.630677,-34.420658 +2021,5,5,1,New South Wales,150.603381,-34.427149 +2022,11,3,1,New South Wales,152.895614,-31.426997 +2020,1,26,1,New South Wales,152.922383,-31.440204 +2021,4,21,1,New South Wales,150.609467,-34.418983 +2024,1,20,1,New South Wales,150.785257,-33.71912 +2021,12,5,1,New South Wales,152.900315,-31.474141 +2023,12,13,1,New South Wales,152.72551,-30.221585 +2022,9,8,1,New South Wales,150.895931,-34.020579 +2021,2,9,1,New South Wales,151.774065,-32.590289 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2021,4,17,1,New South Wales,150.609665,-34.419663 +2021,10,25,1,New South Wales,153.229587,-28.889132 +2021,10,31,1,New South Wales,150.823073,-34.15014 +2021,11,29,1,New South Wales,153.323016,-28.829782 +2021,4,21,1,New South Wales,150.617065,-34.433754 +2021,6,4,1,New South Wales,150.636688,-34.48803 +2021,3,5,1,New South Wales,150.609997,-34.432823 +2021,5,10,1,New South Wales,150.639148,-34.491909 +2021,1,25,1,New South Wales,152.911078,-31.429558 +2020,10,28,1,New South Wales,153.463836,-28.320689 +2022,2,10,1,New South Wales,150.982615,-34.130538 +2021,12,13,1,New South Wales,153.018709,-28.766222 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2021,7,15,1,New South Wales,150.625076,-34.386741 +2021,11,3,1,New South Wales,153.31452,-28.82599 +2021,5,1,1,New South Wales,150.610333,-34.420262 +2023,11,7,1,New South Wales,150.786172,-33.706021 +2022,4,25,1,New South Wales,153.334641,-28.813914 +2023,8,22,1,New South Wales,150.80927,-34.102502 +2021,4,20,1,New South Wales,150.614515,-34.429287 +2021,7,4,1,New South Wales,150.51414,-34.44639 +2021,12,4,1,New South Wales,152.926365,-31.455648 +2024,4,1,1,New South Wales,152.947353,-30.43151 +2020,10,12,1,New South Wales,149.887989,-36.587028 +2022,6,15,1,New South Wales,150.780214,-34.199921 +2021,7,13,1,New South Wales,150.626523,-34.38557 +2021,4,20,1,New South Wales,150.604564,-34.424557 +2024,8,21,1,New South Wales,152.385525,-31.911916 +2021,11,4,1,New South Wales,153.108237,-29.490367 +2024,1,26,1,New South Wales,153.107979,-29.49039 +2024,9,29,1,New South Wales,150.839405,-34.064692 +2021,8,16,1,New South Wales,150.514422,-34.446053 +2021,8,9,1,New South Wales,150.521307,-34.465702 +2022,5,15,1,New South Wales,152.063819,-32.706596 +2022,10,3,1,New South Wales,152.995108,-30.408846 +2024,1,11,1,New South Wales,149.422883,-33.709615 +2020,8,24,1,New South Wales,152.879669,-31.449383 +2021,4,27,1,New South Wales,150.602919,-34.435704 +2020,7,5,1,New South Wales,153.30734,-28.97709 +2022,1,6,1,New South Wales,153.555267,-28.408776 +2021,4,6,1,New South Wales,152.906909,-31.444276 +2024,1,6,1,New South Wales,150.784845,-33.713508 +2020,8,13,1,New South Wales,152.713667,-31.353747 +2020,9,29,1,New South Wales,152.924965,-31.449531 +2021,5,29,1,New South Wales,150.63084,-34.42067 +2020,10,13,1,New South Wales,149.930096,-36.638123 +2024,7,26,1,New South Wales,150.828654,-29.65103 +2021,5,31,1,New South Wales,150.517229,-34.446444 +2020,10,19,1,New South Wales,149.930096,-36.638123 +2022,1,22,1,New South Wales,152.067434,-32.708155 +2021,4,26,1,New South Wales,150.515454,-34.440629 +2024,2,22,1,New South Wales,150.784721,-33.71335 +2023,11,4,1,New South Wales,153.097706,-29.491385 +2024,1,9,1,New South Wales,153.103838,-29.489591 +2022,12,9,1,New South Wales,152.877046,-31.081341 +2021,5,9,1,New South Wales,150.518345,-34.451389 +2021,6,28,1,New South Wales,150.594981,-34.411982 +2020,11,6,1,New South Wales,149.995573,-36.572611 +2023,7,7,1,New South Wales,152.934926,-30.382351 +2021,4,1,1,New South Wales,150.615635,-34.434294 +2022,4,17,1,New South Wales,150.995689,-34.048358 +2021,8,9,1,New South Wales,150.631625,-34.388202 +2020,2,15,1,New South Wales,152.114218,-32.094306 +2023,7,30,1,New South Wales,153.117442,-28.618439 +2021,5,25,1,New South Wales,150.526571,-34.469532 +2021,6,2,1,New South Wales,150.519139,-34.447366 +2020,10,20,1,New South Wales,153.273941,-28.820088 +2020,3,23,1,New South Wales,150.70213,-33.50371 +2021,3,17,1,New South Wales,150.659312,-34.458074 +2022,6,4,1,New South Wales,153.511481,-28.80989 +2020,11,6,1,New South Wales,150.007338,-36.56122 +2021,6,26,1,New South Wales,150.597066,-34.417054 +2022,11,23,1,New South Wales,152.786446,-31.629178 +2020,2,4,1,New South Wales,153.103798,-29.485158 +2023,9,12,1,New South Wales,152.810191,-31.652671 +2023,9,7,1,New South Wales,150.989451,-34.027632 +2021,8,21,1,New South Wales,150.644713,-34.399661 +2023,11,14,1,New South Wales,153.099809,-29.491604 +2023,8,31,1,New South Wales,153.02308,-28.428158 +2021,10,3,1,New South Wales,151.110282,-29.762752 +2021,6,2,1,New South Wales,150.63969,-34.399186 +2023,10,12,1,New South Wales,150.78569,-33.70596 +2024,1,16,1,New South Wales,153.10814,-29.490245 +2020,10,29,1,New South Wales,149.976368,-36.555504 +2020,5,27,1,New South Wales,153.238214,-28.354864 +2023,8,28,1,New South Wales,153.30184,-28.822956 +2021,6,13,1,New South Wales,150.522413,-34.465823 +2020,11,6,1,New South Wales,150.007338,-36.56122 +2021,6,18,1,New South Wales,150.604274,-34.438913 +2020,5,3,1,New South Wales,150.02023,-34.83474 +2021,7,10,1,New South Wales,150.640965,-34.393287 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2021,7,27,1,New South Wales,150.63084,-34.420652 +2021,1,25,1,New South Wales,152.415109,-31.933259 +2023,9,19,1,New South Wales,150.784129,-33.719047 +2022,7,27,1,New South Wales,152.81849,-31.117549 +2023,9,5,1,New South Wales,150.747599,-33.50904 +2021,6,1,1,New South Wales,150.657899,-34.456036 +2020,10,11,1,New South Wales,149.952917,-36.681355 +2021,12,4,1,New South Wales,152.113797,-32.718954 +2020,11,,1,New South Wales,150.519407,-34.488077 +2023,11,28,1,New South Wales,153.105061,-29.489708 +2020,8,9,1,New South Wales,153.092369,-29.488321 +2021,5,17,1,New South Wales,150.63727,-34.423752 +2021,9,22,1,New South Wales,150.200782,-29.350259 +2021,11,19,1,New South Wales,153.555804,-28.399086 +2023,2,19,1,New South Wales,150.846368,-34.069925 +2020,10,13,1,New South Wales,153.529918,-28.68447 +2020,10,14,1,New South Wales,149.880784,-36.581514 +2021,4,8,1,New South Wales,152.926767,-31.454727 +2021,7,16,1,New South Wales,150.627122,-34.42058 +2020,10,26,1,New South Wales,153.313688,-28.822469 +2024,8,27,1,New South Wales,152.698143,-31.816765 +2021,3,15,1,New South Wales,150.603272,-34.439326 +2021,10,10,1,New South Wales,151.936835,-30.894257 +2024,5,13,1,New South Wales,152.510315,-32.086594 +2021,8,7,1,New South Wales,153.215212,-28.508764 +2023,6,5,1,New South Wales,150.883972,-34.040859 +2021,6,2,1,New South Wales,150.60437,-34.437833 +2021,7,13,1,New South Wales,152.412593,-31.93256 +2021,4,21,1,New South Wales,150.639069,-34.418963 +2020,10,,1,New South Wales,151.69649,-30.403711 +2021,7,6,1,New South Wales,152.515432,-32.062371 +2020,1,3,1,New South Wales,153.09485,-29.494295 +2021,4,27,1,New South Wales,150.624601,-34.388165 +2021,9,23,1,New South Wales,152.056954,-32.737563 +2023,8,26,1,New South Wales,151.23296,-33.119088 +2021,5,20,1,New South Wales,153.001165,-29.088072 +2020,5,2,1,New South Wales,153.089719,-29.485716 +2020,10,3,1,New South Wales,153.101719,-29.489372 +2020,10,6,1,New South Wales,152.8081,-31.547065 +2022,10,29,1,New South Wales,153.451256,-28.589934 +2021,10,20,1,New South Wales,153.453198,-28.646734 +2023,4,30,1,New South Wales,150.735005,-34.297459 +2021,5,15,1,New South Wales,150.614887,-34.43382 +2021,5,13,1,New South Wales,150.518634,-34.454856 +2021,7,29,1,New South Wales,150.520633,-34.465652 +2020,,,1,New South Wales,152.82929,-31.26329 +2021,11,29,1,New South Wales,152.915674,-31.484398 +2020,8,19,1,New South Wales,150.427926,-34.469881 +2024,3,8,1,New South Wales,150.78486,-33.713636 +2021,7,22,1,New South Wales,150.603392,-34.418359 +2021,5,2,1,New South Wales,150.606597,-34.455917 +2020,4,2,1,New South Wales,153.297303,-28.982788 +2021,5,6,1,New South Wales,150.637332,-34.423861 +2022,4,17,1,New South Wales,153.110511,-29.49018 +2021,4,9,1,New South Wales,150.524328,-34.45297 +2022,7,24,1,New South Wales,153.109235,-29.490876 +2021,7,30,1,New South Wales,152.860959,-31.459627 +2021,4,5,1,New South Wales,150.615814,-34.436434 +2021,6,17,1,New South Wales,153.399729,-28.260489 +2021,1,12,1,New South Wales,153.133308,-28.613503 +2022,9,27,1,New South Wales,152.632467,-31.34061 +2021,9,9,1,New South Wales,150.979762,-34.126957 +2020,12,31,1,New South Wales,149.68428,-33.540825 +2023,4,16,1,New South Wales,153.304698,-28.816233 +2021,6,24,1,New South Wales,150.514772,-34.444915 +2020,12,5,1,New South Wales,153.103929,-29.485356 +2020,1,15,1,New South Wales,150.790726,-34.182683 +2020,6,17,1,New South Wales,150.056471,-33.776978 +2020,1,1,1,New South Wales,153.60197,-28.64736 +2022,8,21,1,New South Wales,153.299672,-28.650831 +2023,9,20,1,New South Wales,152.968676,-30.246519 +2021,4,20,1,New South Wales,150.636242,-34.485695 +2021,5,3,1,New South Wales,150.637266,-34.423869 +2021,5,31,1,New South Wales,150.640292,-34.398278 +2021,8,7,1,New South Wales,150.604839,-34.425221 +2020,10,16,1,New South Wales,151.6662,-30.501562 +2024,1,25,1,New South Wales,150.785159,-33.70518 +2021,4,22,1,New South Wales,150.873769,-34.035121 +2021,5,10,1,New South Wales,150.521091,-34.466725 +2021,3,30,1,New South Wales,150.659193,-34.45919 +2023,9,3,1,New South Wales,149.552128,-33.491219 +2021,6,25,1,New South Wales,150.521091,-34.465634 +2021,12,15,1,New South Wales,153.385132,-28.837392 +2020,2,20,1,New South Wales,152.921528,-31.473025 +2023,9,5,1,New South Wales,152.816037,-31.449902 +2021,5,26,1,New South Wales,150.516513,-34.450035 +2021,8,30,1,New South Wales,152.930481,-31.449625 +2022,,,1,New South Wales,150.554112,-34.498 +2024,2,18,1,New South Wales,150.558511,-34.519362 +2020,3,26,1,New South Wales,152.804879,-31.142198 +2021,3,30,1,New South Wales,152.85428,-31.466441 +2021,6,4,1,New South Wales,150.630797,-34.420651 +2020,10,21,1,New South Wales,150.650302,-33.54771 +2021,3,20,1,New South Wales,150.533238,-34.479691 +2020,3,22,1,New South Wales,153.12565,-30.297388 +2023,6,14,1,New South Wales,153.431711,-28.835793 +2021,5,15,1,New South Wales,150.520251,-34.453915 +2021,5,31,1,New South Wales,150.524075,-34.471464 +2020,10,19,1,New South Wales,153.40879,-28.963196 +2021,9,17,1,New South Wales,152.824668,-29.505196 +2021,9,12,1,New South Wales,151.046985,-34.0268 +2020,9,23,1,New South Wales,153.03365,-30.382752 +2021,1,13,1,New South Wales,152.926188,-31.463721 +2022,11,10,1,New South Wales,152.927492,-31.465838 +2021,8,7,1,New South Wales,150.642608,-34.397908 +2023,7,3,1,New South Wales,153.103731,-29.485697 +2021,5,14,1,New South Wales,152.921041,-31.448924 +2022,11,20,1,New South Wales,152.78933,-30.918792 +2024,3,22,1,New South Wales,152.929451,-31.450749 +2021,5,12,1,New South Wales,150.640042,-34.491863 +2023,9,23,1,New South Wales,150.784515,-33.717257 +2022,9,28,1,New South Wales,151.081155,-33.138034 +2023,10,27,1,New South Wales,152.203368,-32.229858 +2023,10,1,1,New South Wales,150.784015,-33.719168 +2021,7,5,1,New South Wales,149.04158,-30.874796 +2021,8,31,1,New South Wales,153.409947,-29.007147 +2021,3,13,1,New South Wales,150.535234,-34.462179 +2020,10,9,1,New South Wales,152.908687,-29.620256 +2020,5,24,1,New South Wales,153.094654,-29.488489 +2021,3,6,1,New South Wales,152.24139,-30.027688 +2021,10,18,1,New South Wales,152.924043,-31.453973 +2022,7,17,1,New South Wales,152.894749,-31.445575 +2021,8,6,1,New South Wales,150.632603,-34.418324 +2021,9,25,1,New South Wales,152.980949,-28.617599 +2021,5,8,1,New South Wales,150.51839,-34.451335 +2021,11,26,1,New South Wales,151.660868,-32.686028 +2022,10,3,1,New South Wales,152.995047,-30.410423 +2021,6,12,1,New South Wales,150.613646,-34.431938 +2023,9,7,1,New South Wales,153.547463,-28.676052 +2022,1,27,1,New South Wales,153.110506,-29.490124 +2021,5,8,1,New South Wales,150.521257,-34.466629 +2021,5,2,1,New South Wales,150.621137,-34.398727 +2022,7,28,1,New South Wales,152.811419,-31.138631 +2021,4,14,1,New South Wales,152.216162,-30.083636 +2021,5,18,1,New South Wales,150.630839,-34.390225 +2021,6,23,1,New South Wales,150.601819,-34.418202 +2021,6,24,1,New South Wales,150.644286,-34.393135 +2020,2,11,1,New South Wales,152.899825,-31.474198 +2021,9,20,1,New South Wales,150.513729,-34.446327 +2021,4,30,1,New South Wales,150.616347,-34.436057 +2024,1,29,1,New South Wales,152.880313,-29.683038 +2022,9,25,1,New South Wales,152.086403,-32.728503 +2024,2,6,1,New South Wales,153.105249,-29.489699 +2021,10,29,1,New South Wales,152.170798,-32.730557 +2023,10,13,1,New South Wales,153.124516,-30.296554 +2021,5,14,1,New South Wales,150.637325,-34.423726 +2022,6,1,1,New South Wales,152.916352,-31.445136 +2022,9,20,1,New South Wales,152.90803,-30.1761 +2021,9,9,1,New South Wales,152.374662,-31.910518 +2021,5,28,1,New South Wales,150.630819,-34.420643 +2023,11,11,1,New South Wales,151.793845,-32.697419 +2021,11,2,1,New South Wales,152.982149,-30.438 +2021,6,6,1,New South Wales,150.630573,-34.420863 +2021,5,4,1,New South Wales,150.606579,-34.457674 +2021,11,2,1,New South Wales,152.992487,-30.401081 +2022,8,1,1,New South Wales,150.808987,-34.208693 +2021,7,5,1,New South Wales,150.643764,-34.395099 +2021,7,5,1,New South Wales,150.522404,-34.465751 +2021,4,16,1,New South Wales,150.63133,-34.393254 +2021,8,11,1,New South Wales,150.517971,-34.43757 +2023,8,26,1,New South Wales,152.214313,-32.253276 +2022,12,15,1,New South Wales,151.603034,-30.493343 +2021,6,1,1,New South Wales,150.519975,-34.454784 +2021,6,28,1,New South Wales,150.523076,-34.466233 +2024,1,21,1,New South Wales,150.791592,-34.195962 +2021,5,3,1,New South Wales,150.621137,-34.398718 +2021,10,11,1,New South Wales,153.277434,-28.679647 +2021,4,30,1,New South Wales,150.614991,-34.429413 +2021,5,12,1,New South Wales,150.51868,-34.437142 +2024,1,16,1,New South Wales,152.737532,-30.892941 +2023,11,28,1,New South Wales,153.109315,-29.49046 +2020,1,4,1,New South Wales,152.065329,-32.699763 +2021,7,19,1,New South Wales,152.564568,-32.005825 +2020,10,17,1,New South Wales,153.182759,-28.721695 +2022,11,20,1,New South Wales,150.84661,-34.03158 +2021,5,13,1,New South Wales,150.516222,-34.449227 +2021,5,16,1,New South Wales,150.52042,-34.454099 +2021,4,24,1,New South Wales,150.637877,-34.485627 +2021,2,19,1,New South Wales,153.555824,-28.399102 +2024,8,28,1,New South Wales,152.283483,-32.422788 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2024,3,22,1,New South Wales,152.380487,-31.924988 +2021,7,19,1,New South Wales,153.316211,-28.822511 +2021,7,24,1,New South Wales,151.00442,-34.048601 +2021,10,7,1,New South Wales,152.804436,-31.469642 +2021,3,12,1,New South Wales,153.094397,-30.340176 +2024,7,24,1,New South Wales,151.766346,-32.456841 +2021,6,25,1,New South Wales,152.922232,-31.477446 +2021,5,5,1,New South Wales,150.659334,-34.45729 +2023,7,16,1,New South Wales,150.785882,-33.709225 +2023,1,6,1,New South Wales,152.879356,-31.44873 +2023,10,30,1,New South Wales,150.987969,-34.028286 +2020,9,10,1,New South Wales,150.23157,-34.26253 +2021,7,9,1,New South Wales,150.640864,-34.393781 +2020,10,3,1,New South Wales,153.157596,-28.517053 +2021,1,18,1,New South Wales,153.10379,-29.485669 +2024,3,2,1,New South Wales,150.785581,-33.712767 +2021,3,18,1,New South Wales,149.577506,-33.419281 +2021,5,7,1,New South Wales,152.914709,-31.455657 +2020,7,14,1,New South Wales,152.916405,-31.481811 +2022,9,13,1,New South Wales,152.875432,-31.17135 +2021,7,6,1,New South Wales,150.642088,-34.397077 +2024,1,3,1,New South Wales,153.110517,-29.490227 +2021,7,3,1,New South Wales,150.309176,-29.065392 +2021,6,3,1,New South Wales,150.605772,-34.437536 +2022,2,3,1,New South Wales,152.896191,-31.444973 +2021,6,30,1,New South Wales,150.52161,-34.465744 +2020,5,13,1,New South Wales,149.36338,-36.00758 +2022,11,4,1,New South Wales,153.629481,-28.637406 +2021,8,9,1,New South Wales,150.991425,-34.070244 +2020,10,13,1,New South Wales,152.967403,-28.5216 +2021,4,19,1,New South Wales,152.24139,-30.027688 +2020,7,11,1,New South Wales,153.04869,-30.910394 +2021,11,28,1,New South Wales,152.883229,-31.428791 +2023,7,5,1,New South Wales,151.78529,-32.681213 +2020,11,4,1,New South Wales,149.943147,-36.549371 +2023,11,24,1,New South Wales,152.915116,-29.590771 +2021,6,4,1,New South Wales,150.604038,-34.427008 +2021,6,22,1,New South Wales,150.52058,-34.45385 +2021,6,1,1,New South Wales,150.52148,-34.465732 +2021,6,6,1,New South Wales,150.627027,-34.389664 +2021,7,8,1,New South Wales,150.597491,-34.41662 +2021,9,26,1,New South Wales,152.832,-31.26349 +2021,8,24,1,New South Wales,152.404167,-31.945815 +2021,6,6,1,New South Wales,150.518802,-34.44735 +2024,3,1,1,New South Wales,150.784794,-33.713614 +2020,10,23,1,New South Wales,152.903199,-29.337796 +2021,6,4,1,New South Wales,150.623638,-34.38876 +2021,4,15,1,New South Wales,150.626408,-34.386154 +2021,9,13,1,New South Wales,150.52937,-34.47278 +2021,7,26,1,New South Wales,150.517776,-34.44046 +2024,2,13,1,New South Wales,152.794392,-31.643891 +2022,8,30,1,New South Wales,149.322894,-36.299008 +2021,4,27,1,New South Wales,150.637772,-34.488582 +2021,6,24,1,New South Wales,150.520336,-34.465763 +2022,10,1,1,New South Wales,153.60072,-28.67354 +2022,3,20,1,New South Wales,152.90797,-31.435877 +2023,12,22,1,New South Wales,150.990528,-34.033164 +2021,3,7,1,New South Wales,150.603468,-34.435517 +2021,6,3,1,New South Wales,150.606291,-34.437646 +2020,4,7,1,New South Wales,153.10944,-29.490572 +2021,3,7,1,New South Wales,150.603468,-34.435517 +2020,10,17,1,New South Wales,152.900474,-31.473876 +2023,4,11,1,New South Wales,153.344106,-28.749727 +2021,3,23,1,New South Wales,150.608357,-34.422432 +2021,4,23,1,New South Wales,150.605564,-34.433367 +2021,4,22,1,New South Wales,150.630921,-34.388486 +2023,4,30,1,New South Wales,153.314983,-28.949201 +2022,6,21,1,New South Wales,152.86554,-29.64283 +2023,3,4,1,New South Wales,150.973154,-32.180879 +2020,11,7,1,New South Wales,150.007338,-36.56122 +2020,1,21,1,New South Wales,152.884625,-31.430898 +2020,11,8,1,New South Wales,150.01112,-36.547428 +2021,5,8,1,New South Wales,150.638973,-34.491536 +2021,8,27,1,New South Wales,153.087037,-30.339419 +2023,9,21,1,New South Wales,151.058854,-29.742759 +2020,9,30,1,New South Wales,152.215502,-30.082651 +2021,9,26,1,New South Wales,152.750475,-28.894914 +2020,4,5,1,New South Wales,153.083321,-29.074898 +2021,4,7,1,New South Wales,153.427889,-28.989853 +2022,12,7,1,New South Wales,152.787183,-31.638302 +2021,11,26,1,New South Wales,152.921586,-31.448897 +2023,9,4,1,New South Wales,152.901105,-30.500138 +2020,12,27,1,New South Wales,152.941743,-30.494048 +2023,6,19,1,New South Wales,151.058615,-29.740307 +2021,8,11,1,New South Wales,150.645795,-34.397888 +2024,2,19,1,New South Wales,150.785963,-33.708834 +2023,3,6,1,New South Wales,152.906748,-31.448736 +2021,3,28,1,New South Wales,150.604381,-34.440133 +2024,6,8,1,New South Wales,152.401764,-31.920014 +2021,12,20,1,New South Wales,153.10423,-29.477301 +2021,10,29,1,New South Wales,150.309752,-29.065603 +2021,4,20,1,New South Wales,150.640247,-34.41574 +2020,5,22,1,New South Wales,153.492997,-28.662895 +2024,1,5,1,New South Wales,152.92086,-30.50407 +2023,11,16,1,New South Wales,153.103865,-29.489615 +2021,8,25,1,New South Wales,151.489738,-30.654909 +2021,7,10,1,New South Wales,150.631038,-34.388191 +2021,1,29,1,New South Wales,153.109396,-29.490488 +2023,9,12,1,New South Wales,152.793255,-31.642289 +2021,7,3,1,New South Wales,150.627821,-34.390815 +2022,11,28,1,New South Wales,152.788781,-30.895519 +2022,4,4,1,New South Wales,153.103956,-29.489559 +2021,10,4,1,New South Wales,153.49357,-28.656766 +2024,1,16,1,New South Wales,152.729513,-30.898293 +2021,7,15,1,New South Wales,150.515808,-34.44481 +2022,5,5,1,New South Wales,152.924755,-31.443199 +2021,4,22,1,New South Wales,150.609158,-34.418742 +2022,3,20,1,New South Wales,151.703538,-32.692892 +2022,1,14,1,New South Wales,150.985777,-34.091422 +2021,1,10,1,New South Wales,153.108226,-29.490213 +2022,5,28,1,New South Wales,152.072576,-32.722656 +2020,7,2,1,New South Wales,151.077654,-29.779602 +2021,8,5,1,New South Wales,153.60237,-28.69032 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2022,11,11,1,New South Wales,153.519027,-28.231036 +2021,3,4,1,New South Wales,150.522442,-34.456024 +2021,6,16,1,New South Wales,150.513885,-34.446204 +2023,12,31,1,New South Wales,153.063541,-29.466279 +2020,1,21,1,New South Wales,153.104267,-29.479939 +2022,3,22,1,New South Wales,153.433,-28.869424 +2020,10,24,1,New South Wales,149.96897,-36.58553 +2021,12,8,1,New South Wales,151.97091,-32.173952 +2022,2,14,1,New South Wales,152.063539,-32.706539 +2020,12,27,1,New South Wales,153.104149,-29.478833 +2022,11,24,1,New South Wales,153.298056,-28.900407 +2020,11,4,1,New South Wales,149.931388,-36.568584 +2023,7,30,1,New South Wales,153.516648,-28.689112 +2022,7,11,1,New South Wales,153.110517,-29.490199 +2021,6,18,1,New South Wales,150.618573,-34.435848 +2020,11,21,1,New South Wales,153.091688,-29.488051 +2021,2,25,1,New South Wales,150.634877,-34.485074 +2021,10,11,1,New South Wales,153.629227,-28.638043 +2021,9,24,1,New South Wales,153.395049,-28.959848 +2021,12,11,1,New South Wales,153.101687,-29.489185 +2023,9,28,1,New South Wales,153.299324,-28.888717 +2021,5,27,1,New South Wales,150.632259,-34.388458 +2021,3,16,1,New South Wales,153.302529,-28.848174 +2021,6,11,1,New South Wales,150.516359,-34.447526 +2023,9,14,1,New South Wales,153.09592,-29.484642 +2021,3,15,1,New South Wales,150.51718,-34.451428 +2021,3,26,1,New South Wales,150.534713,-34.462132 +2022,11,13,1,New South Wales,152.926667,-31.464081 +2021,7,7,1,New South Wales,150.642165,-34.396277 +2024,2,16,1,New South Wales,152.063709,-32.70658 +2021,3,10,1,New South Wales,153.103715,-29.485753 +2022,2,1,1,New South Wales,152.979774,-29.037676 +2022,8,6,1,New South Wales,150.800502,-34.239726 +2021,7,1,1,New South Wales,152.081806,-32.734519 +2022,9,18,1,New South Wales,153.555987,-28.398817 +2023,2,14,1,New South Wales,152.025636,-32.127955 +2020,12,14,1,New South Wales,153.231141,-28.88938 +2022,2,23,1,New South Wales,153.557263,-28.397093 +2022,10,16,1,New South Wales,152.904395,-31.446329 +2023,2,12,1,New South Wales,150.623927,-33.450024 +2021,4,25,1,New South Wales,150.610302,-34.419071 +2020,12,6,1,New South Wales,153.104219,-29.479566 +2023,12,17,1,,152.938501,-31.782566 +2020,10,11,1,New South Wales,150.808987,-34.208693 +2021,12,15,1,New South Wales,152.917667,-31.439834 +2021,5,12,1,New South Wales,150.627338,-34.398307 +2021,2,22,1,New South Wales,150.516839,-34.447869 +2021,6,17,1,New South Wales,150.520784,-34.4657 +2021,6,21,1,New South Wales,150.602476,-34.439013 +2021,4,19,1,New South Wales,150.616835,-34.430378 +2024,4,6,1,New South Wales,150.984352,-34.093936 +2021,9,7,1,New South Wales,151.654866,-32.685958 +2021,10,5,1,New South Wales,152.905244,-31.465732 +2024,6,13,1,New South Wales,152.37447,-31.915642 +2020,1,5,1,New South Wales,153.094826,-29.488984 +2020,11,,1,New South Wales,150.556893,-34.363394 +2021,9,9,1,New South Wales,150.808987,-34.208693 +2023,4,6,1,New South Wales,151.520047,-30.530395 +2023,3,27,1,New South Wales,153.318297,-28.82451 +2021,4,14,1,New South Wales,149.281556,-36.060556 +2021,6,8,1,New South Wales,150.604184,-34.437893 +2021,5,3,1,New South Wales,150.604092,-34.438044 +2024,6,21,1,New South Wales,152.474401,-31.939329 +2022,11,3,1,New South Wales,152.916488,-31.444854 +2020,1,30,1,New South Wales,153.335403,-28.87187 +2023,4,9,1,New South Wales,152.927951,-31.464704 +2023,5,10,1,New South Wales,150.785179,-33.716422 +2021,7,10,1,New South Wales,153.314617,-28.83946 +2021,3,16,1,New South Wales,153.307505,-28.849854 +2021,5,3,1,New South Wales,150.621169,-34.398764 +2022,9,19,1,New South Wales,152.90835,-30.17426 +2023,6,20,1,New South Wales,152.101945,-32.734865 +2021,5,3,1,New South Wales,150.521455,-34.452939 +2020,9,2,1,New South Wales,150.106794,-33.777078 +2021,5,7,1,New South Wales,150.605738,-34.437563 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2022,10,12,1,New South Wales,153.464582,-28.715046 +2021,5,17,1,New South Wales,150.530584,-34.470019 +2021,5,8,1,New South Wales,150.609212,-34.420655 +2023,6,1,1,New South Wales,150.8006,-34.20234 +2022,2,12,1,New South Wales,150.999829,-34.077324 +2022,9,20,1,New South Wales,153.42258,-29.019311 +2020,12,7,1,New South Wales,153.09172,-29.487906 +2020,11,2,1,New South Wales,149.934245,-36.578531 +2021,6,28,1,New South Wales,150.518438,-34.444936 +2021,8,13,1,New South Wales,150.518539,-34.4397 +2024,2,4,1,New South Wales,152.924805,-31.453606 +2023,7,18,1,New South Wales,152.826093,-30.286641 +2021,7,18,1,New South Wales,150.627929,-34.420496 +2021,2,14,1,New South Wales,150.808267,-34.098084 +2021,6,15,1,New South Wales,150.520401,-34.465764 +2021,10,,1,New South Wales,149.304081,-35.926841 +2020,11,6,1,New South Wales,149.995573,-36.572611 +2021,7,11,1,New South Wales,150.631488,-34.388046 +2020,9,14,1,New South Wales,153.012955,-28.651425 +2020,1,12,1,New South Wales,152.921997,-31.44624 +2021,2,2,1,New South Wales,153.362191,-28.649451 +2022,10,11,1,New South Wales,149.398635,-33.489267 +2020,11,19,1,New South Wales,153.555983,-28.398753 +2021,5,2,1,New South Wales,150.615459,-34.435535 +2022,4,13,1,New South Wales,150.298856,-31.178479 +2024,1,1,1,New South Wales,150.78265,-33.71856 +2023,6,7,1,New South Wales,150.881683,-34.068165 +2020,10,21,1,New South Wales,149.947183,-36.617465 +2021,6,29,1,New South Wales,150.522325,-34.465867 +2021,6,6,1,New South Wales,150.608247,-34.43506 +2023,8,9,1,New South Wales,153.108135,-29.490227 +2021,10,24,1,New South Wales,152.928754,-31.459087 +2021,6,17,1,New South Wales,150.618222,-34.435165 +2021,3,2,1,New South Wales,150.528156,-34.456375 +2021,5,4,1,New South Wales,150.637279,-34.423797 +2022,7,15,1,New South Wales,152.076235,-32.720775 +2021,10,8,1,New South Wales,152.246369,-29.538473 +2023,10,5,1,New South Wales,152.889845,-30.468302 +2022,11,29,1,New South Wales,153.396151,-28.559187 +2022,10,26,1,New South Wales,153.555861,-28.399267 +2022,2,8,1,New South Wales,152.063352,-32.706528 +2020,9,16,1,New South Wales,152.179784,-30.098238 +2022,8,30,1,New South Wales,149.324884,-36.293878 +2021,9,22,1,New South Wales,150.607343,-34.509694 +2021,6,15,1,New South Wales,153.39436,-28.275818 +2021,5,23,1,New South Wales,150.5159,-34.450528 +2021,9,19,1,New South Wales,153.104348,-29.477133 +2021,5,12,1,New South Wales,150.52243,-34.465247 +2020,10,28,1,New South Wales,152.824684,-29.504028 +2021,4,29,1,New South Wales,150.624238,-34.387924 +2023,6,30,1,New South Wales,152.785651,-31.630013 +2021,4,21,1,New South Wales,150.637013,-34.422448 +2023,2,27,1,New South Wales,150.913767,-29.673881 +2021,5,12,1,New South Wales,150.628855,-34.389609 +2020,8,16,1,New South Wales,152.986354,-29.030776 +2020,10,15,1,New South Wales,149.947316,-36.607854 +2023,8,23,1,New South Wales,153.075063,-28.555784 +2021,9,25,1,New South Wales,151.660851,-32.686041 +2020,10,29,1,New South Wales,149.984095,-36.575978 +2020,4,20,1,New South Wales,152.852678,-31.434839 +2020,10,15,1,New South Wales,149.930096,-36.638123 +2023,10,18,1,New South Wales,152.922651,-31.459951 +2021,9,17,1,New South Wales,150.842938,-34.081916 +2020,10,29,1,New South Wales,149.984095,-36.575978 +2021,5,31,1,New South Wales,153.395229,-29.049606 +2021,7,11,1,New South Wales,150.626299,-34.421195 +2023,10,19,1,New South Wales,151.658745,-32.685932 +2020,10,26,1,New South Wales,149.984095,-36.575978 +2022,10,29,1,New South Wales,152.823724,-31.4412 +2022,10,21,1,New South Wales,151.739169,-32.662223 +2023,8,23,1,New South Wales,152.21745,-32.23679 +2022,3,6,1,New South Wales,153.110619,-29.489577 +2020,10,11,1,New South Wales,152.174797,-30.099916 +2020,12,,1,New South Wales,152.864165,-31.291869 +2021,7,14,1,New South Wales,150.54053,-34.435628 +2020,10,1,1,New South Wales,151.99159,-32.72107 +2022,2,23,1,New South Wales,153.379478,-29.087018 +2021,10,7,1,New South Wales,153.521268,-28.656899 +2021,4,25,1,New South Wales,150.609379,-34.418999 +2023,2,24,1,New South Wales,153.319838,-28.844336 +2023,11,19,1,New South Wales,150.784171,-33.717002 +2021,4,23,1,New South Wales,150.514552,-34.444992 +2023,2,14,1,New South Wales,152.918363,-31.453534 +2023,1,16,1,New South Wales,152.921014,-31.438575 +2021,5,6,1,New South Wales,153.556633,-28.390147 +2020,11,16,1,New South Wales,153.091725,-29.48785 +2022,11,24,1,New South Wales,152.794945,-30.901933 +2021,7,11,1,New South Wales,150.643277,-34.395396 +2023,8,24,1,New South Wales,152.867632,-29.668422 +2020,6,25,1,New South Wales,152.793715,-30.223959 +2022,7,26,1,New South Wales,152.895916,-31.435778 +2021,5,19,1,New South Wales,150.615809,-34.430863 +2023,1,5,1,New South Wales,152.897939,-31.435933 +2022,2,14,1,New South Wales,152.90508,-31.434908 +2021,9,16,1,New South Wales,150.610638,-34.454635 +2021,6,19,1,New South Wales,150.627928,-34.420911 +2024,3,26,1,New South Wales,152.893632,-31.437597 +2023,7,13,1,New South Wales,153.006945,-30.420972 +2023,9,28,1,New South Wales,152.911639,-31.476786 +2023,9,26,1,New South Wales,150.726479,-34.319081 +2023,7,15,1,New South Wales,152.917338,-31.469322 +2020,1,26,1,New South Wales,150.06994,-35.09674 +2021,6,20,1,New South Wales,152.824631,-29.505224 +2023,7,11,1,New South Wales,150.860305,-34.038028 +2023,1,28,1,New South Wales,153.556227,-28.398625 +2023,12,27,1,New South Wales,152.378334,-31.920019 +2021,5,30,1,New South Wales,150.607014,-34.437488 +2022,11,22,1,New South Wales,152.888402,-31.438679 +2023,8,26,1,New South Wales,152.878593,-29.680128 +2023,9,25,1,New South Wales,153.517284,-28.668167 +2023,9,30,1,New South Wales,152.917656,-31.474609 +2021,9,9,1,New South Wales,150.526591,-34.448184 +2021,5,23,1,New South Wales,150.597752,-34.428409 +2024,9,6,1,New South Wales,151.610809,-33.002863 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2022,7,13,1,New South Wales,152.709352,-31.78743 +2021,12,20,1,New South Wales,152.864189,-29.628478 +2023,11,28,1,New South Wales,151.101819,-29.766384 +2020,12,10,1,New South Wales,149.954748,-36.297726 +2022,9,2,1,New South Wales,152.937204,-28.838384 +2021,4,28,1,New South Wales,150.602108,-34.42716 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2021,6,24,1,New South Wales,153.495239,-28.694401 +2020,1,3,1,New South Wales,152.411871,-31.90711 +2020,12,10,1,New South Wales,149.954748,-36.297726 +2021,5,23,1,New South Wales,150.635869,-34.392747 +2021,7,4,1,New South Wales,150.627398,-34.421189 +2023,10,12,1,New South Wales,153.11013,-29.490269 +2021,6,17,1,New South Wales,150.641709,-34.395844 +2021,4,22,1,New South Wales,150.609211,-34.419167 +2022,12,15,1,New South Wales,152.353525,-31.92625 +2020,10,20,1,New South Wales,153.278132,-28.831137 +2024,8,21,1,New South Wales,152.014036,-32.296196 +2022,4,26,1,New South Wales,152.905805,-31.436768 +2023,8,17,1,New South Wales,152.793741,-31.641784 +2021,5,29,1,New South Wales,151.96533,-30.899559 +2021,6,23,1,New South Wales,150.513747,-34.446427 +2021,5,8,1,New South Wales,150.516658,-34.446982 +2020,7,20,1,New South Wales,152.881865,-31.428381 +2024,9,21,2,New South Wales,146.578454,-34.768196 +2021,5,9,1,New South Wales,150.624799,-34.399619 +2021,8,9,1,New South Wales,150.642688,-34.404356 +2024,8,25,1,New South Wales,152.237072,-31.734425 +2020,11,22,1,New South Wales,153.458698,-28.951435 +2021,5,20,1,New South Wales,150.63315,-34.418208 +2023,5,25,1,New South Wales,153.102889,-29.489391 +2023,10,11,1,New South Wales,150.879362,-33.252758 +2021,7,13,1,New South Wales,152.061988,-32.711027 +2024,5,18,1,New South Wales,152.953158,-30.426701 +2023,6,23,1,New South Wales,152.861555,-31.281234 +2023,9,4,1,New South Wales,153.12006,-29.489671 +2021,5,3,1,New South Wales,150.62686,-34.389408 +2021,5,22,1,New South Wales,150.630452,-34.420915 +2021,4,8,1,New South Wales,150.517521,-34.446143 +2022,7,15,1,New South Wales,152.913802,-31.446445 +2020,10,29,1,New South Wales,149.934245,-36.578531 +2020,11,2,1,New South Wales,149.934245,-36.578531 +2023,10,30,1,New South Wales,152.19096,-32.219628 +2023,8,16,1,New South Wales,153.108038,-29.490325 +2020,11,2,1,New South Wales,149.934245,-36.578531 +2020,5,,1,New South Wales,152.088434,-32.728523 +2023,5,24,1,New South Wales,150.732187,-34.280016 +2022,6,27,1,New South Wales,152.94103,-30.39318 +2020,12,3,1,New South Wales,150.831824,-29.655536 +2021,6,22,1,New South Wales,150.603272,-34.439335 +2021,8,2,1,New South Wales,150.646136,-34.403584 +2020,11,2,1,New South Wales,149.976368,-36.555504 +2021,8,15,1,New South Wales,150.631928,-34.418338 +2021,9,5,1,New South Wales,153.302183,-28.88864 +2021,10,7,1,New South Wales,150.790713,-34.15774 +2023,7,6,1,New South Wales,153.103559,-29.485482 +2022,9,18,1,New South Wales,153.01055,-30.364138 +2023,10,31,1,New South Wales,152.196402,-32.225666 +2021,5,8,1,New South Wales,150.60983,-34.455124 +2022,12,27,1,New South Wales,153.109392,-30.298612 +2021,6,5,1,New South Wales,150.615895,-34.43512 +2021,11,12,1,New South Wales,152.900233,-31.434776 +2020,12,23,1,New South Wales,153.471272,-28.35123 +2022,12,12,1,New South Wales,152.919363,-31.481262 +2021,7,24,1,New South Wales,151.812061,-31.995876 +2020,7,25,1,New South Wales,153.104128,-29.485113 +2023,10,25,1,New South Wales,152.196402,-32.225666 +2023,4,25,1,New South Wales,153.103736,-29.485618 +2020,10,28,1,New South Wales,149.976368,-36.555504 +2022,9,16,1,New South Wales,152.213217,-29.930383 +2021,4,7,1,New South Wales,150.607486,-34.42283 +2021,8,23,1,New South Wales,153.093531,-29.492883 +2023,11,2,1,New South Wales,152.196402,-32.225666 +2020,10,29,1,New South Wales,149.976368,-36.555504 +2021,6,23,1,New South Wales,150.627355,-34.421188 +2020,11,20,1,New South Wales,152.824652,-29.505999 +2020,10,25,1,New South Wales,152.077046,-32.721978 +2021,7,20,1,New South Wales,150.522413,-34.464354 +2022,10,5,1,New South Wales,153.492978,-28.764072 +2021,5,15,1,New South Wales,150.633208,-34.41848 +2020,8,19,1,New South Wales,153.103817,-29.485576 +2021,6,2,1,New South Wales,150.604725,-34.42731 +2020,11,6,1,New South Wales,150.007338,-36.56122 +2020,10,19,1,New South Wales,149.947316,-36.607854 +2021,9,14,1,New South Wales,151.004251,-34.048655 +2021,11,24,1,New South Wales,152.868705,-29.667359 +2024,2,5,1,New South Wales,151.482228,-30.644608 +2023,7,9,1,New South Wales,152.785099,-31.629803 +2022,9,29,1,New South Wales,152.906313,-30.240447 +2023,9,15,1,New South Wales,152.609738,-30.345472 +2020,7,15,1,New South Wales,153.104144,-29.485104 +2021,4,27,1,New South Wales,150.603029,-34.435661 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2020,3,22,1,New South Wales,153.094037,-29.488788 +2021,6,27,1,New South Wales,150.605068,-34.450387 +2022,7,31,1,New South Wales,150.838978,-34.053416 +2021,7,12,1,New South Wales,150.626298,-34.421222 +2021,8,13,1,New South Wales,152.379145,-31.918994 +2022,3,17,1,New South Wales,153.079544,-30.356281 +2023,7,26,1,New South Wales,150.785123,-33.709466 +2020,6,30,1,New South Wales,152.7936,-30.219284 +2021,8,30,1,New South Wales,152.434831,-31.778126 +2020,4,29,1,New South Wales,152.925763,-31.447517 +2022,1,5,1,New South Wales,153.107979,-29.490213 +2021,6,14,1,New South Wales,150.625292,-34.384464 +2021,5,25,1,New South Wales,152.065577,-32.714028 +2021,9,26,1,New South Wales,150.893243,-33.999472 +2021,6,25,1,New South Wales,150.62736,-34.420233 +2021,12,11,1,New South Wales,153.315409,-28.82537 +2020,10,15,1,New South Wales,149.919967,-36.589766 +2021,6,6,1,New South Wales,150.63063,-34.420783 +2020,11,2,1,New South Wales,153.313992,-28.81222 +2023,12,6,1,New South Wales,150.785143,-33.716799 +2021,9,3,1,New South Wales,152.415619,-31.933106 +2021,9,1,1,New South Wales,151.541578,-32.931347 +2021,4,30,1,New South Wales,150.615814,-34.436416 +2023,1,1,1,New South Wales,152.927051,-31.457953 +2020,10,13,1,New South Wales,152.894005,-31.448512 +2020,12,8,1,New South Wales,149.960189,-36.280531 +2020,10,20,1,New South Wales,152.893086,-31.454902 +2021,5,31,1,New South Wales,150.524189,-34.464309 +2022,8,12,1,New South Wales,152.921825,-31.469094 +2021,11,16,1,New South Wales,153.103768,-29.485702 +2020,1,7,1,New South Wales,153.556801,-28.408402 +2021,5,26,1,New South Wales,150.639002,-34.491672 +2022,10,6,1,New South Wales,152.999987,-30.422349 +2021,4,5,1,New South Wales,150.529286,-34.458669 +2021,5,26,1,New South Wales,150.5979,-34.425923 +2024,2,29,1,New South Wales,150.786062,-33.709574 +2022,8,26,1,New South Wales,153.096064,-28.435507 +2022,10,3,1,New South Wales,152.997489,-30.406531 +2021,8,6,1,New South Wales,150.516497,-34.440307 +2022,9,16,1,New South Wales,153.399632,-28.327546 +2020,2,7,1,New South Wales,152.910165,-31.428457 +2023,8,9,1,New South Wales,153.038528,-30.895349 +2020,4,20,1,New South Wales,152.856541,-31.447899 +2020,5,22,1,New South Wales,153.092189,-29.48809 +2021,7,7,1,New South Wales,150.631192,-34.387355 +2021,5,9,1,New South Wales,150.637269,-34.423779 +2021,6,24,1,New South Wales,150.644252,-34.393188 +2022,11,23,1,New South Wales,152.873807,-29.660332 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2020,4,25,1,New South Wales,153.230507,-28.546386 +2021,6,29,1,New South Wales,150.631517,-34.387795 +2022,12,23,1,New South Wales,153.321966,-28.823907 +2020,11,3,1,New South Wales,149.976368,-36.555504 +2021,5,10,1,New South Wales,150.520951,-34.435394 +2020,10,30,1,New South Wales,149.976368,-36.555504 +2021,5,4,1,New South Wales,150.63852,-34.490634 +2023,7,7,1,New South Wales,152.895156,-31.43051 +2020,10,12,1,New South Wales,152.894671,-31.448143 +2021,7,12,1,New South Wales,150.642741,-34.395098 +2020,11,4,1,New South Wales,153.334493,-28.813462 +2020,10,16,1,New South Wales,149.919967,-36.589766 +2021,6,26,1,New South Wales,150.51433,-34.44734 +2022,10,5,1,New South Wales,152.785067,-31.634123 +2022,5,5,1,New South Wales,153.110468,-29.490138 +2021,2,26,1,New South Wales,150.611818,-34.430388 +2021,4,23,1,New South Wales,150.617169,-34.434297 +2022,11,2,1,New South Wales,152.085862,-32.728372 +2021,11,1,1,New South Wales,151.940231,-32.772728 +2022,12,,1,New South Wales,151.478858,-33.003477 +2021,6,27,1,New South Wales,150.523198,-34.464298 +2020,5,28,1,New South Wales,149.356911,-36.019159 +2021,2,7,1,New South Wales,153.557433,-28.394633 +2020,12,4,1,New South Wales,152.902274,-31.442198 +2022,8,7,1,New South Wales,153.32363,-28.880196 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2023,9,29,1,New South Wales,153.148227,-28.666449 +2021,4,26,1,New South Wales,150.624418,-34.38809 +2023,9,21,1,New South Wales,153.394474,-28.288414 +2021,4,16,1,New South Wales,150.607389,-34.422431 +2021,4,28,1,New South Wales,150.616406,-34.429369 +2021,3,13,1,New South Wales,150.520297,-34.44683 +2020,9,29,1,New South Wales,152.075214,-32.723156 +2020,9,17,1,New South Wales,152.897243,-31.451701 +2020,11,4,1,New South Wales,151.659873,-32.659995 +2023,11,28,1,New South Wales,149.829754,-34.726587 +2024,1,28,1,New South Wales,153.107985,-29.490483 +2021,6,6,1,New South Wales,150.635315,-34.488066 +2021,1,18,1,New South Wales,152.162237,-32.71616 +2023,1,16,1,New South Wales,150.833865,-34.083828 +2021,7,6,1,New South Wales,150.62698,-34.420983 +2021,5,4,1,New South Wales,150.637346,-34.423744 +2021,6,18,1,New South Wales,150.622486,-34.384103 +2020,9,10,1,New South Wales,150.23152,-34.263 +2022,4,16,1,New South Wales,153.10792,-29.490119 +2021,4,30,1,New South Wales,150.615857,-34.436453 +2020,10,7,1,New South Wales,152.03683,-32.73177 +2020,7,30,1,New South Wales,152.920796,-30.505864 +2023,1,21,1,New South Wales,153.299324,-28.888717 +2023,7,17,1,New South Wales,153.494964,-28.692221 +2021,6,23,1,New South Wales,150.516043,-34.443886 +2021,6,3,1,New South Wales,150.623947,-34.388603 +2021,5,5,1,New South Wales,150.523366,-34.459379 +2022,11,22,1,New South Wales,152.063593,-32.706529 +2020,10,2,1,New South Wales,152.454265,-31.936428 +2024,1,16,1,New South Wales,152.499597,-31.671361 +2021,8,19,1,New South Wales,152.081731,-32.730732 +2021,9,24,1,New South Wales,150.908678,-33.997712 +2021,6,8,1,New South Wales,150.615566,-34.432905 +2021,5,6,1,New South Wales,150.615664,-34.435981 +2021,3,2,1,New South Wales,150.636173,-34.485811 +2021,3,4,1,New South Wales,150.52116,-34.466249 +2020,9,9,1,New South Wales,152.101706,-32.733449 +2021,7,24,1,New South Wales,152.911386,-31.446736 +2021,6,13,1,New South Wales,150.630154,-34.420314 +2020,10,20,1,New South Wales,153.104085,-29.484259 +2020,7,28,1,New South Wales,150.925808,-29.793058 +2021,3,29,1,New South Wales,150.616367,-34.434588 +2021,9,7,1,New South Wales,152.415704,-31.933484 +2020,10,11,1,New South Wales,150.597821,-33.690824 +2024,6,20,1,New South Wales,152.374449,-31.915668 +2020,9,30,1,New South Wales,153.091484,-29.487745 +2021,7,25,1,New South Wales,150.522096,-34.46588 +2024,9,1,1,New South Wales,152.456299,-31.937163 +2021,8,8,1,New South Wales,150.517167,-34.436426 +2023,11,23,1,New South Wales,153.104171,-29.482143 +2021,5,10,1,New South Wales,150.604864,-34.427034 +2021,5,16,1,New South Wales,150.600372,-34.428099 +2020,10,19,1,New South Wales,153.303135,-28.824882 +2021,7,3,1,New South Wales,153.087187,-30.340482 +2021,8,11,1,New South Wales,150.514558,-34.447354 +2021,7,15,1,New South Wales,150.513152,-34.445964 +2022,7,9,1,New South Wales,152.793337,-31.642686 +2022,11,23,1,New South Wales,152.764422,-30.891124 +2023,4,5,1,New South Wales,153.56563,-28.38755 +2021,5,22,1,New South Wales,150.597812,-34.427851 +2023,9,24,1,New South Wales,152.925261,-31.449792 +2020,11,6,1,New South Wales,150.010074,-36.579686 +2021,7,25,1,New South Wales,153.358638,-28.681672 +2021,3,1,1,New South Wales,150.603328,-34.436993 +2021,5,9,1,New South Wales,150.637278,-34.423824 +2020,11,3,1,New South Wales,150.685616,-34.265974 +2022,9,15,1,New South Wales,152.818069,-31.650872 +2021,6,7,1,New South Wales,150.526019,-34.464625 +2020,11,12,1,New South Wales,152.03724,-32.729459 +2023,12,12,1,New South Wales,153.087723,-30.255061 +2023,8,16,1,New South Wales,151.718687,-32.717229 +2022,12,7,1,New South Wales,152.785414,-31.632782 +2021,4,7,1,New South Wales,150.616063,-34.43533 +2021,2,23,1,New South Wales,150.630932,-34.481256 +2023,12,13,1,New South Wales,152.064528,-32.709669 +2021,8,7,1,New South Wales,150.6312,-34.387446 +2023,12,7,1,New South Wales,150.785204,-33.70738 +2021,3,8,1,New South Wales,150.526112,-34.458154 +2021,3,8,1,New South Wales,150.614868,-34.432584 +2020,12,29,1,New South Wales,153.551531,-28.387951 +2024,4,21,1,New South Wales,150.471246,-34.491282 +2023,9,21,1,New South Wales,152.607443,-30.34163 +2020,1,23,1,New South Wales,152.905944,-31.479611 +2023,4,13,1,New South Wales,149.253351,-36.196045 +2021,6,29,1,New South Wales,150.62736,-34.420233 +2021,3,31,1,New South Wales,150.515457,-34.447129 +2020,,,1,New South Wales,150.802933,-33.487342 +2020,3,17,1,New South Wales,152.926628,-31.456781 +2021,9,29,1,New South Wales,152.300422,-31.948252 +2023,8,1,1,New South Wales,150.97648,-29.732652 +2022,9,12,1,New South Wales,152.903278,-31.441582 +2021,4,23,1,New South Wales,150.609144,-34.418859 +2021,10,18,1,New South Wales,153.116051,-28.561518 +2021,11,25,1,New South Wales,152.927198,-31.458124 +2022,3,22,1,New South Wales,149.97014,-36.652965 +2021,9,29,1,New South Wales,153.568084,-28.321344 +2023,1,31,1,New South Wales,152.965047,-30.648712 +2023,10,10,1,New South Wales,150.647622,-34.452664 +2021,8,2,1,New South Wales,153.315839,-28.83683 +2021,6,3,1,New South Wales,150.624012,-34.388587 +2022,9,20,1,New South Wales,153.301673,-28.824943 +2021,4,28,1,New South Wales,150.619264,-34.400719 +2021,6,20,1,New South Wales,150.628057,-34.420977 +2021,3,20,1,New South Wales,150.517019,-34.446205 +2023,12,16,1,New South Wales,150.786003,-33.709171 +2023,8,15,1,New South Wales,150.84496,-34.061857 +2024,2,10,1,New South Wales,153.093313,-29.488532 +2020,2,25,1,New South Wales,153.555001,-28.586223 +2020,10,21,1,New South Wales,149.919967,-36.589766 +2022,8,11,1,New South Wales,152.78568,-31.629506 +2021,8,10,1,New South Wales,152.757188,-31.628756 +2022,10,8,1,New South Wales,152.065329,-32.711305 +2021,4,15,1,New South Wales,150.614549,-34.436906 +2021,7,29,1,New South Wales,150.520282,-34.465744 +2021,6,2,1,New South Wales,151.085138,-29.728742 +2021,5,23,1,New South Wales,150.60523,-34.432504 +2021,5,12,1,New South Wales,150.605728,-34.427636 +2021,7,30,1,New South Wales,150.520644,-34.465643 +2021,5,16,1,New South Wales,150.524093,-34.463135 +2020,5,27,1,New South Wales,149.978709,-36.441024 +2021,10,2,1,New South Wales,153.104782,-29.489652 +2020,10,17,1,New South Wales,152.968374,-28.944071 +2023,10,11,1,New South Wales,153.108151,-29.490418 +2021,5,9,1,New South Wales,153.108194,-29.490222 +2021,6,6,1,New South Wales,150.523957,-34.46626 +2021,6,26,1,New South Wales,150.627316,-34.42025 +2021,3,4,1,New South Wales,153.395247,-28.959919 +2023,11,2,1,New South Wales,150.786039,-33.712369 +2020,5,21,1,New South Wales,153.103817,-29.485576 +2022,10,25,1,New South Wales,153.422453,-28.982434 +2021,7,19,1,New South Wales,150.645595,-34.39069 +2022,10,18,1,New South Wales,152.915236,-31.451529 +2021,4,21,1,New South Wales,150.63908,-34.418954 +2024,3,2,1,New South Wales,151.075117,-29.746371 +2024,1,10,1,New South Wales,152.900988,-31.473865 +2020,10,20,1,New South Wales,149.919967,-36.589766 +2022,6,7,1,New South Wales,153.317762,-28.823419 +2020,10,11,1,New South Wales,149.959933,-36.657162 +2021,12,29,1,New South Wales,153.103264,-29.48657 +2021,6,8,1,New South Wales,150.521088,-34.441816 +2021,4,21,1,New South Wales,150.614437,-34.42897 +2020,10,19,1,New South Wales,153.303174,-28.827996 +2021,5,16,1,New South Wales,150.529735,-34.467793 +2023,9,12,1,New South Wales,150.794266,-34.225876 +2020,3,16,1,New South Wales,153.298636,-28.609403 +2021,5,17,1,New South Wales,150.520475,-34.454064 +2021,5,18,1,New South Wales,150.613605,-34.431072 +2021,6,15,1,New South Wales,150.516068,-34.459177 +2020,12,8,1,New South Wales,149.960189,-36.280531 +2022,10,15,1,New South Wales,150.660049,-31.472333 +2023,11,5,1,New South Wales,149.764507,-33.152864 +2024,4,19,1,New South Wales,151.323416,-33.053312 +2021,1,14,1,New South Wales,150.842133,-34.070234 +2022,12,13,1,New South Wales,150.958341,-32.230006 +2021,4,20,1,New South Wales,150.610246,-34.419124 +2022,10,22,1,New South Wales,152.893921,-31.461626 +2024,1,10,1,New South Wales,152.867921,-31.475477 +2022,6,16,1,New South Wales,153.10181,-29.489153 +2024,3,6,1,New South Wales,150.987244,-34.093731 +2024,1,20,1,New South Wales,150.785009,-33.718487 +2021,11,18,1,New South Wales,150.566209,-33.642472 +2021,7,23,1,New South Wales,152.731978,-31.228903 +2020,11,2,1,New South Wales,149.934245,-36.578531 +2024,5,15,1,New South Wales,152.187255,-31.952332 +2022,12,15,1,New South Wales,150.06743,-34.75049 +2021,1,29,1,New South Wales,151.512471,-30.655961 +2020,8,3,1,New South Wales,152.797612,-31.125972 +2021,4,16,1,New South Wales,150.515995,-34.448808 +2021,5,30,1,New South Wales,150.52315,-34.464468 +2021,12,21,1,New South Wales,153.085186,-30.34407 +2022,12,14,1,New South Wales,153.092484,-29.38284 +2021,6,22,1,New South Wales,150.602433,-34.419963 +2021,12,2,1,New South Wales,150.614469,-34.43895 +2023,9,27,1,New South Wales,152.613317,-30.345347 +2024,6,26,1,New South Wales,152.823003,-30.152457 +2021,5,28,1,New South Wales,150.641435,-34.393585 +2022,1,1,1,New South Wales,150.615863,-34.438545 +2021,5,10,1,New South Wales,150.637279,-34.423806 +2022,11,16,1,New South Wales,153.323778,-28.825083 +2023,12,21,1,New South Wales,152.910083,-30.505415 +2022,11,20,1,New South Wales,152.777767,-30.902372 +2022,6,23,1,New South Wales,152.915824,-31.444224 +2020,5,7,1,New South Wales,150.0569,-34.90278 +2023,2,5,1,New South Wales,150.808578,-34.098209 +2020,11,5,1,New South Wales,149.934245,-36.578531 +2020,4,4,1,New South Wales,153.499517,-28.673043 +2024,2,11,1,New South Wales,153.093372,-29.486257 +2020,10,30,1,New South Wales,149.945227,-36.57753 +2021,5,14,1,New South Wales,150.637311,-34.423815 +2022,10,15,1,New South Wales,152.186691,-32.715703 +2024,1,1,1,New South Wales,153.107899,-29.490222 +2020,8,10,1,New South Wales,153.092133,-29.488237 +2021,8,21,1,New South Wales,150.513049,-34.447224 +2024,3,22,1,New South Wales,152.371779,-31.922032 +2023,11,4,1,New South Wales,152.374985,-31.922267 +2021,8,3,1,New South Wales,153.315839,-28.83683 +2021,6,25,1,New South Wales,150.62738,-34.420278 +2021,6,16,1,New South Wales,150.515349,-34.460316 +2021,6,3,1,New South Wales,150.519657,-34.455229 +2021,5,2,1,New South Wales,150.618535,-34.399208 +2020,6,30,1,New South Wales,153.453368,-28.816083 +2020,2,26,1,New South Wales,153.492103,-28.682564 +2020,4,2,1,New South Wales,152.776014,-31.709938 +2021,7,17,1,New South Wales,150.522648,-34.46673 +2022,4,3,1,New South Wales,152.851474,-31.554697 +2021,7,16,1,New South Wales,150.514942,-34.446505 +2021,6,1,1,New South Wales,150.604815,-34.437121 +2020,1,19,1,New South Wales,153.104171,-29.485202 +2020,8,18,1,New South Wales,150.880379,-34.400666 +2021,4,27,1,New South Wales,150.616301,-34.435768 +2022,3,11,1,New South Wales,153.110522,-29.490189 +2021,9,7,1,New South Wales,151.656159,-32.683146 +2023,9,6,1,New South Wales,153.215295,-28.849597 +2020,10,10,1,New South Wales,149.955028,-36.650407 +2020,3,20,1,New South Wales,151.6887,-32.06324 +2022,7,13,1,New South Wales,153.101177,-29.490044 +2021,6,9,1,New South Wales,150.514125,-34.45499 +2021,5,17,1,New South Wales,150.632109,-34.394559 +2020,10,17,1,New South Wales,153.109465,-29.490488 +2021,5,28,1,New South Wales,150.521547,-34.465671 +2021,12,27,1,New South Wales,152.915625,-31.45112 +2020,1,27,1,New South Wales,153.092111,-29.488027 +2021,11,15,1,New South Wales,153.168357,-29.442125 +2021,2,12,1,New South Wales,152.915605,-31.48443 +2021,5,1,1,New South Wales,152.87689,-30.54187 +2023,3,16,1,New South Wales,153.071899,-30.88453 +2021,2,22,1,New South Wales,150.684291,-34.357578 +2022,8,26,1,New South Wales,153.316082,-28.947668 +2021,5,24,1,New South Wales,150.630818,-34.420661 +2021,10,15,1,New South Wales,150.973831,-34.124253 +2020,10,19,1,New South Wales,152.952743,-29.233564 +2023,9,20,1,New South Wales,153.107464,-29.490142 +2020,9,28,1,New South Wales,153.282968,-28.578634 +2021,6,15,1,New South Wales,150.520387,-34.465872 +2020,4,29,1,New South Wales,151.626,-30.48 +2022,2,13,1,New South Wales,153.609468,-28.661326 +2021,7,21,1,New South Wales,152.940468,-29.702491 +2020,5,31,1,New South Wales,150.055727,-33.771587 +2020,9,2,1,New South Wales,152.03975,-32.73196 +2024,9,21,2,New South Wales,146.586232,-34.76658 +2021,5,31,1,New South Wales,153.562124,-28.392174 +2023,3,25,1,New South Wales,153.124322,-30.295796 +2021,4,8,1,New South Wales,150.518879,-34.453581 +2020,10,29,1,New South Wales,149.943147,-36.549371 +2020,10,23,1,New South Wales,149.934245,-36.578531 +2023,10,4,1,New South Wales,150.989923,-34.018852 +2021,8,20,1,New South Wales,150.51323,-34.447724 +2022,11,30,1,New South Wales,152.754102,-30.882465 +2020,9,2,1,New South Wales,153.030808,-28.849862 +2023,7,22,1,New South Wales,152.056884,-32.739674 +2024,1,19,1,New South Wales,152.74634,-31.194077 +2023,9,30,1,New South Wales,153.318614,-28.912489 +2020,11,24,1,New South Wales,152.599014,-31.306479 +2024,1,16,1,New South Wales,152.823508,-31.131957 +2022,11,8,1,New South Wales,152.79342,-31.642547 +2020,11,1,1,New South Wales,150.729939,-31.627153 +2024,1,18,1,New South Wales,152.926447,-31.454452 +2021,6,1,1,New South Wales,150.520052,-34.45475 +2023,9,1,1,New South Wales,152.293773,-31.634319 +2020,7,30,1,New South Wales,152.794428,-31.128656 +2021,9,7,1,New South Wales,152.925048,-31.476528 +2021,11,9,1,New South Wales,150.892923,-33.969092 +2020,1,19,1,New South Wales,152.922476,-31.481222 +2022,8,20,1,New South Wales,151.620511,-32.557341 +2023,11,14,1,New South Wales,153.103908,-29.489596 +2021,4,18,1,New South Wales,150.515442,-34.443586 +2024,3,22,1,New South Wales,152.384301,-31.92842 +2021,8,8,1,New South Wales,150.790596,-34.196137 +2022,8,28,1,New South Wales,153.17121,-29.436168 +2022,11,20,1,New South Wales,152.374047,-31.913202 +2021,6,21,1,New South Wales,150.515855,-34.441412 +2020,12,30,1,New South Wales,152.105686,-32.723234 +2022,9,13,1,New South Wales,152.646791,-28.747562 +2021,3,13,1,New South Wales,153.021033,-30.26074 +2023,6,9,1,New South Wales,150.839737,-34.093868 +2021,6,22,1,New South Wales,150.639499,-34.392808 +2020,8,25,1,New South Wales,152.079648,-32.727053 +2021,3,29,1,New South Wales,150.610241,-34.429609 +2021,6,28,1,New South Wales,150.63151,-34.388407 +2023,7,7,1,New South Wales,152.923246,-31.450735 +2021,4,21,1,New South Wales,150.610335,-34.419063 +2021,2,1,1,New South Wales,152.00169,-32.231456 +2021,5,4,1,New South Wales,150.611755,-34.419631 +2020,5,29,1,New South Wales,153.272402,-28.815732 +2021,5,27,1,New South Wales,150.618937,-34.439479 +2021,6,16,1,New South Wales,150.639882,-34.4001 +2021,7,7,1,New South Wales,150.513094,-34.44718 +2022,3,6,1,New South Wales,153.110334,-29.490222 +2021,10,31,1,New South Wales,153.104187,-29.482069 +2021,5,6,1,New South Wales,150.522611,-34.459147 +2023,9,19,1,New South Wales,152.413117,-31.940196 +2020,11,25,1,New South Wales,150.06438,-33.774886 +2020,7,28,1,New South Wales,152.797815,-31.124186 +2021,7,29,1,New South Wales,153.313836,-28.838902 +2021,5,14,1,New South Wales,150.51628,-34.449093 +2021,9,1,1,New South Wales,150.523912,-34.463735 +2020,1,3,1,New South Wales,153.402031,-28.260886 +2021,2,25,1,New South Wales,150.616185,-34.434494 +2021,9,4,1,New South Wales,153.311493,-28.821398 +2021,5,15,1,New South Wales,150.529278,-34.467783 +2021,4,22,1,New South Wales,150.637361,-34.420517 +2020,10,21,1,New South Wales,152.775979,-30.199998 +2023,7,28,1,New South Wales,150.862191,-34.044212 +2021,5,30,1,New South Wales,150.517321,-34.446292 +2022,11,24,1,New South Wales,152.893648,-31.459989 +2022,5,25,1,New South Wales,153.103768,-29.485748 +2021,3,23,1,New South Wales,150.607942,-34.422108 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2022,10,4,1,New South Wales,149.361836,-36.183858 +2024,1,9,1,New South Wales,152.925876,-31.452772 +2023,9,22,1,New South Wales,152.89608,-31.440603 +2021,6,1,1,New South Wales,150.518194,-34.446571 +2021,6,30,1,New South Wales,150.596135,-34.411554 +2022,1,2,1,New South Wales,153.567429,-28.380983 +2020,10,20,1,New South Wales,149.949786,-36.632867 +2024,1,9,1,New South Wales,152.544398,-32.059088 +2020,10,27,1,New South Wales,153.553643,-28.582782 +2021,3,13,1,New South Wales,152.311645,-29.02257 +2021,6,24,1,New South Wales,150.627352,-34.421288 +2021,4,18,1,New South Wales,150.637421,-34.421852 +2021,7,,1,New South Wales,153.599218,-28.719867 +2021,7,6,1,New South Wales,150.514355,-34.446493 +2021,6,2,1,New South Wales,150.63969,-34.399195 +2021,5,1,1,New South Wales,150.604701,-34.427391 +2023,2,14,1,New South Wales,151.615722,-32.881863 +2022,11,18,1,New South Wales,152.754102,-30.882465 +2020,8,21,1,New South Wales,153.153574,-28.579378 +2021,6,16,1,New South Wales,150.603789,-34.436866 +2023,9,14,1,New South Wales,153.565361,-28.39093 +2022,9,17,1,New South Wales,152.891742,-31.457462 +2020,11,21,1,New South Wales,150.781694,-34.098156 +2022,10,7,1,New South Wales,150.841769,-34.061656 +2021,3,19,1,New South Wales,150.525472,-34.459908 +2021,6,5,1,New South Wales,153.454341,-28.653446 +2021,5,21,1,New South Wales,150.633788,-34.39249 +2021,6,17,1,New South Wales,150.627691,-34.420834 +2021,5,29,1,New South Wales,150.521848,-34.465785 +2021,5,6,1,New South Wales,150.638644,-34.490862 +2023,9,7,1,New South Wales,153.272886,-28.821934 +2021,5,5,1,New South Wales,150.627196,-34.389469 +2021,5,11,1,New South Wales,150.637375,-34.423862 +2022,11,22,1,New South Wales,152.764422,-30.891124 +2023,10,22,1,New South Wales,149.143651,-35.966472 +2022,6,4,1,New South Wales,153.277461,-28.67595 +2022,9,16,1,New South Wales,153.395163,-29.096772 +2023,8,20,1,New South Wales,153.340906,-28.812375 +2021,3,10,1,New South Wales,150.532001,-34.460716 +2021,5,26,1,New South Wales,150.602718,-34.435511 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2021,7,4,1,New South Wales,150.630741,-34.389862 +2023,6,20,1,New South Wales,153.106606,-29.366879 +2020,12,4,1,New South Wales,152.906995,-31.450079 +2020,10,16,1,New South Wales,149.919967,-36.589766 +2021,5,7,1,New South Wales,150.637356,-34.423771 +2021,4,5,1,New South Wales,150.6342,-34.488612 +2020,10,8,1,New South Wales,151.493069,-32.987808 +2021,5,22,1,New South Wales,150.63908,-34.493179 +2021,12,24,1,New South Wales,150.61736,-34.439854 +2021,6,9,1,New South Wales,150.601801,-34.45081 +2021,4,21,1,New South Wales,150.632982,-34.392926 +2022,11,11,1,New South Wales,153.302591,-28.822599 +2022,12,7,1,New South Wales,153.103811,-29.485576 +2021,5,5,1,New South Wales,150.627106,-34.389566 +2021,3,2,1,New South Wales,150.61111,-34.43234 +2021,6,22,1,New South Wales,150.519773,-34.463074 +2021,3,15,1,New South Wales,150.534744,-34.462178 +2022,7,28,1,New South Wales,152.798733,-31.151316 +2021,4,4,1,New South Wales,152.916764,-31.485441 +2022,11,29,1,New South Wales,150.58678,-33.27397 +2022,4,1,1,New South Wales,153.380013,-28.724632 +2020,4,2,1,New South Wales,152.775119,-31.691594 +2021,4,22,1,New South Wales,150.605976,-34.432302 +2022,10,28,1,New South Wales,153.293151,-28.864601 +2023,12,14,1,New South Wales,152.893707,-31.44455 +2020,1,4,1,New South Wales,153.104299,-29.480056 +2020,12,4,1,New South Wales,152.90421,-31.439759 +2021,4,22,1,New South Wales,150.637394,-34.42049 +2023,10,31,1,New South Wales,150.986122,-34.091028 +2021,9,30,1,New South Wales,153.218028,-28.824122 +2022,8,18,1,New South Wales,149.933675,-36.577361 +2021,7,4,1,New South Wales,150.643754,-34.394684 +2021,5,19,1,New South Wales,150.515287,-34.451038 +2022,3,28,1,New South Wales,146.585861,-34.759519 +2021,6,16,1,New South Wales,150.611341,-34.430712 +2021,6,30,1,New South Wales,150.522457,-34.465067 +2024,9,1,1,New South Wales,152.096214,-32.174793 +2020,12,9,1,New South Wales,153.104074,-29.489657 +2023,9,3,1,New South Wales,151.867777,-32.806492 +2021,5,29,1,New South Wales,150.630827,-34.420733 +2023,11,3,1,New South Wales,152.198292,-32.220827 +2022,2,7,1,New South Wales,151.011059,-29.725567 +2022,12,18,1,New South Wales,152.077198,-32.722484 +2023,4,6,1,New South Wales,149.933675,-36.577361 +2023,2,8,1,New South Wales,153.399891,-28.960887 +2021,4,27,1,New South Wales,150.635639,-34.420628 +2024,6,3,1,New South Wales,152.899747,-31.474181 +2021,8,21,1,New South Wales,153.076192,-30.351067 +2020,10,17,1,New South Wales,153.10821,-29.490404 +2020,11,26,1,New South Wales,153.526673,-28.233303 +2020,4,15,1,New South Wales,151.874709,-32.490273 +2021,6,18,1,New South Wales,150.60416,-34.43874 +2022,10,7,1,New South Wales,152.92491,-30.420295 +2021,3,27,1,New South Wales,150.515226,-34.444997 +2021,2,24,1,New South Wales,150.608933,-34.433523 +2020,10,23,1,New South Wales,149.934245,-36.578531 +2021,6,13,1,New South Wales,150.520478,-34.453974 +2021,3,25,1,New South Wales,150.532746,-34.481232 +2021,4,20,1,New South Wales,150.614583,-34.429198 +2020,12,3,1,New South Wales,152.510302,-31.936905 +2020,5,21,1,New South Wales,152.950337,-31.167719 +2021,6,22,1,New South Wales,152.085488,-32.728518 +2021,5,27,1,New South Wales,150.526622,-34.469253 +2021,7,3,1,New South Wales,150.523924,-34.466269 +2020,7,17,1,New South Wales,152.796299,-28.468821 +2021,4,11,1,New South Wales,150.603978,-34.438637 +2020,11,16,1,New South Wales,153.530937,-28.573128 +2022,11,25,1,New South Wales,152.770676,-30.853416 +2021,10,2,1,New South Wales,152.543905,-28.902327 +2021,12,8,1,New South Wales,153.108194,-29.490259 +2021,7,6,1,New South Wales,150.514377,-34.446467 +2023,9,20,1,New South Wales,150.782675,-33.718822 +2020,10,16,1,New South Wales,149.909046,-36.609857 +2023,9,15,1,New South Wales,152.926795,-31.472414 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2022,11,28,1,New South Wales,153.443406,-28.946967 +2020,,,1,New South Wales,150.768733,-34.070431 +2021,6,20,1,New South Wales,153.110136,-29.488303 +2021,10,26,1,New South Wales,152.782206,-29.567572 +2020,12,14,1,New South Wales,153.229427,-28.889129 +2023,11,27,1,New South Wales,149.677073,-32.737892 +2024,1,7,1,New South Wales,150.98796,-34.02523 +2021,6,16,1,New South Wales,150.639769,-34.40026 +2020,10,8,1,New South Wales,149.959933,-36.657162 +2024,3,7,1,New South Wales,152.9293,-31.4667 +2021,8,15,1,New South Wales,150.641374,-34.396541 +2021,6,1,1,New South Wales,150.604811,-34.425076 +2021,5,26,1,New South Wales,150.619763,-34.439162 +2023,10,11,1,New South Wales,150.94008,-29.76786 +2021,7,26,1,New South Wales,150.630644,-34.420675 +2021,6,17,1,New South Wales,150.622607,-34.384051 +2022,1,30,1,New South Wales,152.046485,-32.762311 +2021,8,3,1,New South Wales,150.978364,-34.085006 +2021,5,4,1,New South Wales,150.522258,-34.453397 +2021,5,17,1,New South Wales,150.604282,-34.437895 +2021,7,30,1,New South Wales,153.314434,-28.839794 +2021,7,9,1,New South Wales,150.640645,-34.393858 +2020,1,14,1,New South Wales,152.63384,-31.830933 +2024,2,12,1,New South Wales,152.789676,-31.638897 +2022,9,30,1,New South Wales,152.902842,-30.240904 +2021,6,14,1,New South Wales,150.61498,-34.431324 +2021,5,20,1,New South Wales,150.530263,-34.470932 +2021,5,24,1,New South Wales,150.631473,-34.387785 +2023,7,16,1,New South Wales,152.794801,-31.641589 +2021,10,2,1,New South Wales,152.060901,-32.710449 +2020,7,18,1,New South Wales,153.537002,-28.178665 +2020,9,18,1,New South Wales,152.159805,-31.709154 +2022,12,26,1,New South Wales,152.077155,-32.722344 +2022,11,25,1,New South Wales,152.770676,-30.853416 +2021,6,17,1,New South Wales,150.642411,-34.395632 +2021,7,16,1,New South Wales,150.514323,-34.446466 +2021,7,20,1,New South Wales,153.1038,-29.485594 +2022,11,17,1,New South Wales,152.770676,-30.853416 +2020,6,25,1,New South Wales,152.796484,-30.221626 +2024,7,1,1,New South Wales,152.769313,-31.247409 +2021,3,8,1,New South Wales,150.523388,-34.456044 +2021,5,15,1,New South Wales,150.63731,-34.423861 +2020,12,,1,New South Wales,152.791684,-31.630803 +2020,7,28,1,New South Wales,152.723448,-29.382377 +2022,8,27,1,New South Wales,152.87323,-31.467704 +2021,1,20,1,New South Wales,153.364452,-28.811172 +2021,10,28,1,New South Wales,150.609073,-34.494 +2021,1,7,1,New South Wales,152.415064,-31.933181 +2021,6,21,1,New South Wales,150.518957,-34.462354 +2023,5,9,1,New South Wales,153.104079,-29.477474 +2021,1,11,1,New South Wales,153.635695,-28.636488 +2020,9,3,1,New South Wales,152.914224,-31.466332 +2024,1,18,1,New South Wales,152.031875,-32.749051 +2022,9,25,1,New South Wales,152.878849,-29.678429 +2021,5,14,1,New South Wales,153.556565,-28.37268 +2022,6,2,1,New South Wales,152.914976,-31.445922 +2021,4,19,1,New South Wales,150.637467,-34.421781 +2021,6,3,1,New South Wales,150.606767,-34.437754 +2021,12,21,1,New South Wales,152.905444,-31.43744 +2020,5,18,1,New South Wales,149.298857,-36.102074 +2021,8,11,1,New South Wales,150.522215,-34.464783 +2023,9,25,1,New South Wales,153.27331,-28.931622 +2021,5,26,1,New South Wales,150.617513,-34.45055 +2021,7,6,1,New South Wales,150.522447,-34.465779 +2023,9,14,1,New South Wales,153.293421,-28.864526 +2021,6,24,1,New South Wales,150.601152,-34.417206 +2021,3,6,1,New South Wales,150.607897,-34.43206 +2021,10,2,1,New South Wales,153.508917,-28.80952 +2023,12,13,1,New South Wales,150.786031,-33.713883 +2021,4,30,1,New South Wales,150.63536,-34.419694 +2020,11,24,1,New South Wales,150.845128,-29.834383 +2022,4,11,1,New South Wales,152.300422,-31.948252 +2021,4,19,1,New South Wales,150.627201,-34.385818 +2024,2,21,1,New South Wales,152.915167,-29.590841 +2021,5,30,1,New South Wales,150.631314,-34.420048 +2021,12,12,1,New South Wales,150.822876,-34.150171 +2021,3,5,1,New South Wales,150.609921,-34.432848 +2020,8,7,1,New South Wales,153.523325,-28.669477 +2022,11,20,1,New South Wales,152.788781,-30.895519 +2020,6,30,1,New South Wales,152.92256,-31.450165 +2024,4,23,1,New South Wales,152.906418,-31.491616 +2022,11,27,1,New South Wales,152.788781,-30.895519 +2022,12,23,1,New South Wales,153.27955,-28.940534 +2021,5,13,1,New South Wales,150.51622,-34.449299 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2021,9,11,1,New South Wales,153.101086,-29.489862 +2020,7,19,1,New South Wales,153.103538,-29.485996 +2020,9,29,1,New South Wales,149.551646,-33.56304 +2022,3,5,1,New South Wales,153.108108,-29.490269 +2023,9,1,1,New South Wales,152.908358,-31.456755 +2022,11,8,1,New South Wales,151.740307,-30.477386 +2023,1,31,1,New South Wales,153.375311,-28.999789 +2021,1,29,1,New South Wales,153.374956,-28.885195 +2020,11,13,1,New South Wales,153.489569,-28.228915 +2021,12,25,1,New South Wales,150.617329,-34.439033 +2023,1,11,1,New South Wales,152.785147,-31.633774 +2022,10,5,1,New South Wales,152.92669,-31.454507 +2021,1,10,1,New South Wales,152.915577,-31.483677 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2022,8,7,1,New South Wales,150.791487,-34.234423 +2023,10,25,1,New South Wales,153.101258,-29.489951 +2023,9,12,1,New South Wales,153.272654,-28.822468 +2021,4,28,1,New South Wales,150.638552,-34.489499 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2021,7,10,1,New South Wales,150.640976,-34.393657 +2020,5,28,1,New South Wales,149.363793,-36.016019 +2021,6,19,1,New South Wales,150.603909,-34.439519 +2022,3,14,1,New South Wales,153.110517,-29.490217 +2021,7,14,1,New South Wales,150.627104,-34.38578 +2020,11,15,1,New South Wales,153.498072,-28.226882 +2021,2,6,1,New South Wales,152.415127,-31.933228 +2021,4,23,1,New South Wales,150.637096,-34.485135 +2021,10,4,1,New South Wales,153.288603,-28.865643 +2022,6,23,1,New South Wales,152.894723,-31.460953 +2021,5,8,1,New South Wales,150.521122,-34.466798 +2022,4,19,1,New South Wales,152.868887,-29.685291 +2022,12,23,1,New South Wales,152.868105,-31.474053 +2021,7,28,1,New South Wales,150.640916,-34.397731 +2021,4,25,1,New South Wales,150.63528,-34.420215 +2024,2,18,1,New South Wales,151.229312,-32.946454 +2021,5,31,1,New South Wales,150.604626,-34.424685 +2021,5,21,1,New South Wales,150.521518,-34.465535 +2021,6,15,1,New South Wales,150.630688,-34.420658 +2020,7,23,1,New South Wales,152.802324,-31.124545 +2021,5,20,1,New South Wales,150.600446,-34.428957 +2022,9,2,1,New South Wales,150.878876,-34.014065 +2021,7,7,1,New South Wales,150.642153,-34.396285 +2024,7,20,1,New South Wales,152.084121,-32.739915 +2021,5,4,1,New South Wales,150.627092,-34.389674 +2022,1,6,1,New South Wales,152.919651,-31.448553 +2020,7,24,1,New South Wales,152.915881,-31.481678 +2023,7,19,1,New South Wales,153.110517,-29.49018 +2022,7,25,1,New South Wales,153.109245,-29.490824 +2021,7,21,1,New South Wales,150.630772,-34.420759 +2021,4,30,1,New South Wales,150.517609,-34.442791 +2021,5,4,1,New South Wales,150.627092,-34.389674 +2021,5,15,1,New South Wales,150.637379,-34.423718 +2022,2,3,1,New South Wales,152.896191,-31.444973 +2021,5,15,1,New South Wales,150.602786,-34.436171 +2021,4,16,1,New South Wales,150.613224,-34.430686 +2021,3,30,1,New South Wales,150.530992,-34.483874 +2021,4,27,1,New South Wales,151.713504,-30.578976 +2021,6,13,1,New South Wales,150.515948,-34.446715 +2020,10,11,1,New South Wales,152.114096,-32.724199 +2020,1,17,1,New South Wales,152.720089,-31.244603 +2023,9,25,1,New South Wales,150.818832,-34.109268 +2021,5,3,1,New South Wales,150.520467,-34.453974 +2020,8,14,1,New South Wales,153.303636,-28.35799 +2023,6,18,1,New South Wales,153.108119,-29.49025 +2020,1,15,1,New South Wales,153.110613,-29.490133 +2021,8,21,1,New South Wales,150.518387,-34.447026 +2021,6,6,1,New South Wales,150.608647,-34.434762 +2021,2,27,1,New South Wales,150.611374,-34.430731 +2020,4,8,1,New South Wales,150.140023,-34.929469 +2021,6,15,1,New South Wales,152.900668,-31.4433 +2020,7,10,1,New South Wales,152.922261,-31.458324 +2021,6,24,1,New South Wales,150.514277,-34.446555 +2022,11,,1,New South Wales,152.788781,-30.895519 +2022,8,30,1,New South Wales,149.324637,-36.293378 +2021,6,12,1,New South Wales,150.630141,-34.420756 +2020,1,27,1,New South Wales,150.06994,-35.09674 +2021,6,18,1,New South Wales,150.618593,-34.435903 +2021,3,8,1,New South Wales,150.656033,-34.455451 +2020,11,1,1,New South Wales,149.96897,-36.58553 +2021,6,10,1,New South Wales,153.324552,-28.390324 +2021,5,25,1,New South Wales,150.639241,-34.392731 +2021,3,22,1,New South Wales,150.517029,-34.446223 +2021,10,24,1,New South Wales,150.618349,-34.436808 +2023,4,19,1,New South Wales,152.781645,-31.590521 +2021,10,5,1,New South Wales,153.508577,-28.810307 +2021,5,19,1,New South Wales,150.515287,-34.451011 +2020,10,21,1,New South Wales,153.324647,-28.8343 +2020,11,11,1,New South Wales,149.911111,-31.150071 +2020,10,8,1,New South Wales,150.718217,-33.442702 +2024,3,15,1,New South Wales,152.300391,-31.91313 +2022,6,18,1,New South Wales,153.411846,-28.822412 +2023,9,12,1,New South Wales,150.402667,-28.947235 +2021,9,8,1,New South Wales,152.181732,-29.872226 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2022,7,25,1,New South Wales,152.810456,-31.140009 +2021,5,3,1,New South Wales,153.104106,-29.480827 +2021,2,17,1,New South Wales,153.292695,-28.864265 +2021,5,5,1,New South Wales,150.632861,-34.418825 +2021,1,21,1,New South Wales,152.781654,-29.580602 +2021,11,29,1,New South Wales,150.095687,-31.079438 +2023,12,19,1,New South Wales,152.816719,-30.258635 +2021,10,2,1,New South Wales,153.400637,-28.257818 +2021,6,16,1,New South Wales,150.608503,-34.430657 +2023,10,25,1,New South Wales,150.662495,-34.236944 +2023,10,24,1,New South Wales,152.904751,-31.44559 +2021,10,25,1,New South Wales,153.283497,-28.679423 +2022,3,19,1,New South Wales,152.784552,-31.590569 +2021,6,19,1,New South Wales,150.518921,-34.460235 +2021,6,4,1,New South Wales,150.636689,-34.487985 +2021,11,5,1,New South Wales,150.6176,-34.440959 +2021,1,11,1,New South Wales,153.10357,-29.488447 +2021,5,11,1,New South Wales,150.517502,-34.447531 +2020,10,17,1,New South Wales,153.557027,-28.393638 +2023,10,13,1,New South Wales,150.785331,-33.714112 +2021,5,21,1,New South Wales,150.639145,-34.493171 +2021,5,28,1,New South Wales,150.515886,-34.448814 +2020,10,31,1,New South Wales,149.96897,-36.58553 +2021,3,1,1,New South Wales,150.521427,-34.446889 +2021,4,20,1,New South Wales,150.516083,-34.444725 +2021,4,24,1,New South Wales,150.616337,-34.435633 +2021,9,3,1,New South Wales,150.521608,-34.465807 +2020,7,31,1,New South Wales,153.480957,-28.703622 +2023,12,27,1,New South Wales,152.176938,-28.636985 +2022,10,4,1,New South Wales,149.359189,-36.176369 +2022,9,4,1,New South Wales,153.103463,-29.485618 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2021,5,7,1,New South Wales,150.610005,-34.455073 +2021,11,3,1,New South Wales,152.823571,-29.813031 +2022,2,26,1,New South Wales,153.609535,-28.661319 +2020,11,24,1,New South Wales,153.552228,-28.588985 +2023,5,29,1,New South Wales,153.557681,-28.396704 +2021,10,11,1,New South Wales,153.043387,-28.469182 +2021,9,14,1,New South Wales,150.529725,-34.472561 +2020,10,25,1,New South Wales,153.515143,-28.667698 +2021,5,22,1,New South Wales,150.633861,-34.392582 +2021,6,5,1,New South Wales,153.036374,-30.441321 +2022,9,21,1,New South Wales,153.546639,-28.331028 +2021,5,20,1,New South Wales,150.632809,-34.417976 +2021,5,29,1,New South Wales,150.655821,-34.456393 +2020,12,1,1,New South Wales,153.424172,-28.662508 +2021,4,15,1,New South Wales,153.104144,-29.480883 +2021,4,26,1,New South Wales,150.615941,-34.436157 +2023,3,24,1,New South Wales,152.910556,-31.453772 +2022,11,24,1,New South Wales,152.159445,-32.711701 +2021,12,12,1,New South Wales,152.101746,-32.733374 +2020,9,9,1,New South Wales,152.898016,-29.631853 +2020,10,29,1,New South Wales,149.984095,-36.575978 +2020,11,22,1,New South Wales,153.103731,-29.485646 +2021,10,11,1,New South Wales,150.993522,-33.976184 +2020,5,4,1,New South Wales,150.01181,-34.83574 +2022,8,6,1,New South Wales,150.79367,-34.23387 +2023,9,21,1,New South Wales,152.605312,-30.341208 +2020,2,5,1,New South Wales,152.0409,-32.737551 +2021,6,8,1,New South Wales,150.641523,-34.39548 +2024,4,13,1,New South Wales,153.071635,-30.886928 +2021,5,5,1,New South Wales,150.659029,-34.457663 +2021,6,6,1,New South Wales,150.534636,-34.459562 +2020,10,17,1,New South Wales,152.879069,-29.662082 +2021,7,8,1,New South Wales,150.520784,-34.465349 +2020,1,13,1,New South Wales,153.040573,-29.072674 +2021,9,13,1,New South Wales,150.532456,-34.477404 +2021,3,20,1,New South Wales,152.786709,-28.563092 +2020,10,12,1,New South Wales,149.952917,-36.681355 +2022,12,19,1,New South Wales,152.910626,-31.441436 +2020,7,28,1,New South Wales,153.312942,-28.862631 +2023,11,7,1,New South Wales,153.101719,-29.489629 +2020,10,16,1,New South Wales,149.887989,-36.587028 +2021,11,29,1,New South Wales,152.94051,-30.4751 +2022,8,11,1,New South Wales,150.515525,-34.465959 +2023,10,25,1,New South Wales,150.784694,-33.713358 +2023,12,28,1,New South Wales,152.326124,-31.905232 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2021,7,8,1,New South Wales,150.630922,-34.388847 +2024,7,7,1,New South Wales,152.136862,-32.201281 +2023,9,19,1,New South Wales,153.501594,-28.240082 +2021,2,28,1,New South Wales,150.615986,-34.433048 +2021,5,12,1,New South Wales,150.521898,-34.465587 +2020,1,18,1,New South Wales,150.789066,-34.112821 +2020,10,22,1,New South Wales,149.919967,-36.589766 +2023,10,25,1,New South Wales,152.19096,-32.219628 +2024,1,28,1,New South Wales,152.063401,-32.706185 +2021,5,16,1,New South Wales,150.628878,-34.389204 +2021,5,7,1,New South Wales,150.516773,-34.446777 +2021,3,18,1,New South Wales,150.615556,-34.435537 +2021,4,22,1,New South Wales,150.609464,-34.419064 +2021,5,1,1,New South Wales,150.608904,-34.434902 +2023,4,27,1,New South Wales,153.316233,-28.846422 +2021,3,3,1,New South Wales,152.412688,-31.932308 +2022,2,9,1,New South Wales,153.10379,-29.485538 +2021,6,8,1,New South Wales,150.603679,-34.436531 +2022,1,22,1,New South Wales,152.924308,-31.449908 +2022,9,20,1,New South Wales,153.15582,-28.580872 +2021,5,15,1,New South Wales,150.517748,-34.441424 +2022,6,13,1,New South Wales,151.988872,-32.720145 +2021,8,7,1,New South Wales,150.632646,-34.418343 +2021,3,6,1,New South Wales,150.603368,-34.436362 +2021,6,12,1,New South Wales,150.520385,-34.454189 +2021,11,22,1,New South Wales,152.915574,-31.445903 +2021,9,14,1,New South Wales,150.610277,-34.455105 +2021,5,27,1,New South Wales,150.619002,-34.43949 +2021,7,6,1,New South Wales,150.642762,-34.39554 +2021,10,19,1,New South Wales,152.867825,-29.66734 +2020,1,12,1,New South Wales,150.82481,-34.29377 +2023,8,15,1,New South Wales,152.960707,-29.731778 +2020,4,7,1,New South Wales,152.922816,-29.735184 +2024,7,23,1,New South Wales,153.437446,-28.981439 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2020,10,18,1,New South Wales,149.950035,-36.601015 +2023,7,20,1,New South Wales,150.970833,-33.566944 +2021,9,4,1,New South Wales,153.283326,-28.830777 +2020,4,28,1,New South Wales,152.737845,-30.877162 +2022,1,13,1,New South Wales,153.322444,-28.825855 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2021,11,12,1,New South Wales,153.315522,-28.826069 +2020,10,22,1,New South Wales,149.947316,-36.607854 +2021,10,5,1,New South Wales,153.503422,-28.239653 +2020,8,4,1,New South Wales,149.949575,-36.554484 +2021,3,12,1,New South Wales,150.6581,-34.457014 +2021,9,5,1,New South Wales,153.101955,-29.488779 +2021,4,17,1,New South Wales,150.793923,-34.147892 +2024,8,22,1,New South Wales,152.806554,-31.674712 +2021,3,3,1,New South Wales,150.61085,-34.432299 +2022,3,10,1,New South Wales,151.667,-30.455 +2024,4,27,1,New South Wales,152.374088,-31.915606 +2021,4,19,1,New South Wales,150.614365,-34.42923 +2021,5,12,1,New South Wales,150.521543,-34.465797 +2021,11,10,1,New South Wales,152.915635,-31.484394 +2021,6,29,1,New South Wales,150.596068,-34.411616 +2021,7,3,1,New South Wales,150.602956,-34.417629 +2021,1,9,1,New South Wales,152.941445,-30.494909 +2021,5,16,1,New South Wales,150.515797,-34.449597 +2022,11,18,1,New South Wales,152.788781,-30.895519 +2023,10,4,1,New South Wales,152.371046,-31.923541 +2021,12,,1,New South Wales,151.897396,-30.021503 +2022,9,30,1,New South Wales,153.493649,-28.678687 +2021,9,16,1,New South Wales,150.607343,-34.509694 +2022,4,2,1,New South Wales,153.102577,-29.488046 +2021,12,1,1,New South Wales,153.103918,-29.485286 +2021,3,17,1,New South Wales,150.51765,-34.446209 +2022,12,6,1,New South Wales,149.690579,-33.149976 +2022,2,1,1,New South Wales,153.101322,-29.489797 +2023,8,9,1,New South Wales,153.104825,-29.476932 +2021,10,7,1,New South Wales,152.417079,-31.957715 +2024,1,15,1,New South Wales,152.063293,-32.706113 +2021,4,15,1,New South Wales,150.532929,-34.475782 +2021,11,10,1,New South Wales,150.61526,-34.440994 +2023,10,27,1,New South Wales,152.189597,-32.229205 +2020,9,17,1,New South Wales,152.897027,-31.451721 +2022,7,6,1,New South Wales,153.5465,-28.73469 +2022,11,9,1,New South Wales,153.222609,-28.886375 +2024,3,24,1,New South Wales,150.003869,-32.696024 +2023,12,14,1,New South Wales,152.787019,-31.629635 +2020,5,29,1,New South Wales,153.231128,-28.840919 +2021,6,10,1,New South Wales,153.315553,-28.815793 +2023,5,26,1,New South Wales,153.094177,-29.488765 +2023,9,13,1,New South Wales,150.754898,-34.201092 +2023,7,29,1,New South Wales,153.297949,-28.900009 +2020,10,7,1,New South Wales,153.097186,-29.48664 +2023,10,5,1,New South Wales,153.101161,-29.490082 +2021,8,31,1,New South Wales,152.893564,-30.442547 +2022,2,15,1,New South Wales,152.063513,-32.706257 +2021,8,4,1,New South Wales,150.512834,-34.467324 +2021,6,20,1,New South Wales,150.513106,-34.446035 +2023,10,24,1,New South Wales,150.786413,-33.70598 +2022,7,4,1,New South Wales,152.006253,-32.727471 +2020,12,9,1,New South Wales,149.960189,-36.280531 +2024,8,21,1,New South Wales,152.401042,-31.913607 +2020,4,29,1,New South Wales,152.914903,-31.446468 +2021,6,9,1,New South Wales,150.528073,-34.456986 +2021,4,7,1,New South Wales,150.517213,-34.445884 +2023,11,1,1,New South Wales,152.891058,-31.446229 +2021,4,14,1,New South Wales,150.633422,-34.392339 +2022,11,28,1,New South Wales,153.432956,-28.958311 +2021,11,10,1,New South Wales,152.893115,-31.446849 +2020,,,1,New South Wales,152.810715,-31.653199 +2021,6,18,1,New South Wales,150.522207,-34.451458 +2020,2,1,1,New South Wales,149.365149,-36.053748 +2022,9,25,1,New South Wales,153.285659,-28.840728 +2021,4,14,1,New South Wales,149.282056,-36.059639 +2021,5,22,1,New South Wales,150.639143,-34.493234 +2022,10,17,1,New South Wales,152.896919,-31.432821 +2023,4,4,1,New South Wales,152.661316,-28.610591 +2020,5,16,1,New South Wales,149.30799,-36.064179 +2020,,,1,New South Wales,152.810715,-31.653199 +2024,2,7,1,New South Wales,152.609645,-30.287438 +2024,8,16,1,New South Wales,152.531129,-32.338554 +2023,1,6,1,New South Wales,153.10932,-29.49082 +2024,3,3,1,New South Wales,150.783627,-33.713576 +2021,5,17,1,New South Wales,150.615266,-34.450362 +2021,3,3,1,New South Wales,152.063952,-32.707682 +2020,10,1,1,New South Wales,152.489306,-30.17693 +2023,11,19,1,New South Wales,152.793435,-31.641205 +2021,4,23,1,New South Wales,150.65996,-34.457843 +2021,5,28,1,New South Wales,150.616148,-34.451497 +2021,9,13,1,New South Wales,153.085842,-30.326985 +2023,11,9,1,New South Wales,150.783939,-33.717554 +2020,2,23,1,New South Wales,152.89787,-31.456201 +2021,6,14,1,New South Wales,150.521178,-34.465618 +2023,11,10,1,New South Wales,152.894048,-31.443248 +2022,11,2,1,New South Wales,153.315905,-28.849986 +2021,4,21,1,New South Wales,150.617065,-34.433772 +2021,10,13,1,New South Wales,153.102454,-29.48792 +2021,6,9,1,New South Wales,150.626589,-34.387059 +2023,9,1,1,New South Wales,153.110576,-29.48947 +2020,11,12,1,New South Wales,149.995573,-36.572611 +2022,1,23,1,New South Wales,153.324752,-28.884244 +2022,2,12,1,New South Wales,153.071682,-28.585441 +2022,12,31,1,New South Wales,153.10976,-29.490054 +2021,3,20,1,New South Wales,150.615386,-34.435786 +2021,12,22,1,New South Wales,152.914411,-31.47932 +2021,6,19,1,New South Wales,150.520337,-34.465727 +2023,11,11,1,New South Wales,150.999003,-34.083054 +2023,11,27,1,New South Wales,152.352917,-31.926413 +2021,7,25,1,New South Wales,150.630676,-34.420676 +2021,5,18,1,New South Wales,150.60028,-34.428666 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2021,4,17,1,New South Wales,150.606486,-34.454454 +2021,4,20,1,New South Wales,150.659854,-34.456975 +2021,3,16,1,New South Wales,150.609409,-34.430575 +2021,7,22,1,New South Wales,150.975253,-34.085514 +2024,2,4,1,New South Wales,150.785781,-33.706871 +2021,8,27,1,New South Wales,150.522786,-34.466462 +2022,4,8,1,New South Wales,153.400663,-28.257745 +2023,3,2,1,New South Wales,150.466953,-34.490589 +2021,8,16,1,New South Wales,153.394863,-28.959973 +2021,5,7,1,New South Wales,150.632786,-34.4184 +2021,5,1,1,New South Wales,150.617434,-34.399692 +2021,5,23,1,New South Wales,150.515868,-34.450527 +2021,6,5,1,New South Wales,150.623523,-34.389352 +2021,8,20,1,New South Wales,152.38007,-31.914503 +2022,3,31,1,New South Wales,146.552742,-34.754674 +2023,2,6,1,New South Wales,152.88388,-31.440823 +2023,2,1,1,New South Wales,151.033701,-29.774336 +2021,7,7,1,New South Wales,150.642197,-34.396268 +2021,11,5,1,New South Wales,152.900516,-29.631317 +2021,4,30,1,New South Wales,150.618128,-34.429655 +2021,8,25,1,New South Wales,153.395153,-28.959978 +2021,5,27,1,New South Wales,153.096335,-30.334349 +2021,8,14,1,New South Wales,150.63196,-34.418357 +2023,4,27,1,New South Wales,150.808987,-34.208693 +2022,5,23,1,New South Wales,153.109959,-29.490147 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2021,4,10,1,New South Wales,150.534685,-34.462348 +2020,10,30,1,New South Wales,149.934245,-36.578531 +2021,5,6,1,New South Wales,150.615935,-34.436004 +2020,8,25,1,New South Wales,151.773657,-32.590267 +2020,10,20,1,New South Wales,149.950035,-36.601015 +2020,12,20,1,New South Wales,149.946838,-35.157587 +2020,,,1,New South Wales,152.81802,-31.27744 +2020,11,27,1,New South Wales,152.90517,-31.449161 +2022,8,14,1,New South Wales,150.538333,-34.511833 +2020,10,25,1,New South Wales,149.955017,-36.576791 +2021,3,19,1,New South Wales,150.609873,-34.430305 +2020,,,1,New South Wales,153.316325,-28.949853 +2021,1,19,1,New South Wales,150.837283,-34.053649 +2021,5,20,1,New South Wales,150.608022,-34.433794 +2021,7,7,1,New South Wales,150.64213,-34.39633 +2023,1,15,1,New South Wales,151.497089,-30.643622 +2022,10,14,1,New South Wales,152.926446,-31.473012 +2021,6,18,1,New South Wales,150.642638,-34.394519 +2021,4,30,1,New South Wales,150.637862,-34.488846 +2021,6,18,1,New South Wales,150.622508,-34.384491 +2021,6,10,1,New South Wales,150.646468,-34.397171 +2021,8,19,1,New South Wales,150.517971,-34.437543 +2020,11,1,1,New South Wales,149.934245,-36.578531 +2020,5,28,1,New South Wales,152.69277,-31.355557 +2021,6,22,1,New South Wales,150.644055,-34.392851 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2022,5,3,1,New South Wales,152.109985,-32.777513 +2021,12,31,1,New South Wales,153.293096,-28.864669 +2021,5,5,1,New South Wales,150.60918,-34.418752 +2020,10,29,1,New South Wales,149.934245,-36.578531 +2021,3,7,1,New South Wales,150.602977,-34.437085 +2021,3,3,1,New South Wales,150.609316,-34.420467 +2023,10,23,1,New South Wales,150.785908,-33.708813 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2021,10,30,1,New South Wales,153.481287,-28.626781 +2024,2,27,1,New South Wales,153.109417,-29.490516 +2022,5,23,1,New South Wales,152.086206,-32.728196 +2021,6,11,1,New South Wales,150.626589,-34.385517 +2020,4,,1,New South Wales,151.758849,-32.314012 +2021,6,10,1,New South Wales,150.521622,-34.465699 +2022,1,4,1,New South Wales,152.094146,-32.739923 +2023,1,3,1,New South Wales,153.143431,-29.200397 +2021,4,5,1,New South Wales,150.520619,-34.450677 +2021,8,18,1,New South Wales,150.512995,-34.447205 +2021,6,25,1,New South Wales,150.599916,-34.418183 +2020,11,7,1,New South Wales,150.010074,-36.579686 +2021,6,10,1,New South Wales,150.627163,-34.386006 +2020,11,5,1,New South Wales,153.415881,-28.871912 +2021,6,16,1,New South Wales,150.604725,-34.427328 +2021,4,11,1,New South Wales,150.660152,-34.458757 +2021,4,21,1,New South Wales,150.609422,-34.419018 +2021,6,4,1,New South Wales,150.533445,-34.461927 +2021,8,20,1,New South Wales,153.078262,-30.338406 +2021,2,10,1,New South Wales,153.283257,-28.822308 +2021,6,11,1,New South Wales,152.404167,-31.945815 +2023,9,12,1,New South Wales,153.393981,-28.958968 +2021,3,3,1,New South Wales,150.604403,-34.43897 +2020,5,26,1,New South Wales,152.915095,-29.152018 +2021,3,10,1,New South Wales,150.655913,-34.456233 +2021,5,6,1,New South Wales,150.632871,-34.418852 +2021,3,19,1,New South Wales,150.659499,-34.458375 +2022,5,14,1,New South Wales,153.110522,-29.490213 +2020,9,23,1,New South Wales,152.041486,-32.665157 +2020,10,3,1,New South Wales,152.929481,-29.726928 +2021,3,27,1,New South Wales,153.103752,-29.485552 +2022,8,20,1,New South Wales,150.790785,-34.189017 +2022,9,18,1,New South Wales,153.555987,-28.398817 +2021,5,8,1,New South Wales,151.752415,-32.404663 +2022,10,16,1,New South Wales,151.963689,-32.657602 +2021,3,21,1,New South Wales,150.533186,-34.479609 +2024,4,20,1,New South Wales,152.314588,-31.924736 +2021,5,29,1,New South Wales,150.639164,-34.49135 +2022,4,28,1,New South Wales,153.361058,-28.83929 +2020,11,2,1,New South Wales,149.934245,-36.578531 +2020,12,6,1,New South Wales,153.10394,-29.489535 +2020,3,29,1,New South Wales,152.973842,-31.189048 +2021,6,3,1,New South Wales,150.519598,-34.447312 +2022,8,8,1,New South Wales,150.525216,-34.439072 +2021,2,23,1,New South Wales,150.614425,-34.432459 +2021,6,1,1,New South Wales,150.628978,-34.390288 +2020,7,3,1,New South Wales,153.104171,-29.480378 +2021,3,7,1,New South Wales,150.808549,-34.098225 +2023,1,23,1,New South Wales,152.892524,-31.447485 +2023,6,29,1,New South Wales,153.095995,-29.484805 +2021,2,16,1,New South Wales,152.039104,-32.737789 +2021,7,11,1,New South Wales,153.311174,-28.838571 +2021,5,2,1,New South Wales,150.61147,-34.419698 +2020,9,16,1,New South Wales,153.375014,-28.254046 +2020,11,10,1,New South Wales,150.694698,-33.386849 +2021,5,6,1,New South Wales,150.637345,-34.423798 +2020,11,20,1,New South Wales,152.510302,-31.936905 +2020,2,12,1,New South Wales,152.880083,-31.426271 +2020,5,14,1,New South Wales,152.586591,-31.775191 +2021,7,27,1,New South Wales,150.521701,-34.464889 +2023,9,15,1,New South Wales,150.785131,-33.714524 +2020,10,16,1,New South Wales,152.063775,-32.70656 +2021,8,9,1,New South Wales,150.632582,-34.418297 +2022,8,16,1,New South Wales,152.921205,-31.456759 +2021,6,14,1,New South Wales,150.640106,-34.39831 +2023,12,18,1,New South Wales,152.872205,-31.464769 +2022,5,5,1,New South Wales,152.373639,-31.914535 +2020,5,7,1,New South Wales,150.05708,-34.89993 +2023,10,24,1,New South Wales,152.91225,-31.44219 +2023,1,1,1,New South Wales,146.529719,-34.740797 +2022,2,15,1,New South Wales,153.086229,-30.345093 +2023,8,23,1,New South Wales,153.075063,-28.555784 +2020,11,10,1,New South Wales,152.906556,-31.454357 +2022,10,17,1,New South Wales,153.629423,-28.637369 +2023,10,28,1,New South Wales,153.103918,-29.478225 +2020,5,18,1,New South Wales,152.141262,-31.407587 +2020,9,11,1,New South Wales,149.577506,-33.419281 +2021,6,8,1,New South Wales,150.518026,-34.457035 +2021,9,26,1,New South Wales,153.108183,-29.490217 +2020,12,17,1,New South Wales,152.064607,-32.70652 +2021,3,5,1,New South Wales,150.530443,-34.46924 +2021,5,16,1,New South Wales,150.640457,-34.494152 +2020,11,1,1,New South Wales,149.968131,-36.578885 +2021,6,7,1,New South Wales,150.641932,-34.396795 +2021,5,8,1,New South Wales,150.516414,-34.447518 +2023,6,25,1,New South Wales,152.085296,-32.775837 +2023,4,24,1,New South Wales,153.53323,-28.506774 +2021,7,5,1,New South Wales,150.630717,-34.389925 +2020,7,28,1,New South Wales,152.590888,-31.558909 +2023,2,28,1,New South Wales,150.833835,-34.093819 +2021,4,23,1,New South Wales,151.624706,-30.402213 +2022,2,17,1,New South Wales,152.694188,-31.621103 +2024,5,15,1,New South Wales,152.19037,-31.951998 +2020,1,19,1,New South Wales,153.10424,-29.479988 +2022,7,28,1,New South Wales,151.118042,-33.228387 +2020,5,7,1,New South Wales,153.30734,-28.97709 +2021,11,4,1,New South Wales,152.373325,-31.915639 +2023,5,5,1,New South Wales,153.49553,-28.693291 +2023,12,28,1,New South Wales,150.785138,-33.710495 +2023,10,11,1,New South Wales,153.110533,-29.489923 +2021,6,14,1,New South Wales,150.518499,-34.457594 +2022,7,10,1,New South Wales,152.909685,-31.487894 +2021,9,15,1,New South Wales,150.532346,-34.477465 +2021,6,3,1,New South Wales,150.636996,-34.488288 +2021,5,24,1,New South Wales,150.639346,-34.492994 +2021,4,30,1,New South Wales,150.610347,-34.419018 +2021,6,11,1,New South Wales,153.594424,-28.712315 +2023,9,15,1,New South Wales,153.149332,-28.500029 +2021,3,17,1,New South Wales,153.590577,-28.658124 +2023,2,19,1,New South Wales,153.302486,-28.848102 +2023,4,23,1,New South Wales,151.843566,-32.518862 +2020,9,28,1,New South Wales,153.102701,-29.4875 +2022,1,17,1,New South Wales,152.91956,-31.442876 +2020,10,1,1,New South Wales,152.980062,-31.145158 +2021,1,3,1,New South Wales,153.103811,-29.485594 +2022,7,17,1,New South Wales,150.877346,-34.013124 +2021,4,30,1,New South Wales,150.624211,-34.388104 +2021,1,3,1,New South Wales,150.685616,-34.265974 +2021,8,30,1,New South Wales,150.98141,-34.129716 +2022,1,23,1,New South Wales,152.063585,-32.705964 +2023,12,21,1,New South Wales,152.063312,-32.706553 +2021,4,26,1,New South Wales,150.615909,-34.436166 +2021,10,15,1,New South Wales,153.015853,-28.434815 +2021,3,13,1,New South Wales,150.517444,-34.452055 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2020,10,12,1,New South Wales,150.940088,-33.953175 +2020,10,11,1,New South Wales,152.926263,-31.476487 +2023,9,24,1,New South Wales,152.838531,-31.59403 +2021,5,18,1,New South Wales,150.600292,-34.428621 +2020,10,22,1,New South Wales,149.947183,-36.617465 +2020,1,1,1,New South Wales,153.61586,-28.659488 +2020,1,22,1,New South Wales,153.10416,-29.489657 +2022,10,28,1,New South Wales,150.848132,-34.066996 +2023,12,5,1,New South Wales,152.87057,-30.40514 +2024,7,28,1,New South Wales,150.986371,-33.976111 +2021,4,12,1,New South Wales,150.615848,-34.432919 +2022,7,21,1,New South Wales,153.34001,-28.81439 +2020,12,9,1,New South Wales,149.960189,-36.280531 +2022,8,25,1,New South Wales,151.649775,-30.326207 +2022,2,15,1,New South Wales,153.303208,-28.817652 +2021,5,29,1,New South Wales,150.518267,-34.451829 +2020,2,28,1,New South Wales,152.911789,-31.458665 +2021,5,24,1,New South Wales,150.603973,-34.432696 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2021,7,20,1,New South Wales,150.630688,-34.420658 +2020,11,6,1,New South Wales,150.016902,-36.541583 +2021,5,15,1,New South Wales,150.637345,-34.423798 +2020,10,30,1,New South Wales,149.934245,-36.578531 +2021,6,13,1,New South Wales,150.515721,-34.446656 +2020,10,27,1,New South Wales,153.560235,-28.37446 +2021,9,11,1,New South Wales,150.518447,-34.447586 +2020,11,25,1,New South Wales,153.303017,-28.865743 +2022,7,31,1,New South Wales,153.395546,-29.018925 +2020,10,20,1,New South Wales,149.919967,-36.589766 +2022,4,3,1,New South Wales,152.374047,-31.913202 +2021,6,2,1,New South Wales,150.604369,-34.437896 +2023,11,5,1,New South Wales,150.4846,-34.40122 +2020,9,4,1,New South Wales,153.103763,-29.485641 +2020,3,28,1,New South Wales,150.121111,-35.066402 +2021,5,17,1,New South Wales,150.632751,-34.418877 +2020,10,20,1,New South Wales,153.277965,-28.8186 +2023,1,11,1,New South Wales,153.383242,-28.787324 +2021,12,6,1,New South Wales,153.316022,-28.826884 +2022,7,27,1,New South Wales,153.301256,-28.81811 +2021,4,24,1,New South Wales,150.608126,-34.454189 +2023,6,9,1,New South Wales,152.922496,-31.458621 +2021,3,13,1,New South Wales,150.616092,-34.434294 +2020,4,10,1,New South Wales,152.390213,-31.207512 +2020,11,2,1,New South Wales,149.934245,-36.578531 +2021,4,26,1,New South Wales,149.526366,-33.561591 +2021,6,24,1,New South Wales,150.644328,-34.393208 +2024,2,26,1,New South Wales,152.901728,-31.484888 +2022,6,15,1,New South Wales,152.8278,-31.26337 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2021,6,27,1,New South Wales,150.631521,-34.388417 +2021,7,10,1,New South Wales,150.599043,-34.412973 +2021,6,24,1,New South Wales,150.514331,-34.446556 +2021,4,7,1,New South Wales,152.741668,-30.120163 +2021,4,28,1,New South Wales,150.616838,-34.429494 +2021,8,22,1,New South Wales,150.640194,-34.398682 +2020,9,25,1,New South Wales,153.096108,-29.484754 +2023,9,23,1,New South Wales,153.501114,-28.224592 +2021,4,29,1,New South Wales,150.624446,-34.387856 +2022,2,17,1,New South Wales,150.956507,-34.103904 +2021,5,23,1,New South Wales,150.597898,-34.427889 +2021,2,28,1,New South Wales,150.611217,-34.43163 +2021,5,16,1,New South Wales,150.520487,-34.454019 +2021,4,21,1,New South Wales,150.631132,-34.387553 +2021,9,12,1,New South Wales,152.381097,-31.914637 +2021,6,11,1,New South Wales,150.604293,-34.437877 +2021,10,5,1,New South Wales,150.808987,-34.208693 +2020,9,2,1,New South Wales,153.281139,-28.826415 +2020,7,8,1,New South Wales,152.898346,-31.443521 +2021,8,10,1,New South Wales,150.808987,-34.208693 +2022,5,4,1,New South Wales,153.388725,-28.86626 +2020,9,7,1,New South Wales,150.778378,-34.139613 +2021,6,27,1,New South Wales,150.595746,-34.413746 +2020,9,24,1,New South Wales,153.322333,-28.82706 +2021,9,30,1,New South Wales,150.808987,-34.208693 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2022,8,23,1,New South Wales,152.924358,-31.453336 +2021,7,14,1,New South Wales,150.642941,-34.395724 +2022,3,8,1,New South Wales,153.140258,-28.840098 +2021,12,19,1,New South Wales,153.101569,-29.489956 +2021,12,18,1,New South Wales,152.901272,-31.442488 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2024,3,5,1,New South Wales,152.893647,-31.446271 +2020,11,1,1,New South Wales,149.934245,-36.578531 +2020,7,8,1,New South Wales,152.907614,-31.481437 +2022,7,4,1,New South Wales,153.293688,-28.863958 +2021,5,29,1,New South Wales,150.60271,-34.424719 +2022,10,7,1,New South Wales,152.976873,-30.429414 +2020,4,2,1,New South Wales,150.063219,-33.776012 +2020,8,15,1,New South Wales,153.562111,-28.385548 +2020,5,7,1,New South Wales,153.511009,-28.580327 +2021,5,4,1,New South Wales,150.615937,-34.436302 +2023,12,4,1,New South Wales,153.10519,-29.489741 +2023,9,25,1,New South Wales,153.266992,-28.92076 +2023,4,10,1,New South Wales,153.140035,-28.643115 +2021,5,12,1,New South Wales,150.522461,-34.46531 +2021,6,7,1,New South Wales,150.641932,-34.396795 +2020,10,15,1,New South Wales,149.949786,-36.632867 +2023,7,19,1,New South Wales,153.104144,-29.48375 +2021,5,8,1,New South Wales,150.627811,-34.390004 +2021,8,6,1,New South Wales,152.993755,-30.560076 +2020,11,5,1,New South Wales,149.934245,-36.578531 +2024,4,8,1,New South Wales,152.786822,-31.62958 +2023,5,11,1,New South Wales,152.866917,-31.306397 +2023,5,17,1,New South Wales,152.908333,-31.438541 +2021,11,13,1,New South Wales,150.808987,-34.208693 +2021,4,16,1,New South Wales,150.613299,-34.430751 +2020,1,9,1,New South Wales,153.336688,-28.868027 +2022,9,19,1,New South Wales,150.808987,-34.208693 +2020,11,3,1,New South Wales,149.96897,-36.58553 +2022,11,20,1,New South Wales,153.335614,-28.833877 +2024,1,15,1,New South Wales,150.784611,-33.716655 +2022,9,28,1,New South Wales,153.19895,-29.39242 +2021,9,14,1,New South Wales,150.644146,-34.396982 +2020,11,3,1,New South Wales,149.96897,-36.58553 +2021,5,9,1,New South Wales,150.5172,-34.447795 +2021,9,29,1,New South Wales,150.51384,-34.446239 +2021,5,8,1,New South Wales,150.517009,-34.44762 +2023,6,27,1,New South Wales,152.791043,-31.640743 +2020,6,20,1,New South Wales,151.160011,-33.200218 +2021,7,26,1,New South Wales,150.521917,-34.466039 +2021,6,8,1,New South Wales,150.629731,-34.420649 +2023,7,30,1,New South Wales,152.868377,-31.474333 +2021,12,19,1,New South Wales,153.484382,-28.633989 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2020,5,11,1,New South Wales,153.103947,-29.485496 +2023,2,2,1,New South Wales,153.103634,-29.485347 +2022,9,29,1,New South Wales,152.9063,-30.24028 +2021,5,11,1,New South Wales,150.609192,-34.420618 +2020,1,2,1,New South Wales,153.104385,-29.489615 +2020,2,17,1,New South Wales,152.924715,-31.443643 +2020,1,13,1,New South Wales,150.844493,-34.061552 +2021,4,27,1,New South Wales,150.61626,-34.42878 +2020,8,26,1,New South Wales,153.292114,-28.863526 +2022,12,10,1,New South Wales,146.531241,-34.747799 +2021,6,15,1,New South Wales,150.603469,-34.436995 +2021,5,5,1,New South Wales,150.63286,-34.418843 +2023,10,2,1,New South Wales,151.009484,-34.045689 +2022,3,27,1,New South Wales,152.068801,-32.708604 +2022,11,19,1,New South Wales,149.150167,-36.084545 +2021,8,1,1,New South Wales,150.625992,-34.389743 +2021,6,19,1,New South Wales,150.519854,-34.452627 +2020,3,26,1,New South Wales,150.062479,-33.775552 +2020,7,15,1,New South Wales,152.918472,-31.442527 +2023,12,23,1,New South Wales,150.785498,-33.713395 +2021,3,12,1,New South Wales,151.851875,-32.722818 +2022,1,24,1,New South Wales,153.089601,-28.596578 +2024,6,3,1,New South Wales,152.403877,-31.927966 +2021,5,24,1,New South Wales,150.517369,-34.452 +2021,6,29,1,New South Wales,150.605532,-34.432194 +2024,1,3,1,New South Wales,152.063655,-32.706625 +2020,6,18,1,New South Wales,153.315895,-28.824581 +2021,9,18,1,New South Wales,150.533313,-34.474915 +2021,8,17,1,New South Wales,150.513091,-34.447261 +2021,7,21,1,New South Wales,150.630644,-34.420657 +2021,9,8,1,New South Wales,153.10423,-29.477581 +2021,9,11,1,New South Wales,153.071977,-30.880197 +2022,11,23,1,New South Wales,152.764422,-30.891124 +2023,6,1,1,New South Wales,150.79862,-34.19595 +2023,2,13,1,New South Wales,151.6674,-30.5006 +2021,4,28,1,New South Wales,150.63628,-34.421812 +2021,9,22,1,New South Wales,152.82489,-31.2829 +2021,6,21,1,New South Wales,150.602529,-34.43905 +2022,1,15,1,New South Wales,152.865607,-31.459239 +2021,5,19,1,New South Wales,150.523745,-34.46384 +2024,1,11,1,New South Wales,152.930102,-31.450157 +2021,6,22,1,New South Wales,150.513854,-34.446141 +2021,7,1,1,New South Wales,150.089698,-33.71313 +2021,4,8,1,New South Wales,150.60512,-34.429878 +2021,2,22,1,New South Wales,150.515589,-34.448538 +2021,3,24,1,New South Wales,150.635394,-34.488356 +2020,1,16,1,New South Wales,153.104112,-29.48007 +2020,11,,1,New South Wales,150.626185,-34.546122 +2022,4,8,1,New South Wales,153.110511,-29.49017 +2022,3,8,1,New South Wales,153.107438,-29.490058 +2022,5,8,1,New South Wales,152.929028,-31.450178 +2021,6,6,1,New South Wales,150.533863,-34.459194 +2021,6,6,1,New South Wales,150.606811,-34.429317 +2021,10,,1,New South Wales,149.397319,-36.220281 +2021,6,6,1,New South Wales,150.626675,-34.389026 +2020,10,15,1,New South Wales,152.79166,-31.630813 +2020,9,18,1,New South Wales,153.109392,-30.298612 +2020,8,11,1,New South Wales,149.543438,-33.699723 +2021,5,10,1,New South Wales,150.616455,-34.434536 +2020,10,16,1,New South Wales,150.47178,-34.49557 +2021,7,30,1,New South Wales,150.598073,-34.42672 +2021,3,11,1,New South Wales,150.658154,-34.456258 +2021,6,19,1,New South Wales,150.518986,-34.460273 +2021,6,10,1,New South Wales,150.61079,-34.430593 +2021,10,20,1,New South Wales,152.927978,-31.466515 +2023,1,20,1,New South Wales,153.109353,-29.490516 +2023,10,7,1,New South Wales,150.989327,-34.027328 +2023,8,15,1,New South Wales,152.917254,-31.471389 +2021,3,5,1,New South Wales,150.77,-34.055833 +2021,7,6,1,New South Wales,150.631713,-34.388159 +2020,12,10,1,New South Wales,153.104208,-29.479827 +2021,8,1,1,New South Wales,149.681988,-33.542098 +2024,9,21,1,New South Wales,146.569688,-34.755822 +2020,10,30,1,New South Wales,149.968131,-36.578885 +2021,3,6,1,New South Wales,150.516798,-34.445191 +2021,3,16,1,New South Wales,150.534634,-34.462212 +2021,6,27,1,New South Wales,150.631215,-34.388086 +2020,6,19,1,New South Wales,153.384714,-28.854755 +2021,1,24,1,New South Wales,153.293124,-28.864664 +2021,6,16,1,New South Wales,150.630244,-34.420956 +2020,7,6,1,New South Wales,152.757359,-31.240123 +2023,3,17,1,New South Wales,153.103677,-29.485772 +2022,11,17,1,New South Wales,152.770676,-30.853416 +2022,6,30,1,New South Wales,150.97665,-34.024485 +2021,6,1,1,New South Wales,150.638399,-34.491047 +2021,5,15,1,New South Wales,150.61623,-34.435956 +2021,5,14,1,New South Wales,150.600818,-34.427739 +2021,5,21,1,New South Wales,153.137708,-30.22644 +2021,6,3,1,New South Wales,150.519657,-34.455229 +2021,6,12,1,New South Wales,150.519788,-34.452662 +2021,4,30,1,New South Wales,150.636228,-34.42173 +2020,10,9,1,New South Wales,153.286486,-28.848741 +2024,9,10,1,New South Wales,150.813889,-34.360278 +2021,12,3,1,New South Wales,152.131573,-32.729621 +2021,6,7,1,New South Wales,150.641575,-34.395571 +2022,11,30,1,New South Wales,152.769456,-30.916275 +2023,10,22,1,New South Wales,152.068841,-32.710719 +2021,6,20,1,New South Wales,150.657331,-34.454944 +2023,6,9,1,New South Wales,150.79459,-34.13442 +2021,5,7,1,New South Wales,150.521169,-34.451942 +2021,4,21,1,New South Wales,150.636311,-34.485579 +2021,3,24,1,New South Wales,150.517263,-34.451565 +2020,12,4,1,New South Wales,149.960189,-36.280531 +2021,6,5,1,New South Wales,150.630525,-34.420655 +2021,1,4,1,New South Wales,150.786977,-34.139758 +2021,9,19,1,New South Wales,150.808987,-34.208693 +2020,12,10,1,New South Wales,153.096736,-29.486313 +2021,8,17,1,New South Wales,150.610575,-34.43049 +2021,8,,1,New South Wales,153.599218,-28.719867 +2021,5,1,1,New South Wales,150.618119,-34.429601 +2021,4,27,1,New South Wales,150.637769,-34.488673 +2021,12,15,1,New South Wales,152.916639,-31.444937 +2021,5,20,1,New South Wales,153.428775,-28.972314 +2021,9,11,1,New South Wales,150.515565,-34.454505 +2024,8,15,1,New South Wales,152.492959,-32.349837 +2021,9,27,1,New South Wales,152.089444,-32.729167 +2021,5,15,1,New South Wales,150.520496,-34.45411 +2024,2,15,1,New South Wales,152.241456,-31.60035 +2020,11,5,1,New South Wales,153.454341,-28.653446 +2023,7,10,1,New South Wales,152.897069,-31.475408 +2021,2,11,1,New South Wales,153.29284,-28.864652 +2020,9,24,1,New South Wales,151.569727,-30.371294 +2023,9,13,1,New South Wales,150.785833,-33.712933 +2021,5,7,1,New South Wales,151.73971,-30.477591 +2022,11,23,1,New South Wales,152.764422,-30.891124 +2021,4,10,1,New South Wales,150.615467,-34.432551 +2021,7,16,1,New South Wales,150.514341,-34.446583 +2022,4,8,1,New South Wales,153.103913,-29.489568 +2020,11,29,1,New South Wales,153.297349,-28.983325 +2021,4,18,1,New South Wales,150.52209,-34.463869 +2021,4,17,1,New South Wales,153.237182,-28.779615 +2021,7,10,1,New South Wales,150.631496,-34.387767 +2021,5,9,1,New South Wales,150.622098,-34.397817 +2022,5,19,1,New South Wales,152.631725,-30.22548 +2020,11,13,1,New South Wales,150.003238,-36.547042 +2023,8,18,1,New South Wales,150.785108,-33.714179 +2021,5,11,1,New South Wales,150.639192,-34.49191 +2021,4,21,1,New South Wales,150.60845,-34.454285 +2023,9,18,1,New South Wales,150.836838,-34.138901 +2021,5,24,1,New South Wales,150.618411,-34.449963 +2021,10,7,1,New South Wales,150.808987,-34.208693 +2021,6,17,1,New South Wales,150.618211,-34.435183 +2022,1,2,1,New South Wales,150.615877,-34.438816 +2021,8,20,1,New South Wales,153.077824,-30.3382 +2021,5,28,1,New South Wales,150.833867,-34.113099 +2024,1,5,1,New South Wales,152.92611,-30.50624 +2021,4,24,1,New South Wales,150.635274,-34.419665 +2023,3,14,1,New South Wales,153.295648,-28.828432 +2024,9,5,1,New South Wales,151.969432,-32.030191 +2022,6,16,1,New South Wales,153.44059,-28.683061 +2020,8,16,1,New South Wales,151.766918,-32.76048 +2021,6,14,1,New South Wales,150.518406,-34.457412 +2021,2,23,1,New South Wales,150.605905,-34.422186 +2021,10,4,1,New South Wales,152.476462,-31.941297 +2022,4,5,1,New South Wales,152.091413,-28.786007 +2024,3,11,1,New South Wales,152.063393,-32.706172 +2023,9,21,1,New South Wales,152.92343,-31.465818 +2020,10,4,1,New South Wales,153.366858,-28.851685 +2023,9,23,1,New South Wales,152.871273,-29.678687 +2021,5,3,1,New South Wales,150.606976,-34.455212 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2021,2,15,1,New South Wales,153.130165,-28.615315 +2021,2,24,1,New South Wales,150.634443,-34.477691 +2021,5,10,1,New South Wales,150.517413,-34.447574 +2021,2,27,1,New South Wales,150.52061,-34.468275 +2020,11,,1,New South Wales,151.721419,-32.222189 +2020,10,20,1,New South Wales,149.947183,-36.617465 +2023,11,3,1,New South Wales,150.786125,-33.706053 +2021,6,28,1,New South Wales,150.631488,-34.388443 +2021,10,25,1,New South Wales,148.720808,-36.465931 +2021,7,4,1,New South Wales,150.646725,-34.39576 +2021,5,20,1,New South Wales,150.515261,-34.451533 +2022,4,17,1,New South Wales,153.108017,-29.490301 +2022,8,13,1,New South Wales,153.319997,-28.847902 +2021,2,23,1,New South Wales,150.515798,-34.448091 +2021,10,28,1,New South Wales,153.262928,-28.923326 +2021,8,18,1,New South Wales,153.425778,-28.62343 +2021,8,4,1,New South Wales,150.507579,-34.466504 +2021,11,2,1,New South Wales,152.06574,-32.710635 +2021,6,27,1,New South Wales,150.630885,-34.388206 +2023,10,18,1,New South Wales,153.123835,-30.295912 +2021,6,11,1,New South Wales,150.630245,-34.420911 +2021,5,17,1,New South Wales,153.400487,-28.260327 +2021,5,19,1,New South Wales,153.402932,-28.260534 +2020,4,20,1,New South Wales,152.877938,-31.495912 +2021,5,2,1,New South Wales,150.606828,-34.455056 +2023,12,15,1,New South Wales,150.78516,-33.714085 +2021,12,25,1,New South Wales,152.912201,-31.455426 +2021,5,11,1,New South Wales,150.639144,-34.492062 +2023,8,16,1,New South Wales,153.104031,-29.485127 +2021,3,6,1,New South Wales,150.603413,-34.436291 +2021,12,5,1,New South Wales,152.063956,-32.706723 +2020,10,17,1,New South Wales,149.919967,-36.589766 +2023,9,25,1,New South Wales,152.921716,-31.440734 +2020,12,7,1,New South Wales,150.686648,-33.271332 +2020,10,22,1,New South Wales,149.947183,-36.617465 +2022,7,3,1,New South Wales,152.03604,-32.765093 +2023,11,1,1,New South Wales,152.201795,-32.233788 +2020,10,20,1,New South Wales,149.947183,-36.617465 +2020,10,20,1,New South Wales,149.947183,-36.617465 +2020,10,12,1,New South Wales,153.275997,-28.389746 +2020,5,,1,New South Wales,152.098552,-32.742226 +2020,12,22,1,New South Wales,150.617141,-33.51732 +2021,4,16,1,New South Wales,150.61613,-34.431049 +2021,9,21,1,New South Wales,151.660673,-32.68599 +2021,7,18,1,New South Wales,150.599777,-34.416963 +2021,9,19,1,New South Wales,153.063749,-30.919434 +2021,4,22,1,New South Wales,150.604981,-34.423303 +2021,7,12,1,New South Wales,150.642975,-34.395697 +2023,2,22,1,New South Wales,151.41558,-30.63688 +2021,5,4,1,New South Wales,150.611689,-34.41963 +2022,7,31,1,New South Wales,152.773921,-31.141102 +2022,9,27,1,New South Wales,149.428881,-36.255119 +2021,4,18,1,New South Wales,150.629795,-34.394478 +2021,6,28,1,New South Wales,150.513139,-34.447136 +2020,5,4,1,New South Wales,151.000434,-34.061266 +2022,11,20,1,New South Wales,152.769456,-30.916275 +2022,10,3,1,New South Wales,153.075664,-28.55488 +2021,12,31,1,New South Wales,152.035625,-32.763364 +2021,7,13,1,New South Wales,150.603074,-34.43788 +2021,7,18,1,New South Wales,150.62795,-34.42092 +2020,11,26,1,New South Wales,149.965237,-36.459771 +2021,4,22,1,New South Wales,150.635438,-34.420425 +2022,2,23,1,New South Wales,153.466987,-28.326808 +2021,12,25,1,New South Wales,152.378375,-31.914418 +2021,4,9,1,New South Wales,150.633849,-34.489471 +2023,12,18,1,New South Wales,152.015244,-32.723509 +2021,5,30,1,New South Wales,150.524297,-34.470964 +2021,5,20,1,New South Wales,150.639297,-34.493183 +2020,11,8,1,New South Wales,150.021287,-36.554124 +2021,6,19,1,New South Wales,150.519865,-34.452609 +2022,4,2,1,New South Wales,150.021283,-34.800551 +2020,10,13,1,New South Wales,152.895148,-31.448193 +2021,9,18,1,New South Wales,150.650101,-34.403398 +2021,5,11,1,New South Wales,150.519033,-34.4366 +2021,5,2,1,New South Wales,150.626033,-34.390195 +2021,7,6,1,New South Wales,150.631136,-34.387417 +2024,5,28,1,New South Wales,149.337584,-36.175444 +2021,5,31,1,New South Wales,150.523837,-34.463671 +2021,7,24,1,New South Wales,150.522128,-34.465908 +2021,9,1,1,New South Wales,153.400654,-28.257735 +2022,5,24,1,New South Wales,152.900786,-31.447197 +2021,6,8,1,New South Wales,150.607838,-34.430725 +2023,10,21,1,New South Wales,152.90363,-31.44127 +2022,2,4,1,New South Wales,152.90564,-31.438605 +2024,1,17,1,New South Wales,152.905377,-31.436746 +2020,11,14,1,New South Wales,151.974623,-32.472237 +2022,1,30,1,New South Wales,153.100158,-29.490866 +2021,1,27,1,New South Wales,152.150659,-32.723591 +2021,2,2,1,New South Wales,152.081013,-32.728562 +2023,11,6,1,New South Wales,153.110152,-29.490236 +2022,11,25,1,New South Wales,152.794945,-30.901933 +2020,12,27,1,New South Wales,153.093045,-29.48862 +2023,8,24,1,New South Wales,152.189974,-32.241755 +2021,4,16,1,New South Wales,150.627393,-34.386344 +2021,10,9,1,New South Wales,153.467912,-28.329373 +2021,5,16,1,New South Wales,150.603245,-34.435341 +2020,10,10,1,New South Wales,153.168586,-28.624817 +2022,11,17,1,New South Wales,152.30434,-31.952512 +2020,10,11,1,New South Wales,149.959933,-36.657162 +2021,6,28,1,New South Wales,150.643282,-34.393278 +2021,5,13,1,New South Wales,153.60144,-28.7273 +2023,1,22,1,New South Wales,153.108135,-29.490227 +2021,5,17,1,New South Wales,150.630997,-34.395042 +2021,5,3,1,New South Wales,150.60519,-34.426283 +2021,6,17,1,New South Wales,150.513737,-34.446418 +2021,4,28,1,New South Wales,150.634248,-34.420168 +2021,9,10,1,New South Wales,153.32518,-28.82053 +2021,9,24,1,New South Wales,150.532545,-34.476096 +2020,2,26,1,New South Wales,153.55565,-28.59977 +2021,10,,1,New South Wales,149.283628,-35.927903 +2021,3,9,1,New South Wales,153.277607,-28.93805 +2022,8,1,1,New South Wales,150.796614,-34.145033 +2021,6,4,1,New South Wales,150.607671,-34.436573 +2023,4,23,1,New South Wales,149.273922,-36.168165 +2023,2,9,1,New South Wales,152.028844,-32.132422 +2021,2,7,1,New South Wales,153.362191,-28.649451 +2020,10,16,1,New South Wales,149.947183,-36.617465 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2021,7,15,1,New South Wales,150.513762,-34.446301 +2021,6,14,1,New South Wales,150.52051,-34.465785 +2021,4,29,1,New South Wales,150.603579,-34.427432 +2021,5,28,1,New South Wales,150.617335,-34.438438 +2021,4,3,1,New South Wales,153.104047,-29.485291 +2023,8,25,1,New South Wales,153.101322,-29.490002 +2020,10,17,1,New South Wales,149.919967,-36.589766 +2021,6,16,1,New South Wales,150.522472,-34.451671 +2023,10,25,1,New South Wales,152.886444,-30.517172 +2020,10,15,1,New South Wales,149.919967,-36.589766 +2020,7,10,1,New South Wales,153.103771,-29.485424 +2023,6,12,1,New South Wales,153.104128,-29.478753 +2022,5,5,1,New South Wales,153.140216,-28.837883 +2021,5,7,1,New South Wales,150.638965,-34.491463 +2021,8,7,1,New South Wales,150.51688,-34.436186 +2022,8,30,1,New South Wales,149.323215,-36.297419 +2022,8,25,1,New South Wales,153.445933,-28.589257 +2021,4,23,1,New South Wales,150.61461,-34.43093 +2021,5,23,1,New South Wales,150.631007,-34.388506 +2021,6,9,1,New South Wales,150.641418,-34.394964 +2021,5,9,1,New South Wales,150.521526,-34.466022 +2022,11,18,1,New South Wales,152.788781,-30.895519 +2021,6,11,1,New South Wales,150.630266,-34.420947 +2020,8,9,1,New South Wales,153.095235,-29.483447 +2020,10,22,1,New South Wales,149.947183,-36.617465 +2021,5,15,1,New South Wales,150.637345,-34.423798 +2021,5,7,1,New South Wales,150.521213,-34.435724 +2020,1,23,1,New South Wales,152.707755,-31.550983 +2020,10,16,1,New South Wales,151.725053,-32.604161 +2021,7,12,1,New South Wales,150.513105,-34.447162 +2022,8,28,1,New South Wales,153.59614,-28.845689 +2022,9,8,1,New South Wales,151.652747,-32.686658 +2021,2,12,1,New South Wales,153.394806,-29.015237 +2023,5,13,1,New South Wales,150.784508,-33.716466 +2022,11,21,1,New South Wales,149.678336,-32.966096 +2020,1,9,1,New South Wales,152.111759,-32.738641 +2020,9,10,1,New South Wales,153.09525,-29.483481 +2021,5,16,1,New South Wales,150.600493,-34.427299 +2023,2,8,1,New South Wales,153.312937,-28.858382 +2021,5,6,1,New South Wales,150.621903,-34.397795 +2021,6,23,1,New South Wales,150.601537,-34.417818 +2020,1,29,1,New South Wales,153.218041,-28.830562 +2022,1,9,1,New South Wales,153.34316,-28.858812 +2020,10,30,1,New South Wales,149.96897,-36.58553 +2020,11,10,1,New South Wales,152.87346,-31.457817 +2022,4,23,1,New South Wales,153.103951,-29.489531 +2020,12,4,1,New South Wales,152.907006,-31.449835 +2021,7,8,1,New South Wales,150.627491,-34.421362 +2021,9,18,1,New South Wales,153.101177,-29.489979 +2024,2,18,1,New South Wales,150.785232,-33.708214 +2021,5,25,1,New South Wales,150.639144,-34.392693 +2021,6,17,1,New South Wales,150.522876,-34.450913 +2021,4,19,1,New South Wales,150.637467,-34.421781 +2020,11,7,1,New South Wales,150.010074,-36.579686 +2022,3,31,1,New South Wales,146.587844,-34.773124 +2021,7,4,1,New South Wales,150.628947,-34.390612 +2023,12,27,1,New South Wales,153.10748,-29.490114 +2020,10,30,1,New South Wales,149.96897,-36.58553 +2021,1,14,1,New South Wales,150.839908,-34.079306 +2020,10,18,1,New South Wales,149.947316,-36.607854 +2021,3,18,1,New South Wales,150.516225,-34.445441 +2022,11,6,1,New South Wales,153.14144,-30.278132 +2021,5,18,1,New South Wales,150.519901,-34.452881 +2022,10,4,1,New South Wales,153.302986,-28.822501 +2021,11,18,1,New South Wales,150.523877,-34.512 +2021,10,27,1,New South Wales,152.878763,-29.662278 +2021,7,31,1,New South Wales,153.273151,-28.816275 +2021,6,22,1,New South Wales,150.520305,-34.465708 +2021,6,15,1,New South Wales,150.514331,-34.446556 +2023,6,8,1,New South Wales,150.844131,-34.098087 +2021,5,25,1,New South Wales,150.617689,-34.450481 +2023,3,29,1,New South Wales,153.267189,-28.920319 +2020,4,7,1,New South Wales,150.100785,-33.778902 +2021,7,14,1,New South Wales,152.883713,-29.660144 +2024,1,13,1,New South Wales,152.394606,-31.944825 +2021,7,25,1,New South Wales,153.39463,-28.288936 +2021,6,30,1,New South Wales,150.627315,-34.420277 +2021,8,11,1,New South Wales,150.604293,-34.426815 +2020,10,21,1,New South Wales,149.919967,-36.589766 +2024,3,25,1,New South Wales,152.905373,-31.437668 +2024,6,29,1,New South Wales,152.299156,-31.946761 +2023,6,29,1,New South Wales,150.785221,-33.716293 +2021,2,27,1,New South Wales,150.657642,-34.455887 +2021,9,12,1,New South Wales,152.374065,-31.915492 +2023,11,29,1,New South Wales,152.918745,-31.453816 +2021,4,27,1,New South Wales,150.623996,-34.388794 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2022,8,3,1,New South Wales,152.772936,-31.225616 +2023,9,26,1,New South Wales,153.116345,-28.561525 +2023,1,12,1,New South Wales,152.86366,-31.146058 +2021,5,22,1,New South Wales,150.528958,-34.471257 +2023,9,15,1,New South Wales,152.813158,-31.65887 +2021,5,29,1,New South Wales,150.523116,-34.464503 +2024,6,2,1,New South Wales,150.441886,-34.470055 +2021,5,18,1,New South Wales,150.516459,-34.450043 +2022,10,20,1,New South Wales,150.803384,-34.099778 +2021,6,22,1,New South Wales,150.603228,-34.439344 +2021,5,1,1,New South Wales,150.616346,-34.436102 +2021,3,26,1,New South Wales,150.659664,-34.458324 +2020,10,21,1,New South Wales,149.919967,-36.589766 +2020,3,12,1,New South Wales,151.61099,-32.90371 +2021,7,17,1,New South Wales,150.522508,-34.466664 +2020,8,16,1,New South Wales,153.489942,-28.631915 +2020,4,17,1,New South Wales,152.87607,-29.677883 +2020,10,13,1,New South Wales,149.947316,-36.607854 +2021,9,9,1,New South Wales,153.072111,-30.885806 +2023,12,26,1,New South Wales,150.785791,-33.713902 +2021,1,29,1,New South Wales,149.350046,-33.417464 +2021,10,29,1,New South Wales,150.616612,-34.437838 +2023,3,27,1,New South Wales,150.573795,-29.860281 +2021,5,2,1,New South Wales,150.626035,-34.390122 +2022,10,26,1,New South Wales,151.332101,-30.643768 +2020,4,27,1,New South Wales,153.325901,-28.834659 +2021,9,1,1,New South Wales,153.101274,-29.490114 +2021,5,7,1,New South Wales,153.403568,-28.650953 +2021,7,6,1,New South Wales,150.627398,-34.421207 +2023,10,28,1,New South Wales,153.107427,-29.4901 +2022,2,8,1,New South Wales,151.622529,-30.492423 +2022,10,19,1,New South Wales,152.471384,-31.943285 +2022,,,1,New South Wales,150.577567,-34.476 +2020,4,21,1,New South Wales,152.87643,-31.457964 +2022,2,8,1,New South Wales,153.3209,-28.844482 +2020,8,20,1,New South Wales,152.867778,-31.463333 +2021,6,18,1,New South Wales,150.522174,-34.451466 +2021,7,1,1,New South Wales,153.101971,-29.488812 +2021,3,1,1,New South Wales,150.657262,-34.455069 +2021,12,25,1,New South Wales,152.929581,-31.458591 +2023,3,28,1,New South Wales,153.10813,-29.490264 +2021,4,27,1,New South Wales,150.624357,-34.400638 +2021,4,21,1,New South Wales,150.610366,-34.419109 +2021,5,6,1,New South Wales,150.622039,-34.397591 +2022,1,31,1,New South Wales,153.109422,-29.490488 +2020,12,7,1,New South Wales,149.679004,-33.534672 +2020,9,29,1,New South Wales,153.044129,-30.936905 +2023,8,28,1,New South Wales,153.302184,-28.818632 +2023,9,3,1,New South Wales,152.980216,-30.422288 +2023,3,10,1,New South Wales,150.157778,-31.775333 +2021,5,5,1,New South Wales,150.608806,-34.455545 +2021,4,23,1,New South Wales,150.518463,-34.452184 +2020,1,14,1,New South Wales,153.394861,-28.275582 +2023,11,14,1,New South Wales,152.699675,-30.290401 +2020,2,27,1,New South Wales,152.881156,-31.42228 +2022,11,8,1,New South Wales,153.474958,-28.25361 +2021,6,30,1,New South Wales,150.521454,-34.465867 +2020,8,6,1,New South Wales,152.926892,-31.466317 +2020,1,21,1,New South Wales,151.943845,-32.003815 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2020,1,22,1,New South Wales,152.90469,-31.444461 +2022,12,15,1,New South Wales,153.109696,-29.491529 +2021,4,24,1,New South Wales,150.610246,-34.419124 +2020,10,7,1,New South Wales,150.103635,-33.775679 +2023,9,21,1,New South Wales,152.354081,-31.92614 +2023,9,4,1,New South Wales,153.112743,-30.263237 +2024,2,22,1,New South Wales,153.104927,-29.48969 +2020,5,25,1,New South Wales,152.78605,-29.187534 +2022,7,26,1,New South Wales,152.807831,-31.140562 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2020,1,19,1,New South Wales,153.103821,-29.485494 +2022,7,28,1,New South Wales,153.101853,-29.489316 +2021,4,27,1,New South Wales,150.635788,-34.419576 +2020,10,29,1,New South Wales,149.934245,-36.578531 +2022,2,12,1,New South Wales,152.905522,-31.436985 +2021,4,15,1,New South Wales,150.529616,-34.458919 +2021,5,13,1,New South Wales,150.601772,-34.428623 +2023,4,23,1,New South Wales,152.900839,-31.443161 +2021,5,18,1,New South Wales,150.640746,-34.494302 +2021,5,3,1,New South Wales,150.519474,-34.467675 +2022,6,1,1,New South Wales,153.008361,-28.653956 +2020,8,28,1,New South Wales,152.929344,-29.726819 +2020,11,2,1,New South Wales,153.313992,-28.81222 +2021,9,17,1,New South Wales,150.523895,-34.471308 +2023,5,17,1,New South Wales,152.417908,-31.946054 +2021,8,17,1,New South Wales,153.133501,-28.561971 +2021,5,14,1,New South Wales,150.604172,-34.437929 +2020,11,26,1,New South Wales,149.917922,-36.474664 +2023,8,11,1,New South Wales,150.786179,-33.70615 +2021,9,12,1,New South Wales,150.639435,-34.400119 +2021,6,20,1,New South Wales,150.657024,-34.454631 +2021,5,22,1,New South Wales,150.518156,-34.451538 +2022,4,2,1,New South Wales,152.918794,-31.454786 +2020,12,21,1,New South Wales,146.555555,-34.74265 +2022,3,5,1,New South Wales,152.926415,-31.454468 +2023,12,31,1,New South Wales,151.05735,-29.739275 +2020,10,6,1,New South Wales,153.10416,-29.485069 +2022,9,1,1,New South Wales,152.918206,-31.469908 +2020,10,22,1,New South Wales,149.919967,-36.589766 +2022,7,26,1,New South Wales,153.104514,-29.476684 +2020,10,21,1,New South Wales,149.919967,-36.589766 +2020,10,23,1,New South Wales,149.988655,-36.56931 +2020,4,21,1,New South Wales,152.897136,-31.442702 +2021,5,16,1,New South Wales,150.640565,-34.494172 +2021,7,12,1,New South Wales,150.62631,-34.421195 +2020,8,12,1,New South Wales,152.824856,-29.505303 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2021,4,25,1,New South Wales,150.626247,-34.395698 +2023,12,4,1,New South Wales,150.786689,-33.705918 +2021,5,21,1,New South Wales,150.517346,-34.452044 +2021,5,2,1,New South Wales,150.625476,-34.389904 +2021,6,5,1,New South Wales,150.607272,-34.435672 +2023,4,6,1,New South Wales,153.104761,-29.48968 +2023,9,20,1,New South Wales,152.922256,-31.158259 +2023,8,15,1,New South Wales,152.91908,-31.468845 +2023,1,7,1,New South Wales,151.124941,-33.04652 +2023,4,13,1,New South Wales,152.00565,-32.727602 +2020,5,25,1,New South Wales,152.793993,-29.222512 +2022,2,26,1,New South Wales,153.313501,-28.855481 +2021,12,23,1,New South Wales,150.616256,-34.440031 +2021,11,12,1,New South Wales,152.065241,-32.710393 +2021,3,12,1,New South Wales,150.616269,-34.434595 +2021,9,30,1,New South Wales,152.832147,-31.472717 +2021,4,14,1,New South Wales,150.606913,-34.439479 +2020,11,4,1,New South Wales,149.955017,-36.576791 +2023,6,7,1,New South Wales,150.887227,-34.066693 +2021,11,5,1,New South Wales,153.104165,-29.480789 +2023,8,20,1,New South Wales,151.245714,-33.169384 +2022,8,28,1,New South Wales,150.808987,-34.208693 +2022,3,5,1,New South Wales,152.925962,-31.453187 +2021,4,30,1,New South Wales,150.638773,-34.489359 +2022,12,31,1,New South Wales,153.102272,-29.48834 +2021,5,27,1,New South Wales,150.516063,-34.449458 +2024,5,28,1,New South Wales,152.796527,-31.1425 +2023,6,2,1,New South Wales,150.880518,-34.023695 +2021,6,7,1,New South Wales,150.629826,-34.420741 +2021,5,30,1,New South Wales,150.61563,-34.437936 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2021,5,19,1,New South Wales,150.631055,-34.389111 +2021,1,24,1,New South Wales,152.835862,-28.482389 +2020,11,11,1,New South Wales,153.104085,-29.485361 +2023,8,14,1,New South Wales,152.877336,-29.674141 +2023,9,7,1,New South Wales,152.973449,-30.418497 +2021,5,8,1,New South Wales,150.609223,-34.420655 +2022,11,20,1,New South Wales,152.788781,-30.895519 +2021,7,14,1,New South Wales,153.561464,-28.388041 +2021,6,4,1,New South Wales,150.519939,-34.447175 +2021,3,19,1,New South Wales,150.534513,-34.462273 +2020,11,27,1,New South Wales,149.965237,-36.459771 +2021,5,23,1,New South Wales,150.639161,-34.493 +2020,1,20,1,New South Wales,153.090915,-29.48743 +2020,4,24,1,New South Wales,153.481911,-28.64025 +2021,6,23,1,New South Wales,150.657413,-34.455919 +2020,1,4,1,New South Wales,152.898137,-31.454879 +2023,6,9,1,New South Wales,150.79285,-34.145116 +2023,10,18,1,New South Wales,150.784251,-33.717336 +2021,5,28,1,New South Wales,150.631485,-34.386973 +2020,10,23,1,New South Wales,149.988655,-36.56931 +2022,11,22,1,New South Wales,150.789445,-34.20198 +2021,2,14,1,New South Wales,152.173645,-32.720258 +2020,10,19,1,New South Wales,151.780333,-32.714185 +2021,4,11,1,New South Wales,150.517949,-34.447874 +2021,5,19,1,New South Wales,150.530348,-34.471375 +2021,5,20,1,New South Wales,150.599287,-34.429142 +2024,1,9,1,New South Wales,151.971519,-32.174066 +2021,5,16,1,New South Wales,150.529482,-34.468247 +2021,3,2,1,New South Wales,150.609302,-34.42017 +2021,2,14,1,New South Wales,152.918134,-31.485334 +2021,12,31,1,New South Wales,153.103854,-29.485571 +2021,2,8,1,New South Wales,153.104144,-29.478683 +2021,8,16,1,New South Wales,150.521045,-34.464597 +2022,7,27,1,New South Wales,152.872924,-31.456647 +2021,7,19,1,New South Wales,150.628235,-34.420439 +2023,6,20,1,New South Wales,149.955133,-36.57367 +2024,1,11,1,New South Wales,150.785383,-33.717047 +2021,4,8,1,New South Wales,150.662189,-34.458309 +2022,11,26,1,New South Wales,152.759299,-30.84178 +2021,10,27,1,New South Wales,153.468867,-28.261488 +2021,5,25,1,New South Wales,150.526657,-34.469569 +2021,8,10,1,New South Wales,150.631778,-34.387015 +2021,5,30,1,New South Wales,150.603013,-34.424401 +2023,8,19,1,New South Wales,150.785282,-33.705579 +2021,10,30,1,New South Wales,153.104208,-29.482214 +2022,1,21,1,New South Wales,152.115127,-32.765951 +2020,9,3,1,New South Wales,151.98576,-32.72811 +2022,10,24,1,New South Wales,152.215,-32.029833 +2021,2,15,1,New South Wales,150.863295,-34.042768 +2023,6,16,1,New South Wales,153.098012,-29.48919 +2022,2,7,1,New South Wales,152.901949,-31.445989 +2021,6,9,1,New South Wales,150.609543,-34.430831 +2020,9,16,1,New South Wales,150.03886,-31.17763 +2023,6,12,1,New South Wales,152.063687,-32.706571 +2021,4,18,1,New South Wales,150.531711,-34.469437 +2021,7,27,1,New South Wales,150.640148,-34.396048 +2021,5,5,1,New South Wales,150.602981,-34.42742 +2023,12,28,1,New South Wales,150.938179,-33.296261 +2021,5,5,1,New South Wales,150.627214,-34.389595 +2021,6,20,1,New South Wales,150.622865,-34.384543 +2024,8,6,1,New South Wales,152.065122,-32.742829 +2022,11,24,1,New South Wales,152.89258,-31.449213 +2021,8,20,1,New South Wales,153.403814,-28.842314 +2023,4,6,1,New South Wales,149.933675,-36.577361 +2021,2,24,1,New South Wales,153.099005,-29.490208 +2020,8,28,1,New South Wales,152.898794,-31.439508 +2021,6,13,1,New South Wales,150.626522,-34.385606 +2021,1,10,1,New South Wales,153.248538,-28.609899 +2020,10,29,1,New South Wales,149.955017,-36.576791 +2021,7,7,1,New South Wales,150.521451,-34.464866 +2021,5,21,1,New South Wales,150.599291,-34.429764 +2022,10,27,1,New South Wales,152.956825,-28.624194 +2021,8,10,1,New South Wales,150.513046,-34.445854 +2022,11,26,1,New South Wales,152.759299,-30.84178 +2020,10,6,1,New South Wales,152.805693,-31.536568 +2021,2,7,1,New South Wales,152.409406,-31.910186 +2020,11,3,1,New South Wales,153.317651,-28.862857 +2022,5,6,1,New South Wales,153.103817,-29.485487 +2021,11,15,1,New South Wales,152.912339,-31.466501 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2024,6,29,1,New South Wales,152.377728,-31.876193 +2020,10,3,1,New South Wales,152.909674,-31.43067 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2020,12,,1,New South Wales,152.965822,-31.200967 +2021,6,12,1,New South Wales,150.521345,-34.459248 +2021,8,1,1,New South Wales,150.62445,-34.388108 +2021,7,26,1,New South Wales,152.072216,-32.711197 +2023,10,13,1,New South Wales,152.379609,-31.911449 +2023,3,26,1,New South Wales,152.8325,-29.642636 +2022,7,16,1,New South Wales,150.971387,-34.123519 +2022,5,30,1,New South Wales,153.517069,-28.201099 +2023,8,30,1,New South Wales,150.834763,-34.073712 +2021,4,20,1,New South Wales,150.627179,-34.385826 +2022,8,9,1,New South Wales,152.931549,-29.723819 +2021,12,28,1,New South Wales,153.092267,-29.488116 +2021,8,2,1,New South Wales,150.520294,-34.465708 +2021,3,11,1,New South Wales,151.854881,-32.722194 +2021,3,8,1,New South Wales,150.527287,-34.458178 +2021,4,16,1,New South Wales,150.60962,-34.419707 +2022,10,6,1,New South Wales,150.840112,-34.065309 +2021,7,15,1,New South Wales,150.625701,-34.386167 +2021,2,26,1,New South Wales,150.517031,-34.44689 +2021,4,28,1,New South Wales,150.619064,-34.400878 +2021,7,30,1,New South Wales,150.516921,-34.449494 +2020,4,8,1,New South Wales,150.146267,-34.928544 +2023,9,24,1,New South Wales,150.901139,-34.009056 +2021,8,8,1,New South Wales,150.632626,-34.418288 +2020,2,20,1,New South Wales,153.450907,-28.976503 +2021,3,6,1,New South Wales,150.515934,-34.45747 +2020,9,16,1,New South Wales,153.375014,-28.254046 +2021,4,26,1,New South Wales,150.520751,-34.467205 +2021,5,16,1,New South Wales,150.60281,-34.435333 +2020,3,8,1,New South Wales,152.927623,-31.465638 +2023,9,28,1,New South Wales,151.057991,-29.736994 +2020,12,10,1,New South Wales,149.960189,-36.280531 +2021,9,18,1,New South Wales,153.476669,-28.283096 +2024,6,12,1,New South Wales,152.883172,-31.428813 +2021,4,24,1,New South Wales,150.634502,-34.420029 +2021,9,21,1,New South Wales,150.513117,-34.446017 +2023,5,24,1,New South Wales,153.603521,-28.825541 +2023,12,9,1,New South Wales,152.103577,-32.725825 +2021,10,6,1,New South Wales,153.548611,-28.405 +2021,11,16,1,New South Wales,152.826358,-29.811157 +2020,11,1,1,New South Wales,149.934245,-36.578531 +2021,4,28,1,New South Wales,150.601393,-34.426641 +2021,8,11,1,New South Wales,150.527581,-34.455735 +2020,10,30,1,New South Wales,149.934245,-36.578531 +2020,10,23,1,New South Wales,149.934245,-36.578531 +2021,8,1,1,New South Wales,150.633624,-34.418389 +2021,5,1,1,New South Wales,150.637884,-34.488864 +2022,1,14,1,New South Wales,152.926937,-31.454938 +2023,11,19,1,New South Wales,152.406634,-31.910009 +2021,3,4,1,New South Wales,150.655888,-34.456341 +2023,5,30,1,New South Wales,152.191129,-31.594109 +2022,1,26,1,New South Wales,151.955853,-32.305306 +2023,7,7,1,New South Wales,152.909528,-31.439921 +2023,7,28,1,New South Wales,151.058653,-29.740224 +2023,10,19,1,New South Wales,152.383697,-31.924253 +2020,2,8,1,New South Wales,152.901028,-31.473845 +2023,9,14,1,New South Wales,152.117247,-32.764468 +2021,4,3,1,New South Wales,153.063144,-30.272467 +2021,10,1,1,New South Wales,152.710408,-31.592736 +2021,5,14,1,New South Wales,150.629932,-34.395382 +2023,8,23,1,New South Wales,150.784736,-33.714038 +2022,9,26,1,New South Wales,152.895995,-31.436541 +2021,4,18,1,New South Wales,150.606626,-34.434677 +2021,6,15,1,New South Wales,153.563841,-28.387941 +2024,1,5,1,New South Wales,150.78557,-33.713156 +2021,5,24,1,New South Wales,150.631268,-34.387754 +2021,6,10,1,New South Wales,150.605237,-34.437959 +2020,8,14,1,New South Wales,153.498827,-28.240955 +2021,6,28,1,New South Wales,150.627215,-34.420338 +2021,5,26,1,New South Wales,150.597931,-34.425969 +2021,1,8,1,New South Wales,152.924676,-31.444306 +2020,3,27,1,New South Wales,153.101671,-29.489153 +2023,11,2,1,New South Wales,152.193373,-32.220759 +2023,9,2,1,New South Wales,149.552128,-33.491219 +2021,7,16,1,New South Wales,150.625232,-34.385842 +2022,12,5,1,New South Wales,152.784642,-31.630062 +2021,4,26,1,New South Wales,153.077582,-30.345268 +2020,10,17,1,New South Wales,149.919967,-36.589766 +2023,8,24,1,New South Wales,152.20513,-32.22154 +2021,11,5,1,New South Wales,152.900516,-29.631317 +2021,5,1,1,New South Wales,150.618107,-34.429618 +2021,3,18,1,New South Wales,150.659544,-34.458331 +2024,9,8,1,New South Wales,152.921842,-31.460665 +2021,2,16,1,New South Wales,152.930047,-31.456222 +2021,5,19,1,New South Wales,150.600388,-34.428686 +2022,9,1,1,New South Wales,153.13522,-28.8747 +2023,11,27,1,New South Wales,152.895709,-31.473214 +2020,5,28,1,New South Wales,152.922601,-31.447129 +2021,3,13,1,New South Wales,150.616092,-34.434294 +2021,9,3,1,New South Wales,150.517924,-34.439498 +2024,5,16,1,New South Wales,152.920224,-30.504429 +2022,8,5,1,New South Wales,152.901675,-31.446692 +2021,5,28,1,New South Wales,150.601505,-34.425029 +2021,7,5,1,New South Wales,152.72632,-30.157302 +2021,5,20,1,New South Wales,150.866027,-34.060984 +2021,5,16,1,New South Wales,150.516191,-34.449515 +2023,11,3,1,New South Wales,151.992845,-32.014552 +2020,6,16,1,New South Wales,153.194946,-28.879476 +2023,5,8,1,New South Wales,151.961159,-32.018393 +2021,5,15,1,New South Wales,150.520283,-34.453934 +2022,1,8,1,New South Wales,152.37985,-31.920413 +2020,10,30,1,New South Wales,149.968131,-36.578885 +2020,7,25,1,New South Wales,152.083346,-32.739859 +2021,6,21,1,New South Wales,150.520315,-34.465745 +2021,5,22,1,New South Wales,150.635803,-34.392755 +2024,3,24,1,New South Wales,152.33194,-32.325771 +2021,8,26,1,New South Wales,150.882196,-34.049376 +2021,8,27,1,New South Wales,150.514741,-34.444103 +2021,8,10,1,New South Wales,152.756984,-31.628707 +2020,10,16,1,New South Wales,149.919967,-36.589766 +2021,5,19,1,New South Wales,150.600205,-34.428646 +2021,6,24,1,New South Wales,150.513807,-34.447348 +2021,9,10,1,New South Wales,150.790715,-34.183338 +2021,1,6,1,New South Wales,153.194868,-28.885364 +2022,5,13,1,New South Wales,151.003562,-33.9837 +2021,5,28,1,New South Wales,150.526824,-34.469429 +2020,11,7,1,New South Wales,150.010074,-36.579686 +2023,4,26,1,New South Wales,150.785438,-33.71762 +2023,5,11,1,New South Wales,152.865916,-31.304895 +2022,6,18,1,New South Wales,152.970434,-31.163366 +2022,5,24,1,New South Wales,153.399425,-28.260392 +2020,9,22,1,New South Wales,153.557109,-28.381234 +2021,11,6,1,New South Wales,150.615742,-34.437416 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2021,2,3,1,New South Wales,150.848121,-34.078074 +2024,1,24,1,New South Wales,152.915001,-31.468209 +2021,5,11,1,New South Wales,150.616353,-34.434326 +2023,6,26,1,New South Wales,153.277469,-28.937766 +2024,9,22,1,New South Wales,146.601837,-34.763847 +2021,5,5,1,New South Wales,150.637343,-34.423843 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2020,8,1,1,New South Wales,153.030808,-28.849862 +2021,6,28,1,New South Wales,150.513744,-34.447283 +2022,3,8,1,New South Wales,152.300422,-31.948252 +2021,6,23,1,New South Wales,152.913599,-31.263661 +2021,5,14,1,New South Wales,150.516313,-34.449093 +2021,9,4,1,New South Wales,153.562726,-28.391267 +2022,4,14,1,New South Wales,152.926242,-31.459055 +2021,7,21,1,New South Wales,153.52855,-28.556 +2022,2,11,1,New South Wales,153.302376,-28.846727 +2021,4,18,1,New South Wales,150.515442,-34.443586 +2020,7,28,1,New South Wales,152.591511,-31.558685 +2021,5,5,1,New South Wales,150.523287,-34.459107 +2021,5,20,1,New South Wales,150.631288,-34.38742 +2020,4,10,1,New South Wales,150.106937,-34.991301 +2021,4,19,1,New South Wales,150.637465,-34.421456 +2020,9,12,1,New South Wales,150.10783,-31.15855 +2021,1,29,1,New South Wales,153.103704,-29.485188 +2024,7,2,1,New South Wales,152.914707,-31.448727 +2024,8,21,1,New South Wales,152.401182,-31.914553 +2021,9,13,1,New South Wales,150.514828,-34.441923 +2024,9,5,1,New South Wales,152.18716,-31.574191 +2024,4,22,1,New South Wales,151.125419,-34.055382 +2020,8,29,1,New South Wales,150.808987,-34.208693 +2020,10,3,1,New South Wales,152.904119,-31.430264 +2023,12,8,1,New South Wales,152.92476,-31.453932 +2021,6,27,1,New South Wales,150.51419,-34.447265 +2020,11,26,1,New South Wales,153.400968,-28.605847 +2023,8,24,1,New South Wales,150.783953,-33.717627 +2023,9,5,1,New South Wales,152.909403,-31.443334 +2021,7,17,1,New South Wales,150.514864,-34.446585 +2021,1,22,1,New South Wales,153.460817,-28.325659 +2021,10,27,1,New South Wales,152.141468,-31.958711 +2021,4,25,1,New South Wales,150.605456,-34.4238 +2024,1,2,1,New South Wales,150.980948,-34.094371 +2023,8,14,1,New South Wales,153.35131,-28.899787 +2021,5,20,1,New South Wales,150.631472,-34.38783 +2023,3,5,1,New South Wales,153.210548,-28.928152 +2021,5,3,1,New South Wales,150.516795,-34.446417 +2022,11,16,1,New South Wales,153.578194,-28.867451 +2021,10,,1,New South Wales,149.386481,-36.212513 +2022,1,28,1,New South Wales,153.587255,-28.865072 +2021,7,9,1,New South Wales,150.627508,-34.421164 +2020,1,9,1,New South Wales,152.927141,-31.469157 +2021,6,1,1,New South Wales,150.52443,-34.463863 +2022,4,22,1,New South Wales,153.108183,-29.490217 +2022,11,21,1,New South Wales,152.764422,-30.891124 +2023,10,7,1,New South Wales,153.093817,-30.318215 +2021,5,6,1,New South Wales,150.605022,-34.437873 +2021,2,14,1,New South Wales,153.104138,-29.480107 +2021,2,23,1,New South Wales,152.118095,-32.76419 +2021,5,13,1,New South Wales,150.805509,-34.099116 +2021,6,10,1,New South Wales,153.108054,-29.490348 +2021,8,6,1,New South Wales,150.52269,-34.464206 +2020,5,5,1,New South Wales,153.334201,-28.821466 +2020,11,19,1,New South Wales,153.557464,-28.394275 +2021,3,19,1,New South Wales,150.517274,-34.451547 +2021,5,9,1,New South Wales,150.637161,-34.423731 +2023,12,12,1,New South Wales,150.783711,-33.718645 +2020,12,13,1,New South Wales,150.778378,-34.139613 +2023,9,25,1,New South Wales,151.080881,-29.746685 +2022,12,26,1,New South Wales,152.18402,-32.013104 +2023,5,8,1,New South Wales,153.110533,-29.490175 +2021,6,6,1,New South Wales,153.102256,-29.488298 +2023,4,22,1,New South Wales,149.265895,-36.067862 +2022,12,15,1,New South Wales,152.072174,-32.710682 +2021,5,1,1,New South Wales,150.637603,-34.488399 +2021,5,1,1,New South Wales,150.637517,-34.423837 +2020,12,,1,New South Wales,152.87081,-31.303957 +2023,12,22,1,New South Wales,153.071746,-30.88573 +2023,4,27,1,New South Wales,153.316233,-28.846422 +2021,5,15,1,New South Wales,150.516189,-34.449235 +2023,11,10,1,New South Wales,152.072328,-32.710748 +2023,6,8,1,New South Wales,153.103908,-29.489582 +2022,7,19,1,New South Wales,152.892863,-31.457386 +2022,6,1,1,New South Wales,153.104047,-29.484011 +2023,8,23,1,New South Wales,152.017057,-32.731882 +2021,6,20,1,New South Wales,150.623195,-34.384027 +2020,6,25,1,New South Wales,152.796193,-30.221815 +2021,6,13,1,New South Wales,150.61169,-34.432982 +2021,7,13,1,New South Wales,150.512792,-34.446705 +2020,10,9,1,New South Wales,149.959933,-36.657162 +2022,11,1,1,New South Wales,152.825403,-31.571716 +2022,7,29,1,New South Wales,152.908587,-31.441229 +2020,10,14,1,New South Wales,153.351351,-28.883408 +2021,5,13,1,New South Wales,150.64012,-34.492955 +2021,3,30,1,New South Wales,150.517263,-34.451565 +2021,7,10,1,New South Wales,150.520295,-34.465681 +2020,9,20,1,New South Wales,152.292426,-31.895028 +2021,6,13,1,New South Wales,150.612101,-34.432314 +2024,7,24,1,New South Wales,152.540559,-32.059321 +2021,5,6,1,New South Wales,150.615909,-34.43576 +2023,12,31,1,New South Wales,153.109782,-29.490199 +2021,4,28,1,New South Wales,150.609542,-34.419011 +2021,9,25,1,New South Wales,153.437185,-29.026499 +2022,7,26,1,New South Wales,153.101574,-29.489802 +2021,7,31,1,New South Wales,150.632757,-34.419815 +2020,8,19,1,New South Wales,153.461934,-28.650527 +2022,9,29,1,New South Wales,152.065351,-32.710965 +2021,6,26,1,New South Wales,150.514309,-34.447322 +2022,1,4,1,New South Wales,150.962609,-34.099398 +2021,4,30,1,New South Wales,150.635371,-34.419694 +2021,12,,1,New South Wales,149.328498,-36.147372 +2021,7,14,1,New South Wales,150.513153,-34.445919 +2021,8,24,1,New South Wales,150.522145,-34.464213 +2024,7,26,1,New South Wales,152.908214,-31.183216 +2022,12,16,1,New South Wales,152.871937,-31.286282 +2020,8,15,1,New South Wales,153.103779,-29.485534 +2023,7,24,1,New South Wales,150.786008,-33.704543 +2023,12,23,1,New South Wales,152.929126,-31.459598 +2023,7,13,1,New South Wales,153.012943,-30.423246 +2022,3,8,1,New South Wales,153.289719,-28.936691 +2021,1,27,1,New South Wales,153.103763,-29.485155 +2021,9,22,1,New South Wales,151.797826,-32.521604 +2020,12,27,1,New South Wales,152.992352,-30.514694 +2021,5,6,1,New South Wales,150.523086,-34.452251 +2021,6,28,1,New South Wales,153.454341,-28.653446 +2020,12,4,1,New South Wales,153.109975,-29.490259 +2022,10,25,1,New South Wales,152.828331,-31.649833 +2020,10,28,1,New South Wales,149.984095,-36.575978 +2023,6,24,1,New South Wales,150.784114,-33.717538 +2022,10,4,1,New South Wales,150.842133,-34.070234 +2021,5,26,1,New South Wales,150.516361,-34.450032 +2021,4,18,1,New South Wales,150.616212,-34.430095 +2021,4,28,1,New South Wales,150.603391,-34.427185 +2021,3,2,1,New South Wales,152.88479,-31.440117 +2020,12,15,1,New South Wales,152.415624,-31.933448 +2021,6,14,1,New South Wales,150.520474,-34.454091 +2024,1,13,1,New South Wales,150.787074,-33.703887 +2021,6,12,1,New South Wales,153.335477,-28.479923 +2023,11,22,1,New South Wales,152.897922,-31.436383 +2022,12,3,1,New South Wales,152.924453,-31.444562 +2023,1,11,1,New South Wales,153.099302,-29.490877 +2020,5,20,1,New South Wales,152.848198,-31.060477 +2020,6,17,1,New South Wales,153.095244,-29.483477 +2023,3,23,1,New South Wales,150.622371,-33.440682 +2022,9,3,1,New South Wales,150.903703,-33.99746 +2021,8,19,1,New South Wales,150.513082,-34.447225 +2020,10,28,1,New South Wales,149.96897,-36.58553 +2023,5,6,1,New South Wales,153.375627,-28.999986 +2024,2,9,1,New South Wales,152.893002,-31.437476 +2022,12,24,1,New South Wales,150.935691,-33.936341 +2022,5,11,1,New South Wales,153.103945,-29.489559 +2023,7,27,1,New South Wales,152.854058,-31.548541 +2023,2,25,1,New South Wales,152.376481,-31.926376 +2023,8,12,1,New South Wales,150.939105,-29.769535 +2020,1,22,1,New South Wales,152.922796,-31.460949 +2020,11,,1,New South Wales,151.727323,-32.245504 +2024,4,23,1,New South Wales,152.428937,-31.945217 +2021,1,2,1,New South Wales,152.34022,-31.980755 +2020,12,4,1,New South Wales,153.104214,-29.479566 +2021,6,18,1,New South Wales,150.520467,-34.465739 +2020,1,9,1,New South Wales,152.924315,-31.465233 +2020,11,7,1,New South Wales,150.021287,-36.554124 +2023,10,14,1,New South Wales,153.110586,-29.49004 +2021,8,14,1,New South Wales,150.527253,-34.472611 +2024,2,6,1,New South Wales,150.704764,-33.479658 +2022,9,8,1,New South Wales,153.102422,-29.489367 +2024,7,10,1,New South Wales,152.412625,-31.932147 +2021,4,27,1,New South Wales,150.616104,-34.435791 +2021,8,15,1,New South Wales,153.286672,-28.869331 +2020,3,23,1,New South Wales,153.102416,-29.488111 +2021,3,15,1,New South Wales,150.609376,-34.420658 +2021,5,19,1,New South Wales,150.630034,-34.395267 +2021,6,4,1,New South Wales,152.895376,-31.435876 +2021,12,5,1,New South Wales,152.063712,-32.70649 +2023,10,13,1,New South Wales,151.55109,-32.85631 +2023,10,16,1,New South Wales,150.785179,-33.709559 +2022,3,14,1,New South Wales,153.092921,-29.48855 +2021,6,30,1,New South Wales,150.605534,-34.43214 +2021,4,28,1,New South Wales,150.615917,-34.436265 +2023,10,27,1,New South Wales,150.786936,-33.705743 +2021,5,19,1,New South Wales,150.600389,-34.42865 +2020,4,5,1,New South Wales,153.109417,-29.490633 +2021,7,4,1,New South Wales,150.628979,-34.390621 +2021,5,17,1,New South Wales,150.61412,-34.432858 +2020,4,12,1,New South Wales,152.924875,-31.468579 +2022,11,25,1,New South Wales,152.770676,-30.853416 +2023,9,2,1,New South Wales,150.78302,-33.719507 +2023,10,27,1,New South Wales,150.733989,-34.212033 +2021,9,25,1,New South Wales,151.697425,-32.701559 +2023,4,18,1,New South Wales,153.321959,-28.816413 +2021,8,5,1,New South Wales,153.60155,-28.68121 +2022,4,13,1,New South Wales,150.288754,-31.163701 +2021,5,14,1,New South Wales,150.523866,-34.463806 +2021,6,15,1,New South Wales,150.630829,-34.42067 +2023,6,9,1,New South Wales,150.79498,-34.13952 +2023,8,9,1,New South Wales,152.924506,-30.506362 +2020,10,27,1,New South Wales,152.440205,-30.881636 +2020,2,10,1,New South Wales,153.606027,-28.68603 +2020,12,4,1,New South Wales,152.902377,-31.442079 +2023,9,30,1,New South Wales,150.785299,-33.710818 +2021,7,12,1,New South Wales,150.63106,-34.386244 +2021,8,23,1,New South Wales,150.607807,-34.441732 +2021,5,21,1,New South Wales,150.514971,-34.445541 +2021,5,26,1,New South Wales,150.638965,-34.491463 +2022,11,29,1,New South Wales,152.769456,-30.916275 +2022,11,19,1,New South Wales,152.769456,-30.916275 +2021,5,13,1,New South Wales,150.616802,-34.434984 +2020,2,1,1,New South Wales,151.736498,-32.551635 +2022,2,12,1,New South Wales,153.071682,-28.585441 +2020,11,16,1,New South Wales,149.969776,-36.511423 +2022,8,10,1,New South Wales,150.526111,-34.443361 +2021,6,5,1,New South Wales,150.63063,-34.420783 +2023,11,15,1,New South Wales,152.916224,-31.476707 +2021,11,3,1,New South Wales,153.51898,-28.57492 +2021,5,4,1,New South Wales,150.638552,-34.490635 +2021,5,15,1,New South Wales,150.629102,-34.395122 +2023,8,29,1,New South Wales,152.918615,-31.48485 +2021,10,9,1,New South Wales,151.110282,-29.762752 +2022,11,12,1,New South Wales,151.007545,-31.774385 +2021,5,16,1,New South Wales,150.637303,-34.423734 +2023,7,15,1,New South Wales,150.785149,-33.709479 +2021,4,28,1,New South Wales,150.619998,-34.400932 +2021,5,4,1,New South Wales,150.611689,-34.41963 +2021,5,15,1,New South Wales,150.523834,-34.46377 +2024,4,21,1,New South Wales,153.070842,-30.893988 +2021,5,31,1,New South Wales,150.51749,-34.446449 +2022,9,6,1,New South Wales,152.924282,-31.459941 +2023,7,24,1,New South Wales,152.879106,-31.458053 +2021,7,5,1,New South Wales,150.627365,-34.421216 +2020,10,24,1,New South Wales,151.110282,-29.762752 +2021,5,11,1,New South Wales,150.521349,-34.466847 +2021,7,9,1,New South Wales,153.488602,-28.655722 +2021,8,17,1,New South Wales,150.513048,-34.447251 +2021,6,12,1,New South Wales,151.110282,-29.762752 +2020,10,30,1,New South Wales,149.968131,-36.578885 +2021,11,9,1,New South Wales,151.489931,-30.654341 +2022,4,20,1,New South Wales,150.991638,-34.021692 +2020,11,3,1,New South Wales,149.968131,-36.578885 +2021,5,21,1,New South Wales,153.54955,-28.60141 +2020,5,18,1,New South Wales,153.428133,-28.558093 +2022,10,7,1,New South Wales,153.277512,-28.938938 +2022,11,9,1,New South Wales,150.574297,-34.509 +2022,11,24,1,New South Wales,150.965101,-34.028381 +2020,5,1,1,New South Wales,152.912811,-31.469932 +2022,4,10,1,New South Wales,153.555846,-28.604193 +2021,7,11,1,New South Wales,152.173943,-32.662205 +2021,5,26,1,New South Wales,150.595795,-34.42572 +2023,3,5,1,New South Wales,153.110586,-29.489844 +2021,6,4,1,New South Wales,150.604523,-34.426396 +2020,10,20,1,New South Wales,149.947183,-36.617465 +2020,2,27,1,New South Wales,153.605566,-28.660932 +2024,3,28,1,New South Wales,152.092919,-32.730633 +2020,10,19,1,New South Wales,149.930096,-36.638123 +2022,2,8,1,New South Wales,153.057457,-30.207297 +2022,7,23,1,New South Wales,152.869656,-31.393213 +2021,4,11,1,New South Wales,150.517637,-34.44775 +2022,1,16,1,New South Wales,153.293236,-28.864525 +2020,6,12,1,New South Wales,153.33124,-28.82175 +2022,1,29,1,New South Wales,153.10372,-29.485851 +2020,11,27,1,New South Wales,152.905986,-31.448054 +2021,7,4,1,New South Wales,150.514097,-34.446389 +2021,5,25,1,New South Wales,150.52669,-34.469552 +2021,3,29,1,New South Wales,150.616367,-34.434588 +2022,12,29,1,New South Wales,152.792395,-31.642103 +2021,3,25,1,New South Wales,150.607632,-34.422301 +2021,6,9,1,New South Wales,153.426993,-28.729831 +2021,6,14,1,New South Wales,150.516079,-34.459177 +2021,6,23,1,New South Wales,150.644532,-34.393284 +2021,7,14,1,New South Wales,150.515401,-34.444973 +2020,10,16,1,New South Wales,153.561767,-28.386939 +2022,6,27,1,New South Wales,152.94486,-30.38985 +2021,5,5,1,New South Wales,153.284859,-28.454651 +2020,11,1,1,New South Wales,149.96897,-36.58553 +2023,11,20,1,New South Wales,150.787432,-33.705565 +2022,6,26,1,New South Wales,153.104144,-29.478655 +2021,11,20,1,New South Wales,150.808987,-34.208693 +2020,10,1,1,New South Wales,152.03529,-32.73763 +2022,1,16,1,New South Wales,153.103779,-29.485552 +2021,9,6,1,New South Wales,151.67902,-32.508841 +2020,11,,1,New South Wales,152.216293,-32.408767 +2022,9,20,1,New South Wales,152.82929,-31.26329 +2021,5,31,1,New South Wales,150.638432,-34.491444 +2020,10,29,1,New South Wales,149.96897,-36.58553 +2023,9,25,1,New South Wales,150.647889,-34.299808 +2024,3,11,1,New South Wales,152.888034,-31.453712 +2020,10,29,1,New South Wales,149.984095,-36.575978 +2020,4,28,1,New South Wales,153.33124,-28.82175 +2021,10,8,1,New South Wales,153.546746,-28.388884 +2020,9,20,1,New South Wales,151.704792,-32.629403 +2021,4,5,1,New South Wales,150.615342,-34.435803 +2021,2,21,1,New South Wales,153.367878,-28.614583 +2021,8,15,1,New South Wales,150.631918,-34.418329 +2020,9,24,1,New South Wales,152.988323,-30.399605 +2021,6,6,1,New South Wales,150.616564,-34.435701 +2020,11,1,1,New South Wales,149.92265,-36.572354 +2021,5,9,1,New South Wales,150.604918,-34.427035 +2021,11,14,1,New South Wales,150.615644,-34.43745 +2021,1,7,1,New South Wales,153.070208,-30.275033 +2021,11,25,1,New South Wales,152.837387,-30.195134 +2023,10,22,1,New South Wales,150.785973,-33.706039 +2021,4,21,1,New South Wales,150.639013,-34.419025 +2023,9,25,1,New South Wales,153.10519,-29.489741 +2023,9,9,1,New South Wales,153.110544,-29.490147 +2020,10,24,1,New South Wales,149.96897,-36.58553 +2021,6,18,1,New South Wales,150.627558,-34.420913 +2021,6,3,1,New South Wales,150.521917,-34.466039 +2021,10,,1,New South Wales,149.29156,-36.146266 +2021,9,30,1,New South Wales,152.88594,-31.438751 +2021,5,1,1,New South Wales,150.618107,-34.429618 +2022,11,10,1,New South Wales,153.228626,-28.890296 +2021,4,21,1,New South Wales,150.632646,-34.392865 +2020,10,3,1,New South Wales,151.96482,-32.656066 +2020,1,12,1,New South Wales,153.103817,-29.485562 +2021,6,12,1,New South Wales,150.630108,-34.420385 +2021,7,30,1,New South Wales,150.632585,-34.419721 +2021,5,23,1,New South Wales,150.630994,-34.388217 +2021,3,22,1,New South Wales,150.60376,-34.439399 +2023,10,26,1,New South Wales,150.78543,-33.712832 +2022,3,17,1,New South Wales,153.1074,-29.490044 +2020,10,19,1,New South Wales,153.303174,-28.827996 +2021,6,10,1,New South Wales,150.626448,-34.386272 +2020,11,10,1,New South Wales,151.690393,-32.671713 +2023,5,11,1,New South Wales,153.39413,-28.959081 +2021,4,16,1,New South Wales,150.655913,-34.458568 +2020,11,3,1,New South Wales,149.96897,-36.58553 +2021,5,5,1,New South Wales,150.52063,-34.436325 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2020,11,3,1,New South Wales,149.96897,-36.58553 +2020,10,23,1,New South Wales,149.96897,-36.58553 +2021,4,21,1,New South Wales,150.636367,-34.485508 +2021,4,21,1,New South Wales,150.637362,-34.422798 +2021,5,3,1,New South Wales,150.637335,-34.423762 +2021,7,7,1,New South Wales,150.521195,-34.46505 +2021,5,4,1,New South Wales,150.61575,-34.436009 +2020,9,19,1,New South Wales,150.12123,-31.10266 +2023,7,7,1,New South Wales,152.888228,-31.434374 +2021,12,12,1,New South Wales,152.063282,-32.706359 +2023,1,11,1,New South Wales,152.088904,-32.728298 +2023,11,18,1,New South Wales,152.926206,-31.458871 +2022,12,29,1,New South Wales,146.59557,-34.773113 +2023,8,30,1,New South Wales,153.395266,-28.960002 +2023,8,15,1,New South Wales,151.718273,-32.717568 +2020,7,7,1,New South Wales,152.799071,-30.211983 +2022,11,8,1,New South Wales,153.428104,-29.031029 +2021,3,3,1,New South Wales,150.522877,-34.460072 +2023,7,28,1,New South Wales,153.511573,-28.688516 +2023,2,13,1,New South Wales,152.063978,-32.706773 +2023,9,5,1,New South Wales,153.315755,-28.826573 +2020,10,14,1,New South Wales,152.249109,-32.371169 +2023,11,30,1,New South Wales,152.08655,-32.7622 +2020,6,27,1,New South Wales,152.112115,-32.738157 +2021,5,27,1,New South Wales,150.604156,-34.43507 +2023,7,2,1,New South Wales,153.108156,-29.49032 +2020,5,18,1,New South Wales,153.436171,-28.793312 +2021,6,20,1,New South Wales,150.519866,-34.4526 +2023,8,3,1,New South Wales,153.099745,-29.491557 +2021,7,31,1,New South Wales,150.517563,-34.448767 +2021,5,21,1,New South Wales,150.607615,-34.432812 +2020,11,11,1,New South Wales,153.307082,-28.825034 +2022,11,7,1,New South Wales,153.049352,-30.455002 +2021,6,1,1,New South Wales,150.604756,-34.424705 +2022,12,8,1,New South Wales,151.717661,-32.605633 +2022,11,9,1,New South Wales,152.963797,-30.65074 +2022,6,20,1,New South Wales,152.374047,-31.913202 +2020,7,23,1,New South Wales,153.425541,-29.115171 +2021,5,15,1,New South Wales,150.614451,-34.454511 +2021,10,19,1,New South Wales,150.790596,-34.188134 +2023,3,12,1,New South Wales,153.322455,-28.815953 +2023,12,22,1,New South Wales,151.901456,-32.078156 +2023,2,24,1,New South Wales,152.919264,-31.470504 +2022,6,4,1,New South Wales,152.928931,-31.467319 +2024,9,17,1,New South Wales,153.476321,-28.600018 +2022,5,6,1,New South Wales,151.014763,-33.993574 +2020,8,26,1,New South Wales,153.292114,-28.863526 +2022,6,7,1,New South Wales,153.491173,-28.229207 +2021,9,28,1,New South Wales,152.941408,-31.186837 +2021,6,21,1,New South Wales,150.622929,-34.383841 +2022,8,2,1,New South Wales,150.792385,-34.144317 +2021,10,1,1,New South Wales,152.069699,-32.71273 +2021,7,25,1,New South Wales,150.518709,-34.444968 +2024,7,22,1,New South Wales,152.389012,-31.902724 +2021,6,2,1,New South Wales,150.604326,-34.437878 +2020,10,13,1,New South Wales,152.895013,-31.448159 +2024,9,16,1,New South Wales,153.042596,-30.385515 +2023,7,1,1,New South Wales,152.77232,-31.63091 +2021,3,6,1,New South Wales,150.60338,-34.436335 +2021,5,20,1,New South Wales,150.517346,-34.452071 +2021,6,17,1,New South Wales,150.513716,-34.446381 +2021,5,18,1,New South Wales,150.613526,-34.431936 +2021,4,8,1,New South Wales,150.61617,-34.434611 +2022,11,17,1,New South Wales,153.49024,-28.679852 +2020,11,27,1,New South Wales,153.101606,-29.489181 +2020,8,31,1,New South Wales,152.992352,-30.514694 +2021,8,22,1,New South Wales,152.063668,-32.706539 +2020,11,4,1,New South Wales,149.955017,-36.576791 +2021,9,10,1,New South Wales,150.999049,-34.084108 +2021,9,19,1,New South Wales,153.30567,-28.825204 +2021,5,12,1,New South Wales,150.63306,-34.41754 +2021,3,9,1,New South Wales,150.518158,-34.447427 +2023,1,10,1,New South Wales,150.575859,-34.878667 +2020,6,18,1,New South Wales,153.315895,-28.824581 +2021,5,8,1,New South Wales,150.62195,-34.39804 +2021,5,4,1,New South Wales,150.622883,-34.397373 +2021,6,6,1,New South Wales,150.523618,-34.465568 +2023,2,21,1,New South Wales,150.910854,-33.99862 +2021,5,2,1,New South Wales,150.611425,-34.419751 +2021,6,3,1,New South Wales,150.519733,-34.455248 +2021,5,2,1,New South Wales,150.633624,-34.418389 +2022,6,11,1,New South Wales,153.225408,-28.885814 +2021,5,1,1,New South Wales,150.61632,-34.43584 +2021,5,19,1,New South Wales,150.629924,-34.395301 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2024,4,22,1,New South Wales,152.271587,-31.938817 +2023,6,30,1,New South Wales,152.775948,-31.632416 +2021,7,14,1,New South Wales,153.079462,-30.348292 +2023,11,18,1,New South Wales,150.837708,-34.074077 +2021,7,13,1,New South Wales,150.62701,-34.420695 +2021,5,20,1,New South Wales,150.599515,-34.42994 +2020,10,31,1,New South Wales,149.934245,-36.578531 +2020,3,18,1,New South Wales,152.919357,-31.474529 +2023,7,30,1,New South Wales,153.019684,-28.429706 +2021,5,8,1,New South Wales,150.627788,-34.390066 +2021,5,9,1,New South Wales,150.637271,-34.423715 +2021,7,24,1,New South Wales,150.518711,-34.443454 +2021,6,18,1,New South Wales,150.602628,-34.425331 +2020,3,28,1,New South Wales,150.12473,-35.069514 +2021,2,1,1,New South Wales,153.277528,-28.935421 +2021,9,11,1,New South Wales,150.808987,-34.208693 +2020,4,26,1,New South Wales,153.103753,-29.48555 +2021,7,23,1,New South Wales,149.351835,-36.152378 +2021,5,9,1,New South Wales,150.628079,-34.389765 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2021,3,5,1,New South Wales,150.604297,-34.438102 +2021,5,27,1,New South Wales,150.521632,-34.465744 +2022,9,19,1,New South Wales,153.109921,-29.49017 +2020,6,11,1,New South Wales,152.797743,-31.138343 +2023,2,13,1,New South Wales,150.61831,-34.604121 +2021,7,9,1,New South Wales,150.631011,-34.388749 +2020,10,23,1,New South Wales,152.919755,-31.438248 +2023,5,31,1,New South Wales,150.431211,-34.474344 +2021,7,27,1,New South Wales,152.300422,-31.948252 +2020,1,5,1,New South Wales,153.292726,-28.864525 +2022,4,24,1,New South Wales,150.980482,-34.12769 +2020,12,22,1,New South Wales,153.103817,-29.485594 +2023,9,7,1,New South Wales,152.215656,-31.423997 +2021,4,29,1,New South Wales,150.615841,-34.436255 +2020,8,5,1,New South Wales,150.06103,-33.773724 +2020,1,31,1,New South Wales,152.909438,-31.447377 +2020,9,18,1,New South Wales,153.290224,-28.987228 +2021,7,28,1,New South Wales,150.596187,-34.424952 +2023,10,8,1,New South Wales,152.928674,-31.459109 +2021,5,14,1,New South Wales,150.600858,-34.427866 +2024,4,25,1,New South Wales,152.961335,-31.25256 +2020,9,26,1,New South Wales,152.921844,-31.447598 +2023,10,20,1,New South Wales,150.991491,-34.030929 +2021,6,30,1,New South Wales,150.513088,-34.447748 +2022,2,14,1,New South Wales,152.641843,-31.707847 +2020,9,18,1,New South Wales,153.041744,-28.590516 +2023,5,31,1,New South Wales,150.801045,-34.225306 +2022,9,4,1,New South Wales,153.089415,-28.597941 +2020,11,18,1,New South Wales,153.369052,-28.953149 +2021,11,12,1,New South Wales,153.463733,-28.69693 +2020,8,24,1,New South Wales,152.155406,-29.918308 +2022,4,9,1,New South Wales,152.412329,-31.932983 +2021,3,20,1,New South Wales,150.607824,-34.422052 +2021,5,7,1,New South Wales,150.637325,-34.423726 +2022,2,11,1,New South Wales,153.302376,-28.846727 +2021,6,27,1,New South Wales,150.631549,-34.387795 +2021,5,26,1,New South Wales,150.619739,-34.439225 +2021,5,27,1,New South Wales,150.517303,-34.452783 +2021,4,27,1,New South Wales,150.620296,-34.400757 +2021,12,27,1,New South Wales,152.926909,-31.454812 +2022,2,8,1,New South Wales,152.905067,-31.455592 +2023,7,30,1,New South Wales,153.555297,-28.711629 +2023,10,25,1,New South Wales,152.089051,-28.783076 +2023,5,17,1,New South Wales,152.376948,-31.910631 +2021,5,16,1,New South Wales,150.520497,-34.454083 +2020,2,18,1,New South Wales,151.778714,-32.574764 +2020,6,6,1,New South Wales,150.886418,-32.341905 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2021,4,23,1,New South Wales,150.604174,-34.422215 +2023,6,8,1,New South Wales,150.82176,-34.111 +2021,3,13,1,New South Wales,150.524265,-34.462102 +2022,12,15,1,New South Wales,152.072066,-32.710696 +2022,8,7,1,New South Wales,152.915878,-29.591069 +2021,6,5,1,New South Wales,150.523945,-34.466278 +2023,10,13,1,New South Wales,152.356775,-31.981852 +2021,9,5,1,New South Wales,152.160787,-30.094803 +2021,4,24,1,New South Wales,150.638302,-34.486005 +2023,11,12,1,New South Wales,152.925092,-31.454151 +2021,10,4,1,New South Wales,153.104782,-29.489662 +2020,4,8,1,New South Wales,152.878684,-31.425358 +2021,7,9,1,New South Wales,150.630887,-34.388918 +2020,12,2,1,New South Wales,153.562595,-28.391241 +2021,6,5,1,New South Wales,150.53461,-34.459345 +2021,5,5,1,New South Wales,150.523347,-34.459261 +2022,7,27,1,New South Wales,152.070248,-32.710276 +2021,5,17,1,New South Wales,149.300293,-36.058338 +2023,11,1,1,New South Wales,152.69153,-31.506077 +2020,8,13,1,New South Wales,152.713677,-31.353747 +2021,6,11,1,New South Wales,150.518281,-34.453569 +2022,9,21,1,New South Wales,152.719133,-31.69116 +2023,9,22,1,New South Wales,150.78696,-33.705879 +2023,9,20,1,New South Wales,152.364666,-31.91982 +2020,5,27,1,New South Wales,149.372739,-36.021682 +2020,10,25,1,New South Wales,153.56316,-28.374485 +2024,8,28,1,New South Wales,152.40818,-31.933947 +2021,6,5,1,New South Wales,150.630677,-34.420649 +2020,10,28,1,New South Wales,150.873769,-34.035121 +2020,5,,1,New South Wales,152.018258,-32.299527 +2021,6,19,1,New South Wales,150.602687,-34.425161 +2021,5,8,1,New South Wales,150.516971,-34.447457 +2021,4,30,1,New South Wales,150.608983,-34.435192 +2021,10,3,1,New South Wales,153.402508,-28.260255 +2022,12,15,1,New South Wales,150.921241,-33.967017 +2020,3,17,1,New South Wales,152.35899,-31.92441 +2021,5,21,1,New South Wales,150.522293,-34.465091 +2020,1,11,1,New South Wales,152.35899,-31.92441 +2020,11,26,1,New South Wales,149.917922,-36.474664 +2023,5,12,1,New South Wales,150.784169,-33.717336 +2023,1,27,1,New South Wales,152.063795,-32.706607 +2023,12,20,1,New South Wales,153.10813,-29.490245 +2021,5,17,1,New South Wales,150.640621,-34.494101 +2024,3,22,1,New South Wales,152.07807,-32.723578 +2020,11,25,1,New South Wales,152.794286,-31.155303 +2021,5,27,1,New South Wales,150.527128,-34.469453 +2021,4,27,1,New South Wales,150.602918,-34.435749 +2020,12,21,1,New South Wales,146.555562,-34.742652 +2021,5,30,1,New South Wales,150.640345,-34.397549 +2020,7,27,1,New South Wales,152.922233,-31.454907 +2020,11,8,1,New South Wales,150.021287,-36.554124 +2020,8,16,1,New South Wales,151.766343,-32.752581 +2021,8,12,1,New South Wales,150.645741,-34.397896 +2021,7,10,1,New South Wales,150.641022,-34.393586 +2023,11,18,1,New South Wales,152.929314,-31.450415 +2023,2,24,1,New South Wales,153.36858,-28.8002 +2021,9,12,1,New South Wales,150.524524,-34.482418 +2020,10,22,1,New South Wales,149.919967,-36.589766 +2022,12,10,1,New South Wales,146.529623,-34.737958 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2023,8,30,1,New South Wales,150.657125,-31.674586 +2020,12,8,1,New South Wales,149.960189,-36.280531 +2023,11,22,1,New South Wales,152.924006,-31.470361 +2020,10,9,1,New South Wales,152.088083,-32.729613 +2021,9,15,1,New South Wales,152.92899,-31.459585 +2021,6,3,1,New South Wales,150.522404,-34.465778 +2021,6,5,1,New South Wales,150.640025,-34.397714 +2021,8,25,1,New South Wales,152.9215,-31.47939 +2020,8,3,1,New South Wales,152.740925,-29.402855 +2021,7,7,1,New South Wales,150.62762,-34.421816 +2021,6,22,1,New South Wales,150.603712,-34.438776 +2022,11,7,1,New South Wales,151.900624,-32.080351 +2021,12,22,1,New South Wales,153.557309,-28.397012 +2022,12,13,1,New South Wales,153.103988,-29.489591 +2021,4,26,1,New South Wales,150.625295,-34.388233 +2023,7,31,1,New South Wales,152.486229,-31.4374 +2020,12,4,1,New South Wales,153.101682,-29.489381 +2021,4,28,1,New South Wales,151.6662,-30.501562 +2020,4,20,1,New South Wales,152.865621,-31.501719 +2021,3,22,1,New South Wales,150.534516,-34.462147 +2020,7,26,1,New South Wales,151.6662,-30.501562 +2021,9,3,1,New South Wales,150.60014,-34.446126 +2021,5,19,1,New South Wales,150.633864,-34.418357 +2021,6,7,1,New South Wales,150.607772,-34.430751 +2023,10,14,1,New South Wales,152.9781,-30.4187 +2021,3,28,1,New South Wales,150.635437,-34.488357 +2021,11,15,1,New South Wales,153.042145,-30.910708 +2021,8,4,1,New South Wales,153.311929,-28.821687 +2021,8,12,1,New South Wales,150.645275,-34.399375 +2023,1,1,1,New South Wales,153.386533,-28.787908 +2021,7,10,1,New South Wales,153.532794,-28.400667 +2021,5,29,1,New South Wales,150.516066,-34.448232 +2023,6,7,1,New South Wales,152.828507,-31.10611 +2021,12,5,1,New South Wales,153.101365,-29.489993 +2021,8,2,1,New South Wales,153.103892,-29.489545 +2021,11,20,1,New South Wales,152.387027,-28.907933 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2021,4,6,1,New South Wales,150.616181,-34.435378 +2021,6,16,1,New South Wales,150.617098,-34.433746 +2020,1,20,1,New South Wales,153.294848,-28.633009 +2023,11,24,1,New South Wales,152.929415,-31.456441 +2021,9,2,1,New South Wales,152.429322,-31.765534 +2021,6,16,1,New South Wales,150.607739,-34.430759 +2021,5,10,1,New South Wales,150.520093,-34.434962 +2023,3,28,1,New South Wales,153.30287,-28.82038 +2020,10,22,1,New South Wales,149.919967,-36.589766 +2024,4,21,1,New South Wales,153.064839,-30.902075 +2021,6,30,1,New South Wales,150.62737,-34.42026 +2021,6,11,1,New South Wales,150.613225,-34.432588 +2021,6,7,1,New South Wales,150.627047,-34.389736 +2020,10,22,1,New South Wales,149.919967,-36.589766 +2021,2,14,1,New South Wales,152.175002,-32.725735 +2021,6,10,1,New South Wales,150.6107,-34.430691 +2022,9,24,1,Victoria,143.858798,-38.670586 +2023,2,3,1,New South Wales,153.602142,-28.715639 +2021,5,26,1,New South Wales,150.602527,-34.436084 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2021,1,10,1,New South Wales,152.829335,-29.654339 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2021,6,12,1,New South Wales,150.521869,-34.459186 +2021,6,7,1,New South Wales,150.641987,-34.396778 +2024,3,22,1,New South Wales,152.383726,-31.913596 +2021,5,21,1,New South Wales,150.633071,-34.419487 +2020,10,16,1,New South Wales,149.887989,-36.587028 +2021,5,23,1,New South Wales,150.522472,-34.46495 +2023,12,9,1,New South Wales,153.045499,-30.239315 +2021,3,5,1,New South Wales,150.762313,-34.066007 +2020,12,15,1,New South Wales,153.299899,-28.820915 +2020,8,12,1,New South Wales,152.754942,-31.249124 +2021,9,9,1,New South Wales,153.07339,-30.36738 +2021,6,22,1,New South Wales,150.642486,-34.392586 +2021,5,10,1,New South Wales,150.604884,-34.427088 +2021,5,29,1,New South Wales,150.52716,-34.469462 +2021,5,29,1,New South Wales,150.630939,-34.420609 +2021,1,2,1,New South Wales,153.447901,-28.725986 +2023,9,17,1,New South Wales,153.241488,-28.918802 +2021,8,2,1,New South Wales,150.646712,-34.403207 +2020,10,16,1,New South Wales,149.919967,-36.589766 +2021,5,11,1,New South Wales,150.633169,-34.417551 +2022,12,18,1,New South Wales,152.897361,-31.474712 +2023,5,6,1,New South Wales,153.104026,-29.484268 +2023,6,27,1,New South Wales,152.895335,-30.594659 +2023,8,16,1,New South Wales,150.785319,-33.70331 +2021,6,10,1,New South Wales,153.564544,-28.380335 +2021,6,29,1,New South Wales,152.248544,-30.059088 +2021,5,2,1,New South Wales,150.604846,-34.426898 +2021,5,27,1,New South Wales,150.604081,-34.435024 +2021,8,9,1,New South Wales,150.642688,-34.404383 +2021,3,3,1,New South Wales,150.609226,-34.420565 +2023,9,30,1,New South Wales,153.109363,-29.490451 +2021,7,20,1,New South Wales,150.516391,-34.448284 +2020,6,17,1,New South Wales,149.972808,-36.432232 +2021,7,16,1,New South Wales,150.627229,-34.420618 +2020,10,14,1,New South Wales,149.919967,-36.589766 +2021,11,16,1,New South Wales,152.901822,-30.865035 +2022,10,11,1,New South Wales,153.396688,-28.561437 +2021,5,17,1,New South Wales,150.632021,-34.394602 +2021,6,7,1,New South Wales,150.524825,-34.465232 +2023,9,8,1,New South Wales,153.394539,-28.960122 +2021,6,10,1,New South Wales,150.626601,-34.386266 +2023,7,7,1,New South Wales,152.896777,-31.44004 +2020,10,10,1,New South Wales,149.955028,-36.650407 +2021,5,1,1,New South Wales,150.617297,-34.399906 +2021,2,24,1,New South Wales,150.635118,-34.483861 +2021,10,16,1,New South Wales,152.907543,-31.491606 +2021,8,16,1,New South Wales,150.521226,-34.463645 +2023,5,9,1,New South Wales,150.84298,-34.058717 +2023,4,12,1,New South Wales,152.921919,-31.457437 +2020,10,21,1,New South Wales,149.947183,-36.617465 +2022,4,9,1,New South Wales,153.402261,-28.260126 +2021,11,18,1,New South Wales,152.876499,-29.676668 +2023,7,27,1,New South Wales,150.785483,-33.705279 +2021,6,27,1,New South Wales,150.595723,-34.413791 +2021,3,13,1,New South Wales,153.104106,-29.47986 +2023,10,27,1,New South Wales,152.390835,-31.902059 +2021,3,3,1,New South Wales,152.327996,-31.911306 +2021,6,18,1,New South Wales,150.603985,-34.438745 +2023,8,17,1,New South Wales,152.797241,-31.637224 +2020,11,11,1,New South Wales,153.356939,-28.882972 +2021,7,25,1,New South Wales,151.693377,-32.690902 +2020,5,27,1,New South Wales,152.925879,-31.446285 +2024,6,20,1,New South Wales,152.912478,-31.451029 +2020,2,4,1,New South Wales,152.928545,-31.466794 +2021,3,3,1,New South Wales,153.55592,-28.398698 +2023,9,30,1,New South Wales,153.233745,-28.313495 +2024,3,28,1,New South Wales,152.377853,-31.918122 +2022,4,20,1,New South Wales,153.107985,-29.490175 +2021,5,23,1,New South Wales,150.529018,-34.47142 +2021,3,18,1,New South Wales,153.109589,-29.490362 +2021,12,8,1,New South Wales,152.845093,-31.563364 +2021,9,29,1,New South Wales,152.179389,-30.08386 +2022,5,5,1,New South Wales,152.915556,-31.444948 +2022,11,16,1,New South Wales,152.792673,-31.641771 +2024,2,21,1,New South Wales,152.413602,-31.944661 +2024,9,29,1,New South Wales,150.987132,-34.029402 +2021,7,8,1,New South Wales,150.521983,-34.464534 +2020,,,1,New South Wales,150.653568,-33.53092 +2023,12,27,1,New South Wales,152.378334,-31.920019 +2020,10,20,1,New South Wales,153.278132,-28.831137 +2021,8,9,1,New South Wales,151.052686,-31.162056 +2020,9,5,1,New South Wales,151.767054,-32.593048 +2024,2,14,1,New South Wales,151.851257,-32.792187 +2023,7,23,1,New South Wales,153.109304,-29.490834 +2021,6,15,1,New South Wales,150.623017,-34.385727 +2021,4,24,1,New South Wales,150.615508,-34.435707 +2021,4,14,1,New South Wales,150.609379,-34.42055 +2023,1,23,1,New South Wales,153.298814,-28.82595 +2021,7,19,1,New South Wales,150.523236,-34.464506 +2023,2,21,1,New South Wales,152.78724,-31.636424 +2020,10,29,1,New South Wales,149.984095,-36.575978 +2023,11,30,1,New South Wales,153.093327,-29.492718 +2021,5,29,1,New South Wales,150.617418,-34.438557 +2023,1,25,1,New South Wales,153.10814,-29.490357 +2021,6,3,1,New South Wales,150.637019,-34.488261 +2021,7,17,1,New South Wales,150.624524,-34.385892 +2022,10,11,1,New South Wales,153.235392,-28.827819 +2021,5,27,1,New South Wales,150.640536,-34.393856 +2021,4,30,1,New South Wales,150.635381,-34.419721 +2021,7,17,1,New South Wales,150.628005,-34.420895 +2022,12,23,1,New South Wales,152.877459,-31.468116 +2022,12,16,1,New South Wales,152.929013,-31.459623 +2020,10,16,1,New South Wales,149.919967,-36.589766 +2021,5,31,1,New South Wales,150.638535,-34.491239 +2021,4,22,1,New South Wales,150.638455,-34.42299 +2021,5,20,1,New South Wales,150.607968,-34.433766 +2022,10,11,1,New South Wales,153.074977,-30.307115 +2023,8,4,1,New South Wales,153.315107,-29.028206 +2022,2,22,1,New South Wales,153.272904,-28.928842 +2022,9,19,1,New South Wales,152.90968,-30.17336 +2021,6,17,1,New South Wales,150.604768,-34.427338 +2021,6,13,1,New South Wales,153.104085,-29.479967 +2021,9,17,1,New South Wales,153.030246,-28.839388 +2022,6,3,1,New South Wales,151.377711,-30.622084 +2021,5,13,1,New South Wales,150.629625,-34.389327 +2021,5,29,1,New South Wales,150.51613,-34.448648 +2021,6,21,1,New South Wales,150.62797,-34.420957 +2021,4,19,1,New South Wales,150.616363,-34.434354 +2023,6,7,1,New South Wales,153.103908,-29.489582 +2021,4,18,1,New South Wales,150.607913,-34.433801 +2021,11,,1,New South Wales,152.901602,-28.771137 +2022,11,30,1,New South Wales,152.794945,-30.901933 +2023,1,31,1,New South Wales,153.512327,-28.216269 +2020,10,28,1,New South Wales,149.984095,-36.575978 +2022,3,11,1,New South Wales,152.063435,-32.706298 +2021,12,23,1,New South Wales,153.320897,-28.84777 +2021,6,4,1,New South Wales,150.615876,-34.43502 +2023,7,17,1,New South Wales,151.718634,-32.717413 +2020,10,24,1,New South Wales,149.984095,-36.575978 +2020,11,24,1,New South Wales,152.078206,-32.727783 +2020,11,16,1,New South Wales,149.969776,-36.511423 +2020,10,6,1,New South Wales,152.12972,-31.39744 +2020,10,15,1,New South Wales,153.077582,-30.345268 +2022,8,3,1,New South Wales,150.79409,-34.13776 +2023,4,1,1,New South Wales,153.103935,-29.489587 +2021,9,12,1,New South Wales,153.5811,-28.78326 +2023,3,3,1,New South Wales,153.263825,-28.836389 +2022,11,11,1,New South Wales,152.441464,-31.943207 +2023,10,25,1,New South Wales,152.448885,-32.222679 +2020,11,3,1,New South Wales,149.955017,-36.576791 +2022,8,17,1,New South Wales,152.92519,-31.451147 +2020,10,29,1,New South Wales,149.955017,-36.576791 +2021,5,8,1,New South Wales,150.638974,-34.491527 +2021,7,1,1,New South Wales,150.626912,-34.421072 +2020,1,9,1,New South Wales,151.82212,-32.50942 +2022,3,8,1,New South Wales,152.404167,-31.945815 +2022,10,26,1,New South Wales,153.296686,-28.847235 +2020,5,15,1,New South Wales,149.308567,-36.108252 +2021,1,13,1,New South Wales,152.824888,-29.506886 +2021,4,17,1,New South Wales,150.629746,-34.394269 +2020,6,20,1,New South Wales,153.104243,-29.480196 +2022,10,17,1,New South Wales,153.629423,-28.637369 +2021,6,18,1,New South Wales,150.602629,-34.425277 +2020,11,9,1,New South Wales,153.092058,-29.488023 +2020,12,12,1,New South Wales,153.442773,-28.274143 +2022,8,1,1,New South Wales,150.795668,-34.13986 +2020,10,30,1,New South Wales,149.934245,-36.578531 +2023,9,7,1,New South Wales,152.233827,-31.400586 +2020,12,7,1,New South Wales,153.508359,-28.692405 +2020,11,13,1,New South Wales,153.104058,-29.484343 +2023,11,15,1,New South Wales,150.187734,-34.034662 +2021,7,28,1,New South Wales,152.17062,-32.743401 +2020,6,16,1,New South Wales,153.098334,-30.295851 +2023,9,29,1,New South Wales,150.786173,-33.706009 +2022,12,9,1,New South Wales,153.336241,-28.813127 +2022,5,3,1,New South Wales,153.293062,-28.864644 +2024,2,14,1,New South Wales,152.358798,-31.926849 +2022,12,15,1,New South Wales,150.920916,-33.967038 +2021,3,31,1,New South Wales,150.616362,-34.434381 +2023,6,27,1,New South Wales,152.93577,-30.382225 +2021,4,28,1,New South Wales,150.616389,-34.429206 +2020,2,4,1,New South Wales,152.892981,-31.436748 +2023,12,19,1,New South Wales,152.30757,-31.928854 +2022,3,7,1,New South Wales,153.108038,-29.490343 +2021,6,2,1,New South Wales,150.51833,-34.447863 +2021,6,12,1,New South Wales,150.644056,-34.396304 +2020,10,22,1,New South Wales,149.947183,-36.617465 +2021,4,25,1,New South Wales,150.605392,-34.423762 +2020,11,1,1,New South Wales,149.968131,-36.578885 +2021,6,4,1,New South Wales,150.519333,-34.448163 +2020,10,20,1,New South Wales,149.949786,-36.632867 +2020,10,18,1,New South Wales,149.947183,-36.617465 +2021,7,21,1,New South Wales,150.630678,-34.420622 +2021,5,12,1,New South Wales,150.519054,-34.436618 +2023,12,4,1,New South Wales,149.553176,-33.549377 +2020,12,4,1,New South Wales,152.903127,-31.44099 +2021,6,6,1,New South Wales,150.636151,-34.487758 +2021,7,16,1,New South Wales,150.62523,-34.386681 +2024,9,12,1,New South Wales,151.579577,-30.410249 +2020,1,27,1,New South Wales,153.557439,-28.397381 +2022,10,6,1,New South Wales,152.932029,-30.426774 +2020,11,13,1,New South Wales,153.103827,-29.485604 +2023,7,9,1,New South Wales,153.298311,-28.876449 +2021,5,3,1,New South Wales,150.519288,-34.437533 +2022,12,7,1,New South Wales,153.103715,-29.48559 +2020,10,23,1,New South Wales,149.947183,-36.617465 +2021,1,17,1,New South Wales,152.081222,-32.72313 +2021,6,30,1,New South Wales,150.605618,-34.432259 +2021,6,10,1,New South Wales,150.659617,-34.455321 +2021,6,9,1,New South Wales,150.605728,-34.437544 +2021,5,3,1,New South Wales,150.525982,-34.457764 +2021,11,16,1,New South Wales,153.0156,-30.369444 +2021,2,27,1,New South Wales,150.609731,-34.419619 +2023,1,20,1,New South Wales,152.06386,-32.706746 +2020,10,13,1,New South Wales,149.930096,-36.638123 +2021,5,21,1,New South Wales,150.607467,-34.433044 +2024,3,7,1,New South Wales,150.451797,-34.725342 +2022,11,19,1,New South Wales,152.754102,-30.882465 +2020,7,29,1,New South Wales,152.914177,-31.466666 +2021,3,8,1,New South Wales,150.603212,-34.437252 +2023,10,20,1,New South Wales,150.991049,-34.021426 +2021,12,8,1,New South Wales,149.807846,-32.35519 +2021,5,14,1,New South Wales,150.613712,-34.457913 +2021,3,13,1,New South Wales,153.033527,-30.193444 +2024,1,1,1,New South Wales,152.925785,-31.454369 +2020,6,7,1,New South Wales,152.879033,-31.457026 +2022,12,2,1,New South Wales,153.033527,-30.193444 +2021,6,12,1,New South Wales,150.51991,-34.452556 +2020,2,6,1,New South Wales,153.103874,-29.48536 +2021,5,28,1,New South Wales,153.59019,-28.65505 +2021,8,8,1,New South Wales,150.517108,-34.436209 +2021,4,19,1,New South Wales,150.626878,-34.385712 +2021,6,12,1,New South Wales,150.522095,-34.465925 +2024,9,21,2,New South Wales,146.569102,-34.75621 +2022,11,18,1,New South Wales,152.770676,-30.853416 +2023,11,4,1,New South Wales,152.407305,-31.916034 +2020,9,22,1,New South Wales,153.04933,-30.34853 +2023,11,20,1,New South Wales,152.876367,-29.677019 +2021,2,3,1,New South Wales,152.927068,-31.455175 +2021,6,11,1,New South Wales,150.630266,-34.420956 +2023,1,25,1,New South Wales,149.649444,-37.366383 +2021,10,16,1,New South Wales,152.907543,-31.491606 +2021,2,25,1,New South Wales,150.616393,-34.434444 +2021,5,7,1,New South Wales,150.52109,-34.46677 +2024,7,18,1,New South Wales,152.370717,-31.923165 +2023,12,29,1,New South Wales,150.782841,-33.719486 +2023,9,9,1,New South Wales,152.922453,-31.458616 +2021,6,15,1,New South Wales,150.515635,-34.459465 +2022,2,28,1,New South Wales,152.085547,-32.727623 +2020,2,17,1,New South Wales,151.991483,-32.72129 +2021,4,30,1,New South Wales,150.624371,-34.387836 +2022,8,1,1,New South Wales,150.796198,-34.136158 +2021,10,31,1,New South Wales,150.615597,-34.439459 +2021,5,6,1,New South Wales,150.522798,-34.452435 +2020,7,26,1,New South Wales,153.562904,-28.384369 +2021,,,1,New South Wales,149.857486,-32.367381 +2023,3,23,1,New South Wales,153.110522,-29.490147 +2022,11,28,1,New South Wales,152.788781,-30.895519 +2024,1,26,1,New South Wales,150.790629,-34.191199 +2020,10,10,1,New South Wales,153.010861,-30.417681 +2021,10,16,1,New South Wales,150.981735,-34.130172 +2020,7,2,1,New South Wales,153.095191,-30.337884 +2020,10,21,1,New South Wales,149.919967,-36.589766 +2023,4,2,1,New South Wales,150.808987,-34.208693 +2022,6,30,1,New South Wales,150.984263,-34.025872 +2020,9,3,1,New South Wales,153.474069,-28.258765 +2021,3,26,1,New South Wales,150.604962,-34.438837 +2023,9,12,1,New South Wales,152.807374,-31.653803 +2022,10,3,1,New South Wales,153.562683,-28.384544 +2020,12,7,1,New South Wales,153.334377,-28.818806 +2022,1,12,1,New South Wales,150.968612,-34.121255 +2021,11,14,1,New South Wales,153.593712,-28.720013 +2020,11,25,1,New South Wales,150.057099,-33.764309 +2022,7,14,1,New South Wales,152.689584,-31.518379 +2020,10,6,1,New South Wales,153.08487,-30.32947 +2023,9,18,1,New South Wales,153.108124,-29.490581 +2020,1,2,1,New South Wales,153.095491,-29.489974 +2021,7,8,1,New South Wales,150.641355,-34.395666 +2021,12,9,1,New South Wales,153.101403,-29.489624 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2024,4,14,1,New South Wales,152.898859,-31.474183 +2021,5,3,1,New South Wales,150.623181,-34.397604 +2020,9,23,1,New South Wales,152.510395,-32.055361 +2023,8,2,1,New South Wales,152.028937,-32.191329 +2021,6,5,1,New South Wales,150.615688,-34.435107 +2024,3,12,1,New South Wales,150.783598,-33.717929 +2020,9,20,1,New South Wales,151.704792,-32.629403 +2023,3,30,1,New South Wales,153.317936,-28.824228 +2021,8,1,1,New South Wales,152.411676,-31.935759 +2021,2,3,1,New South Wales,149.714337,-34.184215 +2021,8,14,1,New South Wales,150.531001,-34.472118 +2023,9,15,1,New South Wales,152.816689,-31.652764 +2020,10,15,1,New South Wales,153.56233,-28.373466 +2023,2,3,1,New South Wales,152.924973,-31.459272 +2021,2,27,1,New South Wales,150.609936,-34.419695 +2023,7,8,1,New South Wales,153.07096,-28.59417 +2021,5,2,1,New South Wales,150.517473,-34.440039 +2023,8,17,1,New South Wales,153.514459,-28.2398 +2021,10,6,1,New South Wales,151.635148,-32.591463 +2023,9,16,1,New South Wales,153.320612,-28.822466 +2020,1,14,1,New South Wales,153.110586,-29.490285 +2023,10,25,1,New South Wales,152.204264,-32.226111 +2024,1,14,1,New South Wales,152.541878,-32.329761 +2021,5,3,1,New South Wales,150.607671,-34.436573 +2020,2,1,1,New South Wales,152.65725,-30.541063 +2021,3,25,1,New South Wales,150.06457,-31.19451 +2021,4,26,1,New South Wales,150.635641,-34.418239 +2023,9,20,1,New South Wales,150.786985,-33.70833 +2021,6,12,1,New South Wales,150.615082,-34.431164 +2021,5,12,1,New South Wales,150.517363,-34.453307 +2021,4,30,1,New South Wales,150.608876,-34.435154 +2021,6,21,1,New South Wales,150.513195,-34.445974 +2021,7,1,1,New South Wales,153.108226,-29.490236 +2021,12,7,1,New South Wales,152.126308,-31.413327 +2020,10,21,1,New South Wales,149.947183,-36.617465 +2020,10,29,1,New South Wales,149.934245,-36.578531 +2020,9,28,1,New South Wales,150.808987,-34.208693 +2020,6,14,1,Victoria,145.060212,-38.418359 +2021,4,30,1,New South Wales,149.762497,-32.452504 +2022,7,14,1,New South Wales,150.939559,-34.113548 +2022,11,19,1,New South Wales,150.656179,-33.58539 +2021,4,29,1,New South Wales,150.606233,-34.45453 +2021,3,25,1,New South Wales,150.607632,-34.422301 +2023,10,10,1,New South Wales,150.379521,-34.386531 +2022,12,17,1,New South Wales,152.870433,-31.480432 +2020,10,14,1,New South Wales,153.007261,-28.593268 +2022,11,19,1,New South Wales,152.788781,-30.895519 +2020,4,18,1,New South Wales,153.308464,-28.822719 +2021,9,8,1,New South Wales,153.353347,-28.80854 +2021,4,10,1,New South Wales,150.862739,-34.080406 +2023,4,26,1,New South Wales,152.909624,-31.431087 +2024,1,23,1,New South Wales,152.780581,-30.153666 +2021,12,28,1,New South Wales,153.462238,-28.915929 +2021,5,3,1,New South Wales,150.637312,-34.423797 +2022,9,19,1,New South Wales,153.427558,-29.091442 +2021,6,30,1,New South Wales,150.629298,-34.38896 +2020,10,29,1,New South Wales,149.984095,-36.575978 +2020,11,,1,New South Wales,150.613559,-34.417665 +2020,12,7,1,New South Wales,153.395214,-28.959992 +2021,5,27,1,New South Wales,150.632259,-34.388458 +2021,8,16,1,New South Wales,150.514506,-34.445063 +2020,10,27,1,New South Wales,149.984095,-36.575978 +2022,9,8,1,New South Wales,152.790244,-31.12871 +2021,11,21,1,New South Wales,152.750915,-28.957043 +2021,4,5,1,New South Wales,150.6342,-34.488612 +2023,10,16,1,New South Wales,153.069313,-30.877808 +2020,12,6,1,New South Wales,153.103784,-29.485571 +2021,5,8,1,New South Wales,150.606319,-34.438196 +2020,2,15,1,New South Wales,150.809607,-34.099913 +2021,4,10,1,New South Wales,150.633991,-34.489835 +2023,7,24,1,New South Wales,151.300376,-30.590548 +2021,11,30,1,New South Wales,152.065122,-32.742829 +2021,3,25,1,New South Wales,150.61591,-34.435742 +2020,5,12,1,New South Wales,152.039401,-32.730474 +2023,2,3,1,New South Wales,150.837538,-34.062857 +2020,9,11,1,New South Wales,152.113237,-32.770773 +2021,5,13,1,New South Wales,150.525296,-34.464043 +2020,10,28,1,New South Wales,153.553614,-28.582799 +2022,9,22,1,Victoria,145.448355,-35.852747 +2021,6,19,1,New South Wales,150.520541,-34.465821 +2021,3,7,1,New South Wales,150.53011,-34.470947 +2024,1,8,1,New South Wales,153.102889,-29.489363 +2020,10,20,1,New South Wales,153.278132,-28.831137 +2024,1,29,1,New South Wales,153.103913,-29.489582 +2021,10,7,1,New South Wales,152.300422,-31.948252 +2023,10,11,1,New South Wales,150.61934,-34.54504 +2021,4,6,1,New South Wales,150.533107,-34.479689 +2020,8,13,1,New South Wales,153.243407,-28.943114 +2022,10,4,1,New South Wales,153.110533,-29.490203 +2022,12,31,1,New South Wales,153.31683,-28.94801 +2024,1,20,1,New South Wales,152.176506,-28.637197 +2021,6,27,1,New South Wales,150.604314,-34.433712 +2023,4,12,1,New South Wales,152.063838,-32.706589 +2021,5,24,1,New South Wales,150.514696,-34.443417 +2020,11,29,1,New South Wales,153.109481,-29.490474 +2021,7,29,1,New South Wales,150.642089,-34.395878 +2024,6,14,1,New South Wales,152.857194,-31.139833 +2021,3,15,1,New South Wales,150.609376,-34.420658 +2021,1,23,1,New South Wales,152.922619,-31.460812 +2020,10,11,1,New South Wales,149.959933,-36.657162 +2023,6,9,1,New South Wales,150.784215,-33.717212 +2020,11,13,1,New South Wales,152.065229,-32.703163 +2021,4,29,1,New South Wales,150.665158,-34.458817 +2021,5,10,1,New South Wales,150.632655,-34.418037 +2021,5,19,1,New South Wales,150.613692,-34.431074 +2020,1,1,1,New South Wales,153.108207,-29.490121 +2022,2,2,1,New South Wales,152.91497,-31.458749 +2023,10,29,1,New South Wales,151.859267,-32.773066 +2021,3,14,1,New South Wales,150.635071,-34.487827 +2021,7,12,1,New South Wales,153.278171,-28.932421 +2020,12,21,1,New South Wales,146.555434,-34.742845 +2020,12,12,1,New South Wales,152.92885,-31.458001 +2020,9,11,1,New South Wales,150.01208,-31.1337 +2021,5,3,1,New South Wales,150.626012,-34.390167 +2022,11,22,1,New South Wales,152.764422,-30.891124 +2021,8,20,1,New South Wales,153.558512,-28.672704 +2020,10,14,1,New South Wales,149.919967,-36.589766 +2022,12,2,1,New South Wales,153.49619,-28.693236 +2020,10,22,1,New South Wales,149.919967,-36.589766 +2021,12,1,1,New South Wales,153.101392,-29.489638 +2021,7,26,1,New South Wales,150.517549,-34.440771 +2021,5,26,1,New South Wales,150.61986,-34.439182 +2022,9,26,1,New South Wales,152.786585,-31.629234 +2021,2,23,1,New South Wales,150.644364,-34.468972 +2022,8,9,1,New South Wales,152.076732,-32.723669 +2022,11,17,1,New South Wales,152.794945,-30.901933 +2020,7,4,1,New South Wales,150.808987,-34.208693 +2021,6,16,1,New South Wales,150.630278,-34.42093 +2020,11,19,1,New South Wales,150.67371,-33.486625 +2021,11,20,1,New South Wales,153.302264,-28.820298 +2022,10,27,1,New South Wales,152.899322,-29.630985 +2021,4,25,1,New South Wales,150.637771,-34.486311 +2021,5,16,1,New South Wales,150.628691,-34.39506 +2021,6,27,1,New South Wales,150.51381,-34.447267 +2021,3,25,1,New South Wales,150.514193,-34.445697 +2021,1,31,1,New South Wales,153.556098,-28.398509 +2021,5,11,1,New South Wales,150.521425,-34.46647 +2021,6,16,1,New South Wales,150.61704,-34.433862 +2021,5,25,1,New South Wales,150.602536,-34.436139 +2021,7,15,1,New South Wales,150.594562,-34.410649 +2021,9,25,1,New South Wales,152.087252,-32.732436 +2021,5,11,1,New South Wales,150.633082,-34.417531 +2021,5,29,1,New South Wales,150.631465,-34.386937 +2020,7,24,1,New South Wales,151.974623,-32.472237 +2021,4,9,1,New South Wales,152.619085,-30.331064 +2022,3,14,1,New South Wales,152.919418,-31.475421 +2020,10,16,1,New South Wales,149.947183,-36.617465 +2021,12,10,1,New South Wales,153.293115,-28.864682 +2021,8,13,1,New South Wales,152.378988,-31.918115 +2021,4,27,1,New South Wales,150.610291,-34.41908 +2020,3,17,1,New South Wales,152.677408,-30.47848 +2024,1,16,1,New South Wales,152.736179,-30.905427 +2021,6,16,1,New South Wales,150.520817,-34.46571 +2021,5,20,1,New South Wales,150.639254,-34.493182 +2021,7,22,1,New South Wales,152.036748,-32.737046 +2021,10,18,1,New South Wales,152.812724,-29.796934 +2022,8,13,1,New South Wales,153.104096,-29.483853 +2021,5,26,1,New South Wales,150.518096,-34.453556 +2021,2,17,1,New South Wales,152.03904,-32.73749 +2022,12,24,1,New South Wales,152.967384,-31.185968 +2021,6,25,1,New South Wales,150.514497,-34.447208 +2021,5,9,1,New South Wales,150.519242,-34.468887 +2023,4,9,1,New South Wales,152.063529,-32.706167 +2020,10,22,1,New South Wales,149.947183,-36.617465 +2021,6,1,1,New South Wales,150.616459,-34.437862 +2021,3,13,1,New South Wales,150.634954,-34.487753 +2021,5,1,1,New South Wales,150.637512,-34.488532 +2023,8,4,1,New South Wales,151.786914,-32.313952 +2023,4,8,1,New South Wales,151.062932,-33.144457 +2021,7,19,1,New South Wales,153.1038,-29.485557 +2021,6,5,1,New South Wales,150.605494,-34.428191 +2023,10,24,1,New South Wales,152.386379,-32.093467 +2021,5,22,1,New South Wales,150.517195,-34.452023 +2024,2,3,1,New South Wales,150.790496,-34.199955 +2023,1,8,1,New South Wales,153.510503,-28.241619 +2024,9,4,1,New South Wales,152.173378,-31.571531 +2021,4,25,1,New South Wales,150.615679,-34.43544 +2023,2,21,1,New South Wales,150.790568,-34.188197 +2021,4,17,1,New South Wales,150.516515,-34.448863 +2023,9,12,1,New South Wales,152.80765,-31.652842 +2021,7,9,1,New South Wales,150.662457,-34.454555 +2021,7,17,1,New South Wales,153.101199,-29.489942 +2023,6,1,1,New South Wales,153.099745,-29.491618 +2022,1,3,1,New South Wales,152.01786,-32.733483 +2024,1,11,1,New South Wales,150.78526,-33.715704 +2024,1,28,1,New South Wales,152.073383,-32.717002 +2020,4,17,1,New South Wales,152.85146,-29.69253 +2021,5,6,1,New South Wales,150.632871,-34.418852 +2023,11,3,1,New South Wales,152.204264,-32.226111 +2020,11,2,1,New South Wales,149.934245,-36.578531 +2021,6,25,1,New South Wales,150.514338,-34.447413 +2023,12,20,1,New South Wales,152.228725,-32.139621 +2021,3,27,1,New South Wales,150.520079,-34.453119 +2021,7,6,1,New South Wales,150.627487,-34.421507 +2021,5,24,1,New South Wales,150.630799,-34.42057 +2023,4,4,1,New South Wales,152.373559,-31.91429 +2022,5,16,1,New South Wales,153.110522,-29.489937 +2021,6,23,1,New South Wales,150.627398,-34.42118 +2022,9,2,1,New South Wales,153.073117,-30.888249 +2021,6,8,1,New South Wales,150.515123,-34.456913 +2021,4,11,1,New South Wales,150.527133,-34.45785 +2022,6,25,1,New South Wales,153.318421,-28.822003 +2022,10,1,1,New South Wales,153.109272,-29.490876 +2023,7,31,1,New South Wales,152.087507,-32.744631 +2021,5,28,1,New South Wales,150.631442,-34.386955 +2020,12,25,1,New South Wales,151.56004,-30.40296 +2022,7,14,1,New South Wales,153.00518,-30.30666 +2020,1,26,1,New South Wales,152.867922,-29.667415 +2021,11,18,1,New South Wales,152.066216,-32.709638 +2021,6,18,1,New South Wales,150.521425,-34.465749 +2022,7,30,1,New South Wales,152.038948,-32.738128 +2023,12,1,1,New South Wales,152.802334,-30.325339 +2021,3,24,1,New South Wales,150.607653,-34.422319 +2020,9,24,1,New South Wales,152.898315,-31.443455 +2021,9,13,1,New South Wales,150.792549,-34.206528 +2021,5,25,1,New South Wales,150.603155,-34.435069 +2021,5,2,1,New South Wales,150.624209,-34.388933 +2020,10,16,1,New South Wales,149.919967,-36.589766 +2021,8,26,1,New South Wales,150.521242,-34.465682 +2023,12,9,1,New South Wales,150.783192,-33.718625 +2023,6,12,1,New South Wales,151.824597,-30.450682 +2021,5,15,1,New South Wales,150.615062,-34.452945 +2024,8,22,1,New South Wales,151.987701,-32.282319 +2022,10,29,1,New South Wales,152.861758,-31.282976 +2023,1,29,1,New South Wales,152.970084,-31.19271 +2021,11,26,1,New South Wales,152.378287,-31.918407 +2020,11,8,1,New South Wales,150.021287,-36.554124 +2023,9,15,1,New South Wales,152.611582,-30.347463 +2020,10,16,1,New South Wales,149.919967,-36.589766 +2022,6,22,1,New South Wales,153.364771,-28.83677 +2022,6,23,1,New South Wales,153.458043,-28.585138 +2021,4,24,1,New South Wales,150.630691,-34.388923 +2020,10,22,1,New South Wales,149.919967,-36.589766 +2021,4,20,1,New South Wales,150.627213,-34.385773 +2021,10,10,1,New South Wales,152.07148,-32.709625 +2022,4,1,1,New South Wales,152.893895,-30.177887 +2021,10,23,1,New South Wales,152.132821,-30.11253 +2022,12,30,1,New South Wales,152.793355,-31.64263 +2021,6,13,1,New South Wales,150.518406,-34.457412 +2021,6,7,1,New South Wales,150.518878,-34.447343 +2021,6,16,1,New South Wales,152.344025,-31.879441 +2021,7,12,1,New South Wales,150.597273,-34.410179 +2022,12,3,1,New South Wales,152.071191,-32.70933 +2023,3,9,1,New South Wales,153.556102,-28.399671 +2021,5,3,1,New South Wales,150.615799,-34.435028 +2020,3,4,1,New South Wales,153.514342,-28.687084 +2020,11,14,1,New South Wales,152.402309,-31.938794 +2020,12,8,1,New South Wales,149.960189,-36.280531 +2021,6,17,1,New South Wales,150.659466,-34.455264 +2021,5,28,1,New South Wales,153.59019,-28.65505 +2023,8,6,1,New South Wales,153.521081,-28.76994 +2020,1,11,1,New South Wales,153.282153,-28.824698 +2020,10,24,1,New South Wales,149.960571,-36.556943 +2023,4,10,1,New South Wales,153.395547,-28.264126 +2021,4,10,1,New South Wales,152.87922,-31.425606 +2020,10,25,1,New South Wales,151.6662,-30.501562 +2023,5,21,1,New South Wales,152.989306,-29.042093 +2023,7,25,1,New South Wales,152.923299,-31.469665 +2023,6,22,1,New South Wales,149.95515,-36.347022 +2021,4,13,1,New South Wales,150.609113,-34.42031 +2023,10,19,1,New South Wales,152.93067,-31.46923 +2021,8,7,1,New South Wales,150.514085,-34.446434 +2021,7,7,1,New South Wales,150.599778,-34.418054 +2021,6,1,1,New South Wales,150.638185,-34.490907 +2022,8,14,1,New South Wales,150.552766,-34.514912 +2021,7,10,1,New South Wales,150.642089,-34.39431 +2022,1,5,1,New South Wales,153.103929,-29.489577 +2021,6,25,1,New South Wales,150.603025,-34.437708 +2020,10,16,1,New South Wales,153.271685,-28.924508 +2024,4,14,1,South Australia,138.932937,-34.564653 +2021,10,25,1,New South Wales,153.013608,-30.414124 +2023,9,25,1,New South Wales,152.896341,-31.43072 +2020,10,13,1,New South Wales,151.476361,-33.052972 +2021,5,15,1,New South Wales,150.517748,-34.441406 +2021,5,22,1,New South Wales,150.605511,-34.432176 +2020,6,6,1,New South Wales,153.557213,-28.400321 +2024,4,28,1,New South Wales,150.992208,-34.023298 +2021,4,7,1,New South Wales,150.520788,-34.465204 +2022,9,11,1,New South Wales,152.063278,-32.706371 +2021,5,19,1,New South Wales,153.101649,-29.489349 +2024,6,28,1,New South Wales,152.930223,-31.466533 +2020,10,26,1,New South Wales,149.984095,-36.575978 +2021,5,14,1,New South Wales,152.404167,-31.945815 +2021,6,18,1,New South Wales,150.618302,-34.435401 +2021,3,11,1,New South Wales,151.083342,-29.728616 +2021,5,21,1,New South Wales,150.515493,-34.451799 +2024,1,1,1,New South Wales,150.787146,-33.704186 +2021,10,19,1,New South Wales,152.925329,-31.452452 +2020,11,6,1,New South Wales,149.995573,-36.572611 +2021,12,14,1,New South Wales,153.104026,-29.479818 +2022,1,24,1,New South Wales,152.868061,-29.666949 +2021,6,8,1,New South Wales,150.523044,-34.466224 +2024,1,16,1,New South Wales,152.343512,-32.235432 +2021,8,31,1,New South Wales,150.860211,-34.073199 +2023,8,9,1,New South Wales,153.107464,-29.490138 +2024,1,26,1,New South Wales,150.786822,-33.705015 +2021,3,6,1,New South Wales,150.616413,-34.433354 +2020,8,15,1,New South Wales,153.283467,-28.830686 +2023,10,15,1,New South Wales,153.04209,-30.910658 +2021,2,10,1,New South Wales,152.415139,-31.933204 +2021,7,31,1,New South Wales,152.404167,-31.945815 +2023,12,14,1,New South Wales,152.924868,-31.454073 +2020,10,29,1,New South Wales,149.955017,-36.576791 +2021,10,12,1,New South Wales,150.790868,-34.148284 +2022,1,20,1,New South Wales,150.616883,-34.440927 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2021,6,1,1,New South Wales,150.523802,-34.463769 +2021,7,3,1,New South Wales,150.627288,-34.421241 +2021,5,9,1,New South Wales,150.521621,-34.466105 +2022,6,3,1,New South Wales,152.710623,-31.781941 +2021,4,18,1,New South Wales,150.629827,-34.394487 +2020,8,9,1,New South Wales,153.093077,-29.488518 +2022,4,5,1,New South Wales,152.900816,-29.631326 +2021,5,29,1,New South Wales,150.602542,-34.424914 +2023,9,20,1,New South Wales,153.277348,-28.939508 +2020,7,9,1,New South Wales,152.910446,-31.440563 +2021,6,18,1,New South Wales,150.51379,-34.446085 +2021,7,17,1,New South Wales,152.72632,-30.157302 +2021,11,18,1,New South Wales,152.839123,-31.595622 +2020,7,18,1,New South Wales,153.093514,-29.492788 +2020,10,13,1,New South Wales,150.940088,-33.953175 +2021,5,4,1,New South Wales,150.603423,-34.427564 +2021,8,26,1,New South Wales,149.822325,-32.386406 +2020,2,9,1,New South Wales,153.454664,-28.61541 +2023,11,3,1,New South Wales,153.019614,-30.366871 +2023,9,7,1,New South Wales,150.634767,-33.573049 +2022,1,29,1,New South Wales,152.039564,-32.733082 +2020,7,30,1,New South Wales,152.927329,-30.507663 +2024,3,13,1,New South Wales,152.928317,-31.45942 +2022,7,29,1,New South Wales,152.801269,-31.147698 +2023,6,12,1,New South Wales,153.108012,-29.490409 +2024,3,27,1,New South Wales,152.919293,-31.47032 +2021,7,17,1,New South Wales,150.595653,-34.413943 +2020,10,7,1,New South Wales,152.922804,-31.474914 +2020,11,2,1,New South Wales,149.994744,-36.560944 +2021,6,5,1,New South Wales,150.636196,-34.487714 +2023,5,24,1,New South Wales,151.789933,-32.654111 +2023,10,21,1,New South Wales,151.715325,-32.670293 +2024,4,1,1,New South Wales,152.961258,-31.252551 +2020,10,23,1,New South Wales,149.919967,-36.589766 +2021,3,25,1,New South Wales,150.607892,-34.422333 +2023,2,7,1,New South Wales,152.102708,-32.733272 +2021,6,5,1,New South Wales,150.519484,-34.456668 +2021,4,25,1,New South Wales,150.63817,-34.419982 +2022,11,30,1,New South Wales,152.064412,-32.711305 +2021,10,5,1,New South Wales,152.904782,-29.690996 +2021,6,2,1,New South Wales,150.51958,-34.447186 +2021,5,18,1,New South Wales,150.615997,-34.449528 +2022,8,22,1,New South Wales,152.921665,-31.453753 +2021,1,11,1,New South Wales,152.941754,-30.494066 +2021,5,7,1,New South Wales,150.603961,-34.427025 +2021,10,25,1,New South Wales,150.567012,-34.483871 +2022,8,8,1,New South Wales,152.279242,-29.876908 +2020,9,22,1,New South Wales,152.269131,-32.487277 +2021,6,22,1,New South Wales,150.519776,-34.462975 +2021,6,1,1,New South Wales,150.518238,-34.446545 +2020,2,16,1,New South Wales,152.924537,-31.443756 +2023,9,26,1,New South Wales,153.182249,-28.847074 +2020,4,2,1,New South Wales,152.721325,-31.780022 +2023,6,3,1,New South Wales,150.876419,-34.022804 +2020,11,29,1,New South Wales,153.374763,-28.252334 +2021,12,8,1,New South Wales,150.616971,-34.439766 +2020,10,28,1,New South Wales,152.957921,-30.648838 +2020,8,16,1,New South Wales,152.910747,-31.446683 +2021,4,30,1,New South Wales,150.638753,-34.489296 +2020,10,28,1,New South Wales,150.61687,-33.443058 +2021,4,18,1,New South Wales,150.62744,-34.385822 +2021,6,22,1,New South Wales,150.645156,-34.393161 +2021,9,9,1,New South Wales,153.342755,-28.823294 +2023,12,16,1,New South Wales,152.915685,-31.453974 +2023,8,7,1,New South Wales,152.06372,-32.70657 +2021,9,19,1,New South Wales,150.78839,-34.198852 +2021,5,23,1,New South Wales,152.13525,-32.727203 +2020,10,4,1,New South Wales,153.559696,-28.371176 +2022,10,8,1,New South Wales,153.557543,-28.3886 +2020,12,4,1,New South Wales,152.907065,-31.449225 +2021,6,16,1,New South Wales,150.52071,-34.465645 +2022,8,2,1,New South Wales,153.495337,-28.678098 +2022,4,17,1,New South Wales,153.534066,-28.509896 +2021,5,30,1,New South Wales,150.615687,-34.438587 +2021,7,11,1,New South Wales,150.521898,-34.46447 +2021,11,29,1,New South Wales,153.397512,-29.013555 +2021,10,4,1,New South Wales,152.404167,-31.945815 +2021,5,3,1,New South Wales,150.608645,-34.435979 +2023,9,19,1,New South Wales,150.31054,-31.21821 +2023,4,26,1,New South Wales,152.063696,-32.706633 +2023,3,23,1,New South Wales,151.710779,-32.612534 +2021,9,1,1,New South Wales,152.986639,-30.584828 +2020,4,9,1,New South Wales,152.660995,-30.207726 +2022,8,11,1,New South Wales,152.987287,-30.437247 +2022,6,26,1,New South Wales,152.0348,-32.76535 +2021,5,17,1,New South Wales,150.637333,-34.423834 +2021,7,7,1,New South Wales,150.064231,-33.773548 +2021,9,29,1,New South Wales,153.152022,-30.143817 +2023,2,13,1,New South Wales,152.914201,-31.452842 +2020,1,10,1,New South Wales,152.821582,-31.147624 +2023,6,20,1,New South Wales,153.515926,-28.238877 +2020,9,17,1,New South Wales,153.428365,-28.817995 +2022,5,29,1,New South Wales,153.103259,-29.486696 +2022,5,9,1,New South Wales,153.071682,-28.585441 +2021,5,22,1,New South Wales,150.518245,-34.45145 +2021,10,2,1,New South Wales,152.826585,-29.625039 +2022,8,10,1,New South Wales,150.527361,-34.444556 +2022,7,9,1,New South Wales,153.103055,-29.489381 +2024,1,9,1,New South Wales,153.110533,-29.489872 +2021,6,9,1,New South Wales,150.63002,-34.420789 +2024,3,13,1,New South Wales,152.063752,-32.706616 +2023,8,5,1,New South Wales,153.110023,-29.49025 +2022,6,24,1,New South Wales,152.925303,-31.453741 +2023,11,11,1,New South Wales,153.105233,-29.489727 +2021,4,26,1,New South Wales,150.607157,-34.454566 +2021,8,4,1,New South Wales,150.520399,-34.465837 +2021,3,16,1,New South Wales,150.516481,-34.445617 +2020,10,5,1,New South Wales,152.077254,-32.724577 +2021,1,13,1,New South Wales,153.551041,-28.582477 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2023,3,21,1,New South Wales,153.071977,-30.880197 +2021,8,27,1,New South Wales,150.603399,-34.442899 +2022,9,1,1,New South Wales,152.166938,-32.00875 +2022,1,14,1,New South Wales,153.103988,-29.485282 +2021,11,19,1,New South Wales,153.334102,-28.85774 +2021,4,30,1,New South Wales,150.636368,-34.421769 +2021,1,28,1,New South Wales,153.400236,-28.619978 +2021,8,21,1,New South Wales,150.513197,-34.447732 +2024,1,19,1,New South Wales,150.574292,-33.695661 +2022,11,4,1,New South Wales,152.088405,-32.743606 +2023,7,15,1,New South Wales,153.479122,-28.249424 +2020,10,8,1,New South Wales,153.091927,-30.192008 +2021,5,5,1,New South Wales,150.605504,-34.437396 +2021,12,27,1,New South Wales,150.616626,-34.437739 +2022,8,21,1,New South Wales,150.840231,-34.060825 +2022,9,5,1,New South Wales,150.789914,-34.197915 +2021,7,25,1,New South Wales,152.526792,-32.045078 +2021,4,26,1,New South Wales,150.635663,-34.418221 +2021,6,6,1,New South Wales,150.519485,-34.45665 +2023,10,31,1,New South Wales,152.826264,-31.650019 +2023,11,1,1,New South Wales,152.782506,-31.483446 +2023,11,26,1,New South Wales,150.786918,-33.705762 +2023,7,26,1,New South Wales,153.095325,-29.483969 +2021,5,2,1,New South Wales,150.610378,-34.420209 +2023,5,11,1,New South Wales,153.269552,-28.889151 +2021,5,11,1,New South Wales,150.521269,-34.466233 +2021,8,27,1,New South Wales,150.640818,-34.397738 +2023,7,14,1,New South Wales,149.761113,-32.403422 +2021,7,5,1,New South Wales,150.603106,-34.41811 +2022,1,13,1,New South Wales,153.562348,-28.384052 +2020,6,7,1,New South Wales,152.913123,-31.429546 +2024,8,27,1,New South Wales,152.71241,-31.783116 +2024,1,23,1,New South Wales,152.970752,-31.190689 +2021,6,3,1,New South Wales,150.519839,-34.447236 +2021,6,28,1,New South Wales,150.607424,-34.449812 +2023,3,5,1,New South Wales,152.925749,-31.447608 +2021,7,15,1,New South Wales,150.522828,-34.465778 +2020,9,22,1,New South Wales,152.899605,-31.443736 +2020,5,15,1,New South Wales,149.308567,-36.108252 +2022,5,17,1,New South Wales,152.881362,-31.454857 +2021,3,18,1,New South Wales,150.532626,-34.481266 +2021,6,17,1,New South Wales,150.618313,-34.435041 +2020,1,13,1,New South Wales,153.109471,-29.490488 +2021,5,2,1,New South Wales,150.520551,-34.454084 +2024,1,1,1,New South Wales,153.105233,-29.489792 +2023,11,4,1,New South Wales,150.986522,-34.095981 +2020,5,31,1,New South Wales,150.065764,-33.773548 +2023,3,21,1,New South Wales,153.110055,-29.490194 +2021,5,7,1,New South Wales,150.659178,-34.457413 +2024,6,5,1,New South Wales,150.003869,-32.696024 +2021,9,8,1,New South Wales,150.522779,-34.448675 +2021,4,18,1,New South Wales,150.629805,-34.394514 +2020,10,19,1,New South Wales,149.930096,-36.638123 +2022,5,5,1,New South Wales,153.358079,-28.699705 +2021,8,3,1,New South Wales,150.633678,-34.418399 +2023,1,1,1,New South Wales,150.976212,-34.103482 +2021,5,12,1,New South Wales,150.605572,-34.427742 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2021,6,2,1,New South Wales,150.604203,-34.437992 +2023,4,11,1,New South Wales,153.30083,-28.820727 +2021,10,19,1,New South Wales,152.08227,-32.776668 +2021,2,24,1,New South Wales,152.900022,-29.631247 +2021,5,20,1,New South Wales,152.32285,-28.59266 +2022,11,,1,New South Wales,153.599218,-28.719867 +2021,6,24,1,New South Wales,150.625154,-34.386652 +2024,7,24,1,New South Wales,152.929155,-31.456148 +2020,10,29,1,New South Wales,149.96897,-36.58553 +2021,6,10,1,New South Wales,150.602142,-34.451466 +2020,2,16,1,New South Wales,151.66621,-30.50157 +2020,10,6,1,New South Wales,153.077879,-28.594978 +2021,4,21,1,New South Wales,153.53868,-28.58252 +2023,10,27,1,New South Wales,152.749732,-31.432993 +2023,6,29,1,New South Wales,152.934864,-30.381692 +2023,11,24,1,New South Wales,151.950092,-32.03086 +2021,5,31,1,New South Wales,150.639858,-34.40019 +2021,8,11,1,New South Wales,150.603619,-34.426063 +2021,9,16,1,New South Wales,150.200473,-29.354393 +2021,6,11,1,New South Wales,150.522061,-34.465951 +2020,1,15,1,New South Wales,152.792449,-30.218407 +2024,5,15,1,New South Wales,152.180054,-31.958599 +2021,11,2,1,New South Wales,153.074068,-28.555716 +2021,10,25,1,New South Wales,149.282657,-36.188545 +2021,4,14,1,New South Wales,150.633422,-34.392339 +2020,1,1,1,New South Wales,153.104272,-29.480051 +2020,5,22,1,New South Wales,152.870041,-29.679147 +2022,1,10,1,New South Wales,152.925868,-31.453019 +2020,12,24,1,New South Wales,152.142571,-32.718621 +2021,10,26,1,New South Wales,152.911295,-31.430412 +2021,1,24,1,New South Wales,153.103811,-29.48558 +2020,11,14,1,New South Wales,150.004563,-36.508695 +2020,10,18,1,New South Wales,149.887989,-36.587028 +2022,1,24,1,New South Wales,153.103935,-29.485361 +2020,11,2,1,New South Wales,153.306627,-28.837908 +2020,9,20,1,New South Wales,153.103747,-29.485576 +2021,9,11,1,New South Wales,150.518391,-34.447648 +2021,5,26,1,New South Wales,150.63907,-34.491601 +2023,6,16,1,New South Wales,152.902536,-31.257732 +2023,6,9,1,New South Wales,150.706837,-34.257052 +2021,1,5,1,New South Wales,152.926952,-31.454658 +2021,3,6,1,New South Wales,150.523786,-34.458792 +2022,11,30,1,New South Wales,152.769456,-30.916275 +2021,8,25,1,New South Wales,150.45143,-34.46226 +2022,11,22,1,New South Wales,152.921522,-31.472926 +2021,5,23,1,New South Wales,150.635846,-34.392783 +2021,6,30,1,New South Wales,150.627324,-34.42034 +2023,5,24,1,New South Wales,151.789011,-32.654338 +2023,9,29,1,New South Wales,153.218171,-28.863704 +2021,9,4,1,New South Wales,153.48834,-28.238862 +2021,5,1,1,New South Wales,150.618085,-34.429636 +2023,8,22,1,New South Wales,153.10814,-29.490283 +2020,10,15,1,New South Wales,149.887989,-36.587028 +2021,9,17,1,New South Wales,153.10446,-29.477539 +2021,10,4,1,New South Wales,150.668216,-33.555824 +2023,9,21,1,New South Wales,152.609263,-30.344469 +2020,11,23,1,New South Wales,153.589469,-28.832918 +2021,4,13,1,New South Wales,150.516645,-34.448181 +2022,8,31,1,New South Wales,153.104085,-29.483741 +2023,3,23,1,New South Wales,153.302196,-28.818587 +2020,10,13,1,New South Wales,150.783507,-34.195909 +2023,7,4,1,New South Wales,150.785547,-33.715746 +2021,1,15,1,New South Wales,150.115909,-33.753483 +2020,9,11,1,New South Wales,152.914151,-31.466412 +2021,4,16,1,New South Wales,150.844864,-29.834314 +2021,11,29,1,New South Wales,153.312778,-28.850517 +2021,5,18,1,New South Wales,150.52391,-34.463798 +2022,11,28,1,New South Wales,152.769456,-30.916275 +2020,10,1,1,New South Wales,152.735456,-31.344735 +2022,1,11,1,New South Wales,152.063418,-32.70614 +2021,5,10,1,New South Wales,150.51759,-34.453014 +2021,5,18,1,New South Wales,150.63307,-34.419496 +2022,11,19,1,New South Wales,152.769456,-30.916275 +2021,3,22,1,New South Wales,150.610127,-34.430166 +2021,6,24,1,New South Wales,150.514308,-34.446592 +2021,7,28,1,New South Wales,150.597882,-34.425788 +2021,6,23,1,New South Wales,150.519687,-34.463036 +2020,11,14,1,New South Wales,153.091741,-29.487882 +2021,4,29,1,New South Wales,150.624471,-34.388136 +2024,1,3,1,New South Wales,153.068091,-30.889482 +2021,8,19,1,New South Wales,150.513075,-34.447098 +2022,12,1,1,New South Wales,151.04505,-33.194327 +2020,9,22,1,New South Wales,152.900217,-31.443763 +2023,3,3,1,New South Wales,152.925787,-31.447572 +2024,4,28,1,New South Wales,152.071733,-32.707087 +2021,7,3,1,New South Wales,150.525436,-34.464821 +2020,3,23,1,New South Wales,150.103604,-33.780771 +2023,10,5,1,New South Wales,150.758944,-34.150024 +2021,6,17,1,New South Wales,150.519106,-34.459869 +2024,1,28,1,New South Wales,150.704764,-33.479658 +2021,10,6,1,New South Wales,153.294852,-28.875094 +2020,8,22,1,New South Wales,150.842133,-34.070234 +2023,12,1,1,New South Wales,152.857805,-30.313905 +2021,5,25,1,New South Wales,150.603167,-34.435015 +2021,2,18,1,New South Wales,153.555115,-28.32982 +2020,6,17,1,New South Wales,149.972808,-36.432232 +2020,1,20,1,New South Wales,153.095233,-29.489685 +2021,5,7,1,New South Wales,150.609221,-34.420727 +2022,8,4,1,New South Wales,153.2817,-28.94339 +2021,6,18,1,New South Wales,150.522268,-34.451594 +2021,5,15,1,New South Wales,150.640382,-34.494096 +2022,5,11,1,New South Wales,152.062152,-32.711264 +2023,9,29,1,New South Wales,152.030988,-32.732986 +2021,8,18,1,New South Wales,150.643662,-34.399876 +2022,10,12,1,New South Wales,152.194716,-32.176503 +2021,6,14,1,New South Wales,150.61188,-34.433211 +2021,4,28,1,New South Wales,150.619243,-34.400701 +2023,9,7,1,New South Wales,152.787165,-31.630112 +2021,7,18,1,New South Wales,150.627918,-34.420902 +2021,3,24,1,New South Wales,150.516788,-34.446281 +2021,4,11,1,New South Wales,150.633237,-34.489549 +2021,7,5,1,New South Wales,150.630741,-34.389844 +2021,7,13,1,New South Wales,152.92876,-29.72653 +2021,5,13,1,New South Wales,150.522364,-34.465272 +2021,9,12,1,New South Wales,153.333795,-28.818515 +2021,11,13,1,New South Wales,150.808987,-34.208693 +2020,6,6,1,New South Wales,152.34022,-31.980755 +2021,5,23,1,New South Wales,150.618,-34.449099 +2021,6,4,1,New South Wales,150.615835,-34.436462 +2022,10,3,1,New South Wales,152.832,-31.26349 +2024,4,9,1,New South Wales,150.006047,-36.148614 +2020,10,13,1,New South Wales,150.808987,-34.208693 +2021,12,12,1,New South Wales,152.100351,-32.734692 +2021,6,8,1,New South Wales,150.641555,-34.395535 +2022,6,6,1,New South Wales,153.277461,-28.67595 +2021,6,3,1,New South Wales,150.636953,-34.488278 +2021,9,8,1,New South Wales,150.520933,-34.465072 +2021,5,30,1,New South Wales,150.615831,-34.438499 +2021,4,10,1,New South Wales,150.633991,-34.489835 +2023,5,26,1,New South Wales,151.994379,-32.732002 +2022,6,24,1,New South Wales,152.565248,-28.330093 +2021,5,13,1,New South Wales,150.616999,-34.43378 +2020,11,8,1,New South Wales,153.431324,-29.016415 +2020,2,22,1,New South Wales,152.083425,-32.735591 +2023,8,20,1,New South Wales,150.785095,-33.717469 +2021,5,10,1,New South Wales,150.63925,-34.491775 +2023,5,23,1,New South Wales,153.4962,-28.693308 +2023,4,2,1,New South Wales,153.086374,-30.921786 +2021,11,23,1,New South Wales,153.103784,-29.485524 +2023,2,24,1,New South Wales,153.36858,-28.8002 +2020,3,17,1,New South Wales,153.093839,-29.488623 +2023,8,9,1,New South Wales,153.104305,-29.477763 +2021,11,16,1,New South Wales,152.923461,-31.478974 +2020,2,27,1,New South Wales,150.809099,-34.099907 +2020,10,22,1,New South Wales,153.312357,-28.815323 +2021,6,27,1,New South Wales,150.60248,-34.434695 +2022,12,16,1,New South Wales,152.865058,-31.284534 +2021,6,28,1,New South Wales,150.512985,-34.447169 +2022,9,14,1,New South Wales,153.101714,-29.489391 +2021,4,23,1,New South Wales,150.630055,-34.388343 +2020,3,23,1,New South Wales,152.057723,-32.736906 +2023,10,28,1,New South Wales,153.095893,-29.484614 +2021,5,15,1,New South Wales,150.628757,-34.389229 +2023,5,29,1,New South Wales,153.005012,-28.627092 +2023,5,8,1,New South Wales,150.732467,-33.39893 +2020,10,29,1,New South Wales,149.955017,-36.576791 +2021,8,3,1,New South Wales,151.798193,-32.524161 +2021,9,24,1,New South Wales,153.077049,-29.450991 +2022,8,30,1,New South Wales,149.324809,-36.294327 +2021,4,19,1,New South Wales,150.630841,-34.39402 +2023,2,21,1,New South Wales,152.9258,-31.447637 +2021,6,8,1,New South Wales,150.641479,-34.395515 +2023,7,17,1,New South Wales,153.531713,-28.315525 +2022,11,4,1,New South Wales,153.22599,-28.887585 +2021,5,26,1,New South Wales,150.602691,-34.434916 +2022,12,9,1,New South Wales,152.064574,-32.709268 +2023,10,5,1,New South Wales,152.889761,-30.468293 +2022,5,26,1,New South Wales,152.639906,-31.866824 +2022,4,2,1,New South Wales,153.103956,-29.478716 +2021,7,20,1,New South Wales,150.598525,-34.419291 +2022,7,28,1,New South Wales,153.485179,-28.681463 +2023,11,14,1,New South Wales,150.786044,-33.713315 +2021,9,9,1,New South Wales,153.07341,-30.3673 +2020,8,1,1,New South Wales,152.260867,-31.987576 +2024,7,22,1,New South Wales,152.570857,-31.621151 +2022,10,14,1,New South Wales,152.070546,-32.713375 +2021,7,19,1,New South Wales,150.516324,-34.448336 +2021,5,25,1,New South Wales,150.639209,-34.392685 +2022,11,25,1,New South Wales,152.770676,-30.853416 +2020,5,,1,New South Wales,152.006573,-32.727459 +2022,11,13,1,New South Wales,152.925119,-31.454017 +2020,5,20,1,New South Wales,152.831332,-31.071286 +2020,7,17,1,New South Wales,152.910301,-31.453481 +2020,10,29,1,New South Wales,149.984095,-36.575978 +2020,4,15,1,New South Wales,151.90159,-32.481601 +2021,7,18,1,New South Wales,150.51515,-34.442804 +2021,4,16,1,New South Wales,150.616304,-34.436787 +2023,11,6,1,New South Wales,150.78579,-33.705914 +2020,5,7,1,New South Wales,152.011198,-32.315308 +2023,10,4,1,New South Wales,152.405062,-31.908074 +2021,6,15,1,New South Wales,150.515721,-34.446674 +2022,5,25,1,New South Wales,153.104155,-29.478893 +2022,6,21,1,New South Wales,152.685311,-28.395477 +2021,4,25,1,New South Wales,150.604369,-34.424923 +2022,4,21,1,New South Wales,153.101574,-29.48989 +2021,6,4,1,New South Wales,150.630388,-34.420878 +2023,4,11,1,New South Wales,152.887374,-31.479734 +2021,5,25,1,New South Wales,150.639266,-34.392614 +2021,4,15,1,New South Wales,153.077049,-29.450991 +2020,1,4,1,New South Wales,153.400824,-28.255296 +2021,4,2,1,New South Wales,153.355949,-28.661428 +2021,2,28,1,New South Wales,150.609859,-34.419712 +2021,6,22,1,New South Wales,150.627453,-34.421163 +2023,11,7,1,New South Wales,150.784628,-33.713381 +2021,5,29,1,New South Wales,150.602642,-34.424826 +2021,7,11,1,New South Wales,150.513013,-34.447332 +2020,11,30,1,New South Wales,153.367822,-28.866277 +2021,6,10,1,New South Wales,150.525386,-34.45841 +2021,5,20,1,New South Wales,150.615352,-34.431251 +2021,6,21,1,New South Wales,150.519626,-34.452596 +2020,1,29,1,New South Wales,153.034208,-30.354527 +2023,2,13,1,New South Wales,153.43553,-28.939407 +2021,5,16,1,New South Wales,150.604291,-34.437949 +2023,10,28,1,New South Wales,150.785634,-33.709283 +2022,6,2,1,New South Wales,152.852497,-31.550641 +2021,1,10,1,New South Wales,153.077049,-29.450991 +2020,11,3,1,New South Wales,152.824062,-29.505429 +2021,6,12,1,New South Wales,150.613482,-34.431953 +2021,3,15,1,New South Wales,150.532893,-34.482164 +2022,8,25,1,New South Wales,152.031075,-32.737141 +2022,8,17,1,New South Wales,152.809611,-28.47123 +2023,7,2,1,New South Wales,150.808205,-34.098195 +2020,2,2,1,New South Wales,152.40417,-31.94582 +2021,6,21,1,New South Wales,150.627993,-34.42093 +2022,9,8,1,New South Wales,152.790182,-31.128698 +2020,10,17,1,New South Wales,150.791046,-34.139845 +2021,5,17,1,New South Wales,150.632829,-34.419582 +2020,1,18,1,New South Wales,153.103956,-29.489535 +2024,9,4,1,New South Wales,152.270273,-31.867951 +2021,6,26,1,New South Wales,150.59711,-34.41701 +2022,5,1,1,New South Wales,153.110554,-29.490058 +2022,2,11,1,New South Wales,151.101055,-29.767673 +2021,4,20,1,New South Wales,150.63895,-34.418925 +2021,6,2,1,New South Wales,150.625431,-34.389939 +2020,9,15,1,New South Wales,153.003971,-29.18501 +2021,5,24,1,New South Wales,150.516051,-34.450215 +2022,7,26,1,New South Wales,153.322407,-28.886135 +2023,,,1,New South Wales,153.603032,-28.713649 +2022,9,14,1,New South Wales,153.103774,-29.485496 +2021,6,25,1,New South Wales,150.624937,-34.385882 +2022,9,11,1,New South Wales,153.095931,-29.484567 +2024,7,15,1,New South Wales,153.395917,-29.047059 +2023,9,23,1,New South Wales,153.103881,-29.489587 +2022,1,17,1,New South Wales,153.077049,-29.450991 +2022,3,19,1,New South Wales,152.916499,-31.450527 +2023,6,29,1,New South Wales,152.195533,-32.21526 +2021,3,23,1,New South Wales,150.525494,-34.4599 +2021,5,15,1,New South Wales,150.637355,-34.423798 +2023,12,14,1,New South Wales,150.785478,-33.713476 +2022,12,19,1,New South Wales,153.103977,-29.478067 +2023,9,6,1,New South Wales,153.307108,-28.823097 +2023,1,10,1,New South Wales,152.063752,-32.706571 +2021,9,11,1,New South Wales,151.81336,-32.35301 +2021,5,14,1,New South Wales,150.633481,-34.417665 +2024,7,19,1,New South Wales,150.831497,-29.65128 +2023,3,8,1,New South Wales,153.472547,-28.557321 +2022,2,1,1,New South Wales,153.556977,-28.397252 +2021,1,28,1,New South Wales,153.427431,-28.66904 +2021,5,29,1,New South Wales,150.518664,-34.451647 +2024,4,16,1,New South Wales,153.071988,-30.88564 +2021,9,2,1,New South Wales,152.368307,-31.872617 +2023,8,5,1,New South Wales,150.783058,-33.718275 +2023,10,3,1,New South Wales,152.004999,-32.633078 +2020,9,3,1,New South Wales,153.004553,-29.182605 +2021,5,12,1,New South Wales,150.518691,-34.437134 +2021,7,11,1,New South Wales,150.520969,-34.464234 +2021,5,,1,New South Wales,150.65126,-33.52168 +2021,7,16,1,New South Wales,150.625142,-34.386715 +2022,7,11,1,New South Wales,153.108178,-29.490222 +2022,11,24,1,New South Wales,152.887929,-31.43899 +2021,8,4,1,New South Wales,150.520472,-34.436503 +2021,6,20,1,New South Wales,150.517152,-34.44097 +2020,5,7,1,New South Wales,150.05406,-34.89741 +2021,7,5,1,New South Wales,150.631742,-34.388277 +2021,5,28,1,New South Wales,150.527179,-34.469562 +2023,1,25,1,New South Wales,153.103731,-29.485697 +2021,9,8,1,New South Wales,150.896614,-33.999714 +2021,8,27,1,New South Wales,153.261976,-28.808246 +2021,4,10,1,New South Wales,150.518984,-34.443766 +2021,5,13,1,New South Wales,153.60144,-28.7273 +2021,4,24,1,New South Wales,150.615568,-34.435519 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2021,5,13,1,New South Wales,150.517461,-34.439353 +2022,10,8,1,New South Wales,149.541298,-33.570549 +2021,7,10,1,New South Wales,150.630949,-34.388252 +2022,12,13,1,New South Wales,152.842028,-31.441729 +2020,1,16,1,New South Wales,153.103822,-29.485594 +2020,7,17,1,New South Wales,153.282714,-28.824306 +2020,10,19,1,New South Wales,149.947183,-36.617465 +2020,9,19,1,New South Wales,150.12018,-31.10635 +2021,12,10,1,New South Wales,152.926819,-31.454803 +2021,6,13,1,New South Wales,150.521574,-34.465851 +2020,1,23,1,New South Wales,153.104289,-29.480061 +2023,1,22,1,New South Wales,153.095663,-29.490432 +2022,6,25,1,New South Wales,153.30336,-28.81546 +2022,8,21,1,New South Wales,153.322696,-28.836553 +2023,11,6,1,New South Wales,152.91316,-31.42999 +2022,8,16,1,New South Wales,153.271156,-28.458033 +2021,6,27,1,New South Wales,150.644407,-34.391929 +2021,10,4,1,New South Wales,153.310054,-28.827861 +2021,6,20,1,New South Wales,150.602812,-34.424577 +2021,2,10,1,New South Wales,153.293264,-28.864618 +2020,11,2,1,New South Wales,149.988655,-36.56931 +2022,1,28,1,New South Wales,153.580918,-28.866037 +2020,12,7,1,New South Wales,149.960189,-36.280531 +2024,2,22,1,New South Wales,150.782552,-33.719306 +2020,3,30,1,New South Wales,152.489058,-28.473692 +2024,4,19,1,New South Wales,152.749371,-31.559219 +2021,7,5,1,New South Wales,150.627319,-34.421305 +2021,7,16,1,New South Wales,150.625196,-34.386707 +2023,12,11,1,New South Wales,152.914196,-31.459867 +2021,3,23,1,New South Wales,153.397106,-29.013371 +2020,1,6,1,New South Wales,152.88495,-31.440252 +2024,6,29,1,New South Wales,152.884429,-31.436114 +2022,7,12,1,New South Wales,153.103897,-29.489596 +2023,4,9,1,New South Wales,152.868031,-31.474242 +2024,1,22,1,New South Wales,152.9086,-31.438625 +2021,8,17,1,New South Wales,152.641625,-29.605435 +2022,1,20,1,New South Wales,150.616988,-34.440316 +2021,4,23,1,New South Wales,150.605093,-34.433123 +2022,6,17,1,New South Wales,153.348122,-28.908299 +2021,9,7,1,New South Wales,150.521971,-34.490714 +2021,10,5,1,New South Wales,150.808987,-34.208693 +2021,1,13,1,New South Wales,152.924536,-31.463493 +2023,4,6,1,New South Wales,153.090894,-29.487425 +2021,7,14,1,New South Wales,151.58838,-32.875538 +2021,4,14,1,New South Wales,150.625463,-34.384972 +2024,7,16,1,New South Wales,151.196735,-33.087519 +2021,7,10,1,New South Wales,150.518144,-34.447147 +2021,6,2,1,New South Wales,150.604736,-34.427311 +2023,5,20,1,New South Wales,150.46736,-34.48964 +2023,11,3,1,New South Wales,151.66091,-32.660629 +2022,8,24,1,New South Wales,151.656185,-32.683168 +2023,5,11,1,New South Wales,151.718595,-30.570923 +2020,11,23,1,New South Wales,150.925808,-29.793058 +2020,10,29,1,New South Wales,149.943147,-36.549371 +2021,10,9,1,New South Wales,153.104514,-29.477366 +2021,11,23,1,New South Wales,153.614383,-28.662662 +2021,7,14,1,New South Wales,151.586978,-32.874627 +2021,4,24,1,New South Wales,150.610442,-34.419119 +2022,9,19,1,New South Wales,152.90993,-30.17285 +2021,8,13,1,New South Wales,152.374358,-31.915375 +2021,4,11,1,New South Wales,152.915878,-31.485404 +2021,5,30,1,New South Wales,150.52309,-34.464638 +2023,9,10,1,New South Wales,150.47216,-34.49208 +2020,10,12,1,New South Wales,149.959933,-36.657162 +2021,9,16,1,New South Wales,150.642701,-34.39461 +2020,8,16,1,New South Wales,152.7154,-30.4684 +2021,11,8,1,New South Wales,150.616196,-34.440616 +2020,1,16,1,New South Wales,152.863317,-31.143567 +2021,10,13,1,New South Wales,150.796414,-34.187079 +2020,10,23,1,New South Wales,152.915355,-31.484386 +2021,5,1,1,New South Wales,150.520186,-34.453554 +2021,12,23,1,New South Wales,152.914262,-31.479398 +2022,4,2,1,New South Wales,151.765357,-32.698016 +2021,6,11,1,New South Wales,150.525318,-34.458877 +2021,8,5,1,New South Wales,153.54948,-28.59176 +2021,4,23,1,New South Wales,150.638563,-34.423019 +2021,6,13,1,New South Wales,150.520633,-34.453869 +2023,12,2,1,New South Wales,150.784216,-33.717003 +2020,10,29,1,New South Wales,149.943147,-36.549371 +2021,7,13,1,New South Wales,153.07555,-28.558157 +2021,6,25,1,New South Wales,150.597962,-34.418054 +2023,5,31,1,New South Wales,150.79418,-34.23443 +2020,1,5,1,New South Wales,153.437475,-28.573115 +2020,11,2,1,New South Wales,153.307505,-28.850479 +2020,6,16,1,New South Wales,152.535936,-32.202337 +2021,9,4,1,New South Wales,150.535175,-34.497472 +2024,1,16,1,New South Wales,152.261989,-32.459181 +2020,8,17,1,New South Wales,153.064703,-28.535245 +2021,6,30,1,New South Wales,153.104063,-29.485109 +2020,11,9,1,New South Wales,150.808987,-34.208693 +2021,9,9,1,New South Wales,150.808987,-34.208693 +2021,4,21,1,New South Wales,150.610289,-34.419134 +2022,2,3,1,New South Wales,150.808987,-34.208693 +2020,10,20,1,New South Wales,149.919967,-36.589766 +2020,11,17,1,New South Wales,153.036423,-30.8961 +2021,3,8,1,New South Wales,150.602965,-34.437121 +2020,12,27,1,New South Wales,153.40067,-28.257744 +2022,12,4,1,New South Wales,150.799848,-34.11751 +2020,10,20,1,New South Wales,149.947316,-36.607854 +2020,9,7,1,New South Wales,149.453035,-33.791641 +2021,4,1,1,New South Wales,150.607577,-34.42193 +2020,1,30,1,New South Wales,153.298899,-28.8205 +2021,10,27,1,New South Wales,152.880655,-31.453171 +2024,3,15,1,New South Wales,151.784804,-32.653494 +2021,5,8,1,New South Wales,150.518313,-34.451388 +2020,11,29,1,New South Wales,149.959252,-36.447255 +2021,7,21,1,New South Wales,153.52954,-28.54593 +2020,11,11,1,New South Wales,152.075269,-32.722458 +2020,10,4,1,New South Wales,151.963543,-30.895436 +2023,8,15,1,New South Wales,152.923661,-31.445282 +2023,9,25,1,New South Wales,153.585588,-28.861642 +2020,10,12,1,New South Wales,150.940088,-33.953175 +2021,8,17,1,New South Wales,152.374278,-31.915995 +2023,1,2,1,New South Wales,150.815095,-34.085656 +2021,5,19,1,New South Wales,150.630325,-34.395335 +2021,9,17,1,New South Wales,150.520125,-34.449333 +2021,10,30,1,New South Wales,153.104138,-29.478674 +2021,9,4,1,New South Wales,152.979536,-28.622393 +2021,5,28,1,New South Wales,150.521589,-34.465716 +2020,7,23,1,New South Wales,153.1077,-29.489367 +2021,10,8,1,New South Wales,153.09253,-29.488424 +2024,1,14,1,New South Wales,151.005586,-34.047038 +2020,1,20,1,New South Wales,153.104272,-29.479963 +2023,11,21,1,New South Wales,152.92376,-31.44407 +2021,5,12,1,New South Wales,150.627793,-34.389868 +2020,4,1,1,New South Wales,150.062723,-33.775973 +2023,2,2,1,New South Wales,153.104557,-29.477329 +2020,7,5,1,New South Wales,153.103717,-29.485695 +2021,4,9,1,New South Wales,150.603776,-34.431231 +2023,7,13,1,New South Wales,152.782635,-31.631042 +2020,10,17,1,New South Wales,153.445719,-28.589459 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2022,9,29,1,New South Wales,152.90614,-30.23995 +2022,5,19,1,New South Wales,153.557536,-28.393661 +2021,5,24,1,New South Wales,150.527479,-34.469379 +2020,7,8,1,New South Wales,153.103849,-29.48552 +2023,2,15,1,New South Wales,152.381244,-31.911866 +2023,7,29,1,New South Wales,150.792628,-34.1399 +2021,2,13,1,New South Wales,149.556514,-33.552581 +2021,10,10,1,New South Wales,153.402173,-28.258555 +2021,5,15,1,New South Wales,150.600743,-34.42808 +2023,6,1,1,New South Wales,150.834868,-34.069512 +2023,1,3,1,New South Wales,152.041401,-32.734873 +2021,3,1,1,Queensland,151.995057,-26.274399 +2023,4,24,1,New South Wales,149.341408,-36.313453 +2023,10,5,1,New South Wales,150.919596,-33.969405 +2021,2,11,1,New South Wales,152.904688,-31.444457 +2021,5,2,1,New South Wales,150.611438,-34.41967 +2022,1,14,1,New South Wales,153.336244,-28.8161 +2022,8,30,1,New South Wales,149.318031,-36.298453 +2022,11,26,1,New South Wales,152.794945,-30.901933 +2022,2,13,1,New South Wales,152.905493,-31.436901 +2021,2,28,1,New South Wales,150.635985,-34.485528 +2021,4,9,1,New South Wales,150.603612,-34.430859 +2021,10,17,1,New South Wales,153.306193,-28.653247 +2022,9,4,1,New South Wales,150.04662,-31.0339 +2021,5,17,1,New South Wales,150.60664,-34.436859 +2023,8,24,1,New South Wales,153.075203,-30.298352 +2020,5,12,1,New South Wales,153.25918,-29.3406 +2021,4,27,1,New South Wales,150.610226,-34.419079 +2020,11,6,1,New South Wales,150.010074,-36.579686 +2021,6,29,1,New South Wales,150.627424,-34.42027 +2022,7,16,1,New South Wales,150.968497,-34.121054 +2021,9,28,1,New South Wales,150.513838,-34.445942 +2022,11,8,1,New South Wales,151.041211,-33.196786 +2020,10,18,1,New South Wales,149.947183,-36.617465 +2021,7,21,1,New South Wales,150.515537,-34.445147 +2020,6,17,1,New South Wales,149.972808,-36.432232 +2022,6,20,1,New South Wales,153.1038,-29.48558 +2022,9,30,1,New South Wales,152.90279,-30.24015 +2023,4,12,1,New South Wales,153.294456,-28.864649 +2021,5,7,1,New South Wales,150.627406,-34.390104 +2022,12,8,1,New South Wales,153.10077,-29.490147 +2023,10,10,1,New South Wales,150.783755,-33.718759 +2021,7,13,1,New South Wales,150.627195,-34.420671 +2022,12,20,1,New South Wales,153.545214,-28.598873 +2021,6,25,1,New South Wales,150.597077,-34.417054 +2020,10,14,1,New South Wales,149.919967,-36.589766 +2024,2,16,1,New South Wales,150.864107,-29.608734 +2021,2,19,1,New South Wales,150.059214,-33.774438 +2021,5,31,1,New South Wales,150.518238,-34.446563 +2021,6,20,1,New South Wales,150.619227,-34.436943 +2021,7,12,1,New South Wales,150.513029,-34.447161 +2022,11,28,1,New South Wales,152.788781,-30.895519 +2021,8,4,1,New South Wales,153.108124,-29.490245 +2020,10,31,1,New South Wales,149.92265,-36.572354 +2020,7,3,1,New South Wales,153.327762,-28.671784 +2022,10,31,1,New South Wales,152.498708,-31.928166 +2023,5,17,1,New South Wales,152.908216,-31.438716 +2022,7,31,1,New South Wales,152.786758,-31.145762 +2024,2,10,1,New South Wales,151.082425,-29.77223 +2021,10,5,1,New South Wales,152.072216,-32.711197 +2022,1,19,1,New South Wales,152.926984,-31.454913 +2021,6,17,1,New South Wales,150.659564,-34.455284 +2022,12,13,1,New South Wales,153.280413,-28.819052 +2020,10,25,1,New South Wales,153.439389,-28.572519 +2020,1,6,1,New South Wales,153.104144,-29.485197 +2021,6,22,1,New South Wales,150.602705,-34.439009 +2024,1,29,1,New South Wales,153.10976,-29.490194 +2021,6,30,1,New South Wales,153.073799,-30.367814 +2021,11,8,1,New South Wales,152.868104,-29.667396 +2022,8,7,1,New South Wales,150.808197,-34.098161 +2020,2,5,1,New South Wales,153.103886,-29.485346 +2021,5,19,1,New South Wales,150.63382,-34.418375 +2023,9,7,1,New South Wales,152.973345,-30.418271 +2022,6,25,1,New South Wales,152.159445,-32.711701 +2021,6,5,1,New South Wales,153.454341,-28.653446 +2021,7,12,1,New South Wales,150.642742,-34.395089 +2021,4,24,1,New South Wales,153.214137,-28.850161 +2021,5,11,1,New South Wales,150.625139,-34.399499 +2022,12,19,1,New South Wales,153.103822,-29.484702 +2021,8,6,1,New South Wales,150.629627,-34.388849 +2021,6,24,1,New South Wales,150.520389,-34.465809 +2021,2,28,1,New South Wales,150.516175,-34.459251 +2021,6,9,1,New South Wales,150.604168,-34.438064 +2021,5,4,1,New South Wales,150.604202,-34.438001 +2021,12,29,1,New South Wales,149.223474,-36.077344 +2021,6,27,1,New South Wales,150.513918,-34.447287 +2021,5,3,1,New South Wales,150.615811,-34.43501 +2023,11,10,1,New South Wales,152.40371,-31.928295 +2021,7,20,1,New South Wales,150.623291,-34.383326 +2021,1,20,1,New South Wales,153.103811,-29.485576 +2022,11,12,1,New South Wales,151.93656,-32.527568 +2022,1,2,1,New South Wales,152.915486,-31.445932 +2023,3,14,1,New South Wales,152.82712,-28.8433 +2020,3,29,1,New South Wales,150.094228,-33.775493 +2023,8,12,1,New South Wales,153.103859,-29.489545 +2020,7,5,1,New South Wales,153.311636,-28.820316 +2021,6,28,1,New South Wales,150.6433,-34.393395 +2020,12,11,1,New South Wales,152.899674,-29.630972 +2021,5,4,1,New South Wales,150.615839,-34.4363 +2020,10,29,1,New South Wales,150.842133,-34.070234 +2022,6,23,1,New South Wales,152.793878,-31.642109 +2021,2,8,1,New South Wales,152.34022,-31.980755 +2023,10,6,1,New South Wales,150.784543,-33.71717 +2022,8,2,1,New South Wales,150.793837,-34.137545 +2020,5,19,1,New South Wales,152.40941,-31.91019 +2023,6,2,1,New South Wales,150.358327,-34.412696 +2022,7,11,1,New South Wales,153.061285,-28.540438 +2021,7,27,1,New South Wales,150.179226,-33.313359 +2021,12,17,1,New South Wales,153.382207,-28.879979 +2021,5,31,1,New South Wales,150.523869,-34.463707 +2023,9,26,1,New South Wales,153.299324,-28.888717 +2021,4,6,1,New South Wales,150.531432,-34.460056 +2021,5,4,1,New South Wales,153.549607,-28.589179 +2021,4,26,1,New South Wales,150.635953,-34.419498 +2023,9,20,1,New South Wales,152.790423,-31.643706 +2020,10,12,1,New South Wales,149.887989,-36.587028 +2021,6,3,1,New South Wales,150.615158,-34.436557 +2021,1,5,1,New South Wales,153.550107,-28.55679 +2020,12,7,1,New South Wales,151.778494,-30.631123 +2021,5,4,1,New South Wales,150.522292,-34.453344 +2020,9,4,1,New South Wales,150.23546,-34.267639 +2022,1,7,1,New South Wales,153.315937,-28.826412 +2020,5,27,1,New South Wales,149.978709,-36.441024 +2024,1,16,1,New South Wales,153.109369,-29.490474 +2024,1,25,1,New South Wales,153.103505,-29.485473 +2021,5,19,1,New South Wales,150.640484,-34.493954 +2021,8,13,1,New South Wales,152.87324,-29.683515 +2024,6,16,1,New South Wales,152.06396,-32.706636 +2021,6,20,1,New South Wales,150.520327,-34.4657 +2023,1,19,1,New South Wales,152.106101,-32.728323 +2023,8,17,1,New South Wales,153.333311,-28.861328 +2021,4,24,1,New South Wales,150.605413,-34.423808 +2020,1,7,1,New South Wales,153.010167,-29.080778 +2024,2,22,1,New South Wales,153.108172,-29.490446 +2020,10,17,1,New South Wales,149.887989,-36.587028 +2020,2,9,1,New South Wales,153.09578,-30.15738 +2020,11,7,1,New South Wales,150.010074,-36.579686 +2022,8,17,1,New South Wales,152.630999,-30.53312 +2021,8,25,1,New South Wales,150.519959,-34.44649 +2021,6,18,1,New South Wales,153.11197,-30.31747 +2021,9,10,1,New South Wales,150.523495,-34.463853 +2023,11,14,1,New South Wales,152.868144,-31.465261 +2024,6,20,1,New South Wales,152.410062,-31.939208 +2021,5,30,1,New South Wales,150.615712,-34.438497 +2021,6,15,1,New South Wales,150.515381,-34.460353 +2024,8,12,1,New South Wales,152.298153,-32.203408 +2020,9,12,1,New South Wales,153.446234,-28.867527 +2021,5,25,1,New South Wales,150.603145,-34.435024 +2021,10,18,1,New South Wales,152.812651,-29.797394 +2021,5,21,1,New South Wales,150.617615,-34.448505 +2020,1,1,1,New South Wales,152.929032,-31.459609 +2022,9,28,1,New South Wales,153.281861,-28.872929 +2020,8,20,1,New South Wales,153.319097,-28.815739 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2021,9,18,1,New South Wales,150.514191,-34.446147 +2022,11,21,1,New South Wales,152.784667,-31.632463 +2021,6,17,1,New South Wales,150.521459,-34.465714 +2021,7,3,1,New South Wales,150.601359,-34.416786 +2020,11,27,1,New South Wales,149.965237,-36.459771 +2021,6,8,1,New South Wales,150.626067,-34.388987 +2022,8,21,1,New South Wales,151.823282,-32.583593 +2021,6,10,1,New South Wales,152.921143,-31.45536 +2023,12,13,1,New South Wales,152.92734,-31.457655 +2020,6,23,1,New South Wales,153.129423,-29.334619 +2023,9,9,1,New South Wales,153.162028,-28.559749 +2022,1,1,1,New South Wales,152.016744,-32.734454 +2023,11,6,1,New South Wales,150.785178,-33.714129 +2020,4,3,1,New South Wales,150.117869,-35.060622 +2021,2,20,1,New South Wales,152.17355,-32.72578 +2021,8,15,1,New South Wales,150.513232,-34.4462 +2022,9,1,1,New South Wales,151.566248,-30.372589 +2021,4,26,1,New South Wales,150.637374,-34.488016 +2022,2,11,1,New South Wales,151.10172,-29.767315 +2022,8,30,1,New South Wales,149.316289,-36.297742 +2022,8,9,1,New South Wales,150.51889,-34.444485 +2020,2,17,1,New South Wales,149.870381,-29.441584 +2024,3,1,1,New South Wales,146.835809,-34.879659 +2020,10,4,1,New South Wales,152.902432,-31.431231 +2022,8,30,1,New South Wales,149.323447,-36.298931 +2020,9,14,1,New South Wales,150.01549,-31.12735 +2023,7,27,1,New South Wales,153.315798,-28.850912 +2023,8,31,1,New South Wales,153.314983,-28.949201 +2024,4,9,1,New South Wales,152.913198,-31.476644 +2020,10,31,1,New South Wales,153.314983,-28.949201 +2020,11,2,1,New South Wales,152.798197,-31.141782 +2021,5,7,1,New South Wales,150.609192,-34.420609 +2021,9,10,1,New South Wales,150.524748,-34.489211 +2020,11,7,1,New South Wales,150.021287,-36.554124 +2020,10,23,1,New South Wales,152.650468,-31.436745 +2021,11,3,1,New South Wales,152.824267,-29.811407 +2024,1,26,1,New South Wales,152.930318,-31.45623 +2024,2,11,1,New South Wales,152.063508,-32.706257 +2022,7,8,1,New South Wales,153.071979,-30.885996 +2020,1,13,1,New South Wales,150.78748,-34.188031 +2023,8,23,1,New South Wales,152.20646,-32.22662 +2020,9,29,1,New South Wales,150.993522,-33.976184 +2021,5,12,1,New South Wales,150.637422,-34.423754 +2022,10,15,1,New South Wales,152.894957,-31.462332 +2020,10,23,1,New South Wales,149.947183,-36.617465 +2020,8,28,1,New South Wales,153.409093,-28.860794 +2021,12,16,1,New South Wales,152.915427,-31.445979 +2024,9,21,1,New South Wales,146.573313,-34.767365 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2020,2,28,1,New South Wales,152.909381,-31.441711 +2021,4,28,1,New South Wales,150.60474,-34.452707 +2021,5,2,1,New South Wales,150.609669,-34.436332 +2021,7,17,1,New South Wales,150.514789,-34.44652 +2020,6,17,1,New South Wales,149.972808,-36.432232 +2021,6,15,1,New South Wales,150.612141,-34.432053 +2021,4,4,1,New South Wales,150.607092,-34.437806 +2021,5,16,1,New South Wales,150.529756,-34.467829 +2021,6,8,1,New South Wales,150.630156,-34.42063 +2021,10,31,1,New South Wales,153.314983,-28.949201 +2023,9,8,1,New South Wales,153.032695,-30.380447 +2023,8,23,1,New South Wales,152.988024,-30.523033 +2021,8,21,1,New South Wales,153.307736,-28.891385 +2022,12,31,1,New South Wales,153.314983,-28.949201 +2021,4,25,1,New South Wales,150.608689,-34.453542 +2022,9,20,1,New South Wales,152.361435,-32.157945 +2021,5,19,1,New South Wales,150.516522,-34.450107 +2021,10,31,1,New South Wales,153.314983,-28.949201 +2021,5,4,1,New South Wales,150.602981,-34.427447 +2021,7,6,1,New South Wales,150.627365,-34.421198 +2021,6,19,1,New South Wales,150.622833,-34.384516 +2023,11,4,1,New South Wales,152.429199,-31.921829 +2021,8,29,1,New South Wales,150.51643,-34.438521 +2023,4,19,1,New South Wales,149.552328,-33.581979 +2020,7,29,1,New South Wales,152.93879,-29.728067 +2023,9,12,1,New South Wales,150.797333,-34.23148 +2022,10,25,1,New South Wales,152.828715,-31.650173 +2020,11,,1,New South Wales,152.21561,-32.415167 +2021,5,3,1,New South Wales,150.520726,-34.45333 +2020,10,17,1,New South Wales,149.947048,-36.640426 +2024,1,31,1,New South Wales,150.79015,-34.1925 +2021,7,2,1,New South Wales,150.513148,-34.447181 +2021,6,5,1,New South Wales,150.607163,-34.435688 +2021,10,9,1,New South Wales,153.10931,-29.490806 +2023,6,20,1,New South Wales,152.892054,-31.447443 +2020,10,23,1,New South Wales,149.988655,-36.56931 +2021,5,17,1,New South Wales,150.640684,-34.49421 +2021,9,29,1,New South Wales,153.516594,-28.686362 +2024,1,16,1,New South Wales,152.731612,-30.903477 +2021,6,27,1,New South Wales,150.627457,-34.420262 +2024,2,13,1,New South Wales,153.090835,-29.480084 +2021,9,28,1,New South Wales,153.244711,-28.878209 +2022,12,2,1,New South Wales,152.911165,-31.472917 +2022,4,30,1,New South Wales,152.081977,-32.736244 +2021,11,7,1,New South Wales,151.765357,-32.698016 +2022,6,20,1,New South Wales,150.994766,-34.052599 +2020,3,24,1,New South Wales,152.786218,-31.63008 +2023,,,1,New South Wales,152.822273,-29.166116 +2021,8,31,1,New South Wales,150.609073,-34.49498 +2021,5,30,1,New South Wales,150.631114,-34.387435 +2023,3,19,1,New South Wales,153.590547,-28.711776 +2021,7,3,1,New South Wales,150.51375,-34.446346 +2020,1,8,1,New South Wales,153.519374,-28.68721 +2020,9,18,1,New South Wales,152.138375,-30.083815 +2021,5,5,1,New South Wales,150.621991,-34.397752 +2022,1,31,1,New South Wales,153.316687,-28.94445 +2022,10,20,1,New South Wales,153.528655,-28.567538 +2022,8,1,1,New South Wales,150.79379,-34.144381 +2021,5,14,1,New South Wales,150.516011,-34.448988 +2022,1,27,1,New South Wales,152.088271,-32.731353 +2022,1,7,1,New South Wales,153.101354,-29.489648 +2024,6,11,1,New South Wales,153.399568,-29.03758 +2020,7,5,1,New South Wales,150.075187,-33.761197 +2022,3,1,1,New South Wales,153.319101,-28.886056 +2022,8,10,1,New South Wales,152.852271,-31.553047 +2021,9,1,1,New South Wales,153.336083,-28.816629 +2024,1,6,1,New South Wales,150.003869,-32.696024 +2021,5,25,1,New South Wales,150.617909,-34.435078 +2023,9,11,1,New South Wales,150.784864,-33.716463 +2022,1,17,1,New South Wales,151.765357,-32.698016 +2020,6,18,1,New South Wales,151.237953,-33.108598 +2024,1,23,1,New South Wales,152.460271,-32.039901 +2023,4,3,1,New South Wales,153.109331,-29.490423 +2023,11,23,1,New South Wales,152.903792,-31.484947 +2023,5,14,1,New South Wales,150.785278,-33.716967 +2023,1,17,1,New South Wales,153.221448,-28.827533 +2020,10,7,1,New South Wales,153.077049,-29.450991 +2021,6,30,1,New South Wales,150.522448,-34.465031 +2022,11,17,1,New South Wales,151.624706,-30.402213 +2020,10,21,1,New South Wales,153.104133,-29.480556 +2021,9,19,1,New South Wales,150.517285,-34.446382 +2022,1,6,1,New South Wales,150.617368,-34.438412 +2022,11,18,1,New South Wales,152.770676,-30.853416 +2020,9,25,1,New South Wales,153.074384,-30.363455 +2023,5,29,1,New South Wales,152.886066,-31.43944 +2022,11,11,1,New South Wales,150.824834,-34.144495 +2021,10,13,1,New South Wales,152.924941,-31.458917 +2021,7,15,1,New South Wales,150.981149,-34.08336 +2024,4,28,1,New South Wales,150.808226,-34.098297 +2023,9,7,1,New South Wales,152.973761,-30.418362 +2021,7,14,1,New South Wales,150.604504,-34.438106 +2021,12,14,1,New South Wales,153.104096,-29.483853 +2023,7,27,1,New South Wales,153.435457,-28.252442 +2021,3,6,1,New South Wales,150.603413,-34.436291 +2021,4,25,1,New South Wales,150.6376,-34.486587 +2020,1,20,1,New South Wales,153.47492,-28.308531 +2021,4,19,1,New South Wales,150.515798,-34.444801 +2020,11,2,1,New South Wales,149.988655,-36.56931 +2020,3,27,1,New South Wales,150.120491,-35.076943 +2022,8,13,1,New South Wales,150.13075,-34.701028 +2020,1,26,1,New South Wales,150.149708,-35.079356 +2021,8,31,1,New South Wales,153.104037,-29.485165 +2021,8,11,1,New South Wales,150.631484,-34.387812 +2021,9,10,1,New South Wales,150.608781,-34.452218 +2024,6,4,1,New South Wales,151.103579,-29.761499 +2024,9,4,1,New South Wales,152.173203,-31.569933 +2021,5,1,1,New South Wales,150.616358,-34.436039 +2022,12,27,1,New South Wales,151.026035,-34.036295 +2021,8,4,1,New South Wales,150.63269,-34.418317 +2024,9,5,1,New South Wales,152.458702,-32.240759 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2021,6,9,1,New South Wales,150.630054,-34.420754 +2020,11,2,1,New South Wales,153.092754,-28.603203 +2020,9,24,1,New South Wales,152.898086,-31.443017 +2022,10,6,1,New South Wales,153.276239,-28.857815 +2020,3,21,1,New South Wales,152.35899,-31.92441 +2021,5,8,1,New South Wales,150.616337,-34.436021 +2021,9,19,1,New South Wales,150.514431,-34.447234 +2021,8,2,1,New South Wales,150.633635,-34.418389 +2023,3,21,1,New South Wales,152.897967,-31.436069 +2024,3,30,1,New South Wales,151.059212,-29.739723 +2021,8,15,1,New South Wales,150.517301,-34.44146 +2022,8,8,1,New South Wales,150.52425,-34.433333 +2020,10,11,1,New South Wales,149.986384,-36.655712 +2022,11,5,1,New South Wales,153.077049,-29.450991 +2022,7,30,1,New South Wales,152.922927,-31.474359 +2021,5,15,1,New South Wales,150.62991,-34.395409 +2021,9,26,1,New South Wales,152.148222,-32.726424 +2024,2,22,1,New South Wales,153.109766,-29.490222 +2021,5,5,1,New South Wales,150.622024,-34.397744 +2022,6,9,1,New South Wales,153.103994,-29.485188 +2021,5,23,1,New South Wales,150.616116,-34.434241 +2021,5,29,1,New South Wales,150.630986,-34.386946 +2023,9,6,1,New South Wales,149.552114,-33.491195 +2023,8,18,1,New South Wales,153.547334,-28.676052 +2021,1,22,1,New South Wales,153.104138,-29.478786 +2020,12,9,1,New South Wales,153.300206,-28.886464 +2021,7,9,1,New South Wales,150.626918,-34.421631 +2021,6,3,1,New South Wales,150.615158,-34.436557 +2022,4,28,1,New South Wales,152.063862,-32.706755 +2020,3,4,1,New South Wales,153.38998,-28.873569 +2023,11,8,1,New South Wales,153.110125,-29.490278 +2022,12,29,1,New South Wales,152.361619,-31.872896 +2021,4,21,1,New South Wales,153.083203,-29.388848 +2021,2,7,1,New South Wales,152.076205,-32.735558 +2022,2,7,1,New South Wales,152.898943,-31.442636 +2021,8,23,1,New South Wales,150.607772,-34.441786 +2021,9,11,1,New South Wales,150.513928,-34.447296 +2021,9,4,1,New South Wales,150.514827,-34.44195 +2021,7,15,1,New South Wales,153.615374,-28.680668 +2020,11,27,1,New South Wales,153.327926,-28.817168 +2021,4,26,1,New South Wales,150.609531,-34.419002 +2021,10,11,1,New South Wales,152.07148,-32.709625 +2021,12,31,1,New South Wales,152.087289,-32.727893 +2021,7,9,1,New South Wales,153.46202,-28.650301 +2021,8,13,1,New South Wales,149.351709,-36.151906 +2021,6,8,1,New South Wales,150.615524,-34.432859 +2021,7,19,1,New South Wales,150.623745,-34.383415 +2021,10,20,1,New South Wales,152.89298,-31.43675 +2021,8,31,1,New South Wales,150.644348,-34.39676 +2021,11,16,1,New South Wales,152.825293,-29.810362 +2021,5,1,1,New South Wales,150.608935,-34.434975 +2021,11,28,1,New South Wales,153.374185,-29.029201 +2020,3,18,1,New South Wales,153.102508,-29.488088 +2023,12,5,1,New South Wales,150.78694,-33.706489 +2022,4,14,1,New South Wales,152.908215,-31.434745 +2024,2,27,1,New South Wales,153.056638,-30.337135 +2023,2,1,1,New South Wales,151.738846,-30.4842 +2021,9,17,1,New South Wales,152.479253,-32.408237 +2021,10,20,1,New South Wales,153.384261,-29.089379 +2024,9,21,1,New South Wales,146.573313,-34.767365 +2020,5,19,1,New South Wales,153.09216,-29.488209 +2022,6,8,1,New South Wales,153.599218,-28.719867 +2021,6,27,1,New South Wales,150.513962,-34.447261 +2024,1,25,1,New South Wales,152.464937,-31.939308 +2021,6,5,1,New South Wales,150.523991,-34.466225 +2021,7,20,1,New South Wales,150.59849,-34.419354 +2020,10,30,1,New South Wales,149.968131,-36.578885 +2021,8,2,1,New South Wales,150.574297,-34.509623 +2021,4,23,1,New South Wales,150.639331,-34.421637 +2021,5,2,1,New South Wales,150.61147,-34.41968 +2020,11,1,1,New South Wales,149.934245,-36.578531 +2023,9,13,1,New South Wales,150.785979,-33.70879 +2021,5,14,1,New South Wales,150.616595,-34.43498 +2023,2,13,1,New South Wales,152.763456,-31.50084 +2023,5,1,1,New South Wales,152.814633,-31.57399 +2021,5,7,1,New South Wales,150.639005,-34.491563 +2021,5,26,1,New South Wales,150.527177,-34.469652 +2022,11,22,1,New South Wales,152.764422,-30.891124 +2021,4,22,1,New South Wales,150.51843,-34.452211 +2023,12,4,1,New South Wales,152.26075,-32.20813 +2023,3,21,1,New South Wales,152.874926,-31.465013 +2020,4,9,1,New South Wales,152.929779,-29.726674 +2021,1,23,1,New South Wales,153.103795,-29.48558 +2021,6,3,1,New South Wales,150.624493,-34.388118 +2021,5,16,1,New South Wales,150.640524,-34.494099 +2023,10,31,1,New South Wales,150.784703,-33.70803 +2020,11,21,1,New South Wales,153.103779,-29.485688 +2022,1,20,1,New South Wales,152.074128,-32.744614 +2021,4,21,1,New South Wales,150.638874,-34.41932 +2021,11,6,1,New South Wales,153.000276,-30.408847 +2022,12,30,1,New South Wales,146.512624,-34.730723 +2021,5,14,1,New South Wales,150.520389,-34.454053 +2021,2,17,1,New South Wales,152.070398,-32.712818 +2020,9,29,1,New South Wales,152.88053,-31.42527 +2024,1,17,1,New South Wales,152.09174,-28.784917 +2021,7,7,1,New South Wales,150.521577,-34.465374 +2023,8,20,1,New South Wales,151.234,-33.118012 +2021,6,10,1,New South Wales,150.51798,-34.447559 +2021,5,25,1,New South Wales,150.522358,-34.465119 +2023,2,24,1,New South Wales,153.099793,-29.491571 +2021,4,11,1,New South Wales,150.523424,-34.45297 +2020,6,24,1,New South Wales,151.08566,-34.03444 +2021,8,20,1,New South Wales,150.522105,-34.464095 +2021,9,6,1,New South Wales,150.596834,-34.450226 +2022,1,21,1,New South Wales,152.924192,-31.449788 +2022,12,11,1,New South Wales,153.109396,-29.490507 +2021,7,31,1,New South Wales,151.813666,-32.353086 +2023,7,19,1,New South Wales,152.063687,-32.70658 +2021,8,30,1,New South Wales,150.51964,-34.437414 +2023,11,15,1,New South Wales,152.759506,-30.916546 +2021,9,3,1,New South Wales,153.359451,-28.796866 +2024,2,13,1,New South Wales,152.925818,-31.452744 +2021,4,29,1,New South Wales,150.603992,-34.427071 +2023,8,16,1,New South Wales,152.785443,-31.632199 +2020,10,27,1,New South Wales,149.984095,-36.575978 +2021,10,8,1,New South Wales,153.56086,-28.39009 +2020,10,28,1,New South Wales,150.842133,-34.070234 +2023,5,25,1,New South Wales,153.098667,-29.492599 +2021,9,27,1,New South Wales,152.374067,-31.915481 +2021,5,7,1,New South Wales,153.293195,-28.864615 +2023,11,4,1,New South Wales,152.404546,-31.920432 +2022,9,25,1,New South Wales,152.87324,-31.473236 +2023,1,8,1,New South Wales,151.716251,-32.80101 +2023,12,9,1,New South Wales,153.109304,-29.490862 +2021,5,9,1,New South Wales,150.632736,-34.418255 +2021,6,25,1,New South Wales,150.627197,-34.386719 +2022,7,25,1,New South Wales,152.811429,-31.131447 +2021,1,17,1,New South Wales,152.103693,-32.720642 +2021,5,25,1,New South Wales,150.617077,-34.434854 +2021,6,8,1,New South Wales,150.603229,-34.437018 +2021,5,11,1,New South Wales,150.521305,-34.466125 +2021,10,8,1,New South Wales,153.546218,-28.388732 +2023,2,16,1,New South Wales,151.59348,-32.91562 +2022,1,30,1,New South Wales,153.401543,-28.256448 +2020,11,14,1,New South Wales,153.01536,-28.63955 +2020,7,28,1,New South Wales,152.799906,-31.122511 +2021,6,21,1,New South Wales,150.62296,-34.383896 +2023,10,21,1,New South Wales,152.09174,-28.784917 +2022,3,21,1,New South Wales,152.897066,-31.475241 +2020,6,26,1,New South Wales,153.103755,-29.485573 +2022,12,26,1,New South Wales,151.02546,-34.03636 +2023,9,12,1,New South Wales,152.413034,-31.932608 +2023,6,7,1,New South Wales,152.921557,-31.46776 +2020,5,6,1,New South Wales,153.103752,-29.485559 +2023,8,25,1,New South Wales,152.215241,-32.249007 +2020,5,14,1,New South Wales,150.685257,-34.352833 +2021,6,15,1,New South Wales,150.524099,-34.452614 +2023,8,4,1,New South Wales,149.552708,-33.561748 +2024,1,12,1,New South Wales,153.098865,-29.490203 +2020,1,,1,New South Wales,153.085619,-30.345313 +2021,3,26,1,New South Wales,153.400728,-28.257919 +2020,12,29,1,New South Wales,153.104004,-29.485319 +2021,9,2,1,New South Wales,153.104364,-29.477646 +2023,9,14,1,New South Wales,152.036748,-32.070691 +2020,6,8,1,Victoria,145.060212,-38.418359 +2021,11,8,1,New South Wales,152.062586,-32.70933 +2021,3,1,1,New South Wales,150.528042,-34.458401 +2021,7,23,1,New South Wales,150.624285,-34.386266 +2021,5,25,1,New South Wales,150.639083,-34.392548 +2023,10,24,1,New South Wales,152.353555,-32.130634 +2021,4,29,1,New South Wales,150.606526,-34.454194 +2023,10,30,1,New South Wales,152.192249,-32.23198 +2021,7,31,1,New South Wales,150.597675,-34.426947 +2020,11,30,1,New South Wales,152.078206,-32.727783 +2020,9,18,1,New South Wales,150.13963,-31.17914 +2022,10,22,1,New South Wales,151.118573,-33.113355 +2022,8,7,1,New South Wales,152.905648,-31.436927 +2021,6,15,1,New South Wales,150.622982,-34.385781 +2021,9,4,1,New South Wales,152.788922,-30.117272 +2021,4,24,1,New South Wales,150.51465,-34.444615 +2021,5,30,1,New South Wales,150.61581,-34.438472 +2020,4,20,1,New South Wales,152.843329,-31.526054 +2021,4,2,1,New South Wales,153.073907,-28.501505 +2023,5,31,1,New South Wales,150.79308,-34.23001 +2020,1,27,1,New South Wales,150.953442,-34.106742 +2021,8,28,1,New South Wales,150.640165,-34.396977 +2021,6,2,1,New South Wales,150.519668,-34.45522 +2021,3,26,1,New South Wales,150.607664,-34.422319 +2021,5,9,1,New South Wales,150.604932,-34.426927 +2023,9,14,1,New South Wales,152.606727,-30.351545 +2020,10,28,1,New South Wales,149.955017,-36.576791 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2020,11,26,1,New South Wales,150.808987,-34.208693 +2021,3,8,1,New South Wales,150.51942,-34.446704 +2020,11,6,1,New South Wales,152.875823,-31.452844 +2021,5,17,1,New South Wales,150.606694,-34.436878 +2023,6,19,1,New South Wales,153.007455,-28.623698 +2022,12,24,1,New South Wales,153.069496,-30.887804 +2021,8,2,1,New South Wales,153.310848,-28.840678 +2020,10,8,1,New South Wales,153.349116,-28.86986 +2021,3,3,1,New South Wales,150.524281,-34.461552 +2021,4,20,1,New South Wales,150.631778,-34.394336 +2021,7,9,1,New South Wales,150.640666,-34.393868 +2022,2,14,1,New South Wales,150.982477,-34.130879 +2021,12,13,1,New South Wales,153.55232,-28.586547 +2021,8,16,1,New South Wales,150.89266,-33.991958 +2023,10,3,1,New South Wales,150.785758,-33.713901 +2021,5,28,1,New South Wales,150.63916,-34.491494 +2021,4,21,1,New South Wales,150.617064,-34.43379 +2021,4,14,1,New South Wales,150.515914,-34.448608 +2023,7,6,1,New South Wales,152.883809,-31.440852 +2021,7,12,1,New South Wales,150.642837,-34.395577 +2020,10,31,1,New South Wales,149.934245,-36.578531 +2021,10,28,1,New South Wales,153.00335,-28.618808 +2021,5,2,1,New South Wales,150.608883,-34.436434 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2023,10,14,1,New South Wales,152.111855,-32.738464 +2021,6,13,1,New South Wales,150.521347,-34.459194 +2021,5,7,1,New South Wales,150.516308,-34.447056 +2021,5,28,1,New South Wales,150.632291,-34.388107 +2021,8,21,1,New South Wales,153.400574,-28.257945 +2021,6,13,1,New South Wales,150.611712,-34.432974 +2021,6,6,1,New South Wales,150.518925,-34.447253 +2020,10,27,1,New South Wales,153.352906,-28.83385 +2021,6,15,1,New South Wales,150.611896,-34.431481 +2020,5,12,1,New South Wales,153.359607,-29.397543 +2021,7,5,1,New South Wales,150.979713,-34.085499 +2020,10,27,1,New South Wales,153.352906,-28.83385 +2022,10,30,1,New South Wales,152.906408,-31.434677 +2023,12,7,1,New South Wales,153.434144,-29.029015 +2021,9,9,1,New South Wales,152.220622,-31.626749 +2021,6,10,1,New South Wales,150.64627,-34.397266 +2021,7,26,1,New South Wales,150.521572,-34.465193 +2021,1,18,1,New South Wales,152.162175,-32.716103 +2023,3,25,1,New South Wales,152.466,-31.94 +2023,10,19,1,New South Wales,152.911128,-31.429766 +2021,12,20,1,New South Wales,153.523849,-28.7234 +2023,8,6,1,New South Wales,153.104868,-29.476838 +2021,4,19,1,New South Wales,153.482612,-28.870802 +2022,10,28,1,New South Wales,152.918974,-31.441764 +2023,9,12,1,New South Wales,152.620869,-30.332321 +2021,11,27,1,New South Wales,152.097539,-32.739862 +2021,5,17,1,New South Wales,150.524112,-34.462856 +2021,4,26,1,New South Wales,150.614455,-34.429502 +2023,7,2,1,New South Wales,150.785254,-33.717055 +2020,10,28,1,New South Wales,152.077019,-32.722735 +2023,12,15,1,New South Wales,152.638155,-30.446415 +2022,6,24,1,New South Wales,152.895047,-31.460468 +2023,2,10,1,New South Wales,153.408769,-29.003629 +2022,1,25,1,New South Wales,152.921754,-31.446742 +2020,4,3,1,New South Wales,150.91364,-34.0684 +2020,9,30,1,New South Wales,152.160538,-31.626402 +2020,12,17,1,New South Wales,152.415091,-31.933142 +2021,2,23,1,New South Wales,152.926354,-31.454584 +2022,8,10,1,New South Wales,152.930206,-31.451116 +2021,5,8,1,New South Wales,150.627787,-34.390084 +2021,5,27,1,New South Wales,150.599947,-34.425098 +2023,9,18,1,New South Wales,153.003535,-28.929895 +2020,12,13,1,New South Wales,152.927689,-31.465621 +2021,6,18,1,New South Wales,150.627941,-34.420848 +2020,6,6,1,New South Wales,152.878879,-31.456741 +2021,6,30,1,New South Wales,150.607851,-34.448936 +2023,12,24,1,New South Wales,150.784442,-33.718187 +2021,2,28,1,New South Wales,150.524683,-34.46119 +2022,11,4,1,New South Wales,153.490226,-28.679923 +2021,2,11,1,New South Wales,153.561346,-28.389209 +2020,12,2,1,New South Wales,153.319544,-28.914105 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2020,10,30,1,New South Wales,152.644655,-31.505865 +2021,5,24,1,New South Wales,150.517336,-34.452035 +2021,12,30,1,New South Wales,150.618351,-34.440198 +2021,5,14,1,New South Wales,150.60259,-34.436545 +2024,7,10,1,New South Wales,152.406411,-31.909761 +2021,9,20,1,New South Wales,150.524998,-34.463811 +2021,6,23,1,New South Wales,150.60434,-34.438897 +2021,7,13,1,New South Wales,150.513795,-34.446284 +2021,7,21,1,New South Wales,152.363201,-32.07347 +2023,7,18,1,New South Wales,153.104181,-29.483745 +2020,9,5,1,New South Wales,152.16856,-32.748567 +2020,11,26,1,New South Wales,149.917922,-36.474664 +2020,12,10,1,New South Wales,153.320392,-28.82415 +2020,11,19,1,New South Wales,153.381937,-28.872186 +2023,9,29,1,New South Wales,150.786992,-33.708357 +2020,4,20,1,New South Wales,152.834299,-31.533974 +2021,4,14,1,New South Wales,150.51997,-34.453107 +2022,3,25,1,New South Wales,153.324953,-28.830313 +2020,6,19,1,New South Wales,153.45439,-28.65348 +2023,11,1,1,New South Wales,152.19096,-32.219628 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2021,5,25,1,New South Wales,150.514934,-34.443115 +2021,5,12,1,New South Wales,150.523866,-34.467503 +2020,11,3,1,New South Wales,149.968131,-36.578885 +2021,8,8,1,New South Wales,150.517012,-34.435783 +2020,10,21,1,New South Wales,149.947183,-36.617465 +2020,1,16,1,New South Wales,152.748256,-31.235504 +2022,12,14,1,New South Wales,151.707228,-32.689634 +2020,9,28,1,New South Wales,153.102561,-29.4887 +2021,5,23,1,New South Wales,150.522236,-34.464837 +2024,1,22,1,New South Wales,153.07377,-30.880745 +2020,10,28,1,New South Wales,149.984095,-36.575978 +2021,2,22,1,New South Wales,150.517498,-34.446918 +2022,2,5,1,New South Wales,153.109251,-29.490778 +2020,11,14,1,New South Wales,150.886337,-34.005448 +2020,5,28,1,New South Wales,149.361307,-36.020013 +2020,8,16,1,New South Wales,152.986544,-29.031264 +2021,9,4,1,New South Wales,153.541106,-28.33583 +2021,4,17,1,New South Wales,150.630138,-34.394268 +2021,4,21,1,New South Wales,150.636366,-34.485535 +2022,10,4,1,New South Wales,150.74776,-34.339191 +2021,1,12,1,New South Wales,153.103618,-29.48848 +2021,5,11,1,New South Wales,150.516271,-34.469963 +2021,8,6,1,New South Wales,150.522569,-34.463852 +2022,12,3,1,New South Wales,153.157975,-28.92735 +2021,11,26,1,New South Wales,153.395298,-28.960004 +2020,9,10,1,New South Wales,153.523303,-28.665755 +2021,8,11,1,New South Wales,153.104155,-29.47887 +2022,12,6,1,New South Wales,152.897352,-31.474884 +2023,8,7,1,New South Wales,150.785921,-33.703739 +2020,12,8,1,New South Wales,153.197758,-28.843864 +2022,5,17,1,New South Wales,152.157972,-30.091144 +2021,10,2,1,New South Wales,153.103779,-29.485585 +2023,10,7,1,New South Wales,153.10814,-29.490269 +2021,5,6,1,New South Wales,150.637454,-34.423782 +2020,2,6,1,New South Wales,153.291283,-28.825577 +2021,9,13,1,New South Wales,150.610051,-34.455768 +2020,11,4,1,New South Wales,153.103817,-29.485576 +2024,2,11,1,New South Wales,152.542492,-32.052253 +2021,6,30,1,New South Wales,150.644423,-34.393706 +2021,4,10,1,New South Wales,150.532504,-34.481705 +2020,11,4,1,New South Wales,150.586628,-33.464338 +2020,8,28,1,New South Wales,152.883013,-31.426555 +2022,2,11,1,New South Wales,153.297006,-28.847118 +2021,4,23,1,New South Wales,150.605672,-34.423497 +2020,12,19,1,New South Wales,152.899325,-29.631042 +2022,10,7,1,New South Wales,152.104403,-32.726436 +2020,10,30,1,New South Wales,149.968131,-36.578885 +2021,11,17,1,New South Wales,152.916594,-31.475879 +2022,2,21,1,New South Wales,152.913153,-31.480571 +2020,1,11,1,New South Wales,153.281985,-28.820834 +2022,3,18,1,New South Wales,153.109417,-29.490516 +2021,6,4,1,New South Wales,150.607161,-34.435751 +2021,8,11,1,New South Wales,150.513885,-34.446926 +2020,4,15,1,New South Wales,153.315192,-28.94146 +2021,7,25,1,New South Wales,150.624554,-34.385956 +2021,6,7,1,New South Wales,150.528136,-34.465552 +2023,12,21,1,New South Wales,152.790998,-31.640024 +2020,8,17,1,New South Wales,150.334694,-34.384972 +2021,6,15,1,New South Wales,152.927173,-31.458044 +2020,10,18,1,New South Wales,149.947183,-36.617465 +2021,4,23,1,New South Wales,150.636126,-34.420322 +2023,10,12,1,New South Wales,152.064955,-32.710907 +2021,9,14,1,New South Wales,152.895785,-31.435164 +2023,8,17,1,New South Wales,152.883023,-31.449268 +2021,6,12,1,New South Wales,150.522204,-34.4659 +2020,1,17,1,,153.359444,-30.474167 +2022,4,22,1,New South Wales,152.903039,-31.467267 +2023,11,30,1,New South Wales,150.785493,-33.7064 +2022,10,18,1,New South Wales,150.821796,-34.104746 +2020,11,16,1,New South Wales,152.889058,-28.802661 +2022,9,11,1,New South Wales,153.1085,-29.489974 +2023,9,16,1,New South Wales,150.786036,-33.712308 +2023,10,21,1,New South Wales,150.783052,-33.71859 +2023,9,4,1,New South Wales,151.75204,-32.04245 +2021,6,20,1,New South Wales,150.602813,-34.424559 +2024,2,1,1,New South Wales,152.892872,-31.443977 +2021,6,8,1,New South Wales,150.518833,-34.447396 +2022,9,5,1,New South Wales,153.109739,-29.490175 +2021,6,15,1,New South Wales,150.520389,-34.465827 +2021,4,26,1,New South Wales,150.602279,-34.425739 +2020,11,6,1,New South Wales,151.65776,-32.7214 +2020,10,24,1,New South Wales,149.945227,-36.57753 +2021,6,17,1,New South Wales,150.604716,-34.427256 +2023,8,19,1,New South Wales,153.057976,-28.858365 +2020,1,6,1,New South Wales,150.732017,-32.917245 +2021,5,8,1,New South Wales,150.808597,-34.098229 +2023,9,15,1,New South Wales,151.575576,-32.895553 +2020,3,11,1,New South Wales,152.914435,-31.466553 +2021,3,10,1,New South Wales,150.522887,-34.450913 +2021,5,4,1,New South Wales,150.608216,-34.456769 +2021,3,25,1,New South Wales,153.338752,-28.817639 +2022,6,9,1,New South Wales,153.559233,-28.393883 +2021,6,20,1,New South Wales,150.657247,-34.454843 +2021,4,26,1,New South Wales,150.625295,-34.388233 +2021,7,15,1,New South Wales,150.627166,-34.420923 +2020,5,12,1,New South Wales,153.325824,-28.589252 +2021,7,6,1,New South Wales,152.627106,-30.523005 +2020,1,2,1,New South Wales,153.104154,-29.485258 +2021,4,29,1,New South Wales,150.606659,-34.454115 +2023,8,3,1,New South Wales,153.316639,-28.82576 +2023,11,2,1,New South Wales,152.189597,-32.229205 +2021,4,25,1,New South Wales,150.638304,-34.485942 +2020,10,11,1,New South Wales,149.955028,-36.650407 +2021,5,4,1,New South Wales,150.623017,-34.397258 +2022,2,1,1,New South Wales,153.108017,-29.490133 +2020,1,20,1,New South Wales,152.922659,-31.459878 +2022,2,10,1,New South Wales,152.9415,-31.187267 +2022,4,12,1,New South Wales,150.08624,-31.09179 +2022,10,27,1,New South Wales,151.0288,-34.0252 +2023,7,8,1,New South Wales,152.908157,-31.450157 +2024,1,29,1,New South Wales,153.017398,-30.37894 +2020,11,3,1,New South Wales,149.934245,-36.578531 +2021,12,21,1,New South Wales,152.37414,-31.915646 +2022,12,10,1,New South Wales,152.785164,-31.633853 +2021,5,25,1,New South Wales,150.631348,-34.420013 +2023,1,7,1,New South Wales,152.070793,-32.711914 +2020,9,12,1,New South Wales,152.917848,-31.473855 +2021,7,13,1,New South Wales,150.513097,-34.44672 +2023,8,10,1,New South Wales,153.132092,-29.186193 +2021,7,23,1,New South Wales,150.516994,-34.442995 +2021,5,30,1,New South Wales,150.516034,-34.448204 +2023,8,23,1,New South Wales,151.058724,-29.736748 +2023,6,23,1,New South Wales,152.073064,-32.724694 +2021,6,14,1,New South Wales,150.615489,-34.432173 +2021,5,30,1,New South Wales,150.603811,-34.42429 +2020,2,1,1,New South Wales,153.404602,-28.665447 +2021,6,19,1,New South Wales,150.513674,-34.446344 +2023,8,25,1,New South Wales,152.902664,-30.462176 +2020,5,13,1,New South Wales,149.374883,-36.013015 +2023,11,22,1,New South Wales,152.897381,-31.437304 +2020,3,1,1,New South Wales,152.915683,-31.484325 +2024,3,22,1,New South Wales,152.921463,-31.452173 +2023,8,14,1,New South Wales,153.09974,-29.491562 +2021,9,21,1,New South Wales,152.915434,-31.445884 +2021,11,12,1,New South Wales,153.218423,-28.886211 +2022,10,30,1,New South Wales,153.394044,-28.85535 +2021,6,28,1,New South Wales,150.604314,-34.432558 +2021,9,9,1,New South Wales,153.29793,-28.82455 +2022,12,11,1,New South Wales,150.880542,-34.012784 +2021,10,18,1,New South Wales,152.586083,-28.377985 +2021,5,30,1,New South Wales,150.640165,-34.396977 +2023,3,21,1,New South Wales,151.554208,-30.362675 +2022,6,22,1,New South Wales,150.961373,-34.099874 +2021,2,22,1,New South Wales,153.103897,-29.48538 +2021,4,2,1,New South Wales,150.516862,-34.446707 +2020,7,30,1,New South Wales,152.79736,-31.126116 +2022,8,7,1,New South Wales,150.795181,-34.229227 +2020,9,12,1,New South Wales,150.82369,-34.141271 +2020,7,8,1,New South Wales,153.552471,-28.586411 +2024,1,4,1,New South Wales,149.943519,-32.649391 +2021,5,20,1,New South Wales,152.238141,-29.84096 +2023,12,23,1,New South Wales,153.044099,-30.239463 +2021,6,19,1,New South Wales,150.658717,-34.455196 +2020,10,15,1,New South Wales,149.919967,-36.589766 +2021,9,25,1,New South Wales,152.263682,-32.038529 +2021,5,7,1,New South Wales,150.518246,-34.451441 +2021,4,22,1,New South Wales,150.609498,-34.419046 +2021,6,3,1,New South Wales,152.88223,-31.431013 +2021,2,28,1,New South Wales,150.603561,-34.434545 +2023,3,25,1,New South Wales,151.50578,-32.92601 +2022,11,15,1,New South Wales,152.089051,-32.737269 +2020,10,21,1,New South Wales,153.320987,-28.834228 +2021,7,4,1,New South Wales,150.628359,-34.391033 +2021,5,8,1,New South Wales,150.639101,-34.491628 +2022,6,18,1,New South Wales,152.907014,-31.444243 +2021,4,19,1,New South Wales,153.476288,-28.871545 +2021,8,16,1,New South Wales,150.51437,-34.445989 +2022,12,30,1,New South Wales,150.996146,-34.06116 +2020,11,26,1,New South Wales,149.917922,-36.474664 +2021,5,29,1,New South Wales,150.604879,-34.437934 +2020,9,3,1,New South Wales,153.004819,-29.181904 +2023,8,12,1,New South Wales,152.920647,-30.505562 +2020,4,7,1,New South Wales,153.104133,-29.485151 +2022,3,21,1,New South Wales,152.83467,-31.643094 +2021,7,3,1,New South Wales,150.602953,-34.417746 +2021,5,17,1,New South Wales,150.794959,-34.2262 +2021,5,29,1,New South Wales,150.521578,-34.465734 +2024,6,27,1,New South Wales,152.326902,-31.913066 +2021,12,23,1,New South Wales,150.840231,-34.060825 +2020,4,12,1,New South Wales,150.102132,-33.779934 +2021,4,22,1,New South Wales,150.6292,-34.395142 +2021,7,9,1,New South Wales,150.59906,-34.413108 +2022,10,5,1,New South Wales,152.926556,-31.454477 +2020,10,14,1,New South Wales,149.919967,-36.589766 +2021,4,21,1,New South Wales,150.060813,-33.76776 +2021,6,7,1,New South Wales,150.605685,-34.434857 +2021,11,20,1,New South Wales,150.070141,-33.78291 +2020,9,13,1,New South Wales,152.005398,-32.727385 +2021,6,9,1,New South Wales,153.10946,-29.490479 +2020,10,19,1,New South Wales,153.303174,-28.827996 +2020,8,11,1,New South Wales,150.925808,-29.793058 +2021,4,23,1,New South Wales,150.629926,-34.388287 +2023,6,19,1,New South Wales,152.78551,-31.632409 +2021,8,28,1,New South Wales,153.103935,-29.489554 +2021,8,15,1,New South Wales,150.632008,-34.418204 +2020,10,23,1,New South Wales,149.950035,-36.601015 +2021,5,10,1,New South Wales,150.521423,-34.466542 +2020,8,18,1,New South Wales,151.604065,-32.59069 +2023,3,7,1,New South Wales,153.394195,-29.019903 +2020,3,1,1,New South Wales,150.808623,-34.098285 +2024,1,14,1,New South Wales,152.075,-32.7213 +2021,4,25,1,New South Wales,152.00351,-32.728107 +2020,11,23,1,New South Wales,153.555833,-28.399167 +2021,12,12,1,New South Wales,152.077828,-32.723498 +2021,6,11,1,New South Wales,150.518216,-34.443245 +2023,5,20,1,New South Wales,153.108119,-29.49025 +2020,12,10,1,New South Wales,149.954748,-36.297726 +2021,5,27,1,New South Wales,150.64133,-34.393466 +2021,5,18,1,New South Wales,150.632772,-34.419671 +2021,5,31,1,New South Wales,150.63031,-34.420948 +2020,3,29,1,New South Wales,153.315556,-28.827302 +2021,4,29,1,New South Wales,150.616192,-34.436153 +2023,12,13,1,New South Wales,152.725343,-30.221882 +2020,11,27,1,New South Wales,153.104299,-29.479668 +2021,5,1,1,New South Wales,150.604765,-34.427068 +2020,2,,1,New South Wales,151.642997,-30.496853 +2023,12,20,1,New South Wales,152.905333,-31.43676 +2021,4,18,1,New South Wales,150.636586,-34.42098 +2022,11,4,1,New South Wales,153.402846,-28.963784 +2021,7,29,1,New South Wales,150.63138,-34.420013 +2021,11,14,1,New South Wales,153.168357,-29.442125 +2020,10,29,1,New South Wales,149.943147,-36.549371 +2021,11,16,1,New South Wales,152.825231,-29.810551 +2020,10,2,1,New South Wales,153.390708,-28.838558 +2023,8,23,1,New South Wales,152.20724,-32.24075 +2021,8,26,1,New South Wales,150.716117,-32.673499 +2021,5,1,1,New South Wales,150.604765,-34.427068 +2023,8,1,1,New South Wales,153.104696,-29.489634 +2023,7,12,1,New South Wales,152.939801,-30.39464 +2021,8,6,1,New South Wales,150.604384,-34.425546 +2022,6,29,1,New South Wales,149.33085,-33.689191 +2021,6,1,1,New South Wales,150.525173,-34.463788 +2021,7,5,1,New South Wales,150.979879,-34.085563 +2021,4,10,1,New South Wales,153.401177,-28.258293 +2021,5,15,1,New South Wales,150.602644,-34.436546 +2021,7,14,1,New South Wales,150.513859,-34.446339 +2023,8,11,1,New South Wales,153.017038,-30.367822 +2021,5,17,1,New South Wales,150.613591,-34.431955 +2023,11,3,1,New South Wales,152.189597,-32.229205 +2021,6,10,1,New South Wales,153.48499,-28.76005 +2021,8,18,1,New South Wales,150.513076,-34.447784 +2021,4,28,1,New South Wales,150.634594,-34.420265 +2021,6,25,1,New South Wales,150.709702,-33.436422 +2020,3,15,1,New South Wales,153.285111,-28.971807 +2023,11,29,1,New South Wales,150.06776,-34.71343 +2023,7,18,1,New South Wales,152.881152,-31.457636 +2022,7,5,1,New South Wales,152.909481,-31.475605 +2021,7,18,1,New South Wales,150.516175,-34.446756 +2022,1,30,1,New South Wales,150.994505,-34.071944 +2023,11,11,1,New South Wales,150.786047,-33.709604 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2021,8,11,1,New South Wales,150.522112,-34.466088 +2020,10,19,1,New South Wales,149.913134,-36.588285 +2020,9,14,1,New South Wales,153.269912,-28.61965 +2020,11,3,1,New South Wales,149.968131,-36.578885 +2022,11,10,1,New South Wales,153.228626,-28.890296 +2023,12,1,1,New South Wales,152.893449,-31.448924 +2021,10,9,1,New South Wales,150.974031,-34.124839 +2021,12,19,1,New South Wales,153.103377,-29.486384 +2022,6,28,1,New South Wales,152.883218,-31.458735 +2021,3,24,1,New South Wales,150.605043,-34.439055 +2020,1,31,1,New South Wales,150.79132,-34.141626 +2021,6,28,1,New South Wales,150.595746,-34.413746 +2021,7,8,1,New South Wales,150.627335,-34.421486 +2023,7,18,1,New South Wales,150.78477,-33.70803 +2023,8,15,1,New South Wales,152.077238,-32.722468 +2022,4,20,1,New South Wales,152.906807,-31.46699 +2021,7,6,1,New South Wales,150.604798,-34.419036 +2023,1,17,1,New South Wales,152.103041,-32.733067 +2023,4,14,1,New South Wales,149.325146,-36.330022 +2023,9,8,1,New South Wales,152.881609,-31.450401 +2020,10,30,1,New South Wales,149.968131,-36.578885 +2020,8,21,1,New South Wales,152.039641,-32.731988 +2023,9,25,1,New South Wales,153.399922,-28.960764 +2021,5,29,1,New South Wales,150.630863,-34.420607 +2021,12,3,1,New South Wales,153.55716,-28.644511 +2024,2,17,1,New South Wales,150.782684,-33.719356 +2021,4,9,1,New South Wales,152.901201,-31.442724 +2021,11,13,1,New South Wales,153.10401,-29.485324 +2021,5,5,1,New South Wales,150.60855,-34.456487 +2022,2,1,1,New South Wales,152.981376,-29.03783 +2021,7,16,1,New South Wales,150.627331,-34.421242 +2021,7,13,1,New South Wales,150.522343,-34.464163 +2022,2,10,1,New South Wales,152.359003,-31.924406 +2022,11,19,1,New South Wales,152.893081,-31.447644 +2021,5,13,1,New South Wales,150.516042,-34.449043 +2021,7,29,1,New South Wales,150.631327,-34.419967 +2023,8,3,1,New South Wales,153.443471,-28.232986 +2020,10,20,1,New South Wales,149.931009,-36.595007 +2021,4,22,1,New South Wales,150.637417,-34.422772 +2023,6,22,1,New South Wales,153.133761,-29.469548 +2021,8,16,1,New South Wales,150.88454,-33.991232 +2021,8,4,1,New South Wales,153.523472,-28.686915 +2023,10,19,1,New South Wales,152.606551,-30.16019 +2021,5,1,1,New South Wales,150.608946,-34.434957 +2021,5,10,1,New South Wales,150.639158,-34.491945 +2021,7,29,1,New South Wales,150.515683,-34.449784 +2021,5,20,1,New South Wales,150.51723,-34.451943 +2021,5,23,1,New South Wales,150.63925,-34.392785 +2021,4,13,1,New South Wales,150.630638,-34.477518 +2020,10,18,1,New South Wales,152.924669,-31.456123 +2020,4,14,1,New South Wales,151.863529,-32.484925 +2021,6,12,1,New South Wales,150.613602,-34.431965 +2022,8,30,1,New South Wales,149.324922,-36.294659 +2021,7,13,1,New South Wales,150.626576,-34.385589 +2021,4,30,1,New South Wales,150.637899,-34.489108 +2020,9,27,1,New South Wales,153.297989,-28.822938 +2020,11,10,1,New South Wales,152.928242,-31.474888 +2023,5,14,1,New South Wales,153.421332,-28.982666 +2021,7,20,1,New South Wales,150.623379,-34.383291 +2021,9,24,1,New South Wales,152.83195,-31.2816 +2021,4,10,1,New South Wales,150.523755,-34.452472 +2023,5,14,1,New South Wales,150.421155,-34.467647 +2024,2,26,1,New South Wales,151.083408,-29.759968 +2023,9,1,1,New South Wales,150.785132,-33.709463 +2023,6,13,1,New South Wales,153.108017,-29.490404 +2021,5,8,1,New South Wales,150.637268,-34.423824 +2021,7,5,1,New South Wales,150.513111,-34.445873 +2024,7,26,1,New South Wales,152.921682,-30.50591 +2024,1,9,1,New South Wales,152.913531,-31.478508 +2020,4,1,1,New South Wales,153.412883,-28.228302 +2023,6,24,1,New South Wales,153.07175,-30.884921 +2020,5,13,1,New South Wales,150.062181,-33.76782 +2021,4,15,1,New South Wales,150.60989,-34.451879 +2023,10,24,1,New South Wales,152.192089,-32.216754 +2021,5,15,1,New South Wales,150.632613,-34.418342 +2023,11,14,1,New South Wales,152.699582,-30.290202 +2020,11,12,1,New South Wales,153.169459,-28.727142 +2020,12,15,1,New South Wales,153.104235,-29.478786 +2021,9,17,1,New South Wales,153.09592,-29.484553 +2021,5,7,1,New South Wales,150.627439,-34.390078 +2021,9,27,1,New South Wales,153.317376,-28.82558 +2024,2,10,1,New South Wales,153.093131,-29.485762 +2021,7,20,1,New South Wales,150.522306,-34.46428 +2021,4,21,1,New South Wales,150.607623,-34.433281 +2020,11,23,1,New South Wales,153.589469,-28.832918 +2020,11,12,1,New South Wales,150.016461,-36.575848 +2020,7,19,1,New South Wales,152.944433,-29.346563 +2021,6,22,1,New South Wales,150.520404,-34.465665 +2021,6,,1,New South Wales,153.612304,-28.703163 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2021,6,1,1,New South Wales,150.638249,-34.490972 +2020,6,21,1,New South Wales,153.103822,-29.485545 +2024,1,15,1,New South Wales,152.564105,-31.946291 +2020,8,27,1,New South Wales,153.554216,-28.41521 +2021,7,27,1,New South Wales,150.180204,-33.309974 +2020,11,28,1,New South Wales,149.980514,-36.435679 +2020,10,23,1,New South Wales,149.931009,-36.595007 +2023,9,12,1,New South Wales,152.812179,-31.654857 +2020,11,29,1,New South Wales,149.980514,-36.435679 +2021,8,10,1,New South Wales,150.632018,-34.418232 +2022,7,10,1,New South Wales,153.104417,-29.482961 +2022,11,29,1,New South Wales,152.754102,-30.882465 +2022,11,29,1,New South Wales,152.759299,-30.84178 +2021,3,31,1,New South Wales,153.314983,-28.949201 +2022,2,28,1,New South Wales,153.269325,-28.629822 +2021,12,17,1,New South Wales,153.270371,-28.88859 +2020,9,5,1,New South Wales,153.423585,-28.727662 +2021,10,6,1,New South Wales,150.790596,-34.188134 +2021,5,6,1,New South Wales,152.924148,-31.457397 +2022,10,7,1,New South Wales,153.564733,-28.386918 +2021,6,4,1,New South Wales,150.60767,-34.436591 +2023,10,21,1,New South Wales,152.919379,-31.443115 +2020,1,24,1,New South Wales,153.322384,-28.953942 +2020,2,,1,New South Wales,150.73808,-30.749529 +2021,9,17,1,New South Wales,152.06371,-32.706679 +2022,6,22,1,New South Wales,153.1032,-29.486626 +2023,5,30,1,New South Wales,152.889456,-31.443492 +2022,8,25,1,New South Wales,153.11547,-28.632376 +2023,8,18,1,New South Wales,153.296701,-28.881133 +2021,6,6,1,New South Wales,150.518892,-34.447253 +2021,5,28,1,New South Wales,150.630786,-34.42066 +2021,4,30,1,New South Wales,150.624211,-34.388104 +2021,7,17,1,New South Wales,150.516134,-34.446683 +2024,4,8,1,New South Wales,152.063831,-32.706659 +2021,6,16,1,New South Wales,150.603755,-34.436911 +2020,7,31,1,New South Wales,153.104155,-29.480869 +2023,8,13,1,New South Wales,153.103468,-29.48559 +2023,7,26,1,New South Wales,153.099729,-29.491525 +2021,4,30,1,New South Wales,150.616347,-34.436057 +2020,2,20,1,New South Wales,152.972564,-31.194882 +2023,8,31,1,New South Wales,153.314983,-28.949201 +2021,7,8,1,New South Wales,152.143974,-32.721989 +2021,5,10,1,New South Wales,150.51643,-34.46975 +2022,7,23,1,New South Wales,153.10468,-29.489629 +2022,12,4,1,New South Wales,153.507589,-28.809282 +2020,4,30,1,New South Wales,153.314983,-28.949201 +2023,9,26,1,New South Wales,152.902281,-30.522618 +2022,10,31,1,New South Wales,153.314983,-28.949201 +2021,3,5,1,New South Wales,150.530047,-34.468295 +2024,9,7,1,New South Wales,153.031448,-30.403932 +2021,4,25,1,New South Wales,150.604128,-34.437946 +2021,3,23,1,New South Wales,150.635893,-34.488041 +2021,3,8,1,New South Wales,152.60674,-30.52433 +2020,10,28,1,New South Wales,149.984095,-36.575978 +2021,4,20,1,New South Wales,150.636885,-34.422725 +2024,9,28,1,New South Wales,150.543732,-29.560587 +2020,10,29,1,New South Wales,149.984095,-36.575978 +2021,5,4,1,New South Wales,150.623181,-34.397613 +2024,4,21,1,New South Wales,152.394754,-31.965832 +2021,9,9,1,New South Wales,153.10409,-29.480028 +2023,9,17,1,New South Wales,153.071673,-28.554293 +2021,6,15,1,New South Wales,150.520412,-34.465774 +2021,6,13,1,New South Wales,152.085192,-32.727714 +2021,9,22,1,New South Wales,153.320382,-28.647412 +2021,6,15,1,New South Wales,153.318918,-28.816928 +2020,5,24,1,New South Wales,153.003754,-29.184329 +2021,5,29,1,New South Wales,150.631009,-34.386883 +2023,1,12,1,New South Wales,153.556638,-28.381267 +2023,6,5,1,New South Wales,150.80115,-34.176 +2023,7,6,1,New South Wales,152.915719,-31.469072 +2020,12,10,1,New South Wales,153.327762,-28.671784 +2020,10,15,1,New South Wales,149.947183,-36.617465 +2023,8,8,1,New South Wales,152.791131,-31.635274 +2021,4,25,1,New South Wales,150.63832,-34.420066 +2023,5,26,1,New South Wales,153.497743,-28.765294 +2023,5,26,1,New South Wales,152.924406,-31.460128 +2024,9,14,1,New South Wales,150.878928,-34.034467 +2020,9,22,1,New South Wales,153.423967,-28.662577 +2023,9,21,1,New South Wales,152.906598,-31.457791 +2023,8,5,1,New South Wales,152.081831,-32.730717 +2020,10,30,1,New South Wales,149.945227,-36.57753 +2020,5,12,1,New South Wales,153.376638,-28.577043 +2021,4,16,1,New South Wales,150.631271,-34.393433 +2020,7,12,1,New South Wales,153.609501,-28.661269 +2020,3,8,1,New South Wales,152.927676,-31.466373 +2021,2,2,1,New South Wales,152.415054,-31.933312 +2022,8,30,1,New South Wales,149.323194,-36.297497 +2023,10,8,1,New South Wales,150.78415,-33.717762 +2023,1,5,1,New South Wales,151.491755,-30.639889 +2020,11,2,1,New South Wales,149.968131,-36.578885 +2023,6,2,1,New South Wales,152.063619,-32.706587 +2023,12,1,1,New South Wales,152.842695,-30.311948 +2020,9,5,1,New South Wales,152.848953,-30.582565 +2020,10,31,1,New South Wales,153.314983,-28.949201 +2021,1,19,1,New South Wales,153.10387,-29.484646 +2020,6,17,1,New South Wales,152.916123,-31.485856 +2023,12,5,1,New South Wales,152.879021,-29.707205 +2020,8,29,1,New South Wales,153.49556,-28.23901 +2021,4,16,1,New South Wales,150.521451,-34.464118 +2024,4,16,1,New South Wales,152.06373,-32.706607 +2023,9,8,1,New South Wales,150.783125,-33.71923 +2021,6,10,1,New South Wales,150.605343,-34.438078 +2024,1,4,1,New South Wales,153.109744,-29.490175 +2021,9,22,1,New South Wales,153.008561,-28.625024 +2021,5,16,1,New South Wales,150.6373,-34.423824 +2021,9,14,1,New South Wales,153.468392,-28.261513 +2023,9,26,1,New South Wales,153.380525,-29.086962 +2021,4,24,1,New South Wales,150.608658,-34.453487 +2021,6,11,1,New South Wales,150.611357,-34.430911 +2023,4,19,1,New South Wales,149.949818,-36.563499 +2022,7,31,1,New South Wales,153.314983,-28.949201 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2020,10,29,1,New South Wales,149.967242,-36.561675 +2023,9,17,1,New South Wales,152.861707,-31.40352 +2022,12,9,1,New South Wales,152.905645,-31.44835 +2024,4,17,1,New South Wales,152.9096,-31.4724 +2021,6,1,1,New South Wales,150.604845,-34.425005 +2021,6,26,1,New South Wales,153.101971,-29.488812 +2024,1,3,1,New South Wales,150.785348,-33.715752 +2022,9,19,1,New South Wales,153.296588,-28.847202 +2021,8,2,1,New South Wales,150.520293,-34.465744 +2023,11,19,1,New South Wales,150.785426,-33.706336 +2020,4,8,1,New South Wales,150.145644,-34.932794 +2021,10,14,1,New South Wales,153.103162,-29.48686 +2021,5,4,1,New South Wales,150.611689,-34.41963 +2023,7,8,1,New South Wales,152.90804,-31.450423 +2022,7,25,1,New South Wales,152.808637,-31.129256 +2022,6,17,1,New South Wales,153.104197,-29.479612 +2021,5,26,1,New South Wales,150.639743,-34.393435 +2023,7,29,1,New South Wales,153.297949,-28.900009 +2021,7,3,1,New South Wales,150.642132,-34.395897 +2020,10,9,1,New South Wales,152.990676,-30.891519 +2021,7,18,1,New South Wales,150.628048,-34.420922 +2020,11,27,1,New South Wales,153.10814,-29.490189 +2021,5,6,1,New South Wales,150.627278,-34.39002 +2022,9,8,1,New South Wales,152.798309,-31.12175 +2024,7,11,1,New South Wales,153.412734,-28.98306 +2022,4,24,1,New South Wales,153.110517,-29.490184 +2020,5,4,1,New South Wales,151.96116,-32.01839 +2021,11,26,1,New South Wales,153.30281,-28.844288 +2022,2,3,1,New South Wales,150.962174,-34.099914 +2021,8,10,1,New South Wales,150.604703,-34.427337 +2021,3,11,1,New South Wales,150.635051,-34.48624 +2021,4,20,1,New South Wales,150.627168,-34.385808 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2020,,,1,New South Wales,150.57783,-34.643015 +2021,10,11,1,New South Wales,153.317829,-28.826643 +2020,11,3,1,New South Wales,149.968131,-36.578885 +2021,1,11,1,New South Wales,153.109626,-29.490423 +2024,9,30,1,New South Wales,153.109868,-28.540297 +2022,9,6,1,New South Wales,152.1261,-32.75346 +2024,1,28,1,New South Wales,150.787435,-33.705457 +2021,8,4,1,New South Wales,152.824534,-29.506274 +2021,4,26,1,New South Wales,150.635242,-34.420431 +2023,12,5,1,New South Wales,150.78509,-33.719105 +2024,6,19,1,New South Wales,152.073162,-32.724782 +2022,3,14,1,New South Wales,152.068988,-32.748807 +2021,7,28,1,New South Wales,150.640684,-34.397095 +2022,10,4,1,New South Wales,149.465047,-36.333231 +2020,1,31,1,New South Wales,153.285486,-28.822325 +2021,9,18,1,New South Wales,152.081222,-32.72313 +2021,6,17,1,New South Wales,150.524443,-34.451648 +2023,5,23,1,New South Wales,153.276254,-28.93121 +2024,7,9,1,New South Wales,152.07705,-32.722522 +2020,1,31,1,New South Wales,152.929009,-31.458113 +2021,5,7,1,New South Wales,150.516373,-34.447057 +2023,9,27,1,New South Wales,153.31535,-28.819753 +2020,9,7,1,New South Wales,153.611458,-28.683598 +2021,5,5,1,New South Wales,150.605528,-34.437315 +2021,5,3,1,New South Wales,150.659422,-34.457634 +2021,8,12,1,New South Wales,150.51881,-34.472439 +2023,9,6,1,New South Wales,150.984599,-34.096229 +2021,5,30,1,New South Wales,150.615756,-34.43848 +2023,11,4,1,New South Wales,152.916226,-31.453287 +2021,8,19,1,New South Wales,150.647625,-34.40015 +2023,11,7,1,New South Wales,151.004595,-34.040911 +2021,6,23,1,New South Wales,150.645125,-34.393106 +2023,3,4,1,New South Wales,153.109412,-29.490511 +2023,6,19,1,New South Wales,149.952899,-36.601821 +2021,11,13,1,New South Wales,152.068075,-32.708207 +2022,9,29,1,New South Wales,152.90703,-30.23588 +2022,10,24,1,New South Wales,153.071738,-28.585754 +2023,11,15,1,New South Wales,152.916074,-30.275648 +2021,4,21,1,New South Wales,150.61026,-34.418998 +2021,4,28,1,New South Wales,150.637914,-34.488964 +2021,5,7,1,New South Wales,150.639006,-34.491527 +2021,5,11,1,New South Wales,150.632966,-34.417421 +2023,2,26,1,New South Wales,152.926277,-31.458895 +2022,12,2,1,New South Wales,151.58246,-32.8836 +2023,2,12,1,New South Wales,152.830784,-29.6424 +2021,5,10,1,New South Wales,150.615294,-34.434801 +2021,3,11,1,New South Wales,150.51746,-34.452236 +2021,4,23,1,New South Wales,150.62871,-34.395151 +2024,9,12,1,New South Wales,150.877474,-34.010835 +2021,4,8,1,New South Wales,153.104063,-29.479921 +2020,6,27,1,New South Wales,150.812503,-34.100666 +2021,11,1,1,New South Wales,153.103672,-29.485501 +2021,5,29,1,New South Wales,150.642701,-34.39461 +2020,10,22,1,New South Wales,149.919967,-36.589766 +2022,11,18,1,New South Wales,152.794854,-30.893434 +2024,1,12,1,New South Wales,152.924902,-31.468765 +2021,9,25,1,New South Wales,153.531976,-28.638162 +2020,8,8,1,New South Wales,153.07458,-30.35546 +2021,4,23,1,New South Wales,150.606013,-34.422972 +2022,11,18,1,New South Wales,152.794854,-30.893434 +2022,1,8,1,New South Wales,152.928691,-31.459529 +2021,11,15,1,New South Wales,153.324244,-28.876858 +2020,2,5,1,New South Wales,153.562711,-28.33014 +2021,6,5,1,New South Wales,150.639968,-34.397821 +2022,3,19,1,New South Wales,153.40205,-28.257021 +2023,10,22,1,New South Wales,150.786543,-33.7096 +2021,7,19,1,New South Wales,150.522814,-34.467373 +2021,8,13,1,New South Wales,150.519192,-34.471329 +2024,3,6,1,New South Wales,150.7853,-33.709387 +2020,1,31,1,New South Wales,153.314983,-28.949201 +2021,12,1,1,New South Wales,153.293136,-28.864668 +2021,12,6,1,New South Wales,150.790539,-34.143183 +2020,8,31,1,New South Wales,153.314983,-28.949201 +2022,4,6,1,New South Wales,153.565839,-28.346767 +2021,5,3,1,New South Wales,150.626709,-34.389378 +2023,9,19,1,New South Wales,153.156659,-29.028709 +2023,7,13,1,New South Wales,153.104133,-29.478786 +2020,5,31,1,New South Wales,153.314983,-28.949201 +2024,2,2,1,New South Wales,152.542582,-32.329808 +2021,4,29,1,New South Wales,150.606659,-34.435056 +2023,8,31,1,New South Wales,150.785064,-33.716468 +2021,6,23,1,New South Wales,150.604305,-34.438977 +2024,6,17,1,New South Wales,153.409213,-29.022198 +2021,5,3,1,New South Wales,150.615832,-34.435037 +2021,5,12,1,New South Wales,152.661161,-28.610492 +2021,2,28,1,New South Wales,150.611217,-34.43163 +2020,2,27,1,New South Wales,145.70962,-35.90077 +2022,9,1,1,New South Wales,152.915385,-31.445926 +2021,6,18,1,New South Wales,150.522207,-34.451449 +2020,10,29,1,New South Wales,149.955017,-36.576791 +2023,11,8,1,New South Wales,150.78418,-33.717297 +2021,5,3,1,New South Wales,150.606643,-34.457712 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2023,12,15,1,New South Wales,151.739332,-32.067098 +2022,11,26,1,New South Wales,152.929184,-31.457254 +2020,10,20,1,New South Wales,149.931009,-36.595007 +2021,5,28,1,New South Wales,150.642743,-34.394665 +2023,9,28,1,New South Wales,153.404093,-28.913129 +2020,7,10,1,New South Wales,153.514529,-28.428023 +2021,4,25,1,New South Wales,150.630131,-34.388354 +2020,11,4,1,New South Wales,149.998977,-36.551144 +2020,10,19,1,New South Wales,149.931009,-36.595007 +2023,10,30,1,New South Wales,153.09217,-29.48813 +2020,9,28,1,New South Wales,153.102003,-29.488928 +2021,4,28,1,New South Wales,150.602849,-34.435469 +2023,6,16,1,New South Wales,150.654304,-33.552733 +2020,10,31,1,New South Wales,152.07514,-32.71933 +2020,12,17,1,New South Wales,153.071009,-30.309466 +2021,5,29,1,New South Wales,150.639109,-34.491349 +2021,6,22,1,New South Wales,150.520309,-34.453799 +2021,7,29,1,New South Wales,150.979879,-34.085563 +2023,2,17,1,New South Wales,151.72062,-32.64584 +2021,5,13,1,New South Wales,150.517881,-34.437658 +2022,11,24,1,Victoria,146.216432,-38.471947 +2023,10,20,1,New South Wales,150.987879,-34.023661 +2022,1,14,1,New South Wales,152.924397,-31.440076 +2021,6,27,1,New South Wales,150.627257,-34.420402 +2020,9,3,1,New South Wales,153.555641,-28.398184 +2021,2,22,1,New South Wales,153.302276,-28.820085 +2021,4,28,1,New South Wales,150.619064,-34.400878 +2020,9,22,1,New South Wales,151.6662,-30.501562 +2023,8,1,1,New South Wales,152.00548,-32.217573 +2021,7,14,1,New South Wales,150.625606,-34.386075 +2021,12,28,1,New South Wales,153.087946,-30.355053 +2020,5,14,1,New South Wales,150.685167,-34.352802 +2022,5,24,1,New South Wales,152.873048,-31.465976 +2023,4,24,1,New South Wales,149.34148,-36.313333 +2021,5,10,1,New South Wales,150.60494,-34.427044 +2021,6,27,1,New South Wales,150.631521,-34.388426 +2020,6,26,1,New South Wales,153.089504,-29.4807 +2020,7,31,1,New South Wales,152.923355,-31.443899 +2020,8,22,1,New South Wales,153.293198,-28.864647 +2023,10,15,1,New South Wales,152.412624,-31.932241 +2022,11,23,1,New South Wales,152.281302,-31.94258 +2021,4,27,1,New South Wales,150.604686,-34.452688 +2020,9,7,1,New South Wales,150.639048,-33.541071 +2021,4,29,1,New South Wales,150.60397,-34.427088 +2022,6,16,1,New South Wales,153.103693,-29.485776 +2021,5,30,1,New South Wales,153.521789,-28.683592 +2021,6,20,1,New South Wales,150.603182,-34.439063 +2022,11,14,1,New South Wales,151.991587,-32.721041 +2023,1,2,1,New South Wales,151.003336,-34.072952 +2021,5,8,1,New South Wales,150.521419,-34.435765 +2021,5,5,1,New South Wales,150.632839,-34.418824 +2021,6,13,1,New South Wales,150.643634,-34.395854 +2020,11,30,1,New South Wales,153.343646,-28.866891 +2020,10,20,1,New South Wales,153.437583,-28.690255 +2021,8,25,1,New South Wales,153.109272,-29.490735 +2023,1,12,1,New South Wales,152.786372,-31.467894 +2021,8,10,1,New South Wales,153.123399,-30.29885 +2020,12,19,1,New South Wales,153.560784,-28.389253 +2023,7,31,1,New South Wales,153.314983,-28.949201 +2022,9,14,1,New South Wales,152.807425,-31.643227 +2020,1,9,1,New South Wales,153.336688,-28.868027 +2021,4,30,1,New South Wales,153.314983,-28.949201 +2021,6,11,1,New South Wales,150.521816,-34.45914 +2024,9,26,2,New South Wales,150.854974,-29.561262 +2021,5,20,1,New South Wales,150.599791,-34.429035 +2023,8,8,1,New South Wales,153.099745,-29.491571 +2021,4,22,1,New South Wales,150.609464,-34.419082 +2020,10,30,1,New South Wales,149.977333,-36.564828 +2020,11,2,1,New South Wales,149.934245,-36.578531 +2023,3,3,1,New South Wales,152.916966,-31.431532 +2021,7,8,1,New South Wales,150.521959,-34.464615 +2020,10,28,1,New South Wales,153.402852,-28.60386 +2022,1,6,1,New South Wales,152.914906,-31.450571 +2021,7,21,1,New South Wales,150.516801,-34.44877 +2020,9,11,1,New South Wales,150.0282,-31.13124 +2020,8,22,1,New South Wales,153.538997,-28.25245 +2020,11,10,1,New South Wales,152.919528,-31.43421 +2021,5,10,1,New South Wales,150.519397,-34.451158 +2020,10,22,1,New South Wales,152.719855,-31.061581 +2022,2,27,1,New South Wales,153.091275,-28.599197 +2021,1,24,1,New South Wales,153.092283,-29.488149 +2020,,,1,New South Wales,152.950561,-31.216978 +2021,5,12,1,New South Wales,150.628812,-34.389608 +2020,2,10,1,New South Wales,153.562079,-28.384726 +2021,7,23,1,New South Wales,150.516465,-34.448736 +2020,11,16,1,New South Wales,153.317852,-28.929063 +2021,5,23,1,New South Wales,150.515844,-34.450608 +2021,5,16,1,New South Wales,150.604326,-34.435597 +2021,7,9,1,New South Wales,153.486365,-28.677452 +2021,6,18,1,New South Wales,150.642413,-34.395569 +2022,10,8,1,New South Wales,153.394297,-28.959457 +2023,6,27,1,New South Wales,152.98038,-30.435319 +2021,6,7,1,New South Wales,150.518849,-34.447243 +2023,1,6,1,New South Wales,153.108071,-29.490395 +2021,12,15,1,New South Wales,152.86752,-31.482731 +2024,9,22,2,New South Wales,151.68364,-32.515381 +2021,5,30,1,New South Wales,150.524097,-34.471447 +2024,2,10,1,New South Wales,150.785264,-33.715621 +2022,8,10,1,New South Wales,152.852429,-31.552973 +2021,6,1,1,New South Wales,150.630387,-34.420914 +2020,10,12,1,New South Wales,152.895431,-31.432954 +2020,8,31,1,New South Wales,152.916457,-31.443373 +2021,4,19,1,New South Wales,150.617478,-34.434934 +2021,7,18,1,New South Wales,150.522672,-34.467388 +2020,6,4,1,New South Wales,153.243582,-28.719692 +2021,6,7,1,New South Wales,150.607744,-34.430173 +2022,5,5,1,New South Wales,152.924807,-31.442971 +2021,5,9,1,New South Wales,150.521473,-34.435766 +2022,2,4,1,New South Wales,152.891577,-31.44651 +2023,3,17,1,New South Wales,153.277604,-28.873812 +2021,6,24,1,New South Wales,150.627406,-34.421307 +2020,9,21,1,New South Wales,153.329651,-28.435621 +2021,6,23,1,New South Wales,150.625737,-34.386447 +2021,3,8,1,New South Wales,152.919097,-31.448829 +2022,,,1,New South Wales,153.440619,-28.981717 +2020,1,9,1,New South Wales,151.102086,-29.770695 +2022,3,8,1,New South Wales,153.596207,-28.845386 +2021,6,5,1,New South Wales,150.605764,-34.428665 +2020,10,12,1,New South Wales,153.333213,-28.379277 +2020,1,29,1,New South Wales,152.927271,-31.4593 +2021,4,30,1,New South Wales,150.617341,-34.399879 +2024,2,16,1,New South Wales,153.103918,-29.489596 +2021,11,12,1,New South Wales,153.043399,-28.469101 +2023,2,1,1,New South Wales,152.868131,-31.473803 +2021,6,30,1,New South Wales,153.101944,-29.488709 +2021,4,20,1,New South Wales,150.637239,-34.422146 +2024,2,1,1,New South Wales,153.109734,-29.490203 +2021,6,15,1,New South Wales,153.52658,-28.48505 +2021,5,30,1,New South Wales,150.607212,-34.43779 +2023,12,31,1,New South Wales,150.784073,-33.717726 +2021,12,20,1,New South Wales,152.929553,-29.726684 +2021,11,6,1,New South Wales,153.010861,-30.417681 +2021,6,17,1,New South Wales,150.630266,-34.420956 +2021,7,10,1,New South Wales,151.488892,-32.938017 +2021,4,29,1,New South Wales,150.635393,-34.419685 +2021,7,8,1,New South Wales,150.597414,-34.415898 +2021,12,6,1,New South Wales,153.398506,-28.261084 +2021,9,19,1,New South Wales,150.51826,-34.446906 +2021,9,11,1,New South Wales,153.078602,-30.347263 +2021,5,29,1,New South Wales,150.630998,-34.386892 +2020,12,8,1,New South Wales,153.318046,-28.915045 +2020,9,25,1,New South Wales,149.453035,-33.791641 +2021,7,9,1,New South Wales,150.631115,-34.388156 +2020,10,5,1,New South Wales,152.077254,-32.724577 +2021,11,28,1,New South Wales,152.063587,-32.706144 +2021,7,12,1,New South Wales,150.604589,-34.435899 +2021,4,6,1,New South Wales,150.516831,-34.454008 +2021,5,12,1,New South Wales,150.640134,-34.492063 +2022,7,21,1,New South Wales,152.899767,-31.467116 +2020,11,11,1,New South Wales,153.266454,-28.744317 +2023,1,4,1,New South Wales,153.300827,-28.883175 +2022,1,6,1,New South Wales,150.616548,-34.437801 +2023,11,16,1,New South Wales,153.104256,-29.480107 +2020,10,15,1,New South Wales,149.949786,-36.632867 +2022,6,18,1,New South Wales,152.404167,-31.945815 +2021,8,26,1,New South Wales,150.514577,-34.447426 +2021,4,27,1,New South Wales,151.713893,-30.579557 +2022,9,19,1,New South Wales,150.590448,-33.782392 +2023,11,8,1,New South Wales,152.919374,-31.443135 +2023,7,14,1,New South Wales,153.504942,-28.796571 +2022,7,16,1,New South Wales,150.968525,-34.121713 +2021,5,15,1,New South Wales,150.600607,-34.427906 +2022,11,23,1,New South Wales,152.794945,-30.901933 +2021,7,29,1,New South Wales,150.625152,-34.386355 +2022,5,6,1,New South Wales,152.917944,-31.4692 +2021,4,22,1,New South Wales,152.890309,-31.435652 +2021,8,25,1,New South Wales,150.607472,-34.442023 +2020,1,13,1,New South Wales,150.68312,-33.51162 +2021,6,4,1,New South Wales,150.521677,-34.465673 +2023,1,26,1,New South Wales,153.299786,-28.824039 +2021,4,29,1,New South Wales,150.517422,-34.442878 +2021,3,6,1,New South Wales,152.107545,-32.767983 +2022,8,26,1,New South Wales,151.002026,-34.052384 +2021,7,21,1,New South Wales,150.630766,-34.420596 +2022,6,24,1,New South Wales,152.564373,-28.328355 +2021,9,20,1,New South Wales,152.93879,-29.728067 +2020,7,30,1,New South Wales,152.797591,-31.125864 +2024,3,3,1,New South Wales,152.373881,-31.914629 +2022,12,26,1,New South Wales,151.931469,-32.774514 +2021,9,10,1,New South Wales,152.084599,-32.730646 +2022,5,14,1,New South Wales,152.093798,-31.403015 +2021,4,29,1,New South Wales,150.610653,-34.418979 +2020,10,12,1,New South Wales,153.107411,-29.490105 +2020,11,24,1,New South Wales,152.791633,-29.500615 +2021,7,2,1,New South Wales,150.522435,-34.465815 +2022,12,20,1,New South Wales,152.916507,-31.471984 +2021,6,8,1,New South Wales,150.609701,-34.431005 +2021,4,30,1,New South Wales,150.608963,-34.435156 +2021,7,12,1,New South Wales,150.626232,-34.421248 +2021,4,26,1,New South Wales,150.625548,-34.399291 +2022,5,25,1,New South Wales,153.300166,-28.863514 +2021,5,26,1,New South Wales,150.638883,-34.491669 +2022,10,3,1,New South Wales,150.842133,-34.070234 +2022,11,19,1,New South Wales,153.325592,-28.824468 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2021,6,3,1,New South Wales,150.636997,-34.48827 +2021,6,7,1,New South Wales,150.526119,-34.464564 +2021,8,23,1,New South Wales,150.45753,-34.46689 +2022,10,6,1,New South Wales,152.941884,-30.42524 +2020,12,1,1,New South Wales,152.727019,-31.520846 +2021,8,2,1,New South Wales,153.187955,-28.93058 +2020,10,21,1,New South Wales,150.617141,-33.51732 +2021,8,2,1,New South Wales,150.626678,-34.389296 +2023,11,19,1,New South Wales,152.835986,-31.618433 +2021,6,10,1,New South Wales,150.613377,-34.4326 +2021,12,14,1,New South Wales,152.926492,-31.463247 +2021,5,22,1,New South Wales,150.639177,-34.49318 +2021,4,16,1,New South Wales,150.631336,-34.393426 +2020,10,26,1,New South Wales,153.360617,-28.840581 +2021,10,18,1,New South Wales,150.567012,-34.483871 +2022,8,19,1,New South Wales,153.107438,-29.490119 +2021,5,9,1,New South Wales,152.033707,-32.736704 +2023,11,4,1,New South Wales,152.381646,-31.929114 +2020,10,26,1,New South Wales,153.360617,-28.840581 +2021,4,22,1,New South Wales,150.636974,-34.485619 +2020,11,17,1,New South Wales,153.319519,-28.833951 +2021,5,11,1,New South Wales,150.609189,-34.420708 +2023,2,27,1,New South Wales,152.862134,-29.689336 +2021,4,29,1,New South Wales,150.604055,-34.427171 +2022,10,19,1,New South Wales,152.789807,-31.638266 +2021,11,4,1,New South Wales,151.747269,-32.556735 +2020,7,8,1,New South Wales,151.652315,-32.693871 +2023,8,1,1,New South Wales,153.104138,-29.483801 +2022,7,23,1,New South Wales,153.0359,-28.6019 +2021,1,19,1,New South Wales,153.498403,-28.223151 +2021,10,2,1,New South Wales,150.562641,-34.331279 +2021,3,27,1,New South Wales,150.610416,-34.429594 +2022,6,17,1,New South Wales,152.905517,-31.478707 +2021,3,22,1,New South Wales,152.947982,-31.170273 +2022,1,3,1,New South Wales,153.293365,-28.864664 +2021,5,10,1,New South Wales,150.518398,-34.451813 +2021,4,17,1,New South Wales,150.630391,-34.394147 +2021,6,15,1,New South Wales,150.617098,-34.433764 +2021,6,23,1,New South Wales,150.599349,-34.450546 +2021,5,21,1,New South Wales,150.522325,-34.465127 +2020,4,5,1,New South Wales,153.086703,-29.071399 +2021,7,13,1,New South Wales,150.627285,-34.420574 +2022,11,22,1,New South Wales,152.764422,-30.891124 +2020,10,30,1,New South Wales,149.968131,-36.578885 +2021,7,2,1,New South Wales,150.642016,-34.39576 +2021,3,18,1,New South Wales,149.369982,-31.197908 +2020,9,27,1,New South Wales,150.655487,-33.522609 +2021,9,19,1,New South Wales,150.523823,-34.463778 +2021,6,8,1,New South Wales,150.51796,-34.45706 +2021,6,22,1,New South Wales,150.657896,-34.455387 +2024,8,23,1,New South Wales,152.919591,-31.473441 +2020,10,11,1,New South Wales,149.952917,-36.681355 +2021,2,28,1,New South Wales,150.615986,-34.433048 +2021,4,29,1,New South Wales,150.615802,-34.436074 +2021,7,7,1,New South Wales,150.521439,-34.464893 +2021,3,9,1,New South Wales,153.266394,-28.871059 +2021,2,28,1,New South Wales,153.314058,-28.82489 +2021,4,28,1,New South Wales,150.636279,-34.421839 +2020,2,2,1,New South Wales,151.71087,-33.00885 +2024,3,7,1,New South Wales,152.968919,-31.179839 +2021,5,28,1,New South Wales,150.630676,-34.420685 +2021,6,30,1,New South Wales,150.596267,-34.411503 +2022,12,29,1,New South Wales,146.571529,-34.75536 +2020,9,8,1,New South Wales,153.092058,-29.488256 +2020,1,1,1,New South Wales,152.862176,-31.280887 +2021,5,6,1,New South Wales,150.615734,-34.435811 +2021,8,9,1,New South Wales,151.636811,-32.782264 +2024,1,9,1,New South Wales,152.924757,-31.464357 +2023,11,1,1,New South Wales,151.849778,-31.964835 +2023,7,20,1,New South Wales,152.793516,-31.642612 +2020,5,25,1,New South Wales,153.55943,-28.30184 +2020,11,15,1,New South Wales,150.008014,-36.503633 +2020,10,16,1,New South Wales,149.919967,-36.589766 +2021,3,31,1,New South Wales,150.63531,-34.488634 +2020,3,24,1,New South Wales,150.085764,-31.100063 +2021,4,21,1,New South Wales,150.637424,-34.420599 +2022,7,17,1,New South Wales,153.110916,-28.517475 +2022,11,24,1,New South Wales,152.794945,-30.901933 +2020,1,11,1,New South Wales,152.298898,-31.950972 +2020,10,30,1,New South Wales,149.967242,-36.561675 +2020,6,4,1,New South Wales,153.531976,-28.638162 +2020,12,7,1,New South Wales,153.45552,-28.913883 +2023,8,31,1,New South Wales,153.314983,-28.949201 +2022,8,27,1,New South Wales,150.906186,-33.980919 +2021,6,6,1,New South Wales,150.606767,-34.429334 +2020,9,6,1,New South Wales,152.913498,-31.48567 +2021,8,15,1,New South Wales,152.191536,-29.862403 +2021,9,30,1,New South Wales,153.314983,-28.949201 +2021,5,30,1,New South Wales,150.639144,-34.491278 +2021,7,1,1,New South Wales,150.513077,-34.447766 +2022,2,8,1,New South Wales,153.103811,-29.485594 +2021,4,23,1,New South Wales,153.215164,-28.584993 +2021,11,30,1,New South Wales,153.314983,-28.949201 +2021,5,22,1,New South Wales,150.607212,-34.432453 +2021,5,4,1,New South Wales,150.637279,-34.423797 +2023,9,17,1,New South Wales,150.785243,-33.714076 +2020,1,16,1,New South Wales,152.861607,-31.161834 +2022,7,9,1,New South Wales,150.186149,-29.163383 +2020,4,30,1,New South Wales,153.314983,-28.949201 +2021,5,14,1,New South Wales,150.629146,-34.395872 +2023,10,31,1,New South Wales,152.818061,-31.652838 +2024,3,22,1,New South Wales,152.372698,-31.923402 +2020,8,10,1,New South Wales,152.897761,-31.437147 +2021,7,31,1,New South Wales,150.517272,-34.44795 +2022,9,24,1,New South Wales,153.103457,-29.485641 +2021,6,2,1,New South Wales,150.626101,-34.390475 +2022,12,7,1,New South Wales,153.11057,-29.49004 +2021,5,29,1,New South Wales,150.526857,-34.469402 +2020,3,4,1,New South Wales,153.315696,-28.818295 +2021,11,16,1,New South Wales,152.919209,-31.474481 +2021,8,6,1,New South Wales,150.513827,-34.446311 +2023,11,18,1,New South Wales,150.964482,-33.38583 +2022,6,1,1,New South Wales,153.103827,-29.485576 +2020,11,1,1,New South Wales,149.968131,-36.578885 +2023,9,24,1,New South Wales,153.371865,-29.000187 +2020,1,4,1,New South Wales,151.71087,-33.00885 +2020,4,21,1,New South Wales,150.056219,-33.775502 +2021,6,14,1,New South Wales,150.520488,-34.465775 +2020,4,11,1,New South Wales,150.149029,-35.020999 +2022,10,7,1,New South Wales,153.427326,-28.62639 +2020,5,4,1,New South Wales,152.493398,-28.313118 +2022,12,22,1,New South Wales,152.417646,-31.939223 +2020,10,22,1,New South Wales,149.919967,-36.589766 +2020,1,13,1,New South Wales,151.968181,-32.447469 +2020,10,18,1,New South Wales,149.947316,-36.607854 +2024,7,5,1,New South Wales,150.335817,-34.482856 +2021,5,11,1,New South Wales,150.604534,-34.438973 +2020,10,20,1,New South Wales,149.947316,-36.607854 +2020,11,2,1,New South Wales,153.306657,-28.837601 +2023,11,14,1,New South Wales,152.700655,-30.289654 +2020,3,25,1,New South Wales,150.092834,-33.775551 +2023,4,28,1,New South Wales,152.909776,-31.433254 +2022,11,28,1,New South Wales,152.919406,-31.442995 +2021,4,27,1,New South Wales,150.637402,-34.488197 +2021,5,8,1,New South Wales,150.519374,-34.464806 +2020,4,3,1,New South Wales,150.118279,-35.061305 +2023,3,15,1,New South Wales,151.854101,-32.27449 +2020,10,19,1,New South Wales,153.465634,-28.322836 +2021,4,20,1,New South Wales,150.627276,-34.385837 +2021,5,18,1,New South Wales,150.637313,-34.42377 +2021,5,22,1,New South Wales,150.630397,-34.420923 +2021,5,13,1,New South Wales,150.637335,-34.423762 +2020,10,29,1,New South Wales,149.967242,-36.561675 +2021,5,23,1,New South Wales,150.515565,-34.450827 +2022,12,15,1,New South Wales,152.353525,-31.92625 +2022,8,5,1,New South Wales,150.799208,-34.215368 +2020,2,10,1,New South Wales,150.89266,-33.99196 +2021,4,8,1,New South Wales,150.519865,-34.447831 +2021,5,18,1,New South Wales,150.630464,-34.395041 +2021,5,25,1,New South Wales,150.521514,-34.465697 +2020,10,17,1,New South Wales,149.931009,-36.595007 +2020,6,24,1,New South Wales,152.07746,-32.75856 +2022,7,31,1,New South Wales,152.922865,-31.474257 +2021,6,4,1,New South Wales,150.521632,-34.465735 +2023,9,5,1,New South Wales,153.132205,-29.470529 +2020,9,26,1,New South Wales,153.293262,-28.864605 +2021,3,28,1,New South Wales,152.868233,-29.667173 +2020,11,1,1,New South Wales,149.945227,-36.57753 +2023,8,8,1,New South Wales,153.096183,-29.485179 +2023,7,31,1,New South Wales,153.109278,-29.490908 +2022,10,15,1,New South Wales,152.948669,-30.415963 +2021,6,8,1,New South Wales,150.625995,-34.388868 +2020,11,24,1,New South Wales,152.885691,-31.435872 +2022,12,13,1,New South Wales,150.971573,-32.241455 +2021,9,9,1,New South Wales,150.597774,-34.45578 +2021,5,5,1,New South Wales,150.605547,-34.437388 +2021,5,11,1,New South Wales,150.605136,-34.427039 +2023,11,30,1,New South Wales,152.869283,-31.447809 +2022,10,28,1,New South Wales,152.915398,-31.445982 +2021,6,8,1,New South Wales,150.607817,-34.430689 +2024,1,30,1,New South Wales,151.232617,-33.125134 +2021,10,18,1,New South Wales,153.395729,-28.559995 +2020,9,17,1,New South Wales,152.359003,-31.924406 +2023,11,8,1,New South Wales,152.917599,-31.474412 +2020,11,3,1,New South Wales,149.955017,-36.576791 +2021,5,3,1,New South Wales,150.606675,-34.45773 +2021,4,28,1,New South Wales,153.270972,-28.888425 +2021,6,12,1,New South Wales,150.643612,-34.395872 +2020,12,10,1,New South Wales,152.868061,-29.667023 +2020,10,31,1,New South Wales,149.92265,-36.572354 +2021,8,20,1,New South Wales,150.513017,-34.447196 +2022,9,6,1,New South Wales,150.790927,-34.18322 +2020,11,25,1,New South Wales,153.279241,-28.839565 +2023,9,10,1,New South Wales,149.552125,-33.491209 +2024,2,2,1,New South Wales,152.542118,-32.330457 +2020,11,30,1,New South Wales,153.314983,-28.949201 +2021,3,28,1,New South Wales,150.516129,-34.446845 +2023,4,30,1,New South Wales,153.314983,-28.949201 +2021,5,2,1,New South Wales,150.637288,-34.423878 +2020,12,7,1,New South Wales,149.960189,-36.280531 +2021,1,5,1,New South Wales,153.103817,-29.485608 +2022,11,6,1,New South Wales,153.427845,-28.625955 +2021,5,7,1,New South Wales,150.521372,-34.466424 +2023,2,7,1,New South Wales,152.918506,-31.470004 +2023,9,6,1,New South Wales,152.791776,-31.526235 +2021,12,2,1,New South Wales,152.381452,-31.914618 +2023,8,1,1,New South Wales,152.87487,-31.455595 +2021,8,23,1,New South Wales,152.063964,-32.706652 +2022,2,13,1,New South Wales,152.524848,-32.044844 +2020,11,28,1,New South Wales,153.103774,-29.485571 +2023,9,12,1,New South Wales,152.807412,-31.65318 +2022,9,10,1,New South Wales,152.377895,-31.91883 +2023,5,15,1,New South Wales,153.099766,-29.491595 +2021,5,12,1,New South Wales,152.867718,-29.667284 +2021,6,1,1,New South Wales,150.616408,-34.438132 +2021,9,5,1,New South Wales,153.302311,-28.888631 +2023,8,28,1,New South Wales,152.414267,-31.940863 +2020,7,4,1,New South Wales,152.868919,-29.667396 +2020,11,22,1,New South Wales,149.942556,-36.497108 +2021,5,16,1,New South Wales,150.600936,-34.427813 +2021,5,11,1,New South Wales,150.639968,-34.491798 +2023,7,13,1,New South Wales,153.108183,-29.490544 +2022,2,8,1,New South Wales,152.871191,-31.459214 +2020,3,5,1,New South Wales,153.47372,-28.705379 +2021,3,26,1,New South Wales,153.103779,-29.485576 +2020,3,6,1,New South Wales,152.103796,-32.759249 +2021,8,4,1,New South Wales,151.678195,-32.543445 +2022,12,12,1,New South Wales,152.846541,-31.442787 +2023,10,24,1,New South Wales,151.059275,-29.740814 +2023,6,9,1,New South Wales,150.79511,-34.14022 +2020,10,18,1,New South Wales,149.947183,-36.617465 +2022,5,17,1,New South Wales,151.002757,-33.983885 +2021,7,23,1,New South Wales,150.630797,-34.420642 +2021,10,4,1,New South Wales,152.907156,-31.489655 +2023,3,2,1,New South Wales,152.787601,-31.636597 +2020,11,6,1,New South Wales,150.010074,-36.579686 +2021,6,10,1,New South Wales,150.613309,-34.432671 +2020,11,4,1,New South Wales,149.934245,-36.578531 +2020,10,18,1,New South Wales,149.947183,-36.617465 +2021,1,7,1,New South Wales,150.113811,-33.770977 +2021,6,24,1,New South Wales,150.520314,-34.465781 +2020,12,4,1,New South Wales,152.901928,-31.442245 +2022,5,6,1,New South Wales,153.110581,-29.489606 +2021,6,7,1,New South Wales,150.627048,-34.389682 +2022,5,6,1,New South Wales,151.013607,-33.994863 +2021,10,11,1,New South Wales,151.073978,-29.748749 +2021,8,12,1,New South Wales,152.063845,-32.706501 +2022,8,22,1,New South Wales,152.989374,-30.187383 +2022,1,15,1,New South Wales,150.857126,-34.0769 +2020,4,11,1,New South Wales,153.109422,-29.490581 +2024,5,24,1,New South Wales,152.063709,-32.706526 +2022,12,24,1,New South Wales,152.967038,-31.184784 +2022,5,4,1,New South Wales,153.166202,-28.53639 +2020,11,25,1,New South Wales,153.279241,-28.839565 +2021,9,7,1,New South Wales,150.645169,-34.398129 +2024,2,27,1,New South Wales,150.784174,-33.71748 +2020,1,3,1,New South Wales,151.709719,-32.711888 +2021,3,23,1,New South Wales,150.603932,-34.439466 +2021,5,3,1,New South Wales,150.611469,-34.419743 +2023,9,26,1,New South Wales,153.395625,-28.919949 +2021,8,27,1,New South Wales,150.515544,-34.442335 +2022,6,14,1,New South Wales,153.334983,-28.822021 +2023,6,20,1,New South Wales,150.784226,-33.717252 +2022,9,27,1,New South Wales,149.410656,-36.270292 +2022,10,3,1,New South Wales,152.924926,-31.453745 +2020,5,23,1,New South Wales,152.925285,-31.453909 +2023,11,11,1,New South Wales,153.097197,-29.486846 +2022,5,1,1,New South Wales,152.922152,-31.452292 +2021,7,8,1,New South Wales,150.641355,-34.395684 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2023,3,26,1,New South Wales,153.394466,-28.96049 +2020,2,3,1,New South Wales,152.885288,-31.439912 +2023,2,21,1,New South Wales,152.371874,-31.92387 +2021,2,21,1,New South Wales,152.97267,-28.552811 +2021,8,25,1,New South Wales,150.641811,-34.395684 +2023,11,5,1,New South Wales,150.848922,-33.85909 +2024,1,21,1,New South Wales,153.110989,-29.487448 +2021,9,7,1,New South Wales,150.513182,-34.447155 +2021,4,20,1,New South Wales,150.630542,-34.386874 +2021,3,7,1,New South Wales,150.609914,-34.419695 +2022,5,9,1,New South Wales,146.595395,-34.773157 +2023,10,28,1,New South Wales,150.989165,-34.089471 +2020,2,8,1,New South Wales,150.099132,-29.27299 +2023,7,6,1,New South Wales,150.161898,-34.798013 +2023,11,4,1,New South Wales,151.645579,-32.65525 +2024,1,3,1,New South Wales,151.969019,-32.448985 +2021,8,12,1,New South Wales,151.667897,-32.674863 +2021,5,16,1,New South Wales,150.529449,-34.468274 +2021,5,5,1,New South Wales,150.622805,-34.397434 +2021,7,16,1,New South Wales,153.451554,-28.629535 +2021,7,25,1,New South Wales,150.839671,-34.078232 +2021,6,26,1,New South Wales,150.627348,-34.420269 +2021,7,1,1,New South Wales,150.626742,-34.420915 +2020,10,8,1,New South Wales,153.349116,-28.86986 +2021,11,18,1,New South Wales,153.60863,-28.66111 +2020,5,,1,New South Wales,152.030417,-32.735006 +2021,4,2,1,New South Wales,150.516125,-34.447359 +2020,11,12,1,New South Wales,153.13752,-28.524358 +2021,12,,1,New South Wales,149.319923,-36.139338 +2020,11,24,1,New South Wales,152.877653,-31.427316 +2023,3,15,1,New South Wales,153.30294,-28.820474 +2020,10,29,1,New South Wales,153.295272,-28.820337 +2021,5,12,1,New South Wales,150.627994,-34.389683 +2022,1,7,1,New South Wales,152.92705,-31.455105 +2022,7,22,1,New South Wales,153.104777,-29.48968 +2021,8,16,1,New South Wales,150.631912,-34.418139 +2020,10,30,1,New South Wales,149.934245,-36.578531 +2020,8,14,1,New South Wales,153.429342,-28.573115 +2023,12,1,1,New South Wales,152.802375,-30.325375 +2021,5,17,1,New South Wales,150.630672,-34.389969 +2021,6,10,1,New South Wales,150.521536,-34.465688 +2022,11,19,1,New South Wales,153.092219,-28.599348 +2023,10,21,1,New South Wales,153.109363,-29.490511 +2021,5,26,1,New South Wales,150.595785,-34.425701 +2022,10,5,1,New South Wales,153.559202,-28.396866 +2024,6,27,1,New South Wales,150.234259,-33.581329 +2020,11,12,1,New South Wales,153.078569,-28.59438 +2021,9,26,1,New South Wales,152.916371,-31.450779 +2020,11,3,1,New South Wales,149.968131,-36.578885 +2021,4,6,1,New South Wales,152.896953,-30.17771 +2021,6,25,1,New South Wales,150.63871,-33.433675 +2021,4,18,1,New South Wales,150.627376,-34.38656 +2021,6,29,1,New South Wales,150.522463,-34.464878 +2020,10,10,1,New South Wales,149.941793,-36.651646 +2021,11,27,1,New South Wales,152.867632,-29.667173 +2021,7,21,1,New South Wales,150.630178,-34.420991 +2021,5,30,1,New South Wales,150.640323,-34.397548 +2020,5,26,1,New South Wales,153.103827,-29.485548 +2022,8,2,1,New South Wales,150.797018,-34.14156 +2021,7,9,1,New South Wales,150.513087,-34.447054 +2022,1,4,1,New South Wales,150.961367,-34.096961 +2020,5,30,1,New South Wales,151.682,-30.417 +2021,8,4,1,New South Wales,150.518979,-34.447254 +2021,11,19,1,New South Wales,153.00717,-30.42243 +2021,5,6,1,New South Wales,153.315616,-28.648182 +2023,6,5,1,New South Wales,153.299523,-28.824986 +2021,6,18,1,New South Wales,150.622465,-34.384094 +2020,1,13,1,New South Wales,152.84519,-31.12222 +2020,12,21,1,New South Wales,153.317534,-28.827945 +2023,10,3,1,New South Wales,153.349809,-28.30883 +2021,6,3,1,New South Wales,150.630054,-34.42116 +2021,6,14,1,New South Wales,150.604429,-34.438069 +2021,1,13,1,New South Wales,152.921957,-31.473474 +2023,8,9,1,New South Wales,152.882528,-31.440818 +2021,4,21,1,New South Wales,150.615125,-34.429272 +2024,3,22,1,New South Wales,152.378769,-31.915169 +2022,5,22,1,New South Wales,153.206215,-28.61307 +2023,8,17,1,New South Wales,152.88433,-30.40789 +2021,8,22,1,New South Wales,153.302271,-28.888838 +2020,10,15,1,New South Wales,152.919118,-31.460651 +2020,10,27,1,New South Wales,152.448947,-30.887 +2020,7,4,1,New South Wales,153.287916,-28.903027 +2022,11,20,1,New South Wales,152.108169,-32.774209 +2021,7,25,1,New South Wales,153.552936,-28.571221 +2023,7,29,1,New South Wales,151.921393,-31.977374 +2021,11,14,1,New South Wales,152.063358,-32.700914 +2023,7,29,1,New South Wales,150.783468,-33.717921 +2023,8,30,1,New South Wales,150.837451,-34.06577 +2020,11,21,1,New South Wales,151.050209,-34.024194 +2024,7,1,1,New South Wales,152.01688,-32.72502 +2020,6,23,1,New South Wales,152.81167,-29.633215 +2020,8,12,1,New South Wales,149.547784,-33.623333 +2022,10,16,1,New South Wales,152.915174,-31.456952 +2020,7,15,1,New South Wales,150.072998,-33.757953 +2022,3,6,1,New South Wales,153.10821,-29.490241 +2022,1,6,1,New South Wales,150.959382,-34.106531 +2020,1,21,1,New South Wales,151.841009,-31.89953 +2020,10,2,1,New South Wales,152.909439,-31.46524 +2021,8,9,1,New South Wales,150.631963,-34.388155 +2021,6,12,1,New South Wales,150.522435,-34.465806 +2021,9,11,1,New South Wales,150.603989,-34.456154 +2021,5,15,1,New South Wales,150.523868,-34.463743 +2021,5,9,1,New South Wales,150.521223,-34.435382 +2021,3,2,1,New South Wales,150.604125,-34.439181 +2020,5,1,1,New South Wales,153.090234,-29.480266 +2020,7,9,1,New South Wales,153.510553,-28.69241 +2021,3,18,1,New South Wales,153.103994,-29.485324 +2021,7,2,1,New South Wales,150.616112,-33.435406 +2020,11,26,1,New South Wales,152.039709,-32.728908 +2020,10,20,1,New South Wales,149.938155,-36.621708 +2023,10,21,1,New South Wales,152.902495,-31.441793 +2023,4,18,1,New South Wales,153.311988,-28.813011 +2021,5,6,1,New South Wales,150.627301,-34.389985 +2021,7,4,1,New South Wales,150.628916,-34.390539 +2020,8,9,1,New South Wales,153.104152,-29.485057 +2020,10,28,1,New South Wales,152.59067,-28.56179 +2021,7,29,1,New South Wales,152.957635,-30.510492 +2021,6,8,1,New South Wales,152.901603,-31.442563 +2021,5,8,1,New South Wales,150.632613,-34.418342 +2020,10,16,1,New South Wales,150.615749,-33.434912 +2023,6,27,1,New South Wales,153.470537,-28.678877 +2022,1,10,1,New South Wales,152.93054,-29.726679 +2022,10,26,1,New South Wales,153.433721,-28.98674 +2024,2,12,1,New South Wales,152.922261,-31.450234 +2023,1,13,1,New South Wales,149.372129,-35.991521 +2021,7,2,1,New South Wales,153.109465,-29.49046 +2021,6,29,1,New South Wales,150.522381,-34.465823 +2020,11,10,1,New South Wales,152.925739,-29.598835 +2021,5,4,1,New South Wales,150.520659,-34.436074 +2023,9,30,1,New South Wales,153.302211,-28.819553 +2021,6,26,1,New South Wales,150.644383,-34.39164 +2020,10,27,1,New South Wales,151.6662,-30.501562 +2024,2,5,1,New South Wales,150.785486,-33.709272 +2021,3,18,1,New South Wales,150.534633,-34.462257 +2021,6,5,1,New South Wales,150.640046,-34.39775 +2023,9,25,1,New South Wales,153.35354,-28.896665 +2023,9,6,1,New South Wales,153.324023,-28.879696 +2020,4,25,1,New South Wales,150.104474,-33.779295 +2021,6,16,1,New South Wales,153.555909,-28.399153 +2024,1,3,1,New South Wales,152.063401,-32.706176 +2024,1,11,1,New South Wales,153.103908,-29.489596 +2020,1,24,1,New South Wales,153.313985,-28.826297 +2021,5,15,1,New South Wales,150.600615,-34.427987 +2021,5,1,1,New South Wales,150.637346,-34.48861 +2021,6,28,1,New South Wales,150.596081,-34.411562 +2021,3,5,1,New South Wales,150.604297,-34.438102 +2022,1,27,1,New South Wales,153.323323,-28.855702 +2020,9,26,1,New South Wales,153.543966,-28.388928 +2023,9,3,1,New South Wales,152.924747,-29.700507 +2021,6,6,1,New South Wales,150.609242,-34.434512 +2021,7,5,1,New South Wales,150.643615,-34.394592 +2021,6,3,1,New South Wales,152.035932,-32.764664 +2021,7,14,1,New South Wales,150.627024,-34.420948 +2020,10,31,1,New South Wales,153.560523,-28.373989 +2022,10,12,1,New South Wales,152.359545,-32.156684 +2020,1,6,1,New South Wales,153.10424,-29.482167 +2021,5,12,1,New South Wales,150.518978,-34.436626 +2020,12,9,1,New South Wales,153.300206,-28.886464 +2024,5,28,1,New South Wales,151.78254,-32.570557 +2022,7,9,1,New South Wales,152.919603,-31.443535 +2020,4,23,1,New South Wales,153.325705,-28.824948 +2021,5,1,1,New South Wales,150.617519,-34.399739 +2021,4,21,1,New South Wales,150.604373,-34.424418 +2023,7,10,1,New South Wales,153.29594,-28.870658 +2023,11,12,1,New South Wales,150.997861,-34.082153 +2024,2,23,1,New South Wales,150.785438,-33.713489 +2021,6,20,1,New South Wales,150.639219,-34.392731 +2023,5,6,1,New South Wales,152.063698,-32.706607 +2021,9,29,1,New South Wales,153.516594,-28.686362 +2022,10,25,1,New South Wales,152.063582,-32.706475 +2022,6,22,1,New South Wales,153.104074,-29.485127 +2021,4,19,1,New South Wales,150.630863,-34.394021 +2021,9,12,1,New South Wales,153.365248,-28.827927 +2022,1,15,1,New South Wales,150.618954,-34.440039 +2021,5,12,1,New South Wales,150.516597,-34.449054 +2023,11,2,1,New South Wales,152.908769,-31.445426 +2024,2,4,1,New South Wales,150.46594,-34.49028 +2023,5,29,1,New South Wales,153.316596,-28.826874 +2023,3,17,1,New South Wales,153.071952,-30.317046 +2020,10,11,1,New South Wales,152.893872,-31.438517 +2021,4,29,1,New South Wales,150.635317,-34.419702 +2020,11,24,1,New South Wales,152.878118,-31.426368 +2020,4,15,1,New South Wales,153.103846,-29.48548 +2021,3,9,1,New South Wales,150.514736,-34.445762 +2020,1,21,1,New South Wales,151.943845,-32.003815 +2020,8,19,1,New South Wales,152.769111,-31.252885 +2022,9,18,1,New South Wales,152.921777,-31.458666 +2020,1,1,1,New South Wales,150.836568,-34.066218 +2021,5,30,1,New South Wales,150.640927,-34.396199 +2021,5,5,1,New South Wales,150.632717,-34.418912 +2021,12,5,1,New South Wales,150.790406,-34.190111 +2024,8,26,1,New South Wales,152.283995,-31.633895 +2021,12,16,1,New South Wales,152.106292,-32.72845 +2021,11,13,1,New South Wales,152.90672,-31.471275 +2020,9,11,1,New South Wales,153.071009,-30.309466 +2023,2,1,1,New South Wales,153.556199,-28.398854 +2021,5,24,1,New South Wales,150.659333,-34.457317 +2021,7,25,1,New South Wales,153.39463,-28.288936 +2022,11,29,1,New South Wales,152.106292,-32.72845 +2021,5,16,1,New South Wales,150.524092,-34.462792 +2021,5,12,1,New South Wales,150.521743,-34.467144 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2021,7,2,1,New South Wales,150.523085,-34.466297 +2021,9,7,1,New South Wales,152.300422,-31.948252 +2021,6,6,1,New South Wales,150.625959,-34.389724 +2023,2,13,1,New South Wales,153.110538,-29.490012 +2021,1,27,1,New South Wales,149.550911,-33.563133 +2021,5,6,1,New South Wales,150.603514,-34.427449 +2020,11,25,1,New South Wales,153.287996,-28.836062 +2021,4,28,1,New South Wales,150.601412,-34.426741 +2021,5,13,1,New South Wales,153.60144,-28.7273 +2021,8,7,1,New South Wales,153.079647,-30.351336 +2021,6,24,1,New South Wales,150.60567,-34.437291 +2022,6,29,1,New South Wales,152.876765,-31.491562 +2021,5,20,1,New South Wales,150.522326,-34.465091 +2021,9,19,1,New South Wales,150.79435,-34.20284 +2021,5,5,1,New South Wales,150.520613,-34.436145 +2023,9,4,1,New South Wales,150.786188,-33.705995 +2020,10,17,1,New South Wales,152.657979,-28.39705 +2021,5,12,1,New South Wales,150.604306,-34.438959 +2021,7,20,1,New South Wales,150.516918,-34.448862 +2020,8,15,1,New South Wales,152.908723,-31.454815 +2021,5,4,1,New South Wales,150.611755,-34.419631 +2023,8,28,1,New South Wales,150.784226,-33.716817 +2021,5,7,1,New South Wales,150.603941,-34.42697 +2020,2,8,1,New South Wales,152.900846,-31.47374 +2021,6,20,1,New South Wales,150.309018,-29.123301 +2022,11,10,1,New South Wales,152.787182,-31.631189 +2021,4,18,1,New South Wales,152.871849,-31.479051 +2021,6,18,1,New South Wales,150.514086,-34.44638 +2022,4,17,1,New South Wales,150.941547,-34.110018 +2021,8,15,1,New South Wales,150.791409,-34.197825 +2020,4,24,1,New South Wales,153.470868,-28.650297 +2021,5,3,1,New South Wales,150.637302,-34.488645 +2020,12,9,1,New South Wales,149.960189,-36.280531 +2021,5,30,1,New South Wales,150.615783,-34.438291 +2021,2,7,1,New South Wales,153.557114,-28.400283 +2020,10,30,1,New South Wales,149.943147,-36.549371 +2021,5,30,1,New South Wales,150.61571,-34.438542 +2022,12,20,1,New South Wales,153.110603,-29.489746 +2021,5,28,1,New South Wales,150.522358,-34.46584 +2022,11,22,1,New South Wales,152.759299,-30.84178 +2023,4,21,1,New South Wales,153.337649,-28.264271 +2023,11,11,1,New South Wales,150.999236,-34.083644 +2023,4,6,1,New South Wales,153.095813,-29.484777 +2021,4,4,1,New South Wales,150.664149,-34.458671 +2021,7,2,1,New South Wales,150.64061,-34.398176 +2021,5,18,1,New South Wales,150.514576,-34.443802 +2021,8,6,1,New South Wales,150.513133,-34.445855 +2021,9,18,1,New South Wales,150.615387,-34.451464 +2021,4,18,1,New South Wales,150.6091,-34.418885 +2023,5,29,1,New South Wales,153.556542,-28.397522 +2021,5,19,1,New South Wales,150.630918,-34.388216 +2021,9,26,1,New South Wales,150.871039,-34.023785 +2020,1,22,1,New South Wales,153.110297,-29.490194 +2021,5,17,1,New South Wales,150.613526,-34.431927 +2021,4,19,1,New South Wales,150.630863,-34.394003 +2020,8,13,1,New South Wales,153.547409,-28.38442 +2021,10,24,1,New South Wales,153.107679,-29.472733 +2021,5,26,1,New South Wales,150.522189,-34.464944 +2021,4,28,1,New South Wales,150.604201,-34.434999 +2020,11,26,1,New South Wales,152.915607,-31.437744 +2021,6,28,1,New South Wales,150.627347,-34.420296 +2021,11,22,1,New South Wales,153.382207,-28.879979 +2022,11,20,1,New South Wales,152.794854,-30.893434 +2021,7,7,1,New South Wales,150.63098,-34.388325 +2021,6,18,1,New South Wales,150.603817,-34.426716 +2023,5,5,1,New South Wales,149.967242,-36.576557 +2020,12,9,1,New South Wales,153.300206,-28.886464 +2023,9,11,1,New South Wales,150.74435,-34.28401 +2020,11,27,1,New South Wales,153.101354,-29.489984 +2023,8,1,1,New South Wales,153.289662,-28.865871 +2024,4,16,1,New South Wales,152.60191,-31.651384 +2021,7,19,1,New South Wales,150.516164,-34.447864 +2021,5,17,1,New South Wales,150.637334,-34.42378 +2021,9,4,1,New South Wales,150.833136,-34.085987 +2021,6,13,1,New South Wales,150.626112,-34.384724 +2021,5,15,1,New South Wales,153.401988,-28.260476 +2021,6,8,1,New South Wales,150.518636,-34.447446 +2021,4,25,1,New South Wales,150.625776,-34.395455 +2021,7,26,1,New South Wales,152.083495,-32.73076 +2021,6,4,1,New South Wales,150.604248,-34.426481 +2021,7,2,1,New South Wales,150.605098,-34.432177 +2024,9,3,1,New South Wales,151.23422,-33.118462 +2020,2,5,1,New South Wales,152.893154,-29.743427 +2021,4,27,1,New South Wales,150.51826,-34.448745 +2021,4,29,1,New South Wales,150.610401,-34.419037 +2022,10,27,1,New South Wales,152.092763,-32.738697 +2021,5,19,1,New South Wales,150.633731,-34.418463 +2021,5,15,1,New South Wales,150.517759,-34.441424 +2020,1,3,1,New South Wales,153.104289,-29.479963 +2022,6,16,1,New South Wales,153.151184,-28.530563 +2021,7,7,1,New South Wales,150.631257,-34.387348 +2021,3,6,1,New South Wales,150.515086,-34.447897 +2021,4,29,1,New South Wales,150.634414,-34.42009 +2022,6,23,1,New South Wales,152.79338,-31.642346 +2020,9,26,1,New South Wales,150.841021,-34.064689 +2023,4,3,1,New South Wales,150.384554,-34.618598 +2021,8,3,1,New South Wales,150.518979,-34.447245 +2020,12,,1,New South Wales,152.864165,-31.291869 +2020,11,24,1,New South Wales,153.091757,-29.487901 +2021,7,31,1,New South Wales,150.520415,-34.465675 +2023,8,15,1,New South Wales,150.7854,-33.715285 +2021,5,1,1,New South Wales,150.624221,-34.388915 +2020,10,21,1,New South Wales,149.947183,-36.617465 +2021,6,16,1,New South Wales,150.515338,-34.460307 +2021,5,7,1,New South Wales,150.6216,-34.397745 +2021,6,15,1,New South Wales,150.640048,-34.398463 +2020,7,17,1,New South Wales,150.468886,-34.491005 +2023,10,10,1,New South Wales,153.427967,-28.626458 +2021,6,6,1,New South Wales,150.630641,-34.420765 +2020,12,9,1,New South Wales,153.300206,-28.886464 +2021,5,8,1,New South Wales,150.637376,-34.423826 +2020,5,24,1,Queensland,153.356959,-27.969639 +2023,12,6,1,New South Wales,152.924007,-31.452858 +2021,8,23,1,New South Wales,152.924885,-31.459228 +2023,7,27,1,New South Wales,153.302393,-28.846635 +2023,1,26,1,New South Wales,152.941787,-30.493961 +2022,11,18,1,New South Wales,153.230665,-28.873965 +2023,12,12,1,New South Wales,153.451495,-28.933402 +2022,6,5,1,New South Wales,152.901,-31.442828 +2022,10,27,1,New South Wales,151.061084,-29.741085 +2020,11,11,1,New South Wales,152.934694,-29.612254 +2021,8,9,1,New South Wales,150.518345,-34.437036 +2020,9,12,1,New South Wales,153.331243,-28.821749 +2020,10,27,1,New South Wales,149.984095,-36.575978 +2021,4,13,1,New South Wales,150.527487,-34.457299 +2021,6,29,1,New South Wales,150.627284,-34.42024 +2021,11,29,1,New South Wales,152.92031,-31.475472 +2021,5,24,1,New South Wales,150.527478,-34.469397 +2021,5,12,1,New South Wales,150.60437,-34.438978 +2021,9,12,1,New South Wales,151.817463,-32.34057 +2024,1,18,1,New South Wales,153.1046,-29.477287 +2020,3,21,1,New South Wales,150.82369,-34.14127 +2021,6,25,1,New South Wales,150.627422,-34.420333 +2021,2,5,1,New South Wales,149.55107,-33.562852 +2020,11,12,1,New South Wales,153.345917,-28.689903 +2021,9,28,1,New South Wales,152.82489,-31.2829 +2023,4,17,1,New South Wales,150.170845,-31.074172 +2021,4,27,1,New South Wales,150.615446,-34.43558 +2021,8,17,1,New South Wales,152.929367,-31.459677 +2021,6,17,1,New South Wales,150.622652,-34.383998 +2021,5,30,1,New South Wales,150.639177,-34.491269 +2020,7,8,1,New South Wales,152.797166,-30.213731 +2021,4,22,1,New South Wales,150.614398,-34.429591 +2020,12,15,1,New South Wales,152.877594,-29.676411 +2020,4,10,1,New South Wales,153.108242,-29.49043 +2021,4,22,1,New South Wales,150.605071,-34.433105 +2020,5,3,1,New South Wales,150.01912,-34.83704 +2021,9,21,1,New South Wales,152.93879,-29.728067 +2021,12,12,1,New South Wales,152.923405,-31.46972 +2023,4,22,1,New South Wales,152.925636,-31.472366 +2021,5,1,1,New South Wales,150.617356,-34.399726 +2022,6,13,1,New South Wales,151.003336,-34.072952 +2022,11,9,1,New South Wales,150.790845,-34.157547 +2021,8,9,1,New South Wales,150.975774,-34.054438 +2022,6,11,1,New South Wales,152.920728,-31.455822 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2021,7,5,1,New South Wales,150.643859,-34.393235 +2022,8,5,1,New South Wales,150.799222,-34.215361 +2022,3,5,1,New South Wales,150.985076,-34.096306 +2020,1,2,1,New South Wales,152.928723,-31.459132 +2020,8,3,1,New South Wales,152.793529,-31.12713 +2022,8,27,1,New South Wales,153.401668,-28.25571 +2021,6,1,1,New South Wales,150.639614,-34.400356 +2021,11,30,1,New South Wales,152.243297,-31.810661 +2021,6,5,1,New South Wales,150.615511,-34.43522 +2023,7,15,1,New South Wales,153.109304,-29.490698 +2022,10,9,1,New South Wales,153.473468,-28.268362 +2021,4,22,1,New South Wales,150.616378,-34.433416 +2021,5,27,1,New South Wales,153.109392,-30.298612 +2020,8,26,1,New South Wales,153.278134,-28.679301 +2021,10,2,1,New South Wales,150.613778,-34.298488 +2021,6,25,1,New South Wales,150.597905,-34.418152 +2021,4,26,1,New South Wales,150.637395,-34.488034 +2021,5,6,1,New South Wales,150.605993,-34.437802 +2021,9,16,1,New South Wales,150.515171,-34.44761 +2021,7,14,1,New South Wales,150.627058,-34.420903 +2021,4,21,1,New South Wales,150.604676,-34.424451 +2021,5,27,1,New South Wales,150.638936,-34.491715 +2021,4,22,1,New South Wales,149.984322,-36.659369 +2021,6,16,1,New South Wales,150.524444,-34.451593 +2021,5,15,1,New South Wales,150.640241,-34.494076 +2020,6,1,1,New South Wales,153.103999,-29.484642 +2022,8,25,1,New South Wales,151.640482,-30.33086 +2023,2,1,1,New South Wales,152.194689,-32.216116 +2021,6,8,1,New South Wales,150.531386,-34.457927 +2023,6,7,1,New South Wales,152.865796,-31.270924 +2020,1,19,1,New South Wales,152.106618,-32.728997 +2021,3,6,1,New South Wales,150.522247,-34.46408 +2022,11,18,1,New South Wales,152.794854,-30.893434 +2021,6,23,1,New South Wales,150.514299,-34.446546 +2020,6,18,1,New South Wales,153.103795,-29.485499 +2020,7,20,1,New South Wales,152.775507,-31.491536 +2020,10,28,1,New South Wales,149.984095,-36.575978 +2020,8,25,1,New South Wales,152.955462,-30.66667 +2020,6,26,1,New South Wales,150.8046,-34.157201 +2023,7,15,1,New South Wales,150.786303,-33.704417 +2021,8,23,1,New South Wales,150.524961,-34.495625 +2020,10,16,1,New South Wales,149.941399,-36.632151 +2021,9,18,1,New South Wales,150.808987,-34.208693 +2022,5,21,1,New South Wales,152.379463,-31.919231 +2020,2,16,1,New South Wales,146.563224,-34.745648 +2021,11,12,1,New South Wales,153.564056,-28.387975 +2020,9,3,1,New South Wales,153.002388,-29.182013 +2020,5,28,1,New South Wales,152.921575,-30.509627 +2020,10,29,1,New South Wales,152.930176,-31.467513 +2023,4,11,1,New South Wales,152.063956,-32.706625 +2021,5,24,1,New South Wales,150.615999,-34.434905 +2020,4,2,1,New South Wales,152.784419,-31.726571 +2021,6,16,1,New South Wales,150.617138,-34.433855 +2020,9,24,1,New South Wales,152.898068,-31.442926 +2021,6,19,1,New South Wales,150.622518,-34.38451 +2023,2,2,1,New South Wales,153.301846,-28.818794 +2021,7,10,1,New South Wales,153.102508,-29.487784 +2022,12,28,1,New South Wales,150.974638,-34.100506 +2023,11,1,1,New South Wales,152.914421,-31.451443 +2020,11,12,1,New South Wales,150.844858,-29.834309 +2021,4,4,1,New South Wales,150.634429,-34.488599 +2023,10,6,1,New South Wales,152.927351,-31.444902 +2020,8,29,1,New South Wales,150.808987,-34.208693 +2020,9,9,1,New South Wales,150.833136,-34.085987 +2021,12,10,1,New South Wales,153.108199,-29.490269 +2021,6,11,1,New South Wales,150.524335,-34.459362 +2024,6,12,1,New South Wales,152.327246,-31.90123 +2023,9,24,1,New South Wales,153.395987,-28.919066 +2020,8,12,1,New South Wales,152.82484,-29.505641 +2021,9,11,1,New South Wales,153.071977,-30.880197 +2021,3,23,1,New South Wales,150.659283,-34.458317 +2020,4,12,1,New South Wales,150.078969,-33.770274 +2024,1,16,1,New South Wales,152.821574,-30.91474 +2021,9,11,1,New South Wales,150.515894,-34.444478 +2021,9,9,1,New South Wales,152.812262,-31.519199 +2021,5,19,1,New South Wales,150.61378,-34.431049 +2022,1,19,1,New South Wales,152.926032,-31.453009 +2021,1,14,1,New South Wales,153.06119,-30.36468 +2021,8,21,1,New South Wales,150.798085,-34.189423 +2023,3,20,1,New South Wales,153.095142,-29.483334 +2021,1,29,1,New South Wales,152.915571,-31.435911 +2022,5,4,1,New South Wales,153.292753,-28.863674 +2020,8,3,1,New South Wales,152.796697,-31.1269 +2020,1,13,1,New South Wales,151.052862,-34.072982 +2021,9,29,1,New South Wales,153.620433,-28.649832 +2021,8,14,1,New South Wales,150.529024,-34.471979 +2021,5,13,1,New South Wales,153.60144,-28.7273 +2021,4,23,1,New South Wales,150.61708,-34.434395 +2022,11,19,1,New South Wales,151.624706,-30.402213 +2020,11,1,1,New South Wales,149.915309,-36.574566 +2020,5,21,1,New South Wales,150.659722,-33.527069 +2021,6,19,1,New South Wales,150.808259,-34.098127 +2020,6,10,1,New South Wales,152.864853,-31.467655 +2023,10,30,1,New South Wales,153.110216,-29.490241 +2021,6,10,1,New South Wales,150.60516,-34.437984 +2021,5,9,1,New South Wales,150.616306,-34.435957 +2022,6,8,1,New South Wales,150.711906,-33.512784 +2021,4,20,1,New South Wales,150.636877,-34.422644 +2023,12,9,1,New South Wales,153.098152,-29.489199 +2020,1,30,1,New South Wales,152.745717,-31.246426 +2023,7,15,1,New South Wales,150.785778,-33.714032 +2021,3,28,1,New South Wales,150.659165,-34.459054 +2020,11,6,1,New South Wales,150.010074,-36.579686 +2023,5,11,1,New South Wales,152.863584,-31.299396 +2021,5,11,1,New South Wales,150.517392,-34.453443 +2021,6,22,1,New South Wales,153.477993,-28.248694 +2023,8,18,1,New South Wales,152.902947,-30.241077 +2020,12,1,1,New South Wales,153.308892,-29.058961 +2022,9,8,1,New South Wales,153.109728,-29.490217 +2021,12,29,1,New South Wales,152.914772,-31.485275 +2021,7,14,1,New South Wales,153.355574,-28.388147 +2020,10,29,1,New South Wales,150.894781,-34.005673 +2021,5,28,1,New South Wales,150.515867,-34.448715 +2023,12,14,1,New South Wales,152.929906,-31.461057 +2021,4,29,1,New South Wales,150.607145,-34.435174 +2021,5,4,1,New South Wales,150.516543,-34.447214 +2021,9,20,1,New South Wales,150.517308,-34.446346 +2023,5,25,1,New South Wales,153.100764,-29.490133 +2021,5,31,1,New South Wales,150.630366,-34.420877 +2021,4,18,1,New South Wales,150.515988,-34.44942 +2021,7,21,1,New South Wales,150.630244,-34.420956 +2020,10,12,1,New South Wales,153.458959,-28.651389 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2022,6,13,1,New South Wales,153.099761,-29.491492 +2022,4,19,1,New South Wales,152.91021,-31.465813 +2022,8,29,1,New South Wales,152.077509,-32.72228 +2021,6,1,1,New South Wales,150.638444,-34.491021 +2021,9,11,1,New South Wales,153.317932,-28.826223 +2021,6,29,1,New South Wales,150.596135,-34.411572 +2023,6,2,1,New South Wales,150.922668,-29.796463 +2021,5,27,1,New South Wales,150.522059,-34.464915 +2021,4,25,1,New South Wales,150.605236,-34.423913 +2022,8,30,1,New South Wales,149.320608,-36.298419 +2021,7,15,1,New South Wales,149.407839,-33.458223 +2024,1,22,1,New South Wales,152.868353,-31.473137 +2024,3,16,1,New South Wales,152.063674,-32.705575 +2021,3,12,1,New South Wales,153.087946,-30.355053 +2020,6,12,1,New South Wales,151.992766,-32.721062 +2022,3,22,1,New South Wales,152.923069,-31.475748 +2021,7,18,1,New South Wales,150.628039,-34.420471 +2021,11,5,1,New South Wales,153.277104,-28.829011 +2022,2,11,1,New South Wales,152.359003,-31.924406 +2024,3,24,1,New South Wales,153.098775,-30.301964 +2021,6,2,1,New South Wales,150.637881,-34.490135 +2021,3,15,1,New South Wales,150.615372,-34.434361 +2020,8,30,1,New South Wales,151.660859,-32.660683 +2021,5,12,1,New South Wales,150.521741,-34.467198 +2020,5,8,1,New South Wales,152.037485,-32.307678 +2021,7,18,1,New South Wales,150.624593,-34.386119 +2020,5,,1,New South Wales,152.008807,-32.727125 +2020,10,23,1,New South Wales,149.984303,-36.560469 +2021,4,26,1,New South Wales,150.615788,-34.436208 +2021,9,11,1,New South Wales,150.200496,-29.353924 +2020,4,16,1,New South Wales,152.881414,-31.422518 +2024,5,30,1,New South Wales,152.927818,-31.464685 +2022,11,18,1,New South Wales,152.760068,-30.904021 +2022,11,17,1,New South Wales,152.760068,-30.904021 +2021,4,12,1,New South Wales,150.517382,-34.447529 +2024,9,21,1,New South Wales,146.595526,-34.771816 +2023,10,28,1,New South Wales,150.787125,-33.705345 +2023,4,15,1,New South Wales,152.926066,-31.454469 +2020,10,9,1,New South Wales,152.089284,-32.729391 +2020,8,14,1,New South Wales,152.870582,-29.679946 +2021,10,4,1,New South Wales,151.01625,-33.993331 +2021,3,27,1,New South Wales,150.616055,-34.434852 +2023,3,22,1,New South Wales,153.108081,-29.490222 +2021,4,21,1,New South Wales,150.637103,-34.422333 +2021,3,5,1,New South Wales,150.520187,-34.453517 +2021,4,12,1,New South Wales,150.523906,-34.452511 +2021,12,30,1,New South Wales,153.109412,-29.490479 +2020,10,29,1,New South Wales,149.96897,-36.58553 +2021,3,6,1,New South Wales,150.610213,-34.419899 +2021,4,25,1,New South Wales,150.630022,-34.388352 +2022,12,19,1,New South Wales,153.340451,-28.977061 +2022,12,31,1,New South Wales,153.103795,-29.485585 +2022,8,17,1,New South Wales,153.10394,-29.48961 +2021,6,24,1,New South Wales,150.601183,-34.417252 +2021,3,25,1,New South Wales,150.659652,-34.45836 +2020,12,1,1,New South Wales,152.721847,-31.513788 +2021,1,5,1,New South Wales,153.608324,-28.663223 +2023,6,11,1,New South Wales,153.316254,-28.823717 +2021,7,5,1,New South Wales,150.52236,-34.465795 +2021,3,15,1,New South Wales,152.03473,-32.76541 +2023,8,6,1,New South Wales,153.104117,-29.483741 +2021,6,25,1,New South Wales,150.625244,-34.386185 +2021,6,5,1,New South Wales,150.53462,-34.459354 +2020,1,12,1,New South Wales,152.879717,-31.42403 +2021,3,17,1,New South Wales,150.603317,-34.439661 +2020,10,24,1,New South Wales,149.96897,-36.58553 +2023,11,26,1,New South Wales,150.783956,-33.717673 +2020,9,28,1,New South Wales,153.277131,-28.738801 +2022,9,28,1,New South Wales,150.896544,-33.96711 +2021,11,12,1,New South Wales,153.315723,-28.824561 +2023,6,5,1,New South Wales,149.776514,-32.373929 +2022,9,19,1,New South Wales,152.063384,-32.706502 +2021,5,18,1,New South Wales,150.519868,-34.452871 +2021,5,9,1,New South Wales,153.561535,-28.388682 +2022,2,5,1,New South Wales,153.301675,-28.823407 +2020,1,24,1,New South Wales,152.915395,-31.47699 +2024,2,8,1,New South Wales,152.696939,-30.425791 +2020,4,2,1,New South Wales,152.801207,-31.675199 +2023,11,3,1,New South Wales,152.914421,-31.451443 +2021,5,30,1,New South Wales,150.639111,-34.491304 +2022,3,28,1,New South Wales,152.113242,-32.741594 +2020,10,12,1,New South Wales,149.938155,-36.621708 +2021,4,1,1,New South Wales,150.609889,-34.429755 +2021,4,28,1,New South Wales,150.603973,-34.452494 +2021,9,27,1,New South Wales,152.832,-31.26349 +2023,6,5,1,New South Wales,150.801488,-34.18588 +2021,12,13,1,New South Wales,153.293158,-28.864686 +2022,9,23,1,New South Wales,153.430836,-29.017366 +2022,5,20,1,New South Wales,153.104804,-29.476932 +2021,4,11,1,New South Wales,150.522857,-34.452643 +2022,8,24,1,New South Wales,152.374119,-31.915496 +2021,6,29,1,New South Wales,150.64372,-34.394702 +2022,7,17,1,New South Wales,150.853861,-34.077418 +2021,5,13,1,New South Wales,150.517487,-34.453544 +2021,7,12,1,New South Wales,150.52268,-34.464161 +2021,6,22,1,New South Wales,150.619716,-34.439648 +2021,8,7,1,New South Wales,150.604495,-34.425485 +2020,2,14,1,New South Wales,153.276967,-28.874019 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2021,5,4,1,New South Wales,149.375607,-33.493056 +2020,12,15,1,New South Wales,153.383072,-28.652487 +2021,6,4,1,New South Wales,150.6067,-34.437789 +2020,1,16,1,New South Wales,153.223558,-28.94558 +2023,12,24,1,New South Wales,152.06373,-32.706589 +2021,11,9,1,New South Wales,153.277104,-28.829011 +2023,5,30,1,New South Wales,152.164385,-31.602724 +2020,6,24,1,New South Wales,152.650594,-31.535114 +2021,5,15,1,New South Wales,150.629866,-34.395408 +2021,6,3,1,New South Wales,150.604747,-34.427311 +2022,9,26,1,New South Wales,152.925254,-31.454049 +2024,4,18,1,New South Wales,152.921875,-31.449865 +2021,4,20,1,New South Wales,150.630294,-34.394523 +2021,2,11,1,New South Wales,152.785428,-29.577133 +2023,8,23,1,New South Wales,152.897336,-31.474783 +2021,6,18,1,New South Wales,150.514098,-34.446362 +2021,11,27,1,New South Wales,150.615268,-34.441085 +2020,7,13,1,New South Wales,152.888398,-31.453626 +2023,11,1,1,New South Wales,152.690396,-31.485999 +2021,5,25,1,New South Wales,150.526776,-34.469581 +2023,9,12,1,New South Wales,150.747171,-34.185522 +2021,4,12,1,New South Wales,150.51923,-34.445033 +2021,4,27,1,New South Wales,150.635652,-34.41823 +2021,5,20,1,New South Wales,153.432977,-28.968203 +2020,1,24,1,New South Wales,152.359003,-31.924406 +2021,9,29,1,New South Wales,151.587159,-32.967069 +2021,6,23,1,New South Wales,150.619747,-34.439694 +2021,7,15,1,New South Wales,150.604702,-34.438029 +2023,10,19,1,New South Wales,151.106712,-29.768492 +2020,10,26,1,New South Wales,152.080757,-32.7224 +2020,10,16,1,New South Wales,149.941399,-36.632151 +2020,9,12,1,New South Wales,152.878917,-31.44848 +2021,7,10,1,New South Wales,150.599119,-34.412974 +2021,5,24,1,New South Wales,150.616001,-34.434815 +2023,9,11,1,New South Wales,150.69922,-34.27546 +2021,8,6,1,New South Wales,150.514373,-34.440724 +2022,6,17,1,New South Wales,153.104353,-29.477604 +2021,3,7,1,New South Wales,150.514217,-34.445995 +2020,6,18,1,New South Wales,151.019133,-34.03974 +2021,4,25,1,New South Wales,150.605426,-34.423727 +2021,5,3,1,New South Wales,150.621136,-34.398754 +2020,7,15,1,New South Wales,153.104141,-29.485092 +2021,5,10,1,New South Wales,150.610959,-34.457499 +2020,11,16,1,New South Wales,153.317852,-28.929063 +2021,3,30,1,New South Wales,150.515109,-34.447473 +2021,5,17,1,New South Wales,150.632751,-34.418877 +2020,10,23,1,New South Wales,149.984303,-36.560469 +2021,7,28,1,New South Wales,150.609668,-34.436377 +2021,10,2,1,New South Wales,153.525697,-28.230931 +2021,5,28,1,New South Wales,150.515778,-34.448794 +2022,10,15,1,New South Wales,152.070568,-32.713292 +2021,9,23,1,New South Wales,153.618043,-28.660191 +2023,5,31,1,New South Wales,153.108124,-29.490203 +2020,5,,1,New South Wales,152.021572,-32.737707 +2021,10,2,1,New South Wales,151.948245,-32.769662 +2023,9,9,1,New South Wales,153.096049,-29.484899 +2023,5,22,1,New South Wales,152.432341,-32.089861 +2021,1,2,1,New South Wales,152.928543,-31.464292 +2021,8,11,1,New South Wales,153.4018,-28.257095 +2021,3,19,1,New South Wales,150.517262,-34.451601 +2023,9,14,1,New South Wales,150.79293,-34.13792 +2021,5,9,1,New South Wales,150.632702,-34.418272 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2020,12,10,1,New South Wales,149.954748,-36.297726 +2022,12,16,1,New South Wales,153.52522,-28.221806 +2021,7,6,1,New South Wales,153.108119,-29.490292 +2020,9,7,1,New South Wales,150.406039,-31.386864 +2021,5,20,1,New South Wales,150.631103,-34.387417 +2022,8,19,1,New South Wales,153.104358,-29.477674 +2021,6,13,1,New South Wales,150.522435,-34.465806 +2020,11,13,1,New South Wales,150.003238,-36.547042 +2022,5,20,1,New South Wales,153.343996,-28.749883 +2021,9,16,1,New South Wales,150.847824,-34.05187 +2020,11,10,1,New South Wales,152.873603,-31.457792 +2021,6,21,1,New South Wales,150.639177,-34.392685 +2021,8,24,1,New South Wales,150.64014,-34.395931 +2021,5,3,1,New South Wales,150.608613,-34.435951 +2022,1,14,1,New South Wales,153.39503,-29.014516 +2023,1,3,1,New South Wales,152.784754,-31.634448 +2020,10,31,1,New South Wales,149.984095,-36.575978 +2021,5,28,1,New South Wales,150.834423,-34.111288 +2022,1,3,1,New South Wales,150.810123,-34.103174 +2021,6,16,1,New South Wales,150.62282,-34.383839 +2021,7,8,1,New South Wales,150.275124,-33.278915 +2021,5,31,1,New South Wales,150.616107,-34.437991 +2021,7,6,1,New South Wales,153.101274,-29.489736 +2022,12,24,1,New South Wales,152.926698,-31.46408 +2021,6,3,1,New South Wales,150.604747,-34.42732 +2021,6,14,1,New South Wales,150.630369,-34.420778 +2021,5,30,1,New South Wales,150.631267,-34.420173 +2023,8,22,1,New South Wales,151.718753,-32.717776 +2021,1,21,1,New South Wales,153.607954,-28.664639 +2021,8,1,1,New South Wales,150.605927,-34.437431 +2023,7,3,1,New South Wales,152.942564,-30.68719 +2022,10,11,1,New South Wales,153.464393,-28.502506 +2020,11,2,1,New South Wales,149.915309,-36.574566 +2021,6,5,1,New South Wales,150.657628,-34.455626 +2021,9,14,1,New South Wales,150.64212,-34.397087 +2021,7,7,1,New South Wales,150.627486,-34.421552 +2021,7,14,1,New South Wales,150.627202,-34.385782 +2020,12,21,1,New South Wales,153.103768,-29.48565 +2021,5,28,1,New South Wales,150.617538,-34.438551 +2022,9,20,1,New South Wales,153.306858,-28.820578 +2022,10,30,1,New South Wales,152.539311,-32.065087 +2021,10,11,1,New South Wales,153.229565,-28.889215 +2023,8,7,1,New South Wales,150.802726,-34.111403 +2022,11,25,1,New South Wales,152.770676,-30.853416 +2023,3,2,1,New South Wales,152.063365,-32.706209 +2020,1,25,1,New South Wales,150.665991,-33.570942 +2023,6,7,1,New South Wales,152.854757,-31.05168 +2022,1,18,1,New South Wales,152.917743,-31.479438 +2020,10,29,1,New South Wales,149.984303,-36.560469 +2021,12,30,1,New South Wales,152.089896,-32.728381 +2022,12,22,1,New South Wales,152.063966,-32.706586 +2021,5,9,1,New South Wales,150.60918,-34.420654 +2020,9,7,1,New South Wales,153.245128,-28.891406 +2021,3,8,1,New South Wales,150.604298,-34.438851 +2021,4,28,1,New South Wales,150.616839,-34.42944 +2020,12,9,1,New South Wales,153.300206,-28.886464 +2022,10,4,1,New South Wales,152.910638,-31.465376 +2021,6,21,1,New South Wales,150.519909,-34.452619 +2021,7,31,1,New South Wales,150.518573,-34.435599 +2021,6,17,1,New South Wales,150.521168,-34.4656 +2021,7,10,1,New South Wales,150.640933,-34.393278 +2020,5,8,1,New South Wales,150.03915,-34.91121 +2021,12,29,1,New South Wales,152.146989,-32.120969 +2023,1,18,1,New South Wales,152.787249,-31.636669 +2021,6,2,1,New South Wales,150.639788,-34.39917 +2021,5,27,1,New South Wales,150.51605,-34.449521 +2021,4,25,1,New South Wales,150.615886,-34.436192 +2022,12,22,1,New South Wales,150.784467,-34.192201 +2020,11,3,1,New South Wales,153.335449,-28.872021 +2021,12,3,1,New South Wales,153.360098,-28.677843 +2020,11,6,1,New South Wales,150.010074,-36.579686 +2021,6,1,1,New South Wales,150.626112,-34.390467 +2021,4,22,1,New South Wales,150.637372,-34.420517 +2021,10,29,1,New South Wales,152.996446,-30.413154 +2023,8,13,1,New South Wales,152.164217,-31.602615 +2021,3,13,1,New South Wales,153.103688,-29.485702 +2021,4,20,1,New South Wales,150.636333,-34.485562 +2021,6,25,1,New South Wales,150.604997,-34.43762 +2021,7,24,1,New South Wales,150.901403,-33.998514 +2021,4,29,1,New South Wales,150.619075,-34.400869 +2023,11,22,1,New South Wales,150.785137,-33.713066 +2024,1,31,1,New South Wales,152.298885,-31.945394 +2022,9,19,1,New South Wales,150.791721,-34.155007 +2024,4,23,1,New South Wales,152.426741,-31.944525 +2020,12,9,1,New South Wales,153.300206,-28.886464 +2024,5,23,1,New South Wales,152.063821,-32.706659 +2020,10,2,1,New South Wales,152.467894,-31.950763 +2022,8,4,1,New South Wales,152.877483,-31.489975 +2021,6,17,1,New South Wales,150.630267,-34.42092 +2024,2,8,1,New South Wales,150.785632,-33.714005 +2020,9,6,1,New South Wales,153.103633,-29.485488 +2020,1,10,1,New South Wales,151.19568,-29.78683 +2023,1,23,1,New South Wales,153.31159,-28.822311 +2021,6,22,1,New South Wales,150.520295,-34.46569 +2021,5,16,1,New South Wales,150.516298,-34.449607 +2021,4,30,1,New South Wales,150.603633,-34.427469 +2021,5,4,1,New South Wales,150.60661,-34.457738 +2020,10,23,1,New South Wales,149.984303,-36.560469 +2021,5,2,1,New South Wales,150.519877,-34.466556 +2021,7,21,1,New South Wales,150.600422,-34.419121 +2021,8,7,1,New South Wales,150.641012,-34.397048 +2020,2,7,1,New South Wales,153.103859,-29.485417 +2022,2,26,1,New South Wales,153.326455,-28.835219 +2021,4,18,1,New South Wales,150.627749,-34.386414 +2021,10,29,1,New South Wales,152.98111,-30.437334 +2022,10,31,1,New South Wales,150.792436,-34.207368 +2020,3,31,1,New South Wales,153.101403,-29.48962 +2020,9,30,1,New South Wales,153.314983,-28.949201 +2021,5,9,1,New South Wales,150.519408,-34.451149 +2024,2,1,1,New South Wales,152.905808,-31.437226 +2020,1,18,1,New South Wales,153.103897,-29.485384 +2022,11,30,1,New South Wales,153.314983,-28.949201 +2021,12,15,1,New South Wales,153.387873,-28.646862 +2020,9,26,1,New South Wales,153.281771,-28.82399 +2024,4,25,1,New South Wales,150.44189,-34.47006 +2020,10,30,1,New South Wales,149.945227,-36.57753 +2022,11,1,1,New South Wales,152.886663,-30.409617 +2020,7,23,1,New South Wales,152.801751,-31.127639 +2020,,,1,New South Wales,153.435912,-28.968157 +2023,9,10,1,New South Wales,153.103865,-29.489582 +2021,4,26,1,New South Wales,150.625746,-34.38844 +2024,1,15,1,New South Wales,152.80457,-31.49933 +2020,10,12,1,New South Wales,153.496317,-28.331738 +2021,5,8,1,New South Wales,150.639112,-34.491629 +2020,10,30,1,New South Wales,149.958935,-36.568735 +2020,10,28,1,New South Wales,149.96897,-36.58553 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2021,6,26,1,New South Wales,150.627292,-34.42034 +2021,6,30,1,New South Wales,150.626468,-34.390582 +2020,10,29,1,New South Wales,149.96897,-36.58553 +2021,9,30,1,New South Wales,152.832902,-31.474812 +2024,1,16,1,New South Wales,152.690045,-31.579407 +2021,11,30,1,New South Wales,153.316272,-28.823818 +2023,10,30,1,New South Wales,152.189597,-32.229205 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2021,5,6,1,New South Wales,150.622025,-34.397717 +2023,9,12,1,New South Wales,152.616032,-30.332117 +2020,10,10,1,New South Wales,149.941793,-36.651646 +2023,12,23,1,New South Wales,150.784208,-33.717267 +2021,6,1,1,New South Wales,150.62901,-34.390306 +2021,6,16,1,New South Wales,150.611363,-34.430722 +2020,10,20,1,New South Wales,153.418397,-29.028181 +2021,3,1,1,New South Wales,150.603328,-34.436605 +2020,1,2,1,New South Wales,152.695777,-31.869252 +2022,11,7,1,New South Wales,152.356052,-31.879896 +2021,6,5,1,New South Wales,150.624317,-34.389728 +2021,10,19,1,New South Wales,152.897748,-31.456388 +2020,9,12,1,New South Wales,150.04927,-31.13545 +2021,5,23,1,New South Wales,150.630876,-34.388143 +2021,3,24,1,New South Wales,150.516863,-34.446301 +2021,8,23,1,New South Wales,152.905478,-31.467655 +2022,8,30,1,New South Wales,153.620547,-28.656619 +2020,10,26,1,New South Wales,149.984095,-36.575978 +2023,8,28,1,New South Wales,149.552134,-33.49123 +2021,8,1,1,New South Wales,153.103007,-29.487117 +2021,5,16,1,New South Wales,150.629023,-34.395229 +2024,1,22,1,New South Wales,151.083923,-29.728212 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2021,6,18,1,New South Wales,150.522153,-34.451421 +2021,6,8,1,New South Wales,150.615025,-34.432813 +2020,9,6,1,New South Wales,153.094026,-29.488779 +2022,10,12,1,New South Wales,150.619592,-31.520218 +2023,8,3,1,New South Wales,152.044047,-32.206285 +2021,9,21,1,New South Wales,152.876721,-31.448261 +2020,2,18,1,New South Wales,152.924528,-31.444529 +2021,6,4,1,New South Wales,150.534663,-34.459003 +2021,7,20,1,New South Wales,150.516314,-34.448318 +2021,8,18,1,New South Wales,150.518629,-34.435555 +2021,6,19,1,New South Wales,150.627776,-34.420917 +2020,12,9,1,New South Wales,149.960189,-36.280531 +2023,9,17,1,New South Wales,152.906513,-31.397361 +2020,11,3,1,New South Wales,149.994744,-36.560944 +2023,8,3,1,New South Wales,152.210153,-31.56082 +2023,3,23,1,New South Wales,153.109369,-29.49046 +2021,5,14,1,New South Wales,150.616534,-34.435222 +2020,5,,1,New South Wales,152.092594,-32.738241 +2021,12,8,1,New South Wales,153.282038,-28.659861 +2020,2,28,1,New South Wales,150.789028,-33.508886 +2023,10,6,1,New South Wales,152.06384,-32.706596 +2023,10,21,1,New South Wales,153.11056,-29.489848 +2023,10,22,1,New South Wales,152.381397,-31.916008 +2021,4,29,1,New South Wales,150.614888,-34.429574 +2022,2,8,1,New South Wales,152.927336,-31.469229 +2022,11,25,1,New South Wales,152.795899,-30.884771 +2024,3,5,1,New South Wales,150.78523,-33.711613 +2022,12,8,1,New South Wales,150.738044,-34.304895 +2020,9,15,1,New South Wales,153.003085,-29.184661 +2021,4,28,1,New South Wales,150.634571,-34.4203 +2022,8,6,1,New South Wales,153.099352,-29.482872 +2021,7,22,1,New South Wales,150.62314,-34.38289 +2022,6,1,1,New South Wales,152.90074,-31.443074 +2021,5,24,1,New South Wales,150.617053,-34.434962 +2021,6,9,1,New South Wales,149.257182,-33.543126 +2021,11,9,1,New South Wales,152.378253,-31.91099 +2021,10,15,1,New South Wales,151.486263,-32.909303 +2023,10,23,1,New South Wales,152.923303,-31.476638 +2022,3,9,1,New South Wales,153.558471,-28.394095 +2021,6,22,1,New South Wales,150.520605,-34.453742 +2021,6,19,1,New South Wales,150.597627,-34.45025 +2020,10,17,1,New South Wales,151.780333,-32.714185 +2022,7,16,1,New South Wales,153.103366,-29.486379 +2024,8,15,1,New South Wales,152.488445,-32.353443 +2021,8,13,1,New South Wales,151.005752,-34.00339 +2021,5,6,1,New South Wales,150.627427,-34.389735 +2022,6,24,1,New South Wales,152.072872,-32.711199 +2021,5,20,1,New South Wales,150.639071,-34.493097 +2021,9,11,1,New South Wales,152.874232,-29.673432 +2022,9,26,1,New South Wales,153.109267,-29.490778 +2021,8,11,1,New South Wales,150.632061,-34.41825 +2023,8,24,1,New South Wales,152.912313,-31.455401 +2021,10,8,1,New South Wales,152.91386,-31.429887 +2020,11,1,1,New South Wales,149.968131,-36.578885 +2023,4,22,1,New South Wales,149.242726,-36.072073 +2020,10,30,1,New South Wales,149.968131,-36.578885 +2021,1,18,1,New South Wales,152.00351,-32.728513 +2021,4,19,1,New South Wales,150.61447,-34.42934 +2020,11,26,1,New South Wales,149.917922,-36.474664 +2021,5,27,1,New South Wales,150.639698,-34.39347 +2021,7,14,1,New South Wales,150.513759,-34.4464 +2023,1,2,1,New South Wales,153.075776,-30.355259 +2020,8,21,1,New South Wales,153.276362,-28.932217 +2022,1,19,1,New South Wales,152.88605,-30.51724 +2022,1,9,1,New South Wales,150.8506,-34.082903 +2020,10,21,1,New South Wales,153.091087,-29.48756 +2020,10,30,1,New South Wales,152.617704,-30.522436 +2021,5,19,1,New South Wales,150.520215,-34.452932 +2021,6,10,1,New South Wales,150.601376,-34.451604 +2023,7,28,1,New South Wales,152.908634,-31.441157 +2020,6,29,1,New South Wales,153.458172,-28.804602 +2021,8,14,1,New South Wales,150.518452,-34.43748 +2023,2,9,1,New South Wales,153.059872,-28.951966 +2021,7,10,1,New South Wales,150.630961,-34.388216 +2021,8,3,1,New South Wales,151.796381,-32.524306 +2023,10,10,1,New South Wales,152.967234,-30.662627 +2021,3,9,1,New South Wales,150.525051,-34.460549 +2021,4,24,1,New South Wales,150.638869,-34.421817 +2022,11,1,1,New South Wales,152.915465,-31.445873 +2021,5,9,1,New South Wales,150.639226,-34.491838 +2021,12,22,1,New South Wales,149.898037,-36.89271 +2021,7,21,1,New South Wales,150.517439,-34.44853 +2020,9,12,1,New South Wales,150.842133,-34.070234 +2022,5,6,1,New South Wales,152.418213,-31.905008 +2020,4,28,1,New South Wales,152.915061,-31.446455 +2020,11,3,1,New South Wales,152.03798,-32.732784 +2022,3,4,1,New South Wales,152.819394,-31.44913 +2022,12,24,1,New South Wales,152.915099,-31.45338 +2023,8,9,1,New South Wales,152.920421,-30.505548 +2021,9,13,1,New South Wales,152.744978,-30.091962 +2023,5,9,1,New South Wales,149.966961,-36.56748 +2023,9,29,1,New South Wales,153.316908,-28.834402 +2020,11,4,1,New South Wales,149.955017,-36.576791 +2023,9,16,1,New South Wales,152.0837,-32.7312 +2021,5,16,1,New South Wales,150.637345,-34.423789 +2022,4,17,1,New South Wales,153.464903,-28.649564 +2021,7,31,1,New South Wales,150.632768,-34.419806 +2021,5,8,1,New South Wales,150.637345,-34.423789 +2020,7,27,1,New South Wales,153.488933,-28.671975 +2024,2,12,1,New South Wales,152.063411,-32.706203 +2020,9,27,1,New South Wales,152.899808,-29.631666 +2023,12,13,1,New South Wales,152.725103,-30.221909 +2022,8,12,1,New South Wales,152.919406,-31.442995 +2021,9,25,1,New South Wales,150.549897,-34.462307 +2020,1,7,1,New South Wales,152.795725,-30.217086 +2021,4,6,1,New South Wales,152.063684,-32.706189 +2023,8,8,1,New South Wales,151.036607,-34.036891 +2023,4,24,1,New South Wales,149.341526,-36.313317 +2020,10,7,1,New South Wales,150.617141,-33.51732 +2023,12,31,1,New South Wales,153.101274,-29.4899 +2021,2,3,1,New South Wales,153.10387,-29.484665 +2023,11,22,1,New South Wales,152.919726,-31.469085 +2020,4,20,1,New South Wales,152.880069,-31.484988 +2021,6,12,1,New South Wales,150.522447,-34.465797 +2021,6,7,1,New South Wales,150.602955,-34.45196 +2021,6,11,1,New South Wales,150.611756,-34.430657 +2021,6,17,1,New South Wales,150.60478,-34.427284 +2022,7,30,1,New South Wales,153.360186,-28.794375 +2021,3,6,1,New South Wales,150.603459,-34.435453 +2021,5,10,1,New South Wales,150.628081,-34.389684 +2022,12,20,1,New South Wales,152.413734,-31.937692 +2023,9,9,1,New South Wales,153.108146,-29.490525 +2021,7,18,1,New South Wales,150.62421,-34.386219 +2021,11,16,1,New South Wales,153.042306,-30.910858 +2022,7,30,1,New South Wales,153.55592,-28.399181 +2023,2,25,1,New South Wales,152.91449,-31.486174 +2023,11,14,1,New South Wales,152.699686,-30.290401 +2021,5,8,1,New South Wales,150.622023,-34.398176 +2020,2,17,1,New South Wales,153.275632,-28.819715 +2021,5,3,1,New South Wales,150.611425,-34.419751 +2023,2,19,1,New South Wales,153.21815,-28.830303 +2021,5,26,1,New South Wales,150.619828,-34.439145 +2021,8,3,1,New South Wales,150.644626,-34.402355 +2022,4,28,1,New South Wales,152.077083,-32.722708 +2020,5,24,1,New South Wales,150.89747,-34.01117 +2021,7,11,1,New South Wales,150.63168,-34.387022 +2020,3,21,1,New South Wales,153.328561,-28.81698 +2023,2,19,1,New South Wales,153.55577,-28.37847 +2020,10,8,1,New South Wales,151.806572,-32.697232 +2021,7,8,1,New South Wales,150.51921,-34.447899 +2021,6,2,1,New South Wales,150.629818,-34.421038 +2022,8,25,1,New South Wales,152.671419,-29.54529 +2023,11,1,1,New South Wales,152.782168,-31.483888 +2023,8,23,1,New South Wales,150.784826,-33.718702 +2021,7,3,1,New South Wales,150.627888,-34.390753 +2023,8,23,1,New South Wales,152.927141,-31.469153 +2023,6,6,1,New South Wales,150.805444,-34.102731 +2021,6,16,1,New South Wales,150.516402,-34.459688 +2022,4,6,1,New South Wales,153.103028,-29.489414 +2023,9,29,1,New South Wales,150.784496,-33.717233 +2023,5,28,1,New South Wales,150.783983,-33.717623 +2021,5,10,1,New South Wales,150.615313,-34.434531 +2022,12,2,1,New South Wales,153.277501,-28.939088 +2020,4,7,1,New South Wales,153.28271,-28.82428 +2023,8,6,1,New South Wales,153.104278,-29.480187 +2020,11,2,1,New South Wales,149.988655,-36.56931 +2022,11,23,1,New South Wales,152.418213,-31.905008 +2021,6,2,1,New South Wales,150.519963,-34.45482 +2020,10,5,1,New South Wales,152.173157,-32.666898 +2023,8,10,1,New South Wales,149.137668,-36.299472 +2023,7,5,1,New South Wales,151.78529,-32.681213 +2020,4,2,1,New South Wales,152.771907,-31.706394 +2021,7,31,1,New South Wales,151.667847,-32.674746 +2023,9,8,1,New South Wales,150.785541,-33.712811 +2021,1,23,1,New South Wales,152.875654,-29.666331 +2021,5,2,1,New South Wales,150.637455,-34.423728 +2021,1,22,1,New South Wales,152.901675,-31.446692 +2023,9,4,1,New South Wales,150.994716,-34.002266 +2021,6,9,1,New South Wales,150.613887,-34.433016 +2021,8,23,1,New South Wales,150.514341,-34.447331 +2020,11,,1,New South Wales,151.474066,-32.971581 +2023,9,10,1,New South Wales,153.074259,-30.886804 +2021,6,30,1,New South Wales,150.606199,-34.432108 +2021,6,18,1,New South Wales,150.51413,-34.446363 +2020,6,30,1,New South Wales,153.469132,-28.26224 +2022,2,26,1,New South Wales,152.002122,-32.74226 +2023,10,28,1,New South Wales,152.412732,-31.932251 +2020,10,13,1,New South Wales,153.145612,-28.558684 +2021,5,11,1,New South Wales,150.633071,-34.41754 +2023,11,4,1,New South Wales,152.374593,-31.910703 +2024,2,13,1,New South Wales,152.063431,-32.706215 +2021,7,26,1,New South Wales,153.5282,-28.232026 +2022,10,23,1,New South Wales,151.782574,-32.582152 +2020,9,20,1,New South Wales,152.176881,-32.531752 +2021,4,1,1,New South Wales,150.516829,-34.446724 +2021,6,21,1,New South Wales,150.520293,-34.465744 +2021,4,22,1,New South Wales,150.070046,-33.801208 +2021,5,26,1,New South Wales,150.598007,-34.425979 +2021,12,9,1,New South Wales,153.103774,-29.48558 +2020,4,18,1,New South Wales,153.310615,-28.822731 +2023,8,27,1,New South Wales,151.05798,-29.737008 +2021,7,3,1,New South Wales,150.596896,-34.414256 +2022,5,10,1,New South Wales,153.493728,-28.254048 +2021,9,6,1,New South Wales,152.905478,-31.467655 +2023,8,19,1,New South Wales,152.923246,-31.459207 +2021,10,31,1,New South Wales,152.850938,-31.554761 +2021,5,13,1,New South Wales,150.52266,-34.464837 +2021,5,6,1,New South Wales,150.60596,-34.437819 +2022,7,16,1,New South Wales,152.915715,-31.444778 +2020,10,29,1,New South Wales,149.958935,-36.568735 +2022,10,25,1,New South Wales,152.105653,-32.761248 +2021,3,2,1,New South Wales,150.520403,-34.468649 +2022,8,6,1,New South Wales,153.104122,-29.478805 +2021,3,15,1,New South Wales,153.601971,-28.647359 +2020,3,18,1,New South Wales,152.686046,-30.481497 +2021,10,11,1,New South Wales,153.531976,-28.638162 +2021,5,9,1,New South Wales,150.632735,-34.418291 +2021,6,7,1,New South Wales,150.607418,-34.450794 +2023,4,21,1,New South Wales,153.109331,-29.490539 +2020,5,26,1,New South Wales,149.376608,-36.018932 +2021,4,29,1,New South Wales,150.639201,-34.489259 +2020,11,23,1,New South Wales,153.103838,-29.485604 +2021,8,18,1,New South Wales,150.51642,-34.437385 +2023,9,22,1,New South Wales,153.395743,-28.959387 +2021,7,19,1,New South Wales,153.194794,-28.885311 +2023,7,25,1,New South Wales,152.028079,-32.738066 +2023,7,28,1,New South Wales,153.011902,-30.42247 +2021,5,6,1,New South Wales,150.520004,-34.435781 +2020,9,23,1,New South Wales,151.694366,-30.48135 +2023,9,23,1,New South Wales,150.867059,-34.062302 +2023,11,13,1,New South Wales,153.109739,-29.490227 +2021,4,13,1,New South Wales,150.636241,-34.485713 +2021,4,22,1,New South Wales,150.638455,-34.42299 +2021,12,31,1,New South Wales,152.355335,-31.911765 +2022,2,13,1,New South Wales,152.910468,-31.458212 +2020,5,4,1,New South Wales,153.018715,-30.364785 +2021,6,7,1,New South Wales,150.518859,-34.447252 +2020,10,22,1,New South Wales,152.077015,-32.722568 +2021,5,30,1,New South Wales,150.6309,-34.388837 +2021,12,30,1,New South Wales,150.828654,-34.077477 +2020,10,15,1,New South Wales,152.86849,-29.667322 +2020,9,10,1,New South Wales,152.693995,-30.326721 +2021,7,25,1,New South Wales,150.625487,-34.386055 +2021,4,29,1,New South Wales,150.60397,-34.427088 +2021,5,1,1,New South Wales,150.624221,-34.388915 +2021,9,5,1,New South Wales,153.322187,-28.886532 +2021,6,3,1,New South Wales,150.630343,-34.42094 +2021,6,25,1,New South Wales,150.627438,-34.420162 +2021,6,5,1,New South Wales,150.636732,-34.487994 +2023,8,24,1,New South Wales,153.408399,-28.866843 +2020,10,,1,New South Wales,150.537335,-34.380735 +2020,10,29,1,New South Wales,152.894609,-31.446164 +2020,6,5,1,New South Wales,151.735887,-32.515004 +2023,5,16,1,New South Wales,152.793992,-31.64233 +2021,5,28,1,New South Wales,150.5271,-34.469281 +2023,6,22,1,New South Wales,152.909504,-31.439905 +2021,8,6,1,New South Wales,153.10813,-29.490306 +2020,11,17,1,New South Wales,149.989443,-36.496862 +2024,8,23,1,New South Wales,151.985131,-32.391899 +2021,7,18,1,New South Wales,150.627941,-34.420452 +2021,11,12,1,New South Wales,153.315723,-28.824561 +2021,11,10,1,New South Wales,153.523218,-28.21894 +2021,8,15,1,New South Wales,153.395088,-28.96002 +2022,1,31,1,New South Wales,152.913372,-31.485897 +2020,1,31,1,New South Wales,153.314983,-28.949201 +2021,7,17,1,New South Wales,150.659147,-34.455024 +2023,3,17,1,New South Wales,153.277604,-28.873812 +2024,4,7,1,New South Wales,150.990757,-34.029434 +2022,7,20,1,New South Wales,153.301928,-28.818314 +2020,10,30,1,New South Wales,149.967242,-36.561675 +2021,5,10,1,New South Wales,150.521618,-34.466952 +2021,7,18,1,New South Wales,153.270841,-29.010748 +2021,6,7,1,New South Wales,150.641887,-34.396857 +2022,12,3,1,New South Wales,150.791517,-34.203451 +2022,10,3,1,New South Wales,152.995484,-30.409118 +2020,6,29,1,New South Wales,153.400942,-28.257815 +2021,7,28,1,New South Wales,150.63083,-34.420625 +2021,9,29,1,New South Wales,153.293096,-28.864686 +2021,2,27,1,New South Wales,150.634365,-34.485469 +2022,8,1,1,New South Wales,150.793243,-34.144616 +2021,3,14,1,New South Wales,150.607652,-34.429973 +2021,1,17,1,New South Wales,150.89266,-33.991958 +2021,11,16,1,New South Wales,152.919209,-31.474481 +2023,9,15,1,New South Wales,152.618565,-30.338947 +2023,7,1,1,New South Wales,152.771379,-31.631608 +2023,2,3,1,New South Wales,150.835102,-34.069648 +2020,11,3,1,New South Wales,149.994744,-36.560944 +2021,6,16,1,New South Wales,150.617064,-34.433781 +2021,6,8,1,New South Wales,150.518771,-34.447313 +2023,11,13,1,New South Wales,150.785077,-33.714063 +2020,11,12,1,New South Wales,153.563517,-28.38096 +2021,5,31,1,New South Wales,153.314983,-28.949201 +2021,9,15,1,New South Wales,152.068748,-32.754666 +2022,10,31,1,New South Wales,153.314983,-28.949201 +2021,10,20,1,New South Wales,151.794214,-32.589817 +2021,10,5,1,New South Wales,153.109396,-29.490511 +2021,5,6,1,New South Wales,153.555155,-28.389895 +2021,7,20,1,New South Wales,152.889483,-30.238007 +2022,11,9,1,New South Wales,149.432716,-33.423971 +2021,9,23,1,New South Wales,153.323644,-28.830821 +2023,8,16,1,New South Wales,152.063717,-32.706585 +2020,9,15,1,New South Wales,153.607267,-28.677151 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2021,7,11,1,New South Wales,150.626384,-34.421269 +2021,5,16,1,New South Wales,150.637356,-34.423789 +2020,10,23,1,New South Wales,149.988655,-36.56931 +2021,1,5,1,New South Wales,153.103817,-29.484642 +2024,9,11,1,New South Wales,153.071949,-30.888135 +2021,5,3,1,New South Wales,150.520421,-34.454072 +2021,4,23,1,New South Wales,150.62714,-34.396437 +2022,9,27,1,New South Wales,152.063459,-32.705915 +2023,3,24,1,New South Wales,153.103522,-29.485543 +2021,11,19,1,New South Wales,153.334102,-28.85774 +2021,5,4,1,New South Wales,150.604169,-34.438028 +2022,2,7,1,New South Wales,152.898943,-31.442636 +2023,11,4,1,New South Wales,150.784718,-34.198212 +2022,12,21,1,New South Wales,153.104181,-29.48198 +2021,5,23,1,New South Wales,150.639118,-34.492972 +2023,9,12,1,New South Wales,152.811019,-31.653907 +2020,11,2,1,New South Wales,149.994744,-36.560944 +2021,5,23,1,New South Wales,150.616437,-34.434418 +2020,9,20,1,New South Wales,150.89337,-33.971509 +2021,12,20,1,New South Wales,150.615067,-34.440873 +2023,6,25,1,New South Wales,149.260919,-36.890859 +2020,7,25,1,New South Wales,153.497445,-28.636812 +2023,11,10,1,New South Wales,152.749135,-31.634804 +2023,1,20,1,New South Wales,151.118039,-32.965917 +2023,11,10,1,New South Wales,152.403864,-31.928253 +2023,10,13,1,New South Wales,153.023516,-30.902802 +2020,9,4,1,New South Wales,153.506293,-28.238698 +2021,5,3,1,New South Wales,150.520677,-34.436552 +2023,11,20,1,New South Wales,152.787035,-31.629488 +2023,9,26,1,New South Wales,152.92208,-31.4738 +2020,12,9,1,New South Wales,153.300206,-28.886464 +2022,6,23,1,New South Wales,152.914879,-31.444905 +2021,2,23,1,New South Wales,150.520633,-34.44764 +2021,5,13,1,New South Wales,150.637295,-34.423608 +2021,1,28,1,New South Wales,152.605373,-31.662153 +2021,5,22,1,New South Wales,150.617217,-34.433775 +2021,7,9,1,New South Wales,153.46202,-28.650301 +2021,7,28,1,New South Wales,150.631292,-34.420075 +2021,8,16,1,New South Wales,150.513857,-34.446402 +2020,3,15,1,New South Wales,153.1094,-30.29861 +2021,5,3,1,New South Wales,150.603913,-34.426808 +2021,5,30,1,New South Wales,150.523238,-34.464443 +2021,6,10,1,New South Wales,150.605228,-34.437904 +2022,8,1,1,New South Wales,150.794735,-34.142422 +2021,5,31,1,New South Wales,150.604243,-34.42438 +2021,6,28,1,New South Wales,150.596135,-34.411572 +2021,4,23,1,New South Wales,150.615392,-34.430981 +2023,11,29,1,New South Wales,150.784451,-33.71731 +2023,2,22,1,New South Wales,153.31231,-28.815314 +2020,10,13,1,New South Wales,153.103822,-29.485576 +2023,8,15,1,New South Wales,152.370439,-31.922726 +2021,7,4,1,New South Wales,150.643892,-34.393245 +2021,7,14,1,New South Wales,150.627333,-34.421188 +2023,8,27,1,New South Wales,152.924861,-31.216171 +2023,1,29,1,New South Wales,153.31535,-28.819753 +2021,8,9,1,New South Wales,150.522415,-34.465778 +2023,7,18,1,New South Wales,150.784877,-33.717429 +2023,10,16,1,New South Wales,152.798993,-31.649815 +2023,5,10,1,New South Wales,153.458938,-28.726034 +2021,1,4,1,New South Wales,153.108199,-29.490577 +2020,12,7,1,New South Wales,152.70394,-31.713471 +2021,7,16,1,New South Wales,150.514973,-34.446569 +2021,5,22,1,New South Wales,150.607663,-34.432642 +2022,12,14,1,New South Wales,153.24897,-28.764765 +2022,4,5,1,New South Wales,151.009987,-34.042369 +2021,6,13,1,New South Wales,150.520528,-34.45411 +2022,3,5,1,New South Wales,152.064594,-32.701714 +2023,11,5,1,New South Wales,152.46988,-31.986035 +2021,4,19,1,New South Wales,150.614304,-34.429851 +2024,2,24,1,New South Wales,150.784491,-33.717236 +2021,10,31,1,New South Wales,150.200434,-29.353937 +2021,7,10,1,New South Wales,150.640931,-34.393341 +2024,2,9,1,New South Wales,152.161481,-32.714874 +2020,9,16,1,New South Wales,153.301525,-28.298507 +2022,5,17,1,New South Wales,153.108022,-29.490334 +2023,7,27,1,New South Wales,153.308195,-28.849992 +2021,7,14,1,New South Wales,150.627323,-34.42117 +2021,4,28,1,New South Wales,150.616838,-34.429494 +2023,10,29,1,New South Wales,152.198472,-32.23465 +2020,12,22,1,New South Wales,151.76992,-32.593843 +2020,4,27,1,New South Wales,152.74321,-31.25723 +2021,6,14,1,New South Wales,150.604398,-34.438014 +2023,9,14,1,New South Wales,153.310688,-28.826871 +2021,7,1,1,New South Wales,150.597476,-34.412987 +2022,1,9,1,New South Wales,153.302241,-28.819555 +2020,10,11,1,New South Wales,153.255785,-28.436217 +2022,11,24,1,New South Wales,152.760068,-30.904021 +2023,6,23,1,New South Wales,152.888665,-31.248575 +2023,12,31,1,New South Wales,152.400639,-31.930495 +2020,11,6,1,New South Wales,149.994744,-36.560944 +2020,10,9,1,New South Wales,153.481572,-28.542002 +2021,7,24,1,New South Wales,152.860256,-29.627572 +2022,8,23,1,New South Wales,150.554112,-34.498 +2021,4,14,1,New South Wales,150.533009,-34.475648 +2024,3,23,1,New South Wales,150.984272,-34.09283 +2022,11,18,1,New South Wales,153.555071,-28.674695 +2022,8,4,1,New South Wales,150.78925,-34.21475 +2021,4,18,1,New South Wales,150.627675,-34.38635 +2022,1,2,1,New South Wales,150.614824,-34.439093 +2020,5,5,1,New South Wales,152.958078,-30.667929 +2024,1,2,1,New South Wales,153.109771,-29.490222 +2023,10,15,1,New South Wales,150.834223,-34.072827 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2022,5,18,1,New South Wales,153.401753,-28.257328 +2024,7,26,1,New South Wales,151.971157,-32.180821 +2022,6,10,1,New South Wales,152.82796,-31.26849 +2021,6,20,1,New South Wales,150.62796,-34.420939 +2020,6,15,1,New South Wales,153.094155,-29.488686 +2021,5,10,1,New South Wales,150.637302,-34.423752 +2020,10,31,1,New South Wales,152.912551,-31.445133 +2021,5,25,1,New South Wales,150.631381,-34.419995 +2021,3,26,1,New South Wales,150.520452,-34.466252 +2022,5,17,1,New South Wales,152.064019,-32.706714 +2022,9,17,1,New South Wales,150.82369,-34.141271 +2021,9,11,1,New South Wales,150.641735,-34.395691 +2024,1,3,1,New South Wales,152.334665,-31.921232 +2020,1,3,1,New South Wales,153.104213,-29.489568 +2023,9,25,1,New South Wales,150.842026,-34.110287 +2021,5,1,1,New South Wales,150.637456,-34.42371 +2023,2,8,1,New South Wales,153.104616,-29.477207 +2021,8,7,1,New South Wales,150.514541,-34.443883 +2021,5,10,1,New South Wales,150.632677,-34.41801 +2022,12,15,1,New South Wales,150.92085,-33.96665 +2020,11,4,1,New South Wales,149.984303,-36.560469 +2021,3,5,1,New South Wales,150.530443,-34.46924 +2021,3,29,1,New South Wales,153.364986,-28.810921 +2021,7,10,1,New South Wales,150.627046,-34.421318 +2021,4,26,1,New South Wales,150.603298,-34.436911 +2020,10,29,1,New South Wales,149.967242,-36.561675 +2021,9,3,1,New South Wales,150.521621,-34.465735 +2023,1,22,1,New South Wales,153.314782,-28.819965 +2023,8,12,1,New South Wales,150.785413,-33.716522 +2022,11,23,1,New South Wales,152.760068,-30.904021 +2021,6,19,1,New South Wales,150.618854,-34.436286 +2021,8,14,1,New South Wales,153.521789,-28.683592 +2021,7,8,1,New South Wales,150.627559,-34.421274 +2021,4,28,1,New South Wales,150.637548,-34.488804 +2021,4,27,1,New South Wales,150.610346,-34.419036 +2021,6,19,1,New South Wales,150.602574,-34.425312 +2022,3,20,1,New South Wales,152.895895,-31.442418 +2023,1,11,1,New South Wales,153.299458,-28.823816 +2020,7,4,1,New South Wales,152.89847,-31.443451 +2023,5,21,1,New South Wales,152.986797,-29.044391 +2020,8,14,1,New South Wales,152.879434,-31.448811 +2021,1,23,1,New South Wales,152.092193,-32.738862 +2020,11,18,1,New South Wales,152.826145,-31.250034 +2022,10,1,1,New South Wales,153.103854,-29.484992 +2023,11,14,1,New South Wales,150.78603,-33.712254 +2020,6,13,1,New South Wales,153.293325,-28.864636 +2021,12,15,1,New South Wales,150.615819,-34.439301 +2021,6,19,1,New South Wales,150.639477,-34.392817 +2021,7,12,1,New South Wales,150.630793,-34.386455 +2021,7,13,1,New South Wales,150.513974,-34.447216 +2021,7,31,1,New South Wales,150.597718,-34.426956 +2020,10,29,1,New South Wales,149.958935,-36.568735 +2022,10,29,1,New South Wales,152.870848,-31.47441 +2021,3,16,1,New South Wales,153.308396,-28.850597 +2020,2,1,1,New South Wales,152.10379,-32.759253 +2023,7,29,1,New South Wales,153.018574,-28.432565 +2020,9,26,1,New South Wales,153.103066,-30.289977 +2020,10,20,1,New South Wales,150.96953,-34.028303 +2020,5,,1,New South Wales,151.602132,-30.492845 +2023,4,22,1,New South Wales,152.923391,-31.460822 +2023,11,4,1,New South Wales,152.915266,-29.590842 +2021,7,19,1,New South Wales,153.108049,-29.490213 +2020,9,9,1,New South Wales,153.103881,-29.485576 +2021,4,22,1,New South Wales,150.609134,-34.418841 +2020,3,24,1,New South Wales,152.1514,-32.714675 +2023,8,23,1,New South Wales,152.542586,-29.041653 +2021,3,29,1,New South Wales,150.607686,-34.422302 +2022,10,5,1,New South Wales,152.925549,-28.725578 +2021,11,6,1,New South Wales,150.888206,-33.997473 +2024,1,4,1,New South Wales,151.518472,-32.960134 +2021,9,1,1,New South Wales,150.514574,-34.443883 +2022,6,23,1,New South Wales,153.109996,-29.490259 +2023,10,20,1,New South Wales,150.784958,-33.716472 +2021,4,19,1,New South Wales,150.65936,-34.457119 +2021,7,6,1,New South Wales,150.603609,-34.419139 +2020,1,1,1,New South Wales,150.53165,-34.414835 +2020,10,9,1,New South Wales,153.284708,-29.026186 +2021,2,10,1,New South Wales,150.071494,-33.776777 +2023,8,19,1,New South Wales,153.294555,-28.865479 +2022,12,5,1,New South Wales,152.832363,-31.558796 +2021,8,27,1,New South Wales,150.899368,-34.014965 +2021,11,1,1,New South Wales,150.615726,-34.439904 +2021,5,13,1,New South Wales,150.628596,-34.396113 +2020,10,29,1,New South Wales,149.955017,-36.576791 +2023,1,27,1,New South Wales,151.645757,-32.679556 +2023,10,19,1,New South Wales,152.78679,-31.629741 +2021,12,27,1,New South Wales,152.926912,-31.454846 +2020,12,9,1,New South Wales,152.833588,-30.434864 +2021,5,2,1,New South Wales,150.637346,-34.423762 +2020,6,16,1,New South Wales,153.306138,-29.055285 +2022,8,29,1,New South Wales,152.914761,-31.479137 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2021,6,24,1,New South Wales,150.842133,-34.070234 +2021,5,18,1,New South Wales,150.640656,-34.494417 +2023,2,21,1,New South Wales,152.713031,-31.505069 +2023,12,19,1,New South Wales,152.790424,-30.251439 +2021,6,23,1,New South Wales,150.519574,-34.463187 +2020,11,27,1,New South Wales,153.607389,-28.687767 +2022,11,4,1,New South Wales,153.395089,-29.029064 +2022,6,1,1,New South Wales,152.905868,-31.436671 +2021,1,25,1,New South Wales,153.103591,-29.485487 +2023,10,20,1,New South Wales,150.989933,-34.03052 +2022,4,1,1,New South Wales,153.345799,-28.748383 +2020,10,29,1,New South Wales,149.958935,-36.568735 +2021,5,7,1,New South Wales,150.60919,-34.420681 +2021,5,23,1,New South Wales,150.630961,-34.388226 +2022,5,11,1,New South Wales,152.775569,-31.650778 +2021,9,24,1,New South Wales,152.679185,-30.083862 +2022,8,13,1,New South Wales,153.104079,-29.47746 +2020,5,12,1,New South Wales,153.54433,-28.732361 +2021,4,27,1,New South Wales,150.635867,-34.419487 +2023,3,3,1,New South Wales,153.394085,-29.020072 +2023,10,8,1,New South Wales,150.784486,-33.717237 +2021,5,7,1,New South Wales,150.518862,-34.451931 +2021,3,25,1,New South Wales,153.266927,-28.92056 +2021,12,31,1,New South Wales,153.314983,-28.949201 +2021,6,18,1,New South Wales,150.513899,-34.446457 +2021,6,10,1,New South Wales,150.604337,-34.43786 +2022,7,31,1,New South Wales,153.314983,-28.949201 +2023,9,10,1,New South Wales,151.493241,-33.011246 +2022,4,1,1,New South Wales,153.089129,-28.597294 +2021,4,11,1,New South Wales,150.604751,-34.431359 +2021,5,24,1,New South Wales,150.520503,-34.465649 +2021,5,12,1,New South Wales,150.516949,-34.454056 +2021,7,10,1,New South Wales,150.626772,-34.421393 +2023,5,29,1,New South Wales,152.186675,-31.615373 +2021,9,7,1,New South Wales,150.96222,-34.099374 +2021,10,15,1,New South Wales,150.971709,-34.121387 +2021,9,10,1,New South Wales,152.374055,-31.915468 +2020,1,24,1,New South Wales,151.091092,-33.145366 +2021,8,20,1,New South Wales,150.612062,-34.432142 +2022,5,5,1,New South Wales,149.424423,-32.999328 +2021,11,19,1,New South Wales,152.99167,-30.3972 +2021,6,28,1,New South Wales,150.631472,-34.387821 +2024,1,15,1,New South Wales,153.104906,-29.489694 +2023,9,30,1,New South Wales,153.028282,-28.532328 +2020,11,2,1,New South Wales,149.945227,-36.57753 +2021,6,24,1,New South Wales,150.625166,-34.386635 +2023,2,2,1,New South Wales,153.109964,-29.490189 +2020,1,18,1,New South Wales,152.917727,-31.45762 +2020,10,30,1,New South Wales,149.945227,-36.57753 +2022,7,11,1,New South Wales,150.821644,-34.101844 +2023,8,9,1,New South Wales,153.563734,-28.381087 +2020,6,11,1,New South Wales,152.800457,-31.134522 +2023,7,30,1,New South Wales,150.785303,-33.717006 +2022,8,4,1,New South Wales,150.791719,-34.218769 +2023,12,5,1,New South Wales,150.98868,-34.025293 +2020,8,10,1,New South Wales,153.104165,-29.485169 +2021,4,25,1,New South Wales,150.630022,-34.388334 +2021,1,20,1,New South Wales,153.109374,-29.490577 +2023,8,20,1,New South Wales,150.983802,-34.094779 +2021,9,11,1,New South Wales,152.352895,-31.923722 +2021,5,7,1,New South Wales,150.621365,-34.397983 +2021,5,27,1,New South Wales,150.517323,-34.452846 +2020,10,17,1,New South Wales,153.28341,-28.830718 +2024,3,22,1,New South Wales,150.983255,-34.094439 +2021,5,9,1,New South Wales,150.521224,-34.435355 +2023,7,18,1,New South Wales,153.407882,-28.984155 +2020,10,12,1,New South Wales,152.116328,-32.764528 +2021,8,26,1,New South Wales,152.847064,-31.545763 +2021,5,3,1,New South Wales,152.18648,-31.66596 +2023,4,14,1,New South Wales,151.009287,-33.986634 +2022,11,14,1,New South Wales,152.065469,-32.710929 +2020,7,12,1,New South Wales,153.10409,-29.484343 +2020,10,23,1,New South Wales,149.984095,-36.575978 +2021,8,22,1,New South Wales,153.409719,-28.913154 +2021,4,17,1,New South Wales,150.630115,-34.394322 +2020,10,29,1,New South Wales,149.984095,-36.575978 +2023,2,10,1,New South Wales,152.898805,-31.465629 +2021,10,23,1,New South Wales,153.260014,-28.857637 +2020,10,14,1,New South Wales,152.967252,-29.232738 +2020,10,17,1,New South Wales,149.947183,-36.617465 +2021,5,5,1,New South Wales,150.622895,-34.397328 +2021,6,15,1,New South Wales,150.516177,-34.459188 +2020,10,21,1,New South Wales,152.774585,-30.200925 +2021,12,4,1,New South Wales,152.925276,-31.454171 +2023,5,19,1,New South Wales,153.110527,-29.490133 +2020,9,5,1,New South Wales,153.423741,-28.727618 +2020,7,11,1,New South Wales,152.158526,-32.714317 +2020,10,18,1,New South Wales,149.947183,-36.617465 +2021,10,26,1,New South Wales,150.765176,-34.185203 +2022,9,27,1,New South Wales,152.915172,-31.4464 +2020,10,29,1,New South Wales,149.967242,-36.561675 +2023,10,24,1,New South Wales,152.204264,-32.226111 +2021,4,29,1,New South Wales,150.517425,-34.44313 +2020,10,10,1,New South Wales,149.941793,-36.651646 +2021,7,5,1,New South Wales,150.62733,-34.421278 +2022,11,28,1,New South Wales,152.975187,-28.539857 +2020,11,3,1,New South Wales,153.335449,-28.872021 +2021,5,21,1,New South Wales,150.615076,-34.431371 +2024,3,2,1,New South Wales,152.949871,-30.433824 +2021,7,9,1,New South Wales,153.283391,-28.830774 +2021,4,20,1,New South Wales,150.614409,-34.429222 +2021,6,10,1,New South Wales,150.518871,-34.443195 +2020,8,5,1,New South Wales,152.930363,-29.726791 +2022,5,21,1,New South Wales,152.928917,-31.450071 +2020,10,15,1,New South Wales,149.947183,-36.617465 +2021,5,7,1,New South Wales,150.616075,-34.435304 +2021,4,29,1,New South Wales,150.616424,-34.429126 +2021,3,9,1,New South Wales,150.604234,-34.438813 +2021,4,15,1,New South Wales,150.656984,-34.458029 +2021,4,2,1,New South Wales,150.604267,-34.438012 +2020,1,14,1,New South Wales,153.092235,-29.488279 +2021,3,16,1,New South Wales,150.532762,-34.482188 +2022,4,1,1,New South Wales,152.10621,-32.72869 +2021,7,5,1,New South Wales,150.603118,-34.417686 +2021,6,3,1,New South Wales,150.637028,-34.488316 +2020,10,28,1,New South Wales,149.984095,-36.575978 +2021,7,21,1,New South Wales,153.52954,-28.54593 +2023,7,8,1,New South Wales,153.10813,-29.490222 +2021,7,7,1,New South Wales,150.597524,-34.416639 +2021,6,4,1,New South Wales,150.604127,-34.426929 +2021,5,9,1,New South Wales,150.623045,-34.399341 +2021,5,22,1,New South Wales,150.528919,-34.471463 +2021,9,30,1,New South Wales,153.36115,-28.79653 +2022,7,24,1,New South Wales,152.063956,-32.706625 +2021,4,27,1,New South Wales,150.607059,-34.454583 +2021,5,3,1,New South Wales,150.633579,-34.418442 +2021,4,22,1,New South Wales,150.632969,-34.392989 +2020,10,29,1,New South Wales,149.967242,-36.561675 +2023,3,10,1,New South Wales,153.298632,-28.889791 +2021,8,4,1,New South Wales,150.520401,-34.465764 +2021,5,7,1,New South Wales,150.520345,-34.435662 +2024,2,27,1,New South Wales,150.785863,-33.707426 +2020,8,21,1,New South Wales,153.521789,-28.683592 +2022,3,31,1,New South Wales,146.58818,-34.771778 +2024,4,13,1,New South Wales,152.450445,-31.954578 +2020,7,10,1,New South Wales,152.794343,-31.643859 +2021,11,11,1,New South Wales,153.437123,-28.992695 +2021,3,4,1,New South Wales,150.521444,-34.460331 +2023,6,1,1,New South Wales,153.354955,-28.669614 +2021,5,14,1,New South Wales,150.601794,-34.428623 +2020,3,28,1,New South Wales,150.120508,-35.076865 +2021,5,27,1,New South Wales,150.630765,-34.420614 +2021,4,11,1,New South Wales,152.915937,-31.485524 +2020,2,10,1,New South Wales,153.292287,-28.796818 +2021,5,26,1,New South Wales,150.639024,-34.49169 +2021,12,,1,New South Wales,149.335305,-36.100988 +2021,6,18,1,New South Wales,150.642506,-34.394967 +2023,8,21,1,New South Wales,150.78656,-33.706849 +2023,6,18,1,New South Wales,153.531111,-28.508293 +2021,3,22,1,New South Wales,150.615421,-34.435714 +2020,11,22,1,New South Wales,149.942556,-36.497108 +2021,4,26,1,New South Wales,150.626149,-34.397247 +2022,11,18,1,New South Wales,152.794854,-30.893434 +2020,11,4,1,New South Wales,150.104075,-33.775761 +2021,6,13,1,New South Wales,150.643657,-34.395791 +2020,10,30,1,New South Wales,149.958935,-36.568735 +2020,11,3,1,New South Wales,149.945227,-36.57753 +2020,10,30,1,New South Wales,149.968131,-36.578885 +2021,6,2,1,New South Wales,150.638919,-34.399532 +2022,11,24,1,New South Wales,152.760068,-30.904021 +2024,3,3,1,New South Wales,150.784725,-33.713341 +2021,1,18,1,New South Wales,153.108215,-29.490231 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2021,6,5,1,New South Wales,150.636579,-34.488018 +2020,1,1,1,New South Wales,150.80839,-34.098569 +2023,8,2,1,New South Wales,152.029118,-32.192347 +2021,5,21,1,New South Wales,150.615022,-34.431379 +2021,7,12,1,New South Wales,150.522289,-34.464126 +2020,3,10,1,New South Wales,153.296856,-28.453356 +2023,11,1,1,New South Wales,150.776852,-34.198742 +2020,9,23,1,New South Wales,152.895216,-31.414401 +2024,2,20,1,New South Wales,150.78487,-33.709957 +2020,10,11,1,New South Wales,149.941793,-36.651646 +2020,3,7,1,New South Wales,152.103165,-32.759425 +2020,10,10,1,New South Wales,149.941793,-36.651646 +2020,8,2,1,New South Wales,152.958067,-30.648789 +2020,10,10,1,New South Wales,149.941793,-36.651646 +2020,10,14,1,New South Wales,150.812171,-34.125489 +2021,5,4,1,New South Wales,150.51607,-34.447385 +2020,10,12,1,New South Wales,152.965698,-31.200948 +2021,4,27,1,New South Wales,150.610213,-34.419151 +2023,4,5,1,New South Wales,151.061116,-29.741249 +2023,5,31,1,New South Wales,150.79471,-34.21642 +2020,8,14,1,New South Wales,150.636505,-33.753572 +2021,6,6,1,New South Wales,150.636265,-34.48758 +2023,7,12,1,New South Wales,153.103473,-29.485608 +2021,5,24,1,New South Wales,150.517117,-34.452076 +2021,5,18,1,New South Wales,150.613714,-34.431074 +2020,11,25,1,New South Wales,152.899693,-31.160035 +2021,5,9,1,New South Wales,150.519474,-34.451114 +2021,5,19,1,New South Wales,150.608097,-34.434616 +2021,7,13,1,New South Wales,150.512877,-34.446779 +2021,5,13,1,New South Wales,150.640213,-34.492768 +2021,3,9,1,New South Wales,150.604266,-34.438823 +2020,1,12,1,New South Wales,152.905944,-31.479611 +2023,10,25,1,New South Wales,152.885839,-30.517524 +2021,5,8,1,New South Wales,150.521344,-34.435727 +2020,10,30,1,New South Wales,149.967242,-36.561675 +2021,8,2,1,New South Wales,150.633733,-34.418373 +2021,10,10,1,New South Wales,151.654056,-32.686273 +2021,4,23,1,New South Wales,150.521122,-34.466789 +2022,11,24,1,New South Wales,152.760068,-30.904021 +2023,11,19,1,New South Wales,150.50645,-34.47169 +2021,5,28,1,New South Wales,150.518114,-34.451844 +2023,9,26,1,New South Wales,153.109701,-29.490175 +2021,5,21,1,New South Wales,150.639178,-34.493171 +2020,11,7,1,New South Wales,150.010074,-36.579686 +2020,10,16,1,New South Wales,149.887989,-36.587028 +2023,2,6,1,New South Wales,153.110603,-29.48976 +2024,9,5,1,New South Wales,152.176126,-31.577756 +2021,2,26,1,New South Wales,153.104053,-29.479314 +2021,5,26,1,New South Wales,150.518087,-34.453493 +2021,10,20,1,New South Wales,153.322062,-28.823804 +2020,9,24,1,New South Wales,152.848879,-29.339319 +2021,4,26,1,New South Wales,150.609523,-34.41893 +2020,9,16,1,New South Wales,152.08322,-32.728084 +2021,3,16,1,New South Wales,150.615402,-34.435218 +2020,1,12,1,New South Wales,153.285323,-29.040946 +2020,4,23,1,New South Wales,152.03968,-32.730551 +2021,7,28,1,New South Wales,150.515168,-34.449151 +2021,5,5,1,New South Wales,150.60336,-34.42713 +2024,8,21,1,New South Wales,152.400453,-31.914779 +2021,9,2,1,New South Wales,150.640089,-34.397003 +2021,6,7,1,New South Wales,150.615446,-34.432929 +2021,8,5,1,New South Wales,153.564642,-28.327767 +2020,9,15,1,New South Wales,153.000849,-29.185764 +2021,8,22,1,New South Wales,151.7332,-32.599663 +2023,10,17,1,New South Wales,152.925183,-31.454102 +2021,12,6,1,New South Wales,152.900344,-31.474012 +2022,11,25,1,New South Wales,150.806605,-34.152923 +2020,10,28,1,New South Wales,149.984303,-36.560469 +2020,6,6,1,New South Wales,150.05427,-33.774428 +2020,11,2,1,New South Wales,149.988655,-36.56931 +2022,2,1,1,New South Wales,153.066161,-30.288526 +2022,4,15,1,New South Wales,153.103344,-29.486374 +2021,4,26,1,New South Wales,153.468674,-28.26145 +2021,6,10,1,New South Wales,150.627201,-34.3858 +2021,4,26,1,New South Wales,150.602279,-34.425739 +2021,2,4,1,New South Wales,153.478405,-28.697302 +2023,12,1,1,New South Wales,152.856734,-30.313976 +2020,12,2,1,New South Wales,152.806737,-31.641577 +2020,10,25,1,New South Wales,149.955017,-36.576791 +2021,4,10,1,New South Wales,153.56441,-28.380461 +2020,11,2,1,New South Wales,149.988655,-36.56931 +2020,7,1,1,New South Wales,151.178816,-32.569474 +2021,5,30,1,New South Wales,150.631014,-34.388254 +2021,9,14,1,New South Wales,150.790068,-34.206047 +2021,5,3,1,New South Wales,150.611404,-34.419715 +2021,7,7,1,New South Wales,150.630949,-34.388252 +2021,11,23,1,New South Wales,153.115459,-28.63227 +2023,5,14,1,New South Wales,152.78769,-31.636638 +2020,10,19,1,New South Wales,149.913134,-36.588285 +2020,2,5,1,New South Wales,153.291586,-28.864043 +2022,11,6,1,New South Wales,152.925231,-31.454151 +2022,9,26,1,New South Wales,152.911149,-31.429792 +2021,7,28,1,New South Wales,152.791122,-30.117962 +2020,10,10,1,New South Wales,149.941793,-36.651646 +2020,11,12,1,New South Wales,151.982103,-32.640912 +2020,10,16,1,New South Wales,149.947183,-36.617465 +2021,6,8,1,New South Wales,150.626006,-34.388472 +2021,6,21,1,New South Wales,150.602443,-34.419981 +2021,10,15,1,New South Wales,153.101231,-29.48997 +2023,10,18,1,New South Wales,153.018876,-30.367325 +2020,1,2,1,New South Wales,151.806799,-32.465571 +2020,1,3,1,New South Wales,152.395098,-31.904573 +2021,5,8,1,New South Wales,150.615512,-34.435581 +2023,9,14,1,New South Wales,153.556968,-28.397401 +2021,5,20,1,New South Wales,150.633197,-34.41848 +2023,10,3,1,New South Wales,150.782613,-34.200241 +2021,10,4,1,New South Wales,152.062517,-32.709353 +2024,7,28,1,New South Wales,151.947907,-32.402038 +2021,5,21,1,New South Wales,150.633197,-34.41848 +2022,11,16,1,New South Wales,150.724948,-34.287934 +2021,1,9,1,New South Wales,150.89266,-33.991958 +2020,9,29,1,New South Wales,153.020266,-31.020669 +2023,10,1,1,New South Wales,152.910488,-31.474331 +2021,5,18,1,New South Wales,150.516491,-34.450062 +2021,6,5,1,New South Wales,150.534915,-34.459324 +2021,5,10,1,New South Wales,150.516265,-34.469431 +2023,7,12,1,New South Wales,149.253264,-36.196034 +2022,11,25,1,New South Wales,152.777302,-30.885013 +2022,10,25,1,New South Wales,152.428902,-31.879092 +2020,1,13,1,New South Wales,152.90011,-31.449139 +2021,8,20,1,New South Wales,153.078159,-30.340486 +2020,12,5,1,New South Wales,153.17047,-28.936208 +2021,6,19,1,New South Wales,150.519898,-34.452619 +2023,7,13,1,New South Wales,150.971987,-33.965656 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2021,5,18,1,New South Wales,150.637324,-34.423753 +2021,6,7,1,New South Wales,150.641492,-34.395443 +2021,8,15,1,New South Wales,150.641964,-34.396832 +2020,10,19,1,New South Wales,149.931009,-36.595007 +2021,5,11,1,New South Wales,150.517544,-34.453094 +2022,9,11,1,New South Wales,150.790746,-34.185745 +2020,10,29,1,New South Wales,149.984303,-36.560469 +2021,5,2,1,New South Wales,150.607041,-34.455222 +2022,12,15,1,New South Wales,153.556714,-28.400278 +2020,3,6,1,New South Wales,153.556935,-28.400944 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2023,9,21,1,New South Wales,150.782826,-33.719204 +2023,11,14,1,New South Wales,150.955006,-33.503652 +2020,2,11,1,New South Wales,153.567422,-28.378508 +2022,11,24,1,New South Wales,153.14142,-28.639233 +2023,12,21,1,New South Wales,150.785598,-33.713164 +2023,11,12,1,New South Wales,150.785123,-33.715803 +2021,9,28,1,New South Wales,152.900289,-31.473925 +2021,4,2,1,New South Wales,150.607803,-34.4304 +2022,2,17,1,New South Wales,153.393631,-28.95921 +2023,1,9,1,New South Wales,152.744263,-28.949079 +2021,3,12,1,New South Wales,150.611491,-34.420474 +2021,7,5,1,New South Wales,150.630752,-34.389862 +2022,6,9,1,New South Wales,153.104031,-29.485342 +2021,5,4,1,New South Wales,150.627048,-34.389682 +2022,12,28,1,New South Wales,146.58548,-34.766625 +2020,11,1,1,New South Wales,149.915309,-36.574566 +2020,11,13,1,New South Wales,150.003238,-36.547042 +2022,10,5,1,New South Wales,153.002416,-30.410201 +2022,12,5,1,New South Wales,152.927079,-31.45501 +2022,10,19,1,New South Wales,153.33619,-28.90155 +2021,3,31,1,New South Wales,149.181661,-33.184202 +2022,8,6,1,New South Wales,152.997221,-30.384921 +2023,4,24,1,New South Wales,152.923828,-31.444287 +2021,10,11,1,New South Wales,153.283326,-28.830761 +2021,5,4,1,New South Wales,150.61147,-34.419689 +2021,4,23,1,New South Wales,150.609166,-34.418842 +2021,5,22,1,New South Wales,150.616391,-34.434489 +2023,5,22,1,New South Wales,150.784147,-33.716736 +2021,5,28,1,New South Wales,150.600521,-34.424812 +2021,4,24,1,New South Wales,150.605684,-34.423434 +2023,12,30,1,New South Wales,153.107454,-29.490119 +2021,9,10,1,New South Wales,150.765529,-34.203045 +2020,7,28,1,New South Wales,152.798744,-31.131496 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2021,5,11,1,New South Wales,150.628069,-34.38972 +2021,9,24,1,New South Wales,150.615956,-34.436401 +2024,8,22,1,New South Wales,151.980225,-32.270482 +2021,6,4,1,New South Wales,150.637019,-34.488252 +2021,6,25,1,New South Wales,152.073009,-32.725859 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2022,6,26,1,New South Wales,150.845422,-34.148999 +2024,1,24,1,New South Wales,152.414163,-31.940544 +2020,9,19,1,New South Wales,150.11845,-31.09328 +2024,2,26,1,New South Wales,150.785288,-33.716256 +2021,5,1,1,New South Wales,150.616411,-34.436103 +2021,7,30,1,New South Wales,150.516159,-34.439579 +2021,4,12,1,New South Wales,150.604802,-34.431107 +2021,6,5,1,New South Wales,150.615832,-34.435028 +2024,1,16,1,New South Wales,151.739717,-32.188789 +2021,9,10,1,New South Wales,150.200465,-29.353959 +2022,11,26,1,New South Wales,152.794854,-30.893434 +2021,6,8,1,New South Wales,150.522933,-34.466276 +2021,6,1,1,New South Wales,150.524965,-34.453497 +2022,10,14,1,New South Wales,153.077408,-28.555969 +2021,10,10,1,New South Wales,153.104455,-29.482251 +2023,2,17,1,New South Wales,151.277709,-33.851764 +2022,9,24,1,New South Wales,153.30216,-28.819412 +2021,5,17,1,New South Wales,150.515987,-34.450178 +2021,7,27,1,New South Wales,150.625369,-34.385602 +2021,4,26,1,New South Wales,150.624745,-34.388069 +2021,3,2,1,New South Wales,153.104096,-29.479944 +2022,10,19,1,New South Wales,153.33619,-28.90155 +2023,12,23,1,New South Wales,153.114674,-29.490035 +2023,9,24,1,New South Wales,152.839666,-31.593889 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2022,9,12,1,New South Wales,150.743252,-34.229781 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2021,8,29,1,New South Wales,150.644743,-34.393153 +2021,6,27,1,New South Wales,150.595747,-34.413719 +2020,4,9,1,New South Wales,152.717271,-30.144527 +2021,6,29,1,New South Wales,150.627304,-34.420295 +2023,6,6,1,New South Wales,152.922579,-31.475525 +2021,4,24,1,New South Wales,150.634458,-34.420064 +2022,11,28,1,New South Wales,152.777302,-30.885013 +2023,1,12,1,New South Wales,152.823752,-31.45116 +2020,12,10,1,New South Wales,149.954748,-36.297726 +2021,5,2,1,New South Wales,150.625476,-34.389904 +2021,6,1,1,New South Wales,150.517726,-34.440305 +2021,9,14,1,New South Wales,153.086133,-30.326065 +2021,5,11,1,New South Wales,150.628025,-34.389746 +2021,6,22,1,New South Wales,150.520284,-34.465672 +2021,1,4,1,New South Wales,153.592527,-28.637352 +2023,11,2,1,New South Wales,152.196338,-32.230264 +2020,3,23,1,New South Wales,149.390551,-33.42782 +2021,4,7,1,New South Wales,150.532644,-34.461415 +2023,4,23,1,New South Wales,152.307001,-31.934482 +2021,5,31,1,New South Wales,150.630377,-34.420886 +2023,6,10,1,New South Wales,153.108226,-29.490339 +2022,8,30,1,New South Wales,149.319877,-36.298719 +2023,4,10,1,New South Wales,153.108162,-29.490698 +2023,8,27,1,New South Wales,150.785439,-33.705613 +2021,5,3,1,New South Wales,150.615833,-34.435001 +2020,10,7,1,New South Wales,153.104074,-29.479813 +2021,5,9,1,New South Wales,150.521235,-34.435364 +2022,9,30,1,New South Wales,150.846668,-34.071206 +2024,1,19,1,New South Wales,152.914116,-31.467966 +2021,6,1,1,New South Wales,150.521558,-34.465671 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2021,4,30,1,New South Wales,150.616366,-34.436139 +2020,12,3,1,New South Wales,152.064607,-32.70652 +2023,3,17,1,New South Wales,153.277934,-28.873716 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2021,9,30,1,New South Wales,153.325226,-28.824854 +2021,5,12,1,New South Wales,150.522233,-34.465297 +2023,8,22,1,New South Wales,153.069361,-30.881095 +2023,9,21,1,New South Wales,151.859334,-32.720824 +2022,8,21,1,New South Wales,153.574261,-28.358917 +2020,1,22,1,New South Wales,152.811972,-31.399769 +2024,1,25,1,New South Wales,152.10642,-32.72846 +2021,7,31,1,New South Wales,150.5204,-34.465791 +2021,6,28,1,New South Wales,150.994844,-33.99893 +2021,3,11,1,New South Wales,150.616378,-34.434201 +2021,7,4,1,New South Wales,150.603164,-34.417579 +2021,12,29,1,New South Wales,153.104058,-29.484063 +2021,6,26,1,New South Wales,150.602036,-34.435741 +2023,2,27,1,New South Wales,152.85068,-31.554753 +2021,5,26,1,New South Wales,150.639033,-34.491726 +2021,2,27,1,New South Wales,152.912645,-31.446555 +2022,1,1,1,New South Wales,150.803223,-34.110095 +2021,5,28,1,New South Wales,150.834423,-34.111288 +2021,6,15,1,New South Wales,153.184845,-28.889381 +2024,8,6,1,New South Wales,150.81506,-34.11588 +2021,4,22,1,New South Wales,150.637361,-34.420517 +2020,11,23,1,New South Wales,152.076793,-32.725873 +2020,7,2,1,New South Wales,153.103908,-29.485356 +2020,2,17,1,New South Wales,153.092748,-28.603208 +2023,1,25,1,New South Wales,153.114043,-28.56045 +2022,11,3,1,New South Wales,153.493177,-28.680363 +2020,8,23,1,New South Wales,153.592409,-28.635669 +2023,1,17,1,New South Wales,153.470759,-28.583396 +2021,3,11,1,New South Wales,150.616378,-34.434201 +2021,6,17,1,New South Wales,150.518937,-34.436544 +2021,3,3,1,New South Wales,150.614596,-34.435257 +2020,5,15,1,New South Wales,153.092079,-29.488142 +2020,11,24,1,New South Wales,153.554518,-28.583053 +2021,8,8,1,New South Wales,150.520764,-34.465294 +2021,6,30,1,New South Wales,150.627347,-34.420296 +2022,8,14,1,New South Wales,150.542723,-34.510838 +2021,2,25,1,New South Wales,150.516531,-34.44725 +2021,5,12,1,New South Wales,150.640075,-34.491873 +2024,3,18,1,New South Wales,152.0872,-32.762229 +2022,8,21,1,New South Wales,152.915415,-31.477453 +2021,5,10,1,New South Wales,150.604937,-34.427125 +2020,11,2,1,New South Wales,149.998977,-36.551144 +2022,11,3,1,New South Wales,152.784617,-31.632483 +2020,11,13,1,New South Wales,152.009572,-32.727358 +2021,5,6,1,New South Wales,150.519938,-34.435798 +2021,6,22,1,New South Wales,150.599353,-34.450429 +2021,10,8,1,New South Wales,153.05728,-30.35826 +2021,4,22,1,New South Wales,150.630936,-34.388315 +2021,5,13,1,New South Wales,150.640141,-34.493001 +2021,5,19,1,New South Wales,150.608997,-34.434318 +2022,11,26,1,New South Wales,152.777302,-30.885013 +2020,3,14,1,New South Wales,152.92242,-31.436019 +2021,4,14,1,New South Wales,150.635509,-34.393552 +2021,6,5,1,New South Wales,150.523711,-34.43847 +2020,6,20,1,New South Wales,151.02698,-34.03451 +2021,5,28,1,New South Wales,150.517314,-34.452765 +2024,8,22,1,New South Wales,151.985769,-32.273526 +2021,5,13,1,New South Wales,150.640276,-34.492823 +2022,6,6,1,New South Wales,153.104192,-29.479393 +2022,9,17,1,New South Wales,150.841313,-34.06491 +2021,3,4,1,New South Wales,150.521578,-34.46019 +2021,6,12,1,New South Wales,150.60417,-34.438767 +2021,5,29,1,New South Wales,150.630954,-34.386918 +2020,1,7,1,New South Wales,153.286418,-29.025463 +2021,7,13,1,New South Wales,152.415236,-31.933206 +2020,2,3,1,New South Wales,153.103894,-29.485545 +2021,6,8,1,New South Wales,150.524782,-34.465222 +2021,6,25,1,New South Wales,150.606159,-33.449686 +2021,6,22,1,New South Wales,150.639476,-34.392862 +2020,9,17,1,New South Wales,152.92927,-31.460528 +2021,4,25,1,New South Wales,150.605114,-34.437695 +2022,8,1,1,New South Wales,153.30668,-28.816067 +2021,3,25,1,New South Wales,153.109392,-30.298612 +2021,6,25,1,New South Wales,150.625179,-34.385787 +2021,5,23,1,New South Wales,149.834442,-32.422781 +2021,5,13,1,New South Wales,150.523728,-34.464056 +2023,1,19,1,New South Wales,152.925003,-31.459272 +2021,9,29,1,New South Wales,152.387724,-31.900655 +2021,12,12,1,New South Wales,150.897175,-34.015787 +2020,10,10,1,New South Wales,149.986384,-36.655712 +2021,4,25,1,New South Wales,150.637737,-34.486355 +2020,4,27,1,New South Wales,152.74449,-30.87473 +2022,1,17,1,New South Wales,153.407496,-28.622151 +2021,4,29,1,New South Wales,150.616777,-34.399436 +2022,1,14,1,New South Wales,153.032147,-30.428617 +2021,6,12,1,New South Wales,150.522137,-34.465971 +2024,1,7,1,New South Wales,150.784977,-33.714285 +2023,11,3,1,New South Wales,152.909369,-31.471613 +2021,7,26,1,New South Wales,150.605939,-34.435854 +2022,2,20,1,New South Wales,151.003064,-34.047964 +2024,2,5,1,New South Wales,153.109739,-29.490203 +2023,3,14,1,New South Wales,153.250843,-28.764372 +2023,2,7,1,New South Wales,150.875183,-34.022401 +2022,9,3,1,New South Wales,152.848732,-31.56023 +2021,6,17,1,New South Wales,150.628429,-34.420515 +2021,4,6,1,New South Wales,150.517239,-34.451988 +2021,1,7,1,New South Wales,150.10055,-33.780096 +2021,5,24,1,New South Wales,150.604107,-34.433735 +2021,6,3,1,New South Wales,150.519683,-34.455085 +2020,3,28,1,New South Wales,150.04565,-33.765793 +2021,12,21,1,New South Wales,150.863276,-34.004553 +2023,5,10,1,New South Wales,152.876391,-29.661626 +2021,5,24,1,New South Wales,150.631312,-34.387718 +2021,7,1,1,New South Wales,152.641643,-31.710553 +2020,9,30,1,New South Wales,151.70976,-32.692155 +2021,10,6,1,New South Wales,152.888201,-31.443198 +2021,7,13,1,New South Wales,150.541045,-34.440678 +2020,1,30,1,New South Wales,153.103886,-29.485336 +2020,6,16,1,New South Wales,149.961734,-36.432507 +2020,3,27,1,New South Wales,152.91931,-31.474677 +2021,5,13,1,New South Wales,150.601794,-34.428605 +2023,9,7,1,New South Wales,152.087507,-32.773077 +2023,7,31,1,New South Wales,152.962989,-30.653566 +2021,5,16,1,New South Wales,150.632718,-34.418876 +2020,9,2,1,New South Wales,152.03706,-32.73271 +2020,11,7,1,New South Wales,150.010074,-36.579686 +2021,5,5,1,New South Wales,150.622863,-34.397309 +2023,8,14,1,New South Wales,151.718647,-32.717235 +2023,3,7,1,New South Wales,153.508848,-28.809504 +2021,9,22,1,New South Wales,151.976081,-32.18986 +2021,5,19,1,New South Wales,150.530391,-34.471394 +2020,9,8,1,New South Wales,152.899486,-29.63106 +2023,10,25,1,New South Wales,152.198472,-32.23465 +2023,6,29,1,New South Wales,153.39522,-28.959976 +2020,1,9,1,New South Wales,152.928881,-31.462547 +2021,6,15,1,New South Wales,150.516165,-34.459242 +2020,11,5,1,New South Wales,149.994744,-36.560944 +2020,3,11,1,New South Wales,153.263215,-28.881904 +2021,8,8,1,New South Wales,150.513836,-34.446375 +2021,4,27,1,New South Wales,150.62414,-34.388679 +2020,7,15,1,New South Wales,150.659275,-33.52702 +2023,12,30,1,New South Wales,153.10748,-29.490119 +2021,5,8,1,New South Wales,150.604344,-34.426933 +2020,10,29,1,New South Wales,153.431324,-29.016415 +2021,11,3,1,New South Wales,153.51898,-28.57492 +2022,10,3,1,New South Wales,153.110517,-29.490208 +2021,6,24,1,New South Wales,150.520401,-34.465764 +2020,10,3,1,New South Wales,150.655487,-33.522609 +2023,12,6,1,New South Wales,151.966919,-32.170783 +2020,8,27,1,New South Wales,152.776629,-31.488777 +2022,1,19,1,New South Wales,150.616928,-34.440874 +2021,9,3,1,New South Wales,150.641972,-34.399257 +2021,4,24,1,New South Wales,150.614855,-34.431124 +2020,4,21,1,New South Wales,153.495269,-28.693791 +2020,7,16,1,New South Wales,150.87916,-34.037466 +2020,10,,1,New South Wales,152.39132,-31.203574 +2020,8,23,1,New South Wales,153.10376,-29.485597 +2021,5,16,1,New South Wales,150.516224,-34.449515 +2020,4,24,1,New South Wales,153.438729,-28.861571 +2021,12,27,1,New South Wales,152.926477,-31.454567 +2023,11,19,1,New South Wales,152.78431,-31.63001 +2021,6,2,1,New South Wales,150.521458,-34.465732 +2022,9,30,1,New South Wales,153.110517,-29.490208 +2021,7,6,1,New South Wales,150.631115,-34.387381 +2020,10,3,1,New South Wales,150.655487,-33.522609 +2021,3,29,1,New South Wales,150.607667,-34.422211 +2020,2,12,1,New South Wales,153.299582,-28.904951 +2021,11,25,1,New South Wales,151.091222,-33.144625 +2021,6,4,1,New South Wales,150.636632,-34.488083 +2024,4,27,1,New South Wales,151.774246,-32.584927 +2021,5,3,1,New South Wales,150.627059,-34.389682 +2021,5,6,1,New South Wales,150.6589,-34.457624 +2024,3,29,1,New South Wales,152.905425,-31.437646 +2021,5,9,1,New South Wales,150.609235,-34.420628 +2023,10,18,1,New South Wales,153.123824,-30.29583 +2021,2,28,1,New South Wales,150.65772,-34.455826 +2023,12,4,1,New South Wales,150.78318,-33.718585 +2021,6,8,1,New South Wales,150.615459,-34.432848 +2022,3,14,1,New South Wales,153.240592,-29.349618 +2020,3,11,1,New South Wales,152.921038,-31.464724 +2020,1,3,1,New South Wales,152.392813,-31.903003 +2021,4,13,1,New South Wales,153.104037,-29.484324 +2021,4,10,1,New South Wales,153.110533,-29.49017 +2023,6,4,1,New South Wales,153.454401,-28.615864 +2021,10,8,1,New South Wales,153.101703,-29.489162 +2021,7,12,1,New South Wales,150.643006,-34.395355 +2023,9,7,1,New South Wales,153.104337,-29.489666 +2022,9,7,1,New South Wales,153.233739,-28.888824 +2022,1,28,1,New South Wales,150.977379,-34.105016 +2021,6,8,1,New South Wales,150.517969,-34.457097 +2020,11,23,1,New South Wales,150.835307,-34.068218 +2021,5,14,1,New South Wales,150.637302,-34.423752 +2022,8,5,1,New South Wales,150.799111,-34.226306 +2020,9,28,1,New South Wales,150.993791,-34.070793 +2020,11,3,1,New South Wales,153.335449,-28.872021 +2023,8,9,1,New South Wales,150.787013,-33.705818 +2023,10,23,1,New South Wales,150.7278,-34.211747 +2022,3,25,1,New South Wales,152.063555,-32.709447 +2023,7,19,1,New South Wales,152.921031,-31.448115 +2021,11,10,1,New South Wales,152.999917,-30.408961 +2020,10,19,1,New South Wales,152.063722,-32.707398 +2021,3,25,1,New South Wales,150.532746,-34.481232 +2021,3,24,1,New South Wales,150.516863,-34.446301 +2024,1,1,1,New South Wales,150.785263,-33.716972 +2020,10,,1,New South Wales,150.545289,-34.514293 +2021,3,31,1,New South Wales,150.521023,-34.454319 +2021,5,27,1,New South Wales,150.517155,-34.453717 +2022,9,19,1,New South Wales,150.95404,-33.958414 +2022,4,3,1,New South Wales,153.401196,-28.260298 +2022,12,21,1,New South Wales,152.919153,-31.481022 +2021,4,28,1,New South Wales,150.637774,-34.488907 +2020,5,7,1,New South Wales,153.30734,-28.97709 +2020,1,3,1,New South Wales,153.291586,-28.864043 +2022,5,22,1,New South Wales,153.410861,-28.660666 +2021,5,23,1,New South Wales,150.615994,-34.434698 +2021,5,26,1,New South Wales,150.516446,-34.450106 +2021,6,27,1,New South Wales,150.522978,-34.46624 +2020,9,7,1,New South Wales,152.920964,-31.445923 +2023,12,10,1,New South Wales,153.110554,-29.49017 +2021,5,21,1,New South Wales,150.515272,-34.451533 +2021,5,15,1,New South Wales,150.516204,-34.4491 +2022,12,23,1,New South Wales,153.232915,-28.946419 +2024,1,10,1,New South Wales,152.93253,-29.706438 +2023,9,18,1,New South Wales,150.842911,-34.139954 +2022,1,4,1,New South Wales,153.452495,-28.667369 +2020,11,6,1,New South Wales,149.994744,-36.560944 +2022,8,20,1,New South Wales,152.912768,-31.476134 +2021,3,20,1,New South Wales,150.607899,-34.422089 +2024,1,19,1,New South Wales,152.884408,-31.444314 +2021,5,18,1,New South Wales,150.630984,-34.39011 +2023,5,20,1,New South Wales,150.833896,-34.084454 +2022,9,6,1,New South Wales,152.938891,-29.736253 +2021,4,26,1,New South Wales,150.635802,-34.41945 +2023,12,3,1,New South Wales,152.09174,-28.784917 +2023,5,30,1,New South Wales,152.190359,-31.594177 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2022,9,16,1,New South Wales,152.787145,-31.630182 +2021,4,18,1,New South Wales,150.630906,-34.394012 +2021,3,7,1,New South Wales,150.655491,-34.455738 +2021,5,19,1,New South Wales,150.514987,-34.444992 +2021,7,5,1,New South Wales,150.815095,-34.085656 +2020,11,4,1,New South Wales,149.96897,-36.58553 +2022,8,3,1,New South Wales,152.776469,-31.632853 +2021,7,9,1,New South Wales,150.627412,-34.421451 +2021,5,29,1,New South Wales,153.31357,-28.98159 +2020,11,23,1,New South Wales,153.077049,-29.450991 +2020,11,18,1,New South Wales,152.19874,-32.187837 +2021,5,17,1,New South Wales,150.640792,-34.494248 +2021,7,6,1,New South Wales,150.522447,-34.465797 +2020,2,18,1,New South Wales,153.282726,-28.824357 +2020,10,18,1,New South Wales,149.947183,-36.617465 +2021,6,8,1,New South Wales,150.518036,-34.457062 +2022,11,26,1,New South Wales,150.847475,-34.072256 +2020,3,26,1,New South Wales,150.092834,-33.775551 +2023,5,26,1,New South Wales,153.302778,-29.051482 +2021,3,7,1,New South Wales,150.517367,-34.456859 +2020,10,20,1,New South Wales,149.913134,-36.588285 +2020,10,13,1,New South Wales,150.815095,-34.085656 +2020,10,12,1,New South Wales,149.950035,-36.601015 +2020,11,,1,New South Wales,152.617496,-31.53719 +2021,4,16,1,New South Wales,150.627446,-34.386381 +2021,6,13,1,New South Wales,150.604598,-34.438622 +2023,8,29,1,New South Wales,150.784554,-33.717284 +2021,4,21,1,New South Wales,150.632732,-34.392894 +2023,9,26,1,New South Wales,152.902558,-30.537219 +2022,5,6,1,New South Wales,153.331243,-28.821749 +2023,12,14,1,New South Wales,152.782191,-31.630722 +2023,9,25,1,New South Wales,153.109787,-29.490217 +2022,1,4,1,New South Wales,152.070405,-32.747786 +2023,7,10,1,New South Wales,153.110479,-29.489914 +2021,4,28,1,New South Wales,150.624471,-34.388127 +2021,5,27,1,New South Wales,150.630666,-34.420667 +2020,4,23,1,New South Wales,152.62673,-30.631686 +2021,4,15,1,New South Wales,150.606936,-34.439452 +2020,12,8,1,New South Wales,149.960189,-36.280531 +2022,10,14,1,New South Wales,153.437804,-29.026272 +2022,11,18,1,New South Wales,153.309351,-28.823238 +2024,4,18,1,New South Wales,152.063773,-32.706571 +2022,8,24,1,New South Wales,153.050291,-28.467992 +2022,9,24,1,New South Wales,153.103924,-29.485492 +2021,3,30,1,New South Wales,150.603901,-34.440186 +2021,11,4,1,New South Wales,152.064957,-32.709452 +2021,4,21,1,New South Wales,150.614854,-34.429618 +2021,6,20,1,New South Wales,150.520295,-34.46569 +2021,10,18,1,New South Wales,152.812714,-29.797015 +2021,10,28,1,New South Wales,153.108135,-29.490605 +2021,5,16,1,New South Wales,150.530227,-34.46993 +2020,12,1,1,New South Wales,153.301997,-28.847748 +2021,6,21,1,New South Wales,150.62792,-34.420821 +2024,8,24,1,New South Wales,152.133691,-32.200255 +2021,6,26,1,New South Wales,150.510331,-34.470229 +2023,12,22,1,New South Wales,152.792499,-31.641276 +2021,6,12,1,New South Wales,150.604127,-34.438748 +2024,6,18,1,New South Wales,150.45645,-34.44059 +2021,4,29,1,New South Wales,150.606647,-34.435074 +2021,3,3,1,New South Wales,150.615599,-34.435195 +2021,7,1,1,New South Wales,150.51303,-34.447125 +2020,11,11,1,New South Wales,152.90778,-31.48926 +2020,1,30,1,New South Wales,152.879852,-29.70686 +2020,7,21,1,New South Wales,153.362242,-29.423647 +2023,11,26,1,New South Wales,152.928994,-31.459596 +2023,1,12,1,New South Wales,152.785908,-31.491433 +2024,9,21,2,New South Wales,146.558609,-34.753899 +2020,10,23,1,New South Wales,149.988655,-36.56931 +2021,5,22,1,New South Wales,150.59863,-34.428543 +2021,5,11,1,New South Wales,150.606826,-34.438738 +2021,4,14,1,New South Wales,150.61514,-34.436421 +2023,11,4,1,New South Wales,153.091248,-29.487859 +2023,10,4,1,New South Wales,152.921564,-31.457986 +2021,3,14,1,New South Wales,150.659535,-34.458268 +2020,10,19,1,New South Wales,149.938155,-36.621708 +2021,6,28,1,New South Wales,150.64375,-34.390943 +2023,9,15,1,New South Wales,152.817769,-31.650394 +2023,8,20,1,New South Wales,152.153868,-28.856957 +2022,11,25,1,New South Wales,152.770676,-30.853416 +2023,4,2,1,New South Wales,152.711088,-31.782598 +2022,11,18,1,New South Wales,152.770676,-30.853416 +2021,8,4,1,New South Wales,150.626082,-34.390403 +2023,7,12,1,New South Wales,153.273577,-28.939638 +2020,3,28,1,New South Wales,150.123233,-35.076012 +2021,10,27,1,New South Wales,151.66009,-32.6864 +2021,11,16,1,New South Wales,153.316454,-28.823424 +2021,7,2,1,New South Wales,150.597654,-34.412846 +2021,5,15,1,New South Wales,150.602677,-34.436538 +2020,10,29,1,New South Wales,149.958519,-36.587122 +2021,5,7,1,New South Wales,150.632778,-34.418661 +2021,3,22,1,New South Wales,150.607914,-34.422333 +2021,6,18,1,New South Wales,150.618209,-34.435246 +2022,12,31,1,New South Wales,152.063657,-32.705653 +2021,11,20,1,New South Wales,153.28558,-28.987266 +2021,11,7,1,New South Wales,151.012056,-34.046795 +2023,7,11,1,New South Wales,150.677718,-33.561189 +2020,4,18,1,New South Wales,150.068542,-33.785162 +2021,6,3,1,New South Wales,150.624452,-34.388036 +2021,4,28,1,New South Wales,150.60152,-34.426779 +2020,12,19,1,New South Wales,153.103752,-29.485594 +2022,12,6,1,New South Wales,152.116861,-32.764989 +2020,10,26,1,New South Wales,149.984095,-36.575978 +2021,3,15,1,New South Wales,150.520428,-34.467442 +2021,7,19,1,New South Wales,150.516507,-34.447682 +2022,9,18,1,New South Wales,148.995175,-31.33606 +2020,9,22,1,New South Wales,153.103884,-29.485426 +2020,10,29,1,New South Wales,153.245736,-28.878085 +2021,8,2,1,New South Wales,150.51885,-34.447216 +2023,12,4,1,New South Wales,152.06372,-32.706562 +2021,9,1,1,New South Wales,150.514478,-34.443818 +2021,6,19,1,New South Wales,150.642858,-34.394045 +2023,10,23,1,New South Wales,153.108119,-29.490236 +2021,3,18,1,New South Wales,150.635358,-34.488085 +2020,3,30,1,New South Wales,153.18377,-29.44215 +2024,2,11,1,New South Wales,153.109401,-29.490507 +2020,7,12,1,New South Wales,152.068413,-32.707662 +2023,11,30,1,New South Wales,152.824738,-29.507082 +2020,5,12,1,New South Wales,153.324182,-28.61064 +2020,10,27,1,New South Wales,153.352906,-28.83385 +2023,4,22,1,New South Wales,153.315869,-28.845102 +2023,10,18,1,New South Wales,150.785159,-33.709552 +2021,6,8,1,New South Wales,150.615237,-34.432601 +2021,6,30,1,New South Wales,150.513169,-34.447227 +2021,2,20,1,New South Wales,153.097251,-29.48685 +2024,9,23,1,New South Wales,152.887759,-30.461154 +2022,5,17,1,New South Wales,153.103602,-29.485758 +2021,5,24,1,New South Wales,150.527663,-34.469383 +2022,1,30,1,New South Wales,153.104149,-29.478828 +2022,12,2,1,New South Wales,153.600403,-28.675077 +2021,6,8,1,New South Wales,150.607851,-34.430626 +2021,4,24,1,New South Wales,150.61028,-34.41908 +2020,4,2,1,New South Wales,150.055536,-33.779389 +2024,1,12,1,New South Wales,150.786279,-33.70395 +2021,7,4,1,New South Wales,150.525523,-34.465553 +2023,5,31,1,New South Wales,150.7917,-34.21627 +2023,11,12,1,New South Wales,150.784674,-33.713293 +2021,8,13,1,New South Wales,150.644212,-34.399282 +2021,6,2,1,New South Wales,150.521404,-34.465722 +2021,7,25,1,New South Wales,150.600773,-34.420949 +2022,10,4,1,New South Wales,152.986678,-30.41857 +2021,7,12,1,New South Wales,150.643072,-34.395347 +2023,7,27,1,New South Wales,153.306937,-28.848828 +2021,7,4,1,New South Wales,150.603131,-34.417606 +2021,5,18,1,New South Wales,150.640852,-34.49443 +2022,10,12,1,New South Wales,151.921522,-31.973444 +2021,4,9,1,New South Wales,150.535081,-34.462924 +2021,5,19,1,New South Wales,150.53014,-34.471055 +2021,4,26,1,New South Wales,150.608415,-34.454357 +2022,6,26,1,New South Wales,152.10181,-32.734228 +2021,10,20,1,New South Wales,152.061507,-32.70951 +2023,5,30,1,New South Wales,152.785617,-31.632364 +2020,7,19,1,New South Wales,151.783415,-32.587629 +2023,4,15,1,New South Wales,152.926058,-31.454741 +2024,2,26,1,New South Wales,152.92176,-31.46353 +2020,11,30,1,New South Wales,149.980514,-36.435679 +2020,8,21,1,New South Wales,153.527242,-28.233314 +2021,8,9,1,New South Wales,150.642656,-34.404355 +2022,9,20,1,New South Wales,152.91043,-30.17363 +2021,6,9,1,New South Wales,150.601719,-34.451025 +2020,10,2,1,New South Wales,152.913585,-31.486201 +2021,1,28,1,New South Wales,150.842133,-34.070234 +2023,11,21,1,New South Wales,152.923989,-31.470412 +2021,3,18,1,New South Wales,150.520854,-34.467009 +2020,11,2,1,New South Wales,149.967242,-36.561675 +2022,5,12,1,New South Wales,153.103291,-29.486407 +2021,5,25,1,New South Wales,150.631367,-34.420094 +2020,12,1,1,New South Wales,149.990128,-36.434481 +2021,6,21,1,New South Wales,150.520328,-34.465673 +2020,10,26,1,New South Wales,153.360617,-28.840581 +2021,4,12,1,New South Wales,150.602724,-34.431103 +2020,5,29,1,New South Wales,153.558143,-28.393943 +2024,2,1,1,New South Wales,152.019272,-32.194431 +2021,2,17,1,New South Wales,150.067411,-33.79772 +2021,5,12,1,New South Wales,150.517346,-34.453144 +2023,9,27,1,New South Wales,153.149391,-28.499969 +2023,12,12,1,New South Wales,150.78495,-33.716124 +2020,10,30,1,New South Wales,149.92265,-36.572354 +2021,3,28,1,New South Wales,150.604354,-34.440312 +2020,11,1,1,New South Wales,149.92265,-36.572354 +2020,9,23,1,New South Wales,150.617141,-33.51732 +2021,12,21,1,New South Wales,153.479024,-28.746795 +2021,3,27,1,New South Wales,150.604138,-34.440263 +2021,7,5,1,New South Wales,150.51697,-34.442706 +2023,12,6,1,New South Wales,153.452423,-28.518972 +2021,6,14,1,New South Wales,150.515717,-34.44681 +2021,3,4,1,New South Wales,150.517486,-34.445854 +2020,12,11,1,New South Wales,152.927637,-31.454111 +2022,8,24,1,New South Wales,152.91583,-29.592678 +2020,10,22,1,New South Wales,149.950035,-36.601015 +2023,9,25,1,New South Wales,153.266675,-28.920605 +2021,5,31,1,New South Wales,150.608281,-34.450288 +2021,5,7,1,New South Wales,150.605423,-34.437953 +2021,6,14,1,New South Wales,150.611851,-34.433057 +2020,11,25,1,New South Wales,153.279241,-28.839565 +2021,7,9,1,New South Wales,150.599156,-34.413966 +2021,9,4,1,New South Wales,153.293124,-28.864604 +2022,9,1,1,New South Wales,152.925077,-31.461177 +2023,7,1,1,New South Wales,150.83952,-34.07639 +2022,11,22,1,New South Wales,152.764422,-30.891124 +2023,12,23,1,New South Wales,153.093501,-29.492595 +2020,12,3,1,New South Wales,146.555519,-34.742669 +2021,5,12,1,New South Wales,150.633122,-34.417676 +2021,7,8,1,New South Wales,150.270235,-33.285633 +2021,6,5,1,New South Wales,150.630721,-34.420623 +2022,1,5,1,New South Wales,152.868748,-29.667023 +2021,7,2,1,New South Wales,150.522395,-34.465706 +2021,10,18,1,New South Wales,152.929122,-31.454682 +2021,8,19,1,New South Wales,150.790619,-34.210895 +2023,7,4,1,New South Wales,152.116968,-32.765142 +2023,8,13,1,New South Wales,153.099713,-29.491543 +2023,7,27,1,New South Wales,153.103908,-29.489577 +2021,5,17,1,New South Wales,150.63275,-34.418904 +2023,11,1,1,New South Wales,150.785121,-33.714082 +2021,5,31,1,New South Wales,150.52389,-34.464086 +2024,2,6,1,New South Wales,153.107995,-29.490432 +2020,9,2,1,New South Wales,152.71928,-31.346857 +2021,10,31,1,New South Wales,152.077096,-32.722402 +2023,2,26,1,New South Wales,153.21773,-28.824419 +2023,10,7,1,New South Wales,152.90872,-31.468605 +2021,3,20,1,New South Wales,150.516942,-34.44623 +2022,11,3,1,New South Wales,153.064905,-30.88906 +2021,6,8,1,New South Wales,150.629796,-34.420641 +2024,3,9,1,New South Wales,152.909406,-31.48899 +2023,10,25,1,New South Wales,152.189597,-32.229205 +2020,10,13,1,New South Wales,150.815095,-34.085656 +2021,9,12,1,New South Wales,150.515597,-34.454515 +2020,1,27,1,New South Wales,150.808667,-34.097321 +2020,9,15,1,New South Wales,152.910016,-31.457931 +2022,1,8,1,New South Wales,152.925678,-31.452896 +2023,10,28,1,New South Wales,152.204264,-32.226111 +2022,1,19,1,New South Wales,152.043818,-32.763831 +2021,10,13,1,New South Wales,153.104289,-29.477777 +2022,6,15,1,New South Wales,153.104155,-29.478847 +2023,9,6,1,New South Wales,152.795014,-31.514706 +2023,12,31,1,New South Wales,152.54045,-32.059637 +2024,1,4,1,New South Wales,151.971082,-32.178556 +2020,2,27,1,New South Wales,153.103822,-29.485552 +2021,7,7,1,New South Wales,150.597402,-34.416691 +2021,5,23,1,New South Wales,150.514469,-34.443376 +2020,7,29,1,New South Wales,153.40518,-28.260772 +2021,6,3,1,New South Wales,150.604159,-34.43801 +2021,11,12,1,New South Wales,153.293095,-28.864561 +2021,7,8,1,New South Wales,150.599181,-34.413832 +2021,5,28,1,New South Wales,150.517533,-34.452003 +2020,10,23,1,New South Wales,149.947183,-36.617465 +2020,4,24,1,New South Wales,153.481911,-28.64025 +2021,8,16,1,New South Wales,153.323947,-28.826803 +2021,4,21,1,New South Wales,150.604611,-34.424441 +2021,7,23,1,New South Wales,150.624254,-34.386202 +2021,9,10,1,New South Wales,150.641865,-34.395694 +2020,5,24,1,New South Wales,153.092259,-29.488247 +2020,2,17,1,New South Wales,153.092748,-28.603208 +2023,8,17,1,New South Wales,150.784752,-33.714065 +2021,5,26,1,New South Wales,150.526567,-34.469288 +2021,7,27,1,New South Wales,153.532565,-28.692958 +2021,11,9,1,New South Wales,153.103817,-29.48559 +2022,11,25,1,New South Wales,150.92949,-33.11436 +2021,7,26,1,New South Wales,150.598849,-34.423165 +2023,9,14,1,New South Wales,153.5583,-28.394235 +2022,8,16,1,New South Wales,153.29526,-28.693539 +2021,7,5,1,New South Wales,152.065216,-32.713192 +2021,5,8,1,New South Wales,150.606418,-34.438144 +2021,1,21,1,New South Wales,153.410281,-28.247811 +2022,6,30,1,New South Wales,152.063956,-32.706625 +2024,1,17,1,New South Wales,153.347323,-28.255767 +2022,12,6,1,New South Wales,152.924992,-31.453285 +2021,6,16,1,New South Wales,150.639883,-34.400073 +2021,6,4,1,New South Wales,150.639604,-34.399139 +2021,7,8,1,New South Wales,150.521851,-34.464577 +2021,8,26,1,New South Wales,153.104138,-29.477805 +2022,7,10,1,New South Wales,152.919406,-31.442995 +2021,7,25,1,New South Wales,150.600542,-34.420665 +2021,1,5,1,New South Wales,150.994404,-34.141154 +2022,10,22,1,New South Wales,152.892785,-31.45681 +2022,10,27,1,New South Wales,152.103245,-32.759502 +2022,12,17,1,New South Wales,153.072733,-28.585111 +2021,2,25,1,New South Wales,150.654592,-34.455594 +2021,5,18,1,New South Wales,153.60049,-28.71866 +2021,5,29,1,New South Wales,150.631443,-34.386946 +2024,9,25,1,New South Wales,151.095618,-29.756559 +2020,10,1,1,New South Wales,153.116803,-30.24956 +2020,10,12,1,New South Wales,149.947183,-36.617465 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2021,4,12,1,New South Wales,150.83687,-34.055816 +2022,4,13,1,New South Wales,151.743474,-32.722521 +2020,11,22,1,New South Wales,150.842133,-34.070234 +2023,7,17,1,New South Wales,153.31674,-28.844954 +2021,6,15,1,New South Wales,150.51534,-34.460244 +2021,5,11,1,New South Wales,150.609147,-34.420653 +2021,3,31,1,New South Wales,152.904805,-31.43932 +2021,3,22,1,New South Wales,150.525494,-34.459918 +2022,12,30,1,New South Wales,151.003336,-34.072952 +2022,4,30,1,New South Wales,152.082218,-32.736244 +2021,5,19,1,New South Wales,150.600148,-34.428726 +2021,4,30,1,New South Wales,150.610092,-34.419951 +2022,9,19,1,New South Wales,152.068578,-32.708268 +2020,9,9,1,New South Wales,152.086104,-32.727959 +2021,6,19,1,New South Wales,150.520339,-34.465655 +2021,5,6,1,New South Wales,150.622101,-34.3977 +2023,8,13,1,New South Wales,153.049386,-28.558324 +2021,11,29,1,New South Wales,153.071682,-28.585441 +2021,9,2,1,New South Wales,150.642075,-34.395968 +2022,10,9,1,New South Wales,151.42825,-32.870404 +2023,7,26,1,New South Wales,150.785367,-33.716969 +2021,4,21,1,New South Wales,150.631121,-34.387552 +2021,5,20,1,New South Wales,150.521559,-34.465626 +2021,5,27,1,New South Wales,150.521621,-34.465735 +2020,12,8,1,New South Wales,153.091698,-29.487901 +2023,11,1,1,New South Wales,150.785349,-33.70667 +2021,6,6,1,New South Wales,150.640422,-34.398289 +2024,1,19,1,New South Wales,152.923288,-31.477024 +2021,9,3,1,New South Wales,152.191717,-29.358322 +2021,1,28,1,New South Wales,153.104026,-29.485366 +2021,5,7,1,New South Wales,150.627362,-34.390121 +2022,10,19,1,New South Wales,153.317172,-28.817326 +2022,6,9,1,New South Wales,152.426,-28.998 +2023,11,19,1,New South Wales,152.921263,-31.480127 +2020,9,22,1,New South Wales,152.066739,-32.707593 +2023,6,17,1,New South Wales,150.83185,-34.073964 +2021,9,6,1,New South Wales,152.812804,-30.908854 +2021,12,23,1,New South Wales,153.1038,-29.485604 +2021,6,4,1,New South Wales,150.519551,-34.456606 +2021,7,1,1,New South Wales,150.513109,-34.447775 +2023,8,30,1,New South Wales,151.484154,-33.046796 +2020,5,12,1,New South Wales,153.325257,-28.597513 +2021,8,25,1,New South Wales,153.193401,-28.876839 +2023,1,26,1,New South Wales,153.108178,-29.490147 +2021,7,4,1,New South Wales,150.525654,-34.465537 +2020,10,17,1,New South Wales,149.947048,-36.640426 +2022,11,19,1,New South Wales,152.794854,-30.893434 +2022,11,24,1,New South Wales,152.794854,-30.893434 +2022,2,2,1,New South Wales,153.277461,-28.67595 +2022,11,22,1,New South Wales,152.764422,-30.891124 +2021,9,13,1,New South Wales,150.514862,-34.441879 +2021,7,15,1,New South Wales,150.627088,-34.420985 +2020,3,27,1,New South Wales,150.540994,-34.374065 +2024,2,25,1,New South Wales,152.065272,-32.704382 +2023,9,23,1,New South Wales,152.907152,-31.444076 +2021,5,24,1,New South Wales,150.616024,-34.43478 +2023,6,30,1,New South Wales,153.044401,-30.379245 +2021,3,9,1,New South Wales,153.265486,-28.870908 +2020,11,,1,New South Wales,152.927995,-31.457568 +2024,1,9,1,New South Wales,150.785964,-33.704865 +2023,6,22,1,New South Wales,152.913063,-31.443309 +2021,5,14,1,New South Wales,150.525372,-34.464044 +2021,7,15,1,New South Wales,153.297705,-28.823778 +2023,11,8,1,New South Wales,151.682517,-32.51543 +2021,10,26,1,New South Wales,150.808987,-34.208693 +2021,5,24,1,New South Wales,153.362241,-28.873593 +2023,4,6,1,New South Wales,153.109251,-29.490567 +2020,12,12,1,New South Wales,152.03997,-32.73044 +2021,6,8,1,New South Wales,151.144057,-33.108131 +2021,5,9,1,New South Wales,150.628133,-34.389793 +2020,11,,1,New South Wales,151.472299,-32.971677 +2020,2,1,1,New South Wales,152.647854,-30.538299 +2021,7,3,1,New South Wales,150.641949,-34.396579 +2023,11,3,1,New South Wales,152.189573,-32.226267 +2021,3,17,1,New South Wales,150.516173,-34.445376 +2021,7,16,1,New South Wales,150.595348,-34.413224 +2020,8,7,1,New South Wales,152.158512,-31.624332 +2023,3,1,1,New South Wales,152.909098,-31.466639 +2021,5,19,1,New South Wales,150.641071,-34.494777 +2021,6,4,1,New South Wales,150.639796,-34.399269 +2021,5,16,1,New South Wales,153.331243,-28.821749 +2020,12,18,1,New South Wales,150.01527,-33.838363 +2024,2,8,1,New South Wales,152.926157,-31.450695 +2021,3,25,1,New South Wales,150.517261,-34.451628 +2021,2,26,1,New South Wales,150.611785,-34.430018 +2021,7,31,1,New South Wales,153.314983,-28.949201 +2024,8,23,1,New South Wales,152.410574,-31.667452 +2021,5,7,1,New South Wales,150.609853,-34.455061 +2023,10,2,1,New South Wales,153.095025,-30.37234 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2023,6,2,1,New South Wales,153.018925,-29.430725 +2021,6,22,1,New South Wales,150.520325,-34.465763 +2021,5,16,1,New South Wales,150.520432,-34.454054 +2020,8,31,1,New South Wales,153.314983,-28.949201 +2021,8,22,1,New South Wales,152.063797,-32.70646 +2020,8,1,1,New South Wales,153.364178,-28.673126 +2023,9,28,1,New South Wales,153.556312,-28.398603 +2020,11,22,1,New South Wales,149.942556,-36.497108 +2021,9,27,1,New South Wales,153.309732,-28.82109 +2021,4,28,1,New South Wales,150.616071,-34.436205 +2023,6,30,1,New South Wales,153.314983,-28.949201 +2021,7,22,1,New South Wales,150.523942,-34.463456 +2022,10,16,1,New South Wales,152.753775,-30.408702 +2021,6,30,1,New South Wales,150.64459,-34.393556 +2021,11,30,1,New South Wales,153.314983,-28.949201 +2020,12,9,1,New South Wales,153.300206,-28.886464 +2021,5,8,1,New South Wales,150.628155,-34.389758 +2023,9,4,1,New South Wales,151.234752,-33.118401 +2021,4,3,1,New South Wales,150.523833,-34.452401 +2020,10,19,1,New South Wales,152.953689,-29.234079 +2020,10,31,1,New South Wales,149.967242,-36.561675 +2022,9,14,1,New South Wales,152.895754,-31.166194 +2020,9,21,1,New South Wales,153.553646,-28.641838 +2020,11,7,1,New South Wales,150.47087,-34.50172 +2020,9,29,1,New South Wales,149.551019,-33.563071 +2021,1,21,1,New South Wales,153.459485,-28.327038 +2024,2,10,1,New South Wales,150.782438,-33.719314 +2021,3,5,1,New South Wales,150.608341,-34.432132 +2020,11,6,1,New South Wales,150.010074,-36.579686 +2021,5,8,1,New South Wales,150.627766,-34.390066 +2020,1,8,1,New South Wales,152.867804,-29.667471 +2023,12,22,1,New South Wales,152.395118,-31.944491 +2021,6,22,1,New South Wales,152.930667,-29.733745 +2022,10,11,1,New South Wales,152.418213,-31.905008 +2020,6,2,1,New South Wales,153.083542,-28.596042 +2021,4,23,1,New South Wales,150.630033,-34.388334 +2022,11,21,1,New South Wales,153.322291,-28.886922 +2022,2,13,1,New South Wales,153.1038,-29.485585 +2022,11,11,1,New South Wales,153.519027,-28.231036 +2021,5,4,1,New South Wales,150.52139,-34.452938 +2023,4,11,1,New South Wales,149.467866,-33.676706 +2021,7,8,1,New South Wales,150.630857,-34.388828 +2021,3,5,1,New South Wales,150.604308,-34.436218 +2021,5,15,1,New South Wales,150.640545,-34.494099 +2021,8,5,1,New South Wales,150.628255,-34.389291 +2020,12,6,1,New South Wales,153.607389,-28.687767 +2023,3,18,1,New South Wales,151.061116,-29.741249 +2021,2,27,1,New South Wales,150.603956,-34.43293 +2023,5,20,1,New South Wales,153.116863,-29.370713 +2020,10,23,1,New South Wales,149.915309,-36.574566 +2020,11,25,1,New South Wales,153.279241,-28.839565 +2022,4,21,1,New South Wales,153.110297,-29.490208 +2021,6,10,1,New South Wales,150.627232,-34.385872 +2022,10,31,1,New South Wales,153.314983,-28.949201 +2024,2,4,1,New South Wales,152.374485,-31.915683 +2021,8,16,1,New South Wales,150.513061,-34.446079 +2021,6,30,1,New South Wales,153.314983,-28.949201 +2021,7,5,1,New South Wales,150.522476,-34.465906 +2021,5,5,1,New South Wales,150.627306,-34.389804 +2023,8,17,1,New South Wales,153.533367,-28.196788 +2023,6,19,1,New South Wales,150.783465,-33.717843 +2021,5,27,1,New South Wales,150.638957,-34.491725 +2024,3,22,1,New South Wales,152.376957,-31.925235 +2022,3,7,1,New South Wales,152.091682,-32.762061 +2021,7,19,1,New South Wales,153.394133,-28.275644 +2020,1,26,1,New South Wales,152.792285,-31.525827 +2020,10,18,1,New South Wales,149.947183,-36.617465 +2021,6,1,1,New South Wales,150.638457,-34.491327 +2022,11,2,1,New South Wales,152.941899,-31.175289 +2021,9,28,1,New South Wales,153.317259,-28.82624 +2021,8,18,1,New South Wales,153.565768,-28.387078 +2021,6,19,1,New South Wales,150.519214,-34.459908 +2021,7,12,1,New South Wales,150.630815,-34.386465 +2021,3,6,1,New South Wales,150.514797,-34.445898 +2021,8,28,1,New South Wales,153.563269,-28.361556 +2022,10,1,1,New South Wales,153.56601,-28.38884 +2021,12,11,1,New South Wales,152.921731,-31.438699 +2024,7,16,1,New South Wales,152.896169,-31.433627 +2020,11,27,1,New South Wales,153.328489,-28.817088 +2020,12,19,1,New South Wales,153.56106,-28.389187 +2021,6,4,1,New South Wales,150.630796,-34.420687 +2021,7,10,1,New South Wales,150.631444,-34.388073 +2021,7,31,1,New South Wales,153.314983,-28.949201 +2021,6,3,1,New South Wales,150.535509,-34.462437 +2021,1,10,1,New South Wales,153.278327,-28.938825 +2022,10,26,1,New South Wales,152.374605,-31.915487 +2021,6,3,1,New South Wales,150.630431,-34.420887 +2021,6,24,1,New South Wales,150.514332,-34.446529 +2022,8,8,1,New South Wales,153.304787,-28.817358 +2023,8,26,1,New South Wales,150.985236,-34.090734 +2021,3,6,1,New South Wales,150.636138,-34.486279 +2020,2,10,1,New South Wales,153.511348,-28.704764 +2023,3,12,1,New South Wales,152.878742,-29.707293 +2023,9,20,1,New South Wales,152.372712,-31.941776 +2022,11,23,1,New South Wales,152.418213,-31.905008 +2021,5,1,1,New South Wales,150.618163,-34.429592 +2021,4,17,1,New South Wales,150.629817,-34.39446 +2022,6,28,1,New South Wales,152.868469,-29.689451 +2022,8,1,1,New South Wales,152.876061,-31.522499 +2020,7,28,1,New South Wales,152.590193,-31.558798 +2021,6,14,1,New South Wales,150.604909,-34.437646 +2020,10,22,1,New South Wales,149.923643,-36.618562 +2020,10,14,1,New South Wales,152.815697,-31.436396 +2021,8,20,1,New South Wales,153.078226,-30.338429 +2020,2,29,1,New South Wales,152.925051,-31.454206 +2023,12,3,1,New South Wales,150.987906,-34.021387 +2020,10,29,1,New South Wales,149.967242,-36.561675 +2021,6,22,1,New South Wales,150.625384,-34.386242 +2020,10,14,1,New South Wales,153.263732,-28.880992 +2021,7,8,1,New South Wales,150.597382,-34.415897 +2022,6,27,1,New South Wales,152.94415,-30.38912 +2023,9,25,1,New South Wales,151.000872,-29.74789 +2021,6,23,1,New South Wales,150.628416,-34.420605 +2021,4,14,1,New South Wales,150.624739,-34.383651 +2021,6,11,1,New South Wales,150.613254,-34.432724 +2020,11,19,1,New South Wales,152.836505,-31.591819 +2021,5,19,1,New South Wales,150.640368,-34.494601 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2022,7,15,1,New South Wales,153.116477,-28.620707 +2021,2,19,1,New South Wales,151.628329,-32.643018 +2023,1,23,1,New South Wales,152.924926,-31.453953 +2022,6,3,1,New South Wales,153.352303,-28.28417 +2020,1,2,1,New South Wales,153.094748,-29.49424 +2021,6,7,1,New South Wales,153.5539,-28.7043 +2021,5,15,1,New South Wales,150.640545,-34.494099 +2023,7,31,1,New South Wales,153.314983,-28.949201 +2022,5,20,1,New South Wales,150.901057,-33.999426 +2020,9,8,1,New South Wales,153.537072,-28.222185 +2020,10,31,1,New South Wales,153.314983,-28.949201 +2021,4,27,1,New South Wales,150.601423,-34.426741 +2023,9,12,1,New South Wales,152.620599,-30.332194 +2021,3,19,1,New South Wales,153.557587,-28.396913 +2020,11,25,1,New South Wales,153.55035,-28.586214 +2021,3,28,1,New South Wales,150.607106,-34.422426 +2023,1,10,1,New South Wales,152.873469,-31.403876 +2023,3,25,1,New South Wales,150.835758,-34.05684 +2020,7,23,1,New South Wales,153.390022,-28.68643 +2021,2,22,1,New South Wales,150.519874,-34.461508 +2023,10,18,1,New South Wales,153.123949,-30.295939 +2023,5,31,1,New South Wales,153.314983,-28.949201 +2020,6,23,1,New South Wales,152.885071,-31.429989 +2021,5,13,1,New South Wales,150.629168,-34.39589 +2020,7,30,1,New South Wales,152.797402,-31.1259 +2020,10,28,1,New South Wales,150.64131,-33.446501 +2020,10,29,1,New South Wales,149.958935,-36.568735 +2023,8,8,1,New South Wales,150.671834,-33.564213 +2021,6,8,1,New South Wales,149.626586,-33.633171 +2021,3,17,1,New South Wales,150.522615,-34.454585 +2022,6,24,1,New South Wales,150.840011,-34.056032 +2022,10,11,1,New South Wales,153.308256,-28.82321 +2023,3,21,1,New South Wales,152.91598,-31.444957 +2022,7,31,1,New South Wales,153.314983,-28.949201 +2021,4,23,1,New South Wales,152.084002,-32.729581 +2020,1,15,1,New South Wales,153.395538,-28.27506 +2021,5,25,1,New South Wales,150.618367,-34.449989 +2020,11,20,1,New South Wales,149.989088,-36.503585 +2023,7,22,1,New South Wales,152.09174,-28.784917 +2021,8,17,1,New South Wales,150.640872,-34.394295 +2022,10,26,1,New South Wales,153.434547,-28.980401 +2020,1,5,1,New South Wales,150.727135,-32.917517 +2022,11,25,1,New South Wales,152.770676,-30.853416 +2021,6,29,1,New South Wales,150.605911,-34.432653 +2023,8,16,1,New South Wales,152.723177,-31.449552 +2021,6,17,1,New South Wales,150.622651,-34.384025 +2022,5,27,1,New South Wales,153.421871,-28.660403 +2021,6,7,1,New South Wales,150.615799,-34.433143 +2021,4,22,1,New South Wales,150.51801,-34.453149 +2021,12,22,1,New South Wales,151.550207,-32.929694 +2023,2,28,1,New South Wales,153.314983,-28.949201 +2020,3,16,1,New South Wales,153.093522,-29.488564 +2022,9,20,1,New South Wales,152.7311,-30.895644 +2020,10,30,1,New South Wales,149.999247,-36.565645 +2024,1,22,1,New South Wales,153.104804,-29.489666 +2020,7,31,1,New South Wales,153.314983,-28.949201 +2021,4,23,1,New South Wales,150.605879,-34.423096 +2023,7,4,1,New South Wales,153.108146,-29.490255 +2021,7,26,1,New South Wales,152.860653,-29.627656 +2022,7,31,1,New South Wales,153.314983,-28.949201 +2023,5,16,1,New South Wales,153.099058,-29.490161 +2023,5,11,1,New South Wales,151.734899,-30.443292 +2023,12,12,1,New South Wales,152.651081,-29.568082 +2020,11,27,1,New South Wales,153.60908,-28.68957 +2020,4,28,1,New South Wales,150.084698,-33.77608 +2021,7,18,1,New South Wales,152.063696,-32.706609 +2021,5,18,1,New South Wales,150.520922,-34.454055 +2021,6,6,1,New South Wales,150.519531,-34.456569 +2022,7,21,1,New South Wales,152.852262,-31.554086 +2021,5,27,1,New South Wales,150.602754,-34.434998 +2021,8,27,1,New South Wales,153.555254,-28.403401 +2023,12,6,1,New South Wales,153.402284,-28.961764 +2021,4,28,1,New South Wales,150.603535,-34.427476 +2024,2,19,1,New South Wales,150.786275,-33.709463 +2021,4,9,1,New South Wales,150.661845,-34.458159 +2021,4,10,1,New South Wales,150.517893,-34.4479 +2022,10,16,1,New South Wales,153.318393,-28.818789 +2021,5,12,1,New South Wales,150.633274,-34.418076 +2021,5,23,1,New South Wales,150.517238,-34.452015 +2021,5,17,1,New South Wales,150.629535,-34.389433 +2021,6,29,1,New South Wales,150.522466,-34.465157 +2021,4,29,1,New South Wales,150.607,-34.454365 +2021,5,16,1,New South Wales,150.633208,-34.418471 +2024,2,22,1,New South Wales,150.796806,-34.118722 +2023,9,24,1,New South Wales,153.388415,-28.676611 +2022,6,9,1,New South Wales,152.379527,-31.92004 +2021,8,2,1,New South Wales,150.884876,-34.003626 +2021,3,26,1,New South Wales,149.547784,-33.623333 +2021,5,19,1,New South Wales,150.658357,-34.458353 +2020,9,30,1,New South Wales,153.314983,-28.949201 +2020,9,6,1,New South Wales,152.92613,-31.45931 +2021,10,15,1,New South Wales,152.938221,-31.199869 +2020,8,16,1,New South Wales,152.986009,-29.030742 +2021,11,13,1,New South Wales,153.101504,-29.489582 +2021,5,30,1,New South Wales,150.604457,-34.42451 +2022,12,15,1,New South Wales,150.921153,-33.967078 +2021,7,3,1,New South Wales,153.357586,-28.808956 +2021,5,25,1,New South Wales,150.631089,-34.3883 +2021,6,21,1,New South Wales,150.514165,-34.445931 +2023,9,5,1,New South Wales,150.786167,-33.706972 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2020,10,23,1,New South Wales,149.947183,-36.617465 +2023,6,1,1,New South Wales,150.783748,-33.717624 +2021,5,7,1,New South Wales,150.635201,-33.53986 +2021,7,26,1,New South Wales,150.293351,-33.275076 +2021,3,2,1,New South Wales,150.520733,-34.460813 +2021,6,1,1,New South Wales,150.604855,-34.425041 +2023,9,7,1,New South Wales,152.924786,-31.436629 +2021,7,1,1,New South Wales,150.08858,-33.710805 +2021,7,1,1,New South Wales,150.597005,-34.412725 +2021,4,29,1,New South Wales,150.616393,-34.429062 +2023,7,25,1,New South Wales,150.786821,-33.709968 +2023,7,21,1,New South Wales,152.387898,-31.946043 +2021,10,3,1,New South Wales,153.43273,-28.870543 +2023,6,30,1,New South Wales,152.934733,-30.376233 +2023,5,11,1,New South Wales,152.867,-31.306301 +2021,7,12,1,New South Wales,150.626499,-34.385633 +2023,9,4,1,New South Wales,150.784148,-33.716732 +2021,5,29,1,New South Wales,150.63084,-34.420661 +2020,10,22,1,New South Wales,153.310116,-28.815309 +2022,8,7,1,New South Wales,153.271304,-28.873585 +2021,4,6,1,New South Wales,150.606953,-34.429707 +2021,5,10,1,New South Wales,150.615833,-34.434992 +2021,5,23,1,New South Wales,150.5183,-34.451442 +2021,3,1,1,New South Wales,150.609294,-34.420097 +2023,8,12,1,New South Wales,150.785424,-33.705548 +2023,12,27,1,New South Wales,150.784707,-33.713332 +2023,6,9,1,New South Wales,150.79607,-34.1302 +2021,10,12,1,New South Wales,150.977585,-34.041189 +2024,7,14,1,New South Wales,153.629529,-28.637563 +2021,7,18,1,New South Wales,153.093886,-30.339641 +2021,5,4,1,New South Wales,150.605473,-34.437332 +2023,1,23,1,New South Wales,152.063956,-32.706625 +2020,10,15,1,New South Wales,149.887989,-36.587028 +2022,4,14,1,New South Wales,150.451646,-31.270036 +2022,4,2,1,New South Wales,153.101381,-29.489657 +2021,5,13,1,New South Wales,150.605749,-34.427664 +2020,4,12,1,New South Wales,153.304964,-28.82294 +2021,4,25,1,New South Wales,150.605315,-34.423815 +2021,6,17,1,New South Wales,150.628955,-34.420769 +2021,6,17,1,New South Wales,150.519084,-34.459878 +2020,8,24,1,New South Wales,150.734614,-34.348582 +2020,11,11,1,New South Wales,153.307082,-28.825034 +2021,5,1,1,New South Wales,150.608958,-34.434921 +2021,7,18,1,New South Wales,150.659423,-34.454858 +2022,7,31,1,New South Wales,153.314983,-28.949201 +2021,5,25,1,New South Wales,150.517269,-34.452079 +2021,9,1,1,New South Wales,150.838019,-34.06966 +2021,4,16,1,New South Wales,150.631183,-34.393468 +2021,7,1,1,New South Wales,150.522718,-34.465829 +2023,11,10,1,New South Wales,152.923702,-31.44389 +2020,4,14,1,New South Wales,151.887913,-32.459938 +2023,12,11,1,New South Wales,152.32222,-31.87965 +2020,7,20,1,New South Wales,153.104171,-29.48516 +2023,8,26,1,New South Wales,151.05798,-29.736999 +2021,6,5,1,New South Wales,150.519335,-34.448109 +2021,5,22,1,New South Wales,150.528997,-34.471411 +2020,3,19,1,New South Wales,151.716768,-32.667623 +2021,4,27,1,New South Wales,150.610291,-34.41908 +2021,4,28,1,New South Wales,150.518753,-34.467029 +2021,3,9,1,New South Wales,150.604234,-34.438813 +2024,1,10,1,New South Wales,150.9874,-34.029523 +2021,11,15,1,New South Wales,153.104165,-29.480897 +2023,10,26,1,New South Wales,152.189573,-32.226267 +2023,5,31,1,New South Wales,153.314983,-28.949201 +2021,6,20,1,New South Wales,150.519545,-34.46123 +2023,6,9,1,New South Wales,150.825751,-34.091632 +2022,11,18,1,New South Wales,152.377925,-31.918899 +2021,4,26,1,New South Wales,150.662334,-34.458195 +2022,5,10,1,New South Wales,146.54434,-34.746257 +2021,5,2,1,New South Wales,150.611461,-34.419635 +2021,5,1,1,New South Wales,150.634843,-34.423777 +2021,3,10,1,New South Wales,153.319686,-28.843832 +2020,1,11,1,New South Wales,152.867675,-29.667098 +2020,10,21,1,New South Wales,149.947183,-36.617465 +2021,5,1,1,New South Wales,150.517332,-34.446283 +2022,9,25,1,New South Wales,153.279615,-28.831045 +2021,6,16,1,New South Wales,150.51639,-34.459706 +2021,11,10,1,New South Wales,153.315455,-28.825094 +2021,7,16,1,New South Wales,150.514419,-34.446522 +2020,12,1,1,New South Wales,153.403072,-28.963946 +2021,6,23,1,New South Wales,150.968509,-34.019382 +2023,9,9,1,New South Wales,150.785779,-33.705927 +2022,4,,1,New South Wales,153.558112,-28.354205 +2023,9,28,1,New South Wales,152.065275,-32.71098 +2020,11,8,1,New South Wales,150.02021,-36.569074 +2021,5,10,1,New South Wales,150.639103,-34.491944 +2020,11,7,1,New South Wales,150.010074,-36.579686 +2020,5,5,1,New South Wales,150.06256,-34.90732 +2023,3,31,1,New South Wales,153.314983,-28.949201 +2023,9,25,1,New South Wales,153.537737,-28.317513 +2021,5,3,1,New South Wales,150.608601,-34.436014 +2021,5,14,1,New South Wales,150.516232,-34.449236 +2020,9,28,1,New South Wales,150.655487,-33.522609 +2021,1,15,1,New South Wales,152.41503,-31.93333 +2021,3,28,1,New South Wales,152.927123,-31.465806 +2021,6,4,1,New South Wales,152.897949,-31.455951 +2021,1,16,1,New South Wales,152.064607,-32.70652 +2022,8,28,1,New South Wales,153.109648,-29.492767 +2020,11,16,1,New South Wales,150.004563,-36.508695 +2024,1,28,1,New South Wales,153.109739,-29.490189 +2021,4,4,1,New South Wales,150.634429,-34.488599 +2021,9,12,1,New South Wales,151.046985,-34.0268 +2021,9,12,1,New South Wales,150.513836,-34.446375 +2022,5,7,1,New South Wales,149.175455,-31.271006 +2021,5,17,1,New South Wales,150.524082,-34.462756 +2022,11,26,1,New South Wales,152.795899,-30.884771 +2022,11,22,1,New South Wales,151.700897,-32.50267 +2021,4,30,1,New South Wales,150.610091,-34.419978 +2021,5,19,1,New South Wales,150.530198,-34.470921 +2021,3,29,1,New South Wales,151.47704,-31.43583 +2021,10,31,1,New South Wales,153.331678,-28.818342 +2020,10,15,1,New South Wales,152.950898,-29.261037 +2023,6,29,1,New South Wales,152.934198,-30.382089 +2020,10,7,1,New South Wales,151.6887,-32.06324 +2023,2,28,1,New South Wales,153.314983,-28.949201 +2021,2,24,1,New South Wales,150.653638,-34.45545 +2021,10,17,1,New South Wales,152.90984,-31.438862 +2021,6,21,1,New South Wales,150.622909,-34.383778 +2021,10,5,1,New South Wales,153.395284,-28.959532 +2020,10,29,1,New South Wales,149.988655,-36.56931 +2021,7,30,1,New South Wales,153.092246,-29.488125 +2021,6,3,1,New South Wales,150.51962,-34.447276 +2023,5,22,1,New South Wales,153.302047,-28.847893 +2023,2,27,1,New South Wales,153.388879,-28.559864 +2021,6,15,1,New South Wales,150.603176,-34.436999 +2022,8,13,1,New South Wales,150.519652,-34.437398 +2021,7,7,1,New South Wales,150.597567,-34.41664 +2021,11,2,1,New South Wales,153.036423,-30.8961 +2022,12,17,1,New South Wales,152.929202,-31.459315 +2021,5,29,1,New South Wales,150.515887,-34.448778 +2021,5,20,1,New South Wales,150.530196,-34.470984 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2021,5,19,1,New South Wales,150.517216,-34.452033 +2023,6,5,1,New South Wales,150.80606,-34.17403 +2021,5,16,1,New South Wales,150.604281,-34.437931 +2023,9,11,1,New South Wales,153.30074,-28.821725 +2021,5,15,1,New South Wales,150.614941,-34.433848 +2023,10,22,1,New South Wales,152.372509,-31.921242 +2021,5,21,1,New South Wales,150.515271,-34.451551 +2024,1,17,1,New South Wales,149.361315,-33.671649 +2021,3,1,1,New South Wales,150.517534,-34.447162 +2023,7,16,1,New South Wales,152.794928,-31.64291 +2020,10,8,1,New South Wales,153.405012,-29.027211 +2021,5,9,1,New South Wales,150.609136,-34.42068 +2021,6,12,1,New South Wales,150.519898,-34.452619 +2021,5,11,1,New South Wales,150.63306,-34.41754 +2020,12,2,1,New South Wales,152.104295,-32.724039 +2020,2,4,1,New South Wales,153.299386,-28.811981 +2020,8,22,1,New South Wales,153.558008,-28.388596 +2020,9,21,1,New South Wales,153.376753,-28.875831 +2023,6,29,1,New South Wales,153.101247,-29.490096 +2022,1,21,1,New South Wales,153.134986,-28.836547 +2020,1,12,1,New South Wales,152.432169,-31.938608 +2021,5,14,1,New South Wales,150.64033,-34.493996 +2020,2,5,1,New South Wales,152.50487,-32.06978 +2021,6,7,1,New South Wales,150.626697,-34.389396 +2020,1,15,1,New South Wales,153.333259,-28.818643 +2021,9,26,1,New South Wales,150.566447,-34.460307 +2024,2,9,1,New South Wales,153.108156,-29.49018 +2022,8,9,1,New South Wales,150.529061,-34.444076 +2020,,,1,New South Wales,152.805829,-31.598137 +2021,5,9,1,New South Wales,150.521291,-34.466585 +2022,10,22,1,New South Wales,153.394814,-29.020599 +2022,2,10,1,New South Wales,152.912037,-31.470515 +2023,8,9,1,New South Wales,152.926849,-30.50806 +2021,7,31,1,New South Wales,150.65105,-34.400946 +2021,2,17,1,New South Wales,152.884303,-31.453067 +2021,3,1,1,New South Wales,150.636203,-34.48592 +2021,7,2,1,New South Wales,150.59668,-34.413061 +2020,7,31,1,New South Wales,152.073561,-32.74222 +2022,12,28,1,New South Wales,146.5795,-34.768497 +2020,11,16,1,New South Wales,153.438545,-28.61119 +2021,5,18,1,New South Wales,150.637354,-34.423834 +2023,11,22,1,New South Wales,152.919646,-31.443444 +2021,4,23,1,New South Wales,150.514552,-34.444992 +2022,9,20,1,New South Wales,152.91106,-30.17518 +2024,4,24,1,New South Wales,152.261395,-32.039046 +2020,11,2,1,New South Wales,149.994744,-36.560944 +2022,5,24,1,New South Wales,152.916226,-31.453288 +2021,7,30,1,New South Wales,150.516998,-34.449468 +2022,9,21,1,New South Wales,150.955259,-33.95812 +2020,10,26,1,New South Wales,153.104208,-29.483666 +2021,5,17,1,New South Wales,150.64076,-34.494221 +2023,10,29,1,New South Wales,152.607952,-30.349753 +2022,12,4,1,New South Wales,150.026369,-33.666194 +2021,4,5,1,New South Wales,152.359003,-31.924406 +2021,6,18,1,New South Wales,152.047805,-32.36741 +2021,4,27,1,New South Wales,150.624407,-34.388089 +2021,8,18,1,New South Wales,153.11679,-28.547985 +2021,6,8,1,New South Wales,150.626049,-34.38887 +2021,5,1,1,New South Wales,150.617434,-34.399683 +2021,9,28,1,New South Wales,150.790329,-34.190878 +2021,3,11,1,New South Wales,153.282988,-28.87245 +2023,12,30,1,New South Wales,153.093245,-29.492707 +2023,11,10,1,New South Wales,152.540183,-32.059803 +2021,8,9,1,New South Wales,150.604902,-34.427602 +2022,8,26,1,New South Wales,153.10416,-29.483797 +2021,4,20,1,New South Wales,150.632417,-34.392879 +2023,4,22,1,New South Wales,153.22673,-28.887362 +2023,1,24,1,New South Wales,152.925751,-31.447669 +2021,5,4,1,New South Wales,150.611689,-34.41963 +2020,7,16,1,New South Wales,153.252709,-28.84 +2022,7,9,1,New South Wales,150.975589,-34.103733 +2020,9,30,1,New South Wales,152.068849,-32.74901 +2020,10,12,1,New South Wales,149.950035,-36.601015 +2023,2,26,1,New South Wales,152.355001,-31.913331 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2021,4,27,1,New South Wales,150.518064,-34.447642 +2020,10,15,1,New South Wales,151.780333,-32.714185 +2021,5,14,1,New South Wales,150.637354,-34.423834 +2020,11,,1,New South Wales,152.216591,-32.408741 +2020,3,17,1,New South Wales,153.31216,-28.815442 +2023,9,13,1,New South Wales,152.880491,-31.44818 +2021,4,26,1,New South Wales,150.610279,-34.419098 +2021,6,6,1,New South Wales,150.607788,-34.430165 +2022,7,23,1,New South Wales,153.104015,-29.48523 +2020,11,27,1,New South Wales,153.487886,-28.682671 +2020,1,8,1,New South Wales,150.101709,-34.83565 +2024,3,15,1,New South Wales,150.986053,-34.090639 +2020,2,5,1,New South Wales,153.093109,-30.334954 +2020,10,21,1,New South Wales,152.666458,-31.863221 +2023,11,4,1,New South Wales,150.786051,-33.711434 +2023,2,17,1,New South Wales,152.884086,-31.44008 +2021,11,16,1,New South Wales,152.823916,-29.810956 +2020,10,7,1,New South Wales,153.131198,-28.553368 +2021,7,25,1,New South Wales,150.640975,-34.394081 +2021,3,30,1,New South Wales,150.609969,-34.429631 +2021,4,30,1,New South Wales,150.63796,-34.488866 +2022,11,23,1,New South Wales,153.485796,-28.580514 +2020,10,19,1,New South Wales,149.938155,-36.621708 +2023,2,13,1,New South Wales,152.866,-29.631 +2023,1,6,1,New South Wales,153.094616,-30.299634 +2021,10,18,1,New South Wales,152.812797,-29.796735 +2021,8,12,1,New South Wales,150.632509,-34.418205 +2024,4,24,1,New South Wales,152.108376,-32.738114 +2020,4,1,1,New South Wales,152.797479,-31.124537 +2021,11,18,1,New South Wales,153.064656,-30.890844 +2023,9,29,1,New South Wales,149.254042,-36.156686 +2023,9,1,1,New South Wales,153.563882,-28.380941 +2023,9,4,1,New South Wales,152.077187,-32.722485 +2023,2,16,1,New South Wales,152.065686,-32.710337 +2021,12,19,1,New South Wales,153.103779,-29.485594 +2023,9,17,1,New South Wales,153.033156,-30.386055 +2021,10,27,1,New South Wales,152.905842,-31.43736 +2024,3,15,1,New South Wales,152.063315,-32.706203 +2023,1,11,1,New South Wales,152.383572,-31.924484 +2023,1,1,1,New South Wales,152.468964,-32.40033 +2021,4,19,1,New South Wales,150.616363,-34.434354 +2023,2,1,1,New South Wales,152.724963,-30.86688 +2023,6,18,1,New South Wales,153.109379,-29.490488 +2021,6,28,1,New South Wales,153.556044,-28.399308 +2023,3,6,1,New South Wales,151.93461,-32.240807 +2020,10,24,1,New South Wales,149.958935,-36.568735 +2021,1,16,1,New South Wales,152.415169,-31.933272 +2024,1,23,1,New South Wales,152.907767,-31.428247 +2021,10,20,1,New South Wales,150.791979,-34.195962 +2021,4,29,1,New South Wales,150.634475,-34.420227 +2023,10,3,1,New South Wales,150.782295,-34.200209 +2021,3,18,1,New South Wales,150.525482,-34.459935 +2023,10,9,1,New South Wales,153.094955,-29.48353 +2023,10,24,1,New South Wales,152.189573,-32.226267 +2021,7,2,1,New South Wales,152.063347,-32.70617 +2023,3,4,1,New South Wales,152.876305,-31.460008 +2021,4,8,1,New South Wales,150.604275,-34.43812 +2023,5,31,1,New South Wales,153.104053,-29.483969 +2022,7,19,1,New South Wales,152.853559,-31.553705 +2021,6,28,1,New South Wales,150.631498,-34.388461 +2020,12,25,1,New South Wales,153.103956,-29.485183 +2021,5,26,1,New South Wales,150.597952,-34.426014 +2021,2,10,1,New South Wales,152.745333,-28.967792 +2020,10,13,1,New South Wales,152.894775,-31.448258 +2020,10,,1,New South Wales,150.367836,-34.370469 +2021,5,3,1,New South Wales,150.605058,-34.426343 +2021,5,26,1,New South Wales,150.527068,-34.469632 +2021,6,7,1,New South Wales,150.531125,-34.457931 +2023,1,5,1,New South Wales,152.925137,-31.45415 +2021,8,29,1,New South Wales,150.642549,-34.394977 +2021,12,20,1,New South Wales,152.927106,-31.458022 +2020,11,18,1,New South Wales,152.799356,-31.13969 +2023,1,9,1,New South Wales,152.905125,-31.437548 +2021,7,3,1,New South Wales,150.597385,-34.415032 +2021,5,30,1,New South Wales,150.640074,-34.397129 +2021,7,1,1,New South Wales,150.626469,-34.390555 +2023,3,1,1,New South Wales,153.329261,-28.902871 +2020,2,3,1,New South Wales,152.879411,-31.453379 +2024,1,23,1,New South Wales,150.785253,-33.71698 +2021,11,11,1,New South Wales,153.36734,-28.811145 +2021,8,30,1,New South Wales,150.644482,-34.393905 +2021,10,6,1,New South Wales,152.889825,-31.444037 +2021,6,12,1,New South Wales,150.613439,-34.431952 +2021,9,1,1,New South Wales,150.899879,-34.001835 +2021,9,23,1,New South Wales,150.639248,-34.397104 +2021,7,30,1,New South Wales,153.06654,-30.327333 +2021,5,2,1,New South Wales,150.608884,-34.436398 +2021,5,6,1,New South Wales,150.516285,-34.447461 +2023,11,15,1,New South Wales,152.938758,-30.230178 +2023,7,3,1,New South Wales,152.188677,-31.596406 +2022,2,3,1,New South Wales,153.07405,-30.34293 +2024,9,6,2,New South Wales,153.428062,-28.626972 +2021,6,3,1,New South Wales,150.615313,-34.436443 +2020,2,6,1,New South Wales,153.427304,-28.628296 +2020,10,29,1,New South Wales,153.293257,-28.86462 +2021,8,13,1,New South Wales,150.790116,-34.207222 +2020,12,27,1,New South Wales,153.515921,-28.686437 +2023,8,15,1,New South Wales,153.110501,-29.490175 +2022,11,30,1,New South Wales,152.759299,-30.84178 +2021,1,2,1,New South Wales,152.928516,-31.464277 +2020,2,17,1,New South Wales,153.269778,-28.827734 +2021,5,19,1,New South Wales,150.530302,-34.471437 +2021,2,20,1,New South Wales,153.561749,-28.388894 +2020,11,10,1,New South Wales,152.907064,-31.454546 +2021,5,1,1,New South Wales,150.63767,-34.488328 +2023,12,1,1,New South Wales,153.110259,-29.490227 +2021,6,17,1,New South Wales,150.622631,-34.383989 +2023,7,2,1,New South Wales,153.103854,-29.489517 +2020,7,30,1,New South Wales,152.797475,-31.126098 +2021,7,18,1,New South Wales,153.270841,-29.010748 +2023,7,8,1,New South Wales,153.429195,-28.627478 +2022,10,19,1,New South Wales,152.927584,-30.203921 +2020,2,4,1,New South Wales,152.918307,-31.469852 +2021,12,27,1,New South Wales,153.103747,-29.485664 +2021,8,9,1,New South Wales,150.517136,-34.435984 +2022,9,7,1,New South Wales,153.104176,-29.482157 +2020,9,8,1,New South Wales,153.537072,-28.222185 +2021,7,1,1,New South Wales,150.627284,-34.390561 +2024,8,22,1,New South Wales,152.805621,-31.675845 +2021,7,20,1,New South Wales,150.630675,-34.420712 +2023,12,2,1,New South Wales,150.78413,-33.717699 +2021,8,5,1,New South Wales,150.566447,-34.460307 +2021,4,29,1,New South Wales,150.624418,-34.388099 +2021,5,15,1,New South Wales,150.523845,-34.46377 +2021,4,5,1,New South Wales,153.495583,-28.693297 +2021,5,7,1,New South Wales,150.639084,-34.491484 +2021,6,6,1,New South Wales,150.641864,-34.39692 +2021,7,2,1,New South Wales,150.522249,-34.465847 +2020,11,5,1,New South Wales,152.112878,-32.718122 +2023,9,5,1,New South Wales,149.552114,-33.491201 +2021,10,19,1,New South Wales,152.093798,-31.403015 +2021,6,7,1,New South Wales,153.39279,-28.958804 +2022,1,21,1,New South Wales,152.405625,-31.930397 +2023,8,13,1,New South Wales,153.03041,-30.39202 +2021,6,22,1,New South Wales,150.62444,-34.385367 +2021,5,28,1,New South Wales,150.516284,-34.448967 +2020,1,17,1,New South Wales,152.742556,-31.257297 +2023,3,26,1,New South Wales,151.51539,-30.531204 +2021,3,20,1,New South Wales,150.517303,-34.451656 +2021,4,26,1,New South Wales,153.494089,-28.328909 +2023,3,17,1,New South Wales,153.109422,-29.490516 +2020,9,9,1,New South Wales,153.284674,-28.312341 +2023,2,28,1,New South Wales,153.072088,-30.887331 +2021,5,28,1,New South Wales,150.516239,-34.44902 +2022,4,27,1,New South Wales,153.020038,-28.434186 +2020,5,3,1,New South Wales,153.155062,-29.109894 +2024,1,3,1,New South Wales,152.332291,-31.919639 +2021,7,23,1,New South Wales,149.351835,-36.152417 +2023,8,8,1,New South Wales,150.786976,-33.705763 +2021,4,11,1,New South Wales,151.694363,-30.481336 +2021,8,1,1,New South Wales,153.606178,-28.692805 +2023,10,7,1,New South Wales,150.784194,-33.717428 +2020,1,7,1,New South Wales,153.109551,-29.490423 +2020,12,3,1,New South Wales,149.967708,-36.441911 +2021,5,5,1,New South Wales,150.632795,-34.418842 +2021,7,3,1,New South Wales,150.52561,-34.465573 +2021,11,29,1,New South Wales,153.302682,-28.847991 +2021,9,16,1,New South Wales,153.038819,-30.887087 +2023,1,25,1,New South Wales,153.318703,-28.819754 +2021,6,22,1,New South Wales,150.520175,-34.453535 +2020,7,31,1,New South Wales,152.793571,-31.127346 +2021,3,3,1,New South Wales,151.711613,-32.631105 +2020,1,9,1,New South Wales,152.86181,-31.46378 +2021,6,13,1,New South Wales,150.630248,-34.420424 +2021,10,3,1,New South Wales,152.355785,-31.85809 +2023,7,9,1,New South Wales,153.315879,-28.849897 +2022,9,11,1,New South Wales,151.009547,-34.038865 +2021,5,5,1,New South Wales,152.355785,-31.85809 +2021,3,1,1,New South Wales,150.603328,-34.436605 +2021,6,21,1,New South Wales,152.065607,-32.713712 +2020,3,8,1,New South Wales,153.176932,-28.919248 +2021,8,4,1,New South Wales,150.520796,-34.43659 +2021,4,26,1,New South Wales,150.614896,-34.429294 +2020,10,5,1,New South Wales,149.941793,-36.651646 +2020,10,5,1,New South Wales,153.300584,-29.051477 +2020,11,4,1,New South Wales,153.53207,-28.72968 +2021,5,26,1,New South Wales,150.521426,-34.465695 +2024,2,6,1,New South Wales,152.229218,-31.441925 +2021,9,20,1,New South Wales,152.909421,-31.434794 +2021,4,21,1,New South Wales,153.53868,-28.58252 +2021,8,20,1,New South Wales,150.647613,-34.400186 +2021,1,7,1,New South Wales,153.103758,-29.485669 +2021,4,25,1,New South Wales,150.635312,-34.420252 +2021,2,2,1,New South Wales,153.406757,-28.629921 +2020,12,9,1,New South Wales,153.103489,-29.485604 +2021,5,11,1,New South Wales,150.609135,-34.420716 +2021,5,20,1,New South Wales,150.53,-34.470998 +2023,9,20,1,New South Wales,152.366876,-31.933059 +2021,5,29,1,New South Wales,150.639089,-34.491313 +2023,12,2,1,New South Wales,151.974108,-32.186459 +2021,7,7,1,New South Wales,150.514278,-34.446888 +2020,6,13,1,New South Wales,152.917724,-31.439042 +2024,4,12,1,New South Wales,152.491627,-32.348816 +2020,8,26,1,New South Wales,152.957721,-30.648882 +2021,4,25,1,New South Wales,150.528881,-34.470173 +2020,10,6,1,New South Wales,149.550909,-33.563141 +2022,8,21,1,New South Wales,150.809461,-34.101023 +2024,4,14,1,New South Wales,152.179027,-28.633952 +2021,2,26,1,New South Wales,150.61575,-34.43408 +2021,9,11,1,New South Wales,153.590737,-28.73488 +2021,7,16,1,New South Wales,153.206273,-28.839441 +2023,10,26,1,New South Wales,152.372239,-31.875459 +2021,4,21,1,New South Wales,150.617065,-34.433754 +2023,9,21,1,New South Wales,153.193102,-29.436865 +2021,1,23,1,New South Wales,152.92795,-31.463876 +2021,8,16,1,New South Wales,150.641419,-34.394558 +2023,6,22,1,New South Wales,152.927806,-31.464679 +2024,8,15,1,New South Wales,152.484849,-32.352271 +2023,11,26,1,New South Wales,152.077686,-32.721476 +2020,10,11,1,New South Wales,150.787223,-34.189948 +2020,8,21,1,New South Wales,152.834051,-30.195951 +2022,9,29,1,New South Wales,152.90651,-30.2403 +2021,3,11,1,New South Wales,150.607954,-34.430069 +2021,1,5,1,New South Wales,153.330332,-28.816675 +2022,8,8,1,New South Wales,150.517225,-34.436244 +2024,4,18,1,New South Wales,150.861571,-29.609219 +2021,4,27,1,New South Wales,150.637268,-34.488302 +2022,8,26,1,New South Wales,151.664804,-30.350067 +2023,9,3,1,New South Wales,152.786688,-31.629177 +2023,,,1,New South Wales,153.329323,-29.207445 +2021,6,9,1,New South Wales,150.52171,-34.465692 +2021,10,5,1,New South Wales,153.294842,-28.802962 +2022,12,3,1,New South Wales,150.809079,-34.098097 +2023,11,20,1,New South Wales,151.972176,-32.173677 +2021,11,18,1,New South Wales,153.61041,-28.66927 +2020,12,23,1,New South Wales,152.089896,-32.728381 +2021,7,14,1,New South Wales,150.513042,-34.44598 +2020,8,18,1,New South Wales,150.842133,-34.070234 +2020,5,26,1,New South Wales,150.091914,-33.772112 +2023,7,31,1,New South Wales,152.607591,-29.787327 +2021,3,18,1,New South Wales,150.51765,-34.446182 +2021,6,25,1,New South Wales,150.842133,-34.070234 +2021,10,20,1,New South Wales,153.384261,-29.089379 +2021,4,7,1,New South Wales,150.517583,-34.453609 +2023,4,26,1,New South Wales,153.024645,-30.997344 +2020,10,23,1,New South Wales,149.913134,-36.588285 +2023,8,17,1,New South Wales,152.494341,-31.554223 +2022,8,18,1,New South Wales,153.52339,-28.669583 +2020,8,16,1,New South Wales,153.016741,-29.014104 +2020,10,21,1,New South Wales,152.774679,-30.200744 +2021,8,21,1,New South Wales,150.641998,-34.396796 +2020,10,9,1,New South Wales,149.934793,-36.648169 +2021,5,23,1,New South Wales,150.517213,-34.452132 +2020,11,6,1,New South Wales,150.815095,-34.085656 +2021,5,10,1,New South Wales,150.521146,-34.435407 +2021,5,9,1,New South Wales,150.609212,-34.420664 +2021,1,12,1,New South Wales,153.104031,-29.484362 +2021,5,24,1,New South Wales,150.631303,-34.420075 +2021,5,16,1,New South Wales,150.515764,-34.449632 +2023,8,3,1,New South Wales,153.107448,-29.490147 +2020,10,31,1,New South Wales,149.984095,-36.575978 +2022,8,27,1,New South Wales,153.100775,-29.490114 +2022,8,3,1,New South Wales,152.803863,-31.501105 +2023,5,13,1,New South Wales,153.09261,-29.493252 +2021,2,22,1,New South Wales,152.135662,-29.910913 +2021,9,1,1,New South Wales,150.53378,-34.498995 +2024,1,26,1,New South Wales,150.783354,-33.713475 +2022,6,17,1,New South Wales,153.347093,-28.907257 +2022,11,18,1,New South Wales,152.794854,-30.893434 +2022,2,5,1,New South Wales,153.270921,-28.630745 +2022,11,13,1,New South Wales,153.289282,-29.042336 +2023,5,21,1,New South Wales,150.809175,-34.09468 +2020,10,29,1,New South Wales,149.958519,-36.587122 +2021,8,5,1,New South Wales,153.248239,-28.878411 +2022,11,18,1,New South Wales,152.794854,-30.893434 +2022,10,1,1,New South Wales,153.432717,-28.661786 +2024,9,5,1,New South Wales,153.247001,-28.69937 +2020,10,29,1,New South Wales,149.955017,-36.576791 +2022,6,12,1,New South Wales,153.108178,-29.490264 +2022,2,16,1,New South Wales,152.377904,-31.920975 +2020,10,22,1,New South Wales,150.873769,-34.035121 +2023,1,22,1,New South Wales,153.309383,-28.823219 +2024,6,13,1,New South Wales,153.433935,-29.028213 +2020,10,22,1,New South Wales,149.947183,-36.617465 +2021,12,27,1,New South Wales,153.379335,-28.724041 +2021,6,2,1,New South Wales,150.60467,-34.427336 +2021,4,20,1,New South Wales,150.60758,-34.43328 +2021,5,21,1,New South Wales,150.639025,-34.493187 +2021,5,12,1,New South Wales,150.519286,-34.466292 +2021,4,19,1,New South Wales,150.525181,-34.465708 +2023,9,11,1,New South Wales,151.760211,-32.647301 +2021,7,5,1,New South Wales,150.630688,-34.389798 +2021,8,29,1,New South Wales,152.379698,-31.928032 +2024,2,10,1,New South Wales,153.091934,-29.487938 +2021,4,29,1,New South Wales,150.610355,-34.419117 +2023,8,24,1,New South Wales,153.097025,-29.486454 +2024,9,8,1,New South Wales,151.94202,-31.979847 +2021,7,15,1,New South Wales,150.627045,-34.420966 +2023,12,13,1,New South Wales,152.077365,-32.725422 +2023,6,22,1,New South Wales,153.298939,-28.889728 +2022,12,15,1,New South Wales,152.906604,-31.46675 +2023,4,1,1,New South Wales,152.190269,-32.218476 +2021,7,24,1,New South Wales,151.810365,-31.988722 +2020,1,6,1,New South Wales,153.284965,-28.967906 +2022,11,23,1,New South Wales,152.760068,-30.904021 +2023,8,6,1,New South Wales,153.054728,-28.551841 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2022,11,18,1,New South Wales,152.770676,-30.853416 +2020,9,29,1,New South Wales,149.54979,-33.496074 +2021,5,29,1,New South Wales,150.642914,-34.394767 +2021,5,31,1,New South Wales,150.523891,-34.464077 +2023,6,5,1,New South Wales,150.801531,-34.185899 +2021,2,17,1,New South Wales,153.562606,-28.384396 +2022,2,6,1,New South Wales,153.562317,-28.383844 +2021,6,18,1,New South Wales,150.519102,-34.460004 +2021,8,20,1,New South Wales,153.078532,-30.338589 +2022,1,29,1,New South Wales,153.262056,-28.925911 +2021,7,14,1,New South Wales,150.605686,-34.43712 +2021,12,19,1,New South Wales,152.893286,-31.445481 +2020,11,24,1,New South Wales,152.061765,-32.708925 +2021,6,1,1,New South Wales,150.520846,-34.454775 +2022,11,29,1,New South Wales,150.82316,-34.149605 +2023,9,20,1,New South Wales,149.397925,-36.225488 +2022,8,30,1,New South Wales,149.322825,-36.299138 +2021,4,23,1,New South Wales,150.609166,-34.418842 +2023,1,28,1,New South Wales,153.501298,-28.695962 +2022,2,3,1,New South Wales,151.716625,-32.665067 +2021,4,23,1,New South Wales,150.634412,-34.420135 +2023,1,11,1,New South Wales,152.925812,-31.45885 +2021,6,10,1,New South Wales,150.516951,-34.447403 +2020,8,13,1,New South Wales,153.557985,-28.39508 +2022,11,18,1,New South Wales,152.794854,-30.893434 +2020,11,10,1,New South Wales,152.90512,-31.456093 +2022,12,27,1,New South Wales,152.998395,-30.344322 +2021,6,3,1,New South Wales,150.51962,-34.447276 +2021,4,27,1,New South Wales,150.615468,-34.435598 +2023,10,4,1,New South Wales,151.739648,-30.483519 +2021,6,9,1,New South Wales,150.626634,-34.387006 +2022,8,25,1,New South Wales,151.725898,-30.403504 +2021,5,18,1,New South Wales,150.631862,-34.394455 +2021,4,21,1,New South Wales,150.630553,-34.386874 +2022,9,15,1,New South Wales,152.872785,-31.476247 +2021,9,4,1,New South Wales,153.104165,-29.478823 +2020,4,20,1,New South Wales,152.842748,-31.426598 +2020,3,12,1,New South Wales,153.609593,-28.66131 +2022,8,28,1,New South Wales,152.921601,-31.457676 +2022,3,15,1,New South Wales,153.107464,-29.490119 +2021,12,27,1,New South Wales,153.335296,-28.817522 +2021,10,28,1,New South Wales,152.827659,-29.813117 +2021,4,6,1,New South Wales,150.606639,-34.437652 +2023,9,25,1,New South Wales,153.266992,-28.92076 +2020,1,14,1,New South Wales,150.666127,-33.570947 +2021,5,3,1,New South Wales,150.611436,-34.419724 +2023,4,4,1,New South Wales,149.951303,-36.599554 +2021,11,11,1,New South Wales,153.435756,-28.987356 +2023,11,15,1,New South Wales,152.92438,-31.466101 +2021,6,22,1,New South Wales,150.628157,-34.420915 +2023,9,24,1,New South Wales,153.278539,-28.819149 +2021,10,2,1,New South Wales,152.925254,-31.454544 +2020,10,28,1,New South Wales,149.984095,-36.575978 +2021,1,31,1,New South Wales,153.314983,-28.949201 +2024,2,9,1,New South Wales,153.104659,-29.489657 +2020,10,15,1,New South Wales,150.613359,-33.432242 +2020,10,,1,New South Wales,150.137356,-34.382602 +2020,7,23,1,New South Wales,150.98423,-33.969982 +2022,8,21,1,New South Wales,153.101521,-29.489349 +2023,10,15,1,New South Wales,153.076587,-30.35499 +2021,10,25,1,New South Wales,152.98111,-30.437334 +2022,11,25,1,New South Wales,153.510594,-28.808559 +2021,5,29,1,New South Wales,150.602597,-34.42488 +2021,4,24,1,New South Wales,150.610225,-34.419097 +2020,9,26,1,New South Wales,153.10405,-29.485172 +2023,8,26,1,New South Wales,150.785103,-33.718443 +2023,1,5,1,New South Wales,152.307001,-31.934482 +2021,6,26,1,New South Wales,150.522447,-34.464318 +2021,9,8,1,New South Wales,150.89266,-33.991958 +2020,1,10,1,New South Wales,153.333564,-28.300791 +2020,5,4,1,New South Wales,152.918987,-31.469715 +2021,7,12,1,New South Wales,150.626511,-34.421019 +2020,10,7,1,New South Wales,150.655487,-33.522609 +2023,10,6,1,New South Wales,151.030221,-34.034399 +2022,11,27,1,New South Wales,152.759299,-30.84178 +2021,2,26,1,New South Wales,150.611192,-34.420297 +2021,5,15,1,New South Wales,150.523955,-34.463727 +2021,5,17,1,New South Wales,150.640672,-34.494246 +2022,11,23,1,New South Wales,152.760068,-30.904021 +2023,6,5,1,New South Wales,150.79722,-34.17389 +2023,7,26,1,New South Wales,152.785452,-31.632466 +2020,11,3,1,New South Wales,149.976368,-36.555504 +2023,8,10,1,New South Wales,150.785248,-33.716987 +2023,11,6,1,New South Wales,152.92715,-31.459453 +2023,9,16,1,New South Wales,152.908191,-31.455909 +2021,5,26,1,New South Wales,150.632001,-34.387975 +2021,4,20,1,New South Wales,150.604616,-34.424649 +2021,8,1,1,New South Wales,150.520305,-34.465717 +2023,7,23,1,New South Wales,153.523645,-28.668579 +2023,12,10,1,New South Wales,152.926496,-31.451833 +2021,6,22,1,New South Wales,150.514086,-34.446389 +2022,1,3,1,New South Wales,152.070202,-32.747913 +2022,8,1,1,New South Wales,153.107411,-29.490082 +2021,8,4,1,New South Wales,150.632571,-34.418314 +2021,5,24,1,New South Wales,150.521633,-34.465717 +2021,4,7,1,New South Wales,150.53282,-34.461337 +2021,6,9,1,New South Wales,150.525486,-34.4587 +2021,10,7,1,New South Wales,151.600538,-32.535193 +2020,8,20,1,New South Wales,153.516578,-28.692812 +2023,12,31,1,New South Wales,150.970363,-34.105006 +2024,1,20,1,New South Wales,152.918338,-31.47019 +2020,10,4,1,New South Wales,153.071009,-30.309466 +2021,4,25,1,New South Wales,150.62628,-34.395708 +2021,10,18,1,New South Wales,152.812379,-29.798973 +2021,5,16,1,New South Wales,150.628754,-34.395134 +2020,7,8,1,New South Wales,153.612582,-28.659154 +2021,12,28,1,New South Wales,153.194794,-28.885311 +2023,6,2,1,New South Wales,150.744837,-34.226418 +2023,1,11,1,New South Wales,152.063762,-32.706526 +2020,4,2,1,New South Wales,152.810237,-31.127444 +2021,5,11,1,New South Wales,150.628079,-34.389774 +2022,6,10,1,New South Wales,153.401038,-28.260092 +2023,3,22,1,New South Wales,152.379025,-31.919508 +2021,6,15,1,New South Wales,150.622972,-34.385772 +2020,12,31,1,New South Wales,149.682858,-33.541594 +2021,5,1,1,New South Wales,150.610379,-34.420191 +2021,7,17,1,New South Wales,150.515842,-34.447001 +2021,5,30,1,New South Wales,150.631349,-34.419977 +2024,7,20,1,New South Wales,151.05768,-29.738292 +2021,4,24,1,New South Wales,150.606626,-34.434677 +2023,6,6,1,New South Wales,153.106633,-29.366865 +2021,4,25,1,New South Wales,150.630022,-34.388352 +2021,6,25,1,New South Wales,150.520421,-34.465828 +2021,1,17,1,New South Wales,153.104117,-29.484002 +2023,11,21,1,New South Wales,153.066477,-30.272301 +2021,4,21,1,New South Wales,150.617097,-34.4338 +2021,8,10,1,New South Wales,152.892232,-31.445349 +2022,10,6,1,New South Wales,152.786458,-31.635235 +2024,7,16,1,New South Wales,152.253234,-32.207858 +2020,10,1,1,New South Wales,151.755461,-32.482259 +2022,11,25,1,New South Wales,153.315236,-28.860167 +2023,7,21,1,New South Wales,153.300889,-28.821034 +2021,6,2,1,New South Wales,150.639799,-34.39917 +2022,12,5,1,New South Wales,152.910199,-31.459827 +2021,6,19,1,New South Wales,150.519865,-34.452618 +2023,5,14,1,New South Wales,151.051156,-29.770209 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2021,10,20,1,New South Wales,151.79389,-32.5899 +2020,7,6,1,New South Wales,152.359003,-31.924406 +2022,10,31,1,New South Wales,152.319311,-31.891787 +2021,5,14,1,New South Wales,150.64043,-34.493538 +2021,6,6,1,New South Wales,150.630597,-34.420792 +2021,7,5,1,New South Wales,152.748662,-28.979207 +2021,7,3,1,New South Wales,150.627058,-34.420921 +2021,7,2,1,New South Wales,149.353127,-36.156195 +2021,7,17,1,New South Wales,150.646596,-34.395695 +2022,11,28,1,New South Wales,152.870713,-31.460329 +2020,11,29,1,New South Wales,149.980514,-36.435679 +2020,3,21,1,New South Wales,153.28717,-29.02612 +2021,6,15,1,New South Wales,150.639789,-34.399161 +2021,8,25,1,New South Wales,150.514547,-34.447363 +2021,4,28,1,New South Wales,150.606692,-34.435021 +2022,11,1,1,New South Wales,153.45613,-28.648927 +2022,7,15,1,New South Wales,153.607377,-28.690807 +2021,5,24,1,New South Wales,150.515834,-34.450571 +2020,11,23,1,New South Wales,153.314609,-28.846843 +2021,4,22,1,New South Wales,150.515889,-34.450527 +2023,9,6,1,New South Wales,153.092706,-28.602022 +2022,4,7,1,New South Wales,153.303635,-28.839872 +2021,9,18,1,New South Wales,150.521655,-34.46606 +2023,4,10,1,New South Wales,149.96778,-32.625001 +2020,10,29,1,New South Wales,149.967242,-36.561675 +2020,10,15,1,New South Wales,153.303635,-28.839872 +2021,5,20,1,New South Wales,150.607956,-34.433829 +2023,7,14,1,New South Wales,153.462986,-28.870048 +2020,11,13,1,New South Wales,153.297711,-28.882774 +2021,8,23,1,New South Wales,153.429771,-29.016576 +2020,9,16,1,New South Wales,152.152244,-31.737459 +2021,5,5,1,New South Wales,152.899818,-29.631769 +2023,6,8,1,New South Wales,150.81925,-34.10747 +2020,10,19,1,New South Wales,149.931009,-36.595007 +2023,10,17,1,New South Wales,152.801027,-31.648275 +2022,8,19,1,New South Wales,153.192812,-29.437147 +2020,9,16,1,New South Wales,152.823365,-31.141314 +2023,9,9,1,New South Wales,150.98521,-34.09151 +2021,4,24,1,New South Wales,150.637326,-34.420606 +2021,7,12,1,New South Wales,150.51291,-34.446761 +2023,7,27,1,New South Wales,153.10806,-29.490595 +2021,4,26,1,New South Wales,150.609511,-34.418948 +2023,5,28,1,New South Wales,153.562142,-28.38361 +2021,7,11,1,New South Wales,150.643298,-34.395406 +2020,10,2,1,New South Wales,152.03802,-32.736456 +2021,5,9,1,New South Wales,150.628034,-34.389801 +2021,1,17,1,New South Wales,153.10821,-29.49025 +2023,7,22,1,New South Wales,152.064075,-32.698717 +2021,6,20,1,New South Wales,150.513234,-34.44611 +2024,1,23,1,New South Wales,148.663144,-36.434771 +2022,4,21,1,New South Wales,150.042484,-30.894342 +2021,4,24,1,New South Wales,150.627248,-34.396457 +2020,10,29,1,New South Wales,149.984095,-36.575978 +2021,5,31,1,New South Wales,150.608017,-34.436652 +2023,8,27,1,New South Wales,152.783757,-31.712723 +2020,10,22,1,New South Wales,153.103275,-29.486575 +2023,1,10,1,New South Wales,152.421401,-31.946553 +2021,9,14,1,New South Wales,150.529324,-34.472869 +2021,3,12,1,New South Wales,150.611354,-34.420336 +2021,12,7,1,New South Wales,152.900289,-31.473925 +2021,4,21,1,New South Wales,150.60759,-34.433308 +2021,6,25,1,New South Wales,150.627412,-34.420324 +2020,10,29,1,New South Wales,149.999247,-36.565645 +2021,4,25,1,New South Wales,150.521113,-34.466716 +2020,1,13,1,New South Wales,152.804028,-30.20617 +2021,7,21,1,New South Wales,150.630721,-34.420641 +2020,12,15,1,New South Wales,153.373197,-28.251337 +2023,4,15,1,New South Wales,152.897301,-31.475036 +2023,2,21,1,New South Wales,149.847761,-32.545692 +2022,3,23,1,New South Wales,152.10976,-32.739275 +2022,9,25,1,New South Wales,153.359888,-28.688428 +2020,4,19,1,New South Wales,149.362893,-36.155483 +2021,9,9,1,New South Wales,151.475908,-33.144443 +2024,1,27,1,New South Wales,152.146708,-32.725849 +2020,10,2,1,New South Wales,152.2405,-30.043804 +2022,11,24,1,New South Wales,152.760068,-30.904021 +2020,11,3,1,New South Wales,150.59937,-33.203515 +2020,9,22,1,New South Wales,150.12083,-31.09508 +2021,8,13,1,New South Wales,153.077049,-29.450991 +2023,1,22,1,New South Wales,153.108226,-29.490339 +2021,6,7,1,New South Wales,150.5188,-34.447404 +2021,10,14,1,New South Wales,153.391205,-28.271399 +2021,7,29,1,New South Wales,153.534374,-28.719438 +2021,4,28,1,New South Wales,150.624438,-34.388135 +2021,5,18,1,New South Wales,150.516448,-34.450025 +2022,10,5,1,New South Wales,153.478559,-28.847843 +2021,9,3,1,New South Wales,153.612529,-28.668812 +2023,9,19,1,New South Wales,152.189014,-32.014774 +2021,6,11,1,New South Wales,150.522083,-34.465961 +2022,12,13,1,New South Wales,153.017957,-30.380924 +2021,6,28,1,New South Wales,150.606189,-34.432081 +2020,10,23,1,New South Wales,151.6662,-30.501562 +2024,5,15,1,New South Wales,152.185974,-31.959337 +2023,10,28,1,New South Wales,152.189573,-32.226267 +2021,5,8,1,New South Wales,150.616118,-34.435313 +2021,3,22,1,New South Wales,150.517241,-34.451564 +2022,12,31,1,New South Wales,153.314983,-28.949201 +2020,3,13,1,New South Wales,153.429792,-29.01649 +2021,3,28,1,New South Wales,150.517625,-34.447398 +2022,3,6,1,New South Wales,153.603662,-28.730654 +2021,10,30,1,New South Wales,152.878903,-29.661957 +2021,3,10,1,New South Wales,150.635602,-34.485241 +2020,12,,1,New South Wales,152.87081,-31.303957 +2021,4,24,1,New South Wales,150.605725,-34.423534 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2020,5,3,1,New South Wales,153.11683,-29.157111 +2021,1,26,1,New South Wales,153.610029,-28.660702 +2020,4,1,1,New South Wales,150.062723,-33.775973 +2021,5,20,1,New South Wales,150.608022,-34.433794 +2020,11,3,1,New South Wales,149.976368,-36.555504 +2021,4,12,1,New South Wales,150.516644,-34.44819 +2021,3,1,1,New South Wales,150.657262,-34.455069 +2020,11,3,1,New South Wales,149.976368,-36.555504 +2021,3,4,1,New South Wales,150.525982,-34.464039 +2024,4,1,1,New South Wales,152.161161,-32.715996 +2020,10,24,1,New South Wales,149.958935,-36.568735 +2022,8,19,1,New South Wales,150.877456,-34.015833 +2020,10,29,1,New South Wales,149.967242,-36.561675 +2024,1,15,1,New South Wales,152.312594,-31.899045 +2021,6,14,1,New South Wales,150.520487,-34.465802 +2022,3,21,1,New South Wales,152.851312,-31.554898 +2021,6,26,1,New South Wales,150.514377,-34.447206 +2023,10,4,1,New South Wales,150.9924,-34.020842 +2021,8,3,1,New South Wales,151.847077,-32.532721 +2021,6,23,1,New South Wales,150.603648,-34.438739 +2023,2,18,1,New South Wales,152.06373,-32.706589 +2020,8,21,1,New South Wales,152.922864,-31.448497 +2020,7,19,1,New South Wales,151.79931,-32.569232 +2021,4,17,1,New South Wales,150.627428,-34.386615 +2023,6,5,1,New South Wales,150.886154,-34.043934 +2023,6,9,1,New South Wales,150.699384,-34.245426 +2023,12,17,1,New South Wales,152.919374,-31.443135 +2021,5,20,1,New South Wales,150.631084,-34.387335 +2021,5,6,1,New South Wales,150.632614,-34.418712 +2024,3,4,1,New South Wales,151.083923,-29.728212 +2020,2,26,1,New South Wales,152.867846,-29.667331 +2024,1,22,1,New South Wales,153.095153,-29.483344 +2024,4,6,1,New South Wales,152.913609,-31.476491 +2022,6,12,1,New South Wales,152.113969,-32.768807 +2021,12,17,1,New South Wales,153.437123,-28.992713 +2023,9,25,1,New South Wales,153.262056,-28.925911 +2023,11,1,1,New South Wales,152.762086,-31.539863 +2021,5,8,1,New South Wales,150.615857,-34.435299 +2021,9,28,1,New South Wales,150.541229,-34.372728 +2021,6,6,1,New South Wales,150.523926,-34.466206 +2021,5,12,1,New South Wales,152.867718,-29.667284 +2024,6,24,1,New South Wales,152.077265,-32.722468 +2021,5,1,1,New South Wales,150.616664,-34.435234 +2022,12,7,1,New South Wales,152.907266,-31.434781 +2021,8,22,1,New South Wales,152.926703,-31.455103 +2020,12,9,1,New South Wales,152.914442,-31.469307 +2021,6,7,1,New South Wales,150.607693,-34.430082 +2023,8,27,1,New South Wales,153.547463,-28.676052 +2021,1,14,1,New South Wales,152.150385,-32.716856 +2021,5,15,1,New South Wales,150.632613,-34.418369 +2022,3,28,1,New South Wales,146.586516,-34.759792 +2021,10,25,1,New South Wales,150.617611,-34.437146 +2021,12,7,1,New South Wales,153.109331,-29.490796 +2022,9,14,1,New South Wales,152.913689,-31.442607 +2020,1,13,1,New South Wales,152.926214,-31.449078 +2020,10,30,1,New South Wales,149.967242,-36.561675 +2020,9,10,1,New South Wales,153.608329,-28.683073 +2022,9,25,1,New South Wales,153.101864,-29.489526 +2021,6,15,1,New South Wales,150.617086,-34.433782 +2021,3,23,1,New South Wales,150.608357,-34.422432 +2022,1,10,1,New South Wales,152.162957,-32.715495 +2021,5,14,1,New South Wales,150.633208,-34.41848 +2022,9,20,1,New South Wales,152.915476,-31.446007 +2022,5,19,1,New South Wales,153.085856,-30.34688 +2023,1,10,1,New South Wales,151.537833,-33.122487 +2022,9,19,1,New South Wales,152.831905,-29.642185 +2020,6,22,1,New South Wales,153.309927,-28.845355 +2021,2,9,1,New South Wales,150.848541,-34.079536 +2020,12,2,1,New South Wales,149.958956,-36.469037 +2020,8,30,1,New South Wales,152.925612,-31.447477 +2020,7,4,1,New South Wales,153.309927,-28.845355 +2021,4,30,1,New South Wales,150.522538,-34.453484 +2021,3,12,1,New South Wales,150.519269,-34.451804 +2021,3,22,1,New South Wales,150.607914,-34.422333 +2024,3,22,1,New South Wales,152.375604,-31.925461 +2021,6,28,1,New South Wales,150.643694,-34.390978 +2021,11,3,1,New South Wales,152.823729,-29.811425 +2020,11,16,1,New South Wales,153.331782,-28.659677 +2023,11,12,1,New South Wales,149.516761,-33.679454 +2021,5,28,1,New South Wales,150.630861,-34.420697 +2021,6,8,1,New South Wales,150.626049,-34.388879 +2024,8,22,1,New South Wales,152.803705,-31.676499 +2020,2,2,1,New South Wales,151.742343,-32.548846 +2022,10,1,1,New South Wales,152.908897,-31.443777 +2021,12,25,1,New South Wales,153.395107,-28.287731 +2021,5,8,1,New South Wales,150.521258,-34.466611 +2020,5,31,1,New South Wales,152.914417,-31.48518 +2021,7,13,1,New South Wales,150.522289,-34.464126 +2021,7,29,1,New South Wales,150.640118,-34.395958 +2023,10,24,1,New South Wales,152.189597,-32.229205 +2023,8,11,1,New South Wales,148.671558,-36.504827 +2023,6,17,1,New South Wales,153.103672,-29.485692 +2021,5,1,1,New South Wales,150.616411,-34.436103 +2021,5,28,1,New South Wales,153.59019,-28.65505 +2020,6,19,1,New South Wales,153.103291,-29.486472 +2021,5,2,1,New South Wales,150.609645,-34.436395 +2023,12,8,1,New South Wales,152.919729,-31.469103 +2021,11,23,1,New South Wales,152.035856,-32.763707 +2021,8,28,1,New South Wales,150.522507,-34.4667 +2021,9,29,1,New South Wales,151.962107,-32.299385 +2020,9,4,1,New South Wales,150.815095,-34.085656 +2020,7,22,1,New South Wales,153.282717,-28.981981 +2020,8,5,1,New South Wales,153.104224,-29.483624 +2020,10,16,1,New South Wales,152.151324,-32.714849 +2020,12,26,1,New South Wales,152.941747,-30.494062 +2021,5,25,1,New South Wales,150.517412,-34.452037 +2021,7,8,1,New South Wales,150.641377,-34.395666 +2021,8,3,1,New South Wales,150.517961,-34.437903 +2021,5,10,1,New South Wales,150.637314,-34.423734 +2021,2,15,1,New South Wales,153.557679,-28.394606 +2023,12,19,1,New South Wales,152.063508,-32.706176 +2020,10,10,1,New South Wales,152.95646,-30.797902 +2022,8,30,1,New South Wales,149.32349,-36.2989 +2020,7,17,1,New South Wales,153.424541,-28.890555 +2022,7,22,1,New South Wales,152.909512,-31.465997 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2020,8,14,1,New South Wales,150.794721,-33.505479 +2024,1,10,1,New South Wales,150.449654,-33.735054 +2021,5,21,1,New South Wales,150.521666,-34.465691 +2021,11,14,1,New South Wales,152.879193,-31.456072 +2022,10,30,1,New South Wales,152.786534,-31.629166 +2021,8,19,1,New South Wales,152.374899,-31.915764 +2021,4,20,1,New South Wales,150.61711,-34.433719 +2021,2,21,1,New South Wales,153.367878,-28.614583 +2021,8,1,1,New South Wales,150.520264,-34.465626 +2023,11,10,1,New South Wales,152.790883,-31.530519 +2022,12,6,1,New South Wales,152.920139,-31.434206 +2021,5,5,1,New South Wales,150.615718,-34.435973 +2023,1,20,1,New South Wales,151.037675,-34.038649 +2021,6,21,1,New South Wales,150.519911,-34.452529 +2021,6,9,1,New South Wales,150.523089,-34.466144 +2022,3,5,1,New South Wales,152.899947,-29.63155 +2021,1,25,1,New South Wales,153.104203,-29.479281 +2020,12,31,1,New South Wales,153.320904,-28.823939 +2023,9,17,1,New South Wales,153.110527,-29.490184 +2021,6,26,1,New South Wales,150.516738,-34.443558 +2021,8,8,1,New South Wales,150.632656,-34.41837 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2022,12,26,1,New South Wales,152.063582,-32.705766 +2022,12,28,1,New South Wales,148.71958,-36.45878 +2023,11,24,1,New South Wales,150.785087,-33.707063 +2020,10,19,1,New South Wales,149.913134,-36.588285 +2021,4,29,1,New South Wales,150.616515,-34.3987 +2023,8,31,1,New South Wales,152.078194,-32.721137 +2021,7,20,1,New South Wales,150.623358,-34.383282 +2023,5,17,1,New South Wales,152.373554,-31.914513 +2021,5,8,1,New South Wales,150.639055,-34.491736 +2020,12,,1,New South Wales,150.600987,-34.533564 +2020,4,8,1,New South Wales,150.146333,-34.925982 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2021,8,13,1,New South Wales,150.513842,-34.447285 +2022,6,17,1,New South Wales,153.320914,-28.840576 +2023,4,24,1,New South Wales,150.786125,-33.710446 +2024,4,23,1,New South Wales,152.540876,-32.059193 +2022,2,11,1,New South Wales,152.895057,-31.436938 +2021,4,23,1,New South Wales,150.614727,-34.431022 +2023,3,31,1,New South Wales,153.314983,-28.949201 +2024,1,15,1,New South Wales,153.10975,-29.490213 +2023,9,9,1,New South Wales,153.103902,-29.489549 +2021,5,28,1,New South Wales,150.632324,-34.388099 +2023,10,11,1,New South Wales,150.871984,-33.250383 +2021,6,28,1,New South Wales,150.790671,-34.14182 +2020,9,13,1,New South Wales,153.437117,-28.993182 +2023,5,28,1,New South Wales,152.306361,-31.952617 +2021,6,25,1,New South Wales,153.102706,-29.487556 +2023,10,29,1,New South Wales,152.189597,-32.229205 +2021,5,6,1,New South Wales,150.603536,-34.427431 +2022,10,19,1,New South Wales,150.839196,-34.057238 +2023,2,28,1,New South Wales,153.314983,-28.949201 +2021,4,15,1,New South Wales,150.521236,-34.452637 +2020,8,30,1,New South Wales,152.916411,-31.443386 +2020,9,9,1,New South Wales,153.518851,-28.232736 +2020,12,21,1,New South Wales,153.103849,-29.485496 +2022,12,7,1,New South Wales,152.997296,-28.965181 +2020,10,22,1,New South Wales,149.919967,-36.589766 +2021,9,21,1,New South Wales,150.646452,-34.395809 +2020,12,10,1,New South Wales,149.954748,-36.297726 +2023,3,28,1,New South Wales,152.911609,-31.458122 +2021,3,7,1,New South Wales,150.603458,-34.435481 +2020,8,21,1,New South Wales,152.911609,-31.458122 +2021,4,26,1,New South Wales,150.6085,-34.454431 +2021,3,17,1,New South Wales,150.532959,-34.481759 +2020,10,31,1,New South Wales,151.004081,-34.034102 +2023,2,9,1,New South Wales,152.927495,-31.468932 +2021,7,24,1,New South Wales,150.516544,-34.44899 +2021,6,2,1,New South Wales,150.529216,-34.464726 +2020,7,6,1,New South Wales,153.331243,-28.821749 +2020,4,20,1,New South Wales,152.830913,-31.524694 +2021,5,7,1,New South Wales,153.314107,-28.820206 +2021,8,12,1,New South Wales,150.517424,-34.438379 +2021,6,19,1,New South Wales,150.51395,-34.445845 +2023,5,31,1,New South Wales,153.314983,-28.949201 +2024,1,18,1,New South Wales,152.399208,-31.965613 +2021,7,9,1,New South Wales,153.31172,-28.84073 +2021,5,18,1,New South Wales,150.523879,-34.463752 +2022,6,16,1,New South Wales,153.515179,-28.6352 +2023,2,2,1,New South Wales,152.87102,-30.40517 +2023,1,31,1,New South Wales,153.314983,-28.949201 +2021,5,31,1,New South Wales,153.314983,-28.949201 +2020,10,23,1,New South Wales,149.923643,-36.618562 +2023,3,31,1,New South Wales,153.314983,-28.949201 +2021,11,6,1,New South Wales,152.418213,-31.905008 +2021,4,29,1,New South Wales,150.614866,-34.4296 +2021,9,30,1,New South Wales,153.314983,-28.949201 +2021,10,3,1,New South Wales,152.886224,-31.443481 +2020,1,9,1,New South Wales,153.336688,-28.868027 +2021,6,2,1,New South Wales,150.63762,-34.489733 +2021,6,26,1,New South Wales,150.597612,-34.41848 +2021,5,20,1,New South Wales,153.522857,-28.683177 +2021,7,11,1,New South Wales,150.606426,-34.435187 +2022,10,2,1,New South Wales,150.808142,-34.098028 +2023,12,28,1,New South Wales,152.925213,-31.454124 +2022,5,19,1,New South Wales,153.402924,-28.260549 +2022,9,23,1,New South Wales,152.886221,-31.44337 +2021,7,3,1,New South Wales,150.642034,-34.395886 +2020,10,10,1,New South Wales,149.955028,-36.650407 +2020,11,1,1,New South Wales,149.967242,-36.561675 +2020,12,30,1,New South Wales,153.104144,-29.485137 +2020,10,11,1,New South Wales,149.955028,-36.650407 +2021,4,17,1,New South Wales,150.627426,-34.386327 +2020,1,12,1,New South Wales,153.104337,-29.489582 +2021,5,8,1,New South Wales,150.632572,-34.418269 +2020,10,21,1,New South Wales,151.088534,-33.404535 +2021,5,19,1,New South Wales,150.630948,-34.388279 +2023,10,23,1,New South Wales,150.785336,-33.71695 +2023,2,14,1,New South Wales,150.79099,-34.180313 +2023,9,4,1,New South Wales,150.784234,-33.717186 +2020,7,17,1,New South Wales,150.89337,-33.971509 +2020,6,16,1,New South Wales,149.961734,-36.432507 +2023,8,2,1,New South Wales,152.028851,-32.191181 +2021,6,9,1,New South Wales,150.605259,-34.437977 +2020,11,12,1,New South Wales,149.995573,-36.572611 +2020,10,6,1,New South Wales,153.010861,-30.417681 +2022,12,6,1,New South Wales,149.355934,-37.177314 +2023,2,17,1,New South Wales,152.063459,-32.706026 +2020,10,17,1,New South Wales,149.887989,-36.587028 +2021,5,8,1,New South Wales,150.609159,-34.420636 +2022,8,10,1,New South Wales,151.709206,-32.617164 +2022,8,23,1,New South Wales,153.101124,-29.490096 +2020,10,12,1,New South Wales,149.887989,-36.587028 +2024,3,1,1,New South Wales,150.786404,-33.704355 +2022,10,7,1,New South Wales,153.05285,-30.2796 +2024,1,19,1,New South Wales,152.92797,-31.451682 +2021,5,11,1,New South Wales,150.60927,-34.420548 +2021,6,2,1,New South Wales,150.626112,-34.390494 +2020,11,6,1,New South Wales,150.010074,-36.579686 +2021,4,27,1,New South Wales,150.524563,-34.452002 +2022,5,12,1,New South Wales,153.101183,-29.490007 +2023,12,13,1,New South Wales,150.785607,-33.716996 +2023,10,16,1,New South Wales,152.78678,-31.629768 +2021,4,24,1,New South Wales,150.610442,-34.419119 +2022,9,27,1,New South Wales,152.637189,-31.337231 +2021,4,20,1,New South Wales,150.632403,-34.392996 +2021,6,12,1,New South Wales,152.079275,-32.761922 +2020,5,4,1,New South Wales,152.918987,-31.469715 +2021,7,1,1,New South Wales,150.597851,-34.412796 +2022,2,2,1,New South Wales,152.065376,-32.709829 +2021,5,2,1,New South Wales,150.607041,-34.455222 +2020,6,16,1,New South Wales,149.961734,-36.432507 +2022,8,4,1,New South Wales,150.799701,-34.214486 +2020,11,3,1,New South Wales,149.955017,-36.576791 +2021,9,4,1,New South Wales,150.645219,-34.399437 +2021,4,4,1,New South Wales,150.607363,-34.430202 +2022,5,27,1,New South Wales,152.756531,-31.418737 +2020,11,2,1,New South Wales,149.955017,-36.576791 +2020,11,25,1,New South Wales,153.279241,-28.839565 +2020,10,23,1,New South Wales,150.593114,-33.459334 +2024,3,22,1,New South Wales,152.06372,-32.706445 +2020,11,26,1,New South Wales,152.039732,-32.732186 +2020,12,28,1,New South Wales,152.037517,-32.731591 +2021,5,9,1,New South Wales,150.521192,-34.435354 +2022,6,9,1,New South Wales,153.10423,-29.47986 +2022,5,25,1,New South Wales,153.300166,-28.863514 +2021,1,28,1,New South Wales,152.15428,-32.713792 +2023,10,14,1,New South Wales,152.92365,-31.470627 +2021,8,25,1,New South Wales,150.52496,-34.495661 +2020,6,2,1,New South Wales,153.096081,-29.484773 +2024,9,3,1,New South Wales,151.058987,-29.740595 +2020,8,27,1,New South Wales,152.77598,-31.487179 +2023,7,15,1,New South Wales,153.55852,-28.394929 +2020,8,9,1,New South Wales,152.89362,-31.460002 +2021,4,18,1,New South Wales,150.604326,-34.425671 +2022,12,25,1,New South Wales,153.279162,-28.873768 +2021,10,14,1,New South Wales,152.368864,-31.874683 +2023,2,13,1,New South Wales,153.368127,-28.876433 +2022,7,28,1,New South Wales,152.78563,-31.629768 +2020,10,20,1,New South Wales,149.913134,-36.588285 +2020,7,17,1,New South Wales,153.424541,-28.890555 +2020,2,21,1,New South Wales,152.921537,-31.486137 +2021,5,22,1,New South Wales,150.639173,-34.492937 +2021,5,17,1,New South Wales,150.520465,-34.454028 +2020,2,10,1,New South Wales,152.81106,-31.162751 +2020,12,,1,New South Wales,152.864165,-31.291869 +2022,4,16,1,New South Wales,152.926417,-31.452399 +2023,7,21,1,New South Wales,150.798759,-34.2116 +2023,5,29,1,New South Wales,150.785319,-33.717064 +2022,11,30,1,New South Wales,153.314983,-28.949201 +2024,9,23,1,New South Wales,150.99265,-34.12069 +2020,5,4,1,New South Wales,152.477293,-28.279523 +2021,4,27,1,New South Wales,150.616224,-34.435802 +2022,7,31,1,New South Wales,153.314983,-28.949201 +2021,5,23,1,New South Wales,150.631072,-34.388147 +2023,9,18,1,New South Wales,153.090146,-28.598099 +2023,8,1,1,New South Wales,153.555985,-28.37413 +2023,7,27,1,New South Wales,153.308195,-28.849992 +2023,11,20,1,New South Wales,152.787066,-31.629899 +2021,6,5,1,New South Wales,150.523374,-34.464626 +2021,8,19,1,New South Wales,152.910417,-31.439414 +2021,5,29,1,New South Wales,152.90236,-30.56177 +2021,6,25,1,New South Wales,150.511063,-34.471245 +2021,4,16,1,New South Wales,150.627391,-34.386407 +2023,10,6,1,New South Wales,151.660978,-32.660645 +2022,8,3,1,New South Wales,152.08002,-32.761129 +2022,9,21,1,New South Wales,152.912452,-31.470422 +2021,3,6,1,New South Wales,150.523452,-34.458668 +2022,9,30,1,New South Wales,152.909158,-31.440917 +2024,4,20,1,New South Wales,150.986203,-34.040549 +2021,3,5,1,New South Wales,150.655901,-34.456287 +2024,1,,1,New South Wales,152.98375,-30.421151 +2020,8,11,1,New South Wales,153.103473,-29.486276 +2021,3,30,1,New South Wales,150.516141,-34.446827 +2020,10,17,1,New South Wales,149.947048,-36.640426 +2020,10,16,1,New South Wales,152.151316,-32.714885 +2023,9,2,1,New South Wales,150.785705,-33.705969 +2021,2,27,1,New South Wales,150.603956,-34.43293 +2021,6,12,1,New South Wales,152.887029,-31.430659 +2021,3,3,1,New South Wales,153.285591,-28.82869 +2020,5,20,1,New South Wales,149.97978,-36.468114 +2023,9,26,1,New South Wales,152.104747,-32.72697 +2023,1,31,1,New South Wales,153.314983,-28.949201 +2023,3,4,1,New South Wales,153.110506,-29.490032 +2021,5,9,1,New South Wales,150.518344,-34.451425 +2023,2,12,1,New South Wales,152.951652,-31.165147 +2021,10,28,1,New South Wales,152.807198,-29.813252 +2020,12,7,1,New South Wales,152.833527,-30.434874 +2021,4,17,1,New South Wales,150.627437,-34.386688 +2021,1,20,1,New South Wales,152.039015,-32.733802 +2020,11,3,1,New South Wales,149.998977,-36.551144 +2020,10,14,1,New South Wales,153.353423,-28.760793 +2021,11,3,1,New South Wales,153.51898,-28.57492 +2021,8,15,1,New South Wales,150.531175,-34.472122 +2021,7,25,1,New South Wales,150.522351,-34.465732 +2022,9,12,1,New South Wales,150.79517,-34.116065 +2020,12,21,1,New South Wales,153.103602,-29.488424 +2021,8,5,1,New South Wales,153.60237,-28.69032 +2021,6,11,1,New South Wales,150.645018,-34.396521 +2021,8,11,1,New South Wales,153.067583,-30.913667 +2021,8,18,1,New South Wales,150.521626,-34.465564 +2021,6,14,1,New South Wales,150.639804,-34.398241 +2021,6,20,1,New South Wales,150.519886,-34.452637 +2020,9,5,1,New South Wales,153.423196,-28.727155 +2022,8,14,1,New South Wales,152.795532,-29.517651 +2020,4,4,1,New South Wales,153.205378,-28.841394 +2021,1,25,1,New South Wales,152.130464,-32.726405 +2021,7,21,1,New South Wales,150.51691,-34.448781 +2021,7,1,1,New South Wales,153.104042,-29.484334 +2024,7,14,1,New South Wales,153.392954,-28.958813 +2024,1,11,1,New South Wales,149.926933,-32.652496 +2021,6,7,1,New South Wales,150.608536,-34.434083 +2024,1,22,1,New South Wales,153.110565,-29.490072 +2020,10,2,1,New South Wales,152.245688,-30.051427 +2024,2,11,1,New South Wales,150.784586,-33.716573 +2021,6,1,1,New South Wales,150.627608,-34.39027 +2021,6,23,1,New South Wales,150.520336,-34.465763 +2023,3,2,1,New South Wales,152.065437,-32.710938 +2021,10,18,1,New South Wales,150.784861,-34.191884 +2021,6,18,1,New South Wales,150.52125,-34.435202 +2020,1,16,1,New South Wales,152.746584,-31.442371 +2021,5,8,1,New South Wales,153.278017,-28.678941 +2020,1,9,1,New South Wales,150.886108,-34.001972 +2022,10,4,1,New South Wales,151.727184,-30.5682 +2021,6,21,1,New South Wales,150.602724,-34.439081 +2021,12,24,1,New South Wales,153.451098,-28.590421 +2020,12,,1,New South Wales,150.600987,-34.533564 +2022,5,22,1,New South Wales,152.920355,-31.430501 +2023,8,22,1,New South Wales,152.091725,-28.784249 +2021,7,30,1,New South Wales,153.260835,-28.871731 +2021,4,20,1,New South Wales,150.637192,-34.422641 +2021,5,23,1,New South Wales,150.528977,-34.471347 +2023,9,27,1,New South Wales,153.47468,-28.324609 +2023,8,28,1,New South Wales,153.009898,-30.364091 +2021,4,21,1,New South Wales,150.636943,-34.422609 +2020,12,4,1,New South Wales,152.906887,-31.45017 +2020,1,2,1,New South Wales,152.867988,-31.282665 +2021,3,11,1,New South Wales,150.51746,-34.452236 +2021,10,15,1,New South Wales,150.630559,-33.541858 +2021,5,17,1,New South Wales,150.530842,-34.470871 +2021,5,28,1,New South Wales,150.617603,-34.438588 +2022,10,16,1,New South Wales,153.556075,-28.641229 +2021,5,24,1,New South Wales,150.527511,-34.469388 +2021,5,11,1,New South Wales,150.616576,-34.434511 +2023,11,30,1,New South Wales,150.991189,-34.025559 +2023,5,5,1,New South Wales,152.596661,-31.693918 +2023,10,27,1,New South Wales,152.189573,-32.226267 +2022,8,18,1,New South Wales,153.297033,-28.717308 +2021,5,8,1,New South Wales,150.516575,-34.447206 +2020,12,1,1,New South Wales,152.667757,-31.202384 +2022,9,8,1,New South Wales,152.786625,-31.629267 +2021,4,19,1,New South Wales,150.626997,-34.385723 +2021,5,1,1,New South Wales,150.62422,-34.388942 +2022,8,18,1,New South Wales,152.123963,-32.738074 +2023,10,28,1,New South Wales,152.37097,-31.918887 +2021,5,31,1,New South Wales,150.604488,-34.424565 +2024,5,15,1,New South Wales,152.187319,-31.950415 +2023,11,30,1,New South Wales,153.103859,-29.489596 +2020,11,3,1,New South Wales,153.346548,-28.910046 +2023,5,5,1,New South Wales,149.967242,-36.576557 +2021,5,14,1,New South Wales,150.517344,-34.440352 +2021,8,23,1,New South Wales,150.639203,-34.397157 +2021,10,8,1,New South Wales,152.02201,-32.659322 +2021,6,14,1,New South Wales,150.522703,-34.452351 +2023,5,5,1,New South Wales,149.967242,-36.576557 +2023,6,29,1,New South Wales,153.103849,-29.489591 +2021,12,9,1,New South Wales,152.815152,-31.42944 +2021,5,10,1,New South Wales,150.659053,-34.457591 +2021,5,16,1,New South Wales,150.655308,-34.459187 +2020,5,12,1,New South Wales,153.388749,-28.586387 +2020,11,1,1,New South Wales,149.988655,-36.56931 +2021,5,12,1,New South Wales,150.521303,-34.466197 +2023,1,31,1,New South Wales,153.314983,-28.949201 +2022,8,1,1,New South Wales,153.10409,-29.480542 +2021,3,21,1,New South Wales,150.525408,-34.459889 +2021,4,16,1,New South Wales,150.636052,-34.420645 +2023,9,24,1,New South Wales,153.51463,-28.607207 +2021,10,31,1,New South Wales,153.314983,-28.949201 +2024,4,21,1,New South Wales,152.06373,-32.706535 +2020,11,3,1,New South Wales,153.346548,-28.910046 +2021,6,25,1,New South Wales,150.64471,-34.39161 +2020,12,28,1,New South Wales,153.104042,-29.484301 +2022,11,30,1,New South Wales,153.314983,-28.949201 +2020,11,27,1,New South Wales,152.905871,-31.44807 +2021,5,4,1,New South Wales,150.632825,-34.41895 +2024,1,3,1,New South Wales,152.388882,-31.902443 +2020,1,31,1,New South Wales,153.314983,-28.949201 +2020,12,11,1,New South Wales,152.88986,-31.440548 +2021,5,31,1,New South Wales,150.60461,-34.424477 +2020,1,31,1,New South Wales,153.314983,-28.949201 +2022,9,17,1,New South Wales,152.071519,-32.707448 +2022,4,18,1,New South Wales,149.522315,-33.679751 +2021,6,7,1,New South Wales,150.325587,-29.033495 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2021,6,20,1,New South Wales,150.603908,-34.439537 +2021,9,9,1,New South Wales,150.91465,-33.970921 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2021,5,31,1,New South Wales,150.630269,-34.389628 +2021,5,24,1,New South Wales,150.521601,-34.465672 +2021,7,2,1,New South Wales,152.074804,-32.722224 +2024,3,6,1,New South Wales,150.7848,-33.713272 +2022,1,19,1,New South Wales,152.88575,-30.517494 +2020,10,18,1,New South Wales,152.868404,-29.666874 +2021,9,27,1,New South Wales,153.406132,-28.977706 +2021,4,29,1,New South Wales,150.616484,-34.398655 +2021,7,12,1,New South Wales,151.488028,-32.98809 +2024,1,17,1,New South Wales,152.914958,-31.468189 +2022,11,3,1,New South Wales,153.314713,-28.818692 +2021,1,23,1,New South Wales,153.380005,-28.694311 +2021,7,18,1,New South Wales,150.516314,-34.447967 +2021,6,16,1,New South Wales,150.604139,-34.437946 +2021,4,23,1,New South Wales,150.629255,-34.395098 +2023,8,11,1,New South Wales,150.786796,-33.703852 +2020,10,30,1,New South Wales,149.977333,-36.564828 +2021,10,19,1,New South Wales,153.603603,-28.688501 +2020,10,20,1,New South Wales,149.938155,-36.621708 +2023,10,11,1,New South Wales,150.784886,-33.716458 +2021,5,14,1,New South Wales,150.525329,-34.464025 +2022,9,20,1,New South Wales,152.829438,-29.645186 +2022,2,16,1,New South Wales,153.299547,-28.817186 +2023,9,20,1,New South Wales,150.785676,-33.706783 +2021,2,6,1,New South Wales,153.103693,-29.485646 +2020,9,24,1,New South Wales,152.898194,-31.443104 +2023,10,10,1,New South Wales,150.634603,-34.389831 +2021,2,27,1,New South Wales,150.517028,-34.446998 +2021,6,8,1,New South Wales,150.518737,-34.447358 +2022,9,19,1,New South Wales,150.953868,-33.958383 +2021,5,17,1,New South Wales,150.640727,-34.49422 +2023,12,31,1,New South Wales,150.784384,-33.717215 +2023,6,27,1,New South Wales,151.78984,-32.655321 +2021,7,2,1,New South Wales,150.62739,-34.390663 +2022,8,13,1,New South Wales,153.103956,-29.478856 +2021,7,21,1,New South Wales,150.52377,-34.463732 +2023,9,26,1,New South Wales,153.460499,-28.650517 +2021,6,2,1,New South Wales,150.637588,-34.488525 +2021,5,13,1,New South Wales,150.523273,-34.464344 +2020,11,2,1,New South Wales,149.958519,-36.587122 +2021,10,24,1,New South Wales,153.103784,-29.48558 +2021,9,11,1,New South Wales,150.640136,-34.397238 +2021,5,14,1,New South Wales,150.614788,-34.455284 +2021,7,5,1,New South Wales,150.627139,-34.420742 +2021,,,1,New South Wales,149.827489,-32.386521 +2021,7,13,1,New South Wales,150.643071,-34.395744 +2021,6,5,1,New South Wales,150.523351,-34.464661 +2021,6,12,1,New South Wales,150.603893,-34.452636 +2021,6,18,1,New South Wales,150.618887,-34.436287 +2021,12,9,1,New South Wales,153.481576,-28.705151 +2023,5,10,1,New South Wales,153.341092,-28.909308 +2021,9,13,1,New South Wales,150.513836,-34.446023 +2022,10,16,1,New South Wales,152.063556,-32.706513 +2020,9,12,1,New South Wales,153.012156,-28.625677 +2021,5,13,1,New South Wales,150.656053,-34.458634 +2021,6,19,1,New South Wales,150.519027,-34.459967 +2021,8,20,1,New South Wales,150.513124,-34.447262 +2021,4,25,1,New South Wales,150.604214,-34.437966 +2021,1,18,1,New South Wales,153.104063,-29.48432 +2020,11,8,1,New South Wales,150.02021,-36.569074 +2024,4,15,1,New South Wales,152.413602,-31.944661 +2022,12,28,1,New South Wales,146.58639,-34.769223 +2022,10,25,1,New South Wales,152.855557,-31.544762 +2024,1,19,1,New South Wales,152.815379,-31.164121 +2021,7,23,1,New South Wales,150.642155,-34.395844 +2022,2,13,1,New South Wales,152.063772,-32.70634 +2023,1,15,1,New South Wales,153.395866,-28.870934 +2021,7,6,1,New South Wales,150.626979,-34.421019 +2020,11,24,1,New South Wales,152.923886,-31.444286 +2023,9,25,1,New South Wales,153.11049,-29.49018 +2021,8,15,1,New South Wales,150.791111,-34.197877 +2024,3,16,1,New South Wales,150.809822,-34.101266 +2022,6,21,1,New South Wales,153.104138,-29.483764 +2020,10,20,1,New South Wales,153.278132,-28.831137 +2021,4,28,1,New South Wales,150.615567,-34.435537 +2020,6,17,1,New South Wales,152.780659,-30.225716 +2021,6,7,1,New South Wales,150.641963,-34.396859 +2021,5,18,1,New South Wales,150.630931,-34.390046 +2021,6,30,1,New South Wales,150.513128,-34.447145 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2021,5,8,1,New South Wales,150.63267,-34.418262 +2021,7,10,1,New South Wales,150.520323,-34.465465 +2021,7,17,1,New South Wales,150.514521,-34.44381 +2022,10,26,1,New South Wales,151.410466,-32.968488 +2021,3,5,1,New South Wales,150.604297,-34.438102 +2021,5,20,1,New South Wales,150.522294,-34.465082 +2020,11,3,1,New South Wales,149.934245,-36.578531 +2023,7,27,1,New South Wales,150.835045,-29.657054 +2021,3,30,1,New South Wales,152.908306,-31.451168 +2020,8,24,1,New South Wales,152.879669,-31.449383 +2023,12,9,1,New South Wales,153.452422,-28.518968 +2022,11,1,1,New South Wales,152.889538,-31.443597 +2021,11,19,1,New South Wales,152.483796,-31.894047 +2021,4,15,1,New South Wales,150.625765,-34.386222 +2021,6,14,1,New South Wales,150.611998,-34.432096 +2024,1,16,1,New South Wales,152.807504,-31.135543 +2020,5,28,1,New South Wales,149.995981,-36.454235 +2023,1,12,1,New South Wales,153.557091,-28.397364 +2023,3,7,1,New South Wales,149.956571,-36.590303 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2021,6,6,1,New South Wales,150.607635,-34.430198 +2020,4,6,1,New South Wales,151.19536,-29.7867 +2021,1,14,1,New South Wales,153.103811,-29.484913 +2020,10,13,1,New South Wales,152.076205,-32.735173 +2022,9,21,1,New South Wales,152.353525,-31.92625 +2021,11,24,1,New South Wales,152.915352,-31.445944 +2023,10,12,1,New South Wales,150.88723,-33.251643 +2021,6,30,1,New South Wales,150.627347,-34.420296 +2021,5,29,1,New South Wales,152.90257,-30.56148 +2022,8,11,1,New South Wales,153.229584,-28.889165 +2021,7,9,1,New South Wales,150.520521,-34.465758 +2021,5,22,1,New South Wales,150.529404,-34.471266 +2020,7,5,1,New South Wales,153.108248,-29.49017 +2023,11,20,1,New South Wales,151.707644,-32.661828 +2021,7,3,1,New South Wales,150.627886,-34.390825 +2021,6,19,1,New South Wales,150.51395,-34.445845 +2022,11,17,1,New South Wales,150.693056,-33.384167 +2021,9,8,1,New South Wales,150.644456,-34.396393 +2021,4,14,1,New South Wales,152.884757,-31.443649 +2021,6,15,1,New South Wales,153.460145,-28.649638 +2023,9,5,1,New South Wales,151.625632,-32.633443 +2021,5,27,1,New South Wales,150.618013,-34.438686 +2022,10,29,1,New South Wales,153.360215,-28.889489 +2021,3,17,1,New South Wales,150.517285,-34.451538 +2020,10,30,1,New South Wales,149.984095,-36.575978 +2023,10,24,1,New South Wales,150.789744,-34.201999 +2020,9,19,1,New South Wales,153.419762,-28.982508 +2021,6,8,1,New South Wales,150.518034,-34.457116 +2020,11,6,1,New South Wales,149.984095,-36.575978 +2021,5,9,1,New South Wales,150.604937,-34.426747 +2020,9,9,1,New South Wales,150.00587,-31.12848 +2020,11,10,1,New South Wales,153.430836,-29.017366 +2021,1,14,1,New South Wales,150.833136,-34.085987 +2021,1,19,1,New South Wales,153.28465,-28.841163 +2020,12,15,1,New South Wales,153.47285,-28.647443 +2020,11,17,1,New South Wales,149.989443,-36.496862 +2021,4,17,1,New South Wales,150.617329,-34.437095 +2020,10,4,1,New South Wales,152.043163,-32.767494 +2021,10,19,1,New South Wales,150.808987,-34.208693 +2021,4,24,1,New South Wales,150.635406,-34.419622 +2021,8,26,1,New South Wales,150.5139,-34.447872 +2023,12,1,1,New South Wales,152.802364,-30.325465 +2022,5,13,1,New South Wales,150.753388,-33.382353 +2021,7,9,1,New South Wales,150.608871,-34.434946 +2021,5,2,1,New South Wales,150.609634,-34.436413 +2021,4,28,1,New South Wales,150.615479,-34.435589 +2023,12,21,1,New South Wales,152.926257,-31.454742 +2024,4,27,1,New South Wales,150.984681,-34.096518 +2021,4,5,1,New South Wales,150.663891,-34.458558 +2022,5,23,1,New South Wales,153.101478,-29.489573 +2023,4,19,1,New South Wales,149.950099,-36.567944 +2021,3,19,1,New South Wales,150.607909,-34.422117 +2023,2,6,1,New South Wales,152.985567,-30.325627 +2022,1,14,1,New South Wales,152.032271,-32.737456 +2021,4,21,1,New South Wales,150.630564,-34.386856 +2020,7,21,1,New South Wales,151.56183,-32.878254 +2021,2,19,1,New South Wales,150.084819,-33.773468 +2021,5,23,1,New South Wales,150.63083,-34.420634 +2021,5,17,1,New South Wales,150.600248,-34.428656 +2024,2,22,1,New South Wales,153.104273,-29.480005 +2020,11,2,1,New South Wales,149.967242,-36.561675 +2022,3,11,1,New South Wales,151.052402,-31.050913 +2021,3,14,1,New South Wales,152.064857,-32.709513 +2021,6,1,1,New South Wales,150.518205,-34.446572 +2021,6,5,1,New South Wales,150.63672,-34.488039 +2020,7,23,1,New South Wales,153.103945,-29.485403 +2022,11,25,1,New South Wales,152.794854,-30.893434 +2021,4,26,1,New South Wales,150.637386,-34.487998 +2020,12,19,1,New South Wales,152.899325,-29.631042 +2021,5,22,1,New South Wales,150.631149,-34.388103 +2021,4,21,1,New South Wales,150.616485,-34.433121 +2021,5,19,1,New South Wales,150.633497,-34.41826 +2021,11,28,1,New South Wales,153.298252,-28.818425 +2023,2,13,1,New South Wales,152.063956,-32.706625 +2020,11,5,1,New South Wales,149.943147,-36.549371 +2022,5,29,1,New South Wales,150.573283,-34.235075 +2024,7,12,1,New South Wales,152.521988,-32.320798 +2021,5,7,1,New South Wales,150.606051,-34.437659 +2021,5,17,1,New South Wales,150.640684,-34.49421 +2020,10,30,1,New South Wales,149.943147,-36.549371 +2020,8,20,1,New South Wales,153.103755,-29.485564 +2022,8,30,1,New South Wales,149.315929,-36.297209 +2021,7,8,1,New South Wales,150.520556,-34.466038 +2020,10,29,1,New South Wales,149.943147,-36.549371 +2020,10,29,1,New South Wales,149.967242,-36.561675 +2022,12,14,1,New South Wales,151.603034,-30.493343 +2023,10,16,1,New South Wales,152.064978,-32.711152 +2022,6,20,1,New South Wales,152.794076,-31.641862 +2024,2,7,1,New South Wales,153.109256,-29.490862 +2021,6,22,1,New South Wales,150.51961,-34.463089 +2021,5,13,1,New South Wales,150.627809,-34.397396 +2022,11,28,1,New South Wales,152.777302,-30.885013 +2022,8,26,1,New South Wales,145.554672,-35.813324 +2021,4,26,1,New South Wales,150.833136,-34.085987 +2022,2,4,1,New South Wales,152.90564,-31.438605 +2021,5,28,1,New South Wales,150.604245,-34.438047 +2021,8,19,1,New South Wales,149.350394,-36.154546 +2022,9,19,1,New South Wales,153.11033,-30.301338 +2021,5,2,1,New South Wales,150.616622,-34.435179 +2021,5,5,1,New South Wales,150.627106,-34.389566 +2023,11,11,1,New South Wales,149.247952,-36.197052 +2021,8,12,1,New South Wales,150.606838,-34.45584 +2021,5,14,1,New South Wales,150.527682,-34.466552 +2023,9,8,1,New South Wales,152.601811,-31.652219 +2023,9,25,1,New South Wales,153.272501,-28.931682 +2021,12,16,1,New South Wales,153.36138,-28.6829 +2023,12,19,1,New South Wales,152.816657,-30.258572 +2023,9,1,1,New South Wales,151.058609,-29.740233 +2021,3,5,1,New South Wales,150.608341,-34.432132 +2021,4,30,1,New South Wales,150.624392,-34.387846 +2020,11,10,1,New South Wales,151.660062,-32.659944 +2022,9,11,1,New South Wales,151.091706,-33.140339 +2020,2,4,1,New South Wales,153.299386,-28.811981 +2022,8,7,1,New South Wales,150.795181,-34.229227 +2023,2,10,1,New South Wales,152.94186,-30.493998 +2020,11,8,1,New South Wales,150.010074,-36.579686 +2022,4,19,1,New South Wales,152.117983,-32.71853 +2023,10,31,1,New South Wales,152.204264,-32.226111 +2022,10,4,1,New South Wales,153.041198,-30.42329 +2022,2,17,1,New South Wales,152.875153,-29.679916 +2020,12,9,1,New South Wales,152.873157,-28.473865 +2021,9,9,1,New South Wales,152.071672,-32.708486 +2020,11,23,1,New South Wales,153.555833,-28.399167 +2021,9,7,1,New South Wales,150.645115,-34.398091 +2021,9,18,1,New South Wales,152.893032,-31.432924 +2022,2,18,1,New South Wales,153.353561,-28.854374 +2022,1,27,1,New South Wales,152.984468,-29.037243 +2023,5,19,1,New South Wales,150.786074,-33.713879 +2023,4,17,1,New South Wales,153.108162,-29.490563 +2020,2,5,1,New South Wales,153.104132,-29.480026 +2021,4,22,1,New South Wales,150.631208,-34.387572 +2021,6,10,1,New South Wales,150.613949,-34.433125 +2020,10,17,1,New South Wales,153.556036,-28.399676 +2021,3,8,1,New South Wales,150.610031,-34.419787 +2023,7,18,1,New South Wales,152.862909,-28.963657 +2022,2,1,1,New South Wales,153.101757,-29.489638 +2022,12,1,1,New South Wales,153.18008,-28.731193 +2022,1,7,1,New South Wales,153.103806,-29.485599 +2021,10,1,1,New South Wales,152.93214,-31.474821 +2021,6,24,1,New South Wales,153.495239,-28.694401 +2021,12,3,1,New South Wales,153.50506,-28.79448 +2021,1,22,1,New South Wales,153.103779,-29.485566 +2021,6,2,1,New South Wales,150.637589,-34.488498 +2022,3,3,1,New South Wales,153.110517,-29.490082 +2022,11,22,1,New South Wales,153.360264,-28.647291 +2021,6,23,1,New South Wales,150.644559,-34.393104 +2021,6,16,1,New South Wales,150.639832,-34.400334 +2021,6,15,1,New South Wales,152.929452,-29.726558 +2023,10,29,1,New South Wales,152.192249,-32.23198 +2022,4,14,1,New South Wales,153.401925,-28.258683 +2021,6,21,1,New South Wales,153.405888,-28.260697 +2021,8,7,1,New South Wales,150.522568,-34.463897 +2020,8,16,1,New South Wales,152.988175,-29.030741 +2021,6,4,1,New South Wales,150.523417,-34.464627 +2021,2,21,1,New South Wales,149.439474,-33.65595 +2022,8,30,1,New South Wales,149.318201,-36.298561 +2021,5,3,1,New South Wales,150.516521,-34.447223 +2021,5,19,1,New South Wales,150.519856,-34.452916 +2023,10,10,1,New South Wales,153.094928,-29.483465 +2023,9,29,1,New South Wales,153.217687,-28.873864 +2021,6,13,1,New South Wales,150.615948,-34.430947 +2021,6,21,1,New South Wales,150.512869,-34.445967 +2021,4,21,1,New South Wales,150.61028,-34.419089 +2021,7,9,1,New South Wales,150.631041,-34.388858 +2023,10,6,1,New South Wales,152.921877,-31.480608 +2021,6,8,1,New South Wales,150.659902,-34.455263 +2023,5,23,1,New South Wales,150.837478,-34.078738 +2021,2,28,1,New South Wales,150.519668,-34.447142 +2021,8,29,1,New South Wales,150.644497,-34.393761 +2023,8,3,1,New South Wales,152.209798,-31.560491 +2021,7,21,1,New South Wales,150.630734,-34.42056 +2021,8,4,1,New South Wales,150.520919,-34.432797 +2023,9,12,1,New South Wales,152.077239,-32.725515 +2022,1,28,1,New South Wales,152.889071,-31.263642 +2021,5,1,1,New South Wales,150.637466,-34.423728 +2021,4,24,1,New South Wales,150.606793,-34.434527 +2020,10,5,1,New South Wales,152.177441,-30.099383 +2022,11,7,1,New South Wales,153.514233,-28.782321 +2021,5,1,1,New South Wales,150.604809,-34.427033 +2020,11,25,1,New South Wales,152.786474,-31.629845 +2022,1,28,1,New South Wales,150.617261,-34.440276 +2021,3,4,1,New South Wales,152.014627,-32.732744 +2022,11,10,1,New South Wales,150.842335,-34.068546 +2023,7,31,1,New South Wales,152.901709,-31.468197 +2023,5,7,1,New South Wales,153.298615,-28.994479 +2023,12,16,1,New South Wales,150.785544,-33.715627 +2021,7,22,1,New South Wales,150.516066,-34.443815 +2021,5,2,1,New South Wales,150.611393,-34.419733 +2022,2,26,1,New South Wales,152.353992,-31.904265 +2024,9,2,1,New South Wales,152.543334,-32.059492 +2021,7,2,1,New South Wales,150.513934,-34.447107 +2021,5,9,1,New South Wales,150.517016,-34.447395 +2021,4,30,1,New South Wales,150.617353,-34.399853 +2022,4,15,1,New South Wales,153.103269,-29.489157 +2021,3,7,1,New South Wales,150.609828,-34.419296 +2021,5,6,1,New South Wales,150.627532,-34.389872 +2021,6,2,1,New South Wales,150.639757,-34.399142 +2021,6,13,1,New South Wales,150.625326,-34.384447 +2021,9,29,1,New South Wales,150.513857,-34.445672 +2021,9,13,1,New South Wales,153.091028,-29.487528 +2020,11,3,1,New South Wales,149.96897,-36.58553 +2021,6,27,1,New South Wales,150.523113,-34.465351 +2021,5,19,1,New South Wales,150.613835,-34.431023 +2021,4,23,1,New South Wales,150.661013,-34.458747 +2021,3,31,1,New South Wales,150.60997,-34.429595 +2021,1,3,1,New South Wales,150.735521,-34.298171 +2020,10,17,1,New South Wales,149.931009,-36.595007 +2022,11,27,1,New South Wales,153.124429,-30.294545 +2020,11,10,1,New South Wales,150.833136,-34.085987 +2021,6,20,1,New South Wales,150.639187,-34.3931 +2022,11,27,1,New South Wales,152.777302,-30.885013 +2021,12,1,1,New South Wales,150.616546,-34.437855 +2021,5,3,1,New South Wales,150.606984,-34.45532 +2020,12,2,1,New South Wales,153.437824,-28.990842 +2021,5,20,1,New South Wales,150.630031,-34.395375 +2022,4,1,1,New South Wales,152.065376,-32.71109 +2021,6,5,1,New South Wales,150.519531,-34.456551 +2020,10,21,1,New South Wales,153.556043,-28.399617 +2023,4,20,1,New South Wales,152.870156,-31.303312 +2020,11,23,1,New South Wales,153.316666,-28.842289 +2021,7,28,1,New South Wales,153.465827,-28.326579 +2024,1,19,1,New South Wales,152.867852,-31.475231 +2021,5,27,1,New South Wales,150.618929,-34.439398 +2022,4,11,1,New South Wales,152.00351,-32.728513 +2022,11,6,1,New South Wales,152.926025,-31.449309 +2020,11,18,1,New South Wales,153.361038,-28.941392 +2023,3,5,1,New South Wales,152.359068,-31.912724 +2021,6,15,1,New South Wales,150.603285,-34.436974 +2023,10,2,1,New South Wales,151.008633,-34.045432 +2020,10,8,1,New South Wales,149.941793,-36.651646 +2023,10,19,1,New South Wales,153.110608,-29.49028 +2024,2,7,1,New South Wales,152.088396,-32.737588 +2020,10,9,1,New South Wales,149.941793,-36.651646 +2022,4,12,1,New South Wales,152.00351,-32.728513 +2022,6,22,1,New South Wales,152.633033,-30.22867 +2023,4,30,1,New South Wales,150.78601,-33.709233 +2022,9,13,1,New South Wales,153.629182,-28.637454 +2022,12,28,1,New South Wales,150.472157,-34.492082 +2021,4,16,1,New South Wales,150.609468,-34.42047 +2023,7,31,1,New South Wales,153.314983,-28.949201 +2023,3,30,1,New South Wales,153.111016,-29.487579 +2022,1,24,1,New South Wales,151.765357,-32.698016 +2021,9,19,1,New South Wales,153.395134,-28.959978 +2020,11,30,1,New South Wales,153.343646,-28.866891 +2021,10,,1,New South Wales,149.343492,-36.309402 +2022,9,26,1,New South Wales,153.343041,-28.650293 +2020,9,10,1,New South Wales,152.359003,-31.924406 +2021,12,24,1,New South Wales,152.925913,-31.452603 +2021,5,23,1,New South Wales,150.616424,-34.434481 +2021,9,19,1,New South Wales,153.434097,-28.843092 +2021,10,17,1,New South Wales,150.81033,-34.100569 +2021,5,22,1,New South Wales,150.633885,-34.39251 +2024,1,27,1,New South Wales,150.787261,-33.703676 +2023,9,20,1,New South Wales,153.302753,-28.844532 +2021,9,8,1,New South Wales,150.610394,-34.449825 +2020,2,6,1,New South Wales,153.549036,-28.635342 +2021,6,1,1,New South Wales,150.523879,-34.463743 +2021,3,10,1,New South Wales,152.035894,-32.764968 +2020,3,29,1,New South Wales,153.104205,-29.479743 +2023,10,14,1,New South Wales,150.785008,-33.71601 +2023,7,27,1,New South Wales,153.31535,-28.819753 +2021,5,17,1,New South Wales,150.523822,-34.463814 +2021,6,19,1,New South Wales,150.603727,-34.439407 +2021,10,13,1,New South Wales,153.108156,-29.490591 +2021,1,21,1,New South Wales,152.868147,-29.667173 +2021,12,20,1,New South Wales,153.104197,-29.47971 +2023,12,4,1,New South Wales,152.90886,-31.440613 +2021,7,11,1,New South Wales,150.513046,-34.447332 +2023,8,23,1,New South Wales,153.338339,-28.813729 +2022,1,1,1,New South Wales,152.028485,-32.732632 +2022,7,29,1,New South Wales,152.089026,-28.784836 +2023,6,29,1,New South Wales,152.935083,-30.382081 +2021,5,27,1,New South Wales,150.619405,-34.439479 +2020,9,22,1,New South Wales,152.888231,-31.434633 +2020,9,8,1,New South Wales,153.531628,-28.217436 +2022,9,14,1,New South Wales,152.828321,-29.492989 +2021,5,7,1,New South Wales,150.609897,-34.455053 +2021,6,30,1,New South Wales,150.513094,-34.447171 +2021,4,25,1,New South Wales,150.637987,-34.419907 +2021,6,23,1,New South Wales,150.628415,-34.420623 +2021,4,30,1,New South Wales,150.610522,-34.420527 +2021,5,4,1,New South Wales,150.627193,-34.389577 +2021,6,28,1,New South Wales,150.644947,-34.391281 +2021,4,25,1,New South Wales,150.637532,-34.420214 +2021,3,8,1,New South Wales,150.602978,-34.437076 +2021,10,5,1,New South Wales,152.905423,-31.489423 +2021,8,10,1,New South Wales,150.642211,-34.403923 +2023,12,31,1,New South Wales,153.109363,-29.490479 +2023,4,15,1,New South Wales,153.394095,-29.019628 +2022,6,2,1,New South Wales,151.60109,-30.46038 +2021,6,5,1,New South Wales,150.534558,-34.459263 +2023,11,2,1,New South Wales,152.200143,-32.231881 +2021,6,13,1,New South Wales,150.604001,-34.451539 +2021,4,29,1,New South Wales,150.603979,-34.427169 +2021,6,9,1,New South Wales,150.613973,-34.433054 +2022,1,10,1,New South Wales,151.781251,-32.611168 +2021,6,19,1,New South Wales,150.597347,-34.450542 +2021,2,2,1,New South Wales,151.168685,-33.565048 +2021,3,29,1,New South Wales,153.609158,-28.687821 +2021,6,10,1,New South Wales,150.516994,-34.447403 +2021,5,16,1,New South Wales,153.270147,-29.010897 +2020,7,9,1,New South Wales,153.103956,-29.485314 +2021,5,31,1,New South Wales,153.314983,-28.949201 +2021,7,4,1,New South Wales,150.603044,-34.417622 +2021,5,23,1,New South Wales,150.528988,-34.471357 +2020,3,18,1,New South Wales,152.919486,-31.474602 +2023,11,30,1,New South Wales,152.9197,-31.469108 +2021,7,15,1,New South Wales,153.297436,-28.824085 +2022,2,13,1,New South Wales,153.101767,-29.489788 +2021,5,12,1,New South Wales,150.604385,-34.438483 +2020,11,22,1,New South Wales,153.282528,-28.665174 +2020,11,1,1,New South Wales,153.509243,-28.666544 +2021,7,23,1,New South Wales,150.51642,-34.44878 +2022,6,26,1,New South Wales,152.910145,-31.444809 +2021,6,8,1,New South Wales,150.837726,-34.092213 +2021,5,18,1,New South Wales,150.803232,-34.175957 +2021,4,30,1,New South Wales,150.618043,-34.429599 +2020,8,28,1,New South Wales,153.307137,-28.963487 +2021,6,23,1,New South Wales,150.645156,-34.393143 +2021,4,5,1,New South Wales,150.533401,-34.478946 +2021,5,7,1,New South Wales,150.609757,-34.455014 +2023,9,7,1,New South Wales,149.552127,-33.491212 +2023,5,21,1,New South Wales,153.39393,-28.959084 +2021,5,16,1,New South Wales,150.629025,-34.395148 +2021,5,21,1,New South Wales,150.522292,-34.465127 +2021,4,23,1,New South Wales,150.616314,-34.435669 +2020,9,20,1,New South Wales,153.558056,-28.373982 +2021,7,11,1,New South Wales,150.626278,-34.421177 +2021,4,29,1,New South Wales,150.614855,-34.4296 +2021,7,10,1,New South Wales,150.520246,-34.465491 +2023,8,20,1,New South Wales,153.103736,-29.485716 +2023,9,20,1,New South Wales,153.10431,-29.477866 +2022,10,24,1,New South Wales,151.95424,-32.65304 +2021,5,25,1,New South Wales,150.638887,-34.492661 +2020,2,1,1,New South Wales,153.100896,-29.490089 +2022,8,8,1,New South Wales,153.104015,-29.479402 +2023,10,20,1,New South Wales,153.031304,-30.379066 +2020,10,24,1,New South Wales,149.958935,-36.568735 +2021,4,14,1,New South Wales,150.657881,-34.458236 +2024,7,22,1,New South Wales,151.794683,-32.561276 +2021,7,11,1,New South Wales,150.599119,-34.41182 +2023,11,16,1,New South Wales,152.886664,-31.439524 +2021,8,5,1,New South Wales,150.517385,-34.446321 +2021,7,24,1,New South Wales,150.6412,-34.395005 +2020,8,24,1,New South Wales,153.584803,-28.853089 +2023,10,31,1,New South Wales,152.343432,-31.989129 +2020,6,16,1,New South Wales,149.961734,-36.432507 +2020,10,13,1,New South Wales,152.894957,-31.448241 +2021,4,23,1,New South Wales,150.615392,-34.430981 +2021,4,16,1,New South Wales,150.630093,-34.394303 +2022,4,14,1,New South Wales,153.308724,-29.053097 +2020,9,23,1,New South Wales,152.254457,-32.378769 +2021,5,30,1,New South Wales,150.60451,-34.424565 +2021,5,5,1,New South Wales,150.627106,-34.389566 +2023,6,20,1,New South Wales,153.024681,-30.389392 +2021,10,26,1,New South Wales,150.808191,-34.099195 +2021,5,8,1,New South Wales,150.604938,-34.426719 +2020,1,18,1,New South Wales,153.334391,-28.81335 +2020,10,2,1,New South Wales,150.808265,-34.098144 +2021,5,5,1,New South Wales,150.632795,-34.418842 +2021,11,23,1,New South Wales,153.109315,-29.490661 +2020,4,9,1,New South Wales,152.716871,-30.193844 +2021,5,25,1,New South Wales,150.602551,-34.43677 +2022,9,20,1,New South Wales,153.523414,-28.670068 +2021,3,13,1,New South Wales,150.634954,-34.487753 +2023,8,2,1,New South Wales,153.425848,-28.808432 +2021,7,19,1,New South Wales,152.939011,-29.336773 +2021,5,29,1,New South Wales,150.515834,-34.448723 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2021,8,30,1,New South Wales,150.523148,-34.463783 +2020,10,10,1,New South Wales,152.925913,-31.476299 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2021,5,6,1,New South Wales,150.523178,-34.452109 +2020,11,2,1,New South Wales,149.994744,-36.560944 +2022,2,27,1,New South Wales,152.063362,-32.706031 +2021,11,29,1,New South Wales,152.868083,-29.667378 +2020,10,,1,New South Wales,150.367836,-34.370469 +2021,8,26,1,New South Wales,152.940685,-29.736919 +2021,9,14,1,New South Wales,150.515992,-34.437881 +2020,9,24,1,New South Wales,152.898147,-31.443412 +2021,6,24,1,New South Wales,150.625809,-34.386196 +2020,5,17,1,New South Wales,150.056193,-33.771553 +2023,4,20,1,New South Wales,150.786211,-33.710408 +2021,6,18,1,New South Wales,150.658632,-34.455113 +2023,8,4,1,New South Wales,150.787828,-33.703382 +2020,10,28,1,New South Wales,152.82411,-29.505069 +2021,9,17,1,New South Wales,153.119262,-30.312989 +2023,10,23,1,New South Wales,152.06338,-32.70637 +2022,8,2,1,New South Wales,152.788816,-31.151319 +2020,11,22,1,New South Wales,149.942556,-36.497108 +2022,12,26,1,New South Wales,153.528025,-28.809405 +2021,6,21,1,New South Wales,150.603321,-34.438777 +2021,7,23,1,New South Wales,150.624252,-34.386274 +2021,5,28,1,New South Wales,150.601286,-34.425061 +2021,5,7,1,New South Wales,150.521894,-34.459466 +2021,5,4,1,New South Wales,150.61585,-34.436318 +2021,12,14,1,New South Wales,152.928694,-31.459099 +2022,7,11,1,New South Wales,150.885263,-34.019362 +2021,11,5,1,New South Wales,152.383625,-31.923917 +2021,6,30,1,New South Wales,150.522695,-34.465865 +2021,3,28,1,New South Wales,153.331243,-28.821749 +2023,11,4,1,New South Wales,153.112711,-29.488433 +2023,9,26,1,New South Wales,153.450547,-28.728134 +2022,11,16,1,New South Wales,150.699196,-34.245314 +2020,12,10,1,New South Wales,153.281192,-28.822624 +2023,8,24,1,New South Wales,153.408399,-28.866843 +2023,4,15,1,New South Wales,150.788914,-34.202078 +2021,4,5,1,New South Wales,153.077049,-29.450991 +2020,1,7,1,New South Wales,152.985867,-29.032133 +2021,4,25,1,New South Wales,150.615886,-34.436192 +2021,4,14,1,New South Wales,150.63605,-34.485556 +2022,8,2,1,New South Wales,153.104176,-29.482101 +2023,9,29,1,New South Wales,152.9259,-31.44678 +2021,12,2,1,New South Wales,153.101247,-29.489867 +2021,4,28,1,New South Wales,150.610322,-34.419117 +2021,4,25,1,New South Wales,150.615886,-34.436192 +2021,9,26,1,New South Wales,150.848222,-34.046584 +2020,4,2,1,New South Wales,152.682102,-31.859414 +2022,9,14,1,New South Wales,151.958138,-32.00729 +2023,11,19,1,New South Wales,152.930138,-31.470377 +2023,9,22,1,New South Wales,153.31535,-28.819753 +2020,4,25,1,New South Wales,150.6989,-32.3727 +2020,8,16,1,New South Wales,152.907682,-31.442396 +2020,8,25,1,New South Wales,153.103627,-29.485481 +2020,10,21,1,New South Wales,153.104085,-29.485328 +2021,3,3,1,New South Wales,150.524339,-34.459948 +2022,4,13,1,New South Wales,150.080376,-29.46089 +2020,10,20,1,New South Wales,153.277965,-28.8186 +2023,2,17,1,New South Wales,152.878917,-31.44848 +2020,8,16,1,New South Wales,152.896427,-29.320973 +2020,11,3,1,New South Wales,149.968131,-36.578885 +2022,3,29,1,New South Wales,151.78609,-32.515486 +2021,4,23,1,New South Wales,150.630056,-34.388316 +2024,6,10,1,New South Wales,152.919618,-30.505908 +2021,3,20,1,New South Wales,153.104042,-29.485235 +2024,8,10,1,New South Wales,152.887816,-31.438946 +2021,7,6,1,New South Wales,150.513904,-34.446286 +2021,6,7,1,New South Wales,150.519487,-34.456559 +2020,11,25,1,New South Wales,153.279241,-28.839565 +2023,7,28,1,New South Wales,153.090199,-28.598288 +2022,8,30,1,New South Wales,149.316085,-36.297668 +2021,5,10,1,New South Wales,150.521069,-34.466752 +2020,9,23,1,New South Wales,152.721327,-31.344344 +2020,7,7,1,New South Wales,152.907539,-31.481143 +2023,11,1,1,New South Wales,152.782861,-31.484926 +2023,5,27,1,New South Wales,152.917368,-31.457371 +2021,5,21,1,New South Wales,150.631159,-34.38813 +2021,4,26,1,New South Wales,150.610212,-34.419178 +2021,4,8,1,New South Wales,150.115652,-33.753414 +2021,3,22,1,New South Wales,150.51724,-34.451592 +2021,4,30,1,New South Wales,153.314983,-28.949201 +2022,11,6,1,New South Wales,152.929026,-31.450143 +2021,5,31,1,New South Wales,150.517362,-34.446356 +2021,7,30,1,New South Wales,150.632618,-34.41974 +2021,4,24,1,New South Wales,150.630406,-34.388629 +2023,3,31,1,New South Wales,153.314983,-28.949201 +2023,8,26,1,New South Wales,153.436993,-28.606017 +2021,6,14,1,New South Wales,150.630387,-34.420914 +2021,6,30,1,New South Wales,153.314983,-28.949201 +2020,10,23,1,New South Wales,149.976368,-36.555504 +2021,10,19,1,New South Wales,152.926095,-31.476858 +2020,1,1,1,New South Wales,153.334325,-28.814419 +2021,4,27,1,New South Wales,150.624249,-34.400618 +2021,12,12,1,New South Wales,152.063111,-32.706584 +2024,3,4,1,New South Wales,152.91134,-31.443011 +2021,6,17,1,New South Wales,150.604095,-34.43873 +2020,10,29,1,New South Wales,149.979238,-36.570187 +2023,11,15,1,New South Wales,152.039783,-32.731611 +2021,5,31,1,New South Wales,150.638503,-34.49122 +2021,3,23,1,New South Wales,150.635814,-34.48813 +2021,12,10,1,New South Wales,151.413379,-29.602081 +2021,4,19,1,New South Wales,150.630939,-34.394022 +2021,5,1,1,New South Wales,150.608902,-34.435001 +2021,5,6,1,New South Wales,150.605001,-34.437846 +2021,7,6,1,New South Wales,150.513473,-34.446493 +2021,8,1,1,New South Wales,150.519924,-34.436645 +2022,9,11,1,New South Wales,152.915406,-31.47889 +2021,7,12,1,New South Wales,150.513128,-34.447145 +2023,8,2,1,New South Wales,153.556042,-28.398675 +2021,4,25,1,New South Wales,150.604031,-34.424962 +2021,7,22,1,New South Wales,150.51592,-34.444713 +2022,1,8,1,New South Wales,153.229425,-28.830976 +2021,7,7,1,New South Wales,150.627606,-34.421915 +2024,3,6,1,New South Wales,150.785888,-33.706893 +2021,7,14,1,New South Wales,153.103854,-29.48558 +2021,11,1,1,New South Wales,151.031397,-34.031656 +2021,4,14,1,New South Wales,150.063479,-33.774089 +2021,6,25,1,New South Wales,150.514346,-34.447169 +2022,5,19,1,New South Wales,152.257472,-30.075486 +2021,2,21,1,New South Wales,151.970947,-29.492994 +2021,9,10,1,New South Wales,150.600398,-34.454975 +2021,5,4,1,New South Wales,150.622895,-34.397319 +2024,1,9,1,New South Wales,150.784784,-33.713683 +2021,5,1,1,New South Wales,150.634242,-34.420006 +2020,8,29,1,New South Wales,152.355785,-31.85809 +2020,3,31,1,New South Wales,153.557802,-28.396817 +2021,4,28,1,New South Wales,150.603885,-34.452537 +2021,5,14,1,New South Wales,150.517443,-34.440309 +2022,12,6,1,New South Wales,149.355934,-37.177314 +2023,12,22,1,New South Wales,153.104256,-29.47753 +2022,9,28,1,New South Wales,153.103457,-29.485716 +2022,7,27,1,New South Wales,152.814073,-31.121882 +2021,5,2,1,New South Wales,150.609645,-34.436395 +2021,6,4,1,New South Wales,150.519346,-34.448082 +2023,8,29,1,New South Wales,149.552086,-33.491096 +2021,9,9,1,New South Wales,150.524932,-34.447979 +2022,1,21,1,New South Wales,153.62828,-28.63718 +2021,7,23,1,New South Wales,152.732487,-31.230772 +2020,11,18,1,New South Wales,153.361038,-28.941392 +2021,6,28,1,New South Wales,150.62739,-34.420306 +2021,9,27,1,New South Wales,153.101671,-29.489582 +2021,6,14,1,New South Wales,150.518438,-34.457449 +2021,8,27,1,New South Wales,150.639256,-34.397203 +2020,9,15,1,New South Wales,153.103248,-29.486724 +2021,4,13,1,New South Wales,150.52788,-34.456513 +2021,4,18,1,New South Wales,150.626878,-34.385685 +2020,4,5,1,New South Wales,153.511551,-28.575997 +2022,8,24,1,New South Wales,152.916246,-31.454545 +2023,6,9,1,New South Wales,151.691331,-32.67215 +2023,7,13,1,New South Wales,149.636113,-32.569722 +2024,5,7,1,New South Wales,152.134042,-32.200299 +2024,1,16,1,New South Wales,152.858631,-30.908334 +2021,3,2,1,New South Wales,150.521607,-34.45296 +2021,5,5,1,New South Wales,150.603313,-34.427229 +2020,10,24,1,New South Wales,149.958519,-36.587122 +2023,6,8,1,New South Wales,150.80354,-34.1207 +2023,8,8,1,New South Wales,153.108156,-29.490227 +2021,7,11,1,New South Wales,150.626331,-34.421223 +2020,12,24,1,New South Wales,150.659947,-33.528552 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2023,12,3,1,New South Wales,152.927654,-31.454996 +2022,8,15,1,New South Wales,153.104112,-29.478487 +2021,8,26,1,New South Wales,150.784861,-34.191884 +2021,5,30,1,New South Wales,150.631313,-34.420102 +2021,6,2,1,New South Wales,150.62608,-34.390466 +2021,6,6,1,New South Wales,150.636196,-34.487723 +2021,5,16,1,New South Wales,150.632706,-34.418903 +2021,2,10,1,New South Wales,152.904658,-31.444491 +2021,3,16,1,New South Wales,150.52545,-34.459917 +2022,1,4,1,New South Wales,152.915031,-31.450542 +2020,1,6,1,New South Wales,152.793722,-30.215801 +2023,11,14,1,New South Wales,152.839469,-29.580973 +2021,6,20,1,New South Wales,150.519942,-34.452593 +2021,9,8,1,New South Wales,150.520277,-34.447903 +2022,11,18,1,New South Wales,153.324544,-28.825256 +2020,3,5,1,New South Wales,153.556825,-28.400103 +2023,8,19,1,New South Wales,153.294555,-28.865479 +2020,10,29,1,New South Wales,152.930176,-31.467513 +2021,10,4,1,New South Wales,153.335602,-28.818247 +2021,12,7,1,New South Wales,150.618673,-34.4396 +2023,5,9,1,New South Wales,153.103468,-29.485613 +2024,9,15,2,New South Wales,151.059914,-29.773032 +2021,5,19,1,New South Wales,150.61722,-34.449769 +2021,7,4,1,New South Wales,150.52559,-34.465518 +2020,5,20,1,New South Wales,152.927752,-31.465781 +2021,6,2,1,New South Wales,150.603908,-34.45059 +2021,5,18,1,New South Wales,150.516481,-34.450043 +2021,2,1,1,New South Wales,152.355785,-31.85809 +2021,7,1,1,New South Wales,150.626468,-34.390582 +2021,7,26,1,New South Wales,153.471685,-28.261421 +2020,10,27,1,New South Wales,151.647073,-32.055032 +2021,4,20,1,New South Wales,150.632646,-34.392883 +2022,11,16,1,New South Wales,151.808172,-32.664396 +2020,5,,1,New South Wales,152.062901,-32.739393 +2022,5,31,1,New South Wales,153.103945,-29.489582 +2022,10,7,1,New South Wales,152.995718,-30.40733 +2023,9,4,1,New South Wales,152.925167,-31.454381 +2023,3,2,1,New South Wales,153.10409,-29.483708 +2020,11,3,1,New South Wales,153.346548,-28.910046 +2020,4,9,1,New South Wales,152.723198,-30.163734 +2022,9,9,1,New South Wales,153.184716,-28.889524 +2020,4,29,1,New South Wales,153.400663,-28.257777 +2023,2,14,1,New South Wales,153.256332,-28.88355 +2021,4,21,1,New South Wales,152.093798,-31.403015 +2020,10,28,1,New South Wales,149.96897,-36.58553 +2024,6,8,1,New South Wales,150.192626,-34.625558 +2021,7,26,1,New South Wales,150.625461,-34.386199 +2020,11,3,1,New South Wales,153.346548,-28.910046 +2021,5,14,1,New South Wales,150.637191,-34.42384 +2021,5,20,1,New South Wales,150.615752,-34.430952 +2020,12,10,1,New South Wales,149.960569,-36.271187 +2022,10,25,1,New South Wales,153.280877,-28.676101 +2021,4,19,1,New South Wales,150.616792,-34.43035 +2021,5,3,1,New South Wales,150.62672,-34.38936 +2021,9,25,1,New South Wales,153.193671,-29.424245 +2022,2,12,1,New South Wales,152.905563,-31.437056 +2021,4,28,1,New South Wales,150.624462,-34.388063 +2020,10,28,1,New South Wales,149.958519,-36.587122 +2021,10,25,1,New South Wales,152.98111,-30.437334 +2020,1,27,1,New South Wales,151.57961,-32.64281 +2022,1,29,1,New South Wales,153.110522,-29.490119 +2023,3,30,1,New South Wales,152.903766,-31.470255 +2021,3,19,1,New South Wales,150.533263,-34.479575 +2021,5,15,1,New South Wales,150.640566,-34.494136 +2023,9,10,1,New South Wales,152.925045,-31.468337 +2021,6,8,1,New South Wales,150.608333,-34.430888 +2021,8,30,1,New South Wales,153.102481,-29.48791 +2020,10,18,1,New South Wales,149.887989,-36.587028 +2021,5,24,1,New South Wales,150.517195,-34.452014 +2021,4,26,1,New South Wales,150.624407,-34.388089 +2021,4,17,1,New South Wales,150.627396,-34.386624 +2023,8,13,1,New South Wales,152.970025,-31.192666 +2021,5,14,1,New South Wales,150.523646,-34.464253 +2021,6,1,1,New South Wales,150.52004,-34.454786 +2020,3,29,1,New South Wales,152.929108,-31.459146 +2021,4,9,1,New South Wales,150.604618,-34.438695 +2020,4,30,1,New South Wales,153.091532,-29.488079 +2021,7,16,1,New South Wales,150.514386,-34.444691 +2021,11,24,1,New South Wales,152.063686,-32.705979 +2023,5,20,1,New South Wales,153.104026,-29.485155 +2020,10,20,1,New South Wales,153.296004,-28.818579 +2023,1,19,1,New South Wales,153.318536,-28.820603 +2024,5,9,1,New South Wales,152.035146,-32.655936 +2021,3,12,1,New South Wales,150.603853,-34.440726 +2021,6,7,1,New South Wales,150.629781,-34.420803 +2023,7,27,1,New South Wales,150.784933,-33.710825 +2021,5,18,1,New South Wales,150.801061,-34.186864 +2023,9,23,1,New South Wales,153.491353,-28.672094 +2021,5,14,1,New South Wales,150.629168,-34.395872 +2021,5,31,1,New South Wales,150.640334,-34.397548 +2021,6,14,1,New South Wales,150.612163,-34.432045 +2021,5,19,1,New South Wales,150.607956,-34.43382 +2021,4,6,1,New South Wales,152.927676,-31.466373 +2022,10,15,1,New South Wales,152.904658,-31.445977 +2020,5,29,1,New South Wales,149.328001,-36.151214 +2022,8,11,1,New South Wales,150.516989,-34.460344 +2021,4,22,1,New South Wales,150.637404,-34.420509 +2022,11,13,1,New South Wales,152.925178,-31.454161 +2021,6,20,1,New South Wales,150.520295,-34.465672 +2021,5,29,1,New South Wales,150.639142,-34.491341 +2020,11,2,1,New South Wales,149.967242,-36.561675 +2020,9,11,1,New South Wales,150.011428,-31.12504 +2021,6,16,1,New South Wales,153.283518,-28.830771 +2021,10,16,1,New South Wales,153.475189,-28.612152 +2023,1,27,1,New South Wales,152.941789,-30.493965 +2023,7,24,1,New South Wales,150.798126,-34.11278 +2021,4,16,1,New South Wales,150.627338,-34.386343 +2021,6,14,1,New South Wales,150.604396,-34.438095 +2020,9,14,1,New South Wales,152.025304,-32.738539 +2022,9,30,1,New South Wales,153.314983,-28.949201 +2021,4,8,1,New South Wales,150.607272,-34.437602 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2022,1,6,1,New South Wales,150.900994,-33.998837 +2021,11,8,1,New South Wales,152.919189,-31.474508 +2021,8,31,1,New South Wales,150.514498,-34.443882 +2023,10,30,1,New South Wales,150.784028,-33.717367 +2020,4,16,1,New South Wales,150.65549,-33.52261 +2021,7,10,1,New South Wales,150.513074,-34.447107 +2020,12,,1,New South Wales,150.600987,-34.533564 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2020,2,27,1,New South Wales,152.918296,-31.470536 +2020,11,1,1,New South Wales,149.999247,-36.565645 +2021,1,25,1,New South Wales,153.60798,-28.675791 +2022,4,3,1,New South Wales,153.10394,-29.489554 +2023,7,17,1,New South Wales,150.785269,-33.708241 +2021,3,16,1,New South Wales,153.304941,-28.849375 +2021,4,22,1,New South Wales,149.987591,-36.656844 +2022,11,24,1,New South Wales,152.785737,-31.629485 +2023,7,9,1,New South Wales,152.790133,-31.637733 +2024,2,17,1,New South Wales,153.110533,-29.490133 +2020,5,30,1,New South Wales,153.090974,-29.487677 +2021,6,4,1,New South Wales,150.535003,-34.463355 +2020,11,1,1,New South Wales,151.809884,-32.115553 +2022,1,19,1,New South Wales,152.875764,-29.679799 +2021,5,27,1,New South Wales,150.526643,-34.469281 +2021,7,5,1,New South Wales,153.10932,-29.490675 +2021,6,26,1,New South Wales,150.643718,-34.390924 +2021,11,28,1,New South Wales,152.867632,-29.667173 +2020,12,13,1,New South Wales,152.139095,-32.735486 +2023,4,5,1,New South Wales,152.851464,-29.692524 +2021,3,8,1,New South Wales,150.523788,-34.452446 +2023,2,7,1,New South Wales,152.930509,-29.735054 +2021,6,7,1,New South Wales,150.603648,-34.436476 +2021,5,24,1,New South Wales,150.516095,-34.450207 +2021,6,18,1,New South Wales,150.522282,-34.451496 +2021,4,30,1,New South Wales,150.609027,-34.435184 +2021,10,20,1,New South Wales,153.454566,-28.644521 +2021,5,18,1,New South Wales,150.607682,-34.436573 +2021,12,26,1,New South Wales,150.961718,-34.094974 +2021,7,9,1,New South Wales,150.598251,-34.412885 +2023,1,5,1,New South Wales,152.300601,-32.070198 +2022,8,1,1,New South Wales,150.794729,-34.142436 +2021,6,7,1,New South Wales,150.630139,-34.420837 +2021,3,23,1,New South Wales,150.514515,-34.445857 +2020,5,5,1,New South Wales,153.103913,-29.485548 +2024,3,7,1,New South Wales,150.451033,-34.729131 +2021,4,22,1,New South Wales,150.605071,-34.433105 +2023,10,7,1,New South Wales,153.111005,-29.487238 +2021,11,9,1,New South Wales,151.996814,-32.721854 +2020,11,10,1,New South Wales,150.47153,-34.49254 +2020,7,23,1,New South Wales,152.801965,-31.125745 +2020,7,19,1,New South Wales,153.325401,-28.669044 +2020,8,17,1,New South Wales,153.515052,-28.237636 +2021,5,4,1,New South Wales,150.632771,-34.418922 +2020,5,4,1,New South Wales,152.525805,-28.285188 +2023,10,31,1,New South Wales,152.897218,-31.415256 +2022,12,6,1,New South Wales,153.30459,-28.817112 +2020,10,29,1,New South Wales,149.976368,-36.555504 +2024,1,2,1,New South Wales,150.784436,-33.716387 +2023,7,9,1,New South Wales,153.315879,-28.849906 +2021,4,27,1,New South Wales,150.609512,-34.418911 +2020,10,31,1,New South Wales,149.976368,-36.555504 +2021,6,18,1,New South Wales,151.6662,-30.501562 +2023,9,2,1,New South Wales,153.110738,-29.49025 +2023,11,4,1,New South Wales,152.371305,-31.923096 +2021,7,3,1,New South Wales,150.642044,-34.397068 +2021,5,18,1,New South Wales,150.632099,-34.394531 +2020,10,29,1,New South Wales,149.976368,-36.555504 +2021,6,5,1,New South Wales,150.523373,-34.464653 +2022,6,29,1,New South Wales,146.53454,-34.745121 +2021,6,7,1,New South Wales,150.518916,-34.447181 +2021,5,12,1,New South Wales,150.516767,-34.448445 +2021,9,29,1,New South Wales,151.587159,-32.967069 +2024,1,3,1,New South Wales,150.786202,-33.706526 +2021,6,8,1,New South Wales,153.601971,-28.647359 +2020,10,30,1,New South Wales,149.999247,-36.565645 +2021,5,10,1,New South Wales,150.615207,-34.434809 +2023,11,5,1,New South Wales,152.373789,-31.914598 +2021,6,19,1,New South Wales,150.642659,-34.394537 +2023,5,18,1,New South Wales,153.092347,-29.488181 +2020,1,27,1,New South Wales,152.921693,-31.457184 +2020,10,12,1,New South Wales,152.00028,-32.632576 +2020,1,4,1,New South Wales,153.325549,-28.387771 +2021,5,3,1,New South Wales,150.842133,-34.070234 +2020,11,30,1,New South Wales,153.314983,-28.949201 +2022,10,6,1,New South Wales,152.948551,-30.435307 +2022,10,18,1,New South Wales,150.821368,-34.101855 +2021,9,3,1,New South Wales,153.560115,-28.393996 +2022,12,31,1,New South Wales,153.314983,-28.949201 +2021,1,26,1,New South Wales,150.062851,-33.77383 +2020,5,30,1,New South Wales,152.171587,-32.662336 +2021,3,13,1,New South Wales,153.103731,-29.485627 +2022,9,30,1,New South Wales,153.314983,-28.949201 +2021,4,28,1,New South Wales,150.616589,-34.429445 +2020,10,30,1,New South Wales,149.938213,-36.559404 +2021,11,6,1,New South Wales,152.925478,-31.453571 +2021,6,22,1,New South Wales,150.52035,-34.465655 +2023,7,31,1,New South Wales,153.314983,-28.949201 +2020,3,25,1,New South Wales,150.204711,-34.500838 +2021,6,22,1,New South Wales,150.519655,-34.463036 +2020,10,31,1,New South Wales,153.104106,-29.484203 +2021,11,30,1,New South Wales,153.314983,-28.949201 +2022,5,17,1,New South Wales,152.92622,-31.459061 +2021,7,17,1,New South Wales,150.624588,-34.385911 +2020,10,29,1,New South Wales,149.96897,-36.58553 +2022,10,15,1,New South Wales,150.99975,-34.059901 +2021,5,6,1,New South Wales,150.637431,-34.423809 +2020,10,23,1,New South Wales,149.96897,-36.58553 +2020,2,29,1,New South Wales,153.314983,-28.949201 +2023,8,23,1,New South Wales,152.21157,-32.23314 +2021,5,1,1,New South Wales,150.607775,-34.455435 +2020,1,13,1,New South Wales,153.093479,-29.488564 +2021,6,11,1,New South Wales,150.630201,-34.420946 +2022,3,15,1,New South Wales,153.557721,-28.396494 +2021,12,31,1,New South Wales,153.314983,-28.949201 +2022,10,18,1,New South Wales,152.928613,-31.464152 +2022,9,1,1,New South Wales,149.945905,-32.649084 +2023,11,16,1,New South Wales,150.785071,-33.714067 +2021,9,30,1,New South Wales,150.513866,-34.445726 +2020,11,,1,New South Wales,152.138047,-31.402485 +2023,5,18,1,New South Wales,153.284425,-29.021761 +2020,11,12,1,New South Wales,152.899282,-29.631042 +2021,5,19,1,New South Wales,150.516417,-34.449979 +2021,5,17,1,New South Wales,150.524124,-34.46282 +2020,9,14,1,New South Wales,152.02908,-32.768873 +2021,12,1,1,New South Wales,151.466275,-33.383311 +2021,9,4,1,New South Wales,153.4627,-28.655143 +2021,6,9,1,New South Wales,150.523053,-34.466269 +2021,7,15,1,New South Wales,152.926202,-31.459148 +2021,8,30,1,New South Wales,150.519573,-34.437485 +2020,11,12,1,New South Wales,150.003238,-36.547042 +2023,6,7,1,New South Wales,152.901678,-31.241898 +2021,11,6,1,New South Wales,150.842335,-34.068546 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2021,7,19,1,New South Wales,153.560036,-28.841696 +2020,10,1,1,New South Wales,153.103581,-29.488695 +2022,9,24,1,New South Wales,151.6662,-30.501562 +2023,12,3,1,New South Wales,150.987654,-34.021287 +2022,8,25,1,New South Wales,153.488066,-28.241573 +2020,5,10,1,New South Wales,150.872102,-34.040711 +2020,1,15,1,New South Wales,153.10379,-29.485562 +2024,1,9,1,New South Wales,152.8833,-31.44103 +2020,10,9,1,New South Wales,152.922074,-31.480891 +2022,12,11,1,New South Wales,152.916379,-31.439121 +2021,9,29,1,New South Wales,150.797684,-34.188363 +2021,6,16,1,New South Wales,150.604704,-34.427292 +2021,2,27,1,New South Wales,150.519093,-34.447446 +2022,11,25,1,New South Wales,152.106467,-32.73257 +2021,6,12,1,New South Wales,150.522401,-34.465859 +2020,9,12,1,New South Wales,152.160391,-32.711371 +2021,6,28,1,New South Wales,150.513767,-34.447239 +2021,10,16,1,New South Wales,152.938154,-31.200174 +2020,5,27,1,New South Wales,150.056169,-33.771309 +2023,8,2,1,New South Wales,153.120587,-30.298635 +2022,10,31,1,New South Wales,153.314983,-28.949201 +2021,4,27,1,New South Wales,150.622576,-34.400162 +2020,,,1,New South Wales,152.743428,-28.837264 +2022,4,30,1,New South Wales,153.110538,-29.490105 +2020,1,7,1,New South Wales,153.104262,-29.482204 +2021,4,20,1,New South Wales,150.632646,-34.392883 +2021,9,26,1,New South Wales,150.554112,-34.498603 +2022,4,5,1,New South Wales,153.402091,-28.258526 +2020,3,15,1,New South Wales,151.19597,-29.78653 +2021,5,13,1,New South Wales,150.633418,-34.417574 +2023,12,6,1,New South Wales,152.640543,-30.229746 +2021,3,6,1,New South Wales,153.151906,-28.570486 +2021,7,1,1,New South Wales,150.627093,-34.42121 +2023,9,9,1,New South Wales,151.242835,-33.127055 +2023,3,21,1,New South Wales,153.104444,-29.477502 +2022,3,23,1,New South Wales,152.405107,-31.920313 +2021,6,7,1,New South Wales,150.629781,-34.420803 +2023,2,5,1,New South Wales,153.31535,-28.819753 +2021,6,26,1,New South Wales,150.603222,-34.449846 +2023,11,16,1,New South Wales,152.870436,-31.462423 +2022,4,21,1,New South Wales,152.373971,-31.915653 +2021,6,10,1,New South Wales,153.109428,-29.490507 +2020,5,7,1,New South Wales,150.05172,-34.90812 +2020,4,20,1,New South Wales,152.879645,-31.519661 +2021,8,11,1,New South Wales,150.956718,-34.106856 +2022,11,10,1,New South Wales,152.068796,-32.748535 +2020,10,16,1,New South Wales,149.941399,-36.632151 +2021,5,10,1,New South Wales,150.521298,-34.466738 +2021,11,18,1,New South Wales,152.107655,-31.419488 +2020,12,14,1,New South Wales,152.878736,-29.662087 +2021,6,26,1,New South Wales,150.522092,-34.464176 +2021,4,19,1,New South Wales,150.616781,-34.430359 +2020,5,3,1,New South Wales,153.403951,-28.842379 +2020,9,15,1,New South Wales,153.002523,-29.182812 +2022,9,2,1,New South Wales,153.48781,-28.68266 +2023,10,22,1,New South Wales,152.811916,-29.803991 +2020,8,31,1,New South Wales,153.055997,-30.333952 +2021,5,14,1,New South Wales,150.659001,-33.526603 +2020,10,28,1,New South Wales,149.984095,-36.575978 +2021,4,5,1,New South Wales,150.528944,-34.458798 +2021,6,2,1,New South Wales,150.518735,-34.447763 +2023,9,26,1,New South Wales,151.008583,-34.045428 +2021,5,12,1,New South Wales,150.627867,-34.389942 +2020,6,25,1,New South Wales,153.127675,-28.835621 +2021,5,4,1,New South Wales,150.63274,-34.418868 +2023,2,22,1,New South Wales,153.317596,-28.844797 +2021,3,29,1,New South Wales,150.514969,-34.447804 +2021,9,4,1,New South Wales,153.293124,-28.864604 +2020,7,29,1,New South Wales,151.088534,-33.404535 +2023,9,14,1,New South Wales,151.84928,-32.612569 +2021,9,16,1,New South Wales,152.824717,-29.505522 +2021,5,7,1,New South Wales,150.616072,-34.435763 +2022,9,11,1,New South Wales,150.791382,-34.184731 +2020,11,1,1,New South Wales,149.976368,-36.555504 +2024,8,26,1,New South Wales,152.281838,-31.63346 +2020,12,25,1,New South Wales,151.696001,-32.697701 +2021,7,8,1,New South Wales,150.512928,-34.447267 +2021,5,25,1,New South Wales,153.467083,-28.237356 +2023,7,7,1,New South Wales,153.392503,-28.665765 +2020,10,28,1,New South Wales,149.984095,-36.575978 +2022,12,14,1,New South Wales,152.104709,-32.732497 +2023,9,26,1,New South Wales,150.726552,-34.319304 +2021,5,1,1,New South Wales,150.733297,-33.511111 +2021,2,25,1,New South Wales,150.610432,-34.420228 +2021,1,15,1,New South Wales,153.12104,-30.298281 +2021,4,21,1,New South Wales,150.637059,-34.42235 +2022,11,29,1,New South Wales,152.794854,-30.893434 +2021,3,26,1,New South Wales,150.605215,-34.439139 +2022,11,6,1,New South Wales,153.111704,-30.264717 +2021,3,20,1,New South Wales,150.520588,-34.453922 +2021,8,13,1,New South Wales,150.52722,-34.472592 +2023,5,3,1,New South Wales,152.896262,-31.437331 +2022,11,25,1,New South Wales,152.103528,-32.732791 +2020,1,4,1,New South Wales,152.867965,-29.667406 +2021,9,3,1,New South Wales,153.325439,-28.816394 +2021,3,5,1,New South Wales,150.63562,-34.486503 +2020,10,6,1,New South Wales,152.089896,-32.728381 +2021,4,22,1,New South Wales,150.609454,-34.419046 +2021,6,18,1,New South Wales,150.519145,-34.459681 +2021,6,16,1,New South Wales,150.622908,-34.383796 +2022,5,24,1,New South Wales,153.293266,-28.864588 +2023,9,12,1,New South Wales,153.110511,-29.490161 +2022,10,22,1,New South Wales,152.826246,-31.536677 +2022,11,3,1,New South Wales,153.40565,-29.027561 +2020,10,27,1,New South Wales,152.819337,-31.262756 +2021,5,4,1,New South Wales,150.638563,-34.490635 +2024,2,13,1,New South Wales,153.279661,-28.831073 +2020,5,7,1,New South Wales,152.018253,-32.299531 +2020,9,10,1,New South Wales,153.090904,-29.487668 +2021,5,10,1,New South Wales,150.520396,-34.435023 +2021,5,17,1,New South Wales,150.606705,-34.43686 +2021,1,13,1,New South Wales,153.605004,-28.690975 +2021,1,10,1,New South Wales,152.915623,-31.48619 +2021,4,6,1,New South Wales,150.663695,-34.458564 +2023,4,19,1,New South Wales,149.950099,-36.567944 +2023,8,24,1,New South Wales,153.103886,-29.489577 +2021,6,2,1,New South Wales,150.616517,-34.438125 +2023,8,24,1,New South Wales,153.389441,-29.016289 +2022,1,18,1,New South Wales,150.980224,-34.110735 +2021,2,22,1,New South Wales,150.885988,-34.017372 +2022,11,30,1,New South Wales,153.314983,-28.949201 +2021,8,8,1,New South Wales,150.630768,-34.387338 +2021,5,27,1,New South Wales,150.522124,-34.464925 +2020,11,3,1,New South Wales,149.998977,-36.551144 +2020,4,18,1,New South Wales,150.104419,-33.780935 +2020,4,16,1,New South Wales,153.103956,-29.485552 +2021,5,10,1,New South Wales,150.520417,-34.435059 +2024,1,28,1,New South Wales,150.998516,-34.011466 +2021,5,22,1,New South Wales,150.630839,-34.420706 +2021,4,30,1,New South Wales,150.624209,-34.388924 +2021,5,25,1,New South Wales,150.522326,-34.465091 +2021,10,22,1,New South Wales,152.896049,-31.432268 +2021,10,13,1,New South Wales,153.394348,-28.960255 +2020,5,28,1,New South Wales,149.361279,-36.040933 +2021,5,16,1,New South Wales,150.637355,-34.423807 +2023,1,18,1,New South Wales,153.352221,-28.883548 +2020,9,19,1,New South Wales,153.314524,-28.82599 +2021,5,28,1,New South Wales,150.521556,-34.465716 +2023,12,13,1,New South Wales,153.406134,-29.027939 +2021,11,11,1,New South Wales,153.103999,-29.485286 +2021,6,15,1,New South Wales,150.605053,-34.437558 +2021,6,14,1,New South Wales,150.629912,-34.420778 +2023,9,26,1,New South Wales,153.27933,-28.679386 +2021,6,12,1,New South Wales,150.630161,-34.420422 +2020,1,20,1,New South Wales,153.104203,-29.489685 +2020,12,23,1,New South Wales,152.415189,-31.933379 +2021,4,20,1,New South Wales,150.606647,-34.434687 +2020,11,3,1,New South Wales,153.017126,-30.374914 +2023,11,1,1,New South Wales,152.794032,-31.63871 +2021,5,14,1,New South Wales,150.516255,-34.449191 +2021,5,29,1,New South Wales,152.744978,-30.091962 +2023,10,22,1,New South Wales,152.897294,-31.415267 +2023,2,10,1,New South Wales,153.628991,-28.639579 +2021,4,19,1,New South Wales,150.525724,-34.466125 +2021,5,13,1,New South Wales,150.524446,-34.466297 +2021,10,20,1,New South Wales,151.794214,-32.589817 +2021,7,5,1,New South Wales,150.522404,-34.465751 +2020,5,7,1,New South Wales,150.04942,-34.9049 +2021,11,18,1,New South Wales,153.033864,-29.074833 +2021,7,24,1,New South Wales,150.62456,-34.386127 +2022,8,19,1,New South Wales,153.370721,-28.29826 +2021,10,31,1,New South Wales,150.809757,-34.101185 +2021,7,19,1,New South Wales,150.309858,-33.301671 +2022,11,24,1,New South Wales,152.919119,-31.443585 +2023,1,28,1,New South Wales,152.879037,-29.707279 +2021,11,9,1,New South Wales,150.666534,-33.572779 +2023,10,25,1,New South Wales,152.196338,-32.230264 +2020,10,25,1,New South Wales,153.558181,-28.373789 +2020,11,2,1,New South Wales,149.958519,-36.587122 +2022,6,24,1,New South Wales,153.10363,-30.32537 +2021,5,31,1,New South Wales,150.524418,-34.465035 +2022,1,17,1,New South Wales,151.989877,-32.729205 +2021,12,24,1,New South Wales,150.984288,-34.103453 +2020,10,6,1,New South Wales,153.019889,-30.428515 +2020,10,28,1,New South Wales,153.335182,-28.862228 +2020,1,8,1,New South Wales,153.108092,-29.490142 +2021,10,28,1,New South Wales,152.807594,-29.812061 +2021,6,5,1,New South Wales,150.523989,-34.466261 +2021,4,3,1,New South Wales,152.216162,-30.083636 +2023,4,30,1,New South Wales,150.807693,-34.097435 +2020,11,3,1,New South Wales,149.96897,-36.58553 +2020,10,30,1,New South Wales,149.96897,-36.58553 +2020,7,3,1,New South Wales,153.103878,-29.485424 +2023,8,2,1,New South Wales,150.785537,-33.712214 +2021,10,15,1,New South Wales,152.921954,-31.457529 +2022,12,19,1,New South Wales,152.91109,-31.441551 +2020,12,15,1,New South Wales,153.278038,-28.937203 +2021,5,17,1,New South Wales,150.63274,-34.418886 +2020,10,19,1,New South Wales,149.927266,-36.638926 +2023,11,4,1,New South Wales,150.289168,-34.528125 +2023,9,25,1,New South Wales,152.896755,-31.440177 +2021,4,10,1,New South Wales,150.609264,-34.420746 +2022,6,24,1,New South Wales,153.400746,-28.260135 +2023,10,16,1,New South Wales,153.085277,-30.321822 +2023,7,6,1,New South Wales,152.904459,-30.52251 +2022,7,30,1,New South Wales,153.313931,-28.814468 +2022,10,23,1,New South Wales,152.065095,-32.706601 +2021,9,4,1,New South Wales,153.272477,-28.821061 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2021,9,14,1,New South Wales,153.069135,-30.879092 +2020,10,29,1,New South Wales,149.967242,-36.561675 +2023,8,10,1,New South Wales,153.327831,-28.726205 +2021,5,29,1,New South Wales,150.642881,-34.394776 +2021,5,22,1,New South Wales,150.515369,-34.444963 +2022,9,8,1,New South Wales,152.903497,-31.441098 +2023,12,7,1,New South Wales,152.066519,-32.70769 +2020,9,30,1,New South Wales,152.722319,-31.346927 +2023,2,24,1,New South Wales,153.087946,-30.355053 +2022,7,11,1,New South Wales,152.79327,-31.642661 +2024,2,5,1,New South Wales,152.786017,-31.631545 +2021,6,5,1,New South Wales,150.519489,-34.456505 +2021,9,28,1,New South Wales,152.415606,-31.933492 +2021,5,1,1,New South Wales,150.634977,-34.418613 +2020,7,5,1,New South Wales,151.706193,-32.691092 +2020,11,24,1,New South Wales,153.103672,-29.485473 +2024,3,26,1,New South Wales,152.893814,-31.431842 +2022,7,18,1,New South Wales,152.853644,-31.553745 +2021,10,11,1,New South Wales,150.842335,-34.068546 +2022,12,3,1,New South Wales,152.079108,-32.727319 +2021,3,30,1,New South Wales,150.608081,-34.422562 +2023,8,4,1,New South Wales,152.191234,-31.580685 +2021,4,18,1,New South Wales,150.640245,-34.415821 +2021,11,10,1,New South Wales,152.98112,-30.437417 +2022,10,31,1,New South Wales,153.314983,-28.949201 +2021,4,9,1,New South Wales,152.904957,-31.43963 +2021,5,18,1,New South Wales,153.394104,-28.958945 +2021,5,31,1,New South Wales,153.314983,-28.949201 +2020,10,6,1,New South Wales,152.848879,-29.339319 +2020,12,4,1,New South Wales,152.900965,-31.442585 +2022,6,28,1,New South Wales,152.877346,-31.490236 +2021,6,1,1,New South Wales,150.518772,-34.447647 +2021,2,23,1,New South Wales,150.613673,-34.434049 +2021,10,3,1,New South Wales,149.54979,-33.496074 +2024,2,20,1,New South Wales,152.063604,-32.706239 +2024,3,30,1,New South Wales,150.989642,-34.022255 +2020,9,21,1,New South Wales,153.524599,-28.681838 +2021,5,4,1,New South Wales,150.607287,-34.457643 +2021,4,18,1,New South Wales,150.627376,-34.38656 +2021,7,25,1,New South Wales,152.920787,-31.449737 +2021,8,21,1,New South Wales,150.641941,-34.396885 +2022,10,24,1,New South Wales,152.065095,-32.706601 +2021,4,14,1,New South Wales,151.739759,-30.477605 +2020,10,31,1,New South Wales,149.967242,-36.561675 +2021,9,1,1,New South Wales,150.643306,-34.395523 +2023,7,30,1,New South Wales,150.78402,-33.711263 +2024,2,22,1,New South Wales,151.481003,-33.047215 +2022,3,12,1,New South Wales,150.9803,-34.08429 +2020,6,15,1,New South Wales,153.509709,-28.603818 +2023,11,15,1,New South Wales,152.937582,-30.231856 +2023,7,29,1,New South Wales,150.785038,-33.707986 +2021,5,8,1,New South Wales,150.639145,-34.491638 +2020,5,3,1,New South Wales,153.094752,-30.338571 +2022,12,30,1,New South Wales,153.279515,-28.678443 +2021,5,27,1,New South Wales,150.521609,-34.465771 +2024,5,15,1,New South Wales,152.397651,-31.930394 +2023,9,22,1,New South Wales,153.400099,-28.96082 +2020,10,29,1,New South Wales,149.967242,-36.561675 +2021,4,27,1,New South Wales,150.635848,-34.419379 +2020,1,21,1,New South Wales,153.103967,-29.485576 +2022,12,12,1,New South Wales,152.921164,-31.465214 +2021,5,4,1,New South Wales,150.659267,-34.457343 +2021,7,6,1,New South Wales,150.603608,-34.419184 +2021,9,25,1,New South Wales,153.069656,-30.274954 +2021,5,27,1,New South Wales,150.599072,-34.426036 +2021,5,11,1,New South Wales,150.639723,-34.491965 +2020,9,13,1,New South Wales,153.490788,-28.244494 +2022,12,18,1,New South Wales,151.626846,-30.415917 +2023,7,15,1,New South Wales,153.31535,-28.819753 +2021,10,31,1,New South Wales,153.093447,-29.488751 +2020,10,26,1,New South Wales,149.976368,-36.555504 +2022,4,11,1,New South Wales,153.402592,-28.257873 +2020,11,23,1,New South Wales,153.316234,-28.84526 +2020,10,24,1,New South Wales,149.976368,-36.555504 +2021,1,25,1,New South Wales,153.108237,-29.490231 +2021,5,10,1,New South Wales,150.63271,-34.418002 +2021,5,20,1,New South Wales,150.629988,-34.395329 +2021,7,19,1,New South Wales,150.627963,-34.420452 +2021,5,31,1,New South Wales,150.522843,-34.452381 +2022,10,13,1,New South Wales,152.922295,-31.456648 +2021,5,19,1,New South Wales,150.630397,-34.395111 +2021,3,13,1,New South Wales,150.517275,-34.451529 +2021,4,22,1,New South Wales,150.60497,-34.423294 +2021,8,7,1,New South Wales,150.523179,-34.463486 +2021,6,16,1,New South Wales,150.515285,-34.46026 +2020,10,1,1,New South Wales,153.395386,-29.028882 +2021,5,3,1,New South Wales,150.632717,-34.418912 +2021,7,6,1,New South Wales,150.51437,-34.445998 +2023,12,13,1,New South Wales,153.091157,-29.487425 +2024,1,10,1,New South Wales,152.899255,-31.443559 +2022,10,31,1,New South Wales,153.314983,-28.949201 +2022,1,22,1,New South Wales,151.774796,-32.446115 +2021,5,19,1,New South Wales,150.641072,-34.494732 +2020,12,31,1,New South Wales,153.314983,-28.949201 +2020,11,17,1,New South Wales,153.091741,-29.48791 +2021,6,10,1,New South Wales,153.104079,-29.479813 +2021,6,7,1,New South Wales,150.51888,-34.447289 +2020,11,24,1,New South Wales,153.336879,-28.836044 +2020,5,13,1,New South Wales,150.685193,-34.352835 +2020,3,31,1,New South Wales,153.314983,-28.949201 +2021,8,13,1,New South Wales,152.436372,-31.818443 +2020,2,24,1,New South Wales,153.103817,-29.485557 +2021,10,20,1,New South Wales,153.454566,-28.644521 +2022,7,31,1,New South Wales,153.314983,-28.949201 +2021,8,7,1,New South Wales,150.523148,-34.463783 +2022,6,3,1,New South Wales,153.402945,-28.260556 +2023,10,26,1,New South Wales,152.919654,-31.469155 +2021,4,24,1,New South Wales,150.630555,-34.388741 +2021,7,5,1,New South Wales,150.513119,-34.445981 +2022,11,15,1,New South Wales,149.559996,-32.628889 +2020,7,2,1,New South Wales,153.276579,-28.814585 +2021,4,26,1,New South Wales,150.624576,-34.400561 +2022,4,17,1,New South Wales,153.399379,-28.260407 +2020,10,7,1,New South Wales,152.777417,-31.57459 +2023,9,5,1,New South Wales,150.790322,-34.158907 +2022,12,6,1,New South Wales,150.831738,-34.072422 +2021,7,27,1,New South Wales,150.594238,-34.42348 +2023,6,5,1,New South Wales,150.783506,-33.717885 +2020,12,10,1,New South Wales,153.61512,-28.660528 +2020,11,2,1,New South Wales,149.96897,-36.58553 +2021,6,3,1,New South Wales,150.535553,-34.462411 +2021,7,9,1,New South Wales,150.627501,-34.421408 +2023,10,17,1,New South Wales,151.642129,-32.657717 +2022,8,11,1,New South Wales,153.299268,-28.818114 +2020,10,20,1,New South Wales,153.296004,-28.818579 +2021,6,28,1,New South Wales,150.513106,-34.447144 +2021,7,3,1,New South Wales,150.523298,-34.466076 +2023,9,28,1,New South Wales,149.240647,-36.019081 +2021,5,30,1,New South Wales,150.516055,-34.448232 +2021,5,6,1,New South Wales,150.522555,-34.459173 +2023,6,18,1,New South Wales,151.844763,-32.7096 +2020,9,30,1,New South Wales,152.041196,-32.737733 +2020,11,22,1,New South Wales,152.926358,-31.454517 +2021,5,6,1,New South Wales,150.615794,-34.435974 +2022,9,19,1,New South Wales,153.104466,-29.477525 +2020,8,4,1,New South Wales,152.084414,-32.727892 +2021,4,23,1,New South Wales,150.630033,-34.388334 +2021,3,22,1,New South Wales,150.659427,-34.458248 +2020,8,19,1,New South Wales,153.071526,-30.885737 +2021,4,16,1,New South Wales,150.608261,-34.434962 +2020,2,7,1,New South Wales,153.354921,-28.974028 +2020,11,3,1,New South Wales,149.958519,-36.587122 +2023,10,24,1,New South Wales,152.996398,-30.411253 +2023,5,29,1,New South Wales,152.921722,-31.481081 +2021,6,7,1,New South Wales,150.608547,-34.434093 +2021,6,9,1,New South Wales,150.610429,-34.430271 +2021,5,18,1,New South Wales,150.633787,-34.418392 +2020,11,23,1,New South Wales,153.60195,-28.829111 +2024,2,13,1,New South Wales,152.788977,-31.637029 +2022,1,24,1,New South Wales,152.064469,-32.708766 +2021,7,31,1,New South Wales,153.314983,-28.949201 +2020,7,2,1,New South Wales,151.6662,-30.501562 +2023,6,18,1,New South Wales,153.31535,-28.819753 +2024,2,26,1,New South Wales,153.107985,-29.490283 +2020,11,9,1,New South Wales,153.110291,-29.49025 +2021,7,8,1,New South Wales,150.278971,-33.281893 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2021,6,16,1,New South Wales,150.520687,-34.465689 +2020,9,3,1,New South Wales,153.005938,-29.185113 +2023,3,11,1,New South Wales,152.864942,-31.384504 +2023,4,7,1,New South Wales,151.056661,-29.739273 +2021,1,4,1,New South Wales,153.337677,-28.818946 +2024,1,8,1,New South Wales,152.893861,-31.431853 +2020,5,21,1,New South Wales,151.740463,-32.560405 +2023,7,26,1,New South Wales,153.108087,-29.490609 +2020,12,19,1,New South Wales,153.560285,-28.389285 +2022,12,26,1,New South Wales,152.966522,-28.625029 +2020,6,17,1,New South Wales,150.102191,-33.777547 +2021,9,18,1,New South Wales,152.923384,-31.441071 +2022,9,20,1,New South Wales,152.915479,-31.445972 +2023,11,20,1,New South Wales,150.989365,-34.027733 +2023,11,18,1,New South Wales,150.986715,-34.044729 +2021,11,16,1,New South Wales,153.101676,-29.489764 +2022,7,6,1,New South Wales,153.293229,-28.864629 +2022,10,25,1,New South Wales,152.916003,-31.446036 +2022,1,9,1,New South Wales,152.926234,-31.452645 +2023,4,18,1,New South Wales,153.176173,-28.85243 +2021,4,29,1,New South Wales,150.636258,-34.42183 +2021,7,25,1,New South Wales,150.630656,-34.420612 +2024,2,7,1,New South Wales,152.819594,-31.245942 +2024,7,18,1,New South Wales,152.925635,-31.470263 +2022,10,25,1,New South Wales,153.421509,-28.982564 +2022,2,21,1,New South Wales,152.418213,-31.905008 +2020,9,11,1,New South Wales,152.881447,-31.441744 +2021,1,24,1,New South Wales,153.017126,-30.374914 +2020,8,12,1,New South Wales,153.091602,-29.488093 +2021,5,3,1,New South Wales,150.615157,-34.435412 +2020,2,4,1,New South Wales,152.918309,-31.446308 +2024,1,17,1,New South Wales,151.058167,-29.737514 +2021,4,21,1,New South Wales,150.638972,-34.418925 +2021,5,23,1,New South Wales,150.639096,-34.492981 +2021,5,23,1,New South Wales,150.597644,-34.428397 +2021,7,3,1,New South Wales,150.628065,-34.391018 +2021,5,1,1,New South Wales,150.604809,-34.427033 +2021,6,29,1,New South Wales,150.513106,-34.447144 +2021,5,26,1,New South Wales,150.526653,-34.469326 +2023,6,7,1,New South Wales,150.881531,-34.067524 +2021,4,25,1,New South Wales,150.635287,-34.420377 +2022,9,6,1,New South Wales,153.103988,-29.489657 +2023,11,26,1,New South Wales,153.10932,-29.490656 +2020,11,17,1,New South Wales,153.371368,-28.799393 +2023,5,15,1,New South Wales,153.301454,-28.824921 +2020,11,17,1,New South Wales,153.123642,-30.295589 +2021,5,2,1,New South Wales,150.624133,-34.388922 +2023,1,7,1,New South Wales,150.001792,-32.660788 +2020,1,27,1,New South Wales,153.104149,-29.485277 +2022,12,30,1,New South Wales,146.446568,-34.716479 +2021,11,5,1,New South Wales,151.694667,-32.697502 +2021,5,26,1,New South Wales,150.527054,-34.469749 +2021,5,6,1,New South Wales,150.522968,-34.452222 +2021,6,26,1,New South Wales,150.597656,-34.418472 +2020,3,5,1,New South Wales,153.51719,-28.691492 +2021,5,25,1,New South Wales,150.631207,-34.419983 +2024,6,28,1,New South Wales,152.927017,-31.457248 +2024,6,7,1,New South Wales,152.953593,-30.426799 +2020,5,15,1,New South Wales,149.309119,-36.108532 +2021,5,18,1,New South Wales,150.630552,-34.394997 +2021,7,7,1,New South Wales,150.514364,-34.446566 +2021,10,28,1,New South Wales,152.916421,-31.450866 +2021,4,30,1,New South Wales,150.609044,-34.434959 +2023,8,16,1,New South Wales,150.785944,-33.712845 +2020,10,19,1,New South Wales,149.931009,-36.595007 +2021,3,27,1,New South Wales,150.51724,-34.451582 +2021,4,21,1,New South Wales,150.614439,-34.428925 +2022,8,19,1,New South Wales,150.790633,-34.185835 +2021,6,4,1,New South Wales,150.605607,-34.449776 +2023,9,1,1,New South Wales,149.384515,-36.169502 +2023,3,21,1,New South Wales,152.064528,-32.709669 +2021,7,24,1,New South Wales,150.522404,-34.465751 +2021,4,28,1,New South Wales,150.606616,-34.435029 +2021,5,7,1,New South Wales,150.627384,-34.390113 +2023,5,12,1,New South Wales,153.307678,-28.823714 +2023,8,10,1,New South Wales,152.889542,-30.467965 +2022,2,5,1,New South Wales,153.103232,-29.486734 +2021,3,9,1,New South Wales,150.604275,-34.438886 +2021,6,15,1,New South Wales,150.893093,-34.07132 +2021,2,9,1,New South Wales,152.820659,-30.173815 +2021,6,15,1,New South Wales,150.51599,-34.446761 +2020,11,23,1,New South Wales,153.582378,-28.788736 +2023,6,7,1,New South Wales,153.31535,-28.819753 +2022,3,7,1,New South Wales,153.110206,-29.490273 +2021,7,6,1,New South Wales,150.631792,-34.388431 +2021,9,20,1,New South Wales,150.652116,-34.399407 +2021,6,1,1,New South Wales,150.518804,-34.447666 +2022,4,29,1,New South Wales,152.911113,-31.429994 +2021,7,20,1,New South Wales,152.928454,-29.70213 +2022,5,5,1,New South Wales,153.085359,-30.346169 +2023,4,21,1,New South Wales,152.889054,-31.44288 +2024,8,27,1,New South Wales,152.066861,-31.843749 +2022,2,10,1,New South Wales,152.911995,-31.470533 +2021,10,3,1,New South Wales,152.061389,-32.709635 +2020,9,29,1,New South Wales,152.247202,-30.053999 +2021,4,5,1,New South Wales,150.528944,-34.458798 +2020,9,22,1,New South Wales,153.303494,-28.649639 +2020,11,4,1,New South Wales,153.353705,-28.755891 +2021,6,25,1,New South Wales,150.592018,-33.458501 +2021,4,22,1,New South Wales,150.604207,-34.422233 +2023,2,19,1,New South Wales,152.830617,-29.640911 +2022,4,11,1,New South Wales,150.807228,-34.068105 +2021,4,25,1,New South Wales,150.635331,-34.420351 +2022,7,26,1,New South Wales,152.817172,-31.134302 +2020,1,1,1,New South Wales,149.337971,-31.578847 +2023,5,31,1,New South Wales,153.020236,-28.430318 +2023,1,18,1,New South Wales,153.061476,-30.271872 +2021,12,19,1,New South Wales,152.922003,-31.452398 +2021,4,17,1,New South Wales,150.616603,-34.430094 +2020,10,15,1,New South Wales,150.210172,-33.379674 +2021,6,21,1,New South Wales,150.603329,-34.438859 +2021,12,1,1,New South Wales,150.095687,-31.079438 +2020,5,10,1,New South Wales,150.028587,-35.085334 +2021,7,16,1,New South Wales,150.624968,-34.385928 +2021,6,10,1,New South Wales,150.630222,-34.420965 +2021,6,23,1,New South Wales,153.103736,-29.485562 +2023,8,7,1,New South Wales,153.296899,-28.820794 +2023,12,15,1,New South Wales,152.088396,-32.737588 +2023,9,27,1,New South Wales,150.670854,-34.246887 +2020,7,21,1,New South Wales,153.303255,-28.825066 +2022,9,7,1,New South Wales,153.108135,-29.490619 +2021,6,25,1,New South Wales,150.514394,-34.444799 +2020,1,1,1,New South Wales,153.534773,-28.334234 +2022,2,15,1,New South Wales,152.966363,-31.253756 +2021,9,1,1,New South Wales,153.400553,-28.257425 +2020,1,3,1,New South Wales,151.958311,-32.76229 +2021,4,2,1,New South Wales,150.616733,-34.434721 +2021,6,20,1,New South Wales,150.639163,-34.392775 +2020,11,9,1,New South Wales,150.845011,-29.834546 +2022,11,19,1,New South Wales,151.541578,-32.931347 +2021,3,5,1,New South Wales,152.825905,-31.249312 +2021,7,28,1,New South Wales,150.625459,-34.385874 +2023,10,24,1,New South Wales,150.984889,-34.096828 +2020,6,23,1,New South Wales,153.091156,-29.487938 +2022,4,30,1,New South Wales,153.233289,-28.829497 +2020,11,30,1,New South Wales,153.343646,-28.866891 +2021,9,14,1,New South Wales,153.288292,-28.809314 +2021,3,4,1,New South Wales,153.554509,-28.583824 +2023,2,7,1,New South Wales,151.539714,-29.367536 +2023,8,31,1,New South Wales,153.314983,-28.949201 +2020,2,28,1,New South Wales,152.908564,-31.455029 +2020,11,7,1,New South Wales,153.293121,-28.824165 +2020,12,31,1,New South Wales,153.314983,-28.949201 +2023,8,14,1,New South Wales,153.109857,-29.490217 +2020,10,7,1,New South Wales,153.109392,-30.298612 +2020,8,12,1,New South Wales,153.109392,-30.298612 +2021,3,31,1,New South Wales,153.314983,-28.949201 +2021,6,2,1,New South Wales,150.520083,-34.454805 +2021,12,1,1,New South Wales,153.101569,-29.489848 +2021,5,12,1,New South Wales,153.10321,-29.48671 +2022,12,18,1,New South Wales,151.630025,-30.424567 +2021,6,15,1,New South Wales,150.605083,-34.437649 +2021,9,11,1,New South Wales,151.811161,-32.349456 +2021,8,10,1,New South Wales,152.775279,-30.197461 +2021,2,28,1,New South Wales,150.517578,-34.447163 +2020,1,13,1,New South Wales,153.55439,-28.385238 +2020,4,3,1,New South Wales,150.056907,-33.775591 +2020,10,12,1,New South Wales,152.00028,-32.632576 +2021,7,15,1,New South Wales,150.625143,-34.386688 +2021,6,20,1,New South Wales,150.639435,-34.392789 +2021,6,15,1,New South Wales,150.630232,-34.420992 +2021,6,14,1,New South Wales,150.625304,-34.384428 +2021,4,30,1,New South Wales,150.521532,-34.466896 +2021,4,26,1,New South Wales,150.614253,-34.429714 +2021,5,28,1,New South Wales,150.603285,-34.436974 +2021,6,2,1,New South Wales,150.629806,-34.421056 +2023,4,4,1,New South Wales,149.951303,-36.599554 +2021,5,30,1,New South Wales,150.604945,-34.437908 +2021,5,19,1,New South Wales,150.519879,-34.452871 +2021,4,23,1,New South Wales,150.006515,-36.579991 +2024,8,20,1,New South Wales,152.088131,-32.176412 +2021,5,31,1,New South Wales,150.524428,-34.465053 +2024,6,2,1,New South Wales,152.979442,-28.620871 +2022,3,13,1,New South Wales,152.103489,-32.726404 +2023,9,22,1,New South Wales,153.489096,-28.695632 +2021,2,1,1,New South Wales,153.277455,-28.93797 +2024,1,19,1,New South Wales,152.801768,-31.139712 +2021,4,26,1,New South Wales,150.637364,-34.487989 +2020,11,,1,New South Wales,152.819577,-31.542417 +2021,6,1,1,New South Wales,150.520718,-34.454691 +2020,9,21,1,New South Wales,153.338118,-28.821377 +2021,7,15,1,New South Wales,150.596715,-34.409916 +2024,9,2,1,New South Wales,152.543061,-32.059776 +2021,4,6,1,New South Wales,150.516831,-34.454008 +2022,3,5,1,New South Wales,150.985075,-34.096352 +2023,9,20,1,New South Wales,153.277364,-28.939532 +2021,9,18,1,New South Wales,152.069601,-32.748165 +2024,6,4,1,New South Wales,151.103377,-29.761888 +2021,8,7,1,New South Wales,150.63001,-34.388378 +2021,8,22,1,New South Wales,150.520218,-34.465698 +2023,9,2,1,New South Wales,151.961667,-32.655674 +2021,3,7,1,New South Wales,150.808237,-34.098102 +2021,6,1,1,New South Wales,150.630432,-34.420851 +2021,1,3,1,New South Wales,152.912063,-31.474984 +2021,2,15,1,New South Wales,153.387185,-28.657932 +2022,12,9,1,New South Wales,152.894669,-31.434572 +2023,10,8,1,New South Wales,150.786186,-33.706065 +2020,12,11,1,New South Wales,149.954748,-36.297726 +2020,8,5,1,New South Wales,152.721029,-29.542712 +2021,5,8,1,New South Wales,150.632582,-34.418297 +2020,10,,1,New South Wales,150.357369,-34.348037 +2021,4,28,1,New South Wales,150.519101,-34.467036 +2021,5,15,1,New South Wales,150.628768,-34.389247 +2021,3,6,1,New South Wales,150.603313,-34.43637 +2020,9,13,1,New South Wales,152.067952,-32.723551 +2023,6,15,1,New South Wales,153.31535,-28.819753 +2022,12,20,1,New South Wales,150.624377,-34.188884 +2021,4,16,1,New South Wales,153.084263,-30.343686 +2021,5,26,1,New South Wales,150.639004,-34.491626 +2021,6,7,1,New South Wales,150.607677,-34.430244 +2023,11,20,1,New South Wales,150.784881,-33.714346 +2021,10,29,1,New South Wales,150.841272,-34.063928 +2021,5,10,1,New South Wales,150.639114,-34.491962 +2021,5,6,1,New South Wales,150.519961,-34.435753 +2021,10,18,1,New South Wales,152.812369,-29.798458 +2021,7,13,1,New South Wales,153.561956,-28.383121 +2021,10,7,1,New South Wales,153.110254,-29.488415 +2023,11,22,1,New South Wales,153.110147,-29.490269 +2020,10,17,1,New South Wales,151.725053,-32.604163 +2020,11,20,1,New South Wales,149.989088,-36.503585 +2021,6,28,1,New South Wales,150.513798,-34.447293 +2023,9,8,1,New South Wales,153.076265,-28.553447 +2021,5,24,1,New South Wales,150.527498,-34.469469 +2021,8,3,1,New South Wales,150.517961,-34.437885 +2021,10,30,1,New South Wales,153.101671,-29.489377 +2023,6,23,1,New South Wales,152.861404,-31.281716 +2023,9,24,1,New South Wales,153.495002,-28.692216 +2021,5,11,1,New South Wales,150.616414,-34.434472 +2022,6,1,1,New South Wales,152.383656,-32.101206 +2020,11,18,1,New South Wales,153.361038,-28.941392 +2023,4,12,1,New South Wales,153.302728,-28.848151 +2022,12,27,1,New South Wales,152.421401,-31.946553 +2022,11,28,1,New South Wales,152.072388,-32.710493 +2020,4,24,1,New South Wales,153.479693,-28.640224 +2020,10,23,1,New South Wales,149.977333,-36.564828 +2021,7,9,1,New South Wales,153.367578,-28.614394 +2021,5,28,1,New South Wales,150.630688,-34.420649 +2021,6,20,1,New South Wales,150.602374,-34.424704 +2021,6,15,1,New South Wales,150.615656,-34.432401 +2020,11,15,1,New South Wales,153.538195,-28.572182 +2021,3,19,1,New South Wales,150.516953,-34.446204 +2021,7,22,1,New South Wales,150.516445,-34.448663 +2021,8,16,1,New South Wales,150.522997,-34.463744 +2021,3,23,1,New South Wales,150.610051,-34.430182 +2021,6,4,1,New South Wales,150.604159,-34.426578 +2021,4,1,1,New South Wales,150.609889,-34.429755 +2021,4,5,1,New South Wales,150.520618,-34.450714 +2020,5,4,1,New South Wales,150.06795,-34.90815 +2021,8,28,1,New South Wales,150.516467,-34.438729 +2023,8,9,1,New South Wales,153.110517,-29.490007 +2022,9,14,1,New South Wales,150.789152,-34.197582 +2021,6,26,1,New South Wales,150.645184,-34.390998 +2021,5,14,1,New South Wales,150.516292,-34.449066 +2020,10,27,1,New South Wales,153.367603,-28.818638 +2023,10,25,1,New South Wales,152.929092,-31.459656 +2021,5,19,1,New South Wales,150.641178,-34.494815 +2020,12,8,1,New South Wales,149.972032,-36.288695 +2021,5,17,1,New South Wales,150.523844,-34.463806 +2023,5,31,1,New South Wales,153.314983,-28.949201 +2020,6,29,1,New South Wales,152.795484,-30.218024 +2021,5,18,1,New South Wales,152.920725,-31.448905 +2020,7,31,1,New South Wales,153.314983,-28.949201 +2021,8,8,1,New South Wales,150.632603,-34.418324 +2023,8,31,1,New South Wales,153.314983,-28.949201 +2021,7,17,1,New South Wales,153.556904,-28.400365 +2021,5,6,1,New South Wales,150.603556,-34.427486 +2021,4,2,1,New South Wales,150.531972,-34.460211 +2022,11,10,1,New South Wales,153.288541,-28.692644 +2021,6,6,1,New South Wales,150.609165,-34.434555 +2020,9,24,1,New South Wales,152.905321,-31.442867 +2022,2,8,1,New South Wales,153.277461,-28.67595 +2022,9,22,1,New South Wales,153.10917,-29.49183 +2021,5,24,1,New South Wales,150.639284,-34.392741 +2022,9,20,1,New South Wales,153.30288,-28.820261 +2021,4,28,1,New South Wales,150.604127,-34.434926 +2021,7,6,1,New South Wales,150.627321,-34.421224 +2022,3,28,1,New South Wales,150.807228,-34.068105 +2021,5,26,1,New South Wales,150.595807,-34.425693 +2022,8,8,1,New South Wales,150.529944,-34.430389 +2023,10,8,1,New South Wales,152.792197,-31.640496 +2021,7,3,1,New South Wales,152.925723,-31.447944 +2021,4,27,1,New South Wales,150.615468,-34.435598 +2022,10,4,1,New South Wales,152.958021,-31.217454 +2020,1,3,1,New South Wales,152.885273,-28.981516 +2023,11,3,1,New South Wales,152.190362,-32.237057 +2020,11,25,1,New South Wales,153.279241,-28.839565 +2021,8,11,1,New South Wales,152.07769,-32.722008 +2021,8,18,1,New South Wales,152.413455,-31.944127 +2023,7,11,1,New South Wales,149.873203,-36.92043 +2022,10,31,1,New South Wales,149.256859,-36.296979 +2022,11,2,1,New South Wales,150.870732,-34.038268 +2021,6,25,1,New South Wales,150.520432,-34.465846 +2020,10,6,1,New South Wales,152.079448,-32.738495 +2022,4,24,1,New South Wales,152.382372,-31.929248 +2023,9,30,1,New South Wales,153.302906,-28.843546 +2023,4,4,1,New South Wales,150.974091,-33.961565 +2024,1,30,1,New South Wales,153.109433,-29.490465 +2021,6,22,1,New South Wales,150.625792,-34.386403 +2023,5,17,1,New South Wales,153.096521,-29.485697 +2021,5,9,1,New South Wales,150.616543,-34.436061 +2021,6,13,1,New South Wales,150.625324,-34.384492 +2021,5,7,1,New South Wales,150.637344,-34.423807 +2020,7,3,1,New South Wales,150.89337,-33.971509 +2021,5,21,1,New South Wales,150.639176,-34.493244 +2023,11,10,1,New South Wales,150.785683,-33.709295 +2020,10,29,1,New South Wales,149.96897,-36.58553 +2022,11,16,1,New South Wales,153.577621,-28.868258 +2023,11,29,1,New South Wales,150.990319,-34.089316 +2020,8,3,1,New South Wales,152.793613,-31.127013 +2024,4,25,1,New South Wales,152.349322,-31.685488 +2023,7,14,1,New South Wales,152.923452,-31.460803 +2021,8,23,1,New South Wales,150.520048,-34.446438 +2021,5,10,1,New South Wales,150.518388,-34.451786 +2023,7,26,1,New South Wales,152.785634,-31.631922 +2020,2,4,1,New South Wales,152.895212,-31.437077 +2021,4,21,1,New South Wales,150.607591,-34.433254 +2021,5,28,1,New South Wales,150.617687,-34.438689 +2021,5,30,1,New South Wales,150.604946,-34.43789 +2021,8,29,1,New South Wales,150.513906,-34.447314 +2021,5,27,1,New South Wales,150.638883,-34.491651 +2024,6,30,1,New South Wales,150.672045,-33.56482 +2020,6,5,1,New South Wales,152.905944,-31.479611 +2022,2,8,1,New South Wales,153.255014,-28.665633 +2021,6,8,1,New South Wales,150.629763,-34.420649 +2021,8,5,1,New South Wales,153.564642,-28.327767 +2020,4,10,1,New South Wales,153.487886,-28.682671 +2020,10,22,1,New South Wales,152.783319,-30.193052 +2023,10,2,1,New South Wales,151.007764,-34.046026 +2021,5,31,1,New South Wales,153.314983,-28.949201 +2021,10,23,1,New South Wales,150.200379,-29.354295 +2021,5,22,1,New South Wales,150.607304,-34.432644 +2021,7,19,1,New South Wales,150.644918,-34.391551 +2021,5,4,1,New South Wales,150.622905,-34.397346 +2022,11,12,1,New South Wales,152.105332,-32.72777 +2022,9,4,1,New South Wales,146.522268,-34.743479 +2021,3,17,1,New South Wales,150.607576,-34.421975 +2023,11,11,1,New South Wales,152.928993,-31.45961 +2021,7,20,1,New South Wales,150.623386,-34.383418 +2021,5,10,1,New South Wales,150.624926,-34.399747 +2022,10,5,1,New South Wales,153.45941,-28.952499 +2021,3,8,1,New South Wales,150.614849,-34.456195 +2023,7,26,1,New South Wales,152.786681,-31.62973 +2021,6,16,1,New South Wales,150.522538,-34.451672 +2022,1,17,1,New South Wales,153.101322,-29.489974 +2020,8,16,1,New South Wales,152.926156,-31.459137 +2021,5,11,1,New South Wales,150.521306,-34.466098 +2021,7,28,1,New South Wales,150.518189,-34.437529 +2021,10,2,1,New South Wales,153.330136,-28.818573 +2022,8,25,1,New South Wales,151.640641,-30.330868 +2021,1,28,1,New South Wales,153.323817,-28.828069 +2020,11,15,1,New South Wales,153.088099,-29.485071 +2023,12,27,1,New South Wales,150.785909,-33.70395 +2021,10,10,1,New South Wales,152.064437,-32.707572 +2024,1,13,1,New South Wales,150.945342,-29.770486 +2020,1,15,1,New South Wales,153.092321,-29.488125 +2021,7,18,1,New South Wales,150.627992,-34.420966 +2023,4,6,1,New South Wales,152.918867,-31.466294 +2023,12,7,1,New South Wales,152.926003,-31.452395 +2020,11,,1,New South Wales,150.556893,-34.363394 +2021,3,12,1,New South Wales,152.896627,-29.632874 +2020,1,17,1,New South Wales,152.67874,-30.214467 +2021,5,11,1,New South Wales,150.604983,-34.427054 +2021,7,27,1,New South Wales,150.934362,-33.964095 +2021,8,13,1,New South Wales,150.644964,-34.400009 +2024,1,6,1,New South Wales,150.785208,-33.71692 +2023,5,17,1,New South Wales,153.248515,-28.600723 +2023,2,2,1,New South Wales,153.077179,-29.446779 +2021,8,28,1,New South Wales,153.103988,-29.484338 +2020,11,21,1,New South Wales,153.094043,-29.488732 +2024,5,15,1,New South Wales,152.047043,-32.650658 +2023,7,9,1,New South Wales,153.109964,-29.490217 +2021,3,3,1,New South Wales,150.514221,-34.451728 +2021,8,6,1,New South Wales,150.644243,-34.398165 +2021,5,6,1,New South Wales,150.605001,-34.437864 +2023,11,19,1,New South Wales,152.107959,-32.762954 +2021,4,20,1,New South Wales,150.627223,-34.385791 +2021,9,25,1,New South Wales,153.616323,-28.65996 +2022,10,26,1,New South Wales,152.839142,-31.447957 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2021,3,3,1,New South Wales,150.517943,-34.446584 +2021,3,2,1,New South Wales,150.520234,-34.446775 +2021,8,7,1,New South Wales,150.623874,-33.569558 +2023,8,31,1,New South Wales,153.314983,-28.949201 +2022,9,30,1,New South Wales,153.314983,-28.949201 +2021,3,7,1,New South Wales,150.518893,-34.447965 +2023,3,21,1,New South Wales,149.923567,-36.592569 +2021,7,7,1,New South Wales,150.513874,-34.447295 +2021,3,5,1,New South Wales,150.608341,-34.432132 +2021,3,12,1,New South Wales,150.520263,-34.446893 +2021,4,14,1,New South Wales,150.517794,-34.445013 +2023,7,5,1,New South Wales,152.069221,-32.748434 +2021,3,19,1,New South Wales,150.516953,-34.446204 +2020,1,16,1,New South Wales,153.557953,-28.396392 +2023,8,29,1,New South Wales,153.340091,-28.645326 +2021,8,25,1,New South Wales,150.521296,-34.465683 +2020,11,10,1,New South Wales,152.749523,-30.210309 +2023,9,6,1,New South Wales,153.104771,-29.489634 +2020,2,23,1,New South Wales,150.471004,-34.491777 +2023,10,24,1,New South Wales,152.900332,-31.474059 +2021,4,24,1,New South Wales,150.638904,-34.421746 +2021,7,4,1,New South Wales,150.602987,-34.417702 +2023,5,14,1,New South Wales,152.063612,-32.70658 +2020,7,28,1,New South Wales,152.591754,-31.558461 +2021,7,19,1,New South Wales,150.623233,-34.383838 +2021,5,19,1,New South Wales,150.519878,-34.452916 +2021,9,6,1,New South Wales,152.888523,-31.432827 +2021,4,22,1,New South Wales,150.638487,-34.423009 +2021,8,26,1,New South Wales,153.09347,-29.492599 +2024,1,8,1,New South Wales,150.785903,-33.712954 +2020,10,29,1,New South Wales,149.977333,-36.564828 +2021,5,17,1,New South Wales,153.428317,-29.051666 +2023,3,5,1,New South Wales,153.296131,-28.829843 +2023,9,24,1,New South Wales,150.785212,-33.715178 +2020,12,8,1,New South Wales,153.327635,-28.940376 +2021,4,26,1,New South Wales,150.635243,-34.420377 +2023,11,29,1,New South Wales,153.103865,-29.489601 +2021,3,28,1,New South Wales,150.607106,-34.422426 +2023,9,9,1,New South Wales,153.26475,-28.874133 +2021,8,22,1,New South Wales,153.093231,-29.492626 +2021,6,25,1,New South Wales,153.007423,-28.623614 +2021,6,27,1,New South Wales,150.60547,-34.450792 +2022,9,12,1,New South Wales,153.104112,-29.477464 +2021,6,16,1,New South Wales,150.617114,-34.434341 +2021,4,19,1,New South Wales,150.637499,-34.421394 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2022,2,8,1,New South Wales,152.907338,-31.451291 +2021,7,6,1,New South Wales,150.521621,-34.465726 +2021,5,18,1,New South Wales,150.632839,-34.4196 +2023,12,23,1,New South Wales,152.063752,-32.706589 +2021,9,11,1,New South Wales,150.790809,-34.183434 +2021,12,16,1,New South Wales,153.323091,-28.847774 +2024,9,21,1,New South Wales,146.587402,-34.770422 +2021,6,28,1,New South Wales,150.657619,-34.455535 +2023,6,3,1,New South Wales,152.405625,-31.930397 +2022,5,2,1,New South Wales,153.402692,-28.260219 +2021,9,20,1,New South Wales,152.15231,-31.445045 +2021,2,24,1,New South Wales,150.648892,-34.454304 +2020,9,1,1,New South Wales,152.898649,-29.631806 +2023,9,18,1,New South Wales,152.075641,-32.724126 +2022,4,13,1,New South Wales,153.10394,-29.489573 +2021,3,1,1,New South Wales,150.52145,-34.446872 +2020,11,15,1,New South Wales,152.898241,-29.631834 +2021,5,15,1,New South Wales,150.529752,-34.467964 +2021,12,13,1,New South Wales,153.260484,-28.838291 +2023,8,11,1,New South Wales,151.672445,-32.060634 +2020,4,5,1,New South Wales,153.082659,-29.071088 +2022,10,16,1,New South Wales,152.100663,-32.734408 +2021,10,31,1,New South Wales,151.030692,-34.027296 +2021,3,17,1,New South Wales,150.635251,-34.48802 +2021,9,5,1,New South Wales,152.916477,-31.450537 +2023,8,3,1,New South Wales,150.834831,-34.073874 +2023,2,20,1,New South Wales,152.922697,-31.459632 +2021,6,16,1,New South Wales,150.622844,-34.383759 +2021,2,28,1,New South Wales,153.314983,-28.949201 +2021,5,25,1,New South Wales,150.617032,-34.434917 +2021,9,12,1,New South Wales,150.797339,-34.184103 +2021,5,10,1,New South Wales,150.519407,-34.451167 +2021,6,15,1,New South Wales,150.639861,-34.400082 +2020,12,1,1,New South Wales,152.674671,-31.165117 +2022,7,25,1,New South Wales,152.816178,-31.134713 +2022,12,1,1,New South Wales,152.774091,-30.865145 +2021,5,12,1,New South Wales,150.616947,-34.433689 +2023,7,8,1,New South Wales,153.402459,-28.960685 +2020,7,31,1,New South Wales,152.926317,-31.458323 +2022,5,16,1,New South Wales,152.082183,-32.775808 +2021,4,12,1,New South Wales,152.040474,-32.734103 +2020,10,23,1,New South Wales,149.938213,-36.559404 +2021,6,28,1,New South Wales,150.595174,-34.412067 +2023,9,1,1,New South Wales,149.552181,-33.491314 +2024,2,9,1,New South Wales,152.398428,-31.96603 +2021,5,15,1,New South Wales,150.640675,-34.493732 +2021,9,2,1,New South Wales,150.640392,-34.398217 +2021,2,8,1,New South Wales,152.899582,-29.631335 +2021,6,26,1,New South Wales,150.627271,-34.420294 +2021,7,11,1,New South Wales,150.513029,-34.447161 +2023,10,27,1,New South Wales,150.062355,-35.020574 +2020,11,1,1,New South Wales,153.506402,-28.650072 +2021,10,25,1,New South Wales,153.434589,-28.620426 +2021,5,20,1,New South Wales,150.515301,-34.451669 +2020,11,,1,New South Wales,152.138047,-31.402485 +2023,9,12,1,New South Wales,153.103865,-29.489573 +2021,9,21,1,New South Wales,150.615494,-34.449591 +2022,8,22,1,New South Wales,153.558923,-28.394389 +2020,11,,1,New South Wales,152.138047,-31.402485 +2021,4,7,1,New South Wales,150.534211,-34.478449 +2021,3,2,1,New South Wales,153.549848,-28.589077 +2024,8,27,1,New South Wales,152.699792,-31.783392 +2021,7,31,1,New South Wales,150.633744,-34.418373 +2021,4,17,1,New South Wales,150.656041,-34.458642 +2020,12,30,1,New South Wales,153.608513,-28.688847 +2022,1,5,1,New South Wales,152.907547,-31.456006 +2021,5,21,1,New South Wales,150.529787,-34.471192 +2023,5,21,1,New South Wales,152.989328,-29.042091 +2021,4,18,1,New South Wales,150.617459,-34.436755 +2021,5,17,1,New South Wales,150.629071,-34.395077 +2021,6,9,1,New South Wales,150.521611,-34.465699 +2021,4,24,1,New South Wales,150.605135,-34.437749 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2023,10,30,1,New South Wales,150.986412,-34.097116 +2020,12,8,1,New South Wales,153.306488,-28.930398 +2020,11,13,1,New South Wales,153.109392,-30.298612 +2023,9,13,1,New South Wales,153.103865,-29.489573 +2020,9,19,1,New South Wales,153.281346,-28.821683 +2022,5,22,1,New South Wales,152.919813,-31.442736 +2021,4,25,1,New South Wales,153.393231,-29.016276 +2023,8,12,1,New South Wales,153.051789,-28.556666 +2021,6,4,1,New South Wales,150.615875,-34.435047 +2021,6,4,1,New South Wales,150.522509,-34.464798 +2021,3,9,1,New South Wales,150.533095,-34.475677 +2021,5,13,1,New South Wales,150.605771,-34.427655 +2021,6,23,1,New South Wales,150.512696,-34.470133 +2021,9,30,1,New South Wales,153.442632,-28.943423 +2021,5,28,1,New South Wales,150.639118,-34.491412 +2021,4,20,1,New South Wales,150.630296,-34.394442 +2020,1,9,1,New South Wales,152.867804,-29.667471 +2023,9,22,1,New South Wales,153.31535,-28.819753 +2022,9,29,1,New South Wales,152.90337,-30.238283 +2023,11,2,1,New South Wales,150.785479,-33.713653 +2021,2,28,1,New South Wales,153.525427,-28.677947 +2020,7,24,1,New South Wales,152.798511,-31.127228 +2021,9,4,1,New South Wales,150.514421,-34.447549 +2021,6,19,1,New South Wales,150.518874,-34.438679 +2021,1,23,1,New South Wales,152.851464,-29.692524 +2020,9,22,1,New South Wales,152.900272,-31.443731 +2021,4,18,1,New South Wales,150.617014,-34.430562 +2021,7,11,1,New South Wales,150.515973,-34.446968 +2020,2,1,1,New South Wales,153.259836,-28.858963 +2022,4,8,1,New South Wales,153.292106,-28.821456 +2021,1,26,1,New South Wales,152.039945,-32.730618 +2021,5,23,1,New South Wales,150.630932,-34.388486 +2020,10,7,1,New South Wales,153.471326,-28.681525 +2021,4,21,1,New South Wales,150.636996,-34.485592 +2023,7,7,1,New South Wales,152.804727,-31.498791 +2021,4,6,1,New South Wales,150.520329,-34.446858 +2023,8,20,1,New South Wales,153.313773,-28.949866 +2021,5,3,1,New South Wales,150.607747,-34.436556 +2021,4,27,1,New South Wales,150.606928,-34.454589 +2021,6,30,1,New South Wales,150.596114,-34.411554 +2022,12,6,1,New South Wales,152.897333,-31.474879 +2023,7,27,1,New South Wales,152.064528,-32.709669 +2021,6,1,1,New South Wales,150.639635,-34.399212 +2023,2,14,1,New South Wales,153.319168,-28.886026 +2020,11,,1,New South Wales,150.644174,-34.548357 +2021,6,18,1,New South Wales,150.618177,-34.4352 +2023,7,11,1,New South Wales,152.786516,-31.631701 +2021,6,2,1,New South Wales,150.613921,-34.437173 +2021,4,25,1,New South Wales,150.630757,-34.388889 +2021,5,12,1,New South Wales,150.609242,-34.420772 +2021,5,6,1,New South Wales,150.603947,-34.427124 +2023,4,19,1,New South Wales,149.950099,-36.567944 +2020,10,9,1,New South Wales,149.934793,-36.648169 +2021,7,26,1,New South Wales,150.630656,-34.420639 +2020,5,25,1,New South Wales,153.007423,-28.623614 +2021,6,18,1,New South Wales,150.622542,-34.384438 +2021,5,26,1,New South Wales,150.526614,-34.469533 +2023,12,20,1,New South Wales,152.903968,-31.439965 +2024,9,30,2,New South Wales,150.836753,-34.072062 +2022,1,14,1,New South Wales,150.618361,-34.440234 +2020,10,13,1,New South Wales,149.880784,-36.581514 +2020,2,14,1,New South Wales,153.104244,-29.485101 +2021,5,31,1,New South Wales,150.607973,-34.436669 +2023,8,31,1,New South Wales,153.321568,-28.824581 +2021,6,4,1,New South Wales,150.630354,-34.420931 +2021,5,12,1,New South Wales,150.640277,-34.492814 +2021,3,26,1,New South Wales,150.520812,-34.453359 +2021,3,29,1,New South Wales,150.525516,-34.459918 +2021,11,7,1,New South Wales,152.868576,-29.666762 +2021,5,15,1,New South Wales,150.630527,-34.394366 +2021,4,8,1,New South Wales,150.520305,-34.447299 +2021,4,30,1,New South Wales,150.636258,-34.421812 +2021,5,18,1,New South Wales,150.607715,-34.436565 +2023,1,6,1,New South Wales,151.061116,-29.741249 +2021,3,20,1,New South Wales,152.043528,-32.767142 +2020,10,17,1,New South Wales,149.931009,-36.595007 +2021,5,5,1,New South Wales,150.608517,-34.456504 +2020,10,9,1,New South Wales,150.838978,-34.053416 +2022,12,12,1,New South Wales,153.452014,-28.661518 +2023,4,21,1,New South Wales,153.110216,-29.490231 +2021,3,11,1,New South Wales,150.52194,-34.450533 +2020,10,14,1,New South Wales,149.880784,-36.581514 +2023,1,28,1,New South Wales,153.516787,-28.635764 +2022,5,27,1,New South Wales,153.104192,-29.479005 +2020,8,16,1,New South Wales,152.934134,-29.049587 +2023,10,5,1,New South Wales,153.108113,-29.490535 +2024,2,6,1,New South Wales,152.395857,-31.944145 +2022,9,5,1,New South Wales,150.890303,-34.018423 +2022,10,27,1,New South Wales,153.325913,-28.825226 +2021,5,15,1,New South Wales,150.515737,-34.443537 +2020,5,23,1,New South Wales,153.094981,-29.483509 +2021,5,24,1,New South Wales,150.521653,-34.465772 +2024,8,19,1,New South Wales,152.401176,-31.951997 +2020,12,27,1,New South Wales,153.091763,-29.488018 +2021,7,7,1,New South Wales,150.604811,-34.418964 +2021,6,13,1,New South Wales,150.611941,-34.43259 +2023,12,17,1,New South Wales,151.929076,-32.062306 +2022,5,26,1,New South Wales,152.906301,-31.436601 +2021,4,29,1,New South Wales,150.614854,-34.429609 +2021,4,25,1,New South Wales,150.630033,-34.388352 +2021,10,31,1,New South Wales,150.037501,-32.658052 +2022,8,14,1,New South Wales,150.549056,-34.511389 +2020,7,22,1,New South Wales,153.299729,-28.810669 +2021,4,11,1,New South Wales,150.633344,-34.489606 +2021,6,16,1,New South Wales,150.617137,-34.434287 +2022,9,17,1,South Australia,138.697401,-34.956972 +2022,10,11,1,New South Wales,152.925096,-31.434891 +2020,10,18,1,New South Wales,149.931009,-36.595007 +2024,2,16,1,New South Wales,153.110533,-29.490147 +2021,4,5,1,New South Wales,150.520618,-34.450714 +2021,6,20,1,New South Wales,150.623185,-34.383991 +2021,5,28,1,New South Wales,150.603275,-34.436964 +2021,6,18,1,New South Wales,150.618876,-34.436278 +2022,12,9,1,New South Wales,152.064528,-32.709669 +2022,8,4,1,New South Wales,150.796891,-34.216551 +2022,1,27,1,New South Wales,150.618861,-34.440641 +2021,1,6,1,New South Wales,150.833136,-34.085987 +2023,7,13,1,New South Wales,153.31535,-28.819753 +2023,5,3,1,New South Wales,153.33967,-28.984392 +2021,1,20,1,New South Wales,150.833136,-34.085987 +2020,10,28,1,New South Wales,149.976368,-36.555504 +2021,3,5,1,New South Wales,150.611882,-34.420499 +2021,5,23,1,New South Wales,150.605543,-34.432204 +2023,12,18,1,New South Wales,152.374672,-31.918745 +2020,8,26,1,New South Wales,153.278134,-28.679301 +2021,7,12,1,New South Wales,153.316219,-28.837037 +2021,5,12,1,New South Wales,150.605437,-34.427532 +2021,5,16,1,New South Wales,150.628812,-34.389221 +2020,10,,1,New South Wales,152.892385,-31.477808 +2024,2,11,1,New South Wales,150.825434,-34.149997 +2021,3,6,1,New South Wales,150.515048,-34.459084 +2023,5,14,1,New South Wales,153.279661,-28.831073 +2023,6,7,1,New South Wales,153.279661,-28.831073 diff --git a/Jingmiao Fei_Koala observation/data/koalaRecords.dbf b/Jingmiao Fei_Koala observation/data/koalaRecords.dbf new file mode 100644 index 0000000000000000000000000000000000000000..c73c986357839aa30d208e7c35565dffa881a90e GIT binary patch literal 25143756 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 z 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 R%^?9P%)N=s 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%0DNvxturX~iT=l0G(R7X6GnIBC4LifUEC`%^Ik~Y^ zHRBpJyZ!_~ByUYdhm9>50~J*1Z>DvPzSrgsjihjtVP0`23(;MeqXPMwEeLp+Yu`MN zD|!B*oV40}Eh@Q&&?`NLV;6QX{^QM5NQboJ|798GbvnsWx@x(1b9lY(nX;>l>91$- z(WDgqA}L{8KnimzAP)7O->>^QG>Y36Np{`W?Oe}>gG!hq5p{3=Q*%O~QTzOn373$H z5*m@sx!744?8@d$GG+?`o`8fiBcmg0^Nn-dSL_n5 zxw)p3xxDWK1vm3dC8ey*%eo(fUD2=$aSJK9$qY!wbQ8u3C~@YFO72Y&>b-!jYzb2!)SfqaKKs)e)VeTB4iw)9)#OlCl67%gQM zS+jW+aIP?Z@JxldQjw-XS(}&I974xXn{y!OYjfD?T3MTS(1;M<*;Mgt4smOL_6@#k z{i(SlEjWSp_Tx|D%-)#P<)t*Yn67hkaOd@1R>EJ(sDzLShy(;gH!pk}6S6CpLrC!N zpPCbPp6NL}jDK@=1!#29ylfXcYc{`cPS{LvrkhacGK!HVXvYWPz;!tDzELmxy6&fb zX1NK!pW&a?d<&TO4SOud}UQ&*oZ0RfbOzg7GsK zSX<+*UgX9nZ>HyP88b3EGMigAhm1LRCMD)%56C@JH0=0hrZFv>uSZu-a$Xhz%|?uC z4<*pZi%1zW?oMVlM+p0R^EX;;e#0D|9*duN=IVuIzL~t4WSWKJ77p6iUnm}o(kEfw zob*SX_VAUB4)%Z+IM*%P)N*p=6j&Lt4P7Jm%t*d=oR!8Tn_DvPjcH<}v$2J;xy-7s zJg&s?AG;yY?VCT>eJ(R-qy*$&G0bz+3#;{Fva5j_2k8j%_Zew&QhO+4qeD0|4=+U ztzR6BDbJJ%^_87=>$ER0WR!qxZ1F&XvtI_#F2m`i)NeUAH)U6R5KRuvfH>jFGUa4C zDZ}|!X7dgjl}lAYil=6Cty6|D7YuSOIDw>0K-TEsF7IBbtt|oZfFc_;nNBvl{%B=C zNeG>1f+#t@5W7YfWG-&le0wvsx*~7Q1XM=7cid331a!mZn!K4ZoES#>O3-eg{n$(t zswE(MGnr+a-@-gVb-|@HrWq4%QCZb*ZzjfkUSAgkLItFEG@%jD2%X%xyl>25RtCzv za=@7~ocp7MqcWS9u>~CLPH~HDeoe(lg)Y6HnRD|#o15Cn8sAJ?WjSUm((akz&GfvU z`kClwvUR#GORUXNk9m%QjD|3Gf7HHtoCam5-8$_iBN4JWo%XBh>J7$p&zu`G=jJvy z-%5n(G2q%=Ic{tk*dvC`tK9smYYz!lhHGi zpUDhp+xC*Xn`bfuBJL-isW;QZTy5g?%(rKjYSIvTWx)YGr`r}D<}%@;0Y*Y28}+_u zX$~ZWs|rmF6_9&oXu)Z}H#_a6)BdWe>*^I$uHX#AZMTUAakZ?j}?MiY>UT zfJi`ZE~aO5g!PW;37d&A)jvvT1T^A~5;}UZ(|#cU$;#hn0#Y`2u90?w(wOf?2Qr1B zIZSPSFggEbOij!6l{gd6<_Zuw}W!GC(7F<|GxRXPRd&%*e~}g#e9ALG#ly zCvRqsdi!j?Frz5fe`L(pO}G7x~ z|NC@O#`I>~5^D3rnY@`mp-v=o$i+ml$NYj`Y^F&8HYQY($5ccq=F@-Z7s%JLu zvN?1PF2h^yc4)*w?(1L279jy8*N6tuxg3STUX8i^+5rL1`+a(*-c0w=%;vpkzRrhz zfasYJT@T;q4{xSS=w?m%vS>_B&mqblM!gWXY&YN^FQR4(E*g^-9IAwjF2bAnT=r^y zhPj}+e?^tT%;scs?gtcwVNXC@N`&bCX-o(0^2elMcb-Yt2qp2(Gx64Y=9&Id21ZAF zQh!od&xG}8W-etRx@B{UNpy23p6LlFXmo@|M}~PJApqOsn~7&0g_bZ>Kr*HWeAebe zm;=~{3J50G?C#{mn7Ja|850q4#7H}wiFgd+uK#xeN`591QDmQTLZH2w7Y7>l{p*|Q zX=jnQW^^)4udnt-oYXs-TqE01qdM=ldM~_nx*{!O`d11#cNGxR$>;3#Ga)xWo0QX2DK#*p)dVG)iM4MtZKI|BW1c~k}{uR?g>bqsVY4|djahjt`muZ1;_2UDT=Kj6 zY)+7`v)dN#g-SqKPP#4a97AOe4`F`P^X7ksxy%|Ug$a!+G#WtrdfpuQ`gk)vn+vMz zE8k2!lif)!A6vfhH}fyZ~IxxCP4l1Y#06A;Ih{DG{V$u$O!SA81O-^?&AcOOm9te%M!oMu3_ z2Sh3PbwNOHW^4}Uf&eFu$v$C24Mqo&636q^Gra{D^a^tZL^kL6Tvg=oY;I@2zGic! zo#>g_HQG(P?CBXD_X}~-$pwLy*uxRexKx#l4r6pcy0)NhjE)0B$8k?O?QTp#^))1= ztbj;1=-&7IOtyNb>M=5$v*2Qwr!j5c+!g}dGs))9V(S*4(8wzwd1h!6X9BY2eLIJ0 zFQg|RWQ}fvM`J(JLA#6@*ZuO%wA-iTAPv+uF3zs#$xIp@6VFUedtU)@$)a4ak!PCb za51m_)UpnvUcH%4B#h-`LZh9JA)9ll%E+#> zLm@JpH#%Yh$~P07xvXa)!!(?UF%Qlqen~*06vj6*!yK-WHGPOjsRX3g zGeLWqPO=T4Y+iMZUb71Vo`3|}^?GJ=*am7vi!>6qXnQO$u|GXi#?+U5G(FRdN&VBZ zO&wcssP~w4+GRq2J!7LIv-!TU^>dbV<8S7@?1&wGdZv4!5>U$I4&|gV2;Y{go_X#>?oe7t`VH}2RXCZr7DrMyf)wTTfUi=&5!FTtNJy}Et|75 zZLT`D;AA)t_-u5zV?x}b0=j5kiiBX>7Tf!R%@F2p!T^Xum}jRQ&!l%bToBk{Vt)he z!kLj$nAzNFb4I%Y?bPN(IirlvF!$O#7&984vvSgnIS=zRCPg@h z5-;IQjCrzcG28fS^~l|XJ^0M zm`Xr#5jDdcW5SOK2kA;SziDZHg7%p)J;P_G-Dub^oAtgeS6grgSZTJruiD(dl4}&h zoIVFTYTE$XX&Ox`powQj5<-SKo_SF3^om;yGT^{gv^34;N6!jg21bYX+|x6QXFf!_p-OeySy?Ocq(cRy%&o6% z4!dibF}dJ*mCL+tOla8m*Aq6OHV-YhOhEKA*{%pGg@id+Y4hFGkbvZmPKt@0_B1B+ zb&h_8M#uVlZq_!MyqV3eKj9F!r=ol_3G?;d-=~y3%=d@Ql?gNw&eT^(K-q#TEI63h zo`9GE+4^50W)BHS+1$fC_-J;GN;%2p$pN>wrK@TX+tS#!ODT)#k^w3$&Mk+GUGYAI4M#q?gjon%fp-+k(^`WO9o!Sxudg z5IpUK$&bvM=NJsMUyLW^nd>hxzOU6aN$}G!_f!-wqUM{4PT9F*&l=NZZhmizu{=J* z+&xnXNMDIF4QI017bPF5fVg18Im%CCHYW|+7I|LQOLLPiTW@Y9_GH(CK}HGu0cWb5 z^tvaWu*q@~2t=`CPiE*Ev735MaHd{L5BMmPo6ran9A_+AOuxBC96T@P9X!*GDgDgY z98P1}?j#EW>a-g)x?smlrjs(J!aU&240Bp=5Du7>$1q2NxZL~u(=#2u$3@gMCU54$ z*j&>|8(Sc2G|T2nK<=ZF)1JmOV{YvI44!$bWq_%RsS*x1?d4D|`XLiPfiwWsE&VcM7H~gb-3CO!fLYxVWEXkTZNdvA* zIu8k`J)b{6%H}d_E~1ivPKFfWf&dAKsSw13PtSB?YK#_VKnab?sJ9Mw+nZ^%`CU@d z;F(^V3$(A<9QH>OSqYTIHT+@3?=#G0 z%=s>W!8>rFfU>Eh%m`XsxnGTW? z8X0J}^XA=x0Ai#@YX3B*znKz~$T082oKuNQ5Z1G~Ij6v8qW3bUf5ilp*_<#3q6eI5 z1GVjbW}{xO!&UdB=5X(suX{sem_JHDRUxYW)Y|Kve3@QPeWkD-&0)G4ECabQ>1V>{ zsH>@e;mn}X;i)JOg%oLV+qY0Q$C%IhJ~;cQG5yVq{jJwuqc&mT=EM53@-b(;6KNdS@CPdNbXG5wvGEw;9l@s%5G+H&)!Y zH#3xz^3lxZwV!$P_s!{NzQ>c;w>^~LOu-=eXdrH-XX2UXy^Y!YgqiRO+P$1q3obT? zGn?<*!vk4{kzN5E2TBNExkk-hf0Wm=oTQwj1UeBV?4Z$keV+lzGc~}-Y;N=zgb*Oe zxG^o8pUi(Jqh6Jh{*~FhuYgP{rah2en=dF!RQtAwCIPk25ZsZUnV{V^)M#|X<}jD4 zjOFoZO!r3xcXo|B&qVP4E!W&|CQUh}=95vcjOjiaJu^uNT=Ju#8HihS+CiQ5cGb`| zk_jCoWpg-sCZ`hZ=t?(GJB^m`l{xG@jsWDd0VmWCzb1M1h**xq4W!K1Evowd#*HU=G@=WWsx1y+7 za9#mL7F>3Xb~tcs??-6F42U;$l7JjtYSg_Nz?7}rsc$CAJmq@)n1K9! z)POhco2N02gn&-FJhRMz?s`7{uWYWdg(m1J5@l~D&*KtA?+eaEA8rDTl+E=OD23^n zHc+G2p=@3}^WA74Jk#Gyh54ETwJw{3i)??tfp&~ZA}@Mof4`YtSjKFgp2>z9M<$C} zW`joO0^N1CROJaM;LK1?rZL%*JP>^xxJGBuGaEhA!(7lPc8#(Ef;)JePXO)P@9|pD z7XOAbRh#GXzCW30!7=LP!Q9k>TYm48t=_WCG9(}ma~U(Pu4Dy7`gxGcG(W6wCO6c; z@KsUsFJlID>CL#Dn;Q+AY0q6`^khu9*(_XC`?h+qqhWj6iJqCwVU|?vX6M^-rJQ_d zBr&u6G-k8wPr#W0v}c%?1%X$<@Q2}wX6 z<}#*U&+KPf*9iS)#CPz+R!&|wQ=z)p`S0-;>71WQkMs7^KnK8_>(P0<9n5e0oWIB0n*mDAneDb5qX;D8j zjY*gzN6KxG2HLmZmw9WEjT&lmK_h*6z-I+ixJDP!*WGjyYBnq9Z)a`Risj^w2Yilt zy9Bf?90VE!oGrzF4Rdb}3%+O9$Ywx@_g)rAZ&EL%I8VzCo;)t{bwb$k*f-<{1DPt+5F0&Ih3iI}mhB;;8 zOpLj*D*5zpCJPwMg$Vosw7UsIIVm5_Y;M{7wL1=audX1ITaeLUOhF?z>k{VX+2|-_ zSNN`;fGRYCO#H<&HBgKE%$%DW34s+VO(zQp0kZ3)oOI8WF=Ib7DTOTca;~?lfb6PT zl|UK7+}}sB;9@pU&)lIJ(T3Bg*F1A$EHp_#%H}d_mXi)c$>v6Et^AD!jlf06t2E^X z&vau38nzEG5*it3NA#Ys?h_Csk4XZOKPsEczzK~oCiPD_J85p%wt6`$J!!$Y2?Nf| zFpptwE7GnZ@ir!lsO8?@pJ6U^=@~x5+`=4{!s`(8i0dpBXbO@24^MeX-qrb=qMLBT{&N z4fD`ncOT6+)4E0`qF2PqJe$)TUiPnJ3w7EvoA=oqwdQ8IcQ$`<4(Kb+bbm}G1h*v{ zYR86D%w0qzWiCOPT2CZJsj$iE^zCZUnxOo&SmCt?cPG)O;qXW?XuvB_J-SoxMf}WLJ3ZpEz>{+Lem3Hn$4sKF0gz3kGgEDR^f4 z{LyixNW;!B$C$^y6`GdbObVje*uq~*rJWe&3EBbe+wpYG;p;gUy!A889T0{7x(u9Q zUR!W=x57OWR@^hYy5fclV~bEuW|&(x=Nz5N$#>VtyK?QJ?6SG)9(|=}+SuY=p}_^5 zNz9Xd%DzPpjg+}PuSc?LPA3sO;T%Jt$C%&=5*=k_;J=&0LAyOKqOu|l3(hDAtpcJ2 z2R8?4j2}GHp;0iQ|CYuq35W>=Ew@%qV$AD7 zwWE}neWRl}X}F;l=`o2j4>Y3AI@tAo=FV#B_iYQOxJrd9J=1We^)u;c2G0a6twqv# z2y=O+vblcCt`RHJ=ZcJxKs#L{Rw=9E<6ukybY=5=GaVaM&s=K{&chtfEJxLfvo_Zw zn+F)w{u>sVH9VX0vPPV#Yn7oKEg`c>#@ke={x2Un_#+ z{4y9*VeajX(Bn+cED2}@wYxE`0)ie>*{(e_()%bHw!AeH5LcwR80|xH`kC7=0)_OE zCX5al(>+t2&4fnp1XRz@g#={nk8fe_0iXJrEfsUBtAzQ>YsWX)6`Wa4)cy5lhH^5q zxm(kWi6&u{!*Ua5%!&Gn;zyh*V|r~KDTUcJqS0}1%3_?G zzh*d7Ib7&cKANDtc8%_r8XX0+bE08FkMTEC{+PRyp3H$pwz-cgt`(0h%unQG-Wvk^ z)SQq;hZ{4@Bs~=+Xg6rIEO3YWFlYO(1pbhKJj`Xx?6gPEwB|6XxNlI|K>Nu?|0m8= z0`hWF0iVa>?O6P|Y;n|U$KqexI;+iPOmB3gNL1&Ub}A8xlkjFoIN`>l`LZR0I zdS>xVZcLWtz6OmhZUoh%D?>K-Fqa7fTuOS3B_Q;+!l>60(1SR_goH5Z8s)lQ409wT z?1(^@fR+Wdy-5pBI8)hNzhyaTH0*LIBqku{=-cr%n|q@pa@w&*N=H3&Ts@Nn#O}(yH?-7J zcx-e8f0Tjq%`A-$NC<;xaz6fB3+~6em`heb3Qg!S&wjcjVQqBmh!mEZXm~T_g>KAv zC?pqAjfTxNS&?1KA}Ry5NjCQiNG6Qa$sAkQ*y6E-9&2+>q|Ophdp-kmI0%{Lo5`Dr zUq&@-8(WZ)W}^3kM*bCPhB@kGW_~f+Ro4g>93!DpOpen@2Sf^PeI?E`oJrbt`o=o} zJrD{l@P`EC#?;s%l3mj?_XU>lQk3-?&gAa#f5?}~9}^lmGHS%FBV_YB>NVf|C(l$; z$^=B1Gf+Dp146AfH!)JPB!Bp+S!>Q|j|nKD5iH>sH=`qSn5|Tj`B$>5XY<(4%&rkD z(pCdS(Ej3=rLf%p^2~rPRSRX9m)e}J(Gcc0qB5Uhu58|7|0mL8vYe!xyjd@QTdoY$ zI4XT^yrmy+ri|&Nn4AH{Y>pwfdN1vrfM~&SHw2~jPhwoveMaL8Y#dm6JQSEhZ!cB_KCpi`+m60>g(>&ldh4sH?#*7*Zp#C&fFYUd+P+31jG{R#4L{Y(Y?$@mXuZ(a&T9u;KXjP{QbN&y+DEaVwz_ z6%Z|>GVyU^^3z!qH3!dh7!;t98#q0)4%AS}?J6J!YU_;Aq5itQJoM9;#h3?!^O%4L zb4tt!&U6#%rHs%hTW|*2IiV(cjFAv%y%*#;gn4^De*(@-&va~56A*M5>kj*y$y)E> zDv-^B-BOjCFi8k*%Sv_yw71m#?z9`nW5P9RcKuP~ZB^(e&NQ6Ka$k2Sgg2AZA#IY; zEEu7YYV*j?OlX8LAGBhIY;FVK&)Qrt$mucBnAy){t>VF&NWQp&E^J;)=DTG7X;ihLjqFhX9B`< z^npFwlx)77bTfj(4pJDDVrIZlzP)Hx);_~rpj{^P*E16k3CNDm z)#X0V=6L0Q+&7mAy-H7G)@*)ruFAvQvN^bDMvqZ8*PEHf^bGXInXf{+cF&}rS+sdZ z(5^6d&rIg9+wv_dLHZf`nb$Itm2fW$BB7vk1+Zrti^T&|YFJ6Q?& zs8Ug?6xy-)<*Jo<%jPd8Ku@_VJ>X24&=IG6G!u}$nJiUpg~6^jlc~AS*n(%a&mdox z70~czvaDYewq#6-%b90-HV<=i|LrHkoG^!l&3rOIBQB`XEuOrY9^7F%>3KcFyg(zA z;7aax&)m?0^PJRTJ0_s;QtBPeu>}>-!iHMg?W-gNLcFwwN1W-y)ZC`187eY0-zmrt^UnCQGu-2;(O0jm^Tam#OY)jlVt$TA{GLnviZZb zve~!Uts`!=AAgbs=TGLl(E&D!IFoIQeStDlp=Yxj#`G}%@!*aFwe-xgI~nKZbvn7t zaHfa3(oWRR%&yUHZzfvpUI77(s3q^&o9Q?+7}I?;E1(LEHV*c>F$*+0wrj%ZaL*Jp z($F`zddpVt#_pt`k=MvISA7km-ZBG12jB9~Pys0c`ByY%GKYz9 z4pSA|RcM4~E~bv%7&9T8yJrftM`)DB#F#f3JtiOqy@i_a;hD{@k%ZvC<(p}5<^itk z8Xd>$df4~-7UrJABQ#3SEP^M!dW;F4+z`4xJk!Jc$Gb)e+Pef~GoYswk6uo)&I14F zn=xHjFX!gbm^;^HPcE-iH>5ed{9X^Ikc*(%kj>?p{uQ%%vfwP$Y)`oES7_MR4v_y6 z=6W+j0?OLlYIFQjo>^-1=PLPU@JvUS(&&gAYFV4(f(sh=GNv6@+SnQR>X}MFIi2)J zv()AsvKVS}Xog=wyOyeAZJyAG^V>J-CaTTZoqX-=Us&s72y^cm1rzGGCBvL-ew}5f z$}CrjTQ^ZZTdH!yshkwIBU^BU`SPsK9=b*(Ant&nVD`l`gE7N`Kzb&G_GjI9OWy98 z8|L+O%7%RyTLfN_zq*b%lWSxNh+)rO^i5g?L^*jMGi6sdoIEpvr1VVQ%oS{;PW$%D zgL$y*`z_4<_0$&SPbQ#WBK$h84rkKkcun6-fp+<*SLvC6EX-+ioCBwQd!1hoA8Vkd z{!zY}W=v!dj>5(aZzjrmlQ4IG)JwVOw+!=N>szuTU=6pH&7r_O1uKo9y(RWQ!>dnj(HjcOp z*J!)mN4}b8!atzHX~<~sOn)C`%s95l<}imsI9O9qWqUIrAt0PPX>@pS>!pkXwFK?f z&)k->5Z#PPKl3h`n<-Qig46q1|-k) zW}M{4lOALAm~%Vba;4Lb886d3`FJzkgrQdy8XXzt%*|iyo2vq1ZVtiYBrSay(;IK< zXD*@Bo?*`F%K1Wkr&_MA``xf*X4m~Z%(aLbmIiXEimuV?VHPRREF=WB{U%%^g}Ecn z2-?##?OMR)($~c^*%sI@bJY=Nx(QVQg`sbHX7S90ac>NBw2l^ZxV{+EUrJT!Iks4S zcQ$z0lAD?*vq|V!SzQ38-8M z8jPthcOqeAc_cK#aObiWZmS!UD=f!MCfCDU70~JdpEIB`16p3oJ!-+NzR%yfZKSF8 z`6ECSJu^G)Ovo9L7lq;0Y3G32Gi`Jz%mt0y!0DNI=5mm|3+GK?Zf&D)pk1D+o_iY8 z!rW@}X1UtvK%J+mp^j^?NuV-?NECIb9nnw0$wrsv} zIgyjI?{YnOrn0$%_B<~e!`%3pXuBGL(6c$e)hHhlkb`#hGh=f&8y)*`@M?A~xZ_@` zpyuDrVK-|G^L#T68ZB#?lFKt0_0oQ?&N>ZqZ^6ZKGAp3{;4a7$?whk90M&J!?E%Rj z9VEptPtSy*WfGdPpLs7QTUHIn2hVg9YHl9+ndzBqTb#(~bxT#S3^#|K!IsnMmhp|aX~=8rL;I) z80zq6moZt9ro_Bwdq4_vwS*nM=cu=gdLPcusX0tGNAF~rT@dgJNa!-Nd0zq1f@4|I z!@SUAm`+Y`rhBH0ndRhQOelq;t`Y00lMOW)Q!k}^Yc_}9&Ea_XxOgVh%70@HXLES) zOoowVA5G=tf~fO^?CSm~XcU{n+2}A)S1_frxk*0qU{+xx?At6zb66qm=u#8Q4D-Kc zKv$L88$i34lbL`N-1@?pE9bY@eg?!kKPnxcU86|?iYwAtPNKK9pgG(@BWfZvvOkTf zF!!~99Q6*KiEH-Ih_fqOk=h%=+&xnYa4`X;XC4b=%&P=-%jO{X>+~z#Apy0|K#!4G zGXYrwf;(J>XXb{Lgg}HdWcwE8lYq~zQCX_u{An1d(KUL#?$Y@fXFv*bhepcl>6v&Y z6N`s2d8o|^@iz;5cr)dX`U+j6d^2sJMxP@Z6JT^61uPB56wdUoT&n7_Ii2>+roC}) z&Xn!D7M%Q1U)dZc0h#1u*+**$h;A`Y<|F~RKPrc3KeO}9^Ynt>56^_t(R=3ga6F{`)N)Piv3G>3}}{+~G0 zb9fB%G$zKpZcc@C#=KGODC1x3+nlh==59>YLOGqR#4Ush^=7`A!^OOVX9{QPOJ>ck zk#&u1w@+`T8Izt-K}LTXv$^X}(qlTD$ygW3tvKpsrRrSDjnu!4ss4Io!R4DtF-eez zQLi;RPG*)9oGEA|Mu%7FNslpl%(F0zjOFCc-|m^RtG|>%qeH*tn_1@O*HQZI6&mqo zVqVT$m}~agT!wSR8ArX@g0mLfPOrnEktHB_33Uk68`Djw+I;nZPiSP&hywzZK)2N=Rdv}MXvC4p9vU65Wp*gU6Hw@9Iw3nf(>!xssDV@g6`Tn>=IeA) zJ{q!lzL~t4%q)lad(SKv(El=~-b}5erZI~#=^72E60Q9{8K}uK)p!d7wR|&83vS!GFsA}yW3ABO`U=S3 zOwq8_KT6Lm6%ckCo5Rlqr{m+zRBi5Njhyym4x>2?(Flf2!sS|a?3@T6fqm`=6fa**vn~vNop< zhb7$lZSO-N`(DqR|AR3@1(e3bm=7XG{R{~1(X5 z?aaSCQzne%WO^og957wWLbMx`yCEh0{P|`EXcYRH*)@XF4&A8eYqf07rCtim$?l|= zlc6^E-%@k9o|oNewR@ObqXR}qxkNdHxpKGzqTB;=WMqq|>x=TS72-9U+m6*T(Hxc+ zdT^&PJ7Y4UxQT1`OiMufMPH6z2G4Y33be-rl#LD$C78YS+e+7nn_slr&6a~Pg(-XtozL|<{|Ef5XR{OBL&-su^n9o4Fl2W$djB8|4F+FHM z*8do&$um_8r7=rC(^R7B1NpAaxm@MXXmdS?Tb_WlN|mcC9_0p&mWNA94WSofo^~p+ zyrM$_k}*9MWde%EWOW5bdkFI~>V2qzKC`(SQ_bNh#gov8#d2198yBWRqxC+Y89&qg zQH_qM(UFY~TM&RIY_QTB9jLV5MNei3a~V^UAAMy4Dx&uwqt2M?jZAKn6)m~X$!zQ1ateK4kjc0nVh zqHMv@g0o@=YX)PQ5FDq!KC`(1x|3aVsVYJvI|*`e;?Ipq*Jwo>q4?^bo~a5*-kJ%B zFkd+IQ?|>M&Ck0YPyExEZo+shKD$OHthXT2;ht&x=7e~i0%6~lxI2vwZw?D_=5*4! zMw~yT8|=m`(@74oOx{dEBR6JDK{29_<3fksL| zjx%#^-g)MR=KWqy!wa_Xd!WjPP>72{$6Qt*f)f^-puynPh4F|&n(*(OIbT@o@w_`mvW+R@JyLduV*lD z8WZ)Ho3kL2FZ&;RXO|?&jw<1;)C$Tn{v-CkvH6fvI8v&z&%Dz!_gb7Bvwq-!0LO9g zOmg{B=&yq@J?(_jD2y#~ptd6^@o=;=Wb+Gn6M`nc490ZN3~K?Q1Il)Ce>O&H0qEF% zx08A0jD+AJEzgV)T!y*LCDDlz&_S5*bVQ{x8a#6n<`Oc?Y;F)7DtcAL$P*C#kll;_ z2y>+!?|@=EnPG0mWNZ-=5IXHh?R_oUeFhZCu8C(F(*ELPKy|~y=rDA1on4XEo9U@2 zN{eSUXMLB_sO!yH@m=1>di$c?-^>8P>9-uH89(!4t5=>`I-qm=dUYiuv483dg5TOL;e&$Jb_AQDw% zC6#+rICA~vUxnNl)bsdGs1eB0Ts{WzU-u(^e~q;q0E|O zS0lT^H9E^aTJ6n^Yh))H8u;EKx*MoDJti_b(ledU(WaB@FOx|c%CEh-8&f`-o{48( z>vJx*!W=C)tKo}s`(F^8>dZ)X&EA|Vec`cD$F(#|~YY~AQ!rZ}O&CMg(HNj!pa*iCMVb&7R z_Peeu2$W?0moep;0^_o1FCCCg)GT)^%rWNoQ;9y4%+jb2^OgEMcqU(n0E+swUhpOYP~AMyo5QzdPf|np&rAK?OQfi0*dWq)|qI> zux=3+Q4xt+Pm1`7G1Z&59`h%pq6CM3t!PJAFLpp&>P5k9(oXuDDbI|rXZGgS0I}_7 ze(2fUcK4lS*qpFis&W!SLU5jdi$;g3baW&H$|CemzCm!Ioou$wZHwAY!rS_|2XuWM z^(u!a*|qabQVr5ZeKt2K1Z&NQ(#R8#JTu?S-k3~v2VuP;U-oUF7PxO=I++P*x4!%g zVx-IO!x0vUabG-BcxEh((wJpBc?aTFf#A4pF-bs^4k#2!*-jR&(RK{R+>g5+IHy`_ z>AEY81a!E8vz?@!w9S3aE7fdMdvkOE;jrs(HPWw=2azJ1!f@VWDmlwKc zE^gMO$3Txc)*ThS2oA$ZIG5QXYK!9Y+k= z{NkcOIbAijlS)9|_pA#2tTW$rriHX1IM|s}dW;V%RH{dn!hAD%GvTy{yOY)du^coT zsJRyk=!i18X-t@z(1weMgoDE?5Z}({A(0YTwrO0Cae8OK~gymUZTS zZqIpkC%Ny9f1WMx`uwuGPw(jr$IfY$x2Ls4tb{1j=pkiVPlIEA-%4h)4{!nb6!njp?4L8Bn&9 z?o6ef1Zl790Br^Y3l7PXiD!CnOaCC&nHlDWzcEi!X;c>kN=r0``J}qc-aL9H%;7^2 zQIW~zxYASDucI*)=AOf2X_TJH@;Tsw@YQE$13I+ri=w4>4}g#MDo#F$`29XQOzm3^I^u<@5t zGoZ}oG0ZvQ$v~}Fc0Cyi{l{$!?Oi0$QGgEknMIMqOQW*xH-X^V^Z6qsgotNmm=orV z&yJXYct5Gx?G+t>4o^Fw&h*ev&n)y9&ikE_gm7(0ZZWm|VoWcRl!|g}VPgv{$MuD3 zxzbM3UNT~v7*k&8UwL&UCLkMIFrQS>4${seT1RYug?VOknNVMZIR^wbBsASKL5-jo zq6YUF=I)P5KuN>yjA;(rf2ol1HTC=5_T4&nWf-Ru0rxHV{uDqV~7`tt8T6u<<$}^RU zGR!RjK{VRKMO3>Wz$LI{QnbqpXJ6@=cqRop*Wx?R+|h`#S9B|H|eu?YNs~X=I#sZmeu$J6Y+ke;QLuRjN4Cm}X3lFARr5 zK-!Bo!eC65M$Tl9Z)Vn+&||p!6;LBi*g!(C>meUSyGkSZqnkC6_O>7Zd8?I1Wp4i3 zW)Pebkc{a?Qr4MPXHv9tdBu%sbtdZAWdnT(^NBH|dQ65nN@dpt+#ZYx2YY`#liplm z?p=B;jk3<^t-R;_KLT9 zNkBZJl}kJr(}O$sqkhY=1@xGcvnvo}6y}hRn4~u#sb!sRcTy(QSL(Dg*F9g$+KJvj zs1{Bsg)*E=kY)$eC7|^_9%`fLnOqbo)86sT^bSZbWh8DT*_9QQhb4hnv|pS;{yyrR zlMphSQwH%o7XF5MbF%q&q+NO4d!cM6X(u->($%>|!!vKzFIb%ZER9+&`cY{VfsRDl znWfp?6=n17_XQyLl;Q7C8p)Xc70HDe=7c#gd#}^Zb@SSq55`nB_pbyx`fLtFv<(Xa z8}yh7YNVIaCqHqiDyNfduIzW+lx%M%GjxDCo1_n(=_XWgM~#j&CdOp0`w|3a{LGTz zKaJ_08B_|B9^-Ki1V_D&D7)%RR#z6*17`Y}6JyFp6VJq$wrjyDiyG5)I(b6NE`nx% zg}FMQc*HYHqjE#-=CHhidvKT@bDN+>UR|o4%-%d2 zv*@%}SfgcgPAx6l?Ch63(aCo`vosi+plrbGYio$x?0T~IQ z9OZ7tEYrzjE$8F^G^U$%akFMNFVo3uXRX&g6JxH%=$O2jZbBuXR6>YvrjN0T7fFN!$>b-iPgV0CO>{|z<;0}0ZzL^Ca{?OpLOV&(PMjA^?oVS1g8T7+&ko2spydVF(W6G_78dM%@JuBer^m#B zT8=GjY;hl<11e(+c2mEFxw3g+Y9?`u6E?^BII2;1C$9rno%H6O&4UR;m}fTU>=*4$ zx9&&LepFq(Afk0MBVezX`fI2Co>?~6o9Q_`CZNpbmd&3nh(y^DPddy37ylXN?vJ4tO4JC{ z2(%6Dw?51f7B5vh3BDDVaoa-KJWPWU95!&61hn?;FdYCJl$6hG2d8sq^ z!p01B=JD<)d(ZTjGSIbT;0$vM^PNISMSJPZ-+R8po7tT7M`0dsTcl^gX{SUl%p&*9 zqBAi;+Ep3}H4>7PyOZc=u1MSma2R^b0xUP1o6kJcVd7j}vDKCJb#MSEWbiXA3uQ(B_Mx2<8(56b7Kx~ zHwXTjG0EmIho`rCJ-9;$ZEW&yUb3F6j(33G+4hhJ^JR~3)I7=fVAs~v|VD&n-z*oy4 z{ZC^Gc#8=rd-DUeW-ub*nKn?nuk$}1SIPweuZ(P|%KGrTsAW3PK_UMt?4u#fm4MU% zdFcNnqr=|J*ZQ=%ZV7X+_tj*gKHkjmKDK`!kvW`oCb;m9YsPGTGZ%U|A^%}a&*7rS zV?vn7}JuCWg!_88a8r!ty*dpWICw?qz)+T0VN5+_RT4U;&hT@f3Fjz_7Bfg0&)}P zB5HgysWV|`7C_U(oUlJjG9OB#=A=I=+LHy>8`CZ?gx=hWb|APC<%2QhnQqotv}b9w zV@jkD)SHvdQ9D5<>NCvUguyfQj^^Clma0fU;etTrw3m!D_U2w1sm_e3Q9^JSlcSSi z-`psLd)1B^jp<$(P@`-o{n4Z}GOsN9*Iu+EthX~{`wa77IR6_0o|$i^X>=fcprXBK zbRZq|bwyeMACgi+a1gh+t<))QagYwm=ERutOfTBA1M(Ox5FDEp7_?UCjnmFD?6FH?u7z}qp)5Y6Rs;dg;t>Zn`wyAQtq$}p6S^J+4og7b>_PP2G>1(# zcVbKrX}y_BMH%K6=7n(`#};;}YMC8AmNA>V{;WR0$XmVTRxisHWmUh9Er8%4c%a?> z8RkkrZo=43W;QQC$BW7`zL~I(3J2k@Y_8yrB!o1kQ3{Wc_OMR5enXAa0qOP3 zH`6+x(BH$mmF<-8R&oJurt$oypy=NjCQcBoacllf#?IN>%B^^=2+4pvjvl zphIR2Z)Rq5Cgc}4q=mG@=y+BRo=-|6g}F~BBMm#>%<^XLW#S{xgq=Ctos=>4B_GXf zUV)C9yMr+=7XH3ub9F#E0G1sP9ngB+OTCQf#=Kt(NXMr!<&Rp7PENaLAZsVtQz@C- z#}+rCUkanr6ty_+=H^~;CeY!wtVlcLn8ILp&*XT>KW0GkNBL+jRTY_BWjD<9V(K18k7UI zGEk!s3fbI%j&dyVOP#3%6c+?C%vty2PDoLHbI)9v3Kd@55at3p9D<92C%Nud&dWl? z4q3(vHoo%2<*qJ3t}40CUR3^iJa@_rHZIJqKS;+&k+EC|pc!+B|x?WEhX z0UeY=Apse2>z>Wc-I$>RYPLqABF7f{ZrcE5;!{f_NC-Dd2s2$H_eUk5Ef_OPBjC1v zptk+8mTIukm!e(mWZXB;qMfXLJske(!W>py;UN4~w1+SkvYDun5w{S7E1h@?bGCY4 z5M(|*)89;aW+tE^0nzUic@u9Z?IL%9iwDp2H&bIYy`EWTmO2x>t&`#@TfLy~HS$}A z=}IGEMUHW%7F;#viY}qQnIxe5Vr6a80V&LdwClI*%_-Ws;R$Z!#-sy6gm`hSz2KQ1 z<_hjbW=+A9B6zawyJkSpV-~JR`}B8aOi^5A)_gNdm_IPF``&y-Xkt=lDx@9W2$E(Q z=0I>9vOwV^hWP{6wceNQd-LX`Kg#B@14;wY_~$Hvo?3^wk^CMiu9NSI&9klncSFwIQO@#H3Riw?j}^2=juxIOpYsYTPdi= zl;cWQHSf>?X`tpEc}^#zF^znq+-HI(@=Sj{wP=-iX1P>#a$#2BFrH}_ zQ4xsycr)FES!c>0^<{M?hk7{~P%YO)qUa~Tp+?H)F##o>3E7qQu}IuE)QF?UD8x;G z4!xOL5RkWK(Qb2d6iC7BPN>A@{VN7U%ZI&&kJzt*D4 z?sX<>zSr#Rm)c2hA|nKsVQzKi3E_yK)|*NGDKhwjXLAu)AbpZ#*IznwZlacR<}J)`)=;;Sk_OLIm@BXAw`6p{=s0*VcZIo~u(_AJ z-d(}I&02AJU!EBgP`;TkHxA|$B5s+o>ro^i>oXdRDSyG-PwHGXtYTT~W4^rJY1QrendeR5iVb>Rza9uCMe= zJaa9l%)7ZcMLTn#x3e}2#?oj$P|G)yH}gSSeDq9~2EG_mZ)RMPPGcHFctgJ|CZK)U z9&ow()6_Fn5P6Z5VQyjm+_eu^ooVu!GbtWVKms}h#--p%y&wSH)!@t4o7)9}r^rVA zna!KK{v_9E99wXkw+nN-ZBfPc`rcecyB9=J@Fc-uNC-#{-x^yKPCIm?$=JgEQDL5= z-p(_bL!L)t9K6RC&purckY{>3DW+z=nY@{BGm*pAhMH*(-!Kyll>6(=RB067%nWl| zT{)xXa9v%gHw6Y`3V3rLjq83{XWBm1whp7-<7RvE(=$Eo$TQ>EB8^#S*o-c`G%}!r zliX#^>MzgKp^&(3ks2Mxg1DBQUr?R7+PHEyP?KkRm?zh$%jVn0wSfL2>i%4{@*F(V zO&B_I<@JQ%jGuWj15yV>m;=eNrS|z|s-1MRCIr`e=JG-b;cdBhoyq?BSCObdc1@te zt!YR*2h->u{mm>1h$&FBZ)$8O@yS3ftW^elXtKZ|yO!x1&g(#Sj$ znWzyQUdo7VNI;&=Ljn@AnF$Cy6QqNy(IL!fCQ&4u6z%GO{44h6>6ymQBy|s-iPGLT zW2$J69Z>e>^yX+~0uQTbN9L75#v}nv!aTV~p3IAWCc-;ckm4!X{HY|k;mvG`9j(mv zSHwCqJ=0L5n};)cCY-{%sCEp-lxKSRo}Ss<3J-g8+5^&FJ#(AknX|MLiuSBCcVu`7 zbdeCMvMW31`08Jt8G<_)GqZVt;Lbue5~UFPRyERopyt6H-b{ZzlTrw!kn;RN$SAy- z_qsjDIvHE&&6IjfFlKsY>41Dw{|$6NHY%Xe5a#}7D$G;awNF5=lDyqBEdkm2-fvtZ zmFhBU(qjs0#BKNz)Os@)_WvdcNN=Wxc`}Cw&xBdj7zgh#X9Mu-wnYFsWZ+y~F)>o8 zFjp*%;2NzW6SoXA=VwNGOeP>Gg*$hSWlY{o{B)g>UFC(IilQ-dI$4e@p%N7m(2Ww0 zRr2+x;F)g1FgN$tGZRorKsO|Wes0d2S+6VgMZ4-u|BBf>+eyY2=xud#b6fwrzpt*y zN7FMsomZfPrK%X_tgbMyv{!T}+Vy7ov^+98G69w8RA;VeKsJ_Pcr)FYfuHHW z<(paGOavagY|hAHDn{x9UKvwg$Y96lLW+_s-QV+s1bL+ zW`{zQY`h@K8IV^-@9TaL;WX+kGobw~`q&rkZcO=OEZWmE@k}c8_CPu~{Q9oA5UG6kcQiX7>wr*%x{JhpGv@tTpt?>VI5%8?;QaMWV`5C|b)&UcRHG&! z_RXgY0v_fHZsqkfX6enT*$aBvJkt&z@8v+l@Mb#jrnD2+{jxM-d+OotSLc~jORv(c z561MDG8i+2dA5_bSAKKe!owVqs0{#aw(jQ%NPOW0I{IwBaF%NAAvkXLer+d}fU=$J zjJd+vs@Kf@&D^2O6dY*?bN9?(Os_aI0g-@MQn~E_T`4MSHosmsD}ekm7}HB5DQ;=K zDveo6qa9_v4(M39`Smr-gE7-HJHeq=NacHS+TpYx5L;0;s&!BabBJ4PSxv~UGNz}Z z#lJEEl>~(9@W342=zu1kDZ}}~N*whj&_S59B0Zu;Ts&`Mq2`W|U1d!FO2HG)8Sf1> zx=HiHkbqEho`AzjKr*I(Wtdx-v!AvP*?a?QpLk|-(y)jci}r-z3Znx=(>=2?I!HmE z*<7CKUn<|zGplDlg&os{d6mH*fDSjIh+CP>`!|zqb30-a-ppqq@F!vJ#uNk>D$XSr z1W4O<7$nx2;G2Z~H)BdYCS>^RfNBEb#(DHicKPdZzah+(fRw|-3@GbN0-O^zLpI;9 zr(9JVjHxj9(OM>;{>`+jlcQ%sO_+2*KI+w*8Lvp^n|Yv8$e27z@!+UPbWFB-72F>1 zIZ*376Fxf=pRNOfE>jdx{+90i)aaS)P9h#NVZk*g4M#k4Zte{b z12qattl6zd-+)HTIT@&_H1dFtl*05(Jd^(h0p~IUBK>>=Iuzz1uO~Qc*&NlKo>IuR zMJ03$rI9kXf91AC40CHIS(O~x$?KSvMtU;^4u=Gkn#0JKSzV;nm2#;HBA2D4!86^2 zdMQJZly#!pk<(wTs`ukwP@u7Mf}h*{-T*7*lxDw})2 zuUeMQ1XL2x>kgh-ln~BmCiy61dOI15_C$>=0iiG)XF#?)Su4*!J=4=p4D&Rml|~3S zN2DG3vgMlH>eZX+VXoIRnZw2$KG^CFDuwoD(gV$ITX>jjMLKK*Wj42y+{=F7T{hnz z&Z>PwjZ_-N-aNycouBpP*XJrYd^2C0tw<}lJ>Vk^J4>UTw0*t;34s;q>pZIn`;i_Oh=8fH}8x|HXrCQltw44na_4oVeWON=m?q3 z4bSAbMJ4C|;-AKJ$YXN@r)O5r zr2P>DS3R>nnS(KvfP9RWZ)WG2w3BBo(Z%Rk@266S`Kh^Hyda>WJ-2#$W0HW%2Cunc zBO%<|Y!AqDxEMxBDeR27KGf)?6L(|6JlbZ&Eia8iovF}I2o4C21>Ul3A)L` z7v|KNI?UTjqX*dN^Ud_WN9|-xK)E1bdqB8h99z&%?%V8yjmjYJfVAJ6?Ii6aOFsuY zYBhD^nS?pEWC-->nKGsqNf9+lMu#yvp1UWzQpHore;QLJ)SD?E&7z&6oj3E<$e8WT zyx|Ui8q-avnPk?PeFEZM+Fe%ly`3btOB|tDu&XoMkCFD8o@t)BJavb+8Iz#D>!f#p z;3i?NE_ia-TnGvOqnon zh%?L!aSH-_zik26s5s`}nd*SNofNW}VP3-g1>2}ICK4Sr$_Hb%i2n%?oXompZw^4T z!5_3jsJ@vL?NDac*^0D0Q={JGXZoXQp1Hh`f>Q_d=4XB-At;B(EfRD{_s}n8wdsIYH-PUW|F1+a#NNL8KfWl@PKwr#F8=hSAu|GgEPENI=Lp zcM#lpT+2OM5OB{7;BbK8(lag0x$zZ|c3VVcl>Qm!-kZm1x&NEVbw40DayLBe5ax`8 z?q#+h;GU^BQ$$UYoJ1T`Z=ch3}o2xfhDoW3^Fh?k6E!5%QnVj{Uw3Gg3ib$CE zfJV>6m_s&4SbP%ZGNuCFU(ZZHc;@=zPDq!{p~a!N_05=}XxE%FNeHHdK*iqcw67rT zv*mqxroMtPlQ~@K%q=Kx*&-^U!(Zt!^2|kMP0uWIb98qGpyQ@$|IFrkDV5h<7dy|( zmh-afg)BR!Ym5%`Psrup-b`UdaStfzF*^l1K)ac)8Iv%7E!V`DGtbOy?zK?`hqrAQ zsBM&<6O}@}j~?9lX1Xn{10tIN$gFmp~^irxz55HxY!yP1`%Wg#ra}>8W z+VyV<$c-62GZ`H)I=DyI9i-zv(7N3du94nMM>Yj{WCvt#rd8}^Z|04B^D(2xG`s!?#f-gqdM0YvXtK8oy?W+$u{rtQ>daKb_GDgX zK>J2d89SiordIk!+)_4=yOUXGZuiYe?jS~L=ViASf~21vklsh-b)QpaZ~h)zJPa?| z+`RPW=Tds2VLB-jIs}({KwX&A>Kq?H2f~Hsn12~l1yNi?%>;zF{ucJ^yvbeLzN!R2*)vlc*y zzmy_wDc~~!*+6Z9i`kV%T>aW@N&4f>lrh~$~M9%w;1WpBRVmr>P(q6>rAhWEX>*JMG7Gp(+;TB)ybhWk})+m_u4bx z%u=*p2%Zd{c|acid^6o}p)?YHl&H}g94?nE8fs+VFszO*#tihBmh8EAk#D9QpF{il zZMpJhnoMqG#|&W}4A<#l1C&TSnYExswP$~Sp-9Rw=goW_&@*E;N3)PU)NiGcOqk$sd+=aGwh+9L zBm|F43v+bE(U9ogOeF7@uSL61qg?lk#@tbLea`Oc3cVz(gm2SHg?R)zl7@{fS?cY? zNDW8&#~zS?4ke{bK$d`>jyYThYS529+esPDjTz;l63;A}!wk+t0%Aq_d=G)hNv-Ya zG>4r?7|{3hO!G`Q?1N6b4K2PE?ZF?tT*}_OF7H2N^xiX{yKoSOc2dFZo*6r!40C{v z-S z)MA1$Z^q`x$MDNwOnIgzKl&{b5D92`Aqu5zZl%$=UqzmDFs3}yzv69+^h~Cc&wZ9v zec_p$>7HGY7O3HGX7=W>orF0IG~DTDLe6||t_+^3kk(p20OQg#kLB6X5!Z&=`b(#d zcKg@fTt4clD6_etMy9US)J@7jjfxim-TdwKIt}2Z}Qpzy5Q7_i)JoBMk zn$fV`Gc^MWa#7h%7NmWFT~yt$ltyK%x2SduMSFA7A06=wUujG;CdAgYFO6Un&d9Ew z!{v{WYm}=iyA67opt)zVAb=Fy^B==JE~4g}X#+Lrm_wLf(`+u!^shKKPh*-f$=*E# zw~~@3c&3|B)AGpA%rHlDm~mR0>z1(vz4|kqn+x9XRFu1uvChOZkK-I@*ciC5+=p!L zo~fc;sVGq+qZER)yNqiqjTiwX_ z2pH{XUn>Do8kN8=4JGY*dmf`mlup>>n>l#qeX>5;c_yeFZ|R3;x<9H^4}7@nfUE<$ zwqq!b5SDNal;D}l<~~qM2yXDq^HqTM0Kri&&5n3_0+K(j0zc9-Et@Z>M8$y`KnJ|x zNzvY%GyomZGcy6roQx!<{l98 zS}+KqUAr;2-|JxysI2o3VebB@qCK;D%N}*z@3mfg*G@txYSY^=5hkil|X$b9(T%MwHi?CkOvtPK;|2-JwR#%FHnD!+c?))=BZu zPI851f@iuvifg3TGqvE*g8M&8BY!gmbZE4eZ)RPpqN5ZEpKtb1md0VydZ1P9Quv8&&cT_5Hav!cB@>5rz9*#Y$l==GM6 z@NAA9uf0g140WawkZ1FR;09wpAngMztJ9?k%Cpq^Ac3G+3)nc17$3<$xK9%*OBHX|XpF;yDHFi$C- z+J~1-$@XS0*Zrn){q<(bm~qsbp2-Zzm_`~~SeT>0<&@3vW_q`ymoi=uNMqVoFUylE zjaDwAK1?kd|1}s>+1y9HaosOT2s?S3!cv|I3vPq`IupJ3H&eZN&Va^j&izvvvt;wD zp6VUmOcm(vqcNMOXTlw{MO3wu+pmeVS5=9@nC_WsC-r(JJ;s*z51PlY2ZU#0*{vvQ z4#sqURG3E^cH)_)1;>J#!rbsoew(Ssv|RL~>N2jbWHzTbN7Sg3m9Wx??fuVo(!*Sn z9|e4ddEK_yd=%NXEm)eKkPtip$%Hwb?6Ua+;Knerq8inh`%0uwfDZS}?0{rKeHG6{ zD5k}9G3LEou&^fsH8-aA%`=-vW114e!@7lgW>G?*FPen8Cm?xdTtv-mPXEI}pptu8lZd>ou;_|}`tn3;fLm={j_S`<$L(hfCyLXUCJ z3_K3~mSc-DwpclF?r&!8%`1-dX9pw&IOld`omsanHiU9}W4;Bq24lJxhC0)KOJib8 zh_27DB7IS1mNIiNrh~&F%;lpQ<`(A1jpRw^nFqRst&VT?P&b_nd|`ip)0h~O>)ZRV zh`NFfw{|@kGlaC8Fqk!gj*`vU-tRoq$gZs^ni|swyjdE#TfHw;VK?zJ$>t^}GaFkp zyZ(eG(!r0PC5v{W6yC2e>Sds|a;j>UfCLVE+R5o;@0q-r*E80c_slb8OudwD)+~)` zoyi_*FDqeNz27>Z5au#)W^-mh*K&@h5@BY~h+Fn<4ZtJ9ImofF_X3cDFo=LN_7Iav~LX`Nq-ts{@C30M`lf97GpBj9cMttzE4Ucd8U8mo9R*B z642|jH$NxpG5$WP1BzjuWLM@BB=aCGj;;|zuA+c4wv#>sQg5D|_UM`W#zDG0fWsK` zT+V%#fb?dn@6lIwK(zxZ-Hui0tu*2!>bE*m!5yV|GR${0Tsai-PTd%jZ3`AxYOyqQ zKuSBA%@y7LRkQh4?@|TNyx?YkmPSfIZp<88xGgQ4bFXt5xJI-?t8EF43CQ0}g?XeD z=BU>WA1?^GR?F2lllwL2*E&M%z4XUM0w_OPgM&2%?wyk2=gQ%KoUN=J{RdR4+FLB zYn>@$rf2$-S$cDjc7zXN0wVPH8K+%urk6%~J(C_|3FtWXr|ed=Fu$*5gG~INN~37Z zd^3#&_X)wB(;1Nb(O=ID^DfL05kEO&6T=*7xOySzuXa+|T>HJLxP{`@vc9hcynzl- zBNost#`#0!H+N(P2bg(ZY&P&~pY<+Q}CawXQcuzO3%~{uSnu7S|eo61R%9`1L}|wLXv~ z%=d@u4F4513U6kXMphct6Kd}SR5#StuXtwg%s?qjV?sh;0u-+MVN8xKnS#vU**r|k zJ;UdlX>TS)`&Cw`LIOJXbHeEGQe7|Q+VT^p9dh5?)MF6h>E2A1{l3qD)I=sY+?7V0 z{^5b_fDR~z(A>X-x#s3k4LhfkrUi#2p^W*~f-Cgbp)^vMtGdiL(_ND{bLGW63menl z%niAd_1oNBVV>t@-IlcjViMVHsG&vrnr>UTXR0?BOq>a*7VT@5Yp$M&eA%f`B0p8O|+eH0ZXS!LV zer9$+Bp^=77T5FyWV{4dG;38kcxL+yhe8(NM_IIU5%oOI*iLdmVA(l&-XgzQFoMIO zo%E!XVO}7(Wi59?BGAD$%LE+u;8p@kY4N@^vVmIT!uXq6SP5e`mlt|)$1u+~(}0e3 zEuy&oX4;i**u)>Dk&NjbP_p1U&*bW{+MVK=$Z2woVG`ytrjxH@X_R#)btV{5*qx*| zU+-<7ZCm)88Ngu=_)I_~AUN2_8pU-#>ZA${k8h@oDIfJYWg7EcwC{yL7~ahDD#sIt zcG3-}Y#w|xw=F=8xW=%Q)9}rhY@eeKH|c=nnMy!m29%USIPEC$Y*rgpV{X4Mx}s-B z!&Y#+S%Z(JNR+YQma56_MZ4YfG_bhZH*`Rb8Y#Gw(b1Jg+Y01X6dqfcUprS=sx|p3 z7}MWOfy2==vox~3KHy7W%5aEl4;~qs}wedp{}`?4G&VdcfDYxtlfH z$nayQFebq2u8I*@?4yT>n$w_IXH&ZC4QqhuOzLUriY8Reqf+ss5=QpH1JyZUu zuj-lGQPxhq1F{)VDV7F2)89;`ohTBOo(VO^NQG~Rh-^-8&aTBW1Bd<1)apvMlY?hc zR2Ke*JQH1`?;VhvRVuaMVi0 zyhE7#s5iWs!I()xfP}y%P|4jb0YO4wX89H9@UexqC^MT|n3K8fUVKYH+pqPPRcdeW zOn)=8&eTh(FG?eH-#|0d$@9jLKd!7qbn>V5R; za#g@*2lTtI5QjPE=f*Tf2bL_SkOyO`19I-$8U|{)Z*Etr5YmfVy{MVJ>Os`Om>%59 z=Fym$&Fxg;;Ye^PjX0Ia%D|*I_jXcsX55|3IuqF)4)YGn`-pUKF#hAsbk7uVD|}@F zGL4Q?sK&c!=Yl{Pu?=Ca1mv&h61+7%lMZNs?P_z2)|)e(ye_}e-HOW&&vYM+GoUo4 zL7A+mDFKzz=zM12u$xdMgji>00wMuDn^8FAnK#6^tK^>{%oW`F3Z+qcX2F5EzYvUh zp2L~ z>doVunVt!1baqEPjnjS}oVEG%On)3w10)*gs>r9)Q9}f%W{$|pf!*!jWu<Vkl?dUNK z%^@0ozM0DAdMSN?k;W`sBNNG0HaFC0Z!(2_Z$2?*RCZ0E!`jK+B?;f)@bS`5&4S>W z?ej-8>=YyI5)d#49nd?bt1}eAri$>72Er+!04H^(`=e%(G0f95 zjcc?nA zWz2ZpFT>nw%EM~ z9_JVnIjE&-#ZU)T&)hh}QpNWA(#VY&5>Rtob|;e_V-VbVcc>A-dmX2Zqh8PE8e2rv zD2-WHS6b@EGfh8pd3G+Z)W~nH*Da#DMn}BWo23x~&M?|f37$|I*$q!GJ%cg51JawB zp6O4ft^1YpvVpj@{n~k1)Db>C)9Xx84`R`tr4isTID5(6o`68wUo)L{B_Mx2qq1v; zdAXr>7Qn3Q)Cg*J-CgNRBfXhkUCOLU+$v|k z4y463P~(Kn3kk@=+Zs?KH)b%QC|t=k`sExql(#<2IRsXRzk@M7%+-;{FwX>3rjz)l zx07YmdoE@FVlbwAW}s_%z$Z9d!Qo*+fVufqg>(NhroudC^Yl!ZnFm3wqJ8~6HwGEA zOH~SUFOp&hl*S~?+4n1B@=#|!2+DjG?UOK%9Z(w6mZ~l~%I?iv@9&gC0UhxxjmZS) zIqD9tJo7;}cQWdgXSRm@Cs$Xx-W<<7wzdsW@k~OWwSmttS8wjd42yqBLa;rcYpwfe z^2{CVeez~{+EH-F1eACtQe_N#+iFF@Gs^+B89!5D?$u?SPUeC@xrkc4(2B}p%;QzT z%$k#0M8|=e=rNHwoIuBp8tHb0dq4;{bM3G02Mk5K!rWias0EkCq{KWKN2+KCHKI4a zJSPRuY@b0`FZgICAWJ|yx0M9JmEQc|e(z^C_cv3NLJcsoH@Ds#4I_jP>I3;MjaK&g z%R9<5+T4*h(~T+ADEyY5X`XqbYa~3=JQMr!d$n&crru27v52}x`DVh;JPB$U)25Th z!;bW)F+J@BJy#hxJ+pe|*)xan%sTuXvbn z8Pi|SM2!e@ur^%NN^}o%V2^2O#c#HjTHa=x?k;%Q8P}uCe)tQhGxNLDh z-)2AxbFEjUG3~gLv0*xyTtkt{xN=-Xm1laGM@C12!`SUr@A7&Fgv`;t&xl(d++jh$ zS5mVyDy7i|&Y=WU7#%=zlexJPkee_Be1gLTf?JP)ga8CL(>3yTQcYwuW|9!dF%~)XH@7`L7xsDft+S_Ocvc7wB4P#2yfc5ohW? zi*|XYznQsj-We0(78m}aF(Gbot#<;!c{UF(rOKtG$FRZ+N%-1h(axOroL)rr-dtmg zl;Y_j4`kNU@2+q_@ zV`5AW^8#zc8PK`VT~-<#_HC}$F^AiaKZ}zK)0ox)QL--`J%$x&qzfkElrSiH)h~xD)bXIDyR{;#!S~r zBO`A8<5HEUqGS&DVg9md+F(rNWF`qnp6SNSb-&)2J4I$Ggqmlfxb`IGyOtQH$x4)jNm+#pDnP)=VLdw;Rxw1RSz_PGo{tR=O)mcXw=4MP=kshX# z+Y1a1^A5&ze^deruV>bo<;{FuC8%3Aw+*$*iyMroH&eiy8#oyqc14;I`4SQk^qAAG zAy3GzGMvAZaoZw+4$J0sb<*6hDIpwFjShLHj41WUjvVJ@>~J6Vhguc%y1^U{cAbDqs_3CM|CnSk6e z%f2~x{LZKM%=LNBi81w3iglDghg-9FCb-d{gn&3)5gY$A0l5i7z$c#hYkNT3-jLuT zM#>%#iYF6F;iS&Ya}4g7HO#MjFA~H4W}e$#ch>&&On)=en4K|sAJ@H*VceLv@rEaF zre|}_Bt=KaY+g$vq~H1k1OzwZXR2sdZ|+Gc@l5bc7}saLj95L>Bp-n{zaCdo-xE~| zlOD6P(z{j8TQDXy<^&l@?_sp`q|3=`3H&Y47JD^BH$TyQ+a|ngK;ub_M*sh;puHcquD)h6Rqyw_K zdFgjNo3pfbo~2*sr)D?mOb>J6nK7GZX=E(8SG|Ag#$;~3|JOy-^h|#>3po7XoXY0q z%>>e%phnF}g92O}sO6hUvttjWkap_K8`+LBPa6`DznMXTRKMk$$(sok^X?fPn@PJ` z{uzv^H`7fRiCbA`8aRBdUC~a2li?@ERB5CckPMu2bLQq;SGvpKye1%n;Or3C*SWcm zE#iuFW^>Et%QLL5Ad_2gq#?}RGed9gNhy1C>&?+`?tu;q^JfNhcu32baoZxZIfs>Y zCO|Qpb0q}js7aW+7s{9sHA-V56oX7|e=70huypArhcNd7T}XRobFbL}ItX)^*taw~ zECH?f>clhs%@oCT)o)p6mQgPn5?u#$ZF9vfuP)V_#||j7d09lQoWjtXv)KD>5mnTK z)X$7zUW_^3oirK9i7`E!2lBO-@5zEIBm}g0I_B`n*~uvldt%H~j~P6Z-HKt|@7~^5 zJpaNo-Ks25SP9Cs`~q@tQeZNjRJY?{zW6(u#w?!6az!8JHWK<8=ArL#A5C2&jQP54 zp4KHGR$1z5>JaAg!r9l7sFA71ES!_A4`kU;GxZp*bbos@{iTdcRaqJ_wjh}Yva6Lw zD80@oh4M!?=9<~uYa?qXQ9D_Bktm!J;lfYP^aM07+7mSb=&&sy@iQSIaPO~(!;Php zJkzsz(qr5)jRnVy91SClEifkM6JHG4>NDDA6_L{}2reS+>6sSh2iq&va zG-k6aRK)i0V^dd@NV^H1?AscS#T(ZMcP-faP#SsKk>Xa&=INQdndrFo?W9o>$|U_S zV=4h9p4nowF^89@urVFzK=N^l8p$(N5IKi9+sV>SKCiPJ`3lB7i`w3p&E1&6Gre5O zcGB9(htRh{cEr;&w>&cdWz?#4`zVnn~0$WlYGf z=dl`XvpQ?D8y%4RvHkdy(@9UoRdaZ!GE$w%Kn*bStb_Buopcilf?HL{FWH;Zn?LA8 zS&3eI^X-=lK~QEU*<6P6$xk$9zL_MTgAV8&(=7pARia}^KoesIO@stGjL~tuP1jJP z3r<2s;QlgZ=zBr}O3%bIxuG_cM(cIVz+ojI|4J5Imw*j1Ob9a&{&>Bi3AUGr-x!?QFNzENQ zq`m$46X)j195&5i5>UTy{!p~H1mEn2G3A;5W~NMT_hxPzBcImp)Y6Dui>Js&4Pma* z$c>p}i{6+39Yw|U{bm}a5Vq?vS&?>Qifa_SHS0{{XFgOyT{cI#kR|CaZ>EfyMf>2H z&vpf%!#opNy?Wrh@6G+qRB03!QL{AKck~_Od0B+@HZBNMK(jYy%SAuIA2p}UFel9S z9hpKwaCjy$kD$z#Fjo#wk*FBvR%g;WM%0KpbNk2HFGr0+`JSF>(@EAXN+<3>2T5t4 zU6J-~M+qn%S4yD6vN;QCT0|`gh=HX=`JZ*B&&^{8lnDstF!GMws2Aq&@jkfJCm_$} zGGU|?CeqI31vCkZ_Gk@rkap-C(}Q##<{_JVA)j;eIyZmN#jP>jkoIRSl=dOaRT}xq zet?Nn+0~R?*_3SU4#u<<>C5i-e!iLVOgCnn0p*)%r4fSIk+?-^bTDN5G^Rq@OZ8~X zgy4WQb{0=#ow-BT++7F1#WoO}JX5HV`)IzIg$2i$JQ$PGh!$w8YNUNOmoa^e7RMG@ zXIjy|UY~X5clDU&u0L_0mT%?`KW3Z(@reFIqeHK!`)I0R7nxk>uAEWRK#fz0NT9R? z-<&YcfYeU@gf2b993a^A9V6H1X8K!|#fLgmZ>DGSG-gDNtT$gl*4;BpZw@==>msU~ zH51Ta%mbd5p_f99C_RhN#Ne6Un+s`=WY;5QmGm=b z4rgh^BI zhQ67A@XQsdm^&yTP_!F6bGE!M&-7AVsVI$U#$*qul$ioLp8I&;m+i+EGNz-L5$MQ) z8l7YT*8R;ahe9A`e;xJ8tg1LOn_HN(ywc0$nmWSlSiHZP;ZR5#(=!lZzAzErcQfjOqMN<%EoM-$$`4Ht^xfuPzy|U1$>4%ZzfAWMW-{^V#}>!VQMLArHVg7*dPoPL zBaP{grj&=9+Iittu&2073PaIn$ zrI7QTH#3Sz!{&(RMjijHG;)6oKAI|ph8jJbpOY~;$AD(Xt19c^tj!4{&=E}Np`T%1 z!kkoocX%diR%ekw8GsHC^AOzrTN)E%E*D5gK-vu)ULSt`7Us=ee*}4?F^gxi-8XFY zt`|4zK8+a)bg!=b^-N=8Ob`vK%D3eTID9Y2XQJ)OpZ?91F}-NdMO1eydUMztE4ihw zGtt#^`?iRV2`J1YopqF+S;G9<)^4c^vg=W)T!Uvey9QmOcw8wN9jI+R5ZIN?Imd93 z-DivrWp2HcYB3Y&FreewuB`_;fQzm09N$c@DFqHk!IOmG41%-guv)H7C)qZibU+^F zD%wR%$TzdRnFn&sy)mgWXNN)*=056`S<{$iOxDx5ao&68H3f$~%%ue<3RfBvW3mr@ zAZ!$kY5!1Eh=*)0&vdiq3@Fx__GY3A)q}&d<}+#Wkh$Amku#uXiE`hZ?Es7!7X;4Z z;l5u<=Y0p{{-|}o5b#+V*?HNm(={?q`@4$&yEO8~GCi~NOnlPB-{PCObBXf%f`GrC zA|_-4A_4JUJ}78LV*TqH)@|H^DWyqT;Alyv~y@Ezu+YBWKO z3p+vVZ7l8t&<82HX8G8yiXuF_sl>kbRSJ)nlYK1*L^f~K(OG-0^ktl^30avf8we@qDC0=LRmue z7<)7K{VY*F7}GsdrO_(1;--lY^zsc z?m1impT;Dc#hgrb*d^0CNN4}X|0wVuB zaEHBUH=x7(w6*K)c?30@1$UN4Zp~7(->Ykty*+bbHFeTX$}^jVgIdSWlGz+hiG$-7 zF`J*zkE-C-Uv;M5OnK{1PA7lal3ZcPD4PRxfWTGa@L)`@F2#MzZ0=ER8XYUD>_|NN zn`s>oA}B=!axkWX+h58h>rA(%y_w4k=5Q>HOz>p=&T02iZ1K__%%a`!%!N&r_+~PlT+5#C zpT^Yd>1NG#(%MP8{j+z*-1mK(X%5edb`SV8re$*o2d~XabVu4x?u5)BI2mr5fHKSr z2z&=A9!euRBKCSQ?-1s0%uroAQ6@dJmPXrNIB)Km7xRqR^KAT&hhq-wf z_1@5rK8>klHV|xT6w+SedajN}yxse!w1&D=`B)vE)pp z(BDi^4|1z_^h_3{yFDO|hb(3IJ0zgyq^t?HzapoT%@VddS*DZQq0*>KC*Rj)2V?5Z zbRUhqd6q`y&3r+T33VnN(2ETJC7Y`t@`^J{BP)$e*%f)c&X{yS6Rwf_V+iv!rpI|P zCO~^B(N$-Xk!H+c8PoAhRh&7t;LYUX%DQz@JU7?<>YnfLW@-lHb!Oxm*g%bfor~NZo(Ty~2mhMgVmql0Xw7Wy)-+@81?6zh1cGB_tp@&(fRxR> zd{57GTUO6x6d5`oj7iashBM|JjOiv6o*5yyOh7j3g>~JBIdk)Mf*Q$~{(5fh6`(au zV`9vc?R{l)JQHCf*j!&cGaO-X1831r(Y~P(wRQBEn_O;8?2jKau>N5$TU zZ0^Y>bU+^PnSiX$G%Cy>UuNt4lj)@AaP6h#5zpbxqj=1XDR{7z*%RO-khx;0UgCNZ|+-s8dIf_Cm><&S!Y_E ziLAu7X*yX@qiw$@*<8l-8Bm;?X9r~MA**1%yltk?va zAnk5Up+-5K>^!q@+FK*u+R1WZ_QNw3=3W}bee+B}#va`7BD~W)^9JUauC53xQmL-r z5`qJQV>}rb1V})3QlKau4Mn@c+`mG(l*TkXlk>6#3KrQFVZF+k;iph%$_ricF&?DL zff@qN$H{tMeIVZ}(m3W!@=?b0*K={RW^Z0mqxBq6BO7FVE!vyA{-jLqn9Y|p%z$dq zzEq^64|4$>?vF9dGn?<%MbRFPcrvzljMQ#5`@a)VEZXzUWID-3?y`^8N+Y(-VG>)n z{%>PO&rD-7)#ZUK7?F&5qBGIz`1U+@@?}azUL<8ZNju5;fMX3e)GW-`WtxDRU4KGw z2V*8`MA3d+Xdl#=uI(h^F_kzxgt;3tOv}@lp3dvo0?DnOIm{SicB#s%%OGFodHpBp zF-DKEZM428U8C#qmtS9F1YCDnpo~4>#$6 zJng8?{0T*SzM04JdJgU@1!HpU;zWp;UxqLjLgX)HToA~y1&X+U8ev1twk<%BW&<@3 zZu#Sqoc7R8ntF`w>bqwa^%&OuCZ&-))6E)njk0LB)fJP&c4HQxKb*%G(*<4-Y^5AYM<1Zp3Mcp<#DCX zm@r`wHhLG81vP>k^DLWHo`Yw)F;!hgPJ0&ZR-m6qN3d{2rTbg@k5vkHBu^aWHaAPL)ve^ z;r`9E2edSpe;QMs>0fC~Gp2Fcn^@+%G&=U}Fkc;v>6u#{c`Vv9%+WPE*#}TIHzkCV zFrOqK1-F06tjW(@3O|!$y>B-x(@E}5G8dYF!+JCIQijqfi*^e1WwG_XHl3`f(Q;0v zlWt7;W44oBX=EMHKByFKPzoo#xxbk~qeHc4LU0Db;hRD51Tj)Zy@95$ z2G6`7uBgQ@zu;}HlWgwB3=0Bo)+~)mZ~iRxWM_onu9Dw}(nujKv+B3pwji4yXp6Vr zv1Ie(MY}%RwopMNf6SuYGBR;F(z((E%+SU5R6hldwP6 z|5mhT0&>T!(@98LfjMk-=58x$pPuPqt^}0E?2XBx5T-ye%uVg2RGxn&AWbKQx#w0d zTfL@ISPr6^PC-YKOALg_` zXHn#kF<%Fina?+K;+bJtI(3bVhW!9)2x%t)F#|$%_|ur~nZbm@kJ6ZS+X8~j0CcQZ zt&D~Qu3d?=)Oz(Dr zXJ$L;8K?}@Ze&~|YQ&B&M^Y!Kk%xJ}Gxb}(ndMLjBcIq#UWa9+2{^25?mim09cfI< z=HTjK+rqN>3cmTxm@;AVGd;?!H%E4q);uO4M2I=XGAWJZk3x;YKrKhTBTvv$%8BB4g{%}hM=SRo3(y0Hb#Ityxz{~E$v zp6SDic=jvRWAMxs(t+B^?H57^EzyJ?Rmv|_x@1ouF?{j)S`5&sj68O9a~!J*T>URy~wtph@*9Tr?EH2c!XjTx{a ze?3#a%<4><$>N39?vy>Cdu3=bV{}ZyJospmU2S!Rcn+fX)&X4{1ezf2ZcLR%0gOwa z1E6DNcd~SkEzEf@QOTVoAT^OnJNn9P3&NavT3o6^r`=9hl}nTZ(4o>uUm*cy(Qdst zq(Vb4+nY&tKc90_XL^{2mog-vH0J+P8p)Unc=>3)nZLU&PSzEw_GU5xVqsvCfMh}s z?g(^bJ88EqXnE95mfIFP)zN3su4Ln1tD80P%z|fLS3Q}gH*-f=Z{nFA(kh5jil>9% zOeE^y#wd{pdTgw{AEnNnTcn1#$;?kYu>+^Xu*}1eK4lp zOudx)E$d7)hc9+l3K_=3{G?%@EuzYBB5q}Ah71B+x;* zzOi-MpRhSz&UK_GRF+?krR_}LxtG(2-U z15!cco*5HRc0dJ!rCs-pR4QxggTR> zp5Mk63htB^@7~Pi#0mRbz4&Qm%?x4gX(t#{T~R`CcEposv+)O;t`QIEgoGetI?^5> zkEF*GpyT2;l^5-G)Vs|X9qxr8n=2_L3(i<@)J8!I4i?4e(czC zQX2XD7(COxHH~S;1Zj^0wKAQ&Q118)b5RPN;u^u>40DWmPzuF56Pes+Isjp9Hpv$>T99s;=gonM0gh0`bIL|QyhgBNMN0rwTY3IDG4S^OF?Jzn@jDJf&0*BKx zJI_Q3fmPHl%%QlSU+)14-pB=k!I<>s`@n*`x7mi8XLA`dwcrM0g0&B$-u<~|E7ERE zh56!qxLm5LOI1wI6y`+>?mA})$aA=Wjyx37c_zAVJdif=aiD`E-Sr^qP-nVlN~KT} z^aMI+C+Wd$?=%_{T6Qg#24l)Iy)=r(Os>(fFaugUHEak7l$jFB8sF`a~vy?K{_P{ZB_o%VBo zj+sc*B+R24c0zCl!5zSto`9@0dbX)dt_Erf?tC-dHS5>{kq#pYduc>rw0tkx9r8#q zQnzJ+;I93-%Qf?6%+q)Y-^ED%&6JQ?)|qu|v3^{UHU+cKZ0^;i+R13ltTT<%4n0O( zqr!q?pf-Wv)B(w?Dw47^q65MQ*;EN{CYr;{E3I1}N+UO6@W)I*{%DpkzmO7FHaB_< zYBJ8{Y8GS$q-@@P{K?f7w`H9HQMO~hmd&?cyPbHUcJ$$ysx$TFX3cv*+yg=;7b!S- zCS!|dUGAA0w%$xHjUv#Iqh8jbNj|0DX{8Y}bBd#{3CN9^N(gGv>1HvlVH*ly1zJfYO+(`*C)%P&!(eql5s}Xu{}_ zG5u>*FO+p=VGfhIm4M7MS2!J$I#UVAgIkoDY$xCC=CN~J z$)3#N&GhOr^gTHPa%&c2QU(p0!>^|fCkJE7Gri)By?HV^ObG$;>sV)^>w533T7B_M zXLLkxIE@L`wvm8TXO<4=1!v~dnC_2SKUI;GGazO_Xy|QM5OAggqL*YY^l40$Mlx&2 z=2>S_XQJy`B%uTj?}sU9euTM<>1iiXBhNo&)cbI%H!z3kfc726<|NEz%z&@^UzSLF z)#xDQR5xsks24+^PtR0o8Iy|gJ*4o`XtCq*2FeZXq_X+!E5%4n*T}$3D}3j)l|XOfQ!^OoX&;@BbwYWudcY7w|bw38PbfHN&P_e|mIaYZ`o zOo*-9V+Upx=4g?!p*HEwJ-9_e2(@R<&CA?;ISb%c-%Ls)Mi%$%Al<|>^UdtvOe7zV zaKfe%w~l*)XSy+Uj$sS$Xok7fnXH?S)5+-!NMkhh=AoU;4u}qjMbt7TSC|8}&*(9F zGra?f2`G(e?c}T9w%Bh>iO2q3v}-yUSEREvg7JnagW{HLTOdYSWTS=-NbjSExf;uy zn-_lO{+1q9m;)OXdgfqEe={}t$)Y`G^ZjH#c|CEUhC&o)>WVe7Z){nabuK`pM4( z&ty-Mg@A6U3S#y>)6blgMrth6m>3fwo(J{o(3>Oqh;aMY-dvukyq?oZL)wic+)pQu z<(g3n-81!4MtV%PlSX$#;$B=Mo0~5ilA51IyBkyVnDCXJS(Ol~ka$f%26XIiW$_^a zxiM85EulA0&tye<;bKk1Gm#vg3+o9r@|RL(%>-1YlO}l5jV)NVxW3PTyj0ignZ~T6 z-WQd7%;t9Ayj-Fj!d!Kxs!M(4n`znnH0oAoOcNvhI-PVAE(-k|Ti7D1olw)8X^aji z?FD-uJkt}9cpOPWh(HH7)ND-tu7mu7!2T7_lp1zw4tK^xq8(MJuFj;rEUbjT866(x z>6xQ3H#9W6HJg(s|{onHOBtb~{9n+%-UoNUfP?vHi9 zr>3OAGnIh6&dfKn_sosU$9Mu)4A@9An@-e51!OP~)T; zSjRiT2V<(Hbk7v)C_A9i0UcD8RvhWg+>nEtY+HDkhmJh=fIQC4n9K4idT_y*>v_&r zS3HNS&WzbSNeH$(`92F$J+lzEt|_I^JyXVvcxD>2?oM`ZCeq?uWcW6=kUxfi&(g?% zj=;HYOI4somXe0jNMY_TWnA}5&%`r%HalfkQqPU*s1rJnlk`>gq~WZXd#2qh7s~PT@*^X5nX&Y072Z_GTh7K?0f-?e34^%?yQnCLkz< zD+JAV>MnIAHz#4gwx2?s**FS$VFC`AflovYCkqM|vKq#`8HoSQz#@yNKok4K!nHpBa8$s!rHl0LzrypAY zbj)sBD4TmKQZJOKQ7Mhc-d&vu+4ZSYp&`uOGbNLoB2itK+uZy(de3azet#KLVV-Yh zZ%kICtGr3TGuib0)=sK4N@MoM#50{H+{PB%wy?@`@XUYInVEo?nIlTLc42-q$Cw>H z)|=_WimWp`&jjdL>&@sE=I2fVDp5Xors_=3=5gOVJrmRjx@(#ExG|UWJeCsY{M2GQ zjxF?NE?&N8X=F${QrP`@S&;V)rHRis)5BcZ{Kp&1M2(8*J;}UGe5z*_l|n2$F{Z-Y zzg7?UWWm9L+hDdL%288yL5*%02nZK`@yt-PyIIqi7<1h?hgv2+%`-{nB=@hzbbr+A znQx}GlMH;=)pyUVs1e%YpPuPnsE%A;X-rE%M%oIudJQ$ATq;_xLuu3!dmzQc4k*E4 z+D59(u(|?s_yXRX-2-yZl>R|fk4fSd#4Wh4-P{~IvTi<^0m+!^fI?}MMf+jr)5_gr zi|N{%?;M_-Euy+Hm3H)%ZzgXh9T3yAxKwqr9KaChO9ImFWMmGfXPOx4;#;THGq=q) z1il&5=jKT%j6jEp-Y@lFO{+6u#qoxIdox3D=bP!)v^o=T_!$M9QFNY!`J`0OMO3#X zqW92RxxXEj_m|&ip_?q?JVTx7#?(t0A-H68a4veew{Q;#pu-57-?O>OcNsV-g_Tmc z7gcsIjX1h871nbIPF$l1!DTk*&D_r8>G_%4zI@f_P)8oKd3Hb>%jVbJ#4-y6cc80B z`T1EI$uqqJigWYq&G+@*c2l`;^cXG(aP4B5jV)wM4J-7OZ>DuX57*2i1b6aN4g4XS z%a~rY=bITzBirh=Igop1!87mM+x3>X<3LR&jHOY&nV?3`{*-$G-T`qT=qOy`!84t> zr34h!urr&J&5swd!<}bBC@lGXFlKYo9~m=8y+fFvP~PHF)pfH=IV;-rW;z%b!#q6` zJkugw(@7g!yh!GgftrW8_JG1yYQdQn+;MT<&%=ECr7vIC*+Dw@$AD)hYUFWl;4sbk zkj-HY*J~HUo2fqBzf#%NZE2?xQFdkC( zo2hIr&s0*%4yd3;$2u&cvK#c3Yb2ySo|nyRZj2734{YKi2oBZz*@l|3xq>@*W`e^u zoy2kx=%D?1Dq&_wKpy5IZlz~-35X6z8&q{ViQ+Km`@33d7VLU+hu|U&I}^~(l`7Uw zZG6@e(E03aRh6|hehS7^+EKu}S(AiNrjwjfDknSjX4)p|gods6(Nzjl384>jL^_I0 zdzXOL*>NR#rhjQpnVxB$xsZUmE7Gh;Gq#w_%~iDfmx`oh4jT>oJ~#-Zff{2A1Rtl0 zTkZJ_5M0XSc42PvT5O(r0s=MSRwBoGKePGl&GgqZ!@Pt!GKD>!iB9|KN)yc;DUJN4 z)ar_UOJmkIb2)Dn?PUf8KHR3iGh+(HjA5R2rfpjsXuEot+o+dz@}A7iJ?$umM^1aT zljX8st&LjI4$5w)SU%rOFV#bs%fL$-^MKgO-IX}DU^dC4`OTQ(8bwNBj(SbNnTQq% z!33PIW&KKzk!Qv*PY8}t@BQ)${S9=Wt2f(FYq==YnZl1Uo0HAg2TAsDUY2YQ{RrKt z&o^^o%tb_*d^2e$H_lX*+}(f<-b?__Z^jglBSLWbW^Ok#b5?spX|%Iu^;D6LzaTjG z(I^s?#@x=EioNU254)(gOtvl5PP#Fb*YnM^H*pHy_EVbr;|1}zwWcA zVLxz*%Y~p}2IQWZ#4TY(`m)}fJ)r#>r;`=u7>wz`tvWOI=2>Ujf&gCF106_B6!Q+o zR7eYW)6jQGpkrU26(t_ElK>rTpfAS+X?M?5+KK$kH0I9TFUq1=8X?;b#p5e#UGC78a9j$YIePuC7W|zb^^iq zs8`0!t=?!%#unF6&zZM@8e6^mHX$K+nCs0<&y2>T3Ag1wl}6>wMDb)YP*Vc(H#3dd z8Iu_h`xd=1m)Ab?OgENLjr7}_ zDdun_Zl!0I4(JZ+es9k#pwSTKo`B?;u{280G|%KVukcKJGg0O#D+7NTQ*UMn{q)T8 zX7c|$0aedL9^w5{vlbnYJk!%o7_BAOsL*4!tEjSv4rr$<`eIC(Frr2o<^Ub=*8|t6 zjCxVxY0f(JOvl`_H0tn7o0_jZ3+^!f>!dXDFb|&T0iPX^bwKP+axXr{P3IHx zypRx%`yP%fp=tJY)Ej^f5wf#1veL-nTt$1CP9pjEEdhyZl442X#ZiYH-rk{fDJJf4{W6$@?rIIt5attOO0hj}_1djo$eC4PxE1Xr^7WjpuISD5jy!H#q-Vm=vNIOZ zGdT~mtuyr)_e>$}>V>icq61p(>X+^DzS~JF+8L)ElR8tz^u4sWx{^pci+u|V=G`6; z75iCU(c#VXY_0?pOQSR_3|A0knZvp*A%SC@h}A`Lr@X}vieQ0JL;JF(0w2hWr- zosb=G^=1Mh0ig)hX%2I`%5=CsJ=0An&lH6#`I!d6nczt`wlKky<2$3n6HwGO%7Ge4 z`$jjZv4tV+NF$V$fg#Mj&eZaLE>$_uQ_eA<(XkeumXCTNB|LsRq&<|(%{|N&+;P;K z3CK=Bh`MAzhf;37d0R5MVA;7@NbJ zDbMt=MFfXaCbx7zrFHbusB}QP`t<)aGtygSJZ=w4TpcY-mwM#q7M$#haCY?b^^E~0h` zs1OPl>vz1JT!Gq=ny5cDyV0As&mYla@*YrUOt>2ylZ{2YotM35#&plr9#9;p<(mlv zw;*yqLU8LWoBNv?z+qov$)cU2ow)^;iwWr7_|Nn8&Gd>hDTRHQzYuH=ltLTzBE~a2 z$?cx0H#63mIRi2h0b0v%R)4jqsuAcc7Vj8oaQg!%m{g;1+A33A}f37)B< z-M^BAForo}pq|mOU#7zK;h73^PdkwXmtzZ?o5NsN0xF#L;~yJpZp^p`l*TMb`+Dom zG-KLa=)b+05rRw9s2HvmLahS=&xB-XQ9dLfFNi`m550MMrinzcI@x)qvEs_gz+g;& zGX=p#JTr}H#4TRUw;ML~7`R65r&bTqn|nJcV@3!rjd_%70qB(lpaZ56O9P)_u7bz| zUItDYw$ZTPrK-sF6v_K^NWpd)8MCU~+`Sfk;Y(6FDg9#P|` zX1CY@X=Pu%P!{cFcM`%u&uNE*u*^8^&8|UnILs+C0a*fqoEfH*mVl1eH7ku&2DuVK zD3@|SpDadjm-AVZB-cyC^`m(mD9&B>^DV$8U@k_pK6 zfN0JQBWj+xn+pCjA-npU84{2WFtRkNrO}BrrW>=ond@>+_?hxdH)~WW%(?l_gu+%O z-IykLf_2ZY9gzEDE>(399N8QRX8|4NncD@;9rF%FyFAky%hk6iGt4W{fmTdE>g9am zY1O&f>S??s9%b5NZOQX!@md(+8lxG(GObYo)o#`f2 z6B!3;nSgfKgE}%<^fNCL=$NS#YC5SeA7JF0Ss*x;{aUsuquzU6ShD&yoz%2EX7lt+ z=!6%LW>*@a`N-DVmuwz(c@t^(+Nfmn#kTvr&aCa^KeXUfw0pUfVU97E=V3_RO(%CW zqGr33Za5+Bu>(q=g8;v*3+g;`KdzY)f{f`2D6F&OQk4noArckV{fyD^qF|a#CuK~9 zxi^*>=9bN0XT2ExMvZtgfr{^$va1_YW3(9N*#RBPx*@nFJahX+Xo7rh$^5V0T%+Dt zwC9^yz+pI=-J7|xGBBw#J-9<}oyf@cOG79S@&{5{*Ymk*FK*!1^5au1;OfQJk0YyAB+evCnE~541LEu2^=&Lc6fZ~Q)dZryd=4Q0sOxvA2R%AOq!`wYn##E7% zWLMKQ0tT*UjvLZ`pIk_twUhp4hTdFBDd{m5<{-gKj~cz00X2wo_GT)ZM}B68Ia6M4 znRiD#*)``-)no>wF!$;*wv*Wb84de+wSiAtsyfelMw-YEp4mPF3oi0A)0jwS9&lmI zn)S^D=-|a3+~{C(7$sR2eNAQBK*=E~5=jaeBTFknB8=?O?hyDH9v;H=I>yKE2A z;&|r19Y?7=hYo1wnF(}w*=}PC4pl+YbkAIWPl!gxtT$Hzn!KLrnWY0_I=OYIkqPU~ zNC+~fn8S&*N6#diUoPX?vN@>H1kco)>Bfu+D6=_5`w6+VTi!QSy_u|p-b`n~#ojz2 zIJ(J|ohl*i1%lhA+ZGCQ{}PgvZ{`~{T1HAC5Zt8BRG51LN@MzyY3CT0=j70_Jd{m?`%^Aa4n?~g zQ&>^dHA-V*%mb~mt~ck_1p=j??WBjfz~LC?X-pU$xFLh`0CcR}0h^uu@*FPaur`7+ zo0n{Uqn0^ibO|97M!u*I2k=; z^AqCmq@DBxq-?IQ40Ee9@1?G(2pmR=v@H9LBm_6+9M8-d(0(xHMSRr5oKf#$2WHzO zqggOY@yH+JR&N?}-w(#RWl^P#dQBo13hd{b>F|c8laW%G#x!a1=T)}Ln=wsunE(4U zrs~Y*u0N56o!PwD@+@-AK2SpgA4$zmW2!WAJTt>Q0v&iJ08wZsjUK~QflAHBzRd~a zn;9VCMB3e&OeZOWpth>cTz;PgCf9##CzaRpRxhOy_o7cGmVz^P3{@c z(Q;Ab8hOBHJ8A7CCp>}Sf@dC7O4B;iLs}4AJYkbXJCwqcW3mc!D~*;LIk+!xW-z83 zI6c$wOelqW5Y{VW3p&iN(@8Jd;|wT0bKgil-a8gqiJO()r`}`ei*`>y^2|`aXEw(( zxpB<)et0u4)_kWc(n>&{b^=VC#8tE2wZ9!gN7 z_Q|yX_ileZ6X>uo-|S$TIPL4No#g(sCKh5ohpS0rkg=AkqS2`C}B!%lL)UK(5AnVjU_3j65KF!$;*;+ZMMgL3A>VwF}`km7k=C%ZwP zo~ifIjTw5O6uoENkD)H@xhEhXxN?wg66OwcNF*wHW`_BJ;$s!j3tS^wqEZ;~(FY2U|I&%`{syNd#3!~#g@I(oyFgmKx(ck<`d8Q9Aa(N$PBD-^L z-J5yS5!Gu9LzwHObf6=%c}vAWX^eW=)sK>oY^W{!iQ>t(I@8S>`I%W7p|15T9JlZ~ z6Jv6R64BvLV|q5%ODPU<-caL)8cp~Ot=)~e{c<|-H9cYD{;2JrXw39XdUFo*4rr)aa%mDyymgt~0}&G9frC+Nm;w z7^$(~uDeP)55|-~sz^$aD1S5!=z!1;Ps=@%Hxm$Px`?U-VhHY;+b{jlO+)!<%zt=h(qoV!QSjX(wM;Q>9Vi8eLqe`wVk`Gu4}i@;yD% zAUJxRup(^`93!A2Xf}koLfRqW$c)Pl$c}j0eOZ4q3G)>huF_2o##D9bkVjni%LHV? zdJi%kZcGvoAwJbp3POQC_qwxO1!5Yxat?+l7@b0ihl<9re0DYK#_p^Mv3I z40_)&dwH5-I$>?$^_)re3KCF&X|{-S|ko74W76!G7lDWD^b*%=eA z5#zJB<=PE3R@5e?k;2@4G|tU4o7gN8q-w^ zj>{%|zN8r7+CREdfC(e0>dbN7`eUXFF-rNp35NgkZ)z$mSEzbbl0T zq<~M)taEc}bcMMY6L#j;Y#x9PuQ=0~W=ytDpRkAu3yzhwtw^8@MZ0^ZI-tC7-jzlR z62ndtuB8z;JNK3TDFH>GBi~FYg$rxE-GYFTi3|2Vc&68xp=i%Ach@A$F(b8RXG~7} zohAPa#&kSWeNUoBZp%6YGG43j%#zJvzaCn_WVq|bvjUMx#&mmM)EWL$$ZzDtFNQIk@f=s?%!rW z>e7>hU?c?ePAavvW^<%?UK^ucOXfodm4ptA^FG)x|X9hgE3VQ zIXJvzY2nb6tyr?igdhGhl>(!PQYe}=g{ z)0@b65jC^9747SbnNRD@Ytc?e`DsjVC-r7VncOsHU0s2P5RADmTveNZ!}3i3N`9t4 znWZ#hrRpkozq~g$?(3`raubF(Q}1XV3Mq#|*0p4y_GTI>yAnG7%;uiMBd0yX+&ZBB z9xkGqq}c?|bkEeAsjrmcG0oxaS(b8qp?T)Lorn~EOF#j|^rVy>kaa+uUbqVzvl$ad zt!IzNI@1j&pd&}UeFEYj9r7_Tn*$D4j>qt3x-kRrCNM5nR|?X;AtTWlllSr~*;Qel zy?OM^ecP7B_^z$aWT0lf`d4~PNITx8Cpc{2Feg{8aCL45HwvfVwCY|ggd zI-_9=)Np@H)W{vP4%DvAw*lS*HQO5amdzz!Che_kCut`+)C(U|;4lNVi)yJ%(*Nv$ zJj?^@C|Pi@;Mg_yi=Aa`LATESej5ulyTv+FbMxq#3Bduu?Q4`TBby^9bCr4J;F<|y7DofaJTfi5&PKi^Cl)5Ba9 zXTF&>wt#Se7DAWJw`aNsBxCwaGSaZ~f&i^KoWhXJjX7+pQIl-0koFv&l)^3nVYK~) zE@7xM$>oTPe}=gmQvX6O7?+M1#>zN725)gNen;VvF z4)(sCUxoElv_~3tc0iB`*#c^#$bx6CKuG64A-j5*3(w54MHlAO>+le|H`6Y$6q4be zVeSDh+H00Z)=nbqdUWf4_sR)@GGZHy>7E(hOfTQlm>82|bli}Rqh3yja1qs#`F|Tz zuV)(5jL9`Rra;wlH36+KG)sQ}%a~z0=>ijJObc`NP~pP_V{$_c>aaQHpT<?s-2uBpk#FH9RFeORAFw64y47aHL-8A8*p*^jM{|WrKe}w zoB3=j2Z3Uk8~=4iLYN@!*_-!uCPh1tW;7;yD^pIphk3~1UM?j)rik9Jq;u;hwQcb* zw6HRMcr)EIRjQ|Fj-JV#$-V>Py5Cm_PMr2gDa^4&xoxq8>we6DxXy5TyWX-63CP1- zo*BN9xW%Qa4WOgVC<@SFGohpIp!eBa@1wo~1eZuVJ3wsqg{@wr6moFZB{hR*w$DG* zW73#5wxHvQ#4W}akL^!>NkDGah_q+Xz8_qd<%z78D`9@3c*1X=#?+hX9eJ*d~RnjKd{PNoF@P-iObcoVsKz-K#Ys1f;x zX>agM%Ral4JesvS8nz%|d20^TK#dkI^>$*Uc0mA`^YhJg&lJ)g)njs?R^~l7YCLKu z7f5ig!tofwTwds&8Q;t_=6=G^9C~vT&s5EhPff_ETh#ME1Cf@|D6fz>3wt)CUe-Ixi<|Pr2Sn7l~FHs5v=w`KWY~2>P!_$ z?f+(-CBxhlw{F*vcpHOxLGw{> z^vpCS$%aX9IAH_Qe)H%1*)K2JGXeD-5S;d<; zP~$$0IhmWM7Tj30>&Dl61_UHGQ;+dCQ>al4^DNp89Olg&Avh=<-#pXt%-Bw5X~dh! z9;(T5SW#J+!#fuQwjzP@XPxQBj54_ibTG1Dx1ytA?_5vZ5JRZ;ZCM9AQzrCmp7fab zW&#YK`%$XO>Y1jW2`$@Yh^NMMvqqpJ>rCW@xsw>=%j_a53%s)gq&m}!_RytgZ(e%y zQU$d)(}0fkN93$TN8}_XoUq0>OFOQ8thCm<;oS zlOU)eNbm&De3qMai_g+Xp6LOvRFtJr4RbDXcgD0ZHxbQ};9GqT(9u4B6x^!BZx_^}~)7(7bnVHT1UmcL{0Y#0D%;wesZNS4d+q9*scd<0IlOE>kfFcB! zVa}+RE7C!waQih8$g{BA2V-i~t7*Av&s5y{-BB1u3_HG=C><^9tT%VVDFKDKP?koe zo#a-cI-uH4K858zc%~QaGNw{d7VV{Iha6MZ0mK|8?m3@WpV3yS$LVC~dz_G+#w_6Q zdGkt!1az-R$ILd=nq7aiI~fyDX7i$JboG*t>vi&uetM>7bA@@HW9T5b1yMq72n5f( zP$)cRB2oTk>ZOd}aMEK~>b)tBlz@ym4D!L1)N0=r+q{`7jXbXl@<=VXw-(&fkzJt? zZ?u@7#%y*Cs8RIHd^4#hIY-yynW#Ws*z?0P<&TaPMH+U7d0`IwYDHzi-S<;vjfOf? z3CPVFLO+Xk6TOEE6BbdeXy3MDwuq_(r0PD>f)s^+qjk@M~U1`*QjJ;5LCT}K6 z2!KR2br(F7+YIpFCLNH1TQ8+v&orjZfL`yjAOYxjYB%{;HV=~@892k7FsDX;$_{T^ z5U>q3?s|UKnO+)cY_Z5k(=!X6x$T8?EzjKPh$abW(oQA|t^+zY+HljwZIr^2&G#aC zKavnUn@c8FUx{ZLo_RfI^~2_w+?_l&3j)HA(wGHlM{#%zbC?O{t3v|vWTWab zZm1>DLF>4pDxnUDFlPYtUGPNsdJOX<@Mwm5$1Lb zHJ(beLm@yPvs=9$=7G4S*E35a+qOX9u^U@(!seuq|9msOi430U$Y%ED3nT;(O~ybq z+Y~(W-rmjRn1Ck6%z;{0XCg?r40H2~wcgp-LSgO|XC!VV*N7EqW@ka!m4Vue1@zfH zAUC0Mc%UO>Z~n_M1}F%vsH|abwb4vk+_SlWj^t;?FfVWB8P@%*G~&%H=KZT^PjFZ! z)E5Z|sGXsYHIEH7LJb>k+@zgU0&>VB?oMV0ga`ts7mA2P>&-7#DX&s24W8+5rnp8i z0i`i>VP24S=MR>#1yTQc&6f9-fF=Q-s8L0Yo);io zdovBsWNXds+w3+Us6~2A)|s5EVQ-~dU4a7k)Z>Xmn9DP@mzKS`$GNqWNEF^>tEwg- zlj2$L<7=I%qCK_X+?MUQ(pG3%p3Onu*CJ>(c&4(se?{U};+ZT5*psO@6A}V5q3!$J zT*mZ@Gx1EqoI`%NVJzA=3ZvI7%-wM6$fIXwokR1V12upS{s*!hZ@f5ork6%S+OszwvpFh8 zdNXU$j!eg=F+J_bn5#FI*#Q{|;kAQk+T6lRqxAs(m~f4hfZVK6CO11E=H}2dL($Gb zI<`>ZC473Ozm!^$j@djD5D5q^p1a!vLO=6*CZ6g3C{TNJJs} z`01IG1SD=pzL~t4fSD9WGA0QK+SZGHy*{HMo4aSqA9Ds2vpF)kc9u%n++=c5X`ksD z>CJT1Xi3z_ty%EQhclj?XWF5VSqIdd^e42FGH}vkEX*rFq|ykX3Br7m%{|QZQpOoj zmPQ8zxYA6@n0Il^Ndl4=DisB;Q34$R9S=qNJKMZxK#;j+>M`z_0*52nHS0_RI?i$5 z{7sH2&e|SIWlYjRDg~P zX51HJhHUQrdLr$Hv@dYHU2<=B@@6WByN^a1 zc9up~8eOljB5hJUph%UV*}s`y1}Oo>)s-yTjkvXNFd%v+3_}LMpV?f-bRUhLnFBQx zq0nm%7X(0!R-2knz~PB8V**NJLc@MI8Lb&mrD5xOVtXFxfZUi8y^qGsFsC#+mm4%V zBp_P#%MVKjV|sAQgb5DEY|h(A=5DFGZd>fnhJ8QZOm8Ox((Xl4)|nL?UeA)dRkW|i zUWM@gJDaOZ&kl&W`MR+1C!oW6^NnHp1kY>{pGdo6JA4(--0XB?R<03>*q>qUMSJMYy+Q=aM6gSerV?Ie7{8)1nU=62NP@e@HIo68GjOc^-qOhekyYYuAIWd_7a zpvl<6!#u1=JLaC*ymmm_0Z`NuP%-At%K2xQyJxDM6t^RdSxY01nGbj-YgLmv(?dEK zGkbIIfr@9c4!sD1GtUHTpCup7D14;<4&|`cXK=c^e^BVaf0eKUtIx}wdrZF)l z=Vgmfdo7KMXC8F{aM%NK&kU0vXKLn~Ntjcezt0@IF+t#t(i08Fbk9_n$MdpTXYLE) z*Hzx6740{uT)hx97*pBYQ;`N3>6x`O;`VW$fKVJpiTLBq^e~ra=DxWn^Y^|vH&zB? zf@XfJGegnd@)PI1Gt7%f)D>88bvk($=wk?T_e>cx979fHvIlf5a1J!Kutn5ud&-*C zU`&5ArJtFlQ5WWxfQlliS+3NXEC}3{Q8*aWLs}4AygQkACMtysqe!)rrcwxJvrL5s zV=BzOiOkX{dM46k5DprwUgze^cCt|UC7TQ0i0x#0=Kid=MS87+iZLzBr*)>POE2GL z*39P6uy<~m?~Bp2TG0+C?x@#$hcKU+P)RAlVH0pZkEg>kng1;N?C#{mm@40MLBKj7 zh7|0bx@VSwT0N0koVBHJNC@pSoK%W5>@3>tBzL94c$nKs?mEc$Gt7Mk6pfh>9AUm) zuJ2gtOcbJQuj(_K>wWaePh3Pz&!huF3*n9l2zl(~n#ts<&h&r}1B^^Swz~3qU>Aiq z6aCDGbpGj?o`BQ==_^SHg@nMZ_+i@u;#T1j4{xUGOz(iyr6->UIp+g_IwqrDWpgpv-AD7yEHj`3UXe;88}%M9_9;KJd5iea0p&m~ zLU3$JvK|odOpLib91$>E4q+a=u>BRWXwNXWMO3t1^=58d0%N{5%jO>D0p9S&GQ+%% zdY8NCYqhb3iQc2S_34>1rdOQV0ks%qJZssUb@NcP+nc$98cq0_6BA}>)ESejlXXUJ z4`cy4*u8+~(Iy!!>riJ-jF~dIy)lt-pGb7NEBm|pI zzRr@nTWN%}ID?C?+ZO(MMiN54nPhX@hK{3NmiJ9>{GYOUmPTEjxhyaUTZLY-IqT<7 zSqvJ14u!dYg)Tk$nVkKi4kCYh(GEY8xj9l3pPo4>+BY|Aa*f~`5$8KPdeN9%L|tbc zkV+$8SV?2XFt45&xJK18YvnnVMxJ(r6-CYAOh8=sJ0Al(8Vjym_d`?05YEAv3Ug<4 zWCs*IlTj~(jzB4-&P27av_zvZ9o|q!p4ogbCiy&Q!Bsr-o?TsW&kSL%(OQmrxgc=S zoQHOD{XG{>)LAY6r)LHpM;g;z)7r@e%3FV{*XBP3d;jyz^nm~Iq?DzR(Xb&9`jDKW z9g!%`fN><~(=$EHwN#aRK<=0}1LE+)j_g*A>56A^^lO{lP@5UkA&*3j%$R7A0&PTN z?f@Uoe{C%evke)u{rID~P#V)AID<7BYQ%K%-qylG;HPFcjOp*AI`V|zVwmsjT8LOw z-b_$-a{RY9Q*~x0pw5_-MyyWCGifJRgpNw(Ib`!`4)?z->r5++Ud(l^s#KWU0{Vo} zA)v#n%NXX_n;SUHg0vtw>wvf(GE;U{0`lHmMN%f9nt<34Fan`G6H5Cm0kvH8BNM8z zOk);f?mL{q&X_E%%}OI>b2n?G$0Vf?l$|})E&-8y_-9fYDa;)l*45th%o^tGP72Sg zsL@87S)H{xVOO-fF*5;qHB;J2yVct-2%Pkn&X@_t^lTnpN_lIRM#j%PAhGw^{9tPS zmDBE}(W1Pb#w^BUx#Atu73etjjjrf3%)Mw=I~f-QG6A86jZQB2{aR^c$CbE~Sa77F z15!5kuQ;|y;?{1Xv*)oXd95?SGj9Xsz9t}F3s^lBWj23jb6OrZX3gg7IUyk^%smyQ zF}rMTE7DK7zG|cbz@3DGfSi1n5bdb6{=v&^K_}BP#VdYj<3fXY6)~0rEq`s zo=H!{Uhh9;^So3QJrg7tN;@|LLIQeLbaN+lW+>3xUm^58r;|)4mjzj)qDk1Y`AuE) z<`nW%2y-upLI)JGc`}C&4%l#xK?5}oA20ibqS6tSVhA>amh&Pk7h+#tw5&}4TrE(3PDPwwdnZ0@EnKtd| z$*y*HvMRR^#&j9gOL~o95;zE72SC^+NT&t237qsiO%v z?4GG%MZE5p*_^DsBM8-%MqtHU5%`vX{Pk48XVG3a)Sk%bAOW$VRwbQ>F!$0ZPzv3w zS+rZxPV%lgdJP;#CijBP_34>zOerBm&&)74N+G4D25Rr3eI}FZZ>CI`K*x}P&YS)b zKWv`KzB#qhw>LAG(CG-N(@vPb&I9=}&CSZ|>!LzL_@aWje`)rOq?a zH7e%)D*=hg9#snS&BQJF6ZXyR&4iRN6!b6xYk{+nO9@dPF@F^_md7tsFA0lD0q_mOw=APT5%VorHvNJ(QUf&zxlQ+&Ayv%;kmR$&k%q8%^3t_2vqA^+HKPFw}_N zyy$DS1Vl1_xFh|U&1Fn~GgH?ndM0c7DDQ+0$aIZ3`c+=hp)^vMYg(SYxm(ll%=NXi ztRIT@lO?OF_&69-o~f@4^Jq*1I?iId7Up)TYQHC3BR8RF*n)`@H7cl)35mZS$oC!) z==*nijMK1HzNaxO1P9>OO(*SwfZMm_nyAqs2u>Ae8uN{3UL82h^8PXk?XL62VEyrcs*rL#52=WQgq4!Z{&301noNZee=^%P0j{0`Y z!82Pf`q6oiHH3M3CMYl}uH`asL)tHH)NQkisPacQVXjEKW0o6g^yWoy%iPf0$!7+^ z$ur%oQ3)Z(7A7mPB3I^hrj0G0b+2;R*tc1bcG9!C+R3P?nH>;s=5bv^Zw}34c0oXO zX0z~5oKB`O&6p4WxMvzYh77+?vbh^m+dpb7lLcqs@QsdmQ88)>$ka6V8F9-?BNgqj z&P>n5GavLwhk@Gp%m!+1%z0^)#ypUBTwKJcW^-04*P_8S)R~^c73N7P>`S8;qsVRs zWVd>!B2jKky_AV(cE((xTt^6w1hm+J*$HuL7UrJUf0nE>t)XMA?82D~*_1Y!lCv7s{+Em(rMqXFjmru%+6`b-x&8ynkvI>^dOF zilVMjW^+WMjuTO+U`&>(XfVI(8abY+(ORziF$3CRwz6H}#x#|}^L5O?VGn5)?P<)I z%_%Y2sA>Zr>P*04xLnVS?5b?;Z)RNH&uq@|QzVBs$x0Y%gq+!Ib;UDx@JxR_GtA3Y z@AZoO%_R-9$Oe`bAo5OXG&Hg!Qq(A;bOixjcDoIXFw+kC=4#@ zPoZd^7*hj`OhA@^7P5K3GpRFQsL8mq24i}d2gygz@CkG*zXo)m_^1R__JCOPorJlH z_GaOqT=(n39Nir}QFSIj$7xNGMfqRgu(EkhC!;a#iuC2H6(pcSDP-es;+eBBcOOmW zurY_>6n;!6d3hk0BJ@P9K2!2!V?rn)1bgTu#$BT*cEgt@%XQKNh_-I*$L_~3$# z-pm^2r=Ra_7VM5IiEE_ws`Sjtg5&U4b;Ebj{yH?UoEkI08~$%5XF#PiTK$w?f#7Tg zgg(z_m@5J4_0-prl)}?q-TkEqVV+A>z?pPEVX12S<>bopl$!#BG2Js|%(x(so>?Uy zf!jlAWJ(CL-dx7?>7)i2nSe+@NWl@*+Uf=9Fqpky?}KNmXjhoatl0r^!iGf^)JWYk z8C#qS!i8T;BR8R7;`B@_+7W3-C(4a!ltOyRS#KWZJ+lOqZzf@muF)D%BQA2AxVZhH z^lT9g1m`uS{4tUc(wP6to7wF8qdHRt&grC0C(oPKQFC(`9j^sxy-5e;o~dmM4Sn;? ztU$+GVc6SA)>*C@*JxH6sj*C?-H>*pZE0*_35XlgGtZPU9q5SqnfYd#FES3+-|p7}?ZA4tf2lt#@-e}rO2 zW!D5c>?Ak$m13P~moENepynM=6mU+@v>6cR&ASA2Kj@K8JW~lsUAoGp%;u$?e4n3- zr4joUpJDFC6mvN1OmD247Tj5u`>HVuqk|MbLE80Zx>+L)JG1$YB(6yx)NE5o2oN^U z$A4-TjPw|JX0Av_&n($|D}LC8`D|?A{wQN+nD@p+NBlg6XHv8?tbArS)Rb(z14?7| z#^iZq*6U$j@J!UOCuCRUa4(G_Q#1E~;Iwm^H=LKXQ7;0{Ge(DdW(e~HI@~o2(!RV< ziRwI)bF<$UQ9aC)9^FV>-`7iHFk` z)|{)IM7O;}`QVxEg`v*$A}JG4nNG5&G92+lrDLX_={a0|<16$@R z3r-}2*iI(WUZ;~=OhC3EuvLBxk>A`gPABD=IRolE6A`212}%gtFSmefqyMusQUY?w zBjT9}bO3a~KnMrv06HFe$(a`1#F&97lM4c6L4c(n0Uc#Q0C$~uW{dcr5at5oa-e4P z7|d4Km@19f0W|CW*-pxsaR!tLsBqc~J0{eb5VvOPFYm)A2eOQMxzNqD zw>+ACojFNB@y*QA$YwxWRWWK|zO%`)UK0pTVeXz8-^?U#8F7n-G9vA_ZS{U7A!tJ_ z%9mv}FC>Ix=*^LQ{ED=PQeE$8)|t$8joW$&&s=}GhKjiOq-b};1qjZ6O9-wU@kA7N zJmSegpouY+fZT+s?AikzkX@h7Gq3$XwWD#lngu)5$RXi4>dkD<9uUH=jXzkWc%I{2 zimwiJrej4Rhr5qvm=~n|TArS`h1Bc$uZyT@Opo(o%!mE`Vc-0$Q9gL44Ch~Ysmg6x z=`nWp>kSbR=Ej2CDV18}hd0xU_K?j(JDGK+;T%kRqi53lEbI)t?Hi2gZ)Pak-AD7y zw7I$61qqA}Q$paEdcU{t&E1&t%!nFgJ6T8wae2Rz5bE%Ecrzzsi>L*crI7(0uQh1F zm9Yh`*`Co5=59>2laU3No=M}l1Gibf(@-N0A#)*UQnZKn(Q{ZbhusvsnMNt(zMmVD zY!0Qc>J|=RE@OHJBp*#Bgrd{V!e5E%=9yq0XXV8W#`MxiCX6S!Gt7(PR-_ab#Vx4W zlQ&bI*&foLXw0lLDUH_U?82P=bDE+Fr`;1!D2?2#S!Y_EY1n1BZDAb{@O#NWLzquI zQ>y}L%-WmV>EoDyAa0%1^7W_YdU1DBCQMx;Pv)gJUr-os`_S*+-0-)5V-81fIE(fT ziCns%o@;cn%CKEqdnO>B$IXU7A6t3pTUPpsdq7E#*-;*4ZlQM4bdA^- zD71vZGi6K%<5vBab93Wo9$c*HJrmL48FSc87)qlI^X|=roLQ2MxnUbyTvhL6@Jto$ z&NY%*6X+8XfMLNQdhP|$Mm;pJDE)XbmKUMB0rR!?8pelXbtHs{Okd zslSw2wD$>!h(==A-^|jRb9TkL$v-{Q+eyii=9|fziL}YS_X9N}bd=T9!I=JLDgkM| zDuIpybT9@Q#uod1{3AazGCHzox9Q}0l-&w%Cpj+ruZ)fq*6ZI)n*bG2TsI~V+^f8z zLzwHO^aK>&%p6;kr7FsHPe8^sx;aJp4QUT!3voM^ERFW(WOml3XNA*FW6sdRK)Jy) z-5-^JazP-5Ii87xL?Lk0Ft04QyNHedWlV|QhiOoDKxGEBS^L;}bE`9{I?EvAAB-8o zJhQn;9?{y>2)eGb(OnX+#2AsoJ$|QPpE!B>9hQt{IT9BK?*L$flFeE8glYKnKFP zlRDFZH+g0Rhcf}$73pg!6Q9-rG5BTp+e**&PrTa?)Qrd|kQTb*X3vRjk8*0an+_;U{2B5V4b;~DP>2oG*g5}9KuR_a z2}iC`mPY$^F`)>;dR$$BeRO@_>UCr03@E;tw!Duy%?~}BulL2u`8Us0a0j#In^^>$ zpCBz>@Ju_q@@Y(eGw1DOzL`L9A@pcq~3WvlQ)Ip2Tz>=4ANk z^1gef&V#5+&km@t;27;cJk!b7*_-zXh->DYq>IL+@T^bfP_)aKzRMds zpbT>h^Lq)UQB6SWY}D($x#%&1Jd!y~m}APPN+C3Gcwe?-EhNLiGxcVAX%v+Z(lgmP zy(`=n6VOr#9fL9Dnf_)<;pivF7Uj0ZgFXGt1RUnJMOmgC@k}p>l+D9e-UG6GKpTt$ z!__^^Id0Bz3w{|q(-V-2_8eQpY>x8v0dp&^`*g7QvsjMVFNE&U0GEc zZNKM%qs|hLd#1o)O@p#%FGV}RdP6m&Yc#t%=?O@l8CRrp)XU5qfQXb6-b_0NR04l^ zGu@aXA;dZ}OCuV|izidYw4!}stExF`dnh4pd7T+N(+3z?v|E^iaV(1x&}x^exX>^` z+U1%4dPdYJk@g)(gM$n*CUqu^8Me?rv-!lBaiEsQB$00m*W$yQd2c%+kQ2{ze^i)< zHU4A{7ZL(--A^ZB!Ocd!Zp;95$Xm0{EV?_ZpNuXnIF^FAP&Wy4C7_m-BDpX<(>U!1 zDtao~%iMf9{i;o~Tclx!Fn9bYi}s4NV@xF=Gp3DxCp2t@v}TeD{RBD+(1GHX>ddmb zf=HqLG8F9!bN^ELo}O7e6R3mrmDT~7XEGEjzB(9FT%#8IKM@?x(g=MHh{N4&i+f)w zH7)Q5V=AQmrA+mh2*Htn*q|yCAB}oB2Q)k4`5(qipyPmWK$yp(eOt)xm28B4TSRxg zdHeAvF7GGMVL%7unBmPlrrQ?sOl5O@Wt~|&AkLY02?!Og*%fIwW&qw)E~PO!VS|wP zUP^SmndiwBo6iI!!?{_LQaB_a%AlapQ9Gbl8LipQoUgZPW|HkQMYvn0s)mH($bZGP60^{CVyD;bXwz^(zZbL_&=+ zau2AS{d#dWx+fu^H9qTr)RF5ecxHwDD7YE(e%k)Ue;ZQ)pQsV2(F(1|mZY08DUBYs*2>cKU`!Q63hwkwFEp25>h=BA zOYv|I2xxdx8co7HibQ3Y?>w5e-{+pmQq{R}b7e9Ea(F|m%&arrF}WaM3Fz3u42atn z>uZBf{I+kiV4MMIIvGo&^vsURG zG0aUpW~)K%Mf*vs?)=wgK@yPsQC~h<%ig?Xa~!jrpKHeCw)tAB_&=wULXDzGRQBdp z8d<{=vN^_N4QN7k^&BqhLF8v91ZR?u02^X-tiMP;?wfPDLYT{#%I5mYY+eRxgVhl7Il+Vm9Z+tf1WBnVxn;LQwgh%lnKitT%UJQPmu#H=imY$e0>n1U7MI zb4sIw!bsCeD~&kAGSeK^o9SUL{3s!~_jJ;kt#w73>Et%!w7W3{bYyQH-^?A|0~?e3 zo4NdQU6#&#f@gXT7m+Z)a@he{2L#j}ln^Y;_x(cdsM@zZl(duKeQf_e(wNN>KQ)^l zES&c%rdq(5H?bn7tg#PbA1}q4Ht|VLO-)Pz4^B9C8)hO-`KS% zOVdN0=?O^H<)YtGBnpwJ<0J>EXou0kg@!7e`(gjEQ>&;XG3Xn%8px>Rxk#zuhW}y^5MWN@%5#{I?0*twQQgdVct5+9|dh)`;_deH&bR+UQcki z(qo>GfGo_J^cLu2@Jty~TjrrO%4}}g96VE{QO)Kw?B5cQlVT#HBS{El)cb^6z2%7K z`{>HxneK(^d$Kq8n%%}06z%lksxwP(jylhzG*XzmXJ%>C8PimaUVAhqrbVG+GPdxv zqYfy_mt|=L0q#M?C=S%_l@wHt+6-YX&-5G~#}-+%7o?pdE8b3)Y<|*XekLFp(|t6z zEn=9H&5^zix<+L42lDF-HIgyCR8K}nG-kP>hEieYnJfr=-|BU<#&$Bpyj-ecv9~iO z1GPfv7~V_|Zf#p6ajW-C_A07ev!;_}*8BNpx-r9{5D)lV_bVs4Ph<+Uy2A4QYvGp( z*T{=@jV%J^p1ryC=Jz?y&DmI+B_N-XE6nwk;4mE!#soKd$MpMz%>tWvqS4_YEfdB% zGkbGnCG0=lbdmuO7vw+ROwZw=14^XbGf?r&2Pn9wVWS0C^81j@{mm56k=fjBS@@Ye zkZafjDjiS}-Ky16OX19b+UHNm=H6K5n^`>bf&|xl=CYkLS&2yk3TDl0ZVBjkq8he& zrYXI)oYdSA&-4T&dQ7BdX9tAcFk2_Zb5JThNSOT{=9*5%Iy1)>8;Xxywh(cPqTP-s z7MA;vfIORr1f*$D61RT$bvuwTilq^CCu}1F<^D3JN~3u8E5Tvj%!_U(8k5faEcpAM z#*}A>+a;W?e~nIIm_lPKd}arp2^tax)9fMW7?_2!vuOh!`zE@ zE$@d^l%)}+5f=p3;p)nYDJKIpl}4U+Vri7UIY*C~>UJcAi!)%)*V`7VGgH|$wv#Bk z9?$+nJQF!*BsDF{hivX|W~?s#FUtf}m-qkwjE=}0&JKvu=vgT&s~f)YOqBM%ulqS) zI2E@%GTTEk46s3CK~*1c#$B_kFo=L!m~jt{^yUy7$$-t&jxh@X|;~ zdw}J#G=jK=O8XTCYM@5QZCx`;VYBNW+ZI_GvDIsL5k=g>Gp#V1t*$7{9THysE5Ts{ zhgtUc0d;9ujlEDc4k2CtS#5Xb-z$&hNP69S@6tPxNlzY%pF0QFK?#8Joe`K zX4*ZV=P8|d3v+aMw%QX7*?bb_IXCaK`Ridgsdln*+KK!xo+%S5;B$A9-N_s2>r!T# z8uj(-TmbN&0X3W}4IQP!!FF^2^cXEwKNz9SveGdgxi zhV@bi_HDT)Zd)kKBMm!|cFr+?5(Q)0Ifj)p(rqjhjOoE0CO`TuS#Y$IFD~2`iogwTrYE3aOueJYHL?x0^R)!xR)OFi z;l;Bsmoc->jCE#xGk1+G-f!k?Lro#={umh@SsFpy;)-<9J!o$xLgTpWq%>+y8h{Q> zgHofTXms2!;NXB~qTh@->9+)=Iy26I5^0Cg@vN?HQU+@9IY5mjK!>-JVGqa&*_qA3 zGZ~#p;T~fyzc&}8pYLL%K1PcPDBn!5VfIjqz+-zeA-lqLos4>wfSlr*id!+88`+f? zQrWza5OB`Po9Q_`9HjHwGshM-P+Jh_=r+`Bsj33)L(#5m?qBJd(KD$tVYP=FYNgJE zhCLZuD9rWcX3ec$+R4%Ybz#m8&v&u(muCuTk9B6EM)qcIMZej5a~oUiGm$7SjbzN2 z&C{5+?uUR(KejN{j!B)V;FekS+ma*%(`iRw%h)ijG=i4>9Az_T2y-`~vUv>itTQ3I zGVlqW$x;=3jwx|V$;SJh*iL4c6XrN!Isa2Vvp{gye_X2a;7()4(x~hKEgyF$ITG|a zP;(P%jHXnSy?Ld_FpRW*N1k~gg)o8O^kz=!F^L*M8s5(>2skr0U(RQlZKzF*Da<`R zvv}sSAf?xNCO6gU6bNT+StstBi^q{9g!pE%3b5FUfE$ymEB9t>@-kdN;344Ke9XxZ{*;|=ysLisuBb)hVV$20)aaPjY zn9R*>#D-8u{VBYe!ZW>SkDT@lbLvdC%e%XibU>_NOpNK-T&pWlaVw2!sL_SAUhqs% zql-%+-#pXJ8ux$_=wRF8H2oMiCd#f009?H<`$uUc&rFf1SQ;@(yQtbVHz%93IB9I+ zYTxi?dIFL$H9^k=WJNoYk35?0nRTFssOA@A=GX(QO%vnmo>Zo2rG&SD8XSg#Cab(a2PF8B!|DEMsC)~g3Ho~deTIU zqGz(Y0%dbj8o3FDXDZ+`0oj`g(!MNxoyiKuJ)y^_4_99I{obS$7D^$@6{nrU7p1&4*dc0g`c!Ni%( zYX^iP$JhatWy*1PQo*ep?sLjCrWtd?4?A#}Z1li%|7<7akHXjWj%Jt_pyNG0Yi}la z=Dp79Oc~R^Vmp}$h@$;@A=1$U9p^Q>p{6jGKl-XbhIxH6ueHnOhP1=Z{tR<lW? zXAVU>xqRr&ZKP(l9O_ID?ktUDLVeZV{9<{fT8=#+1BY#7Il(g(+zNPorA7w{XyGs3RYtFGC%jOkyRpy!G-E7GuCFJCS%vJxy=Z5w&% z1M)Br>!)tud^347P2v75l2A1PvAXht zp9wtt@n$*%CsIt3UAr*14(KG(Aw_L?%}K$SdMUk~Ow?#F zCd5_>_fTiTJ=$lBs0wq3;3B0kXFx{WI?v*V4T6KPxjyBp+VEz&XR0(x8us9sD7ywu zyM;N)eO9zj>da&gcg9?B!#zkoV$5r0#x~glQkeUjsV+S^?Pc47;aNk13pmUu?X3F& zLzv5$Du_Jvvox~Oh#5J%`Y{2~0!?rAs%ZDGI8e(D$clE|k}aNzdJK4GgE&KJvQT(&r`*+DubApgn^s52&bCP;9dVcVZ)SNjVPTi; z@>XY38gU40(oTA^(SSDs9SOk|G197H)W#MjM*4iG6uM_d^_WaRY@vd|h1C_C0Wmc% zQ9hJL?wJ~>MW7>%x$nn*`N6c3%`cF4Rxs?(A7hKKmnH)z3Bg!!h}`!i1ZsHI@zc`C z(@ylvd^5|N$#HlujTl=1B2}fMKRweo)FRn6!+hVth$3o)fHNW;&-bM&8B;B0jx88l z+*IsAiU(t!5H@GTEjOGXIQ2rw=y)Fr*#n+QHfP~{dfTEspFiRY$I>XtuE)mK52SW~ zGYg){LgfU4^R%OEo@0x?oqXL3=Io5g`d>M>G$bJROqp=;@;%#0+DSV~#U0ORObCVV z<;lLzR88q$;q}Zq)9OqjdR$$3tHTYR=_XW||9DdnqB_O??!I zZp`hMy&&!@l?+6JZ%+7!;7Le88Rl?}Og%Fi^J36D&E}qVgc>cum`N$LjVgq4%@4hu zLp{=K+|+FN0^wnA6?KG$zKh8Tn|;vqJ5EWphtOp-4*N zmLcu9W+>V%%n`w#@iT=Lc`Ax?^Yl#cOtMXxlDBNW!%A3Yy}A2i*aMP*lhe)v$*Fks zNW+`S7-Owv{P1SFKZXRPcQns2{O+V52ItY3jL`u!8<5nj)pbDa$Dhb)&kl&y6*vd2 zcceEjt1HNjTQVO!(?eQmCn~!po=FKrw%O#Fwa%=vMuRa`pt}@Lq!gwx?OM%Kf%Tez zFeba^Tmt*_Oud<2XU1%v#ynO~4$AZz({BjwLff@W)cQJ8p6Oqj24y?>W^~|*oiUl3 zuMHloB2Fzm;nI}vu0I)`7;5jG*Tg- zMf>kg&5nd~9QEF80Dd1^1UxesGZT>A1EL8UOQY3G&*p?tKU3R3xw_JU!=_TmNG&8F z6FS1epQVw!(CJ#SXwMD^#VrVg9Se>HbWTy07U;iAqd+N4)QGdkJer+=^MOY0Qn2?S z0eKD=&=I~8&$Mlei{;68OuvhE=4rF@vR-GZRM+d7b!MFbt#p*(&4lW@pXH{&U!EzT zBNpxXX4;zx88eby?_=ePr}^q&Oiw`a%nb8Bn}f4&!-Bwm7vc85jp=4hu2E-9_RTpU z(AAk%c9vz9!81JpDa;c!>W%q43%s}ZX5J_|f7dmVSv@Ib0;&nza=2Oo*Cvf%$E~Qj`BdZFuz_jl=Y|Pj#1Z0MSJXk5^0B@xi3z6!7ybEn5d7F^buOefhk4=gyiMjVenXSznsNyCZwSQ=#lGD;!3dg2-xrSRC# zbHeDDl}7$sUaGQ7Rme)bits_LGmESQhovW6Bejz+>z9{6zSnRq6Qj-@Y+pm8mQFf+819?~j} za(A-p&5djHghkX!!(L}cJl!)@sz*v;hPe^9&Z8G_Mk1;%O%I;gp3ks58SBg}+HH3d zMxoltvOCFk(4=Vh9IiJr6HpiCtn~6k#_8mZoEhckX9wh-DPu;(tt{I2bAh$gXD0tBiiJW{+oj zHdmNuo$0pxc_ZzR+NiG6h(gC&4kj=x;H;eYtPO|jV8eCm@#jefrznkq*ccQ1Hya zHOe}ZdXg|7vN_La(Z~KX0jata>nIZt*ZoemRCcQ>JpsYj+>q|5KLyWJvhlp0MSJ&V zT03cinZcNLqq|-T=~1I**B@o`99u+V@?LJY=?*tz76=X*{Pv7C3wFdUe?8;aB9V4F z#|>FR_2%$1%Z2W*G;Dt}m6USZf@}_!$pwK}XRUwNs@E>+o?jaXu@J{G|+@=@n;s zrg^4O3P<%AmZm3lri|&q9WMyvzBvLNTsiK>7U#lor79oO_vUWGP#Sq-nPEapdo*Syp#1>4tapx^F`;-c z1)6Y;Lx|IywC$a_U0MpOeaa+ z%NXYWDqj|F^`o9V_3 zl)_-l^h}EOi){Y3T;XSO>f%-Bl|#|qa?wu!-W=J?qP+~%j%!fEHo=n_p6Q+`G17P_ zBt5evpm936S9Q{H)T?YR8nz6aWY@Cpx2|P;=Dj&Z`|gvB7TaB&>Be0AE5qD+^YaBu zD}uu}>-+}|SH=qNw>-HV>##*tWtQ{}$$18o6th(&zyT7ICYRU8l$5mAT!7 z@lZ&5=Dt%^vQ`zsoWp*c2r}qn2=mFCnF+`p(=<9(&d&|!7?9dq*U5C!JyUO{zOpnj zV{Ratok$cI2hXNC=HQvF>hub|j4iGmEz$xS z4aRhOjBc&O>14{}vTx2hS~y5&`{u{B7sAY7O!rLnJxP!0+DTJFxQfKEhq(d9Gv=_r znMy#~yU1)#Hn$nYR!a1i&F^JrAmUgt@<&A?-Np zD3uUuHb0*Z=(txpb8xs1WBQvJ=H{U^N<0%q_Vay!yM;No{;tFCEj6epZuRQTj8Z(A z&FRfIW|0vbMrM!Yl}QIA&(xdg6=xRh7Um1o;o;3((Lk9@C;iP-2lUe%7u}BZOw-Rq zNZek?7Uuh7O0SayJ+u`*EeJp-5eCmxHg^(2R4Ghj9?NrafA0N2R^~9v zEOp&{Fs8qmLXFaxU6|9G!#U_ySDcv|pK!=KUeFdN+-^?-tdX?iA%`*WvSp%9FQ=U0BW}-$$kKrU; zKk7vtVYUb41(BM_IGs$9sB#hY36#PWDIQv)*%41Kjg-w(J!Z(}oSz#|BSeQw%|4Vy z@=Udpna$mr1%f-E8z}+N0a3)SGjMqFX2y0h!`uX%ku{Prw_g)*rfmNNI^>yN5Jh@S zCZL^VzYFS?x05WQp7fIT!#GfrXL@kQ4k(SeFUaU2Y!r>TzP9N_RC%Vp!gMl?x$gi( z{RIIWb%pBw>6xB(BzO`BYFV@!YJ@6O*PEj_{3;88LpE2bK7BLOn8!l0VMWcu+_E_v zYO{4ed8WUfF`H*^&QZh#u}ll`L{c41C0IaQBQn7dg6 zw`0koedk{1b#xa5xF~>MPKtInW=K2!TXKy|a~OHyr!7jB-AVEf0-Eiokj>j?SVWCi zS26*W4(JYxsFX&gYg7m`!<#8D^shWf7wb$e2%w1@Zd;g6JED(1N^kDiagE%V`DXUU zL~z)y2&eOGpjN0 zf+G!Y=ByxcAI+lOiuUuxo=U7U0Xfd;+}w?+(nw#~o0owai~0n6=b4<3pVXOdOo79> z?iUk~EePm=tc$3o_PR_4YCbm)Z>9{K9T4k&3!~k#Le=ohdwW>FD9t%P%}S#HZzR{q zU6U|h&u!g`B8PL0s6DS43r=3>CX7XUmPQuld$|>FsoTRGf8`Y&vboA2|B7?-G$u13 z1C9D^3rOv=^RoVCD$JKq8l^GWPGd^GchgBmLeo7UH>R?A+&52S8qh&yqzyGI+K+_` z4WD5yq}{0p@wP=8lh$!NYro@fCRbALS(s0ZnYS%GncH-d8PGCbL`B!g{Ble{%I2B@ zc`C{d2xGET1sNuW`MEzVp-<{ey_s&pxB{4AZf_>pTo7D+Gk2#Sg`&NE{s_g)c5)1J zR-`);!U1KowC4X^XGWkS2Wp%ISrC?xXM(if+j`9)I8Q*TGvlZ?jk&|xf}$zZ2xD?R zk>!=o1SDhnSG;YJ#56s^=9Ik9IpC)j$xjF zazOx~<1CA(0*7yucdg#WlsN-3X>p#%;F-2m#Zfh;8Gje;F}S@nNSRzZ zpk+m(LqG?_t(A?nnHHRi_L+|+(*C=nqGu`+)eQ?hhIPN41LvQf>3xq9Q1UZ9GD~kx z=Dvz5ZUZ_{DZJ_kXm~T#0SPs7%sofF26XH%_RY-?-I(h^kWYGZ5AKk5QuN+kv!F&R zEs(<8M4~Pp(Mi#+F!zcx?g8bt#m2cbywglqJ#+gl3xKoU+{0X@QF4vkF)N-~XmD;! zP@|KvdBKr}H&bEmc;@B?PCV1Xd|?kLWb?u`diI&g~6C~K!(8i`QG4}@<-3+ zQH(TEBPNktqwDZYlj6C*cR(_$zEat>+ykl{1TT$DbC@oO!2c_oD*@%)+@H)^8X*PO z6So*vB6aj>OwZ<`6h{0gr;}D1VK#xor8K%K0ylW3jM*O2pQOi(p1E8-*T_nvS)Hl0 zBf6GD9$9B{+u}r7?+)rQ%kQ%w0a?2BzdSPxc)b@&V_KaF&areSxlQl{MeNTv(}Pg9?w1a|H*glrBA z4#AUen!_rHR3v4cNuBvWWOIeN=kRHMGD6E&pWJ9e?dxK{p&U2&N@o&bIwxCFv06jCyZ|>7Smd4k&>R+0ehNG`b-n zG|QD0X>@o@Tl~|QY9htd6il3NCU_>jWQ5=>o3qwiFaG^OLQv7JUMTTQ@Jw3}I66F& z1%U_3=BHl~Dx@^8dCY}`S@<+#tVx5^C5WJ#$EyGEH!}ON*?(v^t?%6!= zPIjINd*k7s=$Ujt_2BGaOb>2R58~J&S#Vsc;{J9ybKKs{o1I?Z;cwa813o*T&NB@) z+CynnP$R||UyF7x-=juHQVI!ZV2%*x8=Q6so3rCeLWsQYi7V2XfariuIB)Nmek*S6 zuf3?l{rP4pn>$RLV+)FQ8gmYV#L|c}Rj?4uyn`{_Gu2M27fNaIA}!8oiz090(@BHg zXM!in=6W;TN3%CKt`X4XUhbbZV_rAC`gg98n{aV3F2lT13YR4;qE<>_c|`vVbFBr$ zIy195s1c{)Lpy1*63oqKdq4_vAN2-qM*EsI{oWdN>ytaKQ-TMEA8l^F9-S2e;&n&$; zyOiJFOoe&Q&ATwSjjFm^(X#o;vfoiIQU2wb3iD(RcgD22Ipm`5&1C+=2)O>#>LCPA ze88*eWVVx?G1vRGR0ezVOfCqV*LOTq)ukhwiDz1A1g~i8J#)vnGXdx3q(1@ZNMpKd zV$8+lNIT*dD#XiFB+Bbd740%>dZu~ive56SH!nr|TP63;1mxgwByJ_p0jHgq4oV1c z+S&EH>5M)SkdM(+8s!B6kMi09k!%{O(dOoM@#52%-T{R$S1QWgNi;e(1fiPcs!T3Z zA%o>UJW~nCi=-Il*#QyG7pk~@ow>i(0v8W&rY9hEX=gCW)#yhF2&A2R=Uh?y z^h^))Fi;B+TqYnA5Q1Cb?3X2=hXiD{{L3>{5ap@FApvb$J-(n0h@~ng6Ss$wcG9!C z5|HwGa*d2@1kiDpiBCh?8K<$kKS@BIcC_vn_kc11ArfW62YmvnVDaB!9{kb0H9Md> zwqUE*{4j($x2jsT6vA8y$g9gp!_EZ6s23V`8K1QqOF+Bk(?c@akcP4uC4O-F0;Ys&Q zE(kFFJ&Q!g;F;=x{LKsjpCVBv62;h}5D1%R@@6it66J$2m4H0plQ|qcv%Hyi4-Nwt z@3V`jZo=S?`YkV2fwV)0@q0A|HG0uca#;FH0#ZAvEGaxmV3BeTz?%*a}7v_f{ zaFaJv2}mRa_3OEzW_6}jmG79Yb8|4cWhN5kIb5vFP`;-zP4W?`m>y|I?PQy+`!$^S zN5)J_VfSVtdcW6MWP3BQ?8!-nF9|3V?ZS`JGYj6fLO1H`%;PL;Rs(9J_faO)JDSEc zW1_^<$x7H#m7KN3HlyD5`7#;+)j{B>P&f|f5m}Xwv&cuBJ4V} zlP9W=U*1fO(NYb2NI;Nb%y6+czgF%9)t_2ycMAdm>yO&WxNn|#W;quBDq>}=G`j6re5s5EW2$KPuUKa$p1EJFr?Cs6tv4sJP;vq0WTkv6eNf zKeM?jz-7_i7wrp^-ceTKxn~Ok{yvI19LE+J=C+~6)I#lK*-(3?dq7G+UK+*TJd1X) zOGMdQ>Mlt81DA{I7N2jXn^0V%tTSVn*Xw@axDs`y$rR2u)Z8u|=Nfq`ik_Je9Ma+(V+gk`3ZA(iGe(DxC{!9{JK2Z% z4xb~O>hR19+4j0JFc?$*=rf?uVrDyO z?IinXaN3O=6G;g7>)akE#&VT+R5kNk1ILk zk&=(mm__s+WZgZph~6`vY%Ig6XNo!OyK4Dn)((hkvVEA7%4ct;!rV*s$mqyAb4OVZ zpxtJXtv5Gr<~AGkD%rSMqY^@vMh6r)mmsCSzo?QTrrnQ6@UW&&!kx?gTa zH)CGs@!W;VHFQ9ZX9ft)E6&u5rG+`k=s9QLum`tBy(*G20hOZtxINp{ z6>0iQC^7{8;F&G4hjR?^QdK4(Zm1ovsD^FF;(0`8y}5g)-ps@^yEk)rb{2m+a2S~h zu=Y>S^aK>RMsDC7TQIgbxYf&?!n3(i3RgPHNtnxUN;_G!yKC}ht}kTTyLR$?uqFNZ z-*2W?q@#Xj)|tjNx;RPao(a%_5KrZJ3<=0fBN;Ptjgr%D(&B)_9jE=-7-M{!PKt&d zQc*&1Kyb@(U*YgEo_QYU^tOd#MZtu6JySmuV{R}s(d1A&Y03SZotJfE3LH-2mgk>( z59s6ucUKx6bVNn#b$BzC&Amv@M2yRO&jR1(wwG1g7X(z}z(tvq~FqbhE@cvtZ!^Jb9Zw$IdfSFt2$6((U+t6d& zaPrKgVRxRnKF@O%{h6_dUUc zUL<9hmp9W+FUXkdFP6MZvp&9=GN!{D3iveU`^{u@(PeYq%J=Nk4gyH0l`2x z+3mBcvKjMyVapk6G%=<`dGgJyZzkHVnogG9+`x~|(#V_0XhN^EGRzI=Ky@dqNSEIH zH1=?H*7i_FPJ77V33SMt81+8Tiuw)+j^VVO^e_)OJdGKR2?WP2zaBMO3G)fkK4~Z8 zigb>8?NlOMm{=OwdD**6(uZvB#*}A9V`er#mIM9fP-pUHayjH)CZ0J7^H6(c0^-eF zZg6&aCdTA;$oX~KLPdM7`}vb;cqaF27?MYD_}m|W_6ZA4VeV-s_kcQM(gC4w(kUU> z<-{V+GrXBzX9lj3n>8tgMeqd9L14j|;K}Q*`vHF$Q$>5IIP=YK6pCE_|ae zMZ3tZGHbSz)=r{!0y$yqS6*#pBR#`DR+tj<`urk6}OhT^s!|H`iWTedGRH8oLOeG-C>yaLlr4g5Z4%0WO*#>YJU856~!oqSNJhSDZAC*R#fa05p zupal7f)vm8%epyryqR|}ru$={$AqFi>r55|)_u5b0dW|*>!&fbe(FA|yq=PeCi!@A z_p23^CCm%XG21tnXR1gFs8M<*9T1X_0UWMH`|c``%?aazKwu6#{kW~$=MY+eMMFKBR9R@UCU)S0Lq zwFKWR*r7)1g+iETHn$Bmq+L6*E9fR&(C3?}Fn1G5w z5FD;q_#3S>VrG7k;lCJDSW&L~b)ISOxp^jA zz6^yXVXn;W#!R3idgi`wrX;RCAY*hu@%Z{?Du+j7W@%)-`L>lpQwivTxHaj3yzfy* zo*Qb>Gb!5d4HXG5jqJ^2Yx+CTA=JqCF0#(Ft1HWTP^P;vnNBX31^;IP@;6i2d0pdEsZm=?Gz7ma0n4{uj^@{81S`Iqh|M-^6(IW@5~{ zia-v=bi)N>%3ITz#hA-MKJSdlxj!@SU`)^E!ir+ip6%q0!thoW%-`AEh+7v+)03jz zjj3!NiCg(*vTecbg}!J9cc1P7Da;-6NG-U&1EQj2s@8`&$-GT6T5;LYW4ts9L*INe zc{8D5mqE}w%&jy+z8Mkck2ljjGxX;AEsgm$rWr06bA8TAHliu|56@JWp7fY{5fzlk zjae_EqAT&XZ!qS6B%sXZJNISzk4hu(Ov~gm0cVA@SC>noMxKE{jo7W&)+_er_v=9Q z@hj5qCX6J61UeX~aX_sLbL2CTJDC*i?vE2jE1mN@3QSlt$Kx3+MoXLyWX4J`Too&kQK0 z=k;WC(3@{J%NCsy!o>j_^btP8+!K(DnRRBDfUKQd`>_Sn$>sYZs@h2zIN!|jX0CO& z!aE?A2Cmt3Qep1K40MDvWe|UcKIocCa96ZTsd3;pJ8swuCHYaH`FMNIJZrF=8(f&e!JLIN^rabt8$N+b77$?0VW2Z!RLE6uyoS$pi{9-Yv&MODcbQ5a88|g9G0hzS;@^mBw8(VNI@!Ol}W=+p@ z$E*qH0ln-J5R8szw$-Z+$OArlW+osbyF!B#3(m-{wrlZiI;nwL(y%+vT<`nfIAYA^ z=Z0|MWNz;5qy}nv!e%h$W7m~}F>Tp`6!iIKdTFE%NP30Yo0s04)yW|N6&bEiWBN;} zFpr*@b8}SnwuP3`Jrf%Cw$o4+sJ$m4cn%N#C@^lx(r9Ng$z7_q8x|76jzUM>Tp8+2 ze=}8Q>H=k|6c&|2AfsE^9G!NU!^`YeuRPPg66oj>5D?t8_w6JsxV5aN4xXtu)4w7O zJ2~yBVFS2@t=@7$;B|imI>Hf#@MdNL;_&go9W|>eYj4i#%0t-C@J#Q3gtUj(Gr?g) zjh5Fk9#FW+Fo)8}{V{Yv zzWA483+v78SYksp=zxIWfQ#4J9*}4AAmE(F^f)gwAjIH82UPG(R)JcF+2WWtQ=Zv= z442Ncoh&D8Han&i>dgJN-u&y>!p)jv3wO+R-H$zKH)ciJbvvXvVa(>jGjrRbGbYo? z{R$8q#snIk>Sy|!siIwGO>meulNa-3bnc!>Z~i(j-KYzm>F`Dww_FeHv38kgxlt;7Mmp zy9acZOBP+7$>IQi_^Cy7#4}Z0#&$BfMzGmgo(vG&_RC1<-uy~;Fs6rjD2U{(OTL+Q z_KW*U*6*~^sMML|M(W_1ZcL#@ac-UiHBS3Iuec&@*ZnT;S54YU0Ubh({3``d?1atr z0)P_)xBZgJ%R=SHn<>wf2}77?ooO3t3z|?K=4EWbKyBigZn*GfdS1^_Z<$WsXH`7$ zY!1B1kvhyfyqPT*{V1DjB{hwSG1qmc7wV;w<;j^y zl!v)QqLSOoI2q>FR zkj;EEZ8~{B9IDdl3fbKL$9FYsA6rC9VHWMsu%Q(NHEg3{0}g+u6goJZl8^DtB%V3t zSJX1SG}I9gw4#@rrZ;9Yt}g-tue4WT3W{+lgbHsci1XT-`@=pjHNIw!EUT zg{`h|_-iJ`IQ1<$DgpolB+As&FRg_ z-u!7{&hkFW?UOfCo~hT<&6+GYP$RC@oUd}ruNspu=RU(VOF(W+4S3@WC=(C~XyIZ_ zByO?lM`1K!4y$Mn{-`G-AvlWmo8e>+!Lim`cyR-2G&82WHOCgej4d9{`>6vmdJJNu zvn$dvrc5Z9I1>;Fh{L?wxH}01HyQORxYbUkG4;+_Ha}SVi4YuQSMIdwtILQQ z<(pafne;q;X~Z0TvIpdz8H#opIKv#Iol}0?N{q%dw0I`@C}Vn^85gaxG_u~@E+YnG z;-@UAeJk1p4#(a+!`#B0aj!Pi%5)OlsJ2eo+_7sX^=1kt&M+qdnK8TNeLH--`)+D5 zrU$n=pa{XGXIeG~)=-^kp1D27^Qe&@j43a42re&Gd1b^N5Q^+4b91$mMvvjvMR_uZ z4#+(-WOFxb&VY=BU|skoW144j5OsFMvpH!1-XhSEVSZ4r1Gn{I&K=5`XDZCqSb8s% z#4W;nMbl^vn!`5gWyDtYe1|ZXG5sr+Mpmj*|xS1U8Q(9$6&zRN73$KuHIa`YMIR~o3qmU6s?#xP`fwSF;%9p zAN989GpzeXo%Y|3;X3<^}&>e_d)&YTM7V{3qbk9^f z8S%_y!R=TR6+M+kMGbquOM^KWbCQ7Ko0*DPkt3aKTX++xFuVwh((-}$rlsL=&Irl{cm z%^X$}8Su<}Gc5t3#G|6UB%r!X`L{9s^~@FNh#IjB&AEWS&IB^z#O!C7dvI&tJm1V{ zOanTWeVm&k5BIG!QVx&3d4{>&OS_+LchVMDIQaMJnI7B$HPY*u*}Nd_Jegw$w7}Z@ z$mTMpr=7T=mY!KId~qJWTCU=mz?si?&(!M~_JFc9Dry|Qb&4?oI&AVg+qO_U=@nRi9<%+j zQf0q>dZvf@TnQl)P@xoZ`Zy*a25NPuYCw(rr3|H!=k+9R72+0C^02y6h+9yNCR%X* zX6is<-s&CSOkT{s&SX7cw$&@obbnlYf}XpR=9w^C*#!z=j@$`?j}scU5|B)o{7iRE zGbSrlk?cyCKW}o(h#JY5?wOIFnc1AO=(;&f<(>)B4*Q73-p_3A1(8rAy`GtX@XYmf zv2D?jU2R%9TU}9U2W0<=!)d8gvf{ENO4&|=sb4Jqba*DBQ7Gqr^Gr`biwvAf2q+;SA%QTiznMlUywKGAN2J}8 zQg%RuInv@V;bJxiLn0?ljOm6`4i7AkoB@>?(8)yx_e=viUUxm7IAn7NI#e3PIy2u) z-b_f?r9^L(LQ*@bnqNC0wUch(Mr~Dg{$@)&>=Idq8f&gy6g~dSCZr z?X+trkuPHr=rfzU35B%(ggP@91Web+h;aU98l{lV976Hmo*7K&MN;xJjh}hj3RP#! z``(P|{>7L=F~i(E6A(r_$v-NM%GiQ?vy*mG1-koVPA9uJ6A8VY9kuF)g@izj$#T%d zn0hnaGsSLCJkwAkIN02#a$}lj?rc*|5>QL*Kf#1v$fq$4=%6^d`&+%7k=|yWDNrNi zaCh_U&8;_oLFmxjyetSTQ&|axxfksc<;mXMJac1w)}cnGhW(l`Iy?a>%;SPUW^-c> zzqV0W@3LXWM`@%m_b;g<;*oxGU}bN9?_ zC!=SwYQD3)q7H}|5LZ0k+Tz%^*)2-(=%oxknzwoj(6Psp+!g5f4>3~BfIP2fn3piW z_PxB23UliwCtF=B5N^gNz}}-GrI}#oj#k&1olDswzjm znlWE&V4O249(kd6KoM!rI+KEZeR2D%^Gtr59X_6QK*3wnn1xcfTz%1QVltBiBxCwl z9RH><%`+LF^>606LG<{1Gri6fRNy~MY+f{!hpa8*z4k$g7 z-u$Rby&;>kygxg~F!9Wo&C{5K`Lb0NiI&YNji4G$Sa5DknJ^aZIqF4^1DV`1o@~Z6 zrt9=jh>RJ6+uNzcGb?j=Es7k~m#;0`F3?Agx!V~lRY3A)BBz%;G7+h>9oTfj>f!? zbzlB5%)=UgW^>Et7iU6xex^xuOr&@O!MTq{o%Za2Hk!$!-i&TVJFKm@81~Sc&$7AZ zld^1h(emfq8Ib)0EwJhK7o4Y?IbJ*Ky8}%+M_aRE? zNV~D%7UX0mrIFrDAN8hwW;7;yKoAOdje2bl2ynQ-#lxGaZpRal&Mak}Svnwsyez8d z%{wqN8lc}6G3^wpIge>2lFW0+HC9_VMrq8*?E zjI%LjT5N+FDVzJ783$_Fn{Mgl_TsNRYn-b}reGHVF$+Am=A)qy*$&kp-7Ud!ffX;ZoK1`y%w8qQUi-XKJ7p zz_`rjzZ~j4&bT08b*2q^zZUK8nbDZ}X4(lG3iPf6Vq#gTTz`3{-pmAtyVA(62P}Oy zr=9!{EjahgER8y2uHfuTkjZ__5xdgpnjIpWuS%*!f;%P4fJC|kC8umX%x@P=9>vg>$MNYv@0P6`uMYG z_fkEX!=B8oG_n=xdP_-Rz8+^)*5jwM^uM-#k;LdK4o~)Cfk$iNa&#wA-@9`n8=@0t!T#d^1Zs`MS8| z*>sJ{n+XkJGB;O9>-EfR?vG~e&Dr?VZHsEmI{Y1g4mX@UGbW%c+G!_G?t)0Z%t#2Y zyIwpWj46LqZ?067VQyi5zvY@+oe9HZmvCXTTclyjGh+vo31~ln+junn%`_4M}gFjh3>3KD?PN z;(tO16z1j$beJ5}wFND>^_PpN`$BhK?b|FE-^>u^At|LXkJ3uAaW2m!m0xIXeKV$q zxq6{QjY^%#WOul20WGeG^9*6G1Qh(yAK)Y*Kq-W@Wj9cpXR;tbGr7GcGPy0{e*_M1 zS^-RB)@;6n1%Z0oqDJ|jp6R7}G-hUVV{~w4MM!&TC!guuTwyK}f__T~&Zd*cad)WE zPNDf9$Ku_XajQ2wpnan_+5*{?Fh^Ez{YSEEQVKl*7qaUU4)azL0=jy2L2Y<5)d7j@ z>P1pg3TY=-*3lpv#cXa!v1vG$1m9A4SG2oX<05J%AksD@gtB((?IdI_1Z6&rsbu3{ zk+_v_CIhu~TLKN6H?wS2{o@QM)S2m-c;@lezLsa&QGsvmq-fX?&rGDCE2yh=AcF^e`>a=+5Dkbw;%paKwf9Y+ZGw-g!#>=R~H1V19}nU-#l|Z zwn$@QOuTSBl?ZcdlFgND+%t1J8N-}6({8TBI&)`}^8D9D)BwgMIDEXI!mOpLtl69u z>4)?2U$eQk%(Kpnp2_;uYdg!$&SuQ(+8^7S{zyPxs%vZ!B_FeBr`K6o)mJt*po3&S zn@&!Q8M#JjOe1bBeVE_da!+qtct;+Jc87_7QdR;+$A)6wsiK|fAZyWnagc5n=E~gu6)#m~ok^W(_tI1vQM9i&)zTyZ$%J}6z2Z#I zv{5fW@KG-F3g}=u=}T)ZqQNsg%$0VsH;<(ep2=OR0Cbdr+Q|;O{lUJ$nCgH$?F0ko zK+QPquNOq&YPrg3hibIUNC@&wH)g(>ooB9$C!a7-L-1swXrFne-c0w=CCq>_0oj{L zT{+CnxvDlvKyE_4nOc_4ff@rfbgvgMxDe(yoCJ0NKi^FE%sD+KJ=0FuJWrp1tTg)m zX8P;7%3G7uUP`0AZtsWE=s9LI?3UPnLObaLj0|%N^BZKn{BhLiWJmftp6O_CdQ*yFUhSIP~U;8rkwb|47%U9He`2%}>vCV=C=r2h@2c zuOrl=xKwpMOfhCBxgF>To~fjiBm}@=D23Y=jR^z?t$l)L%9!q>tAFJ|Iy*?m?YSx< z5y0V%o&J9d^I+gC+VM=Z#amHXIqm<)-n;F}vgAgBzmi|Dk#Udsi3WrQrk@L=0=fY~ z0!9-0_s2*Nr_nttB%rkfOQsOpKhjZhoNK_0uv5W|Vq02UN`phd1q3FGef83n7$t9J|=ofn|o9vj&t0 z1oUQZ*erg;`O`87gz0@h-rMV$H5R={jd;vPy+(Jh5eRv5bMG}8DeYmI1XFKjddV=!$oAJgO-QKXZ$ zQ({Do;?3lqcCE>6EOU9US6qg_g$}e1JB{z$Jl@O{cKDn0OdG1gyoF;IZjMH-AEqr- z1EN937oz!uGVhMTpOl*~m_xmuNIL^iZYfj-gtNSuLv8g;)G@ZQSr5iqAIhHiHxp44i5=;sm@uhUq(n$zL7?un$eGcd-ix4`?Btef}Bd*w!(r&8J zj*6Pc?r?K^FI|-Dz~uW#cF8YokMUBkbqa@N-WO55$KxxQVWV1;o8L?)?cnVJrVAaY z{yyoMjfEsCZCBK>I=s*iQrg*DmA_Kz0lOnWtVA9Q* z0YwE}Zf-miZzk4}2ACdz>`FI&>A(!j&t9-AIAb>Ba}BGfOSsGXo2&{&H0=3OlyyUL#G>Rh~`*1{4BvG z(jL|-YGl+1i6ce?nl}?$qei7(${YNO`Cfr(5*+MuZl`*&qwpFvAq+@+o={UdiI(dH zdL}K?hN|A%HR@@P_c6J70IUFn0ED}UcrtTtZk@yHXb_dag`2atLtp|-sO)Ei?h?&c ztSNLkvm@;RA=63enGMebXn0p1lMY5YirV zOQEQd&6{JlD}|0SZ$6I(1O{O0AYBeXAVDUy)6H#5;eo|^k2N4Fo54NxW)`J=#>7RF zPR{FabcMjhSGG(=bBpHhqdyda5|GjOE&v6DRNB>qklh?N)G#95w#Q&TZCVD@D4aW` zlYB>Y-OmrwK^x}i3NE6en;6U6KP{7_J=G-Re;G|%*lmk_T2f0Pj(DOaVOX6cm|>5} zM%B25#;t9~s6Gc#jT+e|{6Tw6yqO%4&hzF9Ko)?o-mxX^*q%AkGXqSL_MDrGw4*%+ z;;?TRF1b0{W3B~Ck}=ONnlqh@e&OuqvP{UC>)i}fg^nFd3vrC)3CwssbFY!WgqtJW zv}KF!U7Fm#TV@2HGxPz&G#~&84uae?I<7>X8P1(&Cl$?&v`?s=7gBl8o8t`F=(=AB9aN2S6N11* zdkoq$EdjDK*uIvc$gBlRsoY6eKSiN1^1U%dLx>f z@NtZ8^#+98e~=4mBJC?QIE+@X3l1F}pi1+zn+L3VGn+RPmwMlOd#MVGCaeLrP|uW` z2ZXFiW-wI)vTfK~d#TD8JZ_vnff=yo++3=W71XxUrWHK%ny#|(v7<(jPI3+?x5wzs z#Dp4#q|*ffyqW8{;vs#qOt!~}8pWgO8PFRp-8F7ur}N;=49n!3N%}6HX<)wJrVp2B zQ))oie^QS7b#6}59&ct=jr3;Xxjf#vKhySSLK`0K91hE*J!aCbHxr`zxvbtAb0Z7rj^cwked1OG_jE8ifX9k4indxe;MprPpf@)gn6Ry!5ZAMTy2bNil6rys_ z{&+pLqXRoSa6tePT&|nrfI5?%q*F96n_ZiZ4n%VhqX9LlxV}=U zmqAGb0=6XT+~Zt8NhfjO{PGF(E}f)hvZr0qJYGD{&EeIFwA+9H7Ct^sTcoffFf*7a zSS*;H4AKrT*9papfoc?_J&mr&%`=!by3(Cvz<>aDO?>jqk((#FqyU8KB-CNw{1(*c zyq2nEdwAcpU$JuW#moY<(Z`%!=!ahq&`pubL1rTmC-FJX($B3kn(7p!sQ; zqnDKSKUlW4 z;fNYDAgtoqXB35MlSlRFX56p-nBuyWb|~!=&Ih1RD=ZU@TX6icIJdLRh~Y1}Iq7A5 zxt_TKOUox~G)IdeMgR@o4$N@wRJNdvDw<>IJyM`D4iM2CZP=XWuV^)H9yY2=RbiN( z0i7F2dJaI={8~1*ca~XkeerHUj^-lmAnn(Rri0|>=X_#IVHJ`pg0Rf6M^0Ph>ZHJg z5h62BQ@x1hm|Q8tES+V>o5`{TVO4vKi^K49?`@3$w9X57{6hdr?2^{1Qm>ttwMuVR zjnLzc4W)+VH_K!+&n<<@fKax;y3FoU)pgoRv+rQiGSfRM%d`<`tR(b}9O34un@_%; zw6n|_i&EYrYSd7p1*@;IKc<+W*MP8Y7|ZtR-l&RTqqIjT((Ggg6Qq5zj55IV*-6Z; zJ%Pz+uChf26RUVGG;lO?K+ue?(fYEmM^0O?fFWvBdyQ)Ktdx53W-dOn*1egbv?nm@ zD}bI&MRN-_m@Ut5=8pYkScLx>%>&GoPDY(lV8SxdB8=u3zL_ZX;)e7beF@d{ve1z% zGm&GcJVRf5BF3EKXov?p;my_w>f;F&fL z-DE(ho1>!k$uny*^h$F;LEqILGhq-F+f6VClq5LYT6mO46UJH*Z1l`%B+S)GS*FRE z)0(Q2o&jO8(Lm3vxW1U1>$XMnX3q1v@9my;q~`BfTv!pzLPsL)(e|oz($dLg-r~w} z(KAs`yGA$Ef*P@LE5&u`nI^$u3^g6`#5sodZan@o00o$I^E`vDH`7$32}8UQfc(wG zh}vU18P2U5Q2S;ga^um=U@l-rPUF92K%_>B<_(xIL0nhrEwik2{t9L|ytc=*V4_cW zYP#UiQiv^u12>Oshi@hi%_^Fg>g0r7;@Qn@6T+yYBXVlldm(Up zVYjMA$BbxhcGD0zsqgS2Bj?LGOL!eW^?$&D&H^x;o84|_~8 zJRDxv{VbYec?`~YrZ@A%KVLC5T@h>wYT}ud8>auSgZZ` z@Crb-jMN5Ix|NR$WTQ_v4=|}3}KpOXJ!Nl<7?k5C7H9~lwyfM3bGb1r@*9J_C`{9UZo&!Q&j+Dr9qAmc@%>&H5 z2|;?M4ew*PBJ<2Q)?+V_IlqIM0#LxJ+}zxJxv;PKM(!To-(i^p(oS)hHOXYHqDB~9 z!Ik6oBsYFLMye6P3<&etFS$7^)6XvypS~@#UgYlH%!uZRv`1p8f?A2@XoblV98{yr zR>Xb0ndyCu7#0y;Z>GPQ2b!=mH3G}T@v2AC9(hl)QAu#dGcU~jv~}~@jPuhn2X3BM ziz@&@2u8H=Ny#d7pbZ-*xgV>OVVOAtlAgJst>}cJ83Aa)Ml(!c_{>@tfZ}~5&&;G< zmT9CNB{h2?t7Y1yD&7vMQKuPQ3CqlHri6}l#dJ9~O9YsxPU3#exeqcR^2{LZxdtSj ziS5D@o=oQE%bz#uLfD{be_*W7mYLs7xw%F2#r9>kZjJ>BzXCIN4$CqTexRy1^XAyY zGhL$qRE_i{Ju{M)^x+xMiFz8}Oe?5C;vAj*ij16KY7muZI+(aS*$!3NDX`I0F9Xnk zB&pX3H6Uz=LP3p|iD?V0kFm7qBLERhM)R0F*YJKF-uHp%T2O;fe4xqW6U>2|YY??} zbFd>)qdJJ{^A;^N3NT64^P8z?Zs%*zh@I2P73clRa-NQ7Qs{^;u0D~Ti2#J)bA?1y z#Njs*%u(Gu-prKuBv_SB+PL4krZ(&{?zfN5F$B*{LWcrSJenSW7Tku6iwJNfrP+8J!ZMl+aFjgUGboO{!CadYs@b;Y3&gZG=8GdEYSQS0W|>>9Th zoEn+Z?!>bPlWrcCnMu1W)4Jg9*4D60?C2OuaCGw^MC#AXmbuzOj<;{*h-i+g^gjJ^!aVin3udzp>M4J-Laf)HzA1#yg zJ%On=6K|#sP_Yf$RHJn~2Sk_V>&Y)!rVXN+VP>9rU_t;tf4X@{aNL2N_q5A0w;4-v zv5qv{eEx%TbhraHXxyR|(z*GY_OxSoe*@1>mN|Gca~rnaOgxYFMv@wN z4QNGU+$We}nMr96*H@_*rQYqlu=3}U^qAoOu<`g=@9`gccS>}qn7Pv^qHf)r7F-tkw zB9uM=g*~$MAjNf!u0Vo2-{@d(w#R_9U*7)OMe~tmh8U;DEw7uK*1-UTbP`qc{qgJ< z?NM%?sgVVsJuiu}0EFx29)CK^WB{ss>6NLG8n?C?&m*`|1fb=Q4f$fA|MSfZ(mrmF zQ2+u7GSh4VkX=Z1cst9C07TV@u&M^+ZP+MLbcaF~3}6hRIRj9nlPdM*H`B@%@1v98 zR_K`nH|Luf4zG@m4onOPVChMf;9NC2j!`rxm>l=xZ{nFgB5iY3EtqTBUe>*t0bHU+ zVWX1ZAi*8DtYmU1+DK}qN96m1Pv)UemD7b#tqmAE-~JvV~n;K{h!Wk!Ap5G#Af|d=f$jHj6_wVzcY= z2a3^w%K2viiZ_$0QRbPVMtC5nb#EKDcJ#Q9^vnR0su3s8^=9JDMBmmH!{y#N3_TO7 z++%ez*ku-nWtk}TUh{snsu5ZYM=gc4%&7dRZXQpjt(CwU9#A1hb4YMtnVa_#|AMqf zC{i@{E;#HeOM0et!P#ukK+g=GnW#~;y$VdHMvyrgFs;*dI3Peb4||l*(YU#HAoz;= zlAC)+2ZH%PH3~2jHA*~F0SN8ZnAA^tCcs2j-1NA6;G`N^ZvHNZ5vye)H%CMo=$XvT16De` zGN7UwEmPCcap2r6hEqRtb5f%SJG4=Cbbz#@c!tsiyWlLEzcHNpXqn7_Xsr^5A;Im~ zU-nV9z_N)?%M9Qs4r@n8!!xm@(8?4MfXp&4baD;u0g-32P8kj_H}~8eTXK^)3^1{! z5MyhfmKk8O29&3IMUAYWwxQY^mI-kfmU>JBo;ir&8B8@HtkaGGX`ijA)aabB9&V&( zjx3WAUZq}J#e+0_HX>BPTo1bxG6+CnnQX(J<2SvTMvb5ut*HiN9UaIfM;#puJG93H zrru1LIQ6C?#7qefU<=p~>|X(yQRMaHRg z66quwG>ezVn~7N#-0vM&CS5w{`-{J++0~j|k9}>r;EwHBhHG*O9F_L4Q3W6)?Kn$? zB2YwgxH+noPTBh|xKRL#DN2E9(HxeE2969S_MKeM0VtKxA~)4CQp`@i*9*5o0!(a= z!5olh=DlTxn=|b2OP1-DiIb>+vXXX>=0_Q3>7sdnnU>y%7$-0d%=dEd*Qz`dYmMH; zRy#2HW-4T`)UN)dcjND<5BJB|~{OXDo&r(6HxcP(-RPe2t zW3#0&EHl5EvP@VeMyi_iW$U$H*6;cNCJ7PgyGT2DCZ_xHaV1#hbz%NuV42lOUmT3i zs*xgR0XbP4!YbHtlTFzb)6JZ~<` z^Z@}I;Ab?qCWQB6M@MSD4uHiooo8O`xvrLp?$^Oui2*grja$+)p|pch`ilEX+HHFb zX3#&QIl&Bj%)Lee(>preZA&34mfNTcj$o#|Cmvu?BTFau3kx&j%`^#a#{QVcx;eol z;}n<%<~8FcY6cSvHF1jN)6K)V*@Tcnk-#)@ctyFlX^+9#ugS-(z6u>-nKQ)?HEvns z)^(j}OQB6$V5lmtCss-co*BTUMnb-$5{FSxo3MB^m3ko#!z{~Dn{SrM3}}j?ud0)% zPM$dAH#b5D0?>3_18OvSGppggMA{2!$C{3I+;3VjwDuW*5^zC?l4_)M5}Ocke=fBY z+9rezja&l>j_)I#J5eKniQF9b0?Z2Sf%K_f^dy|usHJcKWU;|RN{mKv(7xff*EBC^|VLy@Db?)WeUGCS%nU4nb?1@ zOopBGW=iNlI(a|{ZZaU0Ca+OJEl4{T@MNB;Hxn6<%}`P3uu?Au{zemO3_wAWRO)Tq z9E18hnu{U;d8zk$M}V)m!Fma1eCh003no+}q&zK{XQ7#215icyl`T_l4$^+%@Nw(r z2QCB+B)EVu32zEOVVa&!VhpI=YlL1StZs*`c9zK)9*i?vrlL7c|3K#O;|rA@qjIDxI{ry&q1|t7W2+KH9=z4=|H+M?ajv1ej=P z-^wM6;^qJoC+ha2ithdZDE(HuyO0n092}z_S?ss8DJ*WD7~X1?I>GZ zNP_6*NGENxtCOX#84zKuh6~QBx;eVw)(!he)0>I390wZAFgq~A3Tc^HY1hg}Uz0oe z?(6zy+L~M!ID0T70Hv2QY*d!%_khrA)J$8fc5!7yjp))*w#b&LHxs1Du*>NrmY1PC zIS_{lW_)EZ<>n~&VBObezKzHq3zHOO_c}-d%7P3TVxniDoWL4V0fMxokEegmdR; zt_%o8UGyP1bn#}Q3$BEuE}Dluve#&?SgX_v%d{p0^bY5A65Ft`2w}i8*-{t~=CXw> z(<~FGsoJ_Zj>SLjf@9r0C68bA1}# zr)5&vl+aPA5mrL+%`|GXplad$F^Eak9Gd}wP});zO>SNW1dyD!)aWYb|}jguEP+lfMi=^+^S37nm6L!;X&TA}XeOkKy(hT4p%Bl=jBW@mww#IBx=w z-Q>2A^fdrcj0;#rjjC#Netwm%;o7Y2jb#fvYyt88)6GNZNEtb;RhDV0(R<#SUL))oU)It7Oj>4qrERb3&$L}| z)`ZR69Q~P?_M1klco@wCOf@02(H!Sxk95Mu%NFRue$0SIu*x#cGS8Bl-=$u&%&p9_ z^wfy<7|~pv!;NK5cK_H8PUV+sD}#k63_wgG17KOE z2_5efllocDL}BtQ6X>04MBpL-(MAR4tr|_fbhri}Y#c@x+>@L0rIenT-5i!_@g@f# z3{_!7df?_EbP!DLkaw-jm)2)BA6Y5Jf(W7OC!{@z50@JRpyk~DMVr~v= z9o5a_rA%$u;qW5u5IRr;+MKiBZ>C+5Mq}Kgo=IwyF9?Vl+2I8|nG`xOybsx9*tkWZ zBix)eD$8^|6Wg%U=!#V*QR*EH2!ua2jav#pzHuuLRr$s( zO#2PmV@Qo6uIFej%Y%fyrO`dGs7}d z-V?tGOal|pp-i4F6LMxbh}s1pzM1@@jcVG$rY+`aPaPdzH%ABTz|F%7Q*Iu)ka(u? zOpqfqX@+GY0HN6xM}qK6XPE&eUrJ>_T?TX^2ciU5rY(-q98mB~mMzq{)q%O)tdcwv zRf|UnE>rdR%QPTh{h65g>F-WrWV#kCE2YdkIvCA!M~8SO4ux24l5Zy59Oq?GuzYwk z2`0ZpjZA6Bym=JK?~ACIHy^EhtVa4`0Lo1WvP{d(A!oL2*cc8P?dTX}Kw5YbF~heM zE?`0Rfh?AZMxz~TP(G+pP<8UmEOf{+%`#CvYgHrsI1Rw0n}>~NY9!TYMU@=YUek!G zo{8>PEP)(=NuEhCQwAh)82Jxs z*)Lht0JL7%9y1!=4}0XBnZC4E;t!e-kUgf+6-aOsb`Zw^Mnw?0Ip55P>zX%jNIN#< zLeMnU9;y+#u-TbC0y8xsB&A(E6ATkXXl+*Uoal1*1hW%|E3U8fX7V>tBTyrptC_nI zX>`l@+NiH!286lPE6ZFb$eCroRt-Ss8$Ir$vPD417FP`jG;gL`=G5q!+k*RvgQ2Pb zGnFk;Iw{hQo_4GwZI5^^Gfs35(#a^OCDkb6x~h|?PHrgoTuFjk{-7ytzeWW$T4q2f zakz1FTuXz{-c~1ZqHfeVJhIFHSe6OPglvTEG3L|}fY7j66wWT12bdh*pAyg1o9RNw z+65rInWHW^Wpkq%$2P8OPTXx=emKk7@v@;Y5Osh^}i4pG0hMSw7 zIo)gUJ21n|38CD)2|z#++hQ6$6J*I7Hox{75zIN_x-8S{=5`RMCGF_W47OCC$K278 zGN7bqDgapkf)d4lkne&15K2IvHpd zH-Dp5ID=^e{Z8XM%M38-=D7wWH%BzLEqZM<$K@)&MEMoWfHhC32}}nQ8#7zWL~cH) zP6mWrr^mRif|?c7psLTl#i*u}Xmy3wQMHd6br8+#=Zg@E8pV@Y&dZ{9)}FB0XFQq% z%S<$={uL^yRU~j-$}=FCB72QW285Ct9KU-r2Qge3Pzxqhb@XoKH`9u2kK3?Woy-eQ zboL89Ti3NWt9Wqs3$57$%Zvb&dX2<0!!(^|zOnkcjplamZ_v0EVA3A*{!CFL?`cQd zb#`;mrE>ASdovk;XpaO~b#o6u=yq-1%+01*?3b@#a?`Ms_QuVz4IB6U8p}jd^!R4- zJP7-bbaxVO=G*SBG=r$9n&Y;`;LW6)hjTB|GaJjC&}>vg_dN$RU-PIs8DLU^V*x|y zq^}mo%HcF^VLk0Ljwf13`ub)@V#zFBZVoqxHoQ$~ecAE{ize!QS)}U~x2&`$%T#r; zb#pXuw5k#AfR&u6v&?uYN!t0P8jxA$fu+MuZVsk2!8o7XJnT_mhG7=f2+PX+EJ%^y zOz6N9I^vlF%S>6iNINVOqveb1>J>}`cckWny+#qu(`MI1+STk@dX185G%Ct^+U=tdk@-sF@hGNa^JAXY%xCz%wgLdQmmXq+M=q zw=K@2adT|P#^K4QvIXr?O$bdiN0%_JMmJ3eR%7$69Uaf4WlA+7hVkX%@UgG$-AM#; z^lp9f%s~xE)ycrJ6x7fsY$xc<3~!+WErp|w4k|<>L_yz`0hwjK(W8}SCylg2gYzxK zotu-i2duf&s}X68NMr1$8TW%8hiS?uo=L4py+)mzUpTSSH*S?4kIpiKXObFarCp>Q z=_DH1y|uNznMfs}4L_xmi5juArraEFCX{waZcPB1aiC#9+9R41Os(R{Zte@5F*gmeGyvYtGLuW!7^W?S6^YX9inwjl71c7m26TaZeuBw2GXhXn z+7-<$nqzqkc_ub)VR_7X{<5c?l7~pUonydC!nUVoFe=*6@ zv|wHnF0VXAbB3LCURGcNOjOR(tzO@T{l<2lPcVa^r+#6=s@xp8`FltGj6w&}Nh~Mb zN4G8bK88I`;qVGT2te}%(%uH39YRM)oQWERWwHq&gQ*&j_aE%Z&F4SJfUtt=>CH^( zq%1R$b|~#=kZCqGRE`o5zV-J`#`3Z$xjD9BpVm+~5Qih3B$$c5%QA8J*dz_V8C~AY z>CZLIXfho18ikuvE6O}mZeDhk`E+>%Ak41(dPhfuBE6Y#bJWwYbeKCjie=8D+SyGwsc^0jh52@N9!X4{n~oWKhzZX>TT++V{9tH$RZ9Un6Q1z|kJ_ zjt;rGjjqgxLs!7`_85qA18NlPl3=DzP4#EuRN{&?h3O9*(`HXu@Ml(A% zk35{>Fq;cS+Fj_dvPC1o;UL{qu6W`ZtsxwvD-nRG6-}w5L%l|*oNYKendgAs$jsd? zzguQS_?1^aYJVnf%c6gyImd8Z=p^=ynw^`6yg|#fJ{klY(x}(FCq|X2pZzl7e%roWYM%pn4M5Wy}ZXMI=@OExaFr)QgW;=qY zkx?TI?|TP($$-2DgrjN$Ju|`%lgLckWtnc7N9t)WmN}dL-beFzDakI?gz)iZp3Tl- zoMXUNqen1Vos2J$cB`9T*sRwyA?#@7f^hU?nE_$00jX||RXj5~TbpzeTaK>LdD%!O zxf)9A%Q`p5U0!dxP624fuA@)O9FX=T6H96Tv#wa{>deS^5P0VD2g*Ax{{7C)GtZQp zL%6iV@LA|U-5mG+2A0Wa9$!g6l4W8?2h`!oubEfNJkcAoVW8!M8u85};|y3e2V~d% zaP=!+5I}YE+N|I86HEffye9!HH}@ul>o7ZH0P-6_pI`=XRE=^5BrvU|u&)8x4K=^s z+vVl~CNrQZvUHJlC+(n>z7&_1d7L;P|7n?gDdQ`P!?H}X!X3oDb#v@=9=w^fOlCk- zlB62BYSi^-9#}VyZR4MoN#LR;Da-6KAnYV;XD6W*qj&fd%y91XX7V>#rme|^pZkKx z`ewqxAsY?coR%5XC|4)d1qYsqi)kCFku|%%Q8*v0$t9SGY{<5 z+eX{431LL@tY^y2u~_f8AgzaGT5dk$M8klzlV=8)a`T27p$P$`vLWr@o#*o|xOhFO zxl1*2)d&(%Q=MF~&>2$uC(j&MCK;#ROnWmYoDlFedhuqW3l8f06PN*Orbf!mT{Xgb z@pv=Kyg7P@Kf#P>&KV1(lg*pyLshAz(80uo)B!cBEa^o;#GXx^V=yBqLVA3*kZmu_TL#lJ&&T)P-p>dR5uV2$iS|$Nj zb@C55<&J3!f{Dg0EPGu>?J;~aS*+lfz{F71jA=i#9n{?1z=V&FS_&D>05kWr3rrM%z>Itxpr}Tu0Uc5Zu%dJ_9!1#AsuTeNRKP;MG z7nEQ&ZXueVs0;a#?hedwbH16m3r@MYcXX8gjmXWRXO??^9hi}k)42(&ly)fX%RXU) zrp4~68o|wBuTRmO+hcMKNS0}qiKUO-DxL#W{*xLp0ELaJI@!FLW!$f+PTHW==!j>4 zncO_yQKgeEbZoYmJ>1+Hw>GRV8|ax~k4b`yxUR-619Lf!GOAw#5bjiAIox1$C0SuL z?wp(J&9r9MtAv{hCRQUH*xmm0W<~)c*MLOYF#?3CQ@{Qb(R|-AX!U5BA#_Y36N?%Z zYGhYd;>|<`gq@E+^ctm%ygIzV1eox16wpYGta0mDCqK~8k@itEPeDmNj&C@noctXpJuk7Z^fShM` z_ke83cXYyr5Hf}*`mQ%~n^2^{gn5eQIB9ddeQQU@GXuhLK}~M%s*$ZKtV;X*2ddFp zZVGf@^39B|)Tya1I26=QtQJo_?aLpem;2j8QU_+ZIaiD4jt*HSdfL%&fC6Q;%;k^W zT-mNC)rj_((@DLVxVrMj?(0Tr-#08n7&LB?v`5&E;pFb2_O2rIS|g zS>CA&ZutZG4Qla|o6{bZPBxYaFt0OpbimC)JE0kWT4oR;3LSGQ|B4zRnqx(j%Nh}Y zrUjdh2Be)}(zyj@nCAUv_Op{S0?=bRNmx^_ku1~e=FxFb)=D5KZS!DzOt4G3xmG@g zVIrM0;Pz00Z!qyqXlksL7=ATFIr~a zIV?8^HNpjf8f|VcC-is>3Ti=(l4XV%r=E7}X-7*TsAjmil`Sr8a2}9$<~;%HoUB!r zX-x>wj9Q+#o$ESK+5@;mjR>$vyX%?9ySpHOIUu*yuAmm_B;8!|=1nw5Itj0~N0R{v z?J}b-xNvU9a8aWM%o%-K*zuUaJaNGW-NX2$vrM}5un9r!F{KUL%ag@2u?r4IzfijP z1an}SOT44vnRjlE3T3iPA6*%pu%Tu0D+wL4Ojzb@Nl<`kmU&|5<5NM60Vr?77Bzxu zv`u+H05u?(CbW)EH;-tp42WTeUzVHCxMz-O$rR1euetkjo-P1UH40esW>>knxjB}> zeYp83nlsqMOG)~!00hg#mUdv7^~`NUJ{e`9ieS^x5lslW*GQI$+e-U=|CH3oRv`=m zP{s9?dfyn=wO9}RnFof;omEyaEtkX$#%BOZz}07W4jYx5o10^I%;Kyv(n(xBelDnS z-aPlT%gsFl+MvSKXl^|7LOpHZ<`K=)ym^Eo>6y?o*BN^dnuRCFx!~l|K!RgB8LwyV zHPRsJ3Q-+GJJU&s!*F|C{`!0~gI&_ivjitMhnvHvQ-3Dh{6Z}~DjC%X^BfQ*xGZ$Y zGFOaR9HzDN&BR(G9B3G*M)78*+`M9qBAaq^6x1+=>X~>%bHt@sZozG>9h~ZNJ{F0mh0neOp4=7V3 zjQY)!??(704zpO1mqdwYVzmj*BBst^WI!0}Jx7aqh7D?j0EDbaZ)U*syN?^p za^x$y`E`z_dS#i9s1`S$w%y8S2~0G=nqhW&roj9eOvD=xHwnxIEiwZ05xUQRS==0T z^Cma9Xzt6#WtpFlegCDn`RX{aGN_x&&A%gwf8$`{Bx<`@Z^d2DMY;JSa)W<) zySYgF0Gq%3QvvfRtTF=7YCEC^H6Xe9Bfz(1mIK@g%(;}!6@VVm>;9#KiG-)!hK(P} zgtWly@Ou152XlKv)GQ3W?C4nE80R;dDKH<=>;9#{>;U<%{Nw#*PAzGNo4d3^{3m- z?PyH`6QP|)1yr5Z@n&n~z{077-r)l6CDj{xTXfP-l>0zJ?4%W48MWA)>Aaq|g% z*V)ZcwwN)CsyFjT{F?v3{bs7ys6pi){D<;pUX$;Ni8m9yM&&|~qWNFJwStLz=83ce z%rY_{F#kH3bLqxRmbu?u2>3}E&~E`PmU*BUnJp8%Xddk~QVr-4*E;|$X?qMBx2!*N zQmOY5xxv2_m;+G$(Vq&K)81!5)7y0<1)#qI>}{FY`Iz6#gIn1Nc+z^m&oei5!F{6j!!Hgd7Hs*wfW$MAox5%%p7{fS`Cpee6Dx;1p<|xZ z?3!`<)%We@d*6n=l*u4P^IxHO|Az{gN4c>QZoaYyATYw_FaK7+ zeB<^)&(G3w=fznFnhqB{`r10 zmp+}uu*H)&%&RNh3a9Nc2IjP&rM+#BIkDF0>CNQEEnYf*P1+so-F)VTBY|n#V@i(}OTFiPDgHZ{X|W#n5DQFzxli6bn84gG4@eJSa_6v?L`6)p zH*>?ddDFOs^`uyy`%67D?a$PkiH%$3T1~c0^u?7wU&LYVz|OZV1SZ`4jr*sD9Rtul z&yU+<_-5uCY624h$k)1NFw2&S8{c7jOf1&R`!fY5-prCYX3H!G)C#^MFq4}rnzsQ6 zC+TXman%UNdyn^M>HR>@%-gVKnQ(Jo1ee`>_b2qp&8xY-^3Gv_Y1F8ULo)y!Wv%Oj zn{&sj-2A`n<`IAx*Oi+aY2OPA$^oc6m=Bg2`&@bDLSPm!?RCVT#4~?NCn;~p%^NrW zJvGQ2w()QI9R+Y#jE=H_eJRF>TQz7$_Pzp|ia z8+QHi^^%)6ZjN&S{$!>%v*haE!6bxACj(1wc17rR1ulVkVygGCpca-nF%(H0Ha9Oj z^pczJ(@)Wy)JS?}n5K)vcfBWBX6Zfp?&f5dbHsH8AP+#5qDM5}%FVCefXS=9uSNHO z%+1%iRgEU7?-7&g^O&Q#O1BB7(*Oh!FR9GfTy^Ht7ndc`kNrPBWW0tRml zcaNV7YQZk&`U+q`OSw4$5cVGUa9@DAZz~GtW}NMtnSiUdt+GW$qKx~MPS3RqbcXe1*fy%`E_-3Bimoy_x&{L+|Fa%*cDBXSSBP z?(5MsyPnuxc9sfd`(_eMX5;~@EVED}k2Q^D{+b%4liW%t;pX$az)1EBBu_h_Y?5I&0`N`4Tm&rVU$>|@Z zlO33K93TP^a&toxf4&8vYOb#&#>vg?&78oD@=(>eV?^M3oKTB`no7OBWfm(mGi0-C z`R$8krZX4n0v(UmFeQPI40^Zj!` z;7-*XOgt5J*EY7`*<_=<9mf$#uD$DFG^Ddv!&C8v{j{sD0eWlzyGCI7Et5irRHGKmL3_-XHf(VKaV$U+ zYOQ6ig%~9_M_1f)02=Clb!^90W+nOgjEupOK^N3?pfXDy2;Yl3@AE`1ZH@-2O!^u&9xGy8essVi~@Zj?McN9SmowU zjb==qT2~?6eA&;{iTgJ&LwHl&ytPd1l-Qap(g;AvFTI%l1x%)s+SA^FS&KknncJ6w zTBV%Wpiut`sYVrv`-=4Z5zS+I|BGd&XdaAHZ>CeD%_|h?%`7L?ETVq{Gc1!8bb)DL z;=P>P0EFc+I7RshWLkFNQJeHf zvw~@S{VW3)U!pllJ8e|a+%5C$-^|U&f^N^RMwrE6UYk@p8D3rj5DMr1r&=a@+J6#< zqb8|l*A7gK`?*sGnEMI#=>wHt+?)df8mj8R#Nvat3(nfG!&rxI9!aEf^A^m}4K-)% z!1Ie`G63n#Y{B#k0!A$9=KC9-ZnpUaOs+Xme`X8jx?@PXEvVs!^y9Pz!PNS)7R>Eq z>HW|5fTB7nFgq~o79+a(k32KLRBqmZIbo`|>1oF*((`#wdn%*FUnZdg>16ft9Dshf zy27Ry?avHjDy80p+^uKUUe|BYoM4J)wqV{pTA3OZUi3hX_-01YS3*aT;83|}snIeY zhwnD}!ZVZbMp*S``kTqz@pkk4j6SE6%+h6E!mt7L=!SG9c7cZySJWLkFqRUzqCEfItW4wH{Tx3~F@0nqSrY!#PPYex4lv5nBVsS-!E>?5oyMCxw%uLK~H<# zM*0m*3LX3sX}34Cj-Apn>)FX~xjCu23TmC3PgrbplggR_9q$s(zgZ?Ta(>A&J(^?V zW1E|w^IjT|zJVEab4hTmWnvTnS3GkDgt7(Bcs^x7d@0qR8EASsS)4pcaL4vPSdYTV{kJ zk#;BT)v3ud{if%Go0Dg1b}|gp3u@aNZE#jXBbe{yoSp^**wLZ(m=;W2?8LgV228Za zlu_R=0f@P|z-+gedeT(8ypH^MTv{W?nXFn+3j z+)$%XF?C+H1=Ca`FZu+S$1+bP27LjO5}bApw_uKT!Tq2bF`X2cEtp6rH@}S-mWi!K zS6QLiT4we5q-WAb#WOvc*VUs0v;OimnnwU)To;%I<~A?b5{2}UU?Kp$Yr0;|aU6i? z@B-7oT+eIuQ6PeOLjCw%f2J(6do$3?r%m)-nvjsCGxCExE zlVO@3%_r<@w%A?4w8_bP2(Sf{mKk44Cj-ke?&tbj17?}1DnC`+8fp~wsBym*%x$|C zM~{{XrK8BhKU!ugs7YzZo4J2>4qrdy<|&B`8x?7H(*C(W^RBS{rg1B2?y3PH14^aH z(rdKUhMBLqIU(ei+}v{WX~DhTCIA`Bd~9}&-ZurHHUMEup^>9Zjc^ETs%`GWXilY_ z`jITtgpLdC8%<9;I)}G1QTbyuS3#|{%)G1Y?$7*j6GGUdHg2_G-kEuF^PjgA#+ymW zL)6Hr5f(i9{nH@r=r!7&&oKnM6lrfQ6Tl(*;6`-n}se-xSTs zDFe(@wvYq|Fwvj+ZgO+$&qV9+ZLA5*kpvecNpGgVnb#X9fwG(LD6lAdVE~F99cn3T!CYrUGg~Gypj(9d;^thyGo@VUpZ@dj zfB)Bi|Chi0>p%0q;J?$C1)zC5E?*^HE%U(q#bt*)-SdZ*89Y;Ka%nCe%`u7U(<>EB zh?yWpPj1eaQiqRQFh^6p_XPS^r9IwEiNh_J=o~)X4r!V5aYy)XZ)U7Hkp$O*2|aV^ zMpv$R-)l@7zL{Z}F9sk99VT?lpp}-1hh^^bIhSs(Zz>?j^KXZbLp7qlt^m}!`Fh>`F#+c8+sr=G$z+A~uh5%WktkQB_s{;! zQnPr-&7&Hmf?5aWV0izoS9a;-z%rFic3^&5=6TOwbYKqNOp0*|KqZ=c;LaJ4pSt*b zGYKXM5fe+1c8lga7PU9&qBd;g=9my@=gk)^hx0k#uK_5WdkPzsWx8deYSB&g{)JUM z!8iqGiRL$}WCm0QCqLfI5Z=K`(Nx-r zWtlX*AHRxaPSJ5trY&HZ(`a~~=_LCznG5O7G|R+zn(M>i=EpRx&jE;Fl4r`z4NUBa zYBnL9%Vpb0pVG-7M5<2G`wP$f%hkygfC5&Lb^{Y09m_Jyn~6D~|Ji5Y{ zGUB@4On)=~fn9I`p{kSpo7qoWfGZguz_b7a z?J`DqZ!kfY9Lw&_WQih3d)@^n%LLDymJ)E{&BXZt#-u7@qHbP4U#SZ&V3lRMWo}0> z^kSLk>KRdaMk|5$Gyxn}NYq(l!6kw(|Gk%k0x@Fq%eg+c- zq4g|dRV|o7i0I}SRy85udd+lBi5e|`a0KkY?8=RAa&t!W_#&*bOt(z5bJWJ7+s*HN zW_<=!aZNjivpB3b6VZG-`)IzLduh#X-8|k$I(I(eDKP&EH3~49_vCa^V49w3OFHm} zJQEks3u|vJGpdsuT}gCF>7k-KLn+Yfv2Kf3==4RJnM~A?4FtOskwajh5MYz^7 z2h?b0Tvw_0&o&+Ba{5Y+;^xaAl!OqJYJg9cSwCMqm8dtfli=prjtKD0g!%^4v|l=* zBfw12oMN2Z+}(UH`3?gRD!p!)U%`w}B+}kmCaP(DG)FaUWSN98v?2)|EtoTQVb>Af zI|DlQa*?~UOoB;=X8@9$n>Y-Os09;eLhj}5KSy(R!6}*p%o$2YQ#ZG6!V||RKLQXl zps>eW>Qx40x%uQbJedJuXVhJ{Xe~1!WHc8wYTrz7%5oQk(Hs+i@l$;s$4a}Rc@O40 z_U_blawE?aA!G9JqN}eWGYyqPaH?$D0Y6eZJ4yv~Onh z_!qBD=EZsnKvp*|3!w<+h3anzNfkl7nPHg(lVY687NrSc_Bqr9CI+qC%fGsL(D%IX zM3!l!ooih00JPolrvsA^R&#yjaX*0xFfpm$=$XfbgWMx(6kw7N<&}>D6B!U1wK_1d z2`)GM9R%uH-~7{f{Bif`98|sM)Luf5{FwbZQ)5<1G-R2AHA8Qj*e)^){c(p z&$@3HE}UBgDtacGU5^7t1**hZV@;zP1+1b*on@jHS=)p?0O1JBa-UE9;^y3%DWRhU zbKUl?3E^#1Rf7P;)G^XY1)vtp1wC5Tr*F%w31%n3MF65|M44FBsEET$iQVPRoc|by zXUk@KGYMw29;l$!S>|@MZhl`x4?_=%^n5Vu3fW7MC~-%e?N}@bPA%(WsQzezr^%)LP42 zw(H$xK#CE-yp;7Zh)D^|u)+jkyqB1V;?x%X#L6d*=DgJaLQR z7)_`JX-}5P-^4SGXRck@0yUtc+@t#z%~K61Y*akcEfYNm&9nu2+Nb-#Z2M+100o5N znc?NHl1@&zJ=tVHC;^S!JitsmlO#!Q4mY2dsjN4t(HtFyhhM1cOT7$0@g>sUS>~?; z(8w~GV#+ezGUqZ5kSuc_Qlp66l;G5#*;?j&OnpHOvn(TVIKX5VTs|+W49F(bj#BZV zWo~}2n|;7;y9sYDW`-iYR; zMk4Jkm>867-5jdXdsqYFn;9`&)Tje$TcuSFCBDM{j1hc}^n3%oWWonqyg62PW3EkLu=Ok8F?8V!be?(uA;p3f-Z*Zrs9E zfk8AUm@${8Xx@T}Ev_Zr)Hf46^9^%-phk3ae(BA$HxpM^3PmTF$Gx7k3qbK^Qs@wA zZ!L3O_jcilZ9*7!!4XV~!}0Z+|DXT!|Nh6n{eS=GZ~W{3dwpT!)^hF3JH469pA(ZS zWdi-1Wm0%!mM%9pH^;PjU$#Jt;i%Lb=_J8aG^h7D&z!H)au9DOMx>9C(oWJI4zHf} z7ECN74TfH+5!#6d(VSp%sEWUdw40l+s9W4T=mrzLt|KsMkNjc)5|{=i&ee2n*l2Sf zfyp;BzBD`8x;a+yv^$57b6QF(R~O9*VdzKNQrLlMXQZ>6V;9^}CeS-DnNEiArh-}r zCbr%;V4iO@8UB(QDFf=joX?Vp2Q|9h^YdaoQuT$duK2gOl;9BQg8(mTMFw50sK_W5z(AHGZCWr%aj3G2DIRuc@{d(_i~?5>)y-&lj)>L zdl-{9As_>4qdD5J_u;8TMsryvF^n(gnK(<;4Wdr>mfX%VtH-}sMpF|)U|HH@)~Vz> z_02q|eHva6pk+pGJ|`R1yt$QnkE!h(o{(UUhWBZi0Vd~rMcU2H=XG!A&7l?VKTKN$ ztO`J#o5QKwXg+Q0^hnwh&!n46&xD={p*^2tKzq#l!qoIYf@3;K%Zx9%xw|?1ydvl6 zB=#DW$<%&8fB`5}BPyE$vj`nWOWMIR(M(+Nt)`df&8cVVQdRqAVi2{gYp&Gjz&(ax zb&?rSMffE!J1~Dep%xHw4k$@*3P1=z>oVnDqXpOfFwQdKnS3+ZxRrvENIQfMs74-v z!p+a?{Grs#$`9$gR3mHLTHkE|f}Xh#Z(GnZ140c|b#LajqWLzw z?ni1AZ>CxbTQ{Gfsy7lGNc%pGCe#8*#$RpbAlPFQ7T)=%}vidZXy(Je(Xgp z?%kYVG62PwEYmF$^XBQzw6kB!iCa~7fUi*}Hz81IPeO;%Nozvbj&hfZZ{~Ux>7(PB z71vi{mm=-KjodOztRc@tZjNH_?<`a4WMEl3I;O4k6jsYT-`l)DEA8=8N*wOMT<+=e z3MPu?CA{|mDBPUlu;zeTFd-3@755cPtjWEnDZ4k5(LAUTVbvxCY(fAv+A&~`KLt!= zK=wlvEUP&-0|E>?A;yUs-2td%;>j}S(#rL-Ws0BfoX3h9>}(%1Cr5jc9Own5Q_9> z`kRRysM9kMkVZmBeLi2Q@*?-vy;J$?$MRCy*r7H zj&mpu6T)zK)y-Qlm%6Mhcqa7B-)`JeH1EJfpK!a^2#1h|0f^B&>gKbed7xmELyV z{C#crzdou}(7TLKRi24xzTdLZ7clu!&H=03+yfBG&T0b#h>t zx+2|K=ElRk_aG_+&LU`jvCKq`0$^FD2cUJz;;2Kz;m(HTFOkg=2U5Rv()F|1g-b_m;_r1SVWhKkOn@KREZcbPg&D}CF)SJ5C zESewZkQxP;$sXf3f$0HgpKvuAf2y0?@cwXn41r6MFrN$!@59ZZ8Fk_?7C4Ur5Q9zh zap<;17*i>z!KvGHasv4rk@m1m${Vvtd!Sj|9BZOFHy>v}q(;%MMKMlqrh^GL@5&b2 zQJ81PGe_wpU0+QIe^xuon@KyG5T;|hTZg}7Kq>D@p-2J92T?nr<9+SJH#4k|)JWrg z@nn|jMBMKDv>kuo4FTVNY$N7^wlFrr2g&6)S82Gm+6Myk5b;rDe6J31noGlr+N z60%G$sO_alQ8OTnNRJ0mBbqY+5mr$n&&^RbZ>SN#d_Q+|P=ZshQS0W*uLBS*GgPA# zisa@VfX;RmkDcTmsz&ik1|~zZzj%w4VRG;%*e>K4Z8&s(*UL76JSn@ zo$6SU4-Tq97!_WPhv`h&dtz}}fUb(RnmI-Q9PKR`QW{pL!1g0doK+^*d z7VCNJu3$p;!0gIXH0OYT0#IOCB)EHkDyoy`G@W*H7Jqdh=~=2hCX zs%4%N#`#CP;FwMZm@KUcOm}k}k!}iV=lj0V-CHKXWNuE4Q@Odd$IM_tw@;U5SM2C0 zM{PPcr#%KqN^RIGsQp=yIwIf@Oxy$7*6|=JEi>#fE!Gp5wpIe%C=KreOf2HrMsH?V zW{T#bMiI{a&0NsjO3SnfH5_Od4G4riGKowZxAbO~H?wctnymlm#ELLda zRv2dCnP=CAeO%M{h8it1oLkk&4$K`R0*#vk%HhVX2tc$RTx*nw4%Tb$e z)F_?q4E;!?{my`nM2)O-_;>2KyXe~81|^xTF$aCm{~ zZjQ2fN+*#4U6}Lrkn}a0N99LLqFQQ%>>QdK{)C>%>%b&w4=@>uWSRbEVsfR8 z=9mK-ZjXt`&DH~v_TDo49UT)SxY3)*7#?3Nt;sUoGEvy=qB+nU71RhJZB*1KOw$7p z(#fWy!-x0%m+s9RfGMRtu!L%aMLf%y%NDjj6Msf)atUT+%FX*k}@m)r0_^iTeS0+QLSpH_Y`uf*CxMHYztaHwQ!iIQxZpi$^dS ziqh+;d2?Gvy7%W8)*tRpCaNC&aI#DfKzp~P5YhZzHs0mt@lvJ?NJ2+MAQw8WtGm?; z0j}sA9hl+VX{tARJ7k$|na5dL4yw`)%f!I>;LRkM;oNGE3B&YWBQzAY2k9_~x|hDV z&N3s3Ok)8lt}6gRHJZ9xy*T3!j5J;g&0m#JRY3>IE(9ki;fFb~qXKH;} z=jNEKXsHppw#vvrXPE>u!VVh~BhtfCFL`EABaN=KmWlR_{=WHkm)JVX z3<#NYK?w59;$0SE&EDV?;@mGxd|*1ef@bJip!4o3tsFi`_)XD2NlmB#E2%#oW1 zNs?t2YJ`Q&xom+N#w?Yu@xJ1sNZT%!bm^c*ngi;<-1pL1L@?)b*d9}3 zQJMpq39tf?Q6sw)k^>O-8rh7%{ZmB{8BqOvC9NoIQ~}7T(ey4Wp{iw`=8>wj^p>hoxRpqo|gv4Z8*N_qTfK z=H!`DjRH+4?aP8yuJ}{mOmrIEhS}+vv`oUvXs$QYdX0`f^GxqGI)`s2fuozpJE~}2 z(n(C5HgJfX7%wBGWyV)(!xoqZCIq)8n%hv-eO(Fo zR?`D%=bIT+UE8oD{@hCY)b$!+3H}d5RTbfvj>UIiZoN4CzRIzS@3$@3d>ybV0C@mH z#it2C_GS((GhRw6?MWuqn`uG^67i-wi5k!`q(-zt!pbj!X#r?PHL{^bXelhiEFEbN z;3y93hFbe(VoOK6+4X#%I4WT9c3_gAM_iYl`2l99XJTUQxo)0b%CJ@iAlEbJwG2cD zX`gEM(KpK^m}#$(a&uqBgJDU&nYM~&J%{BqKcBVQfQoFTpsqIrNx(ynx}0}~ShT@%84 zEAV!fNzxwaCNPC%78qbB&l>Tkxt$-Rh?zh&1sne zGyL3n=33So8FB^8H~M3qr!53#K*$dVbMFdj)}Q&qjt;gSusSKy{%1XnW~R{SSh||Ksof_w_&j?LYtHf4~0M-~Q$A z{~mA2f0qxl%sbg(dkofT7ANn;;Rrw+T~SXvO~u{(*FEhd?LmzQtKLlKncG@M^@Fsd zpvDX{1)#9Zd^s)tm(iPP(R}&1x`GDHQ4NTeNp=}FD$8`s1a676BLKaxX?gBxujcyV zQl8hW0AzcOO18t?{J5d~8h{9)rh4Ow0!|^J!a#d)fm`Qgu!BwqRmV@~_TL^36;qY($MfjZmHJ*W_Xw_DCEK zYD70z-MqETZh>>5M#D`ABt%h0Q##p#xnR7!9bLJg7>`sVs+a+50#iKGRHJ(wnmlvA z4<+_Ia{wlr3zY$R24vev*=uAH-21p?Bc$uq2%7YBch}Jo84$w`zXYa%xomTB>M9On7u*}yC_k%{w9IO*dNb+et{P#kH?PUH zXue%T%Osc~4yy@)Xu4&tABT^pduY0IbAlPvNG*jem@~%FItlLXXzxiobMtU>4WhPS zE(h+*X3~z0Tla;a&N3qak*aG+R0k%u#dKgodLQx3uuM{;M3*GNS#G|eg*{s)3TpFk zNfg11nxxueTFYG5tpjtyCIn|jotqO(e#Pr4o@vn>I!DxX?>6k^C<$fC|Y)R^0672teZ_o&+;^rlxvZH(xN_*MMo~Ww%l1FrAxVl6xuu!OiD$FQfW3okTR+ z-y<+bmdW1)rsd{mH*b#IeEnfUjm@qR*Y#$WH*@a>QLlA|+I~NyHC#i2tDmn|e5s?O zeKS$&4IXq)s2xYS-rGfUzK`){vVtzlbZUgz{g$-DDu<*!-bbpKYL96x6C+h0tHtLc z%5|0*(VSqWQm+D#1)yy&J#RIdn>c(tznL-ar-E8*nJZR8)o4=(QE^7P{#0X4Q|gU3 zGY6%A`p>`r{a^q6U;g&5|IGh_|4v^X&C&7JbaWt+PtVm!+M|Z|X)X@txs_TZ-F&*% zQR5b)xpH%27+)UE-#dD@@TY=_8qmA!lj#Bw!Hmvf1)#vP6x3EMIBCFqUuAD@U$&^v z=PPMN0jqeXTPD=Y7EIh!`{9Tu-8|@$z;rONl)WiiSmRc))y~ZcT!1MFu66Te|Lp>2 zzL|9R$cki{9?h{uuhla#BK^ZfR9YtKyD}ilfPOt7Kr19^4>3-bX_h&sJ>o?*!mao+ zf6={}bn{R#)r8Q!ne#nfUU??goxF$JV;F#FkKypL%=^v!m;;*2=Jw7q15Bz$+}0s5 zi<@`3`EjC|II6!ja5q8+?J-_YfoWh`4?-snFY~ZJv*P++9h#Hw?q6x0E%=uuGM>WUB&ExevK$TOKvhKk8hB+D$+s2kqL5zp~KIy!e`Kx%dk!*r#6Ms>1@=Ga6! zJ{C{Q4AL&1*@C$oQ&~D(-Ta)U_d1$4CzxTQ0<#5knwEA%8g0W_Ac9HDjMr0d zrUxJ#vS`HN1M>kt)PN!*Pm+gtCV1v{*T~5;kGT+|o*FUl2|}cMK&_j@F7riHo1NV6 z?xW7lgJ-hTn{snmrdj3%L$r7k0cb}r*IqNs8f%)|JS$FrBn7xbk)DZAH(-fb{SpYVb^2 zW+Lr+Gx26FJ0eg9(}wr&aTc(pYL1{rd^78hFR4cDn`t*zngDdZm+SddVrs(<#wj;1 zdgfNfPJ^^hSnN8gn}bPIXP;H#ZOcNSj?-H=iH{H_fir(NUPu zx7<93o%qWXfDnMz1qXm~06M4Tyz|M{G9#L^)SGVg3QPkNdnMWcglh~#rJZ0>66S9L z)2NXN>)A4oYrQzMR-;a%8c`fpH0L{KV44Kif{DiLQ94PU8DE?{S2Xtw=qe>3>Y3AY zJAM~{B8I07hz>6|H_JSiRyBgxUq77vii}+A%fidcgxY+s!zRz1u^+B_etI+M+ySP# z;94-TR-$ji{?dfN$jyNj1)xCF-^{_)m3pPF<(Xlbd@~h*0?XUY_kP^(n1)wZ!ZHb_ zc64-L;!>|ipm;M8e}*H{0VZEctrl;=L_rO!ckriz3DW-lZ4HQtrFf>RMqubodkosJ z@8fflnQocC4nPCao|JZxb|dZgUOn^adwa~iqp%{5fMEtpt%($>wfi?p!J z-pzv=adbs>^A61G?slzjCTc=OM(V*FxH)qnMf1NF&1sndt1bw%mO09RO8Dt5lVCEP zWN(K^JE+l&In*wiUw8X!mjQ)6^3BxfN^6;@_sp%H`M%1%+3%K_B;okWWSN#uPNg_W z(hfay*wZe{49gjP6rp1-t*sHwukAim)wy}_Ou9LXzKZ4sCf2wHLoey1?HqQUqXRQ6 zlcYUWEam0^b2%sx-C!apjl^NfZSiI*1ERybn_peo0?n@X{^rgyNsVH3Mb*g`%ym8c zZP@VfQQdq5CV!Kg+nWiZ+3-v&_4*GzHR7AeFUlg%RLu)M>WI&@$uo6g6_o#2VLTKmcxDH)z6G6PSds{+Nz)3rvsZ+lqkz{Hbn^ zg4(!qm~I|m>L6X~=EGaPWoGRgHA>ZTMe{(@E%RJkp~H3#4@rAiW@>R&G;hHCeL;<2 zM%bA{*?g(g3!b^5f88ep;?2a0+_|KfZ2(FxUH|9MRBuHBvDk9+U!O{(Wu~so_{)?5 z6``Xnc&wI*KBI9PHe)zp4Tl#sa?AX6dkoz?R3kMZglCri%xPY`5$Wx{J$H13W$Mjr z!TkN38E&3Nq(zMa&A;a6kxnKsRqFi*!K8EZi|?qSIimSJz{}kHs8#b`f+KK2)zeUw z!2C-*lWrb_NYOmJ{MIwO8jvk?W|v`&I(e;x#9>0nFAG382UNxZDrvW&s$mT%UP@NW zCBd~|{(jzk0A><8^k#Yh`t9(3fSKGpav`OYMd(=Hp6^sQ#|axOb@rByZ>mv1s0^re z^JP2t4ou8bj#lx|G9#|1!^d)S3qaFV4gyunL;%7Gfq`WPgdA9*!^_Rx%`uRIV&e_vO*5Y&OmH#6$y z>S+%w?KS-cYNuBKno_4^HL?Rr2TxK z_rk5tG6`XnEkxQ|FlX$DYC4CZyWdL+zk*3vy@FGXnxN3KAEpzhSIJYPzUC(bMr_i zQw9{U>do{w^RI)+j9eWZon=mQnLDj-=7Hrg)2N^pmPyjC+`I$x*OnR4oC|m)!L?xG z_)pP-t7T%SDjoc*Av~`ZPnM}SGthLQV>-)y*#Hxo-1Af~%NAPs7+C(r#x1&e*duLJ z(Y#1-``MCqxOu6hcRZ5;sQUg(VE&_)8F^3Aiqz8{Xu4%$S4`6$&G2ncC5TH*>$&?pU-bZ|1$Xy~LyhX8nAn>LdYH00Nlkcq`$i zf@#srQ=@rlRU+V$-&oy7b_v>#PJ9+!G2#&z+`!ZX_i&gkek%Wi~D zHLAF#aX+P#t!4fL)QACy4zB=I^h|8Iw~U7YXuXPD+*xK&BZ9fmT1AbF8okTr>i`ox zv(zU0bdtbD^R;@7S~o}8qD?2!EQ7&b&(2$(8J5Yqc~XrOfGh*TGVHdeeFBjmff<&` z{!HpedNYgA@!KU)+sAXx@Sep1HTpuG2o<7wKA_$pA#sUS9$1eE+Ba{QKYk_22*H zZ~yww{4eDaK+4T6 z0F@Ur1)#lNa9%qc8r#G{H=7E*S(&gp`<_g;0S|+CXhug5}<`IBI+G(N& z=9J8^4DTNp^BtW^49iTpIe!z+G|OD~q7j9gBb_XFSh{FV;KDK$fLhDMn)Xtr2rzM8 zmWQP)f?4PwAxgbQvP@X!yzg6=n?ufgq(;LGXjVFD_sx%YQ?@_`1c`Hy0Yy5QS3`xF z%QEfF1gmTpIAf}}h;rSV$!N}E1%DHm0CQQ^s8QUjc((geVh3h@KGTI>HExAx`n1Ko zU{QNcCy(p6<9i1ttuUfFcOrVjq%r=H}t>iDxRB z8#Th%X_HRE&5yffrd8SlLP~I{*GQJ>0SK$#+Bb8$%Ej~U&7@^U*&+$X0@K{wE;3{= z(G-XB}Wu^izgOb2B%iPYZ;hE@ZM^-cdGe~>NfGEM~&2%@P`UTEt%O2H$MqqM8 zT3`aqZ92=|0}37c@k2o^sF6r}OWJ{D83(9f9_Jg!Lk4cn0L0fbLXk+jlXhtB6}gg5 zVy3EeY<`R8d^1z2R{_Z0Ow@Y2baGwFRkaRGM(#)_HM-KeIch-t5zlpBMrDg|bBe=k z$bKmR!7^=sW@DMygn-rU)${A~m^(U{0m;o<%S1X^I@lusK{dKhRki6PEt3w*ln~Anhpt2}}z>+Z2=fWqZto?Ql`a7zUvFV{VjDGzXX{TeQ*K^vvh=Wr?&a z0L7!}y+$AF%ih=aOxj6}H0~Ez-kV*gsp%X>+2SgNjIVEIWaK)@-GaHm3_GR$%Z`qC zDcQKC0MvrHqB`lZyGHYKI*O_G(VWzXu%@`K_80^pj7T?bjsSEH`!jqH=enJwcqK^4JKIo z2+VjXNsXALOKC4Wv#Xn<)C*m%8f!%`H@h;1tEatl^K*?v{I<;bzA4bTdBrvFHKOY) zoiw2%4gC}_&o5`c2we1MYId@-Ox&gFIyx{J6g9SLj&Sq(`AQufkqha~^y(y*NOV2z zxOhHNje-zS=nyq(EfW&l*=9g!!ybym0p=_0QMq{w=0B2~N2xby?&6uwGk<$UIxI7# zlkuD0%)&FT((_i+Nl0+_y}ync4WhZ;%+}3q>p|C2_(f@_svc!DiNh_JnA9)F7pi3* z*K`fb76dciOa-78%yosZo^x}glUVLLNGHS1`DV@pSOLg0pu&vofvg$O&5XJ?lfXp= z#4KF_$VvNl_E)6W_iuZR)CJeMId(+#ZoVFmJ?&X|i@!{64mXFYzBJJs)CkwB25)9? zO6r*^TZAz^T&fybCWQ`ush}2U`kOg#?ZT7eM1}299H!7AaX7FnmboqMeRCAp)@w8% zKsOJPq-frOc`WV16Kq1jDultCNoqvrRzWS$bT>b-@g$RWSmrfclS_MK21HmD&7HJg zEj2pOIed(ic3LLwG0}H*bXb4pJtoWgH+43095+oIya|f#+#YI zQ~)wC_vviXNq}i)cnA1onZYw(gf-&2+}zw8#~9i!INOA94+6DrPA~()bizh%?$ihe zW*eS~%?QIi?TqG8wom|yV1DgKIwF2|jTS1?gfTZRiyXqn;W)Q@DD&NGj->uEoaqr~@)8WGH}Ozr4sEfe$R zTQeYlXb#VRbn}2!mf3>2%;(jBX+pEV%;^{|a3+KybR^3ZX}1grdRxDvV|yNvX6LXL>$PtF`^K#ZJ86M)*r=$H zlXgs;H|gX#A-s=Dz2WApn~Su!mT8^CO&c~;qhokMAOa9;k}CDKV4@V+ZYi{R^P!$e zHxK@9_+XO<_kODDq~ z`BEl5Q#{jnCKkUn0m$CWd)HBGnbk;N3C#44s?-afIUOH|Lgt~K8E(#Ko?TyHT0!le zM6GWohW7#SAe{^_S)HVfif6h6H%)C9-1){yZpX5FGY4Sm&5Za{$`*Jvn>Q1r{T#Y^ z1fZlE5nu%%i{{q{X$Q-E?1H0;sS5(FWn$%U*%iY#^L?M4?A)BuoE=8unSrLind`gF zfKUV4P)xT!Ej0?4rkl^<`U*e}CJuIXZ|3wKcEJUhl;BwO6_^et_P+J)F;F@NmKg*+ zS!Q${2}}dib`DqM?u94lL5LkF^`UImN`#6@`YtewWxm_B64to&LpoUzex<2il`Y&d zr}k2nEhGKmwna1{q}NkC6JV~}(Pu!Y360)N+9SUd&0A`8Uj5GD_x^nLi?fqTCj-ke zR0YHAcEN4OGV17{6$WY7RBs0+Itp7b(a~{l*84)*xtSwf_tTqcZ>B9ay3?Jav}1wu zu%(ce8I463l=C%$adrmT8tbPk%fvG5axb7-CRU5z2WLA8Zs6w1%{wq* zoQ<2Kqhl!>H9Iir<^e19BSmwI=Ige%&8|Mx>pId`Fhey`OJQr73)-$5arijr`3Gtg zmMJhhFd?@&5vp&dNpSNhour#b+YwJSSAn ztN32cvFU<~Vuh$t3+9Xi0!;>FBUQZ6kie{;FO5hOLVlHK&SjZZ=(x7g>|}(Uq_0Po zE^1_8&PTs->w=p<=jIGR1Xw}`z(h}bTed(nACIok&BGqGSg&>S;ebHdTiB8Ih~|_x z6o5J~(Zb&Lw7)l~a)W42mzHG`!}u!V@ZJ{G(Cms8&I2&n(Lo!H*HZz=1JHJrWo68O zuutYO17b^IitB1ZaG~Q}nyxFDn6_9^?6p7msYV@;cDi}}@x@$7mU+8*`)1l2gyC8V zf*F;c46u}TP^10b&Q5|F?ZdrB@n*6nIY%gxWtwHK*p}JU&9Ob^*rGA6dNkZzU`FH~ zeK?pK5}x~kyeHJ&_x7@1yqN@80mw3-rRz1aHMzqsxN4-Yxhq@X+WGRs zDju>+1|@;%V4{AO-Q2|C;oZq_Y4S`pZt?XjZzkq?Gngo-ZM+>)eLIW83C#MhUyA0= zGmra)Bx%Q0#78|dQFT$HFiis!TaAioRxoi4=y}K>t5`Uy@@{k{fxIIKrEU zW9SG1R6C(Ig6`ku6V1tB{D`Vv%AydO11%rrA+G^fEUn%4ldBNumOjz)T_GmV*30J2qqFQt?4nHXue;^k=dHoK4Y zOiLX(6r*VF&3r%G`OFf!E0`$3t!q{_GG@}uwQUi=yr9vYnWLVWnmL&{Li`t(SmZNX zG(Y|0N)L=YeZqziTHd1#wZP1yUy-1h-&a4mg`Wn3PG@r1)ke6)%*xE;XD@3-A*&sWZoqUo!ImCS0ToKsXZBj}(U7Jc;H^EM?}!%rVpMS66Nf z6n3HMeI~&)W=a|bX8zgC4MOr!eRB`ycEmgF_u1xR-L)OzBr7x&0C{4wk>GpR)Ui>3O@7P z&KS+}+&nRJwR$6%VG$L5^Fd8t=%ATfJyWgT0A}B;DAA@*4&T2l2yh5N0VsfZuCF)q zb${CHy&;;*XA-&Ot48yy$L_&Qw0hD0Ey^>1Ni(+$NEf$=Y5}v{9CkXhTz2LB>xepT z+k$&Q%FPYUDvge|xk8^=a`S9(i@=eY{7o59$$-{tbD|wH?PuFr3ubP>O#x^SS7X@i zvTIuC_*fj~`sq}27c&bpPdvXc7dlD+N_QtG7Mi2r5Q3)Q3YgpDUy;TlDxQ)47|ksJ zDV;Q0RWnC4Z~JJJMu_GW%iuGqGwn-YdNB8eM~ucuA^4gw(;(zsBVF7IV5R{m8;_yS zG&A2!B&h^fb>_LC=!U;x<|uTm>EM=0qv_!q1|UWA8i4+KSkIWr@`lD^yqV(|X?&0l zIzAi2W^QiYQ}s*_Cf3bO2lWyh-j}uA)Imq&<_6)^ouui@%!`@7YkPp3J`{iDz1*sDZ)FAj$x1RT9@zXUTkpE->bn!yXq z0wyANn=Bdu2qn0qm5T$I^qGX!#t{T&W#)dEs2n=8S2zQh1|fass@&Y1X3NdH5E{%Z z*JDzjX<$xfuH4*#S+;tEG}`y{ex`v*W=CECY@1?!WJD6E6yQXhjm^7M33i+GB z1enK$8~3wl$5wAE4aXq_0%tLNHMS}M)o8xm;j9Gu=xzKp1RxeQ3{2h6G?&?0z2_af zlgFA4A(%8`J#%AjuI^;lvdN3kVfsKb1-v*kV&Lgq&=AE zPWqRsFlKb82Tuql)ul2ZL$d@R47`Pp9X?% zrrms|8fs?cH2~p-l~x@#FxTTu=QB+jaSWUDa5D3zGymmdq#Qz+yr;~(m^m7euGNc! zCvTha2tLzdI3biY@@8Hphr)`@ z%>aam)P~x9G&e!SDLB@T6o9JEeBx5odz`Js7JMebw36^-<|+<@nLF0~{59<7Skdh5 zI)2!;bS6Vh{#BW|hQY0J*XXvngb7U3nUk5@s({S=-_@B`-q0;Lvb2DCoVVXl!-I6F zz9(jG%$%f=qPd~j0#I9rF43khRc-w?LI^+xCe2*TG%Q4S6zCYd?4 zEfmd5G~e)4h%dpt&z5bd8JIkEuiZ({OqAflTfI0f-lp7tGILdp2qC{}0NNfu?21{V zJU1UIXC6fyUJ&qLmKOwUX>HKaWkBXV z)#^23wrGwS_L@8nX5zKK-)_OtxXD&kjY>4f$@{>}=V=wr5P%3AlSt#J%)E;Bba_83 zbQo|{my$-o%#ln6GY3^au1Hg~Z^NbPu2J=w<=jcgfbN^mstvRdfX3(7)B`fM%FMf& zw@1DhfZnB5ID^k5aON|o1I|h(OVtQ>+I;|8m$khq5Wutw5zSmnRo-X9%srU6Qivx} zlM)=w+(i2{hAn0mY4r3tVKZ|q`>k1}onYG6l%-2&)~eCd9-cHXv2UJks8MGcGgZ&@ zW{ys8yUK20Vg#;@as{7h0f>B*&h%iGnf5Rq^FFE1{LD=G%$iOvaXbe9{4oRK?AsK8 z(b2H{DVmdy(_uXYpyD&J?B^B) z>H)|s17b8MA5AW)&`}E=cxAGVwoW>8>+AdYX(T(S8WA`%b1kCMk^Nj8&U_}pG-m2K z1`j4?jY2eEQTg~dYc!oXq3KI!!e?R#Vf8+9d7ocK3eC*LOwY^>XC;OX>VsST6lpwo zVl13;b1F_TvqW=@6#5NSp1aY`E1Xnt*Nf}PR` z+Oryd5bXxxWabvv1!m2F&a+Jx4KOj&{>!_Q1XHs{!OSo8&w`mhYon$Y?aa;Douu|u z04f0p51_gX=)pOec26dlIe{}URf6-(L?!tDqc}XWO-*#PDYz5uNpI%+n@S@FAp4qf zA(?qG^FK3_ETmLdG&ei1(&*`#xJC1IEpJtIvJM1MH6kAk!f8B4%>4J5$&te8CW62O zn8$I&4K;K!vgQ3j(rMpZI@7GY1t1K&4x1huYQ59@lQfzJw`{gU8Bq0^v7ULq*aFJx znH234g!W%XX5P%)qD{M>iMx7RmH}A+qR-S2f|044dEen3(HzgqF8#H5pH7<3WNxkp z={%Tts`m)F`H?^SWnfNQy-YFH>MhdfzT(mQV@r1@&1W(IO$VIiGYgnYuU?v&qbJn7 zXo%)yre#3%o{HwRo_Rdh*KGl4d5?Am|0ggfW?E1Zm<3E+7H>n>6ElJ4ke-8%`Ra=9 z8u^Yy!vI7W(2M#4-+?t$!mYpn^)%FKVGZDA1Vtb|#4Ep!~Xcj9~|h7cA$#4-Z6 z)0x(`n8vUrjUbJnGuuh1A==An@$}Ud=H>(8uc-v5LPyb=+q?Mygc2O53;G-8@G!Y!FT z;}LT61k8OXCsa1I)myrg{Unq{^Jl-?*{A@f0XIn_`AoC(TIhg8cg5lR!6ly0%ll^L z97j;qsOrpp3&r6Vx8Q7IX3%j?C#SGOxg?!gbtWda=5+FY)+c>;(xN%}I2AesX3?4J z*^K#Y`6fm||h^EjS*mBVyqxgOI_ItMdPeCAYXm(HvK=z08#bUCb-Nh4z>1JD%L z6@V(3;Sxd_cD*t%$xO?IbXYH#`N^5z} z`a`s14+v$W#AjLn;+^)5^-M+cl1}1%^H6Djp*<5Y8GsBzt*&@x7T`kPd|A#6Ofzn# zlgx!w9Io}uKM!shm~5!=#;Xb)70mS2m23=~(#T*{2`-rV4kb)ugtuUCef)g(P7I9 z9f_IiIR?YB4I%7DtE&@C+||p{Nix$yk**X5Fi{E)t=?xj?b5`+4c$rlOtyOMOVa3H z)0qR;uSu#4OrvJ=nM>>Vn3?0KQCsK#Q5qSns%ILO&1ar_-0Hp7R!0h8(#$P4pQ=Xc z0aa-fyOVgpCVi5d0mxvTUi_2JEMUH8JQ8*GftkQef=OmdXPTWCpSfLlU)EAGIK+-Fmrv|NPCGk{Sv~3PR4Mf12<$qmYegQtJ)TZWo72Eg-ZyiXZAxAA({_d zrwnK+!AWNpX#{TiVb>Q0&d+;5CXzI`<(auZhkrrf!G3g_0g;(D?5Y6d!931u^UM2~ z98Pb+(Px@eR|zhFc|1*`TL4<#`!pRt=s1_)CedyjmCh{D9LxLuaiuy^n6)i3ooU`v zU{=wN$zj(}!&!;D9f1tdoMt}p(P*whM`0#5SE^ADGcW&mf1c>DhMK0}j7&WPI&K$$ z0Op(K=EHqXI&&J75i`Ne1Gh+>&Md>Oyf!`%bOFc=UX^yw%;W4AIfj|TXRhUjGyd>X z1}4+VNwkZZH3K@nMf0sSGJXV;YGp}#CIU;;ak2 zl+Fxb{_9nvsRT!ZmozFm6Gk0w4&T#m>QF&*I>`)3>11H$d7W+#2s7=yC>L}l>zVdN zjw%3EpZOez)0tRA?R%&J%tR3B=zU-&UJD2%xUo9FNq|b2Ia4WJb(vxp^xEPof>I z^r7Pi9i23ql1Te6BQOCbjucwGt>)%s-7h^YPG(wnaqgLoxTRv&b#Nbx{!%rzQ zE$`8WnptM=PF~;MojhCZJxC*q=F_k%4PN!k>NBB)3KNZ)%e$q+t~7IlRXWo%bHlb@ z$bj%tNV9Wq<^nW4+GI%Q4byqJuuu%zRqtmzkFUv}KoFvoUNIhfQayq2`&n zK1W+r89oz(u3I{vNu6nVkH%v>nB`4wFWO<_X$EA>WJy?}J%EXL6NX*47(We*hGZV>7ePhckUNpI#@_FJ=PZV*nnx$2pQX3fnJ&%^4DK&dN~WzXN|CZk+piw%%>iZnCX~_bjMG0UGvBg_!A?xxMG%io-YV>b2Vl0ZjT#wk<3aiJ6s|IC~Jl ze4n(?VPR*Q9JYBlfm!RB2a<7LX~(IfTF(55nNtbQ3|?RsFpm=lGy|CVOgqh-d=!}G zG%GXD^V>}Om99uLnp+!9%ln39+fcjlY_wx$Sp)h!xMcx|Wn!6mW#+P-uAX^6`<+H} z1|W;!8ba{QJl5Ce<_|7FexB%H08%>X!Q8JWoXN!nls3{HqB*NZ_N7*D0CPJ+ck)^9 zba|f;S^!ej$b*T;mD&-Bk(=W=hQ6Q{m}$|R8M)dP9?Tue$VKxTX5QC&f$u;Ng$~o1 z^qDMqD4N%3ejTfuHA3t6*|I&Lf$MY}S7X?ondOeSV`h2Z{Fii+u$uQ2Gb=O4#gpMP zZye8TgTujRQfCrOD-&yVrGkl(H& zY&Rg|t1FD=_NAlu9?bpf=b8sIA&rh!lnVi9kaWs`xST4VS*6kWwpS(xn3&IeemTWM zSS8wxnl%8OM*tJ0;XPXrU^F){#Z1F;%o?4()w{gC!Wqnbl0oBNp-THe0=I)pG(W=R zFapq(`b>gp(VS&D`OKy>_c+mk*Df+MH{)goq*iZWCN96ZJ)pwObl*GyQ##XwiEG$# zq!7=lWyN8tOM_K?a}Oq3k$$2B(r8JSsw|olLYa90bHPTmo9I|^^*&=J!L$H0btkom zifE3dD*v_xh7j5=OH3ze+y*8&s%YM%Q5!X43GOGINuOyPm1y^7zOR?}ndnY#=}fyp zI7xK^tP&i|eEaj{u!;5wOwDH+HH(>V=vue{gb}#$hJY^)Ct&L2qhZ-|^Ka37&$oIR zfb45pXOWqgXpXx(zHNbd4xVlwxViBddP3t>Heu zI25D%nbFMmP=dp=ldF++An01XG;?kQiJ2t;;s1J{xt`md6*_3<2B89wXXcI*QC=Fo zD73c$O)uKbKXM9gsv3!zg_+yxeI}|#xKlV{(q!faCdXr@9*|0KB>>&~;Q~;ZfJ?V6 z2CiSz9ETaaN^rHImcDQPk(ra3v$82OFU-VqK(3*7zsH)kEf|0-nrq!J1fX&icWzq% z%qty_F`r3hsyH0L+@7W?M{bTA9aFkK9HlFCuo%Z&NM>H5`Es{2dIL12is!$xJnVY)YB-+hs)`r?~hokqHL3pw$I0KU%%cql=X}>=g zhbJ%%V1fB>rjraidML!KytaD(ex=YdAXeIW7hBA%KJ(f_ZvON;2yt-BOnNeN%hCmA z0rNnYe55Z5-=r=ywBYBE#BxrO)g_5 zSx9CwUzcbvqWum!6I;DcJI)hCI|Gn`IrV_lwkSUH+%Dg?z=m4d>Lr-uBiSlu7BG*; zZ(AUpym<$I;D&mp0XOA6s%M(htO018H<`vfMLXCh&^K>gp->#A z&$O!1RE$$`xK!Hz%uL2``;s&=VpcOpE3(aRm^8u|b}HJ9nJjdy3_xOLVdi=@=mwY% z9z{%By=L4j!A;``YFpH{#ob&a!9;PmmOg&;naqHUt-8}*0}!ALuSluwJm~~UuPVT*_ZzAmp5}$mt^KN(IGRh(R>RxI#!r@R)Qm#!;yaJJ)po$ zj2gKG0gPdsYn$H~U}6mWO+~v!b23xK;Q;3LdeQ#lktp+-e27~* z(}Rh=xnB^deRCTo9u|!Z$iQR(V$)ZZ_Ev&x_fD*ySuP>8k@gVHDUH}I=WnVSm8#K+ zYjAUJUiJmfkD{G|Xc~4^cd}I4H(Y9;!Ngsor=5)o%wzyEKB{jXeCCNK(>$0+CqH*5 z&CJPB`OMaxy!}i&b|>F{^&VB8yFa@`5X+3jD&gn_+X;)3TdCAT39+1={rixKXt4$1l5+rZZK~^vo=xJ!C+? z-h#7qQmx(q=GmJR#!Q&_n~8Qa?kSp68mVnjb>`#W>O}y$&g|kA!KC+OP?9t%U{3EM z)+snV$IuqgUpVnT45nE8cY{kxu68 zep#Wz*s6wFl}71`bk?0TPf2yDXdcY`*?a)PlidB#L@;w>CWm75RH6qneJnm5k0CQn z5Q&){%zx(+f_X~i<{nJk-7yE*76kB4)h|6Di|bQEO`;vq9L$W9!+ilg>P-4f7KaU1 z6*^iE=v_jq7t%A!fC#2-TWHwTn>m>2Pw_m!w$7;EzW}5fZyOXrN3T8Ylj`>VnJW0Sb2+7Ck)fGvjTIdKm6H{>c@; zF!R{oAdSvFozFC%$!I=>B9-8ZXdkQkjOOpw2D3u|qR+G*kihiJESE^#@_yL^IGiO(&0bUu$CK*-yLTr-7i`P$Ngj{}`_dNM}N4-kj2EJ)mW5t^_kD3l)H9 z-S$K-lWVidv#G6XRwFU0@b4x8sPzt{6W0 z45p=%(`8rr%p%&Mjbb$K?;Zy;XRu*;!?dTES(sU#T#2pTo|^v%riCJ9Ko)=MhT5^- z;SDvsY13{a1TYhyDbeo1+>q|XDY&i0_W&l%+`G4t&V>wbvlZ38`kX~xa* zm}%WlRigst@%s0G%A8S~KKc<%GE+-cX6IFBqOTjw9BrYjo=Gz&NBNt~9Lz+~DC|yR z+oBcP12atqQL0bHVS!nFCT>ENd}kCo%3UKqt2U^ILdW==A6J?NBs+XFxdlh|78jnADjTfRs*J{AsVQ{JGU@%%soM0cQ{9{`42q zhR?jQx}TmFr_WRgju_fk&CSonOCxkAkM!b}nK>J3(|C+Tdll_Hb`NGkv|s(b3*WXd zGiL@wSQUU;04k4mPSOYgXyKFR!?yDk>1nH1%q*h){A;D%MEg`LvOcAlS$*b;5HvFr zI`hCPQ2%LS=J@=YVmM7-8Bk3pIr7%;v@d7d3<~Ka!L+Z*%mpUETye?OrIR>=@U%At z0+=*&lSZ0?GiB6n!Cm_k0}#q`iJ6;8PoiBVI774g%xyt-jz3DH6LWA0nADl}C1x6y zotd{4FPqQAO^LS563pB@<+Pz@2Crydb>@jn?T(qaQrIsz|0LQehybRnDMX~#_anXaxR(R|wKRXSOi z`R9FeGSfWeR5g;BS1^|r&WD+o<1uG;Jtko$y{DpijpkQ4D}kyJo)AcMCYfnpdiKlv z%(6P^q){C}_#A+YqcU?3CZ6iG?pYhdUU4JJbo?M8>X`;1OK{V^xqN2vnRlPx7(TOX zs1e@@OiLnXPig;U1SY`5+}0k<{MuVi6w*mnjo9iXTLori=6MD%&pRE%CU90O(s+zn zW)tmy)|nYI`J0$onHkIN>m;WX;elE(-rB@0Z4_8V&*9`Td5uR4ie7und|{+ z3eHFK1(U-yc^u5d?nQs1?nj+z2CsC|gNf7EE!+$+k()nlEFpktW9m z0={pK!bcx!|G~_sXTOZ20<%T)C%oZMWHwkRiM@b^OiqM1*{ zVTty_%zX`$!_V`!3TFV*_$V;RM}C!Pj>*_q2j(P=Cb^_V)Y6?i+fe(+&9Mjc%gM)y znKmdRpV`vMcXjp5^6JW!mEahFEEkf`4AFdtuI!?+4QH{M1xl}H)>WeaX!=eOfa(_nh0i2W}2BRH#aPs znWKH?%pCjX+mf9Y&wQrADl@Olyuv_e-RanK{8!tJjEG0}!qrvEtkF z5FZK|SnH*#2IjHE9uTzB=V)%mt%r|2GmjG&oQqKpX4ZEnvst5wh4!z|tdT*{0ua{s zXD~5@aG#lIH#28CIXx62omrwehF!yoG*;F!W}42Nq!A;$N^m8eJo=pQF!TGp`dz&s z+G*wn;lxpaS(u6LS@fBEngL~IKE-uS!IiTTPdg-T%zW^dO%59$Ibk#%K@l?xGf~ZS z%)D`%r@RT&0{pP;dDe&%9g;>C%v){_VdMhPv#w8i3y#dRbdn_x)ibL!%A$Gt>I%Ue zbp6ucmS-l)>g`zB@R?xd``OGVJ~9AFXBMA{La-O@?~0QriO*y-H^nKR>6wXgTkHXC z&*yh1$xK~#^`KVwVrugmzy=hNa2;<&otv^-lG=; z49g~skcrpoFaywXr_zYbG(K)tjFU8~(r5*CU7@#1`?6s|GYLSHMh5FtX;(Ba(Hs}I z95Zoo>u6n};4^9F2CK%fgPEVm&OI~VBfZmZ5Kb%7mJ7+utC^pDg57-Pf(^CI%+0td zjifVwXXeI&n^^Pn9GGXn-`zC zqZ&Lh6L*c8k^g)Pj_IV8i6xC%26XvXSC9eST=X5(o40yt=A7*im{l5Gn`dUJXV%A$ zBQq@kF`7?bl18OCe1{iN%QftDsVWITDh`JLw0wJ#`)O}`(fZW0dU+W9g(u9W8Hth8I_M_aw#%<+h4 zyW?s;bHQ;Tz%$yUar!PXkK>E z|K>AQ95y?zx%t_){j3BBFxT_1mG%*zzQoK9rXMLp-+W7F+D!&c0={;5GC_Nxd6pmS#epqi-!7`?Ml0W){(o zmy~>NzHaX?(cD6j2DdDj_rb0Bh8oUezu6)xA!OJw)0df7GvA&DotZhxo1gEr(^KjN z0nbb<@3)SRf%)QvpqfpF0F*J);<}hwnR%mg-V^a&g2Q9+S#C~~rp`2g1!e(ryS|Ob z{Q4e{jUF(r3(U$)9OCigF=g~9lSUH@ho_jplr$=$9ev%9PM*u2MRR6AX7H0V5|~A2 z;uyB8XV!_1&$r+tjfQDX|9>%a3}^Zb2=`Ag=AIOXjgMTB)>0MGY+&*xZa)(B{vwU| zLhsZAQq`!K`GdNVlSatRKTpB2^P`Cl&&&-|aCL&6qJ4CFgJ?H1pJF&maAIchnajOb z4>`a@59n(5u>+VE%_lIG0U0%`&P?Ao|EM$B15yAoEL+uRZJo$M!``+y&UB{T1QD4z z)iY)0RT`b`?ty{1yhr*}qM148g|)iknTg5a%SZF)z1CJX0=|Qe7~C44)37V!y87l- zXJY2SWk3i(D87Fb?N&7+M^)%(U|vnNo0(&BIPII0nf68RDKIOT+wHGmKkMDI^&pL` zYD5Sb*9B$)vz!)pRU@1h&tH)?J~Ex0e5Rs#iROSa_{`-_Pd+l5PZLHK%>-rva|;t4 zB><&Ua0ceoP_y3@&8yD@aDJj=#bkC?f+KJ?hRr1w`OE?)rr`c~3BkZ5Gr3+RFe{kX z(atpwX@p99{=95fH6lmlGmFn$`ntsc69=5nwiy(pk%2k!QB@;G-~#3-YY@zFHY$Kg zX=D&;5!JA4RipEa2T!o>SH;qgV45`2W!C`avW3+ZnEB^u&J0LBAP;7F{KxH1Vm|Xt z?`K*xXWlbak`#cdG{T^;Yp9_m^f?2Xm`Q*&girzyy5w#=1~)qP_C#IqnT+OEf}0jm z#mpMbpTl)0u?KXwkQBhQsu5RLCiyNfE110rG)bd_OKU?9&6iy#2yGrt8Bj|n-|!&a zvb^m+c3>v`Bl8~h%`Kc)F!v>1+&cP^!T_e3`BV}ntTJ<$c_|M2h8l{)zl_H)0GWK3 znfF3Rd|q~JQ~u6OiX?$qz(gh3ulqq7y=`YLfJtd&xw+0tn9HoWIc`X_mn=p!M+t6A zpX8>`v@c~q9?WCC;&Tl5+HNBRW*USHKr-_H=6SS7z6LYV1Hy`0GK4TB=NCs0ROs+v zVy3+f5DqY5=Dle2BQpuBqPd}21JKdK%>c8!AkdEU1TamsPZ^NFbYSATmd}9h7Ztca znz<_NhGna??`6Lne`Mx)rOW#kfao)M6;3*{n)!~RQ5kw8m^;P?lK^C9&f@UYT2ne% zMElyGQX-h=l0FndFquv=6bZ~)f;;`TMX6`9DmT!Yhg}(fR+Zq)Y1Z8QdE&4u{y7_u zF`r4Pt}$%GvIU^6wRLBonOBVlNhR8e;Ph3QiMx8fJNfMW7HQC#EOeN0GqF@OZ=(J5 zulvDgVrDam=49q1)$Kox0#Gf%aT{Rl0j+noAV4s!1h?}yfeA48t7SWr&s?5X;S6R@ zX=Kd`Wk6<`y`C8s1a5TG+6zHHf@#d;=DB=k@tL^qXz5P79`hdemYtPg0J5H>0+44W z>g=IAd871^1t6Na1t7|IF|$ddH?FSi`{&c*lV~Tv3P3fTd}G@J7q_x#Zoo}o8b`&< zsx!~6#d9lk;C^P>wqQCr2_o|uVrJEuXS^P>-)VQ!nE7QHkaVVzspaNpAG)5Hxvg0= zCzve3$;=JS7J#~HA7G-P)=M8jXHps>{JMSaxQ%>t$00bS-T&D1b>%Nu5cy%4e2z z5|c%tYV=Nz3Je5M9A*HrFOA1|X5vcw>2@c}iu97*&m6dZu?M8bl{}aS&Yie@bClq& zcAhktIZfKUr%v$%F#GGW^qFO*JrnI_+-&tyzDu+>(ayU&y`H(l@{{5)nQ75nJ)p=; zjKLM?hBU$>o;a!b5lpLRP6sBm2UMc@b$T$NGyC{!@R{_KX7FnDdS-5SF!TGtW4)D_ z0Zf{?rIV6I9?aw4NGHwAC5=3oJFb^GX#_KW)AMC!+`P;&4ZF%`!e>IX`-@vuw0|Bc zH1DbB7y>ibH@t1};-d4%`N77~iJEoh1F6(DgF>OhjGMD>E9c=PjY>Ls!9_YS%i_xC z0A$Qm0P<#zMIbAy_mM(82=uWyJo!wkAIZ#H+hYCxRxj1kuy;$@G!UGp;CS*;%ljV8QZ))~3*3Usio^7omH|y> zE@@PJ=5@CBPX{w`bGV-z4n8xHMx5DH0IH%LM(t*eP?5`L+R03-uS;ioGcOZwZgTip z&VFn>Fw=DAwB)C%k)c_ciEOfZNSgW8OCLXiIik{+%-pbS8PIzBBT@B1Ix8d%+~z_D zja%2SJ(v)h{sn>iUD3)I>H23dS&UNvDrSz=^0!txhMAX2dn(%LGwo}d999NYz{E{< z=QHcc$4boLGff(ikE?A2iJ3Jw$LeGd?RZ!^GxJ0msn8L8=GIQZ6&m)o#j<^#f@1)h zr;h&PfB*51fBw&Z|K~sdi~kG$FMU;Jma@^@P{VxYkuuZFoP1QFgLJ82{`q}#f@vAh zRPs=6UIGvj9yd~0-cai&&0zVHG_n{@PPKkAuDGw0VJ?w6!d1@qa$WAQJ}v}e*NGxN!NDw@M*VsOhvbBJ~vj{2BR z8Xwi2G%Ig~j^k*J^I_%y6AybPU>Y+gojDo2mSu8{#OpV@q7sdcny z(=#Akbgp741R$o9)&t^A1c6z=JdU?Lj5wM3lXfS~q^C-|c~5~^nfd1o$be(jXxi#k z39c}6`*sU%ye|8bnNMIEz+z@)CTc`g2$`8LOaAJL0XIc+dQau%VCJ^-B2*7Rcix>$ z0?;ZjO=#8tgmFwi(_VVN+4UHLX$@Xg+6~JwpBYYzuNRJse-iD}NTI>{r2td{(7Cnt z8GR;>L}eL}Nh8j*Phawx9ZcU)TW~%mn`x(+6IK;E%+9ONT*E|18A3>RCoP&!W=>ee z%)-p$iPGpj+trSsGY!m1XEK`0XI3z;J4EwkZ-dzZOcpiREti>lGe4KO)eF_04Z9jM z*`1WmG%Wu`X+-~MUvtSr^~{o+f183^+s44pJs>mlY1T*q2tITFbJfWB$SS6eM0qpc z@4MY`9isil$>IHTao7~6zzkqcp}Q42aL~EkMhMZ|m`Q1*+&q8@&F-WTZkKK80cYdm z1SaK@d}i^PcRz|tGe6GHg$~v;H(UHuak!?F$Kh|mA)UPVsK5}Hm}xg=a@L5UNMP1V zJB~>B-O1%d_ctlQna?DI(}IA~$&yZD2+q&6;|ZH~@$shs#0+RUcp@;X&V*`ree(yK zsoDKZVJ;;^;RR2=qTVzr_@aBj>*4XL%wfApEwM$;Zp0CQQ|fky)q z`{pet3Sd&So54>JUg>1XfR4upAUv*=FI5?s^H7Zamr(#}V0vbj!+PnfE5=90aHW$* zroOuJw8^4j<^c0PvKt+yGbd>@H2s&R;A%bdzS>)U157m3p7gAQF_V0p>X|b0qBAc% zXYNXH7=nAV+&lr3^&{oxwQYg>jt)$;EgoD)==cshcDXszNd_e`vjiaA=y2Uh_{{yz z`sU^{*|wm;i<#AD{_7JR3_$9e`)FQHM1{k8`tm}5y0G@Q0Ty&qt^TlV2;54HGydym6_K7 zgyqT5H-FwMyM#a)WS&ww^BXfuX`?#GJ_U!j60^R!F_RFg2js!r;4+E6GW_t3`0ubK=;-HL}S($lV{-F@uCOsd+cOdAh zMx5vnGaWPcYr+4;-|(4uEWT&!LA0BhQ?#o%Y*_ZT#pdrCAt5?BWjHa@qB%=&T3zvA z?&$0~X@vWk`76>iX=Xr@MuujK=4<2OFmo{Tw@U~F(`xQ&sMTn`^{3$pCWhQIX+$$; z0OD_ITa<=cT4~SHNdjkl)bp}t{W0MZm(0CRs4Ne076Z}_sw72Gt0(fEH|G@a3+!jW(9NY znYf8|6h8Xdd;BzP8&xBLNt;f-x-_~yGeOH=ZVnHG=LhLDhK&HUVhTG%^A+XcQ7<02 zfteP~8N=0`Bt<(j{k}P*QNE#OX3k2x>X{zQvRdv+a5#9oVpaA9rVd>M! z_kBJWIw+E?exzt#%p46LKhs{8_fs&3`~0FbqQMKy3MOuk`hzF<;qzT1){5jay_xU( z+fI)Tor!agPdbEPK9j@O8Y%Q(Vx~P_LO9T%Or(){%E`>Fek3#hSsG@xTWX$phg09fPDki_w zwkR18aC23oawO`^m}$|R%%tMfL`RoKm6#=TcV-sVKFB&T)4*g2P65aVAUsHShKAa* zqySAPmQ3I+M&a zK5C-Fh}lL8*T-*LU?|~f4>W{A2cx+qky`ijVB%Cv>;Yi__A@hS@ah2>n#E_9*ZrKC zqX&ey630&iH#gD2n!6SR9GIBTY~jYDIZ8%pI!QA(Fu4(=LPw3}>)Ecd4=^8G7j6SH z!Dli6QD^cuWkAKux67|cWA+tjCT31%TCHe0`6w_8n9J=ahf$Klioho@*-%rf*IZ_m zMmxr~!h!(upU=_U%$%^wXZ8}DZ}pbJts{%(N!Zb>QD7!k_rrWKjTplP zrU!GwzPTUV!X1S5<6%8k+UJA0dUq0i^FLpYp_yAW*Aq6LnKC94s+fIKyrcA-{21*)$jE|G|6qo>W+qZaF z@4nO1;xu!W;LITTQOz7BI4_M}jBI}Nne0jG2^$Y4=7#-Sy*Mi|4S7svPG*iDzZA_q znETb=KOI#g+%>}URY`7c(umB|zIgx>yA@$P2Er(d=2mWFMy|mv4<_zAhDtl4Pr9LI z#y!nvPNuI6s7!Rce%~B#ExqYWRTFUIzlRnC1`=Pr1cxG#7wtuRCO*^5oXh(PKmp8s z@q=48rV`TPFawams#81x%<~R!_2RI2di36WCIgU|>A^g}%UTK^(g-?pOA8&wOy=ek zNh)-d3~0OWR@N9`qSAh)*RU-Bk(rw{Fa&0+8lB-10-||48x<<;#>}a_VE_xv%FI6( zhZ%MZRyHsMW@YB~`WI0jD5ch%{E3;I&(uR9J^<~{*)nnSnJ=DU$*M-iO!85=c>r^J zUSEPkt2fn|^p7^Kr6B|lCZ^!NJ(Y-|_9O!$nAQVgT$j%*J`*pZwsnAE=H=ZAJvEN1p-?nerdn;+@wiZPP`NL8c2%zN<< zAEVNKwKMoXNh2na)3$}Wlcm**Rn#gghtC8v&-85znz;oarIVhS2kss?pNRm}%f*42 z1}0S3HAXdd?sEB z`IwvA6x_6Lt^fou4;0{B0K%Zr**fVz1t1O~D4q0XjzWiLW-WANX3l!%u>CJ~&}HVu z%;6t>-@J^#U7z=WxNklItnrvqf(x(vm8-ce!3<_@0ca9L2CJCaq|q6!VZYncxEjEu zaa#bQ_Y{~F%;#x$B`lgFnEztt?3No_1!nV^JLX~VH^9VJ@1EWqHsB^RCr2fXN^X9Y zJ5dvuWu&mxIf9v6uwgw@2Ty`D!a9KKPCn~~ZI%LW0MnQ`Ux2fJnV4Cai58HrXRc7~ zAG?#R8nJ;PpILooX-0M$)(tgCqjKHkJ2M&0DTw4VX_`f}qtag20T_Ue`_FHvS;<4p ztkURSJeW6JXgbqQX7bBsI|OC{6YGA}q)i&#?|n6R{}6ywf^%lR|M{_a<0AvmRO3`M zuR8Ou6CI{Ac_vp&RYuIZx`MYYLI#BMW$8m9)R`8;)i?KG{=L;}X3p}44xV^0%j>5> zXW|{OkM+zcog`c3GmFmLzl-)gy=z3^Otfoo%QLgw&-AlK&yhFOXy#UeQxC|4iAu0< zs9|vHPFJLjnNtZ)8IYk_Gay8B=Q9!9`zTis?UY7jCV$i5R`Hp~gW)3lS#FNX$69|0 zU>XZ0+KrCWM`h-E_mJ*k-|K9kGRVrFILiTRj006`i( zO)UMyOiCk(_Q1^luQ6;Zd5D?S%(pcTA>cvOzvkwaSnAoYYUX>N-xxX*mG-+=-@P3 z^gvakVCHK)thYcIWry`><`%;#lEln^&CDm0w*MaHJq2bn^F5AXqww3C?zp`y9b zsvXw*vuICzCbM)gvzqyP`Qq@iUbr@%1fWrk`{GF9wAHH;T#4qmmRV!>5bfnXp!N<+ z$j!}XGVDynIDuK}nfn^fN<8TPX3R7*Czv|L<9#L`P-|1y#>@pOKGT^DK!jBpkfB+9 zCT7}039haH_Nv@)lxSNRgbX_x+%ha%G{25;^!~Zu^nG(O(?q*6pa3SG>UFJNyzaNA z?@kg-s~YLDs|WK~!iL&Y76h^YL@=$2$xtMn+0x0)OC#)?_eZ*eG%}w_K{SD>A%xoM z%}Q|9@B^4+rhQ2o1v5YP+eLHqdGQuyk^vbrnE_2-677YVFAg?$9n|-L(CN*XIaJbg zrEmgMW)3j7V-N36z84;=N|k2?E06lF^cw|679*HtA8Fn<&?tSL=?0#?y zLkQS7Pnc<8hZ&G2Iy{(vUl1UeRve~Cl9^XCKi@V6XJ-DMc#}I}rj_7kKH7g7Me`EP z?S+nx^0s&8uj~07v2BVCJ)|TY7WY0uZkmsRv}1*{Vi}Kd#V$H>B?- zmVRU=eWs+5q1k<=Kdgtbt>esQ+8KasF%DSkU__mAw!lt)p^A1r^kN0*yVRZRYe(Vg~MHL{6=HiUrT*H(cGV4BYq zGmS#iM@=W6``a68IWx`7+3J-vBAU%-zHNYGM02z)`qFe@Cc(7Ao3<@Hn5e;p?j%n0 z?4NUU15=0fBAD4o;pYVbQ$dhwv6+nuyRhgMe%%hpiC_=X1)D{F6N<`#B1?7AAP z@|o3V{`oluf;s5=#k~uGS;0Kk*y_a^YF24aAk?;nH*=glFyy+=+}~#SKL#K(Zh`5+ z+;MZ*Me}lVIDM(gbSCp21)u;XI=y~81`{2)-Tqy)TdSA3`E(sYI=|o4qPcbJ{E^3Fs)3iXx^mJ)_ReHnPqSb{mJiUZY(62 z(^jv{yrh$OvC}aV-LxZpkS_6=E3u2ImL+Y>g_5Y2x%5@jVgF*AUhj#KPNd z+EdId%q%A#heGdFBXlP}=H}ctS8+J_%xROtY^m0dEf2QQSg}rlhVk7lHQ%Hx%q+Tf9857&PrVADIS7p#yw>~ z+O~k1!_Lj7do)K2$f|OKgcv_!0HT>2tYT)>neQ1cyF#*W*;xq#lRA@QuZrf?%+JH` z0m00V^nmjq>2#-E%ljb!;q<6m-iOhj?Vwo*K*mh+aWZ{LqvA8KGoCNQsiT^$2Qa6| zZT~$q9%E2cpE=$O7*!)MGvA#gmVrVW>zpU3**7Wsn<4x@FO!#XL7huU{;@bZp}kZ0qA(M zLWi08#76}nAArua9UY#)+*-CCm}wa~`KX4PVcDkOaK<%^#~erNTKohiyXDHw1DNL( z%zWK(CMuCeWTr_Y?VEcr_xnB^GqIs|r>Dg&?2wt0NK!gkbmn@toEex&pGgP}R_V-^0X?Uy zwBzAp+;mO?P{K?_b0cP75a>_C51)w<>=y^jz85;kOnORwDFBrK^ga!`3Cyc;HJG_Y zbJo{4foasNW{&Qpmqu`*sWc)pt)8iE3&XOR`T6av1j@x(Zcd-c!7TzTGp}ZTy?zXP z#f)LLJ857}Qk|wRFahR<%R6BR;l(4VNdPi1d4NaJ+?)9hpXu5bb)q9Pb7nv`9;4jc zgZXcaVRNEG8)_cR@-CvUv_H6xP;;Unjf|P}nPR2~^El6Vb9m3sN+e+N1xlrpwQaFo z?ZPlc`-($_NdRKxrc^hPBrq$OM}M$}V50P%6^D(P9FLivX#`ONAwwHD)f`n%*3y znX@OU49M)ffQb$1I39yj2$|0`pmL9|0cbBCbxREJ84$l8frKO=jxfbxOJwt;0UI9%4u~)J)n|KViv}MS?;v+Zqz`q zXwUIqVKQ?weVKXnnSXxWZ{Yeh1t9s%!LVlLc*!F8Omrixt)1d|j&;u(YUVSUMC!D-VcD5^x9a6cCo!MdZ{7!H z5=`SLy{7_D)tNBrxNn||cJq`Igvx-7nhngQJtjMtiTTWYaEoAC&0V71u@M1 zAVH|!iIa-fwLBPOdZmuafBWBCZ&&3BI+-X1i_CD|(wvA{$KEEi9RD$zh zqCFXQC*O5VZ*(x4+t-w(%gjpv>hIB&5>cP%K(#oNMl^GiMjU&UG-}f5Zu2n)=JMjG z=9rinwmpk>nz`Ok3uZnVy93N}2_fB`Br`4V(KYM@xWGpiaIm<&5Kcvae~Xut4`^qfwX`C9V2!+ONith}{)k1afvi1*IZcPDA)#!==%3P3fQ<7Hl#n7vXFAb-zgNEz6?CQr zpvhAjTjet=n0PVToiDrJ7mL0%IfvyB1oKL}io-_C7R|3`3({yq4wQhI#Bkj;@?e%H zY@C_HXTHC*Ev%uM5lCXITHXhd^N4&$xFgqf5^1XBUXsM(|uZjTn|2AFk2tzsDh z5QB|!bAyl{6-+!n7knn3Nd4FYV&RR7Q_;MF`QSP8nVDEb?Tw7U%*4#6Q#`tBR3$ecF=dzyAy_nL)renncL~pNmPxX+G{umzQ1HZ+yj!&ti@r}+MUmYXiqP@n$Kiz&Y4XyvoaG8)`WfY zrN0pLV>D+Q%@n7=YyoI{LNvz<4cUtHu=sf>hC*IFpdyXXv~X1;T#s2$N$QqA5X`Ga za|d0IE1{u=R%8t~BbsAAbALZ)K;)y$+_X_O^JyEPk6~Z=R_`F`7i&ctk1;IUtPwIG z$IP-Ko$5?WCkZCwx&lyT=5ntA%)6h#579g^?kP7{0IE83jU~8i0b9QZpoE#zf`CLj zz}$}4AH6S2RV@Ju%ru|L7(PwLiJ4UzZQ(tj1>n{SX8W(EyGr~0;Dx%(%o)wuP@^A}&n(gWT6_r( z8PN54+hPhp_RgPlX3?40kM_Hh*aND%2>*|-XOe|%@RF@!W{u`cd;MqR=E#7qUzV!O zdrmr2U>0WLy_(qSecQlHV5ULH9+27=J^+=Q5>6VGA%t{w#ms!l%~>WEGmDw8SDRp; z%=}1)UCB&?m7z!hs0JX!n=ppGZRsTh1{^|qExhG*ecNuW^Ne93;}4r?$3peX{LP;_e)^b00bfA%pA;wSo>#9}F`GxJT;>1!+VxXRDWN6*Ftq z=&xhg1kObJB;*BV@tMaNA3nwlK~*dTW*V4`=Ck6|f&eP*xL)RFjqnfs*~tK=WkAfx zr}Jfs=GDwsztxLbqbJ=1no`H%cBhhuz$|8tyGA|(TFNoFkI~$w;AW8|GcRq6GY)P+ zDP=y>qB#p46iF(<)pQbZTG{j0CU3)=U)35w(U-fTS-{A;Eb5f%r`tE-I417=)O~(IdJ`= zAX3%HgNbw4ZL(;p8ZGIz1v4P48mT+!!94I-ug}eK8R7GMCUbKgJPBYPONl`|toN+@ zishjG)39y$%<=ifBvQvnJ(zztb81QxMCwikFmZ3ot*#)N_mTEcf=hhnq&OvwAdUY1 zP>AVFW`vA1O$DIWrnz_xiPknPSvzxgS?N|`F z+aujS`b-vwEf>U+knY9P> zJpMhPx*}bzJb+0vw`i^ffsg@Br(*g{`@W-@pY=`$^f z)Xm`lCWc+T&cq7>>8mRQ)6AS4m6;ba-><#B%sb5d!8?@cOH~X&WTxtwM$HN)7EyiQ z9Cdb{IvON&Q*gZJDli?G2YQpfJ6V)b^`gON8Z+7IRo~pOY$JtuLM?zRx4oMsj6+jDy}FS&WvH#ak%_-KAqW?sNN@Vt_n=s-Go zJef2yFsB}n8N9%(KJ(#VQ7^$=xLlZs_5{o+uFGeFnHa;AHDx(>|>QuuLq` z-k7C%Lm$ZNK!PfK688H81}NgnP|5F z#AvRk5HCsEHlw`>gCn8^U75*%TzJ`?54P-#EfIhoi4N_3`XjXap;u$~j`U}k;` z&di+5oDxg<%;GcAoOJcfa*Q;c95!Y$os`au%xuSFES&^1pU=5D`N(3NbY}6HX!Uw& z1ZJW-{Hbk0GuJ5|&&>Tj!c03J5J)TSX6DR*q%#AUxFhZwYS5YI`Y|`3ZWFRhtN>JU z^K*@-c;2na_>civH0SJ_R#!YT@xFO@_G@{sHp&&iq?v1?gBaRZ4M2F2JLt@9X<{jW zX&De}MS69`uxyp~xNnZ7D%3ubXl}(}M)RqDB%fJ)=0Th8dqBsVK9xu_w`RoztNP{z zOmxY8p#zs)+r;KiX3h*qBZc0~u_5hGi{q@s(|!qHl9_DqN*WoOH2^(ZyDMSE;q^Mw zW2BTuG;;;8zJ~inl#PaRZ$=Cy;N!u>(Typ)s-JEZjq0c0ck!n_{{Teo05|>+S6yh2&QpV`{o`@Y^eDK0dyz#&pMNZj;Wq0 z(OyJ*Dvh#wrb(j-OxD~L%?p^<)~>SC%n!UTn-qr)OpYGtb-!Td--cZ=xYZgNA)Tbo zG@nV1Dw?-wzWHqnOb+K4x5!LJbLmW@W(U)sl_)QwrXz*MOcvghP8ycA1Xs@FhLOVY zcw#VfN+WXA>PIs3F51I_Kp83g7|q#}R0iakiMvKNrPa?$9B(^M8klKeX9Ck|?qX(P zW;sUci^Dj2pN_|v&z$O+G=1sJnw$3t_MtOzKQnLjl9}cyrwmA7R%T*ZvPkp+CjRk! z>%dGfb28JU5eH>t<~0Ce=sIku-Mz*36PT1noFNvN1x(PeMIbU0SMalR(){C8&!k9_ znHQhAh6MqL_Tz5nd4TV5lzFR{S-O~6qxp)XgwAI^@B7Q-umzwmW2?ZdX8z}gLIz2v z(F1L$dC^{u=y{!4u4iUuZeUJ2lW|=>vq+=o`$*x^mRUkHw_u}aPCoLhN+V$DbY@vZ zO`|z=CSg@~($K769#`0%#9K=^HPK_zux&*1@j3ZSEmawotpo?3=_ZG7>{x9dbtdy3 z9X#=1V%;yMlgE8nA!*QYW+v68`sN-?w0gl!{EZ9HVC;p$t+zNP|bkwx~vO8&w|_H8JNR;ei2ND zB7xb`$u+*!i-(W19*{AUqJ4TSUgI&fIQ+Cz2qOSt-EZMw+@Rwe%_rlwP$Xs+W}={p z^P^KV2bfoj??0uJY^ZH&s96MRVE*-`szK5(dP?n^8164g5C0n7x#snV_hRD9-i-K1|@ z{CZY`^>xZ6fmx#Y%9Dg$8et6k<9N(8d~G60W?p?JL}fJdqct*unUjSE;dFCYg^pt8 z*XpO>aMuX;u!oKxA$+c9G6R|>hXrN<^F~W;4nR09elFSD7M1}~5KV;+fmy&r^5}}g zrPZ6Be6(mjfvFyl3C-#=+m&_>ZlO55wO7@G&m0#2#W8Ho!zln&or%-pj+yAM;r}E) zGc$8m+9i#OG#c$Q7Kib4h!v6s9T9*MGoM0{d}aZ2yRT3j?!!kv--5H;d>Y{rGYgpO z?OVO5v_I+F7K5Z;6z!AF6qqHN-@Q6K%p865yD85QfGFCnyrEM(7R*~c^FA972bfq} zS?|xH-7+9@^h-Xon)%{IJ5GxuC?(OHX3j4~bE9UFMx&@vY`RyCo+X{=AcV%uDFc$v zEX@42RJB00XOqM9nO1_+3j#*W?lW=R)#v7T2P`x5L}#iv9KgIT-<`bQ+VS3BrZY_%aSv!J!6^WhLI++-bc0)v zMr#^?2&M&~X;)2P*4+GP?X$tmGVGe}nO@{%uO3rGvBZXex&Oo*0>U!88;712+S7Ear@1i`Fef6IZUap;&3qY{fa{f80NA<(!|X1 z`NbG6W_mF5_kc1pH=oJf$$91Yk2G^lbW}5suSjEV_?I)emRPDd90JgJ?V)Y4zi&3v&H%*W zYpZO^%&VC{8x{iaH+*J!lDi!=3sob_c9;Q8>7>lOm^t#F+VL4+BAt9wGfx5#<-1zF zRT|-lge!EEh8iA_?_?ba=4048coKXj=7!yZ0Jbe~x;+8Y%$&^%4Q_cbk8^3^#>^a3 zaB15j2|&7p;K9V1+&=~&6GYSY580|pdkH}666=|G2{{`nG~ig?*oRBi;8rURFLx^i zo0+e;kNw$an!1#kdoxEc4~35M?qtSHW8tJTt>hum-lS2SH9|mY<>DVjI}Ki78Z~PM zbl=|&o;>aK-k-o^tw{Au!?HKj-rLQzW`5$* zL{fq?7BV-d;*`&XHvAYwI-k00?-y`+Lyj;5dsjSIho1ghnQJJJC-ZLcntOf zvdgXn&J2F)n`@$@fO*~R&FG;s%frXN9Emb8zxX9)RxraOp7%4BErOXRK6A>2#LNQb z_N;XnhRl4AbPCQ`I6-KAO3fP80EC4<2j;Wvtz8+f6dIUQ3>TOtG+Q*^12gd;T}v>7 znOig`GbP#$%P!jS&~YDm>&4+Ezd3Boq|W4*bY^AdgKMNSm^k@}+u})XPG<7U02Y`9 zOoVQKB&u9ONT0AtqWQFMu4vw(c}sYvXuhPyVH54_PU;wG@R@kaFZfK15@)kUWTu%p z%fymK)n_8xaT6U_5a_%6A(|6Re8b{O$jy)A7c(cA3P5J(H2~ovl-oB) z00KFaXif;NZ9(rTGp}a8p-thW5#F|FzXUTU3#}xq4K*WX747@A`R5qQQdMhC1~AD? zt7mF(%Y(UXPbk6Rt$3Vq?PMK+8$XemF0Sr?*TFI*))V;XclH7a<{D?V^%YaxMR&H)s_Il>`O9;L8{v((+9wTOY zFfpa&r{Ky~Z(8V}G_n}3$>9j*_d>_^OFh#<(Nxb=p`+9@&&|J7Ri0yL*WrFNbJLk( zW?*K2UA7?C=QHu{WKDnqn5Hv%zHIsuGr`Pb=RuCqQ0wL5049B=F;nSeVCMOrHQzC2 z;^1RC>}sBptzLl{!0gWfO=f=NuSnC(O&aM&M*wp}Z`T((mg{pgpE4i#((Se!vHC^{JlO{7I z+P%-jG3;=seZ?|MRvacX8GtC4#LU9XYj68#LmI)%+cPY2q>%p6z?^O(C;$P>{lyN| z9L;eH?rM#UAli+YlbMs50ux}O-Q!!m&$1oqE7FzY@R59t2u!4orc zigr!G8J2xK27L=><_}6ARmO*Co&+HIOb;fI4AC58*jrn-fb<;V5)&Pt&0L}#(rCN( z_#*1LrB@2g%sGUhdS+nearp=7FrSInm5Sj9Gan@VqBJ5~HJ{mZ=7IWUL$0+g%FW^O zLj;pP(_rOG=aNPZOjJ5La=iz1yy*dF19RHt<+`8J$x`Tmha5B<%)HVb5WzHcsqq-^ zGt0iYdqDuBMr%6JVaCk>#0G}UyqY-l3Mxs41vpg8!eJ0i|GSO~2 zbGij*1}|n7W@3ZNpBBeciEYR|Msw4dED38xIxzFkN1_riCE5d+d)eZ}-)LKanRujb z1o#nkkWP+IycRJ271Q+?Nuwf-aFD}+iMGYs*7-vQM4xHuQqpM93Jfbg^X>0a4Q4(o zhTO9NWPD@^Zf2{_wcy)Cs+k$(V6SHx`QVV z*8hH)g0o#-ZKwsGx!mn3rOC|83C$khhi%W@$*J&0?ZKz+kY8>S-{*5+}^?8i01e6uI0h__S2vvbf%d(XN~kym654c+VO;d2NUb& z>6u&uldWF8R29HnFNB~*!&V%Aa5vW`W+rBi rN5}XHf+qcDo3CaF>3XVQ=>YHoW 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

uw3=J1{3fWZqNEtjxU7yETh;w8t!I)ri2EnXf9r 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

  • TSKJq8sw_iTYj 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 kq(@2u!`1(ve9p4a^Hk+%`Qc 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 z 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

    vnVa{&`69y?2= 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

    F&kS+B0uW%n-wV@5;mxFrz7x8? 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 Q&12}}mq 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�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 z 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

    (@Dg2J`UU)(An5gneiNAjbT!w?m5} zTyz4EzmytXsX^3inbX^KzZYj%whowjGrb}Y8E5r?2tefQThOL;r?A*$Luxj9=3b>pjD5ZL#D zHTWH^k%$hr$I-vaGR-oN7s{sAFOUG_h`L z?OCQ?N{6tbd3N(@(ool0RZ>9o}>ocp>o4_0?!`Y+fVA^6m=6suA<_4xL zQ!k|_N%dx0YQ)|*MC}1g@*;F`oxZui^m4M=7RfRJb3Ye}tDK}M)LzkVEz@DG+B|_d z;^cF?{&V$!4z4rUZO_wKFWllBkQ!>0XJ#<*XWq!*=D0nQc60o1Ez@7hy6%_2G)dvB zZ7~XNZWm{t!1QPyGS12~TL4Zt)YhyTXmgx|N zwGv*hSJM8)XCgz0Z|1}p(BA2r`%~eSI05 z#XEVXEYpQs)lf^8N!xsfBz+NP4((^L9fGt!u2! zR~Ddf*z>(Mmz%3LS6nYJTRHi{7DH`rlNQvN?_j!RhE}g=;sVn~q+i=PLZ$BHIIX=K zYO+kX$Etwhn@Kchsy9dTiT%x-6*!IcLNJw+ZjYtt$Y8Q{__V_-0GV#fHuSuK>Cs%- zWi`|im^Qj{YThm|2S(J6wIf3Cgh*o7(6$(B;mPts0(Xv3U0}{HGWMQ6Gt}YN-(wKK z6@V<7bN09$`EoGHF-Ifv~x?}wt799*V6k0ril>lGVF;>Je{Q7qq+3L1!e+sn#N(d^?*i1 z2tOo;D*!o~jU1j{91A(4O`Gbqa`Jc{U2!*8##v1J*-&E+D3QZ6a+zKLx{9F>$+fBi za>M*udjHznyBc697Z+evsP z?QKWLy7ej`S*G4h|0*!Q0??9V*tR`}_^y|%B7i*8k>e1t2>}m&-|eF@Hu5tASB(rlm$ZM~+#oC(E4e;%x6wh_@|7Z|JMQ1k8!? zfViUr88+QY_Vc_a?H+c*(tE}Aa&y3B+ZN{++%k=6Kj;BH@|g~6sL~6}Msy7AR=fuw zhz=aR(>L!$a}|~a<{xUPxjkxUOl>Lj%*ZOB3I1&hM?CG#WY(hX;JW3R9)N;ytMW`o z)4-%VdEP(u3aG8q>?k_i&DBsFs+^2qjt6;AlN>mhuleBI#X~e#1tc4-)abO#eF*n} z&SWv3QoaB4quj;ER*}EQ0<-?G1ZF(n=MiAmMI9;`KfX;g85=dg=TL6bAAnb z_kw_fDL1bXX~(ifb6WFIk_Kvn@+ zBv0$hn42VP@8p>tfK;2;fIzm)*TkjX=;kAXKuBPp-b^L!Zlh(Htv06_ndi+p4@58h z9ZXN!wQ0Bxg(S;lMeczd^UQ;;gLJR%9FV)Y`sUT@O7^30WeukYog!j6BHrroh@ zeCE&hvF3{rAGSl zxL!%Sfw|j7p!8-k7{slrcgysKnkcyHPP$>9!mUAK%!`6M&V^<-%M_TN8fjZcStgbV z0e7sI8J=JsJM;S;qC?K@UzM~c%lrdw-XS_FX^&tsh>AESEQy*v3FS+7cGB%JIJX?W zQX}h54g>PmQ~@zI{k&GfAuN4nv`o_)apOzEEo)m$BXB-M^B|8=`d*faqGQ_Twejj# z($0OLed`Sf_?xLYppwTV%Y^0F^BmC5&ihj^b4!i%W_sNt8?Dr+rAEU#4!PA!f32r! z7nuHL7MRI0?aiET-AO39cBK1T%M_SZPCA;cHXrxfVm;&>W4jP^1JmD3HPk-*w{mm9 zM+t literal 0 HcmV?d00001 diff --git a/Jingmiao Fei_Koala observation/data/koalaRecords.geojson b/Jingmiao Fei_Koala observation/data/koalaRecords.geojson new file mode 100644 index 0000000..0ce8806 --- /dev/null +++ b/Jingmiao Fei_Koala observation/data/koalaRecords.geojson @@ -0,0 +1,75513 @@ +{ +"type": "FeatureCollection", +"name": "koalaRecords", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.00772, "decimalLat": -38.39723 }, "geometry": { "type": "Point", "coordinates": [ 144.008, -38.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.33779, "decimalLat": -37.65856 }, "geometry": { "type": "Point", "coordinates": [ 144.338, -37.659 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.61883, "decimalLat": -38.78802 }, "geometry": { "type": "Point", "coordinates": [ 143.619, -38.788 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.19096, "decimalLat": -37.86565 }, "geometry": { "type": "Point", "coordinates": [ 144.191, -37.866 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.44272, "decimalLat": -37.4573 }, "geometry": { "type": "Point", "coordinates": [ 144.443, -37.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.14492, "decimalLat": -37.80499 }, "geometry": { "type": "Point", "coordinates": [ 144.145, -37.805 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.27966, "decimalLat": -37.76743 }, "geometry": { "type": "Point", "coordinates": [ 144.28, -37.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.16742, "decimalLat": -37.8908 }, "geometry": { "type": "Point", "coordinates": [ 144.167, -37.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 9, "individual": 37, "stateProvi": "Victoria", "decimalLon": 141.79763, "decimalLat": -38.08213 }, "geometry": { "type": "Point", "coordinates": [ 141.798, -38.082 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 36, "stateProvi": "South Australia", "decimalLon": 138.6954, "decimalLat": -34.96562 }, "geometry": { "type": "Point", "coordinates": [ 138.695, -34.966 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.1492, "decimalLat": -37.80807 }, "geometry": { "type": "Point", "coordinates": [ 144.149, -37.808 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 35, "stateProvi": "South Australia", "decimalLon": 138.696, "decimalLat": -34.967 }, "geometry": { "type": "Point", "coordinates": [ 138.696, -34.967 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.14492, "decimalLat": -37.80501 }, "geometry": { "type": "Point", "coordinates": [ 144.145, -37.805 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.85199, "decimalLat": -38.67222 }, "geometry": { "type": "Point", "coordinates": [ 143.852, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.50081, "decimalLat": -37.66679 }, "geometry": { "type": "Point", "coordinates": [ 144.501, -37.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.53771, "decimalLat": -38.78152 }, "geometry": { "type": "Point", "coordinates": [ 143.538, -38.782 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 20, "individual": 33, "stateProvi": "Victoria", "decimalLon": 143.85212, "decimalLat": -38.6724 }, "geometry": { "type": "Point", "coordinates": [ 143.852, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 9, "individual": 32, "stateProvi": "Victoria", "decimalLon": 141.76754, "decimalLat": -38.19541 }, "geometry": { "type": "Point", "coordinates": [ 141.768, -38.195 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.36999, "decimalLat": -37.71956 }, "geometry": { "type": "Point", "coordinates": [ 144.37, -37.72 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 9, "individual": 29, "stateProvi": "Victoria", "decimalLon": 141.85227, "decimalLat": -38.02968 }, "geometry": { "type": "Point", "coordinates": [ 141.852, -38.03 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.629, "decimalLat": -38.61583 }, "geometry": { "type": "Point", "coordinates": [ 143.629, -38.616 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.41144, "decimalLat": -37.6034 }, "geometry": { "type": "Point", "coordinates": [ 144.411, -37.603 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.1492, "decimalLat": -37.80807 }, "geometry": { "type": "Point", "coordinates": [ 144.149, -37.808 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.20167, "decimalLat": -37.2582 }, "geometry": { "type": "Point", "coordinates": [ 148.202, -37.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.91217, "decimalLat": -38.2312 }, "geometry": { "type": "Point", "coordinates": [ 146.912, -38.231 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.25562, "decimalLat": -37.07769 }, "geometry": { "type": "Point", "coordinates": [ 143.256, -37.078 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.48599, "decimalLat": -37.92797 }, "geometry": { "type": "Point", "coordinates": [ 141.486, -37.928 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.88433, "decimalLat": -38.42491 }, "geometry": { "type": "Point", "coordinates": [ 146.884, -38.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.32423, "decimalLat": -38.3209 }, "geometry": { "type": "Point", "coordinates": [ 145.324, -38.321 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.32812, "decimalLat": -38.48723 }, "geometry": { "type": "Point", "coordinates": [ 146.328, -38.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.45244, "decimalLat": -37.64368 }, "geometry": { "type": "Point", "coordinates": [ 147.452, -37.644 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.15287, "decimalLat": -37.35669 }, "geometry": { "type": "Point", "coordinates": [ 143.153, -37.357 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.90368, "decimalLat": -36.9013 }, "geometry": { "type": "Point", "coordinates": [ 145.904, -36.901 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.71474, "decimalLat": -37.89051 }, "geometry": { "type": "Point", "coordinates": [ 145.715, -37.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.54876, "decimalLat": -38.21827 }, "geometry": { "type": "Point", "coordinates": [ 141.549, -38.218 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.36597, "decimalLat": -38.31444 }, "geometry": { "type": "Point", "coordinates": [ 142.366, -38.314 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.27902, "decimalLat": -37.39978 }, "geometry": { "type": "Point", "coordinates": [ 144.279, -37.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.40261, "decimalLat": -38.02849 }, "geometry": { "type": "Point", "coordinates": [ 146.403, -38.028 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.21973, "decimalLat": -37.37201 }, "geometry": { "type": "Point", "coordinates": [ 144.22, -37.372 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.3504, "decimalLat": -37.5016 }, "geometry": { "type": "Point", "coordinates": [ 144.35, -37.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.88559, "decimalLat": -38.42812 }, "geometry": { "type": "Point", "coordinates": [ 146.886, -38.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.16489, "decimalLat": -37.4181 }, "geometry": { "type": "Point", "coordinates": [ 144.165, -37.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.09528, "decimalLat": -38.0195 }, "geometry": { "type": "Point", "coordinates": [ 141.095, -38.019 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.18135, "decimalLat": -38.27617 }, "geometry": { "type": "Point", "coordinates": [ 147.181, -38.276 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.78338, "decimalLat": -38.32552 }, "geometry": { "type": "Point", "coordinates": [ 146.783, -38.326 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.24579, "decimalLat": -37.29629 }, "geometry": { "type": "Point", "coordinates": [ 143.246, -37.296 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.2265, "decimalLat": -37.3445 }, "geometry": { "type": "Point", "coordinates": [ 144.227, -37.344 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.4419, "decimalLat": -38.31278 }, "geometry": { "type": "Point", "coordinates": [ 145.442, -38.313 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.14652, "decimalLat": -37.02036 }, "geometry": { "type": "Point", "coordinates": [ 145.147, -37.02 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.32867, "decimalLat": -38.39979 }, "geometry": { "type": "Point", "coordinates": [ 145.329, -38.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.24908, "decimalLat": -37.05844 }, "geometry": { "type": "Point", "coordinates": [ 143.249, -37.058 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.25012, "decimalLat": -36.86843 }, "geometry": { "type": "Point", "coordinates": [ 146.25, -36.868 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27834, "decimalLat": -38.38066 }, "geometry": { "type": "Point", "coordinates": [ 145.278, -38.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.1276, "decimalLat": -37.86258 }, "geometry": { "type": "Point", "coordinates": [ 146.128, -37.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.79577, "decimalLat": -37.94998 }, "geometry": { "type": "Point", "coordinates": [ 145.796, -37.95 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.27128, "decimalLat": -38.04037 }, "geometry": { "type": "Point", "coordinates": [ 141.271, -38.04 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.24504, "decimalLat": -37.44615 }, "geometry": { "type": "Point", "coordinates": [ 144.245, -37.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.84634, "decimalLat": -38.6735 }, "geometry": { "type": "Point", "coordinates": [ 143.846, -38.673 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.50133, "decimalLat": -38.59787 }, "geometry": { "type": "Point", "coordinates": [ 146.501, -38.598 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.99515, "decimalLat": -37.58447 }, "geometry": { "type": "Point", "coordinates": [ 145.995, -37.584 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.87857, "decimalLat": -38.42991 }, "geometry": { "type": "Point", "coordinates": [ 146.879, -38.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.39789, "decimalLat": -38.02788 }, "geometry": { "type": "Point", "coordinates": [ 146.398, -38.028 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.31372, "decimalLat": -38.51018 }, "geometry": { "type": "Point", "coordinates": [ 146.314, -38.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16711, "decimalLat": -38.35647 }, "geometry": { "type": "Point", "coordinates": [ 146.167, -38.356 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.75887, "decimalLat": -38.4835 }, "geometry": { "type": "Point", "coordinates": [ 146.759, -38.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.79577, "decimalLat": -37.94998 }, "geometry": { "type": "Point", "coordinates": [ 145.796, -37.95 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.26568, "decimalLat": -37.26785 }, "geometry": { "type": "Point", "coordinates": [ 144.266, -37.268 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.26118, "decimalLat": -37.4562 }, "geometry": { "type": "Point", "coordinates": [ 144.261, -37.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.61346, "decimalLat": -38.36032 }, "geometry": { "type": "Point", "coordinates": [ 141.613, -38.36 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.19769, "decimalLat": -38.27831 }, "geometry": { "type": "Point", "coordinates": [ 147.198, -38.278 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.29319, "decimalLat": -38.28588 }, "geometry": { "type": "Point", "coordinates": [ 145.293, -38.286 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.15654, "decimalLat": -37.16288 }, "geometry": { "type": "Point", "coordinates": [ 145.157, -37.163 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.43045, "decimalLat": -38.33311 }, "geometry": { "type": "Point", "coordinates": [ 145.43, -38.333 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.48777, "decimalLat": -37.6687 }, "geometry": { "type": "Point", "coordinates": [ 147.488, -37.669 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.10638, "decimalLat": -36.63986 }, "geometry": { "type": "Point", "coordinates": [ 146.106, -36.64 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.36358, "decimalLat": -38.31803 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.48638, "decimalLat": -37.67591 }, "geometry": { "type": "Point", "coordinates": [ 147.486, -37.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.34197, "decimalLat": -38.31077 }, "geometry": { "type": "Point", "coordinates": [ 145.342, -38.311 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.62143, "decimalLat": -37.99623 }, "geometry": { "type": "Point", "coordinates": [ 141.621, -37.996 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.25237, "decimalLat": -38.29828 }, "geometry": { "type": "Point", "coordinates": [ 146.252, -38.298 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.93833, "decimalLat": -36.89139 }, "geometry": { "type": "Point", "coordinates": [ 145.938, -36.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.21394, "decimalLat": -37.93009 }, "geometry": { "type": "Point", "coordinates": [ 146.214, -37.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.28214, "decimalLat": -37.34507 }, "geometry": { "type": "Point", "coordinates": [ 144.282, -37.345 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.5655, "decimalLat": -38.8308 }, "geometry": { "type": "Point", "coordinates": [ 143.566, -38.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.68789, "decimalLat": -37.57717 }, "geometry": { "type": "Point", "coordinates": [ 145.688, -37.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.68756, "decimalLat": -37.8339 }, "geometry": { "type": "Point", "coordinates": [ 145.688, -37.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.58903, "decimalLat": -37.26916 }, "geometry": { "type": "Point", "coordinates": [ 145.589, -37.269 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.44217, "decimalLat": -38.47386 }, "geometry": { "type": "Point", "coordinates": [ 143.442, -38.474 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.30918, "decimalLat": -37.293 }, "geometry": { "type": "Point", "coordinates": [ 144.309, -37.293 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.57925, "decimalLat": -37.30282 }, "geometry": { "type": "Point", "coordinates": [ 145.579, -37.303 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 27, "stateProvi": "South Australia", "decimalLon": 138.5556, "decimalLat": -34.96383 }, "geometry": { "type": "Point", "coordinates": [ 138.556, -34.964 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.26898, "decimalLat": -38.24594 }, "geometry": { "type": "Point", "coordinates": [ 147.269, -38.246 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.29438, "decimalLat": -38.31301 }, "geometry": { "type": "Point", "coordinates": [ 145.294, -38.313 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 14, "stateProvi": "Victoria", "decimalLon": 143.85212, "decimalLat": -38.6724 }, "geometry": { "type": "Point", "coordinates": [ 143.852, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.89711, "decimalLat": -38.46076 }, "geometry": { "type": "Point", "coordinates": [ 146.897, -38.461 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.8374, "decimalLat": -37.72449 }, "geometry": { "type": "Point", "coordinates": [ 143.837, -37.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.91461, "decimalLat": -38.4225 }, "geometry": { "type": "Point", "coordinates": [ 146.915, -38.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.94836, "decimalLat": -38.5566 }, "geometry": { "type": "Point", "coordinates": [ 143.948, -38.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.58284, "decimalLat": -38.54256 }, "geometry": { "type": "Point", "coordinates": [ 146.583, -38.543 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.71134, "decimalLat": -37.8679 }, "geometry": { "type": "Point", "coordinates": [ 145.711, -37.868 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.4231, "decimalLat": -38.31191 }, "geometry": { "type": "Point", "coordinates": [ 145.423, -38.312 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.28174, "decimalLat": -37.38223 }, "geometry": { "type": "Point", "coordinates": [ 144.282, -37.382 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27715, "decimalLat": -38.35076 }, "geometry": { "type": "Point", "coordinates": [ 145.277, -38.351 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.22718, "decimalLat": -37.3919 }, "geometry": { "type": "Point", "coordinates": [ 144.227, -37.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.7463, "decimalLat": -38.46091 }, "geometry": { "type": "Point", "coordinates": [ 146.746, -38.461 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.19476, "decimalLat": -37.41036 }, "geometry": { "type": "Point", "coordinates": [ 144.195, -37.41 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.15509, "decimalLat": -38.36371 }, "geometry": { "type": "Point", "coordinates": [ 146.155, -38.364 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.5432, "decimalLat": -38.8424 }, "geometry": { "type": "Point", "coordinates": [ 143.543, -38.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.87326, "decimalLat": -38.43203 }, "geometry": { "type": "Point", "coordinates": [ 146.873, -38.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.24455, "decimalLat": -38.28755 }, "geometry": { "type": "Point", "coordinates": [ 146.245, -38.288 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.53876, "decimalLat": -37.44489 }, "geometry": { "type": "Point", "coordinates": [ 145.539, -37.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.1853, "decimalLat": -37.4071 }, "geometry": { "type": "Point", "coordinates": [ 144.185, -37.407 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.45221, "decimalLat": -37.65338 }, "geometry": { "type": "Point", "coordinates": [ 147.452, -37.653 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.30122, "decimalLat": -37.3286 }, "geometry": { "type": "Point", "coordinates": [ 144.301, -37.329 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.8391, "decimalLat": -38.45668 }, "geometry": { "type": "Point", "coordinates": [ 146.839, -38.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.89508, "decimalLat": -36.88223 }, "geometry": { "type": "Point", "coordinates": [ 145.895, -36.882 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.1939, "decimalLat": -37.41219 }, "geometry": { "type": "Point", "coordinates": [ 144.194, -37.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.48335, "decimalLat": -38.33789 }, "geometry": { "type": "Point", "coordinates": [ 145.483, -38.338 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.69024, "decimalLat": -37.57693 }, "geometry": { "type": "Point", "coordinates": [ 145.69, -37.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.2903, "decimalLat": -37.30606 }, "geometry": { "type": "Point", "coordinates": [ 148.29, -37.306 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.31051, "decimalLat": -38.48286 }, "geometry": { "type": "Point", "coordinates": [ 146.311, -38.483 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.10436, "decimalLat": -37.43326 }, "geometry": { "type": "Point", "coordinates": [ 144.104, -37.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.218, "decimalLat": -37.281 }, "geometry": { "type": "Point", "coordinates": [ 144.218, -37.281 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.89355, "decimalLat": -36.89708 }, "geometry": { "type": "Point", "coordinates": [ 145.894, -36.897 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.84478, "decimalLat": -38.41 }, "geometry": { "type": "Point", "coordinates": [ 146.845, -38.41 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.25575, "decimalLat": -37.07861 }, "geometry": { "type": "Point", "coordinates": [ 143.256, -37.079 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.13881, "decimalLat": -38.02435 }, "geometry": { "type": "Point", "coordinates": [ 141.139, -38.024 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.54845, "decimalLat": -38.06695 }, "geometry": { "type": "Point", "coordinates": [ 147.548, -38.067 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.51334, "decimalLat": -38.53968 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.54 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.80694, "decimalLat": -36.68889 }, "geometry": { "type": "Point", "coordinates": [ 145.807, -36.689 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.39027, "decimalLat": -37.83943 }, "geometry": { "type": "Point", "coordinates": [ 145.39, -37.839 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.15796, "decimalLat": -38.36166 }, "geometry": { "type": "Point", "coordinates": [ 146.158, -38.362 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.97198, "decimalLat": -38.54215 }, "geometry": { "type": "Point", "coordinates": [ 143.972, -38.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 11, "stateProvi": "South Australia", "decimalLon": 138.7011, "decimalLat": -34.9676 }, "geometry": { "type": "Point", "coordinates": [ 138.701, -34.968 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.13419, "decimalLat": -37.35468 }, "geometry": { "type": "Point", "coordinates": [ 144.134, -37.355 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.69513, "decimalLat": -37.89757 }, "geometry": { "type": "Point", "coordinates": [ 145.695, -37.898 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.20167, "decimalLat": -37.2582 }, "geometry": { "type": "Point", "coordinates": [ 148.202, -37.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.37466, "decimalLat": -37.94524 }, "geometry": { "type": "Point", "coordinates": [ 146.375, -37.945 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.39259, "decimalLat": -37.81755 }, "geometry": { "type": "Point", "coordinates": [ 145.393, -37.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.44279, "decimalLat": -38.33708 }, "geometry": { "type": "Point", "coordinates": [ 146.443, -38.337 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 9, "stateProvi": "Victoria", "decimalLon": 143.97174, "decimalLat": -38.53928 }, "geometry": { "type": "Point", "coordinates": [ 143.972, -38.539 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.68206, "decimalLat": -37.87672 }, "geometry": { "type": "Point", "coordinates": [ 145.682, -37.877 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.22584, "decimalLat": -37.90366 }, "geometry": { "type": "Point", "coordinates": [ 146.226, -37.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.94433, "decimalLat": -38.55382 }, "geometry": { "type": "Point", "coordinates": [ 143.944, -38.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.82872, "decimalLat": -38.39678 }, "geometry": { "type": "Point", "coordinates": [ 146.829, -38.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.8936, "decimalLat": -38.45919 }, "geometry": { "type": "Point", "coordinates": [ 146.894, -38.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.31951, "decimalLat": -38.29359 }, "geometry": { "type": "Point", "coordinates": [ 145.32, -38.294 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.27336, "decimalLat": -35.77322 }, "geometry": { "type": "Point", "coordinates": [ 144.273, -35.773 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 8, "stateProvi": "New South Wales", "decimalLon": 153.31611, "decimalLat": -28.654424 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.654 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.08979, "decimalLat": -37.39753 }, "geometry": { "type": "Point", "coordinates": [ 144.09, -37.398 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.22404, "decimalLat": -37.38709 }, "geometry": { "type": "Point", "coordinates": [ 144.224, -37.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.77624, "decimalLat": -38.32122 }, "geometry": { "type": "Point", "coordinates": [ 146.776, -38.321 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16385, "decimalLat": -37.36517 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -37.365 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.91459, "decimalLat": -36.93238 }, "geometry": { "type": "Point", "coordinates": [ 145.915, -36.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.21972, "decimalLat": -38.23838 }, "geometry": { "type": "Point", "coordinates": [ 146.22, -38.238 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.28463, "decimalLat": -38.0728 }, "geometry": { "type": "Point", "coordinates": [ 141.285, -38.073 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.59898, "decimalLat": -38.46015 }, "geometry": { "type": "Point", "coordinates": [ 146.599, -38.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.41678, "decimalLat": -38.48833 }, "geometry": { "type": "Point", "coordinates": [ 143.417, -38.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.3598, "decimalLat": -37.44273 }, "geometry": { "type": "Point", "coordinates": [ 144.36, -37.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.59794, "decimalLat": -37.95795 }, "geometry": { "type": "Point", "coordinates": [ 145.598, -37.958 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.32581, "decimalLat": -37.44482 }, "geometry": { "type": "Point", "coordinates": [ 144.326, -37.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.43921, "decimalLat": -38.36688 }, "geometry": { "type": "Point", "coordinates": [ 145.439, -38.367 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.1434, "decimalLat": -35.70607 }, "geometry": { "type": "Point", "coordinates": [ 144.143, -35.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.21851, "decimalLat": -37.17522 }, "geometry": { "type": "Point", "coordinates": [ 148.219, -37.175 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.1572, "decimalLat": -38.03621 }, "geometry": { "type": "Point", "coordinates": [ 141.157, -38.036 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.37935, "decimalLat": -37.49796 }, "geometry": { "type": "Point", "coordinates": [ 144.379, -37.498 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.28934, "decimalLat": -37.30833 }, "geometry": { "type": "Point", "coordinates": [ 148.289, -37.308 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 7, "stateProvi": "Victoria", "decimalLon": 141.84869, "decimalLat": -38.06589 }, "geometry": { "type": "Point", "coordinates": [ 141.849, -38.066 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.84543, "decimalLat": -38.45538 }, "geometry": { "type": "Point", "coordinates": [ 146.845, -38.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16708, "decimalLat": -38.36341 }, "geometry": { "type": "Point", "coordinates": [ 146.167, -38.363 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.48188, "decimalLat": -38.45977 }, "geometry": { "type": "Point", "coordinates": [ 143.482, -38.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.33125, "decimalLat": -38.32534 }, "geometry": { "type": "Point", "coordinates": [ 145.331, -38.325 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.26241, "decimalLat": -37.44989 }, "geometry": { "type": "Point", "coordinates": [ 144.262, -37.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.25623, "decimalLat": -38.32847 }, "geometry": { "type": "Point", "coordinates": [ 146.256, -38.328 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.94153, "decimalLat": -37.43644 }, "geometry": { "type": "Point", "coordinates": [ 143.942, -37.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.23568, "decimalLat": -37.37063 }, "geometry": { "type": "Point", "coordinates": [ 144.236, -37.371 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.5548, "decimalLat": -38.8134 }, "geometry": { "type": "Point", "coordinates": [ 143.555, -38.813 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.19349, "decimalLat": -38.0393 }, "geometry": { "type": "Point", "coordinates": [ 141.193, -38.039 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27591, "decimalLat": -38.36571 }, "geometry": { "type": "Point", "coordinates": [ 145.276, -38.366 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.69513, "decimalLat": -37.89757 }, "geometry": { "type": "Point", "coordinates": [ 145.695, -37.898 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.37118, "decimalLat": -38.37124 }, "geometry": { "type": "Point", "coordinates": [ 145.371, -38.371 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.71302, "decimalLat": -37.86817 }, "geometry": { "type": "Point", "coordinates": [ 145.713, -37.868 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.44535, "decimalLat": -38.46077 }, "geometry": { "type": "Point", "coordinates": [ 143.445, -38.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.54437, "decimalLat": -38.0749 }, "geometry": { "type": "Point", "coordinates": [ 147.544, -38.075 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.23301, "decimalLat": -37.36974 }, "geometry": { "type": "Point", "coordinates": [ 144.233, -37.37 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.41868, "decimalLat": -38.32681 }, "geometry": { "type": "Point", "coordinates": [ 145.419, -38.327 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.2018, "decimalLat": -37.14057 }, "geometry": { "type": "Point", "coordinates": [ 145.202, -37.141 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.30369, "decimalLat": -38.32996 }, "geometry": { "type": "Point", "coordinates": [ 145.304, -38.33 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.27662, "decimalLat": -38.30498 }, "geometry": { "type": "Point", "coordinates": [ 146.277, -38.305 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.42206, "decimalLat": -38.32719 }, "geometry": { "type": "Point", "coordinates": [ 145.422, -38.327 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.07199, "decimalLat": -37.45254 }, "geometry": { "type": "Point", "coordinates": [ 144.072, -37.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.71612, "decimalLat": -38.54398 }, "geometry": { "type": "Point", "coordinates": [ 146.716, -38.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.18475, "decimalLat": -37.46706 }, "geometry": { "type": "Point", "coordinates": [ 144.185, -37.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.21973, "decimalLat": -37.37201 }, "geometry": { "type": "Point", "coordinates": [ 144.22, -37.372 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.21933, "decimalLat": -37.38736 }, "geometry": { "type": "Point", "coordinates": [ 144.219, -37.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.79577, "decimalLat": -37.94998 }, "geometry": { "type": "Point", "coordinates": [ 145.796, -37.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.32943, "decimalLat": -38.4982 }, "geometry": { "type": "Point", "coordinates": [ 146.329, -38.498 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.48336, "decimalLat": -38.33793 }, "geometry": { "type": "Point", "coordinates": [ 145.483, -38.338 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.31097, "decimalLat": -38.36259 }, "geometry": { "type": "Point", "coordinates": [ 145.311, -38.363 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.28188, "decimalLat": -37.34633 }, "geometry": { "type": "Point", "coordinates": [ 144.282, -37.346 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 7, "stateProvi": "South Australia", "decimalLon": 138.55022, "decimalLat": -35.13817 }, "geometry": { "type": "Point", "coordinates": [ 138.55, -35.138 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.53068, "decimalLat": -37.97577 }, "geometry": { "type": "Point", "coordinates": [ 141.531, -37.976 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.17928, "decimalLat": -37.42164 }, "geometry": { "type": "Point", "coordinates": [ 144.179, -37.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.55041, "decimalLat": -38.21786 }, "geometry": { "type": "Point", "coordinates": [ 141.55, -38.218 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.91333, "decimalLat": -36.84861 }, "geometry": { "type": "Point", "coordinates": [ 145.913, -36.849 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.6298, "decimalLat": -38.44012 }, "geometry": { "type": "Point", "coordinates": [ 146.63, -38.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.25249, "decimalLat": -37.0749 }, "geometry": { "type": "Point", "coordinates": [ 143.252, -37.075 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.567, "decimalLat": -38.7978 }, "geometry": { "type": "Point", "coordinates": [ 143.567, -38.798 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.84147, "decimalLat": -38.46329 }, "geometry": { "type": "Point", "coordinates": [ 146.841, -38.463 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.18428, "decimalLat": -37.46688 }, "geometry": { "type": "Point", "coordinates": [ 144.184, -37.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27885, "decimalLat": -38.37979 }, "geometry": { "type": "Point", "coordinates": [ 145.279, -38.38 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.69553, "decimalLat": -37.89669 }, "geometry": { "type": "Point", "coordinates": [ 145.696, -37.897 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.69368, "decimalLat": -37.82902 }, "geometry": { "type": "Point", "coordinates": [ 145.694, -37.829 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.18714, "decimalLat": -38.02785 }, "geometry": { "type": "Point", "coordinates": [ 141.187, -38.028 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 7, "stateProvi": "New South Wales", "decimalLon": 153.277428, "decimalLat": -28.59695 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.597 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.15061, "decimalLat": -38.06282 }, "geometry": { "type": "Point", "coordinates": [ 141.151, -38.063 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.58754, "decimalLat": -37.26762 }, "geometry": { "type": "Point", "coordinates": [ 145.588, -37.268 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.65177, "decimalLat": -37.02633 }, "geometry": { "type": "Point", "coordinates": [ 145.652, -37.026 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.42276, "decimalLat": -38.48752 }, "geometry": { "type": "Point", "coordinates": [ 143.423, -38.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.4202, "decimalLat": -37.90486 }, "geometry": { "type": "Point", "coordinates": [ 141.42, -37.905 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.87202, "decimalLat": -38.23789 }, "geometry": { "type": "Point", "coordinates": [ 146.872, -38.238 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.44126, "decimalLat": -38.47441 }, "geometry": { "type": "Point", "coordinates": [ 143.441, -38.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.65177, "decimalLat": -37.02633 }, "geometry": { "type": "Point", "coordinates": [ 145.652, -37.026 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.25943, "decimalLat": -36.85402 }, "geometry": { "type": "Point", "coordinates": [ 146.259, -36.854 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.21851, "decimalLat": -37.17522 }, "geometry": { "type": "Point", "coordinates": [ 148.219, -37.175 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.72303, "decimalLat": -37.54623 }, "geometry": { "type": "Point", "coordinates": [ 144.723, -37.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.20643, "decimalLat": -37.17228 }, "geometry": { "type": "Point", "coordinates": [ 145.206, -37.172 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.94397, "decimalLat": -37.85138 }, "geometry": { "type": "Point", "coordinates": [ 145.944, -37.851 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.18912, "decimalLat": -38.26018 }, "geometry": { "type": "Point", "coordinates": [ 147.189, -38.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.86094, "decimalLat": -38.6677 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.26018, "decimalLat": -37.34098 }, "geometry": { "type": "Point", "coordinates": [ 144.26, -37.341 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 6, "stateProvi": "Victoria", "decimalLon": 143.9799, "decimalLat": -38.55382 }, "geometry": { "type": "Point", "coordinates": [ 143.98, -38.554 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.86793, "decimalLat": -38.43857 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -38.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.13171, "decimalLat": -38.17606 }, "geometry": { "type": "Point", "coordinates": [ 145.132, -38.176 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.19497, "decimalLat": -37.19951 }, "geometry": { "type": "Point", "coordinates": [ 148.195, -37.2 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.2252, "decimalLat": -37.37434 }, "geometry": { "type": "Point", "coordinates": [ 144.225, -37.374 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.22764, "decimalLat": -37.36495 }, "geometry": { "type": "Point", "coordinates": [ 144.228, -37.365 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.34986, "decimalLat": -38.36474 }, "geometry": { "type": "Point", "coordinates": [ 145.35, -38.365 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.74341, "decimalLat": -38.51573 }, "geometry": { "type": "Point", "coordinates": [ 146.743, -38.516 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.34115, "decimalLat": -37.46642 }, "geometry": { "type": "Point", "coordinates": [ 144.341, -37.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.51205, "decimalLat": -38.6047 }, "geometry": { "type": "Point", "coordinates": [ 146.512, -38.605 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.51162, "decimalLat": -38.60687 }, "geometry": { "type": "Point", "coordinates": [ 146.512, -38.607 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.47768, "decimalLat": -37.71441 }, "geometry": { "type": "Point", "coordinates": [ 147.478, -37.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.27997, "decimalLat": -37.29633 }, "geometry": { "type": "Point", "coordinates": [ 143.28, -37.296 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.2903, "decimalLat": -37.30606 }, "geometry": { "type": "Point", "coordinates": [ 148.29, -37.306 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.02373, "decimalLat": -37.85996 }, "geometry": { "type": "Point", "coordinates": [ 146.024, -37.86 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.3066, "decimalLat": -37.42904 }, "geometry": { "type": "Point", "coordinates": [ 144.307, -37.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.94406, "decimalLat": -37.34302 }, "geometry": { "type": "Point", "coordinates": [ 145.944, -37.343 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.83918, "decimalLat": -38.39855 }, "geometry": { "type": "Point", "coordinates": [ 146.839, -38.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.90121, "decimalLat": -38.23836 }, "geometry": { "type": "Point", "coordinates": [ 146.901, -38.238 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.69553, "decimalLat": -37.89669 }, "geometry": { "type": "Point", "coordinates": [ 145.696, -37.897 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.41869, "decimalLat": -38.32683 }, "geometry": { "type": "Point", "coordinates": [ 145.419, -38.327 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.70187, "decimalLat": -37.57843 }, "geometry": { "type": "Point", "coordinates": [ 145.702, -37.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 5, "stateProvi": "Victoria", "decimalLon": 143.56109, "decimalLat": -38.831 }, "geometry": { "type": "Point", "coordinates": [ 143.561, -38.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.9889, "decimalLat": -38.24458 }, "geometry": { "type": "Point", "coordinates": [ 146.989, -38.245 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.28754, "decimalLat": -38.32518 }, "geometry": { "type": "Point", "coordinates": [ 145.288, -38.325 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.18854, "decimalLat": -37.46263 }, "geometry": { "type": "Point", "coordinates": [ 144.189, -37.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.09167, "decimalLat": -38.25438 }, "geometry": { "type": "Point", "coordinates": [ 147.092, -38.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.37466, "decimalLat": -37.94524 }, "geometry": { "type": "Point", "coordinates": [ 146.375, -37.945 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.222, "decimalLat": -36.216 }, "geometry": { "type": "Point", "coordinates": [ 145.222, -36.216 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.04627, "decimalLat": -38.00094 }, "geometry": { "type": "Point", "coordinates": [ 141.046, -38.001 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.21921, "decimalLat": -37.17589 }, "geometry": { "type": "Point", "coordinates": [ 148.219, -37.176 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.64015, "decimalLat": -37.33524 }, "geometry": { "type": "Point", "coordinates": [ 145.64, -37.335 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.34608, "decimalLat": -37.96712 }, "geometry": { "type": "Point", "coordinates": [ 146.346, -37.967 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.63834, "decimalLat": -36.99493 }, "geometry": { "type": "Point", "coordinates": [ 148.638, -36.995 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.09159, "decimalLat": -37.47272 }, "geometry": { "type": "Point", "coordinates": [ 144.092, -37.473 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.25249, "decimalLat": -37.0749 }, "geometry": { "type": "Point", "coordinates": [ 143.252, -37.075 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.29346, "decimalLat": -38.31046 }, "geometry": { "type": "Point", "coordinates": [ 145.293, -38.31 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 18, "individual": 5, "stateProvi": "Victoria", "decimalLon": 142.36193, "decimalLat": -38.31881 }, "geometry": { "type": "Point", "coordinates": [ 142.362, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.19469, "decimalLat": -37.17389 }, "geometry": { "type": "Point", "coordinates": [ 145.195, -37.174 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.85998, "decimalLat": -38.67086 }, "geometry": { "type": "Point", "coordinates": [ 143.86, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.2788, "decimalLat": -38.37964 }, "geometry": { "type": "Point", "coordinates": [ 145.279, -38.38 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.83276, "decimalLat": -37.72815 }, "geometry": { "type": "Point", "coordinates": [ 149.833, -37.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.65335, "decimalLat": -37.33545 }, "geometry": { "type": "Point", "coordinates": [ 145.653, -37.335 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.41848, "decimalLat": -38.32672 }, "geometry": { "type": "Point", "coordinates": [ 145.418, -38.327 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.36892, "decimalLat": -37.43413 }, "geometry": { "type": "Point", "coordinates": [ 144.369, -37.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.11062, "decimalLat": -38.33619 }, "geometry": { "type": "Point", "coordinates": [ 147.111, -38.336 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.31413, "decimalLat": -38.39398 }, "geometry": { "type": "Point", "coordinates": [ 145.314, -38.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27667, "decimalLat": -38.36793 }, "geometry": { "type": "Point", "coordinates": [ 145.277, -38.368 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.45651, "decimalLat": -37.65299 }, "geometry": { "type": "Point", "coordinates": [ 147.457, -37.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.42314, "decimalLat": -38.31203 }, "geometry": { "type": "Point", "coordinates": [ 145.423, -38.312 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.24602, "decimalLat": -37.36987 }, "geometry": { "type": "Point", "coordinates": [ 144.246, -37.37 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.00599, "decimalLat": -37.6681 }, "geometry": { "type": "Point", "coordinates": [ 144.006, -37.668 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.3002, "decimalLat": -37.4893 }, "geometry": { "type": "Point", "coordinates": [ 144.3, -37.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.48932, "decimalLat": -37.66862 }, "geometry": { "type": "Point", "coordinates": [ 146.489, -37.669 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.70337, "decimalLat": -37.5743 }, "geometry": { "type": "Point", "coordinates": [ 145.703, -37.574 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.87943, "decimalLat": -38.44579 }, "geometry": { "type": "Point", "coordinates": [ 146.879, -38.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.43549, "decimalLat": -38.3635 }, "geometry": { "type": "Point", "coordinates": [ 145.435, -38.363 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.04177, "decimalLat": -38.37467 }, "geometry": { "type": "Point", "coordinates": [ 146.042, -38.375 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.26208, "decimalLat": -37.44946 }, "geometry": { "type": "Point", "coordinates": [ 144.262, -37.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.3735, "decimalLat": -37.94445 }, "geometry": { "type": "Point", "coordinates": [ 146.374, -37.944 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.38605, "decimalLat": -37.83669 }, "geometry": { "type": "Point", "coordinates": [ 145.386, -37.837 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.18024, "decimalLat": -37.39506 }, "geometry": { "type": "Point", "coordinates": [ 144.18, -37.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.48932, "decimalLat": -37.66862 }, "geometry": { "type": "Point", "coordinates": [ 146.489, -37.669 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.1763, "decimalLat": -37.4357 }, "geometry": { "type": "Point", "coordinates": [ 144.176, -37.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.58763, "decimalLat": -37.26716 }, "geometry": { "type": "Point", "coordinates": [ 145.588, -37.267 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.41833, "decimalLat": -38.49181 }, "geometry": { "type": "Point", "coordinates": [ 143.418, -38.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.68365, "decimalLat": -37.59647 }, "geometry": { "type": "Point", "coordinates": [ 145.684, -37.596 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.42314, "decimalLat": -38.31207 }, "geometry": { "type": "Point", "coordinates": [ 145.423, -38.312 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.44831, "decimalLat": -38.33452 }, "geometry": { "type": "Point", "coordinates": [ 146.448, -38.335 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.12427, "decimalLat": -37.26588 }, "geometry": { "type": "Point", "coordinates": [ 148.124, -37.266 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.41847, "decimalLat": -38.32671 }, "geometry": { "type": "Point", "coordinates": [ 145.418, -38.327 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.33921, "decimalLat": -38.61984 }, "geometry": { "type": "Point", "coordinates": [ 146.339, -38.62 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.72057, "decimalLat": -37.24717 }, "geometry": { "type": "Point", "coordinates": [ 143.721, -37.247 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.26847, "decimalLat": -37.26566 }, "geometry": { "type": "Point", "coordinates": [ 144.268, -37.266 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.29438, "decimalLat": -38.31324 }, "geometry": { "type": "Point", "coordinates": [ 145.294, -38.313 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.26946, "decimalLat": -38.24381 }, "geometry": { "type": "Point", "coordinates": [ 147.269, -38.244 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.93472, "decimalLat": -36.90028 }, "geometry": { "type": "Point", "coordinates": [ 145.935, -36.9 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.28335, "decimalLat": -37.44579 }, "geometry": { "type": "Point", "coordinates": [ 144.283, -37.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.5582, "decimalLat": -38.8459 }, "geometry": { "type": "Point", "coordinates": [ 143.558, -38.846 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.13925, "decimalLat": -38.36314 }, "geometry": { "type": "Point", "coordinates": [ 146.139, -38.363 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.29949, "decimalLat": -37.32623 }, "geometry": { "type": "Point", "coordinates": [ 144.299, -37.326 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.22895, "decimalLat": -37.39083 }, "geometry": { "type": "Point", "coordinates": [ 144.229, -37.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.26048, "decimalLat": -38.29712 }, "geometry": { "type": "Point", "coordinates": [ 146.26, -38.297 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.69582, "decimalLat": -37.8312 }, "geometry": { "type": "Point", "coordinates": [ 145.696, -37.831 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.32917, "decimalLat": -37.39889 }, "geometry": { "type": "Point", "coordinates": [ 144.329, -37.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.24607, "decimalLat": -37.44235 }, "geometry": { "type": "Point", "coordinates": [ 144.246, -37.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.16406, "decimalLat": -37.16198 }, "geometry": { "type": "Point", "coordinates": [ 145.164, -37.162 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.27898, "decimalLat": -37.37651 }, "geometry": { "type": "Point", "coordinates": [ 144.279, -37.377 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.29437, "decimalLat": -38.31331 }, "geometry": { "type": "Point", "coordinates": [ 145.294, -38.313 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.93952, "decimalLat": -38.57641 }, "geometry": { "type": "Point", "coordinates": [ 143.94, -38.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.29337, "decimalLat": -38.33545 }, "geometry": { "type": "Point", "coordinates": [ 145.293, -38.335 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.25645, "decimalLat": -37.29108 }, "geometry": { "type": "Point", "coordinates": [ 143.256, -37.291 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.47051, "decimalLat": -38.10298 }, "geometry": { "type": "Point", "coordinates": [ 147.471, -38.103 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.18716, "decimalLat": -37.46319 }, "geometry": { "type": "Point", "coordinates": [ 144.187, -37.463 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.42313, "decimalLat": -38.31192 }, "geometry": { "type": "Point", "coordinates": [ 145.423, -38.312 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.47901, "decimalLat": -38.54308 }, "geometry": { "type": "Point", "coordinates": [ 143.479, -38.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.41868, "decimalLat": -38.32681 }, "geometry": { "type": "Point", "coordinates": [ 145.419, -38.327 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.28181, "decimalLat": -38.29993 }, "geometry": { "type": "Point", "coordinates": [ 146.282, -38.3 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.17753, "decimalLat": -37.42414 }, "geometry": { "type": "Point", "coordinates": [ 144.178, -37.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.13137, "decimalLat": -38.35869 }, "geometry": { "type": "Point", "coordinates": [ 146.131, -38.359 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.94349, "decimalLat": -38.44596 }, "geometry": { "type": "Point", "coordinates": [ 146.943, -38.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.92597, "decimalLat": -38.42054 }, "geometry": { "type": "Point", "coordinates": [ 146.926, -38.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.48071, "decimalLat": -38.56708 }, "geometry": { "type": "Point", "coordinates": [ 143.481, -38.567 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.62142, "decimalLat": -38.01084 }, "geometry": { "type": "Point", "coordinates": [ 141.621, -38.011 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.75434, "decimalLat": -37.85886 }, "geometry": { "type": "Point", "coordinates": [ 145.754, -37.859 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.82973, "decimalLat": -37.73034 }, "geometry": { "type": "Point", "coordinates": [ 143.83, -37.73 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.27251, "decimalLat": -37.46698 }, "geometry": { "type": "Point", "coordinates": [ 144.273, -37.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.17656, "decimalLat": -37.42323 }, "geometry": { "type": "Point", "coordinates": [ 144.177, -37.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.21249, "decimalLat": -37.38251 }, "geometry": { "type": "Point", "coordinates": [ 144.212, -37.383 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.09181, "decimalLat": -37.47616 }, "geometry": { "type": "Point", "coordinates": [ 144.092, -37.476 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.24602, "decimalLat": -37.36987 }, "geometry": { "type": "Point", "coordinates": [ 144.246, -37.37 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.64296, "decimalLat": -38.41888 }, "geometry": { "type": "Point", "coordinates": [ 146.643, -38.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.3064, "decimalLat": -37.32371 }, "geometry": { "type": "Point", "coordinates": [ 144.306, -37.324 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 5, "stateProvi": "Australian Capital Territory", "decimalLon": 148.91, "decimalLat": -35.46 }, "geometry": { "type": "Point", "coordinates": [ 148.91, -35.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27641, "decimalLat": -38.1374 }, "geometry": { "type": "Point", "coordinates": [ 145.276, -38.137 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.57185, "decimalLat": -36.9945 }, "geometry": { "type": "Point", "coordinates": [ 148.572, -36.994 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.27946, "decimalLat": -37.33101 }, "geometry": { "type": "Point", "coordinates": [ 143.279, -37.331 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.30312, "decimalLat": -37.27575 }, "geometry": { "type": "Point", "coordinates": [ 148.303, -37.276 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.65933, "decimalLat": -37.88052 }, "geometry": { "type": "Point", "coordinates": [ 145.659, -37.881 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.98441, "decimalLat": -37.8833 }, "geometry": { "type": "Point", "coordinates": [ 145.984, -37.883 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.77528, "decimalLat": -38.48008 }, "geometry": { "type": "Point", "coordinates": [ 146.775, -38.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.48333, "decimalLat": -38.33792 }, "geometry": { "type": "Point", "coordinates": [ 145.483, -38.338 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.48638, "decimalLat": -37.67591 }, "geometry": { "type": "Point", "coordinates": [ 147.486, -37.676 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.21155, "decimalLat": -37.44074 }, "geometry": { "type": "Point", "coordinates": [ 144.212, -37.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.58181, "decimalLat": -37.29951 }, "geometry": { "type": "Point", "coordinates": [ 145.582, -37.3 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.39789, "decimalLat": -38.02788 }, "geometry": { "type": "Point", "coordinates": [ 146.398, -38.028 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.68926, "decimalLat": -37.83417 }, "geometry": { "type": "Point", "coordinates": [ 145.689, -37.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.68993, "decimalLat": -37.58257 }, "geometry": { "type": "Point", "coordinates": [ 145.69, -37.583 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.44841, "decimalLat": -38.3267 }, "geometry": { "type": "Point", "coordinates": [ 146.448, -38.327 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.49538, "decimalLat": -37.6642 }, "geometry": { "type": "Point", "coordinates": [ 147.495, -37.664 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 4, "stateProvi": "Victoria", "decimalLon": 143.75752, "decimalLat": -38.55212 }, "geometry": { "type": "Point", "coordinates": [ 143.758, -38.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.98235, "decimalLat": -38.33125 }, "geometry": { "type": "Point", "coordinates": [ 146.982, -38.331 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.48848, "decimalLat": -38.5637 }, "geometry": { "type": "Point", "coordinates": [ 143.488, -38.564 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27092, "decimalLat": -38.1367 }, "geometry": { "type": "Point", "coordinates": [ 145.271, -38.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.11426, "decimalLat": -37.44695 }, "geometry": { "type": "Point", "coordinates": [ 144.114, -37.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.49707, "decimalLat": -38.34938 }, "geometry": { "type": "Point", "coordinates": [ 145.497, -38.349 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.29438, "decimalLat": -38.31301 }, "geometry": { "type": "Point", "coordinates": [ 145.294, -38.313 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.08447, "decimalLat": -37.47477 }, "geometry": { "type": "Point", "coordinates": [ 144.084, -37.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.72115, "decimalLat": -38.55454 }, "geometry": { "type": "Point", "coordinates": [ 143.721, -38.555 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.99047, "decimalLat": -38.20261 }, "geometry": { "type": "Point", "coordinates": [ 146.99, -38.203 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.17625, "decimalLat": -38.36192 }, "geometry": { "type": "Point", "coordinates": [ 146.176, -38.362 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 4, "stateProvi": "Queensland", "decimalLon": 153.35641, "decimalLat": -27.93914 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.30954, "decimalLat": -38.2963 }, "geometry": { "type": "Point", "coordinates": [ 145.31, -38.296 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.33573, "decimalLat": -37.07237 }, "geometry": { "type": "Point", "coordinates": [ 148.336, -37.072 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.3006, "decimalLat": -37.4885 }, "geometry": { "type": "Point", "coordinates": [ 144.301, -37.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.59794, "decimalLat": -37.95795 }, "geometry": { "type": "Point", "coordinates": [ 145.598, -37.958 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.70708, "decimalLat": -37.78672 }, "geometry": { "type": "Point", "coordinates": [ 145.707, -37.787 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.03468, "decimalLat": -38.39186 }, "geometry": { "type": "Point", "coordinates": [ 147.035, -38.392 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.20415, "decimalLat": -38.05193 }, "geometry": { "type": "Point", "coordinates": [ 141.204, -38.052 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.28764, "decimalLat": -38.32102 }, "geometry": { "type": "Point", "coordinates": [ 145.288, -38.321 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.54437, "decimalLat": -38.0749 }, "geometry": { "type": "Point", "coordinates": [ 147.544, -38.075 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.12263, "decimalLat": -37.9007 }, "geometry": { "type": "Point", "coordinates": [ 144.123, -37.901 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.60459, "decimalLat": -38.33997 }, "geometry": { "type": "Point", "coordinates": [ 141.605, -38.34 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.01048, "decimalLat": -38.02716 }, "geometry": { "type": "Point", "coordinates": [ 141.01, -38.027 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.55467, "decimalLat": -37.98443 }, "geometry": { "type": "Point", "coordinates": [ 141.555, -37.984 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.29437, "decimalLat": -38.31328 }, "geometry": { "type": "Point", "coordinates": [ 145.294, -38.313 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.436, "decimalLat": -38.31357 }, "geometry": { "type": "Point", "coordinates": [ 145.436, -38.314 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.69513, "decimalLat": -37.89757 }, "geometry": { "type": "Point", "coordinates": [ 145.695, -37.898 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.67996, "decimalLat": -37.81151 }, "geometry": { "type": "Point", "coordinates": [ 145.68, -37.812 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.31758, "decimalLat": -38.51399 }, "geometry": { "type": "Point", "coordinates": [ 146.318, -38.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.51689, "decimalLat": -37.92349 }, "geometry": { "type": "Point", "coordinates": [ 141.517, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.95334, "decimalLat": -38.43487 }, "geometry": { "type": "Point", "coordinates": [ 146.953, -38.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.24733, "decimalLat": -38.23097 }, "geometry": { "type": "Point", "coordinates": [ 146.247, -38.231 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 4, "stateProvi": "Queensland", "decimalLon": 153.37666, "decimalLat": -28.0986 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.099 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.14166, "decimalLat": -38.36862 }, "geometry": { "type": "Point", "coordinates": [ 146.142, -38.369 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.59794, "decimalLat": -37.95795 }, "geometry": { "type": "Point", "coordinates": [ 145.598, -37.958 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.24095, "decimalLat": -37.3657 }, "geometry": { "type": "Point", "coordinates": [ 144.241, -37.366 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.26147, "decimalLat": -37.07956 }, "geometry": { "type": "Point", "coordinates": [ 143.261, -37.08 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.28518, "decimalLat": -36.95386 }, "geometry": { "type": "Point", "coordinates": [ 146.285, -36.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.22835, "decimalLat": -38.56586 }, "geometry": { "type": "Point", "coordinates": [ 146.228, -38.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.68932, "decimalLat": -37.83508 }, "geometry": { "type": "Point", "coordinates": [ 145.689, -37.835 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.31212, "decimalLat": -38.50914 }, "geometry": { "type": "Point", "coordinates": [ 146.312, -38.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.32553, "decimalLat": -37.29356 }, "geometry": { "type": "Point", "coordinates": [ 148.326, -37.294 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.15509, "decimalLat": -38.24438 }, "geometry": { "type": "Point", "coordinates": [ 147.155, -38.244 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.68916, "decimalLat": -37.83423 }, "geometry": { "type": "Point", "coordinates": [ 145.689, -37.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.29321, "decimalLat": -38.28592 }, "geometry": { "type": "Point", "coordinates": [ 145.293, -38.286 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.38333, "decimalLat": -37.48291 }, "geometry": { "type": "Point", "coordinates": [ 145.383, -37.483 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.21514, "decimalLat": -38.28339 }, "geometry": { "type": "Point", "coordinates": [ 147.215, -38.283 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.04023, "decimalLat": -38.48475 }, "geometry": { "type": "Point", "coordinates": [ 147.04, -38.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.15797, "decimalLat": -38.0534 }, "geometry": { "type": "Point", "coordinates": [ 141.158, -38.053 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.64015, "decimalLat": -37.33524 }, "geometry": { "type": "Point", "coordinates": [ 145.64, -37.335 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.14842, "decimalLat": -37.91635 }, "geometry": { "type": "Point", "coordinates": [ 146.148, -37.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.58379, "decimalLat": -38.00952 }, "geometry": { "type": "Point", "coordinates": [ 141.584, -38.01 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.94126, "decimalLat": -36.91677 }, "geometry": { "type": "Point", "coordinates": [ 145.941, -36.917 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.20429, "decimalLat": -37.17146 }, "geometry": { "type": "Point", "coordinates": [ 145.204, -37.171 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.1931, "decimalLat": -37.43318 }, "geometry": { "type": "Point", "coordinates": [ 144.193, -37.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.6163, "decimalLat": -38.31517 }, "geometry": { "type": "Point", "coordinates": [ 145.616, -38.315 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.02382, "decimalLat": -37.8599 }, "geometry": { "type": "Point", "coordinates": [ 146.024, -37.86 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.25557, "decimalLat": -37.07781 }, "geometry": { "type": "Point", "coordinates": [ 143.256, -37.078 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.68961, "decimalLat": -37.83524 }, "geometry": { "type": "Point", "coordinates": [ 145.69, -37.835 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.10302, "decimalLat": -37.50187 }, "geometry": { "type": "Point", "coordinates": [ 144.103, -37.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.41869, "decimalLat": -38.32678 }, "geometry": { "type": "Point", "coordinates": [ 145.419, -38.327 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.65196, "decimalLat": -36.1626 }, "geometry": { "type": "Point", "coordinates": [ 146.652, -36.163 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.6222, "decimalLat": -38.36137 }, "geometry": { "type": "Point", "coordinates": [ 146.622, -38.361 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.37108, "decimalLat": -38.3712 }, "geometry": { "type": "Point", "coordinates": [ 145.371, -38.371 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.37115, "decimalLat": -38.37124 }, "geometry": { "type": "Point", "coordinates": [ 145.371, -38.371 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.85066, "decimalLat": -38.40657 }, "geometry": { "type": "Point", "coordinates": [ 146.851, -38.407 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.259, "decimalLat": -37.4433 }, "geometry": { "type": "Point", "coordinates": [ 144.259, -37.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.49707, "decimalLat": -38.34938 }, "geometry": { "type": "Point", "coordinates": [ 145.497, -38.349 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.24854, "decimalLat": -37.44482 }, "geometry": { "type": "Point", "coordinates": [ 144.249, -37.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.64963, "decimalLat": -37.02372 }, "geometry": { "type": "Point", "coordinates": [ 145.65, -37.024 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.342, "decimalLat": -37.4594 }, "geometry": { "type": "Point", "coordinates": [ 144.342, -37.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.58712, "decimalLat": -37.26648 }, "geometry": { "type": "Point", "coordinates": [ 145.587, -37.266 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.72115, "decimalLat": -38.55454 }, "geometry": { "type": "Point", "coordinates": [ 143.721, -38.555 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.08213, "decimalLat": -38.01045 }, "geometry": { "type": "Point", "coordinates": [ 141.082, -38.01 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.96235, "decimalLat": -37.64806 }, "geometry": { "type": "Point", "coordinates": [ 141.962, -37.648 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.89382, "decimalLat": -38.45906 }, "geometry": { "type": "Point", "coordinates": [ 146.894, -38.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.69033, "decimalLat": -37.57712 }, "geometry": { "type": "Point", "coordinates": [ 145.69, -37.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.21782, "decimalLat": -37.9298 }, "geometry": { "type": "Point", "coordinates": [ 146.218, -37.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.43545, "decimalLat": -38.3636 }, "geometry": { "type": "Point", "coordinates": [ 145.435, -38.364 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.17537, "decimalLat": -37.42964 }, "geometry": { "type": "Point", "coordinates": [ 144.175, -37.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.36721, "decimalLat": -38.51672 }, "geometry": { "type": "Point", "coordinates": [ 146.367, -38.517 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.1001, "decimalLat": -37.40403 }, "geometry": { "type": "Point", "coordinates": [ 144.1, -37.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.44619, "decimalLat": -38.138 }, "geometry": { "type": "Point", "coordinates": [ 147.446, -38.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.2603, "decimalLat": -37.5162 }, "geometry": { "type": "Point", "coordinates": [ 144.26, -37.516 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.52091, "decimalLat": -37.91606 }, "geometry": { "type": "Point", "coordinates": [ 141.521, -37.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.52018, "decimalLat": -38.80639 }, "geometry": { "type": "Point", "coordinates": [ 143.52, -38.806 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.50995, "decimalLat": -38.60378 }, "geometry": { "type": "Point", "coordinates": [ 146.51, -38.604 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.64146, "decimalLat": -38.19674 }, "geometry": { "type": "Point", "coordinates": [ 141.641, -38.197 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 4, "stateProvi": "Queensland", "decimalLon": 153.35641, "decimalLat": -27.93914 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.43563, "decimalLat": -38.36352 }, "geometry": { "type": "Point", "coordinates": [ 145.436, -38.364 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.25093, "decimalLat": -37.44621 }, "geometry": { "type": "Point", "coordinates": [ 144.251, -37.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.07233, "decimalLat": -37.45255 }, "geometry": { "type": "Point", "coordinates": [ 144.072, -37.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.29312, "decimalLat": -37.0892 }, "geometry": { "type": "Point", "coordinates": [ 143.293, -37.089 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.27004, "decimalLat": -37.30715 }, "geometry": { "type": "Point", "coordinates": [ 148.27, -37.307 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.09509, "decimalLat": -38.34151 }, "geometry": { "type": "Point", "coordinates": [ 146.095, -38.342 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.45221, "decimalLat": -37.65338 }, "geometry": { "type": "Point", "coordinates": [ 147.452, -37.653 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.32333, "decimalLat": -38.21222 }, "geometry": { "type": "Point", "coordinates": [ 146.323, -38.212 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.07216, "decimalLat": -37.45264 }, "geometry": { "type": "Point", "coordinates": [ 144.072, -37.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.91366, "decimalLat": -37.33807 }, "geometry": { "type": "Point", "coordinates": [ 145.914, -37.338 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.29435, "decimalLat": -38.31301 }, "geometry": { "type": "Point", "coordinates": [ 145.294, -38.313 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.10159, "decimalLat": -37.47416 }, "geometry": { "type": "Point", "coordinates": [ 144.102, -37.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.64474, "decimalLat": -38.49269 }, "geometry": { "type": "Point", "coordinates": [ 143.645, -38.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.22681, "decimalLat": -37.37042 }, "geometry": { "type": "Point", "coordinates": [ 144.227, -37.37 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.89119, "decimalLat": -38.46983 }, "geometry": { "type": "Point", "coordinates": [ 146.891, -38.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.30712, "decimalLat": -37.29521 }, "geometry": { "type": "Point", "coordinates": [ 144.307, -37.295 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.25948, "decimalLat": -37.30084 }, "geometry": { "type": "Point", "coordinates": [ 143.259, -37.301 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.64474, "decimalLat": -38.49269 }, "geometry": { "type": "Point", "coordinates": [ 143.645, -38.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.13624, "decimalLat": -38.2614 }, "geometry": { "type": "Point", "coordinates": [ 147.136, -38.261 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.67013, "decimalLat": -38.00846 }, "geometry": { "type": "Point", "coordinates": [ 141.67, -38.008 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.28152, "decimalLat": -38.38817 }, "geometry": { "type": "Point", "coordinates": [ 145.282, -38.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.29349, "decimalLat": -38.31039 }, "geometry": { "type": "Point", "coordinates": [ 145.293, -38.31 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.1863, "decimalLat": -38.06022 }, "geometry": { "type": "Point", "coordinates": [ 141.186, -38.06 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.09966, "decimalLat": -37.4013 }, "geometry": { "type": "Point", "coordinates": [ 144.1, -37.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.35612, "decimalLat": -37.45559 }, "geometry": { "type": "Point", "coordinates": [ 144.356, -37.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.35343, "decimalLat": -37.43864 }, "geometry": { "type": "Point", "coordinates": [ 144.353, -37.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.88974, "decimalLat": -36.89344 }, "geometry": { "type": "Point", "coordinates": [ 145.89, -36.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.71135, "decimalLat": -37.83244 }, "geometry": { "type": "Point", "coordinates": [ 145.711, -37.832 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.59923, "decimalLat": -38.01573 }, "geometry": { "type": "Point", "coordinates": [ 141.599, -38.016 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.25006, "decimalLat": -37.06148 }, "geometry": { "type": "Point", "coordinates": [ 143.25, -37.061 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.27705, "decimalLat": -37.47023 }, "geometry": { "type": "Point", "coordinates": [ 144.277, -37.47 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.68226, "decimalLat": -38.19882 }, "geometry": { "type": "Point", "coordinates": [ 141.682, -38.199 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.2378, "decimalLat": -38.28659 }, "geometry": { "type": "Point", "coordinates": [ 147.238, -38.287 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.25678, "decimalLat": -37.08221 }, "geometry": { "type": "Point", "coordinates": [ 143.257, -37.082 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.09159, "decimalLat": -37.47272 }, "geometry": { "type": "Point", "coordinates": [ 144.092, -37.473 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.53206, "decimalLat": -37.98239 }, "geometry": { "type": "Point", "coordinates": [ 141.532, -37.982 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.49357, "decimalLat": -38.07614 }, "geometry": { "type": "Point", "coordinates": [ 147.494, -38.076 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.78885, "decimalLat": -36.45154 }, "geometry": { "type": "Point", "coordinates": [ 146.789, -36.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.32614, "decimalLat": -38.51776 }, "geometry": { "type": "Point", "coordinates": [ 146.326, -38.518 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.12098, "decimalLat": -38.34345 }, "geometry": { "type": "Point", "coordinates": [ 147.121, -38.343 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.256, "decimalLat": -37.96022 }, "geometry": { "type": "Point", "coordinates": [ 146.256, -37.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.24387, "decimalLat": -37.37812 }, "geometry": { "type": "Point", "coordinates": [ 144.244, -37.378 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.70187, "decimalLat": -37.57843 }, "geometry": { "type": "Point", "coordinates": [ 145.702, -37.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.96303, "decimalLat": -38.54241 }, "geometry": { "type": "Point", "coordinates": [ 143.963, -38.542 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.37112, "decimalLat": -38.37124 }, "geometry": { "type": "Point", "coordinates": [ 145.371, -38.371 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.39789, "decimalLat": -38.02788 }, "geometry": { "type": "Point", "coordinates": [ 146.398, -38.028 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.66921, "decimalLat": -37.59273 }, "geometry": { "type": "Point", "coordinates": [ 145.669, -37.593 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.09968, "decimalLat": -37.41146 }, "geometry": { "type": "Point", "coordinates": [ 144.1, -37.411 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.67996, "decimalLat": -37.81151 }, "geometry": { "type": "Point", "coordinates": [ 145.68, -37.812 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.2969, "decimalLat": -37.10019 }, "geometry": { "type": "Point", "coordinates": [ 148.297, -37.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.48932, "decimalLat": -37.66862 }, "geometry": { "type": "Point", "coordinates": [ 146.489, -37.669 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.91978, "decimalLat": -37.36129 }, "geometry": { "type": "Point", "coordinates": [ 145.92, -37.361 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.18589, "decimalLat": -37.46525 }, "geometry": { "type": "Point", "coordinates": [ 144.186, -37.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.926, "decimalLat": -38.50598 }, "geometry": { "type": "Point", "coordinates": [ 146.926, -38.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.48029, "decimalLat": -37.72599 }, "geometry": { "type": "Point", "coordinates": [ 147.48, -37.726 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.23523, "decimalLat": -38.5619 }, "geometry": { "type": "Point", "coordinates": [ 146.235, -38.562 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.43276, "decimalLat": -38.17134 }, "geometry": { "type": "Point", "coordinates": [ 141.433, -38.171 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.49084, "decimalLat": -38.09544 }, "geometry": { "type": "Point", "coordinates": [ 147.491, -38.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.62788, "decimalLat": -38.6188 }, "geometry": { "type": "Point", "coordinates": [ 143.628, -38.619 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.93548, "decimalLat": -38.28063 }, "geometry": { "type": "Point", "coordinates": [ 145.935, -38.281 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.2252, "decimalLat": -37.37434 }, "geometry": { "type": "Point", "coordinates": [ 144.225, -37.374 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.2624, "decimalLat": -37.44962 }, "geometry": { "type": "Point", "coordinates": [ 144.262, -37.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.28509, "decimalLat": -37.0881 }, "geometry": { "type": "Point", "coordinates": [ 143.285, -37.088 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27574, "decimalLat": -38.1347 }, "geometry": { "type": "Point", "coordinates": [ 145.276, -38.135 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 4, "stateProvi": "Queensland", "decimalLon": 152.544945, "decimalLat": -27.350309 }, "geometry": { "type": "Point", "coordinates": [ 152.545, -27.35 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.67365, "decimalLat": -38.37856 }, "geometry": { "type": "Point", "coordinates": [ 146.674, -38.379 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.17242, "decimalLat": -37.04285 }, "geometry": { "type": "Point", "coordinates": [ 145.172, -37.043 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.37107, "decimalLat": -38.37121 }, "geometry": { "type": "Point", "coordinates": [ 145.371, -38.371 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.09834, "decimalLat": -37.41134 }, "geometry": { "type": "Point", "coordinates": [ 144.098, -37.411 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.26138, "decimalLat": -37.45483 }, "geometry": { "type": "Point", "coordinates": [ 144.261, -37.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 4, "stateProvi": "Queensland", "decimalLon": 153.269271, "decimalLat": -27.527925 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.92524, "decimalLat": -36.79873 }, "geometry": { "type": "Point", "coordinates": [ 145.925, -36.799 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.20535, "decimalLat": -38.04568 }, "geometry": { "type": "Point", "coordinates": [ 141.205, -38.046 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.32581, "decimalLat": -37.44482 }, "geometry": { "type": "Point", "coordinates": [ 144.326, -37.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.01121, "decimalLat": -38.38098 }, "geometry": { "type": "Point", "coordinates": [ 147.011, -38.381 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.06541, "decimalLat": -38.01393 }, "geometry": { "type": "Point", "coordinates": [ 141.065, -38.014 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.50082, "decimalLat": -38.59823 }, "geometry": { "type": "Point", "coordinates": [ 146.501, -38.598 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.49804, "decimalLat": -38.35004 }, "geometry": { "type": "Point", "coordinates": [ 145.498, -38.35 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.70187, "decimalLat": -37.57843 }, "geometry": { "type": "Point", "coordinates": [ 145.702, -37.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.49803, "decimalLat": -38.34995 }, "geometry": { "type": "Point", "coordinates": [ 145.498, -38.35 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.68182, "decimalLat": -38.65962 }, "geometry": { "type": "Point", "coordinates": [ 146.682, -38.66 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.27649, "decimalLat": -38.2425 }, "geometry": { "type": "Point", "coordinates": [ 146.276, -38.242 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 4, "stateProvi": "South Australia", "decimalLon": 138.70654, "decimalLat": -34.99039 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.67873, "decimalLat": -37.47884 }, "geometry": { "type": "Point", "coordinates": [ 149.679, -37.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.1924, "decimalLat": -37.427 }, "geometry": { "type": "Point", "coordinates": [ 144.192, -37.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 3, "stateProvi": "Victoria", "decimalLon": 144.27217, "decimalLat": -37.78976 }, "geometry": { "type": "Point", "coordinates": [ 144.272, -37.79 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.71117, "decimalLat": -37.8679 }, "geometry": { "type": "Point", "coordinates": [ 145.711, -37.868 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.45651, "decimalLat": -37.65299 }, "geometry": { "type": "Point", "coordinates": [ 147.457, -37.653 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.14034, "decimalLat": -38.01607 }, "geometry": { "type": "Point", "coordinates": [ 141.14, -38.016 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.60643, "decimalLat": -38.03115 }, "geometry": { "type": "Point", "coordinates": [ 141.606, -38.031 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.09159, "decimalLat": -37.47272 }, "geometry": { "type": "Point", "coordinates": [ 144.092, -37.473 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.45244, "decimalLat": -37.64368 }, "geometry": { "type": "Point", "coordinates": [ 147.452, -37.644 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.10213, "decimalLat": -37.44746 }, "geometry": { "type": "Point", "coordinates": [ 144.102, -37.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.7773, "decimalLat": -38.39513 }, "geometry": { "type": "Point", "coordinates": [ 146.777, -38.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.50873, "decimalLat": -38.55414 }, "geometry": { "type": "Point", "coordinates": [ 143.509, -38.554 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.86214, "decimalLat": -38.47536 }, "geometry": { "type": "Point", "coordinates": [ 146.862, -38.475 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.17144, "decimalLat": -38.02017 }, "geometry": { "type": "Point", "coordinates": [ 141.171, -38.02 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.29962, "decimalLat": -37.32881 }, "geometry": { "type": "Point", "coordinates": [ 144.3, -37.329 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.43077, "decimalLat": -38.33339 }, "geometry": { "type": "Point", "coordinates": [ 145.431, -38.333 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.23035, "decimalLat": -38.22155 }, "geometry": { "type": "Point", "coordinates": [ 146.23, -38.222 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.2707, "decimalLat": -37.34417 }, "geometry": { "type": "Point", "coordinates": [ 144.271, -37.344 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.73497, "decimalLat": -36.72648 }, "geometry": { "type": "Point", "coordinates": [ 145.735, -36.726 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.04162, "decimalLat": -38.3739 }, "geometry": { "type": "Point", "coordinates": [ 146.042, -38.374 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.17699, "decimalLat": -37.42545 }, "geometry": { "type": "Point", "coordinates": [ 144.177, -37.425 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.71117, "decimalLat": -37.8679 }, "geometry": { "type": "Point", "coordinates": [ 145.711, -37.868 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 21, "individual": 3, "stateProvi": "Victoria", "decimalLon": 143.94433, "decimalLat": -38.55382 }, "geometry": { "type": "Point", "coordinates": [ 143.944, -38.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.45029, "decimalLat": -38.3337 }, "geometry": { "type": "Point", "coordinates": [ 146.45, -38.334 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.43752, "decimalLat": -38.36663 }, "geometry": { "type": "Point", "coordinates": [ 145.438, -38.367 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.89508, "decimalLat": -36.88223 }, "geometry": { "type": "Point", "coordinates": [ 145.895, -36.882 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.61177, "decimalLat": -37.50058 }, "geometry": { "type": "Point", "coordinates": [ 145.612, -37.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.20042, "decimalLat": -37.13766 }, "geometry": { "type": "Point", "coordinates": [ 145.2, -37.138 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.5269, "decimalLat": -37.44594 }, "geometry": { "type": "Point", "coordinates": [ 147.527, -37.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27667, "decimalLat": -38.36793 }, "geometry": { "type": "Point", "coordinates": [ 145.277, -38.368 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6323, "decimalLat": -38.25278 }, "geometry": { "type": "Point", "coordinates": [ 141.632, -38.253 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.24586, "decimalLat": -37.44493 }, "geometry": { "type": "Point", "coordinates": [ 144.246, -37.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.71134, "decimalLat": -37.8679 }, "geometry": { "type": "Point", "coordinates": [ 145.711, -37.868 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.26513, "decimalLat": -37.30284 }, "geometry": { "type": "Point", "coordinates": [ 148.265, -37.303 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.27741, "decimalLat": -37.31903 }, "geometry": { "type": "Point", "coordinates": [ 143.277, -37.319 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.22566, "decimalLat": -37.38928 }, "geometry": { "type": "Point", "coordinates": [ 144.226, -37.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.37954, "decimalLat": -37.83637 }, "geometry": { "type": "Point", "coordinates": [ 145.38, -37.836 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.61666, "decimalLat": -38.36668 }, "geometry": { "type": "Point", "coordinates": [ 141.617, -38.367 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.09135, "decimalLat": -37.43981 }, "geometry": { "type": "Point", "coordinates": [ 144.091, -37.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.71302, "decimalLat": -37.86817 }, "geometry": { "type": "Point", "coordinates": [ 145.713, -37.868 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.42549, "decimalLat": -38.48123 }, "geometry": { "type": "Point", "coordinates": [ 146.425, -38.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.37107, "decimalLat": -38.37122 }, "geometry": { "type": "Point", "coordinates": [ 145.371, -38.371 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.19156, "decimalLat": -37.16918 }, "geometry": { "type": "Point", "coordinates": [ 145.192, -37.169 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.29162, "decimalLat": -37.11337 }, "geometry": { "type": "Point", "coordinates": [ 148.292, -37.113 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.11136, "decimalLat": -37.44063 }, "geometry": { "type": "Point", "coordinates": [ 144.111, -37.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.65222, "decimalLat": -38.17715 }, "geometry": { "type": "Point", "coordinates": [ 141.652, -38.177 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.93596, "decimalLat": -38.42514 }, "geometry": { "type": "Point", "coordinates": [ 146.936, -38.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 3, "stateProvi": "Victoria", "decimalLon": 143.96959, "decimalLat": -38.5395 }, "geometry": { "type": "Point", "coordinates": [ 143.97, -38.539 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 3, "stateProvi": "Victoria", "decimalLon": 143.97029, "decimalLat": -38.54325 }, "geometry": { "type": "Point", "coordinates": [ 143.97, -38.543 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.19437, "decimalLat": -37.41014 }, "geometry": { "type": "Point", "coordinates": [ 144.194, -37.41 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.17788, "decimalLat": -38.51634 }, "geometry": { "type": "Point", "coordinates": [ 146.178, -38.516 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.64234, "decimalLat": -37.32466 }, "geometry": { "type": "Point", "coordinates": [ 145.642, -37.325 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.29235, "decimalLat": -37.14578 }, "geometry": { "type": "Point", "coordinates": [ 148.292, -37.146 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.2753, "decimalLat": -35.87985 }, "geometry": { "type": "Point", "coordinates": [ 145.275, -35.88 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.03439, "decimalLat": -38.33562 }, "geometry": { "type": "Point", "coordinates": [ 147.034, -38.336 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.83243, "decimalLat": -37.72557 }, "geometry": { "type": "Point", "coordinates": [ 143.832, -37.726 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.61682, "decimalLat": -38.36674 }, "geometry": { "type": "Point", "coordinates": [ 141.617, -38.367 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.25722, "decimalLat": -37.46026 }, "geometry": { "type": "Point", "coordinates": [ 144.257, -37.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.26948, "decimalLat": -37.3075 }, "geometry": { "type": "Point", "coordinates": [ 148.269, -37.307 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.36848, "decimalLat": -38.34936 }, "geometry": { "type": "Point", "coordinates": [ 145.368, -38.349 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.45953, "decimalLat": -37.48231 }, "geometry": { "type": "Point", "coordinates": [ 145.46, -37.482 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.92927, "decimalLat": -37.33648 }, "geometry": { "type": "Point", "coordinates": [ 145.929, -37.336 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.98441, "decimalLat": -37.8833 }, "geometry": { "type": "Point", "coordinates": [ 145.984, -37.883 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.20003, "decimalLat": -37.16903 }, "geometry": { "type": "Point", "coordinates": [ 145.2, -37.169 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.17848, "decimalLat": -37.42848 }, "geometry": { "type": "Point", "coordinates": [ 144.178, -37.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.69032, "decimalLat": -37.58375 }, "geometry": { "type": "Point", "coordinates": [ 145.69, -37.584 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.20143, "decimalLat": -37.17004 }, "geometry": { "type": "Point", "coordinates": [ 145.201, -37.17 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.24602, "decimalLat": -37.36987 }, "geometry": { "type": "Point", "coordinates": [ 144.246, -37.37 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.20574, "decimalLat": -37.14551 }, "geometry": { "type": "Point", "coordinates": [ 145.206, -37.146 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.2032, "decimalLat": -37.17126 }, "geometry": { "type": "Point", "coordinates": [ 145.203, -37.171 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.22572, "decimalLat": -37.3904 }, "geometry": { "type": "Point", "coordinates": [ 144.226, -37.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.84251, "decimalLat": -38.39233 }, "geometry": { "type": "Point", "coordinates": [ 146.843, -38.392 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.30726, "decimalLat": -38.22102 }, "geometry": { "type": "Point", "coordinates": [ 146.307, -38.221 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.0541, "decimalLat": -37.2678 }, "geometry": { "type": "Point", "coordinates": [ 144.054, -37.268 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.22681, "decimalLat": -37.37042 }, "geometry": { "type": "Point", "coordinates": [ 144.227, -37.37 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.29435, "decimalLat": -38.31329 }, "geometry": { "type": "Point", "coordinates": [ 145.294, -38.313 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.18823, "decimalLat": -37.13964 }, "geometry": { "type": "Point", "coordinates": [ 145.188, -37.14 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.96091, "decimalLat": -38.5442 }, "geometry": { "type": "Point", "coordinates": [ 143.961, -38.544 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.50553, "decimalLat": -38.60641 }, "geometry": { "type": "Point", "coordinates": [ 146.506, -38.606 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.85035, "decimalLat": -38.44293 }, "geometry": { "type": "Point", "coordinates": [ 146.85, -38.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.3002, "decimalLat": -37.4937 }, "geometry": { "type": "Point", "coordinates": [ 144.3, -37.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.67073, "decimalLat": -37.89597 }, "geometry": { "type": "Point", "coordinates": [ 145.671, -37.896 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.40261, "decimalLat": -38.02849 }, "geometry": { "type": "Point", "coordinates": [ 146.403, -38.028 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 5, "individual": 3, "stateProvi": "Victoria", "decimalLon": 145.9223, "decimalLat": -36.8559 }, "geometry": { "type": "Point", "coordinates": [ 145.922, -36.856 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.70922, "decimalLat": -37.83541 }, "geometry": { "type": "Point", "coordinates": [ 145.709, -37.835 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.39599, "decimalLat": -38.67168 }, "geometry": { "type": "Point", "coordinates": [ 143.396, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.24602, "decimalLat": -37.36987 }, "geometry": { "type": "Point", "coordinates": [ 144.246, -37.37 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.1867, "decimalLat": -37.39299 }, "geometry": { "type": "Point", "coordinates": [ 144.187, -37.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 3, "stateProvi": "Victoria", "decimalLon": 145.7186, "decimalLat": -37.8558 }, "geometry": { "type": "Point", "coordinates": [ 145.719, -37.856 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.54254, "decimalLat": -37.96258 }, "geometry": { "type": "Point", "coordinates": [ 141.543, -37.963 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.71302, "decimalLat": -37.86817 }, "geometry": { "type": "Point", "coordinates": [ 145.713, -37.868 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.4501, "decimalLat": -38.12826 }, "geometry": { "type": "Point", "coordinates": [ 147.45, -38.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.84507, "decimalLat": -38.41084 }, "geometry": { "type": "Point", "coordinates": [ 146.845, -38.411 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.30436, "decimalLat": -37.30115 }, "geometry": { "type": "Point", "coordinates": [ 144.304, -37.301 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.20231, "decimalLat": -37.17073 }, "geometry": { "type": "Point", "coordinates": [ 145.202, -37.171 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.5213, "decimalLat": -36.94633 }, "geometry": { "type": "Point", "coordinates": [ 148.521, -36.946 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.44287, "decimalLat": -35.85559 }, "geometry": { "type": "Point", "coordinates": [ 145.443, -35.856 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.3735, "decimalLat": -37.94445 }, "geometry": { "type": "Point", "coordinates": [ 146.374, -37.944 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.84472, "decimalLat": -38.45749 }, "geometry": { "type": "Point", "coordinates": [ 146.845, -38.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.78281, "decimalLat": -38.3238 }, "geometry": { "type": "Point", "coordinates": [ 146.783, -38.324 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.64975, "decimalLat": -37.02652 }, "geometry": { "type": "Point", "coordinates": [ 145.65, -37.027 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.51572, "decimalLat": -37.98235 }, "geometry": { "type": "Point", "coordinates": [ 141.516, -37.982 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.21973, "decimalLat": -37.37201 }, "geometry": { "type": "Point", "coordinates": [ 144.22, -37.372 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.4355, "decimalLat": -38.36342 }, "geometry": { "type": "Point", "coordinates": [ 145.436, -38.363 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.2707, "decimalLat": -37.34417 }, "geometry": { "type": "Point", "coordinates": [ 144.271, -37.344 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.2987, "decimalLat": -37.4851 }, "geometry": { "type": "Point", "coordinates": [ 144.299, -37.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.49149, "decimalLat": -38.4419 }, "geometry": { "type": "Point", "coordinates": [ 146.491, -38.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.78787, "decimalLat": -38.35727 }, "geometry": { "type": "Point", "coordinates": [ 146.788, -38.357 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.89176, "decimalLat": -38.46006 }, "geometry": { "type": "Point", "coordinates": [ 146.892, -38.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.88475, "decimalLat": -38.42048 }, "geometry": { "type": "Point", "coordinates": [ 146.885, -38.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.48832, "decimalLat": -37.66895 }, "geometry": { "type": "Point", "coordinates": [ 147.488, -37.669 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.58869, "decimalLat": -37.2656 }, "geometry": { "type": "Point", "coordinates": [ 145.589, -37.266 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.023, "decimalLat": -38.38917 }, "geometry": { "type": "Point", "coordinates": [ 147.023, -38.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.30172, "decimalLat": -37.32497 }, "geometry": { "type": "Point", "coordinates": [ 144.302, -37.325 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.11464, "decimalLat": -38.05006 }, "geometry": { "type": "Point", "coordinates": [ 141.115, -38.05 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.56105, "decimalLat": -37.65955 }, "geometry": { "type": "Point", "coordinates": [ 147.561, -37.66 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.56232, "decimalLat": -38.64518 }, "geometry": { "type": "Point", "coordinates": [ 146.562, -38.645 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.34568, "decimalLat": -37.34702 }, "geometry": { "type": "Point", "coordinates": [ 148.346, -37.347 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.143, "decimalLat": -37.42297 }, "geometry": { "type": "Point", "coordinates": [ 144.143, -37.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.64628, "decimalLat": -37.99474 }, "geometry": { "type": "Point", "coordinates": [ 141.646, -37.995 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.31299, "decimalLat": -38.36284 }, "geometry": { "type": "Point", "coordinates": [ 145.313, -38.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 3, "stateProvi": "Victoria", "decimalLon": 143.35138, "decimalLat": -37.06926 }, "geometry": { "type": "Point", "coordinates": [ 143.351, -37.069 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.71134, "decimalLat": -37.8679 }, "geometry": { "type": "Point", "coordinates": [ 145.711, -37.868 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.28372, "decimalLat": -38.32709 }, "geometry": { "type": "Point", "coordinates": [ 145.284, -38.327 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.26723, "decimalLat": -37.29684 }, "geometry": { "type": "Point", "coordinates": [ 148.267, -37.297 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.55171, "decimalLat": -38.2184 }, "geometry": { "type": "Point", "coordinates": [ 141.552, -38.218 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.31799, "decimalLat": -39.01515 }, "geometry": { "type": "Point", "coordinates": [ 146.318, -39.015 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.91953, "decimalLat": -38.42528 }, "geometry": { "type": "Point", "coordinates": [ 146.92, -38.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.43774, "decimalLat": -38.5593 }, "geometry": { "type": "Point", "coordinates": [ 146.438, -38.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.32298, "decimalLat": -38.35849 }, "geometry": { "type": "Point", "coordinates": [ 145.323, -38.358 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.98763, "decimalLat": -37.88608 }, "geometry": { "type": "Point", "coordinates": [ 145.988, -37.886 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.51011, "decimalLat": -38.15037 }, "geometry": { "type": "Point", "coordinates": [ 141.51, -38.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.43033, "decimalLat": -38.33317 }, "geometry": { "type": "Point", "coordinates": [ 145.43, -38.333 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.26982, "decimalLat": -37.4588 }, "geometry": { "type": "Point", "coordinates": [ 144.27, -37.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.2118, "decimalLat": -37.38005 }, "geometry": { "type": "Point", "coordinates": [ 144.212, -37.38 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 3, "stateProvi": "New South Wales", "decimalLon": 153.523046, "decimalLat": -28.711473 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.21294, "decimalLat": -37.93215 }, "geometry": { "type": "Point", "coordinates": [ 146.213, -37.932 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.22045, "decimalLat": -37.38754 }, "geometry": { "type": "Point", "coordinates": [ 144.22, -37.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.4666, "decimalLat": -37.93063 }, "geometry": { "type": "Point", "coordinates": [ 141.467, -37.931 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.26551, "decimalLat": -37.26995 }, "geometry": { "type": "Point", "coordinates": [ 144.266, -37.27 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.97145, "decimalLat": -38.18889 }, "geometry": { "type": "Point", "coordinates": [ 146.971, -38.189 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.48832, "decimalLat": -37.66895 }, "geometry": { "type": "Point", "coordinates": [ 147.488, -37.669 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.96756, "decimalLat": -38.53028 }, "geometry": { "type": "Point", "coordinates": [ 143.968, -38.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.27451, "decimalLat": -37.92095 }, "geometry": { "type": "Point", "coordinates": [ 146.275, -37.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.83247, "decimalLat": -38.39951 }, "geometry": { "type": "Point", "coordinates": [ 146.832, -38.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.58285, "decimalLat": -37.30191 }, "geometry": { "type": "Point", "coordinates": [ 145.583, -37.302 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.4856, "decimalLat": -38.33947 }, "geometry": { "type": "Point", "coordinates": [ 145.486, -38.339 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.44907, "decimalLat": -38.15916 }, "geometry": { "type": "Point", "coordinates": [ 141.449, -38.159 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.19546, "decimalLat": -37.19441 }, "geometry": { "type": "Point", "coordinates": [ 148.195, -37.194 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.71482, "decimalLat": -38.48108 }, "geometry": { "type": "Point", "coordinates": [ 143.715, -38.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.83416, "decimalLat": -38.42053 }, "geometry": { "type": "Point", "coordinates": [ 146.834, -38.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.21141, "decimalLat": -37.38147 }, "geometry": { "type": "Point", "coordinates": [ 144.211, -37.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.43632, "decimalLat": -38.48691 }, "geometry": { "type": "Point", "coordinates": [ 146.436, -38.487 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.8734, "decimalLat": -38.43447 }, "geometry": { "type": "Point", "coordinates": [ 146.873, -38.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.1831, "decimalLat": -36.79809 }, "geometry": { "type": "Point", "coordinates": [ 146.183, -36.798 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.36245, "decimalLat": -38.61755 }, "geometry": { "type": "Point", "coordinates": [ 146.362, -38.618 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.47756, "decimalLat": -37.71714 }, "geometry": { "type": "Point", "coordinates": [ 147.478, -37.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.4724, "decimalLat": -37.364 }, "geometry": { "type": "Point", "coordinates": [ 144.472, -37.364 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.10507, "decimalLat": -37.44251 }, "geometry": { "type": "Point", "coordinates": [ 144.105, -37.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.30847, "decimalLat": -37.295 }, "geometry": { "type": "Point", "coordinates": [ 144.308, -37.295 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.16983, "decimalLat": -38.25951 }, "geometry": { "type": "Point", "coordinates": [ 147.17, -38.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.24602, "decimalLat": -37.36987 }, "geometry": { "type": "Point", "coordinates": [ 144.246, -37.37 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.37466, "decimalLat": -37.94524 }, "geometry": { "type": "Point", "coordinates": [ 146.375, -37.945 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.40261, "decimalLat": -38.02849 }, "geometry": { "type": "Point", "coordinates": [ 146.403, -38.028 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.08662, "decimalLat": -37.48693 }, "geometry": { "type": "Point", "coordinates": [ 144.087, -37.487 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.28322, "decimalLat": -37.343 }, "geometry": { "type": "Point", "coordinates": [ 144.283, -37.343 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.83919, "decimalLat": -38.43892 }, "geometry": { "type": "Point", "coordinates": [ 146.839, -38.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.69413, "decimalLat": -38.19931 }, "geometry": { "type": "Point", "coordinates": [ 141.694, -38.199 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.75434, "decimalLat": -37.85886 }, "geometry": { "type": "Point", "coordinates": [ 145.754, -37.859 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.259, "decimalLat": -38.59371 }, "geometry": { "type": "Point", "coordinates": [ 146.259, -38.594 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.43692, "decimalLat": -38.56711 }, "geometry": { "type": "Point", "coordinates": [ 143.437, -38.567 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.47626, "decimalLat": -38.07479 }, "geometry": { "type": "Point", "coordinates": [ 147.476, -38.075 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.18836, "decimalLat": -37.46216 }, "geometry": { "type": "Point", "coordinates": [ 144.188, -37.462 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.2903, "decimalLat": -37.30606 }, "geometry": { "type": "Point", "coordinates": [ 148.29, -37.306 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.046, "decimalLat": -38.0331 }, "geometry": { "type": "Point", "coordinates": [ 141.046, -38.033 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.2581, "decimalLat": -38.2297 }, "geometry": { "type": "Point", "coordinates": [ 147.258, -38.23 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.43549, "decimalLat": -38.3635 }, "geometry": { "type": "Point", "coordinates": [ 145.435, -38.363 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.212, "decimalLat": -37.37739 }, "geometry": { "type": "Point", "coordinates": [ 144.212, -37.377 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.58888, "decimalLat": -37.26635 }, "geometry": { "type": "Point", "coordinates": [ 145.589, -37.266 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.3699, "decimalLat": -38.3693 }, "geometry": { "type": "Point", "coordinates": [ 145.37, -38.369 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.41847, "decimalLat": -38.32671 }, "geometry": { "type": "Point", "coordinates": [ 145.418, -38.327 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.90203, "decimalLat": -38.28437 }, "geometry": { "type": "Point", "coordinates": [ 146.902, -38.284 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.80239, "decimalLat": -38.4784 }, "geometry": { "type": "Point", "coordinates": [ 146.802, -38.478 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.11253, "decimalLat": -37.93103 }, "geometry": { "type": "Point", "coordinates": [ 146.113, -37.931 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.26341, "decimalLat": -37.46236 }, "geometry": { "type": "Point", "coordinates": [ 144.263, -37.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.36253, "decimalLat": -38.31832 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.94433, "decimalLat": -38.55382 }, "geometry": { "type": "Point", "coordinates": [ 143.944, -38.554 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 140.98819, "decimalLat": -37.99937 }, "geometry": { "type": "Point", "coordinates": [ 140.988, -37.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.27713, "decimalLat": -37.2685 }, "geometry": { "type": "Point", "coordinates": [ 148.277, -37.268 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.54438, "decimalLat": -38.07489 }, "geometry": { "type": "Point", "coordinates": [ 147.544, -38.075 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.2601, "decimalLat": -37.5129 }, "geometry": { "type": "Point", "coordinates": [ 144.26, -37.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.24853, "decimalLat": -38.04672 }, "geometry": { "type": "Point", "coordinates": [ 146.249, -38.047 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.52483, "decimalLat": -37.98465 }, "geometry": { "type": "Point", "coordinates": [ 141.525, -37.985 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.98763, "decimalLat": -37.88608 }, "geometry": { "type": "Point", "coordinates": [ 145.988, -37.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.27894, "decimalLat": -37.27684 }, "geometry": { "type": "Point", "coordinates": [ 148.279, -37.277 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.69237, "decimalLat": -37.83509 }, "geometry": { "type": "Point", "coordinates": [ 145.692, -37.835 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.48826, "decimalLat": -36.94494 }, "geometry": { "type": "Point", "coordinates": [ 146.488, -36.945 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.48777, "decimalLat": -37.6687 }, "geometry": { "type": "Point", "coordinates": [ 147.488, -37.669 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.80808, "decimalLat": -38.38077 }, "geometry": { "type": "Point", "coordinates": [ 146.808, -38.381 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.19919, "decimalLat": -37.41174 }, "geometry": { "type": "Point", "coordinates": [ 144.199, -37.412 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.29777, "decimalLat": -37.48662 }, "geometry": { "type": "Point", "coordinates": [ 144.298, -37.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.81767, "decimalLat": -38.3441 }, "geometry": { "type": "Point", "coordinates": [ 146.818, -38.344 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 3, "stateProvi": "New South Wales", "decimalLon": 153.497, "decimalLat": -28.685 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.685 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.59391, "decimalLat": -38.02692 }, "geometry": { "type": "Point", "coordinates": [ 141.594, -38.027 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.48245, "decimalLat": -38.33854 }, "geometry": { "type": "Point", "coordinates": [ 145.482, -38.339 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.31342, "decimalLat": -38.38078 }, "geometry": { "type": "Point", "coordinates": [ 145.313, -38.381 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.24602, "decimalLat": -37.36987 }, "geometry": { "type": "Point", "coordinates": [ 144.246, -37.37 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27092, "decimalLat": -38.1367 }, "geometry": { "type": "Point", "coordinates": [ 145.271, -38.137 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.58162, "decimalLat": -38.45087 }, "geometry": { "type": "Point", "coordinates": [ 146.582, -38.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.37122, "decimalLat": -38.37118 }, "geometry": { "type": "Point", "coordinates": [ 145.371, -38.371 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.37113, "decimalLat": -38.37121 }, "geometry": { "type": "Point", "coordinates": [ 145.371, -38.371 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.49357, "decimalLat": -38.07614 }, "geometry": { "type": "Point", "coordinates": [ 147.494, -38.076 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.61355, "decimalLat": -37.37203 }, "geometry": { "type": "Point", "coordinates": [ 144.614, -37.372 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.72176, "decimalLat": -38.3135 }, "geometry": { "type": "Point", "coordinates": [ 146.722, -38.313 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.47845, "decimalLat": -38.08896 }, "geometry": { "type": "Point", "coordinates": [ 147.478, -38.089 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.08732, "decimalLat": -37.46575 }, "geometry": { "type": "Point", "coordinates": [ 144.087, -37.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.33852, "decimalLat": -38.37522 }, "geometry": { "type": "Point", "coordinates": [ 145.339, -38.375 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.453, "decimalLat": -37.64819 }, "geometry": { "type": "Point", "coordinates": [ 147.453, -37.648 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.4006, "decimalLat": -37.4992 }, "geometry": { "type": "Point", "coordinates": [ 144.401, -37.499 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.0394, "decimalLat": -38.47905 }, "geometry": { "type": "Point", "coordinates": [ 147.039, -38.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.19053, "decimalLat": -38.27732 }, "geometry": { "type": "Point", "coordinates": [ 147.191, -38.277 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.70009, "decimalLat": -38.20272 }, "geometry": { "type": "Point", "coordinates": [ 141.7, -38.203 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.79504, "decimalLat": -38.44815 }, "geometry": { "type": "Point", "coordinates": [ 146.795, -38.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.37039, "decimalLat": -37.43754 }, "geometry": { "type": "Point", "coordinates": [ 144.37, -37.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 3, "stateProvi": "Queensland", "decimalLon": 153.33447, "decimalLat": -27.8927 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16403, "decimalLat": -37.36519 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -37.365 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.09216, "decimalLat": -37.43933 }, "geometry": { "type": "Point", "coordinates": [ 144.092, -37.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.10323, "decimalLat": -37.50069 }, "geometry": { "type": "Point", "coordinates": [ 144.103, -37.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.453, "decimalLat": -37.64819 }, "geometry": { "type": "Point", "coordinates": [ 147.453, -37.648 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.74612, "decimalLat": -38.45241 }, "geometry": { "type": "Point", "coordinates": [ 146.746, -38.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 3, "stateProvi": "Queensland", "decimalLon": 153.44433, "decimalLat": -28.14514 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.52018, "decimalLat": -38.80639 }, "geometry": { "type": "Point", "coordinates": [ 143.52, -38.806 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.58869, "decimalLat": -37.2656 }, "geometry": { "type": "Point", "coordinates": [ 145.589, -37.266 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.89162, "decimalLat": -38.46519 }, "geometry": { "type": "Point", "coordinates": [ 146.892, -38.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.86527, "decimalLat": -38.38489 }, "geometry": { "type": "Point", "coordinates": [ 146.865, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.20766, "decimalLat": -38.21041 }, "geometry": { "type": "Point", "coordinates": [ 146.208, -38.21 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.47705, "decimalLat": -36.93344 }, "geometry": { "type": "Point", "coordinates": [ 146.477, -36.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.40487, "decimalLat": -37.61261 }, "geometry": { "type": "Point", "coordinates": [ 144.405, -37.613 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.44267, "decimalLat": -38.33809 }, "geometry": { "type": "Point", "coordinates": [ 146.443, -38.338 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.28101, "decimalLat": -37.40037 }, "geometry": { "type": "Point", "coordinates": [ 144.281, -37.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.13229, "decimalLat": -38.59369 }, "geometry": { "type": "Point", "coordinates": [ 146.132, -38.594 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.47278, "decimalLat": -38.68411 }, "geometry": { "type": "Point", "coordinates": [ 146.473, -38.684 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.6197, "decimalLat": -38.4695 }, "geometry": { "type": "Point", "coordinates": [ 143.62, -38.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.37109, "decimalLat": -38.37116 }, "geometry": { "type": "Point", "coordinates": [ 145.371, -38.371 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.11707, "decimalLat": -38.04098 }, "geometry": { "type": "Point", "coordinates": [ 141.117, -38.041 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.04246, "decimalLat": -38.31205 }, "geometry": { "type": "Point", "coordinates": [ 146.042, -38.312 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.26787, "decimalLat": -38.2558 }, "geometry": { "type": "Point", "coordinates": [ 146.268, -38.256 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.05186, "decimalLat": -38.37919 }, "geometry": { "type": "Point", "coordinates": [ 146.052, -38.379 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.36946, "decimalLat": -38.41969 }, "geometry": { "type": "Point", "coordinates": [ 146.369, -38.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.3695, "decimalLat": -38.36938 }, "geometry": { "type": "Point", "coordinates": [ 145.37, -38.369 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.27868, "decimalLat": -37.28735 }, "geometry": { "type": "Point", "coordinates": [ 144.279, -37.287 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.29425, "decimalLat": -38.31104 }, "geometry": { "type": "Point", "coordinates": [ 145.294, -38.311 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.24702, "decimalLat": -37.44593 }, "geometry": { "type": "Point", "coordinates": [ 144.247, -37.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.31947, "decimalLat": -38.29376 }, "geometry": { "type": "Point", "coordinates": [ 145.319, -38.294 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.74229, "decimalLat": -38.50142 }, "geometry": { "type": "Point", "coordinates": [ 146.742, -38.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.17928, "decimalLat": -37.42164 }, "geometry": { "type": "Point", "coordinates": [ 144.179, -37.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.48262, "decimalLat": -38.68304 }, "geometry": { "type": "Point", "coordinates": [ 146.483, -38.683 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.94879, "decimalLat": -38.4672 }, "geometry": { "type": "Point", "coordinates": [ 146.949, -38.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.67996, "decimalLat": -37.81151 }, "geometry": { "type": "Point", "coordinates": [ 145.68, -37.812 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.25558, "decimalLat": -37.08084 }, "geometry": { "type": "Point", "coordinates": [ 143.256, -37.081 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.63781, "decimalLat": -38.02177 }, "geometry": { "type": "Point", "coordinates": [ 141.638, -38.022 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.69282, "decimalLat": -37.83522 }, "geometry": { "type": "Point", "coordinates": [ 145.693, -37.835 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 3, "stateProvi": "Queensland", "decimalLon": 153.45014, "decimalLat": -28.1009 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.45613, "decimalLat": -37.65504 }, "geometry": { "type": "Point", "coordinates": [ 147.456, -37.655 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.10485, "decimalLat": -35.87259 }, "geometry": { "type": "Point", "coordinates": [ 145.105, -35.873 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.52845, "decimalLat": -38.59676 }, "geometry": { "type": "Point", "coordinates": [ 145.528, -38.597 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.0125, "decimalLat": -38.32955 }, "geometry": { "type": "Point", "coordinates": [ 147.013, -38.33 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.51301, "decimalLat": -37.93183 }, "geometry": { "type": "Point", "coordinates": [ 141.513, -37.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.83058, "decimalLat": -36.92737 }, "geometry": { "type": "Point", "coordinates": [ 145.831, -36.927 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.78049, "decimalLat": -38.397 }, "geometry": { "type": "Point", "coordinates": [ 146.78, -38.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.70337, "decimalLat": -37.5743 }, "geometry": { "type": "Point", "coordinates": [ 145.703, -37.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.58763, "decimalLat": -37.26716 }, "geometry": { "type": "Point", "coordinates": [ 145.588, -37.267 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.2707, "decimalLat": -37.34417 }, "geometry": { "type": "Point", "coordinates": [ 144.271, -37.344 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.7493, "decimalLat": -37.5618 }, "geometry": { "type": "Point", "coordinates": [ 149.749, -37.562 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 140.99564, "decimalLat": -38.02388 }, "geometry": { "type": "Point", "coordinates": [ 140.996, -38.024 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.43545, "decimalLat": -38.3636 }, "geometry": { "type": "Point", "coordinates": [ 145.435, -38.364 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.95715, "decimalLat": -37.7101 }, "geometry": { "type": "Point", "coordinates": [ 147.957, -37.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.26, "decimalLat": -36.24222 }, "geometry": { "type": "Point", "coordinates": [ 146.26, -36.242 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.72057, "decimalLat": -37.24717 }, "geometry": { "type": "Point", "coordinates": [ 143.721, -37.247 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.79123, "decimalLat": -38.32815 }, "geometry": { "type": "Point", "coordinates": [ 146.791, -38.328 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.34445, "decimalLat": -38.61929 }, "geometry": { "type": "Point", "coordinates": [ 146.344, -38.619 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.31403, "decimalLat": -37.29361 }, "geometry": { "type": "Point", "coordinates": [ 148.314, -37.294 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.17065, "decimalLat": -38.27476 }, "geometry": { "type": "Point", "coordinates": [ 147.171, -38.275 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.29991, "decimalLat": -38.23237 }, "geometry": { "type": "Point", "coordinates": [ 147.3, -38.232 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.56683, "decimalLat": -38.64616 }, "geometry": { "type": "Point", "coordinates": [ 145.567, -38.646 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.35205, "decimalLat": -37.96683 }, "geometry": { "type": "Point", "coordinates": [ 146.352, -37.967 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.83986, "decimalLat": -38.67093 }, "geometry": { "type": "Point", "coordinates": [ 143.84, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.43599, "decimalLat": -38.31353 }, "geometry": { "type": "Point", "coordinates": [ 145.436, -38.314 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.28862, "decimalLat": -38.22037 }, "geometry": { "type": "Point", "coordinates": [ 146.289, -38.22 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.17252, "decimalLat": -37.91373 }, "geometry": { "type": "Point", "coordinates": [ 146.173, -37.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.3029, "decimalLat": -37.27999 }, "geometry": { "type": "Point", "coordinates": [ 148.303, -37.28 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.1638, "decimalLat": -38.36779 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.368 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.70337, "decimalLat": -37.5743 }, "geometry": { "type": "Point", "coordinates": [ 145.703, -37.574 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.20323, "decimalLat": -37.17126 }, "geometry": { "type": "Point", "coordinates": [ 145.203, -37.171 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.37111, "decimalLat": -38.37125 }, "geometry": { "type": "Point", "coordinates": [ 145.371, -38.371 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.55233, "decimalLat": -37.96252 }, "geometry": { "type": "Point", "coordinates": [ 141.552, -37.963 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.84539, "decimalLat": -38.39351 }, "geometry": { "type": "Point", "coordinates": [ 146.845, -38.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.98763, "decimalLat": -37.88608 }, "geometry": { "type": "Point", "coordinates": [ 145.988, -37.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.75929, "decimalLat": -38.48415 }, "geometry": { "type": "Point", "coordinates": [ 146.759, -38.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.30648, "decimalLat": -37.42909 }, "geometry": { "type": "Point", "coordinates": [ 144.306, -37.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.23231, "decimalLat": -38.57223 }, "geometry": { "type": "Point", "coordinates": [ 146.232, -38.572 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.98947, "decimalLat": -38.19976 }, "geometry": { "type": "Point", "coordinates": [ 146.989, -38.2 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.27339, "decimalLat": -37.31806 }, "geometry": { "type": "Point", "coordinates": [ 148.273, -37.318 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.41095, "decimalLat": -38.49166 }, "geometry": { "type": "Point", "coordinates": [ 143.411, -38.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.26639, "decimalLat": -37.31139 }, "geometry": { "type": "Point", "coordinates": [ 143.266, -37.311 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.27838, "decimalLat": -37.33008 }, "geometry": { "type": "Point", "coordinates": [ 143.278, -37.33 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 3, "stateProvi": "Queensland", "decimalLon": 153.3717, "decimalLat": -28.11533 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.79088, "decimalLat": -38.39458 }, "geometry": { "type": "Point", "coordinates": [ 146.791, -38.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.89382, "decimalLat": -38.45906 }, "geometry": { "type": "Point", "coordinates": [ 146.894, -38.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.55695, "decimalLat": -37.93425 }, "geometry": { "type": "Point", "coordinates": [ 141.557, -37.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.37125, "decimalLat": -38.37135 }, "geometry": { "type": "Point", "coordinates": [ 145.371, -38.371 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.85087, "decimalLat": -38.41497 }, "geometry": { "type": "Point", "coordinates": [ 146.851, -38.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.22834, "decimalLat": -38.33978 }, "geometry": { "type": "Point", "coordinates": [ 146.228, -38.34 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 3, "stateProvi": "Queensland", "decimalLon": 153.35717, "decimalLat": -27.94998 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.4234, "decimalLat": -37.4105 }, "geometry": { "type": "Point", "coordinates": [ 144.423, -37.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.30266, "decimalLat": -38.34471 }, "geometry": { "type": "Point", "coordinates": [ 145.303, -38.345 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.5599, "decimalLat": -38.8307 }, "geometry": { "type": "Point", "coordinates": [ 143.56, -38.831 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.64015, "decimalLat": -37.33524 }, "geometry": { "type": "Point", "coordinates": [ 145.64, -37.335 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.30199, "decimalLat": -38.23437 }, "geometry": { "type": "Point", "coordinates": [ 146.302, -38.234 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.31631, "decimalLat": -38.30506 }, "geometry": { "type": "Point", "coordinates": [ 145.316, -38.305 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.2252, "decimalLat": -37.37434 }, "geometry": { "type": "Point", "coordinates": [ 144.225, -37.374 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.07224, "decimalLat": -37.45297 }, "geometry": { "type": "Point", "coordinates": [ 144.072, -37.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.23203, "decimalLat": -37.36501 }, "geometry": { "type": "Point", "coordinates": [ 144.232, -37.365 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.24861, "decimalLat": -37.06065 }, "geometry": { "type": "Point", "coordinates": [ 143.249, -37.061 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.28582, "decimalLat": -37.44201 }, "geometry": { "type": "Point", "coordinates": [ 144.286, -37.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.43551, "decimalLat": -38.36354 }, "geometry": { "type": "Point", "coordinates": [ 145.436, -38.364 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.36719, "decimalLat": -36.83966 }, "geometry": { "type": "Point", "coordinates": [ 145.367, -36.84 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.32919, "decimalLat": -38.51334 }, "geometry": { "type": "Point", "coordinates": [ 146.329, -38.513 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.29328, "decimalLat": -37.32759 }, "geometry": { "type": "Point", "coordinates": [ 144.293, -37.328 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.71117, "decimalLat": -37.8679 }, "geometry": { "type": "Point", "coordinates": [ 145.711, -37.868 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.5084, "decimalLat": -38.67751 }, "geometry": { "type": "Point", "coordinates": [ 146.508, -38.678 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.07526, "decimalLat": -37.46733 }, "geometry": { "type": "Point", "coordinates": [ 144.075, -37.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.50522, "decimalLat": -37.9823 }, "geometry": { "type": "Point", "coordinates": [ 141.505, -37.982 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.18151, "decimalLat": -36.80919 }, "geometry": { "type": "Point", "coordinates": [ 146.182, -36.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.18617, "decimalLat": -37.19261 }, "geometry": { "type": "Point", "coordinates": [ 148.186, -37.193 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.58712, "decimalLat": -37.26648 }, "geometry": { "type": "Point", "coordinates": [ 145.587, -37.266 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.85612, "decimalLat": -38.41602 }, "geometry": { "type": "Point", "coordinates": [ 146.856, -38.416 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.21195, "decimalLat": -37.37895 }, "geometry": { "type": "Point", "coordinates": [ 144.212, -37.379 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.69048, "decimalLat": -37.57732 }, "geometry": { "type": "Point", "coordinates": [ 145.69, -37.577 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 3, "stateProvi": "Queensland", "decimalLon": 153.44458, "decimalLat": -28.14517 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.48777, "decimalLat": -38.07252 }, "geometry": { "type": "Point", "coordinates": [ 147.488, -38.073 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.13611, "decimalLat": -38.17613 }, "geometry": { "type": "Point", "coordinates": [ 145.136, -38.176 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.93016, "decimalLat": -37.45369 }, "geometry": { "type": "Point", "coordinates": [ 143.93, -37.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.46128, "decimalLat": -38.08994 }, "geometry": { "type": "Point", "coordinates": [ 146.461, -38.09 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.2171, "decimalLat": -38.27292 }, "geometry": { "type": "Point", "coordinates": [ 146.217, -38.273 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6177, "decimalLat": -38.36718 }, "geometry": { "type": "Point", "coordinates": [ 141.618, -38.367 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.48336, "decimalLat": -38.33796 }, "geometry": { "type": "Point", "coordinates": [ 145.483, -38.338 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.29333, "decimalLat": -38.33553 }, "geometry": { "type": "Point", "coordinates": [ 145.293, -38.336 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.80399, "decimalLat": -37.3618 }, "geometry": { "type": "Point", "coordinates": [ 145.804, -37.362 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.32462, "decimalLat": -37.06807 }, "geometry": { "type": "Point", "coordinates": [ 148.325, -37.068 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.42613, "decimalLat": -38.55123 }, "geometry": { "type": "Point", "coordinates": [ 143.426, -38.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.27083, "decimalLat": -38.23759 }, "geometry": { "type": "Point", "coordinates": [ 147.271, -38.238 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.46893, "decimalLat": -38.68386 }, "geometry": { "type": "Point", "coordinates": [ 146.469, -38.684 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.3735, "decimalLat": -37.94445 }, "geometry": { "type": "Point", "coordinates": [ 146.374, -37.944 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.32469, "decimalLat": -38.48367 }, "geometry": { "type": "Point", "coordinates": [ 146.325, -38.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.41214, "decimalLat": -38.49197 }, "geometry": { "type": "Point", "coordinates": [ 143.412, -38.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.62743, "decimalLat": -38.46123 }, "geometry": { "type": "Point", "coordinates": [ 146.627, -38.461 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.26562, "decimalLat": -38.03486 }, "geometry": { "type": "Point", "coordinates": [ 141.266, -38.035 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.18515, "decimalLat": -37.3927 }, "geometry": { "type": "Point", "coordinates": [ 144.185, -37.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.27795, "decimalLat": -38.52203 }, "geometry": { "type": "Point", "coordinates": [ 146.278, -38.522 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.36989, "decimalLat": -38.36948 }, "geometry": { "type": "Point", "coordinates": [ 145.37, -38.369 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.26058, "decimalLat": -38.28099 }, "geometry": { "type": "Point", "coordinates": [ 146.261, -38.281 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.22764, "decimalLat": -37.36495 }, "geometry": { "type": "Point", "coordinates": [ 144.228, -37.365 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.84668, "decimalLat": -38.46531 }, "geometry": { "type": "Point", "coordinates": [ 146.847, -38.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.22764, "decimalLat": -37.36495 }, "geometry": { "type": "Point", "coordinates": [ 144.228, -37.365 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.25155, "decimalLat": -38.04784 }, "geometry": { "type": "Point", "coordinates": [ 141.252, -38.048 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.6981, "decimalLat": -37.82821 }, "geometry": { "type": "Point", "coordinates": [ 145.698, -37.828 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.64755, "decimalLat": -37.02649 }, "geometry": { "type": "Point", "coordinates": [ 145.648, -37.026 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.28496, "decimalLat": -38.34772 }, "geometry": { "type": "Point", "coordinates": [ 145.285, -38.348 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.83595, "decimalLat": -37.72521 }, "geometry": { "type": "Point", "coordinates": [ 143.836, -37.725 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.28803, "decimalLat": -38.5315 }, "geometry": { "type": "Point", "coordinates": [ 146.288, -38.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.45833, "decimalLat": -38.13507 }, "geometry": { "type": "Point", "coordinates": [ 141.458, -38.135 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.96636, "decimalLat": -38.54658 }, "geometry": { "type": "Point", "coordinates": [ 143.966, -38.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.35388, "decimalLat": -36.84388 }, "geometry": { "type": "Point", "coordinates": [ 145.354, -36.844 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.83093, "decimalLat": -37.78796 }, "geometry": { "type": "Point", "coordinates": [ 145.831, -37.788 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.44225, "decimalLat": -37.87548 }, "geometry": { "type": "Point", "coordinates": [ 141.442, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.68794, "decimalLat": -37.57705 }, "geometry": { "type": "Point", "coordinates": [ 145.688, -37.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.53067, "decimalLat": -37.96648 }, "geometry": { "type": "Point", "coordinates": [ 141.531, -37.966 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.28536, "decimalLat": -37.34419 }, "geometry": { "type": "Point", "coordinates": [ 144.285, -37.344 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.23898, "decimalLat": -37.36747 }, "geometry": { "type": "Point", "coordinates": [ 144.239, -37.367 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.40158, "decimalLat": -38.6265 }, "geometry": { "type": "Point", "coordinates": [ 146.402, -38.626 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.59794, "decimalLat": -37.95795 }, "geometry": { "type": "Point", "coordinates": [ 145.598, -37.958 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.29031, "decimalLat": -37.30262 }, "geometry": { "type": "Point", "coordinates": [ 148.29, -37.303 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.17528, "decimalLat": -37.43032 }, "geometry": { "type": "Point", "coordinates": [ 144.175, -37.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.23444, "decimalLat": -38.31546 }, "geometry": { "type": "Point", "coordinates": [ 146.234, -38.315 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 3, "stateProvi": "Queensland", "decimalLon": 153.27776, "decimalLat": -27.978 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.978 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.22681, "decimalLat": -37.37042 }, "geometry": { "type": "Point", "coordinates": [ 144.227, -37.37 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.25205, "decimalLat": -35.74597 }, "geometry": { "type": "Point", "coordinates": [ 144.252, -35.746 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.25426, "decimalLat": -38.30507 }, "geometry": { "type": "Point", "coordinates": [ 143.254, -38.305 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.73755, "decimalLat": -38.20905 }, "geometry": { "type": "Point", "coordinates": [ 141.738, -38.209 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.45613, "decimalLat": -37.65504 }, "geometry": { "type": "Point", "coordinates": [ 147.456, -37.655 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.11381, "decimalLat": -38.04566 }, "geometry": { "type": "Point", "coordinates": [ 141.114, -38.046 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.49084, "decimalLat": -38.09544 }, "geometry": { "type": "Point", "coordinates": [ 147.491, -38.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.43549, "decimalLat": -38.3634 }, "geometry": { "type": "Point", "coordinates": [ 145.435, -38.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.40994, "decimalLat": -38.36183 }, "geometry": { "type": "Point", "coordinates": [ 145.41, -38.362 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.45636, "decimalLat": -37.95098 }, "geometry": { "type": "Point", "coordinates": [ 141.456, -37.951 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.54511, "decimalLat": -38.64966 }, "geometry": { "type": "Point", "coordinates": [ 146.545, -38.65 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.69553, "decimalLat": -37.89669 }, "geometry": { "type": "Point", "coordinates": [ 145.696, -37.897 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.58888, "decimalLat": -37.26635 }, "geometry": { "type": "Point", "coordinates": [ 145.589, -37.266 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.98441, "decimalLat": -37.8833 }, "geometry": { "type": "Point", "coordinates": [ 145.984, -37.883 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.29235, "decimalLat": -37.08782 }, "geometry": { "type": "Point", "coordinates": [ 143.292, -37.088 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.58754, "decimalLat": -37.26762 }, "geometry": { "type": "Point", "coordinates": [ 145.588, -37.268 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.17408, "decimalLat": -38.36072 }, "geometry": { "type": "Point", "coordinates": [ 146.174, -38.361 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.28231, "decimalLat": -38.29999 }, "geometry": { "type": "Point", "coordinates": [ 146.282, -38.3 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.46824, "decimalLat": -38.34318 }, "geometry": { "type": "Point", "coordinates": [ 146.468, -38.343 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.09971, "decimalLat": -37.40039 }, "geometry": { "type": "Point", "coordinates": [ 144.1, -37.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.25305, "decimalLat": -37.34915 }, "geometry": { "type": "Point", "coordinates": [ 144.253, -37.349 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.36895, "decimalLat": -38.32961 }, "geometry": { "type": "Point", "coordinates": [ 145.369, -38.33 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.77975, "decimalLat": -38.3257 }, "geometry": { "type": "Point", "coordinates": [ 146.78, -38.326 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.39259, "decimalLat": -37.81755 }, "geometry": { "type": "Point", "coordinates": [ 145.393, -37.818 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.38333, "decimalLat": -37.48291 }, "geometry": { "type": "Point", "coordinates": [ 145.383, -37.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27579, "decimalLat": -38.36573 }, "geometry": { "type": "Point", "coordinates": [ 145.276, -38.366 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.7373, "decimalLat": -37.5501 }, "geometry": { "type": "Point", "coordinates": [ 149.737, -37.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.996658, "decimalLat": -27.6617 }, "geometry": { "type": "Point", "coordinates": [ 151.997, -27.662 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34149, "decimalLat": -27.83211 }, "geometry": { "type": "Point", "coordinates": [ 152.341, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.346775, "decimalLat": -27.82761 }, "geometry": { "type": "Point", "coordinates": [ 152.347, -27.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34396, "decimalLat": -27.83218 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.91544, "decimalLat": -27.38155 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -27.382 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.346094, "decimalLat": -27.834955 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.835 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08715, "decimalLat": -27.695383 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.695 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34387, "decimalLat": -27.832323 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.652, "decimalLat": -28.048 }, "geometry": { "type": "Point", "coordinates": [ 151.652, -28.048 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344792, "decimalLat": -27.832568 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9614, "decimalLat": -27.27645 }, "geometry": { "type": "Point", "coordinates": [ 152.961, -27.276 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.906334, "decimalLat": -25.368472 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -25.368 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.343517, "decimalLat": -27.833216 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.345279, "decimalLat": -27.828226 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.067754, "decimalLat": -27.691474 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -27.691 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.342691, "decimalLat": -27.835358 }, "geometry": { "type": "Point", "coordinates": [ 152.343, -27.835 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34258, "decimalLat": -27.83294 }, "geometry": { "type": "Point", "coordinates": [ 152.343, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08237, "decimalLat": -27.70093 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.345763, "decimalLat": -27.82643 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0416, "decimalLat": -26.3822 }, "geometry": { "type": "Point", "coordinates": [ 153.042, -26.382 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34555, "decimalLat": -27.83329 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.986113, "decimalLat": -27.636392 }, "geometry": { "type": "Point", "coordinates": [ 151.986, -27.636 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.40304, "decimalLat": -27.547967 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.3446, "decimalLat": -27.83185 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.09119, "decimalLat": -27.67891 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -27.679 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.247423, "decimalLat": -27.495892 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.19263, "decimalLat": -27.262091 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -27.262 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8084, "decimalLat": -26.4256 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -26.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8054, "decimalLat": -26.4256 }, "geometry": { "type": "Point", "coordinates": [ 152.805, -26.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9856, "decimalLat": -26.432 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -26.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34073, "decimalLat": -27.83319 }, "geometry": { "type": "Point", "coordinates": [ 152.341, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8641, "decimalLat": -26.3777 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -26.378 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.6734, "decimalLat": -26.320189 }, "geometry": { "type": "Point", "coordinates": [ 152.673, -26.32 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05286, "decimalLat": -27.54013 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.288056, "decimalLat": -27.516389 }, "geometry": { "type": "Point", "coordinates": [ 152.288, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0295, "decimalLat": -26.3785 }, "geometry": { "type": "Point", "coordinates": [ 153.03, -26.378 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34291, "decimalLat": -27.8336 }, "geometry": { "type": "Point", "coordinates": [ 152.343, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8823, "decimalLat": -26.4302 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -26.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34761, "decimalLat": -27.82537 }, "geometry": { "type": "Point", "coordinates": [ 152.348, -27.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.09126, "decimalLat": -27.67781 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -27.678 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9803, "decimalLat": -26.314 }, "geometry": { "type": "Point", "coordinates": [ 152.98, -26.314 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.3441, "decimalLat": -27.83231 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0127, "decimalLat": -26.3497 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -26.35 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34599, "decimalLat": -27.82655 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.64671, "decimalLat": -27.61103 }, "geometry": { "type": "Point", "coordinates": [ 152.647, -27.611 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34473, "decimalLat": -27.8294 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.386078, "decimalLat": -27.784097 }, "geometry": { "type": "Point", "coordinates": [ 152.386, -27.784 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249513, "decimalLat": -27.496634 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.347435, "decimalLat": -27.825054 }, "geometry": { "type": "Point", "coordinates": [ 152.347, -27.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344089, "decimalLat": -27.831982 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344607, "decimalLat": -27.830468 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.83 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34756, "decimalLat": -27.82642 }, "geometry": { "type": "Point", "coordinates": [ 152.348, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34422, "decimalLat": -27.83225 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344573, "decimalLat": -27.829882 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.83 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34666, "decimalLat": -27.82574 }, "geometry": { "type": "Point", "coordinates": [ 152.347, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.019726, "decimalLat": -26.37824 }, "geometry": { "type": "Point", "coordinates": [ 153.02, -26.378 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.343842, "decimalLat": -27.833397 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.250014, "decimalLat": -27.495256 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9842, "decimalLat": -26.3983 }, "geometry": { "type": "Point", "coordinates": [ 152.984, -26.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34465, "decimalLat": -27.83026 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.83 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34401, "decimalLat": -27.83196 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.3476, "decimalLat": -27.82438 }, "geometry": { "type": "Point", "coordinates": [ 152.348, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.139254, "decimalLat": -27.572391 }, "geometry": { "type": "Point", "coordinates": [ 152.139, -27.572 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.341037, "decimalLat": -27.832925 }, "geometry": { "type": "Point", "coordinates": [ 152.341, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9297, "decimalLat": -26.3666 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -26.367 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.341864, "decimalLat": -27.830204 }, "geometry": { "type": "Point", "coordinates": [ 152.342, -27.83 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9148, "decimalLat": -26.4474 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -26.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8152, "decimalLat": -26.3474 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -26.347 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8151, "decimalLat": -26.3612 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -26.361 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.243087, "decimalLat": -27.488974 }, "geometry": { "type": "Point", "coordinates": [ 152.243, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.082855, "decimalLat": -27.546171 }, "geometry": { "type": "Point", "coordinates": [ 152.083, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0335, "decimalLat": -26.33 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -26.33 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9055, "decimalLat": -26.274 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -26.274 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34476, "decimalLat": -27.829369 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9875, "decimalLat": -26.3482 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -26.348 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.992367, "decimalLat": -27.65965 }, "geometry": { "type": "Point", "coordinates": [ 151.992, -27.66 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34442, "decimalLat": -27.83216 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.33936, "decimalLat": -27.83242 }, "geometry": { "type": "Point", "coordinates": [ 152.339, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34749, "decimalLat": -27.82582 }, "geometry": { "type": "Point", "coordinates": [ 152.347, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.09187, "decimalLat": -27.6776 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -27.678 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34605, "decimalLat": -27.82658 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.827 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.04677, "decimalLat": -26.46924 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -26.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.944802, "decimalLat": -26.479631 }, "geometry": { "type": "Point", "coordinates": [ 152.945, -26.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34586, "decimalLat": -27.83535 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.835 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.183727, "decimalLat": -27.533879 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.44037, "decimalLat": -27.41488 }, "geometry": { "type": "Point", "coordinates": [ 152.44, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.053136, "decimalLat": -27.722035 }, "geometry": { "type": "Point", "coordinates": [ 152.053, -27.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.260841, "decimalLat": -27.580246 }, "geometry": { "type": "Point", "coordinates": [ 152.261, -27.58 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.068253, "decimalLat": -27.690957 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -27.691 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.339441, "decimalLat": -27.832238 }, "geometry": { "type": "Point", "coordinates": [ 152.339, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.343817, "decimalLat": -27.832166 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.247495, "decimalLat": -27.496009 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0098, "decimalLat": -26.4441 }, "geometry": { "type": "Point", "coordinates": [ 153.01, -26.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.9891, "decimalLat": -27.6613 }, "geometry": { "type": "Point", "coordinates": [ 151.989, -27.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058, "decimalLat": -27.547 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34738, "decimalLat": -27.824575 }, "geometry": { "type": "Point", "coordinates": [ 152.347, -27.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.346207, "decimalLat": -27.826645 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.827 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.343993, "decimalLat": -27.831947 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9265, "decimalLat": -27.2841 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.714081, "decimalLat": -26.219686 }, "geometry": { "type": "Point", "coordinates": [ 152.714, -26.22 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.256567, "decimalLat": -26.072733 }, "geometry": { "type": "Point", "coordinates": [ 152.257, -26.073 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.346031, "decimalLat": -27.826623 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.827 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344586, "decimalLat": -27.830645 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.831 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.089933, "decimalLat": -27.703844 }, "geometry": { "type": "Point", "coordinates": [ 152.09, -27.704 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.139444, "decimalLat": -27.571699 }, "geometry": { "type": "Point", "coordinates": [ 152.139, -27.572 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 0, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0055, "decimalLat": -26.4344 }, "geometry": { "type": "Point", "coordinates": [ 153.006, -26.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.264254, "decimalLat": -27.572691 }, "geometry": { "type": "Point", "coordinates": [ 152.264, -27.573 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0052, "decimalLat": -26.4347 }, "geometry": { "type": "Point", "coordinates": [ 153.005, -26.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8244, "decimalLat": -25.3435 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -25.343 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34453, "decimalLat": -27.8308 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.831 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34695, "decimalLat": -27.82682 }, "geometry": { "type": "Point", "coordinates": [ 152.347, -27.827 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344905, "decimalLat": -27.829095 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34593, "decimalLat": -27.8266 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0028, "decimalLat": -26.4216 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -26.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34625, "decimalLat": -27.83441 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.33946, "decimalLat": -27.83342 }, "geometry": { "type": "Point", "coordinates": [ 152.339, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.40141, "decimalLat": -27.456986 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -27.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.09142, "decimalLat": -27.67764 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -27.678 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9838, "decimalLat": -26.4035 }, "geometry": { "type": "Point", "coordinates": [ 152.984, -26.403 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.138528, "decimalLat": -27.572007 }, "geometry": { "type": "Point", "coordinates": [ 152.139, -27.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.99214, "decimalLat": -27.659452 }, "geometry": { "type": "Point", "coordinates": [ 151.992, -27.659 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05286, "decimalLat": -27.54013 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.782317, "decimalLat": -26.040383 }, "geometry": { "type": "Point", "coordinates": [ 152.782, -26.04 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.090698, "decimalLat": -27.704376 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -27.704 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.247305, "decimalLat": -27.495829 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.988682, "decimalLat": -27.595212 }, "geometry": { "type": "Point", "coordinates": [ 151.989, -27.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8645, "decimalLat": -26.3772 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -26.377 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34451, "decimalLat": -27.83191 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34427, "decimalLat": -27.83235 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08675, "decimalLat": -27.695017 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.695 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34407, "decimalLat": -27.83245 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8739, "decimalLat": -26.3875 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -26.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34482, "decimalLat": -27.82932 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.043198, "decimalLat": -27.648624 }, "geometry": { "type": "Point", "coordinates": [ 152.043, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.345834, "decimalLat": -27.827648 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08235, "decimalLat": -27.70095 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.339462, "decimalLat": -27.833432 }, "geometry": { "type": "Point", "coordinates": [ 152.339, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.345211, "decimalLat": -27.833903 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.345412, "decimalLat": -27.833231 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34596, "decimalLat": -27.82656 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.827 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344716, "decimalLat": -27.829213 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.339143, "decimalLat": -27.833104 }, "geometry": { "type": "Point", "coordinates": [ 152.339, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34637, "decimalLat": -27.82652 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.827 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34578, "decimalLat": -27.82644 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34448, "decimalLat": -27.83147 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.831 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105672, "decimalLat": -26.379671 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -26.38 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.055, "decimalLat": -27.643611 }, "geometry": { "type": "Point", "coordinates": [ 152.055, -27.644 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34409, "decimalLat": -27.83197 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9407, "decimalLat": -26.3695 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -26.369 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9406, "decimalLat": -26.3696 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -26.37 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.59024, "decimalLat": -27.4694 }, "geometry": { "type": "Point", "coordinates": [ 152.59, -27.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.04334, "decimalLat": -27.649093 }, "geometry": { "type": "Point", "coordinates": [ 152.043, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34491, "decimalLat": -27.82929 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344645, "decimalLat": -27.829193 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.4751, "decimalLat": -27.5525 }, "geometry": { "type": "Point", "coordinates": [ 152.475, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34464, "decimalLat": -27.82941 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.995221, "decimalLat": -27.658951 }, "geometry": { "type": "Point", "coordinates": [ 151.995, -27.659 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.345907, "decimalLat": -27.826346 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05929, "decimalLat": -26.47856 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -26.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34492, "decimalLat": -27.83179 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.345847, "decimalLat": -27.826345 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.086983, "decimalLat": -27.695367 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.695 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34616, "decimalLat": -27.82639 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34544, "decimalLat": -27.83109 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.082205, "decimalLat": -27.700785 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8044, "decimalLat": -26.4258 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -26.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.086861, "decimalLat": -27.718983 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9449, "decimalLat": -26.3002 }, "geometry": { "type": "Point", "coordinates": [ 152.945, -26.3 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.383653, "decimalLat": -27.781212 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -27.781 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.0869, "decimalLat": -27.69505 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.695 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.368532, "decimalLat": -27.451318 }, "geometry": { "type": "Point", "coordinates": [ 152.369, -27.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.087415, "decimalLat": -27.530585 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.345943, "decimalLat": -27.826654 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.827 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8074, "decimalLat": -26.4264 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -26.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.400742, "decimalLat": -27.474217 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -27.474 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9043, "decimalLat": -27.12888 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -27.129 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.9564, "decimalLat": -27.6495 }, "geometry": { "type": "Point", "coordinates": [ 151.956, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.576014, "decimalLat": -27.823225 }, "geometry": { "type": "Point", "coordinates": [ 151.576, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34473, "decimalLat": -27.82916 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344572, "decimalLat": -27.82943 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.677894, "decimalLat": -26.35855 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -26.359 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34464, "decimalLat": -27.82937 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.440975, "decimalLat": -26.204831 }, "geometry": { "type": "Point", "coordinates": [ 152.441, -26.205 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083, "decimalLat": -27.7008 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34732, "decimalLat": -27.82593 }, "geometry": { "type": "Point", "coordinates": [ 152.347, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.420284, "decimalLat": -27.24317 }, "geometry": { "type": "Point", "coordinates": [ 152.42, -27.243 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.246571, "decimalLat": -27.494927 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.95805, "decimalLat": -27.26691 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -27.267 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.04343, "decimalLat": -27.64864 }, "geometry": { "type": "Point", "coordinates": [ 152.043, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9457, "decimalLat": -26.369 }, "geometry": { "type": "Point", "coordinates": [ 152.946, -26.369 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.538969, "decimalLat": -27.469653 }, "geometry": { "type": "Point", "coordinates": [ 152.539, -27.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.032883, "decimalLat": -25.219035 }, "geometry": { "type": "Point", "coordinates": [ 149.033, -25.219 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.345813, "decimalLat": -27.826472 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.426806, "decimalLat": -28.225833 }, "geometry": { "type": "Point", "coordinates": [ 152.427, -28.226 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34445, "decimalLat": -27.83173 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344678, "decimalLat": -27.832327 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.053524, "decimalLat": -27.722206 }, "geometry": { "type": "Point", "coordinates": [ 152.054, -27.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.3436, "decimalLat": -27.83434 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.662969, "decimalLat": -26.242361 }, "geometry": { "type": "Point", "coordinates": [ 152.663, -26.242 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.248252, "decimalLat": -27.496345 }, "geometry": { "type": "Point", "coordinates": [ 152.248, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34746, "decimalLat": -27.82594 }, "geometry": { "type": "Point", "coordinates": [ 152.347, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.139254, "decimalLat": -27.572391 }, "geometry": { "type": "Point", "coordinates": [ 152.139, -27.572 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344879, "decimalLat": -27.835484 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.835 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.714081, "decimalLat": -26.219686 }, "geometry": { "type": "Point", "coordinates": [ 152.714, -26.22 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344449, "decimalLat": -27.829295 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.04891, "decimalLat": -27.54156 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.027582, "decimalLat": -26.38778 }, "geometry": { "type": "Point", "coordinates": [ 153.028, -26.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058, "decimalLat": -27.547 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 145.452496, "decimalLat": -17.535123 }, "geometry": { "type": "Point", "coordinates": [ 145.452, -17.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8638, "decimalLat": -26.38 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -26.38 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.7818, "decimalLat": -26.3632 }, "geometry": { "type": "Point", "coordinates": [ 152.782, -26.363 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34445, "decimalLat": -27.83216 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.95778, "decimalLat": -27.26712 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -27.267 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.01619, "decimalLat": -27.6737 }, "geometry": { "type": "Point", "coordinates": [ 152.016, -27.674 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344414, "decimalLat": -27.832173 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34425, "decimalLat": -27.83232 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.076107, "decimalLat": -27.666437 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -27.666 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344575, "decimalLat": -27.831286 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.831 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9406, "decimalLat": -26.3696 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -26.37 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8059, "decimalLat": -26.4291 }, "geometry": { "type": "Point", "coordinates": [ 152.806, -26.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.020556, "decimalLat": -27.651667 }, "geometry": { "type": "Point", "coordinates": [ 152.021, -27.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.0469, "decimalLat": -27.64895 }, "geometry": { "type": "Point", "coordinates": [ 152.047, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34689, "decimalLat": -27.82558 }, "geometry": { "type": "Point", "coordinates": [ 152.347, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.983389, "decimalLat": -26.470192 }, "geometry": { "type": "Point", "coordinates": [ 152.983, -26.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8384, "decimalLat": -26.3713 }, "geometry": { "type": "Point", "coordinates": [ 152.838, -26.371 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.192894, "decimalLat": -27.262304 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -27.262 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.63063, "decimalLat": -27.36513 }, "geometry": { "type": "Point", "coordinates": [ 151.631, -27.365 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.342732, "decimalLat": -27.834383 }, "geometry": { "type": "Point", "coordinates": [ 152.343, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.01529, "decimalLat": -27.67385 }, "geometry": { "type": "Point", "coordinates": [ 152.015, -27.674 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 150.38849, "decimalLat": -27.85068 }, "geometry": { "type": "Point", "coordinates": [ 150.388, -27.851 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.815, "decimalLat": -26.3613 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -26.361 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.339471, "decimalLat": -27.833192 }, "geometry": { "type": "Point", "coordinates": [ 152.339, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06665, "decimalLat": -27.215553 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.216 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.139444, "decimalLat": -27.571699 }, "geometry": { "type": "Point", "coordinates": [ 152.139, -27.572 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.342157, "decimalLat": -27.830304 }, "geometry": { "type": "Point", "coordinates": [ 152.342, -27.83 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.827689, "decimalLat": -26.363159 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -26.363 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105644, "decimalLat": -26.37968 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -26.38 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34457, "decimalLat": -27.829335 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9406, "decimalLat": -26.3696 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -26.37 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34418, "decimalLat": -27.83231 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.346173, "decimalLat": -27.826681 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.669935, "decimalLat": -25.59219 }, "geometry": { "type": "Point", "coordinates": [ 152.67, -25.592 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.3463, "decimalLat": -27.82643 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.246644, "decimalLat": -27.495039 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34467, "decimalLat": -27.82929 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1105, "decimalLat": -26.3988 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -26.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344942, "decimalLat": -27.828931 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.04329, "decimalLat": -27.6488 }, "geometry": { "type": "Point", "coordinates": [ 152.043, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.52467, "decimalLat": -27.37071 }, "geometry": { "type": "Point", "coordinates": [ 152.525, -27.371 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1833, "decimalLat": -27.53118 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.339007, "decimalLat": -27.832768 }, "geometry": { "type": "Point", "coordinates": [ 152.339, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.843413, "decimalLat": -28.760322 }, "geometry": { "type": "Point", "coordinates": [ 151.843, -28.76 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.3459, "decimalLat": -27.82633 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105796, "decimalLat": -26.379675 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -26.38 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34277, "decimalLat": -27.83249 }, "geometry": { "type": "Point", "coordinates": [ 152.343, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8044, "decimalLat": -26.4258 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -26.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.4739, "decimalLat": -27.5506 }, "geometry": { "type": "Point", "coordinates": [ 152.474, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.019726, "decimalLat": -26.37824 }, "geometry": { "type": "Point", "coordinates": [ 153.02, -26.378 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.88143, "decimalLat": -26.40096 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -26.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.086983, "decimalLat": -27.695033 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.695 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34459, "decimalLat": -27.82939 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.49315, "decimalLat": -27.51508 }, "geometry": { "type": "Point", "coordinates": [ 152.493, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.086983, "decimalLat": -27.6953 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.695 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.250185, "decimalLat": -27.495132 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8074, "decimalLat": -26.4264 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -26.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.03792, "decimalLat": -26.37806 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -26.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.052974, "decimalLat": -27.722131 }, "geometry": { "type": "Point", "coordinates": [ 152.053, -27.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.993864, "decimalLat": -27.503392 }, "geometry": { "type": "Point", "coordinates": [ 151.994, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34418, "decimalLat": -27.83197 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.95805, "decimalLat": -27.26702 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -27.267 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.3447, "decimalLat": -27.82925 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.10828, "decimalLat": -27.65907 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -27.659 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.345019, "decimalLat": -27.8285 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34615, "decimalLat": -27.82657 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.827 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.012908, "decimalLat": -27.675122 }, "geometry": { "type": "Point", "coordinates": [ 152.013, -27.675 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1096, "decimalLat": -26.3979 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -26.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18343, "decimalLat": -27.554031 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.346584, "decimalLat": -27.825701 }, "geometry": { "type": "Point", "coordinates": [ 152.347, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059722, "decimalLat": -27.531389 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.986684, "decimalLat": -27.645184 }, "geometry": { "type": "Point", "coordinates": [ 151.987, -27.645 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.346339, "decimalLat": -27.825935 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.343204, "decimalLat": -27.833652 }, "geometry": { "type": "Point", "coordinates": [ 152.343, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.01173, "decimalLat": -27.67454 }, "geometry": { "type": "Point", "coordinates": [ 152.012, -27.675 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34456, "decimalLat": -27.83006 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.83 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.3441, "decimalLat": -27.83205 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0862, "decimalLat": -27.50661 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.9967, "decimalLat": -27.661707 }, "geometry": { "type": "Point", "coordinates": [ 151.997, -27.662 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34454, "decimalLat": -27.83114 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8059, "decimalLat": -26.4291 }, "geometry": { "type": "Point", "coordinates": [ 152.806, -26.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344909, "decimalLat": -27.828916 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.665842, "decimalLat": -26.410239 }, "geometry": { "type": "Point", "coordinates": [ 152.666, -26.41 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.3427, "decimalLat": -27.83425 }, "geometry": { "type": "Point", "coordinates": [ 152.343, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.3472, "decimalLat": -27.82548 }, "geometry": { "type": "Point", "coordinates": [ 152.347, -27.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.68843, "decimalLat": -27.681513 }, "geometry": { "type": "Point", "coordinates": [ 152.688, -27.682 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34308, "decimalLat": -27.83372 }, "geometry": { "type": "Point", "coordinates": [ 152.343, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0388, "decimalLat": -26.3741 }, "geometry": { "type": "Point", "coordinates": [ 153.039, -26.374 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34427, "decimalLat": -27.830722 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.831 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34453, "decimalLat": -27.83009 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.83 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.7812, "decimalLat": -26.3617 }, "geometry": { "type": "Point", "coordinates": [ 152.781, -26.362 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34576, "decimalLat": -27.8264 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 0, "individual": 1, "stateProvi": "Queensland", "decimalLon": 145.335111, "decimalLat": -18.189889 }, "geometry": { "type": "Point", "coordinates": [ 145.335, -18.19 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0284, "decimalLat": -26.3822 }, "geometry": { "type": "Point", "coordinates": [ 153.028, -26.382 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.345943, "decimalLat": -27.826347 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.3445, "decimalLat": -27.82996 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.83 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.7925, "decimalLat": -26.39 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -26.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.012803, "decimalLat": -27.674797 }, "geometry": { "type": "Point", "coordinates": [ 152.013, -27.675 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.067839, "decimalLat": -27.691852 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -27.692 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.343767, "decimalLat": -27.835246 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.835 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.92256, "decimalLat": -27.38561 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -27.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344161, "decimalLat": -27.831923 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0532, "decimalLat": -26.4181 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -26.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34464, "decimalLat": -27.83169 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.401805, "decimalLat": -27.457201 }, "geometry": { "type": "Point", "coordinates": [ 152.402, -27.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34628, "decimalLat": -27.834168 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8597, "decimalLat": -26.4548 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -26.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34396, "decimalLat": -27.832102 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.3459, "decimalLat": -27.82662 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.060257, "decimalLat": -27.714831 }, "geometry": { "type": "Point", "coordinates": [ 152.06, -27.715 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.311113, "decimalLat": -27.532045 }, "geometry": { "type": "Point", "coordinates": [ 152.311, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.947427, "decimalLat": -27.628364 }, "geometry": { "type": "Point", "coordinates": [ 151.947, -27.628 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34419, "decimalLat": -27.83239 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.666044, "decimalLat": -26.395531 }, "geometry": { "type": "Point", "coordinates": [ 152.666, -26.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34438, "decimalLat": -27.83224 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.346549, "decimalLat": -27.825871 }, "geometry": { "type": "Point", "coordinates": [ 152.347, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.347591, "decimalLat": -27.825213 }, "geometry": { "type": "Point", "coordinates": [ 152.348, -27.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8502, "decimalLat": -26.3971 }, "geometry": { "type": "Point", "coordinates": [ 152.85, -26.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.347927, "decimalLat": -27.824243 }, "geometry": { "type": "Point", "coordinates": [ 152.348, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.068275, "decimalLat": -27.690883 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -27.691 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.891891, "decimalLat": -27.710759 }, "geometry": { "type": "Point", "coordinates": [ 151.892, -27.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34294, "decimalLat": -27.83502 }, "geometry": { "type": "Point", "coordinates": [ 152.343, -27.835 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27689, "decimalLat": -27.837638 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.838 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.017505, "decimalLat": -27.379184 }, "geometry": { "type": "Point", "coordinates": [ 152.018, -27.379 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.815, "decimalLat": -26.3613 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -26.361 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.043255, "decimalLat": -27.648861 }, "geometry": { "type": "Point", "coordinates": [ 152.043, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.075671, "decimalLat": -27.725696 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -27.726 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.027662, "decimalLat": -26.38779 }, "geometry": { "type": "Point", "coordinates": [ 153.028, -26.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34431, "decimalLat": -27.83237 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.075121, "decimalLat": -27.687196 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.086803, "decimalLat": -27.719116 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.788997, "decimalLat": -26.058706 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -26.059 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.4743, "decimalLat": -27.5289 }, "geometry": { "type": "Point", "coordinates": [ 152.474, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.11112, "decimalLat": -27.566148 }, "geometry": { "type": "Point", "coordinates": [ 152.111, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1924, "decimalLat": -27.8329 }, "geometry": { "type": "Point", "coordinates": [ 152.192, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.04533, "decimalLat": -27.55123 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34518, "decimalLat": -27.832329 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.347614, "decimalLat": -27.825779 }, "geometry": { "type": "Point", "coordinates": [ 152.348, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.278411, "decimalLat": -27.167539 }, "geometry": { "type": "Point", "coordinates": [ 151.278, -27.168 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.469768, "decimalLat": -27.635562 }, "geometry": { "type": "Point", "coordinates": [ 152.47, -27.636 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.086921, "decimalLat": -27.718067 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.815, "decimalLat": -26.3613 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -26.361 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.439167, "decimalLat": -27.531945 }, "geometry": { "type": "Point", "coordinates": [ 152.439, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34595, "decimalLat": -27.82775 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0028, "decimalLat": -26.4216 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -26.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34641, "decimalLat": -27.82675 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9603, "decimalLat": -26.4046 }, "geometry": { "type": "Point", "coordinates": [ 152.96, -26.405 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.807, "decimalLat": -26.4297 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -26.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34131, "decimalLat": -27.83215 }, "geometry": { "type": "Point", "coordinates": [ 152.341, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.345877, "decimalLat": -27.835493 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.835 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.342843, "decimalLat": -27.832662 }, "geometry": { "type": "Point", "coordinates": [ 152.343, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34459, "decimalLat": -27.82926 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.58032, "decimalLat": -27.361137 }, "geometry": { "type": "Point", "coordinates": [ 151.58, -27.361 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34265, "decimalLat": -27.83319 }, "geometry": { "type": "Point", "coordinates": [ 152.343, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.369909, "decimalLat": -27.455387 }, "geometry": { "type": "Point", "coordinates": [ 152.37, -27.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34375, "decimalLat": -27.83376 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34402, "decimalLat": -27.83204 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.811, "decimalLat": -26.4242 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -26.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.247373, "decimalLat": -27.495756 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.084073, "decimalLat": -27.535116 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34399, "decimalLat": -27.83223 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8072, "decimalLat": -26.4261 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -26.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344683, "decimalLat": -27.830067 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.83 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053, "decimalLat": -27.54 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.01167, "decimalLat": -27.67452 }, "geometry": { "type": "Point", "coordinates": [ 152.012, -27.675 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.575753, "decimalLat": -26.202875 }, "geometry": { "type": "Point", "coordinates": [ 152.576, -26.203 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.346171, "decimalLat": -27.83401 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.087003, "decimalLat": -27.695155 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.695 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.575753, "decimalLat": -26.202875 }, "geometry": { "type": "Point", "coordinates": [ 152.576, -26.203 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.251552, "decimalLat": -27.535329 }, "geometry": { "type": "Point", "coordinates": [ 152.252, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.09124, "decimalLat": -27.531528 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 150.4838, "decimalLat": -26.814289 }, "geometry": { "type": "Point", "coordinates": [ 150.484, -26.814 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.340548, "decimalLat": -27.833115 }, "geometry": { "type": "Point", "coordinates": [ 152.341, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.23574, "decimalLat": -25.060133 }, "geometry": { "type": "Point", "coordinates": [ 148.236, -25.06 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.07098, "decimalLat": -27.72605 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -27.726 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344121, "decimalLat": -27.832249 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34447, "decimalLat": -27.83207 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08099, "decimalLat": -27.510022 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092078, "decimalLat": -27.527056 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093543, "decimalLat": -27.524683 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.60907, "decimalLat": -27.39632 }, "geometry": { "type": "Point", "coordinates": [ 152.609, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16382, "decimalLat": -38.671253 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367526, "decimalLat": -28.259 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.24933, "decimalLat": -27.49628 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08429, "decimalLat": -27.5124 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.042423, "decimalLat": -27.53711 }, "geometry": { "type": "Point", "coordinates": [ 153.042, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.378882, "decimalLat": -27.917746 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.71514, "decimalLat": -36.36651 }, "geometry": { "type": "Point", "coordinates": [ 146.715, -36.367 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07542, "decimalLat": -27.541165 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732753, "decimalLat": -34.89008 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.842855, "decimalLat": -28.091609 }, "geometry": { "type": "Point", "coordinates": [ 152.843, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.448252, "decimalLat": -28.10129 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.664262, "decimalLat": -37.43513 }, "geometry": { "type": "Point", "coordinates": [ 144.664, -37.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.485, "decimalLat": -28.578853 }, "geometry": { "type": "Point", "coordinates": [ 153.485, -28.579 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.80221, "decimalLat": -26.156575 }, "geometry": { "type": "Point", "coordinates": [ 151.802, -26.157 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.935317, "decimalLat": -27.32545 }, "geometry": { "type": "Point", "coordinates": [ 151.935, -27.325 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10334, "decimalLat": -27.529252 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164214, "decimalLat": -38.6713 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992858, "decimalLat": -27.241873 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.242 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.598212, "decimalLat": -28.167314 }, "geometry": { "type": "Point", "coordinates": [ 152.598, -28.167 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.889374, "decimalLat": -27.597174 }, "geometry": { "type": "Point", "coordinates": [ 151.889, -27.597 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091443, "decimalLat": -27.527332 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.18715, "decimalLat": -28.195481 }, "geometry": { "type": "Point", "coordinates": [ 153.187, -28.195 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.087697, "decimalLat": -27.511247 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749848, "decimalLat": -26.155061 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.512725, "decimalLat": -38.83362 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068944, "decimalLat": -27.525904 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055679, "decimalLat": -27.537782 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058527, "decimalLat": -27.551409 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.698213, "decimalLat": -26.17879 }, "geometry": { "type": "Point", "coordinates": [ 151.698, -26.179 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090545, "decimalLat": -27.526046 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.03325, "decimalLat": -27.648108 }, "geometry": { "type": "Point", "coordinates": [ 152.033, -27.648 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.672032, "decimalLat": -36.385547 }, "geometry": { "type": "Point", "coordinates": [ 146.672, -36.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.582405, "decimalLat": -38.827487 }, "geometry": { "type": "Point", "coordinates": [ 143.582, -38.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.456543, "decimalLat": -28.094746 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.566135, "decimalLat": -27.79596 }, "geometry": { "type": "Point", "coordinates": [ 151.566, -27.796 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.851777, "decimalLat": -27.428351 }, "geometry": { "type": "Point", "coordinates": [ 151.852, -27.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16382, "decimalLat": -38.671263 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074671, "decimalLat": -27.546837 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090386, "decimalLat": -27.526781 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111638, "decimalLat": -27.529179 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092369, "decimalLat": -27.525152 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192573, "decimalLat": -27.703054 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -27.703 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092777, "decimalLat": -27.52813 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555985, "decimalLat": -28.371821 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.372 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65507, "decimalLat": -35.00565 }, "geometry": { "type": "Point", "coordinates": [ 138.655, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.826933, "decimalLat": -34.692015 }, "geometry": { "type": "Point", "coordinates": [ 138.827, -34.692 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.087006, "decimalLat": -37.630375 }, "geometry": { "type": "Point", "coordinates": [ 144.087, -37.63 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.656845, "decimalLat": -28.106754 }, "geometry": { "type": "Point", "coordinates": [ 152.657, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092014, "decimalLat": -27.524688 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.95375, "decimalLat": -27.279713 }, "geometry": { "type": "Point", "coordinates": [ 152.954, -27.28 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637498, "decimalLat": -35.004945 }, "geometry": { "type": "Point", "coordinates": [ 138.637, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72697, "decimalLat": -34.912955 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.913 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18901, "decimalLat": -27.456754 }, "geometry": { "type": "Point", "coordinates": [ 152.189, -27.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.79567, "decimalLat": -30.829557 }, "geometry": { "type": "Point", "coordinates": [ 149.796, -30.83 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.296083, "decimalLat": -38.382837 }, "geometry": { "type": "Point", "coordinates": [ 145.296, -38.383 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091695, "decimalLat": -27.527132 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.03847, "decimalLat": -27.532599 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07515, "decimalLat": -27.506812 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401718, "decimalLat": -28.259903 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09109, "decimalLat": -27.526898 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.601196, "decimalLat": -35.46043 }, "geometry": { "type": "Point", "coordinates": [ 138.601, -35.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082947, "decimalLat": -27.510502 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440789, "decimalLat": -27.393467 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059824, "decimalLat": -27.550408 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091355, "decimalLat": -27.5271 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.915059, "decimalLat": -38.48199 }, "geometry": { "type": "Point", "coordinates": [ 143.915, -38.482 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11256, "decimalLat": -27.527927 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092595, "decimalLat": -27.527552 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.407319, "decimalLat": -32.973207 }, "geometry": { "type": "Point", "coordinates": [ 151.407, -32.973 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.900923, "decimalLat": -34.002369 }, "geometry": { "type": "Point", "coordinates": [ 150.901, -34.002 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07314, "decimalLat": -27.545735 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.826933, "decimalLat": -34.692015 }, "geometry": { "type": "Point", "coordinates": [ 138.827, -34.692 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.708286, "decimalLat": -34.93271 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72231, "decimalLat": -34.88983 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.612644, "decimalLat": -27.338633 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.636708, "decimalLat": -34.990545 }, "geometry": { "type": "Point", "coordinates": [ 138.637, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092045, "decimalLat": -27.527168 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086488, "decimalLat": -27.509237 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.97785, "decimalLat": -38.498491 }, "geometry": { "type": "Point", "coordinates": [ 142.978, -38.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1221, "decimalLat": -27.781462 }, "geometry": { "type": "Point", "coordinates": [ 153.122, -27.781 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67047, "decimalLat": -35.015931 }, "geometry": { "type": "Point", "coordinates": [ 138.67, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.03605, "decimalLat": -27.535159 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057987, "decimalLat": -27.550899 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306642, "decimalLat": -28.816045 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.604668, "decimalLat": -35.01417 }, "geometry": { "type": "Point", "coordinates": [ 138.605, -35.014 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059553, "decimalLat": -27.548953 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993576, "decimalLat": -27.823506 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.00101, "decimalLat": -27.284697 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.808184, "decimalLat": -35.960526 }, "geometry": { "type": "Point", "coordinates": [ 136.808, -35.961 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.906508, "decimalLat": -27.459393 }, "geometry": { "type": "Point", "coordinates": [ 151.907, -27.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.754464, "decimalLat": -37.90878 }, "geometry": { "type": "Point", "coordinates": [ 147.754, -37.909 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046465, "decimalLat": -27.257145 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.99382, "decimalLat": -27.557308 }, "geometry": { "type": "Point", "coordinates": [ 151.994, -27.557 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0992, "decimalLat": -27.56598 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103072, "decimalLat": -27.527937 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.368468, "decimalLat": -27.901418 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.901 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10668, "decimalLat": -27.528921 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90535, "decimalLat": -31.44325 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090482, "decimalLat": -27.526908 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.595397, "decimalLat": -34.773438 }, "geometry": { "type": "Point", "coordinates": [ 146.595, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.051147, "decimalLat": -27.26722 }, "geometry": { "type": "Point", "coordinates": [ 152.051, -27.267 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6015, "decimalLat": -29.870286 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -29.87 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.884406, "decimalLat": -37.585154 }, "geometry": { "type": "Point", "coordinates": [ 143.884, -37.585 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090767, "decimalLat": -27.526752 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092036, "decimalLat": -27.527035 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.582362, "decimalLat": -38.01889 }, "geometry": { "type": "Point", "coordinates": [ 141.582, -38.019 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.882689, "decimalLat": -37.58597 }, "geometry": { "type": "Point", "coordinates": [ 143.883, -37.586 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108202, "decimalLat": -27.52723 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.25327, "decimalLat": -38.135703 }, "geometry": { "type": "Point", "coordinates": [ 145.253, -38.136 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401521, "decimalLat": -28.260205 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105216, "decimalLat": -27.529213 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.880686, "decimalLat": -27.425042 }, "geometry": { "type": "Point", "coordinates": [ 151.881, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09227, "decimalLat": -27.524947 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.97476, "decimalLat": -38.386628 }, "geometry": { "type": "Point", "coordinates": [ 143.975, -38.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10923, "decimalLat": -27.527279 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073595, "decimalLat": -32.722253 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.736844, "decimalLat": -34.804894 }, "geometry": { "type": "Point", "coordinates": [ 138.737, -34.805 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.773711, "decimalLat": -34.878983 }, "geometry": { "type": "Point", "coordinates": [ 138.774, -34.879 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.671264, "decimalLat": -35.022412 }, "geometry": { "type": "Point", "coordinates": [ 138.671, -35.022 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.757913, "decimalLat": -37.563085 }, "geometry": { "type": "Point", "coordinates": [ 149.758, -37.563 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.706249, "decimalLat": -34.902456 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.902 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082727, "decimalLat": -27.506664 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377476, "decimalLat": -28.25408 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090716, "decimalLat": -27.525877 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.065602, "decimalLat": -27.539385 }, "geometry": { "type": "Point", "coordinates": [ 153.066, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093556, "decimalLat": -27.524531 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.102433, "decimalLat": -27.568828 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091466, "decimalLat": -27.527362 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085728, "decimalLat": -27.51025 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70685, "decimalLat": -34.903257 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.826933, "decimalLat": -34.692015 }, "geometry": { "type": "Point", "coordinates": [ 138.827, -34.692 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05467, "decimalLat": -27.552137 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090512, "decimalLat": -27.527049 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058617, "decimalLat": -27.548209 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.871548, "decimalLat": -19.123466 }, "geometry": { "type": "Point", "coordinates": [ 146.872, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.695029, "decimalLat": -34.957443 }, "geometry": { "type": "Point", "coordinates": [ 138.695, -34.957 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092166, "decimalLat": -27.52549 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.165694, "decimalLat": -37.866714 }, "geometry": { "type": "Point", "coordinates": [ 144.166, -37.867 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108208, "decimalLat": -27.529281 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.64363, "decimalLat": -34.884838 }, "geometry": { "type": "Point", "coordinates": [ 138.644, -34.885 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111768, "decimalLat": -27.524393 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.188853, "decimalLat": -27.725513 }, "geometry": { "type": "Point", "coordinates": [ 153.189, -27.726 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39958, "decimalLat": -27.497734 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.105005, "decimalLat": -37.570955 }, "geometry": { "type": "Point", "coordinates": [ 144.105, -37.571 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070087, "decimalLat": -27.510652 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282573, "decimalLat": -27.533451 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093282, "decimalLat": -27.526012 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.400422, "decimalLat": -38.517594 }, "geometry": { "type": "Point", "coordinates": [ 146.4, -38.518 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.268527, "decimalLat": -28.007401 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -28.007 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.287553, "decimalLat": -36.056717 }, "geometry": { "type": "Point", "coordinates": [ 149.288, -36.057 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091666, "decimalLat": -27.527047 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.048553, "decimalLat": -27.260263 }, "geometry": { "type": "Point", "coordinates": [ 152.049, -27.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106752, "decimalLat": -27.528802 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.623428, "decimalLat": -34.858712 }, "geometry": { "type": "Point", "coordinates": [ 138.623, -34.859 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083922, "decimalLat": -27.50543 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.967182, "decimalLat": -26.240115 }, "geometry": { "type": "Point", "coordinates": [ 151.967, -26.24 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.543066, "decimalLat": -38.410426 }, "geometry": { "type": "Point", "coordinates": [ 141.543, -38.41 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.620556, "decimalLat": -34.996417 }, "geometry": { "type": "Point", "coordinates": [ 138.621, -34.996 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107807, "decimalLat": -27.526978 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.579818, "decimalLat": -35.058652 }, "geometry": { "type": "Point", "coordinates": [ 138.58, -35.059 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.730451, "decimalLat": -37.924429 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43834, "decimalLat": -27.401123 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046022, "decimalLat": -27.25609 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.256 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.754962, "decimalLat": -38.635187 }, "geometry": { "type": "Point", "coordinates": [ 145.755, -38.635 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897763, "decimalLat": -30.442998 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -30.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.26795, "decimalLat": -37.390828 }, "geometry": { "type": "Point", "coordinates": [ 144.268, -37.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090381, "decimalLat": -27.52575 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.958556, "decimalLat": -38.827605 }, "geometry": { "type": "Point", "coordinates": [ 145.959, -38.828 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.869565, "decimalLat": -27.359061 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733453, "decimalLat": -34.888734 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092929, "decimalLat": -27.526424 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057486, "decimalLat": -27.551875 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.008383, "decimalLat": -27.653652 }, "geometry": { "type": "Point", "coordinates": [ 153.008, -27.654 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705617, "decimalLat": -34.936974 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.937 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.972143, "decimalLat": -30.43198 }, "geometry": { "type": "Point", "coordinates": [ 152.972, -30.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.391949, "decimalLat": -28.116107 }, "geometry": { "type": "Point", "coordinates": [ 153.392, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.916185, "decimalLat": -27.122257 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -27.122 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.73732, "decimalLat": -37.526319 }, "geometry": { "type": "Point", "coordinates": [ 149.737, -37.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991752, "decimalLat": -27.823275 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10332, "decimalLat": -27.528775 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6667, "decimalLat": -35.004059 }, "geometry": { "type": "Point", "coordinates": [ 138.667, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.291129, "decimalLat": -37.874433 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.874 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3785, "decimalLat": -27.920713 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.921 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.672856, "decimalLat": -34.935061 }, "geometry": { "type": "Point", "coordinates": [ 138.673, -34.935 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112483, "decimalLat": -27.527946 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.92208, "decimalLat": -26.220979 }, "geometry": { "type": "Point", "coordinates": [ 151.922, -26.221 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095245, "decimalLat": -33.076389 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.043257, "decimalLat": -27.260975 }, "geometry": { "type": "Point", "coordinates": [ 152.043, -27.261 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.062911, "decimalLat": -38.0052 }, "geometry": { "type": "Point", "coordinates": [ 141.063, -38.005 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251968, "decimalLat": -27.51395 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107866, "decimalLat": -27.526909 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.513747, "decimalLat": -27.423217 }, "geometry": { "type": "Point", "coordinates": [ 153.514, -27.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057831, "decimalLat": -27.551526 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.616925, "decimalLat": -34.903793 }, "geometry": { "type": "Point", "coordinates": [ 138.617, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074617, "decimalLat": -27.358603 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.667175, "decimalLat": -37.792225 }, "geometry": { "type": "Point", "coordinates": [ 145.667, -37.792 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037417, "decimalLat": -27.53259 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.352718, "decimalLat": -27.915327 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.92803, "decimalLat": -37.541326 }, "geometry": { "type": "Point", "coordinates": [ 143.928, -37.541 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732312, "decimalLat": -35.013391 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -35.013 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104628, "decimalLat": -27.52989 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.374011, "decimalLat": -27.916603 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103428, "decimalLat": -27.530193 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.065583, "decimalLat": -27.54457 }, "geometry": { "type": "Point", "coordinates": [ 153.066, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40077, "decimalLat": -28.259602 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16431, "decimalLat": -38.671301 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.216421, "decimalLat": -35.951654 }, "geometry": { "type": "Point", "coordinates": [ 137.216, -35.952 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.709492, "decimalLat": -34.877289 }, "geometry": { "type": "Point", "coordinates": [ 138.709, -34.877 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.650458, "decimalLat": -35.053775 }, "geometry": { "type": "Point", "coordinates": [ 138.65, -35.054 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073177, "decimalLat": -27.545928 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051209, "decimalLat": -27.54904 }, "geometry": { "type": "Point", "coordinates": [ 153.051, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402074, "decimalLat": -28.259866 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.397734, "decimalLat": -28.261887 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058961, "decimalLat": -27.551533 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.605286, "decimalLat": -28.123148 }, "geometry": { "type": "Point", "coordinates": [ 152.605, -28.123 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729421, "decimalLat": -34.889784 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054533, "decimalLat": -27.550959 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.691356, "decimalLat": -26.1772 }, "geometry": { "type": "Point", "coordinates": [ 151.691, -26.177 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388712, "decimalLat": -38.35779 }, "geometry": { "type": "Point", "coordinates": [ 146.389, -38.358 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05744, "decimalLat": -27.551108 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073292, "decimalLat": -27.545825 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.921525, "decimalLat": -38.056665 }, "geometry": { "type": "Point", "coordinates": [ 141.922, -38.057 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092632, "decimalLat": -27.527615 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.731676, "decimalLat": -27.591878 }, "geometry": { "type": "Point", "coordinates": [ 151.732, -27.592 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.775294, "decimalLat": -26.182073 }, "geometry": { "type": "Point", "coordinates": [ 151.775, -26.182 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.754464, "decimalLat": -37.90878 }, "geometry": { "type": "Point", "coordinates": [ 147.754, -37.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107383, "decimalLat": -27.52873 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090979, "decimalLat": -27.527531 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073278, "decimalLat": -27.545829 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.088106, "decimalLat": -27.510422 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.532853, "decimalLat": -36.943878 }, "geometry": { "type": "Point", "coordinates": [ 145.533, -36.944 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090992, "decimalLat": -27.527499 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058333, "decimalLat": -27.550597 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.58541, "decimalLat": -34.764473 }, "geometry": { "type": "Point", "coordinates": [ 146.585, -34.764 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05773, "decimalLat": -27.551201 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113416, "decimalLat": -27.528536 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388712, "decimalLat": -38.35779 }, "geometry": { "type": "Point", "coordinates": [ 146.389, -38.358 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437575, "decimalLat": -27.400738 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110562, "decimalLat": -27.527941 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.933828, "decimalLat": -27.325276 }, "geometry": { "type": "Point", "coordinates": [ 151.934, -27.325 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.150069, "decimalLat": -27.712197 }, "geometry": { "type": "Point", "coordinates": [ 153.15, -27.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.060182, "decimalLat": -34.61656 }, "geometry": { "type": "Point", "coordinates": [ 150.06, -34.617 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09307, "decimalLat": -27.527976 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.898758, "decimalLat": -27.65262 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -27.653 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.373869, "decimalLat": -27.912075 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.366438, "decimalLat": -38.315058 }, "geometry": { "type": "Point", "coordinates": [ 142.366, -38.315 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.361145, "decimalLat": -37.061378 }, "geometry": { "type": "Point", "coordinates": [ 145.361, -37.061 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104622, "decimalLat": -27.530277 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.243575, "decimalLat": -33.127514 }, "geometry": { "type": "Point", "coordinates": [ 151.244, -33.128 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.206075, "decimalLat": -37.89159 }, "geometry": { "type": "Point", "coordinates": [ 144.206, -37.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.94542, "decimalLat": -28.12513 }, "geometry": { "type": "Point", "coordinates": [ 152.945, -28.125 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.81007, "decimalLat": -35.96043 }, "geometry": { "type": "Point", "coordinates": [ 136.81, -35.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108104, "decimalLat": -27.527092 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749845, "decimalLat": -26.155011 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000331, "decimalLat": -27.284151 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.651066, "decimalLat": -27.628967 }, "geometry": { "type": "Point", "coordinates": [ 151.651, -27.629 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092391, "decimalLat": -27.52817 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037868, "decimalLat": -27.54708 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.581082, "decimalLat": -35.04677 }, "geometry": { "type": "Point", "coordinates": [ 138.581, -35.047 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.31643, "decimalLat": -38.363904 }, "geometry": { "type": "Point", "coordinates": [ 145.316, -38.364 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.708208, "decimalLat": -34.902573 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001203, "decimalLat": -27.284983 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40288, "decimalLat": -27.493894 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372665, "decimalLat": -27.903879 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.714507, "decimalLat": -26.829613 }, "geometry": { "type": "Point", "coordinates": [ 152.715, -26.83 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.64805, "decimalLat": -34.876741 }, "geometry": { "type": "Point", "coordinates": [ 138.648, -34.877 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90663, "decimalLat": -31.441192 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 143.864217, "decimalLat": -18.619416 }, "geometry": { "type": "Point", "coordinates": [ 143.864, -18.619 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004472, "decimalLat": -27.414713 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.780329, "decimalLat": -26.309065 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -26.309 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057524, "decimalLat": -27.551021 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.979683, "decimalLat": -34.126959 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -34.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.66874, "decimalLat": -37.953847 }, "geometry": { "type": "Point", "coordinates": [ 147.669, -37.954 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078103, "decimalLat": -27.8742 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.874 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.67645, "decimalLat": -27.986042 }, "geometry": { "type": "Point", "coordinates": [ 152.676, -27.986 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109439, "decimalLat": -27.529416 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.541946, "decimalLat": -27.433038 }, "geometry": { "type": "Point", "coordinates": [ 153.542, -27.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.012617, "decimalLat": -27.602008 }, "geometry": { "type": "Point", "coordinates": [ 152.013, -27.602 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.1642, "decimalLat": -38.671325 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.76361, "decimalLat": -29.558637 }, "geometry": { "type": "Point", "coordinates": [ 150.764, -29.559 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65916, "decimalLat": -34.864482 }, "geometry": { "type": "Point", "coordinates": [ 138.659, -34.864 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058179, "decimalLat": -27.551659 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600457, "decimalLat": -29.869591 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -29.87 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072177, "decimalLat": -27.543928 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093563, "decimalLat": -27.524677 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092144, "decimalLat": -27.528066 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.91445, "decimalLat": -38.360881 }, "geometry": { "type": "Point", "coordinates": [ 146.914, -38.361 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10517, "decimalLat": -27.531565 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11207, "decimalLat": -27.529847 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003267, "decimalLat": -27.413513 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.243484, "decimalLat": -38.857295 }, "geometry": { "type": "Point", "coordinates": [ 146.243, -38.857 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.731623, "decimalLat": -37.922982 }, "geometry": { "type": "Point", "coordinates": [ 147.732, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080567, "decimalLat": -27.837717 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.838 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090756, "decimalLat": -27.527149 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.92336, "decimalLat": -38.056322 }, "geometry": { "type": "Point", "coordinates": [ 141.923, -38.056 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6628, "decimalLat": -34.866713 }, "geometry": { "type": "Point", "coordinates": [ 138.663, -34.867 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399319, "decimalLat": -27.497294 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10913, "decimalLat": -27.527234 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103278, "decimalLat": -27.528285 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.386957, "decimalLat": -38.527329 }, "geometry": { "type": "Point", "coordinates": [ 146.387, -38.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.906692, "decimalLat": -28.173889 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -28.174 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092247, "decimalLat": -27.527254 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.06042, "decimalLat": -26.161068 }, "geometry": { "type": "Point", "coordinates": [ 152.06, -26.161 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105259, "decimalLat": -27.531082 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.907282, "decimalLat": -28.174429 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -28.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057396, "decimalLat": -27.551382 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090822, "decimalLat": -27.527065 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070528, "decimalLat": -27.509539 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054912, "decimalLat": -27.550138 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.077764, "decimalLat": -27.54235 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048947, "decimalLat": -27.54977 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09044, "decimalLat": -27.526827 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68209, "decimalLat": -34.953827 }, "geometry": { "type": "Point", "coordinates": [ 138.682, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09159, "decimalLat": -27.526791 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102701, "decimalLat": -27.529297 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072275, "decimalLat": -27.226381 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.226 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.568113, "decimalLat": -34.758572 }, "geometry": { "type": "Point", "coordinates": [ 146.568, -34.759 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 139.16564, "decimalLat": -35.091427 }, "geometry": { "type": "Point", "coordinates": [ 139.166, -35.091 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091588, "decimalLat": -27.52736 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860713, "decimalLat": -38.668577 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.669 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637635, "decimalLat": -35.005263 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093208, "decimalLat": -27.527012 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870648, "decimalLat": -19.131458 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.131 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.365508, "decimalLat": -27.455511 }, "geometry": { "type": "Point", "coordinates": [ 152.366, -27.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083946, "decimalLat": -27.510947 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09205, "decimalLat": -27.527048 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.990056, "decimalLat": -26.623809 }, "geometry": { "type": "Point", "coordinates": [ 151.99, -26.624 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.55403, "decimalLat": -28.029503 }, "geometry": { "type": "Point", "coordinates": [ 152.554, -28.03 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.170662, "decimalLat": -34.782122 }, "geometry": { "type": "Point", "coordinates": [ 150.171, -34.782 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.466556, "decimalLat": -28.192267 }, "geometry": { "type": "Point", "coordinates": [ 153.467, -28.192 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.431944, "decimalLat": -37.932778 }, "geometry": { "type": "Point", "coordinates": [ 144.432, -37.933 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090343, "decimalLat": -27.525545 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70194, "decimalLat": -34.902658 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052024, "decimalLat": -27.548291 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106688, "decimalLat": -27.529219 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112693, "decimalLat": -27.52833 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164092, "decimalLat": -38.671463 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.679277, "decimalLat": -35.023007 }, "geometry": { "type": "Point", "coordinates": [ 138.679, -35.023 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090445, "decimalLat": -27.526587 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.517939, "decimalLat": -30.520949 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377566, "decimalLat": -28.254084 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.17213, "decimalLat": -27.575218 }, "geometry": { "type": "Point", "coordinates": [ 153.172, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.594096, "decimalLat": -27.800382 }, "geometry": { "type": "Point", "coordinates": [ 151.594, -27.8 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.521444, "decimalLat": -30.51972 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112929, "decimalLat": -27.527392 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072803, "decimalLat": -27.542185 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092126, "decimalLat": -27.527163 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084817, "decimalLat": -27.510515 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090602, "decimalLat": -27.526994 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.521444, "decimalLat": -30.51972 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.457606, "decimalLat": -28.152156 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.152 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.094654, "decimalLat": -27.510381 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.774777, "decimalLat": -38.073746 }, "geometry": { "type": "Point", "coordinates": [ 141.775, -38.074 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.947633, "decimalLat": -27.423847 }, "geometry": { "type": "Point", "coordinates": [ 151.948, -27.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196389, "decimalLat": -27.848546 }, "geometry": { "type": "Point", "coordinates": [ 153.196, -27.849 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090926, "decimalLat": -27.526523 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.31662, "decimalLat": -35.871053 }, "geometry": { "type": "Point", "coordinates": [ 145.317, -35.871 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.808305, "decimalLat": -26.139886 }, "geometry": { "type": "Point", "coordinates": [ 151.808, -26.14 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.856187, "decimalLat": -38.670637 }, "geometry": { "type": "Point", "coordinates": [ 143.856, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732281, "decimalLat": -34.881999 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.882 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062642, "decimalLat": -27.560116 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.56 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.679817, "decimalLat": -34.84302 }, "geometry": { "type": "Point", "coordinates": [ 138.68, -34.843 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092364, "decimalLat": -27.525634 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.985611, "decimalLat": -26.452669 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -26.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.25027, "decimalLat": -37.871198 }, "geometry": { "type": "Point", "coordinates": [ 144.25, -37.871 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103795, "decimalLat": -26.379567 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -26.38 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.365217, "decimalLat": -21.745417 }, "geometry": { "type": "Point", "coordinates": [ 149.365, -21.745 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.394333, "decimalLat": -27.414947 }, "geometry": { "type": "Point", "coordinates": [ 152.394, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.899813, "decimalLat": -27.482163 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.482 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860662, "decimalLat": -38.66705 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921827, "decimalLat": -31.459893 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073262, "decimalLat": -27.543084 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090364, "decimalLat": -27.526868 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376935, "decimalLat": -28.253886 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108917, "decimalLat": -28.644547 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -28.645 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388194, "decimalLat": -38.354877 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108969, "decimalLat": -27.52721 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.64095, "decimalLat": -30.488699 }, "geometry": { "type": "Point", "coordinates": [ 151.641, -30.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093204, "decimalLat": -27.527833 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092234, "decimalLat": -27.527242 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103749, "decimalLat": -27.529637 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.556541, "decimalLat": -37.515152 }, "geometry": { "type": "Point", "coordinates": [ 144.557, -37.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108924, "decimalLat": -27.528718 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.011543, "decimalLat": -38.578383 }, "geometry": { "type": "Point", "coordinates": [ 146.012, -38.578 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.235947, "decimalLat": -38.2272 }, "geometry": { "type": "Point", "coordinates": [ 145.236, -38.227 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403897, "decimalLat": -28.260484 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399521, "decimalLat": -28.260553 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090831, "decimalLat": -27.525837 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092999, "decimalLat": -27.525928 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.535193, "decimalLat": -38.791788 }, "geometry": { "type": "Point", "coordinates": [ 143.535, -38.792 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091586, "decimalLat": -27.527015 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.1642, "decimalLat": -38.671337 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.16144, "decimalLat": -27.50254 }, "geometry": { "type": "Point", "coordinates": [ 152.161, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.823212, "decimalLat": -34.10168 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.555908, "decimalLat": -37.048094 }, "geometry": { "type": "Point", "coordinates": [ 145.556, -37.048 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.222472, "decimalLat": -37.802867 }, "geometry": { "type": "Point", "coordinates": [ 144.222, -37.803 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091622, "decimalLat": -27.527125 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.857453, "decimalLat": -27.254807 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -27.255 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403016, "decimalLat": -27.498347 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.86575, "decimalLat": -26.14881 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -26.149 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.78649, "decimalLat": -34.877295 }, "geometry": { "type": "Point", "coordinates": [ 138.786, -34.877 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086782, "decimalLat": -27.509328 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090306, "decimalLat": -27.526862 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.522174, "decimalLat": -27.714922 }, "geometry": { "type": "Point", "coordinates": [ 151.522, -27.715 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.132179, "decimalLat": -38.175467 }, "geometry": { "type": "Point", "coordinates": [ 145.132, -38.175 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.403998, "decimalLat": -38.345214 }, "geometry": { "type": "Point", "coordinates": [ 146.404, -38.345 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090679, "decimalLat": -27.526976 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.890197, "decimalLat": -36.16508 }, "geometry": { "type": "Point", "coordinates": [ 146.89, -36.165 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.594668, "decimalLat": -37.331108 }, "geometry": { "type": "Point", "coordinates": [ 144.595, -37.331 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842873, "decimalLat": -29.661518 }, "geometry": { "type": "Point", "coordinates": [ 150.843, -29.662 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109994, "decimalLat": -27.527111 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059213, "decimalLat": -27.545076 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.741556, "decimalLat": -34.830529 }, "geometry": { "type": "Point", "coordinates": [ 138.742, -34.831 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10572, "decimalLat": -27.530098 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.51477, "decimalLat": -38.835812 }, "geometry": { "type": "Point", "coordinates": [ 143.515, -38.836 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.716203, "decimalLat": -27.567963 }, "geometry": { "type": "Point", "coordinates": [ 151.716, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.377058, "decimalLat": -27.919485 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437622, "decimalLat": -27.400742 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865706, "decimalLat": -31.362261 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -31.362 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103737, "decimalLat": -27.529741 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.923498, "decimalLat": -28.14209 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091532, "decimalLat": -27.5273 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058884, "decimalLat": -27.547089 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.698513, "decimalLat": -26.179022 }, "geometry": { "type": "Point", "coordinates": [ 151.699, -26.179 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.273369, "decimalLat": -38.127245 }, "geometry": { "type": "Point", "coordinates": [ 145.273, -38.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054153, "decimalLat": -27.549902 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090499, "decimalLat": -27.526865 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101767, "decimalLat": -27.734033 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.734 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.134322, "decimalLat": -38.387325 }, "geometry": { "type": "Point", "coordinates": [ 145.134, -38.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.166371, "decimalLat": -38.26085 }, "geometry": { "type": "Point", "coordinates": [ 145.166, -38.261 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.591541, "decimalLat": -26.895113 }, "geometry": { "type": "Point", "coordinates": [ 152.592, -26.895 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625466, "decimalLat": -33.568807 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -33.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074492, "decimalLat": -27.546305 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.709987, "decimalLat": -34.890807 }, "geometry": { "type": "Point", "coordinates": [ 138.71, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.717193, "decimalLat": -34.894163 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.894 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999675, "decimalLat": -27.284041 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091307, "decimalLat": -27.527192 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103072, "decimalLat": -27.52907 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105307, "decimalLat": -27.530116 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.04235, "decimalLat": -27.297474 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -27.297 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106664, "decimalLat": -27.528536 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103478, "decimalLat": -27.529805 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.620254, "decimalLat": -34.894608 }, "geometry": { "type": "Point", "coordinates": [ 138.62, -34.895 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.095865, "decimalLat": -27.509836 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249657, "decimalLat": -27.495734 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.383101, "decimalLat": -36.17004 }, "geometry": { "type": "Point", "coordinates": [ 149.383, -36.17 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.713625, "decimalLat": -37.923295 }, "geometry": { "type": "Point", "coordinates": [ 147.714, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092948, "decimalLat": -27.528601 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091637, "decimalLat": -27.527238 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.684233, "decimalLat": -37.370542 }, "geometry": { "type": "Point", "coordinates": [ 144.684, -37.371 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095427, "decimalLat": -33.076853 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719245, "decimalLat": -34.891344 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074897, "decimalLat": -27.548335 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729647, "decimalLat": -37.923077 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.618937, "decimalLat": -27.313872 }, "geometry": { "type": "Point", "coordinates": [ 152.619, -27.314 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054109, "decimalLat": -27.558189 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.558 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.645821, "decimalLat": -35.003945 }, "geometry": { "type": "Point", "coordinates": [ 138.646, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.178706, "decimalLat": -38.04846 }, "geometry": { "type": "Point", "coordinates": [ 141.179, -38.048 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.035413, "decimalLat": -37.736661 }, "geometry": { "type": "Point", "coordinates": [ 142.035, -37.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868549, "decimalLat": -19.117437 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.117 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.880834, "decimalLat": -27.424793 }, "geometry": { "type": "Point", "coordinates": [ 151.881, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105678, "decimalLat": -27.530306 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109385, "decimalLat": -27.529464 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.307915, "decimalLat": -38.38475 }, "geometry": { "type": "Point", "coordinates": [ 145.308, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.867654, "decimalLat": -28.220394 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -28.22 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109069, "decimalLat": -27.527077 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.946944, "decimalLat": -30.422281 }, "geometry": { "type": "Point", "coordinates": [ 152.947, -30.422 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090539, "decimalLat": -27.526762 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.160433, "decimalLat": -27.659889 }, "geometry": { "type": "Point", "coordinates": [ 153.16, -27.66 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163789, "decimalLat": -38.671037 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.6224, "decimalLat": -27.451769 }, "geometry": { "type": "Point", "coordinates": [ 152.622, -27.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.533369, "decimalLat": -37.018593 }, "geometry": { "type": "Point", "coordinates": [ 145.533, -37.019 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053192, "decimalLat": -27.542113 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.13221, "decimalLat": -38.175528 }, "geometry": { "type": "Point", "coordinates": [ 145.132, -38.176 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.824677, "decimalLat": -34.670924 }, "geometry": { "type": "Point", "coordinates": [ 138.825, -34.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378538, "decimalLat": -31.910405 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.58525, "decimalLat": -27.372908 }, "geometry": { "type": "Point", "coordinates": [ 152.585, -27.373 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091811, "decimalLat": -27.527028 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107265, "decimalLat": -27.527341 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377294, "decimalLat": -28.254282 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060462, "decimalLat": -27.549837 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.446139, "decimalLat": -26.104681 }, "geometry": { "type": "Point", "coordinates": [ 151.446, -26.105 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.725773, "decimalLat": -34.875738 }, "geometry": { "type": "Point", "coordinates": [ 138.726, -34.876 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09331, "decimalLat": -27.528557 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399601, "decimalLat": -27.496558 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069897, "decimalLat": -27.510492 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082225, "decimalLat": -27.515279 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060776, "decimalLat": -27.544065 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.767908, "decimalLat": -35.016551 }, "geometry": { "type": "Point", "coordinates": [ 138.768, -35.017 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092621, "decimalLat": -27.528462 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103981, "decimalLat": -27.529013 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.873362, "decimalLat": -19.12283 }, "geometry": { "type": "Point", "coordinates": [ 146.873, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.900685, "decimalLat": -37.639799 }, "geometry": { "type": "Point", "coordinates": [ 143.901, -37.64 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.368591, "decimalLat": -27.910376 }, "geometry": { "type": "Point", "coordinates": [ 152.369, -27.91 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111602, "decimalLat": -27.527942 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376603, "decimalLat": -28.25321 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.864903, "decimalLat": -28.214114 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -28.214 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058707, "decimalLat": -27.547393 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111357, "decimalLat": -27.527187 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046386, "decimalLat": -27.263097 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.263 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27565, "decimalLat": -38.362566 }, "geometry": { "type": "Point", "coordinates": [ 145.276, -38.363 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.445392, "decimalLat": -28.105789 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.614851, "decimalLat": -34.905347 }, "geometry": { "type": "Point", "coordinates": [ 138.615, -34.905 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314484, "decimalLat": -38.374504 }, "geometry": { "type": "Point", "coordinates": [ 145.314, -38.375 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058142, "decimalLat": -27.550665 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.910225, "decimalLat": -38.376073 }, "geometry": { "type": "Point", "coordinates": [ 144.91, -38.376 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.271615, "decimalLat": -38.133642 }, "geometry": { "type": "Point", "coordinates": [ 145.272, -38.134 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056383, "decimalLat": -27.544357 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.119495, "decimalLat": -27.523019 }, "geometry": { "type": "Point", "coordinates": [ 153.119, -27.523 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093629, "decimalLat": -27.524718 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.864492, "decimalLat": -38.152033 }, "geometry": { "type": "Point", "coordinates": [ 141.864, -38.152 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053782, "decimalLat": -27.736553 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.737 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.040324, "decimalLat": -27.536284 }, "geometry": { "type": "Point", "coordinates": [ 153.04, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.538467, "decimalLat": -38.518822 }, "geometry": { "type": "Point", "coordinates": [ 143.538, -38.519 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.717494, "decimalLat": -32.66296 }, "geometry": { "type": "Point", "coordinates": [ 151.717, -32.663 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.434617, "decimalLat": -37.640953 }, "geometry": { "type": "Point", "coordinates": [ 144.435, -37.641 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.601756, "decimalLat": -34.961021 }, "geometry": { "type": "Point", "coordinates": [ 138.602, -34.961 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058949, "decimalLat": -27.551534 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058963, "decimalLat": -27.547938 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090956, "decimalLat": -27.527072 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377456, "decimalLat": -28.253991 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729981, "decimalLat": -34.890079 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.608394, "decimalLat": -35.012289 }, "geometry": { "type": "Point", "coordinates": [ 138.608, -35.012 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092179, "decimalLat": -27.527392 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093052, "decimalLat": -27.524369 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.307883, "decimalLat": -38.384727 }, "geometry": { "type": "Point", "coordinates": [ 145.308, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074966, "decimalLat": -27.546099 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111265, "decimalLat": -27.52719 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719531, "decimalLat": -34.860384 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.86 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 145.456847, "decimalLat": -17.961042 }, "geometry": { "type": "Point", "coordinates": [ 145.457, -17.961 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110403, "decimalLat": -27.527601 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091468, "decimalLat": -27.527341 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.256445, "decimalLat": -38.137799 }, "geometry": { "type": "Point", "coordinates": [ 145.256, -38.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102847, "decimalLat": -27.527308 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104591, "decimalLat": -27.530854 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070433, "decimalLat": -27.509411 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377382, "decimalLat": -28.254203 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073379, "decimalLat": -27.542685 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.489962, "decimalLat": -28.709547 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.450049, "decimalLat": -28.094804 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.86022, "decimalLat": -27.493706 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.494587, "decimalLat": -35.706851 }, "geometry": { "type": "Point", "coordinates": [ 137.495, -35.707 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093727, "decimalLat": -27.524889 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163589, "decimalLat": -38.670976 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057524, "decimalLat": -27.551011 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.93139, "decimalLat": -26.250646 }, "geometry": { "type": "Point", "coordinates": [ 151.931, -26.251 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093685, "decimalLat": -27.526989 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091784, "decimalLat": -27.525543 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.731292, "decimalLat": -37.923255 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091068, "decimalLat": -27.527101 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.724992, "decimalLat": -27.428708 }, "geometry": { "type": "Point", "coordinates": [ 151.725, -27.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.160433, "decimalLat": -27.659889 }, "geometry": { "type": "Point", "coordinates": [ 153.16, -27.66 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.915468, "decimalLat": -37.65313 }, "geometry": { "type": "Point", "coordinates": [ 143.915, -37.653 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103276, "decimalLat": -27.528525 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054832, "decimalLat": -27.538663 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054602, "decimalLat": -27.550325 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.603419, "decimalLat": -38.329333 }, "geometry": { "type": "Point", "coordinates": [ 141.603, -38.329 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072832, "decimalLat": -27.544028 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720998, "decimalLat": -34.892572 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.365659, "decimalLat": -38.313615 }, "geometry": { "type": "Point", "coordinates": [ 142.366, -38.314 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.731837, "decimalLat": -38.62932 }, "geometry": { "type": "Point", "coordinates": [ 145.732, -38.629 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105189, "decimalLat": -27.529613 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.912203, "decimalLat": -27.649418 }, "geometry": { "type": "Point", "coordinates": [ 151.912, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363592, "decimalLat": -38.319278 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.711531, "decimalLat": -34.904707 }, "geometry": { "type": "Point", "coordinates": [ 138.712, -34.905 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069915, "decimalLat": -27.225155 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.225 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107724, "decimalLat": -27.526872 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104084, "decimalLat": -27.530159 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057593, "decimalLat": -27.551715 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112433, "decimalLat": -27.528114 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092413, "decimalLat": -27.527648 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092335, "decimalLat": -27.524929 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112769, "decimalLat": -27.527673 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.849399, "decimalLat": -34.080524 }, "geometry": { "type": "Point", "coordinates": [ 150.849, -34.081 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103744, "decimalLat": -27.530424 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090281, "decimalLat": -27.526661 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091755, "decimalLat": -27.526815 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.687637, "decimalLat": -34.924553 }, "geometry": { "type": "Point", "coordinates": [ 138.688, -34.925 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.698849, "decimalLat": -34.96265 }, "geometry": { "type": "Point", "coordinates": [ 138.699, -34.963 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268323, "decimalLat": -38.131041 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.007203, "decimalLat": -26.671719 }, "geometry": { "type": "Point", "coordinates": [ 152.007, -26.672 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.689912, "decimalLat": -34.929553 }, "geometry": { "type": "Point", "coordinates": [ 138.69, -34.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.867247, "decimalLat": -19.142892 }, "geometry": { "type": "Point", "coordinates": [ 146.867, -19.143 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.424423, "decimalLat": -27.240016 }, "geometry": { "type": "Point", "coordinates": [ 152.424, -27.24 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057031, "decimalLat": -27.551014 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.549728, "decimalLat": -27.716108 }, "geometry": { "type": "Point", "coordinates": [ 151.55, -27.716 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.094654, "decimalLat": -27.510381 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110696, "decimalLat": -27.527607 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073027, "decimalLat": -27.543404 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.794091, "decimalLat": -36.793808 }, "geometry": { "type": "Point", "coordinates": [ 145.794, -36.794 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720566, "decimalLat": -34.887151 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.573013, "decimalLat": -34.768947 }, "geometry": { "type": "Point", "coordinates": [ 146.573, -34.769 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.067814, "decimalLat": -27.544315 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733292, "decimalLat": -34.890867 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.744166, "decimalLat": -34.831308 }, "geometry": { "type": "Point", "coordinates": [ 138.744, -34.831 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.686004, "decimalLat": -35.130765 }, "geometry": { "type": "Point", "coordinates": [ 138.686, -35.131 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.753818, "decimalLat": -37.913235 }, "geometry": { "type": "Point", "coordinates": [ 147.754, -37.913 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073892, "decimalLat": -27.545896 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992373, "decimalLat": -27.822698 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719293, "decimalLat": -34.986404 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.986 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.691347, "decimalLat": -34.899727 }, "geometry": { "type": "Point", "coordinates": [ 138.691, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720914, "decimalLat": -34.892659 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.954645, "decimalLat": -26.515852 }, "geometry": { "type": "Point", "coordinates": [ 151.955, -26.516 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.905242, "decimalLat": -26.589626 }, "geometry": { "type": "Point", "coordinates": [ 151.905, -26.59 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.858401, "decimalLat": -28.09199 }, "geometry": { "type": "Point", "coordinates": [ 152.858, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103673, "decimalLat": -27.530675 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730717, "decimalLat": -34.868979 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.869 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.088528, "decimalLat": -37.633621 }, "geometry": { "type": "Point", "coordinates": [ 144.089, -37.634 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402001, "decimalLat": -28.256991 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732236, "decimalLat": -34.890074 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.073639, "decimalLat": -33.144183 }, "geometry": { "type": "Point", "coordinates": [ 151.074, -33.144 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.633604, "decimalLat": -35.007928 }, "geometry": { "type": "Point", "coordinates": [ 138.634, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107273, "decimalLat": -27.52732 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.040418, "decimalLat": -27.536294 }, "geometry": { "type": "Point", "coordinates": [ 153.04, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.901148, "decimalLat": -37.641822 }, "geometry": { "type": "Point", "coordinates": [ 143.901, -37.642 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092515, "decimalLat": -27.528509 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.183644, "decimalLat": -37.882561 }, "geometry": { "type": "Point", "coordinates": [ 144.184, -37.883 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.865477, "decimalLat": -27.527298 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091692, "decimalLat": -27.527099 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.57408, "decimalLat": -34.766962 }, "geometry": { "type": "Point", "coordinates": [ 146.574, -34.767 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085239, "decimalLat": -27.506961 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.267369, "decimalLat": -27.314778 }, "geometry": { "type": "Point", "coordinates": [ 152.267, -27.315 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103327, "decimalLat": -28.255358 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.675034, "decimalLat": -34.793435 }, "geometry": { "type": "Point", "coordinates": [ 138.675, -34.793 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.559433, "decimalLat": -35.032867 }, "geometry": { "type": "Point", "coordinates": [ 138.559, -35.033 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.739585, "decimalLat": -35.146771 }, "geometry": { "type": "Point", "coordinates": [ 138.74, -35.147 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656193, "decimalLat": -35.001122 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.001 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103643, "decimalLat": -27.53006 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078383, "decimalLat": -27.513113 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.273393, "decimalLat": -37.873175 }, "geometry": { "type": "Point", "coordinates": [ 144.273, -37.873 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092492, "decimalLat": -27.526832 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110188, "decimalLat": -27.527412 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090677, "decimalLat": -27.526453 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092997, "decimalLat": -27.524277 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.851394, "decimalLat": -26.492269 }, "geometry": { "type": "Point", "coordinates": [ 151.851, -26.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068085, "decimalLat": -27.545172 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.852496, "decimalLat": -34.070002 }, "geometry": { "type": "Point", "coordinates": [ 150.852, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.994244, "decimalLat": -27.823476 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.112961, "decimalLat": -30.263303 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -30.263 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.709142, "decimalLat": -34.904197 }, "geometry": { "type": "Point", "coordinates": [ 138.709, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082525, "decimalLat": -27.51045 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.046574, "decimalLat": -27.274817 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -27.275 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401372, "decimalLat": -28.260433 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363203, "decimalLat": -38.318505 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868441, "decimalLat": -19.125673 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.126 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066312, "decimalLat": -27.539681 }, "geometry": { "type": "Point", "coordinates": [ 153.066, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.944093, "decimalLat": -27.140473 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -27.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108179, "decimalLat": -27.527255 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108178, "decimalLat": -27.527196 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.632479, "decimalLat": -27.437048 }, "geometry": { "type": "Point", "coordinates": [ 152.632, -27.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090661, "decimalLat": -27.527043 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.245163, "decimalLat": -33.171947 }, "geometry": { "type": "Point", "coordinates": [ 151.245, -33.172 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.94325, "decimalLat": -27.394846 }, "geometry": { "type": "Point", "coordinates": [ 151.943, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071747, "decimalLat": -27.540054 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.045485, "decimalLat": -27.258725 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.259 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057799, "decimalLat": -27.551125 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085483, "decimalLat": -27.506808 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109717, "decimalLat": -27.529731 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.094986, "decimalLat": -33.076233 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.870885, "decimalLat": -26.556562 }, "geometry": { "type": "Point", "coordinates": [ 151.871, -26.557 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108289, "decimalLat": -27.527148 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092342, "decimalLat": -27.528335 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.522063, "decimalLat": -27.425988 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -27.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.966278, "decimalLat": -28.069569 }, "geometry": { "type": "Point", "coordinates": [ 152.966, -28.07 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.524481, "decimalLat": -38.826513 }, "geometry": { "type": "Point", "coordinates": [ 143.524, -38.827 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10413, "decimalLat": -27.527466 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093098, "decimalLat": -27.523891 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109003, "decimalLat": -27.527194 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.922078, "decimalLat": -38.059011 }, "geometry": { "type": "Point", "coordinates": [ 141.922, -38.059 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712419, "decimalLat": -34.893147 }, "geometry": { "type": "Point", "coordinates": [ 138.712, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.734587, "decimalLat": -31.540287 }, "geometry": { "type": "Point", "coordinates": [ 151.735, -31.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084469, "decimalLat": -27.523801 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092174, "decimalLat": -27.527228 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092041, "decimalLat": -27.525945 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870498, "decimalLat": -19.125314 }, "geometry": { "type": "Point", "coordinates": [ 146.87, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244503, "decimalLat": -27.517772 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.518 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076105, "decimalLat": -27.555762 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.556 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091636, "decimalLat": -27.527145 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.538495, "decimalLat": -27.431817 }, "geometry": { "type": "Point", "coordinates": [ 153.538, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.269738, "decimalLat": -38.132196 }, "geometry": { "type": "Point", "coordinates": [ 145.27, -38.132 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.03444, "decimalLat": -27.358838 }, "geometry": { "type": "Point", "coordinates": [ 152.034, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059465, "decimalLat": -27.548436 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.896046, "decimalLat": -27.592569 }, "geometry": { "type": "Point", "coordinates": [ 151.896, -27.593 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.750632, "decimalLat": -38.552103 }, "geometry": { "type": "Point", "coordinates": [ 143.751, -38.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103378, "decimalLat": -27.529951 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111818, "decimalLat": -27.529122 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106533, "decimalLat": -27.529102 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401969, "decimalLat": -28.260205 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.046545, "decimalLat": -27.53927 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082703, "decimalLat": -27.506238 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068401, "decimalLat": -27.545612 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388004, "decimalLat": -38.358244 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.358 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.783352, "decimalLat": -19.133877 }, "geometry": { "type": "Point", "coordinates": [ 146.783, -19.134 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06012, "decimalLat": -27.549462 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085997, "decimalLat": -27.479947 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091761, "decimalLat": -27.527131 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.088167, "decimalLat": -27.61558 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -27.616 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072326, "decimalLat": -27.545368 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.553567, "decimalLat": -38.752798 }, "geometry": { "type": "Point", "coordinates": [ 143.554, -38.753 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.151142, "decimalLat": -27.583787 }, "geometry": { "type": "Point", "coordinates": [ 153.151, -27.584 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.160717, "decimalLat": -27.546956 }, "geometry": { "type": "Point", "coordinates": [ 152.161, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.896224, "decimalLat": -37.657298 }, "geometry": { "type": "Point", "coordinates": [ 143.896, -37.657 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036536, "decimalLat": -27.533028 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092272, "decimalLat": -27.525372 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.978078, "decimalLat": -38.497294 }, "geometry": { "type": "Point", "coordinates": [ 142.978, -38.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092273, "decimalLat": -27.525595 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.652312, "decimalLat": -27.670569 }, "geometry": { "type": "Point", "coordinates": [ 151.652, -27.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092044, "decimalLat": -27.527192 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092491, "decimalLat": -27.528164 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.412003, "decimalLat": -27.828676 }, "geometry": { "type": "Point", "coordinates": [ 152.412, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716692, "decimalLat": -34.89316 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.506725, "decimalLat": -27.708539 }, "geometry": { "type": "Point", "coordinates": [ 151.507, -27.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.072861, "decimalLat": -37.718722 }, "geometry": { "type": "Point", "coordinates": [ 144.073, -37.719 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.058333, "decimalLat": -27.267634 }, "geometry": { "type": "Point", "coordinates": [ 152.058, -27.268 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.302196, "decimalLat": -38.952397 }, "geometry": { "type": "Point", "coordinates": [ 146.302, -38.952 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106816, "decimalLat": -27.528992 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093208, "decimalLat": -27.524063 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720097, "decimalLat": -34.892223 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072222, "decimalLat": -27.54367 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090878, "decimalLat": -27.526603 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113472, "decimalLat": -27.528551 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054403, "decimalLat": -27.552235 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377204, "decimalLat": -28.253572 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.462802, "decimalLat": -27.355949 }, "geometry": { "type": "Point", "coordinates": [ 152.463, -27.356 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111206, "decimalLat": -27.528813 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.077052, "decimalLat": -27.541203 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163716, "decimalLat": -38.671036 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058366, "decimalLat": -27.548372 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095061, "decimalLat": -33.076242 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082748, "decimalLat": -27.507638 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.668343, "decimalLat": -34.961348 }, "geometry": { "type": "Point", "coordinates": [ 138.668, -34.961 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234329, "decimalLat": -27.500264 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092521, "decimalLat": -27.52742 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076661, "decimalLat": -27.509067 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074647, "decimalLat": -27.358627 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.955021, "decimalLat": -27.445983 }, "geometry": { "type": "Point", "coordinates": [ 151.955, -27.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.668092, "decimalLat": -38.764328 }, "geometry": { "type": "Point", "coordinates": [ 143.668, -38.764 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703766, "decimalLat": -34.903183 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.274952, "decimalLat": -38.134977 }, "geometry": { "type": "Point", "coordinates": [ 145.275, -38.135 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083719, "decimalLat": -27.52979 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057538, "decimalLat": -27.550942 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870403, "decimalLat": -19.125104 }, "geometry": { "type": "Point", "coordinates": [ 146.87, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073251, "decimalLat": -27.547353 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082428, "decimalLat": -27.507881 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.892013, "decimalLat": -27.597528 }, "geometry": { "type": "Point", "coordinates": [ 151.892, -27.598 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.886829, "decimalLat": -37.590772 }, "geometry": { "type": "Point", "coordinates": [ 143.887, -37.591 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.047639, "decimalLat": -38.266128 }, "geometry": { "type": "Point", "coordinates": [ 145.048, -38.266 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722302, "decimalLat": -34.889829 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.280124, "decimalLat": -38.941543 }, "geometry": { "type": "Point", "coordinates": [ 146.28, -38.942 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110196, "decimalLat": -27.529866 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.607637, "decimalLat": -38.772445 }, "geometry": { "type": "Point", "coordinates": [ 143.608, -38.772 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.429756, "decimalLat": -38.35018 }, "geometry": { "type": "Point", "coordinates": [ 141.43, -38.35 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.106658, "decimalLat": -33.129579 }, "geometry": { "type": "Point", "coordinates": [ 151.107, -33.13 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.526271, "decimalLat": -27.942439 }, "geometry": { "type": "Point", "coordinates": [ 152.526, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.341528, "decimalLat": -27.909062 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084601, "decimalLat": -27.50948 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.867128, "decimalLat": -27.330048 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -27.33 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314079, "decimalLat": -38.376773 }, "geometry": { "type": "Point", "coordinates": [ 145.314, -38.377 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058264, "decimalLat": -27.545966 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.635453, "decimalLat": -38.75553 }, "geometry": { "type": "Point", "coordinates": [ 143.635, -38.756 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.852782, "decimalLat": -38.670725 }, "geometry": { "type": "Point", "coordinates": [ 143.853, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.401765, "decimalLat": -27.456952 }, "geometry": { "type": "Point", "coordinates": [ 152.402, -27.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164122, "decimalLat": -38.671445 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.813862, "decimalLat": -26.36489 }, "geometry": { "type": "Point", "coordinates": [ 151.814, -26.365 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.284191, "decimalLat": -38.139088 }, "geometry": { "type": "Point", "coordinates": [ 145.284, -38.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090706, "decimalLat": -27.526308 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.79029, "decimalLat": -34.876642 }, "geometry": { "type": "Point", "coordinates": [ 138.79, -34.877 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105117, "decimalLat": -27.531293 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084031, "decimalLat": -27.507198 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.769792, "decimalLat": -38.479095 }, "geometry": { "type": "Point", "coordinates": [ 146.77, -38.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.689025, "decimalLat": -34.953705 }, "geometry": { "type": "Point", "coordinates": [ 138.689, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722808, "decimalLat": -34.889719 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39738, "decimalLat": -28.261821 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092117, "decimalLat": -27.525503 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.391888, "decimalLat": -38.392214 }, "geometry": { "type": "Point", "coordinates": [ 145.392, -38.392 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103656, "decimalLat": -27.529924 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30223, "decimalLat": -28.8198 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09216, "decimalLat": -27.526902 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111427, "decimalLat": -27.527627 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.987788, "decimalLat": -27.295025 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -27.295 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.362917, "decimalLat": -38.31859 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.065428, "decimalLat": -38.467549 }, "geometry": { "type": "Point", "coordinates": [ 144.065, -38.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091039, "decimalLat": -27.526411 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.26736, "decimalLat": -38.13149 }, "geometry": { "type": "Point", "coordinates": [ 145.267, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063241, "decimalLat": -27.810184 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.81 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093384, "decimalLat": -27.52389 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037539, "decimalLat": -27.532079 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.777265, "decimalLat": -34.879648 }, "geometry": { "type": "Point", "coordinates": [ 138.777, -34.88 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.652791, "decimalLat": -35.008749 }, "geometry": { "type": "Point", "coordinates": [ 138.653, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198106, "decimalLat": -27.728117 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.728 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.305625, "decimalLat": -28.822499 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.168306, "decimalLat": -37.0514 }, "geometry": { "type": "Point", "coordinates": [ 145.168, -37.051 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083603, "decimalLat": -27.529358 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090822, "decimalLat": -27.52589 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059902, "decimalLat": -27.550534 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091436, "decimalLat": -27.527266 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090683, "decimalLat": -27.033573 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.034 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868408, "decimalLat": -19.126733 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.127 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092335, "decimalLat": -27.527738 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999609, "decimalLat": -27.284095 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.710755, "decimalLat": -27.649212 }, "geometry": { "type": "Point", "coordinates": [ 151.711, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.473001, "decimalLat": -27.543584 }, "geometry": { "type": "Point", "coordinates": [ 152.473, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164143, "decimalLat": -38.671361 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093726, "decimalLat": -27.524877 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053131, "decimalLat": -27.834183 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104691, "decimalLat": -27.529066 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.716338, "decimalLat": -27.567305 }, "geometry": { "type": "Point", "coordinates": [ 151.716, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.077147, "decimalLat": -33.147258 }, "geometry": { "type": "Point", "coordinates": [ 151.077, -33.147 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092361, "decimalLat": -27.528272 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.584507, "decimalLat": -28.138653 }, "geometry": { "type": "Point", "coordinates": [ 152.585, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.663547, "decimalLat": -34.866243 }, "geometry": { "type": "Point", "coordinates": [ 138.664, -34.866 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716767, "decimalLat": -34.871288 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.871 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074464, "decimalLat": -27.579547 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.58 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.108111, "decimalLat": -27.253597 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -27.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.36363, "decimalLat": -38.318565 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.158998, "decimalLat": -27.808844 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -27.809 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.758595, "decimalLat": -38.552937 }, "geometry": { "type": "Point", "coordinates": [ 143.759, -38.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.677142, "decimalLat": -27.98616 }, "geometry": { "type": "Point", "coordinates": [ 152.677, -27.986 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.595337, "decimalLat": -34.773363 }, "geometry": { "type": "Point", "coordinates": [ 146.595, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.039801, "decimalLat": -38.265321 }, "geometry": { "type": "Point", "coordinates": [ 145.04, -38.265 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001166, "decimalLat": -27.284735 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.429956, "decimalLat": -28.106414 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.996658, "decimalLat": -28.524387 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -28.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.726864, "decimalLat": -34.864404 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.864 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.563675, "decimalLat": -34.757417 }, "geometry": { "type": "Point", "coordinates": [ 146.564, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.542074, "decimalLat": -34.917817 }, "geometry": { "type": "Point", "coordinates": [ 138.542, -34.918 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.826933, "decimalLat": -34.692015 }, "geometry": { "type": "Point", "coordinates": [ 138.827, -34.692 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062155, "decimalLat": -27.550076 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Australian Capital Territory", "decimalLon": 148.91, "decimalLat": -35.46 }, "geometry": { "type": "Point", "coordinates": [ 148.91, -35.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439133, "decimalLat": -27.397679 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003633, "decimalLat": -27.413832 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.849273, "decimalLat": -34.08205 }, "geometry": { "type": "Point", "coordinates": [ 150.849, -34.082 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.552032, "decimalLat": -27.978598 }, "geometry": { "type": "Point", "coordinates": [ 152.552, -27.979 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.594386, "decimalLat": -37.331252 }, "geometry": { "type": "Point", "coordinates": [ 144.594, -37.331 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09093, "decimalLat": -27.526974 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110895, "decimalLat": -28.542246 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -28.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.837421, "decimalLat": -26.534694 }, "geometry": { "type": "Point", "coordinates": [ 151.837, -26.535 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081027, "decimalLat": -27.482701 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.483 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.361754, "decimalLat": -38.318353 }, "geometry": { "type": "Point", "coordinates": [ 142.362, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066816, "decimalLat": -27.250419 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.25 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.550031, "decimalLat": -27.814342 }, "geometry": { "type": "Point", "coordinates": [ 151.55, -27.814 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.16885, "decimalLat": -27.624766 }, "geometry": { "type": "Point", "coordinates": [ 153.169, -27.625 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.172683, "decimalLat": -32.737187 }, "geometry": { "type": "Point", "coordinates": [ 152.173, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.401146, "decimalLat": -27.457305 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -27.457 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090933, "decimalLat": -27.526937 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.393143, "decimalLat": -27.288935 }, "geometry": { "type": "Point", "coordinates": [ 152.393, -27.289 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.448638, "decimalLat": -28.094664 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.73737, "decimalLat": -35.952031 }, "geometry": { "type": "Point", "coordinates": [ 136.737, -35.952 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.929397, "decimalLat": -27.419547 }, "geometry": { "type": "Point", "coordinates": [ 151.929, -27.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993392, "decimalLat": -27.283925 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868225, "decimalLat": -19.128711 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109031, "decimalLat": -27.527264 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081476, "decimalLat": -27.507982 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.274812, "decimalLat": -37.746433 }, "geometry": { "type": "Point", "coordinates": [ 144.275, -37.746 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89493, "decimalLat": -30.440675 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -30.441 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072487, "decimalLat": -27.544785 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108169, "decimalLat": -27.527235 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.142778, "decimalLat": -27.624803 }, "geometry": { "type": "Point", "coordinates": [ 153.143, -27.625 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233411, "decimalLat": -27.939345 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.376424, "decimalLat": -27.901511 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.902 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.670916, "decimalLat": -34.944089 }, "geometry": { "type": "Point", "coordinates": [ 138.671, -34.944 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.86078, "decimalLat": -38.667992 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104553, "decimalLat": -27.529452 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092969, "decimalLat": -27.528335 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.111283, "decimalLat": -27.566475 }, "geometry": { "type": "Point", "coordinates": [ 152.111, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068692, "decimalLat": -27.225178 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.225 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105219, "decimalLat": -27.531409 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.738701, "decimalLat": -26.356027 }, "geometry": { "type": "Point", "coordinates": [ 151.739, -26.356 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09089, "decimalLat": -27.52689 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.840879, "decimalLat": -26.513626 }, "geometry": { "type": "Point", "coordinates": [ 151.841, -26.514 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058327, "decimalLat": -27.547268 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.736198, "decimalLat": -34.831007 }, "geometry": { "type": "Point", "coordinates": [ 138.736, -34.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.296158, "decimalLat": -38.382971 }, "geometry": { "type": "Point", "coordinates": [ 145.296, -38.383 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.767686, "decimalLat": -38.406519 }, "geometry": { "type": "Point", "coordinates": [ 142.768, -38.407 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09354, "decimalLat": -27.528381 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.043725, "decimalLat": -27.537769 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090639, "decimalLat": -27.526504 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.701665, "decimalLat": -34.902589 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.269577, "decimalLat": -37.208679 }, "geometry": { "type": "Point", "coordinates": [ 148.27, -37.209 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.869233, "decimalLat": -19.125169 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400582, "decimalLat": -28.260501 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.746035, "decimalLat": -28.259195 }, "geometry": { "type": "Point", "coordinates": [ 152.746, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729627, "decimalLat": -34.86719 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.867 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.818252, "decimalLat": -26.582475 }, "geometry": { "type": "Point", "coordinates": [ 151.818, -26.582 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058107, "decimalLat": -27.551941 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992632, "decimalLat": -27.822928 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086628, "decimalLat": -27.505998 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082261, "decimalLat": -27.508325 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375181, "decimalLat": -28.252245 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09072, "decimalLat": -27.526257 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.559508, "decimalLat": -27.809713 }, "geometry": { "type": "Point", "coordinates": [ 151.56, -27.81 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.631775, "decimalLat": -27.43797 }, "geometry": { "type": "Point", "coordinates": [ 152.632, -27.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.672869, "decimalLat": -34.866131 }, "geometry": { "type": "Point", "coordinates": [ 138.673, -34.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233063, "decimalLat": -27.533495 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093105, "decimalLat": -27.526508 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400596, "decimalLat": -28.257714 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164306, "decimalLat": -38.671263 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10897, "decimalLat": -27.526601 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.476649, "decimalLat": -37.794699 }, "geometry": { "type": "Point", "coordinates": [ 141.477, -37.795 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749938, "decimalLat": -26.154991 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072385, "decimalLat": -27.543777 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.060928, "decimalLat": -27.715061 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -27.715 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.617461, "decimalLat": -34.901251 }, "geometry": { "type": "Point", "coordinates": [ 138.617, -34.901 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093139, "decimalLat": -27.52634 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 139.156417, "decimalLat": -34.722653 }, "geometry": { "type": "Point", "coordinates": [ 139.156, -34.723 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11278, "decimalLat": -27.527947 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.489583, "decimalLat": -27.507885 }, "geometry": { "type": "Point", "coordinates": [ 152.49, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37402, "decimalLat": -27.915002 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.930405, "decimalLat": -27.324788 }, "geometry": { "type": "Point", "coordinates": [ 151.93, -27.325 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092803, "decimalLat": -27.525347 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.731383, "decimalLat": -37.923613 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376944, "decimalLat": -28.253987 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107345, "decimalLat": -27.527138 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061419, "decimalLat": -27.534614 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637767, "decimalLat": -35.005672 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107473, "decimalLat": -27.527144 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.381149, "decimalLat": -27.955166 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.955 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.574512, "decimalLat": -29.862266 }, "geometry": { "type": "Point", "coordinates": [ 150.575, -29.862 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090438, "decimalLat": -27.526801 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163711, "decimalLat": -38.671188 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.869978, "decimalLat": -19.119282 }, "geometry": { "type": "Point", "coordinates": [ 146.87, -19.119 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.601592, "decimalLat": -38.348275 }, "geometry": { "type": "Point", "coordinates": [ 141.602, -38.348 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.269272, "decimalLat": -37.204342 }, "geometry": { "type": "Point", "coordinates": [ 148.269, -37.204 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003193, "decimalLat": -27.412727 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072682, "decimalLat": -27.543345 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103615, "decimalLat": -27.529943 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.707114, "decimalLat": -34.905362 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.905 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.799637, "decimalLat": -34.150154 }, "geometry": { "type": "Point", "coordinates": [ 150.8, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093202, "decimalLat": -27.52408 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003068, "decimalLat": -27.413092 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.448373, "decimalLat": -28.67688 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.677 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110994, "decimalLat": -27.529811 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082656, "decimalLat": -27.507213 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092748, "decimalLat": -27.528263 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092811, "decimalLat": -27.528043 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.651094, "decimalLat": -27.629057 }, "geometry": { "type": "Point", "coordinates": [ 151.651, -27.629 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.901148, "decimalLat": -37.641822 }, "geometry": { "type": "Point", "coordinates": [ 143.901, -37.642 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.653566, "decimalLat": -38.774255 }, "geometry": { "type": "Point", "coordinates": [ 143.654, -38.774 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.866004, "decimalLat": -28.211604 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.212 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072261, "decimalLat": -27.545573 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.617204, "decimalLat": -34.903883 }, "geometry": { "type": "Point", "coordinates": [ 138.617, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004442, "decimalLat": -27.414775 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057878, "decimalLat": -27.551222 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.892651, "decimalLat": -27.603 }, "geometry": { "type": "Point", "coordinates": [ 151.893, -27.603 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192658, "decimalLat": -27.700883 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.512208, "decimalLat": -34.582303 }, "geometry": { "type": "Point", "coordinates": [ 135.512, -34.582 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110236, "decimalLat": -27.527456 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071645, "decimalLat": -27.510848 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164036, "decimalLat": -38.671453 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10439, "decimalLat": -27.52967 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.987808, "decimalLat": -36.571112 }, "geometry": { "type": "Point", "coordinates": [ 149.988, -36.571 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091308, "decimalLat": -27.527456 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.972171, "decimalLat": -30.428338 }, "geometry": { "type": "Point", "coordinates": [ 152.972, -30.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107641, "decimalLat": -27.527147 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.047056, "decimalLat": -38.265063 }, "geometry": { "type": "Point", "coordinates": [ 145.047, -38.265 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.691662, "decimalLat": -34.971413 }, "geometry": { "type": "Point", "coordinates": [ 138.692, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376056, "decimalLat": -28.252755 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.611274, "decimalLat": -27.332844 }, "geometry": { "type": "Point", "coordinates": [ 152.611, -27.333 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.585663, "decimalLat": -34.764713 }, "geometry": { "type": "Point", "coordinates": [ 146.586, -34.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.190944, "decimalLat": -27.70065 }, "geometry": { "type": "Point", "coordinates": [ 153.191, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.989503, "decimalLat": -27.169883 }, "geometry": { "type": "Point", "coordinates": [ 152.99, -27.17 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163942, "decimalLat": -38.671192 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721086, "decimalLat": -34.892675 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059846, "decimalLat": -27.549888 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.999307, "decimalLat": -38.825202 }, "geometry": { "type": "Point", "coordinates": [ 145.999, -38.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.387619, "decimalLat": -26.455694 }, "geometry": { "type": "Point", "coordinates": [ 151.388, -26.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.127413, "decimalLat": -37.899015 }, "geometry": { "type": "Point", "coordinates": [ 144.127, -37.899 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.515025, "decimalLat": -38.832387 }, "geometry": { "type": "Point", "coordinates": [ 143.515, -38.832 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061019, "decimalLat": -27.548431 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733157, "decimalLat": -34.887417 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.613666, "decimalLat": -38.791767 }, "geometry": { "type": "Point", "coordinates": [ 143.614, -38.792 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.174374, "decimalLat": -38.388434 }, "geometry": { "type": "Point", "coordinates": [ 145.174, -38.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109389, "decimalLat": -27.529661 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400765, "decimalLat": -28.257909 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071156, "decimalLat": -27.544339 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400148, "decimalLat": -28.258419 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.51327, "decimalLat": -27.422333 }, "geometry": { "type": "Point", "coordinates": [ 153.513, -27.422 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091109, "decimalLat": -27.526653 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090598, "decimalLat": -27.526431 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.536147, "decimalLat": -38.809662 }, "geometry": { "type": "Point", "coordinates": [ 143.536, -38.81 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.218781, "decimalLat": -38.136794 }, "geometry": { "type": "Point", "coordinates": [ 145.219, -38.137 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.99373, "decimalLat": -27.823715 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999904, "decimalLat": -27.284138 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.610206, "decimalLat": -36.941383 }, "geometry": { "type": "Point", "coordinates": [ 145.61, -36.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.894935, "decimalLat": -27.597987 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.598 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.357987, "decimalLat": -27.941617 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108892, "decimalLat": -27.527006 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08284, "decimalLat": -27.515392 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.952805, "decimalLat": -27.258808 }, "geometry": { "type": "Point", "coordinates": [ 152.953, -27.259 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.398496, "decimalLat": -28.258996 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.948256, "decimalLat": -27.469832 }, "geometry": { "type": "Point", "coordinates": [ 151.948, -27.47 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.151477, "decimalLat": -37.806893 }, "geometry": { "type": "Point", "coordinates": [ 144.151, -37.807 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189153, "decimalLat": -27.702277 }, "geometry": { "type": "Point", "coordinates": [ 153.189, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163772, "decimalLat": -38.671038 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.888202, "decimalLat": -37.587033 }, "geometry": { "type": "Point", "coordinates": [ 143.888, -37.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901213, "decimalLat": -31.443092 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.51323, "decimalLat": -38.834988 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.835 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08432, "decimalLat": -27.509378 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164003, "decimalLat": -38.671167 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19873, "decimalLat": -27.491395 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.014677, "decimalLat": -38.577737 }, "geometry": { "type": "Point", "coordinates": [ 146.015, -38.578 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090743, "decimalLat": -27.526893 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722375, "decimalLat": -34.892413 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.045229, "decimalLat": -27.258265 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01339, "decimalLat": -30.416829 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -30.417 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10818, "decimalLat": -27.527048 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108185, "decimalLat": -27.527315 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.934309, "decimalLat": -27.572242 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -27.572 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731423, "decimalLat": -34.890928 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.999339, "decimalLat": -38.825171 }, "geometry": { "type": "Point", "coordinates": [ 145.999, -38.825 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.012348, "decimalLat": -26.397543 }, "geometry": { "type": "Point", "coordinates": [ 153.012, -26.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.106501, "decimalLat": -27.560887 }, "geometry": { "type": "Point", "coordinates": [ 152.107, -27.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.44957, "decimalLat": -26.103565 }, "geometry": { "type": "Point", "coordinates": [ 151.45, -26.104 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070002, "decimalLat": -27.509388 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.773719, "decimalLat": -38.201218 }, "geometry": { "type": "Point", "coordinates": [ 141.774, -38.201 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053732, "decimalLat": -27.543282 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.674667, "decimalLat": -35.083928 }, "geometry": { "type": "Point", "coordinates": [ 138.675, -35.084 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.677936, "decimalLat": -27.987469 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -27.987 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.727231, "decimalLat": -34.86476 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.983305, "decimalLat": -34.093661 }, "geometry": { "type": "Point", "coordinates": [ 150.983, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.451179, "decimalLat": -28.09669 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403431, "decimalLat": -28.260659 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.131453, "decimalLat": -38.175227 }, "geometry": { "type": "Point", "coordinates": [ 145.131, -38.175 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111963, "decimalLat": -27.529139 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400174, "decimalLat": -28.260447 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.92735, "decimalLat": -27.462985 }, "geometry": { "type": "Point", "coordinates": [ 151.927, -27.463 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093032, "decimalLat": -27.52372 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.835785, "decimalLat": -26.544369 }, "geometry": { "type": "Point", "coordinates": [ 151.836, -26.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993145, "decimalLat": -27.823785 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06288, "decimalLat": -27.549667 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.729492, "decimalLat": -33.428038 }, "geometry": { "type": "Point", "coordinates": [ 150.729, -33.428 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.521101, "decimalLat": -34.9273 }, "geometry": { "type": "Point", "coordinates": [ 138.521, -34.927 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.373367, "decimalLat": -27.91063 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.911 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059277, "decimalLat": -27.548453 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110137, "decimalLat": -27.527428 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731544, "decimalLat": -34.889837 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.680094, "decimalLat": -34.961231 }, "geometry": { "type": "Point", "coordinates": [ 138.68, -34.961 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.274963, "decimalLat": -38.133308 }, "geometry": { "type": "Point", "coordinates": [ 145.275, -38.133 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109952, "decimalLat": -27.529247 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.773637, "decimalLat": -27.374888 }, "geometry": { "type": "Point", "coordinates": [ 151.774, -27.375 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068535, "decimalLat": -27.542575 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.854125, "decimalLat": -28.082343 }, "geometry": { "type": "Point", "coordinates": [ 152.854, -28.082 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399225, "decimalLat": -27.497102 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.091003, "decimalLat": -27.678639 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -27.679 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.430007, "decimalLat": -27.492664 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.63821, "decimalLat": -27.792154 }, "geometry": { "type": "Point", "coordinates": [ 151.638, -27.792 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.780555, "decimalLat": -26.134773 }, "geometry": { "type": "Point", "coordinates": [ 151.781, -26.135 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058147, "decimalLat": -27.547368 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.047271, "decimalLat": -38.26762 }, "geometry": { "type": "Point", "coordinates": [ 145.047, -38.268 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103868, "decimalLat": -27.528463 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722243, "decimalLat": -34.89054 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079497, "decimalLat": -27.506684 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09089, "decimalLat": -27.52682 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.544962, "decimalLat": -38.05549 }, "geometry": { "type": "Point", "coordinates": [ 141.545, -38.055 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05731, "decimalLat": -27.552732 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733402, "decimalLat": -34.885956 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1083, "decimalLat": -27.527254 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.627875, "decimalLat": -34.891957 }, "geometry": { "type": "Point", "coordinates": [ 138.628, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.905077, "decimalLat": -28.173591 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -28.174 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713826, "decimalLat": -34.892425 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.672027, "decimalLat": -34.936612 }, "geometry": { "type": "Point", "coordinates": [ 138.672, -34.937 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05737, "decimalLat": -27.551178 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11053, "decimalLat": -27.527715 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.624905, "decimalLat": -34.893541 }, "geometry": { "type": "Point", "coordinates": [ 138.625, -34.894 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05341, "decimalLat": -27.546883 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106629, "decimalLat": -27.528438 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06782, "decimalLat": -27.508754 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.538422, "decimalLat": -27.711563 }, "geometry": { "type": "Point", "coordinates": [ 151.538, -27.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.647505, "decimalLat": -35.008662 }, "geometry": { "type": "Point", "coordinates": [ 138.648, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.108697, "decimalLat": -27.666545 }, "geometry": { "type": "Point", "coordinates": [ 152.109, -27.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377617, "decimalLat": -28.254198 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.890309, "decimalLat": -27.597909 }, "geometry": { "type": "Point", "coordinates": [ 151.89, -27.598 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093568, "decimalLat": -27.527644 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.945495, "decimalLat": -28.125097 }, "geometry": { "type": "Point", "coordinates": [ 152.945, -28.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058953, "decimalLat": -27.546268 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.742078, "decimalLat": -35.01928 }, "geometry": { "type": "Point", "coordinates": [ 138.742, -35.019 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.690383, "decimalLat": -37.415403 }, "geometry": { "type": "Point", "coordinates": [ 144.69, -37.415 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402146, "decimalLat": -28.259897 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.570212, "decimalLat": -35.02537 }, "geometry": { "type": "Point", "coordinates": [ 138.57, -35.025 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052266, "decimalLat": -27.553539 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07638, "decimalLat": -27.504203 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.914236, "decimalLat": -34.854982 }, "geometry": { "type": "Point", "coordinates": [ 135.914, -34.855 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.152482, "decimalLat": -27.760059 }, "geometry": { "type": "Point", "coordinates": [ 153.152, -27.76 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.830723, "decimalLat": -26.037292 }, "geometry": { "type": "Point", "coordinates": [ 151.831, -26.037 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.169656, "decimalLat": -27.550387 }, "geometry": { "type": "Point", "coordinates": [ 153.17, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091966, "decimalLat": -27.524309 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.86798, "decimalLat": -19.128405 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.128 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.24059, "decimalLat": -30.99214 }, "geometry": { "type": "Point", "coordinates": [ 150.241, -30.992 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091174, "decimalLat": -27.527844 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.310578, "decimalLat": -38.38495 }, "geometry": { "type": "Point", "coordinates": [ 145.311, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.128281, "decimalLat": -38.384855 }, "geometry": { "type": "Point", "coordinates": [ 145.128, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069846, "decimalLat": -27.544873 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.00092, "decimalLat": -27.284639 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868057, "decimalLat": -19.128481 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.128 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.26823, "decimalLat": -37.816977 }, "geometry": { "type": "Point", "coordinates": [ 144.268, -37.817 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.978219, "decimalLat": -38.4971 }, "geometry": { "type": "Point", "coordinates": [ 142.978, -38.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073406, "decimalLat": -27.545696 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992589, "decimalLat": -27.82388 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290727, "decimalLat": -37.874171 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.874 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400733, "decimalLat": -28.260297 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.987174, "decimalLat": -26.490952 }, "geometry": { "type": "Point", "coordinates": [ 152.987, -26.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103508, "decimalLat": -27.530435 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1031, "decimalLat": -27.529047 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.903333, "decimalLat": -37.638581 }, "geometry": { "type": "Point", "coordinates": [ 143.903, -37.639 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.18009, "decimalLat": -27.491583 }, "geometry": { "type": "Point", "coordinates": [ 153.18, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073691, "decimalLat": -27.547397 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656747, "decimalLat": -34.865317 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.680925, "decimalLat": -34.972889 }, "geometry": { "type": "Point", "coordinates": [ 138.681, -34.973 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.61505, "decimalLat": -27.614747 }, "geometry": { "type": "Point", "coordinates": [ 152.615, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72229, "decimalLat": -34.8922 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.84552, "decimalLat": -27.33973 }, "geometry": { "type": "Point", "coordinates": [ 152.846, -27.34 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.049481, "decimalLat": -27.549479 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092239, "decimalLat": -27.524945 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.336808, "decimalLat": -32.303904 }, "geometry": { "type": "Point", "coordinates": [ 152.337, -32.304 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.857335, "decimalLat": -38.666747 }, "geometry": { "type": "Point", "coordinates": [ 143.857, -38.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109134, "decimalLat": -27.527232 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.276567, "decimalLat": -27.526647 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.85685, "decimalLat": -19.13856 }, "geometry": { "type": "Point", "coordinates": [ 146.857, -19.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09092, "decimalLat": -27.527066 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.625042, "decimalLat": -34.893601 }, "geometry": { "type": "Point", "coordinates": [ 138.625, -34.894 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.994675, "decimalLat": -26.304521 }, "geometry": { "type": "Point", "coordinates": [ 151.995, -26.305 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092368, "decimalLat": -27.5251 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.14377, "decimalLat": -27.658355 }, "geometry": { "type": "Point", "coordinates": [ 153.144, -27.658 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870438, "decimalLat": -19.123105 }, "geometry": { "type": "Point", "coordinates": [ 146.87, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90187, "decimalLat": -31.4424 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.862477, "decimalLat": -37.183293 }, "geometry": { "type": "Point", "coordinates": [ 140.862, -37.183 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056842, "decimalLat": -27.551504 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.868877, "decimalLat": -28.106086 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110435, "decimalLat": -27.529041 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.640275, "decimalLat": -36.175592 }, "geometry": { "type": "Point", "coordinates": [ 146.64, -36.176 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.268345, "decimalLat": -37.84194 }, "geometry": { "type": "Point", "coordinates": [ 144.268, -37.842 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192314, "decimalLat": -27.701285 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.586201, "decimalLat": -29.857315 }, "geometry": { "type": "Point", "coordinates": [ 150.586, -29.857 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.364933, "decimalLat": -27.922822 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.755377, "decimalLat": -34.878631 }, "geometry": { "type": "Point", "coordinates": [ 138.755, -34.879 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.370712, "decimalLat": -27.83293 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.409866, "decimalLat": -38.004395 }, "geometry": { "type": "Point", "coordinates": [ 144.41, -38.004 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.587897, "decimalLat": -35.045074 }, "geometry": { "type": "Point", "coordinates": [ 138.588, -35.045 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066835, "decimalLat": -27.546851 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.027209, "decimalLat": -27.650609 }, "geometry": { "type": "Point", "coordinates": [ 152.027, -27.651 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.013961, "decimalLat": -37.746425 }, "geometry": { "type": "Point", "coordinates": [ 142.014, -37.746 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.835717, "decimalLat": -34.879411 }, "geometry": { "type": "Point", "coordinates": [ 146.836, -34.879 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.237762, "decimalLat": -27.316438 }, "geometry": { "type": "Point", "coordinates": [ 152.238, -27.316 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.970421, "decimalLat": -27.42837 }, "geometry": { "type": "Point", "coordinates": [ 151.97, -27.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1682, "decimalLat": -27.546843 }, "geometry": { "type": "Point", "coordinates": [ 153.168, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.801957, "decimalLat": -27.541217 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074736, "decimalLat": -27.545961 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074155, "decimalLat": -27.545944 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093478, "decimalLat": -27.525266 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073122, "decimalLat": -27.545558 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.73468, "decimalLat": -37.9222 }, "geometry": { "type": "Point", "coordinates": [ 147.735, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092461, "decimalLat": -27.527 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.375597, "decimalLat": -27.916936 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069977, "decimalLat": -27.510651 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112202, "decimalLat": -27.527798 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072982, "decimalLat": -27.542176 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06455, "decimalLat": -27.5485 }, "geometry": { "type": "Point", "coordinates": [ 153.065, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.03832, "decimalLat": -27.26029 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -27.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08653, "decimalLat": -27.51002 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08695, "decimalLat": -27.69515 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.695 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092558, "decimalLat": -27.542722 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197708, "decimalLat": -27.736797 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.737 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.899463, "decimalLat": -37.552429 }, "geometry": { "type": "Point", "coordinates": [ 143.899, -37.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734126, "decimalLat": -34.932707 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004319, "decimalLat": -27.1395 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.139 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "Australian Capital Territory", "decimalLon": 149.11, "decimalLat": -35.42 }, "geometry": { "type": "Point", "coordinates": [ 149.11, -35.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376623, "decimalLat": -28.252994 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Australian Capital Territory", "decimalLon": 148.91, "decimalLat": -35.46 }, "geometry": { "type": "Point", "coordinates": [ 148.91, -35.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090673, "decimalLat": -27.526711 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09283, "decimalLat": -27.527671 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.933625, "decimalLat": -27.329225 }, "geometry": { "type": "Point", "coordinates": [ 151.934, -27.329 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307817, "decimalLat": -29.052694 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -29.053 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.31733, "decimalLat": -26.6029 }, "geometry": { "type": "Point", "coordinates": [ 152.317, -26.603 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722264, "decimalLat": -34.890668 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.270252, "decimalLat": -38.12652 }, "geometry": { "type": "Point", "coordinates": [ 145.27, -38.127 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733576, "decimalLat": -34.890109 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.740447, "decimalLat": -34.836901 }, "geometry": { "type": "Point", "coordinates": [ 138.74, -34.837 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.550735, "decimalLat": -38.388238 }, "geometry": { "type": "Point", "coordinates": [ 141.551, -38.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072673, "decimalLat": -27.543574 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074966, "decimalLat": -27.542065 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093099, "decimalLat": -27.528026 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.975418, "decimalLat": -27.395798 }, "geometry": { "type": "Point", "coordinates": [ 151.975, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108247, "decimalLat": -27.526983 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057486, "decimalLat": -27.551068 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109648, "decimalLat": -27.529699 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091692, "decimalLat": -27.527188 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.868462, "decimalLat": -26.52166 }, "geometry": { "type": "Point", "coordinates": [ 151.868, -26.522 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40069, "decimalLat": -28.258198 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108964, "decimalLat": -27.527262 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393979, "decimalLat": -28.959215 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.897335, "decimalLat": -37.613486 }, "geometry": { "type": "Point", "coordinates": [ 143.897, -37.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363321, "decimalLat": -38.318533 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40065, "decimalLat": -28.257764 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058009, "decimalLat": -27.551571 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402412, "decimalLat": -28.260564 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.682799, "decimalLat": -34.856346 }, "geometry": { "type": "Point", "coordinates": [ 138.683, -34.856 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091612, "decimalLat": -27.527075 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.716308, "decimalLat": -27.567187 }, "geometry": { "type": "Point", "coordinates": [ 151.716, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.353509, "decimalLat": -27.909001 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860674, "decimalLat": -38.66855 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.669 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.807466, "decimalLat": -27.527999 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722418, "decimalLat": -34.89104 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519282, "decimalLat": -30.520446 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103469, "decimalLat": -27.529661 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.109915, "decimalLat": -37.858163 }, "geometry": { "type": "Point", "coordinates": [ 144.11, -37.858 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.037416, "decimalLat": -37.656941 }, "geometry": { "type": "Point", "coordinates": [ 144.037, -37.657 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110894, "decimalLat": -27.528933 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.408328, "decimalLat": -36.744916 }, "geometry": { "type": "Point", "coordinates": [ 145.408, -36.745 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091705, "decimalLat": -27.527229 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163766, "decimalLat": -38.671237 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.076692, "decimalLat": -27.257769 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.047898, "decimalLat": -27.552259 }, "geometry": { "type": "Point", "coordinates": [ 153.048, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103744, "decimalLat": -27.528483 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387771, "decimalLat": -38.354832 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073156, "decimalLat": -27.545513 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.082083, "decimalLat": -27.701139 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.294467, "decimalLat": -28.864571 }, "geometry": { "type": "Point", "coordinates": [ 153.294, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109827, "decimalLat": -27.529481 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.71452, "decimalLat": -38.521329 }, "geometry": { "type": "Point", "coordinates": [ 143.715, -38.521 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749888, "decimalLat": -26.155079 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999035, "decimalLat": -27.283743 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.051406, "decimalLat": -37.455383 }, "geometry": { "type": "Point", "coordinates": [ 144.051, -37.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377504, "decimalLat": -28.253961 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.562513, "decimalLat": -27.792013 }, "geometry": { "type": "Point", "coordinates": [ 151.563, -27.792 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093067, "decimalLat": -27.526246 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.572548, "decimalLat": -35.065804 }, "geometry": { "type": "Point", "coordinates": [ 138.573, -35.066 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103799, "decimalLat": -27.529334 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055987, "decimalLat": -27.552159 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.40423, "decimalLat": -38.358506 }, "geometry": { "type": "Point", "coordinates": [ 146.404, -38.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093184, "decimalLat": -27.528434 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722603, "decimalLat": -34.889588 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.365829, "decimalLat": -38.318239 }, "geometry": { "type": "Point", "coordinates": [ 142.366, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069, "decimalLat": -27.525372 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721309, "decimalLat": -34.890204 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058611, "decimalLat": -27.551544 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.134139, "decimalLat": -27.565408 }, "geometry": { "type": "Point", "coordinates": [ 153.134, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092238, "decimalLat": -27.52748 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.882563, "decimalLat": -26.313279 }, "geometry": { "type": "Point", "coordinates": [ 151.883, -26.313 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.976972, "decimalLat": -27.241846 }, "geometry": { "type": "Point", "coordinates": [ 152.977, -27.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057149, "decimalLat": -27.551085 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719476, "decimalLat": -34.891368 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437718, "decimalLat": -27.400175 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.05922, "decimalLat": -32.737903 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073556, "decimalLat": -27.54711 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 145.674899, "decimalLat": -35.921689 }, "geometry": { "type": "Point", "coordinates": [ 145.675, -35.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111008, "decimalLat": -27.527133 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722575, "decimalLat": -34.889683 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093061, "decimalLat": -27.527761 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105295, "decimalLat": -27.531528 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092423, "decimalLat": -27.528481 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059537, "decimalLat": -27.54879 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164183, "decimalLat": -38.671345 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.189692, "decimalLat": -37.859714 }, "geometry": { "type": "Point", "coordinates": [ 144.19, -37.86 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.124891, "decimalLat": -38.390728 }, "geometry": { "type": "Point", "coordinates": [ 145.125, -38.391 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283212, "decimalLat": -29.029327 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -29.029 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.697867, "decimalLat": -34.933036 }, "geometry": { "type": "Point", "coordinates": [ 138.698, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10258, "decimalLat": -27.52952 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.70177, "decimalLat": -37.76548 }, "geometry": { "type": "Point", "coordinates": [ 145.702, -37.765 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.743591, "decimalLat": -26.463545 }, "geometry": { "type": "Point", "coordinates": [ 151.744, -26.464 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091816, "decimalLat": -27.527104 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104465, "decimalLat": -27.530609 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091964, "decimalLat": -27.527196 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.698228, "decimalLat": -34.932917 }, "geometry": { "type": "Point", "coordinates": [ 138.698, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.645938, "decimalLat": -35.005057 }, "geometry": { "type": "Point", "coordinates": [ 138.646, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091871, "decimalLat": -27.528292 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09162, "decimalLat": -27.52705 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092412, "decimalLat": -27.528258 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.896045, "decimalLat": -25.355972 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -25.356 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074634, "decimalLat": -27.358394 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104926, "decimalLat": -27.529803 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716882, "decimalLat": -34.893435 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.665253, "decimalLat": -34.866092 }, "geometry": { "type": "Point", "coordinates": [ 138.665, -34.866 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.115112, "decimalLat": -27.528623 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.777039, "decimalLat": -26.389495 }, "geometry": { "type": "Point", "coordinates": [ 151.777, -26.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825246, "decimalLat": -29.507805 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.102753, "decimalLat": -27.569922 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.671642, "decimalLat": -35.016328 }, "geometry": { "type": "Point", "coordinates": [ 138.672, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073083, "decimalLat": -27.546799 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004272, "decimalLat": -27.414663 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056453, "decimalLat": -27.546663 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.913641, "decimalLat": -27.648875 }, "geometry": { "type": "Point", "coordinates": [ 151.914, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.886309, "decimalLat": -37.661268 }, "geometry": { "type": "Point", "coordinates": [ 143.886, -37.661 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.727334, "decimalLat": -34.889746 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092243, "decimalLat": -27.525062 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.978194, "decimalLat": -38.497075 }, "geometry": { "type": "Point", "coordinates": [ 142.978, -38.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.546988, "decimalLat": -26.084729 }, "geometry": { "type": "Point", "coordinates": [ 151.547, -26.085 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.595567, "decimalLat": -27.696388 }, "geometry": { "type": "Point", "coordinates": [ 151.596, -27.696 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048732, "decimalLat": -27.526113 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.673287, "decimalLat": -35.013922 }, "geometry": { "type": "Point", "coordinates": [ 138.673, -35.014 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055379, "decimalLat": -27.55219 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.648531, "decimalLat": -34.883873 }, "geometry": { "type": "Point", "coordinates": [ 138.649, -34.884 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.058822, "decimalLat": -27.260042 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -27.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.302428, "decimalLat": -38.38399 }, "geometry": { "type": "Point", "coordinates": [ 145.302, -38.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085556, "decimalLat": -27.507786 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.654799, "decimalLat": -26.401998 }, "geometry": { "type": "Point", "coordinates": [ 152.655, -26.402 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387718, "decimalLat": -38.354801 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.972461, "decimalLat": -26.165098 }, "geometry": { "type": "Point", "coordinates": [ 151.972, -26.165 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993582, "decimalLat": -27.823732 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.310088, "decimalLat": -27.444467 }, "geometry": { "type": "Point", "coordinates": [ 152.31, -27.444 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.841094, "decimalLat": -37.59851 }, "geometry": { "type": "Point", "coordinates": [ 143.841, -37.599 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387584, "decimalLat": -38.354645 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107625, "decimalLat": -27.527231 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.789137, "decimalLat": -27.510273 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.518702, "decimalLat": -34.746659 }, "geometry": { "type": "Point", "coordinates": [ 146.519, -34.747 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075571, "decimalLat": -27.543567 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.402932, "decimalLat": -27.462439 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -27.462 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068692, "decimalLat": -27.225178 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.225 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093352, "decimalLat": -27.524157 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085412, "decimalLat": -27.507298 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.627002, "decimalLat": -34.891675 }, "geometry": { "type": "Point", "coordinates": [ 138.627, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.731057, "decimalLat": -37.923154 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376891, "decimalLat": -28.255031 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054282, "decimalLat": -27.538842 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.732162, "decimalLat": -27.779587 }, "geometry": { "type": "Point", "coordinates": [ 152.732, -27.78 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056505, "decimalLat": -27.544696 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.700231, "decimalLat": -34.997014 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.997 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.977633, "decimalLat": -38.497639 }, "geometry": { "type": "Point", "coordinates": [ 142.978, -38.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.714842, "decimalLat": -34.893805 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.894 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.991822, "decimalLat": -27.428314 }, "geometry": { "type": "Point", "coordinates": [ 151.992, -27.428 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.067255, "decimalLat": -27.861501 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.862 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.514542, "decimalLat": -38.835617 }, "geometry": { "type": "Point", "coordinates": [ 143.515, -38.836 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.991554, "decimalLat": -27.533461 }, "geometry": { "type": "Point", "coordinates": [ 151.992, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081671, "decimalLat": -27.508355 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.046182, "decimalLat": -38.433031 }, "geometry": { "type": "Point", "coordinates": [ 145.046, -38.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058422, "decimalLat": -27.547299 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109328, "decimalLat": -27.529857 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733277, "decimalLat": -34.874546 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.875 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086574, "decimalLat": -27.507984 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40089, "decimalLat": -28.26038 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.892277, "decimalLat": -27.601408 }, "geometry": { "type": "Point", "coordinates": [ 151.892, -27.601 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110731, "decimalLat": -27.527502 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822328, "decimalLat": -34.101897 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059141, "decimalLat": -27.552009 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234727, "decimalLat": -27.971311 }, "geometry": { "type": "Point", "coordinates": [ 153.235, -27.971 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103348, "decimalLat": -27.529091 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112319, "decimalLat": -27.528847 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.429529, "decimalLat": -28.157351 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.690077, "decimalLat": -34.954297 }, "geometry": { "type": "Point", "coordinates": [ 138.69, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.371203, "decimalLat": -27.906278 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092064, "decimalLat": -27.527129 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732117, "decimalLat": -34.890411 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749888, "decimalLat": -26.155079 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.743106, "decimalLat": -27.881453 }, "geometry": { "type": "Point", "coordinates": [ 152.743, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112687, "decimalLat": -27.528653 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090439, "decimalLat": -27.526987 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.673436, "decimalLat": -34.930914 }, "geometry": { "type": "Point", "coordinates": [ 138.673, -34.931 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.124444, "decimalLat": -37.741667 }, "geometry": { "type": "Point", "coordinates": [ 145.124, -37.742 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060283, "decimalLat": -27.546283 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092976, "decimalLat": -27.524635 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.549657, "decimalLat": -37.720503 }, "geometry": { "type": "Point", "coordinates": [ 141.55, -37.721 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.378563, "decimalLat": -27.906045 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.668921, "decimalLat": -38.037138 }, "geometry": { "type": "Point", "coordinates": [ 141.669, -38.037 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090871, "decimalLat": -27.527835 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.406817, "decimalLat": -28.980069 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.98 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.496007, "decimalLat": -28.051814 }, "geometry": { "type": "Point", "coordinates": [ 151.496, -28.052 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718701, "decimalLat": -34.932539 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108665, "decimalLat": -27.527213 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.310002, "decimalLat": -37.312829 }, "geometry": { "type": "Point", "coordinates": [ 144.31, -37.313 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702408, "decimalLat": -34.900618 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.901 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.367001, "decimalLat": -38.315479 }, "geometry": { "type": "Point", "coordinates": [ 142.367, -38.315 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.565181, "decimalLat": -34.759306 }, "geometry": { "type": "Point", "coordinates": [ 146.565, -34.759 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.825642, "decimalLat": -34.098762 }, "geometry": { "type": "Point", "coordinates": [ 150.826, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.452419, "decimalLat": -37.018442 }, "geometry": { "type": "Point", "coordinates": [ 145.452, -37.018 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656862, "decimalLat": -34.865275 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749888, "decimalLat": -26.155079 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.938737, "decimalLat": -27.162881 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -27.163 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.942869, "decimalLat": -27.140329 }, "geometry": { "type": "Point", "coordinates": [ 152.943, -27.14 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111126, "decimalLat": -27.527891 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.626807, "decimalLat": -34.89154 }, "geometry": { "type": "Point", "coordinates": [ 138.627, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316871, "decimalLat": -28.944287 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.944 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.108237, "decimalLat": -38.398323 }, "geometry": { "type": "Point", "coordinates": [ 145.108, -38.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377041, "decimalLat": -28.254178 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092497, "decimalLat": -27.527201 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.551952, "decimalLat": -29.872848 }, "geometry": { "type": "Point", "coordinates": [ 150.552, -29.873 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.275077, "decimalLat": -38.138377 }, "geometry": { "type": "Point", "coordinates": [ 145.275, -38.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164078, "decimalLat": -38.671622 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387721, "decimalLat": -38.354735 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.187968, "decimalLat": -27.260483 }, "geometry": { "type": "Point", "coordinates": [ 152.188, -27.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.726143, "decimalLat": -36.523711 }, "geometry": { "type": "Point", "coordinates": [ 145.726, -36.524 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3774, "decimalLat": -28.253919 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860876, "decimalLat": -38.668089 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092334, "decimalLat": -27.527277 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105013, "decimalLat": -27.530055 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.544977, "decimalLat": -27.792798 }, "geometry": { "type": "Point", "coordinates": [ 151.545, -27.793 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110719, "decimalLat": -27.529794 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.687907, "decimalLat": -21.687433 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.687 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103774, "decimalLat": -27.529705 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.04642, "decimalLat": -27.25722 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103302, "decimalLat": -27.529989 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.377058, "decimalLat": -27.919485 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.660845, "decimalLat": -27.671925 }, "geometry": { "type": "Point", "coordinates": [ 151.661, -27.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091693, "decimalLat": -27.526922 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109042, "decimalLat": -27.528867 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.190467, "decimalLat": -27.701955 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.570708, "decimalLat": -34.762416 }, "geometry": { "type": "Point", "coordinates": [ 146.571, -34.762 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.141436, "decimalLat": -32.7208 }, "geometry": { "type": "Point", "coordinates": [ 152.141, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.5177, "decimalLat": -27.735642 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -27.736 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111174, "decimalLat": -27.527204 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.261058, "decimalLat": -28.102751 }, "geometry": { "type": "Point", "coordinates": [ 151.261, -28.103 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092153, "decimalLat": -27.525534 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.033124, "decimalLat": -27.539547 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104584, "decimalLat": -27.530648 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090942, "decimalLat": -27.526827 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092609, "decimalLat": -27.528658 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722565, "decimalLat": -34.891881 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.803556, "decimalLat": -34.109422 }, "geometry": { "type": "Point", "coordinates": [ 150.804, -34.109 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.650735, "decimalLat": -34.967168 }, "geometry": { "type": "Point", "coordinates": [ 138.651, -34.967 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.023619, "decimalLat": -37.752195 }, "geometry": { "type": "Point", "coordinates": [ 142.024, -37.752 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.67778, "decimalLat": -37.478538 }, "geometry": { "type": "Point", "coordinates": [ 149.678, -37.479 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.859057, "decimalLat": -38.6665 }, "geometry": { "type": "Point", "coordinates": [ 143.859, -38.666 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.17603, "decimalLat": -37.864367 }, "geometry": { "type": "Point", "coordinates": [ 144.176, -37.864 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059605, "decimalLat": -27.548933 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104993, "decimalLat": -27.529487 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722725, "decimalLat": -34.9935 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.993 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.899032, "decimalLat": -37.616585 }, "geometry": { "type": "Point", "coordinates": [ 143.899, -37.617 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072254, "decimalLat": -27.542563 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733956, "decimalLat": -34.88744 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.82888, "decimalLat": -34.781419 }, "geometry": { "type": "Point", "coordinates": [ 138.829, -34.781 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860741, "decimalLat": -38.66886 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.669 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.337522, "decimalLat": -35.722198 }, "geometry": { "type": "Point", "coordinates": [ 137.338, -35.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057839, "decimalLat": -27.551062 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.481767, "decimalLat": -38.80042 }, "geometry": { "type": "Point", "coordinates": [ 143.482, -38.8 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702174, "decimalLat": -34.902398 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.979095, "decimalLat": -38.530922 }, "geometry": { "type": "Point", "coordinates": [ 145.979, -38.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081957, "decimalLat": -27.246129 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.246 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085135, "decimalLat": -27.510225 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11176, "decimalLat": -27.52778 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110183, "decimalLat": -27.527644 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388213, "decimalLat": -38.362113 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.362 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.780687, "decimalLat": -34.810775 }, "geometry": { "type": "Point", "coordinates": [ 135.781, -34.811 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.973936, "decimalLat": -26.251336 }, "geometry": { "type": "Point", "coordinates": [ 152.974, -26.251 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106914, "decimalLat": -27.529027 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091054, "decimalLat": -27.52709 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991342, "decimalLat": -27.270859 }, "geometry": { "type": "Point", "coordinates": [ 152.991, -27.271 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056978, "decimalLat": -27.544685 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.356672, "decimalLat": -27.939195 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092998, "decimalLat": -27.524955 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27145, "decimalLat": -38.133232 }, "geometry": { "type": "Point", "coordinates": [ 145.271, -38.133 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.32942, "decimalLat": -36.946751 }, "geometry": { "type": "Point", "coordinates": [ 145.329, -36.947 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.503403, "decimalLat": -27.726645 }, "geometry": { "type": "Point", "coordinates": [ 151.503, -27.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055622, "decimalLat": -27.536928 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.857365, "decimalLat": -38.669776 }, "geometry": { "type": "Point", "coordinates": [ 143.857, -38.67 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058232, "decimalLat": -27.546483 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.389805, "decimalLat": -38.356617 }, "geometry": { "type": "Point", "coordinates": [ 146.39, -38.357 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.216828, "decimalLat": -38.372963 }, "geometry": { "type": "Point", "coordinates": [ 145.217, -38.373 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.649917, "decimalLat": -35.004093 }, "geometry": { "type": "Point", "coordinates": [ 138.65, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09072, "decimalLat": -27.526042 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092745, "decimalLat": -27.527804 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895508, "decimalLat": -27.597925 }, "geometry": { "type": "Point", "coordinates": [ 151.896, -27.598 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092333, "decimalLat": -27.525213 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.536121, "decimalLat": -27.711387 }, "geometry": { "type": "Point", "coordinates": [ 151.536, -27.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.994055, "decimalLat": -27.823168 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.72792, "decimalLat": -38.62808 }, "geometry": { "type": "Point", "coordinates": [ 145.728, -38.628 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.239242, "decimalLat": -37.286578 }, "geometry": { "type": "Point", "coordinates": [ 143.239, -37.287 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062168, "decimalLat": -27.534504 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.103205, "decimalLat": -22.348814 }, "geometry": { "type": "Point", "coordinates": [ 149.103, -22.349 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.014105, "decimalLat": -26.395997 }, "geometry": { "type": "Point", "coordinates": [ 153.014, -26.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091952, "decimalLat": -27.526892 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.863155, "decimalLat": -26.490041 }, "geometry": { "type": "Point", "coordinates": [ 151.863, -26.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387107, "decimalLat": -38.35818 }, "geometry": { "type": "Point", "coordinates": [ 146.387, -38.358 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.381713, "decimalLat": -27.963622 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.964 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108759, "decimalLat": -27.526869 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.259858, "decimalLat": -28.101319 }, "geometry": { "type": "Point", "coordinates": [ 151.26, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052842, "decimalLat": -27.550321 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.536412, "decimalLat": -38.392824 }, "geometry": { "type": "Point", "coordinates": [ 142.536, -38.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090242, "decimalLat": -27.526541 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.683747, "decimalLat": -34.92867 }, "geometry": { "type": "Point", "coordinates": [ 138.684, -34.929 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072234, "decimalLat": -27.226229 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.226 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070429, "decimalLat": -27.225187 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.225 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164139, "decimalLat": -38.671712 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091335, "decimalLat": -27.526814 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.901148, "decimalLat": -37.641822 }, "geometry": { "type": "Point", "coordinates": [ 143.901, -37.642 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074673, "decimalLat": -27.554485 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.572564, "decimalLat": -35.048885 }, "geometry": { "type": "Point", "coordinates": [ 138.573, -35.049 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092283, "decimalLat": -27.528045 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.367564, "decimalLat": -27.898047 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091745, "decimalLat": -27.526877 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.932674, "decimalLat": -27.975989 }, "geometry": { "type": "Point", "coordinates": [ 152.933, -27.976 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.808855, "decimalLat": -26.384822 }, "geometry": { "type": "Point", "coordinates": [ 151.809, -26.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991771, "decimalLat": -27.258379 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.007796, "decimalLat": -27.232858 }, "geometry": { "type": "Point", "coordinates": [ 153.008, -27.233 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060108, "decimalLat": -27.551072 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.775294, "decimalLat": -26.182073 }, "geometry": { "type": "Point", "coordinates": [ 151.775, -26.182 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090156, "decimalLat": -27.526276 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992687, "decimalLat": -27.822701 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071358, "decimalLat": -27.544278 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057811, "decimalLat": -27.55112 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324319, "decimalLat": -28.839674 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400736, "decimalLat": -28.258199 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110729, "decimalLat": -27.529801 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.748591, "decimalLat": -37.914052 }, "geometry": { "type": "Point", "coordinates": [ 147.749, -37.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.481888, "decimalLat": -38.799642 }, "geometry": { "type": "Point", "coordinates": [ 143.482, -38.8 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073301, "decimalLat": -27.547203 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05895, "decimalLat": -27.546467 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090794, "decimalLat": -27.526672 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092249, "decimalLat": -27.528434 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090749, "decimalLat": -27.526329 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073837, "decimalLat": -27.545575 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109066, "decimalLat": -27.529297 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072463, "decimalLat": -27.544613 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715646, "decimalLat": -35.015793 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108338, "decimalLat": -27.52895 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.890733, "decimalLat": -37.584267 }, "geometry": { "type": "Point", "coordinates": [ 143.891, -37.584 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.106528, "decimalLat": -27.562496 }, "geometry": { "type": "Point", "coordinates": [ 152.107, -27.562 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.607096, "decimalLat": -38.768083 }, "geometry": { "type": "Point", "coordinates": [ 143.607, -38.768 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103047, "decimalLat": -27.529067 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720555, "decimalLat": -34.88719 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.691324, "decimalLat": -34.958634 }, "geometry": { "type": "Point", "coordinates": [ 138.691, -34.959 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.566833, "decimalLat": -34.756983 }, "geometry": { "type": "Point", "coordinates": [ 146.567, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078469, "decimalLat": -27.514486 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.974914, "decimalLat": -38.499803 }, "geometry": { "type": "Point", "coordinates": [ 142.975, -38.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085319, "decimalLat": -27.507099 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.301124, "decimalLat": -31.584591 }, "geometry": { "type": "Point", "coordinates": [ 149.301, -31.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052046, "decimalLat": -27.548399 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993755, "decimalLat": -27.82343 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.86915, "decimalLat": -26.15117 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -26.151 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05919, "decimalLat": -27.551618 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63993, "decimalLat": -29.793324 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -29.793 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060487, "decimalLat": -27.550233 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.526342, "decimalLat": -38.432183 }, "geometry": { "type": "Point", "coordinates": [ 146.526, -38.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637617, "decimalLat": -35.0057 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40112, "decimalLat": -28.25823 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09095, "decimalLat": -27.526541 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112067, "decimalLat": -27.52905 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.997736, "decimalLat": -27.434525 }, "geometry": { "type": "Point", "coordinates": [ 152.998, -27.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.707262, "decimalLat": -34.90442 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.983907, "decimalLat": -34.096899 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092019, "decimalLat": -27.527226 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72477, "decimalLat": -34.889365 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091516, "decimalLat": -27.526775 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.857335, "decimalLat": -38.666747 }, "geometry": { "type": "Point", "coordinates": [ 143.857, -38.667 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083708, "decimalLat": -27.505854 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093342, "decimalLat": -27.524164 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.845353, "decimalLat": -27.344663 }, "geometry": { "type": "Point", "coordinates": [ 152.845, -27.345 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.740905, "decimalLat": -34.838304 }, "geometry": { "type": "Point", "coordinates": [ 138.741, -34.838 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.841054, "decimalLat": -26.561671 }, "geometry": { "type": "Point", "coordinates": [ 151.841, -26.562 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.495972, "decimalLat": -34.721703 }, "geometry": { "type": "Point", "coordinates": [ 146.496, -34.722 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066228, "decimalLat": -27.539272 }, "geometry": { "type": "Point", "coordinates": [ 153.066, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10904, "decimalLat": -27.527098 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.731445, "decimalLat": -37.923633 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10711, "decimalLat": -27.528787 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068729, "decimalLat": -27.541726 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.589888, "decimalLat": -34.76995 }, "geometry": { "type": "Point", "coordinates": [ 146.59, -34.77 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.518403, "decimalLat": -30.520863 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399322, "decimalLat": -27.496178 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.290158, "decimalLat": -27.982947 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -27.983 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.627861, "decimalLat": -27.870082 }, "geometry": { "type": "Point", "coordinates": [ 152.628, -27.87 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.187287, "decimalLat": -28.194692 }, "geometry": { "type": "Point", "coordinates": [ 153.187, -28.195 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.171067, "decimalLat": -38.17307 }, "geometry": { "type": "Point", "coordinates": [ 145.171, -38.173 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.021535, "decimalLat": -26.293881 }, "geometry": { "type": "Point", "coordinates": [ 152.022, -26.294 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.474418, "decimalLat": -21.410485 }, "geometry": { "type": "Point", "coordinates": [ 148.474, -21.41 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059176, "decimalLat": -27.551578 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376817, "decimalLat": -28.254076 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.392799, "decimalLat": -28.268988 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.269 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.046859, "decimalLat": -37.998279 }, "geometry": { "type": "Point", "coordinates": [ 141.047, -37.998 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18901, "decimalLat": -27.456754 }, "geometry": { "type": "Point", "coordinates": [ 152.189, -27.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249519, "decimalLat": -27.495775 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.662024, "decimalLat": -35.007958 }, "geometry": { "type": "Point", "coordinates": [ 138.662, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730168, "decimalLat": -34.890269 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037797, "decimalLat": -27.533424 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090763, "decimalLat": -27.525875 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993242, "decimalLat": -27.82352 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.869378, "decimalLat": -19.127443 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.127 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054341, "decimalLat": -27.551945 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104372, "decimalLat": -27.529713 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.377058, "decimalLat": -27.919485 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.589021, "decimalLat": -27.949121 }, "geometry": { "type": "Point", "coordinates": [ 152.589, -27.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058601, "decimalLat": -27.534128 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.650477, "decimalLat": -37.025778 }, "geometry": { "type": "Point", "coordinates": [ 145.65, -37.026 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993049, "decimalLat": -27.82374 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.640253, "decimalLat": -30.486581 }, "geometry": { "type": "Point", "coordinates": [ 151.64, -30.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 150.674545, "decimalLat": -26.71854 }, "geometry": { "type": "Point", "coordinates": [ 150.675, -26.719 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091957, "decimalLat": -27.527153 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057943, "decimalLat": -27.551691 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113758, "decimalLat": -27.528541 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.281429, "decimalLat": -38.128005 }, "geometry": { "type": "Point", "coordinates": [ 145.281, -38.128 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091562, "decimalLat": -27.526994 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37139, "decimalLat": -27.926284 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.926 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054073, "decimalLat": -27.524077 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372151, "decimalLat": -27.908931 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104837, "decimalLat": -27.529141 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.183432, "decimalLat": -27.531002 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.883587, "decimalLat": -37.587485 }, "geometry": { "type": "Point", "coordinates": [ 143.884, -37.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090198, "decimalLat": -27.525557 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103784, "decimalLat": -27.529569 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.389714, "decimalLat": -28.28456 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.285 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060528, "decimalLat": -27.549552 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059374, "decimalLat": -27.550725 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.541468, "decimalLat": -38.797562 }, "geometry": { "type": "Point", "coordinates": [ 143.541, -38.798 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.694288, "decimalLat": -34.921878 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899511, "decimalLat": -30.461312 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -30.461 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.365814, "decimalLat": -27.453128 }, "geometry": { "type": "Point", "coordinates": [ 152.366, -27.453 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.614414, "decimalLat": -27.339773 }, "geometry": { "type": "Point", "coordinates": [ 152.614, -27.34 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091777, "decimalLat": -27.527032 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.573822, "decimalLat": -35.028938 }, "geometry": { "type": "Point", "coordinates": [ 138.574, -35.029 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601369, "decimalLat": -29.870236 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -29.87 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.921794, "decimalLat": -38.057382 }, "geometry": { "type": "Point", "coordinates": [ 141.922, -38.057 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104006, "decimalLat": -27.530347 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093076, "decimalLat": -27.526263 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.97522, "decimalLat": -38.552616 }, "geometry": { "type": "Point", "coordinates": [ 143.975, -38.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.455122, "decimalLat": -27.530272 }, "geometry": { "type": "Point", "coordinates": [ 152.455, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387677, "decimalLat": -38.354151 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.706573, "decimalLat": -26.166315 }, "geometry": { "type": "Point", "coordinates": [ 151.707, -26.166 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103362, "decimalLat": -27.528452 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702499, "decimalLat": -34.903119 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.302367, "decimalLat": -31.191682 }, "geometry": { "type": "Point", "coordinates": [ 150.302, -31.192 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111416, "decimalLat": -27.528077 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092954, "decimalLat": -27.525995 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.010213, "decimalLat": -38.183723 }, "geometry": { "type": "Point", "coordinates": [ 142.01, -38.184 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.67747, "decimalLat": -27.986118 }, "geometry": { "type": "Point", "coordinates": [ 152.677, -27.986 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110132, "decimalLat": -27.527511 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.957428, "decimalLat": -27.444395 }, "geometry": { "type": "Point", "coordinates": [ 151.957, -27.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058166, "decimalLat": -27.550934 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102968, "decimalLat": -27.526836 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058905, "decimalLat": -27.551379 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061067, "decimalLat": -27.534003 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860733, "decimalLat": -38.667964 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.750341, "decimalLat": -34.997629 }, "geometry": { "type": "Point", "coordinates": [ 138.75, -34.998 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104436, "decimalLat": -27.530734 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073411, "decimalLat": -27.545864 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082691, "decimalLat": -27.506259 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.126071, "decimalLat": -30.29535 }, "geometry": { "type": "Point", "coordinates": [ 153.126, -30.295 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000519, "decimalLat": -27.284776 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092274, "decimalLat": -27.52833 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.994186, "decimalLat": -27.823161 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.384688, "decimalLat": -37.097564 }, "geometry": { "type": "Point", "coordinates": [ 145.385, -37.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402261, "decimalLat": -28.260126 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.095967, "decimalLat": -27.566908 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105451, "decimalLat": -27.529753 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.595543, "decimalLat": -35.595972 }, "geometry": { "type": "Point", "coordinates": [ 137.596, -35.596 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079117, "decimalLat": -27.515603 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.872747, "decimalLat": -28.213276 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -28.213 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.530455, "decimalLat": -27.722595 }, "geometry": { "type": "Point", "coordinates": [ 151.53, -27.723 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.035984, "decimalLat": -28.601786 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -28.602 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.56021, "decimalLat": -35.26028 }, "geometry": { "type": "Point", "coordinates": [ 138.56, -35.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.813065, "decimalLat": -26.13111 }, "geometry": { "type": "Point", "coordinates": [ 151.813, -26.131 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.267139, "decimalLat": -38.131072 }, "geometry": { "type": "Point", "coordinates": [ 145.267, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868438, "decimalLat": -19.126572 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.501603, "decimalLat": -37.034825 }, "geometry": { "type": "Point", "coordinates": [ 145.502, -37.035 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.448752, "decimalLat": -26.103964 }, "geometry": { "type": "Point", "coordinates": [ 151.449, -26.104 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.853424, "decimalLat": -28.303959 }, "geometry": { "type": "Point", "coordinates": [ 152.853, -28.304 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.731338, "decimalLat": -37.923962 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062103, "decimalLat": -27.53713 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.893816, "decimalLat": -37.620158 }, "geometry": { "type": "Point", "coordinates": [ 143.894, -37.62 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.401375, "decimalLat": -27.456833 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -27.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092039, "decimalLat": -27.525905 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.101143, "decimalLat": -37.564119 }, "geometry": { "type": "Point", "coordinates": [ 144.101, -37.564 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.050648, "decimalLat": -27.552005 }, "geometry": { "type": "Point", "coordinates": [ 153.051, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.102695, "decimalLat": -27.569652 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.524017, "decimalLat": -28.194553 }, "geometry": { "type": "Point", "coordinates": [ 152.524, -28.195 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05221, "decimalLat": -27.548216 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656527, "decimalLat": -34.959642 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.96 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734752, "decimalLat": -34.888776 }, "geometry": { "type": "Point", "coordinates": [ 138.735, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081298, "decimalLat": -27.508123 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656585, "decimalLat": -34.869105 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.869 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068125, "decimalLat": -27.545078 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.868999, "decimalLat": -29.624528 }, "geometry": { "type": "Point", "coordinates": [ 150.869, -29.625 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16385, "decimalLat": -38.671158 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.29335, "decimalLat": -38.753597 }, "geometry": { "type": "Point", "coordinates": [ 143.293, -38.754 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.973062, "decimalLat": -27.645043 }, "geometry": { "type": "Point", "coordinates": [ 151.973, -27.645 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721339, "decimalLat": -34.892671 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.835693, "decimalLat": -26.277538 }, "geometry": { "type": "Point", "coordinates": [ 152.836, -26.278 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.710407, "decimalLat": -34.909476 }, "geometry": { "type": "Point", "coordinates": [ 138.71, -34.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.134186, "decimalLat": -27.565422 }, "geometry": { "type": "Point", "coordinates": [ 153.134, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078726, "decimalLat": -27.5068 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.997475, "decimalLat": -27.287914 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -27.288 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895057, "decimalLat": -27.599273 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.599 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108764, "decimalLat": -27.526925 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069245, "decimalLat": -27.504505 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.535095, "decimalLat": -34.755897 }, "geometry": { "type": "Point", "coordinates": [ 146.535, -34.756 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.068681, "decimalLat": -37.76158 }, "geometry": { "type": "Point", "coordinates": [ 144.069, -37.762 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.158674, "decimalLat": -27.656227 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -27.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.03315, "decimalLat": -38.068643 }, "geometry": { "type": "Point", "coordinates": [ 144.033, -38.069 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733291, "decimalLat": -34.890466 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.713519, "decimalLat": -27.261001 }, "geometry": { "type": "Point", "coordinates": [ 151.714, -27.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059424, "decimalLat": -27.548746 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.102906, "decimalLat": -27.569017 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.368384, "decimalLat": -27.897685 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072702, "decimalLat": -27.54916 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.77501, "decimalLat": -38.202791 }, "geometry": { "type": "Point", "coordinates": [ 141.775, -38.203 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104444, "decimalLat": -27.530431 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344529, "decimalLat": -27.831775 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.920596, "decimalLat": -26.745014 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -26.745 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.568958, "decimalLat": -35.095342 }, "geometry": { "type": "Point", "coordinates": [ 138.569, -35.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091078, "decimalLat": -27.526446 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091929, "decimalLat": -27.525538 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072229, "decimalLat": -27.545112 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103448, "decimalLat": -27.530529 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.063781, "decimalLat": -27.261908 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -27.262 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058405, "decimalLat": -27.546316 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.286, "decimalLat": -37.849117 }, "geometry": { "type": "Point", "coordinates": [ 144.286, -37.849 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.971309, "decimalLat": -27.288737 }, "geometry": { "type": "Point", "coordinates": [ 152.971, -27.289 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72259, "decimalLat": -34.891817 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086808, "decimalLat": -27.034114 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.034 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090428, "decimalLat": -27.527195 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110401, "decimalLat": -27.527023 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72184, "decimalLat": -34.936362 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.304017, "decimalLat": -38.952295 }, "geometry": { "type": "Point", "coordinates": [ 146.304, -38.952 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.569872, "decimalLat": -27.243756 }, "geometry": { "type": "Point", "coordinates": [ 152.57, -27.244 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713339, "decimalLat": -34.874458 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.874 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.854341, "decimalLat": -34.07774 }, "geometry": { "type": "Point", "coordinates": [ 150.854, -34.078 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.375406, "decimalLat": -27.911913 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.281852, "decimalLat": -37.842258 }, "geometry": { "type": "Point", "coordinates": [ 144.282, -37.842 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.07677, "decimalLat": -27.257798 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.945617, "decimalLat": -28.125314 }, "geometry": { "type": "Point", "coordinates": [ 152.946, -28.125 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.735106, "decimalLat": -34.893372 }, "geometry": { "type": "Point", "coordinates": [ 138.735, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.047303, "decimalLat": -27.262487 }, "geometry": { "type": "Point", "coordinates": [ 152.047, -27.262 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722604, "decimalLat": -34.891584 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.6409, "decimalLat": -27.452792 }, "geometry": { "type": "Point", "coordinates": [ 152.641, -27.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10471, "decimalLat": -27.529883 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.854125, "decimalLat": -26.506533 }, "geometry": { "type": "Point", "coordinates": [ 151.854, -26.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051611, "decimalLat": -27.548758 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.889159, "decimalLat": -27.600747 }, "geometry": { "type": "Point", "coordinates": [ 151.889, -27.601 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10553, "decimalLat": -27.529644 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.514136, "decimalLat": -35.132078 }, "geometry": { "type": "Point", "coordinates": [ 138.514, -35.132 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090346, "decimalLat": -27.527013 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.9368, "decimalLat": -27.622184 }, "geometry": { "type": "Point", "coordinates": [ 151.937, -27.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056747, "decimalLat": -27.544172 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11116, "decimalLat": -27.528801 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.375028, "decimalLat": -27.917318 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.734673, "decimalLat": -27.594649 }, "geometry": { "type": "Point", "coordinates": [ 151.735, -27.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.373203, "decimalLat": -27.917407 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090697, "decimalLat": -27.526422 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.520442, "decimalLat": -27.715401 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -27.715 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10937, "decimalLat": -27.528938 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084285, "decimalLat": -27.609306 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.609 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7227, "decimalLat": -34.891963 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.865226, "decimalLat": -27.193142 }, "geometry": { "type": "Point", "coordinates": [ 151.865, -27.193 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.040574, "decimalLat": -38.58811 }, "geometry": { "type": "Point", "coordinates": [ 146.041, -38.588 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058479, "decimalLat": -27.54761 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.946912, "decimalLat": -25.947737 }, "geometry": { "type": "Point", "coordinates": [ 151.947, -25.948 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107263, "decimalLat": -27.527377 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08625, "decimalLat": -27.506236 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091948, "decimalLat": -27.527035 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163742, "decimalLat": -38.67128 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068361, "decimalLat": -27.525343 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.525547, "decimalLat": -27.713907 }, "geometry": { "type": "Point", "coordinates": [ 151.526, -27.714 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.057976, "decimalLat": -27.264912 }, "geometry": { "type": "Point", "coordinates": [ 152.058, -27.265 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.450764, "decimalLat": -28.266486 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.266 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.842355, "decimalLat": -19.135861 }, "geometry": { "type": "Point", "coordinates": [ 146.842, -19.136 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192545, "decimalLat": -27.703321 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -27.703 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068704, "decimalLat": -27.54523 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.576001, "decimalLat": -27.80776 }, "geometry": { "type": "Point", "coordinates": [ 151.576, -27.808 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.523012, "decimalLat": -27.709575 }, "geometry": { "type": "Point", "coordinates": [ 151.523, -27.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.132204, "decimalLat": -38.175466 }, "geometry": { "type": "Point", "coordinates": [ 145.132, -38.175 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.86159, "decimalLat": -38.667657 }, "geometry": { "type": "Point", "coordinates": [ 143.862, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.871709, "decimalLat": -37.603695 }, "geometry": { "type": "Point", "coordinates": [ 143.872, -37.604 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091661, "decimalLat": -27.527196 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249435, "decimalLat": -27.496763 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.568023, "decimalLat": -27.691839 }, "geometry": { "type": "Point", "coordinates": [ 151.568, -27.692 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.860815, "decimalLat": -27.54869 }, "geometry": { "type": "Point", "coordinates": [ 152.861, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.235197, "decimalLat": -33.118283 }, "geometry": { "type": "Point", "coordinates": [ 151.235, -33.118 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.49568, "decimalLat": -38.803422 }, "geometry": { "type": "Point", "coordinates": [ 143.496, -38.803 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091416, "decimalLat": -27.52693 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092982, "decimalLat": -27.527129 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093599, "decimalLat": -27.527873 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.038582, "decimalLat": -27.535191 }, "geometry": { "type": "Point", "coordinates": [ 153.039, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085421, "decimalLat": -27.510404 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103787, "decimalLat": -27.529889 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.698322, "decimalLat": -34.933097 }, "geometry": { "type": "Point", "coordinates": [ 138.698, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438747, "decimalLat": -27.397143 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.033118, "decimalLat": -27.539771 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.497195, "decimalLat": -35.815829 }, "geometry": { "type": "Point", "coordinates": [ 145.497, -35.816 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.925668, "decimalLat": -37.653072 }, "geometry": { "type": "Point", "coordinates": [ 143.926, -37.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.671331, "decimalLat": -35.012661 }, "geometry": { "type": "Point", "coordinates": [ 138.671, -35.013 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377107, "decimalLat": -28.25432 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.39267, "decimalLat": -27.92274 }, "geometry": { "type": "Point", "coordinates": [ 152.393, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.731387, "decimalLat": -37.923603 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.874388, "decimalLat": -34.988505 }, "geometry": { "type": "Point", "coordinates": [ 138.874, -34.989 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.219118, "decimalLat": -37.833687 }, "geometry": { "type": "Point", "coordinates": [ 144.219, -37.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.694021, "decimalLat": -34.956986 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.957 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.727439, "decimalLat": -34.889628 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105688, "decimalLat": -27.529332 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.401723, "decimalLat": -27.496583 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249514, "decimalLat": -27.496771 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.662988, "decimalLat": -35.002263 }, "geometry": { "type": "Point", "coordinates": [ 138.663, -35.002 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090633, "decimalLat": -27.525991 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.28475, "decimalLat": -37.836923 }, "geometry": { "type": "Point", "coordinates": [ 144.285, -37.837 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090976, "decimalLat": -27.527611 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112064, "decimalLat": -27.5292 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.996806, "decimalLat": -37.688518 }, "geometry": { "type": "Point", "coordinates": [ 143.997, -37.689 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.727005, "decimalLat": -37.92017 }, "geometry": { "type": "Point", "coordinates": [ 147.727, -37.92 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.583281, "decimalLat": -35.09938 }, "geometry": { "type": "Point", "coordinates": [ 138.583, -35.099 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733943, "decimalLat": -34.890129 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.00078, "decimalLat": -27.284444 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.940737, "decimalLat": -27.643708 }, "geometry": { "type": "Point", "coordinates": [ 151.941, -27.644 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.341228, "decimalLat": -38.322317 }, "geometry": { "type": "Point", "coordinates": [ 143.341, -38.322 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10347, "decimalLat": -27.530036 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093602, "decimalLat": -27.524214 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.330733, "decimalLat": -33.689112 }, "geometry": { "type": "Point", "coordinates": [ 149.331, -33.689 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.832124, "decimalLat": -34.889307 }, "geometry": { "type": "Point", "coordinates": [ 138.832, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103401, "decimalLat": -27.528921 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.73732, "decimalLat": -37.526319 }, "geometry": { "type": "Point", "coordinates": [ 149.737, -37.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054742, "decimalLat": -27.550804 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657846, "decimalLat": -35.011955 }, "geometry": { "type": "Point", "coordinates": [ 138.658, -35.012 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.639878, "decimalLat": -35.647675 }, "geometry": { "type": "Point", "coordinates": [ 137.64, -35.648 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729243, "decimalLat": -34.889826 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091418, "decimalLat": -27.527111 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092476, "decimalLat": -27.527496 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.613816, "decimalLat": -34.903278 }, "geometry": { "type": "Point", "coordinates": [ 138.614, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.890604, "decimalLat": -37.584539 }, "geometry": { "type": "Point", "coordinates": [ 143.891, -37.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.324167, "decimalLat": -27.90447 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.585771, "decimalLat": -29.857121 }, "geometry": { "type": "Point", "coordinates": [ 150.586, -29.857 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399338, "decimalLat": -27.496128 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73686, "decimalLat": -34.827229 }, "geometry": { "type": "Point", "coordinates": [ 138.737, -34.827 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090816, "decimalLat": -27.527586 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.650422, "decimalLat": -35.01953 }, "geometry": { "type": "Point", "coordinates": [ 138.65, -35.02 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.535538, "decimalLat": -34.745395 }, "geometry": { "type": "Point", "coordinates": [ 146.536, -34.745 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.139232, "decimalLat": -27.623044 }, "geometry": { "type": "Point", "coordinates": [ 153.139, -27.623 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.262462, "decimalLat": -35.69921 }, "geometry": { "type": "Point", "coordinates": [ 137.262, -35.699 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.065108, "decimalLat": -27.557072 }, "geometry": { "type": "Point", "coordinates": [ 153.065, -27.557 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.958816, "decimalLat": -27.26616 }, "geometry": { "type": "Point", "coordinates": [ 152.959, -27.266 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092387, "decimalLat": -27.528264 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060641, "decimalLat": -27.555612 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.556 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003281, "decimalLat": -27.414463 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.61325, "decimalLat": -27.339457 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091507, "decimalLat": -27.527254 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10934, "decimalLat": -27.529418 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090906, "decimalLat": -27.527454 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.190233, "decimalLat": -28.173391 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -28.173 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.943705, "decimalLat": -27.390965 }, "geometry": { "type": "Point", "coordinates": [ 151.944, -27.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.667585, "decimalLat": -38.755128 }, "geometry": { "type": "Point", "coordinates": [ 143.668, -38.755 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.774812, "decimalLat": -27.392103 }, "geometry": { "type": "Point", "coordinates": [ 151.775, -27.392 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.157648, "decimalLat": -38.246999 }, "geometry": { "type": "Point", "coordinates": [ 143.158, -38.247 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092455, "decimalLat": -27.528522 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.190179, "decimalLat": -27.701275 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.521133, "decimalLat": -27.719775 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -27.72 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090126, "decimalLat": -27.220534 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.221 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091641, "decimalLat": -27.527175 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.57722, "decimalLat": -29.8624 }, "geometry": { "type": "Point", "coordinates": [ 150.577, -29.862 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.391076, "decimalLat": -27.742261 }, "geometry": { "type": "Point", "coordinates": [ 152.391, -27.742 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520217, "decimalLat": -30.520347 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.726745, "decimalLat": -37.924247 }, "geometry": { "type": "Point", "coordinates": [ 147.727, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110512, "decimalLat": -27.528248 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163925, "decimalLat": -38.671197 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72968, "decimalLat": -34.890007 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657088, "decimalLat": -34.865118 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05865, "decimalLat": -27.547217 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.72722, "decimalLat": -37.921937 }, "geometry": { "type": "Point", "coordinates": [ 147.727, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.877392, "decimalLat": -19.120763 }, "geometry": { "type": "Point", "coordinates": [ 146.877, -19.121 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.364328, "decimalLat": -38.320294 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.32 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090604, "decimalLat": -27.526311 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.373271, "decimalLat": -28.339709 }, "geometry": { "type": "Point", "coordinates": [ 152.373, -28.34 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085905, "decimalLat": -27.51039 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092819, "decimalLat": -27.525392 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.094538, "decimalLat": -27.53281 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102843, "decimalLat": -27.527419 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111378, "decimalLat": -27.528002 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081858, "decimalLat": -27.508042 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.654347, "decimalLat": -35.006602 }, "geometry": { "type": "Point", "coordinates": [ 138.654, -35.007 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.889206, "decimalLat": -27.597401 }, "geometry": { "type": "Point", "coordinates": [ 151.889, -27.597 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.63176, "decimalLat": -27.437973 }, "geometry": { "type": "Point", "coordinates": [ 152.632, -27.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.421618, "decimalLat": -28.872411 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40013, "decimalLat": -27.496633 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.377092, "decimalLat": -27.081683 }, "geometry": { "type": "Point", "coordinates": [ 152.377, -27.082 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093342, "decimalLat": -27.528248 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078522, "decimalLat": -27.506393 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092913, "decimalLat": -27.528161 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.290947, "decimalLat": -37.19048 }, "geometry": { "type": "Point", "coordinates": [ 143.291, -37.19 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073433, "decimalLat": -27.545671 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438316, "decimalLat": -27.401021 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363542, "decimalLat": -38.318677 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092781, "decimalLat": -27.527112 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103024, "decimalLat": -27.529206 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387408, "decimalLat": -38.356988 }, "geometry": { "type": "Point", "coordinates": [ 146.387, -38.357 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65763, "decimalLat": -35.017497 }, "geometry": { "type": "Point", "coordinates": [ 138.658, -35.017 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073253, "decimalLat": -27.546333 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.259828, "decimalLat": -37.232683 }, "geometry": { "type": "Point", "coordinates": [ 148.26, -37.233 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.087231, "decimalLat": -27.510708 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.753931, "decimalLat": -38.090515 }, "geometry": { "type": "Point", "coordinates": [ 141.754, -38.091 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.580984, "decimalLat": -35.144981 }, "geometry": { "type": "Point", "coordinates": [ 138.581, -35.145 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637074, "decimalLat": -35.006358 }, "geometry": { "type": "Point", "coordinates": [ 138.637, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111412, "decimalLat": -27.529732 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103582, "decimalLat": -27.529353 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.034542, "decimalLat": -27.525228 }, "geometry": { "type": "Point", "coordinates": [ 153.035, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071608, "decimalLat": -27.546087 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887791, "decimalLat": -31.455321 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.725094, "decimalLat": -34.932817 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.710404, "decimalLat": -34.859099 }, "geometry": { "type": "Point", "coordinates": [ 138.71, -34.859 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720366, "decimalLat": -34.89242 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090354, "decimalLat": -27.52544 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.136471, "decimalLat": -38.388959 }, "geometry": { "type": "Point", "coordinates": [ 145.136, -38.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.379657, "decimalLat": -27.91718 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.791652, "decimalLat": -26.136584 }, "geometry": { "type": "Point", "coordinates": [ 151.792, -26.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.725191, "decimalLat": -34.881538 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -34.882 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437901, "decimalLat": -27.400168 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10524, "decimalLat": -27.529907 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058361, "decimalLat": -27.545748 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730446, "decimalLat": -34.8856 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.587746, "decimalLat": -27.918109 }, "geometry": { "type": "Point", "coordinates": [ 152.588, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092528, "decimalLat": -27.527706 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090919, "decimalLat": -27.526459 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079042, "decimalLat": -27.515025 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.642531, "decimalLat": -28.14367 }, "geometry": { "type": "Point", "coordinates": [ 152.643, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37608, "decimalLat": -27.956848 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.957 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721831, "decimalLat": -34.8924 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09105, "decimalLat": -27.52692 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091195, "decimalLat": -27.527283 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090749, "decimalLat": -27.525846 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.958775, "decimalLat": -27.413135 }, "geometry": { "type": "Point", "coordinates": [ 151.959, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6367, "decimalLat": -34.989361 }, "geometry": { "type": "Point", "coordinates": [ 138.637, -34.989 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993867, "decimalLat": -27.82382 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.725722, "decimalLat": -37.921139 }, "geometry": { "type": "Point", "coordinates": [ 147.726, -37.921 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.820165, "decimalLat": -34.101467 }, "geometry": { "type": "Point", "coordinates": [ 150.82, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092071, "decimalLat": -27.527117 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104095, "decimalLat": -27.530245 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.674434, "decimalLat": -35.013319 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -35.013 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.864461, "decimalLat": -19.12457 }, "geometry": { "type": "Point", "coordinates": [ 146.864, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.00435, "decimalLat": -27.414605 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058446, "decimalLat": -27.548121 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.696033, "decimalLat": -34.89787 }, "geometry": { "type": "Point", "coordinates": [ 138.696, -34.898 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090971, "decimalLat": -27.526492 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103304, "decimalLat": -27.527603 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.935487, "decimalLat": -27.325453 }, "geometry": { "type": "Point", "coordinates": [ 151.935, -27.325 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102606, "decimalLat": -27.529464 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.659132, "decimalLat": -35.00438 }, "geometry": { "type": "Point", "coordinates": [ 138.659, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059472, "decimalLat": -27.54929 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519445, "decimalLat": -30.520513 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069479, "decimalLat": -27.544048 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.729413, "decimalLat": -38.535378 }, "geometry": { "type": "Point", "coordinates": [ 143.729, -38.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090782, "decimalLat": -27.527071 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.381796, "decimalLat": -27.918578 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733111, "decimalLat": -34.873063 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.873 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.987991, "decimalLat": -27.577639 }, "geometry": { "type": "Point", "coordinates": [ 151.988, -27.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67259, "decimalLat": -35.016054 }, "geometry": { "type": "Point", "coordinates": [ 138.673, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.925212, "decimalLat": -37.653524 }, "geometry": { "type": "Point", "coordinates": [ 143.925, -37.654 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.882065, "decimalLat": -31.461336 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.595376, "decimalLat": -34.772026 }, "geometry": { "type": "Point", "coordinates": [ 146.595, -34.772 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.630491, "decimalLat": -38.321162 }, "geometry": { "type": "Point", "coordinates": [ 142.63, -38.321 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105174, "decimalLat": -27.530012 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110715, "decimalLat": -27.527524 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.262877, "decimalLat": -37.393305 }, "geometry": { "type": "Point", "coordinates": [ 144.263, -37.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092112, "decimalLat": -27.525119 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.033967, "decimalLat": -27.54997 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.556488, "decimalLat": -27.613522 }, "geometry": { "type": "Point", "coordinates": [ 151.556, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102516, "decimalLat": -27.529469 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081672, "decimalLat": -27.508171 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.075091, "decimalLat": -30.897186 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -30.897 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249435, "decimalLat": -27.496763 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092614, "decimalLat": -27.525711 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.597595, "decimalLat": -27.28068 }, "geometry": { "type": "Point", "coordinates": [ 152.598, -27.281 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.262767, "decimalLat": -27.890857 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.912175, "decimalLat": -34.730324 }, "geometry": { "type": "Point", "coordinates": [ 138.912, -34.73 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.151142, "decimalLat": -27.583787 }, "geometry": { "type": "Point", "coordinates": [ 153.151, -27.584 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05779, "decimalLat": -27.550945 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.117693, "decimalLat": -32.765455 }, "geometry": { "type": "Point", "coordinates": [ 152.118, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073311, "decimalLat": -27.545105 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074881, "decimalLat": -27.548607 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092507, "decimalLat": -27.527869 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.874222, "decimalLat": -37.602342 }, "geometry": { "type": "Point", "coordinates": [ 143.874, -37.602 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057545, "decimalLat": -27.550942 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.937758, "decimalLat": -26.174661 }, "geometry": { "type": "Point", "coordinates": [ 151.938, -26.175 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.931275, "decimalLat": -27.407762 }, "geometry": { "type": "Point", "coordinates": [ 151.931, -27.408 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093557, "decimalLat": -27.52441 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090318, "decimalLat": -27.526778 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65636, "decimalLat": -35.022502 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.023 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058974, "decimalLat": -27.548401 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10516, "decimalLat": -27.529657 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.537522, "decimalLat": -27.429375 }, "geometry": { "type": "Point", "coordinates": [ 153.538, -27.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090779, "decimalLat": -27.525789 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059974, "decimalLat": -27.550249 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.62631, "decimalLat": -34.893141 }, "geometry": { "type": "Point", "coordinates": [ 138.626, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.826697, "decimalLat": -26.256118 }, "geometry": { "type": "Point", "coordinates": [ 152.827, -26.256 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71553, "decimalLat": -34.893195 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.568313, "decimalLat": -27.798703 }, "geometry": { "type": "Point", "coordinates": [ 151.568, -27.799 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.700161, "decimalLat": -34.90339 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.900151, "decimalLat": -37.656657 }, "geometry": { "type": "Point", "coordinates": [ 143.9, -37.657 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163667, "decimalLat": -38.670928 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.716338, "decimalLat": -27.567313 }, "geometry": { "type": "Point", "coordinates": [ 151.716, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249514, "decimalLat": -27.496771 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.079358, "decimalLat": -26.705455 }, "geometry": { "type": "Point", "coordinates": [ 151.079, -26.705 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110267, "decimalLat": -27.529719 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609972, "decimalLat": -28.662362 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.562952, "decimalLat": -37.427823 }, "geometry": { "type": "Point", "coordinates": [ 144.563, -37.428 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092883, "decimalLat": -27.525059 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091635, "decimalLat": -27.527013 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09167, "decimalLat": -27.527199 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103656, "decimalLat": -27.530151 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074085, "decimalLat": -27.546118 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076425, "decimalLat": -27.817442 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.817 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109249, "decimalLat": -27.526664 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069741, "decimalLat": -27.510502 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.883627, "decimalLat": -37.613657 }, "geometry": { "type": "Point", "coordinates": [ 143.884, -37.614 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074808, "decimalLat": -27.546361 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.938911, "decimalLat": -27.411426 }, "geometry": { "type": "Point", "coordinates": [ 151.939, -27.411 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.684072, "decimalLat": -27.996854 }, "geometry": { "type": "Point", "coordinates": [ 152.684, -27.997 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004928, "decimalLat": -27.412605 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.615331, "decimalLat": -27.340392 }, "geometry": { "type": "Point", "coordinates": [ 152.615, -27.34 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.248659, "decimalLat": -37.810927 }, "geometry": { "type": "Point", "coordinates": [ 144.249, -37.811 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055514, "decimalLat": -27.544227 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09225, "decimalLat": -27.527735 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.611805, "decimalLat": -27.338364 }, "geometry": { "type": "Point", "coordinates": [ 152.612, -27.338 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.585515, "decimalLat": -28.917259 }, "geometry": { "type": "Point", "coordinates": [ 151.586, -28.917 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.617217, "decimalLat": -27.318847 }, "geometry": { "type": "Point", "coordinates": [ 152.617, -27.319 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705658, "decimalLat": -34.903253 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085797, "decimalLat": -27.510384 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.717848, "decimalLat": -34.89145 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.354161, "decimalLat": -37.845322 }, "geometry": { "type": "Point", "coordinates": [ 144.354, -37.845 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058568, "decimalLat": -27.545502 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656587, "decimalLat": -35.019345 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -35.019 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.928863, "decimalLat": -27.33488 }, "geometry": { "type": "Point", "coordinates": [ 151.929, -27.335 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363663, "decimalLat": -38.318753 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.698986, "decimalLat": -34.936472 }, "geometry": { "type": "Point", "coordinates": [ 138.699, -34.936 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10371, "decimalLat": -27.529504 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520479, "decimalLat": -30.520765 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.512475, "decimalLat": -38.832769 }, "geometry": { "type": "Point", "coordinates": [ 143.512, -38.833 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113644, "decimalLat": -27.528474 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.089139, "decimalLat": -27.220697 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -27.221 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102387, "decimalLat": -27.519586 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.52 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003087, "decimalLat": -27.413915 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.782954, "decimalLat": -26.309719 }, "geometry": { "type": "Point", "coordinates": [ 151.783, -26.31 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090535, "decimalLat": -27.633533 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.634 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111572, "decimalLat": -27.524331 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.271943, "decimalLat": -37.843945 }, "geometry": { "type": "Point", "coordinates": [ 144.272, -37.844 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.706313, "decimalLat": -34.937517 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.938 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073583, "decimalLat": -27.519145 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060288, "decimalLat": -27.551888 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072232, "decimalLat": -27.545679 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.519212, "decimalLat": -38.830852 }, "geometry": { "type": "Point", "coordinates": [ 143.519, -38.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104224, "decimalLat": -27.52977 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075745, "decimalLat": -27.50515 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.501405, "decimalLat": -37.034861 }, "geometry": { "type": "Point", "coordinates": [ 145.501, -37.035 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063319, "decimalLat": -27.550162 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003263, "decimalLat": -27.413598 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.79825, "decimalLat": -22.778533 }, "geometry": { "type": "Point", "coordinates": [ 149.798, -22.779 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092404, "decimalLat": -27.525254 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003478, "decimalLat": -27.413917 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.553938, "decimalLat": -37.015219 }, "geometry": { "type": "Point", "coordinates": [ 145.554, -37.015 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.400347, "decimalLat": -27.498852 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.945341, "decimalLat": -28.125262 }, "geometry": { "type": "Point", "coordinates": [ 152.945, -28.125 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705586, "decimalLat": -34.936431 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080406, "decimalLat": -27.512353 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.709167, "decimalLat": -27.64875 }, "geometry": { "type": "Point", "coordinates": [ 151.709, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.904896, "decimalLat": -27.456337 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -27.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.072189, "decimalLat": -38.235242 }, "geometry": { "type": "Point", "coordinates": [ 142.072, -38.235 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.937525, "decimalLat": -26.175366 }, "geometry": { "type": "Point", "coordinates": [ 151.938, -26.175 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073835, "decimalLat": -27.545712 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090658, "decimalLat": -27.527154 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.653357, "decimalLat": -34.963136 }, "geometry": { "type": "Point", "coordinates": [ 138.653, -34.963 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401014, "decimalLat": -28.258193 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102762, "decimalLat": -27.52673 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090941, "decimalLat": -27.527168 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.456038, "decimalLat": -35.828945 }, "geometry": { "type": "Point", "coordinates": [ 145.456, -35.829 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.631239, "decimalLat": -34.991033 }, "geometry": { "type": "Point", "coordinates": [ 138.631, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439356, "decimalLat": -27.394409 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092686, "decimalLat": -27.525794 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.865722, "decimalLat": -19.142339 }, "geometry": { "type": "Point", "coordinates": [ 146.866, -19.142 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090216, "decimalLat": -27.526742 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092372, "decimalLat": -27.528167 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.734689, "decimalLat": -27.594316 }, "geometry": { "type": "Point", "coordinates": [ 151.735, -27.594 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057918, "decimalLat": -27.551936 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106734, "decimalLat": -27.529347 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056305, "decimalLat": -27.552045 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.560484, "decimalLat": -27.789645 }, "geometry": { "type": "Point", "coordinates": [ 151.56, -27.79 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085423, "decimalLat": -27.510284 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.928122, "decimalLat": -27.27475 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -27.275 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.594864, "decimalLat": -37.330909 }, "geometry": { "type": "Point", "coordinates": [ 144.595, -37.331 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657613, "decimalLat": -34.864996 }, "geometry": { "type": "Point", "coordinates": [ 138.658, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.380781, "decimalLat": -27.903888 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090824, "decimalLat": -27.525835 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102888, "decimalLat": -27.527731 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107605, "decimalLat": -27.527224 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.901148, "decimalLat": -37.641822 }, "geometry": { "type": "Point", "coordinates": [ 143.901, -37.642 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092288, "decimalLat": -27.527295 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.517939, "decimalLat": -30.520949 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083343, "decimalLat": -27.516969 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091139, "decimalLat": -27.527313 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092374, "decimalLat": -27.527295 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.692123, "decimalLat": -26.176948 }, "geometry": { "type": "Point", "coordinates": [ 151.692, -26.177 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.182072, "decimalLat": -37.840237 }, "geometry": { "type": "Point", "coordinates": [ 144.182, -37.84 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080561, "decimalLat": -27.508314 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.526367, "decimalLat": -27.632733 }, "geometry": { "type": "Point", "coordinates": [ 151.526, -27.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081361, "decimalLat": -27.508148 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.611328, "decimalLat": -27.332808 }, "geometry": { "type": "Point", "coordinates": [ 152.611, -27.333 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103528, "decimalLat": -27.529953 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.901914, "decimalLat": -27.621192 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.595462, "decimalLat": -34.773142 }, "geometry": { "type": "Point", "coordinates": [ 146.595, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.934322, "decimalLat": -38.560083 }, "geometry": { "type": "Point", "coordinates": [ 143.934, -38.56 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090936, "decimalLat": -27.52685 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059481, "decimalLat": -27.541804 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092669, "decimalLat": -27.528192 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519431, "decimalLat": -30.522595 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.523 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091593, "decimalLat": -27.527059 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.050215, "decimalLat": -27.53996 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.541815, "decimalLat": -36.406769 }, "geometry": { "type": "Point", "coordinates": [ 146.542, -36.407 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722213, "decimalLat": -34.890676 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104014, "decimalLat": -27.529885 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.741172, "decimalLat": -37.554052 }, "geometry": { "type": "Point", "coordinates": [ 149.741, -37.554 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036828, "decimalLat": -27.532359 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.951522, "decimalLat": -37.726937 }, "geometry": { "type": "Point", "coordinates": [ 143.952, -37.727 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.377006, "decimalLat": -27.081761 }, "geometry": { "type": "Point", "coordinates": [ 152.377, -27.082 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112544, "decimalLat": -27.527973 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083637, "decimalLat": -27.505904 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.262878, "decimalLat": -36.223362 }, "geometry": { "type": "Point", "coordinates": [ 146.263, -36.223 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0934, "decimalLat": -27.52491 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.937892, "decimalLat": -27.416758 }, "geometry": { "type": "Point", "coordinates": [ 151.938, -27.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060057, "decimalLat": -27.549617 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91425, "decimalLat": -30.496679 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -30.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.526567, "decimalLat": -37.484424 }, "geometry": { "type": "Point", "coordinates": [ 144.527, -37.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.248252, "decimalLat": -27.496345 }, "geometry": { "type": "Point", "coordinates": [ 152.248, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.610272, "decimalLat": -35.024745 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.025 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092606, "decimalLat": -27.527098 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090547, "decimalLat": -27.52598 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.649798, "decimalLat": -35.015539 }, "geometry": { "type": "Point", "coordinates": [ 138.65, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.589645, "decimalLat": -37.521808 }, "geometry": { "type": "Point", "coordinates": [ 144.59, -37.522 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072842, "decimalLat": -27.549327 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.59709, "decimalLat": -35.022687 }, "geometry": { "type": "Point", "coordinates": [ 138.597, -35.023 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109872, "decimalLat": -27.528243 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70249, "decimalLat": -34.903158 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070399, "decimalLat": -27.509598 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095047, "decimalLat": -33.076428 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06135, "decimalLat": -27.549755 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376871, "decimalLat": -28.253745 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124126, "decimalLat": -30.294154 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.294 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722822, "decimalLat": -34.889926 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.862431, "decimalLat": -19.151424 }, "geometry": { "type": "Point", "coordinates": [ 146.862, -19.151 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.567342, "decimalLat": -34.76224 }, "geometry": { "type": "Point", "coordinates": [ 146.567, -34.762 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090959, "decimalLat": -27.527441 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249435, "decimalLat": -27.496763 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71445, "decimalLat": -34.926405 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.926 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.514085, "decimalLat": -27.422308 }, "geometry": { "type": "Point", "coordinates": [ 153.514, -27.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079773, "decimalLat": -27.545193 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078086, "decimalLat": -27.736192 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.736 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377051, "decimalLat": -28.254111 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0547, "decimalLat": -27.541525 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092893, "decimalLat": -27.528607 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091416, "decimalLat": -27.527314 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.746928, "decimalLat": -26.362934 }, "geometry": { "type": "Point", "coordinates": [ 151.747, -26.363 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.748432, "decimalLat": -38.551862 }, "geometry": { "type": "Point", "coordinates": [ 143.748, -38.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092012, "decimalLat": -27.527188 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.414489, "decimalLat": -31.931904 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.977653, "decimalLat": -38.498061 }, "geometry": { "type": "Point", "coordinates": [ 142.978, -38.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.709437, "decimalLat": -38.537581 }, "geometry": { "type": "Point", "coordinates": [ 143.709, -38.538 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.851209, "decimalLat": -38.672289 }, "geometry": { "type": "Point", "coordinates": [ 143.851, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103973, "decimalLat": -27.530318 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092186, "decimalLat": -27.528233 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.045235, "decimalLat": -27.25702 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.067655, "decimalLat": -27.546569 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093136, "decimalLat": -27.524414 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090703, "decimalLat": -27.526802 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.574131, "decimalLat": -35.080038 }, "geometry": { "type": "Point", "coordinates": [ 138.574, -35.08 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.738058, "decimalLat": -34.826169 }, "geometry": { "type": "Point", "coordinates": [ 138.738, -34.826 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.086152, "decimalLat": -37.633227 }, "geometry": { "type": "Point", "coordinates": [ 144.086, -37.633 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722746, "decimalLat": -34.891005 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.335698, "decimalLat": -27.984705 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -27.985 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730675, "decimalLat": -34.890986 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091653, "decimalLat": -27.527196 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.883756, "decimalLat": -37.587216 }, "geometry": { "type": "Point", "coordinates": [ 143.884, -37.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046526, "decimalLat": -27.257202 }, "geometry": { "type": "Point", "coordinates": [ 152.047, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109707, "decimalLat": -27.529441 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058236, "decimalLat": -27.547288 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9458, "decimalLat": -28.1258 }, "geometry": { "type": "Point", "coordinates": [ 152.946, -28.126 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.670721, "decimalLat": -35.015947 }, "geometry": { "type": "Point", "coordinates": [ 138.671, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.537054, "decimalLat": -38.812525 }, "geometry": { "type": "Point", "coordinates": [ 143.537, -38.813 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104965, "decimalLat": -27.530076 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090533, "decimalLat": -27.526741 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.715505, "decimalLat": -38.637893 }, "geometry": { "type": "Point", "coordinates": [ 145.716, -38.638 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.652636, "decimalLat": -35.003297 }, "geometry": { "type": "Point", "coordinates": [ 138.653, -35.003 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000516, "decimalLat": -27.240945 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.241 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111831, "decimalLat": -27.527778 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07224, "decimalLat": -27.545149 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.737442, "decimalLat": -38.63134 }, "geometry": { "type": "Point", "coordinates": [ 145.737, -38.631 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.682065, "decimalLat": -35.086972 }, "geometry": { "type": "Point", "coordinates": [ 138.682, -35.087 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.807309, "decimalLat": -27.530525 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.404576, "decimalLat": -38.773424 }, "geometry": { "type": "Point", "coordinates": [ 143.405, -38.773 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.989605, "decimalLat": -27.277909 }, "geometry": { "type": "Point", "coordinates": [ 152.99, -27.278 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073299, "decimalLat": -27.54565 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.44588, "decimalLat": -37.018788 }, "geometry": { "type": "Point", "coordinates": [ 145.446, -37.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.907639, "decimalLat": -28.174202 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -28.174 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.143111, "decimalLat": -27.828987 }, "geometry": { "type": "Point", "coordinates": [ 153.143, -27.829 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.161926, "decimalLat": -28.874607 }, "geometry": { "type": "Point", "coordinates": [ 153.162, -28.875 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.749772, "decimalLat": -34.074764 }, "geometry": { "type": "Point", "coordinates": [ 140.75, -34.075 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.987097, "decimalLat": -27.292184 }, "geometry": { "type": "Point", "coordinates": [ 152.987, -27.292 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093124, "decimalLat": -27.526383 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101661, "decimalLat": -27.734401 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.734 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111199, "decimalLat": -27.527134 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.432806, "decimalLat": -26.640237 }, "geometry": { "type": "Point", "coordinates": [ 152.433, -26.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.737455, "decimalLat": -38.339655 }, "geometry": { "type": "Point", "coordinates": [ 142.737, -38.34 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.605389, "decimalLat": -38.521989 }, "geometry": { "type": "Point", "coordinates": [ 146.605, -38.522 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060597, "decimalLat": -27.543949 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.569421, "decimalLat": -35.080743 }, "geometry": { "type": "Point", "coordinates": [ 138.569, -35.081 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057848, "decimalLat": -27.551863 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090966, "decimalLat": -27.526469 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069678, "decimalLat": -27.510482 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057358, "decimalLat": -27.551375 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084343, "decimalLat": -27.516703 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.706546, "decimalLat": -34.903214 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519203, "decimalLat": -30.520654 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.826844, "decimalLat": -34.101551 }, "geometry": { "type": "Point", "coordinates": [ 150.827, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721874, "decimalLat": -34.889788 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036916, "decimalLat": -27.533822 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036833, "decimalLat": -27.549905 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111662, "decimalLat": -27.524725 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.561447, "decimalLat": -27.799242 }, "geometry": { "type": "Point", "coordinates": [ 151.561, -27.799 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103624, "decimalLat": -27.529082 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091596, "decimalLat": -27.527161 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993267, "decimalLat": -27.823584 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046503, "decimalLat": -27.257246 }, "geometry": { "type": "Point", "coordinates": [ 152.047, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720798, "decimalLat": -34.892425 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054339, "decimalLat": -27.552781 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.61802, "decimalLat": -27.892616 }, "geometry": { "type": "Point", "coordinates": [ 152.618, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870019, "decimalLat": -19.125043 }, "geometry": { "type": "Point", "coordinates": [ 146.87, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106872, "decimalLat": -27.529074 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093578, "decimalLat": -27.524499 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.048643, "decimalLat": -26.040694 }, "geometry": { "type": "Point", "coordinates": [ 152.049, -26.041 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092938, "decimalLat": -27.526131 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.364288, "decimalLat": -38.318845 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.361567, "decimalLat": -38.318722 }, "geometry": { "type": "Point", "coordinates": [ 142.362, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.117461, "decimalLat": -27.50807 }, "geometry": { "type": "Point", "coordinates": [ 153.117, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.684722, "decimalLat": -34.825556 }, "geometry": { "type": "Point", "coordinates": [ 135.685, -34.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377198, "decimalLat": -28.253559 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092094, "decimalLat": -27.526914 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732551, "decimalLat": -34.887121 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363678, "decimalLat": -38.318795 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092571, "decimalLat": -27.527629 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.78183, "decimalLat": -27.392905 }, "geometry": { "type": "Point", "coordinates": [ 151.782, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.653738, "decimalLat": -34.869197 }, "geometry": { "type": "Point", "coordinates": [ 138.654, -34.869 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.834288, "decimalLat": -36.235355 }, "geometry": { "type": "Point", "coordinates": [ 146.834, -36.235 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103916, "decimalLat": -27.528887 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.978678, "decimalLat": -29.778998 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -29.779 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.284803, "decimalLat": -37.849112 }, "geometry": { "type": "Point", "coordinates": [ 144.285, -37.849 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164231, "decimalLat": -38.671628 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07369, "decimalLat": -27.545697 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.503883, "decimalLat": -35.589197 }, "geometry": { "type": "Point", "coordinates": [ 137.504, -35.589 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056867, "decimalLat": -27.546775 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.681337, "decimalLat": -28.000436 }, "geometry": { "type": "Point", "coordinates": [ 152.681, -28.0 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993298, "decimalLat": -27.823214 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.667106, "decimalLat": -34.938511 }, "geometry": { "type": "Point", "coordinates": [ 138.667, -34.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.400453, "decimalLat": -27.496605 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05393, "decimalLat": -27.550635 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.054546, "decimalLat": -27.256754 }, "geometry": { "type": "Point", "coordinates": [ 152.055, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.524903, "decimalLat": -38.835695 }, "geometry": { "type": "Point", "coordinates": [ 143.525, -38.836 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163789, "decimalLat": -38.671355 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.648317, "decimalLat": -34.876943 }, "geometry": { "type": "Point", "coordinates": [ 138.648, -34.877 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054722, "decimalLat": -27.552049 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105349, "decimalLat": -27.529401 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.966773, "decimalLat": -37.88441 }, "geometry": { "type": "Point", "coordinates": [ 145.967, -37.884 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.438501, "decimalLat": -27.417534 }, "geometry": { "type": "Point", "coordinates": [ 152.439, -27.418 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.110322, "decimalLat": -27.566467 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.861604, "decimalLat": -36.954012 }, "geometry": { "type": "Point", "coordinates": [ 145.862, -36.954 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.933734, "decimalLat": -27.274184 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -27.274 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.035418, "decimalLat": -38.201375 }, "geometry": { "type": "Point", "coordinates": [ 142.035, -38.201 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093135, "decimalLat": -27.523957 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103657, "decimalLat": -27.530029 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.027701, "decimalLat": -27.251352 }, "geometry": { "type": "Point", "coordinates": [ 153.028, -27.251 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.874892, "decimalLat": -37.595429 }, "geometry": { "type": "Point", "coordinates": [ 143.875, -37.595 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.126129, "decimalLat": -30.296092 }, "geometry": { "type": "Point", "coordinates": [ 153.126, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.338279, "decimalLat": -26.401586 }, "geometry": { "type": "Point", "coordinates": [ 151.338, -26.402 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092561, "decimalLat": -27.525016 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105384, "decimalLat": -27.530377 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057936, "decimalLat": -27.550802 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.222367, "decimalLat": -38.34318 }, "geometry": { "type": "Point", "coordinates": [ 143.222, -38.343 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082824, "decimalLat": -27.507249 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.749252, "decimalLat": -34.794916 }, "geometry": { "type": "Point", "coordinates": [ 138.749, -34.795 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993413, "decimalLat": -27.823743 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.476152, "decimalLat": -37.793464 }, "geometry": { "type": "Point", "coordinates": [ 141.476, -37.793 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.531447, "decimalLat": -27.724522 }, "geometry": { "type": "Point", "coordinates": [ 151.531, -27.725 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.649356, "decimalLat": -35.085522 }, "geometry": { "type": "Point", "coordinates": [ 138.649, -35.086 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.831788, "decimalLat": -34.100276 }, "geometry": { "type": "Point", "coordinates": [ 150.832, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6526, "decimalLat": -35.009181 }, "geometry": { "type": "Point", "coordinates": [ 138.653, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.895874, "decimalLat": -37.712899 }, "geometry": { "type": "Point", "coordinates": [ 143.896, -37.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.969303, "decimalLat": -38.53252 }, "geometry": { "type": "Point", "coordinates": [ 143.969, -38.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.512322, "decimalLat": -38.834462 }, "geometry": { "type": "Point", "coordinates": [ 143.512, -38.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401909, "decimalLat": -28.259845 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.989616, "decimalLat": -27.579304 }, "geometry": { "type": "Point", "coordinates": [ 151.99, -27.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.834636, "decimalLat": -38.392216 }, "geometry": { "type": "Point", "coordinates": [ 142.835, -38.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112716, "decimalLat": -27.542484 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.853808, "decimalLat": -28.07537 }, "geometry": { "type": "Point", "coordinates": [ 152.854, -28.075 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058406, "decimalLat": -27.551377 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164628, "decimalLat": -38.671045 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.944664, "decimalLat": -27.324325 }, "geometry": { "type": "Point", "coordinates": [ 151.945, -27.324 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734087, "decimalLat": -34.887307 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091661, "decimalLat": -27.527238 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.380343, "decimalLat": -26.608275 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -26.608 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.094514, "decimalLat": -27.0397 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -27.04 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000639, "decimalLat": -27.284482 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.054183, "decimalLat": -27.267988 }, "geometry": { "type": "Point", "coordinates": [ 152.054, -27.268 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104672, "decimalLat": -27.530563 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070634, "decimalLat": -27.50255 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.405785, "decimalLat": -38.351539 }, "geometry": { "type": "Point", "coordinates": [ 146.406, -38.352 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070394, "decimalLat": -27.509592 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.351498, "decimalLat": -38.37826 }, "geometry": { "type": "Point", "coordinates": [ 145.351, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073624, "decimalLat": -27.513686 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.577055, "decimalLat": -34.766842 }, "geometry": { "type": "Point", "coordinates": [ 146.577, -34.767 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.753766, "decimalLat": -34.995311 }, "geometry": { "type": "Point", "coordinates": [ 138.754, -34.995 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.375978, "decimalLat": -27.918712 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.871368, "decimalLat": -19.123665 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.124 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10505, "decimalLat": -27.528269 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394057, "decimalLat": -28.959144 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000818, "decimalLat": -27.284989 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.266669, "decimalLat": -37.39149 }, "geometry": { "type": "Point", "coordinates": [ 144.267, -37.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055217, "decimalLat": -27.550436 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363649, "decimalLat": -38.31819 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.895827, "decimalLat": -37.643061 }, "geometry": { "type": "Point", "coordinates": [ 143.896, -37.643 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091632, "decimalLat": -27.527161 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.234817, "decimalLat": -38.263569 }, "geometry": { "type": "Point", "coordinates": [ 145.235, -38.264 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72226, "decimalLat": -34.892265 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095387, "decimalLat": -33.076681 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07245, "decimalLat": -27.54923 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.727797, "decimalLat": -38.628158 }, "geometry": { "type": "Point", "coordinates": [ 145.728, -38.628 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090492, "decimalLat": -27.525926 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.106514, "decimalLat": -27.561218 }, "geometry": { "type": "Point", "coordinates": [ 152.107, -27.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163799, "decimalLat": -38.671178 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.613458, "decimalLat": -27.340154 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -27.34 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.3884, "decimalLat": -38.354696 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.169662, "decimalLat": -37.061222 }, "geometry": { "type": "Point", "coordinates": [ 145.17, -37.061 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003108, "decimalLat": -27.413176 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110315, "decimalLat": -27.527764 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090894, "decimalLat": -27.526468 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.221026, "decimalLat": -35.964313 }, "geometry": { "type": "Point", "coordinates": [ 137.221, -35.964 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004394, "decimalLat": -27.41465 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091715, "decimalLat": -27.527094 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103494, "decimalLat": -27.529762 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.9777, "decimalLat": -38.497775 }, "geometry": { "type": "Point", "coordinates": [ 142.978, -38.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092217, "decimalLat": -27.52724 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401309, "decimalLat": -28.256241 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092384, "decimalLat": -27.525111 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.625852, "decimalLat": -27.43987 }, "geometry": { "type": "Point", "coordinates": [ 151.626, -27.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11238, "decimalLat": -27.529061 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564058, "decimalLat": -28.380797 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82193, "decimalLat": -34.101853 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103109, "decimalLat": -27.529763 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.169646, "decimalLat": -21.456596 }, "geometry": { "type": "Point", "coordinates": [ 149.17, -21.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.246167, "decimalLat": -38.038579 }, "geometry": { "type": "Point", "coordinates": [ 141.246, -38.039 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086728, "decimalLat": -27.510464 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.881249, "decimalLat": -37.616457 }, "geometry": { "type": "Point", "coordinates": [ 143.881, -37.616 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074666, "decimalLat": -27.358581 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.039689, "decimalLat": -27.536895 }, "geometry": { "type": "Point", "coordinates": [ 153.04, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.559821, "decimalLat": -33.689449 }, "geometry": { "type": "Point", "coordinates": [ 149.56, -33.689 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092707, "decimalLat": -27.527616 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073467, "decimalLat": -27.545648 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.999199, "decimalLat": -38.825259 }, "geometry": { "type": "Point", "coordinates": [ 145.999, -38.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055263, "decimalLat": -27.536917 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163697, "decimalLat": -38.671367 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001963, "decimalLat": -26.393662 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -26.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.998116, "decimalLat": -27.433067 }, "geometry": { "type": "Point", "coordinates": [ 152.998, -27.433 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72537, "decimalLat": -34.893588 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -34.894 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054597, "decimalLat": -27.552317 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.828215, "decimalLat": -28.092026 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0834, "decimalLat": -27.509225 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091616, "decimalLat": -27.525921 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.594803, "decimalLat": -34.773328 }, "geometry": { "type": "Point", "coordinates": [ 146.595, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729492, "decimalLat": -37.92437 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084005, "decimalLat": -27.509704 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.164317, "decimalLat": -27.571135 }, "geometry": { "type": "Point", "coordinates": [ 153.164, -27.571 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.483021, "decimalLat": -32.397595 }, "geometry": { "type": "Point", "coordinates": [ 152.483, -32.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091634, "decimalLat": -27.527214 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.842355, "decimalLat": -19.135861 }, "geometry": { "type": "Point", "coordinates": [ 146.842, -19.136 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.002992, "decimalLat": -27.413456 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.792799, "decimalLat": -26.13385 }, "geometry": { "type": "Point", "coordinates": [ 151.793, -26.134 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.575217, "decimalLat": -35.079787 }, "geometry": { "type": "Point", "coordinates": [ 138.575, -35.08 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090889, "decimalLat": -27.525838 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092388, "decimalLat": -27.527886 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253041, "decimalLat": -27.529812 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.151408, "decimalLat": -27.748031 }, "geometry": { "type": "Point", "coordinates": [ 153.151, -27.748 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062165, "decimalLat": -27.221882 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.222 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.61328, "decimalLat": -27.339374 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.246472, "decimalLat": -27.498205 }, "geometry": { "type": "Point", "coordinates": [ 152.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.010728, "decimalLat": -26.505493 }, "geometry": { "type": "Point", "coordinates": [ 152.011, -26.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092241, "decimalLat": -27.528038 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059747, "decimalLat": -27.548476 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095031, "decimalLat": -33.076453 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.647215, "decimalLat": -35.003886 }, "geometry": { "type": "Point", "coordinates": [ 138.647, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.286182, "decimalLat": -37.849138 }, "geometry": { "type": "Point", "coordinates": [ 144.286, -37.849 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715655, "decimalLat": -34.891793 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26003, "decimalLat": -27.502371 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.314562, "decimalLat": -37.296708 }, "geometry": { "type": "Point", "coordinates": [ 144.315, -37.297 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999933, "decimalLat": -27.284465 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073258, "decimalLat": -27.545801 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.030718, "decimalLat": -27.245398 }, "geometry": { "type": "Point", "coordinates": [ 153.031, -27.245 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.057401, "decimalLat": -36.782363 }, "geometry": { "type": "Point", "coordinates": [ 140.057, -36.782 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.130158, "decimalLat": -27.591767 }, "geometry": { "type": "Point", "coordinates": [ 153.13, -27.592 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092459, "decimalLat": -27.527253 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.799133, "decimalLat": -26.152405 }, "geometry": { "type": "Point", "coordinates": [ 151.799, -26.152 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.726499, "decimalLat": -38.080116 }, "geometry": { "type": "Point", "coordinates": [ 141.726, -38.08 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.853588, "decimalLat": -28.0676 }, "geometry": { "type": "Point", "coordinates": [ 152.854, -28.068 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09071, "decimalLat": -27.526539 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076641, "decimalLat": -27.232143 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.232 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377271, "decimalLat": -28.253634 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.516089, "decimalLat": -35.13305 }, "geometry": { "type": "Point", "coordinates": [ 138.516, -35.133 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.49411, "decimalLat": -35.707269 }, "geometry": { "type": "Point", "coordinates": [ 137.494, -35.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.578783, "decimalLat": -38.329841 }, "geometry": { "type": "Point", "coordinates": [ 142.579, -38.33 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.93554, "decimalLat": -38.395529 }, "geometry": { "type": "Point", "coordinates": [ 144.936, -38.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.80818, "decimalLat": -27.820985 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -27.821 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.157272, "decimalLat": -28.17353 }, "geometry": { "type": "Point", "coordinates": [ 153.157, -28.174 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.132151, "decimalLat": -27.563622 }, "geometry": { "type": "Point", "coordinates": [ 153.132, -27.564 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715703, "decimalLat": -34.890488 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092279, "decimalLat": -27.5254 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058504, "decimalLat": -27.55498 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.772557, "decimalLat": -27.376052 }, "geometry": { "type": "Point", "coordinates": [ 151.773, -27.376 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.115062, "decimalLat": -27.52906 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249435, "decimalLat": -27.496763 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.49707, "decimalLat": -38.08901 }, "geometry": { "type": "Point", "coordinates": [ 141.497, -38.089 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.617938, "decimalLat": -34.991022 }, "geometry": { "type": "Point", "coordinates": [ 138.618, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.592326, "decimalLat": -34.757499 }, "geometry": { "type": "Point", "coordinates": [ 146.592, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.724786, "decimalLat": -34.932733 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.95723, "decimalLat": -26.237975 }, "geometry": { "type": "Point", "coordinates": [ 151.957, -26.238 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057925, "decimalLat": -27.550794 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.28079, "decimalLat": -31.066162 }, "geometry": { "type": "Point", "coordinates": [ 150.281, -31.066 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921133, "decimalLat": -31.45951 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713578, "decimalLat": -34.788313 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.788 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655826, "decimalLat": -35.020845 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.021 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091522, "decimalLat": -27.527228 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090363, "decimalLat": -27.525791 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110338, "decimalLat": -27.527638 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.811754, "decimalLat": -26.362977 }, "geometry": { "type": "Point", "coordinates": [ 151.812, -26.363 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.284172, "decimalLat": -37.512786 }, "geometry": { "type": "Point", "coordinates": [ 144.284, -37.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730564, "decimalLat": -34.891302 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.948028, "decimalLat": -38.421938 }, "geometry": { "type": "Point", "coordinates": [ 144.948, -38.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.68964, "decimalLat": -38.649586 }, "geometry": { "type": "Point", "coordinates": [ 145.69, -38.65 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.89099, "decimalLat": -37.617771 }, "geometry": { "type": "Point", "coordinates": [ 143.891, -37.618 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721659, "decimalLat": -34.891641 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09176, "decimalLat": -27.527128 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046351, "decimalLat": -27.257102 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721822, "decimalLat": -34.891909 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.934997, "decimalLat": -27.32542 }, "geometry": { "type": "Point", "coordinates": [ 151.935, -27.325 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.218413, "decimalLat": -37.898393 }, "geometry": { "type": "Point", "coordinates": [ 144.218, -37.898 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.972635, "decimalLat": -28.32328 }, "geometry": { "type": "Point", "coordinates": [ 152.973, -28.323 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403914, "decimalLat": -28.26064 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.859458, "decimalLat": -38.671542 }, "geometry": { "type": "Point", "coordinates": [ 143.859, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.715492, "decimalLat": -38.721949 }, "geometry": { "type": "Point", "coordinates": [ 143.715, -38.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.554007, "decimalLat": -34.913063 }, "geometry": { "type": "Point", "coordinates": [ 138.554, -34.913 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.799422, "decimalLat": -27.181111 }, "geometry": { "type": "Point", "coordinates": [ 152.799, -27.181 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.58525, "decimalLat": -34.774272 }, "geometry": { "type": "Point", "coordinates": [ 146.585, -34.774 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.528533, "decimalLat": -38.82515 }, "geometry": { "type": "Point", "coordinates": [ 143.529, -38.825 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.134981, "decimalLat": -27.48798 }, "geometry": { "type": "Point", "coordinates": [ 153.135, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103056, "decimalLat": -27.529145 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060133, "decimalLat": -27.54954 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.289897, "decimalLat": -28.998398 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.998 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001266, "decimalLat": -27.310919 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.311 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.605587, "decimalLat": -38.337187 }, "geometry": { "type": "Point", "coordinates": [ 141.606, -38.337 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924117, "decimalLat": -31.4445 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.044603, "decimalLat": -27.295192 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.295 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092203, "decimalLat": -27.527104 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.697119, "decimalLat": -34.990486 }, "geometry": { "type": "Point", "coordinates": [ 138.697, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091004, "decimalLat": -27.526447 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.989502, "decimalLat": -26.407442 }, "geometry": { "type": "Point", "coordinates": [ 152.99, -26.407 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.90464, "decimalLat": -37.64101 }, "geometry": { "type": "Point", "coordinates": [ 143.905, -37.641 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376673, "decimalLat": -28.253646 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.692215, "decimalLat": -26.183208 }, "geometry": { "type": "Point", "coordinates": [ 151.692, -26.183 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.888809, "decimalLat": -27.599764 }, "geometry": { "type": "Point", "coordinates": [ 151.889, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109294, "decimalLat": -27.526978 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.468583, "decimalLat": -35.715422 }, "geometry": { "type": "Point", "coordinates": [ 137.469, -35.715 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092035, "decimalLat": -27.527123 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90652, "decimalLat": -31.43877 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.307246, "decimalLat": -38.597649 }, "geometry": { "type": "Point", "coordinates": [ 146.307, -38.598 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.246541, "decimalLat": -27.503235 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734915, "decimalLat": -34.887886 }, "geometry": { "type": "Point", "coordinates": [ 138.735, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.115462, "decimalLat": -27.529551 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.936588, "decimalLat": -27.275519 }, "geometry": { "type": "Point", "coordinates": [ 152.937, -27.276 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.497355, "decimalLat": -35.160124 }, "geometry": { "type": "Point", "coordinates": [ 138.497, -35.16 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.03281, "decimalLat": -27.54004 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.937714, "decimalLat": -27.416831 }, "geometry": { "type": "Point", "coordinates": [ 151.938, -27.417 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072481, "decimalLat": -27.544929 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090595, "decimalLat": -27.52574 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.621022, "decimalLat": -25.629632 }, "geometry": { "type": "Point", "coordinates": [ 151.621, -25.63 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.986142, "decimalLat": -38.888404 }, "geometry": { "type": "Point", "coordinates": [ 145.986, -38.888 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.974655, "decimalLat": -26.161042 }, "geometry": { "type": "Point", "coordinates": [ 151.975, -26.161 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860809, "decimalLat": -38.668824 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.669 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.981531, "decimalLat": -38.496233 }, "geometry": { "type": "Point", "coordinates": [ 142.982, -38.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.972154, "decimalLat": -30.43224 }, "geometry": { "type": "Point", "coordinates": [ 152.972, -30.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.360924, "decimalLat": -38.317801 }, "geometry": { "type": "Point", "coordinates": [ 142.361, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003187, "decimalLat": -27.41318 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.671369, "decimalLat": -34.928711 }, "geometry": { "type": "Point", "coordinates": [ 138.671, -34.929 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073819, "decimalLat": -27.545627 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.572424, "decimalLat": -35.036344 }, "geometry": { "type": "Point", "coordinates": [ 138.572, -35.036 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163728, "decimalLat": -38.671272 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053098, "decimalLat": -27.544998 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.64183, "decimalLat": -38.327049 }, "geometry": { "type": "Point", "coordinates": [ 142.642, -38.327 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921661, "decimalLat": -31.460705 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.424606, "decimalLat": -28.000969 }, "geometry": { "type": "Point", "coordinates": [ 152.425, -28.001 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.398626, "decimalLat": -27.166782 }, "geometry": { "type": "Point", "coordinates": [ 152.399, -27.167 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.793641, "decimalLat": -35.763209 }, "geometry": { "type": "Point", "coordinates": [ 137.794, -35.763 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093756, "decimalLat": -27.527985 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.648467, "decimalLat": -35.00397 }, "geometry": { "type": "Point", "coordinates": [ 138.648, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.688478, "decimalLat": -34.875439 }, "geometry": { "type": "Point", "coordinates": [ 138.688, -34.875 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.616416, "decimalLat": -35.016862 }, "geometry": { "type": "Point", "coordinates": [ 138.616, -35.017 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112802, "decimalLat": -27.528292 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055423, "decimalLat": -27.544065 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234212, "decimalLat": -27.971895 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.972 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260697, "decimalLat": -27.502342 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.23971, "decimalLat": -38.254414 }, "geometry": { "type": "Point", "coordinates": [ 145.24, -38.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730458, "decimalLat": -34.890878 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093128, "decimalLat": -27.526377 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.681245, "decimalLat": -36.348055 }, "geometry": { "type": "Point", "coordinates": [ 146.681, -36.348 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.587561, "decimalLat": -26.873778 }, "geometry": { "type": "Point", "coordinates": [ 152.588, -26.874 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.182153, "decimalLat": -37.913747 }, "geometry": { "type": "Point", "coordinates": [ 144.182, -37.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.102372, "decimalLat": -27.568742 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.883209, "decimalLat": -37.586559 }, "geometry": { "type": "Point", "coordinates": [ 143.883, -37.587 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.972994, "decimalLat": -26.573273 }, "geometry": { "type": "Point", "coordinates": [ 151.973, -26.573 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.049583, "decimalLat": -27.527528 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090322, "decimalLat": -27.52681 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000912, "decimalLat": -27.285092 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103311, "decimalLat": -27.530334 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057916, "decimalLat": -27.551008 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399568, "decimalLat": -28.259983 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070378, "decimalLat": -27.509552 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072174, "decimalLat": -27.544272 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.612612, "decimalLat": -27.338663 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09271, "decimalLat": -27.527776 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.733647, "decimalLat": -37.376519 }, "geometry": { "type": "Point", "coordinates": [ 144.734, -37.377 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.53332, "decimalLat": -38.811596 }, "geometry": { "type": "Point", "coordinates": [ 143.533, -38.812 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.636682, "decimalLat": -38.341387 }, "geometry": { "type": "Point", "coordinates": [ 142.637, -38.341 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102443, "decimalLat": -27.519395 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000854, "decimalLat": -27.284458 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40056, "decimalLat": -28.257678 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.578556, "decimalLat": -38.330081 }, "geometry": { "type": "Point", "coordinates": [ 142.579, -38.33 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05912, "decimalLat": -27.556102 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.870252, "decimalLat": -37.596103 }, "geometry": { "type": "Point", "coordinates": [ 143.87, -37.596 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103632, "decimalLat": -27.529129 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.645198, "decimalLat": -34.884307 }, "geometry": { "type": "Point", "coordinates": [ 138.645, -34.884 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.034648, "decimalLat": -27.52863 }, "geometry": { "type": "Point", "coordinates": [ 153.035, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.183612, "decimalLat": -37.707711 }, "geometry": { "type": "Point", "coordinates": [ 144.184, -37.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437857, "decimalLat": -27.400379 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.886444, "decimalLat": -37.63409 }, "geometry": { "type": "Point", "coordinates": [ 143.886, -37.634 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.286022, "decimalLat": -37.849108 }, "geometry": { "type": "Point", "coordinates": [ 144.286, -37.849 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08287, "decimalLat": -27.51202 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.186391, "decimalLat": -27.724136 }, "geometry": { "type": "Point", "coordinates": [ 153.186, -27.724 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.821299, "decimalLat": -26.458113 }, "geometry": { "type": "Point", "coordinates": [ 151.821, -26.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868914, "decimalLat": -19.13079 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.131 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092239, "decimalLat": -27.565309 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000426, "decimalLat": -27.285261 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.987428, "decimalLat": -29.281753 }, "geometry": { "type": "Point", "coordinates": [ 149.987, -29.282 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.756112, "decimalLat": -26.128011 }, "geometry": { "type": "Point", "coordinates": [ 151.756, -26.128 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.789319, "decimalLat": -34.78906 }, "geometry": { "type": "Point", "coordinates": [ 146.789, -34.789 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.158058, "decimalLat": -27.624886 }, "geometry": { "type": "Point", "coordinates": [ 153.158, -27.625 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082678, "decimalLat": -27.512075 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10589, "decimalLat": -27.529477 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.368242, "decimalLat": -38.302322 }, "geometry": { "type": "Point", "coordinates": [ 142.368, -38.302 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103624, "decimalLat": -27.530496 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.161309, "decimalLat": -27.718697 }, "geometry": { "type": "Point", "coordinates": [ 153.161, -27.719 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054916, "decimalLat": -27.537293 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520196, "decimalLat": -30.52073 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072916, "decimalLat": -27.542664 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082575, "decimalLat": -27.507578 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.002793, "decimalLat": -38.296532 }, "geometry": { "type": "Point", "coordinates": [ 145.003, -38.297 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080475, "decimalLat": -27.512263 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377422, "decimalLat": -28.253998 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092355, "decimalLat": -27.528245 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063446, "decimalLat": -27.550864 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093137, "decimalLat": -27.526359 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071986, "decimalLat": -27.544834 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519082, "decimalLat": -30.520808 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103644, "decimalLat": -27.53 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086381, "decimalLat": -27.510462 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868508, "decimalLat": -19.126275 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.126 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.801744, "decimalLat": -37.733624 }, "geometry": { "type": "Point", "coordinates": [ 143.802, -37.734 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.868605, "decimalLat": -37.182075 }, "geometry": { "type": "Point", "coordinates": [ 140.869, -37.182 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.61855, "decimalLat": -38.78545 }, "geometry": { "type": "Point", "coordinates": [ 143.619, -38.785 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.971828, "decimalLat": -30.433085 }, "geometry": { "type": "Point", "coordinates": [ 152.972, -30.433 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.974992, "decimalLat": -38.500061 }, "geometry": { "type": "Point", "coordinates": [ 142.975, -38.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.866114, "decimalLat": -26.52471 }, "geometry": { "type": "Point", "coordinates": [ 151.866, -26.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.383238, "decimalLat": -37.483008 }, "geometry": { "type": "Point", "coordinates": [ 145.383, -37.483 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107595, "decimalLat": -27.527096 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072831, "decimalLat": -27.545947 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.957374, "decimalLat": -27.484933 }, "geometry": { "type": "Point", "coordinates": [ 152.957, -27.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.93695, "decimalLat": -27.275333 }, "geometry": { "type": "Point", "coordinates": [ 152.937, -27.275 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109021, "decimalLat": -27.527055 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.286383, "decimalLat": -37.838992 }, "geometry": { "type": "Point", "coordinates": [ 144.286, -37.839 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.971256, "decimalLat": -38.476358 }, "geometry": { "type": "Point", "coordinates": [ 142.971, -38.476 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104427, "decimalLat": -27.529231 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080781, "decimalLat": -27.248705 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.249 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073164, "decimalLat": -27.519561 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.52 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.97653, "decimalLat": -26.155908 }, "geometry": { "type": "Point", "coordinates": [ 151.977, -26.156 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104504, "decimalLat": -27.53055 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.867166, "decimalLat": -28.075276 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -28.075 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058284, "decimalLat": -27.547348 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438277, "decimalLat": -27.40104 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058509, "decimalLat": -27.548118 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519431, "decimalLat": -30.522595 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.523 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.034286, "decimalLat": -27.5281 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729628, "decimalLat": -34.88968 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.65097, "decimalLat": -27.628963 }, "geometry": { "type": "Point", "coordinates": [ 151.651, -27.629 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09277, "decimalLat": -27.526981 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991915, "decimalLat": -27.176591 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.177 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722467, "decimalLat": -34.889559 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403783, "decimalLat": -27.499171 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.365485, "decimalLat": -38.323316 }, "geometry": { "type": "Point", "coordinates": [ 142.365, -38.323 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.886444, "decimalLat": -37.63409 }, "geometry": { "type": "Point", "coordinates": [ 143.886, -37.634 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085532, "decimalLat": -27.507087 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.80942, "decimalLat": -35.960385 }, "geometry": { "type": "Point", "coordinates": [ 136.809, -35.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003703, "decimalLat": -27.41132 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.411 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090654, "decimalLat": -27.525649 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.892848, "decimalLat": -34.0506 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -34.051 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.518403, "decimalLat": -30.520863 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058136, "decimalLat": -27.545325 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.558512, "decimalLat": -35.25993 }, "geometry": { "type": "Point", "coordinates": [ 138.559, -35.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.237185, "decimalLat": -38.135009 }, "geometry": { "type": "Point", "coordinates": [ 145.237, -38.135 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107694, "decimalLat": -27.527068 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103228, "decimalLat": -27.528242 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071607, "decimalLat": -27.502529 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08258, "decimalLat": -27.70157 }, "geometry": { "type": "Point", "coordinates": [ 152.083, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437941, "decimalLat": -27.401607 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.402 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437802, "decimalLat": -27.400131 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054004, "decimalLat": -27.544655 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103452, "decimalLat": -27.528894 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093244, "decimalLat": -27.525852 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.93648, "decimalLat": -27.512056 }, "geometry": { "type": "Point", "coordinates": [ 151.936, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092799, "decimalLat": -27.528517 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093303, "decimalLat": -27.525537 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09083, "decimalLat": -27.526844 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090698, "decimalLat": -27.526015 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059686, "decimalLat": -27.549843 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.11185, "decimalLat": -27.566543 }, "geometry": { "type": "Point", "coordinates": [ 152.112, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.062673, "decimalLat": -27.348402 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -27.348 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.779764, "decimalLat": -26.674952 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -26.675 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107388, "decimalLat": -27.527269 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078909, "decimalLat": -27.506252 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109003, "decimalLat": -27.527083 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091789, "decimalLat": -27.526905 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092673, "decimalLat": -27.525811 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.901148, "decimalLat": -37.641822 }, "geometry": { "type": "Point", "coordinates": [ 143.901, -37.642 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.45221, "decimalLat": -26.102688 }, "geometry": { "type": "Point", "coordinates": [ 151.452, -26.103 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.038505, "decimalLat": -27.532734 }, "geometry": { "type": "Point", "coordinates": [ 153.039, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.048961, "decimalLat": -27.267989 }, "geometry": { "type": "Point", "coordinates": [ 152.049, -27.268 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.088975, "decimalLat": -27.509773 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991812, "decimalLat": -27.82383 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076945, "decimalLat": -27.543189 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.252565, "decimalLat": -37.859328 }, "geometry": { "type": "Point", "coordinates": [ 144.253, -37.859 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377444, "decimalLat": -28.25403 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.202117, "decimalLat": -38.65152 }, "geometry": { "type": "Point", "coordinates": [ 146.202, -38.652 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070057, "decimalLat": -27.510634 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993061, "decimalLat": -27.823414 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.732692, "decimalLat": -38.545853 }, "geometry": { "type": "Point", "coordinates": [ 143.733, -38.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712012, "decimalLat": -34.87396 }, "geometry": { "type": "Point", "coordinates": [ 138.712, -34.874 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11145, "decimalLat": -27.527953 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.874817, "decimalLat": -27.483677 }, "geometry": { "type": "Point", "coordinates": [ 151.875, -27.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.584569, "decimalLat": -35.096675 }, "geometry": { "type": "Point", "coordinates": [ 138.585, -35.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000952, "decimalLat": -27.284595 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.991272, "decimalLat": -38.398875 }, "geometry": { "type": "Point", "coordinates": [ 142.991, -38.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.417437, "decimalLat": -38.268262 }, "geometry": { "type": "Point", "coordinates": [ 141.417, -38.268 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.17408, "decimalLat": -28.891611 }, "geometry": { "type": "Point", "coordinates": [ 153.174, -28.892 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057898, "decimalLat": -27.551184 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103361, "decimalLat": -27.527797 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090282, "decimalLat": -27.525449 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.29367, "decimalLat": -26.894525 }, "geometry": { "type": "Point", "coordinates": [ 152.294, -26.895 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.651757, "decimalLat": -35.007917 }, "geometry": { "type": "Point", "coordinates": [ 138.652, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.683931, "decimalLat": -34.865683 }, "geometry": { "type": "Point", "coordinates": [ 138.684, -34.866 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637482, "decimalLat": -35.005276 }, "geometry": { "type": "Point", "coordinates": [ 138.637, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868083, "decimalLat": -19.126917 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.127 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.809402, "decimalLat": -35.96032 }, "geometry": { "type": "Point", "coordinates": [ 136.809, -35.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093342, "decimalLat": -27.526754 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.664842, "decimalLat": -28.254267 }, "geometry": { "type": "Point", "coordinates": [ 151.665, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721252, "decimalLat": -35.176127 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -35.176 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.181779, "decimalLat": -38.627043 }, "geometry": { "type": "Point", "coordinates": [ 146.182, -38.627 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06051, "decimalLat": -27.550633 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991133, "decimalLat": -27.822378 }, "geometry": { "type": "Point", "coordinates": [ 152.991, -27.822 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.474713, "decimalLat": -37.685101 }, "geometry": { "type": "Point", "coordinates": [ 144.475, -37.685 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.960102, "decimalLat": -27.465413 }, "geometry": { "type": "Point", "coordinates": [ 152.96, -27.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092336, "decimalLat": -27.528054 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107727, "decimalLat": -27.527248 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10609, "decimalLat": -27.529251 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.736417, "decimalLat": -38.631333 }, "geometry": { "type": "Point", "coordinates": [ 145.736, -38.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.935013, "decimalLat": -27.329022 }, "geometry": { "type": "Point", "coordinates": [ 151.935, -27.329 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091497, "decimalLat": -27.52699 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092147, "decimalLat": -27.527201 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1104, "decimalLat": -27.5275 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.652906, "decimalLat": -35.013932 }, "geometry": { "type": "Point", "coordinates": [ 138.653, -35.014 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.559476, "decimalLat": -37.061315 }, "geometry": { "type": "Point", "coordinates": [ 145.559, -37.061 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080561, "decimalLat": -27.508314 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111295, "decimalLat": -27.529527 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.246095, "decimalLat": -33.169853 }, "geometry": { "type": "Point", "coordinates": [ 151.246, -33.17 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.877408, "decimalLat": -37.599598 }, "geometry": { "type": "Point", "coordinates": [ 143.877, -37.6 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901543, "decimalLat": -31.442307 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732072, "decimalLat": -34.890452 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.494975, "decimalLat": -35.707286 }, "geometry": { "type": "Point", "coordinates": [ 137.495, -35.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104093, "decimalLat": -27.528877 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.24933, "decimalLat": -27.49628 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.282539, "decimalLat": -38.139051 }, "geometry": { "type": "Point", "coordinates": [ 145.283, -38.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.151142, "decimalLat": -27.583787 }, "geometry": { "type": "Point", "coordinates": [ 153.151, -27.584 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.662787, "decimalLat": -26.393532 }, "geometry": { "type": "Point", "coordinates": [ 152.663, -26.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.36361, "decimalLat": -38.318662 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000851, "decimalLat": -27.284485 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.401655, "decimalLat": -27.457563 }, "geometry": { "type": "Point", "coordinates": [ 152.402, -27.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.162292, "decimalLat": -28.875798 }, "geometry": { "type": "Point", "coordinates": [ 153.162, -28.876 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387667, "decimalLat": -38.358693 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387489, "decimalLat": -38.360263 }, "geometry": { "type": "Point", "coordinates": [ 146.387, -38.36 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1833, "decimalLat": -27.53118 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372697, "decimalLat": -27.911922 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06955, "decimalLat": -27.224047 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.224 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901505, "decimalLat": -31.442345 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085294, "decimalLat": -27.508776 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105524, "decimalLat": -27.505109 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072707, "decimalLat": -27.543561 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.980172, "decimalLat": -26.509306 }, "geometry": { "type": "Point", "coordinates": [ 151.98, -26.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.682525, "decimalLat": -34.825 }, "geometry": { "type": "Point", "coordinates": [ 135.683, -34.825 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05401, "decimalLat": -27.550926 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.377039, "decimalLat": -37.679616 }, "geometry": { "type": "Point", "coordinates": [ 144.377, -37.68 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092286, "decimalLat": -27.527921 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.511244, "decimalLat": -34.933675 }, "geometry": { "type": "Point", "coordinates": [ 138.511, -34.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.304401, "decimalLat": -37.772496 }, "geometry": { "type": "Point", "coordinates": [ 144.304, -37.772 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090909, "decimalLat": -27.516782 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054849, "decimalLat": -27.543777 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718884, "decimalLat": -34.891691 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.516073, "decimalLat": -38.833038 }, "geometry": { "type": "Point", "coordinates": [ 143.516, -38.833 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109417, "decimalLat": -27.52942 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282641, "decimalLat": -27.526185 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.919774, "decimalLat": -37.650408 }, "geometry": { "type": "Point", "coordinates": [ 143.92, -37.65 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092488, "decimalLat": -27.527683 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.245493, "decimalLat": -37.864889 }, "geometry": { "type": "Point", "coordinates": [ 144.245, -37.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38145, "decimalLat": -27.922134 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.443218, "decimalLat": -28.127324 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.86171, "decimalLat": -27.323957 }, "geometry": { "type": "Point", "coordinates": [ 151.862, -27.324 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093018, "decimalLat": -27.527867 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09161, "decimalLat": -27.527278 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036656, "decimalLat": -27.5364 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9021, "decimalLat": -31.44227 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.387534, "decimalLat": -37.051797 }, "geometry": { "type": "Point", "coordinates": [ 145.388, -37.052 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10967, "decimalLat": -27.529659 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.049101, "decimalLat": -27.265864 }, "geometry": { "type": "Point", "coordinates": [ 152.049, -27.266 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520479, "decimalLat": -30.520765 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082786, "decimalLat": -27.507569 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09102, "decimalLat": -27.526484 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.555437, "decimalLat": -27.18757 }, "geometry": { "type": "Point", "coordinates": [ 152.555, -27.188 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.493442, "decimalLat": -35.706873 }, "geometry": { "type": "Point", "coordinates": [ 137.493, -35.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401823, "decimalLat": -28.25848 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003178, "decimalLat": -27.413336 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.302391, "decimalLat": -27.96093 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -27.961 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090942, "decimalLat": -27.527493 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.587803, "decimalLat": -34.76584 }, "geometry": { "type": "Point", "coordinates": [ 146.588, -34.766 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071645, "decimalLat": -27.510886 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102999, "decimalLat": -27.527534 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.88333, "decimalLat": -27.559855 }, "geometry": { "type": "Point", "coordinates": [ 151.883, -27.56 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.373963, "decimalLat": -27.914843 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091028, "decimalLat": -27.525953 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.932051, "decimalLat": -37.653024 }, "geometry": { "type": "Point", "coordinates": [ 143.932, -37.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085319, "decimalLat": -27.509074 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.634411, "decimalLat": -34.887824 }, "geometry": { "type": "Point", "coordinates": [ 138.634, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.723081, "decimalLat": -34.890106 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076706, "decimalLat": -27.540147 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.108311, "decimalLat": -27.28358 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67187, "decimalLat": -34.951234 }, "geometry": { "type": "Point", "coordinates": [ 138.672, -34.951 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092867, "decimalLat": -27.528465 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093743, "decimalLat": -27.527853 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.760391, "decimalLat": -37.563316 }, "geometry": { "type": "Point", "coordinates": [ 149.76, -37.563 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112807, "decimalLat": -27.528385 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.949888, "decimalLat": -26.544575 }, "geometry": { "type": "Point", "coordinates": [ 151.95, -26.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.737356, "decimalLat": -27.598737 }, "geometry": { "type": "Point", "coordinates": [ 151.737, -27.599 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.874747, "decimalLat": -37.595255 }, "geometry": { "type": "Point", "coordinates": [ 143.875, -37.595 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721374, "decimalLat": -34.890375 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110703, "decimalLat": -27.529866 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.893367, "decimalLat": -37.593995 }, "geometry": { "type": "Point", "coordinates": [ 143.893, -37.594 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06237, "decimalLat": -27.540722 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.059333, "decimalLat": -27.264707 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -27.265 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993598, "decimalLat": -27.284646 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729263, "decimalLat": -37.922488 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084563, "decimalLat": -27.52376 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000797, "decimalLat": -27.284347 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091235, "decimalLat": -27.527339 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104808, "decimalLat": -27.529713 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.574746, "decimalLat": -35.02011 }, "geometry": { "type": "Point", "coordinates": [ 138.575, -35.02 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057571, "decimalLat": -27.550959 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703553, "decimalLat": -34.903008 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.58853, "decimalLat": -27.16358 }, "geometry": { "type": "Point", "coordinates": [ 152.589, -27.164 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.638222, "decimalLat": -37.94035 }, "geometry": { "type": "Point", "coordinates": [ 145.638, -37.94 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105381, "decimalLat": -27.529388 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.693772, "decimalLat": -34.922337 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35501, "decimalLat": -27.985017 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -27.985 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095122, "decimalLat": -33.076503 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.367258, "decimalLat": -38.316153 }, "geometry": { "type": "Point", "coordinates": [ 142.367, -38.316 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.384275, "decimalLat": -36.168217 }, "geometry": { "type": "Point", "coordinates": [ 149.384, -36.168 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09241, "decimalLat": -27.52842 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.820923, "decimalLat": -26.399767 }, "geometry": { "type": "Point", "coordinates": [ 151.821, -26.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103406, "decimalLat": -27.528763 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.586999, "decimalLat": -34.753796 }, "geometry": { "type": "Point", "coordinates": [ 146.587, -34.754 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656896, "decimalLat": -34.8593 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.859 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084458, "decimalLat": -27.510928 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.272522, "decimalLat": -37.75238 }, "geometry": { "type": "Point", "coordinates": [ 144.273, -37.752 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.641229, "decimalLat": -27.454285 }, "geometry": { "type": "Point", "coordinates": [ 152.641, -27.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058549, "decimalLat": -27.547835 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110464, "decimalLat": -27.529845 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.512847, "decimalLat": -27.552138 }, "geometry": { "type": "Point", "coordinates": [ 151.513, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10482, "decimalLat": -27.529448 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.732557, "decimalLat": -27.587939 }, "geometry": { "type": "Point", "coordinates": [ 151.733, -27.588 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104801, "decimalLat": -27.521063 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.688876, "decimalLat": -34.953798 }, "geometry": { "type": "Point", "coordinates": [ 138.689, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705905, "decimalLat": -34.931865 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163772, "decimalLat": -38.671105 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108266, "decimalLat": -27.527118 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090541, "decimalLat": -27.526855 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376666, "decimalLat": -28.252995 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107267, "decimalLat": -27.527247 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.915367, "decimalLat": -38.481553 }, "geometry": { "type": "Point", "coordinates": [ 143.915, -38.482 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104488, "decimalLat": -27.529707 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.570949, "decimalLat": -35.035222 }, "geometry": { "type": "Point", "coordinates": [ 138.571, -35.035 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.031142, "decimalLat": -37.691048 }, "geometry": { "type": "Point", "coordinates": [ 144.031, -37.691 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.044708, "decimalLat": -27.256998 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093706, "decimalLat": -27.524978 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057848, "decimalLat": -27.551863 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.747787, "decimalLat": -28.236213 }, "geometry": { "type": "Point", "coordinates": [ 152.748, -28.236 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.514944, "decimalLat": -27.850113 }, "geometry": { "type": "Point", "coordinates": [ 152.515, -27.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.650375, "decimalLat": -35.015767 }, "geometry": { "type": "Point", "coordinates": [ 138.65, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052864, "decimalLat": -27.553274 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103727, "decimalLat": -27.529773 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000985, "decimalLat": -26.394889 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -26.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090761, "decimalLat": -27.527038 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061049, "decimalLat": -27.538031 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082812, "decimalLat": -27.506273 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713728, "decimalLat": -34.892726 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898072, "decimalLat": -30.465162 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -30.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.944917, "decimalLat": -27.385276 }, "geometry": { "type": "Point", "coordinates": [ 151.945, -27.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102756, "decimalLat": -27.527541 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376614, "decimalLat": -28.253838 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.714506, "decimalLat": -34.844521 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.845 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.737979, "decimalLat": -26.314643 }, "geometry": { "type": "Point", "coordinates": [ 151.738, -26.315 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104834, "decimalLat": -27.529699 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105822, "decimalLat": -27.529205 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.562943, "decimalLat": -27.180677 }, "geometry": { "type": "Point", "coordinates": [ 152.563, -27.181 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.710785, "decimalLat": -27.649204 }, "geometry": { "type": "Point", "coordinates": [ 151.711, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394861, "decimalLat": -28.275582 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.854296, "decimalLat": -38.668088 }, "geometry": { "type": "Point", "coordinates": [ 143.854, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.779174, "decimalLat": -26.112093 }, "geometry": { "type": "Point", "coordinates": [ 151.779, -26.112 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822845, "decimalLat": -34.101905 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104042, "decimalLat": -27.530555 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.702896, "decimalLat": -34.205486 }, "geometry": { "type": "Point", "coordinates": [ 140.703, -34.205 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109566, "decimalLat": -27.527938 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09078, "decimalLat": -27.527089 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090349, "decimalLat": -27.526669 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163803, "decimalLat": -38.671178 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.869694, "decimalLat": -19.12525 }, "geometry": { "type": "Point", "coordinates": [ 146.87, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.118402, "decimalLat": -38.826817 }, "geometry": { "type": "Point", "coordinates": [ 146.118, -38.827 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091611, "decimalLat": -27.526878 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730258, "decimalLat": -34.890237 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057551, "decimalLat": -27.551619 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058017, "decimalLat": -27.547945 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.846364, "decimalLat": -26.22482 }, "geometry": { "type": "Point", "coordinates": [ 151.846, -26.225 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.267375, "decimalLat": -27.311774 }, "geometry": { "type": "Point", "coordinates": [ 152.267, -27.312 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646973, "decimalLat": -33.447762 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -33.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.824358, "decimalLat": -27.249316 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -27.249 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.701717, "decimalLat": -34.902689 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.055269, "decimalLat": -27.273434 }, "geometry": { "type": "Point", "coordinates": [ 152.055, -27.273 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999062, "decimalLat": -27.283681 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09169, "decimalLat": -27.527196 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084462, "decimalLat": -27.524008 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092532, "decimalLat": -27.527674 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.773733, "decimalLat": -38.481041 }, "geometry": { "type": "Point", "coordinates": [ 146.774, -38.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520666, "decimalLat": -30.520908 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.229492, "decimalLat": -36.093794 }, "geometry": { "type": "Point", "coordinates": [ 149.229, -36.094 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400813, "decimalLat": -28.257928 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059191, "decimalLat": -27.549144 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.084863, "decimalLat": -29.73011 }, "geometry": { "type": "Point", "coordinates": [ 151.085, -29.73 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.232925, "decimalLat": -38.264253 }, "geometry": { "type": "Point", "coordinates": [ 145.233, -38.264 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092405, "decimalLat": -27.527283 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.917929, "decimalLat": -27.709042 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -27.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.8156, "decimalLat": -26.409729 }, "geometry": { "type": "Point", "coordinates": [ 151.816, -26.41 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.602495, "decimalLat": -35.002042 }, "geometry": { "type": "Point", "coordinates": [ 138.602, -35.002 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.919083, "decimalLat": -37.653061 }, "geometry": { "type": "Point", "coordinates": [ 143.919, -37.653 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059574, "decimalLat": -27.545424 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.567222, "decimalLat": -33.635833 }, "geometry": { "type": "Point", "coordinates": [ 150.567, -33.636 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103818, "decimalLat": -27.529251 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037102, "decimalLat": -27.536211 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111487, "decimalLat": -27.529454 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721331, "decimalLat": -34.892709 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063203, "decimalLat": -32.706138 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068808, "decimalLat": -27.510098 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.169603, "decimalLat": -21.453861 }, "geometry": { "type": "Point", "coordinates": [ 149.17, -21.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092034, "decimalLat": -27.525846 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.102858, "decimalLat": -27.570475 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749065, "decimalLat": -26.154302 }, "geometry": { "type": "Point", "coordinates": [ 151.749, -26.154 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.033118, "decimalLat": -27.539771 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.442232, "decimalLat": -27.393478 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103774, "decimalLat": -27.528908 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4021, "decimalLat": -28.258863 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.983536, "decimalLat": -38.502644 }, "geometry": { "type": "Point", "coordinates": [ 142.984, -38.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.099674, "decimalLat": -27.531856 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.921655, "decimalLat": -26.721647 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -26.722 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.572997, "decimalLat": -27.62997 }, "geometry": { "type": "Point", "coordinates": [ 151.573, -27.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.379641, "decimalLat": -28.219027 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -28.219 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059086, "decimalLat": -27.544911 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.044471, "decimalLat": -27.539354 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0914, "decimalLat": -27.527287 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.836585, "decimalLat": -21.7566 }, "geometry": { "type": "Point", "coordinates": [ 148.837, -21.757 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095139, "decimalLat": -33.076467 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.187791, "decimalLat": -28.19339 }, "geometry": { "type": "Point", "coordinates": [ 153.188, -28.193 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09329, "decimalLat": -27.524037 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.896463, "decimalLat": -37.6435 }, "geometry": { "type": "Point", "coordinates": [ 143.896, -37.643 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.730562, "decimalLat": -37.924183 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.66835, "decimalLat": -38.75853 }, "geometry": { "type": "Point", "coordinates": [ 143.668, -38.759 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.11989, "decimalLat": -37.336988 }, "geometry": { "type": "Point", "coordinates": [ 144.12, -37.337 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.151142, "decimalLat": -27.583787 }, "geometry": { "type": "Point", "coordinates": [ 153.151, -27.584 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.000275, "decimalLat": -28.525812 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -28.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.83715, "decimalLat": -26.256383 }, "geometry": { "type": "Point", "coordinates": [ 151.837, -26.256 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.689223, "decimalLat": -35.08766 }, "geometry": { "type": "Point", "coordinates": [ 138.689, -35.088 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.73359, "decimalLat": -37.91057 }, "geometry": { "type": "Point", "coordinates": [ 147.734, -37.911 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059291, "decimalLat": -27.55629 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.556 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722209, "decimalLat": -34.890591 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.680448, "decimalLat": -27.851109 }, "geometry": { "type": "Point", "coordinates": [ 152.68, -27.851 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363197, "decimalLat": -38.318633 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376691, "decimalLat": -28.25287 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.89601, "decimalLat": -37.579232 }, "geometry": { "type": "Point", "coordinates": [ 143.896, -37.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109002, "decimalLat": -27.527049 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05394, "decimalLat": -27.539173 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.727714, "decimalLat": -34.887707 }, "geometry": { "type": "Point", "coordinates": [ 138.728, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.945922, "decimalLat": -28.125575 }, "geometry": { "type": "Point", "coordinates": [ 152.946, -28.126 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164159, "decimalLat": -38.671492 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103312, "decimalLat": -27.529018 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.535508, "decimalLat": -27.429829 }, "geometry": { "type": "Point", "coordinates": [ 153.536, -27.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11048, "decimalLat": -27.527507 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.654496, "decimalLat": -34.965054 }, "geometry": { "type": "Point", "coordinates": [ 138.654, -34.965 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057439, "decimalLat": -27.551297 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.954588, "decimalLat": -27.444527 }, "geometry": { "type": "Point", "coordinates": [ 151.955, -27.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702963, "decimalLat": -34.903078 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377304, "decimalLat": -28.25385 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.753515, "decimalLat": -26.15951 }, "geometry": { "type": "Point", "coordinates": [ 151.754, -26.16 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.373631, "decimalLat": -27.916619 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.181864, "decimalLat": -27.499442 }, "geometry": { "type": "Point", "coordinates": [ 153.182, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.744307, "decimalLat": -37.540278 }, "geometry": { "type": "Point", "coordinates": [ 149.744, -37.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403251, "decimalLat": -27.493922 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.304703, "decimalLat": -38.687915 }, "geometry": { "type": "Point", "coordinates": [ 146.305, -38.688 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314194, "decimalLat": -38.376148 }, "geometry": { "type": "Point", "coordinates": [ 145.314, -38.376 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.004525, "decimalLat": -33.207552 }, "geometry": { "type": "Point", "coordinates": [ 151.005, -33.208 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092315, "decimalLat": -27.528424 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.862672, "decimalLat": -27.3194 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -27.319 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093074, "decimalLat": -27.528025 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.624412, "decimalLat": -27.406219 }, "geometry": { "type": "Point", "coordinates": [ 152.624, -27.406 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.366175, "decimalLat": -38.3141 }, "geometry": { "type": "Point", "coordinates": [ 142.366, -38.314 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092112, "decimalLat": -27.525483 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377458, "decimalLat": -28.25425 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073383, "decimalLat": -27.545911 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10417, "decimalLat": -27.52824 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16362, "decimalLat": -38.671167 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.050963, "decimalLat": -27.558239 }, "geometry": { "type": "Point", "coordinates": [ 153.051, -27.558 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110737, "decimalLat": -27.529816 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.871082, "decimalLat": -19.124135 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.124 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.509888, "decimalLat": -36.9682 }, "geometry": { "type": "Point", "coordinates": [ 145.51, -36.968 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 150.920364, "decimalLat": -26.674371 }, "geometry": { "type": "Point", "coordinates": [ 150.92, -26.674 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.840979, "decimalLat": -34.062977 }, "geometry": { "type": "Point", "coordinates": [ 150.841, -34.063 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.373463, "decimalLat": -27.917027 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000312, "decimalLat": -27.284601 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091462, "decimalLat": -27.527109 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072342, "decimalLat": -27.544489 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.264732, "decimalLat": -37.3939 }, "geometry": { "type": "Point", "coordinates": [ 144.265, -37.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688128, "decimalLat": -21.687472 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377263, "decimalLat": -28.254182 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.111389, "decimalLat": -27.371389 }, "geometry": { "type": "Point", "coordinates": [ 152.111, -27.371 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074816, "decimalLat": -27.546516 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868729, "decimalLat": -19.125463 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.115413, "decimalLat": -27.529229 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.046925, "decimalLat": -27.54971 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107863, "decimalLat": -27.526662 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057757, "decimalLat": -27.551766 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057497, "decimalLat": -27.54663 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093132, "decimalLat": -27.524147 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054011, "decimalLat": -27.550931 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.50617, "decimalLat": -35.120678 }, "geometry": { "type": "Point", "coordinates": [ 138.506, -35.121 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.544756, "decimalLat": -27.971665 }, "geometry": { "type": "Point", "coordinates": [ 152.545, -27.972 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.402988, "decimalLat": -27.493645 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.718189, "decimalLat": -38.722582 }, "geometry": { "type": "Point", "coordinates": [ 143.718, -38.723 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092122, "decimalLat": -27.527353 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057505, "decimalLat": -27.551685 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.454542, "decimalLat": -27.38986 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -27.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07262, "decimalLat": -27.549098 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376912, "decimalLat": -28.254041 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095091, "decimalLat": -33.076325 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093318, "decimalLat": -27.524162 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.518633, "decimalLat": -30.521032 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715482, "decimalLat": -34.891742 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.291167, "decimalLat": -37.079684 }, "geometry": { "type": "Point", "coordinates": [ 144.291, -37.08 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.724218, "decimalLat": -34.896258 }, "geometry": { "type": "Point", "coordinates": [ 138.724, -34.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.10716, "decimalLat": -27.562821 }, "geometry": { "type": "Point", "coordinates": [ 152.107, -27.563 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.542938, "decimalLat": -35.209918 }, "geometry": { "type": "Point", "coordinates": [ 138.543, -35.21 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.692853, "decimalLat": -36.358478 }, "geometry": { "type": "Point", "coordinates": [ 146.693, -36.358 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055099, "decimalLat": -27.545951 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.606868, "decimalLat": -28.164285 }, "geometry": { "type": "Point", "coordinates": [ 152.607, -28.164 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.060822, "decimalLat": -27.259925 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -27.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.671606, "decimalLat": -34.898546 }, "geometry": { "type": "Point", "coordinates": [ 135.672, -34.899 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09356, "decimalLat": -27.524418 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.252604, "decimalLat": -27.513976 }, "geometry": { "type": "Point", "coordinates": [ 152.253, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.273378, "decimalLat": -38.127628 }, "geometry": { "type": "Point", "coordinates": [ 145.273, -38.128 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.038396, "decimalLat": -38.269242 }, "geometry": { "type": "Point", "coordinates": [ 147.038, -38.269 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657117, "decimalLat": -34.865227 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057378, "decimalLat": -27.551692 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.267586, "decimalLat": -38.133389 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.133 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822036, "decimalLat": -34.101683 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.991468, "decimalLat": -38.366608 }, "geometry": { "type": "Point", "coordinates": [ 144.991, -38.367 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109526, "decimalLat": -27.529002 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08498, "decimalLat": -27.509204 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.760635, "decimalLat": -38.061806 }, "geometry": { "type": "Point", "coordinates": [ 141.761, -38.062 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057596, "decimalLat": -27.551268 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093703, "decimalLat": -27.524917 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05941, "decimalLat": -27.548248 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.925522, "decimalLat": -27.314492 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -27.314 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.998651, "decimalLat": -37.692515 }, "geometry": { "type": "Point", "coordinates": [ 143.999, -37.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068525, "decimalLat": -27.545104 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999718, "decimalLat": -27.284035 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090703, "decimalLat": -27.525814 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.378855, "decimalLat": -27.917736 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377676, "decimalLat": -28.253958 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70516, "decimalLat": -34.903108 }, "geometry": { "type": "Point", "coordinates": [ 138.705, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.401214, "decimalLat": -27.456932 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -27.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.644072, "decimalLat": -30.437579 }, "geometry": { "type": "Point", "coordinates": [ 151.644, -30.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.828224, "decimalLat": -28.093447 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.673106, "decimalLat": -35.008294 }, "geometry": { "type": "Point", "coordinates": [ 138.673, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.255067, "decimalLat": -38.139133 }, "geometry": { "type": "Point", "coordinates": [ 145.255, -38.139 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090632, "decimalLat": -27.526484 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055467, "decimalLat": -27.550729 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.860105, "decimalLat": -28.220302 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -28.22 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109699, "decimalLat": -27.528253 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.017867, "decimalLat": -38.470653 }, "geometry": { "type": "Point", "coordinates": [ 145.018, -38.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091107, "decimalLat": -27.526973 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.0701, "decimalLat": -28.013943 }, "geometry": { "type": "Point", "coordinates": [ 151.07, -28.014 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105295, "decimalLat": -27.529913 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.625991, "decimalLat": -34.893256 }, "geometry": { "type": "Point", "coordinates": [ 138.626, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091655, "decimalLat": -27.527221 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.860105, "decimalLat": -28.220302 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -28.22 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722912, "decimalLat": -34.889984 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.727266, "decimalLat": -34.995017 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.995 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090914, "decimalLat": -27.525827 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.996781, "decimalLat": -27.304636 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -27.305 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091679, "decimalLat": -27.526947 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057958, "decimalLat": -27.550838 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103365, "decimalLat": -27.5295 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109197, "decimalLat": -27.527217 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377492, "decimalLat": -28.254076 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732485, "decimalLat": -34.890294 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.326222, "decimalLat": -35.44546 }, "geometry": { "type": "Point", "coordinates": [ 138.326, -35.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247138, "decimalLat": -27.604868 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.605 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163758, "decimalLat": -38.671092 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074041, "decimalLat": -27.546001 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.708075, "decimalLat": -34.905984 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -34.906 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093216, "decimalLat": -27.524039 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40342, "decimalLat": -27.493791 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601537, "decimalLat": -29.87032 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -29.87 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.695144, "decimalLat": -34.957707 }, "geometry": { "type": "Point", "coordinates": [ 138.695, -34.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.248415, "decimalLat": -30.988959 }, "geometry": { "type": "Point", "coordinates": [ 150.248, -30.989 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.047778, "decimalLat": -38.265833 }, "geometry": { "type": "Point", "coordinates": [ 145.048, -38.266 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.484362, "decimalLat": -37.031379 }, "geometry": { "type": "Point", "coordinates": [ 145.484, -37.031 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058676, "decimalLat": -27.547867 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.724328, "decimalLat": -38.630977 }, "geometry": { "type": "Point", "coordinates": [ 145.724, -38.631 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72806, "decimalLat": -34.89067 }, "geometry": { "type": "Point", "coordinates": [ 138.728, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09106, "decimalLat": -27.525961 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.943741, "decimalLat": -27.392485 }, "geometry": { "type": "Point", "coordinates": [ 151.944, -27.392 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.527296, "decimalLat": -26.349158 }, "geometry": { "type": "Point", "coordinates": [ 151.527, -26.349 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.690407, "decimalLat": -34.946247 }, "geometry": { "type": "Point", "coordinates": [ 138.69, -34.946 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703766, "decimalLat": -34.903719 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.151142, "decimalLat": -27.583787 }, "geometry": { "type": "Point", "coordinates": [ 153.151, -27.584 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092478, "decimalLat": -27.525429 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086402, "decimalLat": -27.506185 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713772, "decimalLat": -34.892227 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091462, "decimalLat": -27.526704 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268364, "decimalLat": -38.131094 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.849975, "decimalLat": -28.088218 }, "geometry": { "type": "Point", "coordinates": [ 152.85, -28.088 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.358506, "decimalLat": -27.917234 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.513495, "decimalLat": -38.833162 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.833 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.618109, "decimalLat": -27.896005 }, "geometry": { "type": "Point", "coordinates": [ 152.618, -27.896 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.733166, "decimalLat": -37.920153 }, "geometry": { "type": "Point", "coordinates": [ 147.733, -37.92 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095322, "decimalLat": -33.025855 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.026 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.049177, "decimalLat": -27.540728 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.630498, "decimalLat": -38.321222 }, "geometry": { "type": "Point", "coordinates": [ 142.63, -38.321 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.807541, "decimalLat": -27.531846 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.866174, "decimalLat": -28.211501 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.212 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11127, "decimalLat": -27.529123 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084375, "decimalLat": -27.510903 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.492393, "decimalLat": -37.707034 }, "geometry": { "type": "Point", "coordinates": [ 144.492, -37.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8552, "decimalLat": -28.076926 }, "geometry": { "type": "Point", "coordinates": [ 152.855, -28.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.263096, "decimalLat": -38.487214 }, "geometry": { "type": "Point", "coordinates": [ 145.263, -38.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093517, "decimalLat": -27.524086 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.766354, "decimalLat": -26.17259 }, "geometry": { "type": "Point", "coordinates": [ 151.766, -26.173 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103276, "decimalLat": -27.52797 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112405, "decimalLat": -27.528764 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.641037, "decimalLat": -35.645478 }, "geometry": { "type": "Point", "coordinates": [ 137.641, -35.645 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.671423, "decimalLat": -37.94456 }, "geometry": { "type": "Point", "coordinates": [ 145.671, -37.945 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722703, "decimalLat": -34.889737 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.883976, "decimalLat": -26.25944 }, "geometry": { "type": "Point", "coordinates": [ 151.884, -26.259 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110216, "decimalLat": -27.527492 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112025, "decimalLat": -27.52793 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.376199, "decimalLat": -27.920167 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.063356, "decimalLat": -27.262258 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -27.262 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.948741, "decimalLat": -38.424107 }, "geometry": { "type": "Point", "coordinates": [ 144.949, -38.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068282, "decimalLat": -27.547097 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09256, "decimalLat": -27.528157 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.584571, "decimalLat": -28.915196 }, "geometry": { "type": "Point", "coordinates": [ 151.585, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103444, "decimalLat": -27.528153 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082961, "decimalLat": -27.51227 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.045052, "decimalLat": -27.258335 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.454483, "decimalLat": -27.529244 }, "geometry": { "type": "Point", "coordinates": [ 152.454, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.985004, "decimalLat": -26.538368 }, "geometry": { "type": "Point", "coordinates": [ 151.985, -26.538 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.765913, "decimalLat": -37.906588 }, "geometry": { "type": "Point", "coordinates": [ 147.766, -37.907 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163728, "decimalLat": -38.671213 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09218, "decimalLat": -27.527667 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057679, "decimalLat": -27.55184 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069528, "decimalLat": -27.54547 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317177, "decimalLat": -28.949206 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.929175, "decimalLat": -38.061049 }, "geometry": { "type": "Point", "coordinates": [ 141.929, -38.061 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.308462, "decimalLat": -38.384707 }, "geometry": { "type": "Point", "coordinates": [ 145.308, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057608, "decimalLat": -27.551889 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059187, "decimalLat": -27.551254 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.521444, "decimalLat": -30.51972 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259788, "decimalLat": -27.501873 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870348, "decimalLat": -19.124823 }, "geometry": { "type": "Point", "coordinates": [ 146.87, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.937487, "decimalLat": -27.164136 }, "geometry": { "type": "Point", "coordinates": [ 152.937, -27.164 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897466, "decimalLat": -31.458007 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.51207, "decimalLat": -38.83305 }, "geometry": { "type": "Point", "coordinates": [ 143.512, -38.833 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.589766, "decimalLat": -35.172197 }, "geometry": { "type": "Point", "coordinates": [ 138.59, -35.172 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.108095, "decimalLat": -27.564025 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -27.564 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.403563, "decimalLat": -36.868725 }, "geometry": { "type": "Point", "coordinates": [ 145.404, -36.869 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192195, "decimalLat": -27.703164 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.703 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.098859, "decimalLat": -25.066874 }, "geometry": { "type": "Point", "coordinates": [ 151.099, -25.067 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.694258, "decimalLat": -34.957256 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.957 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870848, "decimalLat": -19.124286 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.124 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999813, "decimalLat": -27.284005 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.011724, "decimalLat": -37.693694 }, "geometry": { "type": "Point", "coordinates": [ 144.012, -37.694 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092227, "decimalLat": -27.527264 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.375013, "decimalLat": -39.066967 }, "geometry": { "type": "Point", "coordinates": [ 146.375, -39.067 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072528, "decimalLat": -27.541332 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.094986, "decimalLat": -37.623917 }, "geometry": { "type": "Point", "coordinates": [ 144.095, -37.624 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.406158, "decimalLat": -37.089589 }, "geometry": { "type": "Point", "coordinates": [ 145.406, -37.09 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.017171, "decimalLat": -38.355067 }, "geometry": { "type": "Point", "coordinates": [ 146.017, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.679042, "decimalLat": -34.951585 }, "geometry": { "type": "Point", "coordinates": [ 138.679, -34.952 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111596, "decimalLat": -27.527716 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08996, "decimalLat": -27.63701 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.637 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081879, "decimalLat": -27.504993 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084822, "decimalLat": -27.509703 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712128, "decimalLat": -34.908923 }, "geometry": { "type": "Point", "coordinates": [ 138.712, -34.909 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.646824, "decimalLat": -34.975477 }, "geometry": { "type": "Point", "coordinates": [ 138.647, -34.975 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.668747, "decimalLat": -35.016996 }, "geometry": { "type": "Point", "coordinates": [ 138.669, -35.017 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163758, "decimalLat": -38.671122 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.293658, "decimalLat": -38.310517 }, "geometry": { "type": "Point", "coordinates": [ 145.294, -38.311 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.950352, "decimalLat": -38.881561 }, "geometry": { "type": "Point", "coordinates": [ 145.95, -38.882 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.162261, "decimalLat": -38.670698 }, "geometry": { "type": "Point", "coordinates": [ 146.162, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057373, "decimalLat": -27.55951 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.56 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057874, "decimalLat": -27.559479 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.559 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084452, "decimalLat": -27.505228 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058163, "decimalLat": -27.549314 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.917461, "decimalLat": -26.557753 }, "geometry": { "type": "Point", "coordinates": [ 151.917, -26.558 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.202337, "decimalLat": -38.651249 }, "geometry": { "type": "Point", "coordinates": [ 146.202, -38.651 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.961442, "decimalLat": -27.275222 }, "geometry": { "type": "Point", "coordinates": [ 152.961, -27.275 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.978531, "decimalLat": -38.50085 }, "geometry": { "type": "Point", "coordinates": [ 142.979, -38.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105362, "decimalLat": -27.529238 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.207868, "decimalLat": -37.854002 }, "geometry": { "type": "Point", "coordinates": [ 144.208, -37.854 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.565963, "decimalLat": -27.795938 }, "geometry": { "type": "Point", "coordinates": [ 151.566, -27.796 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102629, "decimalLat": -27.529443 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.314838, "decimalLat": -37.385688 }, "geometry": { "type": "Point", "coordinates": [ 144.315, -37.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.893453, "decimalLat": -34.819998 }, "geometry": { "type": "Point", "coordinates": [ 149.893, -34.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.169944, "decimalLat": -27.586456 }, "geometry": { "type": "Point", "coordinates": [ 153.17, -27.586 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.769051, "decimalLat": -26.175532 }, "geometry": { "type": "Point", "coordinates": [ 151.769, -26.176 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.66951, "decimalLat": -38.756445 }, "geometry": { "type": "Point", "coordinates": [ 143.67, -38.756 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.937203, "decimalLat": -26.630161 }, "geometry": { "type": "Point", "coordinates": [ 151.937, -26.63 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.787977, "decimalLat": -26.137203 }, "geometry": { "type": "Point", "coordinates": [ 151.788, -26.137 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.318989, "decimalLat": -33.107509 }, "geometry": { "type": "Point", "coordinates": [ 151.319, -33.108 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722886, "decimalLat": -34.892008 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.701118, "decimalLat": -34.902006 }, "geometry": { "type": "Point", "coordinates": [ 138.701, -34.902 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091271, "decimalLat": -27.527182 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.644459, "decimalLat": -34.962859 }, "geometry": { "type": "Point", "coordinates": [ 138.644, -34.963 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721954, "decimalLat": -34.890991 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.125832, "decimalLat": -38.178211 }, "geometry": { "type": "Point", "coordinates": [ 145.126, -38.178 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.610458, "decimalLat": -27.153244 }, "geometry": { "type": "Point", "coordinates": [ 152.61, -27.153 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656613, "decimalLat": -35.001638 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -35.002 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090881, "decimalLat": -27.526816 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.810679, "decimalLat": -34.107528 }, "geometry": { "type": "Point", "coordinates": [ 150.811, -34.108 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.694047, "decimalLat": -34.921792 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.922 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715872, "decimalLat": -34.891149 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092201, "decimalLat": -27.528328 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.575741, "decimalLat": -35.080441 }, "geometry": { "type": "Point", "coordinates": [ 138.576, -35.08 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.4283, "decimalLat": -36.890655 }, "geometry": { "type": "Point", "coordinates": [ 145.428, -36.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.569006, "decimalLat": -35.095906 }, "geometry": { "type": "Point", "coordinates": [ 138.569, -35.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.57781, "decimalLat": -35.057518 }, "geometry": { "type": "Point", "coordinates": [ 138.578, -35.058 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.987165, "decimalLat": -24.985621 }, "geometry": { "type": "Point", "coordinates": [ 151.987, -24.986 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.667158, "decimalLat": -36.391503 }, "geometry": { "type": "Point", "coordinates": [ 146.667, -36.392 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.200333, "decimalLat": -37.62742 }, "geometry": { "type": "Point", "coordinates": [ 144.2, -37.627 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.142945, "decimalLat": -38.245862 }, "geometry": { "type": "Point", "coordinates": [ 146.143, -38.246 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395427, "decimalLat": -28.266887 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.267 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363145, "decimalLat": -38.318672 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.333569, "decimalLat": -28.821972 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.894158, "decimalLat": -37.644514 }, "geometry": { "type": "Point", "coordinates": [ 143.894, -37.645 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.727463, "decimalLat": -37.922255 }, "geometry": { "type": "Point", "coordinates": [ 147.727, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.932569, "decimalLat": -32.038488 }, "geometry": { "type": "Point", "coordinates": [ 151.933, -32.038 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.072356, "decimalLat": -38.2353 }, "geometry": { "type": "Point", "coordinates": [ 142.072, -38.235 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092021, "decimalLat": -27.525499 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092362, "decimalLat": -27.527899 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375272, "decimalLat": -28.252556 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.77069, "decimalLat": -25.61977 }, "geometry": { "type": "Point", "coordinates": [ 149.771, -25.62 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.750176, "decimalLat": -38.631832 }, "geometry": { "type": "Point", "coordinates": [ 145.75, -38.632 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046151, "decimalLat": -27.255535 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.256 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111683, "decimalLat": -27.527766 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.398579, "decimalLat": -28.055634 }, "geometry": { "type": "Point", "coordinates": [ 152.399, -28.056 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092979, "decimalLat": -27.524749 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.025013, "decimalLat": -37.736232 }, "geometry": { "type": "Point", "coordinates": [ 142.025, -37.736 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.131418, "decimalLat": -38.06523 }, "geometry": { "type": "Point", "coordinates": [ 141.131, -38.065 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439466, "decimalLat": -27.396767 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093922, "decimalLat": -27.527569 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093673, "decimalLat": -27.528254 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.974903, "decimalLat": -38.499858 }, "geometry": { "type": "Point", "coordinates": [ 142.975, -38.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.022178, "decimalLat": -28.412442 }, "geometry": { "type": "Point", "coordinates": [ 153.022, -28.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058676, "decimalLat": -27.55038 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.577197, "decimalLat": -38.473891 }, "geometry": { "type": "Point", "coordinates": [ 146.577, -38.474 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.914611, "decimalLat": -34.581891 }, "geometry": { "type": "Point", "coordinates": [ 138.915, -34.582 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.077269, "decimalLat": -27.545966 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103457, "decimalLat": -27.529389 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104021, "decimalLat": -27.544534 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060127, "decimalLat": -27.549638 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1108, "decimalLat": -27.527253 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.793747, "decimalLat": -26.429063 }, "geometry": { "type": "Point", "coordinates": [ 151.794, -26.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.764962, "decimalLat": -27.773621 }, "geometry": { "type": "Point", "coordinates": [ 152.765, -27.774 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.091626, "decimalLat": -33.144967 }, "geometry": { "type": "Point", "coordinates": [ 151.092, -33.145 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.869293, "decimalLat": -19.125223 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071032, "decimalLat": -27.543939 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.014811, "decimalLat": -34.066761 }, "geometry": { "type": "Point", "coordinates": [ 151.015, -34.067 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.116608, "decimalLat": -27.229763 }, "geometry": { "type": "Point", "coordinates": [ 152.117, -27.23 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992215, "decimalLat": -27.8235 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.089287, "decimalLat": -27.822383 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -27.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060636, "decimalLat": -27.543505 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.944566, "decimalLat": -26.545036 }, "geometry": { "type": "Point", "coordinates": [ 151.945, -26.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.913233, "decimalLat": -28.784186 }, "geometry": { "type": "Point", "coordinates": [ 151.913, -28.784 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091754, "decimalLat": -27.527124 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992192, "decimalLat": -27.822584 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.865975, "decimalLat": -28.211518 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.212 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.970833, "decimalLat": -27.288502 }, "geometry": { "type": "Point", "coordinates": [ 152.971, -27.289 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090817, "decimalLat": -27.526835 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.724153, "decimalLat": -27.429497 }, "geometry": { "type": "Point", "coordinates": [ 151.724, -27.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.831853, "decimalLat": -34.100478 }, "geometry": { "type": "Point", "coordinates": [ 150.832, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.479472, "decimalLat": -28.236275 }, "geometry": { "type": "Point", "coordinates": [ 153.479, -28.236 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074512, "decimalLat": -27.546788 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110101, "decimalLat": -27.529282 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09274, "decimalLat": -27.525312 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.338137, "decimalLat": -31.5848 }, "geometry": { "type": "Point", "coordinates": [ 149.338, -31.585 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.382853, "decimalLat": -27.449595 }, "geometry": { "type": "Point", "coordinates": [ 152.383, -27.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092336, "decimalLat": -27.525423 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281531, "decimalLat": -27.532064 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.754268, "decimalLat": -34.976401 }, "geometry": { "type": "Point", "coordinates": [ 138.754, -34.976 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103248, "decimalLat": -27.529037 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105502, "decimalLat": -27.529179 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09133, "decimalLat": -27.527333 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.367295, "decimalLat": -38.316203 }, "geometry": { "type": "Point", "coordinates": [ 142.367, -38.316 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.755892, "decimalLat": -38.635506 }, "geometry": { "type": "Point", "coordinates": [ 145.756, -38.636 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.576145, "decimalLat": -35.018528 }, "geometry": { "type": "Point", "coordinates": [ 138.576, -35.019 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070066, "decimalLat": -27.510642 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45376, "decimalLat": -27.397251 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.570512, "decimalLat": -34.766158 }, "geometry": { "type": "Point", "coordinates": [ 146.571, -34.766 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091933, "decimalLat": -27.527016 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732351, "decimalLat": -34.882199 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.882 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.992916, "decimalLat": -28.810538 }, "geometry": { "type": "Point", "coordinates": [ 151.993, -28.811 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.735142, "decimalLat": -34.887033 }, "geometry": { "type": "Point", "coordinates": [ 138.735, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.635876, "decimalLat": -38.281103 }, "geometry": { "type": "Point", "coordinates": [ 141.636, -38.281 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09081, "decimalLat": -27.526559 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091727, "decimalLat": -27.521807 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.522 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.31733, "decimalLat": -26.6029 }, "geometry": { "type": "Point", "coordinates": [ 152.317, -26.603 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376856, "decimalLat": -28.254229 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.727097, "decimalLat": -27.711487 }, "geometry": { "type": "Point", "coordinates": [ 152.727, -27.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.650985, "decimalLat": -34.963309 }, "geometry": { "type": "Point", "coordinates": [ 138.651, -34.963 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062669, "decimalLat": -27.550304 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0862, "decimalLat": -27.508525 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.878536, "decimalLat": -37.63247 }, "geometry": { "type": "Point", "coordinates": [ 143.879, -37.632 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108328, "decimalLat": -27.52732 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.639415, "decimalLat": -38.330011 }, "geometry": { "type": "Point", "coordinates": [ 142.639, -38.33 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.761921, "decimalLat": -26.139709 }, "geometry": { "type": "Point", "coordinates": [ 151.762, -26.14 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395157, "decimalLat": -28.275076 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.275 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.669972, "decimalLat": -34.913422 }, "geometry": { "type": "Point", "coordinates": [ 138.67, -34.913 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721311, "decimalLat": -34.89244 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057684, "decimalLat": -27.55173 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.55542, "decimalLat": -35.30874 }, "geometry": { "type": "Point", "coordinates": [ 138.555, -35.309 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730333, "decimalLat": -34.890531 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.047769, "decimalLat": -37.725398 }, "geometry": { "type": "Point", "coordinates": [ 144.048, -37.725 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.291003, "decimalLat": -37.874695 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598731, "decimalLat": -29.868639 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -29.869 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.0047, "decimalLat": -27.411858 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -27.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063619, "decimalLat": -27.54998 }, "geometry": { "type": "Point", "coordinates": [ 153.064, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.946687, "decimalLat": -28.123653 }, "geometry": { "type": "Point", "coordinates": [ 152.947, -28.124 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070788, "decimalLat": -27.509598 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.060822, "decimalLat": -27.259925 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -27.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060379, "decimalLat": -27.534287 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103756, "decimalLat": -27.52971 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.995698, "decimalLat": -27.395296 }, "geometry": { "type": "Point", "coordinates": [ 151.996, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09314, "decimalLat": -27.525025 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.451688, "decimalLat": -27.420513 }, "geometry": { "type": "Point", "coordinates": [ 152.452, -27.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.522174, "decimalLat": -27.714466 }, "geometry": { "type": "Point", "coordinates": [ 151.522, -27.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.095091, "decimalLat": -27.533476 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06482, "decimalLat": -27.220592 }, "geometry": { "type": "Point", "coordinates": [ 153.065, -27.221 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719209, "decimalLat": -34.98688 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.987 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071051, "decimalLat": -26.675805 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -26.676 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6367, "decimalLat": -34.989361 }, "geometry": { "type": "Point", "coordinates": [ 138.637, -34.989 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242197, "decimalLat": -27.514573 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.276394, "decimalLat": -27.954955 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.955 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.895432, "decimalLat": -37.590119 }, "geometry": { "type": "Point", "coordinates": [ 143.895, -37.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.952349, "decimalLat": -38.493134 }, "geometry": { "type": "Point", "coordinates": [ 145.952, -38.493 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091405, "decimalLat": -27.527388 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1034, "decimalLat": -27.530186 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110382, "decimalLat": -27.528981 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092211, "decimalLat": -27.527033 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439467, "decimalLat": -27.396839 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.691557, "decimalLat": -26.17693 }, "geometry": { "type": "Point", "coordinates": [ 151.692, -26.177 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.731537, "decimalLat": -37.92388 }, "geometry": { "type": "Point", "coordinates": [ 147.732, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109141, "decimalLat": -27.527236 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.130275, "decimalLat": -27.591124 }, "geometry": { "type": "Point", "coordinates": [ 153.13, -27.591 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1155, "decimalLat": -27.529475 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734277, "decimalLat": -34.887652 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103895, "decimalLat": -27.529452 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.742033, "decimalLat": -35.019951 }, "geometry": { "type": "Point", "coordinates": [ 138.742, -35.02 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107669, "decimalLat": -27.527155 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11143, "decimalLat": -27.527829 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.6291, "decimalLat": -26.503862 }, "geometry": { "type": "Point", "coordinates": [ 152.629, -26.504 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104256, "decimalLat": -27.528529 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.256292, "decimalLat": -38.240855 }, "geometry": { "type": "Point", "coordinates": [ 145.256, -38.241 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110405, "decimalLat": -27.529738 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.519882, "decimalLat": -38.83152 }, "geometry": { "type": "Point", "coordinates": [ 143.52, -38.832 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.698528, "decimalLat": -34.933842 }, "geometry": { "type": "Point", "coordinates": [ 138.699, -34.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055099, "decimalLat": -27.545951 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103306, "decimalLat": -27.528486 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.672614, "decimalLat": -35.022564 }, "geometry": { "type": "Point", "coordinates": [ 138.673, -35.023 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.847222, "decimalLat": -26.554167 }, "geometry": { "type": "Point", "coordinates": [ 151.847, -26.554 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.16219, "decimalLat": -27.50071 }, "geometry": { "type": "Point", "coordinates": [ 152.162, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.408161, "decimalLat": -33.753478 }, "geometry": { "type": "Point", "coordinates": [ 149.408, -33.753 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090241, "decimalLat": -27.525503 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079494, "decimalLat": -27.493945 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376989, "decimalLat": -28.254347 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601329, "decimalLat": -29.870293 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -29.87 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10787, "decimalLat": -27.52719 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37315, "decimalLat": -27.912043 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.653825, "decimalLat": -34.86895 }, "geometry": { "type": "Point", "coordinates": [ 138.654, -34.869 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10845, "decimalLat": -27.527288 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.981018, "decimalLat": -27.276517 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -27.277 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.647918, "decimalLat": -35.006489 }, "geometry": { "type": "Point", "coordinates": [ 138.648, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095061, "decimalLat": -33.076364 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091042, "decimalLat": -27.52663 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400686, "decimalLat": -28.257627 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0905, "decimalLat": -27.527154 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.04671, "decimalLat": -27.544388 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090486, "decimalLat": -27.526096 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.698713, "decimalLat": -34.934322 }, "geometry": { "type": "Point", "coordinates": [ 138.699, -34.934 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.974792, "decimalLat": -38.481769 }, "geometry": { "type": "Point", "coordinates": [ 142.975, -38.482 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092697, "decimalLat": -27.525488 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.302367, "decimalLat": -38.384077 }, "geometry": { "type": "Point", "coordinates": [ 145.302, -38.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8, "decimalLat": -27.266667 }, "geometry": { "type": "Point", "coordinates": [ 152.8, -27.267 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059938, "decimalLat": -27.550082 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.958362, "decimalLat": -27.484854 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -27.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.576807, "decimalLat": -35.079178 }, "geometry": { "type": "Point", "coordinates": [ 138.577, -35.079 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09194, "decimalLat": -27.527018 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1833, "decimalLat": -27.53118 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111258, "decimalLat": -27.528758 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.778183, "decimalLat": -26.308911 }, "geometry": { "type": "Point", "coordinates": [ 151.778, -26.309 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092549, "decimalLat": -27.527703 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.020541, "decimalLat": -27.439118 }, "geometry": { "type": "Point", "coordinates": [ 153.021, -27.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721809, "decimalLat": -34.89276 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090296, "decimalLat": -27.526544 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.74856, "decimalLat": -26.15484 }, "geometry": { "type": "Point", "coordinates": [ 151.749, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109387, "decimalLat": -27.527015 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.662283, "decimalLat": -38.755355 }, "geometry": { "type": "Point", "coordinates": [ 143.662, -38.755 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10724, "decimalLat": -27.527289 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.714442, "decimalLat": -34.892477 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09147, "decimalLat": -27.526943 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.493556, "decimalLat": -35.70654 }, "geometry": { "type": "Point", "coordinates": [ 137.494, -35.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.977, "decimalLat": -26.161014 }, "geometry": { "type": "Point", "coordinates": [ 151.977, -26.161 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.595032, "decimalLat": -34.773244 }, "geometry": { "type": "Point", "coordinates": [ 146.595, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.121166, "decimalLat": -38.388611 }, "geometry": { "type": "Point", "coordinates": [ 145.121, -38.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.318695, "decimalLat": -27.8948 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -27.895 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.191728, "decimalLat": -27.70137 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.971014, "decimalLat": -38.495522 }, "geometry": { "type": "Point", "coordinates": [ 142.971, -38.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.542525, "decimalLat": -27.792608 }, "geometry": { "type": "Point", "coordinates": [ 151.543, -27.793 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.094621, "decimalLat": -27.532901 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.977, "decimalLat": -26.161014 }, "geometry": { "type": "Point", "coordinates": [ 151.977, -26.161 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.662523, "decimalLat": -35.007705 }, "geometry": { "type": "Point", "coordinates": [ 138.663, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092383, "decimalLat": -27.524359 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.595215, "decimalLat": -27.673297 }, "geometry": { "type": "Point", "coordinates": [ 151.595, -27.673 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.38022, "decimalLat": -38.68598 }, "geometry": { "type": "Point", "coordinates": [ 143.38, -38.686 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.41981, "decimalLat": -29.077999 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -29.078 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720567, "decimalLat": -34.8929 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.60443, "decimalLat": -37.95883 }, "geometry": { "type": "Point", "coordinates": [ 145.604, -37.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.707031, "decimalLat": -34.879733 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.88 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.532242, "decimalLat": -38.800275 }, "geometry": { "type": "Point", "coordinates": [ 143.532, -38.8 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068274, "decimalLat": -27.542384 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.171018, "decimalLat": -27.257688 }, "geometry": { "type": "Point", "coordinates": [ 152.171, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441545, "decimalLat": -27.392272 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.392 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895396, "decimalLat": -27.600052 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.297928, "decimalLat": -27.569353 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.718842, "decimalLat": -27.263083 }, "geometry": { "type": "Point", "coordinates": [ 151.719, -27.263 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09234, "decimalLat": -27.524976 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07295, "decimalLat": -27.226667 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.227 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090458, "decimalLat": -27.526549 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055075, "decimalLat": -27.54403 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.5203, "decimalLat": -38.832089 }, "geometry": { "type": "Point", "coordinates": [ 143.52, -38.832 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363581, "decimalLat": -38.318429 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.594758, "decimalLat": -34.773197 }, "geometry": { "type": "Point", "coordinates": [ 146.595, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.166336, "decimalLat": -27.611678 }, "geometry": { "type": "Point", "coordinates": [ 153.166, -27.612 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.989067, "decimalLat": -27.291712 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -27.292 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403092, "decimalLat": -27.493697 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.56122, "decimalLat": -27.078455 }, "geometry": { "type": "Point", "coordinates": [ 152.561, -27.078 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.820008, "decimalLat": -26.239171 }, "geometry": { "type": "Point", "coordinates": [ 151.82, -26.239 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103159, "decimalLat": -27.52919 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003522, "decimalLat": -27.411413 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.411 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.077764, "decimalLat": -27.54235 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093046, "decimalLat": -27.524878 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10085, "decimalLat": -27.52985 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095297, "decimalLat": -33.07668 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086012, "decimalLat": -27.510299 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.874962, "decimalLat": -30.230414 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -30.23 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086811, "decimalLat": -27.506122 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091894, "decimalLat": -27.527117 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073165, "decimalLat": -27.546647 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733241, "decimalLat": -34.89033 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063553, "decimalLat": -27.53815 }, "geometry": { "type": "Point", "coordinates": [ 153.064, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.5132, "decimalLat": -38.833488 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.833 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.318938, "decimalLat": -35.854605 }, "geometry": { "type": "Point", "coordinates": [ 145.319, -35.855 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992187, "decimalLat": -27.823686 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10875, "decimalLat": -27.527233 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.726976, "decimalLat": -34.887967 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715293, "decimalLat": -34.89272 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.805527, "decimalLat": -26.00399 }, "geometry": { "type": "Point", "coordinates": [ 149.806, -26.004 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09225, "decimalLat": -27.527725 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.859633, "decimalLat": -38.671708 }, "geometry": { "type": "Point", "coordinates": [ 143.86, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519445, "decimalLat": -30.520513 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163976, "decimalLat": -38.671312 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.046636, "decimalLat": -27.54436 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003348, "decimalLat": -27.41402 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43454, "decimalLat": -28.870862 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.871 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245372, "decimalLat": -27.490362 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058641, "decimalLat": -27.548144 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.872192, "decimalLat": -19.123214 }, "geometry": { "type": "Point", "coordinates": [ 146.872, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074876, "decimalLat": -27.513713 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09256, "decimalLat": -27.525475 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090624, "decimalLat": -27.527503 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109254, "decimalLat": -27.526628 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.664939, "decimalLat": -34.959297 }, "geometry": { "type": "Point", "coordinates": [ 138.665, -34.959 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.077578, "decimalLat": -27.507608 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072036, "decimalLat": -27.543967 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056554, "decimalLat": -27.539433 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65675, "decimalLat": -34.865293 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072246, "decimalLat": -27.544384 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.666971, "decimalLat": -34.863725 }, "geometry": { "type": "Point", "coordinates": [ 138.667, -34.864 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656802, "decimalLat": -34.865274 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.392627, "decimalLat": -28.269277 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.269 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092231, "decimalLat": -27.527278 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.649955, "decimalLat": -35.05106 }, "geometry": { "type": "Point", "coordinates": [ 138.65, -35.051 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.522033, "decimalLat": -34.743347 }, "geometry": { "type": "Point", "coordinates": [ 146.522, -34.743 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092322, "decimalLat": -27.52798 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.559811, "decimalLat": -27.808274 }, "geometry": { "type": "Point", "coordinates": [ 151.56, -27.808 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.528966, "decimalLat": -27.721471 }, "geometry": { "type": "Point", "coordinates": [ 151.529, -27.721 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091669, "decimalLat": -27.52711 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093541, "decimalLat": -27.527531 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290719, "decimalLat": -37.874611 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091546, "decimalLat": -27.527043 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657146, "decimalLat": -35.017549 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -35.018 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.683542, "decimalLat": -27.995196 }, "geometry": { "type": "Point", "coordinates": [ 152.684, -27.995 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109156, "decimalLat": -27.527039 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730186, "decimalLat": -34.890403 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.184776, "decimalLat": -25.043668 }, "geometry": { "type": "Point", "coordinates": [ 148.185, -25.044 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.14395, "decimalLat": -38.053648 }, "geometry": { "type": "Point", "coordinates": [ 144.144, -38.054 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092063, "decimalLat": -27.524758 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.727078, "decimalLat": -37.923179 }, "geometry": { "type": "Point", "coordinates": [ 147.727, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.628477, "decimalLat": -38.340527 }, "geometry": { "type": "Point", "coordinates": [ 142.628, -38.341 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052368, "decimalLat": -27.543093 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083708, "decimalLat": -27.51005 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093289, "decimalLat": -27.52484 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09238, "decimalLat": -27.527458 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05352, "decimalLat": -27.545853 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.962282, "decimalLat": -27.50194 }, "geometry": { "type": "Point", "coordinates": [ 151.962, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09278, "decimalLat": -27.525314 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860553, "decimalLat": -38.668473 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103242, "decimalLat": -27.529019 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068871, "decimalLat": -27.546896 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.626415, "decimalLat": -34.893179 }, "geometry": { "type": "Point", "coordinates": [ 138.626, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713936, "decimalLat": -34.89248 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720194, "decimalLat": -34.89256 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08591, "decimalLat": -27.510502 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095445, "decimalLat": -33.076367 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.563228, "decimalLat": -34.758029 }, "geometry": { "type": "Point", "coordinates": [ 146.563, -34.758 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377546, "decimalLat": -28.254105 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092693, "decimalLat": -27.525531 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071842, "decimalLat": -27.54257 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.193263, "decimalLat": -27.546158 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.568613, "decimalLat": -27.799141 }, "geometry": { "type": "Point", "coordinates": [ 151.569, -27.799 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.66658, "decimalLat": -38.749944 }, "geometry": { "type": "Point", "coordinates": [ 143.667, -38.75 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.315184, "decimalLat": -38.378546 }, "geometry": { "type": "Point", "coordinates": [ 145.315, -38.379 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.405517, "decimalLat": -37.401997 }, "geometry": { "type": "Point", "coordinates": [ 144.406, -37.402 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702672, "decimalLat": -34.930695 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.931 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060814, "decimalLat": -27.54404 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.293246, "decimalLat": -37.87421 }, "geometry": { "type": "Point", "coordinates": [ 142.293, -37.874 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110242, "decimalLat": -27.52759 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.73851, "decimalLat": -26.356881 }, "geometry": { "type": "Point", "coordinates": [ 151.739, -26.357 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.512682, "decimalLat": -38.832721 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.833 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40299, "decimalLat": -27.493653 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.678748, "decimalLat": -27.98969 }, "geometry": { "type": "Point", "coordinates": [ 152.679, -27.99 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.86575, "decimalLat": -26.14881 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -26.149 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722438, "decimalLat": -34.892721 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092046, "decimalLat": -27.527166 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.610644, "decimalLat": -38.354382 }, "geometry": { "type": "Point", "coordinates": [ 141.611, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110963, "decimalLat": -27.52993 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794661, "decimalLat": -34.1461 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.146 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.714389, "decimalLat": -34.89323 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.24925, "decimalLat": -27.496538 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655642, "decimalLat": -35.005258 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084617, "decimalLat": -27.506633 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103255, "decimalLat": -27.529548 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092368, "decimalLat": -27.52487 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.034912, "decimalLat": -27.52778 }, "geometry": { "type": "Point", "coordinates": [ 153.035, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.04469, "decimalLat": -27.54506 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09331, "decimalLat": -27.526931 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.454955, "decimalLat": -36.869208 }, "geometry": { "type": "Point", "coordinates": [ 145.455, -36.869 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.034133, "decimalLat": -27.550203 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103186, "decimalLat": -27.528464 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095108, "decimalLat": -33.076481 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070025, "decimalLat": -27.510472 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.689473, "decimalLat": -34.947226 }, "geometry": { "type": "Point", "coordinates": [ 138.689, -34.947 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.855198, "decimalLat": -19.129334 }, "geometry": { "type": "Point", "coordinates": [ 146.855, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.049182, "decimalLat": -27.528335 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.610092, "decimalLat": -27.15318 }, "geometry": { "type": "Point", "coordinates": [ 152.61, -27.153 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.377778, "decimalLat": -27.079819 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -27.08 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.373785, "decimalLat": -27.914143 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.755191, "decimalLat": -38.634432 }, "geometry": { "type": "Point", "coordinates": [ 145.755, -38.634 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.84508, "decimalLat": -26.492359 }, "geometry": { "type": "Point", "coordinates": [ 151.845, -26.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.829253, "decimalLat": -28.09528 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.903899, "decimalLat": -28.180228 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -28.18 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.642746, "decimalLat": -35.004822 }, "geometry": { "type": "Point", "coordinates": [ 138.643, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520074, "decimalLat": -30.519512 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.796636, "decimalLat": -37.839464 }, "geometry": { "type": "Point", "coordinates": [ 143.797, -37.839 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37883, "decimalLat": -27.915122 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091524, "decimalLat": -27.527297 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.183393, "decimalLat": -27.583817 }, "geometry": { "type": "Point", "coordinates": [ 153.183, -27.584 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090561, "decimalLat": -27.526924 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.645846, "decimalLat": -27.453732 }, "geometry": { "type": "Point", "coordinates": [ 152.646, -27.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092557, "decimalLat": -27.528635 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091741, "decimalLat": -27.52706 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.392986, "decimalLat": -28.269796 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.27 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992722, "decimalLat": -27.822645 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.798225, "decimalLat": -32.312169 }, "geometry": { "type": "Point", "coordinates": [ 151.798, -32.312 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.087697, "decimalLat": -27.511247 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.86949, "decimalLat": -37.600266 }, "geometry": { "type": "Point", "coordinates": [ 143.869, -37.6 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.395265, "decimalLat": -37.042965 }, "geometry": { "type": "Point", "coordinates": [ 145.395, -37.043 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.108764, "decimalLat": -38.39895 }, "geometry": { "type": "Point", "coordinates": [ 145.109, -38.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733423, "decimalLat": -34.87139 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.871 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.793747, "decimalLat": -26.428994 }, "geometry": { "type": "Point", "coordinates": [ 151.794, -26.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.624508, "decimalLat": -27.869872 }, "geometry": { "type": "Point", "coordinates": [ 152.625, -27.87 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.710008, "decimalLat": -26.083261 }, "geometry": { "type": "Point", "coordinates": [ 151.71, -26.083 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.175712, "decimalLat": -26.872647 }, "geometry": { "type": "Point", "coordinates": [ 152.176, -26.873 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000108, "decimalLat": -27.284739 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31979, "decimalLat": -28.646462 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.646 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072823, "decimalLat": -27.546015 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.076584, "decimalLat": -30.362774 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -30.363 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.630203, "decimalLat": -34.89173 }, "geometry": { "type": "Point", "coordinates": [ 138.63, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.165166, "decimalLat": -38.671059 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221384, "decimalLat": -27.535138 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078811, "decimalLat": -27.506153 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103322, "decimalLat": -27.528544 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0595, "decimalLat": -27.551504 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.872147, "decimalLat": -19.123225 }, "geometry": { "type": "Point", "coordinates": [ 146.872, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075842, "decimalLat": -27.663114 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.663 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.824157, "decimalLat": -26.793974 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -26.794 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110646, "decimalLat": -27.529801 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092883, "decimalLat": -27.528503 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111571, "decimalLat": -27.528174 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.259239, "decimalLat": -27.077426 }, "geometry": { "type": "Point", "coordinates": [ 151.259, -27.077 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.493669, "decimalLat": -35.706443 }, "geometry": { "type": "Point", "coordinates": [ 137.494, -35.706 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.83207, "decimalLat": -26.505089 }, "geometry": { "type": "Point", "coordinates": [ 151.832, -26.505 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.062606, "decimalLat": -27.348312 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -27.348 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.04943, "decimalLat": -27.26295 }, "geometry": { "type": "Point", "coordinates": [ 152.049, -27.263 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732312, "decimalLat": -34.891771 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003188, "decimalLat": -27.41242 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.412 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083663, "decimalLat": -27.511709 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.605706, "decimalLat": -28.16671 }, "geometry": { "type": "Point", "coordinates": [ 152.606, -28.167 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093018, "decimalLat": -27.524775 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70195, "decimalLat": -34.955933 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.956 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.424429, "decimalLat": -38.314959 }, "geometry": { "type": "Point", "coordinates": [ 146.424, -38.315 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058153, "decimalLat": -27.547258 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.681471, "decimalLat": -28.000459 }, "geometry": { "type": "Point", "coordinates": [ 152.681, -28.0 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.175444, "decimalLat": -27.548803 }, "geometry": { "type": "Point", "coordinates": [ 153.175, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.03507, "decimalLat": -27.52783 }, "geometry": { "type": "Point", "coordinates": [ 153.035, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111886, "decimalLat": -27.527817 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401121, "decimalLat": -28.255786 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.754167, "decimalLat": -32.57108 }, "geometry": { "type": "Point", "coordinates": [ 151.754, -32.571 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.852047, "decimalLat": -34.083489 }, "geometry": { "type": "Point", "coordinates": [ 150.852, -34.083 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.803627, "decimalLat": -27.532621 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058677, "decimalLat": -27.551308 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.898971, "decimalLat": -28.206105 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -28.206 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33525, "decimalLat": -27.984617 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -27.985 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090922, "decimalLat": -27.526893 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.037963, "decimalLat": -37.646416 }, "geometry": { "type": "Point", "coordinates": [ 144.038, -37.646 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.849412, "decimalLat": -34.077081 }, "geometry": { "type": "Point", "coordinates": [ 150.849, -34.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.68222, "decimalLat": -26.167755 }, "geometry": { "type": "Point", "coordinates": [ 152.682, -26.168 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.58307, "decimalLat": -38.828026 }, "geometry": { "type": "Point", "coordinates": [ 143.583, -38.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762033, "decimalLat": -26.14005 }, "geometry": { "type": "Point", "coordinates": [ 151.762, -26.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.597131, "decimalLat": -27.963212 }, "geometry": { "type": "Point", "coordinates": [ 152.597, -27.963 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058072, "decimalLat": -27.546257 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.647454, "decimalLat": -35.007579 }, "geometry": { "type": "Point", "coordinates": [ 138.647, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090795, "decimalLat": -27.526914 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004883, "decimalLat": -27.41128 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -27.411 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091509, "decimalLat": -27.527313 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10558, "decimalLat": -27.541719 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.737684, "decimalLat": -26.361757 }, "geometry": { "type": "Point", "coordinates": [ 151.738, -26.362 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.040095, "decimalLat": -27.539458 }, "geometry": { "type": "Point", "coordinates": [ 153.04, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245199, "decimalLat": -27.488305 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09182, "decimalLat": -27.525922 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090872, "decimalLat": -27.525839 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.778941, "decimalLat": -36.799196 }, "geometry": { "type": "Point", "coordinates": [ 145.779, -36.799 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.186447, "decimalLat": -27.72033 }, "geometry": { "type": "Point", "coordinates": [ 153.186, -27.72 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092349, "decimalLat": -27.528233 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.713031, "decimalLat": -29.782038 }, "geometry": { "type": "Point", "coordinates": [ 150.713, -29.782 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992562, "decimalLat": -27.823117 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.988817, "decimalLat": -27.169978 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -27.17 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.273007, "decimalLat": -38.383257 }, "geometry": { "type": "Point", "coordinates": [ 145.273, -38.383 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.875938, "decimalLat": -34.060569 }, "geometry": { "type": "Point", "coordinates": [ 150.876, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.691557, "decimalLat": -26.17693 }, "geometry": { "type": "Point", "coordinates": [ 151.692, -26.177 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073436, "decimalLat": -27.545928 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104426, "decimalLat": -27.529642 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102063, "decimalLat": -27.527101 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638429, "decimalLat": -35.001947 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -35.002 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705887, "decimalLat": -35.004669 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09076, "decimalLat": -27.52639 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.63725, "decimalLat": -34.989698 }, "geometry": { "type": "Point", "coordinates": [ 138.637, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090456, "decimalLat": -27.525946 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05959, "decimalLat": -27.548626 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192068, "decimalLat": -27.703185 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.703 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05455, "decimalLat": -27.537824 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363909, "decimalLat": -38.317772 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282505, "decimalLat": -27.526205 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.890652, "decimalLat": -27.597332 }, "geometry": { "type": "Point", "coordinates": [ 151.891, -27.597 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290882, "decimalLat": -37.874531 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.666262, "decimalLat": -34.95768 }, "geometry": { "type": "Point", "coordinates": [ 138.666, -34.958 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.230779, "decimalLat": -36.077476 }, "geometry": { "type": "Point", "coordinates": [ 149.231, -36.077 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.133911, "decimalLat": -27.56555 }, "geometry": { "type": "Point", "coordinates": [ 153.134, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.61323, "decimalLat": -27.339347 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.713058, "decimalLat": -27.649258 }, "geometry": { "type": "Point", "coordinates": [ 151.713, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.610337, "decimalLat": -28.663075 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37893, "decimalLat": -27.917869 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003175, "decimalLat": -27.413553 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.672365, "decimalLat": -35.016036 }, "geometry": { "type": "Point", "coordinates": [ 138.672, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.670714, "decimalLat": -35.012446 }, "geometry": { "type": "Point", "coordinates": [ 138.671, -35.012 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.450049, "decimalLat": -28.094804 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.927345, "decimalLat": -26.279398 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -26.279 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.044867, "decimalLat": -27.258321 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.976369, "decimalLat": -34.075418 }, "geometry": { "type": "Point", "coordinates": [ 150.976, -34.075 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058126, "decimalLat": -27.550911 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069214, "decimalLat": -27.223494 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.223 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.888866, "decimalLat": -38.636691 }, "geometry": { "type": "Point", "coordinates": [ 143.889, -38.637 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058303, "decimalLat": -27.54671 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101097, "decimalLat": -27.53035 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091664, "decimalLat": -27.527218 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105401, "decimalLat": -27.531519 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111271, "decimalLat": -27.527278 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.566781, "decimalLat": -34.759399 }, "geometry": { "type": "Point", "coordinates": [ 146.567, -34.759 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002982, "decimalLat": -30.533507 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -30.534 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.828005, "decimalLat": -26.408549 }, "geometry": { "type": "Point", "coordinates": [ 151.828, -26.409 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081803, "decimalLat": -27.54253 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.84393, "decimalLat": -34.735377 }, "geometry": { "type": "Point", "coordinates": [ 138.844, -34.735 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072285, "decimalLat": -27.226223 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.226 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.045282, "decimalLat": -27.256916 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.518981, "decimalLat": -30.520915 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.042229, "decimalLat": -27.558822 }, "geometry": { "type": "Point", "coordinates": [ 153.042, -27.559 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.033417, "decimalLat": -27.208567 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -27.209 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.582717, "decimalLat": -38.019019 }, "geometry": { "type": "Point", "coordinates": [ 141.583, -38.019 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19017, "decimalLat": -27.701075 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.493906, "decimalLat": -35.706774 }, "geometry": { "type": "Point", "coordinates": [ 137.494, -35.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.449634, "decimalLat": -37.016558 }, "geometry": { "type": "Point", "coordinates": [ 145.45, -37.017 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.896474, "decimalLat": -27.596429 }, "geometry": { "type": "Point", "coordinates": [ 151.896, -27.596 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.057744, "decimalLat": -27.231139 }, "geometry": { "type": "Point", "coordinates": [ 152.058, -27.231 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.576997, "decimalLat": -34.766778 }, "geometry": { "type": "Point", "coordinates": [ 146.577, -34.767 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.049669, "decimalLat": -27.549525 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093354, "decimalLat": -27.524982 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057285, "decimalLat": -27.551318 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091519, "decimalLat": -27.526971 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732419, "decimalLat": -34.889201 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107975, "decimalLat": -27.529081 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.132219, "decimalLat": -38.175532 }, "geometry": { "type": "Point", "coordinates": [ 145.132, -38.176 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057809, "decimalLat": -27.551208 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073486, "decimalLat": -27.54709 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000533, "decimalLat": -27.284528 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111741, "decimalLat": -27.529329 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.127253, "decimalLat": -38.175873 }, "geometry": { "type": "Point", "coordinates": [ 145.127, -38.176 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058755, "decimalLat": -27.547107 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.708329, "decimalLat": -34.932732 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.088434, "decimalLat": -37.633637 }, "geometry": { "type": "Point", "coordinates": [ 144.088, -37.634 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.517883, "decimalLat": -28.037483 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -28.037 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437424, "decimalLat": -29.025558 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -29.026 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093462, "decimalLat": -27.525302 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.761422, "decimalLat": -26.140902 }, "geometry": { "type": "Point", "coordinates": [ 151.761, -26.141 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.284306, "decimalLat": -37.835179 }, "geometry": { "type": "Point", "coordinates": [ 144.284, -37.835 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.087782, "decimalLat": -30.279091 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -30.279 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.790113, "decimalLat": -26.621947 }, "geometry": { "type": "Point", "coordinates": [ 151.79, -26.622 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164558, "decimalLat": -38.671034 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.130364, "decimalLat": -38.177141 }, "geometry": { "type": "Point", "coordinates": [ 145.13, -38.177 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.716013, "decimalLat": -38.24903 }, "geometry": { "type": "Point", "coordinates": [ 141.716, -38.249 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109731, "decimalLat": -27.527213 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105226, "decimalLat": -27.531571 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.972319, "decimalLat": -29.7386 }, "geometry": { "type": "Point", "coordinates": [ 150.972, -29.739 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090988, "decimalLat": -27.525856 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.973358, "decimalLat": -38.525422 }, "geometry": { "type": "Point", "coordinates": [ 143.973, -38.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.518877, "decimalLat": -30.519927 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090816, "decimalLat": -27.526819 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091684, "decimalLat": -27.527274 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.279377, "decimalLat": -37.842137 }, "geometry": { "type": "Point", "coordinates": [ 144.279, -37.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053835, "decimalLat": -27.543337 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.653061, "decimalLat": -37.824654 }, "geometry": { "type": "Point", "coordinates": [ 145.653, -37.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.699915, "decimalLat": -34.958037 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.620953, "decimalLat": -34.979128 }, "geometry": { "type": "Point", "coordinates": [ 138.621, -34.979 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053109, "decimalLat": -27.554563 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.871857, "decimalLat": -19.123157 }, "geometry": { "type": "Point", "coordinates": [ 146.872, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10039, "decimalLat": -27.531289 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.020455, "decimalLat": -26.378658 }, "geometry": { "type": "Point", "coordinates": [ 153.02, -26.379 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232805, "decimalLat": -27.503953 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105909, "decimalLat": -30.328033 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -30.328 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068298, "decimalLat": -27.546262 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.654008, "decimalLat": -35.007238 }, "geometry": { "type": "Point", "coordinates": [ 138.654, -35.007 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377552, "decimalLat": -28.254067 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437616, "decimalLat": -27.40038 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.172907, "decimalLat": -37.913982 }, "geometry": { "type": "Point", "coordinates": [ 144.173, -37.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.59504, "decimalLat": -37.33235 }, "geometry": { "type": "Point", "coordinates": [ 144.595, -37.332 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003189, "decimalLat": -27.413545 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.310897, "decimalLat": -37.276958 }, "geometry": { "type": "Point", "coordinates": [ 144.311, -37.277 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.738208, "decimalLat": -34.987811 }, "geometry": { "type": "Point", "coordinates": [ 138.738, -34.988 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164689, "decimalLat": -38.671087 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104042, "decimalLat": -27.530654 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249435, "decimalLat": -27.496763 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.594178, "decimalLat": -37.331167 }, "geometry": { "type": "Point", "coordinates": [ 144.594, -37.331 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.180828, "decimalLat": -27.888094 }, "geometry": { "type": "Point", "coordinates": [ 153.181, -27.888 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000846, "decimalLat": -27.284941 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057577, "decimalLat": -27.551438 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.670674, "decimalLat": -35.015755 }, "geometry": { "type": "Point", "coordinates": [ 138.671, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.85766, "decimalLat": -38.667946 }, "geometry": { "type": "Point", "coordinates": [ 143.858, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.128581, "decimalLat": -38.831765 }, "geometry": { "type": "Point", "coordinates": [ 146.129, -38.832 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109338, "decimalLat": -27.528834 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992995, "decimalLat": -27.823807 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072866, "decimalLat": -27.540136 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.108047, "decimalLat": -37.873767 }, "geometry": { "type": "Point", "coordinates": [ 144.108, -37.874 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070406, "decimalLat": -27.543927 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092869, "decimalLat": -27.528072 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105713, "decimalLat": -27.529535 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058681, "decimalLat": -27.548459 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.660538, "decimalLat": -37.859905 }, "geometry": { "type": "Point", "coordinates": [ 145.661, -37.86 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.028422, "decimalLat": -37.869399 }, "geometry": { "type": "Point", "coordinates": [ 142.028, -37.869 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093515, "decimalLat": -27.524154 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.626745, "decimalLat": -34.892577 }, "geometry": { "type": "Point", "coordinates": [ 138.627, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.65846, "decimalLat": -38.771407 }, "geometry": { "type": "Point", "coordinates": [ 143.658, -38.771 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.394568, "decimalLat": -38.14039 }, "geometry": { "type": "Point", "coordinates": [ 141.395, -38.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.428514, "decimalLat": -25.271728 }, "geometry": { "type": "Point", "coordinates": [ 151.429, -25.272 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105609, "decimalLat": -27.531432 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.523089, "decimalLat": -38.829811 }, "geometry": { "type": "Point", "coordinates": [ 143.523, -38.83 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072946, "decimalLat": -27.545957 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061277, "decimalLat": -27.549712 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372239, "decimalLat": -28.569461 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -28.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.740601, "decimalLat": -37.553611 }, "geometry": { "type": "Point", "coordinates": [ 149.741, -37.554 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109063, "decimalLat": -27.526905 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.924202, "decimalLat": -38.056593 }, "geometry": { "type": "Point", "coordinates": [ 141.924, -38.057 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105203, "decimalLat": -27.53154 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721185, "decimalLat": -34.892599 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.432797, "decimalLat": -37.951429 }, "geometry": { "type": "Point", "coordinates": [ 144.433, -37.951 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.618923, "decimalLat": -38.790584 }, "geometry": { "type": "Point", "coordinates": [ 143.619, -38.791 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070921, "decimalLat": -26.676136 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -26.676 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111122, "decimalLat": -27.528172 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895261, "decimalLat": -27.422176 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.422 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073367, "decimalLat": -27.545781 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090658, "decimalLat": -27.526711 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749524, "decimalLat": -26.154241 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.154 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.619835, "decimalLat": -27.419634 }, "geometry": { "type": "Point", "coordinates": [ 152.62, -27.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103271, "decimalLat": -27.528425 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110486, "decimalLat": -27.527005 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.456955, "decimalLat": -27.715013 }, "geometry": { "type": "Point", "coordinates": [ 152.457, -27.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069279, "decimalLat": -27.510405 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655742, "decimalLat": -35.010942 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221208, "decimalLat": -27.534947 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.677592, "decimalLat": -35.188439 }, "geometry": { "type": "Point", "coordinates": [ 138.678, -35.188 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.045433, "decimalLat": -27.548012 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721851, "decimalLat": -34.892377 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438551, "decimalLat": -27.399529 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082882, "decimalLat": -27.510428 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.563013, "decimalLat": -27.792849 }, "geometry": { "type": "Point", "coordinates": [ 151.563, -27.793 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.60724, "decimalLat": -28.165365 }, "geometry": { "type": "Point", "coordinates": [ 152.607, -28.165 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.834121, "decimalLat": -38.689479 }, "geometry": { "type": "Point", "coordinates": [ 143.834, -38.689 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109185, "decimalLat": -27.526702 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105001, "decimalLat": -27.529419 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091366, "decimalLat": -27.527276 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.988877, "decimalLat": -27.291584 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -27.292 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.614603, "decimalLat": -26.390271 }, "geometry": { "type": "Point", "coordinates": [ 152.615, -26.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105784, "decimalLat": -27.527314 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.727338, "decimalLat": -27.711683 }, "geometry": { "type": "Point", "coordinates": [ 152.727, -27.712 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092615, "decimalLat": -27.525333 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074576, "decimalLat": -27.358575 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081908, "decimalLat": -27.512705 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.540046, "decimalLat": -27.426969 }, "geometry": { "type": "Point", "coordinates": [ 153.54, -27.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112409, "decimalLat": -27.528384 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091635, "decimalLat": -27.527025 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377272, "decimalLat": -28.253809 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.610694, "decimalLat": -27.17903 }, "geometry": { "type": "Point", "coordinates": [ 151.611, -27.179 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.407582, "decimalLat": -38.357055 }, "geometry": { "type": "Point", "coordinates": [ 146.408, -38.357 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.796714, "decimalLat": -34.882925 }, "geometry": { "type": "Point", "coordinates": [ 138.797, -34.883 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.045228, "decimalLat": -30.237544 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -30.238 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730888, "decimalLat": -34.890918 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.46245, "decimalLat": -37.01961 }, "geometry": { "type": "Point", "coordinates": [ 145.462, -37.02 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112721, "decimalLat": -27.528795 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.659665, "decimalLat": -34.864439 }, "geometry": { "type": "Point", "coordinates": [ 138.66, -34.864 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.532455, "decimalLat": -33.564638 }, "geometry": { "type": "Point", "coordinates": [ 149.532, -33.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.064084, "decimalLat": -27.261997 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -27.262 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069698, "decimalLat": -27.510421 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377401, "decimalLat": -28.253955 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.416667, "decimalLat": -28.066667 }, "geometry": { "type": "Point", "coordinates": [ 152.417, -28.067 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.366303, "decimalLat": -28.985063 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -28.985 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057941, "decimalLat": -27.550927 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.559556, "decimalLat": -35.032647 }, "geometry": { "type": "Point", "coordinates": [ 138.56, -35.033 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.125859, "decimalLat": -37.905945 }, "geometry": { "type": "Point", "coordinates": [ 144.126, -37.906 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344529, "decimalLat": -27.831775 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.04467, "decimalLat": -27.257 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.774992, "decimalLat": -38.203097 }, "geometry": { "type": "Point", "coordinates": [ 141.775, -38.203 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629524, "decimalLat": -28.637419 }, "geometry": { "type": "Point", "coordinates": [ 153.63, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637756, "decimalLat": -34.9706 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.697601, "decimalLat": -34.957072 }, "geometry": { "type": "Point", "coordinates": [ 138.698, -34.957 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163895, "decimalLat": -38.671378 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092001, "decimalLat": -27.527275 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.511033, "decimalLat": -38.774628 }, "geometry": { "type": "Point", "coordinates": [ 143.511, -38.775 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.929466, "decimalLat": -38.44748 }, "geometry": { "type": "Point", "coordinates": [ 144.929, -38.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.127649, "decimalLat": -37.902359 }, "geometry": { "type": "Point", "coordinates": [ 144.128, -37.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084242, "decimalLat": -27.511158 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.950353, "decimalLat": -38.277171 }, "geometry": { "type": "Point", "coordinates": [ 146.95, -38.277 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.021342, "decimalLat": -35.982919 }, "geometry": { "type": "Point", "coordinates": [ 137.021, -35.983 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719614, "decimalLat": -34.892011 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092055, "decimalLat": -27.524418 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091135, "decimalLat": -27.526796 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091001, "decimalLat": -27.526623 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053682, "decimalLat": -27.537466 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.062253, "decimalLat": -36.766482 }, "geometry": { "type": "Point", "coordinates": [ 140.062, -36.766 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637363, "decimalLat": -35.005027 }, "geometry": { "type": "Point", "coordinates": [ 138.637, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.994033, "decimalLat": -27.823682 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108873, "decimalLat": -27.527077 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058813, "decimalLat": -27.548392 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.050675, "decimalLat": -31.781467 }, "geometry": { "type": "Point", "coordinates": [ 151.051, -31.781 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993117, "decimalLat": -27.82363 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.377078, "decimalLat": -27.919058 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712928, "decimalLat": -34.903875 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105427, "decimalLat": -27.530532 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344529, "decimalLat": -27.831775 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057582, "decimalLat": -27.550947 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403024, "decimalLat": -27.493313 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103586, "decimalLat": -27.528339 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057973, "decimalLat": -27.54731 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.165106, "decimalLat": -38.671428 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.892944, "decimalLat": -27.597326 }, "geometry": { "type": "Point", "coordinates": [ 151.893, -27.597 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.809636, "decimalLat": -35.959944 }, "geometry": { "type": "Point", "coordinates": [ 136.81, -35.96 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091684, "decimalLat": -27.526869 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070685, "decimalLat": -27.510819 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092801, "decimalLat": -27.528405 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.826933, "decimalLat": -34.692015 }, "geometry": { "type": "Point", "coordinates": [ 138.827, -34.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82222, "decimalLat": -34.101939 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.910256, "decimalLat": -26.203851 }, "geometry": { "type": "Point", "coordinates": [ 151.91, -26.204 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.892969, "decimalLat": -38.441906 }, "geometry": { "type": "Point", "coordinates": [ 146.893, -38.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091384, "decimalLat": -27.527351 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720972, "decimalLat": -34.892869 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000516, "decimalLat": -27.284754 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093055, "decimalLat": -27.526296 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106381, "decimalLat": -27.528954 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111423, "decimalLat": -27.527924 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.132216, "decimalLat": -38.175487 }, "geometry": { "type": "Point", "coordinates": [ 145.132, -38.175 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108182, "decimalLat": -27.527086 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.391506, "decimalLat": -28.267204 }, "geometry": { "type": "Point", "coordinates": [ 153.392, -28.267 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163772, "decimalLat": -38.671222 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.614503, "decimalLat": -27.339063 }, "geometry": { "type": "Point", "coordinates": [ 152.615, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082367, "decimalLat": -27.512711 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.00118, "decimalLat": -27.311678 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.312 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109016, "decimalLat": -27.527209 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109137, "decimalLat": -27.526797 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090511, "decimalLat": -27.526726 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.306458, "decimalLat": -38.384495 }, "geometry": { "type": "Point", "coordinates": [ 145.306, -38.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.860121, "decimalLat": -27.484156 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -27.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395738, "decimalLat": -28.266574 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.267 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.689745, "decimalLat": -34.924903 }, "geometry": { "type": "Point", "coordinates": [ 138.69, -34.925 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.513611, "decimalLat": -35.175278 }, "geometry": { "type": "Point", "coordinates": [ 138.514, -35.175 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.226361, "decimalLat": -27.498671 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071909, "decimalLat": -27.542569 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734229, "decimalLat": -34.886567 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092199, "decimalLat": -27.525484 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703455, "decimalLat": -34.901555 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.902 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363164, "decimalLat": -38.318341 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.994675, "decimalLat": -26.304521 }, "geometry": { "type": "Point", "coordinates": [ 151.995, -26.305 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.570983, "decimalLat": -37.916562 }, "geometry": { "type": "Point", "coordinates": [ 145.571, -37.917 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.270966, "decimalLat": -38.133057 }, "geometry": { "type": "Point", "coordinates": [ 145.271, -38.133 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720528, "decimalLat": -34.892237 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.706172, "decimalLat": -34.98265 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.983 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108976, "decimalLat": -27.526998 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046392, "decimalLat": -27.257185 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092402, "decimalLat": -27.526999 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103692, "decimalLat": -27.53041 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092483, "decimalLat": -27.525712 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377401, "decimalLat": -28.253933 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.554261, "decimalLat": -27.781471 }, "geometry": { "type": "Point", "coordinates": [ 151.554, -27.781 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.071075, "decimalLat": -35.732483 }, "geometry": { "type": "Point", "coordinates": [ 137.071, -35.732 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090663, "decimalLat": -27.526082 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.934983, "decimalLat": -38.393508 }, "geometry": { "type": "Point", "coordinates": [ 144.935, -38.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870833, "decimalLat": -19.123325 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093156, "decimalLat": -27.525745 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413055, "decimalLat": -31.940478 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.94 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722445, "decimalLat": -34.892624 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104648, "decimalLat": -27.529759 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.270339, "decimalLat": -37.875458 }, "geometry": { "type": "Point", "coordinates": [ 144.27, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092987, "decimalLat": -27.527736 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.509142, "decimalLat": -35.121295 }, "geometry": { "type": "Point", "coordinates": [ 138.509, -35.121 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.364971, "decimalLat": -38.321532 }, "geometry": { "type": "Point", "coordinates": [ 142.365, -38.322 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437937, "decimalLat": -27.403436 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.403 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103765, "decimalLat": -27.52979 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059921, "decimalLat": -27.550237 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.996858, "decimalLat": -37.688766 }, "geometry": { "type": "Point", "coordinates": [ 143.997, -37.689 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.285424, "decimalLat": -37.925966 }, "geometry": { "type": "Point", "coordinates": [ 141.285, -37.926 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363864, "decimalLat": -38.318324 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086666, "decimalLat": -27.510391 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058561, "decimalLat": -27.545506 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072128, "decimalLat": -27.545291 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091013, "decimalLat": -27.526499 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053866, "decimalLat": -27.543468 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003022, "decimalLat": -27.412988 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.824814, "decimalLat": -26.109297 }, "geometry": { "type": "Point", "coordinates": [ 151.825, -26.109 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559525, "decimalLat": -28.388351 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.886447, "decimalLat": -35.071136 }, "geometry": { "type": "Point", "coordinates": [ 138.886, -35.071 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.89732, "decimalLat": -37.613507 }, "geometry": { "type": "Point", "coordinates": [ 143.897, -37.614 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.292211, "decimalLat": -26.892022 }, "geometry": { "type": "Point", "coordinates": [ 152.292, -26.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113263, "decimalLat": -27.528603 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314285, "decimalLat": -38.37553 }, "geometry": { "type": "Point", "coordinates": [ 145.314, -38.376 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091428, "decimalLat": -27.527362 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072075, "decimalLat": -27.2264 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.226 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.639171, "decimalLat": -34.997905 }, "geometry": { "type": "Point", "coordinates": [ 138.639, -34.998 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.868462, "decimalLat": -26.52166 }, "geometry": { "type": "Point", "coordinates": [ 151.868, -26.522 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091418, "decimalLat": -27.527067 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.09555, "decimalLat": -37.623345 }, "geometry": { "type": "Point", "coordinates": [ 144.096, -37.623 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.63875, "decimalLat": -34.988435 }, "geometry": { "type": "Point", "coordinates": [ 138.639, -34.988 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290874, "decimalLat": -37.874561 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092174, "decimalLat": -27.525072 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.530738, "decimalLat": -37.802888 }, "geometry": { "type": "Point", "coordinates": [ 141.531, -37.803 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084903, "decimalLat": -27.506689 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.546661, "decimalLat": -34.75195 }, "geometry": { "type": "Point", "coordinates": [ 146.547, -34.752 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993317, "decimalLat": -27.823756 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.152772, "decimalLat": -27.760126 }, "geometry": { "type": "Point", "coordinates": [ 153.153, -27.76 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39438, "decimalLat": -28.271322 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.271 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.457941, "decimalLat": -37.013948 }, "geometry": { "type": "Point", "coordinates": [ 145.458, -37.014 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.335725, "decimalLat": -31.58425 }, "geometry": { "type": "Point", "coordinates": [ 149.336, -31.584 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073399, "decimalLat": -27.547093 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090422, "decimalLat": -27.526872 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.129584, "decimalLat": -26.87078 }, "geometry": { "type": "Point", "coordinates": [ 152.13, -26.871 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.288668, "decimalLat": -26.866705 }, "geometry": { "type": "Point", "coordinates": [ 152.289, -26.867 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110584, "decimalLat": -27.527476 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.087768, "decimalLat": -27.510608 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.736167, "decimalLat": -34.830996 }, "geometry": { "type": "Point", "coordinates": [ 138.736, -34.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06, "decimalLat": -27.550414 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090983, "decimalLat": -27.526822 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.594939, "decimalLat": -35.136087 }, "geometry": { "type": "Point", "coordinates": [ 138.595, -35.136 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.282415, "decimalLat": -38.381327 }, "geometry": { "type": "Point", "coordinates": [ 145.282, -38.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.363487, "decimalLat": -37.664608 }, "geometry": { "type": "Point", "coordinates": [ 144.363, -37.665 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037022, "decimalLat": -27.536859 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.001784, "decimalLat": -27.410565 }, "geometry": { "type": "Point", "coordinates": [ 152.002, -27.411 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003098, "decimalLat": -27.412708 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.694145, "decimalLat": -34.897602 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.898 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05931, "decimalLat": -27.540683 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072369, "decimalLat": -27.544552 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09087, "decimalLat": -27.526749 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.115111, "decimalLat": -27.528563 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375187, "decimalLat": -28.252481 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999751, "decimalLat": -27.434717 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080561, "decimalLat": -27.508314 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.215081, "decimalLat": -27.563401 }, "geometry": { "type": "Point", "coordinates": [ 153.215, -27.563 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403635, "decimalLat": -28.260583 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.550173, "decimalLat": -27.793776 }, "geometry": { "type": "Point", "coordinates": [ 151.55, -27.794 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520238, "decimalLat": -30.519171 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.519 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.573878, "decimalLat": -28.104462 }, "geometry": { "type": "Point", "coordinates": [ 152.574, -28.104 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000484, "decimalLat": -27.284279 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058979, "decimalLat": -27.551543 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.371788, "decimalLat": -38.732215 }, "geometry": { "type": "Point", "coordinates": [ 143.372, -38.732 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079251, "decimalLat": -27.500148 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.372234, "decimalLat": -36.930531 }, "geometry": { "type": "Point", "coordinates": [ 145.372, -36.931 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376682, "decimalLat": -28.253021 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.095036, "decimalLat": -27.515436 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.035211, "decimalLat": -27.538752 }, "geometry": { "type": "Point", "coordinates": [ 153.035, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.699039, "decimalLat": -36.358922 }, "geometry": { "type": "Point", "coordinates": [ 146.699, -36.359 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.778272, "decimalLat": -26.793728 }, "geometry": { "type": "Point", "coordinates": [ 152.778, -26.794 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.304458, "decimalLat": -38.384317 }, "geometry": { "type": "Point", "coordinates": [ 145.304, -38.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.318926, "decimalLat": -27.897405 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -27.897 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374145, "decimalLat": -28.25745 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000564, "decimalLat": -27.284595 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729912, "decimalLat": -34.890565 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.525878, "decimalLat": -27.633512 }, "geometry": { "type": "Point", "coordinates": [ 151.526, -27.634 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058543, "decimalLat": -27.546955 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.920792, "decimalLat": -37.653182 }, "geometry": { "type": "Point", "coordinates": [ 143.921, -37.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388188, "decimalLat": -38.354852 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991551, "decimalLat": -27.822733 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.280866, "decimalLat": -28.010885 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.011 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247, "decimalLat": -28.047 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -28.047 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074543, "decimalLat": -27.358509 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085457, "decimalLat": -27.509199 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363592, "decimalLat": -38.319278 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.861717, "decimalLat": -38.669359 }, "geometry": { "type": "Point", "coordinates": [ 143.862, -38.669 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403162, "decimalLat": -28.260674 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090925, "decimalLat": -27.527395 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.962993, "decimalLat": -28.14326 }, "geometry": { "type": "Point", "coordinates": [ 152.963, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.331878, "decimalLat": -33.677155 }, "geometry": { "type": "Point", "coordinates": [ 149.332, -33.677 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059262, "decimalLat": -27.551901 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.843868, "decimalLat": -30.186865 }, "geometry": { "type": "Point", "coordinates": [ 152.844, -30.187 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.782334, "decimalLat": -26.136001 }, "geometry": { "type": "Point", "coordinates": [ 151.782, -26.136 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.064287, "decimalLat": -27.538561 }, "geometry": { "type": "Point", "coordinates": [ 153.064, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057931, "decimalLat": -27.546129 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.567765, "decimalLat": -27.17228 }, "geometry": { "type": "Point", "coordinates": [ 152.568, -27.172 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058762, "decimalLat": -27.54708 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070121, "decimalLat": -27.51059 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.877301, "decimalLat": -37.595337 }, "geometry": { "type": "Point", "coordinates": [ 143.877, -37.595 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.986942, "decimalLat": -27.651248 }, "geometry": { "type": "Point", "coordinates": [ 151.987, -27.651 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375948, "decimalLat": -28.254747 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090701, "decimalLat": -27.526875 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.072523, "decimalLat": -37.165858 }, "geometry": { "type": "Point", "coordinates": [ 144.073, -37.166 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396421, "decimalLat": -28.619973 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.62 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730735, "decimalLat": -34.88304 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.883 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.184277, "decimalLat": -27.530654 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.862146, "decimalLat": -19.120286 }, "geometry": { "type": "Point", "coordinates": [ 146.862, -19.12 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10913, "decimalLat": -27.5269 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.513962, "decimalLat": -38.832283 }, "geometry": { "type": "Point", "coordinates": [ 143.514, -38.832 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.998163, "decimalLat": -38.826967 }, "geometry": { "type": "Point", "coordinates": [ 145.998, -38.827 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732391, "decimalLat": -34.890172 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070297, "decimalLat": -32.707267 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.789069, "decimalLat": -26.389428 }, "geometry": { "type": "Point", "coordinates": [ 151.789, -26.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.562867, "decimalLat": -38.3429 }, "geometry": { "type": "Point", "coordinates": [ 141.563, -38.343 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.709699, "decimalLat": -38.653731 }, "geometry": { "type": "Point", "coordinates": [ 143.71, -38.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377397, "decimalLat": -28.254262 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000493, "decimalLat": -27.284209 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092711, "decimalLat": -27.52847 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.195608, "decimalLat": -37.838333 }, "geometry": { "type": "Point", "coordinates": [ 144.196, -37.838 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107307, "decimalLat": -27.527028 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.736167, "decimalLat": -34.830996 }, "geometry": { "type": "Point", "coordinates": [ 138.736, -34.831 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092658, "decimalLat": -27.524865 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.614735, "decimalLat": -27.326505 }, "geometry": { "type": "Point", "coordinates": [ 152.615, -27.327 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091218, "decimalLat": -27.526857 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.529802, "decimalLat": -27.427327 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -27.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.112795, "decimalLat": -37.544809 }, "geometry": { "type": "Point", "coordinates": [ 144.113, -37.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.678501, "decimalLat": -36.353933 }, "geometry": { "type": "Point", "coordinates": [ 146.679, -36.354 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.63605, "decimalLat": -34.990596 }, "geometry": { "type": "Point", "coordinates": [ 138.636, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104623, "decimalLat": -27.529409 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.489412, "decimalLat": -37.071655 }, "geometry": { "type": "Point", "coordinates": [ 145.489, -37.072 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.102251, "decimalLat": -27.567957 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069928, "decimalLat": -27.510488 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.246133, "decimalLat": -27.496382 }, "geometry": { "type": "Point", "coordinates": [ 152.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.558592, "decimalLat": -30.266607 }, "geometry": { "type": "Point", "coordinates": [ 151.559, -30.267 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.07462, "decimalLat": -27.358622 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092264, "decimalLat": -27.52805 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110986, "decimalLat": -27.530543 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.728863, "decimalLat": -37.921857 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093226, "decimalLat": -27.525929 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074506, "decimalLat": -27.358409 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111413, "decimalLat": -27.527938 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05442, "decimalLat": -27.539146 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.86036, "decimalLat": -27.546537 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.728863, "decimalLat": -37.921857 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.605513, "decimalLat": -38.763397 }, "geometry": { "type": "Point", "coordinates": [ 143.606, -38.763 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083779, "decimalLat": -27.508124 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.636141, "decimalLat": -34.997898 }, "geometry": { "type": "Point", "coordinates": [ 138.636, -34.998 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092948, "decimalLat": -27.528014 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.85457, "decimalLat": -34.076308 }, "geometry": { "type": "Point", "coordinates": [ 150.855, -34.076 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705158, "decimalLat": -34.903631 }, "geometry": { "type": "Point", "coordinates": [ 138.705, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519702, "decimalLat": -30.520139 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868248, "decimalLat": -19.128854 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092286, "decimalLat": -27.525364 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.895829, "decimalLat": -37.615255 }, "geometry": { "type": "Point", "coordinates": [ 143.896, -37.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090923, "decimalLat": -27.526968 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.398659, "decimalLat": -28.258326 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059001, "decimalLat": -27.547721 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.125528, "decimalLat": -30.294758 }, "geometry": { "type": "Point", "coordinates": [ 153.126, -30.295 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0732, "decimalLat": -27.545638 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271028, "decimalLat": -27.540033 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057544, "decimalLat": -27.551043 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.707854, "decimalLat": -34.860292 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -34.86 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103392, "decimalLat": -27.529088 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720025, "decimalLat": -34.892174 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.708038, "decimalLat": -27.554792 }, "geometry": { "type": "Point", "coordinates": [ 151.708, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090546, "decimalLat": -27.526103 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.594688, "decimalLat": -34.773204 }, "geometry": { "type": "Point", "coordinates": [ 146.595, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.093405, "decimalLat": -33.073923 }, "geometry": { "type": "Point", "coordinates": [ 151.093, -33.074 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.665408, "decimalLat": -35.019168 }, "geometry": { "type": "Point", "coordinates": [ 138.665, -35.019 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388486, "decimalLat": -38.357996 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.358 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163798, "decimalLat": -38.671401 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.926595, "decimalLat": -37.653812 }, "geometry": { "type": "Point", "coordinates": [ 143.927, -37.654 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.133151, "decimalLat": -38.176266 }, "geometry": { "type": "Point", "coordinates": [ 145.133, -38.176 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.266741, "decimalLat": -37.393283 }, "geometry": { "type": "Point", "coordinates": [ 144.267, -37.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.651514, "decimalLat": -34.965488 }, "geometry": { "type": "Point", "coordinates": [ 138.652, -34.965 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393347, "decimalLat": -28.269252 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.269 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.386285, "decimalLat": -27.900039 }, "geometry": { "type": "Point", "coordinates": [ 153.386, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037247, "decimalLat": -27.533622 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000388, "decimalLat": -27.28472 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057425, "decimalLat": -27.543167 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.583398, "decimalLat": -36.307017 }, "geometry": { "type": "Point", "coordinates": [ 146.583, -36.307 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.927975, "decimalLat": -35.037296 }, "geometry": { "type": "Point", "coordinates": [ 138.928, -35.037 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991819, "decimalLat": -27.823279 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.892052, "decimalLat": -27.635537 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -27.636 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.417259, "decimalLat": -27.492547 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729613, "decimalLat": -34.889601 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31827, "decimalLat": -28.945593 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.946 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377, "decimalLat": -28.254254 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916372, "decimalLat": -30.497168 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -30.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056964, "decimalLat": -27.551985 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.701189, "decimalLat": -27.652237 }, "geometry": { "type": "Point", "coordinates": [ 151.701, -27.652 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.60765, "decimalLat": -38.667167 }, "geometry": { "type": "Point", "coordinates": [ 145.608, -38.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.24933, "decimalLat": -27.49628 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093256, "decimalLat": -27.526043 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.874372, "decimalLat": -34.862396 }, "geometry": { "type": "Point", "coordinates": [ 135.874, -34.862 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108816, "decimalLat": -27.528965 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.432922, "decimalLat": -20.925413 }, "geometry": { "type": "Point", "coordinates": [ 149.433, -20.925 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090553, "decimalLat": -27.526811 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.585897, "decimalLat": -35.17122 }, "geometry": { "type": "Point", "coordinates": [ 138.586, -35.171 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069218, "decimalLat": -27.510271 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105243, "decimalLat": -27.529228 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401711, "decimalLat": -28.257 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637297, "decimalLat": -34.970464 }, "geometry": { "type": "Point", "coordinates": [ 138.637, -34.97 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058412, "decimalLat": -27.546717 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440385, "decimalLat": -27.392752 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085665, "decimalLat": -27.507459 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.693792, "decimalLat": -34.962926 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.963 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.744119, "decimalLat": -34.83122 }, "geometry": { "type": "Point", "coordinates": [ 138.744, -34.831 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052071, "decimalLat": -27.548372 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.627324, "decimalLat": -34.892759 }, "geometry": { "type": "Point", "coordinates": [ 138.627, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.960464, "decimalLat": -38.369222 }, "geometry": { "type": "Point", "coordinates": [ 144.96, -38.369 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110004, "decimalLat": -27.52673 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.923247, "decimalLat": -27.258222 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399929, "decimalLat": -28.260654 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092357, "decimalLat": -27.527472 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103666, "decimalLat": -27.529986 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.824358, "decimalLat": -27.249316 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -27.249 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.108719, "decimalLat": -27.666586 }, "geometry": { "type": "Point", "coordinates": [ 152.109, -27.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060061, "decimalLat": -27.532072 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.518403, "decimalLat": -30.520863 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.7352, "decimalLat": -37.969208 }, "geometry": { "type": "Point", "coordinates": [ 141.735, -37.969 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.381617, "decimalLat": -27.963551 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.964 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.692415, "decimalLat": -28.33131 }, "geometry": { "type": "Point", "coordinates": [ 152.692, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.560876, "decimalLat": -27.803363 }, "geometry": { "type": "Point", "coordinates": [ 151.561, -27.803 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.707336, "decimalLat": -37.759288 }, "geometry": { "type": "Point", "coordinates": [ 145.707, -37.759 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.92, "decimalLat": -27.28 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -27.28 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091006, "decimalLat": -27.5263 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.191606, "decimalLat": -27.703166 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.703 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.148806, "decimalLat": -37.946646 }, "geometry": { "type": "Point", "coordinates": [ 144.149, -37.947 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105059, "decimalLat": -27.529566 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092328, "decimalLat": -27.527484 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092206, "decimalLat": -27.527341 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 143.855565, "decimalLat": -18.619419 }, "geometry": { "type": "Point", "coordinates": [ 143.856, -18.619 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10382, "decimalLat": -27.530137 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05768, "decimalLat": -27.552711 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.653224, "decimalLat": -35.142624 }, "geometry": { "type": "Point", "coordinates": [ 138.653, -35.143 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70162, "decimalLat": -34.902241 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.697433, "decimalLat": -27.554378 }, "geometry": { "type": "Point", "coordinates": [ 151.697, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.376053, "decimalLat": -26.430912 }, "geometry": { "type": "Point", "coordinates": [ 152.376, -26.431 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091669, "decimalLat": -27.527143 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.288697, "decimalLat": -28.00251 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -28.003 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.445111, "decimalLat": -38.309967 }, "geometry": { "type": "Point", "coordinates": [ 141.445, -38.31 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.250339, "decimalLat": -37.811245 }, "geometry": { "type": "Point", "coordinates": [ 144.25, -37.811 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870025, "decimalLat": -19.125111 }, "geometry": { "type": "Point", "coordinates": [ 146.87, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093066, "decimalLat": -27.527706 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.738396, "decimalLat": -38.552651 }, "geometry": { "type": "Point", "coordinates": [ 143.738, -38.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.279212, "decimalLat": -37.863278 }, "geometry": { "type": "Point", "coordinates": [ 144.279, -37.863 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19017, "decimalLat": -27.699411 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.699 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091665, "decimalLat": -27.527163 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091659, "decimalLat": -27.527214 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732109, "decimalLat": -34.887171 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054718, "decimalLat": -27.537878 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090566, "decimalLat": -27.526471 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164153, "decimalLat": -38.671353 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40071, "decimalLat": -28.258565 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103911, "decimalLat": -27.530441 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822465, "decimalLat": -34.101052 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.356076, "decimalLat": -38.317157 }, "geometry": { "type": "Point", "coordinates": [ 142.356, -38.317 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058076, "decimalLat": -27.55132 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722661, "decimalLat": -34.892174 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.401037, "decimalLat": -27.497115 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091916, "decimalLat": -27.525455 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907054, "decimalLat": -31.434668 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.798672, "decimalLat": -34.190301 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.19 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000857, "decimalLat": -27.284499 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107967, "decimalLat": -27.527296 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.902038, "decimalLat": -27.629436 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.629 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092353, "decimalLat": -27.527985 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061242, "decimalLat": -27.547672 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72006, "decimalLat": -34.891989 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102949, "decimalLat": -27.527314 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092736, "decimalLat": -27.528505 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38115, "decimalLat": -27.955166 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.955 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090755, "decimalLat": -27.52582 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.192949, "decimalLat": -38.218358 }, "geometry": { "type": "Point", "coordinates": [ 147.193, -38.218 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387367, "decimalLat": -38.356997 }, "geometry": { "type": "Point", "coordinates": [ 146.387, -38.357 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092996, "decimalLat": -27.526166 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091173, "decimalLat": -27.527328 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108133, "decimalLat": -27.527243 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.13053, "decimalLat": -38.180087 }, "geometry": { "type": "Point", "coordinates": [ 145.131, -38.18 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.99383, "decimalLat": -27.823017 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734697, "decimalLat": -35.336167 }, "geometry": { "type": "Point", "coordinates": [ 138.735, -35.336 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.610567, "decimalLat": -38.354587 }, "geometry": { "type": "Point", "coordinates": [ 141.611, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.715395, "decimalLat": -38.63787 }, "geometry": { "type": "Point", "coordinates": [ 145.715, -38.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104188, "decimalLat": -27.528618 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093015, "decimalLat": -27.528302 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.017087, "decimalLat": -26.372539 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -26.373 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.191727, "decimalLat": -27.24331 }, "geometry": { "type": "Point", "coordinates": [ 152.192, -27.243 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091665, "decimalLat": -27.527152 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105166, "decimalLat": -27.529928 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090545, "decimalLat": -27.526697 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163667, "decimalLat": -38.671013 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.781745, "decimalLat": -26.309411 }, "geometry": { "type": "Point", "coordinates": [ 151.782, -26.309 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.706863, "decimalLat": -27.648437 }, "geometry": { "type": "Point", "coordinates": [ 151.707, -27.648 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.503026, "decimalLat": -37.000013 }, "geometry": { "type": "Point", "coordinates": [ 145.503, -37.0 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11228, "decimalLat": -27.528958 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054393, "decimalLat": -27.54984 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.291032, "decimalLat": -27.974612 }, "geometry": { "type": "Point", "coordinates": [ 153.291, -27.975 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.640983, "decimalLat": -27.730584 }, "geometry": { "type": "Point", "coordinates": [ 151.641, -27.731 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.681987, "decimalLat": -27.998882 }, "geometry": { "type": "Point", "coordinates": [ 152.682, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090746, "decimalLat": -27.525043 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108179, "decimalLat": -27.527273 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.153957, "decimalLat": -28.373856 }, "geometry": { "type": "Point", "coordinates": [ 153.154, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057833, "decimalLat": -27.550968 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.789749, "decimalLat": -26.566616 }, "geometry": { "type": "Point", "coordinates": [ 151.79, -26.567 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091517, "decimalLat": -27.526954 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.89732, "decimalLat": -37.613507 }, "geometry": { "type": "Point", "coordinates": [ 143.897, -37.614 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074548, "decimalLat": -27.358429 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.82333, "decimalLat": -38.069771 }, "geometry": { "type": "Point", "coordinates": [ 141.823, -38.07 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090917, "decimalLat": -27.527519 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.962631, "decimalLat": -27.256351 }, "geometry": { "type": "Point", "coordinates": [ 152.963, -27.256 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.978126, "decimalLat": -26.724452 }, "geometry": { "type": "Point", "coordinates": [ 152.978, -26.724 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071902, "decimalLat": -27.544757 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.29715, "decimalLat": -38.383442 }, "geometry": { "type": "Point", "coordinates": [ 145.297, -38.383 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108142, "decimalLat": -27.527352 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.61325, "decimalLat": -27.339428 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083861, "decimalLat": -27.509813 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004242, "decimalLat": -27.414708 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103842, "decimalLat": -27.530648 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.424928, "decimalLat": -38.770355 }, "geometry": { "type": "Point", "coordinates": [ 143.425, -38.77 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090718, "decimalLat": -27.526455 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103303, "decimalLat": -27.528461 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.404317, "decimalLat": -27.493566 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.249907, "decimalLat": -37.81149 }, "geometry": { "type": "Point", "coordinates": [ 144.25, -37.811 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.679844, "decimalLat": -34.867718 }, "geometry": { "type": "Point", "coordinates": [ 138.68, -34.868 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.560215, "decimalLat": -35.260284 }, "geometry": { "type": "Point", "coordinates": [ 138.56, -35.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722562, "decimalLat": -34.890314 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073304, "decimalLat": -27.545854 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072368, "decimalLat": -27.542368 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092424, "decimalLat": -27.526811 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060953, "decimalLat": -27.544634 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091551, "decimalLat": -27.527319 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.722961, "decimalLat": -38.530384 }, "geometry": { "type": "Point", "coordinates": [ 143.723, -38.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.716039, "decimalLat": -38.637776 }, "geometry": { "type": "Point", "coordinates": [ 145.716, -38.638 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.72022, "decimalLat": -36.521659 }, "geometry": { "type": "Point", "coordinates": [ 145.72, -36.522 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.698213, "decimalLat": -21.806094 }, "geometry": { "type": "Point", "coordinates": [ 148.698, -21.806 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090663, "decimalLat": -27.525868 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.8177, "decimalLat": -26.362907 }, "geometry": { "type": "Point", "coordinates": [ 151.818, -26.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.883392, "decimalLat": -35.071022 }, "geometry": { "type": "Point", "coordinates": [ 138.883, -35.071 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399505, "decimalLat": -27.497405 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164235, "decimalLat": -38.671563 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111626, "decimalLat": -27.527866 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070364, "decimalLat": -27.543528 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057432, "decimalLat": -27.551052 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072493, "decimalLat": -27.54569 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090937, "decimalLat": -27.527022 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109995, "decimalLat": -27.529735 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082773, "decimalLat": -27.514854 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.735483, "decimalLat": -37.908561 }, "geometry": { "type": "Point", "coordinates": [ 147.735, -37.909 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.627137, "decimalLat": -34.892836 }, "geometry": { "type": "Point", "coordinates": [ 138.627, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058936, "decimalLat": -27.551265 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868713, "decimalLat": -19.12539 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712798, "decimalLat": -34.87553 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.876 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.694014, "decimalLat": -21.726375 }, "geometry": { "type": "Point", "coordinates": [ 148.694, -21.726 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.15976, "decimalLat": -27.361481 }, "geometry": { "type": "Point", "coordinates": [ 152.16, -27.361 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.046783, "decimalLat": -27.524378 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.559433, "decimalLat": -35.032733 }, "geometry": { "type": "Point", "coordinates": [ 138.559, -35.033 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063702, "decimalLat": -27.552599 }, "geometry": { "type": "Point", "coordinates": [ 153.064, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090891, "decimalLat": -27.526961 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401663, "decimalLat": -28.260384 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.3658, "decimalLat": -27.453139 }, "geometry": { "type": "Point", "coordinates": [ 152.366, -27.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.220507, "decimalLat": -37.746616 }, "geometry": { "type": "Point", "coordinates": [ 145.221, -37.747 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.931945, "decimalLat": -27.325612 }, "geometry": { "type": "Point", "coordinates": [ 151.932, -27.326 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.379655, "decimalLat": -28.053518 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -28.054 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.277431, "decimalLat": -37.841098 }, "geometry": { "type": "Point", "coordinates": [ 144.277, -37.841 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.535193, "decimalLat": -38.791788 }, "geometry": { "type": "Point", "coordinates": [ 143.535, -38.792 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.706198, "decimalLat": -34.936102 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729492, "decimalLat": -37.924375 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.82024, "decimalLat": -26.390373 }, "geometry": { "type": "Point", "coordinates": [ 151.82, -26.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.277248, "decimalLat": -37.873632 }, "geometry": { "type": "Point", "coordinates": [ 144.277, -37.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.530328, "decimalLat": -27.42842 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -27.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.381213, "decimalLat": -27.963679 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.964 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090326, "decimalLat": -27.526007 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124878, "decimalLat": -30.295483 }, "geometry": { "type": "Point", "coordinates": [ 153.125, -30.295 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401988, "decimalLat": -28.259925 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09172, "decimalLat": -27.515762 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090374, "decimalLat": -27.527008 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.035912, "decimalLat": -27.530151 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 145.678847, "decimalLat": -35.919162 }, "geometry": { "type": "Point", "coordinates": [ 145.679, -35.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39937, "decimalLat": -27.496113 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111664, "decimalLat": -27.527843 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.802707, "decimalLat": -26.757511 }, "geometry": { "type": "Point", "coordinates": [ 152.803, -26.758 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.821613, "decimalLat": -26.580756 }, "geometry": { "type": "Point", "coordinates": [ 151.822, -26.581 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.978278, "decimalLat": -38.497133 }, "geometry": { "type": "Point", "coordinates": [ 142.978, -38.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083275, "decimalLat": -27.510493 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037468, "decimalLat": -27.546677 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372097, "decimalLat": -27.90979 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.91 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.365708, "decimalLat": -38.324658 }, "geometry": { "type": "Point", "coordinates": [ 142.366, -38.325 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109825, "decimalLat": -27.528207 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109439, "decimalLat": -27.527778 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.046382, "decimalLat": -27.544367 }, "geometry": { "type": "Point", "coordinates": [ 153.046, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8704, "decimalLat": -28.097252 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21267, "decimalLat": -27.927497 }, "geometry": { "type": "Point", "coordinates": [ 153.213, -27.927 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068427, "decimalLat": -27.542433 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247161, "decimalLat": -27.490726 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.06752, "decimalLat": -33.150928 }, "geometry": { "type": "Point", "coordinates": [ 151.068, -33.151 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.655471, "decimalLat": -26.390343 }, "geometry": { "type": "Point", "coordinates": [ 152.655, -26.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095397, "decimalLat": -33.076706 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73252, "decimalLat": -34.890164 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.624532, "decimalLat": -34.89358 }, "geometry": { "type": "Point", "coordinates": [ 138.625, -34.894 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074751, "decimalLat": -27.546729 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111481, "decimalLat": -27.528955 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037376, "decimalLat": -26.375305 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -26.375 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001464, "decimalLat": -27.166525 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.167 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055785, "decimalLat": -27.544252 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.969533, "decimalLat": -26.580242 }, "geometry": { "type": "Point", "coordinates": [ 151.97, -26.58 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09171, "decimalLat": -27.527189 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715319, "decimalLat": -34.892154 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657483, "decimalLat": -34.865075 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2555, "decimalLat": -27.545571 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084022, "decimalLat": -27.51145 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.044629, "decimalLat": -27.551668 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.247495, "decimalLat": -27.496009 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092335, "decimalLat": -27.525674 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719712, "decimalLat": -34.891995 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.114269, "decimalLat": -27.528502 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057832, "decimalLat": -27.550974 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.454861, "decimalLat": -27.529306 }, "geometry": { "type": "Point", "coordinates": [ 152.455, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720951, "decimalLat": -34.892185 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092936, "decimalLat": -27.526567 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091744, "decimalLat": -27.527153 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092767, "decimalLat": -27.528315 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.681228, "decimalLat": -34.824322 }, "geometry": { "type": "Point", "coordinates": [ 135.681, -34.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400668, "decimalLat": -28.258036 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.687686, "decimalLat": -26.17301 }, "geometry": { "type": "Point", "coordinates": [ 151.688, -26.173 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.630853, "decimalLat": -38.341499 }, "geometry": { "type": "Point", "coordinates": [ 142.631, -38.341 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.807148, "decimalLat": -27.529496 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107722, "decimalLat": -27.527023 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.453138, "decimalLat": -26.328117 }, "geometry": { "type": "Point", "coordinates": [ 148.453, -26.328 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091738, "decimalLat": -27.526906 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080857, "decimalLat": -27.509382 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.597596, "decimalLat": -35.146825 }, "geometry": { "type": "Point", "coordinates": [ 138.598, -35.147 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.728863, "decimalLat": -37.921857 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110135, "decimalLat": -27.528269 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.087855, "decimalLat": -27.510903 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868988, "decimalLat": -19.12533 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268517, "decimalLat": -38.130148 }, "geometry": { "type": "Point", "coordinates": [ 145.269, -38.13 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.974964, "decimalLat": -38.500031 }, "geometry": { "type": "Point", "coordinates": [ 142.975, -38.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.641892, "decimalLat": -35.111405 }, "geometry": { "type": "Point", "coordinates": [ 138.642, -35.111 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111462, "decimalLat": -27.528123 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720748, "decimalLat": -34.886949 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.673553, "decimalLat": -34.875488 }, "geometry": { "type": "Point", "coordinates": [ 135.674, -34.875 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.626259, "decimalLat": -38.281898 }, "geometry": { "type": "Point", "coordinates": [ 142.626, -38.282 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376801, "decimalLat": -28.25392 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.72644, "decimalLat": -26.353608 }, "geometry": { "type": "Point", "coordinates": [ 151.726, -26.354 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.873873, "decimalLat": -26.507413 }, "geometry": { "type": "Point", "coordinates": [ 151.874, -26.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656872, "decimalLat": -34.865183 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 145.465053, "decimalLat": -17.96026 }, "geometry": { "type": "Point", "coordinates": [ 145.465, -17.96 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090354, "decimalLat": -27.527345 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.996858, "decimalLat": -37.688766 }, "geometry": { "type": "Point", "coordinates": [ 143.997, -37.689 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.996551, "decimalLat": -27.406319 }, "geometry": { "type": "Point", "coordinates": [ 151.997, -27.406 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637438, "decimalLat": -34.970553 }, "geometry": { "type": "Point", "coordinates": [ 138.637, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092257, "decimalLat": -27.525 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112084, "decimalLat": -27.529113 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.668337, "decimalLat": -34.782047 }, "geometry": { "type": "Point", "coordinates": [ 138.668, -34.782 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058812, "decimalLat": -27.551388 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.062256, "decimalLat": -27.348637 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -27.349 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.839917, "decimalLat": -37.566217 }, "geometry": { "type": "Point", "coordinates": [ 143.84, -37.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402625, "decimalLat": -28.258537 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092955, "decimalLat": -27.523979 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400798, "decimalLat": -28.258016 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.579853, "decimalLat": -34.766636 }, "geometry": { "type": "Point", "coordinates": [ 146.58, -34.767 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638136, "decimalLat": -34.971335 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111904, "decimalLat": -27.528907 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715136, "decimalLat": -34.891918 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092748, "decimalLat": -27.525637 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108953, "decimalLat": -27.528818 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703186, "decimalLat": -34.903537 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247942, "decimalLat": -27.490363 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.268702, "decimalLat": -37.84187 }, "geometry": { "type": "Point", "coordinates": [ 144.269, -37.842 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109958, "decimalLat": -27.527079 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054228, "decimalLat": -27.557961 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.558 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057558, "decimalLat": -27.551583 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106406, "decimalLat": -27.529241 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.663497, "decimalLat": -35.008189 }, "geometry": { "type": "Point", "coordinates": [ 138.663, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.728764, "decimalLat": -34.887328 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39507, "decimalLat": -28.266494 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.266 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.723328, "decimalLat": -27.429883 }, "geometry": { "type": "Point", "coordinates": [ 151.723, -27.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.010033, "decimalLat": -27.244846 }, "geometry": { "type": "Point", "coordinates": [ 152.01, -27.245 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078283, "decimalLat": -27.507328 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074484, "decimalLat": -27.540141 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.630855, "decimalLat": -27.438204 }, "geometry": { "type": "Point", "coordinates": [ 152.631, -27.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090398, "decimalLat": -27.525515 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.682678, "decimalLat": -37.758012 }, "geometry": { "type": "Point", "coordinates": [ 145.683, -37.758 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11039, "decimalLat": -27.527407 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072906, "decimalLat": -27.540425 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070174, "decimalLat": -27.510717 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715381, "decimalLat": -34.893092 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.939243, "decimalLat": -27.439623 }, "geometry": { "type": "Point", "coordinates": [ 151.939, -27.44 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.841378, "decimalLat": -26.345032 }, "geometry": { "type": "Point", "coordinates": [ 151.841, -26.345 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.906937, "decimalLat": -27.45489 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -27.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400888, "decimalLat": -28.256373 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062347, "decimalLat": -27.220407 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.22 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11066, "decimalLat": -27.529892 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991619, "decimalLat": -27.822651 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637485, "decimalLat": -35.001919 }, "geometry": { "type": "Point", "coordinates": [ 138.637, -35.002 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393874, "decimalLat": -28.275067 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.275 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06328, "decimalLat": -27.540401 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.65338, "decimalLat": -38.773339 }, "geometry": { "type": "Point", "coordinates": [ 143.653, -38.773 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.271918, "decimalLat": -37.843195 }, "geometry": { "type": "Point", "coordinates": [ 144.272, -37.843 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.528406, "decimalLat": -38.813838 }, "geometry": { "type": "Point", "coordinates": [ 143.528, -38.814 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062688, "decimalLat": -27.537591 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163803, "decimalLat": -38.671055 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07224, "decimalLat": -27.545488 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063172, "decimalLat": -27.547503 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09208, "decimalLat": -27.526886 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73462, "decimalLat": -34.826406 }, "geometry": { "type": "Point", "coordinates": [ 138.735, -34.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.700309, "decimalLat": -34.963041 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.963 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992971, "decimalLat": -27.823501 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.658876, "decimalLat": -35.017367 }, "geometry": { "type": "Point", "coordinates": [ 138.659, -35.017 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.255597, "decimalLat": -38.140556 }, "geometry": { "type": "Point", "coordinates": [ 145.256, -38.141 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.647321, "decimalLat": -35.01143 }, "geometry": { "type": "Point", "coordinates": [ 138.647, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719943, "decimalLat": -34.891939 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.52071, "decimalLat": -30.519482 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.519 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868025, "decimalLat": -19.129051 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111292, "decimalLat": -27.528883 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090613, "decimalLat": -27.526756 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163833, "decimalLat": -38.671183 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.90928, "decimalLat": -37.670442 }, "geometry": { "type": "Point", "coordinates": [ 143.909, -37.67 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.041363, "decimalLat": -37.367566 }, "geometry": { "type": "Point", "coordinates": [ 144.041, -37.368 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.599982, "decimalLat": -28.164772 }, "geometry": { "type": "Point", "coordinates": [ 152.6, -28.165 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.680976, "decimalLat": -26.376749 }, "geometry": { "type": "Point", "coordinates": [ 151.681, -26.377 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090679, "decimalLat": -27.526763 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075505, "decimalLat": -27.546591 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.457786, "decimalLat": -37.014051 }, "geometry": { "type": "Point", "coordinates": [ 145.458, -37.014 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091787, "decimalLat": -27.527131 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72151, "decimalLat": -34.89257 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063393, "decimalLat": -27.550181 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45001, "decimalLat": -28.101346 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.996681, "decimalLat": -27.565441 }, "geometry": { "type": "Point", "coordinates": [ 151.997, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.748812, "decimalLat": -38.073361 }, "geometry": { "type": "Point", "coordinates": [ 142.749, -38.073 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.962645, "decimalLat": -27.276791 }, "geometry": { "type": "Point", "coordinates": [ 152.963, -27.277 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090873, "decimalLat": -27.526826 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.986512, "decimalLat": -27.2963 }, "geometry": { "type": "Point", "coordinates": [ 152.987, -27.296 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091957, "decimalLat": -27.527117 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.346199, "decimalLat": -37.124623 }, "geometry": { "type": "Point", "coordinates": [ 143.346, -37.125 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090971, "decimalLat": -27.527546 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.886818, "decimalLat": -37.590768 }, "geometry": { "type": "Point", "coordinates": [ 143.887, -37.591 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.811421, "decimalLat": -35.959406 }, "geometry": { "type": "Point", "coordinates": [ 136.811, -35.959 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106675, "decimalLat": -27.52787 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9888, "decimalLat": -27.169858 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -27.17 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.717549, "decimalLat": -26.061882 }, "geometry": { "type": "Point", "coordinates": [ 151.718, -26.062 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106307, "decimalLat": -27.529473 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092053, "decimalLat": -27.527196 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.450822, "decimalLat": -28.077433 }, "geometry": { "type": "Point", "coordinates": [ 151.451, -28.077 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076661, "decimalLat": -27.509067 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.920072, "decimalLat": -27.380488 }, "geometry": { "type": "Point", "coordinates": [ 151.92, -27.38 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.538623, "decimalLat": -27.431784 }, "geometry": { "type": "Point", "coordinates": [ 153.539, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.97584, "decimalLat": -27.646007 }, "geometry": { "type": "Point", "coordinates": [ 151.976, -27.646 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091952, "decimalLat": -27.52696 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.891749, "decimalLat": -27.63575 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -27.636 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095078, "decimalLat": -33.076619 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.069781, "decimalLat": -33.146292 }, "geometry": { "type": "Point", "coordinates": [ 151.07, -33.146 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10397, "decimalLat": -27.529955 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.68399, "decimalLat": -36.348228 }, "geometry": { "type": "Point", "coordinates": [ 146.684, -36.348 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091593, "decimalLat": -27.527133 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388216, "decimalLat": -38.354816 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003525, "decimalLat": -27.416947 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.417 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.478645, "decimalLat": -28.275698 }, "geometry": { "type": "Point", "coordinates": [ 153.479, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092993, "decimalLat": -27.528283 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721144, "decimalLat": -34.892921 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036306, "decimalLat": -27.535713 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729725, "decimalLat": -37.925209 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103131, "decimalLat": -27.530021 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.293193, "decimalLat": -38.951738 }, "geometry": { "type": "Point", "coordinates": [ 146.293, -38.952 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046292, "decimalLat": -27.255399 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.255 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07286, "decimalLat": -27.546065 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705445, "decimalLat": -34.90315 }, "geometry": { "type": "Point", "coordinates": [ 138.705, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109403, "decimalLat": -27.527268 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.401547, "decimalLat": -27.457379 }, "geometry": { "type": "Point", "coordinates": [ 152.402, -27.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07657, "decimalLat": -27.540257 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091704, "decimalLat": -27.527266 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.404897, "decimalLat": -27.499388 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073412, "decimalLat": -27.545699 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.650552, "decimalLat": -35.019577 }, "geometry": { "type": "Point", "coordinates": [ 138.651, -35.02 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.274416, "decimalLat": -28.943305 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.943 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722267, "decimalLat": -34.891429 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072518, "decimalLat": -27.542214 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104277, "decimalLat": -27.529398 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110945, "decimalLat": -27.529981 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199158, "decimalLat": -27.491392 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.543603, "decimalLat": -34.758908 }, "geometry": { "type": "Point", "coordinates": [ 146.544, -34.759 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378052, "decimalLat": -28.255107 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069763, "decimalLat": -27.508092 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.721173, "decimalLat": -28.201188 }, "geometry": { "type": "Point", "coordinates": [ 152.721, -28.201 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.056572, "decimalLat": -27.256021 }, "geometry": { "type": "Point", "coordinates": [ 152.057, -27.256 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057317, "decimalLat": -27.551277 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400343, "decimalLat": -28.260203 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0737, "decimalLat": -27.545777 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000794, "decimalLat": -27.284453 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092022, "decimalLat": -27.525531 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.182572, "decimalLat": -27.498344 }, "geometry": { "type": "Point", "coordinates": [ 153.183, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.124008, "decimalLat": -27.288695 }, "geometry": { "type": "Point", "coordinates": [ 152.124, -27.289 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108897, "decimalLat": -27.526953 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.905405, "decimalLat": -37.576334 }, "geometry": { "type": "Point", "coordinates": [ 143.905, -37.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.381013, "decimalLat": -27.963658 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.964 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092458, "decimalLat": -27.525853 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111375, "decimalLat": -27.527958 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111294, "decimalLat": -27.528976 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.882706, "decimalLat": -37.594622 }, "geometry": { "type": "Point", "coordinates": [ 143.883, -37.595 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101127, "decimalLat": -28.257891 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.446239, "decimalLat": -33.017526 }, "geometry": { "type": "Point", "coordinates": [ 151.446, -33.018 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.871978, "decimalLat": -19.123155 }, "geometry": { "type": "Point", "coordinates": [ 146.872, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083389, "decimalLat": -27.517037 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061835, "decimalLat": -27.550283 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.344961, "decimalLat": -29.776225 }, "geometry": { "type": "Point", "coordinates": [ 151.345, -29.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056514, "decimalLat": -27.550773 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.547918, "decimalLat": -32.823738 }, "geometry": { "type": "Point", "coordinates": [ 151.548, -32.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104951, "decimalLat": -27.529508 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103606, "decimalLat": -27.529857 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.957648, "decimalLat": -38.52221 }, "geometry": { "type": "Point", "coordinates": [ 143.958, -38.522 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091125, "decimalLat": -27.526475 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091422, "decimalLat": -27.52735 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.724572, "decimalLat": -34.890965 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.686051, "decimalLat": -34.951973 }, "geometry": { "type": "Point", "coordinates": [ 138.686, -34.952 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.376998, "decimalLat": -37.679722 }, "geometry": { "type": "Point", "coordinates": [ 144.377, -37.68 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.147359, "decimalLat": -37.927919 }, "geometry": { "type": "Point", "coordinates": [ 144.147, -37.928 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10479, "decimalLat": -27.529948 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091284, "decimalLat": -27.52737 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074464, "decimalLat": -27.546059 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090774, "decimalLat": -27.52693 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.004316, "decimalLat": -27.298859 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -27.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164153, "decimalLat": -38.671245 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085139, "decimalLat": -27.510497 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.673492, "decimalLat": -34.875521 }, "geometry": { "type": "Point", "coordinates": [ 135.673, -34.876 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.960913, "decimalLat": -37.523083 }, "geometry": { "type": "Point", "coordinates": [ 145.961, -37.523 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.902457, "decimalLat": -27.647172 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.127778, "decimalLat": -38.180833 }, "geometry": { "type": "Point", "coordinates": [ 145.128, -38.181 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092862, "decimalLat": -27.525099 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.771158, "decimalLat": -26.208854 }, "geometry": { "type": "Point", "coordinates": [ 151.771, -26.209 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363542, "decimalLat": -38.318572 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037458, "decimalLat": -27.5467 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092905, "decimalLat": -27.525741 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.93553, "decimalLat": -27.32545 }, "geometry": { "type": "Point", "coordinates": [ 151.936, -27.325 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000639, "decimalLat": -27.284506 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440812, "decimalLat": -27.401322 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.829944, "decimalLat": -19.139494 }, "geometry": { "type": "Point", "coordinates": [ 146.83, -19.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.707447, "decimalLat": -34.90423 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078976, "decimalLat": -27.514144 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06995, "decimalLat": -27.542445 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056785, "decimalLat": -27.551463 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052807, "decimalLat": -27.549708 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070532, "decimalLat": -27.544684 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.999637, "decimalLat": -29.153604 }, "geometry": { "type": "Point", "coordinates": [ 151.0, -29.154 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083093, "decimalLat": -27.503782 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.825842, "decimalLat": -27.465597 }, "geometry": { "type": "Point", "coordinates": [ 151.826, -27.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058267, "decimalLat": -27.547049 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.628191, "decimalLat": -35.032564 }, "geometry": { "type": "Point", "coordinates": [ 138.628, -35.033 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056897, "decimalLat": -27.551581 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163856, "decimalLat": -38.671185 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083661, "decimalLat": -27.507068 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.855906, "decimalLat": -34.053305 }, "geometry": { "type": "Point", "coordinates": [ 150.856, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.675063, "decimalLat": -34.976658 }, "geometry": { "type": "Point", "coordinates": [ 138.675, -34.977 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103792, "decimalLat": -27.530097 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.503023, "decimalLat": -37.376055 }, "geometry": { "type": "Point", "coordinates": [ 144.503, -37.376 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.874233, "decimalLat": -37.579183 }, "geometry": { "type": "Point", "coordinates": [ 143.874, -37.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.502959, "decimalLat": -37.005839 }, "geometry": { "type": "Point", "coordinates": [ 145.503, -37.006 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.259003, "decimalLat": -28.103114 }, "geometry": { "type": "Point", "coordinates": [ 151.259, -28.103 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092818, "decimalLat": -27.528413 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.659592, "decimalLat": -34.864987 }, "geometry": { "type": "Point", "coordinates": [ 138.66, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281211, "decimalLat": -29.001609 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -29.002 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.562064, "decimalLat": -27.791476 }, "geometry": { "type": "Point", "coordinates": [ 151.562, -27.791 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078828, "decimalLat": -27.50615 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090314, "decimalLat": -27.526648 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377187, "decimalLat": -28.253604 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.086983, "decimalLat": -27.6953 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.695 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109154, "decimalLat": -27.527194 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248642, "decimalLat": -28.098194 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.706746, "decimalLat": -34.903096 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063825, "decimalLat": -32.699577 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.7 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.290141, "decimalLat": -37.481084 }, "geometry": { "type": "Point", "coordinates": [ 144.29, -37.481 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.31333, "decimalLat": -31.870605 }, "geometry": { "type": "Point", "coordinates": [ 152.313, -31.871 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.565756, "decimalLat": -37.996107 }, "geometry": { "type": "Point", "coordinates": [ 141.566, -37.996 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.212788, "decimalLat": -31.625213 }, "geometry": { "type": "Point", "coordinates": [ 152.213, -31.625 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.375972, "decimalLat": -27.918742 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.165005, "decimalLat": -27.943955 }, "geometry": { "type": "Point", "coordinates": [ 153.165, -27.944 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05753, "decimalLat": -27.551071 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08316, "decimalLat": -27.512472 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638144, "decimalLat": -34.971148 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440771, "decimalLat": -27.393229 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.623706, "decimalLat": -34.982631 }, "geometry": { "type": "Point", "coordinates": [ 138.624, -34.983 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.854915, "decimalLat": -36.154681 }, "geometry": { "type": "Point", "coordinates": [ 146.855, -36.155 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068942, "decimalLat": -27.541946 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10262, "decimalLat": -27.529458 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076757, "decimalLat": -27.540277 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.989058, "decimalLat": -27.169842 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -27.17 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057739, "decimalLat": -27.543286 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.07492, "decimalLat": -27.358553 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.911648, "decimalLat": -34.683476 }, "geometry": { "type": "Point", "coordinates": [ 138.912, -34.683 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860672, "decimalLat": -38.668633 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.669 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.730637, "decimalLat": -37.923964 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.31721, "decimalLat": -38.355224 }, "geometry": { "type": "Point", "coordinates": [ 145.317, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.97214, "decimalLat": -30.433187 }, "geometry": { "type": "Point", "coordinates": [ 152.972, -30.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.368713, "decimalLat": -38.371795 }, "geometry": { "type": "Point", "coordinates": [ 145.369, -38.372 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059794, "decimalLat": -27.550773 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657697, "decimalLat": -34.865025 }, "geometry": { "type": "Point", "coordinates": [ 138.658, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091273, "decimalLat": -27.527241 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091652, "decimalLat": -27.527211 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057999, "decimalLat": -27.550753 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.022539, "decimalLat": -38.350475 }, "geometry": { "type": "Point", "coordinates": [ 143.023, -38.35 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290997, "decimalLat": -37.874526 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073621, "decimalLat": -27.54546 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057951, "decimalLat": -27.55103 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.678222, "decimalLat": -27.987112 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -27.987 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111465, "decimalLat": -27.525034 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055889, "decimalLat": -27.552019 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.730195, "decimalLat": -37.924192 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.067334, "decimalLat": -27.508216 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103484, "decimalLat": -27.529725 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 145.554249, "decimalLat": -35.813178 }, "geometry": { "type": "Point", "coordinates": [ 145.554, -35.813 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092735, "decimalLat": -27.52546 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.893443, "decimalLat": -27.31149 }, "geometry": { "type": "Point", "coordinates": [ 151.893, -27.311 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.59872, "decimalLat": -38.350463 }, "geometry": { "type": "Point", "coordinates": [ 141.599, -38.35 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090874, "decimalLat": -27.525851 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057613, "decimalLat": -27.551767 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868242, "decimalLat": -19.12883 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.86348, "decimalLat": -28.211903 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -28.212 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999407, "decimalLat": -27.283994 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.457662, "decimalLat": -28.15224 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.152 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072919, "decimalLat": -27.54599 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9022, "decimalLat": -31.441935 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.042827, "decimalLat": -27.559017 }, "geometry": { "type": "Point", "coordinates": [ 153.043, -27.559 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.508788, "decimalLat": -38.768978 }, "geometry": { "type": "Point", "coordinates": [ 143.509, -38.769 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221398, "decimalLat": -27.53504 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377568, "decimalLat": -28.254108 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.923364, "decimalLat": -38.05654 }, "geometry": { "type": "Point", "coordinates": [ 141.923, -38.057 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705044, "decimalLat": -34.9367 }, "geometry": { "type": "Point", "coordinates": [ 138.705, -34.937 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074098, "decimalLat": -27.545727 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107397, "decimalLat": -27.527119 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070169, "decimalLat": -27.545547 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.089885, "decimalLat": -27.637043 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.637 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.549317, "decimalLat": -27.006958 }, "geometry": { "type": "Point", "coordinates": [ 151.549, -27.007 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730178, "decimalLat": -34.886115 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377, "decimalLat": -28.254245 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112504, "decimalLat": -27.519837 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.52 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107789, "decimalLat": -27.526975 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.58459, "decimalLat": -27.641437 }, "geometry": { "type": "Point", "coordinates": [ 151.585, -27.641 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.293985, "decimalLat": -38.382745 }, "geometry": { "type": "Point", "coordinates": [ 145.294, -38.383 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090926, "decimalLat": -27.52583 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729675, "decimalLat": -37.920987 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.5298, "decimalLat": -27.428155 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -27.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072692, "decimalLat": -27.52372 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092117, "decimalLat": -27.527247 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.356852, "decimalLat": -27.93734 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.050914, "decimalLat": -27.527925 }, "geometry": { "type": "Point", "coordinates": [ 153.051, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.556533, "decimalLat": -27.612903 }, "geometry": { "type": "Point", "coordinates": [ 151.557, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.590697, "decimalLat": -27.166762 }, "geometry": { "type": "Point", "coordinates": [ 152.591, -27.167 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.618042, "decimalLat": -27.892826 }, "geometry": { "type": "Point", "coordinates": [ 152.618, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10339, "decimalLat": -27.529939 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074, "decimalLat": -27.545933 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.512682, "decimalLat": -38.832721 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.833 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081086, "decimalLat": -27.51432 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189646, "decimalLat": -27.701124 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.36377, "decimalLat": -38.318329 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103352, "decimalLat": -27.529639 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083688, "decimalLat": -27.505751 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090724, "decimalLat": -27.527567 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9304, "decimalLat": -27.374178 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -27.374 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.809454, "decimalLat": -26.363365 }, "geometry": { "type": "Point", "coordinates": [ 151.809, -26.363 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.855181, "decimalLat": -38.670472 }, "geometry": { "type": "Point", "coordinates": [ 143.855, -38.67 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91217, "decimalLat": -31.45545 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.00112, "decimalLat": -27.284289 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.555094, "decimalLat": -28.010439 }, "geometry": { "type": "Point", "coordinates": [ 152.555, -28.01 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.278367, "decimalLat": -38.096046 }, "geometry": { "type": "Point", "coordinates": [ 144.278, -38.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.949647, "decimalLat": -31.171355 }, "geometry": { "type": "Point", "coordinates": [ 152.95, -31.171 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.925555, "decimalLat": -37.652741 }, "geometry": { "type": "Point", "coordinates": [ 143.926, -37.653 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090881, "decimalLat": -27.527477 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0909, "decimalLat": -27.526459 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054203, "decimalLat": -27.550119 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.674875, "decimalLat": -35.085686 }, "geometry": { "type": "Point", "coordinates": [ 138.675, -35.086 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400504, "decimalLat": -28.258359 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394272, "decimalLat": -28.959176 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Australian Capital Territory", "decimalLon": 148.91, "decimalLat": -35.46 }, "geometry": { "type": "Point", "coordinates": [ 148.91, -35.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082438, "decimalLat": -27.514927 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375199, "decimalLat": -28.252473 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059498, "decimalLat": -27.548698 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732499, "decimalLat": -34.872437 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.872 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.157745, "decimalLat": -27.514559 }, "geometry": { "type": "Point", "coordinates": [ 152.158, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103491, "decimalLat": -27.530327 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.050063, "decimalLat": -27.549208 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090934, "decimalLat": -27.526591 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104878, "decimalLat": -27.52969 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164197, "decimalLat": -38.671277 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048707, "decimalLat": -27.525078 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073117, "decimalLat": -27.546806 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.83438, "decimalLat": -25.47562 }, "geometry": { "type": "Point", "coordinates": [ 152.834, -25.476 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27062, "decimalLat": -38.130645 }, "geometry": { "type": "Point", "coordinates": [ 145.271, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.653748, "decimalLat": -34.869113 }, "geometry": { "type": "Point", "coordinates": [ 138.654, -34.869 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6446, "decimalLat": -34.975958 }, "geometry": { "type": "Point", "coordinates": [ 138.645, -34.976 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057853, "decimalLat": -27.551131 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.996522, "decimalLat": -38.847078 }, "geometry": { "type": "Point", "coordinates": [ 145.997, -38.847 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.995351, "decimalLat": -37.694566 }, "geometry": { "type": "Point", "coordinates": [ 143.995, -37.695 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000997, "decimalLat": -27.28444 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090276, "decimalLat": -27.525527 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.792488, "decimalLat": -26.135977 }, "geometry": { "type": "Point", "coordinates": [ 151.792, -26.136 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637961, "decimalLat": -35.006095 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059542, "decimalLat": -27.548913 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655816, "decimalLat": -34.866312 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -34.866 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093935, "decimalLat": -27.525958 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.640458, "decimalLat": -35.006286 }, "geometry": { "type": "Point", "coordinates": [ 138.64, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.242112, "decimalLat": -38.04917 }, "geometry": { "type": "Point", "coordinates": [ 141.242, -38.049 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.642741, "decimalLat": -35.004219 }, "geometry": { "type": "Point", "coordinates": [ 138.643, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058975, "decimalLat": -27.548721 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.894833, "decimalLat": -38.47436 }, "geometry": { "type": "Point", "coordinates": [ 144.895, -38.474 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.686433, "decimalLat": -34.953482 }, "geometry": { "type": "Point", "coordinates": [ 138.686, -34.953 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.291031, "decimalLat": -37.874468 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.874 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.378159, "decimalLat": -27.918358 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.103306, "decimalLat": -37.572849 }, "geometry": { "type": "Point", "coordinates": [ 144.103, -37.573 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.993802, "decimalLat": -30.560105 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -30.56 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.689227, "decimalLat": -26.171536 }, "geometry": { "type": "Point", "coordinates": [ 151.689, -26.172 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093127, "decimalLat": -27.527895 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.045193, "decimalLat": -27.550063 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164017, "decimalLat": -38.671622 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09198, "decimalLat": -27.525335 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.563228, "decimalLat": -27.795472 }, "geometry": { "type": "Point", "coordinates": [ 151.563, -27.795 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091605, "decimalLat": -27.527101 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.711691, "decimalLat": -34.905462 }, "geometry": { "type": "Point", "coordinates": [ 138.712, -34.905 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080483, "decimalLat": -27.508662 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.670593, "decimalLat": -35.012793 }, "geometry": { "type": "Point", "coordinates": [ 138.671, -35.013 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053162, "decimalLat": -27.544901 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.662523, "decimalLat": -35.007705 }, "geometry": { "type": "Point", "coordinates": [ 138.663, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073291, "decimalLat": -27.546719 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719918, "decimalLat": -34.891964 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.004297, "decimalLat": -27.29872 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -27.299 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.539615, "decimalLat": -35.323721 }, "geometry": { "type": "Point", "coordinates": [ 138.54, -35.324 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.449002, "decimalLat": -27.421912 }, "geometry": { "type": "Point", "coordinates": [ 152.449, -27.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.998012, "decimalLat": -27.409733 }, "geometry": { "type": "Point", "coordinates": [ 151.998, -27.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081956, "decimalLat": -27.508292 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092468, "decimalLat": -27.527498 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086069, "decimalLat": -27.508882 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.873135, "decimalLat": -37.596026 }, "geometry": { "type": "Point", "coordinates": [ 143.873, -37.596 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.865939, "decimalLat": -28.211454 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.211 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.789428, "decimalLat": -27.18722 }, "geometry": { "type": "Point", "coordinates": [ 151.789, -27.187 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06985, "decimalLat": -27.523886 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.206772, "decimalLat": -35.622647 }, "geometry": { "type": "Point", "coordinates": [ 137.207, -35.623 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.083759, "decimalLat": -32.729224 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993193, "decimalLat": -27.822883 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.690111, "decimalLat": -34.954322 }, "geometry": { "type": "Point", "coordinates": [ 138.69, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10908, "decimalLat": -27.526803 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091798, "decimalLat": -27.527137 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083373, "decimalLat": -27.516665 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.154898, "decimalLat": -27.61488 }, "geometry": { "type": "Point", "coordinates": [ 153.155, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.614962, "decimalLat": -34.902268 }, "geometry": { "type": "Point", "coordinates": [ 138.615, -34.902 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.691557, "decimalLat": -26.17693 }, "geometry": { "type": "Point", "coordinates": [ 151.692, -26.177 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.048508, "decimalLat": -38.26572 }, "geometry": { "type": "Point", "coordinates": [ 145.049, -38.266 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105619, "decimalLat": -27.531507 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.094654, "decimalLat": -27.510381 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.450409, "decimalLat": -38.292622 }, "geometry": { "type": "Point", "coordinates": [ 141.45, -38.293 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.377363, "decimalLat": -27.081997 }, "geometry": { "type": "Point", "coordinates": [ 152.377, -27.082 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.424872, "decimalLat": -28.296406 }, "geometry": { "type": "Point", "coordinates": [ 152.425, -28.296 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749824, "decimalLat": -26.155079 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.821027, "decimalLat": -28.750644 }, "geometry": { "type": "Point", "coordinates": [ 151.821, -28.751 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.380004, "decimalLat": -27.918634 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055919, "decimalLat": -27.550688 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061616, "decimalLat": -27.534499 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09207, "decimalLat": -27.524855 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108941, "decimalLat": -27.527187 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090956, "decimalLat": -27.527162 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091919, "decimalLat": -27.527137 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092272, "decimalLat": -27.527252 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.830145, "decimalLat": -28.094776 }, "geometry": { "type": "Point", "coordinates": [ 152.83, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082794, "decimalLat": -27.51233 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112286, "decimalLat": -27.528868 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070312, "decimalLat": -27.509519 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086717, "decimalLat": -27.827703 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.828 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.278672, "decimalLat": -38.096161 }, "geometry": { "type": "Point", "coordinates": [ 144.279, -38.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 139.177872, "decimalLat": -34.726783 }, "geometry": { "type": "Point", "coordinates": [ 139.178, -34.727 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093193, "decimalLat": -27.524189 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.536753, "decimalLat": -37.152403 }, "geometry": { "type": "Point", "coordinates": [ 145.537, -37.152 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09292, "decimalLat": -27.526979 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001542, "decimalLat": -27.165147 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -27.165 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.779812, "decimalLat": -27.791357 }, "geometry": { "type": "Point", "coordinates": [ 152.78, -27.791 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.968766, "decimalLat": -27.378041 }, "geometry": { "type": "Point", "coordinates": [ 152.969, -27.378 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069225, "decimalLat": -27.224019 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.224 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090913, "decimalLat": -27.527101 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003144, "decimalLat": -27.41265 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.902773, "decimalLat": -37.525637 }, "geometry": { "type": "Point", "coordinates": [ 143.903, -37.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09056, "decimalLat": -27.526908 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.368212, "decimalLat": -36.34193 }, "geometry": { "type": "Point", "coordinates": [ 145.368, -36.342 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.99409, "decimalLat": -27.823668 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163765, "decimalLat": -38.671092 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.653042, "decimalLat": -37.824654 }, "geometry": { "type": "Point", "coordinates": [ 145.653, -37.825 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091743, "decimalLat": -27.526836 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16385, "decimalLat": -38.67125 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.934997, "decimalLat": -33.359755 }, "geometry": { "type": "Point", "coordinates": [ 150.935, -33.36 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.62888, "decimalLat": -28.63957 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.870666, "decimalLat": -37.62519 }, "geometry": { "type": "Point", "coordinates": [ 143.871, -37.625 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.736167, "decimalLat": -34.830996 }, "geometry": { "type": "Point", "coordinates": [ 138.736, -34.831 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003281, "decimalLat": -27.41362 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051798, "decimalLat": -27.552594 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072474, "decimalLat": -27.54596 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074666, "decimalLat": -27.358581 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05701, "decimalLat": -27.54671 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053146, "decimalLat": -27.542919 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.852025, "decimalLat": -28.092531 }, "geometry": { "type": "Point", "coordinates": [ 152.852, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.520538, "decimalLat": -38.834399 }, "geometry": { "type": "Point", "coordinates": [ 143.521, -38.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.68259, "decimalLat": -38.151186 }, "geometry": { "type": "Point", "coordinates": [ 142.683, -38.151 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.875545, "decimalLat": -37.595037 }, "geometry": { "type": "Point", "coordinates": [ 143.876, -37.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092059, "decimalLat": -27.527324 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.560197, "decimalLat": -35.26028 }, "geometry": { "type": "Point", "coordinates": [ 138.56, -35.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.696105, "decimalLat": -34.897737 }, "geometry": { "type": "Point", "coordinates": [ 138.696, -34.898 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68791, "decimalLat": -21.687696 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.688 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730453, "decimalLat": -34.872753 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.873 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06019, "decimalLat": -27.549795 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.282138, "decimalLat": -37.843024 }, "geometry": { "type": "Point", "coordinates": [ 144.282, -37.843 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.740556, "decimalLat": -34.831389 }, "geometry": { "type": "Point", "coordinates": [ 138.741, -34.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075248, "decimalLat": -27.662848 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.663 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.285649, "decimalLat": -26.896054 }, "geometry": { "type": "Point", "coordinates": [ 152.286, -26.896 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233436, "decimalLat": -27.533034 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.325072, "decimalLat": -38.65342 }, "geometry": { "type": "Point", "coordinates": [ 146.325, -38.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860747, "decimalLat": -38.667989 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.867935, "decimalLat": -19.128515 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.618438, "decimalLat": -35.020672 }, "geometry": { "type": "Point", "coordinates": [ 138.618, -35.021 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.881547, "decimalLat": -27.37887 }, "geometry": { "type": "Point", "coordinates": [ 151.882, -27.379 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.687731, "decimalLat": -34.875853 }, "geometry": { "type": "Point", "coordinates": [ 138.688, -34.876 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073677, "decimalLat": -27.545818 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057273, "decimalLat": -27.551508 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.807027, "decimalLat": -27.529765 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732509, "decimalLat": -34.891496 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091322, "decimalLat": -27.527378 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070206, "decimalLat": -27.214678 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.215 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058269, "decimalLat": -27.550789 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.741856, "decimalLat": -37.554436 }, "geometry": { "type": "Point", "coordinates": [ 149.742, -37.554 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.445868, "decimalLat": -26.208548 }, "geometry": { "type": "Point", "coordinates": [ 152.446, -26.209 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108151, "decimalLat": -27.527334 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249514, "decimalLat": -27.496771 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69307, "decimalLat": -34.959872 }, "geometry": { "type": "Point", "coordinates": [ 138.693, -34.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.724648, "decimalLat": -37.926555 }, "geometry": { "type": "Point", "coordinates": [ 147.725, -37.927 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.605011, "decimalLat": -28.164282 }, "geometry": { "type": "Point", "coordinates": [ 152.605, -28.164 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090782, "decimalLat": -27.526535 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053341, "decimalLat": -27.834599 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.835 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093521, "decimalLat": -27.525313 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375466, "decimalLat": -28.252197 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.553243, "decimalLat": -38.823262 }, "geometry": { "type": "Point", "coordinates": [ 143.553, -38.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733112, "decimalLat": -34.887251 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.069071, "decimalLat": -33.144506 }, "geometry": { "type": "Point", "coordinates": [ 151.069, -33.145 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731711, "decimalLat": -34.891014 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.0867, "decimalLat": -27.697067 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.697 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.854188, "decimalLat": -37.772869 }, "geometry": { "type": "Point", "coordinates": [ 143.854, -37.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.308866, "decimalLat": -38.384807 }, "geometry": { "type": "Point", "coordinates": [ 145.309, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.234829, "decimalLat": -33.117934 }, "geometry": { "type": "Point", "coordinates": [ 151.235, -33.118 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403229, "decimalLat": -27.493876 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09044, "decimalLat": -27.526864 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.675404, "decimalLat": -35.921141 }, "geometry": { "type": "Point", "coordinates": [ 145.675, -35.921 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103851, "decimalLat": -27.528527 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.826933, "decimalLat": -34.692015 }, "geometry": { "type": "Point", "coordinates": [ 138.827, -34.692 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1107, "decimalLat": -27.527181 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105272, "decimalLat": -27.530279 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.169549, "decimalLat": -27.55068 }, "geometry": { "type": "Point", "coordinates": [ 153.17, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721969, "decimalLat": -34.889774 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.846541, "decimalLat": -26.224931 }, "geometry": { "type": "Point", "coordinates": [ 151.847, -26.225 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992236, "decimalLat": -27.824105 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.033743, "decimalLat": -27.5282 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.724808, "decimalLat": -37.926207 }, "geometry": { "type": "Point", "coordinates": [ 147.725, -37.926 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.648128, "decimalLat": -34.964258 }, "geometry": { "type": "Point", "coordinates": [ 138.648, -34.964 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.517692, "decimalLat": -30.520348 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.548556, "decimalLat": -27.018181 }, "geometry": { "type": "Point", "coordinates": [ 151.549, -27.018 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.996942, "decimalLat": -37.688488 }, "geometry": { "type": "Point", "coordinates": [ 143.997, -37.688 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.10987, "decimalLat": -38.399416 }, "geometry": { "type": "Point", "coordinates": [ 145.11, -38.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.049867, "decimalLat": -27.544845 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.203988, "decimalLat": -37.853542 }, "geometry": { "type": "Point", "coordinates": [ 144.204, -37.854 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090284, "decimalLat": -27.526344 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703902, "decimalLat": -34.902977 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113596, "decimalLat": -27.528429 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.695653, "decimalLat": -34.95484 }, "geometry": { "type": "Point", "coordinates": [ 138.696, -34.955 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400076, "decimalLat": -28.26001 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.654799, "decimalLat": -26.401998 }, "geometry": { "type": "Point", "coordinates": [ 152.655, -26.402 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.110367, "decimalLat": -27.56627 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.580707, "decimalLat": -35.145383 }, "geometry": { "type": "Point", "coordinates": [ 138.581, -35.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073113, "decimalLat": -27.545897 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083775, "decimalLat": -27.516288 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076632, "decimalLat": -27.550987 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.608486, "decimalLat": -27.371459 }, "geometry": { "type": "Point", "coordinates": [ 151.608, -27.371 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.545167, "decimalLat": -35.121919 }, "geometry": { "type": "Point", "coordinates": [ 138.545, -35.122 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.889481, "decimalLat": -27.599087 }, "geometry": { "type": "Point", "coordinates": [ 151.889, -27.599 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.81984, "decimalLat": -26.171233 }, "geometry": { "type": "Point", "coordinates": [ 151.82, -26.171 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.971824, "decimalLat": -30.433096 }, "geometry": { "type": "Point", "coordinates": [ 152.972, -30.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67017, "decimalLat": -34.928897 }, "geometry": { "type": "Point", "coordinates": [ 138.67, -34.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.608286, "decimalLat": -27.41936 }, "geometry": { "type": "Point", "coordinates": [ 152.608, -27.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.678058, "decimalLat": -27.99112 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -27.991 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.916465, "decimalLat": -28.131476 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.03695, "decimalLat": -27.536147 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.297981, "decimalLat": -38.383445 }, "geometry": { "type": "Point", "coordinates": [ 145.298, -38.383 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164629, "decimalLat": -38.671092 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.148275, "decimalLat": -27.790605 }, "geometry": { "type": "Point", "coordinates": [ 153.148, -27.791 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.99782, "decimalLat": -27.434271 }, "geometry": { "type": "Point", "coordinates": [ 152.998, -27.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.526978, "decimalLat": -38.829687 }, "geometry": { "type": "Point", "coordinates": [ 143.527, -38.83 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363752, "decimalLat": -38.31827 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.618794, "decimalLat": -38.78468 }, "geometry": { "type": "Point", "coordinates": [ 143.619, -38.785 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.289466, "decimalLat": -38.3827 }, "geometry": { "type": "Point", "coordinates": [ 145.289, -38.383 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.614228, "decimalLat": -34.907464 }, "geometry": { "type": "Point", "coordinates": [ 138.614, -34.907 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107707, "decimalLat": -27.526991 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075454, "decimalLat": -27.506826 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.280748, "decimalLat": -31.06617 }, "geometry": { "type": "Point", "coordinates": [ 150.281, -31.066 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.572507, "decimalLat": -35.033596 }, "geometry": { "type": "Point", "coordinates": [ 138.573, -35.034 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.664679, "decimalLat": -35.063007 }, "geometry": { "type": "Point", "coordinates": [ 138.665, -35.063 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091247, "decimalLat": -27.527261 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090036, "decimalLat": -27.219496 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.219 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111939, "decimalLat": -27.496728 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105591, "decimalLat": -27.530026 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.937408, "decimalLat": -27.575133 }, "geometry": { "type": "Point", "coordinates": [ 152.937, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072212, "decimalLat": -27.543688 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.567291, "decimalLat": -34.759009 }, "geometry": { "type": "Point", "coordinates": [ 146.567, -34.759 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164256, "decimalLat": -38.671288 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39962, "decimalLat": -28.26095 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.811972, "decimalLat": -26.167219 }, "geometry": { "type": "Point", "coordinates": [ 151.812, -26.167 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003022, "decimalLat": -27.413481 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40241, "decimalLat": -27.495821 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1116, "decimalLat": -27.527836 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638016, "decimalLat": -34.971358 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082245, "decimalLat": -27.512653 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.266081, "decimalLat": -28.008883 }, "geometry": { "type": "Point", "coordinates": [ 153.266, -28.009 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.614357, "decimalLat": -34.902815 }, "geometry": { "type": "Point", "coordinates": [ 138.614, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05771, "decimalLat": -27.551426 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.652992, "decimalLat": -35.005851 }, "geometry": { "type": "Point", "coordinates": [ 138.653, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70495, "decimalLat": -34.903074 }, "geometry": { "type": "Point", "coordinates": [ 138.705, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093008, "decimalLat": -27.524676 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.583735, "decimalLat": -38.82926 }, "geometry": { "type": "Point", "coordinates": [ 143.584, -38.829 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729366, "decimalLat": -34.887079 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091718, "decimalLat": -27.52692 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085359, "decimalLat": -27.508572 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.371557, "decimalLat": -27.904248 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091524, "decimalLat": -27.527121 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105083, "decimalLat": -27.529313 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.99306, "decimalLat": -27.823417 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112422, "decimalLat": -27.528131 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.879825, "decimalLat": -26.232667 }, "geometry": { "type": "Point", "coordinates": [ 151.88, -26.233 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09138, "decimalLat": -27.526724 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.655937, "decimalLat": -27.643694 }, "geometry": { "type": "Point", "coordinates": [ 151.656, -27.644 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.97322, "decimalLat": -26.163805 }, "geometry": { "type": "Point", "coordinates": [ 151.973, -26.164 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055196, "decimalLat": -27.538115 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.151053, "decimalLat": -38.841265 }, "geometry": { "type": "Point", "coordinates": [ 146.151, -38.841 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376892, "decimalLat": -28.254216 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.85783, "decimalLat": -38.670316 }, "geometry": { "type": "Point", "coordinates": [ 143.858, -38.67 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073324, "decimalLat": -27.547193 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376911, "decimalLat": -28.254121 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053683, "decimalLat": -27.543535 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718265, "decimalLat": -34.8917 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102629, "decimalLat": -27.529438 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6265, "decimalLat": -34.89265 }, "geometry": { "type": "Point", "coordinates": [ 138.627, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.163927, "decimalLat": -27.621018 }, "geometry": { "type": "Point", "coordinates": [ 153.164, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.890013, "decimalLat": -27.599081 }, "geometry": { "type": "Point", "coordinates": [ 151.89, -27.599 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.681012, "decimalLat": -28.003948 }, "geometry": { "type": "Point", "coordinates": [ 152.681, -28.004 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105628, "decimalLat": -27.506395 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640394, "decimalLat": -33.347898 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -33.348 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.593386, "decimalLat": -36.284132 }, "geometry": { "type": "Point", "coordinates": [ 146.593, -36.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003885, "decimalLat": -27.414008 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08652, "decimalLat": -27.69687 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.697 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.846085, "decimalLat": -27.33905 }, "geometry": { "type": "Point", "coordinates": [ 152.846, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314349, "decimalLat": -38.375009 }, "geometry": { "type": "Point", "coordinates": [ 145.314, -38.375 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.865722, "decimalLat": -37.807655 }, "geometry": { "type": "Point", "coordinates": [ 140.866, -37.808 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.050125, "decimalLat": -27.269838 }, "geometry": { "type": "Point", "coordinates": [ 152.05, -27.27 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073172, "decimalLat": -27.546761 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081604, "decimalLat": -27.507936 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.554062, "decimalLat": -36.983833 }, "geometry": { "type": "Point", "coordinates": [ 145.554, -36.984 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091221, "decimalLat": -27.52728 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.511708, "decimalLat": -28.062761 }, "geometry": { "type": "Point", "coordinates": [ 152.512, -28.063 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09237, "decimalLat": -27.527145 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.115556, "decimalLat": -27.529567 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.937342, "decimalLat": -26.176018 }, "geometry": { "type": "Point", "coordinates": [ 151.937, -26.176 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221346, "decimalLat": -27.535185 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072694, "decimalLat": -27.544997 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722649, "decimalLat": -34.889719 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.02483, "decimalLat": -37.685591 }, "geometry": { "type": "Point", "coordinates": [ 144.025, -37.686 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.710312, "decimalLat": -27.649033 }, "geometry": { "type": "Point", "coordinates": [ 151.71, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.14371, "decimalLat": -27.775238 }, "geometry": { "type": "Point", "coordinates": [ 153.144, -27.775 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057406, "decimalLat": -27.546873 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.141742, "decimalLat": -38.703894 }, "geometry": { "type": "Point", "coordinates": [ 146.142, -38.704 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.429914, "decimalLat": -27.492428 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.621917, "decimalLat": -27.451705 }, "geometry": { "type": "Point", "coordinates": [ 152.622, -27.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.335492, "decimalLat": -29.780644 }, "geometry": { "type": "Point", "coordinates": [ 151.335, -29.781 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.709371, "decimalLat": -31.78274 }, "geometry": { "type": "Point", "coordinates": [ 152.709, -31.783 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.064577, "decimalLat": -27.262203 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -27.262 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061131, "decimalLat": -27.549539 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103851, "decimalLat": -27.52873 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070144, "decimalLat": -27.545523 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715439, "decimalLat": -35.015072 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -35.015 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105124, "decimalLat": -27.530422 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092782, "decimalLat": -27.528551 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.652235, "decimalLat": -35.009231 }, "geometry": { "type": "Point", "coordinates": [ 138.652, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993094, "decimalLat": -27.823503 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.448031, "decimalLat": -27.395463 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103265, "decimalLat": -27.52784 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068386, "decimalLat": -27.54238 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.28225, "decimalLat": -37.841957 }, "geometry": { "type": "Point", "coordinates": [ 144.282, -37.842 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111554, "decimalLat": -27.527383 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060748, "decimalLat": -27.550147 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.684103, "decimalLat": -27.996872 }, "geometry": { "type": "Point", "coordinates": [ 152.684, -27.997 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.560209, "decimalLat": -35.260275 }, "geometry": { "type": "Point", "coordinates": [ 138.56, -35.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.547945, "decimalLat": -28.600028 }, "geometry": { "type": "Point", "coordinates": [ 153.548, -28.6 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7056, "decimalLat": -34.90328 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.97113, "decimalLat": -26.164481 }, "geometry": { "type": "Point", "coordinates": [ 151.971, -26.164 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057419, "decimalLat": -27.553058 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10763, "decimalLat": -27.527332 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377878, "decimalLat": -28.25471 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.691201, "decimalLat": -26.176967 }, "geometry": { "type": "Point", "coordinates": [ 151.691, -26.177 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104681, "decimalLat": -27.529973 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037823, "decimalLat": -27.533409 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.025779, "decimalLat": -38.050363 }, "geometry": { "type": "Point", "coordinates": [ 144.026, -38.05 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.728139, "decimalLat": -33.427932 }, "geometry": { "type": "Point", "coordinates": [ 150.728, -33.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058787, "decimalLat": -27.54729 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72204, "decimalLat": -34.890119 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074783, "decimalLat": -27.35882 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439412, "decimalLat": -27.400286 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060059, "decimalLat": -27.55033 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.065156, "decimalLat": -27.550663 }, "geometry": { "type": "Point", "coordinates": [ 153.065, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092145, "decimalLat": -27.526975 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105064, "decimalLat": -27.529821 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.262833, "decimalLat": -38.484067 }, "geometry": { "type": "Point", "coordinates": [ 145.263, -38.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629428, "decimalLat": -28.637374 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.671995, "decimalLat": -34.951139 }, "geometry": { "type": "Point", "coordinates": [ 138.672, -34.951 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052213, "decimalLat": -27.548757 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.853728, "decimalLat": -34.08208 }, "geometry": { "type": "Point", "coordinates": [ 150.854, -34.082 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109028, "decimalLat": -27.526657 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.171428, "decimalLat": -27.547419 }, "geometry": { "type": "Point", "coordinates": [ 153.171, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.677567, "decimalLat": -27.986008 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -27.986 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108232, "decimalLat": -27.527234 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.095854, "decimalLat": -38.00088 }, "geometry": { "type": "Point", "coordinates": [ 141.096, -38.001 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70627, "decimalLat": -34.903235 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052392, "decimalLat": -27.553517 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163697, "decimalLat": -38.67105 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.356803, "decimalLat": -27.938923 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08082, "decimalLat": -27.507687 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.581501, "decimalLat": -38.359493 }, "geometry": { "type": "Point", "coordinates": [ 141.582, -38.359 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.36328, "decimalLat": -38.318833 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055913, "decimalLat": -27.550805 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239633, "decimalLat": -27.481946 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.482 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.811643, "decimalLat": -31.987893 }, "geometry": { "type": "Point", "coordinates": [ 151.812, -31.988 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999294, "decimalLat": -27.283863 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.679612, "decimalLat": -34.952396 }, "geometry": { "type": "Point", "coordinates": [ 138.68, -34.952 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.960262, "decimalLat": -27.485288 }, "geometry": { "type": "Point", "coordinates": [ 152.96, -27.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103187, "decimalLat": -27.529075 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.26559, "decimalLat": -37.39417 }, "geometry": { "type": "Point", "coordinates": [ 144.266, -37.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.017651, "decimalLat": -38.354595 }, "geometry": { "type": "Point", "coordinates": [ 146.018, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092658, "decimalLat": -27.525653 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.180773, "decimalLat": -27.489139 }, "geometry": { "type": "Point", "coordinates": [ 153.181, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059081, "decimalLat": -27.549701 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092368, "decimalLat": -27.527486 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.089412, "decimalLat": -27.516437 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108531, "decimalLat": -27.527343 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091372, "decimalLat": -27.526984 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.223443, "decimalLat": -38.040326 }, "geometry": { "type": "Point", "coordinates": [ 144.223, -38.04 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70605, "decimalLat": -35.00474 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.956971, "decimalLat": -27.484672 }, "geometry": { "type": "Point", "coordinates": [ 152.957, -27.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001114, "decimalLat": -27.165492 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.165 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.588028, "decimalLat": -27.7993 }, "geometry": { "type": "Point", "coordinates": [ 151.588, -27.799 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090308, "decimalLat": -27.526673 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.889362, "decimalLat": -37.584133 }, "geometry": { "type": "Point", "coordinates": [ 143.889, -37.584 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.369962, "decimalLat": -27.900518 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -27.901 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113472, "decimalLat": -27.528415 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.821349, "decimalLat": -26.381908 }, "geometry": { "type": "Point", "coordinates": [ 151.821, -26.382 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1618, "decimalLat": -27.50038 }, "geometry": { "type": "Point", "coordinates": [ 152.162, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437708, "decimalLat": -27.402699 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.403 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.098544, "decimalLat": -27.566708 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.070734, "decimalLat": -26.034828 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -26.035 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.529053, "decimalLat": -27.720137 }, "geometry": { "type": "Point", "coordinates": [ 151.529, -27.72 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.993279, "decimalLat": -30.55957 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -30.56 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092944, "decimalLat": -27.524501 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091486, "decimalLat": -27.527365 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.405662, "decimalLat": -27.493519 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189863, "decimalLat": -27.736883 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.737 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.591213, "decimalLat": -27.948416 }, "geometry": { "type": "Point", "coordinates": [ 152.591, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.000099, "decimalLat": -28.525666 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -28.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.757613, "decimalLat": -37.560438 }, "geometry": { "type": "Point", "coordinates": [ 149.758, -37.56 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09062, "decimalLat": -27.52635 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.00395, "decimalLat": -27.414649 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058745, "decimalLat": -27.544772 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.429795, "decimalLat": -27.492162 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.691557, "decimalLat": -26.17693 }, "geometry": { "type": "Point", "coordinates": [ 151.692, -26.177 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103397, "decimalLat": -27.530273 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091677, "decimalLat": -27.526757 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07508, "decimalLat": -27.647707 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.648 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.647177, "decimalLat": -35.010205 }, "geometry": { "type": "Point", "coordinates": [ 138.647, -35.01 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057848, "decimalLat": -27.551863 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.644505, "decimalLat": -37.728478 }, "geometry": { "type": "Point", "coordinates": [ 140.645, -37.728 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.855721, "decimalLat": -26.558542 }, "geometry": { "type": "Point", "coordinates": [ 151.856, -26.559 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090148, "decimalLat": -27.525642 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.89405, "decimalLat": -26.241664 }, "geometry": { "type": "Point", "coordinates": [ 151.894, -26.242 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091681, "decimalLat": -27.527128 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048936, "decimalLat": -27.5501 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.67824, "decimalLat": -27.987692 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -27.988 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090658, "decimalLat": -27.526525 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.888191, "decimalLat": -37.581877 }, "geometry": { "type": "Point", "coordinates": [ 143.888, -37.582 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.275717, "decimalLat": -37.839637 }, "geometry": { "type": "Point", "coordinates": [ 144.276, -37.84 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09203, "decimalLat": -27.527185 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719876, "decimalLat": -35.006028 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.677657, "decimalLat": -27.986047 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -27.986 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.094667, "decimalLat": -37.623812 }, "geometry": { "type": "Point", "coordinates": [ 144.095, -37.624 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.044018, "decimalLat": -27.257541 }, "geometry": { "type": "Point", "coordinates": [ 152.044, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092312, "decimalLat": -27.524336 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108853, "decimalLat": -27.526733 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112428, "decimalLat": -27.528751 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.740454, "decimalLat": -34.831495 }, "geometry": { "type": "Point", "coordinates": [ 138.74, -34.831 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822678, "decimalLat": -34.101714 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111041, "decimalLat": -27.528193 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.832016, "decimalLat": -26.02242 }, "geometry": { "type": "Point", "coordinates": [ 151.832, -26.022 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.614917, "decimalLat": -34.905533 }, "geometry": { "type": "Point", "coordinates": [ 138.615, -34.906 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092326, "decimalLat": -27.527889 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164231, "decimalLat": -38.671345 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271056, "decimalLat": -27.540108 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057658, "decimalLat": -27.552941 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0551, "decimalLat": -27.538579 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109727, "decimalLat": -27.528984 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073501, "decimalLat": -27.547118 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092415, "decimalLat": -27.527207 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729884, "decimalLat": -34.890702 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070208, "decimalLat": -27.510611 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001788, "decimalLat": -27.314587 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -27.315 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.527803, "decimalLat": -27.717778 }, "geometry": { "type": "Point", "coordinates": [ 151.528, -27.718 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.541867, "decimalLat": -38.049833 }, "geometry": { "type": "Point", "coordinates": [ 141.542, -38.05 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.760977, "decimalLat": -35.009026 }, "geometry": { "type": "Point", "coordinates": [ 138.761, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268511, "decimalLat": -38.131247 }, "geometry": { "type": "Point", "coordinates": [ 145.269, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732757, "decimalLat": -34.886485 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.219026, "decimalLat": -38.13841 }, "geometry": { "type": "Point", "coordinates": [ 145.219, -38.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.963157, "decimalLat": -26.236603 }, "geometry": { "type": "Point", "coordinates": [ 151.963, -26.237 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.98331, "decimalLat": -26.255161 }, "geometry": { "type": "Point", "coordinates": [ 151.983, -26.255 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377466, "decimalLat": -28.254032 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.58632, "decimalLat": -27.799138 }, "geometry": { "type": "Point", "coordinates": [ 151.586, -27.799 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.339059, "decimalLat": -27.832712 }, "geometry": { "type": "Point", "coordinates": [ 152.339, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.685778, "decimalLat": -27.320211 }, "geometry": { "type": "Point", "coordinates": [ 151.686, -27.32 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.774795, "decimalLat": -27.39218 }, "geometry": { "type": "Point", "coordinates": [ 151.775, -27.392 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.842356, "decimalLat": -19.135865 }, "geometry": { "type": "Point", "coordinates": [ 146.842, -19.136 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111488, "decimalLat": -27.528075 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.724803, "decimalLat": -34.895051 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -34.895 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363568, "decimalLat": -38.318498 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.531506, "decimalLat": -38.81447 }, "geometry": { "type": "Point", "coordinates": [ 143.532, -38.814 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.681459, "decimalLat": -28.001287 }, "geometry": { "type": "Point", "coordinates": [ 152.681, -28.001 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164489, "decimalLat": -38.6718 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.067721, "decimalLat": -27.50879 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.077695, "decimalLat": -27.513388 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.72479, "decimalLat": -37.926202 }, "geometry": { "type": "Point", "coordinates": [ 147.725, -37.926 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.610662, "decimalLat": -28.066336 }, "geometry": { "type": "Point", "coordinates": [ 152.611, -28.066 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.739122, "decimalLat": -27.873035 }, "geometry": { "type": "Point", "coordinates": [ 152.739, -27.873 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000844, "decimalLat": -27.28446 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09161, "decimalLat": -27.527155 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991402, "decimalLat": -27.82323 }, "geometry": { "type": "Point", "coordinates": [ 152.991, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107232, "decimalLat": -27.527403 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.895883, "decimalLat": -38.430647 }, "geometry": { "type": "Point", "coordinates": [ 143.896, -38.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.515721, "decimalLat": -38.837042 }, "geometry": { "type": "Point", "coordinates": [ 143.516, -38.837 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091692, "decimalLat": -27.527198 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.958024, "decimalLat": -27.933157 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.401628, "decimalLat": -27.49478 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071771, "decimalLat": -27.544824 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05672, "decimalLat": -27.538361 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.689375, "decimalLat": -34.953894 }, "geometry": { "type": "Point", "coordinates": [ 138.689, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.616861, "decimalLat": -34.906092 }, "geometry": { "type": "Point", "coordinates": [ 138.617, -34.906 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657523, "decimalLat": -35.005839 }, "geometry": { "type": "Point", "coordinates": [ 138.658, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103721, "decimalLat": -27.529964 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.158721, "decimalLat": -27.656246 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -27.656 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70904, "decimalLat": -34.973906 }, "geometry": { "type": "Point", "coordinates": [ 138.709, -34.974 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.972394, "decimalLat": -30.428368 }, "geometry": { "type": "Point", "coordinates": [ 152.972, -30.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.556275, "decimalLat": -27.615042 }, "geometry": { "type": "Point", "coordinates": [ 151.556, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.371292, "decimalLat": -27.904068 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.124331, "decimalLat": -38.830015 }, "geometry": { "type": "Point", "coordinates": [ 146.124, -38.83 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.643579, "decimalLat": -35.008354 }, "geometry": { "type": "Point", "coordinates": [ 138.644, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092046, "decimalLat": -27.524998 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.91883, "decimalLat": -28.043766 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -28.044 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110459, "decimalLat": -27.526889 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.86924, "decimalLat": -19.13088 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071308, "decimalLat": -27.544661 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08583, "decimalLat": -27.510413 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.646365, "decimalLat": -34.972195 }, "geometry": { "type": "Point", "coordinates": [ 138.646, -34.972 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111519, "decimalLat": -27.527844 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.639594, "decimalLat": -31.82769 }, "geometry": { "type": "Point", "coordinates": [ 152.64, -31.828 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.003006, "decimalLat": -27.278022 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -27.278 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.113838, "decimalLat": -38.395776 }, "geometry": { "type": "Point", "coordinates": [ 145.114, -38.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079358, "decimalLat": -27.506595 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072551, "decimalLat": -27.544598 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.756328, "decimalLat": -35.359036 }, "geometry": { "type": "Point", "coordinates": [ 138.756, -35.359 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.046692, "decimalLat": -27.547347 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.073912, "decimalLat": -38.235146 }, "geometry": { "type": "Point", "coordinates": [ 142.074, -38.235 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722564, "decimalLat": -34.892458 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71748, "decimalLat": -34.871286 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.871 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07362, "decimalLat": -27.545768 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092252, "decimalLat": -27.528267 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113429, "decimalLat": -27.528411 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092378, "decimalLat": -27.525004 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111696, "decimalLat": -27.528008 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071943, "decimalLat": -27.545312 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093167, "decimalLat": -27.523991 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.095122, "decimalLat": -37.622783 }, "geometry": { "type": "Point", "coordinates": [ 144.095, -37.623 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.228726, "decimalLat": -27.502704 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.825771, "decimalLat": -34.100324 }, "geometry": { "type": "Point", "coordinates": [ 150.826, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.088587, "decimalLat": -37.633677 }, "geometry": { "type": "Point", "coordinates": [ 144.089, -37.634 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.898912, "decimalLat": -27.652587 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -27.653 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.728409, "decimalLat": -34.889934 }, "geometry": { "type": "Point", "coordinates": [ 138.728, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.857899, "decimalLat": -28.218819 }, "geometry": { "type": "Point", "coordinates": [ 152.858, -28.219 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.868462, "decimalLat": -26.52166 }, "geometry": { "type": "Point", "coordinates": [ 151.868, -26.522 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104147, "decimalLat": -27.528782 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.033357, "decimalLat": -27.52748 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059008, "decimalLat": -27.545952 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.062721, "decimalLat": -27.348364 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -27.348 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109806, "decimalLat": -27.526696 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095017, "decimalLat": -33.076367 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091597, "decimalLat": -27.527194 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7029, "decimalLat": -34.903532 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.824358, "decimalLat": -27.249316 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -27.249 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052822, "decimalLat": -27.553317 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.522474, "decimalLat": -37.134068 }, "geometry": { "type": "Point", "coordinates": [ 145.522, -37.134 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052148, "decimalLat": -27.549157 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.693865, "decimalLat": -34.956653 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.957 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.941483, "decimalLat": -34.722427 }, "geometry": { "type": "Point", "coordinates": [ 138.941, -34.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.724747, "decimalLat": -37.925969 }, "geometry": { "type": "Point", "coordinates": [ 147.725, -37.926 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290962, "decimalLat": -37.87456 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069801, "decimalLat": -27.51038 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070845, "decimalLat": -27.54538 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.675054, "decimalLat": -35.085758 }, "geometry": { "type": "Point", "coordinates": [ 138.675, -35.086 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.634127, "decimalLat": -34.998154 }, "geometry": { "type": "Point", "coordinates": [ 138.634, -34.998 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.596283, "decimalLat": -35.779202 }, "geometry": { "type": "Point", "coordinates": [ 137.596, -35.779 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.777432, "decimalLat": -34.878637 }, "geometry": { "type": "Point", "coordinates": [ 138.777, -34.879 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057277, "decimalLat": -27.55699 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.557 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091611, "decimalLat": -27.527073 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093354, "decimalLat": -27.526994 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.677383, "decimalLat": -27.985785 }, "geometry": { "type": "Point", "coordinates": [ 152.677, -27.986 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.711119, "decimalLat": -34.904838 }, "geometry": { "type": "Point", "coordinates": [ 138.711, -34.905 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.990485, "decimalLat": -26.622447 }, "geometry": { "type": "Point", "coordinates": [ 151.99, -26.622 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058164, "decimalLat": -27.547541 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.402467, "decimalLat": -27.501542 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.429937, "decimalLat": -27.491905 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092086, "decimalLat": -27.527226 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107365, "decimalLat": -27.527239 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102307, "decimalLat": -27.734904 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.11458, "decimalLat": -27.550103 }, "geometry": { "type": "Point", "coordinates": [ 152.115, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.619306, "decimalLat": -35.007956 }, "geometry": { "type": "Point", "coordinates": [ 138.619, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.75794, "decimalLat": -37.562591 }, "geometry": { "type": "Point", "coordinates": [ 149.758, -37.563 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253854, "decimalLat": -27.508932 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036669, "decimalLat": -27.528278 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.296547, "decimalLat": -27.568553 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104473, "decimalLat": -27.529925 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822672, "decimalLat": -34.101612 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.579692, "decimalLat": -27.960074 }, "geometry": { "type": "Point", "coordinates": [ 152.58, -27.96 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105276, "decimalLat": -27.52922 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069138, "decimalLat": -27.511139 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003167, "decimalLat": -27.413657 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072188, "decimalLat": -27.543713 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906783, "decimalLat": -31.440997 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092247, "decimalLat": -27.527282 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.290899, "decimalLat": -38.307199 }, "geometry": { "type": "Point", "coordinates": [ 145.291, -38.307 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.613558, "decimalLat": -27.339295 }, "geometry": { "type": "Point", "coordinates": [ 152.614, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057877, "decimalLat": -27.551845 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090913, "decimalLat": -27.526458 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.575045, "decimalLat": -33.715948 }, "geometry": { "type": "Point", "coordinates": [ 150.575, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053778, "decimalLat": -27.54159 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.63001, "decimalLat": -28.63748 }, "geometry": { "type": "Point", "coordinates": [ 153.63, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.51434, "decimalLat": -38.836951 }, "geometry": { "type": "Point", "coordinates": [ 143.514, -38.837 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092609, "decimalLat": -27.528496 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091041, "decimalLat": -27.527278 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105169, "decimalLat": -27.529817 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074606, "decimalLat": -27.207006 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.207 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.286341, "decimalLat": -27.989867 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -27.99 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.358993, "decimalLat": -27.777242 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.777 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.967052, "decimalLat": -28.027191 }, "geometry": { "type": "Point", "coordinates": [ 152.967, -28.027 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.563625, "decimalLat": -29.859599 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -29.86 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092177, "decimalLat": -27.527413 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.977458, "decimalLat": -38.500008 }, "geometry": { "type": "Point", "coordinates": [ 142.977, -38.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053591, "decimalLat": -27.550577 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.93367, "decimalLat": -27.572403 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -27.572 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.79698, "decimalLat": -36.959197 }, "geometry": { "type": "Point", "coordinates": [ 145.797, -36.959 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.358488, "decimalLat": -27.917508 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.152696, "decimalLat": -27.760083 }, "geometry": { "type": "Point", "coordinates": [ 153.153, -27.76 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.935895, "decimalLat": -30.406102 }, "geometry": { "type": "Point", "coordinates": [ 152.936, -30.406 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.979297, "decimalLat": -29.780365 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -29.78 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.739466, "decimalLat": -34.987368 }, "geometry": { "type": "Point", "coordinates": [ 138.739, -34.987 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.939019, "decimalLat": -27.16535 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -27.165 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112301, "decimalLat": -27.529486 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.261153, "decimalLat": -27.58959 }, "geometry": { "type": "Point", "coordinates": [ 152.261, -27.59 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058384, "decimalLat": -27.545558 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.499198, "decimalLat": -35.164538 }, "geometry": { "type": "Point", "coordinates": [ 138.499, -35.165 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054337, "decimalLat": -27.552799 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103762, "decimalLat": -27.527465 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719301, "decimalLat": -34.908318 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.908 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.25304, "decimalLat": -37.859437 }, "geometry": { "type": "Point", "coordinates": [ 144.253, -37.859 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054047, "decimalLat": -27.542707 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.304973, "decimalLat": -37.08408 }, "geometry": { "type": "Point", "coordinates": [ 145.305, -37.084 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093916, "decimalLat": -27.527913 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.879634, "decimalLat": -37.593442 }, "geometry": { "type": "Point", "coordinates": [ 143.88, -37.593 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058103, "decimalLat": -27.551095 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.190121, "decimalLat": -37.85976 }, "geometry": { "type": "Point", "coordinates": [ 144.19, -37.86 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715924, "decimalLat": -34.892216 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.226805, "decimalLat": -37.750253 }, "geometry": { "type": "Point", "coordinates": [ 145.227, -37.75 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.143716, "decimalLat": -27.775233 }, "geometry": { "type": "Point", "coordinates": [ 153.144, -27.775 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082949, "decimalLat": -27.505804 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.337937, "decimalLat": -31.579428 }, "geometry": { "type": "Point", "coordinates": [ 149.338, -31.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16417, "decimalLat": -38.671342 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.673576, "decimalLat": -34.875801 }, "geometry": { "type": "Point", "coordinates": [ 135.674, -34.876 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.875158, "decimalLat": -37.604221 }, "geometry": { "type": "Point", "coordinates": [ 143.875, -37.604 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.901851, "decimalLat": -27.621928 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.622 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091474, "decimalLat": -27.527276 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.775294, "decimalLat": -26.182073 }, "geometry": { "type": "Point", "coordinates": [ 151.775, -26.182 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073291, "decimalLat": -27.545647 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.021791, "decimalLat": -26.379745 }, "geometry": { "type": "Point", "coordinates": [ 153.022, -26.38 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.871469, "decimalLat": -19.123284 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.865985, "decimalLat": -28.211244 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.211 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072481, "decimalLat": -27.544023 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.123077, "decimalLat": -33.114396 }, "geometry": { "type": "Point", "coordinates": [ 151.123, -33.114 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39957, "decimalLat": -27.49679 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.704877, "decimalLat": -34.903217 }, "geometry": { "type": "Point", "coordinates": [ 138.705, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.321992, "decimalLat": -27.302887 }, "geometry": { "type": "Point", "coordinates": [ 152.322, -27.303 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.187769, "decimalLat": -27.911931 }, "geometry": { "type": "Point", "coordinates": [ 153.188, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057465, "decimalLat": -27.550991 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.354796, "decimalLat": -31.950154 }, "geometry": { "type": "Point", "coordinates": [ 152.355, -31.95 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083114, "decimalLat": -27.514766 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.845188, "decimalLat": -26.226805 }, "geometry": { "type": "Point", "coordinates": [ 151.845, -26.227 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.424472, "decimalLat": -27.999745 }, "geometry": { "type": "Point", "coordinates": [ 152.424, -28.0 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.556258, "decimalLat": -27.614875 }, "geometry": { "type": "Point", "coordinates": [ 151.556, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.283037, "decimalLat": -38.382167 }, "geometry": { "type": "Point", "coordinates": [ 145.283, -38.382 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400496, "decimalLat": -28.258305 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.51463, "decimalLat": -35.174651 }, "geometry": { "type": "Point", "coordinates": [ 138.515, -35.175 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.293791, "decimalLat": -38.378745 }, "geometry": { "type": "Point", "coordinates": [ 145.294, -38.379 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.901148, "decimalLat": -37.641822 }, "geometry": { "type": "Point", "coordinates": [ 143.901, -37.642 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.689539, "decimalLat": -38.72773 }, "geometry": { "type": "Point", "coordinates": [ 143.69, -38.728 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.33962, "decimalLat": -38.321862 }, "geometry": { "type": "Point", "coordinates": [ 143.34, -38.322 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.00929, "decimalLat": -38.477306 }, "geometry": { "type": "Point", "coordinates": [ 145.009, -38.477 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.65918, "decimalLat": -38.77155 }, "geometry": { "type": "Point", "coordinates": [ 143.659, -38.772 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090726, "decimalLat": -27.52628 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.728794, "decimalLat": -34.866658 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.867 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.862602, "decimalLat": -27.329305 }, "geometry": { "type": "Point", "coordinates": [ 151.863, -27.329 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234235, "decimalLat": -27.500323 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.094654, "decimalLat": -27.510381 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.925556, "decimalLat": -37.652778 }, "geometry": { "type": "Point", "coordinates": [ 143.926, -37.653 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057175, "decimalLat": -27.552448 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.886759, "decimalLat": -37.60091 }, "geometry": { "type": "Point", "coordinates": [ 143.887, -37.601 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.557059, "decimalLat": -35.255391 }, "geometry": { "type": "Point", "coordinates": [ 138.557, -35.255 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.819922, "decimalLat": -26.364023 }, "geometry": { "type": "Point", "coordinates": [ 151.82, -26.364 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103265, "decimalLat": -27.530237 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.783676, "decimalLat": -26.309911 }, "geometry": { "type": "Point", "coordinates": [ 151.784, -26.31 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.294467, "decimalLat": -28.864571 }, "geometry": { "type": "Point", "coordinates": [ 153.294, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.286087, "decimalLat": -37.845313 }, "geometry": { "type": "Point", "coordinates": [ 144.286, -37.845 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.408161, "decimalLat": -33.753478 }, "geometry": { "type": "Point", "coordinates": [ 149.408, -33.753 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.549972, "decimalLat": -34.751554 }, "geometry": { "type": "Point", "coordinates": [ 146.55, -34.752 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638245, "decimalLat": -35.005982 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090428, "decimalLat": -27.525693 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073309, "decimalLat": -27.545824 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722483, "decimalLat": -34.891255 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.681711, "decimalLat": -27.995104 }, "geometry": { "type": "Point", "coordinates": [ 152.682, -27.995 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625466, "decimalLat": -33.568807 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -33.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103409, "decimalLat": -27.530508 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.896301, "decimalLat": -27.641814 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -27.642 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.812287, "decimalLat": -26.529895 }, "geometry": { "type": "Point", "coordinates": [ 151.812, -26.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731998, "decimalLat": -34.871779 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.872 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.935487, "decimalLat": -27.32565 }, "geometry": { "type": "Point", "coordinates": [ 151.935, -27.326 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.048507, "decimalLat": -38.26719 }, "geometry": { "type": "Point", "coordinates": [ 145.049, -38.267 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093056, "decimalLat": -27.526383 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.063142, "decimalLat": -27.262855 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -27.263 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.398247, "decimalLat": -37.420822 }, "geometry": { "type": "Point", "coordinates": [ 144.398, -37.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.885657, "decimalLat": -37.624321 }, "geometry": { "type": "Point", "coordinates": [ 143.886, -37.624 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.395503, "decimalLat": -27.154603 }, "geometry": { "type": "Point", "coordinates": [ 152.396, -27.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.494639, "decimalLat": -37.647013 }, "geometry": { "type": "Point", "coordinates": [ 144.495, -37.647 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091762, "decimalLat": -27.527041 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.544678, "decimalLat": -34.914991 }, "geometry": { "type": "Point", "coordinates": [ 138.545, -34.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.998426, "decimalLat": -27.436175 }, "geometry": { "type": "Point", "coordinates": [ 152.998, -27.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.724128, "decimalLat": -37.923053 }, "geometry": { "type": "Point", "coordinates": [ 147.724, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091377, "decimalLat": -27.527193 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.585403, "decimalLat": -34.753892 }, "geometry": { "type": "Point", "coordinates": [ 146.585, -34.754 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.145431, "decimalLat": -27.509882 }, "geometry": { "type": "Point", "coordinates": [ 152.145, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440941, "decimalLat": -27.400083 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.775294, "decimalLat": -26.182073 }, "geometry": { "type": "Point", "coordinates": [ 151.775, -26.182 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.775294, "decimalLat": -26.182073 }, "geometry": { "type": "Point", "coordinates": [ 151.775, -26.182 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 145.747505, "decimalLat": -18.831485 }, "geometry": { "type": "Point", "coordinates": [ 145.748, -18.831 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092062, "decimalLat": -27.525912 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090652, "decimalLat": -27.527071 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.811052, "decimalLat": -26.106567 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -26.107 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713972, "decimalLat": -34.910651 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.911 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091207, "decimalLat": -27.527202 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103563, "decimalLat": -27.529442 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.817448, "decimalLat": -34.107768 }, "geometry": { "type": "Point", "coordinates": [ 150.817, -34.108 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.978617, "decimalLat": -38.552145 }, "geometry": { "type": "Point", "coordinates": [ 143.979, -38.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058393, "decimalLat": -27.551321 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.925198, "decimalLat": -27.339295 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.572128, "decimalLat": -35.027634 }, "geometry": { "type": "Point", "coordinates": [ 138.572, -35.028 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074077, "decimalLat": -27.546005 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.936296, "decimalLat": -27.275367 }, "geometry": { "type": "Point", "coordinates": [ 152.936, -27.275 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073263, "decimalLat": -27.545709 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.512437, "decimalLat": -38.834767 }, "geometry": { "type": "Point", "coordinates": [ 143.512, -38.835 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.512178, "decimalLat": -35.121761 }, "geometry": { "type": "Point", "coordinates": [ 138.512, -35.122 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090868, "decimalLat": -27.526335 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926603, "decimalLat": -31.44589 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.364912, "decimalLat": -38.318493 }, "geometry": { "type": "Point", "coordinates": [ 142.365, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.561505, "decimalLat": -27.799312 }, "geometry": { "type": "Point", "coordinates": [ 151.562, -27.799 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092426, "decimalLat": -27.527641 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.408161, "decimalLat": -33.753478 }, "geometry": { "type": "Point", "coordinates": [ 149.408, -33.753 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109151, "decimalLat": -27.526793 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090842, "decimalLat": -27.526986 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.379822, "decimalLat": -36.84525 }, "geometry": { "type": "Point", "coordinates": [ 145.38, -36.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163742, "decimalLat": -38.671112 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.269577, "decimalLat": -37.208679 }, "geometry": { "type": "Point", "coordinates": [ 148.27, -37.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.049177, "decimalLat": -27.540728 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82263, "decimalLat": -34.101661 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.611878, "decimalLat": -38.353322 }, "geometry": { "type": "Point", "coordinates": [ 141.612, -38.353 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093337, "decimalLat": -27.528083 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059222, "decimalLat": -27.549282 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.888383, "decimalLat": -27.647292 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -27.647 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.722445, "decimalLat": -27.716092 }, "geometry": { "type": "Point", "coordinates": [ 152.722, -27.716 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399469, "decimalLat": -28.260409 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105494, "decimalLat": -27.529861 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048845, "decimalLat": -27.525184 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601702, "decimalLat": -29.866838 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -29.867 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058142, "decimalLat": -27.547056 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283943, "decimalLat": -27.979572 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.98 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.735675, "decimalLat": -31.540089 }, "geometry": { "type": "Point", "coordinates": [ 151.736, -31.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.158343, "decimalLat": -27.656584 }, "geometry": { "type": "Point", "coordinates": [ 153.158, -27.657 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.542388, "decimalLat": -38.842322 }, "geometry": { "type": "Point", "coordinates": [ 143.542, -38.842 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.996949, "decimalLat": -38.826311 }, "geometry": { "type": "Point", "coordinates": [ 145.997, -38.826 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.673945, "decimalLat": -35.921924 }, "geometry": { "type": "Point", "coordinates": [ 145.674, -35.922 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164642, "decimalLat": -38.671087 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394944, "decimalLat": -28.276042 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.002686, "decimalLat": -27.888953 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -27.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377048, "decimalLat": -28.254337 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102003, "decimalLat": -27.532615 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.768595, "decimalLat": -35.103414 }, "geometry": { "type": "Point", "coordinates": [ 138.769, -35.103 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722009, "decimalLat": -34.891771 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870895, "decimalLat": -19.120564 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.121 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003322, "decimalLat": -27.412453 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.412 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.809749, "decimalLat": -35.239947 }, "geometry": { "type": "Point", "coordinates": [ 138.81, -35.24 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.079469, "decimalLat": -26.974237 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -26.974 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.546662, "decimalLat": -34.751878 }, "geometry": { "type": "Point", "coordinates": [ 146.547, -34.752 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163895, "decimalLat": -38.671325 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.664715, "decimalLat": -38.748048 }, "geometry": { "type": "Point", "coordinates": [ 143.665, -38.748 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.453795, "decimalLat": -36.869204 }, "geometry": { "type": "Point", "coordinates": [ 145.454, -36.869 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.510788, "decimalLat": -28.085875 }, "geometry": { "type": "Point", "coordinates": [ 152.511, -28.086 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09279, "decimalLat": -27.527062 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.049662, "decimalLat": -27.528483 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093378, "decimalLat": -27.524107 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.073532, "decimalLat": -27.359273 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.102276, "decimalLat": -33.133084 }, "geometry": { "type": "Point", "coordinates": [ 151.102, -33.133 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72256, "decimalLat": -34.890978 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245467, "decimalLat": -27.490334 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091538, "decimalLat": -27.527141 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105331, "decimalLat": -27.531303 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085586, "decimalLat": -27.506895 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.887554, "decimalLat": -37.673795 }, "geometry": { "type": "Point", "coordinates": [ 143.888, -37.674 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092429, "decimalLat": -27.525065 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090107, "decimalLat": -27.526321 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.24286, "decimalLat": -33.126803 }, "geometry": { "type": "Point", "coordinates": [ 151.243, -33.127 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104513, "decimalLat": -27.530055 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.711272, "decimalLat": -34.901192 }, "geometry": { "type": "Point", "coordinates": [ 138.711, -34.901 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718557, "decimalLat": -34.872283 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.872 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.454987, "decimalLat": -36.868305 }, "geometry": { "type": "Point", "coordinates": [ 145.455, -36.868 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092813, "decimalLat": -27.527642 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "Australian Capital Territory", "decimalLon": 148.91, "decimalLat": -35.46 }, "geometry": { "type": "Point", "coordinates": [ 148.91, -35.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092493, "decimalLat": -27.527242 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.060378, "decimalLat": -27.260139 }, "geometry": { "type": "Point", "coordinates": [ 152.06, -27.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.042192, "decimalLat": -27.300092 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.824722, "decimalLat": -34.101905 }, "geometry": { "type": "Point", "coordinates": [ 150.825, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400562, "decimalLat": -28.257567 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073951, "decimalLat": -27.54603 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.865697, "decimalLat": -28.211702 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.212 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.58027, "decimalLat": -35.059373 }, "geometry": { "type": "Point", "coordinates": [ 138.58, -35.059 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629249, "decimalLat": -28.637345 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.858882, "decimalLat": -38.666529 }, "geometry": { "type": "Point", "coordinates": [ 143.859, -38.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078992, "decimalLat": -27.512871 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.906577, "decimalLat": -28.173872 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -28.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.852372, "decimalLat": -26.542001 }, "geometry": { "type": "Point", "coordinates": [ 151.852, -26.542 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.743672, "decimalLat": -26.585584 }, "geometry": { "type": "Point", "coordinates": [ 151.744, -26.586 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733504, "decimalLat": -34.885997 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.125149, "decimalLat": -30.294112 }, "geometry": { "type": "Point", "coordinates": [ 153.125, -30.294 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091835, "decimalLat": -27.526959 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.902979, "decimalLat": -37.590268 }, "geometry": { "type": "Point", "coordinates": [ 143.903, -37.59 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092464, "decimalLat": -27.528046 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107263, "decimalLat": -27.528943 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091831, "decimalLat": -27.526842 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093042, "decimalLat": -27.523981 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.31122, "decimalLat": -37.290881 }, "geometry": { "type": "Point", "coordinates": [ 144.311, -37.291 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051009, "decimalLat": -27.527878 }, "geometry": { "type": "Point", "coordinates": [ 153.051, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11091, "decimalLat": -27.528997 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.924682, "decimalLat": -27.441749 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -27.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091557, "decimalLat": -27.527279 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073379, "decimalLat": -27.542689 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.664862, "decimalLat": -38.77901 }, "geometry": { "type": "Point", "coordinates": [ 143.665, -38.779 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.364894, "decimalLat": -38.320109 }, "geometry": { "type": "Point", "coordinates": [ 142.365, -38.32 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.326691, "decimalLat": -28.012574 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -28.013 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192068, "decimalLat": -27.703176 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.703 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.110503, "decimalLat": -38.682414 }, "geometry": { "type": "Point", "coordinates": [ 146.111, -38.682 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.692055, "decimalLat": -26.177143 }, "geometry": { "type": "Point", "coordinates": [ 151.692, -26.177 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.860225, "decimalLat": -38.471392 }, "geometry": { "type": "Point", "coordinates": [ 142.86, -38.471 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10378, "decimalLat": -27.529486 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734756, "decimalLat": -34.933272 }, "geometry": { "type": "Point", "coordinates": [ 138.735, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057313, "decimalLat": -27.551588 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.569141, "decimalLat": -34.756202 }, "geometry": { "type": "Point", "coordinates": [ 146.569, -34.756 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093222, "decimalLat": -27.524894 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092364, "decimalLat": -27.527959 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059058, "decimalLat": -27.548428 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999596, "decimalLat": -27.284072 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103736, "decimalLat": -27.530019 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055499, "decimalLat": -27.535901 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108257, "decimalLat": -27.52711 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092125, "decimalLat": -27.525729 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992447, "decimalLat": -27.824263 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.132158, "decimalLat": -38.175529 }, "geometry": { "type": "Point", "coordinates": [ 145.132, -38.176 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712801, "decimalLat": -34.893822 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.894 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280619, "decimalLat": -29.019583 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -29.02 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.10025, "decimalLat": -38.401028 }, "geometry": { "type": "Point", "coordinates": [ 145.1, -38.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104141, "decimalLat": -27.816931 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.817 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103061, "decimalLat": -27.527828 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090961, "decimalLat": -27.525814 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.56102, "decimalLat": -27.801395 }, "geometry": { "type": "Point", "coordinates": [ 151.561, -27.801 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.375956, "decimalLat": -27.918719 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.131272, "decimalLat": -38.824178 }, "geometry": { "type": "Point", "coordinates": [ 146.131, -38.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1833, "decimalLat": -27.53118 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068539, "decimalLat": -27.546135 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.631937, "decimalLat": -38.341217 }, "geometry": { "type": "Point", "coordinates": [ 142.632, -38.341 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.51701, "decimalLat": -27.424828 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.083446, "decimalLat": -38.148803 }, "geometry": { "type": "Point", "coordinates": [ 147.083, -38.149 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399708, "decimalLat": -28.260555 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048223, "decimalLat": -27.525728 }, "geometry": { "type": "Point", "coordinates": [ 153.048, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1833, "decimalLat": -27.53118 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093665, "decimalLat": -27.525131 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.477305, "decimalLat": -37.795548 }, "geometry": { "type": "Point", "coordinates": [ 141.477, -37.796 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.042209, "decimalLat": -27.300324 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822179, "decimalLat": -34.101886 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104866, "decimalLat": -27.529583 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001603, "decimalLat": -27.165158 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -27.165 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072189, "decimalLat": -27.544136 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.70288, "decimalLat": -27.093644 }, "geometry": { "type": "Point", "coordinates": [ 152.703, -27.094 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.701937, "decimalLat": -34.903003 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.9474, "decimalLat": -27.3191 }, "geometry": { "type": "Point", "coordinates": [ 151.947, -27.319 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.196223, "decimalLat": -35.701956 }, "geometry": { "type": "Point", "coordinates": [ 137.196, -35.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164122, "decimalLat": -38.671525 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072582, "decimalLat": -27.543522 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314597, "decimalLat": -38.374195 }, "geometry": { "type": "Point", "coordinates": [ 145.315, -38.374 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053338, "decimalLat": -27.550012 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439072, "decimalLat": -27.394178 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.114963, "decimalLat": -27.689332 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.689 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.273063, "decimalLat": -38.382953 }, "geometry": { "type": "Point", "coordinates": [ 145.273, -38.383 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.536083, "decimalLat": -27.711354 }, "geometry": { "type": "Point", "coordinates": [ 151.536, -27.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.859615, "decimalLat": -27.542516 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.397818, "decimalLat": -28.26152 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.819833, "decimalLat": -26.39493 }, "geometry": { "type": "Point", "coordinates": [ 151.82, -26.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057525, "decimalLat": -27.551722 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.570236, "decimalLat": -34.755821 }, "geometry": { "type": "Point", "coordinates": [ 146.57, -34.756 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058004, "decimalLat": -27.550742 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102325, "decimalLat": -27.734433 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.734 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.211957, "decimalLat": -27.948807 }, "geometry": { "type": "Point", "coordinates": [ 153.212, -27.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095292, "decimalLat": -33.076764 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.05992, "decimalLat": -27.260153 }, "geometry": { "type": "Point", "coordinates": [ 152.06, -27.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091726, "decimalLat": -27.526895 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.866043, "decimalLat": -19.105785 }, "geometry": { "type": "Point", "coordinates": [ 146.866, -19.106 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111767, "decimalLat": -27.528889 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.653884, "decimalLat": -34.976412 }, "geometry": { "type": "Point", "coordinates": [ 138.654, -34.976 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.187472, "decimalLat": -28.193347 }, "geometry": { "type": "Point", "coordinates": [ 153.187, -28.193 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702857, "decimalLat": -34.899652 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363478, "decimalLat": -38.318946 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09096, "decimalLat": -27.52642 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.891295, "decimalLat": -37.644661 }, "geometry": { "type": "Point", "coordinates": [ 143.891, -37.645 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036541, "decimalLat": -27.532382 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.337468, "decimalLat": -20.363394 }, "geometry": { "type": "Point", "coordinates": [ 148.337, -20.363 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377437, "decimalLat": -28.253965 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.263377, "decimalLat": -38.129441 }, "geometry": { "type": "Point", "coordinates": [ 145.263, -38.129 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091378, "decimalLat": -27.527331 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.551622, "decimalLat": -27.812939 }, "geometry": { "type": "Point", "coordinates": [ 151.552, -27.813 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07839, "decimalLat": -27.506432 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.740371, "decimalLat": -34.829087 }, "geometry": { "type": "Point", "coordinates": [ 138.74, -34.829 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.683601, "decimalLat": -34.94844 }, "geometry": { "type": "Point", "coordinates": [ 138.684, -34.948 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.924098, "decimalLat": -27.477119 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -27.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056157, "decimalLat": -27.551658 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.045341, "decimalLat": -27.258905 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.259 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245362, "decimalLat": -27.489847 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093137, "decimalLat": -27.528347 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072583, "decimalLat": -27.542402 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.874876, "decimalLat": -37.596488 }, "geometry": { "type": "Point", "coordinates": [ 143.875, -37.596 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.632447, "decimalLat": -35.02833 }, "geometry": { "type": "Point", "coordinates": [ 138.632, -35.028 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091807, "decimalLat": -27.527155 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092424, "decimalLat": -27.524966 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.396288, "decimalLat": -38.557064 }, "geometry": { "type": "Point", "coordinates": [ 146.396, -38.557 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.615321, "decimalLat": -27.698725 }, "geometry": { "type": "Point", "coordinates": [ 151.615, -27.699 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718712, "decimalLat": -34.891917 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053611, "decimalLat": -27.54945 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.831449, "decimalLat": -19.142249 }, "geometry": { "type": "Point", "coordinates": [ 146.831, -19.142 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.103042, "decimalLat": -27.570433 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.703611, "decimalLat": -36.360278 }, "geometry": { "type": "Point", "coordinates": [ 146.704, -36.36 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164183, "decimalLat": -38.671283 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.658788, "decimalLat": -35.004625 }, "geometry": { "type": "Point", "coordinates": [ 138.659, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082466, "decimalLat": -27.510907 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.464065, "decimalLat": -38.180159 }, "geometry": { "type": "Point", "coordinates": [ 141.464, -38.18 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046291, "decimalLat": -27.255695 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.256 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.535645, "decimalLat": -38.805878 }, "geometry": { "type": "Point", "coordinates": [ 143.536, -38.806 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073429, "decimalLat": -27.547078 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.12766, "decimalLat": -38.18085 }, "geometry": { "type": "Point", "coordinates": [ 145.128, -38.181 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.262742, "decimalLat": -38.483938 }, "geometry": { "type": "Point", "coordinates": [ 145.263, -38.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.570949, "decimalLat": -35.035222 }, "geometry": { "type": "Point", "coordinates": [ 138.571, -35.035 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.750685, "decimalLat": -37.796177 }, "geometry": { "type": "Point", "coordinates": [ 143.751, -37.796 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.135181, "decimalLat": -37.861426 }, "geometry": { "type": "Point", "coordinates": [ 144.135, -37.861 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.289159, "decimalLat": -37.849417 }, "geometry": { "type": "Point", "coordinates": [ 144.289, -37.849 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095379, "decimalLat": -33.076684 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.648396, "decimalLat": -26.645435 }, "geometry": { "type": "Point", "coordinates": [ 152.648, -26.645 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730167, "decimalLat": -34.886509 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655767, "decimalLat": -34.866338 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -34.866 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71426, "decimalLat": -34.873809 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.874 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.096401, "decimalLat": -27.848554 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -27.849 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.093933, "decimalLat": -37.624162 }, "geometry": { "type": "Point", "coordinates": [ 144.094, -37.624 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.769516, "decimalLat": -32.204145 }, "geometry": { "type": "Point", "coordinates": [ 151.77, -32.204 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.706376, "decimalLat": -34.940519 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.941 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.763337, "decimalLat": -38.537155 }, "geometry": { "type": "Point", "coordinates": [ 145.763, -38.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.868356, "decimalLat": -28.219507 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -28.22 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.419728, "decimalLat": -27.247098 }, "geometry": { "type": "Point", "coordinates": [ 152.42, -27.247 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073748, "decimalLat": -27.545739 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.665121, "decimalLat": -38.779051 }, "geometry": { "type": "Point", "coordinates": [ 143.665, -38.779 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.997394, "decimalLat": -26.678302 }, "geometry": { "type": "Point", "coordinates": [ 151.997, -26.678 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656903, "decimalLat": -34.865315 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063312, "decimalLat": -27.550293 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.476932, "decimalLat": -37.793532 }, "geometry": { "type": "Point", "coordinates": [ 141.477, -37.794 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.689454, "decimalLat": -26.179395 }, "geometry": { "type": "Point", "coordinates": [ 151.689, -26.179 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093266, "decimalLat": -27.528251 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.301543, "decimalLat": -38.311822 }, "geometry": { "type": "Point", "coordinates": [ 145.302, -38.312 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.470477, "decimalLat": -37.475005 }, "geometry": { "type": "Point", "coordinates": [ 144.47, -37.475 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.714507, "decimalLat": -26.829613 }, "geometry": { "type": "Point", "coordinates": [ 152.715, -26.83 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001239, "decimalLat": -27.284861 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.597472, "decimalLat": -34.770283 }, "geometry": { "type": "Point", "coordinates": [ 146.597, -34.77 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163728, "decimalLat": -38.671253 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057567, "decimalLat": -27.551572 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718305, "decimalLat": -34.891729 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379579, "decimalLat": -31.908772 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.897078, "decimalLat": -28.203106 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -28.203 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375144, "decimalLat": -28.252489 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.538112, "decimalLat": -36.940346 }, "geometry": { "type": "Point", "coordinates": [ 145.538, -36.94 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111517, "decimalLat": -27.527891 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926743, "decimalLat": -31.460873 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.889236, "decimalLat": -27.597017 }, "geometry": { "type": "Point", "coordinates": [ 151.889, -27.597 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732501, "decimalLat": -34.889936 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868331, "decimalLat": -19.127242 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.127 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092506, "decimalLat": -27.527191 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.171431, "decimalLat": -38.171057 }, "geometry": { "type": "Point", "coordinates": [ 145.171, -38.171 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.757442, "decimalLat": -26.163312 }, "geometry": { "type": "Point", "coordinates": [ 151.757, -26.163 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.820706, "decimalLat": -26.363167 }, "geometry": { "type": "Point", "coordinates": [ 151.821, -26.363 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092404, "decimalLat": -27.528459 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396811, "decimalLat": -28.266404 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.266 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091537, "decimalLat": -27.527244 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.865934, "decimalLat": -28.211403 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.211 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.319488, "decimalLat": -35.775497 }, "geometry": { "type": "Point", "coordinates": [ 137.319, -35.775 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.617237, "decimalLat": -38.778229 }, "geometry": { "type": "Point", "coordinates": [ 143.617, -38.778 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11001, "decimalLat": -27.527698 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103325, "decimalLat": -27.529854 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.804143, "decimalLat": -26.447243 }, "geometry": { "type": "Point", "coordinates": [ 151.804, -26.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.449142, "decimalLat": -36.830208 }, "geometry": { "type": "Point", "coordinates": [ 145.449, -36.83 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000786, "decimalLat": -27.284331 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000538, "decimalLat": -27.284711 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.882026, "decimalLat": -35.763601 }, "geometry": { "type": "Point", "coordinates": [ 136.882, -35.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.876783, "decimalLat": -37.599065 }, "geometry": { "type": "Point", "coordinates": [ 143.877, -37.599 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003053, "decimalLat": -27.413588 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058321, "decimalLat": -27.551373 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.400926, "decimalLat": -27.457853 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -27.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.430117, "decimalLat": -27.492509 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103275, "decimalLat": -27.530245 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092548, "decimalLat": -27.527671 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057506, "decimalLat": -27.551471 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.022098, "decimalLat": -37.749545 }, "geometry": { "type": "Point", "coordinates": [ 142.022, -37.75 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.302503, "decimalLat": -38.384102 }, "geometry": { "type": "Point", "coordinates": [ 145.303, -38.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090894, "decimalLat": -27.527442 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10344, "decimalLat": -27.530201 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.312516, "decimalLat": -38.383798 }, "geometry": { "type": "Point", "coordinates": [ 145.313, -38.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110267, "decimalLat": -27.528139 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072977, "decimalLat": -27.546376 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.93623, "decimalLat": -27.5716 }, "geometry": { "type": "Point", "coordinates": [ 152.936, -27.572 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.552855, "decimalLat": -38.7463 }, "geometry": { "type": "Point", "coordinates": [ 143.553, -38.746 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703053, "decimalLat": -34.903012 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.003494, "decimalLat": -30.533482 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -30.533 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092265, "decimalLat": -27.52841 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.724969, "decimalLat": -37.926106 }, "geometry": { "type": "Point", "coordinates": [ 147.725, -37.926 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993938, "decimalLat": -27.823538 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.034016, "decimalLat": -27.528269 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048846, "decimalLat": -27.550337 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091376, "decimalLat": -27.527286 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000661, "decimalLat": -27.284816 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.727158, "decimalLat": -37.921775 }, "geometry": { "type": "Point", "coordinates": [ 147.727, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093352, "decimalLat": -27.52746 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731874, "decimalLat": -34.890621 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.191404, "decimalLat": -27.702621 }, "geometry": { "type": "Point", "coordinates": [ 153.191, -27.703 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720583, "decimalLat": -34.892005 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105314, "decimalLat": -27.531437 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078211, "decimalLat": -27.507317 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093116, "decimalLat": -27.527807 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.863805, "decimalLat": -19.150448 }, "geometry": { "type": "Point", "coordinates": [ 146.864, -19.15 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.543503, "decimalLat": -27.67137 }, "geometry": { "type": "Point", "coordinates": [ 151.544, -27.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363482, "decimalLat": -38.318439 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.594124, "decimalLat": -35.014789 }, "geometry": { "type": "Point", "coordinates": [ 138.594, -35.015 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282046, "decimalLat": -27.556806 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.557 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.78296, "decimalLat": -26.652899 }, "geometry": { "type": "Point", "coordinates": [ 151.783, -26.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.988006, "decimalLat": -27.778343 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -27.778 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090301, "decimalLat": -27.526732 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0522, "decimalLat": -27.548978 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091251, "decimalLat": -27.526978 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.160433, "decimalLat": -27.659889 }, "geometry": { "type": "Point", "coordinates": [ 153.16, -27.66 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.710376, "decimalLat": -34.857284 }, "geometry": { "type": "Point", "coordinates": [ 138.71, -34.857 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.608057, "decimalLat": -35.015046 }, "geometry": { "type": "Point", "coordinates": [ 138.608, -35.015 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400202, "decimalLat": -28.260562 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.918061, "decimalLat": -27.320753 }, "geometry": { "type": "Point", "coordinates": [ 151.918, -27.321 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06901, "decimalLat": -27.541455 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109704, "decimalLat": -27.52968 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.683584, "decimalLat": -34.948516 }, "geometry": { "type": "Point", "coordinates": [ 138.684, -34.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055108, "decimalLat": -27.55049 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103565, "decimalLat": -27.529819 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.698264, "decimalLat": -26.173674 }, "geometry": { "type": "Point", "coordinates": [ 151.698, -26.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.654407, "decimalLat": -34.873055 }, "geometry": { "type": "Point", "coordinates": [ 138.654, -34.873 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074546, "decimalLat": -27.546393 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729049, "decimalLat": -34.88749 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076835, "decimalLat": -27.541188 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072487, "decimalLat": -27.543309 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249225, "decimalLat": -27.495004 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072189, "decimalLat": -27.544136 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.614288, "decimalLat": -27.33782 }, "geometry": { "type": "Point", "coordinates": [ 152.614, -27.338 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109035, "decimalLat": -27.527981 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.897449, "decimalLat": -27.632467 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -27.632 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090408, "decimalLat": -27.526879 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.900693, "decimalLat": -37.639952 }, "geometry": { "type": "Point", "coordinates": [ 143.901, -37.64 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.308167, "decimalLat": -38.012484 }, "geometry": { "type": "Point", "coordinates": [ 142.308, -38.012 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375547, "decimalLat": -28.252318 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.996813, "decimalLat": -37.689641 }, "geometry": { "type": "Point", "coordinates": [ 143.997, -37.69 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.974197, "decimalLat": -38.498481 }, "geometry": { "type": "Point", "coordinates": [ 142.974, -38.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.963993, "decimalLat": -27.276545 }, "geometry": { "type": "Point", "coordinates": [ 152.964, -27.277 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.248018, "decimalLat": -37.816377 }, "geometry": { "type": "Point", "coordinates": [ 144.248, -37.816 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.125528, "decimalLat": -30.294758 }, "geometry": { "type": "Point", "coordinates": [ 153.126, -30.295 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.775992, "decimalLat": -34.883009 }, "geometry": { "type": "Point", "coordinates": [ 138.776, -34.883 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.593695, "decimalLat": -35.201272 }, "geometry": { "type": "Point", "coordinates": [ 138.594, -35.201 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092315, "decimalLat": -27.525554 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638119, "decimalLat": -34.97137 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6398, "decimalLat": -35.006378 }, "geometry": { "type": "Point", "coordinates": [ 138.64, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082954, "decimalLat": -27.514732 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.586163, "decimalLat": -29.857325 }, "geometry": { "type": "Point", "coordinates": [ 150.586, -29.857 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0922, "decimalLat": -27.527749 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.443671, "decimalLat": -27.394677 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281741, "decimalLat": -28.047466 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.047 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066589, "decimalLat": -27.541071 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.921822, "decimalLat": -34.922658 }, "geometry": { "type": "Point", "coordinates": [ 149.922, -34.923 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702341, "decimalLat": -34.903114 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092819, "decimalLat": -27.525356 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.707174, "decimalLat": -35.216263 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -35.216 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.155023, "decimalLat": -27.750573 }, "geometry": { "type": "Point", "coordinates": [ 153.155, -27.751 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.100297, "decimalLat": -33.134433 }, "geometry": { "type": "Point", "coordinates": [ 151.1, -33.134 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091965, "decimalLat": -27.526938 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108438, "decimalLat": -27.527294 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.650537, "decimalLat": -32.503533 }, "geometry": { "type": "Point", "coordinates": [ 151.651, -32.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111125, "decimalLat": -27.528847 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43898, "decimalLat": -27.397337 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092225, "decimalLat": -27.528095 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.927332, "decimalLat": -38.084781 }, "geometry": { "type": "Point", "coordinates": [ 141.927, -38.085 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.989212, "decimalLat": -27.170088 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -27.17 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.132388, "decimalLat": -38.175573 }, "geometry": { "type": "Point", "coordinates": [ 145.132, -38.176 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.939287, "decimalLat": -27.572022 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -27.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079518, "decimalLat": -27.515019 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732236, "decimalLat": -34.889603 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.584718, "decimalLat": -38.331148 }, "geometry": { "type": "Point", "coordinates": [ 142.585, -38.331 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103355, "decimalLat": -27.530319 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.086633, "decimalLat": -27.697117 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26325, "decimalLat": -27.649104 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163697, "decimalLat": -38.671295 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.383276, "decimalLat": -27.920346 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.364936, "decimalLat": -38.314729 }, "geometry": { "type": "Point", "coordinates": [ 142.365, -38.315 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.278733, "decimalLat": -27.562075 }, "geometry": { "type": "Point", "coordinates": [ 152.279, -27.562 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103752, "decimalLat": -27.529646 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.312078, "decimalLat": -38.321682 }, "geometry": { "type": "Point", "coordinates": [ 145.312, -38.322 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09068, "decimalLat": -27.526513 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059047, "decimalLat": -27.551367 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069608, "decimalLat": -27.509963 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102416, "decimalLat": -27.734818 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.735 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.751202, "decimalLat": -26.156562 }, "geometry": { "type": "Point", "coordinates": [ 151.751, -26.157 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.700411, "decimalLat": -34.90159 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.731567, "decimalLat": -37.923047 }, "geometry": { "type": "Point", "coordinates": [ 147.732, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.880151, "decimalLat": -37.607851 }, "geometry": { "type": "Point", "coordinates": [ 143.88, -37.608 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001281, "decimalLat": -27.284523 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.050203, "decimalLat": -38.266262 }, "geometry": { "type": "Point", "coordinates": [ 145.05, -38.266 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 144.436507, "decimalLat": -20.409652 }, "geometry": { "type": "Point", "coordinates": [ 144.437, -20.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.580933, "decimalLat": -37.829692 }, "geometry": { "type": "Point", "coordinates": [ 141.581, -37.83 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.643447, "decimalLat": -35.081989 }, "geometry": { "type": "Point", "coordinates": [ 138.643, -35.082 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.828978, "decimalLat": -27.39072 }, "geometry": { "type": "Point", "coordinates": [ 151.829, -27.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.257278, "decimalLat": -37.155175 }, "geometry": { "type": "Point", "coordinates": [ 148.257, -37.155 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.714538, "decimalLat": -34.812283 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.812 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069027, "decimalLat": -27.545432 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.998912, "decimalLat": -27.283729 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722542, "decimalLat": -34.889551 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10327, "decimalLat": -27.528428 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870711, "decimalLat": -19.131614 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.132 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860697, "decimalLat": -38.668042 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.378983, "decimalLat": -27.916068 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106767, "decimalLat": -27.527446 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.863892, "decimalLat": -27.320038 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -27.32 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092329, "decimalLat": -27.528499 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09222, "decimalLat": -27.52737 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.676936, "decimalLat": -37.762978 }, "geometry": { "type": "Point", "coordinates": [ 145.677, -37.763 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109927, "decimalLat": -27.529307 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054756, "decimalLat": -27.552004 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.717595, "decimalLat": -35.013265 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -35.013 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716243, "decimalLat": -34.892406 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092347, "decimalLat": -27.525765 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.031856, "decimalLat": -18.977257 }, "geometry": { "type": "Point", "coordinates": [ 146.032, -18.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249514, "decimalLat": -27.496771 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.666261, "decimalLat": -38.752298 }, "geometry": { "type": "Point", "coordinates": [ 143.666, -38.752 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104469, "decimalLat": -27.529638 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111447, "decimalLat": -27.527841 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091832, "decimalLat": -27.527187 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.026952, "decimalLat": -37.74849 }, "geometry": { "type": "Point", "coordinates": [ 142.027, -37.748 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105326, "decimalLat": -27.530064 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110029, "decimalLat": -27.527078 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111129, "decimalLat": -27.527278 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055304, "decimalLat": -27.536758 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063956, "decimalLat": -27.550695 }, "geometry": { "type": "Point", "coordinates": [ 153.064, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.778183, "decimalLat": -26.308988 }, "geometry": { "type": "Point", "coordinates": [ 151.778, -26.309 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.949102, "decimalLat": -27.368394 }, "geometry": { "type": "Point", "coordinates": [ 152.949, -27.368 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901886, "decimalLat": -31.442446 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.807851, "decimalLat": -27.527759 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.0045, "decimalLat": -27.414663 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091056, "decimalLat": -27.526484 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055915, "decimalLat": -27.544228 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.899417, "decimalLat": -37.640954 }, "geometry": { "type": "Point", "coordinates": [ 143.899, -37.641 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.013244, "decimalLat": -34.805347 }, "geometry": { "type": "Point", "coordinates": [ 150.013, -34.805 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.632138, "decimalLat": -28.068656 }, "geometry": { "type": "Point", "coordinates": [ 152.632, -28.069 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387244, "decimalLat": -38.358395 }, "geometry": { "type": "Point", "coordinates": [ 146.387, -38.358 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046333, "decimalLat": -27.25525 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.255 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078233, "decimalLat": -27.500362 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993203, "decimalLat": -27.823815 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082011, "decimalLat": -27.507806 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090682, "decimalLat": -27.526327 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090758, "decimalLat": -27.526865 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113593, "decimalLat": -27.528453 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.640092, "decimalLat": -38.777583 }, "geometry": { "type": "Point", "coordinates": [ 143.64, -38.778 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.374655, "decimalLat": -27.914064 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733184, "decimalLat": -34.890824 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.094489, "decimalLat": -27.533108 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092299, "decimalLat": -27.528137 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054133, "decimalLat": -27.539283 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092982, "decimalLat": -27.527661 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.586043, "decimalLat": -29.857284 }, "geometry": { "type": "Point", "coordinates": [ 150.586, -29.857 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.279358, "decimalLat": -27.562186 }, "geometry": { "type": "Point", "coordinates": [ 152.279, -27.562 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.266113, "decimalLat": -37.218937 }, "geometry": { "type": "Point", "coordinates": [ 148.266, -37.219 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080684, "decimalLat": -27.511525 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091928, "decimalLat": -27.525151 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.528952, "decimalLat": -36.307275 }, "geometry": { "type": "Point", "coordinates": [ 146.529, -36.307 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.132201, "decimalLat": -38.175455 }, "geometry": { "type": "Point", "coordinates": [ 145.132, -38.175 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.518981, "decimalLat": -30.520915 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.18909, "decimalLat": -28.172364 }, "geometry": { "type": "Point", "coordinates": [ 153.189, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730142, "decimalLat": -34.89037 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.860743, "decimalLat": -27.546292 }, "geometry": { "type": "Point", "coordinates": [ 152.861, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075143, "decimalLat": -27.506708 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.989028, "decimalLat": -27.171367 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -27.171 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629497, "decimalLat": -28.637567 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401353, "decimalLat": -28.256257 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729642, "decimalLat": -34.98871 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.989 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.99682, "decimalLat": -26.302906 }, "geometry": { "type": "Point", "coordinates": [ 151.997, -26.303 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.729958, "decimalLat": -37.641513 }, "geometry": { "type": "Point", "coordinates": [ 143.73, -37.642 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057718, "decimalLat": -27.546338 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363497, "decimalLat": -38.318812 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069677, "decimalLat": -27.510535 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.590072, "decimalLat": -34.75657 }, "geometry": { "type": "Point", "coordinates": [ 146.59, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.684765, "decimalLat": -34.957534 }, "geometry": { "type": "Point", "coordinates": [ 138.685, -34.958 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.58393, "decimalLat": -28.917913 }, "geometry": { "type": "Point", "coordinates": [ 151.584, -28.918 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1833, "decimalLat": -27.53118 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092684, "decimalLat": -27.528464 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702029, "decimalLat": -34.930017 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.700849, "decimalLat": -34.959701 }, "geometry": { "type": "Point", "coordinates": [ 138.701, -34.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095047, "decimalLat": -33.076436 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.253904, "decimalLat": -37.903064 }, "geometry": { "type": "Point", "coordinates": [ 144.254, -37.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.388962, "decimalLat": -27.9486 }, "geometry": { "type": "Point", "coordinates": [ 151.389, -27.949 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730235, "decimalLat": -34.890773 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091046, "decimalLat": -27.526436 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111693, "decimalLat": -27.527843 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051551, "decimalLat": -27.549026 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991828, "decimalLat": -27.824094 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083114, "decimalLat": -27.514766 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060915, "decimalLat": -27.534151 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.315033, "decimalLat": -27.444313 }, "geometry": { "type": "Point", "coordinates": [ 152.315, -27.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.619767, "decimalLat": -37.098105 }, "geometry": { "type": "Point", "coordinates": [ 145.62, -37.098 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093393, "decimalLat": -27.524906 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.546582, "decimalLat": -27.79311 }, "geometry": { "type": "Point", "coordinates": [ 151.547, -27.793 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.653068, "decimalLat": -38.773025 }, "geometry": { "type": "Point", "coordinates": [ 143.653, -38.773 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.67734, "decimalLat": -27.985757 }, "geometry": { "type": "Point", "coordinates": [ 152.677, -27.986 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.833386, "decimalLat": -28.094954 }, "geometry": { "type": "Point", "coordinates": [ 152.833, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.518981, "decimalLat": -30.520915 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092838, "decimalLat": -27.528572 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 145.581238, "decimalLat": -35.848312 }, "geometry": { "type": "Point", "coordinates": [ 145.581, -35.848 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104336, "decimalLat": -27.529903 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107597, "decimalLat": -27.527275 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.695256, "decimalLat": -34.957897 }, "geometry": { "type": "Point", "coordinates": [ 138.695, -34.958 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.86113, "decimalLat": -38.669925 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.67 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.723271, "decimalLat": -34.904087 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.70062, "decimalLat": -36.821569 }, "geometry": { "type": "Point", "coordinates": [ 145.701, -36.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058259, "decimalLat": -27.547518 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09234, "decimalLat": -27.525755 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111504, "decimalLat": -27.527731 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060163, "decimalLat": -27.53323 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091069, "decimalLat": -27.526308 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.92453, "decimalLat": -38.060875 }, "geometry": { "type": "Point", "coordinates": [ 141.925, -38.061 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108324, "decimalLat": -27.527063 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71119, "decimalLat": -35.021159 }, "geometry": { "type": "Point", "coordinates": [ 138.711, -35.021 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.538392, "decimalLat": -27.431688 }, "geometry": { "type": "Point", "coordinates": [ 153.538, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05617, "decimalLat": -27.544413 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282317, "decimalLat": -27.5263 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.564892, "decimalLat": -27.693821 }, "geometry": { "type": "Point", "coordinates": [ 151.565, -27.694 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.55987, "decimalLat": -35.260503 }, "geometry": { "type": "Point", "coordinates": [ 138.56, -35.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730625, "decimalLat": -34.890531 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000498, "decimalLat": -27.284806 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.773557, "decimalLat": -26.193736 }, "geometry": { "type": "Point", "coordinates": [ 151.774, -26.194 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057511, "decimalLat": -27.551016 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0927, "decimalLat": -27.525828 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.822478, "decimalLat": -27.62471 }, "geometry": { "type": "Point", "coordinates": [ 151.822, -27.625 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109712, "decimalLat": -27.529164 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.793656, "decimalLat": -34.13796 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073211, "decimalLat": -27.545678 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.89601, "decimalLat": -37.579232 }, "geometry": { "type": "Point", "coordinates": [ 143.896, -37.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.078767, "decimalLat": -26.975 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -26.975 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.365298, "decimalLat": -37.667436 }, "geometry": { "type": "Point", "coordinates": [ 144.365, -37.667 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.160433, "decimalLat": -27.659889 }, "geometry": { "type": "Point", "coordinates": [ 153.16, -27.66 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.050251, "decimalLat": -27.549311 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036191, "decimalLat": -27.535913 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.659469, "decimalLat": -37.442094 }, "geometry": { "type": "Point", "coordinates": [ 144.659, -37.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092642, "decimalLat": -27.5285 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08194, "decimalLat": -27.54452 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.732055, "decimalLat": -37.913825 }, "geometry": { "type": "Point", "coordinates": [ 147.732, -37.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.045334, "decimalLat": -27.258093 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.576511, "decimalLat": -35.061154 }, "geometry": { "type": "Point", "coordinates": [ 138.577, -35.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.130609, "decimalLat": -38.174675 }, "geometry": { "type": "Point", "coordinates": [ 145.131, -38.175 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058273, "decimalLat": -27.551573 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.49395, "decimalLat": -35.708153 }, "geometry": { "type": "Point", "coordinates": [ 137.494, -35.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072833, "decimalLat": -27.545433 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0902, "decimalLat": -27.525586 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.499276, "decimalLat": -35.164444 }, "geometry": { "type": "Point", "coordinates": [ 138.499, -35.164 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.929083, "decimalLat": -27.278453 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -27.278 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082686, "decimalLat": -27.50717 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.366772, "decimalLat": -38.31558 }, "geometry": { "type": "Point", "coordinates": [ 142.367, -38.316 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163742, "decimalLat": -38.671112 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09045, "decimalLat": -27.526837 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 8, "individual": 1, "stateProvi": "Australian Capital Territory", "decimalLon": 148.91, "decimalLat": -35.46 }, "geometry": { "type": "Point", "coordinates": [ 148.91, -35.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09093, "decimalLat": -27.526952 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.80005, "decimalLat": -26.099611 }, "geometry": { "type": "Point", "coordinates": [ 152.8, -26.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091726, "decimalLat": -27.527136 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.356811, "decimalLat": -27.938965 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.940649, "decimalLat": -27.388909 }, "geometry": { "type": "Point", "coordinates": [ 151.941, -27.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.449594, "decimalLat": -26.637332 }, "geometry": { "type": "Point", "coordinates": [ 152.45, -26.637 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.267762, "decimalLat": -38.131168 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058064, "decimalLat": -27.551394 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066816, "decimalLat": -27.250419 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.25 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090271, "decimalLat": -27.526582 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.857885, "decimalLat": -38.670082 }, "geometry": { "type": "Point", "coordinates": [ 143.858, -38.67 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090622, "decimalLat": -27.526363 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.513078, "decimalLat": -38.833917 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.858044, "decimalLat": -34.052718 }, "geometry": { "type": "Point", "coordinates": [ 150.858, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.102704, "decimalLat": -27.569664 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.731936, "decimalLat": -37.922846 }, "geometry": { "type": "Point", "coordinates": [ 147.732, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.442105, "decimalLat": -27.39848 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.226099, "decimalLat": -27.29638 }, "geometry": { "type": "Point", "coordinates": [ 152.226, -27.296 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.928702, "decimalLat": -27.574537 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163614, "decimalLat": -38.671153 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.874597, "decimalLat": -37.596399 }, "geometry": { "type": "Point", "coordinates": [ 143.875, -37.596 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.26158, "decimalLat": -38.48412 }, "geometry": { "type": "Point", "coordinates": [ 145.262, -38.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092693, "decimalLat": -27.525729 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163789, "decimalLat": -38.671112 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377367, "decimalLat": -28.254254 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.627474, "decimalLat": -27.910416 }, "geometry": { "type": "Point", "coordinates": [ 152.627, -27.91 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.856047, "decimalLat": -26.644437 }, "geometry": { "type": "Point", "coordinates": [ 152.856, -26.644 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656825, "decimalLat": -34.865203 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.118596, "decimalLat": -38.691996 }, "geometry": { "type": "Point", "coordinates": [ 146.119, -38.692 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091874, "decimalLat": -27.526931 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10717, "decimalLat": -27.527427 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052005, "decimalLat": -27.538514 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.371818, "decimalLat": -38.385195 }, "geometry": { "type": "Point", "coordinates": [ 145.372, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103422, "decimalLat": -27.529944 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063943, "decimalLat": -27.540165 }, "geometry": { "type": "Point", "coordinates": [ 153.064, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.493488, "decimalLat": -35.707125 }, "geometry": { "type": "Point", "coordinates": [ 137.493, -35.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.614144, "decimalLat": -34.907555 }, "geometry": { "type": "Point", "coordinates": [ 138.614, -34.908 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638829, "decimalLat": -35.004532 }, "geometry": { "type": "Point", "coordinates": [ 138.639, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059998, "decimalLat": -27.550667 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.79896, "decimalLat": -26.138698 }, "geometry": { "type": "Point", "coordinates": [ 151.799, -26.139 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402553, "decimalLat": -28.258941 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106773, "decimalLat": -27.527849 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.271663, "decimalLat": -38.13354 }, "geometry": { "type": "Point", "coordinates": [ 145.272, -38.134 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282301, "decimalLat": -27.526299 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.852971, "decimalLat": -28.066304 }, "geometry": { "type": "Point", "coordinates": [ 152.853, -28.066 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387952, "decimalLat": -38.356961 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.357 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091766, "decimalLat": -27.527198 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.410449, "decimalLat": -37.961293 }, "geometry": { "type": "Point", "coordinates": [ 144.41, -37.961 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060763, "decimalLat": -27.532906 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.85878, "decimalLat": -38.666583 }, "geometry": { "type": "Point", "coordinates": [ 143.859, -38.667 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104277, "decimalLat": -27.52815 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.766256, "decimalLat": -26.172552 }, "geometry": { "type": "Point", "coordinates": [ 151.766, -26.173 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091861, "decimalLat": -27.527141 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.044917, "decimalLat": -38.265751 }, "geometry": { "type": "Point", "coordinates": [ 145.045, -38.266 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057324, "decimalLat": -27.551139 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164153, "decimalLat": -38.671322 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068226, "decimalLat": -27.545981 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.350273, "decimalLat": -27.936386 }, "geometry": { "type": "Point", "coordinates": [ 153.35, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.514723, "decimalLat": -38.836998 }, "geometry": { "type": "Point", "coordinates": [ 143.515, -38.837 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.653947, "decimalLat": -38.769958 }, "geometry": { "type": "Point", "coordinates": [ 143.654, -38.77 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057173, "decimalLat": -27.550596 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092271, "decimalLat": -27.528001 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.576422, "decimalLat": -34.753547 }, "geometry": { "type": "Point", "coordinates": [ 146.576, -34.754 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109751, "decimalLat": -27.529645 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.045213, "decimalLat": -27.258107 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401382, "decimalLat": -28.260223 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092042, "decimalLat": -27.527055 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090848, "decimalLat": -27.527387 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363418, "decimalLat": -38.318924 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.86453, "decimalLat": -19.140086 }, "geometry": { "type": "Point", "coordinates": [ 146.865, -19.14 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.632387, "decimalLat": -38.128167 }, "geometry": { "type": "Point", "coordinates": [ 141.632, -38.128 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092494, "decimalLat": -27.528633 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.521103, "decimalLat": -37.135658 }, "geometry": { "type": "Point", "coordinates": [ 145.521, -37.136 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.468705, "decimalLat": -36.359867 }, "geometry": { "type": "Point", "coordinates": [ 146.469, -36.36 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440994, "decimalLat": -27.393408 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092173, "decimalLat": -27.525635 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.687247, "decimalLat": -34.782661 }, "geometry": { "type": "Point", "coordinates": [ 138.687, -34.783 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090797, "decimalLat": -27.526808 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.747425, "decimalLat": -34.893833 }, "geometry": { "type": "Point", "coordinates": [ 138.747, -34.894 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.368806, "decimalLat": -36.013869 }, "geometry": { "type": "Point", "coordinates": [ 149.369, -36.014 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076209, "decimalLat": -27.545867 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.65214, "decimalLat": -27.633634 }, "geometry": { "type": "Point", "coordinates": [ 151.652, -27.634 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073089, "decimalLat": -27.545991 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.954154, "decimalLat": -27.971869 }, "geometry": { "type": "Point", "coordinates": [ 152.954, -27.972 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.971774, "decimalLat": -26.165406 }, "geometry": { "type": "Point", "coordinates": [ 151.972, -26.165 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.261026, "decimalLat": -28.102067 }, "geometry": { "type": "Point", "coordinates": [ 151.261, -28.102 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268385, "decimalLat": -38.131123 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.692651, "decimalLat": -34.955859 }, "geometry": { "type": "Point", "coordinates": [ 138.693, -34.956 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05731, "decimalLat": -27.543322 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077359, "decimalLat": -30.928599 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -30.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105221, "decimalLat": -27.529154 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.945388, "decimalLat": -27.613895 }, "geometry": { "type": "Point", "coordinates": [ 151.945, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729028, "decimalLat": -37.924543 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.912665, "decimalLat": -37.651986 }, "geometry": { "type": "Point", "coordinates": [ 143.913, -37.652 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868392, "decimalLat": -19.125836 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.126 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.023397, "decimalLat": -38.397488 }, "geometry": { "type": "Point", "coordinates": [ 144.023, -38.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090552, "decimalLat": -27.525872 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.715758, "decimalLat": -37.648903 }, "geometry": { "type": "Point", "coordinates": [ 147.716, -37.649 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003206, "decimalLat": -27.414197 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.245788, "decimalLat": -33.169068 }, "geometry": { "type": "Point", "coordinates": [ 151.246, -33.169 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072753, "decimalLat": -27.54233 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.89396, "decimalLat": -27.596929 }, "geometry": { "type": "Point", "coordinates": [ 151.894, -27.597 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057655, "decimalLat": -27.534829 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.758998, "decimalLat": -37.561116 }, "geometry": { "type": "Point", "coordinates": [ 149.759, -37.561 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091787, "decimalLat": -27.52691 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.044954, "decimalLat": -27.258271 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.987443, "decimalLat": -27.577977 }, "geometry": { "type": "Point", "coordinates": [ 151.987, -27.578 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.993035, "decimalLat": -30.559812 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -30.56 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892033, "decimalLat": -31.438386 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101548, "decimalLat": -27.567089 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396349, "decimalLat": -28.265076 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.265 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.034739, "decimalLat": -27.528624 }, "geometry": { "type": "Point", "coordinates": [ 153.035, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89034, "decimalLat": -34.048389 }, "geometry": { "type": "Point", "coordinates": [ 150.89, -34.048 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092634, "decimalLat": -27.528276 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713754, "decimalLat": -34.892027 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090818, "decimalLat": -27.526895 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059645, "decimalLat": -27.544207 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063748, "decimalLat": -27.552562 }, "geometry": { "type": "Point", "coordinates": [ 153.064, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090814, "decimalLat": -27.525917 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.055498, "decimalLat": -27.258362 }, "geometry": { "type": "Point", "coordinates": [ 152.055, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.014965, "decimalLat": -34.06601 }, "geometry": { "type": "Point", "coordinates": [ 151.015, -34.066 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.730547, "decimalLat": -37.924188 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092504, "decimalLat": -27.528091 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.903482, "decimalLat": -37.573099 }, "geometry": { "type": "Point", "coordinates": [ 143.903, -37.573 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073564, "decimalLat": -27.545771 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103112, "decimalLat": -27.530213 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868212, "decimalLat": -19.127547 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.128 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.874817, "decimalLat": -27.483677 }, "geometry": { "type": "Point", "coordinates": [ 151.875, -27.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.261093, "decimalLat": -28.102052 }, "geometry": { "type": "Point", "coordinates": [ 151.261, -28.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092929, "decimalLat": -27.528337 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702385, "decimalLat": -34.903066 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822708, "decimalLat": -34.1017 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.977, "decimalLat": -26.161014 }, "geometry": { "type": "Point", "coordinates": [ 151.977, -26.161 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.325012, "decimalLat": -27.904217 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103113, "decimalLat": -27.52655 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.253929, "decimalLat": -38.132301 }, "geometry": { "type": "Point", "coordinates": [ 145.254, -38.132 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.53609, "decimalLat": -27.711343 }, "geometry": { "type": "Point", "coordinates": [ 151.536, -27.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.717282, "decimalLat": -34.892232 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.559325, "decimalLat": -27.809713 }, "geometry": { "type": "Point", "coordinates": [ 151.559, -27.81 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.945588, "decimalLat": -27.195168 }, "geometry": { "type": "Point", "coordinates": [ 152.946, -27.195 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059867, "decimalLat": -27.54956 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.993516, "decimalLat": -30.559811 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -30.56 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.404824, "decimalLat": -38.347816 }, "geometry": { "type": "Point", "coordinates": [ 146.405, -38.348 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.688368, "decimalLat": -34.928143 }, "geometry": { "type": "Point", "coordinates": [ 138.688, -34.928 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.840729, "decimalLat": -37.704971 }, "geometry": { "type": "Point", "coordinates": [ 143.841, -37.705 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091657, "decimalLat": -27.526838 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.567344, "decimalLat": -38.428362 }, "geometry": { "type": "Point", "coordinates": [ 146.567, -38.428 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104116, "decimalLat": -27.529509 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092824, "decimalLat": -27.528474 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101374, "decimalLat": -27.528501 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.088539, "decimalLat": -37.633598 }, "geometry": { "type": "Point", "coordinates": [ 144.089, -37.634 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0921, "decimalLat": -27.527132 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.443658, "decimalLat": -38.10681 }, "geometry": { "type": "Point", "coordinates": [ 141.444, -38.107 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105425, "decimalLat": -27.529768 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.889871, "decimalLat": -37.615161 }, "geometry": { "type": "Point", "coordinates": [ 143.89, -37.615 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233153, "decimalLat": -27.939025 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109074, "decimalLat": -27.527172 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283375, "decimalLat": -27.5342 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069851, "decimalLat": -27.542929 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.042343, "decimalLat": -27.548334 }, "geometry": { "type": "Point", "coordinates": [ 153.042, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.890849, "decimalLat": -27.647261 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -27.647 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102775, "decimalLat": -27.527692 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090522, "decimalLat": -27.525534 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08306, "decimalLat": -27.514015 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092773, "decimalLat": -27.525393 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71315, "decimalLat": -34.893092 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.934776, "decimalLat": -19.42854 }, "geometry": { "type": "Point", "coordinates": [ 146.935, -19.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.430222, "decimalLat": -27.300536 }, "geometry": { "type": "Point", "coordinates": [ 152.43, -27.301 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722345, "decimalLat": -34.858751 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.859 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.641005, "decimalLat": -27.453805 }, "geometry": { "type": "Point", "coordinates": [ 152.641, -27.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090832, "decimalLat": -27.901827 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091646, "decimalLat": -27.52699 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.00322, "decimalLat": -27.41405 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60137, "decimalLat": -29.865961 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -29.866 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083544, "decimalLat": -27.514118 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091246, "decimalLat": -27.527364 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068377, "decimalLat": -27.542554 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110873, "decimalLat": -27.529756 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09192, "decimalLat": -27.525819 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.258087, "decimalLat": -28.103719 }, "geometry": { "type": "Point", "coordinates": [ 151.258, -28.104 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003236, "decimalLat": -27.412767 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.547055, "decimalLat": -34.750541 }, "geometry": { "type": "Point", "coordinates": [ 146.547, -34.751 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721531, "decimalLat": -34.890128 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055838, "decimalLat": -27.550726 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377433, "decimalLat": -28.254249 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.038187, "decimalLat": -38.205872 }, "geometry": { "type": "Point", "coordinates": [ 142.038, -38.206 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110687, "decimalLat": -27.527499 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.55031, "decimalLat": -34.736002 }, "geometry": { "type": "Point", "coordinates": [ 146.55, -34.736 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108335, "decimalLat": -27.527242 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.447711, "decimalLat": -26.210711 }, "geometry": { "type": "Point", "coordinates": [ 152.448, -26.211 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000646, "decimalLat": -27.28448 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108295, "decimalLat": -27.527114 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6863, "decimalLat": -34.866431 }, "geometry": { "type": "Point", "coordinates": [ 138.686, -34.866 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090794, "decimalLat": -27.525083 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992798, "decimalLat": -27.823136 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378113, "decimalLat": -28.255192 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058754, "decimalLat": -27.548204 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060485, "decimalLat": -27.549918 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.916429, "decimalLat": -28.131891 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192164, "decimalLat": -27.703185 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.703 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 143.882842, "decimalLat": -18.619673 }, "geometry": { "type": "Point", "coordinates": [ 143.883, -18.62 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37485, "decimalLat": -27.916849 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733074, "decimalLat": -34.885995 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.307938, "decimalLat": -38.384712 }, "geometry": { "type": "Point", "coordinates": [ 145.308, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090294, "decimalLat": -27.525602 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164251, "decimalLat": -38.67184 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091478, "decimalLat": -27.526658 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.0952, "decimalLat": -33.07658 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054732, "decimalLat": -27.538667 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.977656, "decimalLat": -38.498028 }, "geometry": { "type": "Point", "coordinates": [ 142.978, -38.498 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376548, "decimalLat": -28.254426 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05896, "decimalLat": -27.548476 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107938, "decimalLat": -27.529068 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092528, "decimalLat": -27.527498 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090015, "decimalLat": -27.523318 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164044, "decimalLat": -38.671525 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057418, "decimalLat": -27.551205 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05791, "decimalLat": -27.550955 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090879, "decimalLat": -27.525858 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.836167, "decimalLat": -38.391514 }, "geometry": { "type": "Point", "coordinates": [ 142.836, -38.392 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.79223, "decimalLat": -28.252291 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112449, "decimalLat": -27.528815 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821638, "decimalLat": -34.101928 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09166, "decimalLat": -27.527275 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.370667, "decimalLat": -38.324212 }, "geometry": { "type": "Point", "coordinates": [ 142.371, -38.324 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103073, "decimalLat": -27.529944 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.094139, "decimalLat": -27.566056 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.14819, "decimalLat": -27.763877 }, "geometry": { "type": "Point", "coordinates": [ 153.148, -27.764 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.862118, "decimalLat": -34.615393 }, "geometry": { "type": "Point", "coordinates": [ 138.862, -34.615 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.939495, "decimalLat": -27.214568 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -27.215 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095336, "decimalLat": -33.076375 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.079615, "decimalLat": -37.285593 }, "geometry": { "type": "Point", "coordinates": [ 144.08, -37.286 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.885331, "decimalLat": -37.654354 }, "geometry": { "type": "Point", "coordinates": [ 143.885, -37.654 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.822862, "decimalLat": -27.820365 }, "geometry": { "type": "Point", "coordinates": [ 152.823, -27.82 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.935363, "decimalLat": -27.275383 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -27.275 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.891778, "decimalLat": -37.590056 }, "geometry": { "type": "Point", "coordinates": [ 143.892, -37.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109866, "decimalLat": -27.526834 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.678514, "decimalLat": -34.950439 }, "geometry": { "type": "Point", "coordinates": [ 138.679, -34.95 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074013, "decimalLat": -27.546036 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.247078, "decimalLat": -27.49628 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003166, "decimalLat": -27.413705 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082872, "decimalLat": -27.506839 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.831746, "decimalLat": -38.385431 }, "geometry": { "type": "Point", "coordinates": [ 142.832, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247987, "decimalLat": -27.490773 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.826933, "decimalLat": -34.692015 }, "geometry": { "type": "Point", "coordinates": [ 138.827, -34.692 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092501, "decimalLat": -27.52753 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.681402, "decimalLat": -34.953743 }, "geometry": { "type": "Point", "coordinates": [ 138.681, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093157, "decimalLat": -27.527787 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059606, "decimalLat": -27.551026 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.510895, "decimalLat": -27.555467 }, "geometry": { "type": "Point", "coordinates": [ 151.511, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09217, "decimalLat": -27.524206 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05862, "decimalLat": -27.55123 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092707, "decimalLat": -27.525579 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825158, "decimalLat": -31.653519 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164017, "decimalLat": -38.671642 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057554, "decimalLat": -27.551658 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111642, "decimalLat": -27.527867 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.226238, "decimalLat": -27.297063 }, "geometry": { "type": "Point", "coordinates": [ 152.226, -27.297 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.597901, "decimalLat": -35.015008 }, "geometry": { "type": "Point", "coordinates": [ 138.598, -35.015 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919753, "decimalLat": -31.443267 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095122, "decimalLat": -33.076706 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.061906, "decimalLat": -27.262978 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -27.263 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721985, "decimalLat": -34.890186 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056747, "decimalLat": -27.543688 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.068889, "decimalLat": -37.738018 }, "geometry": { "type": "Point", "coordinates": [ 142.069, -37.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732118, "decimalLat": -34.89048 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907717, "decimalLat": -31.450771 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103437, "decimalLat": -27.530489 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090901, "decimalLat": -27.527538 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.077561, "decimalLat": -38.514569 }, "geometry": { "type": "Point", "coordinates": [ 146.078, -38.515 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.642466, "decimalLat": -35.006913 }, "geometry": { "type": "Point", "coordinates": [ 138.642, -35.007 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718516, "decimalLat": -34.872327 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.872 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111095, "decimalLat": -27.529901 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376877, "decimalLat": -28.254249 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.246676, "decimalLat": -27.496005 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400832, "decimalLat": -28.258621 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.371262, "decimalLat": -27.905955 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093437, "decimalLat": -27.525354 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.664624, "decimalLat": -34.867165 }, "geometry": { "type": "Point", "coordinates": [ 138.665, -34.867 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111073, "decimalLat": -27.527183 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06764, "decimalLat": -27.546541 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090762, "decimalLat": -27.526118 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060258, "decimalLat": -27.555555 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.717001, "decimalLat": -34.892016 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069918, "decimalLat": -27.510559 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.642197, "decimalLat": -35.004931 }, "geometry": { "type": "Point", "coordinates": [ 138.642, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05756, "decimalLat": -27.55123 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.725019, "decimalLat": -34.918188 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -34.918 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290922, "decimalLat": -37.87478 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401956, "decimalLat": -28.960353 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093523, "decimalLat": -27.528452 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192128, "decimalLat": -27.653275 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.653 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.360924, "decimalLat": -38.317801 }, "geometry": { "type": "Point", "coordinates": [ 142.361, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394252, "decimalLat": -28.275333 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.275 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092521, "decimalLat": -27.527871 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.106845, "decimalLat": -27.562326 }, "geometry": { "type": "Point", "coordinates": [ 152.107, -27.562 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.666292, "decimalLat": -27.914463 }, "geometry": { "type": "Point", "coordinates": [ 152.666, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095467, "decimalLat": -33.076755 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090671, "decimalLat": -27.527077 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733943, "decimalLat": -35.037992 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -35.038 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091938, "decimalLat": -27.525728 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.868709, "decimalLat": -26.493446 }, "geometry": { "type": "Point", "coordinates": [ 151.869, -26.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164121, "decimalLat": -38.671478 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.64783, "decimalLat": -35.004135 }, "geometry": { "type": "Point", "coordinates": [ 138.648, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.045051, "decimalLat": -27.258378 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.480515, "decimalLat": -38.311913 }, "geometry": { "type": "Point", "coordinates": [ 141.481, -38.312 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163728, "decimalLat": -38.671017 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.772632, "decimalLat": -26.199667 }, "geometry": { "type": "Point", "coordinates": [ 151.773, -26.2 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.038565, "decimalLat": -27.533404 }, "geometry": { "type": "Point", "coordinates": [ 153.039, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376807, "decimalLat": -28.254001 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.078767, "decimalLat": -26.975038 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -26.975 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084778, "decimalLat": -27.038894 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.039 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110051, "decimalLat": -27.527451 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057528, "decimalLat": -27.551018 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718003, "decimalLat": -34.855913 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -34.856 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.997163, "decimalLat": -27.287668 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -27.288 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.001389, "decimalLat": -27.9784 }, "geometry": { "type": "Point", "coordinates": [ 152.001, -27.978 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.564192, "decimalLat": -29.546282 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -29.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105252, "decimalLat": -27.529528 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.93283, "decimalLat": -27.330788 }, "geometry": { "type": "Point", "coordinates": [ 151.933, -27.331 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992516, "decimalLat": -27.823612 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092997, "decimalLat": -27.524455 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072635, "decimalLat": -27.544745 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.073966, "decimalLat": -26.188289 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -26.188 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.78328, "decimalLat": -34.87622 }, "geometry": { "type": "Point", "coordinates": [ 138.783, -34.876 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.411769, "decimalLat": -38.005427 }, "geometry": { "type": "Point", "coordinates": [ 144.412, -38.005 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.997868, "decimalLat": -30.561986 }, "geometry": { "type": "Point", "coordinates": [ 152.998, -30.562 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387939, "decimalLat": -38.360103 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.36 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.704371, "decimalLat": -34.903152 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036636, "decimalLat": -27.538186 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302054, "decimalLat": -28.82162 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.885331, "decimalLat": -37.654354 }, "geometry": { "type": "Point", "coordinates": [ 143.885, -37.654 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.864085, "decimalLat": -26.147144 }, "geometry": { "type": "Point", "coordinates": [ 151.864, -26.147 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.269183, "decimalLat": -38.13045 }, "geometry": { "type": "Point", "coordinates": [ 145.269, -38.13 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046905, "decimalLat": -27.262533 }, "geometry": { "type": "Point", "coordinates": [ 152.047, -27.263 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.549013, "decimalLat": -37.491522 }, "geometry": { "type": "Point", "coordinates": [ 144.549, -37.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189971, "decimalLat": -27.736511 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.737 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.828209, "decimalLat": -19.138966 }, "geometry": { "type": "Point", "coordinates": [ 146.828, -19.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091284, "decimalLat": -27.52736 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084122, "decimalLat": -27.51129 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073268, "decimalLat": -27.545974 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992553, "decimalLat": -27.82327 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.992851, "decimalLat": -30.559916 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -30.56 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.993555, "decimalLat": -30.559935 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -30.56 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.059036, "decimalLat": -32.737703 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091717, "decimalLat": -27.52717 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075426, "decimalLat": -27.554812 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164556, "decimalLat": -38.671141 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.044265, "decimalLat": -27.551096 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.114326, "decimalLat": -27.527197 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.993723, "decimalLat": -30.560181 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -30.56 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.937784, "decimalLat": -27.416781 }, "geometry": { "type": "Point", "coordinates": [ 151.938, -27.417 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.63768, "decimalLat": -38.786945 }, "geometry": { "type": "Point", "coordinates": [ 143.638, -38.787 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884931, "decimalLat": -29.430515 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -29.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.693237, "decimalLat": -34.924012 }, "geometry": { "type": "Point", "coordinates": [ 138.693, -34.924 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057294, "decimalLat": -27.55009 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055938, "decimalLat": -27.552378 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.246167, "decimalLat": -38.038579 }, "geometry": { "type": "Point", "coordinates": [ 141.246, -38.039 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108856, "decimalLat": -27.527275 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092717, "decimalLat": -27.528418 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.449032, "decimalLat": -26.103026 }, "geometry": { "type": "Point", "coordinates": [ 151.449, -26.103 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.604767, "decimalLat": -38.355205 }, "geometry": { "type": "Point", "coordinates": [ 141.605, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821665, "decimalLat": -34.10159 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.276514, "decimalLat": -38.383205 }, "geometry": { "type": "Point", "coordinates": [ 145.277, -38.383 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.795193, "decimalLat": -26.387789 }, "geometry": { "type": "Point", "coordinates": [ 151.795, -26.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.275552, "decimalLat": -37.049759 }, "geometry": { "type": "Point", "coordinates": [ 145.276, -37.05 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09275, "decimalLat": -27.52755 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.586432, "decimalLat": -26.874379 }, "geometry": { "type": "Point", "coordinates": [ 152.586, -26.874 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090841, "decimalLat": -27.527087 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999934, "decimalLat": -27.284096 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.531067, "decimalLat": -27.724378 }, "geometry": { "type": "Point", "coordinates": [ 151.531, -27.724 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07328, "decimalLat": -27.545808 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.535232, "decimalLat": -27.726306 }, "geometry": { "type": "Point", "coordinates": [ 151.535, -27.726 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086717, "decimalLat": -27.510917 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860706, "decimalLat": -38.668038 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.534622, "decimalLat": -27.429088 }, "geometry": { "type": "Point", "coordinates": [ 153.535, -27.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092807, "decimalLat": -27.528075 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093542, "decimalLat": -27.524877 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.739797, "decimalLat": -37.550652 }, "geometry": { "type": "Point", "coordinates": [ 149.74, -37.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.69783, "decimalLat": -25.294935 }, "geometry": { "type": "Point", "coordinates": [ 152.698, -25.295 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.83699, "decimalLat": -28.094988 }, "geometry": { "type": "Point", "coordinates": [ 152.837, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.571595, "decimalLat": -35.028811 }, "geometry": { "type": "Point", "coordinates": [ 138.572, -35.029 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093016, "decimalLat": -27.52617 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721332, "decimalLat": -34.892976 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.575211, "decimalLat": -35.079501 }, "geometry": { "type": "Point", "coordinates": [ 138.575, -35.08 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629186, "decimalLat": -28.637181 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987609, "decimalLat": -34.121139 }, "geometry": { "type": "Point", "coordinates": [ 150.988, -34.121 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072619, "decimalLat": -27.2262 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.226 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.078922, "decimalLat": -38.134102 }, "geometry": { "type": "Point", "coordinates": [ 147.079, -38.134 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.685653, "decimalLat": -34.915488 }, "geometry": { "type": "Point", "coordinates": [ 138.686, -34.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109249, "decimalLat": -27.526602 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105237, "decimalLat": -27.52973 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.711541, "decimalLat": -34.891032 }, "geometry": { "type": "Point", "coordinates": [ 138.712, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.407745, "decimalLat": -36.8777 }, "geometry": { "type": "Point", "coordinates": [ 145.408, -36.878 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092187, "decimalLat": -27.52726 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003067, "decimalLat": -27.41375 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.924016, "decimalLat": -27.282517 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -27.283 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71919, "decimalLat": -34.891458 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519396, "decimalLat": -30.520827 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992097, "decimalLat": -27.823428 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.643676, "decimalLat": -34.998466 }, "geometry": { "type": "Point", "coordinates": [ 138.644, -34.998 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.275745, "decimalLat": -37.859965 }, "geometry": { "type": "Point", "coordinates": [ 144.276, -37.86 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.728089, "decimalLat": -34.888734 }, "geometry": { "type": "Point", "coordinates": [ 138.728, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.616219, "decimalLat": -38.792152 }, "geometry": { "type": "Point", "coordinates": [ 143.616, -38.792 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071821, "decimalLat": -27.544261 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821655, "decimalLat": -34.101917 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.892157, "decimalLat": -27.635454 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -27.635 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905966, "decimalLat": -31.44039 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.391113, "decimalLat": -38.360163 }, "geometry": { "type": "Point", "coordinates": [ 146.391, -38.36 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.93514, "decimalLat": -27.274941 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -27.275 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.27182, "decimalLat": -38.746872 }, "geometry": { "type": "Point", "coordinates": [ 143.272, -38.747 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.997803, "decimalLat": -27.565731 }, "geometry": { "type": "Point", "coordinates": [ 151.998, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.85878, "decimalLat": -38.666595 }, "geometry": { "type": "Point", "coordinates": [ 143.859, -38.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.741225, "decimalLat": -34.838875 }, "geometry": { "type": "Point", "coordinates": [ 138.741, -34.839 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.517792, "decimalLat": -27.732862 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -27.733 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.04045, "decimalLat": -27.1768 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -27.177 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09354, "decimalLat": -27.527698 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655361, "decimalLat": -34.868723 }, "geometry": { "type": "Point", "coordinates": [ 138.655, -34.869 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.398728, "decimalLat": -27.496503 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.771143, "decimalLat": -27.376072 }, "geometry": { "type": "Point", "coordinates": [ 151.771, -27.376 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.915244, "decimalLat": -34.711863 }, "geometry": { "type": "Point", "coordinates": [ 138.915, -34.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093641, "decimalLat": -27.52471 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.255769, "decimalLat": -36.19391 }, "geometry": { "type": "Point", "coordinates": [ 145.256, -36.194 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.93373, "decimalLat": -27.325928 }, "geometry": { "type": "Point", "coordinates": [ 151.934, -27.326 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079066, "decimalLat": -27.87442 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.038073, "decimalLat": -27.54682 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.677174, "decimalLat": -34.914107 }, "geometry": { "type": "Point", "coordinates": [ 138.677, -34.914 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.716478, "decimalLat": -27.649963 }, "geometry": { "type": "Point", "coordinates": [ 151.716, -27.65 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.893686, "decimalLat": -27.424801 }, "geometry": { "type": "Point", "coordinates": [ 151.894, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.444305, "decimalLat": -28.274384 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.274 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.629508, "decimalLat": -38.551811 }, "geometry": { "type": "Point", "coordinates": [ 143.63, -38.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72194, "decimalLat": -34.892326 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074583, "decimalLat": -27.358436 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.85792, "decimalLat": -35.771973 }, "geometry": { "type": "Point", "coordinates": [ 136.858, -35.772 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.526337, "decimalLat": -27.632697 }, "geometry": { "type": "Point", "coordinates": [ 151.526, -27.633 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091568, "decimalLat": -27.527115 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.10663, "decimalLat": -27.562278 }, "geometry": { "type": "Point", "coordinates": [ 152.107, -27.562 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102601, "decimalLat": -27.52951 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.627876, "decimalLat": -27.908664 }, "geometry": { "type": "Point", "coordinates": [ 152.628, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048593, "decimalLat": -27.528156 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.691441, "decimalLat": -26.177982 }, "geometry": { "type": "Point", "coordinates": [ 151.691, -26.178 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.772587, "decimalLat": -38.203006 }, "geometry": { "type": "Point", "coordinates": [ 141.773, -38.203 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093382, "decimalLat": -27.528002 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314683, "decimalLat": -38.373424 }, "geometry": { "type": "Point", "coordinates": [ 145.315, -38.373 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870437, "decimalLat": -19.124196 }, "geometry": { "type": "Point", "coordinates": [ 146.87, -19.124 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092807, "decimalLat": -27.528378 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073212, "decimalLat": -27.54589 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106203, "decimalLat": -27.528998 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090923, "decimalLat": -27.52666 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059548, "decimalLat": -27.551257 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716617, "decimalLat": -34.893207 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.16237, "decimalLat": -26.797726 }, "geometry": { "type": "Point", "coordinates": [ 151.162, -26.798 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.475113, "decimalLat": -36.922567 }, "geometry": { "type": "Point", "coordinates": [ 145.475, -36.923 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.814643, "decimalLat": -26.36268 }, "geometry": { "type": "Point", "coordinates": [ 151.815, -26.363 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731564, "decimalLat": -34.8917 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.012821, "decimalLat": -26.637757 }, "geometry": { "type": "Point", "coordinates": [ 152.013, -26.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399107, "decimalLat": -28.260838 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090414, "decimalLat": -27.526694 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70853, "decimalLat": -34.991376 }, "geometry": { "type": "Point", "coordinates": [ 138.709, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059278, "decimalLat": -27.549207 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057672, "decimalLat": -27.551714 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.313217, "decimalLat": -38.38128 }, "geometry": { "type": "Point", "coordinates": [ 145.313, -38.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05895, "decimalLat": -27.54623 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.517539, "decimalLat": -27.707019 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -27.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.572287, "decimalLat": -27.688948 }, "geometry": { "type": "Point", "coordinates": [ 151.572, -27.689 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07414, "decimalLat": -27.546924 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.754463, "decimalLat": -37.908777 }, "geometry": { "type": "Point", "coordinates": [ 147.754, -37.909 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092204, "decimalLat": -27.527231 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.760733, "decimalLat": -37.561313 }, "geometry": { "type": "Point", "coordinates": [ 149.761, -37.561 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069469, "decimalLat": -27.508962 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.671007, "decimalLat": -34.953594 }, "geometry": { "type": "Point", "coordinates": [ 138.671, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.551605, "decimalLat": -34.751112 }, "geometry": { "type": "Point", "coordinates": [ 146.552, -34.751 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092537, "decimalLat": -27.52842 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081211, "decimalLat": -27.508246 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104808, "decimalLat": -27.528997 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.16197, "decimalLat": -27.49988 }, "geometry": { "type": "Point", "coordinates": [ 152.162, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046377, "decimalLat": -27.257246 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.184528, "decimalLat": -27.245117 }, "geometry": { "type": "Point", "coordinates": [ 152.185, -27.245 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868869, "decimalLat": -19.132276 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.132 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734187, "decimalLat": -34.887016 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.882616, "decimalLat": -26.31327 }, "geometry": { "type": "Point", "coordinates": [ 151.883, -26.313 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.8809, "decimalLat": -27.22268 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -27.223 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078398, "decimalLat": -27.51301 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086853, "decimalLat": -27.537783 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.028978, "decimalLat": -27.370953 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -27.371 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057869, "decimalLat": -27.55152 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.250014, "decimalLat": -27.495256 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090625, "decimalLat": -27.52615 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.64811, "decimalLat": -34.876748 }, "geometry": { "type": "Point", "coordinates": [ 138.648, -34.877 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.147295, "decimalLat": -38.628343 }, "geometry": { "type": "Point", "coordinates": [ 143.147, -38.628 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0448, "decimalLat": -27.548397 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.533467, "decimalLat": -36.944812 }, "geometry": { "type": "Point", "coordinates": [ 145.533, -36.945 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.872734, "decimalLat": -26.317833 }, "geometry": { "type": "Point", "coordinates": [ 151.873, -26.318 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069695, "decimalLat": -27.510462 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090976, "decimalLat": -27.526422 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.98075, "decimalLat": -27.275661 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -27.276 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657203, "decimalLat": -34.86521 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.905189, "decimalLat": -37.751359 }, "geometry": { "type": "Point", "coordinates": [ 143.905, -37.751 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079084, "decimalLat": -27.50641 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.354338, "decimalLat": -27.075114 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -27.075 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.643693, "decimalLat": -35.001262 }, "geometry": { "type": "Point", "coordinates": [ 138.644, -35.001 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.27626, "decimalLat": -37.84075 }, "geometry": { "type": "Point", "coordinates": [ 144.276, -37.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.530452, "decimalLat": -27.43465 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -27.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091849, "decimalLat": -27.52713 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.262827, "decimalLat": -37.392962 }, "geometry": { "type": "Point", "coordinates": [ 144.263, -37.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092252, "decimalLat": -27.52811 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716819, "decimalLat": -34.893463 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092151, "decimalLat": -27.527186 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376616, "decimalLat": -28.253645 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.455003, "decimalLat": -36.86838 }, "geometry": { "type": "Point", "coordinates": [ 145.455, -36.868 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.24893, "decimalLat": -33.165669 }, "geometry": { "type": "Point", "coordinates": [ 151.249, -33.166 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244662, "decimalLat": -27.490845 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.835778, "decimalLat": -28.075221 }, "geometry": { "type": "Point", "coordinates": [ 152.836, -28.075 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059709, "decimalLat": -27.550648 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.086136, "decimalLat": -38.28542 }, "geometry": { "type": "Point", "coordinates": [ 145.086, -38.285 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.824358, "decimalLat": -27.249316 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -27.249 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.735358, "decimalLat": -37.923252 }, "geometry": { "type": "Point", "coordinates": [ 147.735, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.886053, "decimalLat": -26.203681 }, "geometry": { "type": "Point", "coordinates": [ 151.886, -26.204 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.522689, "decimalLat": -27.71553 }, "geometry": { "type": "Point", "coordinates": [ 151.523, -27.716 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092056, "decimalLat": -27.527376 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.681412, "decimalLat": -28.000184 }, "geometry": { "type": "Point", "coordinates": [ 152.681, -28.0 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.774648, "decimalLat": -27.928507 }, "geometry": { "type": "Point", "coordinates": [ 152.775, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.809699, "decimalLat": -35.960359 }, "geometry": { "type": "Point", "coordinates": [ 136.81, -35.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095047, "decimalLat": -33.07652 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.902979, "decimalLat": -37.590268 }, "geometry": { "type": "Point", "coordinates": [ 143.903, -37.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.335015, "decimalLat": -27.98275 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -27.983 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004472, "decimalLat": -27.414713 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.723219, "decimalLat": -38.521312 }, "geometry": { "type": "Point", "coordinates": [ 143.723, -38.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074626, "decimalLat": -27.546649 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108142, "decimalLat": -27.527254 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092984, "decimalLat": -27.528054 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059891, "decimalLat": -27.550486 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.00434, "decimalLat": -27.414632 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.020247, "decimalLat": -31.302037 }, "geometry": { "type": "Point", "coordinates": [ 150.02, -31.302 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.773251, "decimalLat": -26.366665 }, "geometry": { "type": "Point", "coordinates": [ 151.773, -26.367 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058658, "decimalLat": -27.551496 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40033, "decimalLat": -28.26029 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103292, "decimalLat": -27.529699 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113403, "decimalLat": -27.528412 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108931, "decimalLat": -27.529203 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363119, "decimalLat": -38.319015 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.944058, "decimalLat": -27.14051 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -27.141 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091715, "decimalLat": -27.527042 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103232, "decimalLat": -27.530253 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638452, "decimalLat": -34.998903 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.999 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083366, "decimalLat": -27.514047 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164187, "decimalLat": -38.671263 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437519, "decimalLat": -27.403585 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.404 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.614948, "decimalLat": -34.90517 }, "geometry": { "type": "Point", "coordinates": [ 138.615, -34.905 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092113, "decimalLat": -27.527072 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.520934, "decimalLat": -27.715276 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -27.715 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.865285, "decimalLat": -28.216728 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -28.217 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072287, "decimalLat": -27.545147 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314079, "decimalLat": -38.376753 }, "geometry": { "type": "Point", "coordinates": [ 145.314, -38.377 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053979, "decimalLat": -27.552963 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.191568, "decimalLat": -27.700378 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.7 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.237488, "decimalLat": -27.922575 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.943759, "decimalLat": -27.391244 }, "geometry": { "type": "Point", "coordinates": [ 151.944, -27.391 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092416, "decimalLat": -27.525189 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063541, "decimalLat": -27.53907 }, "geometry": { "type": "Point", "coordinates": [ 153.064, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655211, "decimalLat": -35.007143 }, "geometry": { "type": "Point", "coordinates": [ 138.655, -35.007 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10986, "decimalLat": -27.527676 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.284107, "decimalLat": -37.838327 }, "geometry": { "type": "Point", "coordinates": [ 144.284, -37.838 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.608628, "decimalLat": -35.058589 }, "geometry": { "type": "Point", "coordinates": [ 138.609, -35.059 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092053, "decimalLat": -27.527325 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09295, "decimalLat": -27.526057 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.645057, "decimalLat": -34.88508 }, "geometry": { "type": "Point", "coordinates": [ 138.645, -34.885 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.553938, "decimalLat": -37.016178 }, "geometry": { "type": "Point", "coordinates": [ 145.554, -37.016 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091417, "decimalLat": -27.527111 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072558, "decimalLat": -27.544505 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.010284, "decimalLat": -26.217537 }, "geometry": { "type": "Point", "coordinates": [ 152.01, -26.218 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090636, "decimalLat": -27.527087 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072972, "decimalLat": -27.514006 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.988815, "decimalLat": -38.355221 }, "geometry": { "type": "Point", "coordinates": [ 144.989, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069888, "decimalLat": -27.510526 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111402, "decimalLat": -27.527283 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073386, "decimalLat": -27.542645 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068644, "decimalLat": -27.225192 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.225 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.603241, "decimalLat": -38.354312 }, "geometry": { "type": "Point", "coordinates": [ 141.603, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.66641, "decimalLat": -34.864123 }, "geometry": { "type": "Point", "coordinates": [ 138.666, -34.864 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.673836, "decimalLat": -35.007924 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.095214, "decimalLat": -37.623067 }, "geometry": { "type": "Point", "coordinates": [ 144.095, -37.623 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.569703, "decimalLat": -34.755787 }, "geometry": { "type": "Point", "coordinates": [ 146.57, -34.756 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074375, "decimalLat": -27.545958 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.263035, "decimalLat": -37.224033 }, "geometry": { "type": "Point", "coordinates": [ 148.263, -37.224 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164151, "decimalLat": -38.67151 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090763, "decimalLat": -27.52635 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073491, "decimalLat": -27.545841 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.088539, "decimalLat": -37.633631 }, "geometry": { "type": "Point", "coordinates": [ 144.089, -37.634 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.203155, "decimalLat": -32.024708 }, "geometry": { "type": "Point", "coordinates": [ 152.203, -32.025 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.130525, "decimalLat": -26.869707 }, "geometry": { "type": "Point", "coordinates": [ 152.131, -26.87 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000139, "decimalLat": -27.284797 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090499, "decimalLat": -27.526451 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.904038, "decimalLat": -37.585991 }, "geometry": { "type": "Point", "coordinates": [ 143.904, -37.586 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73374, "decimalLat": -34.836144 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.836 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.339059, "decimalLat": -27.832712 }, "geometry": { "type": "Point", "coordinates": [ 152.339, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.227416, "decimalLat": -27.295758 }, "geometry": { "type": "Point", "coordinates": [ 152.227, -27.296 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062165, "decimalLat": -27.221882 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.222 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.708339, "decimalLat": -35.213959 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -35.214 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.314781, "decimalLat": -37.522775 }, "geometry": { "type": "Point", "coordinates": [ 144.315, -37.523 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092241, "decimalLat": -27.528067 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.675912, "decimalLat": -35.919654 }, "geometry": { "type": "Point", "coordinates": [ 145.676, -35.92 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.941391, "decimalLat": -26.736536 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -26.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092654, "decimalLat": -27.527806 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066816, "decimalLat": -27.250419 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.25 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.458758, "decimalLat": -28.264777 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.265 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.812767, "decimalLat": -28.545567 }, "geometry": { "type": "Point", "coordinates": [ 151.813, -28.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.677963, "decimalLat": -27.766212 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -27.766 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.481974, "decimalLat": -38.799865 }, "geometry": { "type": "Point", "coordinates": [ 143.482, -38.8 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.692012, "decimalLat": -34.894668 }, "geometry": { "type": "Point", "coordinates": [ 138.692, -34.895 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.103394, "decimalLat": -38.398932 }, "geometry": { "type": "Point", "coordinates": [ 145.103, -38.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095078, "decimalLat": -33.076364 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.126878, "decimalLat": -27.515829 }, "geometry": { "type": "Point", "coordinates": [ 153.127, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070133, "decimalLat": -27.510921 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.531375, "decimalLat": -36.897185 }, "geometry": { "type": "Point", "coordinates": [ 145.531, -36.897 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093175, "decimalLat": -27.526613 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090897, "decimalLat": -27.527179 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069769, "decimalLat": -27.542991 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070025, "decimalLat": -27.510472 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722078, "decimalLat": -34.89147 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1037, "decimalLat": -27.530024 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108151, "decimalLat": -27.527277 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.750333, "decimalLat": -38.631112 }, "geometry": { "type": "Point", "coordinates": [ 145.75, -38.631 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110343, "decimalLat": -27.52754 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058622, "decimalLat": -27.547583 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.483865, "decimalLat": -37.710738 }, "geometry": { "type": "Point", "coordinates": [ 144.484, -37.711 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.738444, "decimalLat": -26.356143 }, "geometry": { "type": "Point", "coordinates": [ 151.738, -26.356 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.570388, "decimalLat": -35.031669 }, "geometry": { "type": "Point", "coordinates": [ 138.57, -35.032 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.568556, "decimalLat": -35.158429 }, "geometry": { "type": "Point", "coordinates": [ 138.569, -35.158 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.686572, "decimalLat": -34.953441 }, "geometry": { "type": "Point", "coordinates": [ 138.687, -34.953 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.560242, "decimalLat": -27.805517 }, "geometry": { "type": "Point", "coordinates": [ 151.56, -27.806 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046285, "decimalLat": -27.255755 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.256 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.554299, "decimalLat": -38.755881 }, "geometry": { "type": "Point", "coordinates": [ 143.554, -38.756 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107374, "decimalLat": -27.527044 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.873537, "decimalLat": -19.120958 }, "geometry": { "type": "Point", "coordinates": [ 146.874, -19.121 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.993624, "decimalLat": -30.560091 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -30.56 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.728863, "decimalLat": -37.921857 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.243713, "decimalLat": -33.127431 }, "geometry": { "type": "Point", "coordinates": [ 151.244, -33.127 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.935081, "decimalLat": -27.70799 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -27.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107201, "decimalLat": -27.527253 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.737455, "decimalLat": -35.031267 }, "geometry": { "type": "Point", "coordinates": [ 138.737, -35.031 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37072, "decimalLat": -27.898677 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.31311, "decimalLat": -38.385292 }, "geometry": { "type": "Point", "coordinates": [ 145.313, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.791614, "decimalLat": -34.814394 }, "geometry": { "type": "Point", "coordinates": [ 135.792, -34.814 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.779573, "decimalLat": -27.339692 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -27.34 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.782745, "decimalLat": -38.420162 }, "geometry": { "type": "Point", "coordinates": [ 142.783, -38.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10536, "decimalLat": -27.531871 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079736, "decimalLat": -27.507743 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.629603, "decimalLat": -34.990619 }, "geometry": { "type": "Point", "coordinates": [ 138.63, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.372105, "decimalLat": -36.930565 }, "geometry": { "type": "Point", "coordinates": [ 145.372, -36.931 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314438, "decimalLat": -38.374699 }, "geometry": { "type": "Point", "coordinates": [ 145.314, -38.375 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.61388, "decimalLat": -27.33966 }, "geometry": { "type": "Point", "coordinates": [ 152.614, -27.34 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09289, "decimalLat": -27.528525 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.957445, "decimalLat": -27.44475 }, "geometry": { "type": "Point", "coordinates": [ 151.957, -27.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108984, "decimalLat": -27.528741 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.065514, "decimalLat": -27.539965 }, "geometry": { "type": "Point", "coordinates": [ 153.066, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722663, "decimalLat": -34.889783 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05953, "decimalLat": -27.548977 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.56328, "decimalLat": -34.762636 }, "geometry": { "type": "Point", "coordinates": [ 146.563, -34.763 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520092, "decimalLat": -30.518807 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.519 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105619, "decimalLat": -27.506572 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400804, "decimalLat": -28.259876 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729592, "decimalLat": -37.925314 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992775, "decimalLat": -27.82282 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08695, "decimalLat": -27.69515 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.695 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.188298, "decimalLat": -27.700662 }, "geometry": { "type": "Point", "coordinates": [ 153.188, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.339059, "decimalLat": -27.832712 }, "geometry": { "type": "Point", "coordinates": [ 152.339, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111322, "decimalLat": -27.528787 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.36318, "decimalLat": -38.318711 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054536, "decimalLat": -27.550583 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001664, "decimalLat": -27.165117 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -27.165 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.598412, "decimalLat": -34.767968 }, "geometry": { "type": "Point", "coordinates": [ 146.598, -34.768 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.567014, "decimalLat": -27.145517 }, "geometry": { "type": "Point", "coordinates": [ 152.567, -27.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163895, "decimalLat": -38.671213 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.648306, "decimalLat": -34.999038 }, "geometry": { "type": "Point", "coordinates": [ 138.648, -34.999 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833467, "decimalLat": -34.094325 }, "geometry": { "type": "Point", "coordinates": [ 150.833, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.893234, "decimalLat": -37.578886 }, "geometry": { "type": "Point", "coordinates": [ 143.893, -37.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638092, "decimalLat": -34.970367 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.97 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.211242, "decimalLat": -38.665558 }, "geometry": { "type": "Point", "coordinates": [ 146.211, -38.666 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090909, "decimalLat": -27.52685 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112446, "decimalLat": -27.528915 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.554704, "decimalLat": -27.723887 }, "geometry": { "type": "Point", "coordinates": [ 151.555, -27.724 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9304, "decimalLat": -27.374178 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -27.374 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092434, "decimalLat": -27.525833 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.87503, "decimalLat": -37.577982 }, "geometry": { "type": "Point", "coordinates": [ 143.875, -37.578 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376965, "decimalLat": -28.253895 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.517939, "decimalLat": -30.520949 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.926966, "decimalLat": -27.328295 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -27.328 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107438, "decimalLat": -27.529098 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.861147, "decimalLat": -38.670077 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.67 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090731, "decimalLat": -27.525843 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376963, "decimalLat": -28.254197 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09134, "decimalLat": -27.527445 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163728, "decimalLat": -38.671405 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376882, "decimalLat": -28.254154 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625656, "decimalLat": -29.893499 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -29.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.106414, "decimalLat": -27.56237 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -27.562 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388533, "decimalLat": -38.357587 }, "geometry": { "type": "Point", "coordinates": [ 146.389, -38.358 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051508, "decimalLat": -27.549193 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103605, "decimalLat": -27.529948 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.276206, "decimalLat": -27.535437 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057814, "decimalLat": -27.55156 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.520404, "decimalLat": -27.728897 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -27.729 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091996, "decimalLat": -27.524041 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095, "decimalLat": -33.076344 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037345, "decimalLat": -27.534134 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.857908, "decimalLat": -38.670192 }, "geometry": { "type": "Point", "coordinates": [ 143.858, -38.67 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374145, "decimalLat": -28.25745 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.763965, "decimalLat": -26.170486 }, "geometry": { "type": "Point", "coordinates": [ 151.764, -26.17 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057898, "decimalLat": -27.553123 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.027138, "decimalLat": -37.750648 }, "geometry": { "type": "Point", "coordinates": [ 142.027, -37.751 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.959969, "decimalLat": -27.37511 }, "geometry": { "type": "Point", "coordinates": [ 151.96, -27.375 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.044413, "decimalLat": -27.552385 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055984, "decimalLat": -27.542547 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719347, "decimalLat": -34.891521 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046265, "decimalLat": -27.257483 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.858214, "decimalLat": -27.543438 }, "geometry": { "type": "Point", "coordinates": [ 152.858, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164689, "decimalLat": -38.67105 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.725136, "decimalLat": -37.926147 }, "geometry": { "type": "Point", "coordinates": [ 147.725, -37.926 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.988663, "decimalLat": -27.1699 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -27.17 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718581, "decimalLat": -34.872211 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.872 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.148386, "decimalLat": -27.790578 }, "geometry": { "type": "Point", "coordinates": [ 153.148, -27.791 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046071, "decimalLat": -27.255986 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.256 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.739505, "decimalLat": -35.009517 }, "geometry": { "type": "Point", "coordinates": [ 138.74, -35.01 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.681668, "decimalLat": -35.044142 }, "geometry": { "type": "Point", "coordinates": [ 138.682, -35.044 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722661, "decimalLat": -34.993764 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.994 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091062, "decimalLat": -27.526464 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.90127, "decimalLat": -27.620698 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105038, "decimalLat": -27.475746 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.476 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091086, "decimalLat": -27.527473 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05738, "decimalLat": -27.551341 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.814643, "decimalLat": -26.36268 }, "geometry": { "type": "Point", "coordinates": [ 151.815, -26.363 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.901505, "decimalLat": -27.62202 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.622 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.113097, "decimalLat": -37.545048 }, "geometry": { "type": "Point", "coordinates": [ 144.113, -37.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073374, "decimalLat": -27.54594 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.711029, "decimalLat": -34.764082 }, "geometry": { "type": "Point", "coordinates": [ 138.711, -34.764 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092702, "decimalLat": -27.528451 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.686944, "decimalLat": -34.826944 }, "geometry": { "type": "Point", "coordinates": [ 135.687, -34.827 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381844, "decimalLat": -31.945322 }, "geometry": { "type": "Point", "coordinates": [ 152.382, -31.945 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.458084, "decimalLat": -28.651857 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.652 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65726, "decimalLat": -35.017479 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -35.017 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.901108, "decimalLat": -37.641448 }, "geometry": { "type": "Point", "coordinates": [ 143.901, -37.641 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.855025, "decimalLat": -38.67038 }, "geometry": { "type": "Point", "coordinates": [ 143.855, -38.67 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.269463, "decimalLat": -38.387027 }, "geometry": { "type": "Point", "coordinates": [ 146.269, -38.387 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070033, "decimalLat": -27.510701 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.599609, "decimalLat": -28.166261 }, "geometry": { "type": "Point", "coordinates": [ 152.6, -28.166 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092332, "decimalLat": -27.528305 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07544, "decimalLat": -27.54413 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.577411, "decimalLat": -35.05391 }, "geometry": { "type": "Point", "coordinates": [ 138.577, -35.054 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860085, "decimalLat": -38.671536 }, "geometry": { "type": "Point", "coordinates": [ 143.86, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.07455, "decimalLat": -27.358393 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092659, "decimalLat": -27.525576 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073654, "decimalLat": -27.545619 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08684, "decimalLat": -27.5091 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.716488, "decimalLat": -27.649976 }, "geometry": { "type": "Point", "coordinates": [ 151.716, -27.65 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090676, "decimalLat": -27.527115 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.707798, "decimalLat": -34.932681 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053805, "decimalLat": -27.54306 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.595065, "decimalLat": -37.384367 }, "geometry": { "type": "Point", "coordinates": [ 144.595, -37.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110445, "decimalLat": -27.527722 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734669, "decimalLat": -34.833733 }, "geometry": { "type": "Point", "coordinates": [ 138.735, -34.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.381533, "decimalLat": -33.585988 }, "geometry": { "type": "Point", "coordinates": [ 149.382, -33.586 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.64148, "decimalLat": -35.009783 }, "geometry": { "type": "Point", "coordinates": [ 138.641, -35.01 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.673014, "decimalLat": -35.015836 }, "geometry": { "type": "Point", "coordinates": [ 138.673, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908114, "decimalLat": -31.446622 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720228, "decimalLat": -34.892554 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091053, "decimalLat": -27.526427 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258212, "decimalLat": -27.502169 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.180975, "decimalLat": -27.365938 }, "geometry": { "type": "Point", "coordinates": [ 152.181, -27.366 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.112528, "decimalLat": -27.258167 }, "geometry": { "type": "Point", "coordinates": [ 152.113, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.706742, "decimalLat": -34.903237 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438686, "decimalLat": -27.40143 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091829, "decimalLat": -27.526965 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093046, "decimalLat": -27.52841 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.039527, "decimalLat": -27.536373 }, "geometry": { "type": "Point", "coordinates": [ 153.04, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.088453, "decimalLat": -37.633679 }, "geometry": { "type": "Point", "coordinates": [ 144.088, -37.634 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.61255, "decimalLat": -27.33853 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09049, "decimalLat": -27.526044 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.840742, "decimalLat": -27.528783 }, "geometry": { "type": "Point", "coordinates": [ 152.841, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.93683, "decimalLat": -27.412157 }, "geometry": { "type": "Point", "coordinates": [ 151.937, -27.412 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.698262, "decimalLat": -38.240926 }, "geometry": { "type": "Point", "coordinates": [ 142.698, -38.241 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.644688, "decimalLat": -34.974736 }, "geometry": { "type": "Point", "coordinates": [ 138.645, -34.975 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387664, "decimalLat": -38.354143 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109639, "decimalLat": -27.527895 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09266, "decimalLat": -27.527154 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.66639, "decimalLat": -34.864108 }, "geometry": { "type": "Point", "coordinates": [ 138.666, -34.864 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.179832, "decimalLat": -27.367816 }, "geometry": { "type": "Point", "coordinates": [ 152.18, -27.368 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.163347, "decimalLat": -27.600956 }, "geometry": { "type": "Point", "coordinates": [ 153.163, -27.601 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.494533, "decimalLat": -35.615388 }, "geometry": { "type": "Point", "coordinates": [ 137.495, -35.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080428, "decimalLat": -27.514119 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189646, "decimalLat": -27.701124 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103551, "decimalLat": -27.530137 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108031, "decimalLat": -27.526817 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092676, "decimalLat": -27.525435 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439202, "decimalLat": -27.40016 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.262629, "decimalLat": -26.403267 }, "geometry": { "type": "Point", "coordinates": [ 152.263, -26.403 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091752, "decimalLat": -27.527196 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091683, "decimalLat": -27.527117 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.674307, "decimalLat": -34.950531 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -34.951 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.310805, "decimalLat": -37.27693 }, "geometry": { "type": "Point", "coordinates": [ 144.311, -37.277 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.378866, "decimalLat": -27.917864 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399635, "decimalLat": -27.497796 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.549081, "decimalLat": -26.790077 }, "geometry": { "type": "Point", "coordinates": [ 152.549, -26.79 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090995, "decimalLat": -27.527393 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090734, "decimalLat": -27.527327 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.41803, "decimalLat": -37.947855 }, "geometry": { "type": "Point", "coordinates": [ 144.418, -37.948 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.344716, "decimalLat": -26.526248 }, "geometry": { "type": "Point", "coordinates": [ 151.345, -26.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.506038, "decimalLat": -27.708083 }, "geometry": { "type": "Point", "coordinates": [ 151.506, -27.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.988983, "decimalLat": -27.169187 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -27.169 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.295824, "decimalLat": -28.122101 }, "geometry": { "type": "Point", "coordinates": [ 151.296, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749835, "decimalLat": -26.155059 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377579, "decimalLat": -28.254074 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.567505, "decimalLat": -27.797997 }, "geometry": { "type": "Point", "coordinates": [ 151.568, -27.798 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30608, "decimalLat": -28.850306 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.854818, "decimalLat": -27.240482 }, "geometry": { "type": "Point", "coordinates": [ 152.855, -27.24 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.582034, "decimalLat": -35.145573 }, "geometry": { "type": "Point", "coordinates": [ 138.582, -35.146 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221192, "decimalLat": -27.582813 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -27.583 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072621, "decimalLat": -27.549094 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.677913, "decimalLat": -27.987377 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -27.987 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07446, "decimalLat": -27.546345 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05862, "decimalLat": -27.55123 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.828628, "decimalLat": -34.097136 }, "geometry": { "type": "Point", "coordinates": [ 150.829, -34.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519282, "decimalLat": -30.520446 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1833, "decimalLat": -27.53118 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.04905, "decimalLat": -27.548717 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.087121, "decimalLat": -27.510946 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520646, "decimalLat": -30.52016 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.866225, "decimalLat": -28.211335 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.211 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656039, "decimalLat": -35.012666 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.013 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730715, "decimalLat": -34.89099 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1833, "decimalLat": -27.53118 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.732762, "decimalLat": -37.921368 }, "geometry": { "type": "Point", "coordinates": [ 147.733, -37.921 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.70233, "decimalLat": -21.71062 }, "geometry": { "type": "Point", "coordinates": [ 148.702, -21.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.112036, "decimalLat": -27.372359 }, "geometry": { "type": "Point", "coordinates": [ 152.112, -27.372 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.009215, "decimalLat": -27.557665 }, "geometry": { "type": "Point", "coordinates": [ 152.009, -27.558 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822678, "decimalLat": -34.101697 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092194, "decimalLat": -27.527039 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10664, "decimalLat": -27.528427 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999392, "decimalLat": -27.283831 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655269, "decimalLat": -34.868468 }, "geometry": { "type": "Point", "coordinates": [ 138.655, -34.868 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7007, "decimalLat": -21.722981 }, "geometry": { "type": "Point", "coordinates": [ 148.701, -21.723 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884797, "decimalLat": -34.02373 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 145.451932, "decimalLat": -35.821447 }, "geometry": { "type": "Point", "coordinates": [ 145.452, -35.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.051549, "decimalLat": -37.892249 }, "geometry": { "type": "Point", "coordinates": [ 142.052, -37.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.675003, "decimalLat": -28.121114 }, "geometry": { "type": "Point", "coordinates": [ 152.675, -28.121 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090658, "decimalLat": -27.526143 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.202392, "decimalLat": -38.651463 }, "geometry": { "type": "Point", "coordinates": [ 146.202, -38.651 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376619, "decimalLat": -28.253036 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.371586, "decimalLat": -27.899878 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.834918, "decimalLat": -38.390781 }, "geometry": { "type": "Point", "coordinates": [ 142.835, -38.391 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26665, "decimalLat": -28.009206 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -28.009 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.701535, "decimalLat": -34.902362 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.902 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105778, "decimalLat": -27.530026 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657029, "decimalLat": -35.011856 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -35.012 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.19849, "decimalLat": -38.656352 }, "geometry": { "type": "Point", "coordinates": [ 146.198, -38.656 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110391, "decimalLat": -27.529831 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.731308, "decimalLat": -37.923122 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.376018, "decimalLat": -27.91869 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.282438, "decimalLat": -38.756962 }, "geometry": { "type": "Point", "coordinates": [ 143.282, -38.757 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.203407, "decimalLat": -38.48782 }, "geometry": { "type": "Point", "coordinates": [ 146.203, -38.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092059, "decimalLat": -27.525749 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.318551, "decimalLat": -27.899753 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105445, "decimalLat": -27.529979 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.889343, "decimalLat": -27.597237 }, "geometry": { "type": "Point", "coordinates": [ 151.889, -27.597 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090722, "decimalLat": -27.526574 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.853083, "decimalLat": -34.059699 }, "geometry": { "type": "Point", "coordinates": [ 150.853, -34.06 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.54132, "decimalLat": -35.31988 }, "geometry": { "type": "Point", "coordinates": [ 138.541, -35.32 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058928, "decimalLat": -27.55141 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112385, "decimalLat": -27.52877 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053909, "decimalLat": -27.53725 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054639, "decimalLat": -27.552149 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.708259, "decimalLat": -34.932646 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65626, "decimalLat": -35.007155 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.007 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0931, "decimalLat": -27.526368 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.51732, "decimalLat": -27.566295 }, "geometry": { "type": "Point", "coordinates": [ 151.517, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.997334, "decimalLat": -27.436108 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -27.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.89609, "decimalLat": -27.596888 }, "geometry": { "type": "Point", "coordinates": [ 151.896, -27.597 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.528623, "decimalLat": -26.182702 }, "geometry": { "type": "Point", "coordinates": [ 152.529, -26.183 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084789, "decimalLat": -27.510706 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.217303, "decimalLat": -27.852309 }, "geometry": { "type": "Point", "coordinates": [ 153.217, -27.852 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.728863, "decimalLat": -37.921857 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.095627, "decimalLat": -27.83785 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -27.838 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091795, "decimalLat": -27.526884 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868665, "decimalLat": -19.129978 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.13 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.131456, "decimalLat": -38.387312 }, "geometry": { "type": "Point", "coordinates": [ 145.131, -38.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.044412, "decimalLat": -27.539213 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.401382, "decimalLat": -27.45717 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -27.457 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.513683, "decimalLat": -27.285249 }, "geometry": { "type": "Point", "coordinates": [ 151.514, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.102692, "decimalLat": -27.569583 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090703, "decimalLat": -27.52679 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108068, "decimalLat": -27.527245 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.826933, "decimalLat": -34.692015 }, "geometry": { "type": "Point", "coordinates": [ 138.827, -34.692 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072205, "decimalLat": -27.545289 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729462, "decimalLat": -34.887168 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.804466, "decimalLat": -26.750442 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -26.75 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05986, "decimalLat": -27.550073 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.673323, "decimalLat": -35.015174 }, "geometry": { "type": "Point", "coordinates": [ 138.673, -35.015 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052608, "decimalLat": -27.550268 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656079, "decimalLat": -34.865973 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -34.866 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103187, "decimalLat": -27.528445 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109858, "decimalLat": -27.527164 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.728863, "decimalLat": -37.921857 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059803, "decimalLat": -27.54387 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091489, "decimalLat": -27.52732 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.928023, "decimalLat": -27.277654 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -27.278 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914823, "decimalLat": -30.496838 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -30.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.023019, "decimalLat": -37.671753 }, "geometry": { "type": "Point", "coordinates": [ 144.023, -37.672 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072713, "decimalLat": -27.546061 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003097, "decimalLat": -27.412663 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.898459, "decimalLat": -27.652554 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -27.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091836, "decimalLat": -27.527003 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061062, "decimalLat": -27.550348 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.443342, "decimalLat": -27.402293 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -27.402 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.506139, "decimalLat": -35.120535 }, "geometry": { "type": "Point", "coordinates": [ 138.506, -35.121 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076835, "decimalLat": -27.541188 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092052, "decimalLat": -27.527287 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.077523, "decimalLat": -27.50788 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.579385, "decimalLat": -27.917737 }, "geometry": { "type": "Point", "coordinates": [ 152.579, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110354, "decimalLat": -27.527716 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103838, "decimalLat": -27.530012 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.933041, "decimalLat": -28.038584 }, "geometry": { "type": "Point", "coordinates": [ 152.933, -28.039 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.075164, "decimalLat": -27.3588 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.90378, "decimalLat": -37.750665 }, "geometry": { "type": "Point", "coordinates": [ 143.904, -37.751 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092269, "decimalLat": -27.527209 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.004093, "decimalLat": -27.156922 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -27.157 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.02729, "decimalLat": -26.677008 }, "geometry": { "type": "Point", "coordinates": [ 152.027, -26.677 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.681379, "decimalLat": -35.045324 }, "geometry": { "type": "Point", "coordinates": [ 138.681, -35.045 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057512, "decimalLat": -27.550936 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103336, "decimalLat": -27.526601 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.821431, "decimalLat": -28.526999 }, "geometry": { "type": "Point", "coordinates": [ 151.821, -28.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.345282, "decimalLat": -35.904273 }, "geometry": { "type": "Point", "coordinates": [ 145.345, -35.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082907, "decimalLat": -27.51496 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719949, "decimalLat": -34.890426 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082544, "decimalLat": -27.510852 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730815, "decimalLat": -34.890525 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.542274, "decimalLat": -34.513297 }, "geometry": { "type": "Point", "coordinates": [ 150.542, -34.513 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073851, "decimalLat": -27.54557 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.664025, "decimalLat": -26.394898 }, "geometry": { "type": "Point", "coordinates": [ 152.664, -26.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072355, "decimalLat": -27.543109 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054747, "decimalLat": -27.552139 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377338, "decimalLat": -28.25385 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.635617, "decimalLat": -28.235111 }, "geometry": { "type": "Point", "coordinates": [ 152.636, -28.235 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718791, "decimalLat": -34.891739 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.04629, "decimalLat": -27.549124 }, "geometry": { "type": "Point", "coordinates": [ 153.046, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.896025, "decimalLat": -37.643605 }, "geometry": { "type": "Point", "coordinates": [ 143.896, -37.644 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086187, "decimalLat": -27.510152 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.029073, "decimalLat": -26.207567 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -26.208 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.447205, "decimalLat": -36.863853 }, "geometry": { "type": "Point", "coordinates": [ 145.447, -36.864 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0579, "decimalLat": -27.551396 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.403612, "decimalLat": -38.773392 }, "geometry": { "type": "Point", "coordinates": [ 143.404, -38.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.714652, "decimalLat": -34.908954 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.937342, "decimalLat": -26.176018 }, "geometry": { "type": "Point", "coordinates": [ 151.937, -26.176 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.946827, "decimalLat": -27.423595 }, "geometry": { "type": "Point", "coordinates": [ 151.947, -27.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.451448, "decimalLat": -28.161184 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400447, "decimalLat": -28.257754 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403179, "decimalLat": -27.493428 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101558, "decimalLat": -27.734704 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.735 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.044985, "decimalLat": -27.258352 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.862967, "decimalLat": -26.481111 }, "geometry": { "type": "Point", "coordinates": [ 151.863, -26.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729613, "decimalLat": -37.925012 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.245483, "decimalLat": -38.037853 }, "geometry": { "type": "Point", "coordinates": [ 141.245, -38.038 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.248252, "decimalLat": -27.496345 }, "geometry": { "type": "Point", "coordinates": [ 152.248, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.517344, "decimalLat": -30.522216 }, "geometry": { "type": "Point", "coordinates": [ 151.517, -30.522 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.436593, "decimalLat": -37.955359 }, "geometry": { "type": "Point", "coordinates": [ 144.437, -37.955 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104528, "decimalLat": -27.529632 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.25797, "decimalLat": -37.873663 }, "geometry": { "type": "Point", "coordinates": [ 144.258, -37.874 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103259, "decimalLat": -27.528061 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.597224, "decimalLat": -37.83437 }, "geometry": { "type": "Point", "coordinates": [ 145.597, -37.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.34441, "decimalLat": -27.832215 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091568, "decimalLat": -27.526974 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.644207, "decimalLat": -30.48686 }, "geometry": { "type": "Point", "coordinates": [ 151.644, -30.487 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520276, "decimalLat": -30.520486 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092076, "decimalLat": -27.526994 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.377058, "decimalLat": -27.919485 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004748, "decimalLat": -27.411938 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -27.412 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.193314, "decimalLat": -27.553208 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.664066, "decimalLat": -38.761946 }, "geometry": { "type": "Point", "coordinates": [ 143.664, -38.762 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.042556, "decimalLat": -27.29743 }, "geometry": { "type": "Point", "coordinates": [ 152.043, -27.297 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.60936, "decimalLat": -27.396276 }, "geometry": { "type": "Point", "coordinates": [ 152.609, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656877, "decimalLat": -34.865196 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071112, "decimalLat": -27.54386 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103639, "decimalLat": -27.530279 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.815377, "decimalLat": -26.166034 }, "geometry": { "type": "Point", "coordinates": [ 151.815, -26.166 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104554, "decimalLat": -27.530665 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.883287, "decimalLat": -37.639101 }, "geometry": { "type": "Point", "coordinates": [ 143.883, -37.639 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092783, "decimalLat": -27.525315 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.234426, "decimalLat": -33.169968 }, "geometry": { "type": "Point", "coordinates": [ 151.234, -33.17 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388564, "decimalLat": -38.354311 }, "geometry": { "type": "Point", "coordinates": [ 146.389, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.277022, "decimalLat": -38.931203 }, "geometry": { "type": "Point", "coordinates": [ 146.277, -38.931 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.134292, "decimalLat": -27.563412 }, "geometry": { "type": "Point", "coordinates": [ 153.134, -27.563 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.76051, "decimalLat": -37.563204 }, "geometry": { "type": "Point", "coordinates": [ 149.761, -37.563 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.618466, "decimalLat": -38.554355 }, "geometry": { "type": "Point", "coordinates": [ 143.618, -38.554 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000144, "decimalLat": -27.284172 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904037, "decimalLat": -31.441981 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107727, "decimalLat": -27.527094 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.771383, "decimalLat": -38.479531 }, "geometry": { "type": "Point", "coordinates": [ 146.771, -38.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70584, "decimalLat": -34.903296 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400813, "decimalLat": -28.258216 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091627, "decimalLat": -27.527269 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091647, "decimalLat": -27.527162 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.00515, "decimalLat": -38.80985 }, "geometry": { "type": "Point", "coordinates": [ 146.005, -38.81 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055047, "decimalLat": -27.539189 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.520093, "decimalLat": -38.834472 }, "geometry": { "type": "Point", "coordinates": [ 143.52, -38.834 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821945, "decimalLat": -34.101742 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092673, "decimalLat": -27.525578 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090647, "decimalLat": -27.525978 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073672, "decimalLat": -27.545741 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.789672, "decimalLat": -36.805703 }, "geometry": { "type": "Point", "coordinates": [ 145.79, -36.806 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.869445, "decimalLat": -19.125194 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.375928, "decimalLat": -37.876623 }, "geometry": { "type": "Point", "coordinates": [ 144.376, -37.877 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.85731, "decimalLat": -27.544032 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.095171, "decimalLat": -27.532747 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.497728, "decimalLat": -37.068972 }, "geometry": { "type": "Point", "coordinates": [ 145.498, -37.069 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720037, "decimalLat": -34.891815 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.983872, "decimalLat": -26.242312 }, "geometry": { "type": "Point", "coordinates": [ 152.984, -26.242 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.370621, "decimalLat": -27.837719 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.838 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103474, "decimalLat": -27.5305 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090655, "decimalLat": -27.526837 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.786925, "decimalLat": -27.496283 }, "geometry": { "type": "Point", "coordinates": [ 151.787, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090705, "decimalLat": -27.525766 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103357, "decimalLat": -27.53014 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.346977, "decimalLat": -38.286255 }, "geometry": { "type": "Point", "coordinates": [ 142.347, -38.286 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.199125, "decimalLat": -35.9091 }, "geometry": { "type": "Point", "coordinates": [ 137.199, -35.909 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092373, "decimalLat": -27.527798 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377351, "decimalLat": -28.254173 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.851267, "decimalLat": -34.080512 }, "geometry": { "type": "Point", "coordinates": [ 150.851, -34.081 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363733, "decimalLat": -38.318792 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103679, "decimalLat": -27.530469 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086041, "decimalLat": -27.506383 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103378, "decimalLat": -27.53013 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.173263, "decimalLat": -32.73558 }, "geometry": { "type": "Point", "coordinates": [ 152.173, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054186, "decimalLat": -27.537686 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722552, "decimalLat": -34.891724 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164746, "decimalLat": -38.6711 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057055, "decimalLat": -27.549681 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.042253, "decimalLat": -27.653075 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -27.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722268, "decimalLat": -34.892546 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.61785, "decimalLat": -34.903661 }, "geometry": { "type": "Point", "coordinates": [ 138.618, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402031, "decimalLat": -28.260886 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657688, "decimalLat": -35.012212 }, "geometry": { "type": "Point", "coordinates": [ 138.658, -35.012 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.263947, "decimalLat": -37.222 }, "geometry": { "type": "Point", "coordinates": [ 148.264, -37.222 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.684193, "decimalLat": -38.529255 }, "geometry": { "type": "Point", "coordinates": [ 143.684, -38.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731874, "decimalLat": -34.889212 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.336462, "decimalLat": -37.006274 }, "geometry": { "type": "Point", "coordinates": [ 145.336, -37.006 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.538003, "decimalLat": -32.89085 }, "geometry": { "type": "Point", "coordinates": [ 151.538, -32.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108924, "decimalLat": -27.527201 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109669, "decimalLat": -27.529632 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078347, "decimalLat": -27.505169 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.899634, "decimalLat": -37.573988 }, "geometry": { "type": "Point", "coordinates": [ 143.9, -37.574 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.66653, "decimalLat": -34.864238 }, "geometry": { "type": "Point", "coordinates": [ 138.667, -34.864 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377542, "decimalLat": -28.254062 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072203, "decimalLat": -27.545317 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.902391, "decimalLat": -27.621631 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.622 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520479, "decimalLat": -30.520765 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.814158, "decimalLat": -26.165707 }, "geometry": { "type": "Point", "coordinates": [ 151.814, -26.166 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.656471, "decimalLat": -38.552982 }, "geometry": { "type": "Point", "coordinates": [ 146.656, -38.553 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.316742, "decimalLat": -28.033172 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.033 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090532, "decimalLat": -27.52685 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069907, "decimalLat": -27.510498 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599459, "decimalLat": -29.869625 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -29.87 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705517, "decimalLat": -34.935799 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.936 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103723, "decimalLat": -27.529588 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.358521, "decimalLat": -28.093855 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058113, "decimalLat": -27.552 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000124, "decimalLat": -27.284158 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.809119, "decimalLat": -35.960489 }, "geometry": { "type": "Point", "coordinates": [ 136.809, -35.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057035, "decimalLat": -27.544517 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164078, "decimalLat": -38.671263 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372034, "decimalLat": -27.914926 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715387, "decimalLat": -34.892758 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090643, "decimalLat": -27.526399 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.610612, "decimalLat": -27.811079 }, "geometry": { "type": "Point", "coordinates": [ 151.611, -27.811 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.901959, "decimalLat": -27.656519 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.657 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109701, "decimalLat": -27.527594 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091006, "decimalLat": -27.527536 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.880211, "decimalLat": -36.085168 }, "geometry": { "type": "Point", "coordinates": [ 146.88, -36.085 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057542, "decimalLat": -27.551499 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.162124, "decimalLat": -38.670601 }, "geometry": { "type": "Point", "coordinates": [ 146.162, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.831674, "decimalLat": -28.070817 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -28.071 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.673118, "decimalLat": -35.921747 }, "geometry": { "type": "Point", "coordinates": [ 145.673, -35.922 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003661, "decimalLat": -27.413612 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.685395, "decimalLat": -34.953855 }, "geometry": { "type": "Point", "coordinates": [ 138.685, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.196887, "decimalLat": -38.577281 }, "geometry": { "type": "Point", "coordinates": [ 146.197, -38.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399462, "decimalLat": -28.260471 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.940294, "decimalLat": -34.999804 }, "geometry": { "type": "Point", "coordinates": [ 138.94, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821405, "decimalLat": -34.102752 }, "geometry": { "type": "Point", "coordinates": [ 150.821, -34.103 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11002, "decimalLat": -27.527181 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.005852, "decimalLat": -26.165776 }, "geometry": { "type": "Point", "coordinates": [ 152.006, -26.166 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.998947, "decimalLat": -34.047889 }, "geometry": { "type": "Point", "coordinates": [ 150.999, -34.048 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377075, "decimalLat": -28.254443 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085263, "decimalLat": -27.510403 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.56022, "decimalLat": -35.260287 }, "geometry": { "type": "Point", "coordinates": [ 138.56, -35.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.868715, "decimalLat": -38.661087 }, "geometry": { "type": "Point", "coordinates": [ 143.869, -38.661 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110273, "decimalLat": -27.526977 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036636, "decimalLat": -27.534179 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092277, "decimalLat": -27.527076 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.103395, "decimalLat": -27.381247 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -27.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069864, "decimalLat": -27.510405 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164428, "decimalLat": -38.67122 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731696, "decimalLat": -34.891105 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.670219, "decimalLat": -35.020609 }, "geometry": { "type": "Point", "coordinates": [ 138.67, -35.021 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.907428, "decimalLat": -28.1741 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -28.174 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.70128, "decimalLat": -26.170845 }, "geometry": { "type": "Point", "coordinates": [ 151.701, -26.171 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095214, "decimalLat": -33.076733 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.00348, "decimalLat": -27.413985 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.852118, "decimalLat": -34.729521 }, "geometry": { "type": "Point", "coordinates": [ 138.852, -34.73 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.252762, "decimalLat": -28.102578 }, "geometry": { "type": "Point", "coordinates": [ 151.253, -28.103 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079621, "decimalLat": -27.514858 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.636047, "decimalLat": -38.783908 }, "geometry": { "type": "Point", "coordinates": [ 143.636, -38.784 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073212, "decimalLat": -27.5471 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058423, "decimalLat": -27.781237 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.781 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65764, "decimalLat": -34.868997 }, "geometry": { "type": "Point", "coordinates": [ 138.658, -34.869 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.360646, "decimalLat": -38.318408 }, "geometry": { "type": "Point", "coordinates": [ 142.361, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.591797, "decimalLat": -26.894878 }, "geometry": { "type": "Point", "coordinates": [ 152.592, -26.895 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.382105, "decimalLat": -27.890182 }, "geometry": { "type": "Point", "coordinates": [ 151.382, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.381744, "decimalLat": -27.952442 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.952 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.850923, "decimalLat": -38.668251 }, "geometry": { "type": "Point", "coordinates": [ 143.851, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.749319, "decimalLat": -34.991879 }, "geometry": { "type": "Point", "coordinates": [ 138.749, -34.992 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.376795, "decimalLat": -38.68861 }, "geometry": { "type": "Point", "coordinates": [ 143.377, -38.689 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.630126, "decimalLat": -38.761297 }, "geometry": { "type": "Point", "coordinates": [ 143.63, -38.761 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.739349, "decimalLat": -28.22348 }, "geometry": { "type": "Point", "coordinates": [ 152.739, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108872, "decimalLat": -27.526826 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.627545, "decimalLat": -38.340237 }, "geometry": { "type": "Point", "coordinates": [ 142.628, -38.34 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.61072, "decimalLat": -27.381851 }, "geometry": { "type": "Point", "coordinates": [ 151.611, -27.382 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103622, "decimalLat": -27.530045 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.993655, "decimalLat": -30.559891 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -30.56 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.343408, "decimalLat": -27.401804 }, "geometry": { "type": "Point", "coordinates": [ 152.343, -27.402 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.892328, "decimalLat": -27.635564 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -27.636 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107383, "decimalLat": -27.527283 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.614245, "decimalLat": -27.338413 }, "geometry": { "type": "Point", "coordinates": [ 152.614, -27.338 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.002933, "decimalLat": -27.413905 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.593504, "decimalLat": -37.331094 }, "geometry": { "type": "Point", "coordinates": [ 144.594, -37.331 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.510925, "decimalLat": -27.554842 }, "geometry": { "type": "Point", "coordinates": [ 151.511, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.237972, "decimalLat": -27.526899 }, "geometry": { "type": "Point", "coordinates": [ 153.238, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105331, "decimalLat": -27.529134 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046493, "decimalLat": -27.257024 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.447228, "decimalLat": -28.095665 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993725, "decimalLat": -27.8238 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082975, "decimalLat": -27.515683 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.007447, "decimalLat": -37.730908 }, "geometry": { "type": "Point", "coordinates": [ 142.007, -37.731 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.721606, "decimalLat": -37.250084 }, "geometry": { "type": "Point", "coordinates": [ 143.722, -37.25 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.614203, "decimalLat": -34.908602 }, "geometry": { "type": "Point", "coordinates": [ 138.614, -34.909 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.696485, "decimalLat": -34.958516 }, "geometry": { "type": "Point", "coordinates": [ 138.696, -34.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061647, "decimalLat": -27.538212 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.041906, "decimalLat": -27.297637 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -27.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051418, "decimalLat": -27.548366 }, "geometry": { "type": "Point", "coordinates": [ 153.051, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.642226, "decimalLat": -28.144933 }, "geometry": { "type": "Point", "coordinates": [ 152.642, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.998367, "decimalLat": -37.692515 }, "geometry": { "type": "Point", "coordinates": [ 143.998, -37.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.103071, "decimalLat": -27.570377 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.971231, "decimalLat": -38.477069 }, "geometry": { "type": "Point", "coordinates": [ 142.971, -38.477 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.588264, "decimalLat": -27.675954 }, "geometry": { "type": "Point", "coordinates": [ 151.588, -27.676 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.859815, "decimalLat": -27.271775 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -27.272 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104875, "decimalLat": -27.810725 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.811 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111895, "decimalLat": -27.52784 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091925, "decimalLat": -27.527145 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.600403, "decimalLat": -38.352378 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.352 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112608, "decimalLat": -27.528238 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.078645, "decimalLat": -30.927708 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -30.928 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.045113, "decimalLat": -27.258337 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076257, "decimalLat": -27.498906 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164139, "decimalLat": -38.671447 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104172, "decimalLat": -27.528197 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.127659, "decimalLat": -38.177495 }, "geometry": { "type": "Point", "coordinates": [ 145.128, -38.177 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.123872, "decimalLat": -30.295235 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.295 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722534, "decimalLat": -34.892044 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.818252, "decimalLat": -26.582475 }, "geometry": { "type": "Point", "coordinates": [ 151.818, -26.582 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105607, "decimalLat": -27.529631 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091717, "decimalLat": -27.527117 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08911, "decimalLat": -27.220584 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -27.221 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.838958, "decimalLat": -38.683544 }, "geometry": { "type": "Point", "coordinates": [ 143.839, -38.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255037, "decimalLat": -27.507872 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.689406, "decimalLat": -34.953903 }, "geometry": { "type": "Point", "coordinates": [ 138.689, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.858214, "decimalLat": -27.543438 }, "geometry": { "type": "Point", "coordinates": [ 152.858, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.636308, "decimalLat": -34.968851 }, "geometry": { "type": "Point", "coordinates": [ 138.636, -34.969 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375286, "decimalLat": -28.252449 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092479, "decimalLat": -27.527796 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.827215, "decimalLat": -28.127751 }, "geometry": { "type": "Point", "coordinates": [ 152.827, -28.128 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.809497, "decimalLat": -35.960413 }, "geometry": { "type": "Point", "coordinates": [ 136.809, -35.96 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.725819, "decimalLat": -37.921987 }, "geometry": { "type": "Point", "coordinates": [ 147.726, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103294, "decimalLat": -27.529443 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.619855, "decimalLat": -38.781235 }, "geometry": { "type": "Point", "coordinates": [ 143.62, -38.781 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.369907, "decimalLat": -35.466071 }, "geometry": { "type": "Point", "coordinates": [ 138.37, -35.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.647443, "decimalLat": -27.276266 }, "geometry": { "type": "Point", "coordinates": [ 151.647, -27.276 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914078, "decimalLat": -30.490154 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -30.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091526, "decimalLat": -27.527102 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.826933, "decimalLat": -34.692015 }, "geometry": { "type": "Point", "coordinates": [ 138.827, -34.692 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.876029, "decimalLat": -34.056797 }, "geometry": { "type": "Point", "coordinates": [ 150.876, -34.057 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003935, "decimalLat": -26.684561 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -26.685 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090805, "decimalLat": -27.52694 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.853333, "decimalLat": -28.756389 }, "geometry": { "type": "Point", "coordinates": [ 151.853, -28.756 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110335, "decimalLat": -27.529116 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163925, "decimalLat": -38.671222 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.221483, "decimalLat": -37.742318 }, "geometry": { "type": "Point", "coordinates": [ 145.221, -37.742 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.687802, "decimalLat": -21.687499 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.687 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.002571, "decimalLat": -27.297549 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -27.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.248159, "decimalLat": -27.496388 }, "geometry": { "type": "Point", "coordinates": [ 152.248, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003284, "decimalLat": -27.413926 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109147, "decimalLat": -27.528867 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860686, "decimalLat": -38.667966 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036033, "decimalLat": -27.530702 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092499, "decimalLat": -27.528285 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109002, "decimalLat": -27.527001 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731498, "decimalLat": -34.891698 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109327, "decimalLat": -27.519186 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085778, "decimalLat": -27.516975 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437988, "decimalLat": -27.400258 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732738, "decimalLat": -34.890572 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716955, "decimalLat": -34.892378 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.110878, "decimalLat": -27.566252 }, "geometry": { "type": "Point", "coordinates": [ 152.111, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056448, "decimalLat": -27.550611 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.616614, "decimalLat": -38.670911 }, "geometry": { "type": "Point", "coordinates": [ 145.617, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103918, "decimalLat": -27.529717 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.089242, "decimalLat": -27.221284 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -27.221 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378216, "decimalLat": -28.255464 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.575003, "decimalLat": -35.024082 }, "geometry": { "type": "Point", "coordinates": [ 138.575, -35.024 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103306, "decimalLat": -27.528371 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.678772, "decimalLat": -35.007839 }, "geometry": { "type": "Point", "coordinates": [ 138.679, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.975003, "decimalLat": -38.500058 }, "geometry": { "type": "Point", "coordinates": [ 142.975, -38.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720299, "decimalLat": -34.862727 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323694, "decimalLat": -28.830138 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090762, "decimalLat": -27.525848 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.63644, "decimalLat": -35.008008 }, "geometry": { "type": "Point", "coordinates": [ 138.636, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.10295, "decimalLat": -38.143394 }, "geometry": { "type": "Point", "coordinates": [ 143.103, -38.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.592622, "decimalLat": -38.359969 }, "geometry": { "type": "Point", "coordinates": [ 141.593, -38.36 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090761, "decimalLat": -27.525862 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090503, "decimalLat": -27.525871 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095092, "decimalLat": -33.076542 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.953222, "decimalLat": -27.475871 }, "geometry": { "type": "Point", "coordinates": [ 151.953, -27.476 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400465, "decimalLat": -28.257904 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.89078, "decimalLat": -37.583977 }, "geometry": { "type": "Point", "coordinates": [ 143.891, -37.584 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.638988, "decimalLat": -38.330547 }, "geometry": { "type": "Point", "coordinates": [ 142.639, -38.331 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.267537, "decimalLat": -38.131095 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104458, "decimalLat": -27.530532 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.476722, "decimalLat": -36.938743 }, "geometry": { "type": "Point", "coordinates": [ 145.477, -36.939 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.609603, "decimalLat": -27.402722 }, "geometry": { "type": "Point", "coordinates": [ 152.61, -27.403 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.864822, "decimalLat": -19.137469 }, "geometry": { "type": "Point", "coordinates": [ 146.865, -19.137 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103282, "decimalLat": -27.528484 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.63957, "decimalLat": -34.987887 }, "geometry": { "type": "Point", "coordinates": [ 138.64, -34.988 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821931, "decimalLat": -34.101853 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.514241, "decimalLat": -35.175498 }, "geometry": { "type": "Point", "coordinates": [ 138.514, -35.175 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378345, "decimalLat": -28.255192 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363803, "decimalLat": -38.32055 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.321 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092529, "decimalLat": -27.527602 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.865292, "decimalLat": -26.379903 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -26.38 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.802621, "decimalLat": -26.757665 }, "geometry": { "type": "Point", "coordinates": [ 152.803, -26.758 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.522976, "decimalLat": -30.627219 }, "geometry": { "type": "Point", "coordinates": [ 151.523, -30.627 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.56021, "decimalLat": -35.260289 }, "geometry": { "type": "Point", "coordinates": [ 138.56, -35.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092972, "decimalLat": -27.528041 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.033118, "decimalLat": -27.539771 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.858764, "decimalLat": -34.078103 }, "geometry": { "type": "Point", "coordinates": [ 150.859, -34.078 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163833, "decimalLat": -38.671395 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059895, "decimalLat": -27.54948 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6931, "decimalLat": -34.919845 }, "geometry": { "type": "Point", "coordinates": [ 138.693, -34.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061499, "decimalLat": -27.549867 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.508828, "decimalLat": -27.425509 }, "geometry": { "type": "Point", "coordinates": [ 153.509, -27.426 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.375127, "decimalLat": -27.918394 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.997765, "decimalLat": -27.287858 }, "geometry": { "type": "Point", "coordinates": [ 152.998, -27.288 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.5694, "decimalLat": -34.756295 }, "geometry": { "type": "Point", "coordinates": [ 146.569, -34.756 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.708508, "decimalLat": -27.416454 }, "geometry": { "type": "Point", "coordinates": [ 151.709, -27.416 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.971273, "decimalLat": -38.551922 }, "geometry": { "type": "Point", "coordinates": [ 143.971, -38.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.103011, "decimalLat": -27.570395 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.3879, "decimalLat": -38.354901 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.497497, "decimalLat": -32.950328 }, "geometry": { "type": "Point", "coordinates": [ 151.497, -32.95 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092485, "decimalLat": -27.525675 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092255, "decimalLat": -27.524754 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105988, "decimalLat": -27.529611 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.170494, "decimalLat": -37.507938 }, "geometry": { "type": "Point", "coordinates": [ 144.17, -37.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095061, "decimalLat": -33.076605 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071632, "decimalLat": -27.502555 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093054, "decimalLat": -27.526162 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.826933, "decimalLat": -34.692015 }, "geometry": { "type": "Point", "coordinates": [ 138.827, -34.692 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438719, "decimalLat": -27.402164 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.402 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10542, "decimalLat": -27.531301 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104475, "decimalLat": -27.530314 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052426, "decimalLat": -27.55047 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400506, "decimalLat": -28.260442 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073888, "decimalLat": -27.546088 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992275, "decimalLat": -27.824058 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363093, "decimalLat": -38.318477 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.506205, "decimalLat": -37.649555 }, "geometry": { "type": "Point", "coordinates": [ 144.506, -37.65 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090961, "decimalLat": -27.526928 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44915, "decimalLat": -28.101966 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.102 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.377272, "decimalLat": -27.0817 }, "geometry": { "type": "Point", "coordinates": [ 152.377, -27.082 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07426, "decimalLat": -27.546273 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091027, "decimalLat": -27.527117 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.373429, "decimalLat": -27.912437 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.186332, "decimalLat": -27.897178 }, "geometry": { "type": "Point", "coordinates": [ 153.186, -27.897 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.876623, "decimalLat": -27.585871 }, "geometry": { "type": "Point", "coordinates": [ 151.877, -27.586 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.861558, "decimalLat": -38.667222 }, "geometry": { "type": "Point", "coordinates": [ 143.862, -38.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090571, "decimalLat": -27.526969 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090863, "decimalLat": -27.527357 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.90373, "decimalLat": -37.640797 }, "geometry": { "type": "Point", "coordinates": [ 143.904, -37.641 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085696, "decimalLat": -27.509693 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037223, "decimalLat": -27.531892 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.900327, "decimalLat": -27.653022 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.533555, "decimalLat": -37.01267 }, "geometry": { "type": "Point", "coordinates": [ 145.534, -37.013 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092196, "decimalLat": -27.527146 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058968, "decimalLat": -27.55 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091991, "decimalLat": -27.527254 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059283, "decimalLat": -27.548433 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.936269, "decimalLat": -27.275537 }, "geometry": { "type": "Point", "coordinates": [ 152.936, -27.276 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.885021, "decimalLat": -27.412992 }, "geometry": { "type": "Point", "coordinates": [ 151.885, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.093886, "decimalLat": -33.074272 }, "geometry": { "type": "Point", "coordinates": [ 151.094, -33.074 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105234, "decimalLat": -27.530125 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314338, "decimalLat": -38.375101 }, "geometry": { "type": "Point", "coordinates": [ 145.314, -38.375 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.175394, "decimalLat": -27.695709 }, "geometry": { "type": "Point", "coordinates": [ 153.175, -27.696 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.685955, "decimalLat": -34.82773 }, "geometry": { "type": "Point", "coordinates": [ 138.686, -34.828 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091553, "decimalLat": -27.527202 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.539138, "decimalLat": -38.775958 }, "geometry": { "type": "Point", "coordinates": [ 143.539, -38.776 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09146, "decimalLat": -27.527257 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.110886, "decimalLat": -27.566528 }, "geometry": { "type": "Point", "coordinates": [ 152.111, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733511, "decimalLat": -34.874122 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.874 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092975, "decimalLat": -27.526338 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.612013, "decimalLat": -38.673622 }, "geometry": { "type": "Point", "coordinates": [ 145.612, -38.674 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163789, "decimalLat": -38.671038 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057718, "decimalLat": -27.551722 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1117, "decimalLat": -27.527863 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.653747, "decimalLat": -38.769749 }, "geometry": { "type": "Point", "coordinates": [ 143.654, -38.77 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092394, "decimalLat": -27.528319 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.430603, "decimalLat": -27.488119 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072279, "decimalLat": -27.544912 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.618161, "decimalLat": -38.778726 }, "geometry": { "type": "Point", "coordinates": [ 143.618, -38.779 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.756396, "decimalLat": -26.162209 }, "geometry": { "type": "Point", "coordinates": [ 151.756, -26.162 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.820291, "decimalLat": -26.516003 }, "geometry": { "type": "Point", "coordinates": [ 151.82, -26.516 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092114, "decimalLat": -27.525065 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.678883, "decimalLat": -26.691803 }, "geometry": { "type": "Point", "coordinates": [ 151.679, -26.692 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.190108, "decimalLat": -27.701317 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400633, "decimalLat": -28.257664 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09091, "decimalLat": -27.527542 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.639413, "decimalLat": -30.487891 }, "geometry": { "type": "Point", "coordinates": [ 151.639, -30.488 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904647, "decimalLat": -31.436158 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090521, "decimalLat": -27.526823 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093032, "decimalLat": -27.52436 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072833, "decimalLat": -27.543234 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069421, "decimalLat": -27.223303 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.223 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.691055, "decimalLat": -26.58894 }, "geometry": { "type": "Point", "coordinates": [ 151.691, -26.589 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.9218, "decimalLat": -27.381972 }, "geometry": { "type": "Point", "coordinates": [ 151.922, -27.382 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.248252, "decimalLat": -27.496345 }, "geometry": { "type": "Point", "coordinates": [ 152.248, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.728863, "decimalLat": -37.921857 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.501587, "decimalLat": -27.35053 }, "geometry": { "type": "Point", "coordinates": [ 152.502, -27.351 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.896612, "decimalLat": -37.629829 }, "geometry": { "type": "Point", "coordinates": [ 143.897, -37.63 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822905, "decimalLat": -34.101733 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.111843, "decimalLat": -37.30696 }, "geometry": { "type": "Point", "coordinates": [ 144.112, -37.307 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32028, "decimalLat": -28.014672 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.015 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377456, "decimalLat": -28.254034 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109485, "decimalLat": -27.526922 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10967, "decimalLat": -27.529375 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.298518, "decimalLat": -37.046532 }, "geometry": { "type": "Point", "coordinates": [ 145.299, -37.047 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.937848, "decimalLat": -27.41542 }, "geometry": { "type": "Point", "coordinates": [ 151.938, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107257, "decimalLat": -27.528873 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.586442, "decimalLat": -34.754772 }, "geometry": { "type": "Point", "coordinates": [ 146.586, -34.755 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.067881, "decimalLat": -27.546446 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705016, "decimalLat": -34.903147 }, "geometry": { "type": "Point", "coordinates": [ 138.705, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.49587, "decimalLat": -35.715852 }, "geometry": { "type": "Point", "coordinates": [ 137.496, -35.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.148626, "decimalLat": -32.693202 }, "geometry": { "type": "Point", "coordinates": [ 150.149, -32.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729624, "decimalLat": -37.925394 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.994206, "decimalLat": -27.823347 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.626249, "decimalLat": -38.783717 }, "geometry": { "type": "Point", "coordinates": [ 143.626, -38.784 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075408, "decimalLat": -27.548198 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091645, "decimalLat": -27.527156 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092158, "decimalLat": -27.527323 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090749, "decimalLat": -27.527522 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.402896, "decimalLat": -27.493912 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059974, "decimalLat": -27.549317 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.31437, "decimalLat": -38.375751 }, "geometry": { "type": "Point", "coordinates": [ 145.314, -38.376 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.316507, "decimalLat": -38.363738 }, "geometry": { "type": "Point", "coordinates": [ 145.317, -38.364 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.065654, "decimalLat": -27.540339 }, "geometry": { "type": "Point", "coordinates": [ 153.066, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914652, "decimalLat": -30.496479 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -30.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103714, "decimalLat": -27.528652 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.854783, "decimalLat": -34.0748 }, "geometry": { "type": "Point", "coordinates": [ 150.855, -34.075 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.932862, "decimalLat": -27.33027 }, "geometry": { "type": "Point", "coordinates": [ 151.933, -27.33 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.068352, "decimalLat": -27.544598 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363114, "decimalLat": -38.317797 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.850041, "decimalLat": -34.081068 }, "geometry": { "type": "Point", "coordinates": [ 150.85, -34.081 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.871197, "decimalLat": -19.130482 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.13 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.866732, "decimalLat": -19.126134 }, "geometry": { "type": "Point", "coordinates": [ 146.867, -19.126 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.750642, "decimalLat": -36.039698 }, "geometry": { "type": "Point", "coordinates": [ 136.751, -36.04 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113061, "decimalLat": -27.528552 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520624, "decimalLat": -30.520784 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091822, "decimalLat": -27.527142 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110298, "decimalLat": -27.527168 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090412, "decimalLat": -27.523014 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.523 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090848, "decimalLat": -27.527461 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.971677, "decimalLat": -27.589755 }, "geometry": { "type": "Point", "coordinates": [ 151.972, -27.59 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.600899, "decimalLat": -38.281173 }, "geometry": { "type": "Point", "coordinates": [ 141.601, -38.281 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.807771, "decimalLat": -38.623711 }, "geometry": { "type": "Point", "coordinates": [ 143.808, -38.624 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.846053, "decimalLat": -27.340437 }, "geometry": { "type": "Point", "coordinates": [ 152.846, -27.34 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249793, "decimalLat": -27.489854 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.889359, "decimalLat": -27.599035 }, "geometry": { "type": "Point", "coordinates": [ 151.889, -27.599 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05466, "decimalLat": -27.552445 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.63629, "decimalLat": -27.712818 }, "geometry": { "type": "Point", "coordinates": [ 151.636, -27.713 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403051, "decimalLat": -27.493604 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092251, "decimalLat": -27.527995 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363354, "decimalLat": -38.318667 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104604, "decimalLat": -27.529915 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68178, "decimalLat": -34.855594 }, "geometry": { "type": "Point", "coordinates": [ 138.682, -34.856 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.493058, "decimalLat": -35.70703 }, "geometry": { "type": "Point", "coordinates": [ 137.493, -35.707 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.637208, "decimalLat": -28.06274 }, "geometry": { "type": "Point", "coordinates": [ 152.637, -28.063 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093256, "decimalLat": -27.526722 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401953, "decimalLat": -28.256614 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092518, "decimalLat": -27.527507 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.571107, "decimalLat": -27.689155 }, "geometry": { "type": "Point", "coordinates": [ 151.571, -27.689 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072881, "decimalLat": -27.547157 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.740892, "decimalLat": -35.025906 }, "geometry": { "type": "Point", "coordinates": [ 138.741, -35.026 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104927, "decimalLat": -27.52981 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092684, "decimalLat": -27.524923 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071004, "decimalLat": -27.509561 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091839, "decimalLat": -27.527221 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.362528, "decimalLat": -38.318369 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.586975, "decimalLat": -32.890203 }, "geometry": { "type": "Point", "coordinates": [ 151.587, -32.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054269, "decimalLat": -27.539587 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.885331, "decimalLat": -37.654354 }, "geometry": { "type": "Point", "coordinates": [ 143.885, -37.654 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07785, "decimalLat": -27.248145 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.248 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.764892, "decimalLat": -36.804755 }, "geometry": { "type": "Point", "coordinates": [ 145.765, -36.805 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234561, "decimalLat": -27.500628 }, "geometry": { "type": "Point", "coordinates": [ 153.235, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0916, "decimalLat": -27.526886 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.925126, "decimalLat": -37.656536 }, "geometry": { "type": "Point", "coordinates": [ 143.925, -37.657 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.706097, "decimalLat": -34.931987 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.741013, "decimalLat": -36.388675 }, "geometry": { "type": "Point", "coordinates": [ 146.741, -36.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090667, "decimalLat": -27.526898 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.187255, "decimalLat": -28.194745 }, "geometry": { "type": "Point", "coordinates": [ 153.187, -28.195 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.052037, "decimalLat": -37.961587 }, "geometry": { "type": "Point", "coordinates": [ 141.052, -37.962 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066515, "decimalLat": -27.542353 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.876903, "decimalLat": -19.123539 }, "geometry": { "type": "Point", "coordinates": [ 146.877, -19.124 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.754464, "decimalLat": -37.90878 }, "geometry": { "type": "Point", "coordinates": [ 147.754, -37.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111649, "decimalLat": -27.527907 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095441, "decimalLat": -33.076711 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105295, "decimalLat": -27.532251 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101033, "decimalLat": -27.566633 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.118928, "decimalLat": -27.492722 }, "geometry": { "type": "Point", "coordinates": [ 153.119, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.640883, "decimalLat": -27.453805 }, "geometry": { "type": "Point", "coordinates": [ 152.641, -27.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052859, "decimalLat": -27.542191 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091469, "decimalLat": -27.527123 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.036972, "decimalLat": -38.20395 }, "geometry": { "type": "Point", "coordinates": [ 142.037, -38.204 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.732925, "decimalLat": -27.587118 }, "geometry": { "type": "Point", "coordinates": [ 151.733, -27.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.816006, "decimalLat": -26.362522 }, "geometry": { "type": "Point", "coordinates": [ 151.816, -26.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.087068, "decimalLat": -27.511205 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092509, "decimalLat": -27.527203 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.636459, "decimalLat": -30.475357 }, "geometry": { "type": "Point", "coordinates": [ 151.636, -30.475 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093047, "decimalLat": -27.523807 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10968, "decimalLat": -27.527122 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.127198, "decimalLat": -37.899092 }, "geometry": { "type": "Point", "coordinates": [ 144.127, -37.899 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.545156, "decimalLat": -34.752746 }, "geometry": { "type": "Point", "coordinates": [ 146.545, -34.753 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090985, "decimalLat": -27.527141 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.31476, "decimalLat": -38.372215 }, "geometry": { "type": "Point", "coordinates": [ 145.315, -38.372 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.735138, "decimalLat": -37.908685 }, "geometry": { "type": "Point", "coordinates": [ 147.735, -37.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112501, "decimalLat": -27.52895 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.71492, "decimalLat": -38.637755 }, "geometry": { "type": "Point", "coordinates": [ 145.715, -38.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09176, "decimalLat": -27.527112 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.230163, "decimalLat": -35.787303 }, "geometry": { "type": "Point", "coordinates": [ 137.23, -35.787 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.134095, "decimalLat": -27.565113 }, "geometry": { "type": "Point", "coordinates": [ 153.134, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092421, "decimalLat": -27.52499 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.511465, "decimalLat": -38.828863 }, "geometry": { "type": "Point", "coordinates": [ 143.511, -38.829 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093432, "decimalLat": -27.526147 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.975203, "decimalLat": -28.335562 }, "geometry": { "type": "Point", "coordinates": [ 152.975, -28.336 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095143, "decimalLat": -33.076349 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091834, "decimalLat": -27.525328 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090585, "decimalLat": -27.527537 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.904854, "decimalLat": -26.598259 }, "geometry": { "type": "Point", "coordinates": [ 151.905, -26.598 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073214, "decimalLat": -27.545903 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.648894, "decimalLat": -34.879786 }, "geometry": { "type": "Point", "coordinates": [ 138.649, -34.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.38731, "decimalLat": -38.354789 }, "geometry": { "type": "Point", "coordinates": [ 146.387, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.099783, "decimalLat": -27.53181 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.635367, "decimalLat": -34.990247 }, "geometry": { "type": "Point", "coordinates": [ 138.635, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092431, "decimalLat": -27.525063 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062768, "decimalLat": -27.550337 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091906, "decimalLat": -27.524526 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07249, "decimalLat": -27.549207 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072114, "decimalLat": -27.545675 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073673, "decimalLat": -27.545615 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.801169, "decimalLat": -26.154592 }, "geometry": { "type": "Point", "coordinates": [ 151.801, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092545, "decimalLat": -27.527553 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104725, "decimalLat": -27.530054 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.359461, "decimalLat": -27.916565 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110823, "decimalLat": -27.528281 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003586, "decimalLat": -27.41387 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388712, "decimalLat": -38.35779 }, "geometry": { "type": "Point", "coordinates": [ 146.389, -38.358 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092259, "decimalLat": -27.527601 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090953, "decimalLat": -27.526759 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.680044, "decimalLat": -35.033534 }, "geometry": { "type": "Point", "coordinates": [ 138.68, -35.034 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.854434, "decimalLat": -28.08208 }, "geometry": { "type": "Point", "coordinates": [ 152.854, -28.082 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093401, "decimalLat": -27.524899 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.132828, "decimalLat": -27.564262 }, "geometry": { "type": "Point", "coordinates": [ 153.133, -27.564 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083035, "decimalLat": -27.516238 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.581539, "decimalLat": -35.059156 }, "geometry": { "type": "Point", "coordinates": [ 138.582, -35.059 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.654238, "decimalLat": -38.778231 }, "geometry": { "type": "Point", "coordinates": [ 143.654, -38.778 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090743, "decimalLat": -27.527234 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400982, "decimalLat": -28.25779 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993544, "decimalLat": -27.822678 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163711, "decimalLat": -38.671105 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072311, "decimalLat": -27.213111 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.213 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.690103, "decimalLat": -26.175549 }, "geometry": { "type": "Point", "coordinates": [ 151.69, -26.176 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656705, "decimalLat": -35.011115 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104669, "decimalLat": -27.530589 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092405, "decimalLat": -27.52504 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069395, "decimalLat": -27.223304 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.223 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.158592, "decimalLat": -27.656398 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -27.656 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073741, "decimalLat": -27.546059 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092234, "decimalLat": -27.524962 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.353365, "decimalLat": -27.934301 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10389, "decimalLat": -27.529123 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09249, "decimalLat": -27.527776 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.865692, "decimalLat": -19.142114 }, "geometry": { "type": "Point", "coordinates": [ 146.866, -19.142 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.049575, "decimalLat": -27.276933 }, "geometry": { "type": "Point", "coordinates": [ 152.05, -27.277 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090843, "decimalLat": -27.526916 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054473, "decimalLat": -27.542551 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.012821, "decimalLat": -26.637757 }, "geometry": { "type": "Point", "coordinates": [ 152.013, -26.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091995, "decimalLat": -27.524038 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.343552, "decimalLat": -38.707032 }, "geometry": { "type": "Point", "coordinates": [ 143.344, -38.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290897, "decimalLat": -37.874752 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079068, "decimalLat": -27.506347 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.72951, "decimalLat": -37.925848 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.926 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102631, "decimalLat": -27.529476 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.256988, "decimalLat": -28.104443 }, "geometry": { "type": "Point", "coordinates": [ 151.257, -28.104 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860293, "decimalLat": -38.668552 }, "geometry": { "type": "Point", "coordinates": [ 143.86, -38.669 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.7247, "decimalLat": -37.923692 }, "geometry": { "type": "Point", "coordinates": [ 147.725, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.034456, "decimalLat": -27.540342 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109897, "decimalLat": -27.527038 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.698833, "decimalLat": -38.565395 }, "geometry": { "type": "Point", "coordinates": [ 143.699, -38.565 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.754464, "decimalLat": -37.90878 }, "geometry": { "type": "Point", "coordinates": [ 147.754, -37.909 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09162, "decimalLat": -27.527204 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.296041, "decimalLat": -28.017451 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.017 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112649, "decimalLat": -27.528721 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.86197, "decimalLat": -19.142098 }, "geometry": { "type": "Point", "coordinates": [ 146.862, -19.142 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.356764, "decimalLat": -27.938953 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082983, "decimalLat": -27.516033 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.871145, "decimalLat": -19.128028 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.128 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103268, "decimalLat": -27.529339 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.845763, "decimalLat": -27.340372 }, "geometry": { "type": "Point", "coordinates": [ 152.846, -27.34 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.274045, "decimalLat": -37.87303 }, "geometry": { "type": "Point", "coordinates": [ 144.274, -37.873 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09088, "decimalLat": -27.527347 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074329, "decimalLat": -27.54685 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092195, "decimalLat": -27.525012 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091997, "decimalLat": -27.524509 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.002847, "decimalLat": -38.297784 }, "geometry": { "type": "Point", "coordinates": [ 145.003, -38.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.374664, "decimalLat": -27.913354 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.857672, "decimalLat": -27.544569 }, "geometry": { "type": "Point", "coordinates": [ 152.858, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.582521, "decimalLat": -38.82722 }, "geometry": { "type": "Point", "coordinates": [ 143.583, -38.827 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.227265, "decimalLat": -27.297562 }, "geometry": { "type": "Point", "coordinates": [ 152.227, -27.298 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.569421, "decimalLat": -35.080743 }, "geometry": { "type": "Point", "coordinates": [ 138.569, -35.081 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.207414, "decimalLat": -38.3017 }, "geometry": { "type": "Point", "coordinates": [ 145.207, -38.302 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.196281, "decimalLat": -37.158569 }, "geometry": { "type": "Point", "coordinates": [ 148.196, -37.159 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092494, "decimalLat": -27.526776 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.730592, "decimalLat": -37.924172 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093053, "decimalLat": -27.524609 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.386887, "decimalLat": -38.52737 }, "geometry": { "type": "Point", "coordinates": [ 146.387, -38.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05633, "decimalLat": -27.551285 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732753, "decimalLat": -34.890013 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.608002, "decimalLat": -27.418861 }, "geometry": { "type": "Point", "coordinates": [ 152.608, -27.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375165, "decimalLat": -28.252455 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072209, "decimalLat": -27.545204 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.840742, "decimalLat": -27.528783 }, "geometry": { "type": "Point", "coordinates": [ 152.841, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.450275, "decimalLat": -28.101751 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.102 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734488, "decimalLat": -34.889446 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.665977, "decimalLat": -35.013974 }, "geometry": { "type": "Point", "coordinates": [ 138.666, -35.014 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.826933, "decimalLat": -34.692015 }, "geometry": { "type": "Point", "coordinates": [ 138.827, -34.692 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109559, "decimalLat": -27.528045 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377476, "decimalLat": -28.254053 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081619, "decimalLat": -27.510033 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103892, "decimalLat": -27.530155 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.657408, "decimalLat": -38.068675 }, "geometry": { "type": "Point", "coordinates": [ 145.657, -38.069 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.874704, "decimalLat": -37.595442 }, "geometry": { "type": "Point", "coordinates": [ 143.875, -37.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.639825, "decimalLat": -26.234862 }, "geometry": { "type": "Point", "coordinates": [ 152.64, -26.235 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870558, "decimalLat": -19.123122 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09157, "decimalLat": -27.527298 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091594, "decimalLat": -27.527083 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063053, "decimalLat": -27.541894 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.579297, "decimalLat": -35.053938 }, "geometry": { "type": "Point", "coordinates": [ 138.579, -35.054 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072708, "decimalLat": -27.523703 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054659, "decimalLat": -27.550096 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090405, "decimalLat": -27.526473 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.678838, "decimalLat": -21.681693 }, "geometry": { "type": "Point", "coordinates": [ 148.679, -21.682 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.331083, "decimalLat": -38.371904 }, "geometry": { "type": "Point", "coordinates": [ 145.331, -38.372 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.709367, "decimalLat": -35.03536 }, "geometry": { "type": "Point", "coordinates": [ 138.709, -35.035 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72174, "decimalLat": -34.892703 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073584, "decimalLat": -27.54536 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.898134, "decimalLat": -27.632727 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -27.633 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.09484, "decimalLat": -37.623664 }, "geometry": { "type": "Point", "coordinates": [ 144.095, -37.624 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.974172, "decimalLat": -27.537431 }, "geometry": { "type": "Point", "coordinates": [ 151.974, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.641329, "decimalLat": -38.209867 }, "geometry": { "type": "Point", "coordinates": [ 141.641, -38.21 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092966, "decimalLat": -27.525892 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402368, "decimalLat": -28.257634 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048222, "decimalLat": -27.548925 }, "geometry": { "type": "Point", "coordinates": [ 153.048, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.087892, "decimalLat": -27.507282 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260972, "decimalLat": -27.523087 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.523 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.083345, "decimalLat": -33.130917 }, "geometry": { "type": "Point", "coordinates": [ 151.083, -33.131 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.267717, "decimalLat": -37.189328 }, "geometry": { "type": "Point", "coordinates": [ 148.268, -37.189 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105356, "decimalLat": -27.532137 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.066756, "decimalLat": -38.004837 }, "geometry": { "type": "Point", "coordinates": [ 141.067, -38.005 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.960144, "decimalLat": -27.43205 }, "geometry": { "type": "Point", "coordinates": [ 151.96, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09146, "decimalLat": -27.527244 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.338114, "decimalLat": -37.692415 }, "geometry": { "type": "Point", "coordinates": [ 144.338, -37.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.202408, "decimalLat": -38.651463 }, "geometry": { "type": "Point", "coordinates": [ 146.202, -38.651 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6595, "decimalLat": -35.004831 }, "geometry": { "type": "Point", "coordinates": [ 138.66, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09081, "decimalLat": -27.526772 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.978063, "decimalLat": -26.72462 }, "geometry": { "type": "Point", "coordinates": [ 152.978, -26.725 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066816, "decimalLat": -27.250419 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.25 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093225, "decimalLat": -27.524869 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059998, "decimalLat": -27.55087 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907703, "decimalLat": -31.450804 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111174, "decimalLat": -27.527112 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07927, "decimalLat": -27.22478 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.225 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111505, "decimalLat": -27.529177 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069673, "decimalLat": -27.51049 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733017, "decimalLat": -34.886758 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.12207, "decimalLat": -38.377688 }, "geometry": { "type": "Point", "coordinates": [ 145.122, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.910666, "decimalLat": -37.664068 }, "geometry": { "type": "Point", "coordinates": [ 143.911, -37.664 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.04797, "decimalLat": -27.273298 }, "geometry": { "type": "Point", "coordinates": [ 153.048, -27.273 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072493, "decimalLat": -27.54906 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.343306, "decimalLat": -26.527061 }, "geometry": { "type": "Point", "coordinates": [ 151.343, -26.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.04354, "decimalLat": -27.551523 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056158, "decimalLat": -27.53716 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104438, "decimalLat": -27.530434 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.310638, "decimalLat": -37.276917 }, "geometry": { "type": "Point", "coordinates": [ 144.311, -37.277 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.00296, "decimalLat": -27.413697 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.692178, "decimalLat": -34.899118 }, "geometry": { "type": "Point", "coordinates": [ 138.692, -34.899 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.665803, "decimalLat": -37.773792 }, "geometry": { "type": "Point", "coordinates": [ 145.666, -37.774 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69704, "decimalLat": -34.958685 }, "geometry": { "type": "Point", "coordinates": [ 138.697, -34.959 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093808, "decimalLat": -27.524777 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092962, "decimalLat": -27.528226 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103623, "decimalLat": -27.529837 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.652468, "decimalLat": -27.446931 }, "geometry": { "type": "Point", "coordinates": [ 152.652, -27.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.202603, "decimalLat": -35.629158 }, "geometry": { "type": "Point", "coordinates": [ 137.203, -35.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054823, "decimalLat": -27.550113 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.114794, "decimalLat": -37.553794 }, "geometry": { "type": "Point", "coordinates": [ 144.115, -37.554 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073731, "decimalLat": -27.525433 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.300568, "decimalLat": -38.361471 }, "geometry": { "type": "Point", "coordinates": [ 145.301, -38.361 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090975, "decimalLat": -27.52634 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037578, "decimalLat": -27.548058 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.62931, "decimalLat": -38.317739 }, "geometry": { "type": "Point", "coordinates": [ 142.629, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070368, "decimalLat": -27.54367 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868422, "decimalLat": -19.126625 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084045, "decimalLat": -27.510003 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.596413, "decimalLat": -35.085193 }, "geometry": { "type": "Point", "coordinates": [ 138.596, -35.085 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.51137, "decimalLat": -27.137819 }, "geometry": { "type": "Point", "coordinates": [ 152.511, -27.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107299, "decimalLat": -27.527394 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.249498, "decimalLat": -37.811318 }, "geometry": { "type": "Point", "coordinates": [ 144.249, -37.811 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.91027, "decimalLat": -38.375747 }, "geometry": { "type": "Point", "coordinates": [ 144.91, -38.376 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091934, "decimalLat": -27.527221 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093389, "decimalLat": -27.52408 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08435, "decimalLat": -27.505828 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.711017, "decimalLat": -34.902571 }, "geometry": { "type": "Point", "coordinates": [ 138.711, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.520699, "decimalLat": -27.719672 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -27.72 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092273, "decimalLat": -27.528165 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091785, "decimalLat": -27.526898 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.804578, "decimalLat": -26.129862 }, "geometry": { "type": "Point", "coordinates": [ 151.805, -26.13 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733201, "decimalLat": -34.888785 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091143, "decimalLat": -27.527261 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918473, "decimalLat": -31.442202 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102727, "decimalLat": -27.518284 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.518 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.106453, "decimalLat": -27.5625 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -27.562 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111375, "decimalLat": -27.527309 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.08104, "decimalLat": -38.286999 }, "geometry": { "type": "Point", "coordinates": [ 145.081, -38.287 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092968, "decimalLat": -27.528036 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.888331, "decimalLat": -27.647827 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -27.648 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.715745, "decimalLat": -38.637762 }, "geometry": { "type": "Point", "coordinates": [ 145.716, -38.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822053, "decimalLat": -34.101872 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.717804, "decimalLat": -34.929568 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -34.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.693955, "decimalLat": -34.921537 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.922 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.20862, "decimalLat": -37.34573 }, "geometry": { "type": "Point", "coordinates": [ 144.209, -37.346 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.667225, "decimalLat": -38.763514 }, "geometry": { "type": "Point", "coordinates": [ 143.667, -38.764 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093744, "decimalLat": -27.524784 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.630912, "decimalLat": -27.438473 }, "geometry": { "type": "Point", "coordinates": [ 152.631, -27.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063166, "decimalLat": -27.538882 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.042206, "decimalLat": -27.300205 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.293862, "decimalLat": -28.915806 }, "geometry": { "type": "Point", "coordinates": [ 152.294, -28.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109661, "decimalLat": -27.529337 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.863433, "decimalLat": -26.594261 }, "geometry": { "type": "Point", "coordinates": [ 151.863, -26.594 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109254, "decimalLat": -27.528797 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110236, "decimalLat": -27.527648 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.116532, "decimalLat": -38.824175 }, "geometry": { "type": "Point", "coordinates": [ 146.117, -38.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.042445, "decimalLat": -27.551748 }, "geometry": { "type": "Point", "coordinates": [ 153.042, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092727, "decimalLat": -27.528231 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095438, "decimalLat": -33.076733 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003617, "decimalLat": -27.413588 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.994868, "decimalLat": -37.716147 }, "geometry": { "type": "Point", "coordinates": [ 143.995, -37.716 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.781858, "decimalLat": -26.309113 }, "geometry": { "type": "Point", "coordinates": [ 151.782, -26.309 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.667378, "decimalLat": -34.958397 }, "geometry": { "type": "Point", "coordinates": [ 138.667, -34.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08288, "decimalLat": -27.506333 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060784, "decimalLat": -27.549843 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730434, "decimalLat": -34.887155 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054174, "decimalLat": -27.552027 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.042235, "decimalLat": -27.299273 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -27.299 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.730728, "decimalLat": -37.923805 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437926, "decimalLat": -27.400283 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105148, "decimalLat": -27.531588 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073548, "decimalLat": -27.54712 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.694111, "decimalLat": -34.897319 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.897 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110343, "decimalLat": -27.527519 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.901422, "decimalLat": -27.623468 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -27.623 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439361, "decimalLat": -27.394281 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091737, "decimalLat": -27.527092 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.295235, "decimalLat": -38.324837 }, "geometry": { "type": "Point", "coordinates": [ 145.295, -38.325 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.5032, "decimalLat": -27.68304 }, "geometry": { "type": "Point", "coordinates": [ 151.503, -27.683 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722167, "decimalLat": -34.889629 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084841, "decimalLat": -27.506624 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.925556, "decimalLat": -37.652778 }, "geometry": { "type": "Point", "coordinates": [ 143.926, -37.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.111283, "decimalLat": -27.566662 }, "geometry": { "type": "Point", "coordinates": [ 152.111, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7184, "decimalLat": -34.891711 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.872107, "decimalLat": -19.122495 }, "geometry": { "type": "Point", "coordinates": [ 146.872, -19.122 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091306, "decimalLat": -27.526859 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057521, "decimalLat": -27.550949 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290831, "decimalLat": -37.874676 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.783569, "decimalLat": -34.876083 }, "geometry": { "type": "Point", "coordinates": [ 138.784, -34.876 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090396, "decimalLat": -27.526857 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.709258, "decimalLat": -34.904233 }, "geometry": { "type": "Point", "coordinates": [ 138.709, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110144, "decimalLat": -27.52771 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091824, "decimalLat": -27.524373 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.229183, "decimalLat": -27.956967 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.957 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.697394, "decimalLat": -27.990554 }, "geometry": { "type": "Point", "coordinates": [ 152.697, -27.991 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377364, "decimalLat": -28.253323 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109159, "decimalLat": -27.527196 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090902, "decimalLat": -27.525815 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.687998, "decimalLat": -34.953659 }, "geometry": { "type": "Point", "coordinates": [ 138.688, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.789719, "decimalLat": -36.805636 }, "geometry": { "type": "Point", "coordinates": [ 145.79, -36.806 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092628, "decimalLat": -27.524727 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164661, "decimalLat": -38.671099 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.64525, "decimalLat": -32.614969 }, "geometry": { "type": "Point", "coordinates": [ 151.645, -32.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091983, "decimalLat": -27.527005 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.957947, "decimalLat": -27.499203 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.697305, "decimalLat": -27.554711 }, "geometry": { "type": "Point", "coordinates": [ 151.697, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519282, "decimalLat": -30.520446 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922872, "decimalLat": -31.477597 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083922, "decimalLat": -27.527713 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103511, "decimalLat": -27.530196 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.665641, "decimalLat": -35.014095 }, "geometry": { "type": "Point", "coordinates": [ 138.666, -35.014 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085377, "decimalLat": -27.50677 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091609, "decimalLat": -27.527231 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.965181, "decimalLat": -27.278309 }, "geometry": { "type": "Point", "coordinates": [ 152.965, -27.278 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10335, "decimalLat": -27.530167 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.820162, "decimalLat": -26.175006 }, "geometry": { "type": "Point", "coordinates": [ 151.82, -26.175 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.605483, "decimalLat": -38.763356 }, "geometry": { "type": "Point", "coordinates": [ 143.605, -38.763 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712144, "decimalLat": -34.892257 }, "geometry": { "type": "Point", "coordinates": [ 138.712, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093231, "decimalLat": -27.527168 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082859, "decimalLat": -27.507077 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104048, "decimalLat": -27.530565 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093415, "decimalLat": -27.525302 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092405, "decimalLat": -27.525442 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.573288, "decimalLat": -35.029578 }, "geometry": { "type": "Point", "coordinates": [ 138.573, -35.03 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.540162, "decimalLat": -37.489492 }, "geometry": { "type": "Point", "coordinates": [ 144.54, -37.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056032, "decimalLat": -27.53917 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.685589, "decimalLat": -34.953812 }, "geometry": { "type": "Point", "coordinates": [ 138.686, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.750762, "decimalLat": -28.182685 }, "geometry": { "type": "Point", "coordinates": [ 152.751, -28.183 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057572, "decimalLat": -27.551372 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092966, "decimalLat": -27.526153 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.994051, "decimalLat": -27.823454 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.425397, "decimalLat": -27.99982 }, "geometry": { "type": "Point", "coordinates": [ 152.425, -28.0 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.814529, "decimalLat": -26.714273 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -26.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092302, "decimalLat": -27.528081 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.830282, "decimalLat": -26.041071 }, "geometry": { "type": "Point", "coordinates": [ 151.83, -26.041 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.477273, "decimalLat": -38.80269 }, "geometry": { "type": "Point", "coordinates": [ 143.477, -38.803 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91387, "decimalLat": -30.490626 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -30.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091091, "decimalLat": -27.527237 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.581405, "decimalLat": -34.761475 }, "geometry": { "type": "Point", "coordinates": [ 146.581, -34.761 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625174, "decimalLat": -33.56895 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -33.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.038152, "decimalLat": -27.532726 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091085, "decimalLat": -27.527558 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729395, "decimalLat": -37.926331 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.926 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109708, "decimalLat": -27.529444 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721967, "decimalLat": -34.892025 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.770535, "decimalLat": -34.185479 }, "geometry": { "type": "Point", "coordinates": [ 140.771, -34.185 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729722, "decimalLat": -37.925278 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.01502, "decimalLat": -27.746111 }, "geometry": { "type": "Point", "coordinates": [ 153.015, -27.746 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.948399, "decimalLat": -38.574861 }, "geometry": { "type": "Point", "coordinates": [ 143.948, -38.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553497, "decimalLat": -28.588097 }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.588 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.124237, "decimalLat": -27.777695 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -27.778 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.673699, "decimalLat": -35.012698 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -35.013 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 145.261977, "decimalLat": -17.961973 }, "geometry": { "type": "Point", "coordinates": [ 145.262, -17.962 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103315, "decimalLat": -27.530215 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.731698, "decimalLat": -37.923484 }, "geometry": { "type": "Point", "coordinates": [ 147.732, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.121312, "decimalLat": -27.512057 }, "geometry": { "type": "Point", "coordinates": [ 153.121, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656845, "decimalLat": -34.865222 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103422, "decimalLat": -27.52821 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092806, "decimalLat": -27.524547 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.672625, "decimalLat": -36.839969 }, "geometry": { "type": "Point", "coordinates": [ 145.673, -36.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.838829, "decimalLat": -27.237073 }, "geometry": { "type": "Point", "coordinates": [ 152.839, -27.237 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400253, "decimalLat": -28.25928 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.521216, "decimalLat": -38.853654 }, "geometry": { "type": "Point", "coordinates": [ 143.521, -38.854 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731477, "decimalLat": -34.89122 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092245, "decimalLat": -27.524986 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08235, "decimalLat": -27.70095 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.590692, "decimalLat": -35.137115 }, "geometry": { "type": "Point", "coordinates": [ 138.591, -35.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.726945, "decimalLat": -33.426278 }, "geometry": { "type": "Point", "coordinates": [ 150.727, -33.426 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059299, "decimalLat": -27.556731 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.557 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092985, "decimalLat": -27.52477 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.287287, "decimalLat": -26.39763 }, "geometry": { "type": "Point", "coordinates": [ 152.287, -26.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.754464, "decimalLat": -37.90878 }, "geometry": { "type": "Point", "coordinates": [ 147.754, -37.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197467, "decimalLat": -28.205072 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -28.205 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.094646, "decimalLat": -37.623141 }, "geometry": { "type": "Point", "coordinates": [ 144.095, -37.623 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056617, "decimalLat": -27.536858 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.04632, "decimalLat": -27.257014 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.030598, "decimalLat": -30.215406 }, "geometry": { "type": "Point", "coordinates": [ 153.031, -30.215 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090855, "decimalLat": -27.527401 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.583267, "decimalLat": -38.82817 }, "geometry": { "type": "Point", "coordinates": [ 143.583, -38.828 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.889413, "decimalLat": -27.600133 }, "geometry": { "type": "Point", "coordinates": [ 151.889, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375176, "decimalLat": -28.252479 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.26884, "decimalLat": -38.130747 }, "geometry": { "type": "Point", "coordinates": [ 145.269, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31335, "decimalLat": -27.974715 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -27.975 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.248252, "decimalLat": -27.496345 }, "geometry": { "type": "Point", "coordinates": [ 152.248, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001118, "decimalLat": -27.284299 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.376637, "decimalLat": -38.689215 }, "geometry": { "type": "Point", "coordinates": [ 143.377, -38.689 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05762, "decimalLat": -27.550981 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.608226, "decimalLat": -38.338071 }, "geometry": { "type": "Point", "coordinates": [ 141.608, -38.338 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.819076, "decimalLat": -32.319849 }, "geometry": { "type": "Point", "coordinates": [ 151.819, -32.32 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.728863, "decimalLat": -37.921857 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.469451, "decimalLat": -37.977771 }, "geometry": { "type": "Point", "coordinates": [ 145.469, -37.978 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.996462, "decimalLat": -26.227911 }, "geometry": { "type": "Point", "coordinates": [ 151.996, -26.228 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.63807, "decimalLat": -35.006017 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.988875, "decimalLat": -27.170805 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -27.171 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068271, "decimalLat": -27.544901 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046364, "decimalLat": -27.257125 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055452, "decimalLat": -27.543897 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163833, "decimalLat": -38.671292 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.191599, "decimalLat": -27.702482 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104274, "decimalLat": -27.530441 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092382, "decimalLat": -27.524863 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.854949, "decimalLat": -28.308736 }, "geometry": { "type": "Point", "coordinates": [ 152.855, -28.309 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.365117, "decimalLat": -38.322214 }, "geometry": { "type": "Point", "coordinates": [ 142.365, -38.322 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.597596, "decimalLat": -35.146825 }, "geometry": { "type": "Point", "coordinates": [ 138.598, -35.147 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.26807, "decimalLat": -38.130876 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387998, "decimalLat": -38.354012 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062195, "decimalLat": -27.541995 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.857309, "decimalLat": -27.544032 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.744112, "decimalLat": -27.575445 }, "geometry": { "type": "Point", "coordinates": [ 152.744, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.911921, "decimalLat": -37.651258 }, "geometry": { "type": "Point", "coordinates": [ 143.912, -37.651 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.813478, "decimalLat": -31.989313 }, "geometry": { "type": "Point", "coordinates": [ 151.813, -31.989 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.132056, "decimalLat": -38.175629 }, "geometry": { "type": "Point", "coordinates": [ 145.132, -38.176 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05206, "decimalLat": -27.548439 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.855847, "decimalLat": -19.128648 }, "geometry": { "type": "Point", "coordinates": [ 146.856, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.044728, "decimalLat": -27.25791 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.736167, "decimalLat": -34.830996 }, "geometry": { "type": "Point", "coordinates": [ 138.736, -34.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092509, "decimalLat": -27.52746 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73225, "decimalLat": -34.891356 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.633549, "decimalLat": -38.334815 }, "geometry": { "type": "Point", "coordinates": [ 142.634, -38.335 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104553, "decimalLat": -27.53062 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103828, "decimalLat": -27.530639 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90735, "decimalLat": -31.434775 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.77355, "decimalLat": -26.179374 }, "geometry": { "type": "Point", "coordinates": [ 151.774, -26.179 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249225, "decimalLat": -27.495004 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441419, "decimalLat": -27.394611 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101306, "decimalLat": -27.524026 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201381, "decimalLat": -27.733111 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37674, "decimalLat": -28.254167 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072033, "decimalLat": -27.848935 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.849 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249435, "decimalLat": -27.496763 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638051, "decimalLat": -34.971441 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895396, "decimalLat": -27.600052 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.14215, "decimalLat": -27.533792 }, "geometry": { "type": "Point", "coordinates": [ 153.142, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.673624, "decimalLat": -34.950787 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -34.951 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.243763, "decimalLat": -38.251851 }, "geometry": { "type": "Point", "coordinates": [ 145.244, -38.252 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.911757, "decimalLat": -34.000119 }, "geometry": { "type": "Point", "coordinates": [ 150.912, -34.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868969, "decimalLat": -19.137299 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092179, "decimalLat": -27.527446 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.263561, "decimalLat": -38.486596 }, "geometry": { "type": "Point", "coordinates": [ 145.264, -38.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376758, "decimalLat": -28.253788 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.856156, "decimalLat": -38.670551 }, "geometry": { "type": "Point", "coordinates": [ 143.856, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.565545, "decimalLat": -27.648024 }, "geometry": { "type": "Point", "coordinates": [ 151.566, -27.648 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377645, "decimalLat": -28.254299 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101801, "decimalLat": -27.52972 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05966, "decimalLat": -27.549627 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.784653, "decimalLat": -26.612043 }, "geometry": { "type": "Point", "coordinates": [ 151.785, -26.612 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.55601, "decimalLat": -37.936023 }, "geometry": { "type": "Point", "coordinates": [ 141.556, -37.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.542784, "decimalLat": -34.917751 }, "geometry": { "type": "Point", "coordinates": [ 138.543, -34.918 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101559, "decimalLat": -27.528883 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.556488, "decimalLat": -27.61347 }, "geometry": { "type": "Point", "coordinates": [ 151.556, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090902, "decimalLat": -27.527451 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103557, "decimalLat": -27.5292 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399622, "decimalLat": -28.260678 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.377016, "decimalLat": -27.919592 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.258889, "decimalLat": -28.103119 }, "geometry": { "type": "Point", "coordinates": [ 151.259, -28.103 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103351, "decimalLat": -27.528244 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.99995, "decimalLat": -27.28436 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992633, "decimalLat": -27.824287 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733423, "decimalLat": -34.874369 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.874 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.443241, "decimalLat": -24.857677 }, "geometry": { "type": "Point", "coordinates": [ 151.443, -24.858 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09127, "decimalLat": -27.527078 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.390097, "decimalLat": -28.281303 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.281 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095506, "decimalLat": -33.07655 }, "geometry": { "type": "Point", "coordinates": [ 151.096, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.972024, "decimalLat": -34.100564 }, "geometry": { "type": "Point", "coordinates": [ 150.972, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095428, "decimalLat": -33.076733 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387545, "decimalLat": -38.354719 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377096, "decimalLat": -28.254227 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091137, "decimalLat": -27.52707 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.121139, "decimalLat": -27.493855 }, "geometry": { "type": "Point", "coordinates": [ 153.121, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091748, "decimalLat": -27.527146 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72197, "decimalLat": -34.891982 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.669829, "decimalLat": -25.592426 }, "geometry": { "type": "Point", "coordinates": [ 152.67, -25.592 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.584315, "decimalLat": -35.037253 }, "geometry": { "type": "Point", "coordinates": [ 138.584, -35.037 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092288, "decimalLat": -27.525007 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101944, "decimalLat": -27.734289 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.734 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09304, "decimalLat": -27.524269 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090583, "decimalLat": -27.526537 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.132266, "decimalLat": -38.175496 }, "geometry": { "type": "Point", "coordinates": [ 145.132, -38.175 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19029, "decimalLat": -27.701238 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520661, "decimalLat": -30.520064 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.766353, "decimalLat": -26.17259 }, "geometry": { "type": "Point", "coordinates": [ 151.766, -26.173 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083656, "decimalLat": -27.516139 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377369, "decimalLat": -28.253922 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092593, "decimalLat": -27.527874 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104088, "decimalLat": -27.53044 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093151, "decimalLat": -27.523884 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.975014, "decimalLat": -38.500075 }, "geometry": { "type": "Point", "coordinates": [ 142.975, -38.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.648977, "decimalLat": -32.654893 }, "geometry": { "type": "Point", "coordinates": [ 151.649, -32.655 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068855, "decimalLat": -27.545859 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.689, "decimalLat": -37.757382 }, "geometry": { "type": "Point", "coordinates": [ 145.689, -37.757 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734182, "decimalLat": -34.886321 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063136, "decimalLat": -27.539646 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.065247, "decimalLat": -27.26833 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -27.268 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.162807, "decimalLat": -27.812013 }, "geometry": { "type": "Point", "coordinates": [ 153.163, -27.812 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092171, "decimalLat": -27.527209 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075423, "decimalLat": -27.662956 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.663 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731562, "decimalLat": -34.889727 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105308, "decimalLat": -27.529934 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721882, "decimalLat": -34.889935 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.163871, "decimalLat": -27.570645 }, "geometry": { "type": "Point", "coordinates": [ 153.164, -27.571 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.534515, "decimalLat": -38.803999 }, "geometry": { "type": "Point", "coordinates": [ 143.535, -38.804 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.308992, "decimalLat": -27.448862 }, "geometry": { "type": "Point", "coordinates": [ 152.309, -27.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.547954, "decimalLat": -27.699665 }, "geometry": { "type": "Point", "coordinates": [ 151.548, -27.7 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82564, "decimalLat": -34.1004 }, "geometry": { "type": "Point", "coordinates": [ 150.826, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.839648, "decimalLat": -34.852779 }, "geometry": { "type": "Point", "coordinates": [ 138.84, -34.853 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.686968, "decimalLat": -34.933233 }, "geometry": { "type": "Point", "coordinates": [ 138.687, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112639, "decimalLat": -27.527709 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.094528, "decimalLat": -27.806672 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -27.807 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.127537, "decimalLat": -38.178276 }, "geometry": { "type": "Point", "coordinates": [ 145.128, -38.178 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.835517, "decimalLat": -28.118477 }, "geometry": { "type": "Point", "coordinates": [ 152.836, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091602, "decimalLat": -27.527199 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730982, "decimalLat": -34.89133 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.261577, "decimalLat": -38.484212 }, "geometry": { "type": "Point", "coordinates": [ 145.262, -38.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.481831, "decimalLat": -38.800562 }, "geometry": { "type": "Point", "coordinates": [ 143.482, -38.801 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223572, "decimalLat": -27.509111 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730671, "decimalLat": -34.890851 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069613, "decimalLat": -27.510447 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.900414, "decimalLat": -27.654295 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.654 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.404142, "decimalLat": -38.345764 }, "geometry": { "type": "Point", "coordinates": [ 146.404, -38.346 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.130436, "decimalLat": -38.179692 }, "geometry": { "type": "Point", "coordinates": [ 145.13, -38.18 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.144133, "decimalLat": -38.225617 }, "geometry": { "type": "Point", "coordinates": [ 146.144, -38.226 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.267866, "decimalLat": -38.130666 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.591286, "decimalLat": -27.948395 }, "geometry": { "type": "Point", "coordinates": [ 152.591, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111314, "decimalLat": -27.529357 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105186, "decimalLat": -27.531112 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.548543, "decimalLat": -27.018405 }, "geometry": { "type": "Point", "coordinates": [ 151.549, -27.018 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.872045, "decimalLat": -19.123795 }, "geometry": { "type": "Point", "coordinates": [ 146.872, -19.124 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.692383, "decimalLat": -26.177354 }, "geometry": { "type": "Point", "coordinates": [ 151.692, -26.177 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092137, "decimalLat": -27.527156 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093097, "decimalLat": -27.524316 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069882, "decimalLat": -27.510335 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.757378, "decimalLat": -37.5626 }, "geometry": { "type": "Point", "coordinates": [ 149.757, -37.563 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.650244, "decimalLat": -27.387998 }, "geometry": { "type": "Point", "coordinates": [ 152.65, -27.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108232, "decimalLat": -27.527246 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091452, "decimalLat": -27.527194 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.639125, "decimalLat": -35.009444 }, "geometry": { "type": "Point", "coordinates": [ 138.639, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.826933, "decimalLat": -34.692015 }, "geometry": { "type": "Point", "coordinates": [ 138.827, -34.692 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.584078, "decimalLat": -35.170347 }, "geometry": { "type": "Point", "coordinates": [ 138.584, -35.17 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.566458, "decimalLat": -34.757195 }, "geometry": { "type": "Point", "coordinates": [ 146.566, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092002, "decimalLat": -27.525758 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.381147, "decimalLat": -27.963527 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.964 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638688, "decimalLat": -34.970323 }, "geometry": { "type": "Point", "coordinates": [ 138.639, -34.97 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059827, "decimalLat": -27.549425 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091781, "decimalLat": -27.527144 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400785, "decimalLat": -28.257976 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.717317, "decimalLat": -36.926638 }, "geometry": { "type": "Point", "coordinates": [ 145.717, -36.927 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.590056, "decimalLat": -35.002344 }, "geometry": { "type": "Point", "coordinates": [ 138.59, -35.002 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108857, "decimalLat": -27.526887 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110213, "decimalLat": -27.527548 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731679, "decimalLat": -34.881096 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.881 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051169, "decimalLat": -27.549136 }, "geometry": { "type": "Point", "coordinates": [ 153.051, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0587, "decimalLat": -27.5519 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.749177, "decimalLat": -27.886315 }, "geometry": { "type": "Point", "coordinates": [ 152.749, -27.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.335595, "decimalLat": -37.198 }, "geometry": { "type": "Point", "coordinates": [ 143.336, -37.198 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.726796, "decimalLat": -38.081626 }, "geometry": { "type": "Point", "coordinates": [ 141.727, -38.082 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.632028, "decimalLat": -27.437549 }, "geometry": { "type": "Point", "coordinates": [ 152.632, -27.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073276, "decimalLat": -27.545831 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102483, "decimalLat": -27.734787 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.735 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090929, "decimalLat": -27.526617 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868195, "decimalLat": -19.12793 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.128 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729295, "decimalLat": -34.871821 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.872 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656348, "decimalLat": -35.001711 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.002 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090432, "decimalLat": -27.525975 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059827, "decimalLat": -27.549204 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.187191, "decimalLat": -28.196394 }, "geometry": { "type": "Point", "coordinates": [ 153.187, -28.196 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.105482, "decimalLat": -37.570987 }, "geometry": { "type": "Point", "coordinates": [ 144.105, -37.571 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.30385, "decimalLat": -37.827783 }, "geometry": { "type": "Point", "coordinates": [ 144.304, -37.828 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091465, "decimalLat": -27.526905 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058148, "decimalLat": -27.551142 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.688933, "decimalLat": -34.947804 }, "geometry": { "type": "Point", "coordinates": [ 138.689, -34.948 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.821061, "decimalLat": -26.505141 }, "geometry": { "type": "Point", "coordinates": [ 151.821, -26.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733348, "decimalLat": -34.890277 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40062, "decimalLat": -28.257748 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093036, "decimalLat": -27.524556 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.062627, "decimalLat": -27.348381 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -27.348 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715394, "decimalLat": -34.892802 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822983, "decimalLat": -34.101753 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058031, "decimalLat": -27.551163 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.61625, "decimalLat": -27.385972 }, "geometry": { "type": "Point", "coordinates": [ 151.616, -27.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401523, "decimalLat": -28.260373 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092114, "decimalLat": -27.527137 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919373, "decimalLat": -31.443032 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.229042, "decimalLat": -28.889395 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0931, "decimalLat": -27.526287 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.512968, "decimalLat": -38.834065 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163697, "decimalLat": -38.671167 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249514, "decimalLat": -27.496771 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102836, "decimalLat": -27.527529 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.097, "decimalLat": -27.837805 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -27.838 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441942, "decimalLat": -27.39523 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.592987, "decimalLat": -27.158067 }, "geometry": { "type": "Point", "coordinates": [ 152.593, -27.158 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091788, "decimalLat": -27.527126 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075142, "decimalLat": -27.506851 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.564426, "decimalLat": -29.547058 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -29.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.794672, "decimalLat": -26.38855 }, "geometry": { "type": "Point", "coordinates": [ 151.795, -26.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054904, "decimalLat": -27.542287 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.826181, "decimalLat": -34.989 }, "geometry": { "type": "Point", "coordinates": [ 138.826, -34.989 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.921227, "decimalLat": -26.546061 }, "geometry": { "type": "Point", "coordinates": [ 151.921, -26.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.884801, "decimalLat": -35.071298 }, "geometry": { "type": "Point", "coordinates": [ 138.885, -35.071 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082795, "decimalLat": -27.514507 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.650922, "decimalLat": -34.963253 }, "geometry": { "type": "Point", "coordinates": [ 138.651, -34.963 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189646, "decimalLat": -27.701124 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519445, "decimalLat": -30.520513 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705275, "decimalLat": -34.936978 }, "geometry": { "type": "Point", "coordinates": [ 138.705, -34.937 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092556, "decimalLat": -27.527928 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092884, "decimalLat": -27.525433 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.497497, "decimalLat": -37.0386 }, "geometry": { "type": "Point", "coordinates": [ 145.497, -37.039 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003838, "decimalLat": -27.412028 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052286, "decimalLat": -27.834752 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.835 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400825, "decimalLat": -28.258081 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.747217, "decimalLat": -26.148682 }, "geometry": { "type": "Point", "coordinates": [ 151.747, -26.149 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059576, "decimalLat": -27.550249 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.854949, "decimalLat": -28.308732 }, "geometry": { "type": "Point", "coordinates": [ 152.855, -28.309 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092287, "decimalLat": -27.527791 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.400058, "decimalLat": -27.49658 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.309082, "decimalLat": -38.384823 }, "geometry": { "type": "Point", "coordinates": [ 145.309, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.248992, "decimalLat": -37.811045 }, "geometry": { "type": "Point", "coordinates": [ 144.249, -37.811 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.563969, "decimalLat": -29.546651 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -29.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103045, "decimalLat": -27.530576 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036592, "decimalLat": -27.535408 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.279049, "decimalLat": -38.134349 }, "geometry": { "type": "Point", "coordinates": [ 145.279, -38.134 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104829, "decimalLat": -27.52981 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.29159, "decimalLat": -37.874318 }, "geometry": { "type": "Point", "coordinates": [ 142.292, -37.874 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106413, "decimalLat": -27.529377 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.291211, "decimalLat": -37.874662 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656425, "decimalLat": -35.00272 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.003 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.684858, "decimalLat": -34.95724 }, "geometry": { "type": "Point", "coordinates": [ 138.685, -34.957 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.13289, "decimalLat": -24.967152 }, "geometry": { "type": "Point", "coordinates": [ 151.133, -24.967 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091332, "decimalLat": -27.527291 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09168, "decimalLat": -27.527123 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090878, "decimalLat": -27.527323 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164003, "decimalLat": -38.67162 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.740662, "decimalLat": -26.66948 }, "geometry": { "type": "Point", "coordinates": [ 152.741, -26.669 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09125, "decimalLat": -27.527227 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.386293, "decimalLat": -38.354295 }, "geometry": { "type": "Point", "coordinates": [ 146.386, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073289, "decimalLat": -27.545977 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70662, "decimalLat": -34.903595 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092212, "decimalLat": -27.527903 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058553, "decimalLat": -27.547262 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.871353, "decimalLat": -19.123525 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.124 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.103078, "decimalLat": -38.399394 }, "geometry": { "type": "Point", "coordinates": [ 145.103, -38.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40241, "decimalLat": -27.495821 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06969, "decimalLat": -27.510485 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.430276, "decimalLat": -26.51423 }, "geometry": { "type": "Point", "coordinates": [ 152.43, -26.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095322, "decimalLat": -33.076622 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093157, "decimalLat": -27.526841 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.67903, "decimalLat": -27.852263 }, "geometry": { "type": "Point", "coordinates": [ 152.679, -27.852 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.735581, "decimalLat": -28.279851 }, "geometry": { "type": "Point", "coordinates": [ 152.736, -28.28 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.572433, "decimalLat": -27.63027 }, "geometry": { "type": "Point", "coordinates": [ 151.572, -27.63 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103652, "decimalLat": -27.530628 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090754, "decimalLat": -27.527478 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109391, "decimalLat": -27.527347 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109351, "decimalLat": -27.529399 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109496, "decimalLat": -27.527148 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.547853, "decimalLat": -27.766288 }, "geometry": { "type": "Point", "coordinates": [ 151.548, -27.766 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085053, "decimalLat": -27.509192 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112246, "decimalLat": -27.528043 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101454, "decimalLat": -27.530284 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.456542, "decimalLat": -28.09673 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.252647, "decimalLat": -29.801455 }, "geometry": { "type": "Point", "coordinates": [ 151.253, -29.801 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718722, "decimalLat": -34.912635 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.913 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 143.943865, "decimalLat": -18.622496 }, "geometry": { "type": "Point", "coordinates": [ 143.944, -18.622 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.564187, "decimalLat": -27.628952 }, "geometry": { "type": "Point", "coordinates": [ 151.564, -27.629 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721342, "decimalLat": -34.858354 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.858 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073904, "decimalLat": -27.547326 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103184, "decimalLat": -27.528477 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730899, "decimalLat": -34.885521 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.005176, "decimalLat": -26.559585 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -26.56 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092335, "decimalLat": -27.52811 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.997441, "decimalLat": -27.564462 }, "geometry": { "type": "Point", "coordinates": [ 151.997, -27.564 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.762188, "decimalLat": -37.911556 }, "geometry": { "type": "Point", "coordinates": [ 147.762, -37.912 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104068, "decimalLat": -27.530518 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073407, "decimalLat": -27.546173 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074407, "decimalLat": -27.546187 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090852, "decimalLat": -27.527067 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073115, "decimalLat": -27.546024 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.587633, "decimalLat": -34.757719 }, "geometry": { "type": "Point", "coordinates": [ 146.588, -34.758 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05092, "decimalLat": -27.544853 }, "geometry": { "type": "Point", "coordinates": [ 153.051, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.542748, "decimalLat": -38.41078 }, "geometry": { "type": "Point", "coordinates": [ 141.543, -38.411 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.928296, "decimalLat": -28.062578 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -28.063 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.800264, "decimalLat": -34.192565 }, "geometry": { "type": "Point", "coordinates": [ 150.8, -34.193 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.680892, "decimalLat": -36.347888 }, "geometry": { "type": "Point", "coordinates": [ 146.681, -36.348 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.815231, "decimalLat": -26.166516 }, "geometry": { "type": "Point", "coordinates": [ 151.815, -26.167 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.649276, "decimalLat": -35.013263 }, "geometry": { "type": "Point", "coordinates": [ 138.649, -35.013 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637716, "decimalLat": -35.004977 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.550482, "decimalLat": -34.507421 }, "geometry": { "type": "Point", "coordinates": [ 150.55, -34.507 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.996858, "decimalLat": -37.688766 }, "geometry": { "type": "Point", "coordinates": [ 143.997, -37.689 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061693, "decimalLat": -27.534306 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092788, "decimalLat": -27.527079 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059979, "decimalLat": -27.544681 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.297012, "decimalLat": -38.383266 }, "geometry": { "type": "Point", "coordinates": [ 145.297, -38.383 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.374581, "decimalLat": -27.916126 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.631588, "decimalLat": -38.341403 }, "geometry": { "type": "Point", "coordinates": [ 142.632, -38.341 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.313756, "decimalLat": -38.377516 }, "geometry": { "type": "Point", "coordinates": [ 145.314, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.268234, "decimalLat": -28.007122 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.007 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.281162, "decimalLat": -37.840084 }, "geometry": { "type": "Point", "coordinates": [ 144.281, -37.84 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.792799, "decimalLat": -26.13385 }, "geometry": { "type": "Point", "coordinates": [ 151.793, -26.134 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992999, "decimalLat": -27.823741 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656444, "decimalLat": -35.019039 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.019 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.174469, "decimalLat": -27.871711 }, "geometry": { "type": "Point", "coordinates": [ 153.174, -27.872 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.59485, "decimalLat": -34.760563 }, "geometry": { "type": "Point", "coordinates": [ 146.595, -34.761 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086408, "decimalLat": -27.505926 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.042022, "decimalLat": -27.297578 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -27.298 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.652908, "decimalLat": -35.012256 }, "geometry": { "type": "Point", "coordinates": [ 138.653, -35.012 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.453353, "decimalLat": -28.096203 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731586, "decimalLat": -34.889695 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.537154, "decimalLat": -32.88857 }, "geometry": { "type": "Point", "coordinates": [ 151.537, -32.889 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053273, "decimalLat": -27.544769 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.677277, "decimalLat": -27.985931 }, "geometry": { "type": "Point", "coordinates": [ 152.677, -27.986 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705046, "decimalLat": -34.934965 }, "geometry": { "type": "Point", "coordinates": [ 138.705, -34.935 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719081, "decimalLat": -34.891845 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071533, "decimalLat": -32.707295 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822445, "decimalLat": -34.102073 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103626, "decimalLat": -27.529884 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.653605, "decimalLat": -34.963425 }, "geometry": { "type": "Point", "coordinates": [ 138.654, -34.963 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.928218, "decimalLat": -28.061285 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -28.061 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108669, "decimalLat": -27.526695 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066066, "decimalLat": -27.55124 }, "geometry": { "type": "Point", "coordinates": [ 153.066, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.390229, "decimalLat": -28.281744 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.282 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.996063, "decimalLat": -27.432787 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -27.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1833, "decimalLat": -27.53118 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.726796, "decimalLat": -38.081626 }, "geometry": { "type": "Point", "coordinates": [ 141.727, -38.082 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.876467, "decimalLat": -28.057931 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -28.058 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109026, "decimalLat": -27.527269 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073853, "decimalLat": -27.54524 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105207, "decimalLat": -27.529931 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 150.979318, "decimalLat": -24.723634 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -24.724 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.275912, "decimalLat": -37.860145 }, "geometry": { "type": "Point", "coordinates": [ 144.276, -37.86 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.945372, "decimalLat": -28.125842 }, "geometry": { "type": "Point", "coordinates": [ 152.945, -28.126 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.267911, "decimalLat": -38.13058 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057692, "decimalLat": -27.551827 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.932708, "decimalLat": -27.330345 }, "geometry": { "type": "Point", "coordinates": [ 151.933, -27.33 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.974828, "decimalLat": -38.481689 }, "geometry": { "type": "Point", "coordinates": [ 142.975, -38.482 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.570937, "decimalLat": -27.812862 }, "geometry": { "type": "Point", "coordinates": [ 151.571, -27.813 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.808619, "decimalLat": -35.959072 }, "geometry": { "type": "Point", "coordinates": [ 136.809, -35.959 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103889, "decimalLat": -27.528736 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.134115, "decimalLat": -38.173466 }, "geometry": { "type": "Point", "coordinates": [ 145.134, -38.173 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.539177, "decimalLat": -27.654271 }, "geometry": { "type": "Point", "coordinates": [ 151.539, -27.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.980027, "decimalLat": -27.556855 }, "geometry": { "type": "Point", "coordinates": [ 151.98, -27.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.569151, "decimalLat": -27.756378 }, "geometry": { "type": "Point", "coordinates": [ 151.569, -27.756 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090453, "decimalLat": -27.526043 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05855, "decimalLat": -27.547731 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731676, "decimalLat": -34.890343 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.15518, "decimalLat": -38.352304 }, "geometry": { "type": "Point", "coordinates": [ 144.155, -38.352 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.419744, "decimalLat": -37.958541 }, "geometry": { "type": "Point", "coordinates": [ 144.42, -37.959 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069153, "decimalLat": -27.223163 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.223 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.654433, "decimalLat": -37.75712 }, "geometry": { "type": "Point", "coordinates": [ 145.654, -37.757 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108617, "decimalLat": -27.527281 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.397638, "decimalLat": -28.261625 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.773023, "decimalLat": -34.183908 }, "geometry": { "type": "Point", "coordinates": [ 140.773, -34.184 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164078, "decimalLat": -38.671562 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.208859, "decimalLat": -38.622633 }, "geometry": { "type": "Point", "coordinates": [ 146.209, -38.623 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.320398, "decimalLat": -27.618251 }, "geometry": { "type": "Point", "coordinates": [ 151.32, -27.618 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.854949, "decimalLat": -28.308732 }, "geometry": { "type": "Point", "coordinates": [ 152.855, -28.309 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.861194, "decimalLat": -38.668211 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092007, "decimalLat": -27.52554 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074459, "decimalLat": -27.546007 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.374968, "decimalLat": -27.914379 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.530158, "decimalLat": -35.138445 }, "geometry": { "type": "Point", "coordinates": [ 138.53, -35.138 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.2612, "decimalLat": -27.590392 }, "geometry": { "type": "Point", "coordinates": [ 152.261, -27.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.857513, "decimalLat": -37.640192 }, "geometry": { "type": "Point", "coordinates": [ 143.858, -37.64 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083229, "decimalLat": -27.513873 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000641, "decimalLat": -27.284487 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601251, "decimalLat": -29.86718 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -29.867 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722429, "decimalLat": -34.891339 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.612992, "decimalLat": -27.34011 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -27.34 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.905877, "decimalLat": -27.650796 }, "geometry": { "type": "Point", "coordinates": [ 151.906, -27.651 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.328159, "decimalLat": -36.20924 }, "geometry": { "type": "Point", "coordinates": [ 149.328, -36.209 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058679, "decimalLat": -27.546415 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.877716, "decimalLat": -37.697475 }, "geometry": { "type": "Point", "coordinates": [ 143.878, -37.697 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093153, "decimalLat": -27.528492 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093055, "decimalLat": -27.528061 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.004613, "decimalLat": -27.298679 }, "geometry": { "type": "Point", "coordinates": [ 153.005, -27.299 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.998414, "decimalLat": -37.692538 }, "geometry": { "type": "Point", "coordinates": [ 143.998, -37.693 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.601859, "decimalLat": -38.762571 }, "geometry": { "type": "Point", "coordinates": [ 143.602, -38.763 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.391904, "decimalLat": -28.001374 }, "geometry": { "type": "Point", "coordinates": [ 151.392, -28.001 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092726, "decimalLat": -27.527638 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.727969, "decimalLat": -37.922906 }, "geometry": { "type": "Point", "coordinates": [ 147.728, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072568, "decimalLat": -27.54327 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.760237, "decimalLat": -28.240512 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -28.241 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054701, "decimalLat": -27.538373 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.635944, "decimalLat": -34.99006 }, "geometry": { "type": "Point", "coordinates": [ 138.636, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.740915, "decimalLat": -34.83935 }, "geometry": { "type": "Point", "coordinates": [ 138.741, -34.839 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091732, "decimalLat": -27.527161 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.077138, "decimalLat": -27.543132 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722727, "decimalLat": -34.889565 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.594465, "decimalLat": -37.331937 }, "geometry": { "type": "Point", "coordinates": [ 144.594, -37.332 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093448, "decimalLat": -27.525434 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394487, "decimalLat": -28.266663 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.267 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.8803, "decimalLat": -27.424591 }, "geometry": { "type": "Point", "coordinates": [ 151.88, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.29335, "decimalLat": -38.753597 }, "geometry": { "type": "Point", "coordinates": [ 143.293, -38.754 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111461, "decimalLat": -27.52833 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06035, "decimalLat": -27.55952 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.56 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.953195, "decimalLat": -38.428993 }, "geometry": { "type": "Point", "coordinates": [ 144.953, -38.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.356434, "decimalLat": -38.333708 }, "geometry": { "type": "Point", "coordinates": [ 142.356, -38.334 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090516, "decimalLat": -27.526002 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.135101, "decimalLat": -27.565216 }, "geometry": { "type": "Point", "coordinates": [ 153.135, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.519958, "decimalLat": -34.745628 }, "geometry": { "type": "Point", "coordinates": [ 146.52, -34.746 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092091, "decimalLat": -27.52706 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.08104, "decimalLat": -38.286999 }, "geometry": { "type": "Point", "coordinates": [ 145.081, -38.287 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.954103, "decimalLat": -28.075911 }, "geometry": { "type": "Point", "coordinates": [ 152.954, -28.076 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074781, "decimalLat": -27.546176 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.107545, "decimalLat": -27.5637 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -27.564 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.361935, "decimalLat": -27.903962 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.714791, "decimalLat": -34.98703 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.987 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090967, "decimalLat": -27.526471 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.124251, "decimalLat": -37.741977 }, "geometry": { "type": "Point", "coordinates": [ 145.124, -37.742 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.102434, "decimalLat": -27.5687 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37706, "decimalLat": -28.254206 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.95802, "decimalLat": -27.310235 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -27.31 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.90214, "decimalLat": -27.620514 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401521, "decimalLat": -28.260455 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.717578, "decimalLat": -34.931619 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -34.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396103, "decimalLat": -28.275088 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.275 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.409522, "decimalLat": -37.962314 }, "geometry": { "type": "Point", "coordinates": [ 144.41, -37.962 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.515397, "decimalLat": -34.740788 }, "geometry": { "type": "Point", "coordinates": [ 146.515, -34.741 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.94962, "decimalLat": -26.283744 }, "geometry": { "type": "Point", "coordinates": [ 151.95, -26.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.774895, "decimalLat": -38.202745 }, "geometry": { "type": "Point", "coordinates": [ 141.775, -38.203 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377676, "decimalLat": -28.254288 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.722703, "decimalLat": -26.989088 }, "geometry": { "type": "Point", "coordinates": [ 152.723, -26.989 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70334, "decimalLat": -34.903004 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092287, "decimalLat": -27.525734 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.57293, "decimalLat": -29.541992 }, "geometry": { "type": "Point", "coordinates": [ 150.573, -29.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090716, "decimalLat": -27.525984 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.115408, "decimalLat": -27.529336 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.871372, "decimalLat": -27.326297 }, "geometry": { "type": "Point", "coordinates": [ 151.871, -27.326 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992718, "decimalLat": -27.82402 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.309984, "decimalLat": -38.384945 }, "geometry": { "type": "Point", "coordinates": [ 145.31, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103667, "decimalLat": -27.529714 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09206, "decimalLat": -27.527193 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731048, "decimalLat": -34.890227 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092275, "decimalLat": -27.527275 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058201, "decimalLat": -27.547369 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.371829, "decimalLat": -27.91064 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.911 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057932, "decimalLat": -27.550819 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.015381, "decimalLat": -26.699369 }, "geometry": { "type": "Point", "coordinates": [ 152.015, -26.699 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 147.522643, "decimalLat": -22.596606 }, "geometry": { "type": "Point", "coordinates": [ 147.523, -22.597 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403783, "decimalLat": -27.499171 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.828946, "decimalLat": -26.373343 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -26.373 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.634369, "decimalLat": -34.888328 }, "geometry": { "type": "Point", "coordinates": [ 138.634, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070516, "decimalLat": -27.543561 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.143994, "decimalLat": -38.05283 }, "geometry": { "type": "Point", "coordinates": [ 144.144, -38.053 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.892916, "decimalLat": -27.602107 }, "geometry": { "type": "Point", "coordinates": [ 151.893, -27.602 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870542, "decimalLat": -19.131922 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.132 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.827388, "decimalLat": -19.128562 }, "geometry": { "type": "Point", "coordinates": [ 146.827, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999854, "decimalLat": -27.284521 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069398, "decimalLat": -27.511985 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057731, "decimalLat": -27.551715 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722258, "decimalLat": -34.890694 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095441, "decimalLat": -33.076711 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059215, "decimalLat": -27.546192 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.134296, "decimalLat": -38.178694 }, "geometry": { "type": "Point", "coordinates": [ 145.134, -38.179 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09303, "decimalLat": -27.524463 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092396, "decimalLat": -27.524797 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.130955, "decimalLat": -38.175094 }, "geometry": { "type": "Point", "coordinates": [ 145.131, -38.175 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.843129, "decimalLat": -26.539756 }, "geometry": { "type": "Point", "coordinates": [ 151.843, -26.54 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40518, "decimalLat": -28.260772 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999921, "decimalLat": -27.284544 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.094842, "decimalLat": -27.513825 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.550241, "decimalLat": -28.657903 }, "geometry": { "type": "Point", "coordinates": [ 153.55, -28.658 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.846405, "decimalLat": -34.145867 }, "geometry": { "type": "Point", "coordinates": [ 150.846, -34.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084012, "decimalLat": -27.512497 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.357574, "decimalLat": -27.983128 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.983 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992301, "decimalLat": -27.82348 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731975, "decimalLat": -34.890229 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.701203, "decimalLat": -34.901662 }, "geometry": { "type": "Point", "coordinates": [ 138.701, -34.902 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.013668, "decimalLat": -34.806076 }, "geometry": { "type": "Point", "coordinates": [ 150.014, -34.806 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.626217, "decimalLat": -38.784656 }, "geometry": { "type": "Point", "coordinates": [ 143.626, -38.785 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.311492, "decimalLat": -37.664088 }, "geometry": { "type": "Point", "coordinates": [ 144.311, -37.664 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721392, "decimalLat": -34.89275 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.04468, "decimalLat": -27.257758 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.814643, "decimalLat": -26.36268 }, "geometry": { "type": "Point", "coordinates": [ 151.815, -26.363 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.727538, "decimalLat": -37.920637 }, "geometry": { "type": "Point", "coordinates": [ 147.728, -37.921 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104615, "decimalLat": -27.529714 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090698, "decimalLat": -27.526469 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.682753, "decimalLat": -35.086363 }, "geometry": { "type": "Point", "coordinates": [ 138.683, -35.086 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.72585, "decimalLat": -37.926806 }, "geometry": { "type": "Point", "coordinates": [ 147.726, -37.927 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377978, "decimalLat": -28.254511 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.115363, "decimalLat": -27.529197 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10334, "decimalLat": -27.530131 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061022, "decimalLat": -27.546063 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079895, "decimalLat": -27.513038 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057773, "decimalLat": -27.551127 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091003, "decimalLat": -27.527095 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092197, "decimalLat": -27.527738 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090704, "decimalLat": -27.526737 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091551, "decimalLat": -27.526749 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.401948, "decimalLat": -38.275213 }, "geometry": { "type": "Point", "coordinates": [ 141.402, -38.275 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11038, "decimalLat": -27.527512 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.595394, "decimalLat": -35.076037 }, "geometry": { "type": "Point", "coordinates": [ 138.595, -35.076 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058582, "decimalLat": -27.544852 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729395, "decimalLat": -37.926331 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.926 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103376, "decimalLat": -27.529086 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090102, "decimalLat": -27.526698 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095536, "decimalLat": -33.076472 }, "geometry": { "type": "Point", "coordinates": [ 151.096, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110021, "decimalLat": -27.527396 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.852017, "decimalLat": -27.543528 }, "geometry": { "type": "Point", "coordinates": [ 152.852, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.833445, "decimalLat": -38.151948 }, "geometry": { "type": "Point", "coordinates": [ 141.833, -38.152 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.658594, "decimalLat": -36.247843 }, "geometry": { "type": "Point", "coordinates": [ 146.659, -36.248 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.404198, "decimalLat": -27.453729 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -27.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112659, "decimalLat": -27.527931 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092675, "decimalLat": -27.527487 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.957655, "decimalLat": -32.337238 }, "geometry": { "type": "Point", "coordinates": [ 151.958, -32.337 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.905083, "decimalLat": -28.173541 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -28.174 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057487, "decimalLat": -27.551295 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.190207, "decimalLat": -27.70089 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344529, "decimalLat": -27.831775 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093659, "decimalLat": -27.525328 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.561577, "decimalLat": -38.825019 }, "geometry": { "type": "Point", "coordinates": [ 143.562, -38.825 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059527, "decimalLat": -27.55106 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.889298, "decimalLat": -37.671158 }, "geometry": { "type": "Point", "coordinates": [ 143.889, -37.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090726, "decimalLat": -27.526027 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715923, "decimalLat": -35.016456 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.188377, "decimalLat": -27.700713 }, "geometry": { "type": "Point", "coordinates": [ 153.188, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.959719, "decimalLat": -27.249639 }, "geometry": { "type": "Point", "coordinates": [ 152.96, -27.25 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722435, "decimalLat": -34.892718 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.597107, "decimalLat": -27.800797 }, "geometry": { "type": "Point", "coordinates": [ 151.597, -27.801 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.03752, "decimalLat": -26.375482 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -26.375 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.866519, "decimalLat": -26.169442 }, "geometry": { "type": "Point", "coordinates": [ 151.867, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201997, "decimalLat": -27.631028 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.631 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092448, "decimalLat": -27.528334 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10427, "decimalLat": -27.528679 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.855975, "decimalLat": -28.077068 }, "geometry": { "type": "Point", "coordinates": [ 152.856, -28.077 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08308, "decimalLat": -27.516538 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.769885, "decimalLat": -26.215839 }, "geometry": { "type": "Point", "coordinates": [ 151.77, -26.216 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102691, "decimalLat": -27.529456 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872695, "decimalLat": -31.473463 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.406351, "decimalLat": -28.976688 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.977 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.618925, "decimalLat": -38.788478 }, "geometry": { "type": "Point", "coordinates": [ 143.619, -38.788 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103257, "decimalLat": -27.528501 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.499313, "decimalLat": -32.949538 }, "geometry": { "type": "Point", "coordinates": [ 151.499, -32.95 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.677231, "decimalLat": -34.950061 }, "geometry": { "type": "Point", "coordinates": [ 138.677, -34.95 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.060456, "decimalLat": -38.363914 }, "geometry": { "type": "Point", "coordinates": [ 146.06, -38.364 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.158966, "decimalLat": -38.176525 }, "geometry": { "type": "Point", "coordinates": [ 144.159, -38.177 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.403117, "decimalLat": -27.237725 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -27.238 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.330265, "decimalLat": -37.696561 }, "geometry": { "type": "Point", "coordinates": [ 144.33, -37.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074005, "decimalLat": -27.545958 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.728498, "decimalLat": -34.890131 }, "geometry": { "type": "Point", "coordinates": [ 138.728, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722346, "decimalLat": -34.889845 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.550849, "decimalLat": -27.813264 }, "geometry": { "type": "Point", "coordinates": [ 151.551, -27.813 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057885, "decimalLat": -27.551089 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.690613, "decimalLat": -34.954348 }, "geometry": { "type": "Point", "coordinates": [ 138.691, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058977, "decimalLat": -27.547716 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109085, "decimalLat": -27.526735 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.047417, "decimalLat": -27.545129 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164781, "decimalLat": -38.671105 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638562, "decimalLat": -34.97007 }, "geometry": { "type": "Point", "coordinates": [ 138.639, -34.97 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65593, "decimalLat": -35.019247 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.019 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37524, "decimalLat": -28.252536 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073886, "decimalLat": -27.519128 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058176, "decimalLat": -27.551428 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092749, "decimalLat": -27.527545 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.01743, "decimalLat": -38.608447 }, "geometry": { "type": "Point", "coordinates": [ 146.017, -38.608 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103746, "decimalLat": -27.528183 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.062592, "decimalLat": -27.26313 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -27.263 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091918, "decimalLat": -27.527059 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095441, "decimalLat": -33.076711 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.997152, "decimalLat": -27.287641 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -27.288 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.867267, "decimalLat": -28.222061 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -28.222 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046158, "decimalLat": -27.255483 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.255 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.196354, "decimalLat": -38.572854 }, "geometry": { "type": "Point", "coordinates": [ 146.196, -38.573 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.700303, "decimalLat": -34.96203 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.962 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.033828, "decimalLat": -27.527938 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.874434, "decimalLat": -37.601773 }, "geometry": { "type": "Point", "coordinates": [ 143.874, -37.602 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.585783, "decimalLat": -35.169842 }, "geometry": { "type": "Point", "coordinates": [ 138.586, -35.17 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078779, "decimalLat": -27.506239 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377301, "decimalLat": -28.253858 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.176484, "decimalLat": -36.217902 }, "geometry": { "type": "Point", "coordinates": [ 146.176, -36.218 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.369093, "decimalLat": -27.833022 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09106, "decimalLat": -27.526351 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058689, "decimalLat": -27.551349 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713945, "decimalLat": -34.959922 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091945, "decimalLat": -27.525028 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108088, "decimalLat": -27.526792 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.284841, "decimalLat": -26.894481 }, "geometry": { "type": "Point", "coordinates": [ 152.285, -26.894 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.170288, "decimalLat": -27.582925 }, "geometry": { "type": "Point", "coordinates": [ 153.17, -27.583 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091121, "decimalLat": -27.527541 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057761, "decimalLat": -27.551543 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.403563, "decimalLat": -34.671938 }, "geometry": { "type": "Point", "coordinates": [ 146.404, -34.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.857413, "decimalLat": -38.669925 }, "geometry": { "type": "Point", "coordinates": [ 143.857, -38.67 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.295958, "decimalLat": -38.384467 }, "geometry": { "type": "Point", "coordinates": [ 145.296, -38.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.521594, "decimalLat": -30.519724 }, "geometry": { "type": "Point", "coordinates": [ 151.522, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.724425, "decimalLat": -34.865098 }, "geometry": { "type": "Point", "coordinates": [ 138.724, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441222, "decimalLat": -27.3935 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.900178, "decimalLat": -34.976859 }, "geometry": { "type": "Point", "coordinates": [ 138.9, -34.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110741, "decimalLat": -27.529814 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.763563, "decimalLat": -27.269725 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -27.27 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.789262, "decimalLat": -27.402547 }, "geometry": { "type": "Point", "coordinates": [ 151.789, -27.403 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.925632, "decimalLat": -37.65306 }, "geometry": { "type": "Point", "coordinates": [ 143.926, -37.653 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.197342, "decimalLat": -38.757603 }, "geometry": { "type": "Point", "coordinates": [ 146.197, -38.758 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.73656, "decimalLat": -28.201111 }, "geometry": { "type": "Point", "coordinates": [ 152.737, -28.201 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093399, "decimalLat": -27.524138 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091675, "decimalLat": -27.527114 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000565, "decimalLat": -27.284239 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.511465, "decimalLat": -38.828863 }, "geometry": { "type": "Point", "coordinates": [ 143.511, -38.829 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091739, "decimalLat": -27.527151 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092079, "decimalLat": -27.52573 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.597393, "decimalLat": -37.370924 }, "geometry": { "type": "Point", "coordinates": [ 144.597, -37.371 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377471, "decimalLat": -28.254097 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249747, "decimalLat": -27.496789 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.710954, "decimalLat": -36.353547 }, "geometry": { "type": "Point", "coordinates": [ 146.711, -36.354 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.811691, "decimalLat": -35.959464 }, "geometry": { "type": "Point", "coordinates": [ 136.812, -35.959 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.260719, "decimalLat": -27.589162 }, "geometry": { "type": "Point", "coordinates": [ 152.261, -27.589 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.8258, "decimalLat": -32.32651 }, "geometry": { "type": "Point", "coordinates": [ 151.826, -32.327 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.408161, "decimalLat": -33.753478 }, "geometry": { "type": "Point", "coordinates": [ 149.408, -33.753 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103892, "decimalLat": -27.529678 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107506, "decimalLat": -27.527047 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.310837, "decimalLat": -37.276937 }, "geometry": { "type": "Point", "coordinates": [ 144.311, -37.277 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.589997, "decimalLat": -35.137108 }, "geometry": { "type": "Point", "coordinates": [ 138.59, -35.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.78003, "decimalLat": -27.392737 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109327, "decimalLat": -27.527221 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.536755, "decimalLat": -38.148607 }, "geometry": { "type": "Point", "coordinates": [ 141.537, -38.149 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.751388, "decimalLat": -26.363404 }, "geometry": { "type": "Point", "coordinates": [ 151.751, -26.363 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091777, "decimalLat": -27.527131 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.131848, "decimalLat": -38.175571 }, "geometry": { "type": "Point", "coordinates": [ 145.132, -38.176 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102926, "decimalLat": -27.528969 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.728088, "decimalLat": -37.922303 }, "geometry": { "type": "Point", "coordinates": [ 147.728, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.791974, "decimalLat": -26.1446 }, "geometry": { "type": "Point", "coordinates": [ 151.792, -26.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102608, "decimalLat": -27.529462 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702567, "decimalLat": -34.903095 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.618422, "decimalLat": -27.88937 }, "geometry": { "type": "Point", "coordinates": [ 152.618, -27.889 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.379969, "decimalLat": -27.918638 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.658206, "decimalLat": -35.003503 }, "geometry": { "type": "Point", "coordinates": [ 138.658, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.158906, "decimalLat": -27.716628 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -27.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.16351, "decimalLat": -27.62049 }, "geometry": { "type": "Point", "coordinates": [ 153.164, -27.62 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656811, "decimalLat": -35.018471 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -35.018 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656875, "decimalLat": -34.865238 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074653, "decimalLat": -27.358635 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073208, "decimalLat": -27.545619 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.302108, "decimalLat": -36.897383 }, "geometry": { "type": "Point", "coordinates": [ 145.302, -36.897 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060293, "decimalLat": -27.538572 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.550848, "decimalLat": -34.754636 }, "geometry": { "type": "Point", "coordinates": [ 146.551, -34.755 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109971, "decimalLat": -27.529295 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.715653, "decimalLat": -38.637795 }, "geometry": { "type": "Point", "coordinates": [ 145.716, -38.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05483, "decimalLat": -27.55031 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394689, "decimalLat": -28.275677 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070828, "decimalLat": -27.509689 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092538, "decimalLat": -27.525461 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387718, "decimalLat": -38.354703 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104104, "decimalLat": -27.531088 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08554, "decimalLat": -27.625599 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.626 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070308, "decimalLat": -27.543468 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108856, "decimalLat": -27.529119 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.716417, "decimalLat": -27.568672 }, "geometry": { "type": "Point", "coordinates": [ 151.716, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.044342, "decimalLat": -27.257481 }, "geometry": { "type": "Point", "coordinates": [ 152.044, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.43425, "decimalLat": -20.923028 }, "geometry": { "type": "Point", "coordinates": [ 149.434, -20.923 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.898437, "decimalLat": -27.652831 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -27.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092251, "decimalLat": -27.527961 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716848, "decimalLat": -34.893376 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103219, "decimalLat": -27.528996 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.658277, "decimalLat": -34.959683 }, "geometry": { "type": "Point", "coordinates": [ 138.658, -34.96 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110117, "decimalLat": -27.527389 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.738927, "decimalLat": -34.827487 }, "geometry": { "type": "Point", "coordinates": [ 138.739, -34.827 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.749675, "decimalLat": -37.567248 }, "geometry": { "type": "Point", "coordinates": [ 149.75, -37.567 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.568478, "decimalLat": -34.761568 }, "geometry": { "type": "Point", "coordinates": [ 146.568, -34.762 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.626078, "decimalLat": -34.893254 }, "geometry": { "type": "Point", "coordinates": [ 138.626, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086022, "decimalLat": -27.516366 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.994066, "decimalLat": -27.823552 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052176, "decimalLat": -27.538842 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.724811, "decimalLat": -34.875561 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -34.876 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.761171, "decimalLat": -26.141183 }, "geometry": { "type": "Point", "coordinates": [ 151.761, -26.141 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376817, "decimalLat": -28.254193 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102422, "decimalLat": -27.735248 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.735 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111426, "decimalLat": -27.527927 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363218, "decimalLat": -38.318936 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.098586, "decimalLat": -27.501119 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09196, "decimalLat": -27.525539 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037063, "decimalLat": -27.547292 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104484, "decimalLat": -27.530855 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09254, "decimalLat": -27.527069 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092552, "decimalLat": -27.527268 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059871, "decimalLat": -27.54999 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090867, "decimalLat": -27.527105 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.559844, "decimalLat": -35.093692 }, "geometry": { "type": "Point", "coordinates": [ 138.56, -35.094 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.208859, "decimalLat": -38.622633 }, "geometry": { "type": "Point", "coordinates": [ 146.209, -38.623 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413706, "decimalLat": -31.931883 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.459853, "decimalLat": -26.959617 }, "geometry": { "type": "Point", "coordinates": [ 152.46, -26.96 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093248, "decimalLat": -27.528493 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092018, "decimalLat": -27.527251 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.071361, "decimalLat": -27.260484 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -27.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399437, "decimalLat": -28.260618 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7142, "decimalLat": -34.8685 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.868 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.187163, "decimalLat": -28.195347 }, "geometry": { "type": "Point", "coordinates": [ 153.187, -28.195 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092253, "decimalLat": -27.527804 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.026898, "decimalLat": -27.353384 }, "geometry": { "type": "Point", "coordinates": [ 152.027, -27.353 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249435, "decimalLat": -27.496763 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.155014, "decimalLat": -27.522661 }, "geometry": { "type": "Point", "coordinates": [ 153.155, -27.523 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.057471, "decimalLat": -27.268302 }, "geometry": { "type": "Point", "coordinates": [ 152.057, -27.268 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092197, "decimalLat": -27.52548 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105285, "decimalLat": -27.527182 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054895, "decimalLat": -27.539382 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.647222, "decimalLat": -35.01 }, "geometry": { "type": "Point", "coordinates": [ 138.647, -35.01 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.925969, "decimalLat": -26.538987 }, "geometry": { "type": "Point", "coordinates": [ 151.926, -26.539 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.581872, "decimalLat": -35.095714 }, "geometry": { "type": "Point", "coordinates": [ 138.582, -35.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.90784, "decimalLat": -37.746468 }, "geometry": { "type": "Point", "coordinates": [ 143.908, -37.746 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071771, "decimalLat": -27.544293 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.639921, "decimalLat": -30.486778 }, "geometry": { "type": "Point", "coordinates": [ 151.64, -30.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111331, "decimalLat": -27.526953 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.389755, "decimalLat": -38.356647 }, "geometry": { "type": "Point", "coordinates": [ 146.39, -38.357 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.0701, "decimalLat": -32.707645 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439061, "decimalLat": -27.397866 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102609, "decimalLat": -27.529534 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107772, "decimalLat": -27.5268 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400014, "decimalLat": -28.260312 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084935, "decimalLat": -27.506908 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.58615, "decimalLat": -34.773212 }, "geometry": { "type": "Point", "coordinates": [ 146.586, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.586058, "decimalLat": -27.799172 }, "geometry": { "type": "Point", "coordinates": [ 151.586, -27.799 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73221, "decimalLat": -34.889666 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.84787, "decimalLat": -34.078785 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.079 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093371, "decimalLat": -27.525451 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70256, "decimalLat": -34.903933 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104627, "decimalLat": -27.529175 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.0952, "decimalLat": -33.076675 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11158, "decimalLat": -27.529257 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.608048, "decimalLat": -27.420005 }, "geometry": { "type": "Point", "coordinates": [ 152.608, -27.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.5883, "decimalLat": -38.253706 }, "geometry": { "type": "Point", "coordinates": [ 146.588, -38.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111997, "decimalLat": -27.529337 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093052, "decimalLat": -27.524248 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.573337, "decimalLat": -27.837743 }, "geometry": { "type": "Point", "coordinates": [ 151.573, -27.838 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993012, "decimalLat": -27.823655 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.738369, "decimalLat": -37.920631 }, "geometry": { "type": "Point", "coordinates": [ 147.738, -37.921 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.985666, "decimalLat": -26.685525 }, "geometry": { "type": "Point", "coordinates": [ 151.986, -26.686 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.594027, "decimalLat": -28.068571 }, "geometry": { "type": "Point", "coordinates": [ 152.594, -28.069 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091596, "decimalLat": -27.527118 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722722, "decimalLat": -34.889468 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.996558, "decimalLat": -27.304556 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -27.305 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.780475, "decimalLat": -36.798388 }, "geometry": { "type": "Point", "coordinates": [ 145.78, -36.798 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.598633, "decimalLat": -27.46973 }, "geometry": { "type": "Point", "coordinates": [ 152.599, -27.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.980971, "decimalLat": -27.276539 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -27.277 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.874817, "decimalLat": -27.483677 }, "geometry": { "type": "Point", "coordinates": [ 151.875, -27.484 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192413, "decimalLat": -27.728608 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.729 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084298, "decimalLat": -27.510458 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.040966, "decimalLat": -27.537374 }, "geometry": { "type": "Point", "coordinates": [ 153.041, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314758, "decimalLat": -38.373161 }, "geometry": { "type": "Point", "coordinates": [ 145.315, -38.373 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.998241, "decimalLat": -27.436496 }, "geometry": { "type": "Point", "coordinates": [ 151.998, -27.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.748898, "decimalLat": -26.154356 }, "geometry": { "type": "Point", "coordinates": [ 151.749, -26.154 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092739, "decimalLat": -27.527647 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.102525, "decimalLat": -27.568725 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059932, "decimalLat": -27.550248 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.686027, "decimalLat": -34.953584 }, "geometry": { "type": "Point", "coordinates": [ 138.686, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110556, "decimalLat": -27.527339 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111312, "decimalLat": -27.526988 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.045768, "decimalLat": -27.548695 }, "geometry": { "type": "Point", "coordinates": [ 153.046, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399278, "decimalLat": -27.497203 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090659, "decimalLat": -27.526452 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092526, "decimalLat": -27.525584 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.831715, "decimalLat": -28.071929 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -28.072 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713851, "decimalLat": -34.891674 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109742, "decimalLat": -27.529577 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.532427, "decimalLat": -38.841434 }, "geometry": { "type": "Point", "coordinates": [ 143.532, -38.841 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.389182, "decimalLat": -28.282675 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.283 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.899999, "decimalLat": -27.261314 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069936, "decimalLat": -27.509442 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.580991, "decimalLat": -27.960683 }, "geometry": { "type": "Point", "coordinates": [ 152.581, -27.961 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.586005, "decimalLat": -34.764952 }, "geometry": { "type": "Point", "coordinates": [ 146.586, -34.765 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.351081, "decimalLat": -27.93795 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104237, "decimalLat": -27.527748 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.559678, "decimalLat": -35.031587 }, "geometry": { "type": "Point", "coordinates": [ 138.56, -35.032 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.364003, "decimalLat": -38.318526 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082777, "decimalLat": -27.51085 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092919, "decimalLat": -27.527879 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729412, "decimalLat": -34.889967 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.633697, "decimalLat": -34.998067 }, "geometry": { "type": "Point", "coordinates": [ 138.634, -34.998 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072083, "decimalLat": -27.553225 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112035, "decimalLat": -27.529137 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111225, "decimalLat": -27.527277 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.611082, "decimalLat": -35.049764 }, "geometry": { "type": "Point", "coordinates": [ 138.611, -35.05 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.690915, "decimalLat": -27.442186 }, "geometry": { "type": "Point", "coordinates": [ 151.691, -27.442 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363433, "decimalLat": -38.318812 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.543551, "decimalLat": -27.433674 }, "geometry": { "type": "Point", "coordinates": [ 153.544, -27.434 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.436702, "decimalLat": -37.953823 }, "geometry": { "type": "Point", "coordinates": [ 144.437, -37.954 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0768, "decimalLat": -27.540875 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992582, "decimalLat": -27.822636 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090798, "decimalLat": -27.525892 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.781967, "decimalLat": -26.309604 }, "geometry": { "type": "Point", "coordinates": [ 151.782, -26.31 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.655478, "decimalLat": -37.026706 }, "geometry": { "type": "Point", "coordinates": [ 145.655, -37.027 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.194856, "decimalLat": -27.729189 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.729 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10537, "decimalLat": -27.529837 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.251865, "decimalLat": -37.81971 }, "geometry": { "type": "Point", "coordinates": [ 144.252, -37.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.962876, "decimalLat": -27.273422 }, "geometry": { "type": "Point", "coordinates": [ 152.963, -27.273 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.943302, "decimalLat": -26.531361 }, "geometry": { "type": "Point", "coordinates": [ 151.943, -26.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999373, "decimalLat": -27.28399 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.432479, "decimalLat": -37.960008 }, "geometry": { "type": "Point", "coordinates": [ 144.432, -37.96 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05678, "decimalLat": -27.551728 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249353, "decimalLat": -27.496289 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103315, "decimalLat": -27.52905 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092127, "decimalLat": -27.527147 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090733, "decimalLat": -27.526755 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.145645, "decimalLat": -27.893011 }, "geometry": { "type": "Point", "coordinates": [ 153.146, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.902414, "decimalLat": -37.640257 }, "geometry": { "type": "Point", "coordinates": [ 143.902, -37.64 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.950212, "decimalLat": -26.548663 }, "geometry": { "type": "Point", "coordinates": [ 151.95, -26.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10337, "decimalLat": -27.530311 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.03385, "decimalLat": -27.528346 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111563, "decimalLat": -27.527907 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092381, "decimalLat": -27.527796 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895396, "decimalLat": -27.600052 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103475, "decimalLat": -27.529854 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.540372, "decimalLat": -35.230002 }, "geometry": { "type": "Point", "coordinates": [ 138.54, -35.23 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.99336, "decimalLat": -30.559703 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -30.56 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.569954, "decimalLat": -27.692305 }, "geometry": { "type": "Point", "coordinates": [ 151.57, -27.692 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.62587, "decimalLat": -35.020803 }, "geometry": { "type": "Point", "coordinates": [ 138.626, -35.021 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112328, "decimalLat": -27.528714 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002588, "decimalLat": -30.533768 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -30.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108774, "decimalLat": -27.527214 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.728491, "decimalLat": -34.887054 }, "geometry": { "type": "Point", "coordinates": [ 138.728, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.925556, "decimalLat": -37.652778 }, "geometry": { "type": "Point", "coordinates": [ 143.926, -37.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054697, "decimalLat": -27.551068 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376974, "decimalLat": -28.254163 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.681612, "decimalLat": -34.855378 }, "geometry": { "type": "Point", "coordinates": [ 138.682, -34.855 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.961516, "decimalLat": -34.709514 }, "geometry": { "type": "Point", "coordinates": [ 138.962, -34.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.812857, "decimalLat": -27.824168 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092708, "decimalLat": -27.524987 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.368909, "decimalLat": -27.832436 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822787, "decimalLat": -34.1017 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09174, "decimalLat": -27.527162 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.655544, "decimalLat": -38.780924 }, "geometry": { "type": "Point", "coordinates": [ 143.656, -38.781 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1833, "decimalLat": -27.53118 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052373, "decimalLat": -27.548104 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093523, "decimalLat": -27.525278 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110473, "decimalLat": -27.527913 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09164, "decimalLat": -27.524287 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.050141, "decimalLat": -38.444331 }, "geometry": { "type": "Point", "coordinates": [ 143.05, -38.444 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.585827, "decimalLat": -29.857173 }, "geometry": { "type": "Point", "coordinates": [ 150.586, -29.857 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.873171, "decimalLat": -37.602093 }, "geometry": { "type": "Point", "coordinates": [ 143.873, -37.602 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.564161, "decimalLat": -29.545735 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -29.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.776539, "decimalLat": -34.880518 }, "geometry": { "type": "Point", "coordinates": [ 138.777, -34.881 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731933, "decimalLat": -34.89021 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.897078, "decimalLat": -28.203106 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -28.203 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105126, "decimalLat": -27.529548 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377246, "decimalLat": -28.254294 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.266737, "decimalLat": -27.311111 }, "geometry": { "type": "Point", "coordinates": [ 152.267, -27.311 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733912, "decimalLat": -34.889654 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401146, "decimalLat": -28.258268 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091574, "decimalLat": -27.527103 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092441, "decimalLat": -27.528266 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7317, "decimalLat": -34.890616 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090696, "decimalLat": -27.52755 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091507, "decimalLat": -27.527271 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.613358, "decimalLat": -27.339197 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821962, "decimalLat": -34.101342 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.386914, "decimalLat": -27.457754 }, "geometry": { "type": "Point", "coordinates": [ 152.387, -27.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.050141, "decimalLat": -27.548459 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377455, "decimalLat": -28.253948 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.308435, "decimalLat": -38.688953 }, "geometry": { "type": "Point", "coordinates": [ 146.308, -38.689 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.110516, "decimalLat": -38.300035 }, "geometry": { "type": "Point", "coordinates": [ 145.111, -38.3 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105942, "decimalLat": -27.529509 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103779, "decimalLat": -27.528808 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058411, "decimalLat": -27.548028 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895396, "decimalLat": -27.600052 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868378, "decimalLat": -19.126278 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.126 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.685924, "decimalLat": -34.83217 }, "geometry": { "type": "Point", "coordinates": [ 135.686, -34.832 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090444, "decimalLat": -27.526074 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.586914, "decimalLat": -35.008228 }, "geometry": { "type": "Point", "coordinates": [ 138.587, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.946396, "decimalLat": -28.12476 }, "geometry": { "type": "Point", "coordinates": [ 152.946, -28.125 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.453145, "decimalLat": -37.019056 }, "geometry": { "type": "Point", "coordinates": [ 145.453, -37.019 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720828, "decimalLat": -34.890132 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.831823, "decimalLat": -29.651105 }, "geometry": { "type": "Point", "coordinates": [ 150.832, -29.651 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999508, "decimalLat": -27.284058 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103398, "decimalLat": -27.528967 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091374, "decimalLat": -27.527196 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069834, "decimalLat": -27.543403 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37737, "decimalLat": -28.2539 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375144, "decimalLat": -28.252428 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091724, "decimalLat": -27.527182 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.037053, "decimalLat": -37.701176 }, "geometry": { "type": "Point", "coordinates": [ 144.037, -37.701 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.291617, "decimalLat": -27.579965 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -27.58 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.976588, "decimalLat": -27.533092 }, "geometry": { "type": "Point", "coordinates": [ 151.977, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.848189, "decimalLat": -38.673618 }, "geometry": { "type": "Point", "coordinates": [ 143.848, -38.674 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722832, "decimalLat": -34.890913 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05787, "decimalLat": -27.551548 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101646, "decimalLat": -27.734552 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.735 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000814, "decimalLat": -27.284463 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.724622, "decimalLat": -34.865349 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103269, "decimalLat": -27.530238 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731252, "decimalLat": -34.886742 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105123, "decimalLat": -27.529816 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.791408, "decimalLat": -36.778678 }, "geometry": { "type": "Point", "coordinates": [ 145.791, -36.779 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.902966, "decimalLat": -37.638528 }, "geometry": { "type": "Point", "coordinates": [ 143.903, -37.639 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091744, "decimalLat": -27.526957 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073155, "decimalLat": -27.226775 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.227 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081995, "decimalLat": -27.508135 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377061, "decimalLat": -28.254308 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.364728, "decimalLat": -38.317417 }, "geometry": { "type": "Point", "coordinates": [ 142.365, -38.317 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637029, "decimalLat": -34.990975 }, "geometry": { "type": "Point", "coordinates": [ 138.637, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638531, "decimalLat": -34.969798 }, "geometry": { "type": "Point", "coordinates": [ 138.639, -34.97 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.371522, "decimalLat": -38.143147 }, "geometry": { "type": "Point", "coordinates": [ 141.372, -38.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363542, "decimalLat": -38.318677 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.996475, "decimalLat": -38.827648 }, "geometry": { "type": "Point", "coordinates": [ 145.996, -38.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110234, "decimalLat": -27.527612 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9304, "decimalLat": -27.374178 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -27.374 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091707, "decimalLat": -27.527191 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.207178, "decimalLat": -28.829234 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -28.829 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.976705, "decimalLat": -34.733275 }, "geometry": { "type": "Point", "coordinates": [ 138.977, -34.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401709, "decimalLat": -28.256104 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388227, "decimalLat": -38.354812 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.864058, "decimalLat": -19.138825 }, "geometry": { "type": "Point", "coordinates": [ 146.864, -19.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112152, "decimalLat": -27.528324 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314579, "decimalLat": -38.373899 }, "geometry": { "type": "Point", "coordinates": [ 145.315, -38.374 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.629686, "decimalLat": -28.064761 }, "geometry": { "type": "Point", "coordinates": [ 152.63, -28.065 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.136002, "decimalLat": -27.899192 }, "geometry": { "type": "Point", "coordinates": [ 153.136, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731801, "decimalLat": -34.890269 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09152, "decimalLat": -27.527189 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.946396, "decimalLat": -28.12476 }, "geometry": { "type": "Point", "coordinates": [ 152.946, -28.125 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.875043, "decimalLat": -37.60419 }, "geometry": { "type": "Point", "coordinates": [ 143.875, -37.604 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.898409, "decimalLat": -37.616456 }, "geometry": { "type": "Point", "coordinates": [ 143.898, -37.616 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.872853, "decimalLat": -37.634542 }, "geometry": { "type": "Point", "coordinates": [ 143.873, -37.635 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111943, "decimalLat": -27.529118 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.041547, "decimalLat": -27.563007 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -27.563 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.502517, "decimalLat": -37.701687 }, "geometry": { "type": "Point", "coordinates": [ 144.503, -37.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.904076, "decimalLat": -26.172433 }, "geometry": { "type": "Point", "coordinates": [ 151.904, -26.172 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.629703, "decimalLat": -28.207198 }, "geometry": { "type": "Point", "coordinates": [ 152.63, -28.207 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05457, "decimalLat": -27.542597 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.884333, "decimalLat": -26.31377 }, "geometry": { "type": "Point", "coordinates": [ 151.884, -26.314 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.367574, "decimalLat": -36.151464 }, "geometry": { "type": "Point", "coordinates": [ 149.368, -36.151 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.36258, "decimalLat": -38.318224 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.110733, "decimalLat": -27.566497 }, "geometry": { "type": "Point", "coordinates": [ 152.111, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.55078, "decimalLat": -27.814422 }, "geometry": { "type": "Point", "coordinates": [ 151.551, -27.814 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.408161, "decimalLat": -33.753478 }, "geometry": { "type": "Point", "coordinates": [ 149.408, -33.753 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.933126, "decimalLat": -27.27726 }, "geometry": { "type": "Point", "coordinates": [ 152.933, -27.277 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109195, "decimalLat": -27.526683 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.747217, "decimalLat": -26.148682 }, "geometry": { "type": "Point", "coordinates": [ 151.747, -26.149 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734109, "decimalLat": -34.887395 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103275, "decimalLat": -27.530268 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.842512, "decimalLat": -19.173296 }, "geometry": { "type": "Point", "coordinates": [ 146.843, -19.173 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.73117, "decimalLat": -37.922763 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056341, "decimalLat": -27.551994 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.858913, "decimalLat": -26.878983 }, "geometry": { "type": "Point", "coordinates": [ 152.859, -26.879 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.523742, "decimalLat": -27.720883 }, "geometry": { "type": "Point", "coordinates": [ 151.524, -27.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.589426, "decimalLat": -35.035452 }, "geometry": { "type": "Point", "coordinates": [ 138.589, -35.035 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.665213, "decimalLat": -34.86621 }, "geometry": { "type": "Point", "coordinates": [ 138.665, -34.866 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393481, "decimalLat": -28.271412 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.271 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11705, "decimalLat": -27.512072 }, "geometry": { "type": "Point", "coordinates": [ 153.117, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08772, "decimalLat": -27.511286 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105031, "decimalLat": -27.52976 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.610249, "decimalLat": -36.126229 }, "geometry": { "type": "Point", "coordinates": [ 146.61, -36.126 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.927231, "decimalLat": -28.736812 }, "geometry": { "type": "Point", "coordinates": [ 151.927, -28.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.932518, "decimalLat": -27.406106 }, "geometry": { "type": "Point", "coordinates": [ 151.933, -27.406 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073501, "decimalLat": -27.546729 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.995862, "decimalLat": -37.690034 }, "geometry": { "type": "Point", "coordinates": [ 143.996, -37.69 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.809468, "decimalLat": -35.960111 }, "geometry": { "type": "Point", "coordinates": [ 136.809, -35.96 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.996588, "decimalLat": -37.689816 }, "geometry": { "type": "Point", "coordinates": [ 143.997, -37.69 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.513012, "decimalLat": -38.833898 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.408161, "decimalLat": -33.753478 }, "geometry": { "type": "Point", "coordinates": [ 149.408, -33.753 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091013, "decimalLat": -27.527653 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08257, "decimalLat": -27.51474 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111397, "decimalLat": -27.525702 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.974868, "decimalLat": -27.299048 }, "geometry": { "type": "Point", "coordinates": [ 152.975, -27.299 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093279, "decimalLat": -27.526748 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.650192, "decimalLat": -35.004482 }, "geometry": { "type": "Point", "coordinates": [ 138.65, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108164, "decimalLat": -27.527095 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.994518, "decimalLat": -27.176968 }, "geometry": { "type": "Point", "coordinates": [ 152.995, -27.177 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.154189, "decimalLat": -27.622508 }, "geometry": { "type": "Point", "coordinates": [ 153.154, -27.623 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.061065, "decimalLat": -30.269391 }, "geometry": { "type": "Point", "coordinates": [ 150.061, -30.269 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.727807, "decimalLat": -38.628155 }, "geometry": { "type": "Point", "coordinates": [ 145.728, -38.628 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.51442, "decimalLat": -38.832338 }, "geometry": { "type": "Point", "coordinates": [ 143.514, -38.832 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.618588, "decimalLat": -27.421786 }, "geometry": { "type": "Point", "coordinates": [ 152.619, -27.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716361, "decimalLat": -34.891685 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.996995, "decimalLat": -38.829138 }, "geometry": { "type": "Point", "coordinates": [ 145.997, -38.829 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.635748, "decimalLat": -35.004858 }, "geometry": { "type": "Point", "coordinates": [ 138.636, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.048207, "decimalLat": -38.265771 }, "geometry": { "type": "Point", "coordinates": [ 145.048, -38.266 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.05002, "decimalLat": -27.266317 }, "geometry": { "type": "Point", "coordinates": [ 152.05, -27.266 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091002, "decimalLat": -27.526831 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.124497, "decimalLat": -38.380072 }, "geometry": { "type": "Point", "coordinates": [ 145.124, -38.38 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058126, "decimalLat": -27.551233 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.699813, "decimalLat": -35.068755 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.069 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057721, "decimalLat": -27.551168 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520745, "decimalLat": -30.520925 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1032, "decimalLat": -27.529117 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.714331, "decimalLat": -34.892569 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069367, "decimalLat": -27.546137 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110649, "decimalLat": -27.527864 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.272095, "decimalLat": -38.133912 }, "geometry": { "type": "Point", "coordinates": [ 145.272, -38.134 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270737, "decimalLat": -28.149664 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991598, "decimalLat": -27.822665 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062062, "decimalLat": -27.534481 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.532982, "decimalLat": -34.745192 }, "geometry": { "type": "Point", "coordinates": [ 146.533, -34.745 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.293258, "decimalLat": -38.3106 }, "geometry": { "type": "Point", "coordinates": [ 145.293, -38.311 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109259, "decimalLat": -27.527013 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.987244, "decimalLat": -38.500419 }, "geometry": { "type": "Point", "coordinates": [ 142.987, -38.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.805222, "decimalLat": -26.749683 }, "geometry": { "type": "Point", "coordinates": [ 152.805, -26.75 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387667, "decimalLat": -38.358693 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112124, "decimalLat": -27.528515 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091274, "decimalLat": -27.52719 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073255, "decimalLat": -27.54593 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.811691, "decimalLat": -35.959464 }, "geometry": { "type": "Point", "coordinates": [ 136.812, -35.959 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.801618, "decimalLat": -26.155884 }, "geometry": { "type": "Point", "coordinates": [ 151.802, -26.156 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.268728, "decimalLat": -37.200355 }, "geometry": { "type": "Point", "coordinates": [ 148.269, -37.2 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.987165, "decimalLat": -24.985621 }, "geometry": { "type": "Point", "coordinates": [ 151.987, -24.986 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.290403, "decimalLat": -28.83287 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.833 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092364, "decimalLat": -27.528233 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.543034, "decimalLat": -38.813612 }, "geometry": { "type": "Point", "coordinates": [ 143.543, -38.814 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.026909, "decimalLat": -38.04892 }, "geometry": { "type": "Point", "coordinates": [ 141.027, -38.049 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69383, "decimalLat": -34.922325 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106639, "decimalLat": -27.529091 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722292, "decimalLat": -34.892731 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092708, "decimalLat": -27.528068 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715022, "decimalLat": -34.893055 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38043, "decimalLat": -27.963892 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.964 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056717, "decimalLat": -27.551783 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.628788, "decimalLat": -34.987641 }, "geometry": { "type": "Point", "coordinates": [ 138.629, -34.988 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.782318, "decimalLat": -27.392939 }, "geometry": { "type": "Point", "coordinates": [ 151.782, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.946303, "decimalLat": -30.418008 }, "geometry": { "type": "Point", "coordinates": [ 152.946, -30.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.046535, "decimalLat": -27.549997 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.044227, "decimalLat": -27.552652 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.871386, "decimalLat": -19.123233 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.549365, "decimalLat": -37.001218 }, "geometry": { "type": "Point", "coordinates": [ 145.549, -37.001 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09223, "decimalLat": -27.524925 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.684612, "decimalLat": -26.588336 }, "geometry": { "type": "Point", "coordinates": [ 151.685, -26.588 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092456, "decimalLat": -27.52727 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.04907, "decimalLat": -27.544619 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073655, "decimalLat": -27.545829 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052424, "decimalLat": -27.553247 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65744, "decimalLat": -35.017584 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -35.018 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.945184, "decimalLat": -27.385979 }, "geometry": { "type": "Point", "coordinates": [ 151.945, -27.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.870984, "decimalLat": -37.598586 }, "geometry": { "type": "Point", "coordinates": [ 143.871, -37.599 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090672, "decimalLat": -27.525964 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377208, "decimalLat": -28.25405 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109982, "decimalLat": -27.529349 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103516, "decimalLat": -27.528233 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6375, "decimalLat": -35.005833 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091524, "decimalLat": -27.527345 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.56895, "decimalLat": -35.100399 }, "geometry": { "type": "Point", "coordinates": [ 138.569, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.684612, "decimalLat": -26.588336 }, "geometry": { "type": "Point", "coordinates": [ 151.685, -26.588 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103298, "decimalLat": -27.527895 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092202, "decimalLat": -27.525081 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.886229, "decimalLat": -27.602689 }, "geometry": { "type": "Point", "coordinates": [ 151.886, -27.603 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.539368, "decimalLat": -35.323248 }, "geometry": { "type": "Point", "coordinates": [ 138.539, -35.323 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.04828, "decimalLat": -27.547733 }, "geometry": { "type": "Point", "coordinates": [ 153.048, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091115, "decimalLat": -27.526445 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092081, "decimalLat": -27.527065 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09243, "decimalLat": -27.528072 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868205, "decimalLat": -19.128317 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.128 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.99324, "decimalLat": -27.823693 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090946, "decimalLat": -27.526934 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.114629, "decimalLat": -27.529633 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377357, "decimalLat": -28.253927 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084665, "decimalLat": -27.50924 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090771, "decimalLat": -27.527257 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.316861, "decimalLat": -27.894535 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -27.895 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.626148, "decimalLat": -34.893104 }, "geometry": { "type": "Point", "coordinates": [ 138.626, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.280133, "decimalLat": -37.842517 }, "geometry": { "type": "Point", "coordinates": [ 144.28, -37.843 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18223, "decimalLat": -27.546753 }, "geometry": { "type": "Point", "coordinates": [ 152.182, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.13221, "decimalLat": -38.175484 }, "geometry": { "type": "Point", "coordinates": [ 145.132, -38.175 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.084877, "decimalLat": -29.729215 }, "geometry": { "type": "Point", "coordinates": [ 151.085, -29.729 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290932, "decimalLat": -37.874758 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093563, "decimalLat": -27.524929 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729361, "decimalLat": -37.921329 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.921 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.78503, "decimalLat": -26.309919 }, "geometry": { "type": "Point", "coordinates": [ 151.785, -26.31 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.627281, "decimalLat": -25.63577 }, "geometry": { "type": "Point", "coordinates": [ 151.627, -25.636 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.077803, "decimalLat": -27.542775 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400893, "decimalLat": -28.258051 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060167, "decimalLat": -27.549768 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.422053, "decimalLat": -28.0647 }, "geometry": { "type": "Point", "coordinates": [ 152.422, -28.065 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091723, "decimalLat": -27.527159 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.530856, "decimalLat": -36.870426 }, "geometry": { "type": "Point", "coordinates": [ 145.531, -36.87 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071677, "decimalLat": -27.544744 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.809039, "decimalLat": -35.960164 }, "geometry": { "type": "Point", "coordinates": [ 136.809, -35.96 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05986, "decimalLat": -27.550499 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.312744, "decimalLat": -38.383903 }, "geometry": { "type": "Point", "coordinates": [ 145.313, -38.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.79153, "decimalLat": -26.308257 }, "geometry": { "type": "Point", "coordinates": [ 151.792, -26.308 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056435, "decimalLat": -27.551767 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091826, "decimalLat": -27.52692 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37278, "decimalLat": -27.91273 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.561648, "decimalLat": -27.791029 }, "geometry": { "type": "Point", "coordinates": [ 151.562, -27.791 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.927988, "decimalLat": -27.327172 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -27.327 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091522, "decimalLat": -27.527325 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.953375, "decimalLat": -27.283532 }, "geometry": { "type": "Point", "coordinates": [ 152.953, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.67868, "decimalLat": -27.989778 }, "geometry": { "type": "Point", "coordinates": [ 152.679, -27.99 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868551, "decimalLat": -19.129238 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993293, "decimalLat": -27.823709 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.888317, "decimalLat": -37.605937 }, "geometry": { "type": "Point", "coordinates": [ 143.888, -37.606 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.954482, "decimalLat": -27.472712 }, "geometry": { "type": "Point", "coordinates": [ 151.954, -27.473 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37683, "decimalLat": -28.253153 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111435, "decimalLat": -27.529769 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000858, "decimalLat": -27.284475 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103347, "decimalLat": -27.529093 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090999, "decimalLat": -27.52741 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058057, "decimalLat": -27.551517 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092639, "decimalLat": -27.528458 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.005919, "decimalLat": -32.727413 }, "geometry": { "type": "Point", "coordinates": [ 152.006, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092205, "decimalLat": -27.525289 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062779, "decimalLat": -27.537585 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.111746, "decimalLat": -27.566085 }, "geometry": { "type": "Point", "coordinates": [ 152.112, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.038912, "decimalLat": -33.197916 }, "geometry": { "type": "Point", "coordinates": [ 151.039, -33.198 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061272, "decimalLat": -27.221047 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.221 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092828, "decimalLat": -27.525388 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.408161, "decimalLat": -33.753478 }, "geometry": { "type": "Point", "coordinates": [ 149.408, -33.753 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.10269, "decimalLat": -38.283598 }, "geometry": { "type": "Point", "coordinates": [ 145.103, -38.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.726793, "decimalLat": -34.888214 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101979, "decimalLat": -27.522287 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.522 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733203, "decimalLat": -34.888228 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.518953, "decimalLat": -27.719042 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -27.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.380675, "decimalLat": -28.280463 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -28.28 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091685, "decimalLat": -27.527212 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.581369, "decimalLat": -35.150905 }, "geometry": { "type": "Point", "coordinates": [ 138.581, -35.151 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.444165, "decimalLat": -28.107917 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.108 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.315424, "decimalLat": -38.271797 }, "geometry": { "type": "Point", "coordinates": [ 142.315, -38.272 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.60451, "decimalLat": -34.913699 }, "geometry": { "type": "Point", "coordinates": [ 138.605, -34.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.178999, "decimalLat": -27.566322 }, "geometry": { "type": "Point", "coordinates": [ 152.179, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103512, "decimalLat": -27.529669 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.124602, "decimalLat": -23.867545 }, "geometry": { "type": "Point", "coordinates": [ 148.125, -23.868 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.064189, "decimalLat": -27.262584 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -27.263 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.854949, "decimalLat": -28.308736 }, "geometry": { "type": "Point", "coordinates": [ 152.855, -28.309 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093045, "decimalLat": -27.527714 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.994085, "decimalLat": -27.823556 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103553, "decimalLat": -27.53001 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.716233, "decimalLat": -27.568238 }, "geometry": { "type": "Point", "coordinates": [ 151.716, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111292, "decimalLat": -27.527936 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.907652, "decimalLat": -28.173704 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -28.174 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090689, "decimalLat": -27.526963 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.045315, "decimalLat": -27.258693 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.259 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.039788, "decimalLat": -38.067713 }, "geometry": { "type": "Point", "coordinates": [ 144.04, -38.068 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05922, "decimalLat": -27.555406 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080872, "decimalLat": -27.508655 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.553979, "decimalLat": -36.992452 }, "geometry": { "type": "Point", "coordinates": [ 145.554, -36.992 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09161, "decimalLat": -27.527206 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102898, "decimalLat": -27.530408 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.122744, "decimalLat": -38.383101 }, "geometry": { "type": "Point", "coordinates": [ 145.123, -38.383 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.740751, "decimalLat": -37.903559 }, "geometry": { "type": "Point", "coordinates": [ 147.741, -37.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091482, "decimalLat": -27.527357 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060242, "decimalLat": -32.709553 }, "geometry": { "type": "Point", "coordinates": [ 152.06, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 147.522653, "decimalLat": -22.632951 }, "geometry": { "type": "Point", "coordinates": [ 147.523, -22.633 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05959, "decimalLat": -27.54951 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05297, "decimalLat": -27.550074 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.883848, "decimalLat": -37.587467 }, "geometry": { "type": "Point", "coordinates": [ 143.884, -37.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.653657, "decimalLat": -35.069155 }, "geometry": { "type": "Point", "coordinates": [ 138.654, -35.069 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.975447, "decimalLat": -38.227842 }, "geometry": { "type": "Point", "coordinates": [ 141.975, -38.228 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.89653, "decimalLat": -26.24082 }, "geometry": { "type": "Point", "coordinates": [ 151.897, -26.241 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.563493, "decimalLat": -38.831332 }, "geometry": { "type": "Point", "coordinates": [ 143.563, -38.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821104, "decimalLat": -34.102225 }, "geometry": { "type": "Point", "coordinates": [ 150.821, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247936, "decimalLat": -27.49006 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.178427, "decimalLat": -27.241127 }, "geometry": { "type": "Point", "coordinates": [ 152.178, -27.241 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08209, "decimalLat": -27.514233 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.535295, "decimalLat": -34.745742 }, "geometry": { "type": "Point", "coordinates": [ 146.535, -34.746 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164658, "decimalLat": -38.670995 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102671, "decimalLat": -27.529398 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055684, "decimalLat": -27.537468 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.55626, "decimalLat": -35.036998 }, "geometry": { "type": "Point", "coordinates": [ 138.556, -35.037 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.828705, "decimalLat": -26.363599 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -26.364 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.86501, "decimalLat": -28.214142 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -28.214 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.679665, "decimalLat": -37.763667 }, "geometry": { "type": "Point", "coordinates": [ 145.68, -37.764 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.03099, "decimalLat": -26.387868 }, "geometry": { "type": "Point", "coordinates": [ 153.031, -26.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.562638, "decimalLat": -35.154586 }, "geometry": { "type": "Point", "coordinates": [ 138.563, -35.155 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.658247, "decimalLat": -34.936723 }, "geometry": { "type": "Point", "coordinates": [ 138.658, -34.937 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057407, "decimalLat": -27.551041 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103375, "decimalLat": -27.530139 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5643, "decimalLat": -28.380633 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.996612, "decimalLat": -27.287598 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -27.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22319, "decimalLat": -27.499896 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.774895, "decimalLat": -38.202745 }, "geometry": { "type": "Point", "coordinates": [ 141.775, -38.203 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.799667, "decimalLat": -38.408022 }, "geometry": { "type": "Point", "coordinates": [ 142.8, -38.408 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091091, "decimalLat": -27.527433 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090556, "decimalLat": -27.525454 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055274, "decimalLat": -27.54404 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.652505, "decimalLat": -35.00856 }, "geometry": { "type": "Point", "coordinates": [ 138.653, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.067443, "decimalLat": -27.487004 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -27.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.988937, "decimalLat": -27.170528 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -27.171 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.356434, "decimalLat": -38.333708 }, "geometry": { "type": "Point", "coordinates": [ 142.356, -38.334 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387401, "decimalLat": -38.354514 }, "geometry": { "type": "Point", "coordinates": [ 146.387, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.82114, "decimalLat": -27.533553 }, "geometry": { "type": "Point", "coordinates": [ 152.821, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.147399, "decimalLat": -27.765534 }, "geometry": { "type": "Point", "coordinates": [ 153.147, -27.766 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163895, "decimalLat": -38.6712 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520217, "decimalLat": -30.520347 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.532516, "decimalLat": -34.918518 }, "geometry": { "type": "Point", "coordinates": [ 138.533, -34.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090885, "decimalLat": -27.512613 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378044, "decimalLat": -28.25509 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093581, "decimalLat": -27.5277 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.955333, "decimalLat": -37.646493 }, "geometry": { "type": "Point", "coordinates": [ 143.955, -37.646 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.44601, "decimalLat": -27.302528 }, "geometry": { "type": "Point", "coordinates": [ 151.446, -27.303 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.013456, "decimalLat": -26.364389 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -26.364 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.591251, "decimalLat": -27.948346 }, "geometry": { "type": "Point", "coordinates": [ 152.591, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.831449, "decimalLat": -19.142249 }, "geometry": { "type": "Point", "coordinates": [ 146.831, -19.142 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073828, "decimalLat": -27.545785 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.551105, "decimalLat": -27.77425 }, "geometry": { "type": "Point", "coordinates": [ 151.551, -27.774 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.999237, "decimalLat": -38.82519 }, "geometry": { "type": "Point", "coordinates": [ 145.999, -38.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656887, "decimalLat": -35.018122 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -35.018 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.798858, "decimalLat": -38.059561 }, "geometry": { "type": "Point", "coordinates": [ 141.799, -38.06 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086801, "decimalLat": -27.510351 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.365604, "decimalLat": -38.324844 }, "geometry": { "type": "Point", "coordinates": [ 142.366, -38.325 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.317637, "decimalLat": -37.87881 }, "geometry": { "type": "Point", "coordinates": [ 144.318, -37.879 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.8685, "decimalLat": -19.125603 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.126 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.836528, "decimalLat": -38.392203 }, "geometry": { "type": "Point", "coordinates": [ 142.837, -38.392 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.873232, "decimalLat": -37.601866 }, "geometry": { "type": "Point", "coordinates": [ 143.873, -37.602 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.768748, "decimalLat": -28.275592 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.708296, "decimalLat": -34.90672 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -34.907 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561824, "decimalLat": -28.385528 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058705, "decimalLat": -27.547668 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.587153, "decimalLat": -35.074108 }, "geometry": { "type": "Point", "coordinates": [ 138.587, -35.074 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37818, "decimalLat": -28.255426 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.814892, "decimalLat": -26.363737 }, "geometry": { "type": "Point", "coordinates": [ 151.815, -26.364 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110078, "decimalLat": -27.527446 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163716, "decimalLat": -38.671019 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093037, "decimalLat": -27.527119 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.713267, "decimalLat": -37.203522 }, "geometry": { "type": "Point", "coordinates": [ 145.713, -37.204 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079965, "decimalLat": -27.225739 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.226 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.774236, "decimalLat": -26.135635 }, "geometry": { "type": "Point", "coordinates": [ 151.774, -26.136 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.494527, "decimalLat": -35.707414 }, "geometry": { "type": "Point", "coordinates": [ 137.495, -35.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105224, "decimalLat": -27.531659 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003464, "decimalLat": -27.413655 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075488, "decimalLat": -27.546565 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.62974, "decimalLat": -35.033193 }, "geometry": { "type": "Point", "coordinates": [ 138.63, -35.033 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10487, "decimalLat": -27.530584 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059459, "decimalLat": -27.549146 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.799336, "decimalLat": -32.571858 }, "geometry": { "type": "Point", "coordinates": [ 151.799, -32.572 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376904, "decimalLat": -28.253992 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057369, "decimalLat": -27.551366 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.783633, "decimalLat": -34.876093 }, "geometry": { "type": "Point", "coordinates": [ 138.784, -34.876 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.650914, "decimalLat": -34.873364 }, "geometry": { "type": "Point", "coordinates": [ 138.651, -34.873 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377565, "decimalLat": -28.254181 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.753819, "decimalLat": -26.159515 }, "geometry": { "type": "Point", "coordinates": [ 151.754, -26.16 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05984, "decimalLat": -27.550389 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.641983, "decimalLat": -30.4889 }, "geometry": { "type": "Point", "coordinates": [ 151.642, -30.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071016, "decimalLat": -27.54386 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003188, "decimalLat": -27.41265 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092194, "decimalLat": -27.525398 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163811, "decimalLat": -38.671391 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656491, "decimalLat": -35.015851 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102784, "decimalLat": -27.529663 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105521, "decimalLat": -27.531393 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.735621, "decimalLat": -31.540499 }, "geometry": { "type": "Point", "coordinates": [ 151.736, -31.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722131, "decimalLat": -34.891224 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.610458, "decimalLat": -27.153228 }, "geometry": { "type": "Point", "coordinates": [ 152.61, -27.153 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.567367, "decimalLat": -28.020503 }, "geometry": { "type": "Point", "coordinates": [ 152.567, -28.021 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.623017, "decimalLat": -34.89307 }, "geometry": { "type": "Point", "coordinates": [ 138.623, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090497, "decimalLat": -27.526937 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036756, "decimalLat": -27.532309 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.559369, "decimalLat": -27.811086 }, "geometry": { "type": "Point", "coordinates": [ 151.559, -27.811 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095486, "decimalLat": -33.076717 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.743429, "decimalLat": -26.327914 }, "geometry": { "type": "Point", "coordinates": [ 151.743, -26.328 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.666144, "decimalLat": -35.018607 }, "geometry": { "type": "Point", "coordinates": [ 138.666, -35.019 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.007855, "decimalLat": -38.28852 }, "geometry": { "type": "Point", "coordinates": [ 145.008, -38.289 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.514105, "decimalLat": -38.832435 }, "geometry": { "type": "Point", "coordinates": [ 143.514, -38.832 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.843489, "decimalLat": -28.092853 }, "geometry": { "type": "Point", "coordinates": [ 152.843, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.830865, "decimalLat": -35.161663 }, "geometry": { "type": "Point", "coordinates": [ 138.831, -35.162 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090859, "decimalLat": -27.526744 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.507492, "decimalLat": -37.66148 }, "geometry": { "type": "Point", "coordinates": [ 144.507, -37.661 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.266266, "decimalLat": -37.863889 }, "geometry": { "type": "Point", "coordinates": [ 144.266, -37.864 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111493, "decimalLat": -27.528158 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091766, "decimalLat": -27.527169 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092968, "decimalLat": -27.527873 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721673, "decimalLat": -34.892933 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.694645, "decimalLat": -34.97091 }, "geometry": { "type": "Point", "coordinates": [ 138.695, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73334, "decimalLat": -34.889239 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.841977, "decimalLat": -34.150506 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.151 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07372, "decimalLat": -27.545741 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.584092, "decimalLat": -37.519117 }, "geometry": { "type": "Point", "coordinates": [ 144.584, -37.519 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.049458, "decimalLat": -27.549373 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057537, "decimalLat": -27.551228 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074154, "decimalLat": -27.35795 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719699, "decimalLat": -34.892257 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.869378, "decimalLat": -19.127443 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.127 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.730466, "decimalLat": -37.918384 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.918 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.181133, "decimalLat": -37.881238 }, "geometry": { "type": "Point", "coordinates": [ 144.181, -37.881 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.389818, "decimalLat": -38.360941 }, "geometry": { "type": "Point", "coordinates": [ 146.39, -38.361 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068502, "decimalLat": -27.541002 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072544, "decimalLat": -27.542233 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.570478, "decimalLat": -27.750292 }, "geometry": { "type": "Point", "coordinates": [ 151.57, -27.75 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.597596, "decimalLat": -35.146825 }, "geometry": { "type": "Point", "coordinates": [ 138.598, -35.147 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.685833, "decimalLat": -34.831944 }, "geometry": { "type": "Point", "coordinates": [ 135.686, -34.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.643571, "decimalLat": -35.081484 }, "geometry": { "type": "Point", "coordinates": [ 138.644, -35.081 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085019, "decimalLat": -27.51056 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046593, "decimalLat": -27.25833 }, "geometry": { "type": "Point", "coordinates": [ 152.047, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076645, "decimalLat": -27.539933 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109641, "decimalLat": -27.529641 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102159, "decimalLat": -27.527331 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.246672, "decimalLat": -38.238742 }, "geometry": { "type": "Point", "coordinates": [ 145.247, -38.239 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917527, "decimalLat": -31.464076 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063217, "decimalLat": -27.219938 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.22 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.046019, "decimalLat": -38.264419 }, "geometry": { "type": "Point", "coordinates": [ 145.046, -38.264 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054509, "decimalLat": -27.541575 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084901, "decimalLat": -27.506681 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702519, "decimalLat": -34.902855 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111324, "decimalLat": -27.527288 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388712, "decimalLat": -38.35779 }, "geometry": { "type": "Point", "coordinates": [ 146.389, -38.358 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.987103, "decimalLat": -27.291637 }, "geometry": { "type": "Point", "coordinates": [ 152.987, -27.292 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.265738, "decimalLat": -37.390609 }, "geometry": { "type": "Point", "coordinates": [ 144.266, -37.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09139, "decimalLat": -27.527218 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721846, "decimalLat": -34.890902 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.297226, "decimalLat": -38.383479 }, "geometry": { "type": "Point", "coordinates": [ 145.297, -38.383 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092448, "decimalLat": -27.525089 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093167, "decimalLat": -27.526665 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.321855, "decimalLat": -27.912917 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729886, "decimalLat": -34.890582 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083076, "decimalLat": -27.512431 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091873, "decimalLat": -27.527031 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.284072, "decimalLat": -38.347825 }, "geometry": { "type": "Point", "coordinates": [ 145.284, -38.348 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729797, "decimalLat": -37.92529 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074407, "decimalLat": -27.545985 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106565, "decimalLat": -27.528883 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.784614, "decimalLat": -26.612672 }, "geometry": { "type": "Point", "coordinates": [ 151.785, -26.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731365, "decimalLat": -34.890043 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.659301, "decimalLat": -34.864781 }, "geometry": { "type": "Point", "coordinates": [ 138.659, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110183, "decimalLat": -27.527735 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.106642, "decimalLat": -27.561757 }, "geometry": { "type": "Point", "coordinates": [ 152.107, -27.562 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733292, "decimalLat": -34.890501 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.694192, "decimalLat": -34.957168 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.957 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103414, "decimalLat": -27.530192 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092068, "decimalLat": -27.527182 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086961, "decimalLat": -27.509905 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086788, "decimalLat": -27.51052 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.726649, "decimalLat": -34.862781 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.863 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.697095, "decimalLat": -34.958048 }, "geometry": { "type": "Point", "coordinates": [ 138.697, -34.958 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.727097, "decimalLat": -27.711497 }, "geometry": { "type": "Point", "coordinates": [ 152.727, -27.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37838, "decimalLat": -28.255003 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.804635, "decimalLat": -26.44714 }, "geometry": { "type": "Point", "coordinates": [ 151.805, -26.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101548, "decimalLat": -27.567089 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.543546, "decimalLat": -27.433545 }, "geometry": { "type": "Point", "coordinates": [ 153.544, -27.434 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103829, "decimalLat": -27.527999 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052153, "decimalLat": -27.542198 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053287, "decimalLat": -27.544825 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.736169, "decimalLat": -34.80465 }, "geometry": { "type": "Point", "coordinates": [ 138.736, -34.805 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.673462, "decimalLat": -34.875637 }, "geometry": { "type": "Point", "coordinates": [ 135.673, -34.876 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092215, "decimalLat": -27.527424 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.659422, "decimalLat": -37.371184 }, "geometry": { "type": "Point", "coordinates": [ 144.659, -37.371 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092095, "decimalLat": -27.525675 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091731, "decimalLat": -27.526965 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.645937, "decimalLat": -30.484945 }, "geometry": { "type": "Point", "coordinates": [ 151.646, -30.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109772, "decimalLat": -27.529707 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093118, "decimalLat": -27.527878 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092006, "decimalLat": -27.526993 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.975047, "decimalLat": -38.481706 }, "geometry": { "type": "Point", "coordinates": [ 142.975, -38.482 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.087001, "decimalLat": -27.510668 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068532, "decimalLat": -27.542417 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40074, "decimalLat": -28.260125 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.111889, "decimalLat": -27.56611 }, "geometry": { "type": "Point", "coordinates": [ 152.112, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.09497, "decimalLat": -33.076336 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103477, "decimalLat": -27.530443 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092294, "decimalLat": -27.525417 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73339, "decimalLat": -34.890223 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.753403, "decimalLat": -37.553717 }, "geometry": { "type": "Point", "coordinates": [ 149.753, -37.554 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.824708, "decimalLat": -38.05925 }, "geometry": { "type": "Point", "coordinates": [ 141.825, -38.059 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868089, "decimalLat": -19.128652 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090476, "decimalLat": -27.526038 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903409, "decimalLat": -31.444133 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437706, "decimalLat": -27.400617 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3714, "decimalLat": -27.905602 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073711, "decimalLat": -27.547429 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090899, "decimalLat": -27.526591 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111237, "decimalLat": -27.527212 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.445394, "decimalLat": -27.391796 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -27.392 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074253, "decimalLat": -27.545958 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074653, "decimalLat": -27.358635 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718905, "decimalLat": -34.891514 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091054, "decimalLat": -27.526776 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.946228, "decimalLat": -27.335288 }, "geometry": { "type": "Point", "coordinates": [ 151.946, -27.335 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112882, "decimalLat": -27.528289 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.989662, "decimalLat": -27.292966 }, "geometry": { "type": "Point", "coordinates": [ 152.99, -27.293 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.26415, "decimalLat": -37.221781 }, "geometry": { "type": "Point", "coordinates": [ 148.264, -37.222 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071713, "decimalLat": -27.544827 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037304, "decimalLat": -27.538863 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063894, "decimalLat": -27.551516 }, "geometry": { "type": "Point", "coordinates": [ 153.064, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999874, "decimalLat": -27.284494 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.915347, "decimalLat": -38.481547 }, "geometry": { "type": "Point", "coordinates": [ 143.915, -38.482 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000194, "decimalLat": -27.28422 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056171, "decimalLat": -27.550963 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.392503, "decimalLat": -28.268897 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.269 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.823724, "decimalLat": -27.163742 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -27.164 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.939347, "decimalLat": -27.275488 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -27.275 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72735, "decimalLat": -34.888338 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377622, "decimalLat": -28.254661 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10964, "decimalLat": -27.527971 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749856, "decimalLat": -26.155069 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103475, "decimalLat": -27.530261 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.988314, "decimalLat": -27.777949 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -27.778 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057599, "decimalLat": -27.551255 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629416, "decimalLat": -28.637288 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.584992, "decimalLat": -34.775345 }, "geometry": { "type": "Point", "coordinates": [ 146.585, -34.775 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095231, "decimalLat": -33.076236 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731308, "decimalLat": -34.875271 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.875 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.733466, "decimalLat": -26.161431 }, "geometry": { "type": "Point", "coordinates": [ 151.733, -26.161 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.476536, "decimalLat": -36.937701 }, "geometry": { "type": "Point", "coordinates": [ 145.477, -36.938 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.248789, "decimalLat": -27.525208 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093303, "decimalLat": -27.52514 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11093, "decimalLat": -27.527784 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.349434, "decimalLat": -27.927723 }, "geometry": { "type": "Point", "coordinates": [ 153.349, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093431, "decimalLat": -27.527842 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.745577, "decimalLat": -34.838759 }, "geometry": { "type": "Point", "coordinates": [ 138.746, -34.839 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729811, "decimalLat": -37.924297 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.484105, "decimalLat": -38.801346 }, "geometry": { "type": "Point", "coordinates": [ 143.484, -38.801 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.151952, "decimalLat": -27.747252 }, "geometry": { "type": "Point", "coordinates": [ 153.152, -27.747 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.410344, "decimalLat": -28.575906 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037342, "decimalLat": -27.532106 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103246, "decimalLat": -27.53034 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.866015, "decimalLat": -28.211452 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.211 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.102478, "decimalLat": -27.568758 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895645, "decimalLat": -27.595147 }, "geometry": { "type": "Point", "coordinates": [ 151.896, -27.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657013, "decimalLat": -34.935325 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.935 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057579, "decimalLat": -27.551636 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091399, "decimalLat": -27.52739 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.714792, "decimalLat": -34.892408 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.585921, "decimalLat": -29.857205 }, "geometry": { "type": "Point", "coordinates": [ 150.586, -29.857 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092982, "decimalLat": -27.524659 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.043469, "decimalLat": -27.551582 }, "geometry": { "type": "Point", "coordinates": [ 153.043, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734687, "decimalLat": -34.889028 }, "geometry": { "type": "Point", "coordinates": [ 138.735, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091965, "decimalLat": -27.527215 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722231, "decimalLat": -34.890675 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092404, "decimalLat": -27.527395 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.65898, "decimalLat": -30.451467 }, "geometry": { "type": "Point", "coordinates": [ 151.659, -30.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895396, "decimalLat": -27.600052 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.761361, "decimalLat": -26.141015 }, "geometry": { "type": "Point", "coordinates": [ 151.761, -26.141 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.123038, "decimalLat": -28.157039 }, "geometry": { "type": "Point", "coordinates": [ 153.123, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.728919, "decimalLat": -37.920838 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.921 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.64591, "decimalLat": -27.362549 }, "geometry": { "type": "Point", "coordinates": [ 151.646, -27.363 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835922, "decimalLat": -34.069561 }, "geometry": { "type": "Point", "coordinates": [ 150.836, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.050156, "decimalLat": -27.263278 }, "geometry": { "type": "Point", "coordinates": [ 152.05, -27.263 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43767, "decimalLat": -27.400813 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.651478, "decimalLat": -26.400859 }, "geometry": { "type": "Point", "coordinates": [ 152.651, -26.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.770084, "decimalLat": -26.178987 }, "geometry": { "type": "Point", "coordinates": [ 151.77, -26.179 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.611109, "decimalLat": -27.397195 }, "geometry": { "type": "Point", "coordinates": [ 152.611, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082856, "decimalLat": -27.510395 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.527953, "decimalLat": -38.824622 }, "geometry": { "type": "Point", "coordinates": [ 143.528, -38.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401162, "decimalLat": -28.257882 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057607, "decimalLat": -27.551279 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1833, "decimalLat": -27.53118 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.242331, "decimalLat": -30.994364 }, "geometry": { "type": "Point", "coordinates": [ 150.242, -30.994 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.659347, "decimalLat": -27.672787 }, "geometry": { "type": "Point", "coordinates": [ 151.659, -27.673 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.623501, "decimalLat": -25.632782 }, "geometry": { "type": "Point", "coordinates": [ 151.624, -25.633 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363516, "decimalLat": -38.317737 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103759, "decimalLat": -27.529949 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111205, "decimalLat": -27.527244 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.732376, "decimalLat": -27.587479 }, "geometry": { "type": "Point", "coordinates": [ 151.732, -27.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163742, "decimalLat": -38.671045 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.072604, "decimalLat": -27.35903 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.597255, "decimalLat": -37.834389 }, "geometry": { "type": "Point", "coordinates": [ 145.597, -37.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363769, "decimalLat": -38.318329 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05638, "decimalLat": -27.551903 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.759322, "decimalLat": -37.56122 }, "geometry": { "type": "Point", "coordinates": [ 149.759, -37.561 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056958, "decimalLat": -27.544316 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.264468, "decimalLat": -38.133067 }, "geometry": { "type": "Point", "coordinates": [ 145.264, -38.133 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090695, "decimalLat": -27.52715 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.410596, "decimalLat": -33.756284 }, "geometry": { "type": "Point", "coordinates": [ 149.411, -33.756 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904328, "decimalLat": -31.443808 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.57007, "decimalLat": -27.239487 }, "geometry": { "type": "Point", "coordinates": [ 152.57, -27.239 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.689808, "decimalLat": -34.929478 }, "geometry": { "type": "Point", "coordinates": [ 138.69, -34.929 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.520096, "decimalLat": -38.831436 }, "geometry": { "type": "Point", "coordinates": [ 143.52, -38.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086643, "decimalLat": -27.510981 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.913111, "decimalLat": -27.322882 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -27.323 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074519, "decimalLat": -27.546828 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.539872, "decimalLat": -27.599187 }, "geometry": { "type": "Point", "coordinates": [ 151.54, -27.599 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.586287, "decimalLat": -34.753741 }, "geometry": { "type": "Point", "coordinates": [ 146.586, -34.754 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072456, "decimalLat": -27.2261 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.226 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.61142, "decimalLat": -38.774447 }, "geometry": { "type": "Point", "coordinates": [ 143.611, -38.774 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051511, "decimalLat": -27.548835 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092296, "decimalLat": -27.525603 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.023036, "decimalLat": -37.671452 }, "geometry": { "type": "Point", "coordinates": [ 144.023, -37.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860858, "decimalLat": -38.668317 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.755033, "decimalLat": -35.35882 }, "geometry": { "type": "Point", "coordinates": [ 138.755, -35.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093561, "decimalLat": -27.52767 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072206, "decimalLat": -27.545184 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.247776, "decimalLat": -27.503323 }, "geometry": { "type": "Point", "coordinates": [ 152.248, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092407, "decimalLat": -27.525121 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103649, "decimalLat": -27.530534 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073472, "decimalLat": -27.541287 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.383097, "decimalLat": -37.95056 }, "geometry": { "type": "Point", "coordinates": [ 144.383, -37.951 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.115906, "decimalLat": -27.508017 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.537492, "decimalLat": -34.745675 }, "geometry": { "type": "Point", "coordinates": [ 146.537, -34.746 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105569, "decimalLat": -27.529744 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.667232, "decimalLat": -34.861768 }, "geometry": { "type": "Point", "coordinates": [ 138.667, -34.862 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731302, "decimalLat": -34.889658 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.867797, "decimalLat": -19.128186 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.128 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111499, "decimalLat": -27.528015 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.900997, "decimalLat": -37.641346 }, "geometry": { "type": "Point", "coordinates": [ 143.901, -37.641 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.089663, "decimalLat": -27.526021 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.582855, "decimalLat": -38.827513 }, "geometry": { "type": "Point", "coordinates": [ 143.583, -38.828 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.574403, "decimalLat": -38.346397 }, "geometry": { "type": "Point", "coordinates": [ 141.574, -38.346 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.994128, "decimalLat": -26.617172 }, "geometry": { "type": "Point", "coordinates": [ 151.994, -26.617 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.073528, "decimalLat": -33.14805 }, "geometry": { "type": "Point", "coordinates": [ 151.074, -33.148 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377208, "decimalLat": -28.25405 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.313501, "decimalLat": -38.380437 }, "geometry": { "type": "Point", "coordinates": [ 145.314, -38.38 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000827, "decimalLat": -27.284447 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.382365, "decimalLat": -27.906698 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.907 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.999541, "decimalLat": -38.825259 }, "geometry": { "type": "Point", "coordinates": [ 146.0, -38.825 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093335, "decimalLat": -27.525003 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09173, "decimalLat": -27.526944 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.901734, "decimalLat": -27.625214 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.625 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.644395, "decimalLat": -27.4508 }, "geometry": { "type": "Point", "coordinates": [ 152.644, -27.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.835414, "decimalLat": -26.529859 }, "geometry": { "type": "Point", "coordinates": [ 151.835, -26.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054875, "decimalLat": -27.538915 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.817949, "decimalLat": -26.489686 }, "geometry": { "type": "Point", "coordinates": [ 151.818, -26.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393184, "decimalLat": -28.269226 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.269 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092295, "decimalLat": -27.527389 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163882, "decimalLat": -38.671173 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.704352, "decimalLat": -34.965542 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -34.966 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.131653, "decimalLat": -27.779097 }, "geometry": { "type": "Point", "coordinates": [ 153.132, -27.779 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401825, "decimalLat": -28.26037 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111871, "decimalLat": -27.525279 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.604868, "decimalLat": -35.042914 }, "geometry": { "type": "Point", "coordinates": [ 138.605, -35.043 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069939, "decimalLat": -27.510538 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.612397, "decimalLat": -27.329983 }, "geometry": { "type": "Point", "coordinates": [ 152.612, -27.33 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.227627, "decimalLat": -27.29762 }, "geometry": { "type": "Point", "coordinates": [ 152.228, -27.298 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108811, "decimalLat": -27.5287 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721549, "decimalLat": -34.891602 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.164069, "decimalLat": -27.620859 }, "geometry": { "type": "Point", "coordinates": [ 153.164, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.750039, "decimalLat": -26.155358 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068013, "decimalLat": -27.542482 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.450212, "decimalLat": -28.100778 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.067733, "decimalLat": -27.222883 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.223 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.905901, "decimalLat": -37.528399 }, "geometry": { "type": "Point", "coordinates": [ 143.906, -37.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091782, "decimalLat": -27.527113 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.555573, "decimalLat": -38.754787 }, "geometry": { "type": "Point", "coordinates": [ 143.556, -38.755 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388712, "decimalLat": -38.35779 }, "geometry": { "type": "Point", "coordinates": [ 146.389, -38.358 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.133413, "decimalLat": -38.176277 }, "geometry": { "type": "Point", "coordinates": [ 145.133, -38.176 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.856039, "decimalLat": -27.525448 }, "geometry": { "type": "Point", "coordinates": [ 152.856, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.082283, "decimalLat": -27.700883 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103402, "decimalLat": -27.530073 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.876091, "decimalLat": -34.058141 }, "geometry": { "type": "Point", "coordinates": [ 150.876, -34.058 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073601, "decimalLat": -27.545761 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091272, "decimalLat": -27.527131 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.767099, "decimalLat": -28.227243 }, "geometry": { "type": "Point", "coordinates": [ 152.767, -28.227 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111257, "decimalLat": -27.53003 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70987, "decimalLat": -35.049855 }, "geometry": { "type": "Point", "coordinates": [ 138.71, -35.05 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.810766, "decimalLat": -34.098984 }, "geometry": { "type": "Point", "coordinates": [ 150.811, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.240866, "decimalLat": -38.64301 }, "geometry": { "type": "Point", "coordinates": [ 146.241, -38.643 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393973, "decimalLat": -28.275825 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.930263, "decimalLat": -26.209689 }, "geometry": { "type": "Point", "coordinates": [ 151.93, -26.21 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.220114, "decimalLat": -38.292731 }, "geometry": { "type": "Point", "coordinates": [ 143.22, -38.293 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402028, "decimalLat": -28.260145 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069562, "decimalLat": -27.541691 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090739, "decimalLat": -27.525802 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000913, "decimalLat": -27.284418 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.88986, "decimalLat": -27.597105 }, "geometry": { "type": "Point", "coordinates": [ 151.89, -27.597 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.272888, "decimalLat": -38.126775 }, "geometry": { "type": "Point", "coordinates": [ 145.273, -38.127 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656913, "decimalLat": -34.85849 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.858 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.521026, "decimalLat": -30.520709 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.12735, "decimalLat": -35.890888 }, "geometry": { "type": "Point", "coordinates": [ 137.127, -35.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.647918, "decimalLat": -35.006489 }, "geometry": { "type": "Point", "coordinates": [ 138.648, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111668, "decimalLat": -27.527837 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732485, "decimalLat": -34.890042 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722306, "decimalLat": -34.890552 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093002, "decimalLat": -27.528232 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.05827, "decimalLat": -27.268226 }, "geometry": { "type": "Point", "coordinates": [ 152.058, -27.268 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073217, "decimalLat": -27.545619 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702042, "decimalLat": -35.067428 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -35.067 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.09575, "decimalLat": -33.076692 }, "geometry": { "type": "Point", "coordinates": [ 151.096, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 139.012411, "decimalLat": -35.189452 }, "geometry": { "type": "Point", "coordinates": [ 139.012, -35.189 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395287, "decimalLat": -28.266533 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.267 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084944, "decimalLat": -27.506911 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.677774, "decimalLat": -25.306194 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -25.306 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093572, "decimalLat": -27.527888 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868242, "decimalLat": -19.126092 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.126 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107994, "decimalLat": -27.527213 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.733477, "decimalLat": -26.159092 }, "geometry": { "type": "Point", "coordinates": [ 151.733, -26.159 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.529154, "decimalLat": -35.114626 }, "geometry": { "type": "Point", "coordinates": [ 138.529, -35.115 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.230757, "decimalLat": -28.891319 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105237, "decimalLat": -27.531679 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.893913, "decimalLat": -27.596718 }, "geometry": { "type": "Point", "coordinates": [ 151.894, -27.597 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091497, "decimalLat": -27.5271 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.45757, "decimalLat": -37.013548 }, "geometry": { "type": "Point", "coordinates": [ 145.458, -37.014 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104413, "decimalLat": -27.531179 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.511453, "decimalLat": -27.137108 }, "geometry": { "type": "Point", "coordinates": [ 152.511, -27.137 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.641443, "decimalLat": -36.159482 }, "geometry": { "type": "Point", "coordinates": [ 146.641, -36.159 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.573255, "decimalLat": -35.049954 }, "geometry": { "type": "Point", "coordinates": [ 138.573, -35.05 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.067149, "decimalLat": -27.507945 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.16845, "decimalLat": -37.838253 }, "geometry": { "type": "Point", "coordinates": [ 144.168, -37.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.118483, "decimalLat": -38.390898 }, "geometry": { "type": "Point", "coordinates": [ 145.118, -38.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073932, "decimalLat": -27.545518 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074379, "decimalLat": -27.554153 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092138, "decimalLat": -27.525707 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091034, "decimalLat": -27.526334 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078115, "decimalLat": -27.505698 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06106, "decimalLat": -27.55065 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.599626, "decimalLat": -27.233698 }, "geometry": { "type": "Point", "coordinates": [ 152.6, -27.234 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058152, "decimalLat": -27.55114 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.257999, "decimalLat": -28.103895 }, "geometry": { "type": "Point", "coordinates": [ 151.258, -28.104 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702959, "decimalLat": -34.933265 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.584142, "decimalLat": -28.917105 }, "geometry": { "type": "Point", "coordinates": [ 151.584, -28.917 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637529, "decimalLat": -35.007847 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.451042, "decimalLat": -27.453231 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -27.453 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192106, "decimalLat": -27.703251 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.703 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.773091, "decimalLat": -34.183907 }, "geometry": { "type": "Point", "coordinates": [ 140.773, -34.184 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090342, "decimalLat": -27.526003 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.077198, "decimalLat": -33.147037 }, "geometry": { "type": "Point", "coordinates": [ 151.077, -33.147 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104181, "decimalLat": -27.529326 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059271, "decimalLat": -27.547627 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092248, "decimalLat": -27.527308 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.561462, "decimalLat": -27.795228 }, "geometry": { "type": "Point", "coordinates": [ 151.561, -27.795 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092468, "decimalLat": -27.526947 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056803, "decimalLat": -27.54444 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.723055, "decimalLat": -34.89 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104996, "decimalLat": -27.530072 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42993, "decimalLat": -27.492372 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1026, "decimalLat": -27.526147 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.80715, "decimalLat": -26.595115 }, "geometry": { "type": "Point", "coordinates": [ 151.807, -26.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061729, "decimalLat": -27.550303 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090716, "decimalLat": -27.525812 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.508848, "decimalLat": -38.768839 }, "geometry": { "type": "Point", "coordinates": [ 143.509, -38.769 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.584793, "decimalLat": -28.917009 }, "geometry": { "type": "Point", "coordinates": [ 151.585, -28.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092473, "decimalLat": -27.525646 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363358, "decimalLat": -38.318367 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075361, "decimalLat": -27.554745 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.530137, "decimalLat": -27.722147 }, "geometry": { "type": "Point", "coordinates": [ 151.53, -27.722 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.389571, "decimalLat": -38.357472 }, "geometry": { "type": "Point", "coordinates": [ 146.39, -38.357 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06955, "decimalLat": -27.224047 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.224 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.115075, "decimalLat": -27.529047 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22761, "decimalLat": -27.633214 }, "geometry": { "type": "Point", "coordinates": [ 153.228, -27.633 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.833351, "decimalLat": -26.369964 }, "geometry": { "type": "Point", "coordinates": [ 152.833, -26.37 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.744513, "decimalLat": -26.58522 }, "geometry": { "type": "Point", "coordinates": [ 151.745, -26.585 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109965, "decimalLat": -27.529788 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.802967, "decimalLat": -26.139193 }, "geometry": { "type": "Point", "coordinates": [ 151.803, -26.139 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092037, "decimalLat": -27.525732 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.812257, "decimalLat": -27.53646 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110383, "decimalLat": -27.529794 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.453338, "decimalLat": -26.328128 }, "geometry": { "type": "Point", "coordinates": [ 148.453, -26.328 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.626126, "decimalLat": -27.392546 }, "geometry": { "type": "Point", "coordinates": [ 151.626, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095047, "decimalLat": -33.076203 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.577542, "decimalLat": -35.154956 }, "geometry": { "type": "Point", "coordinates": [ 138.578, -35.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.099642, "decimalLat": -27.5317 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.53212, "decimalLat": -27.726533 }, "geometry": { "type": "Point", "coordinates": [ 151.532, -27.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.689223, "decimalLat": -35.08766 }, "geometry": { "type": "Point", "coordinates": [ 138.689, -35.088 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.727921, "decimalLat": -37.920792 }, "geometry": { "type": "Point", "coordinates": [ 147.728, -37.921 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.427047, "decimalLat": -28.073308 }, "geometry": { "type": "Point", "coordinates": [ 152.427, -28.073 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.553658, "decimalLat": -27.812786 }, "geometry": { "type": "Point", "coordinates": [ 151.554, -27.813 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895396, "decimalLat": -27.600052 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.077675, "decimalLat": -27.230097 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.23 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.692816, "decimalLat": -26.184133 }, "geometry": { "type": "Point", "coordinates": [ 151.693, -26.184 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.60693, "decimalLat": -28.164891 }, "geometry": { "type": "Point", "coordinates": [ 152.607, -28.165 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.422258, "decimalLat": -28.121431 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.121 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091019, "decimalLat": -27.527417 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095122, "decimalLat": -33.076695 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.508858, "decimalLat": -35.121542 }, "geometry": { "type": "Point", "coordinates": [ 138.509, -35.122 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399673, "decimalLat": -27.497717 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109019, "decimalLat": -27.529025 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083774, "decimalLat": -27.509098 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103651, "decimalLat": -27.52994 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713597, "decimalLat": -34.891444 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519675, "decimalLat": -30.519709 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.988242, "decimalLat": -27.778026 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -27.778 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092116, "decimalLat": -27.520455 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.52 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073275, "decimalLat": -27.545709 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.403972, "decimalLat": -27.454497 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -27.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 144.112431, "decimalLat": -18.484028 }, "geometry": { "type": "Point", "coordinates": [ 144.112, -18.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070339, "decimalLat": -27.543753 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.402775, "decimalLat": -27.493733 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09195, "decimalLat": -27.527207 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.213491, "decimalLat": -38.24624 }, "geometry": { "type": "Point", "coordinates": [ 145.213, -38.246 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.5717, "decimalLat": -35.027478 }, "geometry": { "type": "Point", "coordinates": [ 138.572, -35.027 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734112, "decimalLat": -34.887471 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.828637, "decimalLat": -35.247078 }, "geometry": { "type": "Point", "coordinates": [ 138.829, -35.247 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05805, "decimalLat": -27.545612 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.891435, "decimalLat": -27.597899 }, "geometry": { "type": "Point", "coordinates": [ 151.891, -27.598 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.374506, "decimalLat": -27.91437 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895396, "decimalLat": -27.600052 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103724, "decimalLat": -27.528565 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.883811, "decimalLat": -37.587456 }, "geometry": { "type": "Point", "coordinates": [ 143.884, -37.587 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.955934, "decimalLat": -27.446471 }, "geometry": { "type": "Point", "coordinates": [ 151.956, -27.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.60557, "decimalLat": -38.763436 }, "geometry": { "type": "Point", "coordinates": [ 143.606, -38.763 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.112829, "decimalLat": -26.785652 }, "geometry": { "type": "Point", "coordinates": [ 151.113, -26.786 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.863442, "decimalLat": -19.137747 }, "geometry": { "type": "Point", "coordinates": [ 146.863, -19.138 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.351853, "decimalLat": -35.616872 }, "geometry": { "type": "Point", "coordinates": [ 137.352, -35.617 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070025, "decimalLat": -27.510472 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.540405, "decimalLat": -33.681672 }, "geometry": { "type": "Point", "coordinates": [ 150.54, -33.682 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086145, "decimalLat": -27.510324 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.90142, "decimalLat": -27.622257 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -27.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164089, "decimalLat": -38.67138 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.989644, "decimalLat": -27.292703 }, "geometry": { "type": "Point", "coordinates": [ 152.99, -27.293 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.462576, "decimalLat": -35.814727 }, "geometry": { "type": "Point", "coordinates": [ 137.463, -35.815 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164339, "decimalLat": -38.671234 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.162193, "decimalLat": -38.67071 }, "geometry": { "type": "Point", "coordinates": [ 146.162, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074565, "decimalLat": -27.358453 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.296814, "decimalLat": -38.598474 }, "geometry": { "type": "Point", "coordinates": [ 146.297, -38.598 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.455094, "decimalLat": -27.420866 }, "geometry": { "type": "Point", "coordinates": [ 152.455, -27.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057848, "decimalLat": -27.551026 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733742, "decimalLat": -34.888534 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11183, "decimalLat": -27.527893 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107733, "decimalLat": -27.526952 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000366, "decimalLat": -27.284701 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110671, "decimalLat": -27.527647 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.898826, "decimalLat": -26.197039 }, "geometry": { "type": "Point", "coordinates": [ 151.899, -26.197 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108696, "decimalLat": -27.52699 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.598083, "decimalLat": -37.98038 }, "geometry": { "type": "Point", "coordinates": [ 145.598, -37.98 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.235925, "decimalLat": -33.159047 }, "geometry": { "type": "Point", "coordinates": [ 151.236, -33.159 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377584, "decimalLat": -28.25416 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.472808, "decimalLat": -34.72017 }, "geometry": { "type": "Point", "coordinates": [ 146.473, -34.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058539, "decimalLat": -27.551314 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09102, "decimalLat": -27.526359 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.858818, "decimalLat": -38.666462 }, "geometry": { "type": "Point", "coordinates": [ 143.859, -38.666 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.77903, "decimalLat": -38.631853 }, "geometry": { "type": "Point", "coordinates": [ 143.779, -38.632 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056856, "decimalLat": -27.551584 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.72865, "decimalLat": -37.922068 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.667983, "decimalLat": -36.287705 }, "geometry": { "type": "Point", "coordinates": [ 146.668, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092016, "decimalLat": -27.527267 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084939, "decimalLat": -27.510004 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.714994, "decimalLat": -34.878111 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.878 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.824981, "decimalLat": -34.101894 }, "geometry": { "type": "Point", "coordinates": [ 150.825, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.711267, "decimalLat": -38.721208 }, "geometry": { "type": "Point", "coordinates": [ 143.711, -38.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.25995, "decimalLat": -28.102879 }, "geometry": { "type": "Point", "coordinates": [ 151.26, -28.103 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.364362, "decimalLat": -38.318308 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093038, "decimalLat": -27.528418 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.97502, "decimalLat": -26.16097 }, "geometry": { "type": "Point", "coordinates": [ 151.975, -26.161 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108309, "decimalLat": -27.527085 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.933975, "decimalLat": -27.332813 }, "geometry": { "type": "Point", "coordinates": [ 151.934, -27.333 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079065, "decimalLat": -27.515177 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102653, "decimalLat": -27.529559 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.723711, "decimalLat": -37.926814 }, "geometry": { "type": "Point", "coordinates": [ 147.724, -37.927 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.046321, "decimalLat": -27.544507 }, "geometry": { "type": "Point", "coordinates": [ 153.046, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72267, "decimalLat": -34.892678 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058334, "decimalLat": -27.545399 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104637, "decimalLat": -27.53054 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394289, "decimalLat": -28.959125 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.649819, "decimalLat": -34.877049 }, "geometry": { "type": "Point", "coordinates": [ 138.65, -34.877 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731057, "decimalLat": -34.890879 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07655, "decimalLat": -27.555823 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.556 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401875, "decimalLat": -28.257077 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715476, "decimalLat": -34.892548 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091504, "decimalLat": -27.526849 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.548476, "decimalLat": -34.752945 }, "geometry": { "type": "Point", "coordinates": [ 146.548, -34.753 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.884611, "decimalLat": -37.615364 }, "geometry": { "type": "Point", "coordinates": [ 143.885, -37.615 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378125, "decimalLat": -28.255295 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.916168, "decimalLat": -27.375381 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -27.375 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.0869, "decimalLat": -27.69505 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.695 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715811, "decimalLat": -34.892977 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.308016, "decimalLat": -38.38472 }, "geometry": { "type": "Point", "coordinates": [ 145.308, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.563547, "decimalLat": -35.154475 }, "geometry": { "type": "Point", "coordinates": [ 138.564, -35.154 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112665, "decimalLat": -27.528779 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107664, "decimalLat": -27.526876 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.871368, "decimalLat": -19.123665 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.124 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.750039, "decimalLat": -26.155358 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.136353, "decimalLat": -37.321258 }, "geometry": { "type": "Point", "coordinates": [ 144.136, -37.321 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108367, "decimalLat": -27.526922 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.965928, "decimalLat": -27.278888 }, "geometry": { "type": "Point", "coordinates": [ 152.966, -27.279 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.42151, "decimalLat": -27.239769 }, "geometry": { "type": "Point", "coordinates": [ 152.422, -27.24 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068358, "decimalLat": -27.222861 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.223 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192527, "decimalLat": -27.701138 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.76599, "decimalLat": -35.020756 }, "geometry": { "type": "Point", "coordinates": [ 138.766, -35.021 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109565, "decimalLat": -27.529365 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072645, "decimalLat": -27.523868 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08368, "decimalLat": -27.515938 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090658, "decimalLat": -27.526976 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.893306, "decimalLat": -37.619578 }, "geometry": { "type": "Point", "coordinates": [ 143.893, -37.62 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104059, "decimalLat": -27.529686 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091538, "decimalLat": -27.52729 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400549, "decimalLat": -28.258107 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10343, "decimalLat": -27.528392 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189646, "decimalLat": -27.701124 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718481, "decimalLat": -34.892174 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.985783, "decimalLat": -27.563016 }, "geometry": { "type": "Point", "coordinates": [ 151.986, -27.563 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.813638, "decimalLat": -26.814913 }, "geometry": { "type": "Point", "coordinates": [ 152.814, -26.815 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057753, "decimalLat": -27.551116 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070025, "decimalLat": -27.510472 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.878276, "decimalLat": -37.633949 }, "geometry": { "type": "Point", "coordinates": [ 143.878, -37.634 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98178, "decimalLat": -34.12862 }, "geometry": { "type": "Point", "coordinates": [ 150.982, -34.129 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.91346, "decimalLat": -37.627285 }, "geometry": { "type": "Point", "coordinates": [ 143.913, -37.627 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092846, "decimalLat": -27.528091 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059638, "decimalLat": -27.551622 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.287686, "decimalLat": -37.795353 }, "geometry": { "type": "Point", "coordinates": [ 144.288, -37.795 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.880769, "decimalLat": -37.661556 }, "geometry": { "type": "Point", "coordinates": [ 143.881, -37.662 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.834336, "decimalLat": -26.26825 }, "geometry": { "type": "Point", "coordinates": [ 152.834, -26.268 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057863, "decimalLat": -27.551835 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.203803, "decimalLat": -38.487808 }, "geometry": { "type": "Point", "coordinates": [ 146.204, -38.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377208, "decimalLat": -28.25405 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05308, "decimalLat": -27.539301 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057874, "decimalLat": -27.551041 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.559033, "decimalLat": -27.813543 }, "geometry": { "type": "Point", "coordinates": [ 151.559, -27.814 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.519599, "decimalLat": -35.224507 }, "geometry": { "type": "Point", "coordinates": [ 138.52, -35.225 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.610627, "decimalLat": -25.623632 }, "geometry": { "type": "Point", "coordinates": [ 151.611, -25.624 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.959167, "decimalLat": -32.387195 }, "geometry": { "type": "Point", "coordinates": [ 151.959, -32.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.369967, "decimalLat": -27.937965 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08715, "decimalLat": -27.695383 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.695 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090867, "decimalLat": -27.527171 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.86575, "decimalLat": -26.14881 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -26.149 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.943663, "decimalLat": -26.816867 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -26.817 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.463228, "decimalLat": -37.029093 }, "geometry": { "type": "Point", "coordinates": [ 145.463, -37.029 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733755, "decimalLat": -34.886557 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.83155, "decimalLat": -29.651211 }, "geometry": { "type": "Point", "coordinates": [ 150.832, -29.651 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.325064, "decimalLat": -27.91365 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.814728, "decimalLat": -38.380755 }, "geometry": { "type": "Point", "coordinates": [ 142.815, -38.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.528767, "decimalLat": -27.430789 }, "geometry": { "type": "Point", "coordinates": [ 153.529, -27.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.335186, "decimalLat": -29.779553 }, "geometry": { "type": "Point", "coordinates": [ 151.335, -29.78 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061874, "decimalLat": -27.534404 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372558, "decimalLat": -27.911478 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.911 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090986, "decimalLat": -27.526939 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440766, "decimalLat": -27.403776 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.404 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.859615, "decimalLat": -27.542516 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058399, "decimalLat": -27.547033 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051991, "decimalLat": -27.549063 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111949, "decimalLat": -27.529041 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001134, "decimalLat": -27.284706 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.091356, "decimalLat": -33.144458 }, "geometry": { "type": "Point", "coordinates": [ 151.091, -33.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09199, "decimalLat": -27.527143 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375685, "decimalLat": -28.252385 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.582256, "decimalLat": -26.494998 }, "geometry": { "type": "Point", "coordinates": [ 152.582, -26.495 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092208, "decimalLat": -27.527649 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091489, "decimalLat": -27.527125 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729931, "decimalLat": -34.890156 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092268, "decimalLat": -27.527346 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107527, "decimalLat": -27.526755 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.86972, "decimalLat": -19.124939 }, "geometry": { "type": "Point", "coordinates": [ 146.87, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092864, "decimalLat": -27.527558 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377492, "decimalLat": -28.254077 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.606861, "decimalLat": -28.164286 }, "geometry": { "type": "Point", "coordinates": [ 152.607, -28.164 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.567505, "decimalLat": -27.693521 }, "geometry": { "type": "Point", "coordinates": [ 151.568, -27.694 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10918, "decimalLat": -27.528787 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399307, "decimalLat": -27.496292 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4255, "decimalLat": -27.46862 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -27.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.87487, "decimalLat": -36.285812 }, "geometry": { "type": "Point", "coordinates": [ 146.875, -36.286 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111374, "decimalLat": -27.529814 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.93211, "decimalLat": -27.57316 }, "geometry": { "type": "Point", "coordinates": [ 152.932, -27.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.451885, "decimalLat": -27.56567 }, "geometry": { "type": "Point", "coordinates": [ 152.452, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07025, "decimalLat": -27.510814 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.260788, "decimalLat": -28.102933 }, "geometry": { "type": "Point", "coordinates": [ 151.261, -28.103 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907378, "decimalLat": -31.470397 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.041584, "decimalLat": -27.299223 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -27.299 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722536, "decimalLat": -34.892459 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657846, "decimalLat": -35.003905 }, "geometry": { "type": "Point", "coordinates": [ 138.658, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.3852, "decimalLat": -27.467544 }, "geometry": { "type": "Point", "coordinates": [ 152.385, -27.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 150.67257, "decimalLat": -26.720226 }, "geometry": { "type": "Point", "coordinates": [ 150.673, -26.72 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093069, "decimalLat": -27.5243 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.726814, "decimalLat": -34.888441 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10517, "decimalLat": -27.530035 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103222, "decimalLat": -27.529462 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092308, "decimalLat": -27.52729 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.275094, "decimalLat": -38.140026 }, "geometry": { "type": "Point", "coordinates": [ 145.275, -38.14 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.64806, "decimalLat": -34.880447 }, "geometry": { "type": "Point", "coordinates": [ 138.648, -34.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377472, "decimalLat": -28.254577 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092362, "decimalLat": -27.527819 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057763, "decimalLat": -27.551026 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.277747, "decimalLat": -38.75948 }, "geometry": { "type": "Point", "coordinates": [ 143.278, -38.759 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.045239, "decimalLat": -27.258325 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730047, "decimalLat": -34.879345 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.879 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.994017, "decimalLat": -27.823444 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.063872, "decimalLat": -27.261942 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -27.262 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074182, "decimalLat": -27.358152 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.102574, "decimalLat": -26.853361 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -26.853 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.770813, "decimalLat": -27.37647 }, "geometry": { "type": "Point", "coordinates": [ 151.771, -27.376 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057809, "decimalLat": -27.551075 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.73137, "decimalLat": -37.922528 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.041858, "decimalLat": -26.648594 }, "geometry": { "type": "Point", "coordinates": [ 151.042, -26.649 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058375, "decimalLat": -27.546077 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090654, "decimalLat": -27.525755 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402161, "decimalLat": -28.257657 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.986188, "decimalLat": -27.282989 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -27.283 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059484, "decimalLat": -27.54896 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090966, "decimalLat": -27.526488 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993756, "decimalLat": -27.823121 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.296902, "decimalLat": -37.077676 }, "geometry": { "type": "Point", "coordinates": [ 144.297, -37.078 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.74492, "decimalLat": -36.816137 }, "geometry": { "type": "Point", "coordinates": [ 145.745, -36.816 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.681985, "decimalLat": -27.38914 }, "geometry": { "type": "Point", "coordinates": [ 151.682, -27.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999342, "decimalLat": -27.283762 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.93373, "decimalLat": -27.329217 }, "geometry": { "type": "Point", "coordinates": [ 151.934, -27.329 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.808335, "decimalLat": -26.584528 }, "geometry": { "type": "Point", "coordinates": [ 151.808, -26.585 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070421, "decimalLat": -27.544081 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.900605, "decimalLat": -37.64138 }, "geometry": { "type": "Point", "coordinates": [ 143.901, -37.641 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377566, "decimalLat": -28.25445 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057657, "decimalLat": -27.551282 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093033, "decimalLat": -27.524322 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.051193, "decimalLat": -38.26398 }, "geometry": { "type": "Point", "coordinates": [ 145.051, -38.264 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913872, "decimalLat": -30.494854 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -30.495 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103181, "decimalLat": -27.526611 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.00345, "decimalLat": -30.533724 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -30.534 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.835978, "decimalLat": -19.13596 }, "geometry": { "type": "Point", "coordinates": [ 146.836, -19.136 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090511, "decimalLat": -27.526578 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.898625, "decimalLat": -37.594638 }, "geometry": { "type": "Point", "coordinates": [ 143.899, -37.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.03742, "decimalLat": -27.532759 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.567039, "decimalLat": -35.086114 }, "geometry": { "type": "Point", "coordinates": [ 138.567, -35.086 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091364, "decimalLat": -27.527051 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.86915, "decimalLat": -26.15117 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -26.151 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.585933, "decimalLat": -29.8572 }, "geometry": { "type": "Point", "coordinates": [ 150.586, -29.857 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.74684, "decimalLat": -37.554729 }, "geometry": { "type": "Point", "coordinates": [ 149.747, -37.555 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.930851, "decimalLat": -38.150932 }, "geometry": { "type": "Point", "coordinates": [ 141.931, -38.151 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.691206, "decimalLat": -34.954881 }, "geometry": { "type": "Point", "coordinates": [ 138.691, -34.955 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72173, "decimalLat": -34.891945 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860922, "decimalLat": -38.667782 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090867, "decimalLat": -27.525881 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437667, "decimalLat": -27.40038 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10537, "decimalLat": -27.531369 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19097, "decimalLat": -27.700869 }, "geometry": { "type": "Point", "coordinates": [ 153.191, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.374011, "decimalLat": -27.916603 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.002961, "decimalLat": -27.4141 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.477893, "decimalLat": -37.792921 }, "geometry": { "type": "Point", "coordinates": [ 141.478, -37.793 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.609153, "decimalLat": -27.332775 }, "geometry": { "type": "Point", "coordinates": [ 152.609, -27.333 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.814846, "decimalLat": -26.140737 }, "geometry": { "type": "Point", "coordinates": [ 151.815, -26.141 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090889, "decimalLat": -27.52748 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.974953, "decimalLat": -38.500006 }, "geometry": { "type": "Point", "coordinates": [ 142.975, -38.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290871, "decimalLat": -37.874169 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.874 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073358, "decimalLat": -27.545782 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.867535, "decimalLat": -19.142842 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.143 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103471, "decimalLat": -27.530145 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.313164, "decimalLat": -38.381747 }, "geometry": { "type": "Point", "coordinates": [ 145.313, -38.382 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.940567, "decimalLat": -27.272692 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -27.273 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048974, "decimalLat": -27.54968 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.64926, "decimalLat": -34.877993 }, "geometry": { "type": "Point", "coordinates": [ 138.649, -34.878 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.375298, "decimalLat": -27.914631 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0698, "decimalLat": -27.510435 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.535453, "decimalLat": -38.587936 }, "geometry": { "type": "Point", "coordinates": [ 145.535, -38.588 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.925556, "decimalLat": -37.652778 }, "geometry": { "type": "Point", "coordinates": [ 143.926, -37.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377322, "decimalLat": -28.254279 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27237, "decimalLat": -38.129436 }, "geometry": { "type": "Point", "coordinates": [ 145.272, -38.129 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.864838, "decimalLat": -19.137467 }, "geometry": { "type": "Point", "coordinates": [ 146.865, -19.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090582, "decimalLat": -27.525953 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.759652, "decimalLat": -26.165729 }, "geometry": { "type": "Point", "coordinates": [ 151.76, -26.166 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.624934, "decimalLat": -27.073555 }, "geometry": { "type": "Point", "coordinates": [ 152.625, -27.074 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.852301, "decimalLat": -34.070375 }, "geometry": { "type": "Point", "coordinates": [ 150.852, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164689, "decimalLat": -38.671013 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.978303, "decimalLat": -38.497158 }, "geometry": { "type": "Point", "coordinates": [ 142.978, -38.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091668, "decimalLat": -27.527099 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868268, "decimalLat": -19.127136 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092189, "decimalLat": -27.527383 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.691324, "decimalLat": -26.180544 }, "geometry": { "type": "Point", "coordinates": [ 151.691, -26.181 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.728667, "decimalLat": -34.864295 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.864 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.798848, "decimalLat": -26.151977 }, "geometry": { "type": "Point", "coordinates": [ 151.799, -26.152 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081131, "decimalLat": -27.509205 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.442494, "decimalLat": -28.273478 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.273 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999949, "decimalLat": -27.284502 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.903461, "decimalLat": -26.590241 }, "geometry": { "type": "Point", "coordinates": [ 151.903, -26.59 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732096, "decimalLat": -34.890444 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055105, "decimalLat": -27.54378 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103856, "decimalLat": -27.529835 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.401428, "decimalLat": -38.341645 }, "geometry": { "type": "Point", "coordinates": [ 143.401, -38.342 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110618, "decimalLat": -27.527467 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092283, "decimalLat": -27.527244 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.139185, "decimalLat": -27.622935 }, "geometry": { "type": "Point", "coordinates": [ 153.139, -27.623 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.951334, "decimalLat": -27.257249 }, "geometry": { "type": "Point", "coordinates": [ 152.951, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.224494, "decimalLat": -27.50995 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103748, "decimalLat": -27.530015 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057968, "decimalLat": -27.534647 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09241, "decimalLat": -27.525619 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058072, "decimalLat": -27.550759 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.9357, "decimalLat": -27.325512 }, "geometry": { "type": "Point", "coordinates": [ 151.936, -27.326 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110058, "decimalLat": -27.527291 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721826, "decimalLat": -34.89082 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.743102, "decimalLat": -28.236923 }, "geometry": { "type": "Point", "coordinates": [ 152.743, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.93507, "decimalLat": -33.359477 }, "geometry": { "type": "Point", "coordinates": [ 150.935, -33.359 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.972547, "decimalLat": -26.164152 }, "geometry": { "type": "Point", "coordinates": [ 151.973, -26.164 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.506638, "decimalLat": -35.594055 }, "geometry": { "type": "Point", "coordinates": [ 137.507, -35.594 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092887, "decimalLat": -27.528369 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.534628, "decimalLat": -27.429179 }, "geometry": { "type": "Point", "coordinates": [ 153.535, -27.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519267, "decimalLat": -30.520251 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656552, "decimalLat": -34.93497 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.935 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.525772, "decimalLat": -27.714822 }, "geometry": { "type": "Point", "coordinates": [ 151.526, -27.715 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073196, "decimalLat": -27.545906 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.515658, "decimalLat": -27.422231 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -27.422 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091311, "decimalLat": -27.526745 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199051, "decimalLat": -28.191796 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -28.192 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375182, "decimalLat": -28.252316 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106566, "decimalLat": -27.528455 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7184, "decimalLat": -34.892118 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.491466, "decimalLat": -37.79459 }, "geometry": { "type": "Point", "coordinates": [ 141.491, -37.795 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092208, "decimalLat": -27.5273 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.107368, "decimalLat": -27.563269 }, "geometry": { "type": "Point", "coordinates": [ 152.107, -27.563 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000793, "decimalLat": -27.284462 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085427, "decimalLat": -27.508255 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090966, "decimalLat": -27.527095 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057833, "decimalLat": -27.550966 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992508, "decimalLat": -27.823963 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092104, "decimalLat": -27.527191 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046542, "decimalLat": -27.257154 }, "geometry": { "type": "Point", "coordinates": [ 152.047, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.645737, "decimalLat": -34.884813 }, "geometry": { "type": "Point", "coordinates": [ 138.646, -34.885 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.647313, "decimalLat": -35.001368 }, "geometry": { "type": "Point", "coordinates": [ 138.647, -35.001 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363203, "decimalLat": -38.318633 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.88533, "decimalLat": -34.93937 }, "geometry": { "type": "Point", "coordinates": [ 138.885, -34.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4018, "decimalLat": -28.260366 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.352707, "decimalLat": -27.935557 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.79985, "decimalLat": -26.332094 }, "geometry": { "type": "Point", "coordinates": [ 151.8, -26.332 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000693, "decimalLat": -27.284883 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.06395, "decimalLat": -27.261838 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -27.262 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.890666, "decimalLat": -37.599619 }, "geometry": { "type": "Point", "coordinates": [ 143.891, -37.6 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.906767, "decimalLat": -28.173861 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -28.174 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.36377, "decimalLat": -38.318329 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111417, "decimalLat": -27.525478 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101258, "decimalLat": -27.530276 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992557, "decimalLat": -27.822675 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062799, "decimalLat": -27.550385 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.65918, "decimalLat": -28.22169 }, "geometry": { "type": "Point", "coordinates": [ 152.659, -28.222 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09231, "decimalLat": -27.527797 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.609232, "decimalLat": -35.054554 }, "geometry": { "type": "Point", "coordinates": [ 138.609, -35.055 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.134033, "decimalLat": -27.565197 }, "geometry": { "type": "Point", "coordinates": [ 153.134, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.583197, "decimalLat": -28.918227 }, "geometry": { "type": "Point", "coordinates": [ 151.583, -28.918 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054531, "decimalLat": -27.552348 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110564, "decimalLat": -27.527942 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004315, "decimalLat": -27.41181 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.412 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.697083, "decimalLat": -34.958658 }, "geometry": { "type": "Point", "coordinates": [ 138.697, -34.959 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.867925, "decimalLat": -19.127992 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.128 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.561628, "decimalLat": -27.791158 }, "geometry": { "type": "Point", "coordinates": [ 151.562, -27.791 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102589, "decimalLat": -27.529451 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.921662, "decimalLat": -38.438512 }, "geometry": { "type": "Point", "coordinates": [ 142.922, -38.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103224, "decimalLat": -27.526581 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.449682, "decimalLat": -26.103208 }, "geometry": { "type": "Point", "coordinates": [ 151.45, -26.103 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107673, "decimalLat": -27.52724 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.246535, "decimalLat": -38.251667 }, "geometry": { "type": "Point", "coordinates": [ 145.247, -38.252 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058444, "decimalLat": -27.546838 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.649798, "decimalLat": -34.999543 }, "geometry": { "type": "Point", "coordinates": [ 138.65, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.049537, "decimalLat": -27.549338 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731438, "decimalLat": -34.890248 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103239, "decimalLat": -27.530124 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.711625, "decimalLat": -27.649172 }, "geometry": { "type": "Point", "coordinates": [ 151.712, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092326, "decimalLat": -27.528119 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.812496, "decimalLat": -26.130214 }, "geometry": { "type": "Point", "coordinates": [ 151.812, -26.13 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.094533, "decimalLat": -33.076269 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715375, "decimalLat": -34.892716 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42993, "decimalLat": -27.492605 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.595763, "decimalLat": -34.77335 }, "geometry": { "type": "Point", "coordinates": [ 146.596, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107239, "decimalLat": -27.527213 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.641602, "decimalLat": -34.885585 }, "geometry": { "type": "Point", "coordinates": [ 138.642, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377059, "decimalLat": -28.253542 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.17015, "decimalLat": -27.583867 }, "geometry": { "type": "Point", "coordinates": [ 153.17, -27.584 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.866522, "decimalLat": -19.143517 }, "geometry": { "type": "Point", "coordinates": [ 146.867, -19.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10159, "decimalLat": -27.734251 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.734 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103491, "decimalLat": -27.529575 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.047925, "decimalLat": -38.265745 }, "geometry": { "type": "Point", "coordinates": [ 145.048, -38.266 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.608522, "decimalLat": -28.153812 }, "geometry": { "type": "Point", "coordinates": [ 152.609, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073578, "decimalLat": -27.54033 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09035, "decimalLat": -27.526599 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092037, "decimalLat": -27.5259 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.380773, "decimalLat": -31.94517 }, "geometry": { "type": "Point", "coordinates": [ 152.381, -31.945 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363418, "decimalLat": -38.318303 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.668808, "decimalLat": -37.439975 }, "geometry": { "type": "Point", "coordinates": [ 144.669, -37.44 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104138, "decimalLat": -27.529979 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377528, "decimalLat": -28.254093 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.512162, "decimalLat": -38.833095 }, "geometry": { "type": "Point", "coordinates": [ 143.512, -38.833 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110112, "decimalLat": -27.527065 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.140043, "decimalLat": -38.031687 }, "geometry": { "type": "Point", "coordinates": [ 141.14, -38.032 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.674126, "decimalLat": -26.321919 }, "geometry": { "type": "Point", "coordinates": [ 152.674, -26.322 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.125654, "decimalLat": -27.065206 }, "geometry": { "type": "Point", "coordinates": [ 153.126, -27.065 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.400466, "decimalLat": -27.457661 }, "geometry": { "type": "Point", "coordinates": [ 152.4, -27.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.049222, "decimalLat": -27.266377 }, "geometry": { "type": "Point", "coordinates": [ 152.049, -27.266 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057473, "decimalLat": -27.550933 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105288, "decimalLat": -27.527809 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003083, "decimalLat": -27.413805 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090454, "decimalLat": -27.526694 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.919541, "decimalLat": -27.392436 }, "geometry": { "type": "Point", "coordinates": [ 151.92, -27.392 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057702, "decimalLat": -27.551136 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090692, "decimalLat": -27.526092 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0924, "decimalLat": -27.527647 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860803, "decimalLat": -38.668335 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.891114, "decimalLat": -27.597933 }, "geometry": { "type": "Point", "coordinates": [ 151.891, -27.598 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564429, "decimalLat": -28.386166 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.6112, "decimalLat": -28.072281 }, "geometry": { "type": "Point", "coordinates": [ 152.611, -28.072 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091519, "decimalLat": -27.52726 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.078614, "decimalLat": -26.974855 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -26.975 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110802, "decimalLat": -27.529162 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.61383, "decimalLat": -27.339485 }, "geometry": { "type": "Point", "coordinates": [ 152.614, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054597, "decimalLat": -27.550508 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.844435, "decimalLat": -38.673347 }, "geometry": { "type": "Point", "coordinates": [ 143.844, -38.673 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003171, "decimalLat": -27.413623 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.94435, "decimalLat": -27.323683 }, "geometry": { "type": "Point", "coordinates": [ 151.944, -27.324 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.708145, "decimalLat": -27.648608 }, "geometry": { "type": "Point", "coordinates": [ 151.708, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108167, "decimalLat": -27.526863 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073017, "decimalLat": -27.546068 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377005, "decimalLat": -28.254188 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730208, "decimalLat": -34.890385 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092986, "decimalLat": -27.524411 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.680144, "decimalLat": -34.867243 }, "geometry": { "type": "Point", "coordinates": [ 138.68, -34.867 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.251647, "decimalLat": -37.819655 }, "geometry": { "type": "Point", "coordinates": [ 144.252, -37.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046347, "decimalLat": -27.257551 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721814, "decimalLat": -34.892749 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.515105, "decimalLat": -38.832475 }, "geometry": { "type": "Point", "coordinates": [ 143.515, -38.832 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719099, "decimalLat": -34.89205 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.580048, "decimalLat": -35.046527 }, "geometry": { "type": "Point", "coordinates": [ 138.58, -35.047 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440791, "decimalLat": -27.392849 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082682, "decimalLat": -27.507918 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.979875, "decimalLat": -26.260405 }, "geometry": { "type": "Point", "coordinates": [ 151.98, -26.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.566135, "decimalLat": -28.247032 }, "geometry": { "type": "Point", "coordinates": [ 152.566, -28.247 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091293, "decimalLat": -27.527216 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109916, "decimalLat": -27.527126 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.005508, "decimalLat": -26.670002 }, "geometry": { "type": "Point", "coordinates": [ 152.006, -26.67 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058186, "decimalLat": -27.550856 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.274209, "decimalLat": -29.007235 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -29.007 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090748, "decimalLat": -27.526895 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.277344, "decimalLat": -38.759478 }, "geometry": { "type": "Point", "coordinates": [ 143.277, -38.759 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071631, "decimalLat": -27.544149 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093176, "decimalLat": -27.523988 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090709, "decimalLat": -27.52605 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.648348, "decimalLat": -37.769227 }, "geometry": { "type": "Point", "coordinates": [ 145.648, -37.769 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.503617, "decimalLat": -37.853338 }, "geometry": { "type": "Point", "coordinates": [ 145.504, -37.853 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.86621, "decimalLat": -28.211565 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.212 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086211, "decimalLat": -27.540238 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387575, "decimalLat": -38.354401 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073261, "decimalLat": -27.545482 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086711, "decimalLat": -27.510817 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106818, "decimalLat": -27.529406 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.489074, "decimalLat": -35.163448 }, "geometry": { "type": "Point", "coordinates": [ 138.489, -35.163 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103125, "decimalLat": -27.530211 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.872015, "decimalLat": -19.12344 }, "geometry": { "type": "Point", "coordinates": [ 146.872, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05709, "decimalLat": -27.546848 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.030646, "decimalLat": -27.303541 }, "geometry": { "type": "Point", "coordinates": [ 153.031, -27.304 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.891362, "decimalLat": -37.578718 }, "geometry": { "type": "Point", "coordinates": [ 143.891, -37.579 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.595471, "decimalLat": -38.458995 }, "geometry": { "type": "Point", "coordinates": [ 143.595, -38.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377029, "decimalLat": -28.254082 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10871, "decimalLat": -27.527312 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.243692, "decimalLat": -38.251898 }, "geometry": { "type": "Point", "coordinates": [ 145.244, -38.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.133483, "decimalLat": -27.564455 }, "geometry": { "type": "Point", "coordinates": [ 153.133, -27.564 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06968, "decimalLat": -27.526624 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092604, "decimalLat": -27.527552 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103512, "decimalLat": -27.530146 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076418, "decimalLat": -27.555961 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.861303, "decimalLat": -19.136034 }, "geometry": { "type": "Point", "coordinates": [ 146.861, -19.136 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.150816, "decimalLat": -33.509551 }, "geometry": { "type": "Point", "coordinates": [ 150.151, -33.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072805, "decimalLat": -27.545943 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.708313, "decimalLat": -35.21402 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -35.214 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.800937, "decimalLat": -26.154581 }, "geometry": { "type": "Point", "coordinates": [ 151.801, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085438, "decimalLat": -27.510367 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.734442, "decimalLat": -38.627845 }, "geometry": { "type": "Point", "coordinates": [ 145.734, -38.628 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092516, "decimalLat": -27.527596 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048112, "decimalLat": -27.550306 }, "geometry": { "type": "Point", "coordinates": [ 153.048, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072412, "decimalLat": -27.545721 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702312, "decimalLat": -34.93032 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.93 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109596, "decimalLat": -27.528251 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090724, "decimalLat": -27.52581 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103326, "decimalLat": -27.528268 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053517, "decimalLat": -27.549498 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.191588, "decimalLat": -37.859903 }, "geometry": { "type": "Point", "coordinates": [ 144.192, -37.86 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720914, "decimalLat": -34.892641 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438877, "decimalLat": -27.398144 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.07192, "decimalLat": -27.357425 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -27.357 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.814643, "decimalLat": -26.36268 }, "geometry": { "type": "Point", "coordinates": [ 151.815, -26.363 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.754648, "decimalLat": -38.632486 }, "geometry": { "type": "Point", "coordinates": [ 145.755, -38.632 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103373, "decimalLat": -27.528217 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.408806, "decimalLat": -37.862466 }, "geometry": { "type": "Point", "coordinates": [ 144.409, -37.862 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.626207, "decimalLat": -26.931342 }, "geometry": { "type": "Point", "coordinates": [ 152.626, -26.931 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.127224, "decimalLat": -37.898349 }, "geometry": { "type": "Point", "coordinates": [ 144.127, -37.898 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.444068, "decimalLat": -28.107407 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105334, "decimalLat": -27.532166 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.094986, "decimalLat": -33.076739 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.861178, "decimalLat": -38.670006 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.67 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860797, "decimalLat": -38.668869 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.669 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.871475, "decimalLat": -19.123033 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.427524, "decimalLat": -28.155996 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095081, "decimalLat": -33.076753 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.82778, "decimalLat": -28.069572 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -28.07 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.047926, "decimalLat": -38.266058 }, "geometry": { "type": "Point", "coordinates": [ 145.048, -38.266 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.803643, "decimalLat": -27.538016 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.524445, "decimalLat": -27.469494 }, "geometry": { "type": "Point", "coordinates": [ 152.524, -27.469 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.717116, "decimalLat": -34.892869 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69922, "decimalLat": -34.936803 }, "geometry": { "type": "Point", "coordinates": [ 138.699, -34.937 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.365753, "decimalLat": -27.455422 }, "geometry": { "type": "Point", "coordinates": [ 152.366, -27.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.050203, "decimalLat": -27.269747 }, "geometry": { "type": "Point", "coordinates": [ 152.05, -27.27 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.768926, "decimalLat": -26.255551 }, "geometry": { "type": "Point", "coordinates": [ 151.769, -26.256 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268686, "decimalLat": -38.130704 }, "geometry": { "type": "Point", "coordinates": [ 145.269, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.996277, "decimalLat": -27.314204 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -27.314 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363206, "decimalLat": -38.318511 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372116, "decimalLat": -27.903923 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004897, "decimalLat": -27.411703 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -27.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.987807, "decimalLat": -27.633559 }, "geometry": { "type": "Point", "coordinates": [ 151.988, -27.634 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112564, "decimalLat": -27.528771 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376878, "decimalLat": -28.25308 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.613948, "decimalLat": -34.902573 }, "geometry": { "type": "Point", "coordinates": [ 138.614, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066977, "decimalLat": -27.546765 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.838012, "decimalLat": -28.09476 }, "geometry": { "type": "Point", "coordinates": [ 152.838, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.493708, "decimalLat": -26.490428 }, "geometry": { "type": "Point", "coordinates": [ 151.494, -26.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059345, "decimalLat": -27.54843 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.607483, "decimalLat": -38.336605 }, "geometry": { "type": "Point", "coordinates": [ 141.607, -38.337 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400645, "decimalLat": -28.257813 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.611967, "decimalLat": -35.069801 }, "geometry": { "type": "Point", "coordinates": [ 138.612, -35.07 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.859742, "decimalLat": -38.67175 }, "geometry": { "type": "Point", "coordinates": [ 143.86, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.148454, "decimalLat": -27.790381 }, "geometry": { "type": "Point", "coordinates": [ 153.148, -27.79 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090851, "decimalLat": -27.527236 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.627006, "decimalLat": -34.891726 }, "geometry": { "type": "Point", "coordinates": [ 138.627, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092842, "decimalLat": -27.528028 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095441, "decimalLat": -33.076711 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000286, "decimalLat": -27.285008 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.710878, "decimalLat": -34.905078 }, "geometry": { "type": "Point", "coordinates": [ 138.711, -34.905 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09329, "decimalLat": -27.526573 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.512572, "decimalLat": -38.834708 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.835 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.877161, "decimalLat": -37.537936 }, "geometry": { "type": "Point", "coordinates": [ 143.877, -37.538 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.623269, "decimalLat": -38.779977 }, "geometry": { "type": "Point", "coordinates": [ 143.623, -38.78 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.809135, "decimalLat": -26.583582 }, "geometry": { "type": "Point", "coordinates": [ 151.809, -26.584 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090964, "decimalLat": -27.527287 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721264, "decimalLat": -34.892602 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.727063, "decimalLat": -34.888418 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.607452, "decimalLat": -38.343098 }, "geometry": { "type": "Point", "coordinates": [ 141.607, -38.343 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092074, "decimalLat": -27.527168 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093347, "decimalLat": -27.52822 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091951, "decimalLat": -27.49542 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.652627, "decimalLat": -35.009685 }, "geometry": { "type": "Point", "coordinates": [ 138.653, -35.01 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.759022, "decimalLat": -27.866569 }, "geometry": { "type": "Point", "coordinates": [ 152.759, -27.867 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377188, "decimalLat": -28.25358 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093001, "decimalLat": -27.526153 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.860105, "decimalLat": -28.220302 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -28.22 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16365, "decimalLat": -38.671167 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.265761, "decimalLat": -28.010936 }, "geometry": { "type": "Point", "coordinates": [ 153.266, -28.011 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564077, "decimalLat": -28.380981 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.614975, "decimalLat": -34.905079 }, "geometry": { "type": "Point", "coordinates": [ 138.615, -34.905 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.287891, "decimalLat": -28.809431 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603333, "decimalLat": -29.871389 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -29.871 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.701999, "decimalLat": -34.907981 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.908 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.248534, "decimalLat": -37.423287 }, "geometry": { "type": "Point", "coordinates": [ 144.249, -37.423 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092923, "decimalLat": -27.528155 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.955572, "decimalLat": -27.611578 }, "geometry": { "type": "Point", "coordinates": [ 151.956, -27.612 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729028, "decimalLat": -37.925575 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.926 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399207, "decimalLat": -28.260161 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090624, "decimalLat": -27.526024 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095031, "decimalLat": -33.0766 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103626, "decimalLat": -27.529532 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638056, "decimalLat": -34.971396 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059173, "decimalLat": -27.548603 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074527, "decimalLat": -27.358399 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.401374, "decimalLat": -27.457171 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -27.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.462583, "decimalLat": -35.814758 }, "geometry": { "type": "Point", "coordinates": [ 137.463, -35.815 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110286, "decimalLat": -27.527569 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638779, "decimalLat": -33.432247 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -33.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.594493, "decimalLat": -35.021565 }, "geometry": { "type": "Point", "coordinates": [ 138.594, -35.022 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.52977, "decimalLat": -36.874278 }, "geometry": { "type": "Point", "coordinates": [ 145.53, -36.874 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23904, "decimalLat": -28.011059 }, "geometry": { "type": "Point", "coordinates": [ 153.239, -28.011 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082976, "decimalLat": -27.514195 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.66036, "decimalLat": -28.086765 }, "geometry": { "type": "Point", "coordinates": [ 152.66, -28.087 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092617, "decimalLat": -27.526372 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.134964, "decimalLat": -38.177623 }, "geometry": { "type": "Point", "coordinates": [ 145.135, -38.178 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.743263, "decimalLat": -37.539073 }, "geometry": { "type": "Point", "coordinates": [ 149.743, -37.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.087814, "decimalLat": -27.510444 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249352, "decimalLat": -27.496289 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378116, "decimalLat": -28.25539 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103282, "decimalLat": -27.528983 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.132064, "decimalLat": -38.032683 }, "geometry": { "type": "Point", "coordinates": [ 141.132, -38.033 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.651602, "decimalLat": -35.009016 }, "geometry": { "type": "Point", "coordinates": [ 138.652, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372193, "decimalLat": -27.915792 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091153, "decimalLat": -27.527367 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.439705, "decimalLat": -28.875181 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -28.875 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101675, "decimalLat": -27.734068 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.734 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090422, "decimalLat": -27.525533 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.60333, "decimalLat": -27.287144 }, "geometry": { "type": "Point", "coordinates": [ 152.603, -27.287 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003447, "decimalLat": -27.41382 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054096, "decimalLat": -27.537597 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.896202, "decimalLat": -37.580963 }, "geometry": { "type": "Point", "coordinates": [ 143.896, -37.581 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.884611, "decimalLat": -37.615364 }, "geometry": { "type": "Point", "coordinates": [ 143.885, -37.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074531, "decimalLat": -27.358479 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.414376, "decimalLat": -27.479845 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -27.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.897078, "decimalLat": -28.203106 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -28.203 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078353, "decimalLat": -27.50563 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072322, "decimalLat": -27.545791 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.227926, "decimalLat": -28.191992 }, "geometry": { "type": "Point", "coordinates": [ 153.228, -28.192 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082765, "decimalLat": -27.507504 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.048059, "decimalLat": -38.269016 }, "geometry": { "type": "Point", "coordinates": [ 145.048, -38.269 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10509, "decimalLat": -27.529712 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.694395, "decimalLat": -26.176446 }, "geometry": { "type": "Point", "coordinates": [ 151.694, -26.176 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.243422, "decimalLat": -33.127564 }, "geometry": { "type": "Point", "coordinates": [ 151.243, -33.128 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.097074, "decimalLat": -27.837957 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -27.838 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102454, "decimalLat": -27.735028 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.735 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111789, "decimalLat": -27.527826 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074157, "decimalLat": -27.545793 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092482, "decimalLat": -27.527698 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036878, "decimalLat": -27.534075 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113795, "decimalLat": -27.526705 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.303883, "decimalLat": -38.384164 }, "geometry": { "type": "Point", "coordinates": [ 145.304, -38.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.724832, "decimalLat": -37.923409 }, "geometry": { "type": "Point", "coordinates": [ 147.725, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092489, "decimalLat": -27.527431 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992962, "decimalLat": -27.823698 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001358, "decimalLat": -27.165344 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.165 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400598, "decimalLat": -28.25783 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.860105, "decimalLat": -28.220302 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -28.22 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.686214, "decimalLat": -34.976856 }, "geometry": { "type": "Point", "coordinates": [ 138.686, -34.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051837, "decimalLat": -27.540622 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.997334, "decimalLat": -38.828429 }, "geometry": { "type": "Point", "coordinates": [ 145.997, -38.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104746, "decimalLat": -27.529665 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054616, "decimalLat": -27.552312 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.776275, "decimalLat": -36.764775 }, "geometry": { "type": "Point", "coordinates": [ 145.776, -36.765 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.767557, "decimalLat": -38.406182 }, "geometry": { "type": "Point", "coordinates": [ 142.768, -38.406 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074386, "decimalLat": -27.358453 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69272, "decimalLat": -34.955883 }, "geometry": { "type": "Point", "coordinates": [ 138.693, -34.956 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092682, "decimalLat": -27.52555 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.271938, "decimalLat": -37.844253 }, "geometry": { "type": "Point", "coordinates": [ 144.272, -37.844 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062177, "decimalLat": -27.539603 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.049132, "decimalLat": -27.526006 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.577117, "decimalLat": -34.766808 }, "geometry": { "type": "Point", "coordinates": [ 146.577, -34.767 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072582, "decimalLat": -27.543522 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092481, "decimalLat": -27.528517 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102814, "decimalLat": -27.527545 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.588414, "decimalLat": -27.676135 }, "geometry": { "type": "Point", "coordinates": [ 151.588, -27.676 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999438, "decimalLat": -27.283875 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Australian Capital Territory", "decimalLon": 148.91, "decimalLat": -35.46 }, "geometry": { "type": "Point", "coordinates": [ 148.91, -35.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095153, "decimalLat": -33.076417 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059859, "decimalLat": -27.54997 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110058, "decimalLat": -27.529356 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.513356, "decimalLat": -38.834222 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.543507, "decimalLat": -27.433624 }, "geometry": { "type": "Point", "coordinates": [ 153.544, -27.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076339, "decimalLat": -27.817263 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.817 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.114975, "decimalLat": -27.529069 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.648513, "decimalLat": -34.884272 }, "geometry": { "type": "Point", "coordinates": [ 138.649, -34.884 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402011, "decimalLat": -28.259453 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.512392, "decimalLat": -38.834386 }, "geometry": { "type": "Point", "coordinates": [ 143.512, -38.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.124328, "decimalLat": -37.907056 }, "geometry": { "type": "Point", "coordinates": [ 144.124, -37.907 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059696, "decimalLat": -27.54845 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.067946, "decimalLat": -27.545358 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092513, "decimalLat": -27.5255 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.018733, "decimalLat": -26.376677 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -26.377 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092397, "decimalLat": -27.525732 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.772632, "decimalLat": -26.199667 }, "geometry": { "type": "Point", "coordinates": [ 151.773, -26.2 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65673, "decimalLat": -34.865342 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104149, "decimalLat": -27.528392 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.001283, "decimalLat": -38.838705 }, "geometry": { "type": "Point", "coordinates": [ 146.001, -38.839 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.643407, "decimalLat": -34.999068 }, "geometry": { "type": "Point", "coordinates": [ 138.643, -34.999 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073672, "decimalLat": -27.54584 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.723787, "decimalLat": -27.429572 }, "geometry": { "type": "Point", "coordinates": [ 151.724, -27.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091869, "decimalLat": -27.527018 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.995769, "decimalLat": -27.407664 }, "geometry": { "type": "Point", "coordinates": [ 151.996, -27.408 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.700171, "decimalLat": -34.903579 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.894048, "decimalLat": -37.652445 }, "geometry": { "type": "Point", "coordinates": [ 143.894, -37.652 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.307938, "decimalLat": -38.38475 }, "geometry": { "type": "Point", "coordinates": [ 145.308, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720177, "decimalLat": -34.892412 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.51555, "decimalLat": -38.836812 }, "geometry": { "type": "Point", "coordinates": [ 143.516, -38.837 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.737777, "decimalLat": -34.832802 }, "geometry": { "type": "Point", "coordinates": [ 138.738, -34.833 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.896371, "decimalLat": -37.639787 }, "geometry": { "type": "Point", "coordinates": [ 143.896, -37.64 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095414, "decimalLat": -33.076828 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.670495, "decimalLat": -35.012874 }, "geometry": { "type": "Point", "coordinates": [ 138.67, -35.013 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.607627, "decimalLat": -38.337468 }, "geometry": { "type": "Point", "coordinates": [ 141.608, -38.337 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.0495, "decimalLat": -27.264008 }, "geometry": { "type": "Point", "coordinates": [ 152.05, -27.264 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.625508, "decimalLat": -34.979972 }, "geometry": { "type": "Point", "coordinates": [ 138.626, -34.98 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057819, "decimalLat": -27.551096 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401033, "decimalLat": -28.258228 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090803, "decimalLat": -27.526824 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.635464, "decimalLat": -34.969308 }, "geometry": { "type": "Point", "coordinates": [ 138.635, -34.969 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093506, "decimalLat": -27.524594 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.229135, "decimalLat": -27.295994 }, "geometry": { "type": "Point", "coordinates": [ 152.229, -27.296 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399789, "decimalLat": -28.260549 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046218, "decimalLat": -27.256143 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.256 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090984, "decimalLat": -27.526636 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.534217, "decimalLat": -34.918187 }, "geometry": { "type": "Point", "coordinates": [ 138.534, -34.918 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072259, "decimalLat": -27.545178 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.737883, "decimalLat": -35.031292 }, "geometry": { "type": "Point", "coordinates": [ 138.738, -35.031 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243984, "decimalLat": -27.987239 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.987 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058425, "decimalLat": -27.551492 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091824, "decimalLat": -27.527164 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.85621, "decimalLat": -38.670559 }, "geometry": { "type": "Point", "coordinates": [ 143.856, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106736, "decimalLat": -27.529428 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092046, "decimalLat": -27.527177 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378447, "decimalLat": -28.255356 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059058, "decimalLat": -27.548298 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.01265, "decimalLat": -27.405908 }, "geometry": { "type": "Point", "coordinates": [ 152.013, -27.406 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.094192, "decimalLat": -37.624122 }, "geometry": { "type": "Point", "coordinates": [ 144.094, -37.624 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090756, "decimalLat": -27.526373 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718696, "decimalLat": -34.872254 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.872 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057855, "decimalLat": -27.551848 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.917198, "decimalLat": -27.475941 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -27.476 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.452197, "decimalLat": -37.018071 }, "geometry": { "type": "Point", "coordinates": [ 145.452, -37.018 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.639925, "decimalLat": -35.005527 }, "geometry": { "type": "Point", "coordinates": [ 138.64, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.267634, "decimalLat": -28.008543 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.009 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104253, "decimalLat": -27.53005 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.598397, "decimalLat": -35.189302 }, "geometry": { "type": "Point", "coordinates": [ 138.598, -35.189 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378908, "decimalLat": -28.803875 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -28.804 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.534435, "decimalLat": -38.803096 }, "geometry": { "type": "Point", "coordinates": [ 143.534, -38.803 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.493488, "decimalLat": -35.707125 }, "geometry": { "type": "Point", "coordinates": [ 137.493, -35.707 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.001008, "decimalLat": -27.40575 }, "geometry": { "type": "Point", "coordinates": [ 152.001, -27.406 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092376, "decimalLat": -27.525619 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092828, "decimalLat": -27.528489 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090986, "decimalLat": -27.527415 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.96336, "decimalLat": -34.816393 }, "geometry": { "type": "Point", "coordinates": [ 138.963, -34.816 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.744645, "decimalLat": -38.550125 }, "geometry": { "type": "Point", "coordinates": [ 143.745, -38.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.621389, "decimalLat": -27.888502 }, "geometry": { "type": "Point", "coordinates": [ 152.621, -27.889 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057641, "decimalLat": -27.551602 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104293, "decimalLat": -27.52904 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092307, "decimalLat": -27.528468 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107262, "decimalLat": -27.527323 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109872, "decimalLat": -27.528107 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.368857, "decimalLat": -27.901167 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -27.901 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.564487, "decimalLat": -29.545658 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -29.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163772, "decimalLat": -38.671228 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101956, "decimalLat": -27.734287 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.734 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.574814, "decimalLat": -35.02025 }, "geometry": { "type": "Point", "coordinates": [ 138.575, -35.02 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.610991, "decimalLat": -38.775017 }, "geometry": { "type": "Point", "coordinates": [ 143.611, -38.775 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.579117, "decimalLat": -30.411403 }, "geometry": { "type": "Point", "coordinates": [ 151.579, -30.411 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084074, "decimalLat": -27.510538 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068811, "decimalLat": -27.54113 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.100347, "decimalLat": -27.530623 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09325, "decimalLat": -27.52492 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376892, "decimalLat": -28.254207 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.25737, "decimalLat": -37.155228 }, "geometry": { "type": "Point", "coordinates": [ 148.257, -37.155 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.910734, "decimalLat": -37.613698 }, "geometry": { "type": "Point", "coordinates": [ 143.911, -37.614 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.646183, "decimalLat": -35.009544 }, "geometry": { "type": "Point", "coordinates": [ 138.646, -35.01 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790886, "decimalLat": -34.117957 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.118 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.910476, "decimalLat": -35.026703 }, "geometry": { "type": "Point", "coordinates": [ 138.91, -35.027 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.901829, "decimalLat": -37.641163 }, "geometry": { "type": "Point", "coordinates": [ 143.902, -37.641 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060375, "decimalLat": -27.549787 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.518683, "decimalLat": -38.834084 }, "geometry": { "type": "Point", "coordinates": [ 143.519, -38.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376593, "decimalLat": -28.253821 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.754463, "decimalLat": -37.908777 }, "geometry": { "type": "Point", "coordinates": [ 147.754, -37.909 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093223, "decimalLat": -27.526608 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.042542, "decimalLat": -27.297405 }, "geometry": { "type": "Point", "coordinates": [ 152.043, -27.297 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.994171, "decimalLat": -27.585456 }, "geometry": { "type": "Point", "coordinates": [ 151.994, -27.585 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108116, "decimalLat": -27.527217 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090834, "decimalLat": -27.525864 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06865, "decimalLat": -27.525193 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.683655, "decimalLat": -38.648857 }, "geometry": { "type": "Point", "coordinates": [ 145.684, -38.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.639167, "decimalLat": -35.013633 }, "geometry": { "type": "Point", "coordinates": [ 138.639, -35.014 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.681503, "decimalLat": -34.824762 }, "geometry": { "type": "Point", "coordinates": [ 135.682, -34.825 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.994026, "decimalLat": -27.823536 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.861717, "decimalLat": -38.669359 }, "geometry": { "type": "Point", "coordinates": [ 143.862, -38.669 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716493, "decimalLat": -34.892536 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.666433, "decimalLat": -34.863963 }, "geometry": { "type": "Point", "coordinates": [ 138.666, -34.864 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092119, "decimalLat": -27.525461 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092651, "decimalLat": -27.525331 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105259, "decimalLat": -27.531495 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403006, "decimalLat": -27.493404 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993412, "decimalLat": -27.823813 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092422, "decimalLat": -27.528439 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106864, "decimalLat": -27.527931 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.932822, "decimalLat": -27.432349 }, "geometry": { "type": "Point", "coordinates": [ 151.933, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.827695, "decimalLat": -28.06992 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -28.07 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104295, "decimalLat": -27.530037 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.184105, "decimalLat": -26.118453 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -26.118 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.732484, "decimalLat": -27.778049 }, "geometry": { "type": "Point", "coordinates": [ 152.732, -27.778 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.736198, "decimalLat": -34.831007 }, "geometry": { "type": "Point", "coordinates": [ 138.736, -34.831 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110164, "decimalLat": -27.527576 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079788, "decimalLat": -27.515026 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058456, "decimalLat": -27.548134 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09021, "decimalLat": -27.526815 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.860693, "decimalLat": -27.549426 }, "geometry": { "type": "Point", "coordinates": [ 152.861, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.521037, "decimalLat": -30.519748 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037351, "decimalLat": -27.538775 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.113145, "decimalLat": -38.825237 }, "geometry": { "type": "Point", "coordinates": [ 146.113, -38.825 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.197055, "decimalLat": -38.575448 }, "geometry": { "type": "Point", "coordinates": [ 146.197, -38.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071605, "decimalLat": -27.544712 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377536, "decimalLat": -28.254031 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052177, "decimalLat": -27.542598 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.692618, "decimalLat": -26.176979 }, "geometry": { "type": "Point", "coordinates": [ 151.693, -26.177 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.861717, "decimalLat": -38.669359 }, "geometry": { "type": "Point", "coordinates": [ 143.862, -38.669 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059897, "decimalLat": -27.54973 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.933563, "decimalLat": -27.327713 }, "geometry": { "type": "Point", "coordinates": [ 151.934, -27.328 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.077519, "decimalLat": -27.228297 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.228 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.0887, "decimalLat": -33.078431 }, "geometry": { "type": "Point", "coordinates": [ 151.089, -33.078 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.442414, "decimalLat": -28.273669 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.274 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860763, "decimalLat": -38.668063 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004714, "decimalLat": -27.411337 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -27.411 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400658, "decimalLat": -28.257898 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076683, "decimalLat": -27.509098 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.779659, "decimalLat": -27.789277 }, "geometry": { "type": "Point", "coordinates": [ 152.78, -27.789 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1055, "decimalLat": -27.847703 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.848 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.754463, "decimalLat": -37.908777 }, "geometry": { "type": "Point", "coordinates": [ 147.754, -37.909 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.542391, "decimalLat": -27.673478 }, "geometry": { "type": "Point", "coordinates": [ 151.542, -27.673 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.042204, "decimalLat": -27.300235 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730281, "decimalLat": -34.891295 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.996261, "decimalLat": -37.689472 }, "geometry": { "type": "Point", "coordinates": [ 143.996, -37.689 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399626, "decimalLat": -28.260798 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.825003, "decimalLat": -37.23722 }, "geometry": { "type": "Point", "coordinates": [ 144.825, -37.237 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.818629, "decimalLat": -32.305351 }, "geometry": { "type": "Point", "coordinates": [ 151.819, -32.305 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.611253, "decimalLat": -27.331772 }, "geometry": { "type": "Point", "coordinates": [ 152.611, -27.332 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091455, "decimalLat": -27.527183 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.134125, "decimalLat": -27.565205 }, "geometry": { "type": "Point", "coordinates": [ 153.134, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.270821, "decimalLat": -27.172658 }, "geometry": { "type": "Point", "coordinates": [ 151.271, -27.173 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104323, "decimalLat": -27.530565 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.876915, "decimalLat": -37.595519 }, "geometry": { "type": "Point", "coordinates": [ 143.877, -37.596 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.014797, "decimalLat": -34.066781 }, "geometry": { "type": "Point", "coordinates": [ 151.015, -34.067 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.772632, "decimalLat": -26.199667 }, "geometry": { "type": "Point", "coordinates": [ 151.773, -26.2 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.935028, "decimalLat": -27.32557 }, "geometry": { "type": "Point", "coordinates": [ 151.935, -27.326 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.031539, "decimalLat": -37.747322 }, "geometry": { "type": "Point", "coordinates": [ 142.032, -37.747 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109668, "decimalLat": -27.526492 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.756486, "decimalLat": -33.216545 }, "geometry": { "type": "Point", "coordinates": [ 150.756, -33.217 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.522174, "decimalLat": -27.714466 }, "geometry": { "type": "Point", "coordinates": [ 151.522, -27.714 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.760469, "decimalLat": -35.014033 }, "geometry": { "type": "Point", "coordinates": [ 138.76, -35.014 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.441313, "decimalLat": -37.953347 }, "geometry": { "type": "Point", "coordinates": [ 144.441, -37.953 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.311682, "decimalLat": -27.859777 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -27.86 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.002992, "decimalLat": -27.413733 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092002, "decimalLat": -27.527069 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.619442, "decimalLat": -25.629824 }, "geometry": { "type": "Point", "coordinates": [ 151.619, -25.63 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.70752, "decimalLat": -27.64865 }, "geometry": { "type": "Point", "coordinates": [ 151.708, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.371808, "decimalLat": -38.732129 }, "geometry": { "type": "Point", "coordinates": [ 143.372, -38.732 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092864, "decimalLat": -27.528084 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732029, "decimalLat": -34.889168 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110285, "decimalLat": -27.526955 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090895, "decimalLat": -27.527528 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082836, "decimalLat": -27.507529 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.078995, "decimalLat": -26.97513 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -26.975 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82217, "decimalLat": -34.101868 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000816, "decimalLat": -27.284482 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.727032, "decimalLat": -34.887912 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.680285, "decimalLat": -35.045077 }, "geometry": { "type": "Point", "coordinates": [ 138.68, -35.045 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868226, "decimalLat": -19.129916 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.13 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999354, "decimalLat": -27.283799 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.053237, "decimalLat": -26.332429 }, "geometry": { "type": "Point", "coordinates": [ 152.053, -26.332 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.549088, "decimalLat": -35.06803 }, "geometry": { "type": "Point", "coordinates": [ 138.549, -35.068 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.467054, "decimalLat": -36.900722 }, "geometry": { "type": "Point", "coordinates": [ 145.467, -36.901 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.649369, "decimalLat": -37.025536 }, "geometry": { "type": "Point", "coordinates": [ 145.649, -37.026 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.714183, "decimalLat": -34.963825 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.964 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.394801, "decimalLat": -38.140404 }, "geometry": { "type": "Point", "coordinates": [ 141.395, -38.14 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.937897, "decimalLat": -27.163622 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -27.164 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110699, "decimalLat": -27.528315 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.398238, "decimalLat": -28.261188 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.075547, "decimalLat": -37.952463 }, "geometry": { "type": "Point", "coordinates": [ 146.076, -37.952 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.033118, "decimalLat": -27.539771 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.727418, "decimalLat": -38.627997 }, "geometry": { "type": "Point", "coordinates": [ 145.727, -38.628 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.05002, "decimalLat": -27.267083 }, "geometry": { "type": "Point", "coordinates": [ 152.05, -27.267 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.86683, "decimalLat": -26.477884 }, "geometry": { "type": "Point", "coordinates": [ 151.867, -26.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.616081, "decimalLat": -27.146062 }, "geometry": { "type": "Point", "coordinates": [ 152.616, -27.146 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69037, "decimalLat": -34.925045 }, "geometry": { "type": "Point", "coordinates": [ 138.69, -34.925 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.678021, "decimalLat": -27.641111 }, "geometry": { "type": "Point", "coordinates": [ 151.678, -27.641 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.744913, "decimalLat": -26.146953 }, "geometry": { "type": "Point", "coordinates": [ 151.745, -26.147 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.815231, "decimalLat": -26.166516 }, "geometry": { "type": "Point", "coordinates": [ 151.815, -26.167 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.938005, "decimalLat": -27.370469 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -27.37 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.677444, "decimalLat": -27.986515 }, "geometry": { "type": "Point", "coordinates": [ 152.677, -27.987 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991135, "decimalLat": -27.824294 }, "geometry": { "type": "Point", "coordinates": [ 152.991, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072769, "decimalLat": -27.226381 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.226 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.428025, "decimalLat": -35.842097 }, "geometry": { "type": "Point", "coordinates": [ 137.428, -35.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.681007, "decimalLat": -34.918435 }, "geometry": { "type": "Point", "coordinates": [ 138.681, -34.918 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.997156, "decimalLat": -27.287717 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -27.288 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.615121, "decimalLat": -27.825204 }, "geometry": { "type": "Point", "coordinates": [ 152.615, -27.825 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105036, "decimalLat": -27.529401 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070175, "decimalLat": -27.225283 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.225 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.955845, "decimalLat": -27.427871 }, "geometry": { "type": "Point", "coordinates": [ 151.956, -27.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.203719, "decimalLat": -38.487919 }, "geometry": { "type": "Point", "coordinates": [ 146.204, -38.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090608, "decimalLat": -27.526148 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731213, "decimalLat": -34.88958 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111377, "decimalLat": -27.528915 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.730786, "decimalLat": -37.922672 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076867, "decimalLat": -27.544928 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090671, "decimalLat": -27.526316 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.148734, "decimalLat": -27.528988 }, "geometry": { "type": "Point", "coordinates": [ 153.149, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07014, "decimalLat": -27.510543 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655559, "decimalLat": -34.872197 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -34.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656764, "decimalLat": -35.018456 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -35.018 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.66838, "decimalLat": -34.948058 }, "geometry": { "type": "Point", "coordinates": [ 138.668, -34.948 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090864, "decimalLat": -27.526752 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.958991, "decimalLat": -38.421309 }, "geometry": { "type": "Point", "coordinates": [ 144.959, -38.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.211682, "decimalLat": -27.949053 }, "geometry": { "type": "Point", "coordinates": [ 153.212, -27.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.411771, "decimalLat": -27.48374 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -27.484 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388285, "decimalLat": -38.357558 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.358 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37362, "decimalLat": -27.900849 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.901 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074324, "decimalLat": -27.545589 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.039313, "decimalLat": -33.197666 }, "geometry": { "type": "Point", "coordinates": [ 151.039, -33.198 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.276121, "decimalLat": -38.094593 }, "geometry": { "type": "Point", "coordinates": [ 144.276, -38.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.730754, "decimalLat": -27.68477 }, "geometry": { "type": "Point", "coordinates": [ 152.731, -27.685 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.397518, "decimalLat": -28.26158 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.403251, "decimalLat": -27.458357 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -27.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073405, "decimalLat": -27.545551 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.590897, "decimalLat": -27.79983 }, "geometry": { "type": "Point", "coordinates": [ 151.591, -27.8 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440062, "decimalLat": -27.40148 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09097, "decimalLat": -27.527467 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.551912, "decimalLat": -37.092042 }, "geometry": { "type": "Point", "coordinates": [ 145.552, -37.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.115476, "decimalLat": -27.529492 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1833, "decimalLat": -27.53118 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.700072, "decimalLat": -35.069047 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.069 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377568, "decimalLat": -28.25416 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090741, "decimalLat": -27.525859 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.94853, "decimalLat": -27.341087 }, "geometry": { "type": "Point", "coordinates": [ 152.949, -27.341 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.513423, "decimalLat": -38.800582 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.801 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992339, "decimalLat": -27.823711 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.377074, "decimalLat": -27.918783 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046337, "decimalLat": -27.257221 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.369007, "decimalLat": -27.832985 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.194465, "decimalLat": -37.855206 }, "geometry": { "type": "Point", "coordinates": [ 144.194, -37.855 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072581, "decimalLat": -27.545878 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.523898, "decimalLat": -28.195815 }, "geometry": { "type": "Point", "coordinates": [ 152.524, -28.196 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.6136, "decimalLat": -27.241482 }, "geometry": { "type": "Point", "coordinates": [ 152.614, -27.241 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057965, "decimalLat": -27.550552 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.503635, "decimalLat": -27.457602 }, "geometry": { "type": "Point", "coordinates": [ 152.504, -27.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.073013, "decimalLat": -37.628418 }, "geometry": { "type": "Point", "coordinates": [ 144.073, -37.628 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093091, "decimalLat": -27.524883 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.486746, "decimalLat": -27.448836 }, "geometry": { "type": "Point", "coordinates": [ 152.487, -27.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.611393, "decimalLat": -27.332008 }, "geometry": { "type": "Point", "coordinates": [ 152.611, -27.332 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868317, "decimalLat": -19.127711 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.128 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.168167, "decimalLat": -38.172413 }, "geometry": { "type": "Point", "coordinates": [ 145.168, -38.172 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394335, "decimalLat": -28.275605 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732256, "decimalLat": -34.909964 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377446, "decimalLat": -28.254047 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.414049, "decimalLat": -37.957933 }, "geometry": { "type": "Point", "coordinates": [ 144.414, -37.958 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.745547, "decimalLat": -27.86769 }, "geometry": { "type": "Point", "coordinates": [ 152.746, -27.868 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092304, "decimalLat": -27.527333 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.610842, "decimalLat": -38.775271 }, "geometry": { "type": "Point", "coordinates": [ 143.611, -38.775 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.47709, "decimalLat": -38.801805 }, "geometry": { "type": "Point", "coordinates": [ 143.477, -38.802 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.316482, "decimalLat": -38.363769 }, "geometry": { "type": "Point", "coordinates": [ 145.316, -38.364 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093116, "decimalLat": -27.528052 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103292, "decimalLat": -27.530114 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.631561, "decimalLat": -34.991294 }, "geometry": { "type": "Point", "coordinates": [ 138.632, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40062, "decimalLat": -28.2578 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111718, "decimalLat": -27.529058 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377444, "decimalLat": -28.254084 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073596, "decimalLat": -27.546092 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059178, "decimalLat": -27.548873 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054982, "decimalLat": -27.53592 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868271, "decimalLat": -19.128829 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388922, "decimalLat": -38.35737 }, "geometry": { "type": "Point", "coordinates": [ 146.389, -38.357 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076194, "decimalLat": -27.540619 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058198, "decimalLat": -27.551773 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749835, "decimalLat": -26.155059 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093357, "decimalLat": -27.525163 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.959219, "decimalLat": -38.42136 }, "geometry": { "type": "Point", "coordinates": [ 144.959, -38.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092783, "decimalLat": -27.52801 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058672, "decimalLat": -27.546342 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.10053, "decimalLat": -37.877778 }, "geometry": { "type": "Point", "coordinates": [ 142.101, -37.878 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.191922, "decimalLat": -27.700763 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.663515, "decimalLat": -34.866176 }, "geometry": { "type": "Point", "coordinates": [ 138.664, -34.866 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.708058, "decimalLat": -34.903932 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092007, "decimalLat": -27.526919 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057187, "decimalLat": -27.551571 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716562, "decimalLat": -34.892685 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.408161, "decimalLat": -33.753478 }, "geometry": { "type": "Point", "coordinates": [ 149.408, -33.753 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.646133, "decimalLat": -35.005194 }, "geometry": { "type": "Point", "coordinates": [ 138.646, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.553987, "decimalLat": -37.0132 }, "geometry": { "type": "Point", "coordinates": [ 145.554, -37.013 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109579, "decimalLat": -27.528043 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.748892, "decimalLat": -26.154357 }, "geometry": { "type": "Point", "coordinates": [ 151.749, -26.154 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074126, "decimalLat": -27.545928 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.562097, "decimalLat": -28.026134 }, "geometry": { "type": "Point", "coordinates": [ 152.562, -28.026 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.900786, "decimalLat": -27.649679 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -27.65 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103881, "decimalLat": -27.528467 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058872, "decimalLat": -27.5392 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.698595, "decimalLat": -34.935875 }, "geometry": { "type": "Point", "coordinates": [ 138.699, -34.936 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063308, "decimalLat": -32.706028 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.700401, "decimalLat": -32.2349 }, "geometry": { "type": "Point", "coordinates": [ 151.7, -32.235 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713367, "decimalLat": -34.871594 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.872 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.92369, "decimalLat": -27.287154 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -27.287 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22121, "decimalLat": -27.534973 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037252, "decimalLat": -27.546535 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.088467, "decimalLat": -27.510319 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092864, "decimalLat": -27.526817 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093511, "decimalLat": -27.524318 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.046244, "decimalLat": -27.544362 }, "geometry": { "type": "Point", "coordinates": [ 153.046, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081956, "decimalLat": -27.508105 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09266, "decimalLat": -27.524964 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.114958, "decimalLat": -27.55383 }, "geometry": { "type": "Point", "coordinates": [ 152.115, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.111438, "decimalLat": -27.566372 }, "geometry": { "type": "Point", "coordinates": [ 152.111, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734047, "decimalLat": -34.889588 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377208, "decimalLat": -28.25405 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107652, "decimalLat": -27.52718 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074445, "decimalLat": -27.358333 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090728, "decimalLat": -27.526316 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090712, "decimalLat": -27.526299 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083274, "decimalLat": -27.511997 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092233, "decimalLat": -27.527783 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400623, "decimalLat": -28.257805 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073735, "decimalLat": -27.545992 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.117782, "decimalLat": -37.580314 }, "geometry": { "type": "Point", "coordinates": [ 144.118, -37.58 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.924375, "decimalLat": -37.652902 }, "geometry": { "type": "Point", "coordinates": [ 143.924, -37.653 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090346, "decimalLat": -27.526499 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111164, "decimalLat": -27.527262 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.513485, "decimalLat": -38.835277 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.835 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.03476, "decimalLat": -27.550167 }, "geometry": { "type": "Point", "coordinates": [ 153.035, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092408, "decimalLat": -27.528327 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090751, "decimalLat": -27.526934 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402924, "decimalLat": -28.260549 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090767, "decimalLat": -27.525799 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164658, "decimalLat": -38.671045 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093023, "decimalLat": -27.524055 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189955, "decimalLat": -27.736642 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10517, "decimalLat": -27.531538 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074532, "decimalLat": -27.5482 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.398034, "decimalLat": -28.261273 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.85345, "decimalLat": -28.09554 }, "geometry": { "type": "Point", "coordinates": [ 152.853, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.500686, "decimalLat": -38.765948 }, "geometry": { "type": "Point", "coordinates": [ 143.501, -38.766 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058393, "decimalLat": -27.54713 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.47329, "decimalLat": -27.532608 }, "geometry": { "type": "Point", "coordinates": [ 152.473, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722389, "decimalLat": -34.892724 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.628249, "decimalLat": -35.03267 }, "geometry": { "type": "Point", "coordinates": [ 138.628, -35.033 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.21756, "decimalLat": -28.301322 }, "geometry": { "type": "Point", "coordinates": [ 151.218, -28.301 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107671, "decimalLat": -27.527052 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.57719, "decimalLat": -28.9191 }, "geometry": { "type": "Point", "coordinates": [ 151.577, -28.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.462583, "decimalLat": -35.814758 }, "geometry": { "type": "Point", "coordinates": [ 137.463, -35.815 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729813, "decimalLat": -37.922433 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.654799, "decimalLat": -26.401998 }, "geometry": { "type": "Point", "coordinates": [ 152.655, -26.402 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.733733, "decimalLat": -27.776945 }, "geometry": { "type": "Point", "coordinates": [ 152.734, -27.777 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001931, "decimalLat": -27.974706 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -27.975 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.142071, "decimalLat": -27.822386 }, "geometry": { "type": "Point", "coordinates": [ 153.142, -27.822 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.576865, "decimalLat": -35.154184 }, "geometry": { "type": "Point", "coordinates": [ 138.577, -35.154 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090936, "decimalLat": -27.526929 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376859, "decimalLat": -28.253792 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108968, "decimalLat": -27.527118 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092315, "decimalLat": -27.527769 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.514695, "decimalLat": -38.836145 }, "geometry": { "type": "Point", "coordinates": [ 143.515, -38.836 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.247078, "decimalLat": -27.49628 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103523, "decimalLat": -27.529147 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.772632, "decimalLat": -26.199667 }, "geometry": { "type": "Point", "coordinates": [ 151.773, -26.2 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290977, "decimalLat": -37.874563 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.03772, "decimalLat": -27.546985 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.591489, "decimalLat": -27.698988 }, "geometry": { "type": "Point", "coordinates": [ 151.591, -27.699 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716227, "decimalLat": -34.892146 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070146, "decimalLat": -27.510545 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074653, "decimalLat": -27.358635 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.742924, "decimalLat": -34.829634 }, "geometry": { "type": "Point", "coordinates": [ 138.743, -34.83 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103099, "decimalLat": -27.528982 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.362961, "decimalLat": -38.318604 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.647348, "decimalLat": -33.737651 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -33.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.052506, "decimalLat": -27.259595 }, "geometry": { "type": "Point", "coordinates": [ 152.053, -27.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05779, "decimalLat": -27.551743 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092104, "decimalLat": -27.525368 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.966585, "decimalLat": -27.274569 }, "geometry": { "type": "Point", "coordinates": [ 152.967, -27.275 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.122643, "decimalLat": -27.545916 }, "geometry": { "type": "Point", "coordinates": [ 153.123, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072228, "decimalLat": -27.545083 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10925, "decimalLat": -27.528936 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.077805, "decimalLat": -27.507662 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.799556, "decimalLat": -38.407716 }, "geometry": { "type": "Point", "coordinates": [ 142.8, -38.408 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.484803, "decimalLat": -35.715295 }, "geometry": { "type": "Point", "coordinates": [ 137.485, -35.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057296, "decimalLat": -27.550959 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095856, "decimalLat": -33.13468 }, "geometry": { "type": "Point", "coordinates": [ 151.096, -33.135 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.590242, "decimalLat": -34.756928 }, "geometry": { "type": "Point", "coordinates": [ 146.59, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.757112, "decimalLat": -35.065483 }, "geometry": { "type": "Point", "coordinates": [ 138.757, -35.065 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103271, "decimalLat": -27.530052 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82225, "decimalLat": -34.101722 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.514145, "decimalLat": -38.845355 }, "geometry": { "type": "Point", "coordinates": [ 143.514, -38.845 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101752, "decimalLat": -27.735137 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705411, "decimalLat": -34.98774 }, "geometry": { "type": "Point", "coordinates": [ 138.705, -34.988 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.77287, "decimalLat": -27.779933 }, "geometry": { "type": "Point", "coordinates": [ 152.773, -27.78 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702535, "decimalLat": -34.930395 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.617538, "decimalLat": -27.891403 }, "geometry": { "type": "Point", "coordinates": [ 152.618, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242375, "decimalLat": -27.530366 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163789, "decimalLat": -38.671347 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.747656, "decimalLat": -38.093278 }, "geometry": { "type": "Point", "coordinates": [ 141.748, -38.093 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400792, "decimalLat": -28.257904 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110138, "decimalLat": -27.528947 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.593684, "decimalLat": -35.014782 }, "geometry": { "type": "Point", "coordinates": [ 138.594, -35.015 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000822, "decimalLat": -27.284463 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09049, "decimalLat": -27.526019 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720635, "decimalLat": -34.873205 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.873 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092851, "decimalLat": -27.527008 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.585372, "decimalLat": -34.773903 }, "geometry": { "type": "Point", "coordinates": [ 146.585, -34.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058995, "decimalLat": -27.547665 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105109, "decimalLat": -27.530405 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092217, "decimalLat": -27.527246 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092301, "decimalLat": -27.527308 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.316369, "decimalLat": -38.364345 }, "geometry": { "type": "Point", "coordinates": [ 145.316, -38.364 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372848, "decimalLat": -27.908003 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.908 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.864895, "decimalLat": -28.219939 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -28.22 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399944, "decimalLat": -28.260328 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.094995, "decimalLat": -27.783272 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -27.783 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993058, "decimalLat": -27.82372 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.726458, "decimalLat": -36.523362 }, "geometry": { "type": "Point", "coordinates": [ 145.726, -36.523 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.363052, "decimalLat": -27.901344 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.901 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.485358, "decimalLat": -37.711791 }, "geometry": { "type": "Point", "coordinates": [ 144.485, -37.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107628, "decimalLat": -27.527238 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23438, "decimalLat": -27.500227 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.696197, "decimalLat": -34.898695 }, "geometry": { "type": "Point", "coordinates": [ 138.696, -34.899 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.418962, "decimalLat": -37.925669 }, "geometry": { "type": "Point", "coordinates": [ 147.419, -37.926 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10814, "decimalLat": -27.529113 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093498, "decimalLat": -27.527763 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.792747, "decimalLat": -26.137612 }, "geometry": { "type": "Point", "coordinates": [ 151.793, -26.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091232, "decimalLat": -27.526874 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.726682, "decimalLat": -35.010708 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.617845, "decimalLat": -31.661553 }, "geometry": { "type": "Point", "coordinates": [ 151.618, -31.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.429153, "decimalLat": -38.312887 }, "geometry": { "type": "Point", "coordinates": [ 146.429, -38.313 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413738, "decimalLat": -31.931906 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164033, "decimalLat": -38.67165 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189646, "decimalLat": -27.701124 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.55184, "decimalLat": -27.794028 }, "geometry": { "type": "Point", "coordinates": [ 151.552, -27.794 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.860105, "decimalLat": -27.546453 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.844637, "decimalLat": -27.33957 }, "geometry": { "type": "Point", "coordinates": [ 152.845, -27.34 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.844139, "decimalLat": -28.097059 }, "geometry": { "type": "Point", "coordinates": [ 152.844, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730941, "decimalLat": -34.890908 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.75123, "decimalLat": -26.156689 }, "geometry": { "type": "Point", "coordinates": [ 151.751, -26.157 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.179501, "decimalLat": -37.914559 }, "geometry": { "type": "Point", "coordinates": [ 144.18, -37.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091371, "decimalLat": -27.52735 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112693, "decimalLat": -27.528815 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092117, "decimalLat": -27.525038 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.514029, "decimalLat": -38.83542 }, "geometry": { "type": "Point", "coordinates": [ 143.514, -38.835 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095292, "decimalLat": -33.076764 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.64134, "decimalLat": -35.000356 }, "geometry": { "type": "Point", "coordinates": [ 138.641, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913492, "decimalLat": -30.490455 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -30.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069544, "decimalLat": -27.54185 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090924, "decimalLat": -27.526633 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.675172, "decimalLat": -34.990437 }, "geometry": { "type": "Point", "coordinates": [ 138.675, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091531, "decimalLat": -27.527134 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.372707, "decimalLat": -36.932678 }, "geometry": { "type": "Point", "coordinates": [ 145.373, -36.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111044, "decimalLat": -27.529953 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720971, "decimalLat": -34.89259 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091571, "decimalLat": -27.527256 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083786, "decimalLat": -27.921933 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10631, "decimalLat": -27.529436 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058387, "decimalLat": -27.551437 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.085978, "decimalLat": -33.139488 }, "geometry": { "type": "Point", "coordinates": [ 151.086, -33.139 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092735, "decimalLat": -27.52843 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.980208, "decimalLat": -38.549042 }, "geometry": { "type": "Point", "coordinates": [ 143.98, -38.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378175, "decimalLat": -28.255258 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437878, "decimalLat": -27.400142 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092409, "decimalLat": -27.526946 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092312, "decimalLat": -27.528216 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090502, "decimalLat": -27.526904 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.473237, "decimalLat": -38.336647 }, "geometry": { "type": "Point", "coordinates": [ 141.473, -38.337 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.522174, "decimalLat": -27.714466 }, "geometry": { "type": "Point", "coordinates": [ 151.522, -27.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111299, "decimalLat": -27.527137 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.966563, "decimalLat": -38.566839 }, "geometry": { "type": "Point", "coordinates": [ 143.967, -38.567 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.895685, "decimalLat": -27.642776 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -27.643 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000924, "decimalLat": -27.284325 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060564, "decimalLat": -27.550555 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.278288, "decimalLat": -38.94207 }, "geometry": { "type": "Point", "coordinates": [ 146.278, -38.942 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.631379, "decimalLat": -38.341726 }, "geometry": { "type": "Point", "coordinates": [ 142.631, -38.342 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059838, "decimalLat": -27.547517 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072553, "decimalLat": -32.711542 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895261, "decimalLat": -27.422176 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.422 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731304, "decimalLat": -34.890298 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.175042, "decimalLat": -27.552515 }, "geometry": { "type": "Point", "coordinates": [ 153.175, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091701, "decimalLat": -27.527158 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163728, "decimalLat": -38.671347 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.681215, "decimalLat": -34.953713 }, "geometry": { "type": "Point", "coordinates": [ 138.681, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.681421, "decimalLat": -28.000506 }, "geometry": { "type": "Point", "coordinates": [ 152.681, -28.001 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.266428, "decimalLat": -37.39147 }, "geometry": { "type": "Point", "coordinates": [ 144.266, -37.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.904642, "decimalLat": -37.578878 }, "geometry": { "type": "Point", "coordinates": [ 143.905, -37.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.855711, "decimalLat": -19.128256 }, "geometry": { "type": "Point", "coordinates": [ 146.856, -19.128 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060044, "decimalLat": -27.549675 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059995, "decimalLat": -27.550233 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.920463, "decimalLat": -26.143579 }, "geometry": { "type": "Point", "coordinates": [ 151.92, -26.144 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.715071, "decimalLat": -31.537735 }, "geometry": { "type": "Point", "coordinates": [ 151.715, -31.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092516, "decimalLat": -27.528446 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.292144, "decimalLat": -38.950169 }, "geometry": { "type": "Point", "coordinates": [ 146.292, -38.95 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082347, "decimalLat": -27.507689 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.935348, "decimalLat": -27.275239 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -27.275 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074556, "decimalLat": -27.540347 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400178, "decimalLat": -28.260559 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.580703, "decimalLat": -35.039188 }, "geometry": { "type": "Point", "coordinates": [ 138.581, -35.039 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112549, "decimalLat": -27.529637 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057818, "decimalLat": -27.551043 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109187, "decimalLat": -27.52709 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105054, "decimalLat": -27.529801 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.932817, "decimalLat": -27.330695 }, "geometry": { "type": "Point", "coordinates": [ 151.933, -27.331 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.614487, "decimalLat": -27.338072 }, "geometry": { "type": "Point", "coordinates": [ 152.614, -27.338 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09072, "decimalLat": -27.527122 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.6308, "decimalLat": -35.882933 }, "geometry": { "type": "Point", "coordinates": [ 145.631, -35.883 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.267112, "decimalLat": -32.878963 }, "geometry": { "type": "Point", "coordinates": [ 150.267, -32.879 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11205, "decimalLat": -27.529228 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729867, "decimalLat": -37.925084 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.750278, "decimalLat": -26.155573 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.156 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086025, "decimalLat": -27.508835 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091678, "decimalLat": -27.527194 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092437, "decimalLat": -27.527779 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.772632, "decimalLat": -26.199667 }, "geometry": { "type": "Point", "coordinates": [ 151.773, -26.2 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057991, "decimalLat": -27.550824 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.582864, "decimalLat": -35.16681 }, "geometry": { "type": "Point", "coordinates": [ 138.583, -35.167 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.946845, "decimalLat": -34.76103 }, "geometry": { "type": "Point", "coordinates": [ 138.947, -34.761 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104362, "decimalLat": -27.529997 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108853, "decimalLat": -27.529248 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999223, "decimalLat": -27.283767 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.552774, "decimalLat": -27.6958 }, "geometry": { "type": "Point", "coordinates": [ 151.553, -27.696 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655383, "decimalLat": -33.550536 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -33.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403175, "decimalLat": -28.260624 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.643617, "decimalLat": -34.99972 }, "geometry": { "type": "Point", "coordinates": [ 138.644, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093095, "decimalLat": -27.5275 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07375, "decimalLat": -27.5457 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.38889, "decimalLat": -38.36154 }, "geometry": { "type": "Point", "coordinates": [ 146.389, -38.362 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.974372, "decimalLat": -27.297681 }, "geometry": { "type": "Point", "coordinates": [ 152.974, -27.298 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105146, "decimalLat": -27.531129 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719652, "decimalLat": -34.89155 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054084, "decimalLat": -27.549861 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.732117, "decimalLat": -37.92307 }, "geometry": { "type": "Point", "coordinates": [ 147.732, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.755025, "decimalLat": -38.634219 }, "geometry": { "type": "Point", "coordinates": [ 145.755, -38.634 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268291, "decimalLat": -38.131178 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372674, "decimalLat": -27.899586 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.0928, "decimalLat": -27.472059 }, "geometry": { "type": "Point", "coordinates": [ 152.093, -27.472 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.941268, "decimalLat": -27.162318 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -27.162 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111953, "decimalLat": -27.527752 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.57968, "decimalLat": -27.789688 }, "geometry": { "type": "Point", "coordinates": [ 151.58, -27.79 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.352815, "decimalLat": -27.934858 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -27.935 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.986163, "decimalLat": -27.636895 }, "geometry": { "type": "Point", "coordinates": [ 151.986, -27.637 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.900805, "decimalLat": -37.639952 }, "geometry": { "type": "Point", "coordinates": [ 143.901, -37.64 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057412, "decimalLat": -27.551174 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163772, "decimalLat": -38.671337 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.063781, "decimalLat": -27.261908 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -27.262 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702541, "decimalLat": -34.903258 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4449, "decimalLat": -28.105889 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519702, "decimalLat": -30.520139 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719712, "decimalLat": -34.892264 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071371, "decimalLat": -27.544013 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73337, "decimalLat": -34.887484 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.640927, "decimalLat": -34.886176 }, "geometry": { "type": "Point", "coordinates": [ 138.641, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003236, "decimalLat": -27.414478 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103375, "decimalLat": -27.529227 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.267212, "decimalLat": -38.129233 }, "geometry": { "type": "Point", "coordinates": [ 145.267, -38.129 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.522812, "decimalLat": -27.720458 }, "geometry": { "type": "Point", "coordinates": [ 151.523, -27.72 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.99356, "decimalLat": -27.82378 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440869, "decimalLat": -27.401459 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.260677, "decimalLat": -38.482265 }, "geometry": { "type": "Point", "coordinates": [ 145.261, -38.482 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.54753, "decimalLat": -28.603945 }, "geometry": { "type": "Point", "coordinates": [ 153.548, -28.604 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905498, "decimalLat": -31.436801 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860869, "decimalLat": -38.668064 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.121274, "decimalLat": -37.904259 }, "geometry": { "type": "Point", "coordinates": [ 144.121, -37.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19551, "decimalLat": -27.655304 }, "geometry": { "type": "Point", "coordinates": [ 153.196, -27.655 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093179, "decimalLat": -27.527758 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.921662, "decimalLat": -38.668745 }, "geometry": { "type": "Point", "coordinates": [ 145.922, -38.669 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.063575, "decimalLat": -27.260565 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -27.261 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.362951, "decimalLat": -38.318947 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.673242, "decimalLat": -35.015742 }, "geometry": { "type": "Point", "coordinates": [ 138.673, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.094543, "decimalLat": -27.532854 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.370946, "decimalLat": -36.919921 }, "geometry": { "type": "Point", "coordinates": [ 145.371, -36.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37673, "decimalLat": -28.25365 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104416, "decimalLat": -27.528811 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.377553, "decimalLat": -27.917903 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.364058, "decimalLat": -38.313763 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.314 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085175, "decimalLat": -27.504972 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091995, "decimalLat": -27.527229 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.474418, "decimalLat": -21.410485 }, "geometry": { "type": "Point", "coordinates": [ 148.474, -21.41 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081473, "decimalLat": -27.511456 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10782, "decimalLat": -27.526894 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716368, "decimalLat": -34.89371 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.894 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.537311, "decimalLat": -38.806043 }, "geometry": { "type": "Point", "coordinates": [ 143.537, -38.806 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721989, "decimalLat": -34.889941 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.617619, "decimalLat": -38.777849 }, "geometry": { "type": "Point", "coordinates": [ 143.618, -38.778 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111809, "decimalLat": -27.525193 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400709, "decimalLat": -28.257707 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.163239, "decimalLat": -27.590733 }, "geometry": { "type": "Point", "coordinates": [ 153.163, -27.591 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.54393, "decimalLat": -27.671145 }, "geometry": { "type": "Point", "coordinates": [ 151.544, -27.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.044174, "decimalLat": -27.257508 }, "geometry": { "type": "Point", "coordinates": [ 152.044, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.668368, "decimalLat": -34.959382 }, "geometry": { "type": "Point", "coordinates": [ 138.668, -34.959 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073482, "decimalLat": -27.542618 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395218, "decimalLat": -28.274063 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.274 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363328, "decimalLat": -38.31842 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095061, "decimalLat": -33.076397 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110454, "decimalLat": -27.527825 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.605362, "decimalLat": -35.043236 }, "geometry": { "type": "Point", "coordinates": [ 138.605, -35.043 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.417547, "decimalLat": -38.268496 }, "geometry": { "type": "Point", "coordinates": [ 141.418, -38.268 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.094925, "decimalLat": -33.076267 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.136023, "decimalLat": -27.488225 }, "geometry": { "type": "Point", "coordinates": [ 153.136, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.132981, "decimalLat": -27.563933 }, "geometry": { "type": "Point", "coordinates": [ 153.133, -27.564 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003006, "decimalLat": -27.413855 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.695665, "decimalLat": -34.859318 }, "geometry": { "type": "Point", "coordinates": [ 138.696, -34.859 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.588458, "decimalLat": -38.780827 }, "geometry": { "type": "Point", "coordinates": [ 143.588, -38.781 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092348, "decimalLat": -27.527917 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.988175, "decimalLat": -27.777922 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -27.778 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705406, "decimalLat": -34.903246 }, "geometry": { "type": "Point", "coordinates": [ 138.705, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.53482, "decimalLat": -34.743962 }, "geometry": { "type": "Point", "coordinates": [ 146.535, -34.744 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375139, "decimalLat": -28.252225 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091459, "decimalLat": -27.527196 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.639629, "decimalLat": -35.648408 }, "geometry": { "type": "Point", "coordinates": [ 137.64, -35.648 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.72936, "decimalLat": -37.925786 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.926 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.96115, "decimalLat": -28.076992 }, "geometry": { "type": "Point", "coordinates": [ 152.961, -28.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102692, "decimalLat": -27.518683 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 145.67837, "decimalLat": -35.919655 }, "geometry": { "type": "Point", "coordinates": [ 145.678, -35.92 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.174597, "decimalLat": -27.552458 }, "geometry": { "type": "Point", "coordinates": [ 153.175, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074775, "decimalLat": -27.544245 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.739451, "decimalLat": -37.920979 }, "geometry": { "type": "Point", "coordinates": [ 147.739, -37.921 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.646347, "decimalLat": -35.010189 }, "geometry": { "type": "Point", "coordinates": [ 138.646, -35.01 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110017, "decimalLat": -27.527771 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.449312, "decimalLat": -37.090314 }, "geometry": { "type": "Point", "coordinates": [ 145.449, -37.09 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72323, "decimalLat": -34.862674 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078382, "decimalLat": -27.506488 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.61322, "decimalLat": -27.328827 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -27.329 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712813, "decimalLat": -34.911946 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.912 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729452, "decimalLat": -34.890038 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930516, "decimalLat": -31.471048 }, "geometry": { "type": "Point", "coordinates": [ 152.931, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07459, "decimalLat": -27.546665 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106414, "decimalLat": -27.508275 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35681, "decimalLat": -27.938951 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.679441, "decimalLat": -25.535663 }, "geometry": { "type": "Point", "coordinates": [ 152.679, -25.536 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070095, "decimalLat": -27.51054 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092395, "decimalLat": -27.527119 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731539, "decimalLat": -34.881129 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.881 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092273, "decimalLat": -27.525036 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.132692, "decimalLat": -38.830044 }, "geometry": { "type": "Point", "coordinates": [ 146.133, -38.83 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095154, "decimalLat": -33.076308 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.736167, "decimalLat": -34.830996 }, "geometry": { "type": "Point", "coordinates": [ 138.736, -34.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.670424, "decimalLat": -35.015824 }, "geometry": { "type": "Point", "coordinates": [ 138.67, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.692738, "decimalLat": -34.955893 }, "geometry": { "type": "Point", "coordinates": [ 138.693, -34.956 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.16183, "decimalLat": -27.50045 }, "geometry": { "type": "Point", "coordinates": [ 152.162, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.180697, "decimalLat": -27.489129 }, "geometry": { "type": "Point", "coordinates": [ 153.181, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.049205, "decimalLat": -27.549723 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.756484, "decimalLat": -26.16223 }, "geometry": { "type": "Point", "coordinates": [ 151.756, -26.162 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.78885, "decimalLat": -27.400303 }, "geometry": { "type": "Point", "coordinates": [ 151.789, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.874189, "decimalLat": -37.61605 }, "geometry": { "type": "Point", "coordinates": [ 143.874, -37.616 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093042, "decimalLat": -27.526093 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403012, "decimalLat": -28.260479 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.727475, "decimalLat": -34.889832 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.257949, "decimalLat": -38.661935 }, "geometry": { "type": "Point", "coordinates": [ 146.258, -38.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.26902, "decimalLat": -38.131195 }, "geometry": { "type": "Point", "coordinates": [ 145.269, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090802, "decimalLat": -27.525834 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403969, "decimalLat": -31.9282 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09139, "decimalLat": -27.527352 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.00069, "decimalLat": -27.28416 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057848, "decimalLat": -27.551863 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.710106, "decimalLat": -34.905883 }, "geometry": { "type": "Point", "coordinates": [ 138.71, -34.906 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.300262, "decimalLat": -38.383823 }, "geometry": { "type": "Point", "coordinates": [ 145.3, -38.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.901829, "decimalLat": -37.641163 }, "geometry": { "type": "Point", "coordinates": [ 143.902, -37.641 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713923, "decimalLat": -34.893133 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403393, "decimalLat": -28.260451 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377302, "decimalLat": -28.254186 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.803901, "decimalLat": -26.160044 }, "geometry": { "type": "Point", "coordinates": [ 151.804, -26.16 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.1635, "decimalLat": -38.671001 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31848, "decimalLat": -27.899017 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.628751, "decimalLat": -28.640675 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.641 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.133378, "decimalLat": -27.564147 }, "geometry": { "type": "Point", "coordinates": [ 153.133, -27.564 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.756258, "decimalLat": -36.877251 }, "geometry": { "type": "Point", "coordinates": [ 145.756, -36.877 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093562, "decimalLat": -27.524865 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090769, "decimalLat": -27.525812 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.864302, "decimalLat": -28.219264 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -28.219 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.565134, "decimalLat": -34.759392 }, "geometry": { "type": "Point", "coordinates": [ 146.565, -34.759 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.119095, "decimalLat": -28.228153 }, "geometry": { "type": "Point", "coordinates": [ 153.119, -28.228 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993643, "decimalLat": -27.823811 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092434, "decimalLat": -27.527631 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.367667, "decimalLat": -38.316219 }, "geometry": { "type": "Point", "coordinates": [ 142.368, -38.316 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090754, "decimalLat": -27.525834 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221419, "decimalLat": -27.535453 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.851717, "decimalLat": -34.708231 }, "geometry": { "type": "Point", "coordinates": [ 135.852, -34.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.613477, "decimalLat": -38.573654 }, "geometry": { "type": "Point", "coordinates": [ 143.613, -38.574 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.987883, "decimalLat": -27.59592 }, "geometry": { "type": "Point", "coordinates": [ 151.988, -27.596 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249519, "decimalLat": -27.495775 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40067, "decimalLat": -28.257744 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437745, "decimalLat": -27.402676 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.403 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.595292, "decimalLat": -34.77333 }, "geometry": { "type": "Point", "coordinates": [ 146.595, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075422, "decimalLat": -27.503537 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.521444, "decimalLat": -30.51972 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082533, "decimalLat": -27.5073 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.537003, "decimalLat": -34.917563 }, "geometry": { "type": "Point", "coordinates": [ 138.537, -34.918 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.80957, "decimalLat": -26.529778 }, "geometry": { "type": "Point", "coordinates": [ 151.81, -26.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.214942, "decimalLat": -28.165963 }, "geometry": { "type": "Point", "coordinates": [ 153.215, -28.166 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720785, "decimalLat": -34.891557 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090447, "decimalLat": -27.526797 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093081, "decimalLat": -27.528164 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090787, "decimalLat": -27.525816 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377537, "decimalLat": -28.253948 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730406, "decimalLat": -34.890774 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090853, "decimalLat": -27.525873 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.163253, "decimalLat": -27.590795 }, "geometry": { "type": "Point", "coordinates": [ 153.163, -27.591 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.899886, "decimalLat": -27.635611 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.636 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.880743, "decimalLat": -27.425895 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -27.426 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090408, "decimalLat": -27.526097 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103839, "decimalLat": -27.527652 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.804601, "decimalLat": -27.530968 }, "geometry": { "type": "Point", "coordinates": [ 152.805, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.067732, "decimalLat": -27.508757 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991915, "decimalLat": -27.823303 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.593946, "decimalLat": -37.330553 }, "geometry": { "type": "Point", "coordinates": [ 144.594, -37.331 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075355, "decimalLat": -27.504068 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.187057, "decimalLat": -28.196228 }, "geometry": { "type": "Point", "coordinates": [ 153.187, -28.196 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.99243, "decimalLat": -27.82335 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.445113, "decimalLat": -28.133044 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.165685, "decimalLat": -27.560744 }, "geometry": { "type": "Point", "coordinates": [ 153.166, -27.561 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.285861, "decimalLat": -37.923804 }, "geometry": { "type": "Point", "coordinates": [ 141.286, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057331, "decimalLat": -27.551581 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377645, "decimalLat": -28.254785 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112539, "decimalLat": -27.528073 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.154863, "decimalLat": -27.607067 }, "geometry": { "type": "Point", "coordinates": [ 153.155, -27.607 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09093, "decimalLat": -27.526861 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69873, "decimalLat": -34.934475 }, "geometry": { "type": "Point", "coordinates": [ 138.699, -34.934 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.546308, "decimalLat": -34.997089 }, "geometry": { "type": "Point", "coordinates": [ 138.546, -34.997 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.792319, "decimalLat": -26.145114 }, "geometry": { "type": "Point", "coordinates": [ 151.792, -26.145 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.722467, "decimalLat": -37.925111 }, "geometry": { "type": "Point", "coordinates": [ 147.722, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090754, "decimalLat": -27.527119 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376777, "decimalLat": -28.253774 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.676401, "decimalLat": -35.919566 }, "geometry": { "type": "Point", "coordinates": [ 145.676, -35.92 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091618, "decimalLat": -27.527231 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.725158, "decimalLat": -27.428458 }, "geometry": { "type": "Point", "coordinates": [ 151.725, -27.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.667581, "decimalLat": -35.005264 }, "geometry": { "type": "Point", "coordinates": [ 138.668, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080301, "decimalLat": -27.508499 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.907862, "decimalLat": -28.174362 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -28.174 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90606, "decimalLat": -31.440881 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.278099, "decimalLat": -38.381881 }, "geometry": { "type": "Point", "coordinates": [ 145.278, -38.382 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102041, "decimalLat": -27.734311 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.734 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822128, "decimalLat": -34.101272 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092333, "decimalLat": -27.52569 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.996858, "decimalLat": -37.688766 }, "geometry": { "type": "Point", "coordinates": [ 143.997, -37.689 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106636, "decimalLat": -27.508272 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090308, "decimalLat": -27.526233 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377504, "decimalLat": -28.254067 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.5244, "decimalLat": -27.712022 }, "geometry": { "type": "Point", "coordinates": [ 151.524, -27.712 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059692, "decimalLat": -27.551139 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.753365, "decimalLat": -26.159058 }, "geometry": { "type": "Point", "coordinates": [ 151.753, -26.159 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.883848, "decimalLat": -37.587467 }, "geometry": { "type": "Point", "coordinates": [ 143.884, -37.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08086, "decimalLat": -27.513142 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102066, "decimalLat": -27.527493 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000512, "decimalLat": -27.284966 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.371976, "decimalLat": -36.930572 }, "geometry": { "type": "Point", "coordinates": [ 145.372, -36.931 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.899999, "decimalLat": -27.261314 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.261 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.740022, "decimalLat": -27.641587 }, "geometry": { "type": "Point", "coordinates": [ 152.74, -27.642 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.988444, "decimalLat": -27.662864 }, "geometry": { "type": "Point", "coordinates": [ 151.988, -27.663 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091923, "decimalLat": -27.526995 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.591659, "decimalLat": -26.894947 }, "geometry": { "type": "Point", "coordinates": [ 152.592, -26.895 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.734195, "decimalLat": -26.160781 }, "geometry": { "type": "Point", "coordinates": [ 151.734, -26.161 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.689018, "decimalLat": -34.784294 }, "geometry": { "type": "Point", "coordinates": [ 138.689, -34.784 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.626542, "decimalLat": -35.109128 }, "geometry": { "type": "Point", "coordinates": [ 138.627, -35.109 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111695, "decimalLat": -27.527887 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074708, "decimalLat": -27.503087 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059963, "decimalLat": -27.550539 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.469968, "decimalLat": -37.935968 }, "geometry": { "type": "Point", "coordinates": [ 141.47, -37.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.57608, "decimalLat": -27.807812 }, "geometry": { "type": "Point", "coordinates": [ 151.576, -27.808 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715145, "decimalLat": -34.891861 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.492737, "decimalLat": -25.185634 }, "geometry": { "type": "Point", "coordinates": [ 151.493, -25.186 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070127, "decimalLat": -27.51054 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073092, "decimalLat": -27.515042 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.719356, "decimalLat": -27.429836 }, "geometry": { "type": "Point", "coordinates": [ 151.719, -27.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093131, "decimalLat": -27.527896 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.312622, "decimalLat": -38.384392 }, "geometry": { "type": "Point", "coordinates": [ 145.313, -38.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.802278, "decimalLat": -34.78925 }, "geometry": { "type": "Point", "coordinates": [ 135.802, -34.789 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377398, "decimalLat": -28.254241 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.00998, "decimalLat": -38.476921 }, "geometry": { "type": "Point", "coordinates": [ 145.01, -38.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.631729, "decimalLat": -27.4083 }, "geometry": { "type": "Point", "coordinates": [ 152.632, -27.408 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.371829, "decimalLat": -27.91064 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.911 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.745978, "decimalLat": -28.234937 }, "geometry": { "type": "Point", "coordinates": [ 152.746, -28.235 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091905, "decimalLat": -27.524443 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.238083, "decimalLat": -38.25377 }, "geometry": { "type": "Point", "coordinates": [ 145.238, -38.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.935218, "decimalLat": -27.431224 }, "geometry": { "type": "Point", "coordinates": [ 151.935, -27.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721822, "decimalLat": -35.003519 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20302, "decimalLat": -27.514522 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.531759, "decimalLat": -37.01315 }, "geometry": { "type": "Point", "coordinates": [ 145.532, -37.013 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103453, "decimalLat": -27.530264 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109881, "decimalLat": -27.527209 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.898873, "decimalLat": -37.641083 }, "geometry": { "type": "Point", "coordinates": [ 143.899, -37.641 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.883676, "decimalLat": -37.587348 }, "geometry": { "type": "Point", "coordinates": [ 143.884, -37.587 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.563246, "decimalLat": -35.167162 }, "geometry": { "type": "Point", "coordinates": [ 138.563, -35.167 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.52172, "decimalLat": -37.370898 }, "geometry": { "type": "Point", "coordinates": [ 144.522, -37.371 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053069, "decimalLat": -27.543817 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.445501, "decimalLat": -38.331835 }, "geometry": { "type": "Point", "coordinates": [ 146.446, -38.332 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058685, "decimalLat": -27.544927 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092885, "decimalLat": -27.528055 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113447, "decimalLat": -27.528517 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102821, "decimalLat": -27.527596 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057882, "decimalLat": -27.553293 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.812855, "decimalLat": -27.352438 }, "geometry": { "type": "Point", "coordinates": [ 151.813, -27.352 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091637, "decimalLat": -27.526863 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093416, "decimalLat": -27.528119 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.089281, "decimalLat": -27.221281 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -27.221 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.858393, "decimalLat": -27.269697 }, "geometry": { "type": "Point", "coordinates": [ 152.858, -27.27 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073367, "decimalLat": -27.542714 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107631, "decimalLat": -27.527146 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069856, "decimalLat": -27.510402 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.375255, "decimalLat": -27.9141 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0584, "decimalLat": -27.548421 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868242, "decimalLat": -19.127828 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.128 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.615318, "decimalLat": -34.904254 }, "geometry": { "type": "Point", "coordinates": [ 138.615, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.935425, "decimalLat": -27.275819 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -27.276 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075836, "decimalLat": -27.536205 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.83525, "decimalLat": -34.070308 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107695, "decimalLat": -27.527117 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.667638, "decimalLat": -34.938575 }, "geometry": { "type": "Point", "coordinates": [ 138.668, -34.939 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.276862, "decimalLat": -38.381996 }, "geometry": { "type": "Point", "coordinates": [ 145.277, -38.382 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.462449, "decimalLat": -37.029334 }, "geometry": { "type": "Point", "coordinates": [ 145.462, -37.029 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.187133, "decimalLat": -28.19508 }, "geometry": { "type": "Point", "coordinates": [ 153.187, -28.195 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05762, "decimalLat": -27.550976 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057617, "decimalLat": -27.551242 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.356418, "decimalLat": -28.091086 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189987, "decimalLat": -27.73663 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.505718, "decimalLat": -35.593033 }, "geometry": { "type": "Point", "coordinates": [ 137.506, -35.593 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.047417, "decimalLat": -27.545129 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.615535, "decimalLat": -27.824826 }, "geometry": { "type": "Point", "coordinates": [ 152.616, -27.825 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103722, "decimalLat": -27.529505 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.681533, "decimalLat": -26.167728 }, "geometry": { "type": "Point", "coordinates": [ 152.682, -26.168 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.995727, "decimalLat": -27.431498 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -27.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.703292, "decimalLat": -27.0962 }, "geometry": { "type": "Point", "coordinates": [ 152.703, -27.096 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.506802, "decimalLat": -38.834524 }, "geometry": { "type": "Point", "coordinates": [ 143.507, -38.835 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283001, "decimalLat": -27.525983 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092435, "decimalLat": -27.525704 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.034125, "decimalLat": -27.540966 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.129006, "decimalLat": -37.861801 }, "geometry": { "type": "Point", "coordinates": [ 144.129, -37.862 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057761, "decimalLat": -27.551478 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.639847, "decimalLat": -35.647697 }, "geometry": { "type": "Point", "coordinates": [ 137.64, -35.648 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377483, "decimalLat": -28.253971 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.24925, "decimalLat": -27.496538 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.171555, "decimalLat": -38.167112 }, "geometry": { "type": "Point", "coordinates": [ 145.172, -38.167 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.49395, "decimalLat": -35.708153 }, "geometry": { "type": "Point", "coordinates": [ 137.494, -35.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.764881, "decimalLat": -28.216498 }, "geometry": { "type": "Point", "coordinates": [ 152.765, -28.216 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.801976, "decimalLat": -26.156066 }, "geometry": { "type": "Point", "coordinates": [ 151.802, -26.156 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086948, "decimalLat": -27.510639 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601331, "decimalLat": -29.870405 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -29.87 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601281, "decimalLat": -29.870275 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -29.87 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.787726, "decimalLat": -34.772911 }, "geometry": { "type": "Point", "coordinates": [ 135.788, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729342, "decimalLat": -34.88738 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992616, "decimalLat": -27.822998 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860686, "decimalLat": -38.668264 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062622, "decimalLat": -27.220637 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.221 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.911663, "decimalLat": -37.651682 }, "geometry": { "type": "Point", "coordinates": [ 143.912, -37.652 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.693772, "decimalLat": -34.921845 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.572859, "decimalLat": -35.035978 }, "geometry": { "type": "Point", "coordinates": [ 138.573, -35.036 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.699937, "decimalLat": -35.069144 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.069 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.826037, "decimalLat": -26.21867 }, "geometry": { "type": "Point", "coordinates": [ 151.826, -26.219 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.046484, "decimalLat": -27.274808 }, "geometry": { "type": "Point", "coordinates": [ 153.046, -27.275 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092277, "decimalLat": -27.528054 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.999344, "decimalLat": -38.825169 }, "geometry": { "type": "Point", "coordinates": [ 145.999, -38.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.410508, "decimalLat": -27.928363 }, "geometry": { "type": "Point", "coordinates": [ 152.411, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084147, "decimalLat": -27.509683 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.923788, "decimalLat": -34.750083 }, "geometry": { "type": "Point", "coordinates": [ 138.924, -34.75 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.662223, "decimalLat": -35.009337 }, "geometry": { "type": "Point", "coordinates": [ 138.662, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.865472, "decimalLat": -28.211123 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -28.211 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992753, "decimalLat": -27.82403 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054408, "decimalLat": -27.537874 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.390095, "decimalLat": -28.266461 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.266 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090446, "decimalLat": -27.526881 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111525, "decimalLat": -27.52794 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058767, "decimalLat": -27.548774 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074797, "decimalLat": -27.358642 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163789, "decimalLat": -38.671312 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092188, "decimalLat": -27.527104 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092287, "decimalLat": -27.528122 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091604, "decimalLat": -27.527294 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.374043, "decimalLat": -27.912073 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164458, "decimalLat": -38.67128 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.586867, "decimalLat": -38.343079 }, "geometry": { "type": "Point", "coordinates": [ 141.587, -38.343 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07315, "decimalLat": -27.542345 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091383, "decimalLat": -27.52725 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09209, "decimalLat": -27.527395 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093578, "decimalLat": -27.524224 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638111, "decimalLat": -34.970473 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.97 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069986, "decimalLat": -27.510526 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376698, "decimalLat": -28.253633 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.54393, "decimalLat": -27.671145 }, "geometry": { "type": "Point", "coordinates": [ 151.544, -27.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.993408, "decimalLat": -27.123119 }, "geometry": { "type": "Point", "coordinates": [ 151.993, -27.123 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.401208, "decimalLat": -27.457454 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -27.457 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090786, "decimalLat": -27.526839 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.890848, "decimalLat": -37.579119 }, "geometry": { "type": "Point", "coordinates": [ 143.891, -37.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060785, "decimalLat": -27.547807 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.832395, "decimalLat": -26.517364 }, "geometry": { "type": "Point", "coordinates": [ 151.832, -26.517 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400783, "decimalLat": -28.256431 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721965, "decimalLat": -34.891989 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.958055, "decimalLat": -27.444343 }, "geometry": { "type": "Point", "coordinates": [ 151.958, -27.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377654, "decimalLat": -28.254536 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.242797, "decimalLat": -33.127136 }, "geometry": { "type": "Point", "coordinates": [ 151.243, -33.127 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.640272, "decimalLat": -35.111344 }, "geometry": { "type": "Point", "coordinates": [ 138.64, -35.111 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103279, "decimalLat": -27.52844 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.370406, "decimalLat": -28.340142 }, "geometry": { "type": "Point", "coordinates": [ 152.37, -28.34 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.392745, "decimalLat": -28.268875 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.269 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375648, "decimalLat": -28.252347 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058788, "decimalLat": -27.545855 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103401, "decimalLat": -27.529604 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.655842, "decimalLat": -38.263023 }, "geometry": { "type": "Point", "coordinates": [ 141.656, -38.263 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.726936, "decimalLat": -34.888181 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189646, "decimalLat": -27.701124 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.972808, "decimalLat": -27.271878 }, "geometry": { "type": "Point", "coordinates": [ 152.973, -27.272 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.77137, "decimalLat": -27.383112 }, "geometry": { "type": "Point", "coordinates": [ 151.771, -27.383 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.693588, "decimalLat": -27.246453 }, "geometry": { "type": "Point", "coordinates": [ 151.694, -27.246 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4415, "decimalLat": -27.401313 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058603, "decimalLat": -27.544777 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734088, "decimalLat": -34.888717 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.376981, "decimalLat": -27.918878 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.779755, "decimalLat": -27.789287 }, "geometry": { "type": "Point", "coordinates": [ 152.78, -27.789 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.443319, "decimalLat": -27.394881 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051261, "decimalLat": -27.549231 }, "geometry": { "type": "Point", "coordinates": [ 153.051, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.04118, "decimalLat": -27.533646 }, "geometry": { "type": "Point", "coordinates": [ 153.041, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.100925, "decimalLat": -27.53015 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393212, "decimalLat": -28.275088 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.275 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.242358, "decimalLat": -38.160578 }, "geometry": { "type": "Point", "coordinates": [ 145.242, -38.161 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.669219, "decimalLat": -38.75595 }, "geometry": { "type": "Point", "coordinates": [ 143.669, -38.756 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.986718, "decimalLat": -26.266616 }, "geometry": { "type": "Point", "coordinates": [ 151.987, -26.267 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102292, "decimalLat": -27.734853 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.032532, "decimalLat": -27.901122 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -27.901 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.736502, "decimalLat": -34.805774 }, "geometry": { "type": "Point", "coordinates": [ 138.737, -34.806 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637797, "decimalLat": -35.005317 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095092, "decimalLat": -33.076726 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08597, "decimalLat": -27.510047 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376949, "decimalLat": -28.254179 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092403, "decimalLat": -27.525734 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.698127, "decimalLat": -26.179022 }, "geometry": { "type": "Point", "coordinates": [ 151.698, -26.179 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.302967, "decimalLat": -37.82793 }, "geometry": { "type": "Point", "coordinates": [ 144.303, -37.828 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066816, "decimalLat": -27.250419 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.25 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112132, "decimalLat": -27.52945 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.127187, "decimalLat": -26.191299 }, "geometry": { "type": "Point", "coordinates": [ 152.127, -26.191 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.861211, "decimalLat": -38.666296 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.666 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860696, "decimalLat": -38.670066 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.67 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092232, "decimalLat": -27.528262 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111318, "decimalLat": -27.528976 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.742463, "decimalLat": -27.779992 }, "geometry": { "type": "Point", "coordinates": [ 152.742, -27.78 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163711, "decimalLat": -38.671045 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.826933, "decimalLat": -34.692015 }, "geometry": { "type": "Point", "coordinates": [ 138.827, -34.692 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090819, "decimalLat": -27.526926 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.95386, "decimalLat": -27.47174 }, "geometry": { "type": "Point", "coordinates": [ 151.954, -27.472 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092356, "decimalLat": -27.525063 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.046652, "decimalLat": -38.262879 }, "geometry": { "type": "Point", "coordinates": [ 145.047, -38.263 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730297, "decimalLat": -34.909664 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.91 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.118867, "decimalLat": -38.691774 }, "geometry": { "type": "Point", "coordinates": [ 146.119, -38.692 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.772555, "decimalLat": -26.200712 }, "geometry": { "type": "Point", "coordinates": [ 151.773, -26.201 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705969, "decimalLat": -34.980111 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.98 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.374621, "decimalLat": -27.913179 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.565583, "decimalLat": -27.448211 }, "geometry": { "type": "Point", "coordinates": [ 152.566, -27.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.997179, "decimalLat": -26.223048 }, "geometry": { "type": "Point", "coordinates": [ 151.997, -26.223 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092839, "decimalLat": -27.528583 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092298, "decimalLat": -27.527374 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072507, "decimalLat": -27.549233 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.659805, "decimalLat": -35.007572 }, "geometry": { "type": "Point", "coordinates": [ 138.66, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.404806, "decimalLat": -38.348645 }, "geometry": { "type": "Point", "coordinates": [ 146.405, -38.349 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.902212, "decimalLat": -27.622245 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.622 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.304055, "decimalLat": -38.384272 }, "geometry": { "type": "Point", "coordinates": [ 145.304, -38.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885227, "decimalLat": -30.461363 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -30.461 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093116, "decimalLat": -27.526223 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09228, "decimalLat": -27.525681 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.608033, "decimalLat": -34.90855 }, "geometry": { "type": "Point", "coordinates": [ 138.608, -34.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09277, "decimalLat": -27.525351 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.45431, "decimalLat": -28.379526 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.38 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036925, "decimalLat": -27.549937 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.338035, "decimalLat": -31.578908 }, "geometry": { "type": "Point", "coordinates": [ 149.338, -31.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.133147, "decimalLat": -27.564122 }, "geometry": { "type": "Point", "coordinates": [ 153.133, -27.564 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.163777, "decimalLat": -26.971645 }, "geometry": { "type": "Point", "coordinates": [ 152.164, -26.972 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.907541, "decimalLat": -37.744589 }, "geometry": { "type": "Point", "coordinates": [ 143.908, -37.745 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092119, "decimalLat": -27.525371 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104957, "decimalLat": -27.5296 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.046194, "decimalLat": -27.276863 }, "geometry": { "type": "Point", "coordinates": [ 153.046, -27.277 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.967466, "decimalLat": -27.270574 }, "geometry": { "type": "Point", "coordinates": [ 152.967, -27.271 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.188172, "decimalLat": -27.912167 }, "geometry": { "type": "Point", "coordinates": [ 153.188, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000489, "decimalLat": -27.284182 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057261, "decimalLat": -27.552871 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086836, "decimalLat": -27.510717 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054135, "decimalLat": -27.543165 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.330017, "decimalLat": -35.874997 }, "geometry": { "type": "Point", "coordinates": [ 145.33, -35.875 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.272201, "decimalLat": -38.129532 }, "geometry": { "type": "Point", "coordinates": [ 145.272, -38.13 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.899204, "decimalLat": -27.425513 }, "geometry": { "type": "Point", "coordinates": [ 151.899, -27.426 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091578, "decimalLat": -27.52656 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.04767, "decimalLat": -27.26303 }, "geometry": { "type": "Point", "coordinates": [ 152.048, -27.263 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.728163, "decimalLat": -34.889692 }, "geometry": { "type": "Point", "coordinates": [ 138.728, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09199, "decimalLat": -27.524037 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.625801, "decimalLat": -34.893457 }, "geometry": { "type": "Point", "coordinates": [ 138.626, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.885558, "decimalLat": -27.304578 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -27.305 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.685924, "decimalLat": -34.83217 }, "geometry": { "type": "Point", "coordinates": [ 135.686, -34.832 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.503785, "decimalLat": -35.600665 }, "geometry": { "type": "Point", "coordinates": [ 137.504, -35.601 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.041191, "decimalLat": -27.564238 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -27.564 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.442017, "decimalLat": -27.395194 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059451, "decimalLat": -27.533554 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.896317, "decimalLat": -37.644657 }, "geometry": { "type": "Point", "coordinates": [ 143.896, -37.645 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103812, "decimalLat": -27.530071 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860718, "decimalLat": -38.667877 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.400302, "decimalLat": -27.498617 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053175, "decimalLat": -27.550671 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074708, "decimalLat": -27.3588 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092473, "decimalLat": -27.527642 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082928, "decimalLat": -27.506073 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.117265, "decimalLat": -33.113283 }, "geometry": { "type": "Point", "coordinates": [ 151.117, -33.113 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091991, "decimalLat": -27.527194 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.851988, "decimalLat": -34.083368 }, "geometry": { "type": "Point", "coordinates": [ 150.852, -34.083 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072949, "decimalLat": -27.54604 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.004397, "decimalLat": -27.298786 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -27.299 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656885, "decimalLat": -34.865267 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.356451, "decimalLat": -27.914045 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.692908, "decimalLat": -34.959896 }, "geometry": { "type": "Point", "coordinates": [ 138.693, -34.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09036, "decimalLat": -27.525633 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.775228, "decimalLat": -38.203268 }, "geometry": { "type": "Point", "coordinates": [ 141.775, -38.203 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729274, "decimalLat": -34.889832 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37759, "decimalLat": -28.25418 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.640435, "decimalLat": -27.45319 }, "geometry": { "type": "Point", "coordinates": [ 152.64, -27.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103251, "decimalLat": -27.529631 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.852012, "decimalLat": -38.671905 }, "geometry": { "type": "Point", "coordinates": [ 143.852, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.498949, "decimalLat": -35.181457 }, "geometry": { "type": "Point", "coordinates": [ 138.499, -35.181 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092396, "decimalLat": -27.527739 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001086, "decimalLat": -27.311396 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.311 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.201341, "decimalLat": -28.823967 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403503, "decimalLat": -27.493458 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084428, "decimalLat": -27.50952 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091503, "decimalLat": -27.527263 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092627, "decimalLat": -27.528228 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111587, "decimalLat": -27.528158 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.478001, "decimalLat": -27.743717 }, "geometry": { "type": "Point", "coordinates": [ 152.478, -27.744 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860706, "decimalLat": -38.667967 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.377553, "decimalLat": -27.917903 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090347, "decimalLat": -27.522974 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.523 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090607, "decimalLat": -27.526077 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.770727, "decimalLat": -26.213098 }, "geometry": { "type": "Point", "coordinates": [ 151.771, -26.213 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084334, "decimalLat": -27.517049 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090757, "decimalLat": -27.526307 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.538153, "decimalLat": -38.4421 }, "geometry": { "type": "Point", "coordinates": [ 145.538, -38.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.88442, "decimalLat": -37.628013 }, "geometry": { "type": "Point", "coordinates": [ 143.884, -37.628 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111333, "decimalLat": -27.527207 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377495, "decimalLat": -28.254102 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10778, "decimalLat": -27.527068 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.583276, "decimalLat": -38.480373 }, "geometry": { "type": "Point", "coordinates": [ 143.583, -38.48 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.659383, "decimalLat": -34.86458 }, "geometry": { "type": "Point", "coordinates": [ 138.659, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.108139, "decimalLat": -27.564028 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -27.564 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057608, "decimalLat": -27.551797 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091123, "decimalLat": -27.527453 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.381783, "decimalLat": -36.170699 }, "geometry": { "type": "Point", "coordinates": [ 149.382, -36.171 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106541, "decimalLat": -27.529142 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.261615, "decimalLat": -38.484077 }, "geometry": { "type": "Point", "coordinates": [ 145.262, -38.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09105, "decimalLat": -27.527454 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091512, "decimalLat": -27.527269 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.567319, "decimalLat": -27.3785 }, "geometry": { "type": "Point", "coordinates": [ 152.567, -27.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.247078, "decimalLat": -27.49628 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.893461, "decimalLat": -38.639681 }, "geometry": { "type": "Point", "coordinates": [ 143.893, -38.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.570613, "decimalLat": -27.801664 }, "geometry": { "type": "Point", "coordinates": [ 151.571, -27.802 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164122, "decimalLat": -38.67157 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438676, "decimalLat": -27.401595 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.402 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.166562, "decimalLat": -27.481427 }, "geometry": { "type": "Point", "coordinates": [ 153.167, -27.481 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.276581, "decimalLat": -38.365852 }, "geometry": { "type": "Point", "coordinates": [ 145.277, -38.366 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.422395, "decimalLat": -26.131796 }, "geometry": { "type": "Point", "coordinates": [ 151.422, -26.132 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10333, "decimalLat": -27.528545 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.996638, "decimalLat": -37.689805 }, "geometry": { "type": "Point", "coordinates": [ 143.997, -37.69 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376963, "decimalLat": -28.254173 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058089, "decimalLat": -27.551797 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.635726, "decimalLat": -28.02702 }, "geometry": { "type": "Point", "coordinates": [ 152.636, -28.027 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993775, "decimalLat": -27.823813 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.407406, "decimalLat": -36.876263 }, "geometry": { "type": "Point", "coordinates": [ 145.407, -36.876 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377, "decimalLat": -28.254245 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722552, "decimalLat": -34.889714 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.3625, "decimalLat": -38.318323 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105239, "decimalLat": -27.531667 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103132, "decimalLat": -27.526544 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.363342, "decimalLat": -27.496295 }, "geometry": { "type": "Point", "coordinates": [ 152.363, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.887344, "decimalLat": -27.60292 }, "geometry": { "type": "Point", "coordinates": [ 151.887, -27.603 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090818, "decimalLat": -27.525871 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074447, "decimalLat": -27.358378 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.697512, "decimalLat": -27.249147 }, "geometry": { "type": "Point", "coordinates": [ 151.698, -27.249 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.99968, "decimalLat": -27.283994 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068559, "decimalLat": -27.54531 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.335144, "decimalLat": -29.779553 }, "geometry": { "type": "Point", "coordinates": [ 151.335, -29.78 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.771895, "decimalLat": -37.909336 }, "geometry": { "type": "Point", "coordinates": [ 147.772, -37.909 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057884, "decimalLat": -27.551807 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.608243, "decimalLat": -27.418914 }, "geometry": { "type": "Point", "coordinates": [ 152.608, -27.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054557, "decimalLat": -27.551924 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.86672, "decimalLat": -26.14974 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -26.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.309403, "decimalLat": -38.384845 }, "geometry": { "type": "Point", "coordinates": [ 145.309, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.00429, "decimalLat": -27.414602 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.677978, "decimalLat": -34.868583 }, "geometry": { "type": "Point", "coordinates": [ 138.678, -34.869 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868423, "decimalLat": -19.126711 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.127 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.977635, "decimalLat": -27.608811 }, "geometry": { "type": "Point", "coordinates": [ 151.978, -27.609 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285368, "decimalLat": -29.027169 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -29.027 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.95811, "decimalLat": -27.309878 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -27.31 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.534012, "decimalLat": -34.745208 }, "geometry": { "type": "Point", "coordinates": [ 146.534, -34.745 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092576, "decimalLat": -27.52772 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.860105, "decimalLat": -28.220302 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -28.22 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.736167, "decimalLat": -34.830996 }, "geometry": { "type": "Point", "coordinates": [ 138.736, -34.831 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.644156, "decimalLat": -34.998679 }, "geometry": { "type": "Point", "coordinates": [ 138.644, -34.999 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104025, "decimalLat": -27.528038 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.367085, "decimalLat": -38.315837 }, "geometry": { "type": "Point", "coordinates": [ 142.367, -38.316 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.51568, "decimalLat": -38.836892 }, "geometry": { "type": "Point", "coordinates": [ 143.516, -38.837 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092127, "decimalLat": -27.525028 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40166, "decimalLat": -28.256211 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.594345, "decimalLat": -38.354401 }, "geometry": { "type": "Point", "coordinates": [ 141.594, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.38836, "decimalLat": -38.356773 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.357 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.24945, "decimalLat": -27.496775 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.042384, "decimalLat": -28.271215 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -28.271 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.477014, "decimalLat": -35.127336 }, "geometry": { "type": "Point", "coordinates": [ 138.477, -35.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.772632, "decimalLat": -26.199667 }, "geometry": { "type": "Point", "coordinates": [ 151.773, -26.2 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.273248, "decimalLat": -38.136717 }, "geometry": { "type": "Point", "coordinates": [ 145.273, -38.137 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092138, "decimalLat": -27.52727 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.333908, "decimalLat": -27.98117 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -27.981 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.923094, "decimalLat": -38.391861 }, "geometry": { "type": "Point", "coordinates": [ 144.923, -38.392 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.715395, "decimalLat": -38.63778 }, "geometry": { "type": "Point", "coordinates": [ 145.715, -38.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.613895, "decimalLat": -34.909381 }, "geometry": { "type": "Point", "coordinates": [ 138.614, -34.909 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.681825, "decimalLat": -35.084308 }, "geometry": { "type": "Point", "coordinates": [ 138.682, -35.084 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057708, "decimalLat": -27.551116 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110747, "decimalLat": -27.529849 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068284, "decimalLat": -27.540086 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.689033, "decimalLat": -38.133002 }, "geometry": { "type": "Point", "coordinates": [ 141.689, -38.133 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.044839, "decimalLat": -27.545893 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060022, "decimalLat": -27.550042 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.865839, "decimalLat": -28.211491 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.211 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.543428, "decimalLat": -27.671512 }, "geometry": { "type": "Point", "coordinates": [ 151.543, -27.672 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637886, "decimalLat": -35.005973 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164245, "decimalLat": -38.671337 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.862967, "decimalLat": -26.481111 }, "geometry": { "type": "Point", "coordinates": [ 151.863, -26.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.59845, "decimalLat": -35.186607 }, "geometry": { "type": "Point", "coordinates": [ 138.598, -35.187 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.709268, "decimalLat": -34.904232 }, "geometry": { "type": "Point", "coordinates": [ 138.709, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10359, "decimalLat": -27.529448 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.381133, "decimalLat": -27.918851 }, "geometry": { "type": "Point", "coordinates": [ 151.381, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.597197, "decimalLat": -34.771075 }, "geometry": { "type": "Point", "coordinates": [ 146.597, -34.771 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.230842, "decimalLat": -33.104267 }, "geometry": { "type": "Point", "coordinates": [ 151.231, -33.104 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073665, "decimalLat": -27.54582 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.99265, "decimalLat": -27.82261 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164259, "decimalLat": -38.671329 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059511, "decimalLat": -27.544995 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.554613, "decimalLat": -38.755854 }, "geometry": { "type": "Point", "coordinates": [ 143.555, -38.756 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103313, "decimalLat": -27.530701 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003147, "decimalLat": -27.41407 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377483, "decimalLat": -28.253982 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657418, "decimalLat": -35.006038 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731234, "decimalLat": -34.889557 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656525, "decimalLat": -34.865288 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.732016, "decimalLat": -27.780169 }, "geometry": { "type": "Point", "coordinates": [ 152.732, -27.78 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.748917, "decimalLat": -38.241725 }, "geometry": { "type": "Point", "coordinates": [ 141.749, -38.242 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.358539, "decimalLat": -38.318333 }, "geometry": { "type": "Point", "coordinates": [ 142.359, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086666, "decimalLat": -27.510391 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.16237, "decimalLat": -27.49504 }, "geometry": { "type": "Point", "coordinates": [ 152.162, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058604, "decimalLat": -27.5514 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084568, "decimalLat": -27.51646 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092614, "decimalLat": -27.525441 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.278041, "decimalLat": -38.095692 }, "geometry": { "type": "Point", "coordinates": [ 144.278, -38.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090532, "decimalLat": -27.525844 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.591692, "decimalLat": -26.894997 }, "geometry": { "type": "Point", "coordinates": [ 152.592, -26.895 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.023486, "decimalLat": -38.399393 }, "geometry": { "type": "Point", "coordinates": [ 144.023, -38.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19922, "decimalLat": -27.613128 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402165, "decimalLat": -28.258892 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.590396, "decimalLat": -34.75625 }, "geometry": { "type": "Point", "coordinates": [ 146.59, -34.756 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.055131, "decimalLat": -27.643611 }, "geometry": { "type": "Point", "coordinates": [ 152.055, -27.644 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400553, "decimalLat": -28.257425 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.61365, "decimalLat": -34.909255 }, "geometry": { "type": "Point", "coordinates": [ 138.614, -34.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.70233, "decimalLat": -21.71062 }, "geometry": { "type": "Point", "coordinates": [ 148.702, -21.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.772632, "decimalLat": -26.199667 }, "geometry": { "type": "Point", "coordinates": [ 151.773, -26.2 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.27852, "decimalLat": -36.173022 }, "geometry": { "type": "Point", "coordinates": [ 149.279, -36.173 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103335, "decimalLat": -27.528416 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092382, "decimalLat": -27.527379 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.920811, "decimalLat": -38.056779 }, "geometry": { "type": "Point", "coordinates": [ 141.921, -38.057 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.266959, "decimalLat": -37.388925 }, "geometry": { "type": "Point", "coordinates": [ 144.267, -37.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072389, "decimalLat": -27.545709 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111335, "decimalLat": -27.527892 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090772, "decimalLat": -27.527597 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895033, "decimalLat": -27.599019 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.599 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376941, "decimalLat": -28.25404 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.536477, "decimalLat": -37.501456 }, "geometry": { "type": "Point", "coordinates": [ 144.536, -37.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05992, "decimalLat": -27.551036 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105269, "decimalLat": -27.529965 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.15429, "decimalLat": -27.759826 }, "geometry": { "type": "Point", "coordinates": [ 153.154, -27.76 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073258, "decimalLat": -27.54713 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.280742, "decimalLat": -38.12717 }, "geometry": { "type": "Point", "coordinates": [ 145.281, -38.127 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638881, "decimalLat": -35.008742 }, "geometry": { "type": "Point", "coordinates": [ 138.639, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402604, "decimalLat": -28.260569 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057459, "decimalLat": -27.553112 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069793, "decimalLat": -27.510435 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7154, "decimalLat": -34.892261 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.769342, "decimalLat": -26.780061 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -26.78 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.481858, "decimalLat": -38.799171 }, "geometry": { "type": "Point", "coordinates": [ 143.482, -38.799 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.049316, "decimalLat": -27.527793 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.386869, "decimalLat": -38.354304 }, "geometry": { "type": "Point", "coordinates": [ 146.387, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.973201, "decimalLat": -38.348369 }, "geometry": { "type": "Point", "coordinates": [ 144.973, -38.348 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.903586, "decimalLat": -28.174211 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -28.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059491, "decimalLat": -27.548686 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.836975, "decimalLat": -28.093911 }, "geometry": { "type": "Point", "coordinates": [ 152.837, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.659813, "decimalLat": -38.748909 }, "geometry": { "type": "Point", "coordinates": [ 143.66, -38.749 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.304459, "decimalLat": -38.384315 }, "geometry": { "type": "Point", "coordinates": [ 145.304, -38.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103522, "decimalLat": -27.528582 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073257, "decimalLat": -27.545605 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092369, "decimalLat": -27.525644 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.086517, "decimalLat": -27.697067 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.44632, "decimalLat": -27.53897 }, "geometry": { "type": "Point", "coordinates": [ 152.446, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721907, "decimalLat": -34.889953 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05591, "decimalLat": -27.552018 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.916005, "decimalLat": -26.252326 }, "geometry": { "type": "Point", "coordinates": [ 151.916, -26.252 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.927994, "decimalLat": -37.654956 }, "geometry": { "type": "Point", "coordinates": [ 143.928, -37.655 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07061, "decimalLat": -27.510887 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.277343, "decimalLat": -38.095136 }, "geometry": { "type": "Point", "coordinates": [ 144.277, -38.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.186771, "decimalLat": -27.70082 }, "geometry": { "type": "Point", "coordinates": [ 153.187, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.534105, "decimalLat": -36.978436 }, "geometry": { "type": "Point", "coordinates": [ 145.534, -36.978 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.050383, "decimalLat": -27.527893 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.935059, "decimalLat": -27.626428 }, "geometry": { "type": "Point", "coordinates": [ 151.935, -27.626 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.898653, "decimalLat": -27.652706 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -27.653 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400489, "decimalLat": -28.258772 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.610578, "decimalLat": -28.066173 }, "geometry": { "type": "Point", "coordinates": [ 152.611, -28.066 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109517, "decimalLat": -27.528851 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.998635, "decimalLat": -38.826482 }, "geometry": { "type": "Point", "coordinates": [ 145.999, -38.826 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113613, "decimalLat": -27.528528 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073403, "decimalLat": -27.545733 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102591, "decimalLat": -27.529413 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.685924, "decimalLat": -34.83217 }, "geometry": { "type": "Point", "coordinates": [ 135.686, -34.832 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.698495, "decimalLat": -34.935209 }, "geometry": { "type": "Point", "coordinates": [ 138.698, -34.935 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.288941, "decimalLat": -27.212761 }, "geometry": { "type": "Point", "coordinates": [ 151.289, -27.213 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.743144, "decimalLat": -37.789997 }, "geometry": { "type": "Point", "coordinates": [ 141.743, -37.79 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062488, "decimalLat": -27.550993 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.359383, "decimalLat": -27.515211 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.613512, "decimalLat": -27.339313 }, "geometry": { "type": "Point", "coordinates": [ 152.614, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071867, "decimalLat": -27.545282 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.910633, "decimalLat": -37.651801 }, "geometry": { "type": "Point", "coordinates": [ 143.911, -37.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9984, "decimalLat": -27.436187 }, "geometry": { "type": "Point", "coordinates": [ 152.998, -27.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.571685, "decimalLat": -37.914698 }, "geometry": { "type": "Point", "coordinates": [ 145.572, -37.915 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719306, "decimalLat": -34.891683 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103308, "decimalLat": -27.528452 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163803, "decimalLat": -38.671033 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059071, "decimalLat": -27.546933 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.114079, "decimalLat": -27.527681 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.977156, "decimalLat": -38.482658 }, "geometry": { "type": "Point", "coordinates": [ 142.977, -38.483 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.933608, "decimalLat": -27.329708 }, "geometry": { "type": "Point", "coordinates": [ 151.934, -27.33 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.573345, "decimalLat": -29.800979 }, "geometry": { "type": "Point", "coordinates": [ 150.573, -29.801 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.594126, "decimalLat": -34.776407 }, "geometry": { "type": "Point", "coordinates": [ 146.594, -34.776 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056084, "decimalLat": -27.552269 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058166, "decimalLat": -27.550701 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.714831, "decimalLat": -34.892246 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108951, "decimalLat": -27.529273 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900182, "decimalLat": -31.434898 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05797, "decimalLat": -27.557155 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.557 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.505387, "decimalLat": -37.038144 }, "geometry": { "type": "Point", "coordinates": [ 145.505, -37.038 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290961, "decimalLat": -37.874658 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092164, "decimalLat": -27.528047 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.922084, "decimalLat": -38.478453 }, "geometry": { "type": "Point", "coordinates": [ 143.922, -38.478 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734437, "decimalLat": -34.888147 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.110665, "decimalLat": -27.566379 }, "geometry": { "type": "Point", "coordinates": [ 152.111, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.825754, "decimalLat": -26.450289 }, "geometry": { "type": "Point", "coordinates": [ 151.826, -26.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.736198, "decimalLat": -34.831004 }, "geometry": { "type": "Point", "coordinates": [ 138.736, -34.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.14621, "decimalLat": -37.932771 }, "geometry": { "type": "Point", "coordinates": [ 144.146, -37.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057283, "decimalLat": -27.551196 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.752819, "decimalLat": -26.158424 }, "geometry": { "type": "Point", "coordinates": [ 151.753, -26.158 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.553855, "decimalLat": -36.985829 }, "geometry": { "type": "Point", "coordinates": [ 145.554, -36.986 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.613592, "decimalLat": -27.339263 }, "geometry": { "type": "Point", "coordinates": [ 152.614, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399672, "decimalLat": -27.497622 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092291, "decimalLat": -27.526916 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.377058, "decimalLat": -27.919485 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403089, "decimalLat": -27.493703 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.623375, "decimalLat": -34.994375 }, "geometry": { "type": "Point", "coordinates": [ 138.623, -34.994 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072601, "decimalLat": -27.544877 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734429, "decimalLat": -34.887641 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.278225, "decimalLat": -37.839487 }, "geometry": { "type": "Point", "coordinates": [ 144.278, -37.839 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.377058, "decimalLat": -27.919485 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713649, "decimalLat": -34.891685 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.370283, "decimalLat": -27.907392 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -27.907 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10415, "decimalLat": -27.530486 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377269, "decimalLat": -28.254263 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.754464, "decimalLat": -37.90878 }, "geometry": { "type": "Point", "coordinates": [ 147.754, -37.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.661272, "decimalLat": -27.764915 }, "geometry": { "type": "Point", "coordinates": [ 151.661, -27.765 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085055, "decimalLat": -27.51055 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.888844, "decimalLat": -27.599864 }, "geometry": { "type": "Point", "coordinates": [ 151.889, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061288, "decimalLat": -27.54796 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004853, "decimalLat": -27.411592 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -27.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.590326, "decimalLat": -27.469541 }, "geometry": { "type": "Point", "coordinates": [ 152.59, -27.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058778, "decimalLat": -27.547468 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400952, "decimalLat": -28.258277 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.063034, "decimalLat": -27.348399 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -27.348 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003227, "decimalLat": -27.41355 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70569, "decimalLat": -34.903218 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072447, "decimalLat": -27.226342 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.226 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095428, "decimalLat": -33.076794 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092277, "decimalLat": -27.527776 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.912583, "decimalLat": -26.720263 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -26.72 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107238, "decimalLat": -27.527445 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076264, "decimalLat": -27.248912 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.249 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.105514, "decimalLat": -27.566545 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.400552, "decimalLat": -36.846381 }, "geometry": { "type": "Point", "coordinates": [ 145.401, -36.846 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.57785, "decimalLat": -38.820278 }, "geometry": { "type": "Point", "coordinates": [ 143.578, -38.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090728, "decimalLat": -27.526999 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124542, "decimalLat": -30.295397 }, "geometry": { "type": "Point", "coordinates": [ 153.125, -30.295 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.579325, "decimalLat": -35.062473 }, "geometry": { "type": "Point", "coordinates": [ 138.579, -35.062 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.84614, "decimalLat": -27.339616 }, "geometry": { "type": "Point", "coordinates": [ 152.846, -27.34 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403883, "decimalLat": -31.928103 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.04641, "decimalLat": -38.266658 }, "geometry": { "type": "Point", "coordinates": [ 145.046, -38.267 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.247078, "decimalLat": -27.49628 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07382, "decimalLat": -27.545553 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.277163, "decimalLat": -37.753938 }, "geometry": { "type": "Point", "coordinates": [ 144.277, -37.754 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095428, "decimalLat": -33.076794 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07975, "decimalLat": -27.507169 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.295928, "decimalLat": -38.383136 }, "geometry": { "type": "Point", "coordinates": [ 145.296, -38.383 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000838, "decimalLat": -27.284477 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.802497, "decimalLat": -28.209013 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -28.209 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.825263, "decimalLat": -38.060662 }, "geometry": { "type": "Point", "coordinates": [ 141.825, -38.061 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.044424, "decimalLat": -27.548554 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.801159, "decimalLat": -26.348586 }, "geometry": { "type": "Point", "coordinates": [ 151.801, -26.349 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.878838, "decimalLat": -37.54472 }, "geometry": { "type": "Point", "coordinates": [ 143.879, -37.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721896, "decimalLat": -34.889949 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.587152, "decimalLat": -35.073537 }, "geometry": { "type": "Point", "coordinates": [ 138.587, -35.074 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.562042, "decimalLat": -34.762138 }, "geometry": { "type": "Point", "coordinates": [ 146.562, -34.762 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.318953, "decimalLat": -27.897569 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516933, "decimalLat": -28.567211 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.567 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095122, "decimalLat": -33.076589 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.567242, "decimalLat": -27.375091 }, "geometry": { "type": "Point", "coordinates": [ 152.567, -27.375 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71373, "decimalLat": -34.963642 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.964 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103393, "decimalLat": -27.530098 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.650555, "decimalLat": -35.043168 }, "geometry": { "type": "Point", "coordinates": [ 138.651, -35.043 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056945, "decimalLat": -27.546617 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054297, "decimalLat": -27.55593 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.556 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.508513, "decimalLat": -37.066033 }, "geometry": { "type": "Point", "coordinates": [ 145.509, -37.066 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070541, "decimalLat": -27.509636 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.759262, "decimalLat": -37.561947 }, "geometry": { "type": "Point", "coordinates": [ 149.759, -37.562 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.723205, "decimalLat": -27.712038 }, "geometry": { "type": "Point", "coordinates": [ 152.723, -27.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0576, "decimalLat": -27.551728 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108328, "decimalLat": -27.527169 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091063, "decimalLat": -27.526412 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441333, "decimalLat": -27.392556 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712655, "decimalLat": -34.891283 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.64926, "decimalLat": -34.877993 }, "geometry": { "type": "Point", "coordinates": [ 138.649, -34.878 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868268, "decimalLat": -19.12693 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.792829, "decimalLat": -26.135908 }, "geometry": { "type": "Point", "coordinates": [ 151.793, -26.136 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400706, "decimalLat": -28.257909 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.907157, "decimalLat": -27.655288 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -27.655 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68808, "decimalLat": -21.687586 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.688 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.75011, "decimalLat": -27.887434 }, "geometry": { "type": "Point", "coordinates": [ 152.75, -27.887 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.651855, "decimalLat": -38.745084 }, "geometry": { "type": "Point", "coordinates": [ 143.652, -38.745 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103431, "decimalLat": -27.53017 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.820453, "decimalLat": -34.780183 }, "geometry": { "type": "Point", "coordinates": [ 138.82, -34.78 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091255, "decimalLat": -27.525388 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105469, "decimalLat": -27.531459 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.296638, "decimalLat": -38.383297 }, "geometry": { "type": "Point", "coordinates": [ 145.297, -38.383 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.546707, "decimalLat": -36.930479 }, "geometry": { "type": "Point", "coordinates": [ 145.547, -36.93 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073274, "decimalLat": -27.545867 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.166046, "decimalLat": -38.174706 }, "geometry": { "type": "Point", "coordinates": [ 145.166, -38.175 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.525365, "decimalLat": -26.359538 }, "geometry": { "type": "Point", "coordinates": [ 151.525, -26.36 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.515853, "decimalLat": -27.737295 }, "geometry": { "type": "Point", "coordinates": [ 151.516, -27.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.578762, "decimalLat": -27.777764 }, "geometry": { "type": "Point", "coordinates": [ 151.579, -27.778 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108285, "decimalLat": -27.52718 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.569161, "decimalLat": -27.800069 }, "geometry": { "type": "Point", "coordinates": [ 151.569, -27.8 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.679909, "decimalLat": -28.003416 }, "geometry": { "type": "Point", "coordinates": [ 152.68, -28.003 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.588383, "decimalLat": -38.363242 }, "geometry": { "type": "Point", "coordinates": [ 141.588, -38.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08625, "decimalLat": -27.696933 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -27.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091859, "decimalLat": -27.525849 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.852052, "decimalLat": -36.138554 }, "geometry": { "type": "Point", "coordinates": [ 146.852, -36.139 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093105, "decimalLat": -27.524269 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598859, "decimalLat": -29.868808 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -29.869 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.861924, "decimalLat": -38.666962 }, "geometry": { "type": "Point", "coordinates": [ 143.862, -38.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061207, "decimalLat": -27.534309 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.499192, "decimalLat": -35.811113 }, "geometry": { "type": "Point", "coordinates": [ 145.499, -35.811 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095116, "decimalLat": -33.07672 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.80606, "decimalLat": -34.78565 }, "geometry": { "type": "Point", "coordinates": [ 135.806, -34.786 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102837, "decimalLat": -27.527188 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.714522, "decimalLat": -35.202908 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -35.203 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111217, "decimalLat": -27.527164 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.036399, "decimalLat": -28.701735 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -28.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.861269, "decimalLat": -38.6707 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.670929, "decimalLat": -35.015771 }, "geometry": { "type": "Point", "coordinates": [ 138.671, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.482562, "decimalLat": -36.858283 }, "geometry": { "type": "Point", "coordinates": [ 145.483, -36.858 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.727797, "decimalLat": -38.62822 }, "geometry": { "type": "Point", "coordinates": [ 145.728, -38.628 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091478, "decimalLat": -27.527218 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083114, "decimalLat": -27.514766 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.440355, "decimalLat": -33.007714 }, "geometry": { "type": "Point", "coordinates": [ 151.44, -33.008 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111626, "decimalLat": -27.524481 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06883, "decimalLat": -27.525809 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092628, "decimalLat": -27.528311 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.699505, "decimalLat": -35.089156 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.089 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992737, "decimalLat": -27.824053 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055563, "decimalLat": -27.536728 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.136978, "decimalLat": -37.324812 }, "geometry": { "type": "Point", "coordinates": [ 144.137, -37.325 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.053237, "decimalLat": -26.332429 }, "geometry": { "type": "Point", "coordinates": [ 152.053, -26.332 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.060596, "decimalLat": -34.956178 }, "geometry": { "type": "Point", "coordinates": [ 150.061, -34.956 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.236635, "decimalLat": -37.146232 }, "geometry": { "type": "Point", "coordinates": [ 148.237, -37.146 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.859615, "decimalLat": -27.542516 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.729482, "decimalLat": -38.63447 }, "geometry": { "type": "Point", "coordinates": [ 145.729, -38.634 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.736471, "decimalLat": -26.160237 }, "geometry": { "type": "Point", "coordinates": [ 151.736, -26.16 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890873, "decimalLat": -30.245816 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -30.246 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048118, "decimalLat": -27.514943 }, "geometry": { "type": "Point", "coordinates": [ 153.048, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082765, "decimalLat": -27.5138 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.50717, "decimalLat": -35.17822 }, "geometry": { "type": "Point", "coordinates": [ 138.507, -35.178 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18045, "decimalLat": -27.355775 }, "geometry": { "type": "Point", "coordinates": [ 152.18, -27.356 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.398237, "decimalLat": -27.458511 }, "geometry": { "type": "Point", "coordinates": [ 152.398, -27.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091326, "decimalLat": -27.527087 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057954, "decimalLat": -27.550883 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.455847, "decimalLat": -28.097033 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109512, "decimalLat": -27.529404 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.983252, "decimalLat": -26.739188 }, "geometry": { "type": "Point", "coordinates": [ 151.983, -26.739 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399658, "decimalLat": -27.497808 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112283, "decimalLat": -27.528992 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73487, "decimalLat": -34.888997 }, "geometry": { "type": "Point", "coordinates": [ 138.735, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.463805, "decimalLat": -37.029786 }, "geometry": { "type": "Point", "coordinates": [ 145.464, -37.03 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.688339, "decimalLat": -37.529677 }, "geometry": { "type": "Point", "coordinates": [ 149.688, -37.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.532745, "decimalLat": -34.744858 }, "geometry": { "type": "Point", "coordinates": [ 146.533, -34.745 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11975, "decimalLat": -27.509696 }, "geometry": { "type": "Point", "coordinates": [ 153.12, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092533, "decimalLat": -27.527463 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.210647, "decimalLat": -38.300956 }, "geometry": { "type": "Point", "coordinates": [ 145.211, -38.301 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377611, "decimalLat": -28.253838 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09154, "decimalLat": -27.527288 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.125119, "decimalLat": -37.748764 }, "geometry": { "type": "Point", "coordinates": [ 145.125, -37.749 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377043, "decimalLat": -28.254123 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103256, "decimalLat": -27.53029 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1179, "decimalLat": -27.515063 }, "geometry": { "type": "Point", "coordinates": [ 153.118, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.88573, "decimalLat": -37.585571 }, "geometry": { "type": "Point", "coordinates": [ 143.886, -37.586 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.906579, "decimalLat": -28.173647 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -28.174 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.891922, "decimalLat": -27.635437 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -27.635 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.438019, "decimalLat": -37.954511 }, "geometry": { "type": "Point", "coordinates": [ 144.438, -37.955 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.859716, "decimalLat": -27.546559 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873412, "decimalLat": -30.406405 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -30.406 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712517, "decimalLat": -34.959661 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.96 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.704221, "decimalLat": -34.929505 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -34.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0764, "decimalLat": -27.81727 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.817 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090493, "decimalLat": -27.527056 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090379, "decimalLat": -27.526836 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102773, "decimalLat": -27.529559 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.069867, "decimalLat": -38.237289 }, "geometry": { "type": "Point", "coordinates": [ 142.07, -38.237 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046276, "decimalLat": -27.257225 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111755, "decimalLat": -27.529528 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.444392, "decimalLat": -31.941714 }, "geometry": { "type": "Point", "coordinates": [ 152.444, -31.942 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071975, "decimalLat": -27.545251 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.572237, "decimalLat": -35.036309 }, "geometry": { "type": "Point", "coordinates": [ 138.572, -35.036 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.365539, "decimalLat": -27.455356 }, "geometry": { "type": "Point", "coordinates": [ 152.366, -27.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103446, "decimalLat": -27.530637 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037339, "decimalLat": -26.37518 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -26.375 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091283, "decimalLat": -27.52727 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.067496, "decimalLat": -27.508121 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.481831, "decimalLat": -38.800562 }, "geometry": { "type": "Point", "coordinates": [ 143.482, -38.801 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.663434, "decimalLat": -26.394261 }, "geometry": { "type": "Point", "coordinates": [ 152.663, -26.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.577025, "decimalLat": -34.76672 }, "geometry": { "type": "Point", "coordinates": [ 146.577, -34.767 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999917, "decimalLat": -27.284485 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731099, "decimalLat": -34.886408 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.730186, "decimalLat": -38.631436 }, "geometry": { "type": "Point", "coordinates": [ 145.73, -38.631 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715861, "decimalLat": -34.892174 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072233, "decimalLat": -27.543891 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.258796, "decimalLat": -28.10341 }, "geometry": { "type": "Point", "coordinates": [ 151.259, -28.103 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.626463, "decimalLat": -34.894075 }, "geometry": { "type": "Point", "coordinates": [ 138.626, -34.894 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090658, "decimalLat": -27.526714 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164153, "decimalLat": -38.671622 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072773, "decimalLat": -27.513322 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.725353, "decimalLat": -34.893273 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090899, "decimalLat": -27.527483 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074535, "decimalLat": -27.358516 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860637, "decimalLat": -38.668532 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.669 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055109, "decimalLat": -27.54156 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657663, "decimalLat": -34.947931 }, "geometry": { "type": "Point", "coordinates": [ 138.658, -34.948 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749888, "decimalLat": -26.155079 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.74077, "decimalLat": -34.827781 }, "geometry": { "type": "Point", "coordinates": [ 138.741, -34.828 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074601, "decimalLat": -27.546684 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377041, "decimalLat": -28.254118 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058279, "decimalLat": -27.546418 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.728303, "decimalLat": -37.922542 }, "geometry": { "type": "Point", "coordinates": [ 147.728, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092322, "decimalLat": -27.527823 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.271896, "decimalLat": -38.133761 }, "geometry": { "type": "Point", "coordinates": [ 145.272, -38.134 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092863, "decimalLat": -27.526028 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.77809, "decimalLat": -34.88239 }, "geometry": { "type": "Point", "coordinates": [ 138.778, -34.882 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072322, "decimalLat": -27.544087 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091688, "decimalLat": -27.527247 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093151, "decimalLat": -27.525128 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.504983, "decimalLat": -35.120364 }, "geometry": { "type": "Point", "coordinates": [ 138.505, -35.12 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.162553, "decimalLat": -27.600211 }, "geometry": { "type": "Point", "coordinates": [ 153.163, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107233, "decimalLat": -27.527346 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.451626, "decimalLat": -32.2366 }, "geometry": { "type": "Point", "coordinates": [ 152.452, -32.237 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.697321, "decimalLat": -34.958131 }, "geometry": { "type": "Point", "coordinates": [ 138.697, -34.958 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.900759, "decimalLat": -37.639946 }, "geometry": { "type": "Point", "coordinates": [ 143.901, -37.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001206, "decimalLat": -27.165466 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.165 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.503861, "decimalLat": -27.672299 }, "geometry": { "type": "Point", "coordinates": [ 151.504, -27.672 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729909, "decimalLat": -37.919575 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.92 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441033, "decimalLat": -27.393242 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090745, "decimalLat": -27.526667 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.549072, "decimalLat": -27.015142 }, "geometry": { "type": "Point", "coordinates": [ 151.549, -27.015 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08711, "decimalLat": -27.69549 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.695 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086008, "decimalLat": -27.510169 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057878, "decimalLat": -27.550838 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081601, "decimalLat": -27.510122 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057714, "decimalLat": -27.552978 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.499608, "decimalLat": -32.94889 }, "geometry": { "type": "Point", "coordinates": [ 151.5, -32.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093101, "decimalLat": -27.528045 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712087, "decimalLat": -34.905109 }, "geometry": { "type": "Point", "coordinates": [ 138.712, -34.905 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.378796, "decimalLat": -27.917807 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092764, "decimalLat": -27.527059 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10287, "decimalLat": -27.527407 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104449, "decimalLat": -27.529738 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.725518, "decimalLat": -37.922325 }, "geometry": { "type": "Point", "coordinates": [ 147.726, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.77762, "decimalLat": -34.882647 }, "geometry": { "type": "Point", "coordinates": [ 138.778, -34.883 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.992968, "decimalLat": -30.559986 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -30.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.963013, "decimalLat": -27.49304 }, "geometry": { "type": "Point", "coordinates": [ 152.963, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376872, "decimalLat": -28.254366 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.884806, "decimalLat": -37.588261 }, "geometry": { "type": "Point", "coordinates": [ 143.885, -37.588 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092296, "decimalLat": -27.527778 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.065883, "decimalLat": -27.262647 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -27.263 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.334733, "decimalLat": -33.672312 }, "geometry": { "type": "Point", "coordinates": [ 149.335, -33.672 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090818, "decimalLat": -27.526019 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085908, "decimalLat": -27.508463 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.886786, "decimalLat": -34.044027 }, "geometry": { "type": "Point", "coordinates": [ 150.887, -34.044 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.844701, "decimalLat": -21.771811 }, "geometry": { "type": "Point", "coordinates": [ 148.845, -21.772 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.319165, "decimalLat": -27.897783 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.064393, "decimalLat": -27.54257 }, "geometry": { "type": "Point", "coordinates": [ 153.064, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.680494, "decimalLat": -28.008003 }, "geometry": { "type": "Point", "coordinates": [ 152.68, -28.008 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.915603, "decimalLat": -27.17152 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -27.172 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091604, "decimalLat": -27.527171 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.979958, "decimalLat": -27.262897 }, "geometry": { "type": "Point", "coordinates": [ 152.98, -27.263 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.931242, "decimalLat": -37.55075 }, "geometry": { "type": "Point", "coordinates": [ 143.931, -37.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092087, "decimalLat": -27.527158 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086762, "decimalLat": -27.510812 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107797, "decimalLat": -27.526479 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.728431, "decimalLat": -35.12803 }, "geometry": { "type": "Point", "coordinates": [ 138.728, -35.128 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059689, "decimalLat": -27.548318 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387619, "decimalLat": -38.35432 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.638219, "decimalLat": -27.452781 }, "geometry": { "type": "Point", "coordinates": [ 152.638, -27.453 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090849, "decimalLat": -27.525808 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091203, "decimalLat": -27.510303 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.133025, "decimalLat": -27.563953 }, "geometry": { "type": "Point", "coordinates": [ 153.133, -27.564 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.877898, "decimalLat": -26.197906 }, "geometry": { "type": "Point", "coordinates": [ 151.878, -26.198 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.825823, "decimalLat": -26.577447 }, "geometry": { "type": "Point", "coordinates": [ 151.826, -26.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111159, "decimalLat": -27.530107 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092533, "decimalLat": -27.5278 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.80436, "decimalLat": -26.446378 }, "geometry": { "type": "Point", "coordinates": [ 151.804, -26.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.935028, "decimalLat": -27.27528 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -27.275 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062057, "decimalLat": -27.534554 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.49495, "decimalLat": -27.4294 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -27.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 150.977588, "decimalLat": -24.929459 }, "geometry": { "type": "Point", "coordinates": [ 150.978, -24.929 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314194, "decimalLat": -38.3764 }, "geometry": { "type": "Point", "coordinates": [ 145.314, -38.376 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993427, "decimalLat": -27.284187 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.24925, "decimalLat": -27.496538 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37593, "decimalLat": -27.916803 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10593, "decimalLat": -27.506399 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093146, "decimalLat": -27.528327 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164078, "decimalLat": -38.671545 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.130462, "decimalLat": -26.869939 }, "geometry": { "type": "Point", "coordinates": [ 152.13, -26.87 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.543404, "decimalLat": -27.6719 }, "geometry": { "type": "Point", "coordinates": [ 151.543, -27.672 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.086717, "decimalLat": -37.630578 }, "geometry": { "type": "Point", "coordinates": [ 144.087, -37.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081742, "decimalLat": -27.51024 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068853, "decimalLat": -27.545735 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109805, "decimalLat": -27.529782 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.125077, "decimalLat": -30.293311 }, "geometry": { "type": "Point", "coordinates": [ 153.125, -30.293 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092139, "decimalLat": -27.524525 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.49395, "decimalLat": -35.708153 }, "geometry": { "type": "Point", "coordinates": [ 137.494, -35.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.622528, "decimalLat": -34.896287 }, "geometry": { "type": "Point", "coordinates": [ 138.623, -34.896 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.651772, "decimalLat": -38.773168 }, "geometry": { "type": "Point", "coordinates": [ 143.652, -38.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.383701, "decimalLat": -28.724385 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -28.724 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993653, "decimalLat": -27.823397 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.83583, "decimalLat": -34.068519 }, "geometry": { "type": "Point", "coordinates": [ 150.836, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091568, "decimalLat": -27.527269 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.742115, "decimalLat": -34.839564 }, "geometry": { "type": "Point", "coordinates": [ 138.742, -34.84 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080152, "decimalLat": -27.508351 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093033, "decimalLat": -27.526069 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073729, "decimalLat": -27.545662 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16417, "decimalLat": -38.67155 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076264, "decimalLat": -27.543866 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.250153, "decimalLat": -38.858803 }, "geometry": { "type": "Point", "coordinates": [ 146.25, -38.859 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093531, "decimalLat": -27.528177 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004768, "decimalLat": -27.411557 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -27.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.663355, "decimalLat": -35.014287 }, "geometry": { "type": "Point", "coordinates": [ 138.663, -35.014 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.825003, "decimalLat": -37.23722 }, "geometry": { "type": "Point", "coordinates": [ 144.825, -37.237 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192438, "decimalLat": -27.703298 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.703 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163743, "decimalLat": -38.671027 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656983, "decimalLat": -34.86518 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.974875, "decimalLat": -38.499892 }, "geometry": { "type": "Point", "coordinates": [ 142.975, -38.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.618339, "decimalLat": -27.894355 }, "geometry": { "type": "Point", "coordinates": [ 152.618, -27.894 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.604716, "decimalLat": -25.627783 }, "geometry": { "type": "Point", "coordinates": [ 151.605, -25.628 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092411, "decimalLat": -27.525132 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.336594, "decimalLat": -38.321979 }, "geometry": { "type": "Point", "coordinates": [ 143.337, -38.322 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729295, "decimalLat": -37.925322 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.255781, "decimalLat": -28.103221 }, "geometry": { "type": "Point", "coordinates": [ 151.256, -28.103 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109503, "decimalLat": -27.527934 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111058, "decimalLat": -27.528619 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.575524, "decimalLat": -38.325482 }, "geometry": { "type": "Point", "coordinates": [ 142.576, -38.325 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.771734, "decimalLat": -27.37498 }, "geometry": { "type": "Point", "coordinates": [ 151.772, -27.375 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.977862, "decimalLat": -27.384103 }, "geometry": { "type": "Point", "coordinates": [ 151.978, -27.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090634, "decimalLat": -27.526045 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.370692, "decimalLat": -38.384667 }, "geometry": { "type": "Point", "coordinates": [ 145.371, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.562736, "decimalLat": -38.342694 }, "geometry": { "type": "Point", "coordinates": [ 141.563, -38.343 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.045407, "decimalLat": -27.258278 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09096, "decimalLat": -27.527464 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.697842, "decimalLat": -34.932778 }, "geometry": { "type": "Point", "coordinates": [ 138.698, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092344, "decimalLat": -27.527823 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.02185, "decimalLat": -27.224133 }, "geometry": { "type": "Point", "coordinates": [ 153.022, -27.224 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.158225, "decimalLat": -38.24555 }, "geometry": { "type": "Point", "coordinates": [ 143.158, -38.246 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70427, "decimalLat": -34.934933 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -34.935 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092888, "decimalLat": -27.528282 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.442453, "decimalLat": -27.395194 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058036, "decimalLat": -27.550789 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.044893, "decimalLat": -27.550958 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109254, "decimalLat": -27.527357 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377515, "decimalLat": -28.254041 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860662, "decimalLat": -38.668033 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.678242, "decimalLat": -27.98728 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -27.987 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091882, "decimalLat": -27.527146 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437692, "decimalLat": -27.400575 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103373, "decimalLat": -27.530059 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835892, "decimalLat": -34.068458 }, "geometry": { "type": "Point", "coordinates": [ 150.836, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108308, "decimalLat": -27.528935 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.695174, "decimalLat": -34.957424 }, "geometry": { "type": "Point", "coordinates": [ 138.695, -34.957 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703228, "decimalLat": -34.90309 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056186, "decimalLat": -27.553492 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068778, "decimalLat": -27.525775 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052324, "decimalLat": -27.548534 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090924, "decimalLat": -27.527021 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.567954, "decimalLat": -34.758535 }, "geometry": { "type": "Point", "coordinates": [ 146.568, -34.759 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.523547, "decimalLat": -27.715986 }, "geometry": { "type": "Point", "coordinates": [ 151.524, -27.716 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.750894, "decimalLat": -38.090334 }, "geometry": { "type": "Point", "coordinates": [ 141.751, -38.09 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.226881, "decimalLat": -27.296098 }, "geometry": { "type": "Point", "coordinates": [ 152.227, -27.296 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.042192, "decimalLat": -27.300312 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402184, "decimalLat": -28.260113 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090772, "decimalLat": -27.527153 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.704956, "decimalLat": -34.935108 }, "geometry": { "type": "Point", "coordinates": [ 138.705, -34.935 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070237, "decimalLat": -27.223603 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.224 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.044096, "decimalLat": -37.708717 }, "geometry": { "type": "Point", "coordinates": [ 144.044, -37.709 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.115457, "decimalLat": -27.483424 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.483 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.550038, "decimalLat": -27.814368 }, "geometry": { "type": "Point", "coordinates": [ 151.55, -27.814 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.980628, "decimalLat": -27.820647 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -27.821 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058631, "decimalLat": -27.546564 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058714, "decimalLat": -27.547334 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092291, "decimalLat": -27.528163 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109786, "decimalLat": -27.529653 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107593, "decimalLat": -27.527128 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.580239, "decimalLat": -35.036509 }, "geometry": { "type": "Point", "coordinates": [ 138.58, -35.037 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.076125, "decimalLat": -28.262058 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271352, "decimalLat": -28.041832 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -28.042 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.406932, "decimalLat": -28.255958 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060093, "decimalLat": -27.543941 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058051, "decimalLat": -27.551183 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715362, "decimalLat": -34.89185 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058636, "decimalLat": -27.546728 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.710339, "decimalLat": -34.85765 }, "geometry": { "type": "Point", "coordinates": [ 138.71, -34.858 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103381, "decimalLat": -27.530137 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.833913, "decimalLat": -26.52456 }, "geometry": { "type": "Point", "coordinates": [ 151.834, -26.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.866081, "decimalLat": -28.211516 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.212 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.639555, "decimalLat": -35.006436 }, "geometry": { "type": "Point", "coordinates": [ 138.64, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092421, "decimalLat": -27.528655 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402021, "decimalLat": -28.259484 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268072, "decimalLat": -38.130765 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.136795, "decimalLat": -33.087917 }, "geometry": { "type": "Point", "coordinates": [ 151.137, -33.088 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.874484, "decimalLat": -37.6175 }, "geometry": { "type": "Point", "coordinates": [ 143.874, -37.617 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057771, "decimalLat": -27.551574 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.94505, "decimalLat": -27.412003 }, "geometry": { "type": "Point", "coordinates": [ 151.945, -27.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082523, "decimalLat": -27.506578 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.996687, "decimalLat": -27.81653 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -27.817 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731469, "decimalLat": -34.886087 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09216, "decimalLat": -27.527138 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056381, "decimalLat": -27.538738 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059648, "decimalLat": -27.548346 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057663, "decimalLat": -27.551272 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.672193, "decimalLat": -35.014138 }, "geometry": { "type": "Point", "coordinates": [ 138.672, -35.014 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.897078, "decimalLat": -28.203106 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -28.203 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732475, "decimalLat": -34.890361 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.891607, "decimalLat": -28.230508 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -28.231 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082855, "decimalLat": -27.506361 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870469, "decimalLat": -19.124235 }, "geometry": { "type": "Point", "coordinates": [ 146.87, -19.124 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.884827, "decimalLat": -37.58771 }, "geometry": { "type": "Point", "coordinates": [ 143.885, -37.588 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081012, "decimalLat": -27.513079 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0542, "decimalLat": -27.55218 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.377058, "decimalLat": -27.919485 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.28451, "decimalLat": -37.925243 }, "geometry": { "type": "Point", "coordinates": [ 141.285, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.489126, "decimalLat": -27.382543 }, "geometry": { "type": "Point", "coordinates": [ 152.489, -27.383 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731417, "decimalLat": -34.882904 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.883 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.736167, "decimalLat": -34.830996 }, "geometry": { "type": "Point", "coordinates": [ 138.736, -34.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09228, "decimalLat": -27.527471 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062089, "decimalLat": -27.548595 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.688317, "decimalLat": -34.811704 }, "geometry": { "type": "Point", "coordinates": [ 138.688, -34.812 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.059386, "decimalLat": -36.438562 }, "geometry": { "type": "Point", "coordinates": [ 150.059, -36.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387703, "decimalLat": -38.357108 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.357 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65735, "decimalLat": -34.865078 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071287, "decimalLat": -27.779701 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.78 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.863282, "decimalLat": -38.6643 }, "geometry": { "type": "Point", "coordinates": [ 143.863, -38.664 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192028, "decimalLat": -27.701466 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234293, "decimalLat": -27.500255 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.918743, "decimalLat": -35.074042 }, "geometry": { "type": "Point", "coordinates": [ 138.919, -35.074 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079253, "decimalLat": -27.51523 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290988, "decimalLat": -37.874649 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732584, "decimalLat": -34.889643 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085253, "decimalLat": -27.510505 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.303241, "decimalLat": -38.369088 }, "geometry": { "type": "Point", "coordinates": [ 145.303, -38.369 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.306035, "decimalLat": -38.384463 }, "geometry": { "type": "Point", "coordinates": [ 145.306, -38.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.356839, "decimalLat": -27.938968 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.443663, "decimalLat": -28.104364 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.104 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.045242, "decimalLat": -27.256913 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.576369, "decimalLat": -35.063064 }, "geometry": { "type": "Point", "coordinates": [ 138.576, -35.063 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092065, "decimalLat": -27.52713 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.560511, "decimalLat": -27.372427 }, "geometry": { "type": "Point", "coordinates": [ 152.561, -27.372 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719837, "decimalLat": -34.892043 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.082791, "decimalLat": -33.137262 }, "geometry": { "type": "Point", "coordinates": [ 151.083, -33.137 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.476629, "decimalLat": -38.804048 }, "geometry": { "type": "Point", "coordinates": [ 143.477, -38.804 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092945, "decimalLat": -27.528227 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05819, "decimalLat": -27.546965 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090966, "decimalLat": -27.526616 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111828, "decimalLat": -27.528948 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.588547, "decimalLat": -34.756997 }, "geometry": { "type": "Point", "coordinates": [ 146.589, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.870937, "decimalLat": -37.648881 }, "geometry": { "type": "Point", "coordinates": [ 143.871, -37.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057122, "decimalLat": -27.551511 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.302819, "decimalLat": -38.951237 }, "geometry": { "type": "Point", "coordinates": [ 146.303, -38.951 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071597, "decimalLat": -27.509765 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103817, "decimalLat": -27.530545 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.689223, "decimalLat": -35.08766 }, "geometry": { "type": "Point", "coordinates": [ 138.689, -35.088 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.628978, "decimalLat": -35.033418 }, "geometry": { "type": "Point", "coordinates": [ 138.629, -35.033 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093107, "decimalLat": -27.524948 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106695, "decimalLat": -27.528898 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061417, "decimalLat": -32.709678 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081965, "decimalLat": -27.507964 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.742121, "decimalLat": -37.55443 }, "geometry": { "type": "Point", "coordinates": [ 149.742, -37.554 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.485511, "decimalLat": -37.490327 }, "geometry": { "type": "Point", "coordinates": [ 144.486, -37.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111571, "decimalLat": -27.528984 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.679773, "decimalLat": -34.942151 }, "geometry": { "type": "Point", "coordinates": [ 138.68, -34.942 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722577, "decimalLat": -34.891174 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083244, "decimalLat": -27.51211 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.397497, "decimalLat": -28.261574 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082868, "decimalLat": -27.50621 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003114, "decimalLat": -27.413267 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.737153, "decimalLat": -27.693842 }, "geometry": { "type": "Point", "coordinates": [ 152.737, -27.694 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057327, "decimalLat": -27.551369 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.049227, "decimalLat": -38.26579 }, "geometry": { "type": "Point", "coordinates": [ 145.049, -38.266 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.925691, "decimalLat": -37.654905 }, "geometry": { "type": "Point", "coordinates": [ 143.926, -37.655 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.775406, "decimalLat": -38.203322 }, "geometry": { "type": "Point", "coordinates": [ 141.775, -38.203 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.663087, "decimalLat": -37.754295 }, "geometry": { "type": "Point", "coordinates": [ 145.663, -37.754 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.750039, "decimalLat": -26.155358 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.0594, "decimalLat": -27.260088 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -27.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.743453, "decimalLat": -38.548672 }, "geometry": { "type": "Point", "coordinates": [ 143.743, -38.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.194755, "decimalLat": -28.198925 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -28.199 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.032348, "decimalLat": -37.743026 }, "geometry": { "type": "Point", "coordinates": [ 142.032, -37.743 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68362, "decimalLat": -34.868411 }, "geometry": { "type": "Point", "coordinates": [ 138.684, -34.868 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.621095, "decimalLat": -34.894545 }, "geometry": { "type": "Point", "coordinates": [ 138.621, -34.895 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109102, "decimalLat": -27.526827 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.940934, "decimalLat": -27.426539 }, "geometry": { "type": "Point", "coordinates": [ 151.941, -27.427 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439378, "decimalLat": -28.138094 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091977, "decimalLat": -27.525757 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003028, "decimalLat": -27.413458 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104586, "decimalLat": -27.529317 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629619, "decimalLat": -28.637502 }, "geometry": { "type": "Point", "coordinates": [ 153.63, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399893, "decimalLat": -27.498222 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90139, "decimalLat": -31.442501 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.843093, "decimalLat": -27.589704 }, "geometry": { "type": "Point", "coordinates": [ 151.843, -27.59 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.269267, "decimalLat": -37.191133 }, "geometry": { "type": "Point", "coordinates": [ 148.269, -37.191 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993348, "decimalLat": -27.823805 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06057, "decimalLat": -27.550032 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.108867, "decimalLat": -26.808295 }, "geometry": { "type": "Point", "coordinates": [ 152.109, -26.808 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.611764, "decimalLat": -27.333328 }, "geometry": { "type": "Point", "coordinates": [ 152.612, -27.333 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.472183, "decimalLat": -35.903795 }, "geometry": { "type": "Point", "coordinates": [ 137.472, -35.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091822, "decimalLat": -27.526769 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103993, "decimalLat": -29.48928 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.452388, "decimalLat": -37.017162 }, "geometry": { "type": "Point", "coordinates": [ 145.452, -37.017 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.045843, "decimalLat": -27.255751 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.256 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70092, "decimalLat": -34.799167 }, "geometry": { "type": "Point", "coordinates": [ 138.701, -34.799 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.735511, "decimalLat": -34.82575 }, "geometry": { "type": "Point", "coordinates": [ 138.736, -34.826 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655861, "decimalLat": -35.009134 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103371, "decimalLat": -27.530076 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092093, "decimalLat": -27.526544 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.851685, "decimalLat": -27.472101 }, "geometry": { "type": "Point", "coordinates": [ 152.852, -27.472 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.620313, "decimalLat": -34.996453 }, "geometry": { "type": "Point", "coordinates": [ 138.62, -34.996 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073134, "decimalLat": -27.546384 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.814656, "decimalLat": -26.364506 }, "geometry": { "type": "Point", "coordinates": [ 151.815, -26.365 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.863708, "decimalLat": -27.340983 }, "geometry": { "type": "Point", "coordinates": [ 151.864, -27.341 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.740102, "decimalLat": -35.02509 }, "geometry": { "type": "Point", "coordinates": [ 138.74, -35.025 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085267, "decimalLat": -27.510447 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053631, "decimalLat": -27.543762 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.913272, "decimalLat": -28.047705 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -28.048 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92636, "decimalLat": -30.226729 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -30.227 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.31613, "decimalLat": -38.366832 }, "geometry": { "type": "Point", "coordinates": [ 145.316, -38.367 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.904765, "decimalLat": -37.581704 }, "geometry": { "type": "Point", "coordinates": [ 143.905, -37.582 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.444096, "decimalLat": -28.125171 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.125 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.82374, "decimalLat": -32.32704 }, "geometry": { "type": "Point", "coordinates": [ 151.824, -32.327 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 150.982309, "decimalLat": -25.105016 }, "geometry": { "type": "Point", "coordinates": [ 150.982, -25.105 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093114, "decimalLat": -27.528623 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.255165, "decimalLat": -38.139677 }, "geometry": { "type": "Point", "coordinates": [ 145.255, -38.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107768, "decimalLat": -27.527067 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.693497, "decimalLat": -34.921283 }, "geometry": { "type": "Point", "coordinates": [ 138.693, -34.921 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720275, "decimalLat": -34.892869 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104118, "decimalLat": -27.530001 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.590441, "decimalLat": -35.146364 }, "geometry": { "type": "Point", "coordinates": [ 138.59, -35.146 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.981237, "decimalLat": -27.297467 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -27.297 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.537432, "decimalLat": -35.219578 }, "geometry": { "type": "Point", "coordinates": [ 138.537, -35.22 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.958327, "decimalLat": -27.461285 }, "geometry": { "type": "Point", "coordinates": [ 151.958, -27.461 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090774, "decimalLat": -27.525129 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.907653, "decimalLat": -33.997212 }, "geometry": { "type": "Point", "coordinates": [ 150.908, -33.997 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.894144, "decimalLat": -37.594303 }, "geometry": { "type": "Point", "coordinates": [ 143.894, -37.594 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061538, "decimalLat": -27.221095 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.221 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073353, "decimalLat": -27.543133 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0924, "decimalLat": -27.528627 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083371, "decimalLat": -27.511438 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.675872, "decimalLat": -26.372772 }, "geometry": { "type": "Point", "coordinates": [ 151.676, -26.373 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072935, "decimalLat": -27.546027 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.393417, "decimalLat": -37.470347 }, "geometry": { "type": "Point", "coordinates": [ 145.393, -37.47 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092041, "decimalLat": -27.525753 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107301, "decimalLat": -27.527266 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377481, "decimalLat": -28.254031 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091614, "decimalLat": -27.526943 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057538, "decimalLat": -27.550736 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103657, "decimalLat": -27.529893 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092305, "decimalLat": -27.525429 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822085, "decimalLat": -34.101267 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189646, "decimalLat": -27.701124 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.82933, "decimalLat": -34.878097 }, "geometry": { "type": "Point", "coordinates": [ 146.829, -34.878 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000876, "decimalLat": -27.284465 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.566122, "decimalLat": -34.757663 }, "geometry": { "type": "Point", "coordinates": [ 146.566, -34.758 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.353509, "decimalLat": -27.909001 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046061, "decimalLat": -27.255412 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.255 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108872, "decimalLat": -27.527232 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868677, "decimalLat": -19.126093 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.126 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05778, "decimalLat": -27.551285 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.049653, "decimalLat": -27.265372 }, "geometry": { "type": "Point", "coordinates": [ 152.05, -27.265 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10445, "decimalLat": -27.529597 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.595367, "decimalLat": -34.77203 }, "geometry": { "type": "Point", "coordinates": [ 146.595, -34.772 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.620829, "decimalLat": -25.629485 }, "geometry": { "type": "Point", "coordinates": [ 151.621, -25.629 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046306, "decimalLat": -27.257203 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109473, "decimalLat": -27.526743 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.766353, "decimalLat": -26.17259 }, "geometry": { "type": "Point", "coordinates": [ 151.766, -26.173 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070132, "decimalLat": -27.510602 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.6052, "decimalLat": -28.163257 }, "geometry": { "type": "Point", "coordinates": [ 152.605, -28.163 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091623, "decimalLat": -27.526956 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37708, "decimalLat": -28.253552 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.877516, "decimalLat": -37.579137 }, "geometry": { "type": "Point", "coordinates": [ 143.878, -37.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.221167, "decimalLat": -27.23497 }, "geometry": { "type": "Point", "coordinates": [ 152.221, -27.235 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.775294, "decimalLat": -26.182073 }, "geometry": { "type": "Point", "coordinates": [ 151.775, -26.182 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003053, "decimalLat": -27.413678 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.632166, "decimalLat": -34.990772 }, "geometry": { "type": "Point", "coordinates": [ 138.632, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749888, "decimalLat": -26.155079 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721992, "decimalLat": -34.890234 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720122, "decimalLat": -34.873231 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.873 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.90182, "decimalLat": -37.592436 }, "geometry": { "type": "Point", "coordinates": [ 143.902, -37.592 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363123, "decimalLat": -38.318454 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109984, "decimalLat": -27.527717 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105388, "decimalLat": -27.529883 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103331, "decimalLat": -27.529984 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.24464, "decimalLat": -27.492655 }, "geometry": { "type": "Point", "coordinates": [ 152.245, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372739, "decimalLat": -27.911561 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.851971, "decimalLat": -28.082754 }, "geometry": { "type": "Point", "coordinates": [ 152.852, -28.083 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73697, "decimalLat": -34.912923 }, "geometry": { "type": "Point", "coordinates": [ 138.737, -34.913 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730089, "decimalLat": -34.890985 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.598938, "decimalLat": -27.941537 }, "geometry": { "type": "Point", "coordinates": [ 152.599, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16385, "decimalLat": -38.671213 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.660196, "decimalLat": -34.861586 }, "geometry": { "type": "Point", "coordinates": [ 138.66, -34.862 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073708, "decimalLat": -27.54583 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734874, "decimalLat": -34.88842 }, "geometry": { "type": "Point", "coordinates": [ 138.735, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092146, "decimalLat": -27.52727 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.088587, "decimalLat": -37.633664 }, "geometry": { "type": "Point", "coordinates": [ 144.089, -37.634 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.965554, "decimalLat": -27.268429 }, "geometry": { "type": "Point", "coordinates": [ 152.966, -27.268 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.946749, "decimalLat": -27.424819 }, "geometry": { "type": "Point", "coordinates": [ 151.947, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124589, "decimalLat": -30.295612 }, "geometry": { "type": "Point", "coordinates": [ 153.125, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093005, "decimalLat": -27.52432 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.062996, "decimalLat": -27.262234 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -27.262 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722521, "decimalLat": -34.890181 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.849395, "decimalLat": -34.077179 }, "geometry": { "type": "Point", "coordinates": [ 150.849, -34.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090984, "decimalLat": -27.526421 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092041, "decimalLat": -27.527195 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004411, "decimalLat": -27.414678 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061695, "decimalLat": -27.544429 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.482358, "decimalLat": -26.540943 }, "geometry": { "type": "Point", "coordinates": [ 152.482, -26.541 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091406, "decimalLat": -27.527734 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072983, "decimalLat": -27.54788 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.030967, "decimalLat": -27.936865 }, "geometry": { "type": "Point", "coordinates": [ 153.031, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.310387, "decimalLat": -37.277009 }, "geometry": { "type": "Point", "coordinates": [ 144.31, -37.277 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056351, "decimalLat": -27.542353 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001442, "decimalLat": -27.166504 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.167 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.618164, "decimalLat": -27.895745 }, "geometry": { "type": "Point", "coordinates": [ 152.618, -27.896 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733974, "decimalLat": -34.887425 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.042448, "decimalLat": -33.781183 }, "geometry": { "type": "Point", "coordinates": [ 150.042, -33.781 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.047837, "decimalLat": -27.554473 }, "geometry": { "type": "Point", "coordinates": [ 153.048, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.209432, "decimalLat": -37.402225 }, "geometry": { "type": "Point", "coordinates": [ 142.209, -37.402 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21746, "decimalLat": -27.547354 }, "geometry": { "type": "Point", "coordinates": [ 153.217, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.127376, "decimalLat": -26.191125 }, "geometry": { "type": "Point", "coordinates": [ 152.127, -26.191 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.443055, "decimalLat": -28.105739 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 147.522598, "decimalLat": -22.632809 }, "geometry": { "type": "Point", "coordinates": [ 147.523, -22.633 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003114, "decimalLat": -27.413575 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057796, "decimalLat": -27.552753 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06921, "decimalLat": -27.510958 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.16061, "decimalLat": -28.874945 }, "geometry": { "type": "Point", "coordinates": [ 153.161, -28.875 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1833, "decimalLat": -27.53118 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401004, "decimalLat": -28.256364 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.736583, "decimalLat": -35.03678 }, "geometry": { "type": "Point", "coordinates": [ 138.737, -35.037 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860853, "decimalLat": -38.668514 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.669 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6567, "decimalLat": -35.006989 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -35.007 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.03747, "decimalLat": -27.54804 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.663736, "decimalLat": -37.754656 }, "geometry": { "type": "Point", "coordinates": [ 145.664, -37.755 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.261445, "decimalLat": -38.484292 }, "geometry": { "type": "Point", "coordinates": [ 145.261, -38.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103731, "decimalLat": -27.53008 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092949, "decimalLat": -27.5281 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073843, "decimalLat": -27.545526 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655203, "decimalLat": -34.948238 }, "geometry": { "type": "Point", "coordinates": [ 138.655, -34.948 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09158, "decimalLat": -27.526901 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721458, "decimalLat": -34.891902 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.751118, "decimalLat": -38.090085 }, "geometry": { "type": "Point", "coordinates": [ 141.751, -38.09 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.050075, "decimalLat": -27.549131 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.267746, "decimalLat": -36.226437 }, "geometry": { "type": "Point", "coordinates": [ 146.268, -36.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085603, "decimalLat": -27.507075 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.727805, "decimalLat": -34.888717 }, "geometry": { "type": "Point", "coordinates": [ 138.728, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.679297, "decimalLat": -35.000188 }, "geometry": { "type": "Point", "coordinates": [ 138.679, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058239, "decimalLat": -27.546702 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092319, "decimalLat": -27.527785 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.716478, "decimalLat": -27.5686 }, "geometry": { "type": "Point", "coordinates": [ 151.716, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.699858, "decimalLat": -35.069114 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.069 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731547, "decimalLat": -34.890479 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377067, "decimalLat": -28.254231 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.75272, "decimalLat": -34.994599 }, "geometry": { "type": "Point", "coordinates": [ 138.753, -34.995 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072691, "decimalLat": -27.544899 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108868, "decimalLat": -27.526829 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084819, "decimalLat": -27.506577 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377037, "decimalLat": -28.254089 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.174967, "decimalLat": -27.596876 }, "geometry": { "type": "Point", "coordinates": [ 153.175, -27.597 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059223, "decimalLat": -27.551424 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093103, "decimalLat": -27.527384 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.687923, "decimalLat": -21.687571 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.688 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.649849, "decimalLat": -35.004099 }, "geometry": { "type": "Point", "coordinates": [ 138.65, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.556938, "decimalLat": -27.226822 }, "geometry": { "type": "Point", "coordinates": [ 152.557, -27.227 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057187, "decimalLat": -27.543275 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.654686, "decimalLat": -35.004731 }, "geometry": { "type": "Point", "coordinates": [ 138.655, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241687, "decimalLat": -28.006361 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -28.006 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112737, "decimalLat": -27.527876 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.820166, "decimalLat": -26.171908 }, "geometry": { "type": "Point", "coordinates": [ 151.82, -26.172 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.63259, "decimalLat": -38.321294 }, "geometry": { "type": "Point", "coordinates": [ 142.633, -38.321 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.069228, "decimalLat": -31.133297 }, "geometry": { "type": "Point", "coordinates": [ 150.069, -31.133 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.654799, "decimalLat": -26.401998 }, "geometry": { "type": "Point", "coordinates": [ 152.655, -26.402 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39312, "decimalLat": -28.26957 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.27 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060026, "decimalLat": -27.551062 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.936886, "decimalLat": -27.275308 }, "geometry": { "type": "Point", "coordinates": [ 152.937, -27.275 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.728717, "decimalLat": -34.889841 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999957, "decimalLat": -27.284277 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003006, "decimalLat": -27.41308 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.77171, "decimalLat": -35.778817 }, "geometry": { "type": "Point", "coordinates": [ 137.772, -35.779 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110532, "decimalLat": -27.527096 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.487533, "decimalLat": -36.948558 }, "geometry": { "type": "Point", "coordinates": [ 145.488, -36.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377429, "decimalLat": -28.253972 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.853474, "decimalLat": -34.08267 }, "geometry": { "type": "Point", "coordinates": [ 150.853, -34.083 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.553341, "decimalLat": -27.812771 }, "geometry": { "type": "Point", "coordinates": [ 151.553, -27.813 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072785, "decimalLat": -27.546462 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.585918, "decimalLat": -29.857211 }, "geometry": { "type": "Point", "coordinates": [ 150.586, -29.857 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163682, "decimalLat": -38.671037 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.930388, "decimalLat": -27.331117 }, "geometry": { "type": "Point", "coordinates": [ 151.93, -27.331 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.099839, "decimalLat": -27.530025 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870615, "decimalLat": -19.124324 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.124 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.40481, "decimalLat": -27.456817 }, "geometry": { "type": "Point", "coordinates": [ 152.405, -27.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.07452, "decimalLat": -27.358427 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.266178, "decimalLat": -38.13197 }, "geometry": { "type": "Point", "coordinates": [ 145.266, -38.132 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.826933, "decimalLat": -34.692015 }, "geometry": { "type": "Point", "coordinates": [ 138.827, -34.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.645415, "decimalLat": -35.002388 }, "geometry": { "type": "Point", "coordinates": [ 138.645, -35.002 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.890209, "decimalLat": -37.619181 }, "geometry": { "type": "Point", "coordinates": [ 143.89, -37.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.587937, "decimalLat": -27.162508 }, "geometry": { "type": "Point", "coordinates": [ 152.588, -27.163 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999663, "decimalLat": -27.312655 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.313 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.57895, "decimalLat": -35.153994 }, "geometry": { "type": "Point", "coordinates": [ 138.579, -35.154 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073707, "decimalLat": -27.545828 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163852, "decimalLat": -38.671153 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.888844, "decimalLat": -27.600156 }, "geometry": { "type": "Point", "coordinates": [ 151.889, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103689, "decimalLat": -27.530137 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734848, "decimalLat": -34.887322 }, "geometry": { "type": "Point", "coordinates": [ 138.735, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.524548, "decimalLat": -38.819212 }, "geometry": { "type": "Point", "coordinates": [ 143.525, -38.819 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090603, "decimalLat": -27.526003 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.364813, "decimalLat": -27.901639 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.902 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.924867, "decimalLat": -38.430125 }, "geometry": { "type": "Point", "coordinates": [ 144.925, -38.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108857, "decimalLat": -27.527019 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.906601, "decimalLat": -28.17387 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -28.174 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052313, "decimalLat": -27.548353 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103715, "decimalLat": -27.530038 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093258, "decimalLat": -27.525575 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036836, "decimalLat": -27.535816 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.899086, "decimalLat": -37.640868 }, "geometry": { "type": "Point", "coordinates": [ 143.899, -37.641 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001262, "decimalLat": -27.284835 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083876, "decimalLat": -27.529445 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.751342, "decimalLat": -34.997821 }, "geometry": { "type": "Point", "coordinates": [ 138.751, -34.998 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092253, "decimalLat": -27.525661 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.589172, "decimalLat": -34.757328 }, "geometry": { "type": "Point", "coordinates": [ 146.589, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.376912, "decimalLat": -27.919474 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108199, "decimalLat": -27.527035 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.659287, "decimalLat": -34.864596 }, "geometry": { "type": "Point", "coordinates": [ 138.659, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090831, "decimalLat": -27.526957 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106458, "decimalLat": -27.529004 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37797, "decimalLat": -28.254519 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091788, "decimalLat": -27.52697 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066825, "decimalLat": -27.547024 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.138793, "decimalLat": -27.572433 }, "geometry": { "type": "Point", "coordinates": [ 152.139, -27.572 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062907, "decimalLat": -27.549628 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.447056, "decimalLat": -28.093048 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.179453, "decimalLat": -27.564083 }, "geometry": { "type": "Point", "coordinates": [ 152.179, -27.564 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.946971, "decimalLat": -28.124575 }, "geometry": { "type": "Point", "coordinates": [ 152.947, -28.125 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103018, "decimalLat": -27.527888 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.891385, "decimalLat": -27.373489 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -27.373 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.274537, "decimalLat": -38.129442 }, "geometry": { "type": "Point", "coordinates": [ 145.275, -38.129 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70162, "decimalLat": -34.902241 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09213, "decimalLat": -27.527267 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.440004, "decimalLat": -37.089156 }, "geometry": { "type": "Point", "coordinates": [ 145.44, -37.089 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092176, "decimalLat": -27.527352 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.58489, "decimalLat": -37.521188 }, "geometry": { "type": "Point", "coordinates": [ 144.585, -37.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057446, "decimalLat": -27.552554 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.636633, "decimalLat": -34.990102 }, "geometry": { "type": "Point", "coordinates": [ 138.637, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.123294, "decimalLat": -37.576957 }, "geometry": { "type": "Point", "coordinates": [ 144.123, -37.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09156, "decimalLat": -27.527144 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073236, "decimalLat": -27.545887 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377544, "decimalLat": -28.254155 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090632, "decimalLat": -27.526835 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084397, "decimalLat": -27.509522 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656945, "decimalLat": -34.865213 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091677, "decimalLat": -27.527229 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.961007, "decimalLat": -34.816266 }, "geometry": { "type": "Point", "coordinates": [ 138.961, -34.816 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.408187, "decimalLat": -31.932636 }, "geometry": { "type": "Point", "coordinates": [ 152.408, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072365, "decimalLat": -27.544588 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091943, "decimalLat": -27.527223 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.53548, "decimalLat": -38.79 }, "geometry": { "type": "Point", "coordinates": [ 143.535, -38.79 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000835, "decimalLat": -27.28448 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.579705, "decimalLat": -38.742749 }, "geometry": { "type": "Point", "coordinates": [ 143.58, -38.743 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.706847, "decimalLat": -34.978211 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.978 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.983333, "decimalLat": -26.15 }, "geometry": { "type": "Point", "coordinates": [ 151.983, -26.15 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.212885, "decimalLat": -26.138775 }, "geometry": { "type": "Point", "coordinates": [ 152.213, -26.139 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090924, "decimalLat": -27.527048 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.95246, "decimalLat": -26.544638 }, "geometry": { "type": "Point", "coordinates": [ 151.952, -26.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072033, "decimalLat": -27.549243 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103927, "decimalLat": -27.530937 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.425585, "decimalLat": -27.468741 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -27.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703251, "decimalLat": -34.902917 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268791, "decimalLat": -38.130626 }, "geometry": { "type": "Point", "coordinates": [ 145.269, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090688, "decimalLat": -27.52721 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092295, "decimalLat": -27.527434 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092796, "decimalLat": -27.528485 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375594, "decimalLat": -28.252362 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.932847, "decimalLat": -27.330695 }, "geometry": { "type": "Point", "coordinates": [ 151.933, -27.331 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722344, "decimalLat": -34.889762 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073465, "decimalLat": -27.545613 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.217616, "decimalLat": -38.05704 }, "geometry": { "type": "Point", "coordinates": [ 141.218, -38.057 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.700438, "decimalLat": -34.963271 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.963 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092388, "decimalLat": -27.525526 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.639953, "decimalLat": -35.647725 }, "geometry": { "type": "Point", "coordinates": [ 137.64, -35.648 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163789, "decimalLat": -38.671322 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082433, "decimalLat": -27.509815 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.209974, "decimalLat": -38.699115 }, "geometry": { "type": "Point", "coordinates": [ 146.21, -38.699 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057376, "decimalLat": -27.551379 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4568, "decimalLat": -28.09395 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.53332, "decimalLat": -38.811596 }, "geometry": { "type": "Point", "coordinates": [ 143.533, -38.812 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.109974, "decimalLat": -26.781357 }, "geometry": { "type": "Point", "coordinates": [ 151.11, -26.781 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715601, "decimalLat": -34.892543 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.783934, "decimalLat": -26.307064 }, "geometry": { "type": "Point", "coordinates": [ 151.784, -26.307 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.297226, "decimalLat": -38.383388 }, "geometry": { "type": "Point", "coordinates": [ 145.297, -38.383 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092835, "decimalLat": -27.522766 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.007948, "decimalLat": -34.084161 }, "geometry": { "type": "Point", "coordinates": [ 151.008, -34.084 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721948, "decimalLat": -34.890651 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.646937, "decimalLat": -35.00394 }, "geometry": { "type": "Point", "coordinates": [ 138.647, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004663, "decimalLat": -27.411503 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -27.412 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688203, "decimalLat": -21.687283 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.687 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092245, "decimalLat": -27.528026 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.571498, "decimalLat": -35.036935 }, "geometry": { "type": "Point", "coordinates": [ 138.571, -35.037 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.714449, "decimalLat": -34.892746 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.631763, "decimalLat": -38.341303 }, "geometry": { "type": "Point", "coordinates": [ 142.632, -38.341 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.569659, "decimalLat": -34.755807 }, "geometry": { "type": "Point", "coordinates": [ 146.57, -34.756 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376828, "decimalLat": -28.253845 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.593333, "decimalLat": -38.823056 }, "geometry": { "type": "Point", "coordinates": [ 143.593, -38.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.767612, "decimalLat": -38.510504 }, "geometry": { "type": "Point", "coordinates": [ 145.768, -38.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109778, "decimalLat": -27.527989 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.857309, "decimalLat": -27.544032 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109259, "decimalLat": -27.529778 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.649363, "decimalLat": -35.009079 }, "geometry": { "type": "Point", "coordinates": [ 138.649, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242367, "decimalLat": -28.230267 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -28.23 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105314, "decimalLat": -27.530339 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092343, "decimalLat": -27.525033 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.717783, "decimalLat": -34.892086 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095292, "decimalLat": -33.076314 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375337, "decimalLat": -28.252545 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.969876, "decimalLat": -26.165406 }, "geometry": { "type": "Point", "coordinates": [ 151.97, -26.165 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718026, "decimalLat": -34.891679 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090882, "decimalLat": -27.525855 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.937867, "decimalLat": -27.416929 }, "geometry": { "type": "Point", "coordinates": [ 151.938, -27.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394826, "decimalLat": -28.274568 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.275 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702817, "decimalLat": -34.931111 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.931 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092383, "decimalLat": -27.527072 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.838942, "decimalLat": -26.371981 }, "geometry": { "type": "Point", "coordinates": [ 152.839, -26.372 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101707, "decimalLat": -27.735147 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.735 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82695, "decimalLat": -34.096097 }, "geometry": { "type": "Point", "coordinates": [ 150.827, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.709648, "decimalLat": -34.904352 }, "geometry": { "type": "Point", "coordinates": [ 138.71, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110175, "decimalLat": -27.529156 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733756, "decimalLat": -34.886288 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277645, "decimalLat": -29.004116 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -29.004 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109135, "decimalLat": -27.526791 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.115672, "decimalLat": -28.318819 }, "geometry": { "type": "Point", "coordinates": [ 152.116, -28.319 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.256697, "decimalLat": -38.243153 }, "geometry": { "type": "Point", "coordinates": [ 145.257, -38.243 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.089608, "decimalLat": -27.509545 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400824, "decimalLat": -28.255296 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.151142, "decimalLat": -27.583787 }, "geometry": { "type": "Point", "coordinates": [ 153.151, -27.584 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092256, "decimalLat": -27.528026 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103742, "decimalLat": -27.528414 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860589, "decimalLat": -38.668072 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.2095, "decimalLat": -37.83026 }, "geometry": { "type": "Point", "coordinates": [ 144.21, -37.83 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090001, "decimalLat": -27.534993 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.864598, "decimalLat": -19.145904 }, "geometry": { "type": "Point", "coordinates": [ 146.865, -19.146 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.916687, "decimalLat": -27.122186 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -27.122 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08522, "decimalLat": -27.509128 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.613539, "decimalLat": -38.775645 }, "geometry": { "type": "Point", "coordinates": [ 143.614, -38.776 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732092, "decimalLat": -34.890551 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439087, "decimalLat": -27.409013 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.409 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058465, "decimalLat": -27.547995 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068025, "decimalLat": -27.222728 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.223 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.116901, "decimalLat": -27.53028 }, "geometry": { "type": "Point", "coordinates": [ 153.117, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09233, "decimalLat": -27.527876 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103914, "decimalLat": -27.530383 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.18922, "decimalLat": -37.298888 }, "geometry": { "type": "Point", "coordinates": [ 144.189, -37.299 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110289, "decimalLat": -27.527842 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059628, "decimalLat": -27.551377 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.612576, "decimalLat": -27.370302 }, "geometry": { "type": "Point", "coordinates": [ 151.613, -27.37 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.597176, "decimalLat": -34.770685 }, "geometry": { "type": "Point", "coordinates": [ 146.597, -34.771 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314904, "decimalLat": -38.372164 }, "geometry": { "type": "Point", "coordinates": [ 145.315, -38.372 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.050186, "decimalLat": -27.265967 }, "geometry": { "type": "Point", "coordinates": [ 152.05, -27.266 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036697, "decimalLat": -27.534655 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091923, "decimalLat": -27.526918 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.583924, "decimalLat": -37.520313 }, "geometry": { "type": "Point", "coordinates": [ 144.584, -37.52 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749888, "decimalLat": -26.155079 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.444634, "decimalLat": -28.101895 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.102 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164139, "decimalLat": -38.671453 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.512725, "decimalLat": -38.835372 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.835 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058932, "decimalLat": -27.551563 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090616, "decimalLat": -27.526019 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092569, "decimalLat": -27.527649 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.976089, "decimalLat": -27.271357 }, "geometry": { "type": "Point", "coordinates": [ 152.976, -27.271 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749888, "decimalLat": -26.155079 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080721, "decimalLat": -27.512157 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.550645, "decimalLat": -34.746608 }, "geometry": { "type": "Point", "coordinates": [ 146.551, -34.747 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.697911, "decimalLat": -34.958706 }, "geometry": { "type": "Point", "coordinates": [ 138.698, -34.959 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.514296, "decimalLat": -38.835615 }, "geometry": { "type": "Point", "coordinates": [ 143.514, -38.836 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103705, "decimalLat": -27.530125 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.653769, "decimalLat": -35.016008 }, "geometry": { "type": "Point", "coordinates": [ 138.654, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.856012, "decimalLat": -28.202536 }, "geometry": { "type": "Point", "coordinates": [ 152.856, -28.203 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080131, "decimalLat": -27.504744 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.772632, "decimalLat": -26.199667 }, "geometry": { "type": "Point", "coordinates": [ 151.773, -26.2 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387359, "decimalLat": -38.356991 }, "geometry": { "type": "Point", "coordinates": [ 146.387, -38.357 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057814, "decimalLat": -27.792486 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.792 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438182, "decimalLat": -27.400985 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.861147, "decimalLat": -38.670077 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.67 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058464, "decimalLat": -27.547904 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.551567, "decimalLat": -35.245923 }, "geometry": { "type": "Point", "coordinates": [ 138.552, -35.246 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093353, "decimalLat": -27.525591 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103702, "decimalLat": -27.529371 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.123628, "decimalLat": -27.533975 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.963809, "decimalLat": -37.840852 }, "geometry": { "type": "Point", "coordinates": [ 140.964, -37.841 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.789226, "decimalLat": -26.192108 }, "geometry": { "type": "Point", "coordinates": [ 151.789, -26.192 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400849, "decimalLat": -28.258093 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.269592, "decimalLat": -37.209603 }, "geometry": { "type": "Point", "coordinates": [ 148.27, -37.21 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061445, "decimalLat": -27.534492 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.174803, "decimalLat": -37.821697 }, "geometry": { "type": "Point", "coordinates": [ 144.175, -37.822 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069808, "decimalLat": -27.510502 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.001922, "decimalLat": -27.41068 }, "geometry": { "type": "Point", "coordinates": [ 152.002, -27.411 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103904, "decimalLat": -27.528299 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.893433, "decimalLat": -27.599535 }, "geometry": { "type": "Point", "coordinates": [ 151.893, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103299, "decimalLat": -27.530296 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.499712, "decimalLat": -27.393455 }, "geometry": { "type": "Point", "coordinates": [ 152.5, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.449731, "decimalLat": -28.119131 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.119 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084037, "decimalLat": -27.511905 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.514622, "decimalLat": -38.835801 }, "geometry": { "type": "Point", "coordinates": [ 143.515, -38.836 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09, "decimalLat": -27.637047 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.637 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073595, "decimalLat": -27.545742 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.213242, "decimalLat": -38.246195 }, "geometry": { "type": "Point", "coordinates": [ 145.213, -38.246 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.368218, "decimalLat": -36.340323 }, "geometry": { "type": "Point", "coordinates": [ 145.368, -36.34 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.945008, "decimalLat": -38.430488 }, "geometry": { "type": "Point", "coordinates": [ 144.945, -38.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.617918, "decimalLat": -34.905745 }, "geometry": { "type": "Point", "coordinates": [ 138.618, -34.906 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0575, "decimalLat": -27.551389 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073828, "decimalLat": -27.545693 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.988862, "decimalLat": -27.169922 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -27.17 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437761, "decimalLat": -27.4043 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.404 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091353, "decimalLat": -27.527433 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058106, "decimalLat": -27.546826 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377402, "decimalLat": -28.253934 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.49031, "decimalLat": -38.100748 }, "geometry": { "type": "Point", "coordinates": [ 141.49, -38.101 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073883, "decimalLat": -27.545608 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.716034, "decimalLat": -27.568117 }, "geometry": { "type": "Point", "coordinates": [ 151.716, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072849, "decimalLat": -27.545938 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.869537, "decimalLat": -27.330362 }, "geometry": { "type": "Point", "coordinates": [ 151.87, -27.33 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090943, "decimalLat": -27.525868 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061417, "decimalLat": -27.53439 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.325026, "decimalLat": -27.913623 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.175764, "decimalLat": -33.58608 }, "geometry": { "type": "Point", "coordinates": [ 151.176, -33.586 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.707062, "decimalLat": -34.905272 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.905 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09235, "decimalLat": -27.525607 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.677429, "decimalLat": -27.986511 }, "geometry": { "type": "Point", "coordinates": [ 152.677, -27.987 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.299685, "decimalLat": -37.827689 }, "geometry": { "type": "Point", "coordinates": [ 144.3, -37.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104013, "decimalLat": -27.530808 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.381276, "decimalLat": -27.96354 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.964 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091001, "decimalLat": -27.526884 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090822, "decimalLat": -27.527693 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.880451, "decimalLat": -26.313407 }, "geometry": { "type": "Point", "coordinates": [ 151.88, -26.313 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.644612, "decimalLat": -35.004237 }, "geometry": { "type": "Point", "coordinates": [ 138.645, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.769552, "decimalLat": -26.371076 }, "geometry": { "type": "Point", "coordinates": [ 151.77, -26.371 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.878536, "decimalLat": -37.63247 }, "geometry": { "type": "Point", "coordinates": [ 143.879, -37.632 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268687, "decimalLat": -38.130713 }, "geometry": { "type": "Point", "coordinates": [ 145.269, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163673, "decimalLat": -38.670995 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.745912, "decimalLat": -26.15627 }, "geometry": { "type": "Point", "coordinates": [ 151.746, -26.156 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059034, "decimalLat": -27.555128 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.00068, "decimalLat": -27.284152 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107382, "decimalLat": -27.527177 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.899047, "decimalLat": -37.616697 }, "geometry": { "type": "Point", "coordinates": [ 143.899, -37.617 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.707409, "decimalLat": -34.903824 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.535707, "decimalLat": -38.783901 }, "geometry": { "type": "Point", "coordinates": [ 143.536, -38.784 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163868, "decimalLat": -38.671179 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.049812, "decimalLat": -27.549455 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09229, "decimalLat": -27.528012 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090027, "decimalLat": -27.537148 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.735019, "decimalLat": -34.8887 }, "geometry": { "type": "Point", "coordinates": [ 138.735, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110432, "decimalLat": -27.527345 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400742, "decimalLat": -28.258194 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090911, "decimalLat": -27.526941 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.869378, "decimalLat": -19.127443 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.82736, "decimalLat": -26.109577 }, "geometry": { "type": "Point", "coordinates": [ 151.827, -26.11 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713421, "decimalLat": -34.892559 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000846, "decimalLat": -27.28448 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104095, "decimalLat": -27.528995 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.026184, "decimalLat": -27.653402 }, "geometry": { "type": "Point", "coordinates": [ 152.026, -27.653 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.258928, "decimalLat": -28.103128 }, "geometry": { "type": "Point", "coordinates": [ 151.259, -28.103 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.029175, "decimalLat": -27.251669 }, "geometry": { "type": "Point", "coordinates": [ 153.029, -27.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.422352, "decimalLat": -26.131857 }, "geometry": { "type": "Point", "coordinates": [ 151.422, -26.132 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.722621, "decimalLat": -37.54541 }, "geometry": { "type": "Point", "coordinates": [ 144.723, -37.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092526, "decimalLat": -27.524892 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092408, "decimalLat": -27.528372 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092749, "decimalLat": -27.525272 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091494, "decimalLat": -27.52726 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086445, "decimalLat": -27.505963 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.901787, "decimalLat": -27.621833 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.622 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.629765, "decimalLat": -38.341075 }, "geometry": { "type": "Point", "coordinates": [ 142.63, -38.341 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.72727, "decimalLat": -27.879846 }, "geometry": { "type": "Point", "coordinates": [ 152.727, -27.88 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10345, "decimalLat": -27.528258 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073765, "decimalLat": -27.55305 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058516, "decimalLat": -27.551381 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.233883, "decimalLat": -33.119112 }, "geometry": { "type": "Point", "coordinates": [ 151.234, -33.119 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092757, "decimalLat": -27.525348 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11227, "decimalLat": -27.529263 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112136, "decimalLat": -27.52925 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105369, "decimalLat": -27.52992 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.38513, "decimalLat": -38.367553 }, "geometry": { "type": "Point", "coordinates": [ 146.385, -38.368 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656653, "decimalLat": -35.004861 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.541002, "decimalLat": -34.753189 }, "geometry": { "type": "Point", "coordinates": [ 146.541, -34.753 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093437, "decimalLat": -27.528253 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092178, "decimalLat": -27.027292 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.027 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394509, "decimalLat": -28.271479 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.271 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.852012, "decimalLat": -38.671905 }, "geometry": { "type": "Point", "coordinates": [ 143.852, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.995885, "decimalLat": -27.40545 }, "geometry": { "type": "Point", "coordinates": [ 151.996, -27.405 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.472779, "decimalLat": -33.758096 }, "geometry": { "type": "Point", "coordinates": [ 149.473, -33.758 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.86085, "decimalLat": -38.668067 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.257049, "decimalLat": -36.193298 }, "geometry": { "type": "Point", "coordinates": [ 145.257, -36.193 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.866218, "decimalLat": -28.211399 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.211 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.530092, "decimalLat": -34.745175 }, "geometry": { "type": "Point", "coordinates": [ 146.53, -34.745 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387768, "decimalLat": -38.354832 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093282, "decimalLat": -27.526766 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.727407, "decimalLat": -34.864681 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656737, "decimalLat": -34.865333 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078591, "decimalLat": -27.555479 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868438, "decimalLat": -19.126164 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.126 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.367085, "decimalLat": -38.315837 }, "geometry": { "type": "Point", "coordinates": [ 142.367, -38.316 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.271204, "decimalLat": -37.860846 }, "geometry": { "type": "Point", "coordinates": [ 144.271, -37.861 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720029, "decimalLat": -34.891777 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40454, "decimalLat": -27.494399 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378355, "decimalLat": -28.80432 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.804 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.411575, "decimalLat": -36.876408 }, "geometry": { "type": "Point", "coordinates": [ 145.412, -36.876 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05315, "decimalLat": -27.539504 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.726796, "decimalLat": -38.081626 }, "geometry": { "type": "Point", "coordinates": [ 141.727, -38.082 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.88594, "decimalLat": -37.620134 }, "geometry": { "type": "Point", "coordinates": [ 143.886, -37.62 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376635, "decimalLat": -28.253245 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090975, "decimalLat": -27.526448 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.773192, "decimalLat": -38.481069 }, "geometry": { "type": "Point", "coordinates": [ 146.773, -38.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.518969, "decimalLat": -30.52002 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074579, "decimalLat": -27.358524 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.677987, "decimalLat": -27.98732 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -27.987 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09276, "decimalLat": -27.528481 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092391, "decimalLat": -27.527253 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111169, "decimalLat": -27.527188 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.404606, "decimalLat": -28.260781 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.293258, "decimalLat": -38.3106 }, "geometry": { "type": "Point", "coordinates": [ 145.293, -38.311 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40054, "decimalLat": -28.25768 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055996, "decimalLat": -27.550708 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749888, "decimalLat": -26.155079 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.147261, "decimalLat": -27.509969 }, "geometry": { "type": "Point", "coordinates": [ 152.147, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.624401, "decimalLat": -34.89342 }, "geometry": { "type": "Point", "coordinates": [ 138.624, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124267, "decimalLat": -30.294158 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.294 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092414, "decimalLat": -27.52507 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103242, "decimalLat": -27.530402 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093129, "decimalLat": -27.526888 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268483, "decimalLat": -38.130675 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.63641, "decimalLat": -25.646175 }, "geometry": { "type": "Point", "coordinates": [ 151.636, -25.646 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051861, "decimalLat": -27.548558 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072281, "decimalLat": -27.544951 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05807, "decimalLat": -27.550964 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103752, "decimalLat": -27.53016 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.089673, "decimalLat": -27.535054 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749845, "decimalLat": -26.155079 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.905587, "decimalLat": -27.395745 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.115005, "decimalLat": -27.528796 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109999, "decimalLat": -27.527294 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093025, "decimalLat": -27.528542 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046137, "decimalLat": -27.255994 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.256 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090779, "decimalLat": -27.526928 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902283, "decimalLat": -31.44215 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.4928, "decimalLat": -35.188177 }, "geometry": { "type": "Point", "coordinates": [ 138.493, -35.188 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072115, "decimalLat": -27.544536 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.639336, "decimalLat": -35.069567 }, "geometry": { "type": "Point", "coordinates": [ 138.639, -35.07 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.305535, "decimalLat": -31.186705 }, "geometry": { "type": "Point", "coordinates": [ 150.306, -31.187 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27426, "decimalLat": -38.129222 }, "geometry": { "type": "Point", "coordinates": [ 145.274, -38.129 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712966, "decimalLat": -34.89127 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072825, "decimalLat": -27.546027 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.617308, "decimalLat": -28.132469 }, "geometry": { "type": "Point", "coordinates": [ 152.617, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.61325, "decimalLat": -27.328775 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -27.329 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104073, "decimalLat": -27.529093 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.837168, "decimalLat": -27.529735 }, "geometry": { "type": "Point", "coordinates": [ 152.837, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108607, "decimalLat": -27.527407 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091534, "decimalLat": -27.527022 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092568, "decimalLat": -27.527208 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.853401, "decimalLat": -34.082316 }, "geometry": { "type": "Point", "coordinates": [ 150.853, -34.082 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.865602, "decimalLat": -34.044691 }, "geometry": { "type": "Point", "coordinates": [ 150.866, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.269748, "decimalLat": -38.13226 }, "geometry": { "type": "Point", "coordinates": [ 145.27, -38.132 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.125674, "decimalLat": -37.906457 }, "geometry": { "type": "Point", "coordinates": [ 144.126, -37.906 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.645044, "decimalLat": -35.007458 }, "geometry": { "type": "Point", "coordinates": [ 138.645, -35.007 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091751, "decimalLat": -27.526809 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.00418, "decimalLat": -34.048627 }, "geometry": { "type": "Point", "coordinates": [ 151.004, -34.049 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.331765, "decimalLat": -36.999584 }, "geometry": { "type": "Point", "coordinates": [ 145.332, -37.0 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7155, "decimalLat": -34.893177 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.644319, "decimalLat": -35.004903 }, "geometry": { "type": "Point", "coordinates": [ 138.644, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.102403, "decimalLat": -27.56893 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.249772, "decimalLat": -35.85857 }, "geometry": { "type": "Point", "coordinates": [ 137.25, -35.859 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.391221, "decimalLat": -28.283114 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.283 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105158, "decimalLat": -27.531521 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.686729, "decimalLat": -34.958244 }, "geometry": { "type": "Point", "coordinates": [ 138.687, -34.958 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.986414, "decimalLat": -38.521429 }, "geometry": { "type": "Point", "coordinates": [ 143.986, -38.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072991, "decimalLat": -27.542484 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.744415, "decimalLat": -38.54982 }, "geometry": { "type": "Point", "coordinates": [ 143.744, -38.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.724503, "decimalLat": -27.940455 }, "geometry": { "type": "Point", "coordinates": [ 151.725, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.250952, "decimalLat": -37.868535 }, "geometry": { "type": "Point", "coordinates": [ 144.251, -37.869 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.449005, "decimalLat": -28.095164 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.510697, "decimalLat": -27.555475 }, "geometry": { "type": "Point", "coordinates": [ 151.511, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091478, "decimalLat": -27.527106 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60153, "decimalLat": -29.87042 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -29.87 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.654017, "decimalLat": -35.009445 }, "geometry": { "type": "Point", "coordinates": [ 138.654, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.401594, "decimalLat": -27.457904 }, "geometry": { "type": "Point", "coordinates": [ 152.402, -27.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.93138, "decimalLat": -27.33328 }, "geometry": { "type": "Point", "coordinates": [ 151.931, -27.333 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163874, "decimalLat": -38.671202 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.452438, "decimalLat": -37.018232 }, "geometry": { "type": "Point", "coordinates": [ 145.452, -37.018 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70374, "decimalLat": -34.902697 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729452, "decimalLat": -37.925538 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.926 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093043, "decimalLat": -27.527005 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.925556, "decimalLat": -37.652778 }, "geometry": { "type": "Point", "coordinates": [ 143.926, -37.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103349, "decimalLat": -27.530647 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068443, "decimalLat": -27.545795 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992605, "decimalLat": -27.823397 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.614358, "decimalLat": -38.553754 }, "geometry": { "type": "Point", "coordinates": [ 143.614, -38.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16382, "decimalLat": -38.671162 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091048, "decimalLat": -27.527279 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.74344, "decimalLat": -35.029349 }, "geometry": { "type": "Point", "coordinates": [ 138.743, -35.029 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70162, "decimalLat": -34.902241 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.902 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103716, "decimalLat": -27.530382 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058907, "decimalLat": -27.548749 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438169, "decimalLat": -27.40097 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260972, "decimalLat": -27.523087 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.523 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091617, "decimalLat": -27.52705 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.146029, "decimalLat": -37.037407 }, "geometry": { "type": "Point", "coordinates": [ 145.146, -37.037 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091562, "decimalLat": -27.526934 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.094001, "decimalLat": -27.524876 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093072, "decimalLat": -27.527752 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05895, "decimalLat": -27.549618 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.165193, "decimalLat": -38.670992 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.167925, "decimalLat": -27.549238 }, "geometry": { "type": "Point", "coordinates": [ 153.168, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090919, "decimalLat": -27.526842 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.683544, "decimalLat": -34.90235 }, "geometry": { "type": "Point", "coordinates": [ 138.684, -34.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093048, "decimalLat": -27.526566 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085282, "decimalLat": -27.516727 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093237, "decimalLat": -27.52404 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314801, "decimalLat": -38.372906 }, "geometry": { "type": "Point", "coordinates": [ 145.315, -38.373 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.629894, "decimalLat": -34.991128 }, "geometry": { "type": "Point", "coordinates": [ 138.63, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.400114, "decimalLat": -27.498302 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055552, "decimalLat": -27.546888 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004289, "decimalLat": -27.414645 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.931625, "decimalLat": -27.327197 }, "geometry": { "type": "Point", "coordinates": [ 151.932, -27.327 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053227, "decimalLat": -27.549638 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090459, "decimalLat": -27.526032 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68268, "decimalLat": -35.129813 }, "geometry": { "type": "Point", "coordinates": [ 138.683, -35.13 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091204, "decimalLat": -27.527891 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.143809, "decimalLat": -38.054694 }, "geometry": { "type": "Point", "coordinates": [ 144.144, -38.055 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.36265, "decimalLat": -38.318365 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085495, "decimalLat": -27.516547 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.737237, "decimalLat": -35.952144 }, "geometry": { "type": "Point", "coordinates": [ 136.737, -35.952 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003022, "decimalLat": -27.414533 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091403, "decimalLat": -27.52677 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107084, "decimalLat": -27.527664 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.634059, "decimalLat": -27.723968 }, "geometry": { "type": "Point", "coordinates": [ 151.634, -27.724 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.868462, "decimalLat": -26.52166 }, "geometry": { "type": "Point", "coordinates": [ 151.868, -26.522 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.185852, "decimalLat": -28.192672 }, "geometry": { "type": "Point", "coordinates": [ 153.186, -28.193 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.554232, "decimalLat": -27.723622 }, "geometry": { "type": "Point", "coordinates": [ 151.554, -27.724 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.019619, "decimalLat": -26.661952 }, "geometry": { "type": "Point", "coordinates": [ 152.02, -26.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164047, "decimalLat": -38.671642 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868737, "decimalLat": -19.126181 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.126 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.963632, "decimalLat": -28.567739 }, "geometry": { "type": "Point", "coordinates": [ 151.964, -28.568 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.107016, "decimalLat": -27.659354 }, "geometry": { "type": "Point", "coordinates": [ 152.107, -27.659 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.628514, "decimalLat": -34.989839 }, "geometry": { "type": "Point", "coordinates": [ 138.629, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388445, "decimalLat": -38.354369 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.913536, "decimalLat": -34.723414 }, "geometry": { "type": "Point", "coordinates": [ 138.914, -34.723 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69234, "decimalLat": -34.959479 }, "geometry": { "type": "Point", "coordinates": [ 138.692, -34.959 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.277113, "decimalLat": -37.868619 }, "geometry": { "type": "Point", "coordinates": [ 144.277, -37.869 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.186252, "decimalLat": -28.193193 }, "geometry": { "type": "Point", "coordinates": [ 153.186, -28.193 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.404099, "decimalLat": -27.494324 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6593, "decimalLat": -34.864353 }, "geometry": { "type": "Point", "coordinates": [ 138.659, -34.864 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72678, "decimalLat": -34.888249 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.522736, "decimalLat": -38.833992 }, "geometry": { "type": "Point", "coordinates": [ 143.523, -38.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.134095, "decimalLat": -27.565113 }, "geometry": { "type": "Point", "coordinates": [ 153.134, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.660821, "decimalLat": -35.015218 }, "geometry": { "type": "Point", "coordinates": [ 138.661, -35.015 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109051, "decimalLat": -27.529319 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.658131, "decimalLat": -35.016926 }, "geometry": { "type": "Point", "coordinates": [ 138.658, -35.017 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722513, "decimalLat": -34.892335 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.277664, "decimalLat": -38.129457 }, "geometry": { "type": "Point", "coordinates": [ 145.278, -38.129 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.801159, "decimalLat": -26.348586 }, "geometry": { "type": "Point", "coordinates": [ 151.801, -26.349 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.17899, "decimalLat": -27.242537 }, "geometry": { "type": "Point", "coordinates": [ 152.179, -27.243 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09059, "decimalLat": -27.527239 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.477282, "decimalLat": -29.786119 }, "geometry": { "type": "Point", "coordinates": [ 150.477, -29.786 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376774, "decimalLat": -28.253857 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.928467, "decimalLat": -27.332875 }, "geometry": { "type": "Point", "coordinates": [ 151.928, -27.333 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103436, "decimalLat": -27.528177 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093076, "decimalLat": -27.526577 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.865924, "decimalLat": -28.211449 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.211 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.123961, "decimalLat": -30.294088 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.294 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718627, "decimalLat": -34.891817 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.180083, "decimalLat": -37.048094 }, "geometry": { "type": "Point", "coordinates": [ 145.18, -37.048 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093001, "decimalLat": -27.528265 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.710481, "decimalLat": -26.103233 }, "geometry": { "type": "Point", "coordinates": [ 151.71, -26.103 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.772249, "decimalLat": -27.389375 }, "geometry": { "type": "Point", "coordinates": [ 151.772, -27.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.728084, "decimalLat": -34.888694 }, "geometry": { "type": "Point", "coordinates": [ 138.728, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053983, "decimalLat": -27.538663 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074965, "decimalLat": -27.539081 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.316495, "decimalLat": -38.363651 }, "geometry": { "type": "Point", "coordinates": [ 145.316, -38.364 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.845089, "decimalLat": -26.107566 }, "geometry": { "type": "Point", "coordinates": [ 151.845, -26.108 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.809023, "decimalLat": -26.363564 }, "geometry": { "type": "Point", "coordinates": [ 151.809, -26.364 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.923111, "decimalLat": -38.05955 }, "geometry": { "type": "Point", "coordinates": [ 141.923, -38.06 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374145, "decimalLat": -28.25745 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.273155, "decimalLat": -38.130113 }, "geometry": { "type": "Point", "coordinates": [ 145.273, -38.13 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.047641, "decimalLat": -37.724673 }, "geometry": { "type": "Point", "coordinates": [ 144.048, -37.725 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992493, "decimalLat": -27.822692 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090393, "decimalLat": -27.526138 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110024, "decimalLat": -27.526948 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.668669, "decimalLat": -38.758617 }, "geometry": { "type": "Point", "coordinates": [ 143.669, -38.759 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092977, "decimalLat": -27.524516 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733473, "decimalLat": -34.890247 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09223, "decimalLat": -27.527992 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103056, "decimalLat": -27.527632 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720645, "decimalLat": -34.887221 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090857, "decimalLat": -27.526665 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.688873, "decimalLat": -34.867824 }, "geometry": { "type": "Point", "coordinates": [ 138.689, -34.868 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056014, "decimalLat": -27.552313 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1875, "decimalLat": -28.195128 }, "geometry": { "type": "Point", "coordinates": [ 153.188, -28.195 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.902363, "decimalLat": -27.620501 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090423, "decimalLat": -27.525886 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.072736, "decimalLat": -27.358825 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108191, "decimalLat": -27.527236 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101197, "decimalLat": -27.508772 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.818986, "decimalLat": -26.414921 }, "geometry": { "type": "Point", "coordinates": [ 151.819, -26.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374145, "decimalLat": -28.25745 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.176252, "decimalLat": -27.548365 }, "geometry": { "type": "Point", "coordinates": [ 153.176, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092117, "decimalLat": -27.527163 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05806, "decimalLat": -27.545458 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066222, "decimalLat": -27.539738 }, "geometry": { "type": "Point", "coordinates": [ 153.066, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.158421, "decimalLat": -27.656747 }, "geometry": { "type": "Point", "coordinates": [ 153.158, -27.657 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.361575, "decimalLat": -31.926603 }, "geometry": { "type": "Point", "coordinates": [ 152.362, -31.927 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069937, "decimalLat": -27.510559 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.961877, "decimalLat": -38.400097 }, "geometry": { "type": "Point", "coordinates": [ 146.962, -38.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.948609, "decimalLat": -27.976567 }, "geometry": { "type": "Point", "coordinates": [ 152.949, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073779, "decimalLat": -27.546316 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105439, "decimalLat": -27.529867 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.736188, "decimalLat": -34.830996 }, "geometry": { "type": "Point", "coordinates": [ 138.736, -34.831 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103662, "decimalLat": -27.529556 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110022, "decimalLat": -27.529744 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.934097, "decimalLat": -27.328833 }, "geometry": { "type": "Point", "coordinates": [ 151.934, -27.329 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.739034, "decimalLat": -37.913446 }, "geometry": { "type": "Point", "coordinates": [ 147.739, -37.913 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095099, "decimalLat": -33.076316 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073254, "decimalLat": -27.54591 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164139, "decimalLat": -38.671322 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705919, "decimalLat": -34.903209 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.280747, "decimalLat": -27.536094 }, "geometry": { "type": "Point", "coordinates": [ 152.281, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520092, "decimalLat": -30.518807 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.519 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069876, "decimalLat": -27.51036 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.087345, "decimalLat": -27.51555 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059667, "decimalLat": -27.552295 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.560237, "decimalLat": -27.37263 }, "geometry": { "type": "Point", "coordinates": [ 152.56, -27.373 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.882211, "decimalLat": -37.604726 }, "geometry": { "type": "Point", "coordinates": [ 143.882, -37.605 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057711, "decimalLat": -27.551705 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.857381, "decimalLat": -27.54407 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090959, "decimalLat": -27.526821 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.223427, "decimalLat": -37.901923 }, "geometry": { "type": "Point", "coordinates": [ 144.223, -37.902 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092389, "decimalLat": -27.524988 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105786, "decimalLat": -27.52945 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059207, "decimalLat": -27.551423 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399781, "decimalLat": -27.498219 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092116, "decimalLat": -27.52569 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090911, "decimalLat": -27.526802 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.900405, "decimalLat": -27.648608 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11056, "decimalLat": -27.526878 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102766, "decimalLat": -27.518758 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37602, "decimalLat": -27.918728 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103932, "decimalLat": -27.530047 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.105052, "decimalLat": -33.130598 }, "geometry": { "type": "Point", "coordinates": [ 151.105, -33.131 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.611313, "decimalLat": -27.332808 }, "geometry": { "type": "Point", "coordinates": [ 152.611, -27.333 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.473939, "decimalLat": -38.804104 }, "geometry": { "type": "Point", "coordinates": [ 143.474, -38.804 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.709868, "decimalLat": -35.032585 }, "geometry": { "type": "Point", "coordinates": [ 138.71, -35.033 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.045397, "decimalLat": -27.548128 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.375298, "decimalLat": -27.914631 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.382004, "decimalLat": -27.951853 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.952 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.573471, "decimalLat": -35.022732 }, "geometry": { "type": "Point", "coordinates": [ 138.573, -35.023 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10783, "decimalLat": -27.526971 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.676981, "decimalLat": -35.917777 }, "geometry": { "type": "Point", "coordinates": [ 145.677, -35.918 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702597, "decimalLat": -34.903264 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712626, "decimalLat": -34.905704 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.906 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860805, "decimalLat": -38.670072 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.67 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.737623, "decimalLat": -38.632553 }, "geometry": { "type": "Point", "coordinates": [ 145.738, -38.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268403, "decimalLat": -38.131144 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090941, "decimalLat": -27.527017 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.023639, "decimalLat": -28.681515 }, "geometry": { "type": "Point", "coordinates": [ 152.024, -28.682 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.04712, "decimalLat": -27.265547 }, "geometry": { "type": "Point", "coordinates": [ 152.047, -27.266 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.536653, "decimalLat": -38.814158 }, "geometry": { "type": "Point", "coordinates": [ 143.537, -38.814 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19019, "decimalLat": -27.701741 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.728144, "decimalLat": -37.922292 }, "geometry": { "type": "Point", "coordinates": [ 147.728, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057933, "decimalLat": -27.5509 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.878536, "decimalLat": -37.63247 }, "geometry": { "type": "Point", "coordinates": [ 143.879, -37.632 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073214, "decimalLat": -27.547904 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.863321, "decimalLat": -38.509752 }, "geometry": { "type": "Point", "coordinates": [ 143.863, -38.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124726, "decimalLat": -30.296043 }, "geometry": { "type": "Point", "coordinates": [ 153.125, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733365, "decimalLat": -34.888196 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074498, "decimalLat": -27.546115 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.566974, "decimalLat": -27.629498 }, "geometry": { "type": "Point", "coordinates": [ 151.567, -27.629 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.751678, "decimalLat": -37.54858 }, "geometry": { "type": "Point", "coordinates": [ 149.752, -37.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069807, "decimalLat": -27.510406 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.975767, "decimalLat": -27.272102 }, "geometry": { "type": "Point", "coordinates": [ 152.976, -27.272 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069852, "decimalLat": -27.510413 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.038273, "decimalLat": -27.548265 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07126, "decimalLat": -27.544905 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730935, "decimalLat": -34.889003 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058197, "decimalLat": -27.547187 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083654, "decimalLat": -27.516265 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062418, "decimalLat": -27.546241 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093052, "decimalLat": -27.527699 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.363724, "decimalLat": -27.914838 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.150392, "decimalLat": -27.712356 }, "geometry": { "type": "Point", "coordinates": [ 153.15, -27.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.811778, "decimalLat": -26.362941 }, "geometry": { "type": "Point", "coordinates": [ 151.812, -26.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.846747, "decimalLat": -27.491287 }, "geometry": { "type": "Point", "coordinates": [ 152.847, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268676, "decimalLat": -38.131381 }, "geometry": { "type": "Point", "coordinates": [ 145.269, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073747, "decimalLat": -27.540181 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.515766, "decimalLat": -37.458253 }, "geometry": { "type": "Point", "coordinates": [ 144.516, -37.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.735748, "decimalLat": -34.88782 }, "geometry": { "type": "Point", "coordinates": [ 138.736, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729445, "decimalLat": -34.889864 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377448, "decimalLat": -28.254282 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.364377, "decimalLat": -38.318633 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.971427, "decimalLat": -27.288523 }, "geometry": { "type": "Point", "coordinates": [ 152.971, -27.289 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.89619, "decimalLat": -27.538248 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08708, "decimalLat": -27.510761 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69403, "decimalLat": -34.86258 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.863 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716654, "decimalLat": -34.874985 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.875 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110251, "decimalLat": -27.527062 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092735, "decimalLat": -27.528023 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093141, "decimalLat": -27.527847 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113386, "decimalLat": -27.528413 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376671, "decimalLat": -28.253621 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.745388, "decimalLat": -34.829907 }, "geometry": { "type": "Point", "coordinates": [ 138.745, -34.83 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.989472, "decimalLat": -27.168653 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -27.169 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070454, "decimalLat": -27.545319 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301697, "decimalLat": -28.818422 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.482333, "decimalLat": -32.396424 }, "geometry": { "type": "Point", "coordinates": [ 152.482, -32.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722452, "decimalLat": -34.891643 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.381234, "decimalLat": -27.904407 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053773, "decimalLat": -27.553101 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.624908, "decimalLat": -27.631503 }, "geometry": { "type": "Point", "coordinates": [ 151.625, -27.632 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.427674, "decimalLat": -27.498313 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638266, "decimalLat": -34.971157 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377282, "decimalLat": -28.253834 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 144.733415, "decimalLat": -24.740954 }, "geometry": { "type": "Point", "coordinates": [ 144.733, -24.741 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.31108, "decimalLat": -37.517192 }, "geometry": { "type": "Point", "coordinates": [ 144.311, -37.517 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.997726, "decimalLat": -27.434036 }, "geometry": { "type": "Point", "coordinates": [ 152.998, -27.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093551, "decimalLat": -27.525437 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103566, "decimalLat": -27.528276 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074709, "decimalLat": -27.358733 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.04645, "decimalLat": -27.256782 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868972, "decimalLat": -19.13123 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092259, "decimalLat": -27.52831 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.716263, "decimalLat": -27.56738 }, "geometry": { "type": "Point", "coordinates": [ 151.716, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.747999, "decimalLat": -34.829332 }, "geometry": { "type": "Point", "coordinates": [ 138.748, -34.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058583, "decimalLat": -27.547468 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376817, "decimalLat": -28.253914 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057848, "decimalLat": -27.551863 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105165, "decimalLat": -27.530444 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.356772, "decimalLat": -27.938924 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08355, "decimalLat": -27.513 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.282423, "decimalLat": -37.842747 }, "geometry": { "type": "Point", "coordinates": [ 144.282, -37.843 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.730877, "decimalLat": -37.925052 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715217, "decimalLat": -34.892644 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.728371, "decimalLat": -37.921958 }, "geometry": { "type": "Point", "coordinates": [ 147.728, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164122, "decimalLat": -38.671428 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10733, "decimalLat": -27.527386 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.902291, "decimalLat": -27.629478 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.629 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072095, "decimalLat": -27.542635 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.389846, "decimalLat": -38.356608 }, "geometry": { "type": "Point", "coordinates": [ 146.39, -38.357 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.583182, "decimalLat": -35.037028 }, "geometry": { "type": "Point", "coordinates": [ 138.583, -35.037 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090902, "decimalLat": -27.527664 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090265, "decimalLat": -27.526605 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057504, "decimalLat": -27.551123 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068395, "decimalLat": -27.546074 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.976638, "decimalLat": -38.552587 }, "geometry": { "type": "Point", "coordinates": [ 143.977, -38.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.316128, "decimalLat": -38.367914 }, "geometry": { "type": "Point", "coordinates": [ 145.316, -38.368 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.102464, "decimalLat": -27.568742 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10764, "decimalLat": -27.527127 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.727337, "decimalLat": -34.887162 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.974838, "decimalLat": -26.161403 }, "geometry": { "type": "Point", "coordinates": [ 151.975, -26.161 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.916459, "decimalLat": -34.040974 }, "geometry": { "type": "Point", "coordinates": [ 150.916, -34.041 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.882733, "decimalLat": -37.657846 }, "geometry": { "type": "Point", "coordinates": [ 143.883, -37.658 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991959, "decimalLat": -27.823995 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376935, "decimalLat": -28.254076 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.704211, "decimalLat": -34.93482 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -34.935 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05452, "decimalLat": -27.543757 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734438, "decimalLat": -34.887761 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060132, "decimalLat": -27.550374 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.672493, "decimalLat": -38.351106 }, "geometry": { "type": "Point", "coordinates": [ 145.672, -38.351 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08463, "decimalLat": -27.69736 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -27.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109443, "decimalLat": -27.528214 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374145, "decimalLat": -28.25745 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091978, "decimalLat": -27.52587 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438311, "decimalLat": -27.40097 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.771821, "decimalLat": -26.179232 }, "geometry": { "type": "Point", "coordinates": [ 151.772, -26.179 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.859895, "decimalLat": -27.54652 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656932, "decimalLat": -35.017496 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -35.017 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 143.911039, "decimalLat": -18.628372 }, "geometry": { "type": "Point", "coordinates": [ 143.911, -18.628 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.891846, "decimalLat": -38.630697 }, "geometry": { "type": "Point", "coordinates": [ 143.892, -38.631 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.030801, "decimalLat": -38.646125 }, "geometry": { "type": "Point", "coordinates": [ 146.031, -38.646 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.57123, "decimalLat": -29.873872 }, "geometry": { "type": "Point", "coordinates": [ 150.571, -29.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164011, "decimalLat": -38.671312 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.58628, "decimalLat": -37.046972 }, "geometry": { "type": "Point", "coordinates": [ 145.586, -37.047 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.606334, "decimalLat": -38.348888 }, "geometry": { "type": "Point", "coordinates": [ 141.606, -38.349 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993608, "decimalLat": -27.823745 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.224913, "decimalLat": -27.854513 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.855 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.108867, "decimalLat": -26.808295 }, "geometry": { "type": "Point", "coordinates": [ 152.109, -26.808 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.371872, "decimalLat": -27.905668 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.578583, "decimalLat": -38.329819 }, "geometry": { "type": "Point", "coordinates": [ 142.579, -38.33 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719293, "decimalLat": -34.986404 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.986 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.620072, "decimalLat": -27.3997 }, "geometry": { "type": "Point", "coordinates": [ 152.62, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.584867, "decimalLat": -28.915914 }, "geometry": { "type": "Point", "coordinates": [ 151.585, -28.916 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074889, "decimalLat": -27.35872 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.62919, "decimalLat": -28.637355 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520479, "decimalLat": -30.520765 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070361, "decimalLat": -27.509542 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.172266, "decimalLat": -27.552625 }, "geometry": { "type": "Point", "coordinates": [ 153.172, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.897439, "decimalLat": -37.572636 }, "geometry": { "type": "Point", "coordinates": [ 143.897, -37.573 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112827, "decimalLat": -27.527719 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106545, "decimalLat": -27.529007 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913792, "decimalLat": -30.494295 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -30.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090737, "decimalLat": -27.526894 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.564019, "decimalLat": -29.546154 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -29.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.616945, "decimalLat": -27.305063 }, "geometry": { "type": "Point", "coordinates": [ 152.617, -27.305 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10436, "decimalLat": -27.53046 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091091, "decimalLat": -27.527414 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163758, "decimalLat": -38.670972 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.852439, "decimalLat": -34.733638 }, "geometry": { "type": "Point", "coordinates": [ 138.852, -34.734 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.715363, "decimalLat": -38.637853 }, "geometry": { "type": "Point", "coordinates": [ 145.715, -38.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749888, "decimalLat": -26.155079 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105336, "decimalLat": -27.529364 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07315, "decimalLat": -27.542345 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05446, "decimalLat": -27.550351 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090798, "decimalLat": -27.527153 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000852, "decimalLat": -27.284473 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.412278, "decimalLat": -38.32599 }, "geometry": { "type": "Point", "coordinates": [ 145.412, -38.326 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.101327, "decimalLat": -37.525653 }, "geometry": { "type": "Point", "coordinates": [ 144.101, -37.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.874262, "decimalLat": -27.494149 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07029, "decimalLat": -27.509244 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437806, "decimalLat": -27.400244 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054509, "decimalLat": -27.541575 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093582, "decimalLat": -27.52813 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.677643, "decimalLat": -27.986088 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -27.986 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085566, "decimalLat": -27.516779 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054342, "decimalLat": -27.552014 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.135963, "decimalLat": -37.961855 }, "geometry": { "type": "Point", "coordinates": [ 144.136, -37.962 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073819, "decimalLat": -27.226908 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.227 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091707, "decimalLat": -27.527146 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.782282, "decimalLat": -26.309007 }, "geometry": { "type": "Point", "coordinates": [ 151.782, -26.309 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.676619, "decimalLat": -35.083789 }, "geometry": { "type": "Point", "coordinates": [ 138.677, -35.084 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.9131, "decimalLat": -38.063204 }, "geometry": { "type": "Point", "coordinates": [ 141.913, -38.063 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110378, "decimalLat": -27.527733 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058401, "decimalLat": -27.551362 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.04514, "decimalLat": -27.256267 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.256 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090832, "decimalLat": -27.526873 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103432, "decimalLat": -27.530594 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.527695, "decimalLat": -27.717725 }, "geometry": { "type": "Point", "coordinates": [ 151.528, -27.718 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.934061, "decimalLat": -28.038718 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -28.039 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057493, "decimalLat": -27.551011 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.671849, "decimalLat": -35.015953 }, "geometry": { "type": "Point", "coordinates": [ 138.672, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003922, "decimalLat": -27.413678 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.588069, "decimalLat": -27.799291 }, "geometry": { "type": "Point", "coordinates": [ 151.588, -27.799 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.246244, "decimalLat": -27.49746 }, "geometry": { "type": "Point", "coordinates": [ 152.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091717, "decimalLat": -27.527221 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.622982, "decimalLat": -38.79212 }, "geometry": { "type": "Point", "coordinates": [ 143.623, -38.792 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09231, "decimalLat": -27.52733 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.884333, "decimalLat": -26.31377 }, "geometry": { "type": "Point", "coordinates": [ 151.884, -26.314 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.870923, "decimalLat": -38.702865 }, "geometry": { "type": "Point", "coordinates": [ 145.871, -38.703 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092184, "decimalLat": -27.528199 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.79155, "decimalLat": -36.803439 }, "geometry": { "type": "Point", "coordinates": [ 145.792, -36.803 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092757, "decimalLat": -27.525293 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09078, "decimalLat": -27.527238 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399628, "decimalLat": -27.497712 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394343, "decimalLat": -28.275774 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.37149, "decimalLat": -38.731935 }, "geometry": { "type": "Point", "coordinates": [ 143.371, -38.732 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.868628, "decimalLat": -29.62333 }, "geometry": { "type": "Point", "coordinates": [ 150.869, -29.623 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057381, "decimalLat": -27.551099 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091802, "decimalLat": -27.525864 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.881595, "decimalLat": -26.043813 }, "geometry": { "type": "Point", "coordinates": [ 149.882, -26.044 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111351, "decimalLat": -27.527081 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09373, "decimalLat": -27.526073 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.613493, "decimalLat": -34.903239 }, "geometry": { "type": "Point", "coordinates": [ 138.613, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.859615, "decimalLat": -27.542516 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069741, "decimalLat": -27.510503 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.53937, "decimalLat": -38.388312 }, "geometry": { "type": "Point", "coordinates": [ 142.539, -38.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037288, "decimalLat": -27.53268 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.636317, "decimalLat": -34.990131 }, "geometry": { "type": "Point", "coordinates": [ 138.636, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.553625, "decimalLat": -27.116162 }, "geometry": { "type": "Point", "coordinates": [ 152.554, -27.116 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.058486, "decimalLat": -27.298356 }, "geometry": { "type": "Point", "coordinates": [ 152.058, -27.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395046, "decimalLat": -28.27573 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093397, "decimalLat": -27.526119 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.534697, "decimalLat": -34.755847 }, "geometry": { "type": "Point", "coordinates": [ 146.535, -34.756 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110927, "decimalLat": -27.529894 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.94645, "decimalLat": -27.423441 }, "geometry": { "type": "Point", "coordinates": [ 151.946, -27.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.674889, "decimalLat": -35.085776 }, "geometry": { "type": "Point", "coordinates": [ 138.675, -35.086 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059395, "decimalLat": -27.549119 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.488758, "decimalLat": -27.534663 }, "geometry": { "type": "Point", "coordinates": [ 153.489, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.477311, "decimalLat": -38.8021 }, "geometry": { "type": "Point", "coordinates": [ 143.477, -38.802 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40012, "decimalLat": -27.496505 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.733129, "decimalLat": -38.081575 }, "geometry": { "type": "Point", "coordinates": [ 141.733, -38.082 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090589, "decimalLat": -27.525965 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093696, "decimalLat": -27.525 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.809814, "decimalLat": -26.106639 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -26.107 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519469, "decimalLat": -30.519123 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.519 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113396, "decimalLat": -27.528419 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68387, "decimalLat": -34.866353 }, "geometry": { "type": "Point", "coordinates": [ 138.684, -34.866 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7354, "decimalLat": -34.888844 }, "geometry": { "type": "Point", "coordinates": [ 138.735, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.0452, "decimalLat": -27.258789 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.259 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093113, "decimalLat": -27.528028 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71881, "decimalLat": -34.891902 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078314, "decimalLat": -27.506839 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072931, "decimalLat": -27.545991 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.064812, "decimalLat": -25.180047 }, "geometry": { "type": "Point", "coordinates": [ 151.065, -25.18 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103259, "decimalLat": -27.530191 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090374, "decimalLat": -27.526869 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09362, "decimalLat": -27.524975 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.652492, "decimalLat": -35.011051 }, "geometry": { "type": "Point", "coordinates": [ 138.652, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070111, "decimalLat": -27.510569 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.99286, "decimalLat": -30.559952 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -30.56 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.627741, "decimalLat": -27.91123 }, "geometry": { "type": "Point", "coordinates": [ 152.628, -27.911 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400609, "decimalLat": -28.257962 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107799, "decimalLat": -27.527091 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729688, "decimalLat": -34.988688 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.989 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.72554, "decimalLat": -38.133911 }, "geometry": { "type": "Point", "coordinates": [ 141.726, -38.134 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.572219, "decimalLat": -28.072119 }, "geometry": { "type": "Point", "coordinates": [ 152.572, -28.072 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.695147, "decimalLat": -21.628031 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.628 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091619, "decimalLat": -27.526931 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072144, "decimalLat": -27.543936 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.974028, "decimalLat": -27.297682 }, "geometry": { "type": "Point", "coordinates": [ 152.974, -27.298 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092241, "decimalLat": -27.528223 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053547, "decimalLat": -27.546278 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.727076, "decimalLat": -34.83254 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.833 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078662, "decimalLat": -27.499555 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07226, "decimalLat": -27.545203 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055861, "decimalLat": -27.544062 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093231, "decimalLat": -27.525106 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599326, "decimalLat": -29.869445 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -29.869 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102401, "decimalLat": -27.734951 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.735 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.744377, "decimalLat": -34.8289 }, "geometry": { "type": "Point", "coordinates": [ 138.744, -34.829 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68862, "decimalLat": -21.691184 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.691 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072499, "decimalLat": -27.549269 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734366, "decimalLat": -34.886939 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062251, "decimalLat": -27.550167 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09157, "decimalLat": -27.527182 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.025885, "decimalLat": -38.658771 }, "geometry": { "type": "Point", "coordinates": [ 146.026, -38.659 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245023, "decimalLat": -27.49036 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730917, "decimalLat": -34.874074 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.444569, "decimalLat": -37.961838 }, "geometry": { "type": "Point", "coordinates": [ 144.445, -37.962 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.722353, "decimalLat": -27.740362 }, "geometry": { "type": "Point", "coordinates": [ 152.722, -27.74 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.098458, "decimalLat": -27.567088 }, "geometry": { "type": "Point", "coordinates": [ 153.098, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062075, "decimalLat": -27.54495 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091701, "decimalLat": -27.527165 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.08732, "decimalLat": -37.633674 }, "geometry": { "type": "Point", "coordinates": [ 144.087, -37.634 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.517939, "decimalLat": -30.520949 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103352, "decimalLat": -27.527826 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048821, "decimalLat": -27.550049 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.077558, "decimalLat": -29.776204 }, "geometry": { "type": "Point", "coordinates": [ 151.078, -29.776 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.031165, "decimalLat": -27.302132 }, "geometry": { "type": "Point", "coordinates": [ 153.031, -27.302 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.15245, "decimalLat": -27.4909 }, "geometry": { "type": "Point", "coordinates": [ 152.152, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.250611, "decimalLat": -38.238802 }, "geometry": { "type": "Point", "coordinates": [ 145.251, -38.239 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074625, "decimalLat": -27.547025 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.620983, "decimalLat": -27.418037 }, "geometry": { "type": "Point", "coordinates": [ 152.621, -27.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.54195, "decimalLat": -27.673333 }, "geometry": { "type": "Point", "coordinates": [ 151.542, -27.673 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.609955, "decimalLat": -27.396605 }, "geometry": { "type": "Point", "coordinates": [ 152.61, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093118, "decimalLat": -27.524124 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107366, "decimalLat": -27.527332 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.541867, "decimalLat": -38.049833 }, "geometry": { "type": "Point", "coordinates": [ 141.542, -38.05 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073508, "decimalLat": -27.545379 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732213, "decimalLat": -34.890056 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.716217, "decimalLat": -27.56887 }, "geometry": { "type": "Point", "coordinates": [ 151.716, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.829887, "decimalLat": -34.158907 }, "geometry": { "type": "Point", "coordinates": [ 150.83, -34.159 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885317, "decimalLat": -34.033873 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.034 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.575211, "decimalLat": -35.079822 }, "geometry": { "type": "Point", "coordinates": [ 138.575, -35.08 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400741, "decimalLat": -28.257846 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103905, "decimalLat": -27.530309 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 145.396347, "decimalLat": -17.959692 }, "geometry": { "type": "Point", "coordinates": [ 145.396, -17.96 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733997, "decimalLat": -34.887435 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104707, "decimalLat": -27.52972 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.516637, "decimalLat": -38.833435 }, "geometry": { "type": "Point", "coordinates": [ 143.517, -38.833 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091208, "decimalLat": -27.527207 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.289363, "decimalLat": -29.042258 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -29.042 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.37699, "decimalLat": -37.837069 }, "geometry": { "type": "Point", "coordinates": [ 145.377, -37.837 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.929413, "decimalLat": -27.331133 }, "geometry": { "type": "Point", "coordinates": [ 151.929, -27.331 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.592442, "decimalLat": -37.329462 }, "geometry": { "type": "Point", "coordinates": [ 144.592, -37.329 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400454, "decimalLat": -28.258552 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.321668, "decimalLat": -37.065486 }, "geometry": { "type": "Point", "coordinates": [ 145.322, -37.065 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.275737, "decimalLat": -37.840133 }, "geometry": { "type": "Point", "coordinates": [ 144.276, -37.84 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103601, "decimalLat": -27.530676 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377504, "decimalLat": -28.254396 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.004089, "decimalLat": -38.80913 }, "geometry": { "type": "Point", "coordinates": [ 146.004, -38.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402724, "decimalLat": -28.258361 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109899, "decimalLat": -27.529812 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.371902, "decimalLat": -27.90399 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.626886, "decimalLat": -34.891618 }, "geometry": { "type": "Point", "coordinates": [ 138.627, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.513138, "decimalLat": -38.835512 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.836 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.150244, "decimalLat": -33.103934 }, "geometry": { "type": "Point", "coordinates": [ 151.15, -33.104 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111314, "decimalLat": -27.52783 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.647469, "decimalLat": -34.977588 }, "geometry": { "type": "Point", "coordinates": [ 138.647, -34.978 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111458, "decimalLat": -27.527345 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.63645, "decimalLat": -35.007874 }, "geometry": { "type": "Point", "coordinates": [ 138.636, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.707324, "decimalLat": -34.905615 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.906 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.560487, "decimalLat": -27.805075 }, "geometry": { "type": "Point", "coordinates": [ 151.56, -27.805 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092254, "decimalLat": -27.528029 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.82703, "decimalLat": -26.70477 }, "geometry": { "type": "Point", "coordinates": [ 152.827, -26.705 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091537, "decimalLat": -27.527173 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.888038, "decimalLat": -37.655435 }, "geometry": { "type": "Point", "coordinates": [ 143.888, -37.655 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7202, "decimalLat": -34.887322 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.585835, "decimalLat": -29.857165 }, "geometry": { "type": "Point", "coordinates": [ 150.586, -29.857 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.356814, "decimalLat": -27.93898 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091549, "decimalLat": -27.527141 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.761372, "decimalLat": -27.866582 }, "geometry": { "type": "Point", "coordinates": [ 152.761, -27.867 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110181, "decimalLat": -27.527295 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.996071, "decimalLat": -37.689874 }, "geometry": { "type": "Point", "coordinates": [ 143.996, -37.69 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.598562, "decimalLat": -27.800783 }, "geometry": { "type": "Point", "coordinates": [ 151.599, -27.801 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09223, "decimalLat": -27.52538 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074464, "decimalLat": -27.358252 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.30818, "decimalLat": -38.598545 }, "geometry": { "type": "Point", "coordinates": [ 146.308, -38.599 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.004987, "decimalLat": -27.242191 }, "geometry": { "type": "Point", "coordinates": [ 153.005, -27.242 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095373, "decimalLat": -33.076721 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105176, "decimalLat": -27.53145 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 145.563038, "decimalLat": -35.81558 }, "geometry": { "type": "Point", "coordinates": [ 145.563, -35.816 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091288, "decimalLat": -27.527327 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.749919, "decimalLat": -37.913233 }, "geometry": { "type": "Point", "coordinates": [ 145.75, -37.913 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.245255, "decimalLat": -28.164133 }, "geometry": { "type": "Point", "coordinates": [ 151.245, -28.164 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.266602, "decimalLat": -37.862318 }, "geometry": { "type": "Point", "coordinates": [ 144.267, -37.862 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070152, "decimalLat": -27.510628 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.814863, "decimalLat": -35.282878 }, "geometry": { "type": "Point", "coordinates": [ 138.815, -35.283 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.825943, "decimalLat": -29.463876 }, "geometry": { "type": "Point", "coordinates": [ 149.826, -29.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.897181, "decimalLat": -37.596126 }, "geometry": { "type": "Point", "coordinates": [ 143.897, -37.596 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092065, "decimalLat": -27.527167 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036405, "decimalLat": -27.534536 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092377, "decimalLat": -27.524908 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086661, "decimalLat": -27.516094 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.802803, "decimalLat": -34.167072 }, "geometry": { "type": "Point", "coordinates": [ 150.803, -34.167 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09223, "decimalLat": -27.527741 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.926264, "decimalLat": -27.275294 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -27.275 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.612215, "decimalLat": -27.814154 }, "geometry": { "type": "Point", "coordinates": [ 151.612, -27.814 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992605, "decimalLat": -27.823397 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.873794, "decimalLat": -26.507657 }, "geometry": { "type": "Point", "coordinates": [ 151.874, -26.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4381, "decimalLat": -27.400953 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.649576, "decimalLat": -35.00843 }, "geometry": { "type": "Point", "coordinates": [ 138.65, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.909219, "decimalLat": -26.57322 }, "geometry": { "type": "Point", "coordinates": [ 151.909, -26.573 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090659, "decimalLat": -27.526564 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073563, "decimalLat": -27.545762 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376929, "decimalLat": -28.254303 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.931103, "decimalLat": -27.275748 }, "geometry": { "type": "Point", "coordinates": [ 152.931, -27.276 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.589783, "decimalLat": -34.769853 }, "geometry": { "type": "Point", "coordinates": [ 146.59, -34.77 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.48843, "decimalLat": -32.395327 }, "geometry": { "type": "Point", "coordinates": [ 152.488, -32.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.373643, "decimalLat": -27.905452 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.905 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104506, "decimalLat": -27.52984 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000846, "decimalLat": -27.284458 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104701, "decimalLat": -27.527939 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104307, "decimalLat": -27.52988 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730019, "decimalLat": -34.89026 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051092, "decimalLat": -27.526605 }, "geometry": { "type": "Point", "coordinates": [ 153.051, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.386225, "decimalLat": -38.354956 }, "geometry": { "type": "Point", "coordinates": [ 146.386, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.859695, "decimalLat": -38.671713 }, "geometry": { "type": "Point", "coordinates": [ 143.86, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.448948, "decimalLat": -28.096722 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.514258, "decimalLat": -35.13445 }, "geometry": { "type": "Point", "coordinates": [ 138.514, -35.134 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.161224, "decimalLat": -38.259739 }, "geometry": { "type": "Point", "coordinates": [ 145.161, -38.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.008781, "decimalLat": -38.577006 }, "geometry": { "type": "Point", "coordinates": [ 146.009, -38.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718878, "decimalLat": -34.891604 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.778216, "decimalLat": -34.881371 }, "geometry": { "type": "Point", "coordinates": [ 138.778, -34.881 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091564, "decimalLat": -27.527116 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073271, "decimalLat": -27.54582 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.658589, "decimalLat": -26.236147 }, "geometry": { "type": "Point", "coordinates": [ 152.659, -26.236 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656463, "decimalLat": -34.86533 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.917575, "decimalLat": -34.750875 }, "geometry": { "type": "Point", "coordinates": [ 138.918, -34.751 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.377553, "decimalLat": -27.917903 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054859, "decimalLat": -27.537684 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113953, "decimalLat": -27.528553 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074621, "decimalLat": -27.550112 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.217786, "decimalLat": -27.547488 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092031, "decimalLat": -27.527215 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092, "decimalLat": -27.527199 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053061, "decimalLat": -27.543516 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.841184, "decimalLat": -26.369191 }, "geometry": { "type": "Point", "coordinates": [ 151.841, -26.369 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092494, "decimalLat": -27.527265 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073299, "decimalLat": -27.546002 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103384, "decimalLat": -27.530504 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104064, "decimalLat": -27.529766 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519051, "decimalLat": -30.521293 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.672131, "decimalLat": -34.951232 }, "geometry": { "type": "Point", "coordinates": [ 138.672, -34.951 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.921124, "decimalLat": -37.649804 }, "geometry": { "type": "Point", "coordinates": [ 143.921, -37.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.574954, "decimalLat": -35.079572 }, "geometry": { "type": "Point", "coordinates": [ 138.575, -35.08 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65615, "decimalLat": -34.866415 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -34.866 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.856628, "decimalLat": -38.670467 }, "geometry": { "type": "Point", "coordinates": [ 143.857, -38.67 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105384, "decimalLat": -27.529449 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108411, "decimalLat": -27.527289 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703098, "decimalLat": -34.903203 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054373, "decimalLat": -27.55272 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07221, "decimalLat": -27.54434 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091546, "decimalLat": -27.527193 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093843, "decimalLat": -27.52765 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.678027, "decimalLat": -27.9873 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -27.987 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.638997, "decimalLat": -30.474959 }, "geometry": { "type": "Point", "coordinates": [ 151.639, -30.475 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.884329, "decimalLat": -37.628514 }, "geometry": { "type": "Point", "coordinates": [ 143.884, -37.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08675, "decimalLat": -27.695017 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.695 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058474, "decimalLat": -27.547921 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.44372, "decimalLat": -38.54212 }, "geometry": { "type": "Point", "coordinates": [ 143.444, -38.542 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.542501, "decimalLat": -34.917502 }, "geometry": { "type": "Point", "coordinates": [ 138.543, -34.918 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092117, "decimalLat": -27.524421 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054523, "decimalLat": -27.552293 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108978, "decimalLat": -27.528872 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.94139, "decimalLat": -26.242101 }, "geometry": { "type": "Point", "coordinates": [ 151.941, -26.242 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.685923, "decimalLat": -34.959749 }, "geometry": { "type": "Point", "coordinates": [ 138.686, -34.96 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.08104, "decimalLat": -38.286999 }, "geometry": { "type": "Point", "coordinates": [ 145.081, -38.287 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112152, "decimalLat": -27.529819 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.921172, "decimalLat": -27.283225 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -27.283 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637967, "decimalLat": -34.96959 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.97 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906778, "decimalLat": -31.44093 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.421677, "decimalLat": -37.939759 }, "geometry": { "type": "Point", "coordinates": [ 144.422, -37.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.947388, "decimalLat": -27.278278 }, "geometry": { "type": "Point", "coordinates": [ 152.947, -27.278 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.102447, "decimalLat": -27.568863 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731821, "decimalLat": -34.890073 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106547, "decimalLat": -27.529269 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.717489, "decimalLat": -34.871883 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.872 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.517939, "decimalLat": -30.520949 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.090274, "decimalLat": -38.238759 }, "geometry": { "type": "Point", "coordinates": [ 146.09, -38.239 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108127, "decimalLat": -27.526922 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.946192, "decimalLat": -27.259837 }, "geometry": { "type": "Point", "coordinates": [ 152.946, -27.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.486053, "decimalLat": -34.699642 }, "geometry": { "type": "Point", "coordinates": [ 146.486, -34.7 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.045428, "decimalLat": -27.547818 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.745912, "decimalLat": -26.15627 }, "geometry": { "type": "Point", "coordinates": [ 151.746, -26.156 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.15904, "decimalLat": -27.50403 }, "geometry": { "type": "Point", "coordinates": [ 152.159, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105166, "decimalLat": -27.529176 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.289845, "decimalLat": -27.983143 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -27.983 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.849076, "decimalLat": -37.677495 }, "geometry": { "type": "Point", "coordinates": [ 141.849, -37.677 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.331147, "decimalLat": -33.681072 }, "geometry": { "type": "Point", "coordinates": [ 149.331, -33.681 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003219, "decimalLat": -27.41278 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.376199, "decimalLat": -27.920167 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377385, "decimalLat": -28.253958 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730134, "decimalLat": -34.890257 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.989853, "decimalLat": -38.401322 }, "geometry": { "type": "Point", "coordinates": [ 144.99, -38.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078414, "decimalLat": -27.506313 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.057709, "decimalLat": -27.265081 }, "geometry": { "type": "Point", "coordinates": [ 152.058, -27.265 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378516, "decimalLat": -28.255373 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163864, "decimalLat": -38.67128 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.158264, "decimalLat": -38.245531 }, "geometry": { "type": "Point", "coordinates": [ 143.158, -38.246 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090752, "decimalLat": -27.525812 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.248252, "decimalLat": -27.496345 }, "geometry": { "type": "Point", "coordinates": [ 152.248, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104063, "decimalLat": -27.528447 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731602, "decimalLat": -34.889174 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.7939, "decimalLat": -26.428908 }, "geometry": { "type": "Point", "coordinates": [ 151.794, -26.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.296183, "decimalLat": -35.709086 }, "geometry": { "type": "Point", "coordinates": [ 137.296, -35.709 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.262182, "decimalLat": -38.484579 }, "geometry": { "type": "Point", "coordinates": [ 145.262, -38.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108959, "decimalLat": -27.527079 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.132031, "decimalLat": -27.792254 }, "geometry": { "type": "Point", "coordinates": [ 153.132, -27.792 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.695687, "decimalLat": -32.23974 }, "geometry": { "type": "Point", "coordinates": [ 151.696, -32.24 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.033118, "decimalLat": -27.539771 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247087, "decimalLat": -27.490308 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.7974, "decimalLat": -26.584787 }, "geometry": { "type": "Point", "coordinates": [ 151.797, -26.585 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072255, "decimalLat": -27.543779 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.310672, "decimalLat": -37.268309 }, "geometry": { "type": "Point", "coordinates": [ 144.311, -37.268 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268433, "decimalLat": -38.130478 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.13 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.623889, "decimalLat": -27.869904 }, "geometry": { "type": "Point", "coordinates": [ 152.624, -27.87 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.519485, "decimalLat": -27.718727 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -27.719 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111494, "decimalLat": -27.527713 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093055, "decimalLat": -27.52832 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.373474, "decimalLat": -27.917501 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870697, "decimalLat": -19.131619 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.132 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090834, "decimalLat": -27.526417 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073534, "decimalLat": -27.545833 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.821721, "decimalLat": -26.444526 }, "geometry": { "type": "Point", "coordinates": [ 151.822, -26.445 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091485, "decimalLat": -27.527323 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.241017, "decimalLat": -38.256137 }, "geometry": { "type": "Point", "coordinates": [ 145.241, -38.256 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069691, "decimalLat": -27.507273 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048506, "decimalLat": -27.528169 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.038208, "decimalLat": -38.205528 }, "geometry": { "type": "Point", "coordinates": [ 142.038, -38.206 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.644816, "decimalLat": -27.89984 }, "geometry": { "type": "Point", "coordinates": [ 152.645, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0735, "decimalLat": -27.553908 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057724, "decimalLat": -27.553308 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.064042, "decimalLat": -27.261822 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -27.262 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.892166, "decimalLat": -27.597197 }, "geometry": { "type": "Point", "coordinates": [ 151.892, -27.597 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400692, "decimalLat": -28.257978 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092319, "decimalLat": -27.525683 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.396651, "decimalLat": -38.365195 }, "geometry": { "type": "Point", "coordinates": [ 146.397, -38.365 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.029073, "decimalLat": -26.207567 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -26.208 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051286, "decimalLat": -27.542147 }, "geometry": { "type": "Point", "coordinates": [ 153.051, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091867, "decimalLat": -27.526926 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.151142, "decimalLat": -27.583787 }, "geometry": { "type": "Point", "coordinates": [ 153.151, -27.584 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076435, "decimalLat": -27.817279 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08734, "decimalLat": -27.70049 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.7 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253097, "decimalLat": -27.508897 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.828708, "decimalLat": -29.655252 }, "geometry": { "type": "Point", "coordinates": [ 150.829, -29.655 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363106, "decimalLat": -38.319097 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109427, "decimalLat": -27.528074 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.084489, "decimalLat": -37.63308 }, "geometry": { "type": "Point", "coordinates": [ 144.084, -37.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164214, "decimalLat": -38.671283 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066816, "decimalLat": -27.250419 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.25 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.890896, "decimalLat": -37.641977 }, "geometry": { "type": "Point", "coordinates": [ 143.891, -37.642 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733406, "decimalLat": -34.890354 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.733783, "decimalLat": -37.924577 }, "geometry": { "type": "Point", "coordinates": [ 147.734, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.740203, "decimalLat": -37.530031 }, "geometry": { "type": "Point", "coordinates": [ 149.74, -37.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084231, "decimalLat": -27.511737 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111113, "decimalLat": -27.528253 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163777, "decimalLat": -38.671069 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091619, "decimalLat": -27.527093 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090736, "decimalLat": -27.52614 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.25097, "decimalLat": -38.23991 }, "geometry": { "type": "Point", "coordinates": [ 145.251, -38.24 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.710237, "decimalLat": -27.649083 }, "geometry": { "type": "Point", "coordinates": [ 151.71, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.997013, "decimalLat": -37.689564 }, "geometry": { "type": "Point", "coordinates": [ 143.997, -37.69 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.609147, "decimalLat": -27.398453 }, "geometry": { "type": "Point", "coordinates": [ 152.609, -27.398 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.033906, "decimalLat": -38.492792 }, "geometry": { "type": "Point", "coordinates": [ 143.034, -38.493 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.620945, "decimalLat": -34.894579 }, "geometry": { "type": "Point", "coordinates": [ 138.621, -34.895 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.690314, "decimalLat": -34.954243 }, "geometry": { "type": "Point", "coordinates": [ 138.69, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.563152, "decimalLat": -27.694228 }, "geometry": { "type": "Point", "coordinates": [ 151.563, -27.694 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092304, "decimalLat": -27.527327 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.633056, "decimalLat": -35.009105 }, "geometry": { "type": "Point", "coordinates": [ 138.633, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074568, "decimalLat": -27.358444 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.584508, "decimalLat": -35.096814 }, "geometry": { "type": "Point", "coordinates": [ 138.585, -35.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.730667, "decimalLat": -37.923896 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.583695, "decimalLat": -27.643437 }, "geometry": { "type": "Point", "coordinates": [ 151.584, -27.643 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090356, "decimalLat": -27.525993 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110368, "decimalLat": -27.527412 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860794, "decimalLat": -38.668372 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.257149, "decimalLat": -27.301966 }, "geometry": { "type": "Point", "coordinates": [ 152.257, -27.302 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.816476, "decimalLat": -26.407815 }, "geometry": { "type": "Point", "coordinates": [ 151.816, -26.408 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.844605, "decimalLat": -27.344178 }, "geometry": { "type": "Point", "coordinates": [ 152.845, -27.344 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.628928, "decimalLat": -28.639571 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058262, "decimalLat": -27.547984 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103899, "decimalLat": -27.528994 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102355, "decimalLat": -27.529589 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.588589, "decimalLat": -35.016612 }, "geometry": { "type": "Point", "coordinates": [ 138.589, -35.017 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.301955, "decimalLat": -37.064003 }, "geometry": { "type": "Point", "coordinates": [ 145.302, -37.064 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092238, "decimalLat": -27.527783 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084718, "decimalLat": -27.509151 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.729656, "decimalLat": -32.398247 }, "geometry": { "type": "Point", "coordinates": [ 151.73, -32.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733425, "decimalLat": -34.890393 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058179, "decimalLat": -27.547435 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377515, "decimalLat": -28.254098 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71482, "decimalLat": -34.892208 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715403, "decimalLat": -35.015223 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -35.015 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.377293, "decimalLat": -31.139247 }, "geometry": { "type": "Point", "coordinates": [ 149.377, -31.139 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721278, "decimalLat": -34.892107 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.99193, "decimalLat": -27.823057 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.371552, "decimalLat": -27.905991 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058243, "decimalLat": -27.551094 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.865973, "decimalLat": -28.21145 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.211 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.220722, "decimalLat": -38.061359 }, "geometry": { "type": "Point", "coordinates": [ 141.221, -38.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.034181, "decimalLat": -27.540786 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05734, "decimalLat": -27.550799 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103539, "decimalLat": -27.530047 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108273, "decimalLat": -27.527264 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.630255, "decimalLat": -38.341508 }, "geometry": { "type": "Point", "coordinates": [ 142.63, -38.342 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.604846, "decimalLat": -28.163892 }, "geometry": { "type": "Point", "coordinates": [ 152.605, -28.164 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601266, "decimalLat": -29.870372 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -29.87 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.859418, "decimalLat": -28.216064 }, "geometry": { "type": "Point", "coordinates": [ 152.859, -28.216 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.094772, "decimalLat": -37.623783 }, "geometry": { "type": "Point", "coordinates": [ 144.095, -37.624 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092012, "decimalLat": -27.527208 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.524482, "decimalLat": -38.836303 }, "geometry": { "type": "Point", "coordinates": [ 143.524, -38.836 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.518926, "decimalLat": -30.520925 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078042, "decimalLat": -27.87286 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.873 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.613349, "decimalLat": -27.339159 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.648814, "decimalLat": -35.004125 }, "geometry": { "type": "Point", "coordinates": [ 138.649, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.652201, "decimalLat": -35.009201 }, "geometry": { "type": "Point", "coordinates": [ 138.652, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.802522, "decimalLat": -26.157177 }, "geometry": { "type": "Point", "coordinates": [ 151.803, -26.157 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.892727, "decimalLat": -27.635536 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -27.636 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400586, "decimalLat": -28.257925 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.857309, "decimalLat": -27.544032 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164064, "decimalLat": -38.671367 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363663, "decimalLat": -38.31852 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.050485, "decimalLat": -27.545217 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074647, "decimalLat": -27.251092 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.251 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.897749, "decimalLat": -27.655167 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -27.655 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103742, "decimalLat": -27.530315 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092368, "decimalLat": -27.525714 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052702, "decimalLat": -27.553178 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095387, "decimalLat": -33.076681 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703036, "decimalLat": -34.903199 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.134481, "decimalLat": -38.178428 }, "geometry": { "type": "Point", "coordinates": [ 145.134, -38.178 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.613512, "decimalLat": -27.33318 }, "geometry": { "type": "Point", "coordinates": [ 152.614, -27.333 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244963, "decimalLat": -27.49027 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104619, "decimalLat": -27.530601 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.658549, "decimalLat": -35.00581 }, "geometry": { "type": "Point", "coordinates": [ 138.659, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.56917, "decimalLat": -34.756192 }, "geometry": { "type": "Point", "coordinates": [ 146.569, -34.756 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.757193, "decimalLat": -37.55572 }, "geometry": { "type": "Point", "coordinates": [ 149.757, -37.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090705, "decimalLat": -27.527076 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.619301, "decimalLat": -27.423007 }, "geometry": { "type": "Point", "coordinates": [ 152.619, -27.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09184, "decimalLat": -27.526777 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.693111, "decimalLat": -34.959648 }, "geometry": { "type": "Point", "coordinates": [ 138.693, -34.96 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376953, "decimalLat": -28.253992 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.759338, "decimalLat": -37.561342 }, "geometry": { "type": "Point", "coordinates": [ 149.759, -37.561 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.681166, "decimalLat": -34.953701 }, "geometry": { "type": "Point", "coordinates": [ 138.681, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091829, "decimalLat": -27.525845 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090459, "decimalLat": -27.525581 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.646775, "decimalLat": -35.004181 }, "geometry": { "type": "Point", "coordinates": [ 138.647, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.523032, "decimalLat": -27.715529 }, "geometry": { "type": "Point", "coordinates": [ 151.523, -27.716 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268312, "decimalLat": -38.131067 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.205358, "decimalLat": -37.236611 }, "geometry": { "type": "Point", "coordinates": [ 143.205, -37.237 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079803, "decimalLat": -27.507092 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.95613, "decimalLat": -27.48468 }, "geometry": { "type": "Point", "coordinates": [ 152.956, -27.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713738, "decimalLat": -34.89203 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.2462, "decimalLat": -27.496246 }, "geometry": { "type": "Point", "coordinates": [ 152.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163833, "decimalLat": -38.671453 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078733, "decimalLat": -27.506659 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702378, "decimalLat": -34.903095 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.371553, "decimalLat": -27.83827 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.838 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19228, "decimalLat": -27.70249 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.545586, "decimalLat": -27.487678 }, "geometry": { "type": "Point", "coordinates": [ 152.546, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106891, "decimalLat": -27.529063 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30297, "decimalLat": -28.682415 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.682 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.940688, "decimalLat": -38.497969 }, "geometry": { "type": "Point", "coordinates": [ 145.941, -38.498 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.1167, "decimalLat": -37.580437 }, "geometry": { "type": "Point", "coordinates": [ 144.117, -37.58 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072994, "decimalLat": -27.546016 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.906531, "decimalLat": -28.174268 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -28.174 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.404879, "decimalLat": -28.260621 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.517013, "decimalLat": -27.29965 }, "geometry": { "type": "Point", "coordinates": [ 152.517, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.247078, "decimalLat": -27.49628 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.705733, "decimalLat": -37.177728 }, "geometry": { "type": "Point", "coordinates": [ 144.706, -37.178 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.753152, "decimalLat": -35.00531 }, "geometry": { "type": "Point", "coordinates": [ 138.753, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.789047, "decimalLat": -34.9436 }, "geometry": { "type": "Point", "coordinates": [ 138.789, -34.944 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520753, "decimalLat": -30.524561 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.367254, "decimalLat": -38.315184 }, "geometry": { "type": "Point", "coordinates": [ 142.367, -38.315 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072922, "decimalLat": -27.545934 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.050307, "decimalLat": -27.525125 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.635211, "decimalLat": -35.008107 }, "geometry": { "type": "Point", "coordinates": [ 138.635, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09047, "decimalLat": -27.526957 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103722, "decimalLat": -27.529062 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.642793, "decimalLat": -27.710726 }, "geometry": { "type": "Point", "coordinates": [ 151.643, -27.711 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.599944, "decimalLat": -28.166618 }, "geometry": { "type": "Point", "coordinates": [ 152.6, -28.167 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.6285, "decimalLat": -26.500173 }, "geometry": { "type": "Point", "coordinates": [ 152.629, -26.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437402, "decimalLat": -27.400882 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084855, "decimalLat": -27.500875 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.687926, "decimalLat": -26.172705 }, "geometry": { "type": "Point", "coordinates": [ 151.688, -26.173 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092009, "decimalLat": -27.527123 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713176, "decimalLat": -34.891488 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072071, "decimalLat": -27.54559 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.375637, "decimalLat": -27.909124 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.595597, "decimalLat": -27.696353 }, "geometry": { "type": "Point", "coordinates": [ 151.596, -27.696 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.883751, "decimalLat": -37.586998 }, "geometry": { "type": "Point", "coordinates": [ 143.884, -37.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068724, "decimalLat": -27.544695 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103681, "decimalLat": -27.530151 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090681, "decimalLat": -27.526502 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719491, "decimalLat": -34.892094 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083375, "decimalLat": -27.516995 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.673902, "decimalLat": -35.921813 }, "geometry": { "type": "Point", "coordinates": [ 145.674, -35.922 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090457, "decimalLat": -27.526846 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092151, "decimalLat": -27.527066 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.781286, "decimalLat": -27.801148 }, "geometry": { "type": "Point", "coordinates": [ 152.781, -27.801 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.8244, "decimalLat": -28.5302 }, "geometry": { "type": "Point", "coordinates": [ 151.824, -28.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092268, "decimalLat": -27.528173 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.567409, "decimalLat": -34.758925 }, "geometry": { "type": "Point", "coordinates": [ 146.567, -34.759 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090683, "decimalLat": -27.526262 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.165532, "decimalLat": -31.187142 }, "geometry": { "type": "Point", "coordinates": [ 150.166, -31.187 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055198, "decimalLat": -27.547378 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082279, "decimalLat": -27.507982 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730268, "decimalLat": -34.886713 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.935167, "decimalLat": -27.275622 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -27.276 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400729, "decimalLat": -28.257882 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090803, "decimalLat": -27.52679 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.576049, "decimalLat": -35.030553 }, "geometry": { "type": "Point", "coordinates": [ 138.576, -35.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059122, "decimalLat": -27.545162 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.108078, "decimalLat": -27.564039 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -27.564 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092867, "decimalLat": -27.527898 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.290695, "decimalLat": -37.874278 }, "geometry": { "type": "Point", "coordinates": [ 144.291, -37.874 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883375, "decimalLat": -30.475892 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -30.476 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079585, "decimalLat": -27.50711 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519282, "decimalLat": -30.520446 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057821, "decimalLat": -27.551609 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073731, "decimalLat": -27.545974 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.072748, "decimalLat": -30.877933 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -30.878 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046351, "decimalLat": -27.638197 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.638 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.751443, "decimalLat": -35.10314 }, "geometry": { "type": "Point", "coordinates": [ 138.751, -35.103 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091592, "decimalLat": -27.527252 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.366524, "decimalLat": -27.901581 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712229, "decimalLat": -34.891162 }, "geometry": { "type": "Point", "coordinates": [ 138.712, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.990985, "decimalLat": -27.678507 }, "geometry": { "type": "Point", "coordinates": [ 151.991, -27.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.882973, "decimalLat": -37.591214 }, "geometry": { "type": "Point", "coordinates": [ 143.883, -37.591 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.283107, "decimalLat": -38.137973 }, "geometry": { "type": "Point", "coordinates": [ 145.283, -38.138 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05962, "decimalLat": -27.549157 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.268697, "decimalLat": -38.253989 }, "geometry": { "type": "Point", "coordinates": [ 143.269, -38.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111702, "decimalLat": -27.527796 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.876363, "decimalLat": -26.484234 }, "geometry": { "type": "Point", "coordinates": [ 151.876, -26.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062811, "decimalLat": -27.550375 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048478, "decimalLat": -27.526007 }, "geometry": { "type": "Point", "coordinates": [ 153.048, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.457715, "decimalLat": -37.015095 }, "geometry": { "type": "Point", "coordinates": [ 145.458, -37.015 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68953, "decimalLat": -34.9249 }, "geometry": { "type": "Point", "coordinates": [ 138.69, -34.925 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057567, "decimalLat": -27.550906 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.857815, "decimalLat": -27.544068 }, "geometry": { "type": "Point", "coordinates": [ 152.858, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068505, "decimalLat": -27.542539 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072224, "decimalLat": -27.545227 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090934, "decimalLat": -27.527243 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438047, "decimalLat": -27.400673 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10501, "decimalLat": -27.53006 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.780284, "decimalLat": -34.812769 }, "geometry": { "type": "Point", "coordinates": [ 135.78, -34.813 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056515, "decimalLat": -27.552254 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.125305, "decimalLat": -37.262288 }, "geometry": { "type": "Point", "coordinates": [ 144.125, -37.262 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.731903, "decimalLat": -38.626347 }, "geometry": { "type": "Point", "coordinates": [ 145.732, -38.626 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.584045, "decimalLat": -35.081836 }, "geometry": { "type": "Point", "coordinates": [ 138.584, -35.082 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.058258, "decimalLat": -26.1571 }, "geometry": { "type": "Point", "coordinates": [ 152.058, -26.157 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101739, "decimalLat": -27.530077 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16417, "decimalLat": -38.6713 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.050763, "decimalLat": -27.549054 }, "geometry": { "type": "Point", "coordinates": [ 153.051, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10519, "decimalLat": -27.531445 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102264, "decimalLat": -27.527268 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.063002, "decimalLat": -27.262701 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -27.263 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093174, "decimalLat": -27.527737 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003128, "decimalLat": -27.413938 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9888, "decimalLat": -27.169942 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -27.17 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719906, "decimalLat": -34.891983 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091778, "decimalLat": -27.527144 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.694987, "decimalLat": -34.897553 }, "geometry": { "type": "Point", "coordinates": [ 138.695, -34.898 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.27656, "decimalLat": -27.594162 }, "geometry": { "type": "Point", "coordinates": [ 152.277, -27.594 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.021941, "decimalLat": -35.982855 }, "geometry": { "type": "Point", "coordinates": [ 137.022, -35.983 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716457, "decimalLat": -34.891724 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.403247, "decimalLat": -27.458381 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -27.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111573, "decimalLat": -27.524529 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.790265, "decimalLat": -32.565188 }, "geometry": { "type": "Point", "coordinates": [ 151.79, -32.565 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399593, "decimalLat": -27.497778 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068256, "decimalLat": -27.226759 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.227 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10274, "decimalLat": -27.544398 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091527, "decimalLat": -27.526714 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.320745, "decimalLat": -35.87115 }, "geometry": { "type": "Point", "coordinates": [ 145.321, -35.871 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090794, "decimalLat": -27.527163 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.869001, "decimalLat": -28.280231 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -28.28 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107594, "decimalLat": -27.526951 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703999, "decimalLat": -34.903124 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103743, "decimalLat": -27.52947 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718528, "decimalLat": -34.862885 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.863 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105087, "decimalLat": -27.529355 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.291032, "decimalLat": -37.874648 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111619, "decimalLat": -27.529111 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.639678, "decimalLat": -38.239525 }, "geometry": { "type": "Point", "coordinates": [ 141.64, -38.24 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09007, "decimalLat": -27.52629 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086288, "decimalLat": -27.509067 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069625, "decimalLat": -27.510478 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06993, "decimalLat": -27.510536 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.714472, "decimalLat": -34.892519 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.042182, "decimalLat": -27.300201 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400636, "decimalLat": -28.260291 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083243, "decimalLat": -27.510579 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.381165, "decimalLat": -38.404854 }, "geometry": { "type": "Point", "coordinates": [ 145.381, -38.405 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104176, "decimalLat": -27.530272 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091813, "decimalLat": -27.526976 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.087792, "decimalLat": -27.510157 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.709194, "decimalLat": -34.97715 }, "geometry": { "type": "Point", "coordinates": [ 138.709, -34.977 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.47312, "decimalLat": -27.532723 }, "geometry": { "type": "Point", "coordinates": [ 152.473, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729233, "decimalLat": -37.9249 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058597, "decimalLat": -27.547597 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093069, "decimalLat": -27.524249 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.04853, "decimalLat": -27.526073 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092526, "decimalLat": -27.528526 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083711, "decimalLat": -27.516758 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069214, "decimalLat": -27.2231 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.263896, "decimalLat": -28.011401 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -28.011 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003068, "decimalLat": -27.413778 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092379, "decimalLat": -27.527402 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.996658, "decimalLat": -27.304094 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -27.304 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.008876, "decimalLat": -38.397681 }, "geometry": { "type": "Point", "coordinates": [ 144.009, -38.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112122, "decimalLat": -27.528297 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.619278, "decimalLat": -27.40702 }, "geometry": { "type": "Point", "coordinates": [ 152.619, -27.407 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.508785, "decimalLat": -27.708995 }, "geometry": { "type": "Point", "coordinates": [ 151.509, -27.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046419, "decimalLat": -27.257097 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085995, "decimalLat": -27.706331 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092976, "decimalLat": -27.526112 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71844, "decimalLat": -34.872116 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -34.872 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092362, "decimalLat": -27.528156 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.045624, "decimalLat": -27.547892 }, "geometry": { "type": "Point", "coordinates": [ 153.046, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.047765, "decimalLat": -38.267438 }, "geometry": { "type": "Point", "coordinates": [ 145.048, -38.267 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061625, "decimalLat": -27.538292 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090779, "decimalLat": -27.526523 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102782, "decimalLat": -27.527631 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103462, "decimalLat": -27.530113 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729966, "decimalLat": -37.924674 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10933, "decimalLat": -27.52717 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.374253, "decimalLat": -27.913463 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.361575, "decimalLat": -31.926603 }, "geometry": { "type": "Point", "coordinates": [ 152.362, -31.927 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103311, "decimalLat": -27.52843 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058262, "decimalLat": -27.547984 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093411, "decimalLat": -27.525322 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.392744, "decimalLat": -28.268857 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.269 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.948992, "decimalLat": -27.38928 }, "geometry": { "type": "Point", "coordinates": [ 151.949, -27.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112677, "decimalLat": -27.527349 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400089, "decimalLat": -28.260532 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103633, "decimalLat": -27.529467 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054717, "decimalLat": -27.55248 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.151142, "decimalLat": -27.583787 }, "geometry": { "type": "Point", "coordinates": [ 153.151, -27.584 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11164, "decimalLat": -27.525062 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052911, "decimalLat": -27.550114 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.590622, "decimalLat": -34.755858 }, "geometry": { "type": "Point", "coordinates": [ 146.591, -34.756 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072827, "decimalLat": -27.545779 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.722472, "decimalLat": -37.925195 }, "geometry": { "type": "Point", "coordinates": [ 147.722, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.772294, "decimalLat": -38.479161 }, "geometry": { "type": "Point", "coordinates": [ 146.772, -38.479 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.747701, "decimalLat": -37.921407 }, "geometry": { "type": "Point", "coordinates": [ 147.748, -37.921 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091095, "decimalLat": -27.52738 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102853, "decimalLat": -27.527514 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722008, "decimalLat": -34.892402 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520646, "decimalLat": -30.52016 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.904191, "decimalLat": -37.750769 }, "geometry": { "type": "Point", "coordinates": [ 143.904, -37.751 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090846, "decimalLat": -27.526936 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109524, "decimalLat": -27.527294 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.099679, "decimalLat": -27.531783 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.592343, "decimalLat": -37.784724 }, "geometry": { "type": "Point", "coordinates": [ 145.592, -37.785 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914886, "decimalLat": -30.496828 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -30.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.62059, "decimalLat": -27.889094 }, "geometry": { "type": "Point", "coordinates": [ 152.621, -27.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.606044, "decimalLat": -38.766176 }, "geometry": { "type": "Point", "coordinates": [ 143.606, -38.766 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.520538, "decimalLat": -27.719555 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -27.72 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092744, "decimalLat": -27.526533 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163783, "decimalLat": -38.67122 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.076072, "decimalLat": -28.262045 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164003, "decimalLat": -38.67155 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106724, "decimalLat": -27.528943 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0926, "decimalLat": -27.528313 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.988983, "decimalLat": -27.170367 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -27.17 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43875, "decimalLat": -27.397156 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.153226, "decimalLat": -27.514409 }, "geometry": { "type": "Point", "coordinates": [ 152.153, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.88618, "decimalLat": -27.149764 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -27.15 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.087792, "decimalLat": -27.511106 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.108355, "decimalLat": -37.331544 }, "geometry": { "type": "Point", "coordinates": [ 144.108, -37.332 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1047, "decimalLat": -27.529617 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395449, "decimalLat": -28.264354 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.264 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.895934, "decimalLat": -37.643178 }, "geometry": { "type": "Point", "coordinates": [ 143.896, -37.643 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729822, "decimalLat": -34.889988 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10405, "decimalLat": -27.528558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057863, "decimalLat": -27.550933 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.119322, "decimalLat": -28.22824 }, "geometry": { "type": "Point", "coordinates": [ 153.119, -28.228 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078256, "decimalLat": -27.507144 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.025119, "decimalLat": -26.271015 }, "geometry": { "type": "Point", "coordinates": [ 152.025, -26.271 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091617, "decimalLat": -27.52724 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000997, "decimalLat": -27.28444 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.739368, "decimalLat": -37.529232 }, "geometry": { "type": "Point", "coordinates": [ 149.739, -37.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107824, "decimalLat": -27.526955 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108151, "decimalLat": -27.527083 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092754, "decimalLat": -27.525635 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.706536, "decimalLat": -34.900667 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.901 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733676, "decimalLat": -34.887659 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108136, "decimalLat": -27.527258 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093224, "decimalLat": -27.524062 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092991, "decimalLat": -27.527683 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.815574, "decimalLat": -26.166207 }, "geometry": { "type": "Point", "coordinates": [ 151.816, -26.166 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437883, "decimalLat": -27.400768 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102091, "decimalLat": -27.733776 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.734 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092198, "decimalLat": -27.52571 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.691441, "decimalLat": -26.177958 }, "geometry": { "type": "Point", "coordinates": [ 151.691, -26.178 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.825397, "decimalLat": -26.571833 }, "geometry": { "type": "Point", "coordinates": [ 151.825, -26.572 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090979, "decimalLat": -27.527593 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400672, "decimalLat": -28.258145 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058054, "decimalLat": -26.669784 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -26.67 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375948, "decimalLat": -28.252413 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090383, "decimalLat": -27.525669 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402218, "decimalLat": -28.258787 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092219, "decimalLat": -27.525703 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.042572, "decimalLat": -27.297383 }, "geometry": { "type": "Point", "coordinates": [ 152.043, -27.297 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.997092, "decimalLat": -27.287694 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -27.288 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400308, "decimalLat": -28.258315 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102948, "decimalLat": -27.528814 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.727946, "decimalLat": -34.888703 }, "geometry": { "type": "Point", "coordinates": [ 138.728, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.245743, "decimalLat": -38.250173 }, "geometry": { "type": "Point", "coordinates": [ 145.246, -38.25 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103324, "decimalLat": -27.530222 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999328, "decimalLat": -27.283942 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.030088, "decimalLat": -37.783594 }, "geometry": { "type": "Point", "coordinates": [ 144.03, -37.784 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715775, "decimalLat": -34.892385 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092071, "decimalLat": -27.527176 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102858, "decimalLat": -27.518644 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.752594, "decimalLat": -34.577778 }, "geometry": { "type": "Point", "coordinates": [ 138.753, -34.578 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.731676, "decimalLat": -27.591878 }, "geometry": { "type": "Point", "coordinates": [ 151.732, -27.592 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.926671, "decimalLat": -29.790217 }, "geometry": { "type": "Point", "coordinates": [ 150.927, -29.79 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248632, "decimalLat": -27.490642 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.980821, "decimalLat": -38.522045 }, "geometry": { "type": "Point", "coordinates": [ 145.981, -38.522 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090795, "decimalLat": -27.525902 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.127718, "decimalLat": -38.180976 }, "geometry": { "type": "Point", "coordinates": [ 145.128, -38.181 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.045011, "decimalLat": -27.258115 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719748, "decimalLat": -34.891931 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093349, "decimalLat": -27.525415 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109074, "decimalLat": -27.526988 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110492, "decimalLat": -27.52789 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.92469, "decimalLat": -38.062705 }, "geometry": { "type": "Point", "coordinates": [ 141.925, -38.063 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230035, "decimalLat": -28.122587 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.123 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.15552, "decimalLat": -38.376706 }, "geometry": { "type": "Point", "coordinates": [ 146.156, -38.377 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.943459, "decimalLat": -27.987487 }, "geometry": { "type": "Point", "coordinates": [ 152.943, -27.987 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.854726, "decimalLat": -34.730751 }, "geometry": { "type": "Point", "coordinates": [ 138.855, -34.731 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092953, "decimalLat": -27.526111 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105795, "decimalLat": -27.52954 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.512987, "decimalLat": -38.83392 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.671642, "decimalLat": -35.016328 }, "geometry": { "type": "Point", "coordinates": [ 138.672, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.999328, "decimalLat": -38.825169 }, "geometry": { "type": "Point", "coordinates": [ 145.999, -38.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.131559, "decimalLat": -24.964662 }, "geometry": { "type": "Point", "coordinates": [ 151.132, -24.965 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637572, "decimalLat": -34.968982 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.969 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.859395, "decimalLat": -27.546422 }, "geometry": { "type": "Point", "coordinates": [ 152.859, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.691557, "decimalLat": -26.17693 }, "geometry": { "type": "Point", "coordinates": [ 151.692, -26.177 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073225, "decimalLat": -27.545888 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109009, "decimalLat": -27.526759 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.65998, "decimalLat": -28.22878 }, "geometry": { "type": "Point", "coordinates": [ 152.66, -28.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638095, "decimalLat": -34.971265 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.106493, "decimalLat": -27.56232 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -27.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058587, "decimalLat": -27.547872 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372843, "decimalLat": -27.909659 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.91 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058546, "decimalLat": -27.55151 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.589112, "decimalLat": -37.521837 }, "geometry": { "type": "Point", "coordinates": [ 144.589, -37.522 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.614137, "decimalLat": -27.714188 }, "geometry": { "type": "Point", "coordinates": [ 151.614, -27.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.369622, "decimalLat": -36.934926 }, "geometry": { "type": "Point", "coordinates": [ 145.37, -36.935 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629436, "decimalLat": -28.637385 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090821, "decimalLat": -27.526907 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733345, "decimalLat": -34.886392 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085251, "decimalLat": -27.516902 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729161, "decimalLat": -34.88981 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65537, "decimalLat": -34.867792 }, "geometry": { "type": "Point", "coordinates": [ 138.655, -34.868 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.998927, "decimalLat": -27.283761 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.433583, "decimalLat": -28.163831 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.164 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102975, "decimalLat": -27.564797 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.898685, "decimalLat": -27.521564 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -27.522 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249354, "decimalLat": -27.48931 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.947768, "decimalLat": -26.224376 }, "geometry": { "type": "Point", "coordinates": [ 151.948, -26.224 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.88144, "decimalLat": -26.307089 }, "geometry": { "type": "Point", "coordinates": [ 151.881, -26.307 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081139, "decimalLat": -27.508682 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104005, "decimalLat": -27.529838 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072442, "decimalLat": -27.549146 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108296, "decimalLat": -27.526966 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.86833, "decimalLat": -19.1273 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.127 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.376836, "decimalLat": -27.919428 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091822, "decimalLat": -27.526921 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.042229, "decimalLat": -27.558822 }, "geometry": { "type": "Point", "coordinates": [ 153.042, -27.559 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.413637, "decimalLat": -38.271928 }, "geometry": { "type": "Point", "coordinates": [ 141.414, -38.272 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092672, "decimalLat": -27.527966 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091275, "decimalLat": -27.526831 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.22517, "decimalLat": -38.149385 }, "geometry": { "type": "Point", "coordinates": [ 145.225, -38.149 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055609, "decimalLat": -27.552225 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10285, "decimalLat": -27.527619 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057367, "decimalLat": -27.551479 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.543945, "decimalLat": -38.055603 }, "geometry": { "type": "Point", "coordinates": [ 141.544, -38.056 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086131, "decimalLat": -27.510453 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073575, "decimalLat": -27.547352 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06039, "decimalLat": -27.545258 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112468, "decimalLat": -27.528801 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.273925, "decimalLat": -38.128422 }, "geometry": { "type": "Point", "coordinates": [ 145.274, -38.128 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09105, "decimalLat": -27.52715 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72208, "decimalLat": -34.889972 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101334, "decimalLat": -27.530219 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.728863, "decimalLat": -37.921857 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.027467, "decimalLat": -26.387775 }, "geometry": { "type": "Point", "coordinates": [ 153.027, -26.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072681, "decimalLat": -27.226442 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080277, "decimalLat": -27.514196 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.658832, "decimalLat": -35.007122 }, "geometry": { "type": "Point", "coordinates": [ 138.659, -35.007 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.01559, "decimalLat": -26.524044 }, "geometry": { "type": "Point", "coordinates": [ 152.016, -26.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109257, "decimalLat": -27.527109 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.728863, "decimalLat": -37.921857 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.723099, "decimalLat": -34.890536 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.688567, "decimalLat": -34.875703 }, "geometry": { "type": "Point", "coordinates": [ 138.689, -34.876 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.371405, "decimalLat": -27.905575 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0837, "decimalLat": -27.507443 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090398, "decimalLat": -27.526648 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.425386, "decimalLat": -36.894458 }, "geometry": { "type": "Point", "coordinates": [ 145.425, -36.894 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.810517, "decimalLat": -35.96022 }, "geometry": { "type": "Point", "coordinates": [ 136.811, -35.96 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090673, "decimalLat": -27.526638 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092626, "decimalLat": -27.525393 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090824, "decimalLat": -27.527353 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.710976, "decimalLat": -31.78285 }, "geometry": { "type": "Point", "coordinates": [ 152.711, -31.783 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.194503, "decimalLat": -27.513717 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.948116, "decimalLat": -28.597757 }, "geometry": { "type": "Point", "coordinates": [ 151.948, -28.598 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.386893, "decimalLat": -38.356062 }, "geometry": { "type": "Point", "coordinates": [ 146.387, -38.356 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090973, "decimalLat": -27.52745 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.372448, "decimalLat": -36.93064 }, "geometry": { "type": "Point", "coordinates": [ 145.372, -36.931 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.594437, "decimalLat": -27.800312 }, "geometry": { "type": "Point", "coordinates": [ 151.594, -27.8 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732293, "decimalLat": -34.887397 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08304, "decimalLat": -27.513983 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10344, "decimalLat": -27.528332 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.89471, "decimalLat": -27.424888 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.18903, "decimalLat": -28.172586 }, "geometry": { "type": "Point", "coordinates": [ 153.189, -28.173 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.869613, "decimalLat": -19.125192 }, "geometry": { "type": "Point", "coordinates": [ 146.87, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.669104, "decimalLat": -34.958902 }, "geometry": { "type": "Point", "coordinates": [ 138.669, -34.959 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.07379, "decimalLat": -34.550587 }, "geometry": { "type": "Point", "coordinates": [ 150.074, -34.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091233, "decimalLat": -27.527229 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092924, "decimalLat": -27.527116 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093553, "decimalLat": -27.52838 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.77985, "decimalLat": -27.78888 }, "geometry": { "type": "Point", "coordinates": [ 152.78, -27.789 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058136, "decimalLat": -27.551441 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111475, "decimalLat": -27.525604 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091736, "decimalLat": -27.527103 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.373009, "decimalLat": -27.912762 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378076, "decimalLat": -28.25518 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111794, "decimalLat": -27.527862 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090801, "decimalLat": -27.527159 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.716587, "decimalLat": -27.568838 }, "geometry": { "type": "Point", "coordinates": [ 151.717, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073863, "decimalLat": -27.546128 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716967, "decimalLat": -34.892953 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048558, "decimalLat": -27.524989 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090821, "decimalLat": -27.526323 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103279, "decimalLat": -27.530231 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09274, "decimalLat": -27.528547 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092058, "decimalLat": -27.525564 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42558, "decimalLat": -27.468856 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -27.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.089296, "decimalLat": -27.523752 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090224, "decimalLat": -27.525449 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092001, "decimalLat": -27.527165 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.127472, "decimalLat": -37.34477 }, "geometry": { "type": "Point", "coordinates": [ 144.127, -37.345 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.898409, "decimalLat": -37.616456 }, "geometry": { "type": "Point", "coordinates": [ 143.898, -37.616 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0903, "decimalLat": -27.526777 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.52182, "decimalLat": -38.77558 }, "geometry": { "type": "Point", "coordinates": [ 143.522, -38.776 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093146, "decimalLat": -27.527732 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.561233, "decimalLat": -27.800278 }, "geometry": { "type": "Point", "coordinates": [ 151.561, -27.8 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991842, "decimalLat": -27.822649 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113449, "decimalLat": -27.528509 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05876, "decimalLat": -27.551391 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.894046, "decimalLat": -27.598196 }, "geometry": { "type": "Point", "coordinates": [ 151.894, -27.598 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.564286, "decimalLat": -29.546377 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -29.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103735, "decimalLat": -27.530402 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554992, "decimalLat": -28.713292 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.713 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090224, "decimalLat": -27.526231 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.196154, "decimalLat": -27.405367 }, "geometry": { "type": "Point", "coordinates": [ 152.196, -27.405 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.215, "decimalLat": -37.724 }, "geometry": { "type": "Point", "coordinates": [ 141.215, -37.724 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095288, "decimalLat": -33.076702 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104441, "decimalLat": -27.529517 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108922, "decimalLat": -27.52671 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.670487, "decimalLat": -34.963078 }, "geometry": { "type": "Point", "coordinates": [ 138.67, -34.963 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09131, "decimalLat": -27.527232 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440945, "decimalLat": -27.392693 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090741, "decimalLat": -27.526466 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733707, "decimalLat": -34.88858 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.852325, "decimalLat": -27.327658 }, "geometry": { "type": "Point", "coordinates": [ 151.852, -27.328 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387175, "decimalLat": -38.356021 }, "geometry": { "type": "Point", "coordinates": [ 146.387, -38.356 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074647, "decimalLat": -27.358627 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.127876, "decimalLat": -27.820128 }, "geometry": { "type": "Point", "coordinates": [ 153.128, -27.82 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.672638, "decimalLat": -34.93747 }, "geometry": { "type": "Point", "coordinates": [ 138.673, -34.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.00461, "decimalLat": -38.354597 }, "geometry": { "type": "Point", "coordinates": [ 145.005, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09031, "decimalLat": -27.525516 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.042261, "decimalLat": -27.299171 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -27.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656945, "decimalLat": -35.148611 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -35.149 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11298, "decimalLat": -27.529272 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09029, "decimalLat": -27.52546 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092212, "decimalLat": -27.527384 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.33627, "decimalLat": -24.713532 }, "geometry": { "type": "Point", "coordinates": [ 151.336, -24.714 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.088579, "decimalLat": -38.283465 }, "geometry": { "type": "Point", "coordinates": [ 145.089, -38.283 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.824758, "decimalLat": -26.1093 }, "geometry": { "type": "Point", "coordinates": [ 151.825, -26.109 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090491, "decimalLat": -27.526799 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.868119, "decimalLat": -28.217796 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -28.218 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.517939, "decimalLat": -30.520949 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5183, "decimalLat": -28.5675 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -28.567 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249388, "decimalLat": -27.48935 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.603741, "decimalLat": -38.314724 }, "geometry": { "type": "Point", "coordinates": [ 145.604, -38.315 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.845747, "decimalLat": -27.339103 }, "geometry": { "type": "Point", "coordinates": [ 152.846, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090479, "decimalLat": -27.526161 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.750356, "decimalLat": -28.181893 }, "geometry": { "type": "Point", "coordinates": [ 152.75, -28.182 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106039, "decimalLat": -27.529304 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732402, "decimalLat": -34.888361 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09091, "decimalLat": -27.526736 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.266924, "decimalLat": -37.389015 }, "geometry": { "type": "Point", "coordinates": [ 144.267, -37.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.401511, "decimalLat": -27.457422 }, "geometry": { "type": "Point", "coordinates": [ 152.402, -27.457 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092354, "decimalLat": -27.528191 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.901148, "decimalLat": -37.641822 }, "geometry": { "type": "Point", "coordinates": [ 143.901, -37.642 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093577, "decimalLat": -27.527339 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16387, "decimalLat": -38.671199 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083671, "decimalLat": -27.516493 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.858292, "decimalLat": -38.666538 }, "geometry": { "type": "Point", "coordinates": [ 143.858, -38.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104248, "decimalLat": -27.530774 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.685531, "decimalLat": -36.248753 }, "geometry": { "type": "Point", "coordinates": [ 146.686, -36.249 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.531993, "decimalLat": -34.753069 }, "geometry": { "type": "Point", "coordinates": [ 146.532, -34.753 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.065706, "decimalLat": -27.507939 }, "geometry": { "type": "Point", "coordinates": [ 153.066, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.755229, "decimalLat": -26.161009 }, "geometry": { "type": "Point", "coordinates": [ 151.755, -26.161 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.906209, "decimalLat": -28.173366 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -28.173 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.18103, "decimalLat": -27.582909 }, "geometry": { "type": "Point", "coordinates": [ 153.181, -27.583 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520753, "decimalLat": -30.524561 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.306083, "decimalLat": -31.638842 }, "geometry": { "type": "Point", "coordinates": [ 152.306, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.131109, "decimalLat": -38.174704 }, "geometry": { "type": "Point", "coordinates": [ 145.131, -38.175 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103169, "decimalLat": -27.529021 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.362912, "decimalLat": -38.321033 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.321 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.635465, "decimalLat": -34.99041 }, "geometry": { "type": "Point", "coordinates": [ 138.635, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37539, "decimalLat": -28.252213 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.614425, "decimalLat": -27.339255 }, "geometry": { "type": "Point", "coordinates": [ 152.614, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06069, "decimalLat": -27.544754 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111837, "decimalLat": -27.527785 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109025, "decimalLat": -27.526974 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393389, "decimalLat": -28.27573 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069775, "decimalLat": -27.510518 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720816, "decimalLat": -34.892248 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052205, "decimalLat": -27.549179 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.89366, "decimalLat": -37.617567 }, "geometry": { "type": "Point", "coordinates": [ 143.894, -37.618 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.946955, "decimalLat": -34.760984 }, "geometry": { "type": "Point", "coordinates": [ 138.947, -34.761 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.724552, "decimalLat": -34.893439 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163772, "decimalLat": -38.671242 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.66558, "decimalLat": -34.865918 }, "geometry": { "type": "Point", "coordinates": [ 138.666, -34.866 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.558258, "decimalLat": -38.807828 }, "geometry": { "type": "Point", "coordinates": [ 143.558, -38.808 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.855676, "decimalLat": -26.490043 }, "geometry": { "type": "Point", "coordinates": [ 151.856, -26.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.959217, "decimalLat": -27.273196 }, "geometry": { "type": "Point", "coordinates": [ 152.959, -27.273 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372406, "decimalLat": -27.909385 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070702, "decimalLat": -27.543747 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05497, "decimalLat": -27.550497 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08695, "decimalLat": -27.69515 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.695 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092841, "decimalLat": -27.528347 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.648163, "decimalLat": -37.769367 }, "geometry": { "type": "Point", "coordinates": [ 145.648, -37.769 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.901047, "decimalLat": -27.381513 }, "geometry": { "type": "Point", "coordinates": [ 151.901, -27.382 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.132141, "decimalLat": -38.175473 }, "geometry": { "type": "Point", "coordinates": [ 145.132, -38.175 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072328, "decimalLat": -27.550317 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.51817, "decimalLat": -27.718608 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -27.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.181206, "decimalLat": -38.626711 }, "geometry": { "type": "Point", "coordinates": [ 146.181, -38.627 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372486, "decimalLat": -27.911461 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.911 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.83584, "decimalLat": -27.941827 }, "geometry": { "type": "Point", "coordinates": [ 152.836, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913358, "decimalLat": -30.491774 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -30.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.611361, "decimalLat": -27.371783 }, "geometry": { "type": "Point", "coordinates": [ 151.611, -27.372 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376802, "decimalLat": -28.2539 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.52071, "decimalLat": -30.519482 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.519 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.091264, "decimalLat": -38.295117 }, "geometry": { "type": "Point", "coordinates": [ 145.091, -38.295 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095275, "decimalLat": -33.076836 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070274, "decimalLat": -27.543032 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387667, "decimalLat": -38.358693 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.359 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268307, "decimalLat": -38.131141 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.658112, "decimalLat": -35.00394 }, "geometry": { "type": "Point", "coordinates": [ 138.658, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.409867, "decimalLat": -38.004406 }, "geometry": { "type": "Point", "coordinates": [ 144.41, -38.004 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054581, "decimalLat": -27.546137 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073389, "decimalLat": -27.547356 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.054404, "decimalLat": -26.332172 }, "geometry": { "type": "Point", "coordinates": [ 152.054, -26.332 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061415, "decimalLat": -27.54957 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107091, "decimalLat": -27.528828 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895213, "decimalLat": -27.599243 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.599 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10534, "decimalLat": -27.530894 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072518, "decimalLat": -27.54335 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.71519, "decimalLat": -33.465085 }, "geometry": { "type": "Point", "coordinates": [ 150.715, -33.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656, "decimalLat": -35.017 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.017 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.383788, "decimalLat": -37.85728 }, "geometry": { "type": "Point", "coordinates": [ 144.384, -37.857 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.560494, "decimalLat": -38.004734 }, "geometry": { "type": "Point", "coordinates": [ 141.56, -38.005 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.047417, "decimalLat": -27.545129 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103697, "decimalLat": -27.52933 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085462, "decimalLat": -27.510353 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.165122, "decimalLat": -38.259756 }, "geometry": { "type": "Point", "coordinates": [ 145.165, -38.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085647, "decimalLat": -27.510264 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.561726, "decimalLat": -34.76169 }, "geometry": { "type": "Point", "coordinates": [ 146.562, -34.762 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091703, "decimalLat": -27.527115 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093312, "decimalLat": -27.52787 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.924543, "decimalLat": -27.39427 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -27.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.814034, "decimalLat": -26.362891 }, "geometry": { "type": "Point", "coordinates": [ 151.814, -26.363 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078523, "decimalLat": -27.505658 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053069, "decimalLat": -27.543817 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090833, "decimalLat": -27.526893 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.617737, "decimalLat": -34.904437 }, "geometry": { "type": "Point", "coordinates": [ 138.618, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.539612, "decimalLat": -34.747997 }, "geometry": { "type": "Point", "coordinates": [ 146.54, -34.748 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.901775, "decimalLat": -27.62027 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.62 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.944207, "decimalLat": -27.140487 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -27.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090419, "decimalLat": -27.526655 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.113997, "decimalLat": -30.26336 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -30.263 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070114, "decimalLat": -27.225331 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.225 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.077076, "decimalLat": -27.226944 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.227 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.861492, "decimalLat": -38.667281 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.667 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731464, "decimalLat": -34.889849 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.264156, "decimalLat": -37.221896 }, "geometry": { "type": "Point", "coordinates": [ 148.264, -37.222 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.501755, "decimalLat": -37.85262 }, "geometry": { "type": "Point", "coordinates": [ 145.502, -37.853 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.6038, "decimalLat": -28.164485 }, "geometry": { "type": "Point", "coordinates": [ 152.604, -28.164 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037372, "decimalLat": -27.546903 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092562, "decimalLat": -27.526873 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387644, "decimalLat": -38.35412 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109967, "decimalLat": -27.529774 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.130321, "decimalLat": -26.870236 }, "geometry": { "type": "Point", "coordinates": [ 152.13, -26.87 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084231, "decimalLat": -27.511737 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.280746, "decimalLat": -32.896842 }, "geometry": { "type": "Point", "coordinates": [ 150.281, -32.897 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.531179, "decimalLat": -27.431462 }, "geometry": { "type": "Point", "coordinates": [ 153.531, -27.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.945179, "decimalLat": -28.125152 }, "geometry": { "type": "Point", "coordinates": [ 152.945, -28.125 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749845, "decimalLat": -26.155069 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256134, "decimalLat": -27.546183 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929642, "decimalLat": -31.459978 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055862, "decimalLat": -27.547171 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199476, "decimalLat": -27.492456 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.274895, "decimalLat": -38.136379 }, "geometry": { "type": "Point", "coordinates": [ 145.275, -38.136 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093009, "decimalLat": -27.526242 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092009, "decimalLat": -27.525818 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.445083, "decimalLat": -28.133069 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093045, "decimalLat": -27.52623 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.098544, "decimalLat": -27.566708 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.542468, "decimalLat": -34.917459 }, "geometry": { "type": "Point", "coordinates": [ 138.542, -34.917 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399295, "decimalLat": -28.26034 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103672, "decimalLat": -27.530146 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090759, "decimalLat": -27.527114 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.903144, "decimalLat": -37.638945 }, "geometry": { "type": "Point", "coordinates": [ 143.903, -37.639 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09312, "decimalLat": -27.525734 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073003, "decimalLat": -27.226614 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.227 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109042, "decimalLat": -27.528779 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1055, "decimalLat": -30.328224 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -30.328 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092623, "decimalLat": -27.525328 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.505845, "decimalLat": -37.02285 }, "geometry": { "type": "Point", "coordinates": [ 145.506, -37.023 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09023, "decimalLat": -27.526694 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054738, "decimalLat": -27.551182 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073761, "decimalLat": -27.817525 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.818 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110698, "decimalLat": -27.529965 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.033969, "decimalLat": -27.536904 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73348, "decimalLat": -34.886287 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.178435, "decimalLat": -27.634492 }, "geometry": { "type": "Point", "coordinates": [ 153.178, -27.634 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992478, "decimalLat": -27.823605 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056168, "decimalLat": -27.538962 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.73639, "decimalLat": -38.244041 }, "geometry": { "type": "Point", "coordinates": [ 141.736, -38.244 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.493978, "decimalLat": -38.240004 }, "geometry": { "type": "Point", "coordinates": [ 141.494, -38.24 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7023, "decimalLat": -34.903119 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108097, "decimalLat": -27.529303 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.987929, "decimalLat": -27.294005 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -27.294 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.626134, "decimalLat": -34.89306 }, "geometry": { "type": "Point", "coordinates": [ 138.626, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.038303, "decimalLat": -27.537178 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.173888, "decimalLat": -27.94415 }, "geometry": { "type": "Point", "coordinates": [ 153.174, -27.944 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085018, "decimalLat": -27.506664 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.388325, "decimalLat": -37.049512 }, "geometry": { "type": "Point", "coordinates": [ 145.388, -37.05 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.669939, "decimalLat": -35.085298 }, "geometry": { "type": "Point", "coordinates": [ 138.67, -35.085 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.640209, "decimalLat": -35.008524 }, "geometry": { "type": "Point", "coordinates": [ 138.64, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092332, "decimalLat": -27.52492 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.367292, "decimalLat": -38.314745 }, "geometry": { "type": "Point", "coordinates": [ 142.367, -38.315 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.505805, "decimalLat": -27.305663 }, "geometry": { "type": "Point", "coordinates": [ 152.506, -27.306 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09057, "decimalLat": -27.526483 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092509, "decimalLat": -27.528249 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.147458, "decimalLat": -37.80847 }, "geometry": { "type": "Point", "coordinates": [ 144.147, -37.808 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.614838, "decimalLat": -27.32633 }, "geometry": { "type": "Point", "coordinates": [ 152.615, -27.326 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.707239, "decimalLat": -34.90367 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656848, "decimalLat": -34.865127 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091972, "decimalLat": -27.526988 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.701325, "decimalLat": -34.903912 }, "geometry": { "type": "Point", "coordinates": [ 138.701, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.449708, "decimalLat": -36.890287 }, "geometry": { "type": "Point", "coordinates": [ 145.45, -36.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164122, "decimalLat": -38.67155 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.745586, "decimalLat": -34.829707 }, "geometry": { "type": "Point", "coordinates": [ 138.746, -34.83 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102429, "decimalLat": -27.735152 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.735 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103348, "decimalLat": -27.528266 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103703, "decimalLat": -27.530846 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.927469, "decimalLat": -26.278965 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -26.279 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.151142, "decimalLat": -27.583787 }, "geometry": { "type": "Point", "coordinates": [ 153.151, -27.584 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.181498, "decimalLat": -31.577574 }, "geometry": { "type": "Point", "coordinates": [ 152.181, -31.578 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.708089, "decimalLat": -34.904027 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.188017, "decimalLat": -27.702098 }, "geometry": { "type": "Point", "coordinates": [ 153.188, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.04728, "decimalLat": -27.548077 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868512, "decimalLat": -19.125625 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.126 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082317, "decimalLat": -27.509098 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.825099, "decimalLat": -34.247738 }, "geometry": { "type": "Point", "coordinates": [ 150.825, -34.248 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.901044, "decimalLat": -37.638403 }, "geometry": { "type": "Point", "coordinates": [ 143.901, -37.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.680103, "decimalLat": -34.947664 }, "geometry": { "type": "Point", "coordinates": [ 138.68, -34.948 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.042159, "decimalLat": -27.300304 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197805, "decimalLat": -27.86195 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.862 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.631408, "decimalLat": -27.438053 }, "geometry": { "type": "Point", "coordinates": [ 152.631, -27.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.045987, "decimalLat": -27.255473 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.255 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.043237, "decimalLat": -27.552629 }, "geometry": { "type": "Point", "coordinates": [ 153.043, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.16678, "decimalLat": -27.480072 }, "geometry": { "type": "Point", "coordinates": [ 153.167, -27.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091963, "decimalLat": -27.527027 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090636, "decimalLat": -27.526073 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.979265, "decimalLat": -29.780321 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -29.78 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.607605, "decimalLat": -38.773651 }, "geometry": { "type": "Point", "coordinates": [ 143.608, -38.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.851888, "decimalLat": -34.066161 }, "geometry": { "type": "Point", "coordinates": [ 150.852, -34.066 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.151142, "decimalLat": -27.583787 }, "geometry": { "type": "Point", "coordinates": [ 153.151, -27.584 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.975663, "decimalLat": -26.239835 }, "geometry": { "type": "Point", "coordinates": [ 151.976, -26.24 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.828034, "decimalLat": -28.091936 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.011847, "decimalLat": -29.720314 }, "geometry": { "type": "Point", "coordinates": [ 151.012, -29.72 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993683, "decimalLat": -27.823692 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.513917, "decimalLat": -27.422608 }, "geometry": { "type": "Point", "coordinates": [ 153.514, -27.423 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.978292, "decimalLat": -38.497083 }, "geometry": { "type": "Point", "coordinates": [ 142.978, -38.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.730055, "decimalLat": -37.924297 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.151142, "decimalLat": -27.583787 }, "geometry": { "type": "Point", "coordinates": [ 153.151, -27.584 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.672362, "decimalLat": -35.920378 }, "geometry": { "type": "Point", "coordinates": [ 145.672, -35.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058544, "decimalLat": -27.546078 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060477, "decimalLat": -27.5496 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221407, "decimalLat": -27.535041 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.804047, "decimalLat": -31.652387 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.140552, "decimalLat": -27.651695 }, "geometry": { "type": "Point", "coordinates": [ 153.141, -27.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095383, "decimalLat": -33.076808 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05829, "decimalLat": -27.54783 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.67783, "decimalLat": -27.98736 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -27.987 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093177, "decimalLat": -27.527535 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.893104, "decimalLat": -27.601825 }, "geometry": { "type": "Point", "coordinates": [ 151.893, -27.602 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163911, "decimalLat": -38.671342 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.519252, "decimalLat": -38.832424 }, "geometry": { "type": "Point", "coordinates": [ 143.519, -38.832 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.627836, "decimalLat": -34.892389 }, "geometry": { "type": "Point", "coordinates": [ 138.628, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37207, "decimalLat": -27.909958 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.91 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0602, "decimalLat": -27.543856 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092754, "decimalLat": -27.525789 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093747, "decimalLat": -27.524934 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.264042, "decimalLat": -37.39406 }, "geometry": { "type": "Point", "coordinates": [ 144.264, -37.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.444747, "decimalLat": -27.400558 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.513503, "decimalLat": -38.833492 }, "geometry": { "type": "Point", "coordinates": [ 143.514, -38.833 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104535, "decimalLat": -27.530479 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091599, "decimalLat": -27.52723 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.612762, "decimalLat": -38.775023 }, "geometry": { "type": "Point", "coordinates": [ 143.613, -38.775 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.503967, "decimalLat": -33.297962 }, "geometry": { "type": "Point", "coordinates": [ 149.504, -33.298 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059326, "decimalLat": -27.54921 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.63809, "decimalLat": -34.971106 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.514145, "decimalLat": -38.835953 }, "geometry": { "type": "Point", "coordinates": [ 143.514, -38.836 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.542553, "decimalLat": -34.917457 }, "geometry": { "type": "Point", "coordinates": [ 138.543, -34.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.165153, "decimalLat": -27.740355 }, "geometry": { "type": "Point", "coordinates": [ 153.165, -27.74 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102799, "decimalLat": -27.527298 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.283911, "decimalLat": -38.141664 }, "geometry": { "type": "Point", "coordinates": [ 145.284, -38.142 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731585, "decimalLat": -34.890109 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.537872, "decimalLat": -28.18912 }, "geometry": { "type": "Point", "coordinates": [ 152.538, -28.189 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092257, "decimalLat": -27.528301 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057688, "decimalLat": -27.551437 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.266789, "decimalLat": -37.393514 }, "geometry": { "type": "Point", "coordinates": [ 144.267, -37.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109108, "decimalLat": -27.527012 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.115386, "decimalLat": -27.529579 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.217786, "decimalLat": -27.547488 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.938217, "decimalLat": -27.164019 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -27.164 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058332, "decimalLat": -27.546979 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082632, "decimalLat": -27.514842 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070642, "decimalLat": -27.543912 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.553483, "decimalLat": -27.05993 }, "geometry": { "type": "Point", "coordinates": [ 152.553, -27.06 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061862, "decimalLat": -27.549395 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.863767, "decimalLat": -19.150673 }, "geometry": { "type": "Point", "coordinates": [ 146.864, -19.151 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.919892, "decimalLat": -27.385697 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -27.386 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.67717, "decimalLat": -27.985847 }, "geometry": { "type": "Point", "coordinates": [ 152.677, -27.986 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.614166, "decimalLat": -34.902076 }, "geometry": { "type": "Point", "coordinates": [ 138.614, -34.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.961687, "decimalLat": -27.456745 }, "geometry": { "type": "Point", "coordinates": [ 152.962, -27.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.835277, "decimalLat": -26.530784 }, "geometry": { "type": "Point", "coordinates": [ 151.835, -26.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.223192, "decimalLat": -31.587728 }, "geometry": { "type": "Point", "coordinates": [ 149.223, -31.588 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.395971, "decimalLat": -27.452791 }, "geometry": { "type": "Point", "coordinates": [ 152.396, -27.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372697, "decimalLat": -27.914261 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09229, "decimalLat": -27.528129 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.645962, "decimalLat": -28.14289 }, "geometry": { "type": "Point", "coordinates": [ 152.646, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249747, "decimalLat": -27.496789 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.146727, "decimalLat": -27.767048 }, "geometry": { "type": "Point", "coordinates": [ 153.147, -27.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.047417, "decimalLat": -27.545129 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.945237, "decimalLat": -28.125169 }, "geometry": { "type": "Point", "coordinates": [ 152.945, -28.125 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105179, "decimalLat": -27.529106 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093099, "decimalLat": -27.524128 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090953, "decimalLat": -27.527014 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058418, "decimalLat": -27.546812 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.692149, "decimalLat": -34.965847 }, "geometry": { "type": "Point", "coordinates": [ 138.692, -34.966 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078074, "decimalLat": -27.509288 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.088475, "decimalLat": -37.633672 }, "geometry": { "type": "Point", "coordinates": [ 144.088, -37.634 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395475, "decimalLat": -28.275083 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.275 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053081, "decimalLat": -27.542654 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.724992, "decimalLat": -27.429517 }, "geometry": { "type": "Point", "coordinates": [ 151.725, -27.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091726, "decimalLat": -27.527196 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.90681, "decimalLat": -28.173668 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -28.174 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.522029, "decimalLat": -34.924281 }, "geometry": { "type": "Point", "coordinates": [ 138.522, -34.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073272, "decimalLat": -27.545862 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.494881, "decimalLat": -35.708176 }, "geometry": { "type": "Point", "coordinates": [ 137.495, -35.708 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073733, "decimalLat": -27.54745 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092023, "decimalLat": -27.525502 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057533, "decimalLat": -27.551778 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108204, "decimalLat": -27.527128 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895396, "decimalLat": -27.600052 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093298, "decimalLat": -27.526525 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.863292, "decimalLat": -26.594225 }, "geometry": { "type": "Point", "coordinates": [ 151.863, -26.594 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.934145, "decimalLat": -27.33272 }, "geometry": { "type": "Point", "coordinates": [ 151.934, -27.333 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003297, "decimalLat": -27.413997 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.989045, "decimalLat": -27.170637 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -27.171 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070669, "decimalLat": -27.651468 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.651 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092653, "decimalLat": -27.528509 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.80765, "decimalLat": -27.531912 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.204392, "decimalLat": -26.143123 }, "geometry": { "type": "Point", "coordinates": [ 152.204, -26.143 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399574, "decimalLat": -28.259798 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069761, "decimalLat": -27.543702 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.952964, "decimalLat": -27.371158 }, "geometry": { "type": "Point", "coordinates": [ 152.953, -27.371 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249352, "decimalLat": -27.496289 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.691143, "decimalLat": -34.958885 }, "geometry": { "type": "Point", "coordinates": [ 138.691, -34.959 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10773, "decimalLat": -27.527309 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.897507, "decimalLat": -37.612959 }, "geometry": { "type": "Point", "coordinates": [ 143.898, -37.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36854, "decimalLat": -27.910168 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -27.91 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.222703, "decimalLat": -27.554883 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.504509, "decimalLat": -34.915296 }, "geometry": { "type": "Point", "coordinates": [ 138.505, -34.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110314, "decimalLat": -27.529207 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092129, "decimalLat": -27.527127 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071831, "decimalLat": -27.54466 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.373207, "decimalLat": -27.916853 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388232, "decimalLat": -38.355015 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.181429, "decimalLat": -37.171459 }, "geometry": { "type": "Point", "coordinates": [ 145.181, -37.171 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868413, "decimalLat": -19.129169 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.819612, "decimalLat": -26.364183 }, "geometry": { "type": "Point", "coordinates": [ 151.82, -26.364 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07258, "decimalLat": -27.543499 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.889948, "decimalLat": -37.620004 }, "geometry": { "type": "Point", "coordinates": [ 143.89, -37.62 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08284, "decimalLat": -27.512146 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.255769, "decimalLat": -36.19391 }, "geometry": { "type": "Point", "coordinates": [ 145.256, -36.194 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822983, "decimalLat": -34.10178 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.546567, "decimalLat": -27.929487 }, "geometry": { "type": "Point", "coordinates": [ 152.547, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105392, "decimalLat": -27.529278 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721539, "decimalLat": -34.89205 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72146, "decimalLat": -34.89197 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091177, "decimalLat": -27.527226 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.957947, "decimalLat": -27.444345 }, "geometry": { "type": "Point", "coordinates": [ 151.958, -27.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.888036, "decimalLat": -27.648415 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -27.648 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000849, "decimalLat": -27.284458 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103402, "decimalLat": -27.530182 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.528803, "decimalLat": -34.918114 }, "geometry": { "type": "Point", "coordinates": [ 138.529, -34.918 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092392, "decimalLat": -27.527371 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164642, "decimalLat": -38.671028 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093305, "decimalLat": -27.526131 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388356, "decimalLat": -38.35437 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092011, "decimalLat": -27.527034 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093044, "decimalLat": -27.524347 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057658, "decimalLat": -27.546409 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.922381, "decimalLat": -38.059297 }, "geometry": { "type": "Point", "coordinates": [ 141.922, -38.059 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377149, "decimalLat": -28.254289 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868333, "decimalLat": -19.129028 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.899032, "decimalLat": -37.616585 }, "geometry": { "type": "Point", "coordinates": [ 143.899, -37.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057867, "decimalLat": -27.550717 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403, "decimalLat": -27.493333 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092756, "decimalLat": -27.527633 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104467, "decimalLat": -27.529421 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.160433, "decimalLat": -27.659889 }, "geometry": { "type": "Point", "coordinates": [ 153.16, -27.66 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.632383, "decimalLat": -38.658355 }, "geometry": { "type": "Point", "coordinates": [ 143.632, -38.658 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090308, "decimalLat": -27.526604 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730882, "decimalLat": -34.886426 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731669, "decimalLat": -34.891642 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197097, "decimalLat": -27.491142 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051669, "decimalLat": -27.549078 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.707843, "decimalLat": -35.035641 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -35.036 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059162, "decimalLat": -27.548742 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.897335, "decimalLat": -37.613486 }, "geometry": { "type": "Point", "coordinates": [ 143.897, -37.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10887, "decimalLat": -27.529196 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071833, "decimalLat": -27.54511 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085198, "decimalLat": -27.510227 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163881, "decimalLat": -38.671372 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058414, "decimalLat": -27.54794 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164536, "decimalLat": -38.671078 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.360778, "decimalLat": -27.915987 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.667463, "decimalLat": -38.760915 }, "geometry": { "type": "Point", "coordinates": [ 143.667, -38.761 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091525, "decimalLat": -27.527299 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.648858, "decimalLat": -26.388082 }, "geometry": { "type": "Point", "coordinates": [ 152.649, -26.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.859521, "decimalLat": -37.704444 }, "geometry": { "type": "Point", "coordinates": [ 143.86, -37.704 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09236, "decimalLat": -27.528275 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.404859, "decimalLat": -38.348182 }, "geometry": { "type": "Point", "coordinates": [ 146.405, -38.348 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.363642, "decimalLat": -27.926529 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.927 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091741, "decimalLat": -27.527103 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656844, "decimalLat": -34.865207 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082698, "decimalLat": -27.507845 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091243, "decimalLat": -27.527194 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.748823, "decimalLat": -37.90592 }, "geometry": { "type": "Point", "coordinates": [ 147.749, -37.906 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.768131, "decimalLat": -34.843203 }, "geometry": { "type": "Point", "coordinates": [ 138.768, -34.843 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.678487, "decimalLat": -34.861776 }, "geometry": { "type": "Point", "coordinates": [ 135.678, -34.862 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.735245, "decimalLat": -37.921845 }, "geometry": { "type": "Point", "coordinates": [ 147.735, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.357728, "decimalLat": -27.91933 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054657, "decimalLat": -27.541423 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729704, "decimalLat": -34.890656 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375393, "decimalLat": -28.252285 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091158, "decimalLat": -27.527943 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656041, "decimalLat": -35.001386 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.001 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091619, "decimalLat": -27.527155 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071715, "decimalLat": -27.544659 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.523833, "decimalLat": -27.720788 }, "geometry": { "type": "Point", "coordinates": [ 151.524, -27.721 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730476, "decimalLat": -34.890118 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519884, "decimalLat": -30.521812 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.522 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092115, "decimalLat": -27.52538 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.897279, "decimalLat": -37.643029 }, "geometry": { "type": "Point", "coordinates": [ 143.897, -37.643 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.518926, "decimalLat": -30.520925 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095373, "decimalLat": -33.076721 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.365697, "decimalLat": -37.665745 }, "geometry": { "type": "Point", "coordinates": [ 144.366, -37.666 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.862942, "decimalLat": -19.121148 }, "geometry": { "type": "Point", "coordinates": [ 146.863, -19.121 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109117, "decimalLat": -27.526791 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.626801, "decimalLat": -38.782326 }, "geometry": { "type": "Point", "coordinates": [ 143.627, -38.782 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.408641, "decimalLat": -38.002449 }, "geometry": { "type": "Point", "coordinates": [ 144.409, -38.002 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.288352, "decimalLat": -37.83327 }, "geometry": { "type": "Point", "coordinates": [ 144.288, -37.833 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091514, "decimalLat": -27.527099 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.810787, "decimalLat": -34.100123 }, "geometry": { "type": "Point", "coordinates": [ 150.811, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.946309, "decimalLat": -27.467381 }, "geometry": { "type": "Point", "coordinates": [ 151.946, -27.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090887, "decimalLat": -27.526578 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.77323, "decimalLat": -26.179137 }, "geometry": { "type": "Point", "coordinates": [ 151.773, -26.179 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105541, "decimalLat": -27.531419 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070096, "decimalLat": -27.51057 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.262345, "decimalLat": -37.746742 }, "geometry": { "type": "Point", "coordinates": [ 144.262, -37.747 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.945617, "decimalLat": -28.123817 }, "geometry": { "type": "Point", "coordinates": [ 152.946, -28.124 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363504, "decimalLat": -38.31853 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895396, "decimalLat": -27.600052 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.74889, "decimalLat": -26.154354 }, "geometry": { "type": "Point", "coordinates": [ 151.749, -26.154 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860596, "decimalLat": -38.668532 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.669 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72229, "decimalLat": -34.890951 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111271, "decimalLat": -27.527165 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105469, "decimalLat": -27.531388 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.831178, "decimalLat": -34.076886 }, "geometry": { "type": "Point", "coordinates": [ 150.831, -34.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189646, "decimalLat": -27.701124 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091458, "decimalLat": -27.526796 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.56327, "decimalLat": -35.026256 }, "geometry": { "type": "Point", "coordinates": [ 138.563, -35.026 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.953841, "decimalLat": -27.470337 }, "geometry": { "type": "Point", "coordinates": [ 151.954, -27.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.718679, "decimalLat": -26.145622 }, "geometry": { "type": "Point", "coordinates": [ 151.719, -26.146 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072176, "decimalLat": -27.544142 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104908, "decimalLat": -27.529069 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16405, "decimalLat": -38.671412 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104212, "decimalLat": -27.530095 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083694, "decimalLat": -27.505883 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.596504, "decimalLat": -27.746102 }, "geometry": { "type": "Point", "coordinates": [ 151.597, -27.746 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108169, "decimalLat": -27.52722 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051902, "decimalLat": -27.548694 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868071, "decimalLat": -19.127997 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.882996, "decimalLat": -26.196834 }, "geometry": { "type": "Point", "coordinates": [ 151.883, -26.197 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056859, "decimalLat": -27.551598 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.531342, "decimalLat": -27.724608 }, "geometry": { "type": "Point", "coordinates": [ 151.531, -27.725 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.821762, "decimalLat": -26.483892 }, "geometry": { "type": "Point", "coordinates": [ 151.822, -26.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163687, "decimalLat": -38.671165 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.147662, "decimalLat": -27.514486 }, "geometry": { "type": "Point", "coordinates": [ 153.148, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.894155, "decimalLat": -37.578793 }, "geometry": { "type": "Point", "coordinates": [ 143.894, -37.579 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.715433, "decimalLat": -27.571089 }, "geometry": { "type": "Point", "coordinates": [ 151.715, -27.571 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036956, "decimalLat": -27.549953 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.834011, "decimalLat": -38.436814 }, "geometry": { "type": "Point", "coordinates": [ 145.834, -38.437 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104182, "decimalLat": -27.53036 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733021, "decimalLat": -34.88661 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092066, "decimalLat": -27.525376 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.276697, "decimalLat": -37.842814 }, "geometry": { "type": "Point", "coordinates": [ 144.277, -37.843 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.931883, "decimalLat": -27.276192 }, "geometry": { "type": "Point", "coordinates": [ 152.932, -27.276 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.866004, "decimalLat": -28.211379 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.211 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925442, "decimalLat": -31.451557 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192393, "decimalLat": -27.701846 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075248, "decimalLat": -27.662848 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.727392, "decimalLat": -37.920331 }, "geometry": { "type": "Point", "coordinates": [ 147.727, -37.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4018, "decimalLat": -28.259895 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.700028, "decimalLat": -34.876522 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.877 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.263561, "decimalLat": -38.486596 }, "geometry": { "type": "Point", "coordinates": [ 145.264, -38.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31329, "decimalLat": -28.568458 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.568 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091643, "decimalLat": -27.526967 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075248, "decimalLat": -27.662848 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.663 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290886, "decimalLat": -37.874102 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.874 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377702, "decimalLat": -28.254259 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.077592, "decimalLat": -27.542442 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090553, "decimalLat": -27.525896 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732065, "decimalLat": -34.890442 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.141168, "decimalLat": -38.38554 }, "geometry": { "type": "Point", "coordinates": [ 145.141, -38.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.184519, "decimalLat": -27.74779 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -27.748 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.930283, "decimalLat": -27.579187 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -27.579 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.708389, "decimalLat": -38.645237 }, "geometry": { "type": "Point", "coordinates": [ 143.708, -38.645 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103692, "decimalLat": -27.529126 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.960204, "decimalLat": -38.012128 }, "geometry": { "type": "Point", "coordinates": [ 140.96, -38.012 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.375989, "decimalLat": -27.917478 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.034125, "decimalLat": -27.550154 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092304, "decimalLat": -27.527983 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091693, "decimalLat": -27.526895 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290735, "decimalLat": -37.8743 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.874 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.826365, "decimalLat": -34.099573 }, "geometry": { "type": "Point", "coordinates": [ 150.826, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.376855, "decimalLat": -37.679704 }, "geometry": { "type": "Point", "coordinates": [ 144.377, -37.68 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192379, "decimalLat": -27.702991 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.703 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.044701, "decimalLat": -27.25616 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.256 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402462, "decimalLat": -28.260321 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109736, "decimalLat": -27.528402 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.621033, "decimalLat": -27.620387 }, "geometry": { "type": "Point", "coordinates": [ 151.621, -27.62 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.85208, "decimalLat": -38.672047 }, "geometry": { "type": "Point", "coordinates": [ 143.852, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377783, "decimalLat": -28.254367 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719276, "decimalLat": -34.932892 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377021, "decimalLat": -28.254369 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.142928, "decimalLat": -27.624808 }, "geometry": { "type": "Point", "coordinates": [ 153.143, -27.625 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.636607, "decimalLat": -35.007563 }, "geometry": { "type": "Point", "coordinates": [ 138.637, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.55063, "decimalLat": -27.812919 }, "geometry": { "type": "Point", "coordinates": [ 151.551, -27.813 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.168008, "decimalLat": -27.549197 }, "geometry": { "type": "Point", "coordinates": [ 153.168, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092204, "decimalLat": -27.527314 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059323, "decimalLat": -27.549154 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.369091, "decimalLat": -27.833024 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05854, "decimalLat": -27.551325 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.745898, "decimalLat": -35.027812 }, "geometry": { "type": "Point", "coordinates": [ 138.746, -35.028 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090818, "decimalLat": -27.525838 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720373, "decimalLat": -34.891803 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09338, "decimalLat": -27.525277 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.523891, "decimalLat": -27.716289 }, "geometry": { "type": "Point", "coordinates": [ 151.524, -27.716 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.514145, "decimalLat": -27.733547 }, "geometry": { "type": "Point", "coordinates": [ 151.514, -27.734 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.310913, "decimalLat": -37.277008 }, "geometry": { "type": "Point", "coordinates": [ 144.311, -37.277 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073131, "decimalLat": -27.519656 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.52 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092244, "decimalLat": -27.528359 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.033736, "decimalLat": -27.549758 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733671, "decimalLat": -34.887647 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.536569, "decimalLat": -27.94551 }, "geometry": { "type": "Point", "coordinates": [ 152.537, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004244, "decimalLat": -27.412145 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.412 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.636287, "decimalLat": -30.475474 }, "geometry": { "type": "Point", "coordinates": [ 151.636, -30.475 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.929383, "decimalLat": -27.328755 }, "geometry": { "type": "Point", "coordinates": [ 151.929, -27.329 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.96548, "decimalLat": -26.421045 }, "geometry": { "type": "Point", "coordinates": [ 151.965, -26.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.714662, "decimalLat": -27.649595 }, "geometry": { "type": "Point", "coordinates": [ 151.715, -27.65 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.725583, "decimalLat": -34.89361 }, "geometry": { "type": "Point", "coordinates": [ 138.726, -34.894 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057776, "decimalLat": -27.551158 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749888, "decimalLat": -26.155079 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092458, "decimalLat": -27.528486 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400637, "decimalLat": -28.257818 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.860299, "decimalLat": -28.215891 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -28.216 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078423, "decimalLat": -27.506563 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519675, "decimalLat": -30.519709 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.728863, "decimalLat": -37.921857 }, "geometry": { "type": "Point", "coordinates": [ 147.729, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.670095, "decimalLat": -28.031558 }, "geometry": { "type": "Point", "coordinates": [ 152.67, -28.032 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.894268, "decimalLat": -27.597975 }, "geometry": { "type": "Point", "coordinates": [ 151.894, -27.598 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084241, "decimalLat": -27.512473 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113438, "decimalLat": -27.528387 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090903, "decimalLat": -27.527161 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092019, "decimalLat": -27.527215 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.687021, "decimalLat": -34.958464 }, "geometry": { "type": "Point", "coordinates": [ 138.687, -34.958 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.608521, "decimalLat": -27.419223 }, "geometry": { "type": "Point", "coordinates": [ 152.609, -27.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713446, "decimalLat": -34.892671 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.409052, "decimalLat": -38.273839 }, "geometry": { "type": "Point", "coordinates": [ 141.409, -38.274 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092234, "decimalLat": -27.528446 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085052, "decimalLat": -27.51055 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091593, "decimalLat": -27.527149 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090147, "decimalLat": -27.526699 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.700331, "decimalLat": -34.900809 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.901 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058321, "decimalLat": -27.54652 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083992, "decimalLat": -27.50986 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.634522, "decimalLat": -35.018472 }, "geometry": { "type": "Point", "coordinates": [ 138.635, -35.018 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730144, "decimalLat": -34.890725 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163789, "decimalLat": -38.671288 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073567, "decimalLat": -27.545797 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.954487, "decimalLat": -27.445485 }, "geometry": { "type": "Point", "coordinates": [ 151.954, -27.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092501, "decimalLat": -27.527247 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.97586, "decimalLat": -27.251143 }, "geometry": { "type": "Point", "coordinates": [ 152.976, -27.251 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.586504, "decimalLat": -34.776909 }, "geometry": { "type": "Point", "coordinates": [ 146.587, -34.777 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722307, "decimalLat": -34.890797 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093537, "decimalLat": -27.524679 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.882671, "decimalLat": -27.139303 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -27.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393005, "decimalLat": -28.269039 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.269 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111406, "decimalLat": -27.527208 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.476041, "decimalLat": -38.763614 }, "geometry": { "type": "Point", "coordinates": [ 143.476, -38.764 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.939777, "decimalLat": -26.241048 }, "geometry": { "type": "Point", "coordinates": [ 151.94, -26.241 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.711672, "decimalLat": -34.990837 }, "geometry": { "type": "Point", "coordinates": [ 138.712, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092535, "decimalLat": -27.527582 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092443, "decimalLat": -27.527809 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.714655, "decimalLat": -34.901871 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.902 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720675, "decimalLat": -34.887153 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.967545, "decimalLat": -37.933013 }, "geometry": { "type": "Point", "coordinates": [ 141.968, -37.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.641325, "decimalLat": -34.97764 }, "geometry": { "type": "Point", "coordinates": [ 138.641, -34.978 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.386794, "decimalLat": -38.354224 }, "geometry": { "type": "Point", "coordinates": [ 146.387, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.643953, "decimalLat": -36.174022 }, "geometry": { "type": "Point", "coordinates": [ 146.644, -36.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.641824, "decimalLat": -35.001941 }, "geometry": { "type": "Point", "coordinates": [ 138.642, -35.002 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.975278, "decimalLat": -27.608889 }, "geometry": { "type": "Point", "coordinates": [ 151.975, -27.609 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.939513, "decimalLat": -27.273238 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -27.273 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.044601, "decimalLat": -27.551799 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003022, "decimalLat": -27.413313 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.860838, "decimalLat": -27.54838 }, "geometry": { "type": "Point", "coordinates": [ 152.861, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.611297, "decimalLat": -27.332145 }, "geometry": { "type": "Point", "coordinates": [ 152.611, -27.332 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000636, "decimalLat": -27.284739 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090466, "decimalLat": -27.526833 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069544, "decimalLat": -27.545519 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.666077, "decimalLat": -34.865235 }, "geometry": { "type": "Point", "coordinates": [ 138.666, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.5269, "decimalLat": -27.716453 }, "geometry": { "type": "Point", "coordinates": [ 151.527, -27.716 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108212, "decimalLat": -27.52705 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103171, "decimalLat": -27.529136 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058585, "decimalLat": -27.551361 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103147, "decimalLat": -27.529077 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.371971, "decimalLat": -27.909986 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.173662, "decimalLat": -37.898413 }, "geometry": { "type": "Point", "coordinates": [ 144.174, -37.898 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055239, "decimalLat": -27.537925 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110267, "decimalLat": -27.526685 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637647, "decimalLat": -34.997614 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.998 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730162, "decimalLat": -34.890478 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09039, "decimalLat": -27.526832 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.753175, "decimalLat": -35.008597 }, "geometry": { "type": "Point", "coordinates": [ 138.753, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104132, "decimalLat": -27.529431 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.068497, "decimalLat": -33.154686 }, "geometry": { "type": "Point", "coordinates": [ 151.068, -33.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.547689, "decimalLat": -27.929628 }, "geometry": { "type": "Point", "coordinates": [ 152.548, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.078278, "decimalLat": -26.974792 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -26.975 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.077964, "decimalLat": -33.147398 }, "geometry": { "type": "Point", "coordinates": [ 151.078, -33.147 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070186, "decimalLat": -27.510825 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.826978, "decimalLat": -26.413203 }, "geometry": { "type": "Point", "coordinates": [ 151.827, -26.413 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092042, "decimalLat": -27.527095 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.600056, "decimalLat": -35.014797 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.015 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92752, "decimalLat": -31.458242 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.095225, "decimalLat": -37.521052 }, "geometry": { "type": "Point", "coordinates": [ 144.095, -37.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090983, "decimalLat": -27.52745 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.151, "decimalLat": -27.462478 }, "geometry": { "type": "Point", "coordinates": [ 152.151, -27.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102519, "decimalLat": -27.529473 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.050178, "decimalLat": -27.549239 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103559, "decimalLat": -27.53013 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092039, "decimalLat": -27.527145 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10339, "decimalLat": -27.52846 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344529, "decimalLat": -27.831795 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.822595, "decimalLat": -26.44925 }, "geometry": { "type": "Point", "coordinates": [ 151.823, -26.449 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.815231, "decimalLat": -26.166516 }, "geometry": { "type": "Point", "coordinates": [ 151.815, -26.167 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992637, "decimalLat": -27.823465 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720328, "decimalLat": -34.892995 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.513887, "decimalLat": -38.832353 }, "geometry": { "type": "Point", "coordinates": [ 143.514, -38.832 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363098, "decimalLat": -38.319003 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108194, "decimalLat": -27.527128 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.620063, "decimalLat": -27.418207 }, "geometry": { "type": "Point", "coordinates": [ 152.62, -27.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.059512, "decimalLat": -37.783049 }, "geometry": { "type": "Point", "coordinates": [ 145.06, -37.783 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702664, "decimalLat": -34.903137 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40068, "decimalLat": -27.495833 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.812421, "decimalLat": -26.130105 }, "geometry": { "type": "Point", "coordinates": [ 151.812, -26.13 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.93135, "decimalLat": -27.333792 }, "geometry": { "type": "Point", "coordinates": [ 151.931, -27.334 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.581725, "decimalLat": -34.766407 }, "geometry": { "type": "Point", "coordinates": [ 146.582, -34.766 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092906, "decimalLat": -27.524065 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.871644, "decimalLat": -19.123501 }, "geometry": { "type": "Point", "coordinates": [ 146.872, -19.124 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.418367, "decimalLat": -34.697433 }, "geometry": { "type": "Point", "coordinates": [ 146.418, -34.697 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070408, "decimalLat": -27.511022 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.036596, "decimalLat": -27.534119 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.58784, "decimalLat": -35.088518 }, "geometry": { "type": "Point", "coordinates": [ 138.588, -35.089 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.834241, "decimalLat": -38.393116 }, "geometry": { "type": "Point", "coordinates": [ 142.834, -38.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.893834, "decimalLat": -26.189596 }, "geometry": { "type": "Point", "coordinates": [ 151.894, -26.19 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.115299, "decimalLat": -27.528868 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.794982, "decimalLat": -34.882556 }, "geometry": { "type": "Point", "coordinates": [ 138.795, -34.883 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.050643, "decimalLat": -27.547896 }, "geometry": { "type": "Point", "coordinates": [ 153.051, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.162398, "decimalLat": -27.813233 }, "geometry": { "type": "Point", "coordinates": [ 153.162, -27.813 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438797, "decimalLat": -27.401163 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65723, "decimalLat": -35.012279 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -35.012 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.641299, "decimalLat": -27.730675 }, "geometry": { "type": "Point", "coordinates": [ 151.641, -27.731 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.613703, "decimalLat": -27.338765 }, "geometry": { "type": "Point", "coordinates": [ 152.614, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.561501, "decimalLat": -37.714663 }, "geometry": { "type": "Point", "coordinates": [ 141.562, -37.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075286, "decimalLat": -27.540995 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103152, "decimalLat": -27.527342 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.813421, "decimalLat": -32.559194 }, "geometry": { "type": "Point", "coordinates": [ 151.813, -32.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05478, "decimalLat": -27.551183 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.458245, "decimalLat": -36.942941 }, "geometry": { "type": "Point", "coordinates": [ 145.458, -36.943 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054248, "decimalLat": -27.552106 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10766, "decimalLat": -27.527222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113405, "decimalLat": -27.528515 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.853956, "decimalLat": -38.668431 }, "geometry": { "type": "Point", "coordinates": [ 143.854, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.546549, "decimalLat": -27.793083 }, "geometry": { "type": "Point", "coordinates": [ 151.547, -27.793 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109098, "decimalLat": -27.527252 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111681, "decimalLat": -27.527814 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.365376, "decimalLat": -38.327388 }, "geometry": { "type": "Point", "coordinates": [ 142.365, -38.327 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.780766, "decimalLat": -31.633069 }, "geometry": { "type": "Point", "coordinates": [ 152.781, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376667, "decimalLat": -28.252729 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638004, "decimalLat": -34.971218 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08015, "decimalLat": -27.508203 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.985024, "decimalLat": -27.283522 }, "geometry": { "type": "Point", "coordinates": [ 152.985, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377088, "decimalLat": -28.254212 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.970435, "decimalLat": -34.702946 }, "geometry": { "type": "Point", "coordinates": [ 138.97, -34.703 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.881056, "decimalLat": -35.770017 }, "geometry": { "type": "Point", "coordinates": [ 136.881, -35.77 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003022, "decimalLat": -27.41348 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.678696, "decimalLat": -27.987871 }, "geometry": { "type": "Point", "coordinates": [ 152.679, -27.988 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092472, "decimalLat": -27.52752 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037101, "decimalLat": -27.535172 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.922317, "decimalLat": -38.059155 }, "geometry": { "type": "Point", "coordinates": [ 141.922, -38.059 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.410005, "decimalLat": -37.962868 }, "geometry": { "type": "Point", "coordinates": [ 144.41, -37.963 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090835, "decimalLat": -27.527287 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718951, "decimalLat": -34.891436 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.979817, "decimalLat": -38.496628 }, "geometry": { "type": "Point", "coordinates": [ 142.98, -38.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.404444, "decimalLat": -27.493607 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072712, "decimalLat": -27.542988 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.703614, "decimalLat": -27.093968 }, "geometry": { "type": "Point", "coordinates": [ 152.704, -27.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111017, "decimalLat": -27.529982 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.675705, "decimalLat": -35.086753 }, "geometry": { "type": "Point", "coordinates": [ 138.676, -35.087 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.082551, "decimalLat": -27.546649 }, "geometry": { "type": "Point", "coordinates": [ 152.083, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086131, "decimalLat": -27.510453 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090991, "decimalLat": -27.52627 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.768976, "decimalLat": -34.881375 }, "geometry": { "type": "Point", "coordinates": [ 138.769, -34.881 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.38915, "decimalLat": -28.285035 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.285 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091884, "decimalLat": -27.52701 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.40521, "decimalLat": -38.347564 }, "geometry": { "type": "Point", "coordinates": [ 146.405, -38.348 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095441, "decimalLat": -33.076711 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.925801, "decimalLat": -27.524272 }, "geometry": { "type": "Point", "coordinates": [ 151.926, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637949, "decimalLat": -34.97019 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.97 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092679, "decimalLat": -27.525809 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.678002, "decimalLat": -35.033371 }, "geometry": { "type": "Point", "coordinates": [ 138.678, -35.033 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090845, "decimalLat": -27.52582 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.674134, "decimalLat": -34.943081 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -34.943 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09253, "decimalLat": -27.525561 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093737, "decimalLat": -27.524918 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721872, "decimalLat": -34.892793 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895296, "decimalLat": -27.597049 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.597 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.546826, "decimalLat": -27.793138 }, "geometry": { "type": "Point", "coordinates": [ 151.547, -27.793 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72049, "decimalLat": -34.892553 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.606562, "decimalLat": -38.768371 }, "geometry": { "type": "Point", "coordinates": [ 143.607, -38.768 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058894, "decimalLat": -27.551682 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072044, "decimalLat": -27.543239 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.859178, "decimalLat": -19.131649 }, "geometry": { "type": "Point", "coordinates": [ 146.859, -19.132 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.776298, "decimalLat": -27.785431 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -27.785 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086537, "decimalLat": -27.510344 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.185324, "decimalLat": -37.825729 }, "geometry": { "type": "Point", "coordinates": [ 144.185, -37.826 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093094, "decimalLat": -27.524942 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.752717, "decimalLat": -36.40493 }, "geometry": { "type": "Point", "coordinates": [ 146.753, -36.405 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.614279, "decimalLat": -34.902655 }, "geometry": { "type": "Point", "coordinates": [ 138.614, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.316007, "decimalLat": -38.363214 }, "geometry": { "type": "Point", "coordinates": [ 145.316, -38.363 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.929077, "decimalLat": -27.580959 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -27.581 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.714705, "decimalLat": -27.649617 }, "geometry": { "type": "Point", "coordinates": [ 151.715, -27.65 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091481, "decimalLat": -27.527311 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.076295, "decimalLat": -27.817245 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.330621, "decimalLat": -35.874236 }, "geometry": { "type": "Point", "coordinates": [ 145.331, -35.874 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377096, "decimalLat": -28.254509 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733246, "decimalLat": -34.886951 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003219, "decimalLat": -27.413923 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.998379, "decimalLat": -27.436148 }, "geometry": { "type": "Point", "coordinates": [ 152.998, -27.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105515, "decimalLat": -27.531473 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111352, "decimalLat": -27.528835 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.554658, "decimalLat": -28.012781 }, "geometry": { "type": "Point", "coordinates": [ 152.555, -28.013 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.636244, "decimalLat": -26.939372 }, "geometry": { "type": "Point", "coordinates": [ 152.636, -26.939 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.986414, "decimalLat": -38.521429 }, "geometry": { "type": "Point", "coordinates": [ 143.986, -38.521 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103601, "decimalLat": -27.530834 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3776, "decimalLat": -28.254525 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073544, "decimalLat": -27.545834 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.811271, "decimalLat": -35.959996 }, "geometry": { "type": "Point", "coordinates": [ 136.811, -35.96 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.822662, "decimalLat": -34.666542 }, "geometry": { "type": "Point", "coordinates": [ 138.823, -34.667 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.049013, "decimalLat": -27.264957 }, "geometry": { "type": "Point", "coordinates": [ 152.049, -27.265 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441168, "decimalLat": -27.401857 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.402 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712526, "decimalLat": -34.886225 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.302251, "decimalLat": -38.383892 }, "geometry": { "type": "Point", "coordinates": [ 145.302, -38.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057778, "decimalLat": -27.550833 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314419, "decimalLat": -38.375004 }, "geometry": { "type": "Point", "coordinates": [ 145.314, -38.375 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.308042, "decimalLat": -38.384733 }, "geometry": { "type": "Point", "coordinates": [ 145.308, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058737, "decimalLat": -27.547757 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073231, "decimalLat": -27.545793 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111289, "decimalLat": -27.529984 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.998892, "decimalLat": -28.52427 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -28.524 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.382969, "decimalLat": -27.907798 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -27.908 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09073, "decimalLat": -27.527243 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.517285, "decimalLat": -27.423853 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -27.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7088, "decimalLat": -34.95774 }, "geometry": { "type": "Point", "coordinates": [ 138.709, -34.958 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.818404, "decimalLat": -26.252431 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -26.252 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081308, "decimalLat": -27.508225 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.430897, "decimalLat": -37.208115 }, "geometry": { "type": "Point", "coordinates": [ 145.431, -37.208 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108942, "decimalLat": -27.529238 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092929, "decimalLat": -27.526557 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.859615, "decimalLat": -27.542516 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054373, "decimalLat": -27.55272 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721984, "decimalLat": -34.889652 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.699646, "decimalLat": -34.959151 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058026, "decimalLat": -27.550715 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.456542, "decimalLat": -37.022636 }, "geometry": { "type": "Point", "coordinates": [ 145.457, -37.023 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092825, "decimalLat": -27.528452 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731843, "decimalLat": -34.891599 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056023, "decimalLat": -27.552165 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.277423, "decimalLat": -37.860267 }, "geometry": { "type": "Point", "coordinates": [ 144.277, -37.86 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056787, "decimalLat": -27.537641 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104941, "decimalLat": -27.529717 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.979609, "decimalLat": -30.422992 }, "geometry": { "type": "Point", "coordinates": [ 152.98, -30.423 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730651, "decimalLat": -34.890586 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.89988, "decimalLat": -37.617039 }, "geometry": { "type": "Point", "coordinates": [ 143.9, -37.617 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.86581, "decimalLat": -28.211403 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.211 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.172853, "decimalLat": -37.913864 }, "geometry": { "type": "Point", "coordinates": [ 144.173, -37.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112142, "decimalLat": -27.528942 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.997408, "decimalLat": -27.409529 }, "geometry": { "type": "Point", "coordinates": [ 151.997, -27.41 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074427, "decimalLat": -27.545748 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.691444, "decimalLat": -34.903878 }, "geometry": { "type": "Point", "coordinates": [ 138.691, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.0668, "decimalLat": -27.260844 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -27.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.232955, "decimalLat": -33.11913 }, "geometry": { "type": "Point", "coordinates": [ 151.233, -33.119 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092338, "decimalLat": -27.528043 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.774565, "decimalLat": -27.398429 }, "geometry": { "type": "Point", "coordinates": [ 151.775, -27.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090883, "decimalLat": -27.527182 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721201, "decimalLat": -34.892847 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.295497, "decimalLat": -37.074481 }, "geometry": { "type": "Point", "coordinates": [ 144.295, -37.074 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092669, "decimalLat": -27.525581 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.407013, "decimalLat": -38.352354 }, "geometry": { "type": "Point", "coordinates": [ 146.407, -38.352 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860711, "decimalLat": -38.667948 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070312, "decimalLat": -27.509711 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.356434, "decimalLat": -38.333712 }, "geometry": { "type": "Point", "coordinates": [ 142.356, -38.334 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10906, "decimalLat": -27.526619 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.555996, "decimalLat": -27.794422 }, "geometry": { "type": "Point", "coordinates": [ 151.556, -27.794 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.272211, "decimalLat": -37.860721 }, "geometry": { "type": "Point", "coordinates": [ 144.272, -37.861 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.544421, "decimalLat": -27.435569 }, "geometry": { "type": "Point", "coordinates": [ 153.544, -27.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.865454, "decimalLat": -26.267582 }, "geometry": { "type": "Point", "coordinates": [ 151.865, -26.268 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072835, "decimalLat": -27.545886 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10772, "decimalLat": -27.527183 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068919, "decimalLat": -27.542084 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.626158, "decimalLat": -34.893151 }, "geometry": { "type": "Point", "coordinates": [ 138.626, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092141, "decimalLat": -27.524482 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.967688, "decimalLat": -26.576088 }, "geometry": { "type": "Point", "coordinates": [ 151.968, -26.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.778415, "decimalLat": -34.880911 }, "geometry": { "type": "Point", "coordinates": [ 138.778, -34.881 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068163, "decimalLat": -27.524994 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057576, "decimalLat": -27.551411 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.049928, "decimalLat": -27.262945 }, "geometry": { "type": "Point", "coordinates": [ 152.05, -27.263 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080832, "decimalLat": -27.508614 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103062, "decimalLat": -27.528917 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657215, "decimalLat": -34.868643 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.869 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.8192, "decimalLat": -27.4735 }, "geometry": { "type": "Point", "coordinates": [ 151.819, -27.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.130477, "decimalLat": -38.175806 }, "geometry": { "type": "Point", "coordinates": [ 145.13, -38.176 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.594839, "decimalLat": -37.330869 }, "geometry": { "type": "Point", "coordinates": [ 144.595, -37.331 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.309052, "decimalLat": -38.384838 }, "geometry": { "type": "Point", "coordinates": [ 145.309, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090633, "decimalLat": -27.526296 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.382063, "decimalLat": -38.387168 }, "geometry": { "type": "Point", "coordinates": [ 145.382, -38.387 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868422, "decimalLat": -19.126611 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.127 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.456779, "decimalLat": -31.937303 }, "geometry": { "type": "Point", "coordinates": [ 152.457, -31.937 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056533, "decimalLat": -27.544355 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092266, "decimalLat": -27.528088 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091287, "decimalLat": -27.525414 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.624204, "decimalLat": -25.633838 }, "geometry": { "type": "Point", "coordinates": [ 151.624, -25.634 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.362786, "decimalLat": -38.318959 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109446, "decimalLat": -27.529482 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.66038, "decimalLat": -38.748927 }, "geometry": { "type": "Point", "coordinates": [ 143.66, -38.749 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372214, "decimalLat": -27.914748 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08513, "decimalLat": -27.509215 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093341, "decimalLat": -27.525009 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.103011, "decimalLat": -27.570378 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715703, "decimalLat": -34.890488 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377571, "decimalLat": -28.254182 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.723704, "decimalLat": -34.890283 }, "geometry": { "type": "Point", "coordinates": [ 138.724, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.046607, "decimalLat": -27.544366 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092343, "decimalLat": -27.527459 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092257, "decimalLat": -27.525368 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441002, "decimalLat": -27.401332 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095355, "decimalLat": -33.076654 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.960372, "decimalLat": -38.423858 }, "geometry": { "type": "Point", "coordinates": [ 144.96, -38.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.7229, "decimalLat": -27.43013 }, "geometry": { "type": "Point", "coordinates": [ 151.723, -27.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.731788, "decimalLat": -37.535533 }, "geometry": { "type": "Point", "coordinates": [ 149.732, -37.536 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.402363, "decimalLat": -27.46569 }, "geometry": { "type": "Point", "coordinates": [ 152.402, -27.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.986414, "decimalLat": -38.521429 }, "geometry": { "type": "Point", "coordinates": [ 143.986, -38.521 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870712, "decimalLat": -19.12497 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.236388, "decimalLat": -38.23467 }, "geometry": { "type": "Point", "coordinates": [ 145.236, -38.235 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.743955, "decimalLat": -26.146371 }, "geometry": { "type": "Point", "coordinates": [ 151.744, -26.146 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.591678, "decimalLat": -26.894952 }, "geometry": { "type": "Point", "coordinates": [ 152.592, -26.895 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.808819, "decimalLat": -35.960165 }, "geometry": { "type": "Point", "coordinates": [ 136.809, -35.96 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.482208, "decimalLat": -27.414995 }, "geometry": { "type": "Point", "coordinates": [ 153.482, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055925, "decimalLat": -27.539029 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091817, "decimalLat": -27.527095 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054552, "decimalLat": -27.546645 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.536523, "decimalLat": -38.814028 }, "geometry": { "type": "Point", "coordinates": [ 143.537, -38.814 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.295569, "decimalLat": -38.378565 }, "geometry": { "type": "Point", "coordinates": [ 145.296, -38.379 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.779892, "decimalLat": -27.788917 }, "geometry": { "type": "Point", "coordinates": [ 152.78, -27.789 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091421, "decimalLat": -27.527344 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.802057, "decimalLat": -36.788463 }, "geometry": { "type": "Point", "coordinates": [ 145.802, -36.788 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.685924, "decimalLat": -34.83217 }, "geometry": { "type": "Point", "coordinates": [ 135.686, -34.832 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108176, "decimalLat": -27.527229 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400813, "decimalLat": -28.257899 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.750039, "decimalLat": -26.155358 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.975678, "decimalLat": -27.25195 }, "geometry": { "type": "Point", "coordinates": [ 152.976, -27.252 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.629657, "decimalLat": -34.990948 }, "geometry": { "type": "Point", "coordinates": [ 138.63, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.907121, "decimalLat": -28.174495 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -28.174 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060855, "decimalLat": -27.534244 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058883, "decimalLat": -27.534013 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164214, "decimalLat": -38.67152 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.743565, "decimalLat": -28.236194 }, "geometry": { "type": "Point", "coordinates": [ 152.744, -28.236 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003128, "decimalLat": -27.413783 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.976497, "decimalLat": -26.156417 }, "geometry": { "type": "Point", "coordinates": [ 151.976, -26.156 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084375, "decimalLat": -27.510903 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.974717, "decimalLat": -38.481703 }, "geometry": { "type": "Point", "coordinates": [ 142.975, -38.482 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092235, "decimalLat": -27.527956 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072108, "decimalLat": -27.544095 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601489, "decimalLat": -29.870496 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -29.87 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086939, "decimalLat": -27.51056 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.375986, "decimalLat": -27.918721 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.707916, "decimalLat": -34.984595 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -34.985 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.513039, "decimalLat": -38.835476 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.835 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.851697, "decimalLat": -26.492659 }, "geometry": { "type": "Point", "coordinates": [ 151.852, -26.493 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091897, "decimalLat": -27.527118 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104584, "decimalLat": -27.530549 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.581096, "decimalLat": -27.956453 }, "geometry": { "type": "Point", "coordinates": [ 152.581, -27.956 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09094, "decimalLat": -27.526561 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.409578, "decimalLat": -36.878303 }, "geometry": { "type": "Point", "coordinates": [ 145.41, -36.878 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.612279, "decimalLat": -38.675424 }, "geometry": { "type": "Point", "coordinates": [ 145.612, -38.675 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091457, "decimalLat": -27.527301 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055767, "decimalLat": -27.550544 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069269, "decimalLat": -27.546353 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.346988, "decimalLat": -28.088302 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.088 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.56363, "decimalLat": -27.795528 }, "geometry": { "type": "Point", "coordinates": [ 151.564, -27.796 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.716142, "decimalLat": -27.568508 }, "geometry": { "type": "Point", "coordinates": [ 151.716, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004542, "decimalLat": -27.41164 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -27.412 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058006, "decimalLat": -27.551756 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.536758, "decimalLat": -38.813503 }, "geometry": { "type": "Point", "coordinates": [ 143.537, -38.814 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377349, "decimalLat": -28.254272 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108358, "decimalLat": -27.527205 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091379, "decimalLat": -27.527152 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.910424, "decimalLat": -28.030745 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -28.031 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072097, "decimalLat": -27.543838 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105628, "decimalLat": -27.529659 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05299, "decimalLat": -27.550109 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.559417, "decimalLat": -35.03265 }, "geometry": { "type": "Point", "coordinates": [ 138.559, -35.033 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.672887, "decimalLat": -37.970246 }, "geometry": { "type": "Point", "coordinates": [ 145.673, -37.97 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.55652, "decimalLat": -27.613 }, "geometry": { "type": "Point", "coordinates": [ 151.557, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.7493, "decimalLat": -37.552635 }, "geometry": { "type": "Point", "coordinates": [ 149.749, -37.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092073, "decimalLat": -27.527254 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003181, "decimalLat": -27.412788 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.413 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.356738, "decimalLat": -27.939045 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722252, "decimalLat": -34.89061 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104866, "decimalLat": -27.530543 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.391132, "decimalLat": -38.360294 }, "geometry": { "type": "Point", "coordinates": [ 146.391, -38.36 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.665818, "decimalLat": -34.8655 }, "geometry": { "type": "Point", "coordinates": [ 138.666, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093081, "decimalLat": -27.527767 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103744, "decimalLat": -27.530049 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.311581, "decimalLat": -38.288753 }, "geometry": { "type": "Point", "coordinates": [ 143.312, -38.289 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372772, "decimalLat": -27.912937 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092304, "decimalLat": -27.525404 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.990442, "decimalLat": -30.574536 }, "geometry": { "type": "Point", "coordinates": [ 152.99, -30.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092167, "decimalLat": -27.527028 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.403426, "decimalLat": -27.459143 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -27.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387658, "decimalLat": -38.354201 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07324, "decimalLat": -27.545617 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.575683, "decimalLat": -35.737297 }, "geometry": { "type": "Point", "coordinates": [ 137.576, -35.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.86068, "decimalLat": -38.667512 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.142214, "decimalLat": -27.747787 }, "geometry": { "type": "Point", "coordinates": [ 153.142, -27.748 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.853907, "decimalLat": -34.079259 }, "geometry": { "type": "Point", "coordinates": [ 150.854, -34.079 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107808, "decimalLat": -27.527084 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.87175, "decimalLat": -19.123975 }, "geometry": { "type": "Point", "coordinates": [ 146.872, -19.124 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072322, "decimalLat": -27.549853 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400888, "decimalLat": -28.258202 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.858021, "decimalLat": -27.544119 }, "geometry": { "type": "Point", "coordinates": [ 152.858, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091431, "decimalLat": -27.527388 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08316, "decimalLat": -27.512472 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.678589, "decimalLat": -27.987843 }, "geometry": { "type": "Point", "coordinates": [ 152.679, -27.988 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054122, "decimalLat": -27.539272 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.674988, "decimalLat": -35.016972 }, "geometry": { "type": "Point", "coordinates": [ 138.675, -35.017 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.004051, "decimalLat": -27.411715 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.412 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.772632, "decimalLat": -26.200206 }, "geometry": { "type": "Point", "coordinates": [ 151.773, -26.2 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.68945, "decimalLat": -26.383676 }, "geometry": { "type": "Point", "coordinates": [ 152.689, -26.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06286, "decimalLat": -32.700648 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.701 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103371, "decimalLat": -27.529066 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.759597, "decimalLat": -28.241358 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -28.241 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.813606, "decimalLat": -26.248632 }, "geometry": { "type": "Point", "coordinates": [ 151.814, -26.249 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.056574, "decimalLat": -27.25602 }, "geometry": { "type": "Point", "coordinates": [ 152.057, -27.256 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092509, "decimalLat": -27.52733 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363266, "decimalLat": -38.318733 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.932312, "decimalLat": -27.331197 }, "geometry": { "type": "Point", "coordinates": [ 151.932, -27.331 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062083, "decimalLat": -27.543767 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721365, "decimalLat": -34.891901 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061741, "decimalLat": -27.534072 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.375114, "decimalLat": -27.916686 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.36283, "decimalLat": -38.316593 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.317 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.494038, "decimalLat": -35.707163 }, "geometry": { "type": "Point", "coordinates": [ 137.494, -35.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.672567, "decimalLat": -35.019836 }, "geometry": { "type": "Point", "coordinates": [ 138.673, -35.02 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.588668, "decimalLat": -36.797886 }, "geometry": { "type": "Point", "coordinates": [ 145.589, -36.798 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601458, "decimalLat": -29.870421 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -29.87 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702372, "decimalLat": -34.965267 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.965 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.940674, "decimalLat": -27.163416 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -27.163 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112849, "decimalLat": -27.527518 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906892, "decimalLat": -31.441022 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.534365, "decimalLat": -34.745023 }, "geometry": { "type": "Point", "coordinates": [ 146.534, -34.745 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080658, "decimalLat": -27.509142 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.436932, "decimalLat": -28.129474 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.129 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093432, "decimalLat": -27.528137 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.512353, "decimalLat": -27.551735 }, "geometry": { "type": "Point", "coordinates": [ 151.512, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09208, "decimalLat": -27.515445 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10804, "decimalLat": -27.527196 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565597, "decimalLat": -28.387447 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105084, "decimalLat": -27.529848 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.401442, "decimalLat": -27.457234 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -27.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091707, "decimalLat": -27.527071 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.854688, "decimalLat": -34.731528 }, "geometry": { "type": "Point", "coordinates": [ 138.855, -34.732 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.728379, "decimalLat": -34.888856 }, "geometry": { "type": "Point", "coordinates": [ 138.728, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103147, "decimalLat": -27.528454 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307898, "decimalLat": -29.052749 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -29.053 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059075, "decimalLat": -27.551466 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090742, "decimalLat": -27.527527 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080938, "decimalLat": -27.507685 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09224, "decimalLat": -27.528426 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720713, "decimalLat": -34.892817 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092949, "decimalLat": -27.526023 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.899871, "decimalLat": -37.64192 }, "geometry": { "type": "Point", "coordinates": [ 143.9, -37.642 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731921, "decimalLat": -34.866812 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.867 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.400038, "decimalLat": -27.457601 }, "geometry": { "type": "Point", "coordinates": [ 152.4, -27.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05635, "decimalLat": -27.544243 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109877, "decimalLat": -27.527914 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.765762, "decimalLat": -34.912351 }, "geometry": { "type": "Point", "coordinates": [ 138.766, -34.912 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.816568, "decimalLat": -34.155329 }, "geometry": { "type": "Point", "coordinates": [ 150.817, -34.155 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.864523, "decimalLat": -19.145868 }, "geometry": { "type": "Point", "coordinates": [ 146.865, -19.146 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.773089, "decimalLat": -37.902143 }, "geometry": { "type": "Point", "coordinates": [ 147.773, -37.902 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091, "decimalLat": -27.526912 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196409, "decimalLat": -27.654288 }, "geometry": { "type": "Point", "coordinates": [ 153.196, -27.654 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103464, "decimalLat": -27.530634 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.845773, "decimalLat": -28.08609 }, "geometry": { "type": "Point", "coordinates": [ 152.846, -28.086 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.481831, "decimalLat": -38.800562 }, "geometry": { "type": "Point", "coordinates": [ 143.482, -38.801 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092352, "decimalLat": -27.527853 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104592, "decimalLat": -27.529554 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073381, "decimalLat": -27.545819 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.975022, "decimalLat": -38.499981 }, "geometry": { "type": "Point", "coordinates": [ 142.975, -38.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.594235, "decimalLat": -27.918813 }, "geometry": { "type": "Point", "coordinates": [ 152.594, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072525, "decimalLat": -27.545827 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.0869, "decimalLat": -27.69505 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.695 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.12701, "decimalLat": -30.294197 }, "geometry": { "type": "Point", "coordinates": [ 153.127, -30.294 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.401121, "decimalLat": -36.832497 }, "geometry": { "type": "Point", "coordinates": [ 148.401, -36.832 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.481831, "decimalLat": -38.800562 }, "geometry": { "type": "Point", "coordinates": [ 143.482, -38.801 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093645, "decimalLat": -27.525022 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.472712, "decimalLat": -32.363607 }, "geometry": { "type": "Point", "coordinates": [ 152.473, -32.364 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163711, "decimalLat": -38.671253 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074222, "decimalLat": -27.545979 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092156, "decimalLat": -27.527139 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.868236, "decimalLat": -28.218048 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -28.218 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.940714, "decimalLat": -27.276637 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -27.277 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.570595, "decimalLat": -27.630516 }, "geometry": { "type": "Point", "coordinates": [ 151.571, -27.631 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.684722, "decimalLat": -34.825278 }, "geometry": { "type": "Point", "coordinates": [ 135.685, -34.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702971, "decimalLat": -34.903011 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058935, "decimalLat": -27.558703 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.559 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73126, "decimalLat": -34.88974 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.969179, "decimalLat": -27.533556 }, "geometry": { "type": "Point", "coordinates": [ 151.969, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363238, "decimalLat": -38.318799 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063068, "decimalLat": -27.541238 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.077725, "decimalLat": -37.627945 }, "geometry": { "type": "Point", "coordinates": [ 144.078, -37.628 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.854125, "decimalLat": -26.506547 }, "geometry": { "type": "Point", "coordinates": [ 151.854, -26.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103767, "decimalLat": -27.52937 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.490985, "decimalLat": -37.641263 }, "geometry": { "type": "Point", "coordinates": [ 144.491, -37.641 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073443, "decimalLat": -27.547108 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278745, "decimalLat": -27.5446 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.796108, "decimalLat": -28.244419 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -28.244 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.065843, "decimalLat": -27.543125 }, "geometry": { "type": "Point", "coordinates": [ 153.066, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.329388, "decimalLat": -27.979466 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.979 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.317734, "decimalLat": -38.346443 }, "geometry": { "type": "Point", "coordinates": [ 145.318, -38.346 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600266, "decimalLat": -29.869158 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -29.869 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.829895, "decimalLat": -26.796037 }, "geometry": { "type": "Point", "coordinates": [ 152.83, -26.796 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.38757, "decimalLat": -38.3547 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.521156, "decimalLat": -27.715511 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -27.716 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.878084, "decimalLat": -34.057667 }, "geometry": { "type": "Point", "coordinates": [ 150.878, -34.058 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.62365, "decimalLat": -38.797996 }, "geometry": { "type": "Point", "coordinates": [ 143.624, -38.798 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387673, "decimalLat": -38.35475 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.307539, "decimalLat": -38.384619 }, "geometry": { "type": "Point", "coordinates": [ 145.308, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.344529, "decimalLat": -27.831795 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081955, "decimalLat": -27.507589 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10339, "decimalLat": -27.530088 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069061, "decimalLat": -27.525939 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.521021, "decimalLat": -30.519674 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.871801, "decimalLat": -19.128596 }, "geometry": { "type": "Point", "coordinates": [ 146.872, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092303, "decimalLat": -27.527277 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290611, "decimalLat": -37.874347 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.874 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.472779, "decimalLat": -33.758096 }, "geometry": { "type": "Point", "coordinates": [ 149.473, -33.758 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.037395, "decimalLat": -27.549605 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655631, "decimalLat": -35.002861 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.003 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.483108, "decimalLat": -38.800338 }, "geometry": { "type": "Point", "coordinates": [ 143.483, -38.8 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090569, "decimalLat": -27.525499 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046237, "decimalLat": -27.255233 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.255 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377201, "decimalLat": -28.253584 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.697582, "decimalLat": -34.902793 }, "geometry": { "type": "Point", "coordinates": [ 138.698, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.895651, "decimalLat": -37.581542 }, "geometry": { "type": "Point", "coordinates": [ 143.896, -37.582 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.956551, "decimalLat": -27.441018 }, "geometry": { "type": "Point", "coordinates": [ 151.957, -27.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.727499, "decimalLat": -37.924327 }, "geometry": { "type": "Point", "coordinates": [ 147.727, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091051, "decimalLat": -27.526005 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.977, "decimalLat": -26.161014 }, "geometry": { "type": "Point", "coordinates": [ 151.977, -26.161 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4031, "decimalLat": -28.260052 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09255, "decimalLat": -27.528207 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656722, "decimalLat": -34.8667 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.867 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719499, "decimalLat": -34.891687 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107608, "decimalLat": -27.527211 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.531525, "decimalLat": -33.563756 }, "geometry": { "type": "Point", "coordinates": [ 149.532, -33.564 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057466, "decimalLat": -27.551161 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.133881, "decimalLat": -27.565558 }, "geometry": { "type": "Point", "coordinates": [ 153.134, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399191, "decimalLat": -27.497421 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657025, "decimalLat": -34.865175 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101785, "decimalLat": -27.529947 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.269592, "decimalLat": -37.209603 }, "geometry": { "type": "Point", "coordinates": [ 148.27, -37.21 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.396857, "decimalLat": -38.354635 }, "geometry": { "type": "Point", "coordinates": [ 146.397, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061841, "decimalLat": -27.550724 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.04211, "decimalLat": -38.493184 }, "geometry": { "type": "Point", "coordinates": [ 147.042, -38.493 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092675, "decimalLat": -27.525469 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.213879, "decimalLat": -27.532042 }, "geometry": { "type": "Point", "coordinates": [ 152.214, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081679, "decimalLat": -27.508381 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.576905, "decimalLat": -37.392655 }, "geometry": { "type": "Point", "coordinates": [ 144.577, -37.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110737, "decimalLat": -27.529125 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712066, "decimalLat": -35.005538 }, "geometry": { "type": "Point", "coordinates": [ 138.712, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377428, "decimalLat": -28.253821 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.711351, "decimalLat": -34.890791 }, "geometry": { "type": "Point", "coordinates": [ 138.711, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.288296, "decimalLat": -38.401901 }, "geometry": { "type": "Point", "coordinates": [ 146.288, -38.402 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090322, "decimalLat": -27.526836 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093572, "decimalLat": -27.524354 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111435, "decimalLat": -27.525275 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058917, "decimalLat": -27.548691 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09299, "decimalLat": -27.528232 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073326, "decimalLat": -27.545611 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.109554, "decimalLat": -27.254566 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -27.255 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.762619, "decimalLat": -38.221236 }, "geometry": { "type": "Point", "coordinates": [ 141.763, -38.221 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092977, "decimalLat": -27.526349 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093017, "decimalLat": -27.528104 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387708, "decimalLat": -38.354828 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.512999, "decimalLat": -38.833982 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.834 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.814695, "decimalLat": -34.095379 }, "geometry": { "type": "Point", "coordinates": [ 150.815, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27248, "decimalLat": -38.136697 }, "geometry": { "type": "Point", "coordinates": [ 145.272, -38.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.281762, "decimalLat": -36.168236 }, "geometry": { "type": "Point", "coordinates": [ 149.282, -36.168 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.249413, "decimalLat": -37.855711 }, "geometry": { "type": "Point", "coordinates": [ 144.249, -37.856 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.865972, "decimalLat": -28.211416 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.211 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401432, "decimalLat": -28.25714 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.1642, "decimalLat": -38.671322 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.83788, "decimalLat": -28.094891 }, "geometry": { "type": "Point", "coordinates": [ 152.838, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.538983, "decimalLat": -38.781719 }, "geometry": { "type": "Point", "coordinates": [ 143.539, -38.782 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109739, "decimalLat": -27.529571 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721525, "decimalLat": -34.892641 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.145966, "decimalLat": -27.746679 }, "geometry": { "type": "Point", "coordinates": [ 153.146, -27.747 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.811926, "decimalLat": -27.536765 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061649, "decimalLat": -27.53467 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.92537, "decimalLat": -34.751362 }, "geometry": { "type": "Point", "coordinates": [ 138.925, -34.751 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053603, "decimalLat": -27.550991 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.787995, "decimalLat": -27.39783 }, "geometry": { "type": "Point", "coordinates": [ 151.788, -27.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.650379, "decimalLat": -35.017079 }, "geometry": { "type": "Point", "coordinates": [ 138.65, -35.017 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091827, "decimalLat": -27.525792 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091925, "decimalLat": -27.527146 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9304, "decimalLat": -27.374178 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -27.374 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.552026, "decimalLat": -28.011346 }, "geometry": { "type": "Point", "coordinates": [ 152.552, -28.011 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091388, "decimalLat": -27.527317 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08316, "decimalLat": -27.516327 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.719208, "decimalLat": -27.423477 }, "geometry": { "type": "Point", "coordinates": [ 151.719, -27.423 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.177795, "decimalLat": -38.176222 }, "geometry": { "type": "Point", "coordinates": [ 145.178, -38.176 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092562, "decimalLat": -27.525419 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400646, "decimalLat": -28.257815 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055002, "decimalLat": -27.538697 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.18338, "decimalLat": -26.90935 }, "geometry": { "type": "Point", "coordinates": [ 151.183, -26.909 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163742, "decimalLat": -38.671138 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.304555, "decimalLat": -38.384246 }, "geometry": { "type": "Point", "coordinates": [ 145.305, -38.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163772, "decimalLat": -38.671208 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.869293, "decimalLat": -19.125229 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189813, "decimalLat": -27.70208 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111857, "decimalLat": -27.527893 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.771995, "decimalLat": -26.137334 }, "geometry": { "type": "Point", "coordinates": [ 151.772, -26.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.148961, "decimalLat": -27.790025 }, "geometry": { "type": "Point", "coordinates": [ 153.149, -27.79 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.09462, "decimalLat": -37.623895 }, "geometry": { "type": "Point", "coordinates": [ 144.095, -37.624 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074445, "decimalLat": -27.358333 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.968825, "decimalLat": -27.464688 }, "geometry": { "type": "Point", "coordinates": [ 152.969, -27.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092567, "decimalLat": -27.528323 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.59362, "decimalLat": -34.775175 }, "geometry": { "type": "Point", "coordinates": [ 146.594, -34.775 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.775067, "decimalLat": -38.203257 }, "geometry": { "type": "Point", "coordinates": [ 141.775, -38.203 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103464, "decimalLat": -27.530172 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059902, "decimalLat": -27.549542 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090971, "decimalLat": -27.526423 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.044799, "decimalLat": -27.540188 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.494167, "decimalLat": -35.707073 }, "geometry": { "type": "Point", "coordinates": [ 137.494, -35.707 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091433, "decimalLat": -27.527344 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.895649, "decimalLat": -27.644416 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -27.644 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057552, "decimalLat": -27.551501 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05513, "decimalLat": -27.543936 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.728876, "decimalLat": -34.887045 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.290998, "decimalLat": -37.874444 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.874 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091549, "decimalLat": -27.527268 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109958, "decimalLat": -27.527587 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09083, "decimalLat": -27.526648 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.404058, "decimalLat": -27.494367 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.731689, "decimalLat": -37.923261 }, "geometry": { "type": "Point", "coordinates": [ 147.732, -37.923 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.159782, "decimalLat": -38.045935 }, "geometry": { "type": "Point", "coordinates": [ 141.16, -38.046 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.078295, "decimalLat": -33.147176 }, "geometry": { "type": "Point", "coordinates": [ 151.078, -33.147 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069749, "decimalLat": -27.510527 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090907, "decimalLat": -27.526325 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.903565, "decimalLat": -37.748136 }, "geometry": { "type": "Point", "coordinates": [ 143.904, -37.748 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.799453, "decimalLat": -27.181213 }, "geometry": { "type": "Point", "coordinates": [ 152.799, -27.181 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091349, "decimalLat": -27.527353 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.866492, "decimalLat": -28.211118 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.211 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.965562, "decimalLat": -38.441445 }, "geometry": { "type": "Point", "coordinates": [ 143.966, -38.441 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440995, "decimalLat": -27.392708 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113361, "decimalLat": -27.528432 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001297, "decimalLat": -27.165364 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.165 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.049103, "decimalLat": -27.549883 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.309799, "decimalLat": -38.384972 }, "geometry": { "type": "Point", "coordinates": [ 145.31, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.844467, "decimalLat": -28.097059 }, "geometry": { "type": "Point", "coordinates": [ 152.844, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102868, "decimalLat": -27.527319 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068181, "decimalLat": -27.539953 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.651826, "decimalLat": -29.779576 }, "geometry": { "type": "Point", "coordinates": [ 150.652, -29.78 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109463, "decimalLat": -27.527326 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.888855, "decimalLat": -27.599857 }, "geometry": { "type": "Point", "coordinates": [ 151.889, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054498, "decimalLat": -27.550864 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093069, "decimalLat": -27.526316 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.174383, "decimalLat": -37.821707 }, "geometry": { "type": "Point", "coordinates": [ 144.174, -37.822 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092691, "decimalLat": -27.527918 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.419854, "decimalLat": -38.756799 }, "geometry": { "type": "Point", "coordinates": [ 143.42, -38.757 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.878498, "decimalLat": -34.883442 }, "geometry": { "type": "Point", "coordinates": [ 138.878, -34.883 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.026568, "decimalLat": -33.793269 }, "geometry": { "type": "Point", "coordinates": [ 150.027, -33.793 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108989, "decimalLat": -27.529233 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.868138, "decimalLat": -28.219212 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -28.219 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870255, "decimalLat": -19.132298 }, "geometry": { "type": "Point", "coordinates": [ 146.87, -19.132 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.204283, "decimalLat": -26.14315 }, "geometry": { "type": "Point", "coordinates": [ 152.204, -26.143 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109615, "decimalLat": -27.529485 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11134, "decimalLat": -27.528413 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107327, "decimalLat": -27.527134 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109726, "decimalLat": -27.541176 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083853, "decimalLat": -27.516761 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870728, "decimalLat": -19.124164 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.124 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614033, "decimalLat": -33.735404 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -33.735 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.146592, "decimalLat": -27.509763 }, "geometry": { "type": "Point", "coordinates": [ 152.147, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377515, "decimalLat": -28.254048 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.1239, "decimalLat": -38.380403 }, "geometry": { "type": "Point", "coordinates": [ 145.124, -38.38 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075395, "decimalLat": -27.51048 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.233441, "decimalLat": -37.865365 }, "geometry": { "type": "Point", "coordinates": [ 144.233, -37.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10902, "decimalLat": -27.528912 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722495, "decimalLat": -34.892408 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057727, "decimalLat": -27.551846 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059595, "decimalLat": -27.551243 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873301, "decimalLat": -30.670426 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -30.67 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091779, "decimalLat": -27.526933 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.64145, "decimalLat": -27.453252 }, "geometry": { "type": "Point", "coordinates": [ 152.641, -27.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092183, "decimalLat": -27.525045 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.995728, "decimalLat": -27.173747 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -27.174 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729477, "decimalLat": -34.890442 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084231, "decimalLat": -27.511737 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.19756, "decimalLat": -27.247838 }, "geometry": { "type": "Point", "coordinates": [ 152.198, -27.248 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.456943, "decimalLat": -28.092491 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.279273, "decimalLat": -37.860548 }, "geometry": { "type": "Point", "coordinates": [ 144.279, -37.861 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.08104, "decimalLat": -38.286999 }, "geometry": { "type": "Point", "coordinates": [ 145.081, -38.287 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656432, "decimalLat": -34.868957 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -34.869 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.370989, "decimalLat": -36.929611 }, "geometry": { "type": "Point", "coordinates": [ 145.371, -36.93 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091905, "decimalLat": -27.525911 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.469313, "decimalLat": -35.805958 }, "geometry": { "type": "Point", "coordinates": [ 137.469, -35.806 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05455, "decimalLat": -27.552203 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.901374, "decimalLat": -27.633624 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -27.634 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.156479, "decimalLat": -37.036155 }, "geometry": { "type": "Point", "coordinates": [ 145.156, -37.036 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.727495, "decimalLat": -34.888553 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.650362, "decimalLat": -27.62792 }, "geometry": { "type": "Point", "coordinates": [ 151.65, -27.628 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.86798, "decimalLat": -19.128753 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061595, "decimalLat": -27.556261 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.559003, "decimalLat": -26.456922 }, "geometry": { "type": "Point", "coordinates": [ 152.559, -26.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.855522, "decimalLat": -19.128662 }, "geometry": { "type": "Point", "coordinates": [ 146.856, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075941, "decimalLat": -27.505145 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72223, "decimalLat": -34.890651 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.500734, "decimalLat": -37.86653 }, "geometry": { "type": "Point", "coordinates": [ 145.501, -37.867 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.374489, "decimalLat": -27.911248 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.911 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092406, "decimalLat": -27.527063 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.044568, "decimalLat": -27.257927 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074653, "decimalLat": -27.358635 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721691, "decimalLat": -34.891884 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.160433, "decimalLat": -27.659889 }, "geometry": { "type": "Point", "coordinates": [ 153.16, -27.66 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520015, "decimalLat": -30.521949 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.522 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109429, "decimalLat": -27.529422 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749888, "decimalLat": -26.155079 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.892946, "decimalLat": -37.619307 }, "geometry": { "type": "Point", "coordinates": [ 143.893, -37.619 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103108, "decimalLat": -27.530051 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.770221, "decimalLat": -26.44097 }, "geometry": { "type": "Point", "coordinates": [ 151.77, -26.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749888, "decimalLat": -26.155079 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.682704, "decimalLat": -35.017935 }, "geometry": { "type": "Point", "coordinates": [ 138.683, -35.018 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090864, "decimalLat": -27.526711 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090502, "decimalLat": -27.526835 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092505, "decimalLat": -27.524416 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.364526, "decimalLat": -38.318484 }, "geometry": { "type": "Point", "coordinates": [ 142.365, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090502, "decimalLat": -27.526575 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403041, "decimalLat": -28.260651 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.370582, "decimalLat": -27.899135 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108432, "decimalLat": -27.526869 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870637, "decimalLat": -19.123094 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.31067, "decimalLat": -37.276967 }, "geometry": { "type": "Point", "coordinates": [ 144.311, -37.277 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090394, "decimalLat": -27.526889 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192666, "decimalLat": -27.653919 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -27.654 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.094465, "decimalLat": -27.533153 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.739261, "decimalLat": -34.828463 }, "geometry": { "type": "Point", "coordinates": [ 138.739, -34.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110772, "decimalLat": -27.529799 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.016997, "decimalLat": -26.366203 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -26.366 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091793, "decimalLat": -27.527066 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999644, "decimalLat": -27.284098 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.275424, "decimalLat": -37.395358 }, "geometry": { "type": "Point", "coordinates": [ 144.275, -37.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.663646, "decimalLat": -26.394595 }, "geometry": { "type": "Point", "coordinates": [ 152.664, -26.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095261, "decimalLat": -33.076701 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.973277, "decimalLat": -27.50338 }, "geometry": { "type": "Point", "coordinates": [ 151.973, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051469, "decimalLat": -27.548643 }, "geometry": { "type": "Point", "coordinates": [ 153.051, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.067658, "decimalLat": -27.508022 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092536, "decimalLat": -27.527397 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865974, "decimalLat": -31.345156 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -31.345 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702055, "decimalLat": -34.903038 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720632, "decimalLat": -34.892866 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060051, "decimalLat": -27.54552 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10905, "decimalLat": -27.526724 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268245, "decimalLat": -38.130648 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.053965, "decimalLat": -38.266772 }, "geometry": { "type": "Point", "coordinates": [ 145.054, -38.267 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.978194, "decimalLat": -38.497272 }, "geometry": { "type": "Point", "coordinates": [ 142.978, -38.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733553, "decimalLat": -34.888278 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400673, "decimalLat": -28.257967 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090558, "decimalLat": -27.525998 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.831871, "decimalLat": -21.765116 }, "geometry": { "type": "Point", "coordinates": [ 148.832, -21.765 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868928, "decimalLat": -19.125186 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.403971, "decimalLat": -27.454487 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -27.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69314, "decimalLat": -34.956128 }, "geometry": { "type": "Point", "coordinates": [ 138.693, -34.956 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071966, "decimalLat": -27.545607 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091529, "decimalLat": -27.52687 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0733, "decimalLat": -27.545804 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.681099, "decimalLat": -28.001058 }, "geometry": { "type": "Point", "coordinates": [ 152.681, -28.001 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.809224, "decimalLat": -26.109239 }, "geometry": { "type": "Point", "coordinates": [ 151.809, -26.109 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095108, "decimalLat": -33.076469 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730289, "decimalLat": -34.89092 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.147206, "decimalLat": -33.346947 }, "geometry": { "type": "Point", "coordinates": [ 151.147, -33.347 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999921, "decimalLat": -27.284489 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733792, "decimalLat": -34.886646 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520646, "decimalLat": -30.52016 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.821621, "decimalLat": -26.459153 }, "geometry": { "type": "Point", "coordinates": [ 151.822, -26.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.511679, "decimalLat": -27.55347 }, "geometry": { "type": "Point", "coordinates": [ 151.512, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090917, "decimalLat": -27.527618 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11129, "decimalLat": -27.528001 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.685102, "decimalLat": -34.86179 }, "geometry": { "type": "Point", "coordinates": [ 135.685, -34.862 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.433187, "decimalLat": -28.111364 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106733, "decimalLat": -27.527817 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091657, "decimalLat": -27.527159 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.557191, "decimalLat": -38.369073 }, "geometry": { "type": "Point", "coordinates": [ 141.557, -38.369 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055697, "decimalLat": -27.552138 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0504, "decimalLat": -27.54794 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.641845, "decimalLat": -35.082089 }, "geometry": { "type": "Point", "coordinates": [ 138.642, -35.082 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.478395, "decimalLat": -27.742575 }, "geometry": { "type": "Point", "coordinates": [ 152.478, -27.743 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.228643, "decimalLat": -27.502921 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.998125, "decimalLat": -38.827012 }, "geometry": { "type": "Point", "coordinates": [ 145.998, -38.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377493, "decimalLat": -28.254102 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.375033, "decimalLat": -27.91417 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905593, "decimalLat": -31.436984 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102683, "decimalLat": -27.52598 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984492, "decimalLat": -34.092374 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051879, "decimalLat": -27.548528 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.526567, "decimalLat": -27.69292 }, "geometry": { "type": "Point", "coordinates": [ 151.527, -27.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091735, "decimalLat": -27.527083 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733981, "decimalLat": -34.887444 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.60101, "decimalLat": -32.576407 }, "geometry": { "type": "Point", "coordinates": [ 149.601, -32.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715616, "decimalLat": -34.890841 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103541, "decimalLat": -27.530057 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003692, "decimalLat": -27.411403 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.411 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.849598, "decimalLat": -34.081018 }, "geometry": { "type": "Point", "coordinates": [ 150.85, -34.081 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.620933, "decimalLat": -25.629627 }, "geometry": { "type": "Point", "coordinates": [ 151.621, -25.63 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722659, "decimalLat": -34.892096 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090691, "decimalLat": -27.526994 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.077175, "decimalLat": -26.975691 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -26.976 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.674274, "decimalLat": -34.975851 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -34.976 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749824, "decimalLat": -26.155098 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090456, "decimalLat": -27.52692 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.27465, "decimalLat": -38.129928 }, "geometry": { "type": "Point", "coordinates": [ 145.275, -38.13 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884605, "decimalLat": -34.046797 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.047 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164611, "decimalLat": -38.670988 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051782, "decimalLat": -27.546633 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103278, "decimalLat": -27.528134 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.693663, "decimalLat": -34.922528 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.923 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.749992, "decimalLat": -34.997536 }, "geometry": { "type": "Point", "coordinates": [ 138.75, -34.998 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063511, "decimalLat": -27.550102 }, "geometry": { "type": "Point", "coordinates": [ 153.064, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732424, "decimalLat": -34.887334 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.757058, "decimalLat": -37.90576 }, "geometry": { "type": "Point", "coordinates": [ 147.757, -37.906 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.997574, "decimalLat": -27.287886 }, "geometry": { "type": "Point", "coordinates": [ 152.998, -27.288 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109932, "decimalLat": -27.52767 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655063, "decimalLat": -35.012303 }, "geometry": { "type": "Point", "coordinates": [ 138.655, -35.012 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103944, "decimalLat": -27.530153 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074153, "decimalLat": -27.545638 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.899996, "decimalLat": -27.6357 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.636 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108158, "decimalLat": -27.527227 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.819129, "decimalLat": -34.135235 }, "geometry": { "type": "Point", "coordinates": [ 150.819, -34.135 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1833, "decimalLat": -27.53118 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.269183, "decimalLat": -38.13045 }, "geometry": { "type": "Point", "coordinates": [ 145.269, -38.13 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.739948, "decimalLat": -34.919677 }, "geometry": { "type": "Point", "coordinates": [ 138.74, -34.92 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.454955, "decimalLat": -36.868488 }, "geometry": { "type": "Point", "coordinates": [ 145.455, -36.868 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984426, "decimalLat": -36.548035 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09226, "decimalLat": -27.528043 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.586013, "decimalLat": -34.772055 }, "geometry": { "type": "Point", "coordinates": [ 146.586, -34.772 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079553, "decimalLat": -27.514856 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400115, "decimalLat": -28.260394 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.386935, "decimalLat": -38.527337 }, "geometry": { "type": "Point", "coordinates": [ 146.387, -38.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.631542, "decimalLat": -38.341674 }, "geometry": { "type": "Point", "coordinates": [ 142.632, -38.342 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108261, "decimalLat": -27.526936 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82222, "decimalLat": -34.101947 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058176, "decimalLat": -27.551614 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078175, "decimalLat": -27.505801 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731843, "decimalLat": -34.891593 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054509, "decimalLat": -27.541575 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.946089, "decimalLat": -38.428525 }, "geometry": { "type": "Point", "coordinates": [ 144.946, -38.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069927, "decimalLat": -27.510567 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.234502, "decimalLat": -33.117676 }, "geometry": { "type": "Point", "coordinates": [ 151.235, -33.118 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073209, "decimalLat": -27.545928 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108064, "decimalLat": -27.529072 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.111414, "decimalLat": -27.566284 }, "geometry": { "type": "Point", "coordinates": [ 152.111, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057516, "decimalLat": -27.551048 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729746, "decimalLat": -34.887268 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.699937, "decimalLat": -35.069064 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.069 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090471, "decimalLat": -27.527238 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.707458, "decimalLat": -34.904025 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712822, "decimalLat": -34.910982 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.911 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.282867, "decimalLat": -38.957058 }, "geometry": { "type": "Point", "coordinates": [ 146.283, -38.957 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.677846, "decimalLat": -27.987405 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -27.987 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.440659, "decimalLat": -38.110108 }, "geometry": { "type": "Point", "coordinates": [ 141.441, -38.11 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.87755, "decimalLat": -37.637307 }, "geometry": { "type": "Point", "coordinates": [ 143.878, -37.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.715376, "decimalLat": -35.203819 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -35.204 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.514864, "decimalLat": -38.832304 }, "geometry": { "type": "Point", "coordinates": [ 143.515, -38.832 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092741, "decimalLat": -27.527555 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.716947, "decimalLat": -26.084854 }, "geometry": { "type": "Point", "coordinates": [ 151.717, -26.085 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092259, "decimalLat": -27.527725 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163555, "decimalLat": -38.671026 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722573, "decimalLat": -34.89246 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71874, "decimalLat": -34.891806 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.079103, "decimalLat": -26.974322 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -26.974 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105058, "decimalLat": -27.530181 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.570052, "decimalLat": -27.757508 }, "geometry": { "type": "Point", "coordinates": [ 151.57, -27.758 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091758, "decimalLat": -27.526891 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.814029, "decimalLat": -26.16528 }, "geometry": { "type": "Point", "coordinates": [ 151.814, -26.165 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.086533, "decimalLat": -27.697033 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.697 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.698564, "decimalLat": -34.933278 }, "geometry": { "type": "Point", "coordinates": [ 138.699, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.308578, "decimalLat": -38.052539 }, "geometry": { "type": "Point", "coordinates": [ 141.309, -38.053 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091883, "decimalLat": -27.528864 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16384, "decimalLat": -38.67118 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055807, "decimalLat": -27.536997 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.67776, "decimalLat": -27.987375 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -27.987 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.865705, "decimalLat": -19.142205 }, "geometry": { "type": "Point", "coordinates": [ 146.866, -19.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071626, "decimalLat": -27.544731 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057951, "decimalLat": -27.545579 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058335, "decimalLat": -27.547074 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.834431, "decimalLat": -26.367642 }, "geometry": { "type": "Point", "coordinates": [ 151.834, -26.368 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.566863, "decimalLat": -37.088058 }, "geometry": { "type": "Point", "coordinates": [ 145.567, -37.088 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091291, "decimalLat": -27.527339 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.865733, "decimalLat": -28.211503 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.212 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070206, "decimalLat": -27.223822 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.224 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106688, "decimalLat": -27.508378 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.907236, "decimalLat": -37.639534 }, "geometry": { "type": "Point", "coordinates": [ 143.907, -37.64 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.816283, "decimalLat": -27.818138 }, "geometry": { "type": "Point", "coordinates": [ 152.816, -27.818 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249353, "decimalLat": -27.496289 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729269, "decimalLat": -34.88977 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.204215, "decimalLat": -26.143162 }, "geometry": { "type": "Point", "coordinates": [ 152.204, -26.143 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068194, "decimalLat": -27.546205 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822097, "decimalLat": -34.101605 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.312542, "decimalLat": -38.384725 }, "geometry": { "type": "Point", "coordinates": [ 145.313, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091969, "decimalLat": -27.525363 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.728333, "decimalLat": -34.889865 }, "geometry": { "type": "Point", "coordinates": [ 138.728, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163956, "decimalLat": -38.67153 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.247809, "decimalLat": -27.503452 }, "geometry": { "type": "Point", "coordinates": [ 152.248, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.450049, "decimalLat": -28.094804 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395921, "decimalLat": -28.275296 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.275 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091523, "decimalLat": -27.526729 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703914, "decimalLat": -34.902938 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103494, "decimalLat": -27.530119 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108514, "decimalLat": -27.52731 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080947, "decimalLat": -27.508805 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.667322, "decimalLat": -35.017321 }, "geometry": { "type": "Point", "coordinates": [ 138.667, -35.017 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086291, "decimalLat": -27.510338 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08312, "decimalLat": -27.511637 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.543546, "decimalLat": -37.289749 }, "geometry": { "type": "Point", "coordinates": [ 143.544, -37.29 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091607, "decimalLat": -27.527214 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103264, "decimalLat": -27.528957 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078637, "decimalLat": -27.513625 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059502, "decimalLat": -27.551602 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.620041, "decimalLat": -25.629911 }, "geometry": { "type": "Point", "coordinates": [ 151.62, -25.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.124308, "decimalLat": -35.984451 }, "geometry": { "type": "Point", "coordinates": [ 137.124, -35.984 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.358486, "decimalLat": -38.318183 }, "geometry": { "type": "Point", "coordinates": [ 142.358, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.073806, "decimalLat": -30.886345 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.406974, "decimalLat": -38.734878 }, "geometry": { "type": "Point", "coordinates": [ 143.407, -38.735 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377351, "decimalLat": -28.253871 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111227, "decimalLat": -27.527104 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.252033, "decimalLat": -37.817972 }, "geometry": { "type": "Point", "coordinates": [ 144.252, -37.818 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.859492, "decimalLat": -38.67148 }, "geometry": { "type": "Point", "coordinates": [ 143.859, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163956, "decimalLat": -38.67153 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092318, "decimalLat": -27.525742 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057478, "decimalLat": -27.550953 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.177427, "decimalLat": -37.304957 }, "geometry": { "type": "Point", "coordinates": [ 144.177, -37.305 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.065722, "decimalLat": -27.280765 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -27.281 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.585259, "decimalLat": -37.797289 }, "geometry": { "type": "Point", "coordinates": [ 145.585, -37.797 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106758, "decimalLat": -27.508617 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.806022, "decimalLat": -26.446494 }, "geometry": { "type": "Point", "coordinates": [ 151.806, -26.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111953, "decimalLat": -27.527833 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.73536, "decimalLat": -36.736237 }, "geometry": { "type": "Point", "coordinates": [ 145.735, -36.736 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.548825, "decimalLat": -34.747717 }, "geometry": { "type": "Point", "coordinates": [ 146.549, -34.748 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110998, "decimalLat": -27.529936 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377043, "decimalLat": -28.254443 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.879942, "decimalLat": -37.643427 }, "geometry": { "type": "Point", "coordinates": [ 143.88, -37.643 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093087, "decimalLat": -27.526099 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.26822, "decimalLat": -37.214358 }, "geometry": { "type": "Point", "coordinates": [ 148.268, -37.214 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.360512, "decimalLat": -38.31934 }, "geometry": { "type": "Point", "coordinates": [ 142.361, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072732, "decimalLat": -27.543254 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.052811, "decimalLat": -33.19203 }, "geometry": { "type": "Point", "coordinates": [ 151.053, -33.192 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.281382, "decimalLat": -38.666415 }, "geometry": { "type": "Point", "coordinates": [ 146.281, -38.666 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.693324, "decimalLat": -35.28587 }, "geometry": { "type": "Point", "coordinates": [ 138.693, -35.286 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.146636, "decimalLat": -37.808604 }, "geometry": { "type": "Point", "coordinates": [ 144.147, -37.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053787, "decimalLat": -27.550829 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084231, "decimalLat": -27.511737 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103621, "decimalLat": -27.529619 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234306, "decimalLat": -27.500395 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.089661, "decimalLat": -33.078389 }, "geometry": { "type": "Point", "coordinates": [ 151.09, -33.078 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.376328, "decimalLat": -37.585842 }, "geometry": { "type": "Point", "coordinates": [ 144.376, -37.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.456078, "decimalLat": -27.411218 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -27.411 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.872178, "decimalLat": -19.123236 }, "geometry": { "type": "Point", "coordinates": [ 146.872, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.027789, "decimalLat": -38.347805 }, "geometry": { "type": "Point", "coordinates": [ 146.028, -38.348 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.74227, "decimalLat": -26.3624 }, "geometry": { "type": "Point", "coordinates": [ 151.742, -26.362 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060127, "decimalLat": -27.549822 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.872147, "decimalLat": -19.123211 }, "geometry": { "type": "Point", "coordinates": [ 146.872, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.522538, "decimalLat": -36.883062 }, "geometry": { "type": "Point", "coordinates": [ 145.523, -36.883 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.680319, "decimalLat": -34.969705 }, "geometry": { "type": "Point", "coordinates": [ 138.68, -34.97 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.59221, "decimalLat": -34.770827 }, "geometry": { "type": "Point", "coordinates": [ 146.592, -34.771 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 143.40534, "decimalLat": -18.810963 }, "geometry": { "type": "Point", "coordinates": [ 143.405, -18.811 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.484852, "decimalLat": -37.792898 }, "geometry": { "type": "Point", "coordinates": [ 141.485, -37.793 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109707, "decimalLat": -27.528815 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164033, "decimalLat": -38.67129 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.855835, "decimalLat": -19.128619 }, "geometry": { "type": "Point", "coordinates": [ 146.856, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601207, "decimalLat": -29.870319 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -29.87 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10356, "decimalLat": -27.529449 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093056, "decimalLat": -27.524307 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722723, "decimalLat": -34.889559 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.883856, "decimalLat": -37.587254 }, "geometry": { "type": "Point", "coordinates": [ 143.884, -37.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059077, "decimalLat": -27.547138 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111191, "decimalLat": -27.527204 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058585, "decimalLat": -27.557142 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.557 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.246314, "decimalLat": -33.169133 }, "geometry": { "type": "Point", "coordinates": [ 151.246, -33.169 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091755, "decimalLat": -27.526924 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.512682, "decimalLat": -38.832721 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.920852, "decimalLat": -27.134933 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -27.135 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911666, "decimalLat": -31.458043 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.862643, "decimalLat": -26.522573 }, "geometry": { "type": "Point", "coordinates": [ 151.863, -26.523 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.127815, "decimalLat": -27.581053 }, "geometry": { "type": "Point", "coordinates": [ 153.128, -27.581 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107773, "decimalLat": -27.527011 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.660657, "decimalLat": -35.144977 }, "geometry": { "type": "Point", "coordinates": [ 138.661, -35.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074639, "decimalLat": -27.358343 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111781, "decimalLat": -27.528377 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105754, "decimalLat": -27.529393 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.161649, "decimalLat": -28.874057 }, "geometry": { "type": "Point", "coordinates": [ 153.162, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.134356, "decimalLat": -38.178782 }, "geometry": { "type": "Point", "coordinates": [ 145.134, -38.179 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.078339, "decimalLat": -27.506011 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059113, "decimalLat": -27.544388 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.641168, "decimalLat": -35.005356 }, "geometry": { "type": "Point", "coordinates": [ 138.641, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110479, "decimalLat": -27.527008 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.709864, "decimalLat": -35.03557 }, "geometry": { "type": "Point", "coordinates": [ 138.71, -35.036 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.825648, "decimalLat": -26.712819 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -26.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.940341, "decimalLat": -27.472827 }, "geometry": { "type": "Point", "coordinates": [ 151.94, -27.473 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106414, "decimalLat": -27.52928 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372843, "decimalLat": -27.909659 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.91 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112721, "decimalLat": -27.528288 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090378, "decimalLat": -27.526702 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107248, "decimalLat": -27.527461 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.134139, "decimalLat": -27.56522 }, "geometry": { "type": "Point", "coordinates": [ 153.134, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057848, "decimalLat": -27.551863 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40206, "decimalLat": -28.26017 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.843129, "decimalLat": -26.539756 }, "geometry": { "type": "Point", "coordinates": [ 151.843, -26.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108971, "decimalLat": -27.526812 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.052764, "decimalLat": -33.1918 }, "geometry": { "type": "Point", "coordinates": [ 151.053, -33.192 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109755, "decimalLat": -27.52953 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0719, "decimalLat": -27.544385 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113737, "decimalLat": -27.528284 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438689, "decimalLat": -27.40144 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.990827, "decimalLat": -27.823371 }, "geometry": { "type": "Point", "coordinates": [ 152.991, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.29715, "decimalLat": -38.383331 }, "geometry": { "type": "Point", "coordinates": [ 145.297, -38.383 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.301047, "decimalLat": -27.979639 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -27.98 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.094986, "decimalLat": -33.076528 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07258, "decimalLat": -27.543503 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.920662, "decimalLat": -38.058367 }, "geometry": { "type": "Point", "coordinates": [ 141.921, -38.058 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109651, "decimalLat": -27.528828 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.110336, "decimalLat": -27.566487 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399688, "decimalLat": -27.497803 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.707989, "decimalLat": -34.906222 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -34.906 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.493928, "decimalLat": -37.714038 }, "geometry": { "type": "Point", "coordinates": [ 144.494, -37.714 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.515157, "decimalLat": -38.83569 }, "geometry": { "type": "Point", "coordinates": [ 143.515, -38.836 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055879, "decimalLat": -27.550786 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.077086, "decimalLat": -27.542983 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000892, "decimalLat": -27.284473 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376683, "decimalLat": -28.252932 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092268, "decimalLat": -27.528087 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.529433, "decimalLat": -27.720972 }, "geometry": { "type": "Point", "coordinates": [ 151.529, -27.721 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.63851, "decimalLat": -35.00608 }, "geometry": { "type": "Point", "coordinates": [ 138.639, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.180105, "decimalLat": -27.490427 }, "geometry": { "type": "Point", "coordinates": [ 153.18, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.51358, "decimalLat": -38.833508 }, "geometry": { "type": "Point", "coordinates": [ 143.514, -38.834 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.825484, "decimalLat": -26.246729 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -26.247 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103673, "decimalLat": -27.529833 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103793, "decimalLat": -27.529666 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722043, "decimalLat": -34.889956 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.149343, "decimalLat": -38.03313 }, "geometry": { "type": "Point", "coordinates": [ 141.149, -38.033 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.54718, "decimalLat": -37.49709 }, "geometry": { "type": "Point", "coordinates": [ 144.547, -37.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086747, "decimalLat": -27.510851 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722432, "decimalLat": -34.892657 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.252683, "decimalLat": -37.817902 }, "geometry": { "type": "Point", "coordinates": [ 144.253, -37.818 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.884054, "decimalLat": -37.637331 }, "geometry": { "type": "Point", "coordinates": [ 143.884, -37.637 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164483, "decimalLat": -38.671619 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260975, "decimalLat": -27.523092 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.523 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081609, "decimalLat": -27.513952 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.898742, "decimalLat": -27.652522 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -27.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092055, "decimalLat": -27.525754 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.044695, "decimalLat": -27.256186 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.256 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.963846, "decimalLat": -27.276959 }, "geometry": { "type": "Point", "coordinates": [ 152.964, -27.277 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400955, "decimalLat": -28.256191 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.481831, "decimalLat": -38.800562 }, "geometry": { "type": "Point", "coordinates": [ 143.482, -38.801 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082792, "decimalLat": -27.510694 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.006196, "decimalLat": -26.669634 }, "geometry": { "type": "Point", "coordinates": [ 152.006, -26.67 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.038418, "decimalLat": -27.547845 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.434766, "decimalLat": -27.48784 }, "geometry": { "type": "Point", "coordinates": [ 152.435, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105025, "decimalLat": -27.529907 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.612747, "decimalLat": -27.34005 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -27.34 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111149, "decimalLat": -27.528246 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072242, "decimalLat": -27.54284 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.329187, "decimalLat": -35.875298 }, "geometry": { "type": "Point", "coordinates": [ 145.329, -35.875 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716674, "decimalLat": -34.891973 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057439, "decimalLat": -27.55107 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09149, "decimalLat": -27.527311 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.731278, "decimalLat": -37.92355 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05498, "decimalLat": -27.539412 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070692, "decimalLat": -27.509472 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.414064, "decimalLat": -36.872553 }, "geometry": { "type": "Point", "coordinates": [ 145.414, -36.873 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093111, "decimalLat": -27.527985 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.500183, "decimalLat": -32.948875 }, "geometry": { "type": "Point", "coordinates": [ 151.5, -32.949 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.897103, "decimalLat": -37.57555 }, "geometry": { "type": "Point", "coordinates": [ 143.897, -37.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.514025, "decimalLat": -35.134689 }, "geometry": { "type": "Point", "coordinates": [ 138.514, -35.135 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993429, "decimalLat": -27.823055 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091581, "decimalLat": -27.52717 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.665875, "decimalLat": -34.865453 }, "geometry": { "type": "Point", "coordinates": [ 138.666, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656205, "decimalLat": -34.865605 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -34.866 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.166564, "decimalLat": -27.584892 }, "geometry": { "type": "Point", "coordinates": [ 153.167, -27.585 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730534, "decimalLat": -34.827112 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.827 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.264297, "decimalLat": -37.222183 }, "geometry": { "type": "Point", "coordinates": [ 148.264, -37.222 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.583477, "decimalLat": -34.762738 }, "geometry": { "type": "Point", "coordinates": [ 146.583, -34.763 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.24875, "decimalLat": -37.81071 }, "geometry": { "type": "Point", "coordinates": [ 144.249, -37.811 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048937, "decimalLat": -27.52783 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.869355, "decimalLat": -27.330272 }, "geometry": { "type": "Point", "coordinates": [ 151.869, -27.33 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.103486, "decimalLat": -27.570587 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -27.571 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111302, "decimalLat": -27.529824 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.067233, "decimalLat": -27.508003 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.899292, "decimalLat": -32.081292 }, "geometry": { "type": "Point", "coordinates": [ 151.899, -32.081 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.641098, "decimalLat": -38.326985 }, "geometry": { "type": "Point", "coordinates": [ 142.641, -38.327 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108267, "decimalLat": -27.527275 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376931, "decimalLat": -28.254108 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.542887, "decimalLat": -38.843411 }, "geometry": { "type": "Point", "coordinates": [ 143.543, -38.843 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.264128, "decimalLat": -35.786181 }, "geometry": { "type": "Point", "coordinates": [ 137.264, -35.786 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07446, "decimalLat": -27.546861 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092869, "decimalLat": -27.524636 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.540704, "decimalLat": -38.52397 }, "geometry": { "type": "Point", "coordinates": [ 143.541, -38.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053349, "decimalLat": -27.54857 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.049287, "decimalLat": -27.267047 }, "geometry": { "type": "Point", "coordinates": [ 152.049, -27.267 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991687, "decimalLat": -27.822602 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09057, "decimalLat": -27.52676 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984603, "decimalLat": -36.548388 }, "geometry": { "type": "Point", "coordinates": [ 149.985, -36.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629046, "decimalLat": -28.639428 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.639 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.798844, "decimalLat": -34.212301 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.212 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.048313, "decimalLat": -27.525612 }, "geometry": { "type": "Point", "coordinates": [ 153.048, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.223174, "decimalLat": -38.389477 }, "geometry": { "type": "Point", "coordinates": [ 142.223, -38.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.468718, "decimalLat": -27.92762 }, "geometry": { "type": "Point", "coordinates": [ 152.469, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092749, "decimalLat": -27.525359 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.045941, "decimalLat": -38.265417 }, "geometry": { "type": "Point", "coordinates": [ 145.046, -38.265 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.856714, "decimalLat": -26.520612 }, "geometry": { "type": "Point", "coordinates": [ 151.857, -26.521 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091699, "decimalLat": -27.527026 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.74138, "decimalLat": -34.83909 }, "geometry": { "type": "Point", "coordinates": [ 138.741, -34.839 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.14395, "decimalLat": -27.715645 }, "geometry": { "type": "Point", "coordinates": [ 153.144, -27.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.249556, "decimalLat": -37.854663 }, "geometry": { "type": "Point", "coordinates": [ 144.25, -37.855 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716007, "decimalLat": -34.890964 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.051044, "decimalLat": -27.546065 }, "geometry": { "type": "Point", "coordinates": [ 153.051, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09299, "decimalLat": -27.527734 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.376199, "decimalLat": -27.920167 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108925, "decimalLat": -27.527232 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106595, "decimalLat": -27.529103 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.660984, "decimalLat": -34.86482 }, "geometry": { "type": "Point", "coordinates": [ 138.661, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.582017, "decimalLat": -28.918442 }, "geometry": { "type": "Point", "coordinates": [ 151.582, -28.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164183, "decimalLat": -38.671258 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.697044, "decimalLat": -34.95866 }, "geometry": { "type": "Point", "coordinates": [ 138.697, -34.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.681031, "decimalLat": -34.9703 }, "geometry": { "type": "Point", "coordinates": [ 138.681, -34.97 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092109, "decimalLat": -27.524599 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058249, "decimalLat": -27.551335 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090531, "decimalLat": -27.526926 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.402991, "decimalLat": -27.493653 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05462, "decimalLat": -27.543768 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090995, "decimalLat": -27.526459 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702928, "decimalLat": -34.900742 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.901 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104488, "decimalLat": -27.544344 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.669786, "decimalLat": -35.085611 }, "geometry": { "type": "Point", "coordinates": [ 138.67, -35.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.528966, "decimalLat": -27.721471 }, "geometry": { "type": "Point", "coordinates": [ 151.529, -27.721 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.03386, "decimalLat": -27.530295 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069795, "decimalLat": -27.510478 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.647048, "decimalLat": -27.317321 }, "geometry": { "type": "Point", "coordinates": [ 152.647, -27.317 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090823, "decimalLat": -27.526884 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.63815, "decimalLat": -34.971276 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.737581, "decimalLat": -38.483007 }, "geometry": { "type": "Point", "coordinates": [ 143.738, -38.483 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.094986, "decimalLat": -33.076522 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093143, "decimalLat": -27.526733 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.128812, "decimalLat": -27.590987 }, "geometry": { "type": "Point", "coordinates": [ 153.129, -27.591 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.812743, "decimalLat": -27.291624 }, "geometry": { "type": "Point", "coordinates": [ 151.813, -27.292 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103133, "decimalLat": -27.529523 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.342654, "decimalLat": -37.065515 }, "geometry": { "type": "Point", "coordinates": [ 145.343, -37.066 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092494, "decimalLat": -27.528289 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.669678, "decimalLat": -37.952922 }, "geometry": { "type": "Point", "coordinates": [ 147.67, -37.953 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108969, "decimalLat": -27.529042 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.278428, "decimalLat": -36.172597 }, "geometry": { "type": "Point", "coordinates": [ 149.278, -36.173 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.65069, "decimalLat": -38.775539 }, "geometry": { "type": "Point", "coordinates": [ 143.651, -38.776 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.420837, "decimalLat": -38.276245 }, "geometry": { "type": "Point", "coordinates": [ 141.421, -38.276 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.605921, "decimalLat": -38.762335 }, "geometry": { "type": "Point", "coordinates": [ 143.606, -38.762 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.136536, "decimalLat": -27.901993 }, "geometry": { "type": "Point", "coordinates": [ 153.137, -27.902 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657912, "decimalLat": -34.868707 }, "geometry": { "type": "Point", "coordinates": [ 138.658, -34.869 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.521026, "decimalLat": -30.520709 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.522107, "decimalLat": -37.023178 }, "geometry": { "type": "Point", "coordinates": [ 145.522, -37.023 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.468858, "decimalLat": -27.70346 }, "geometry": { "type": "Point", "coordinates": [ 152.469, -27.703 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.063964, "decimalLat": -27.261855 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -27.262 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052151, "decimalLat": -27.548505 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107258, "decimalLat": -27.527371 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163777, "decimalLat": -38.671279 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.100261, "decimalLat": -27.565643 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070318, "decimalLat": -27.527477 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.925705, "decimalLat": -27.575974 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388491, "decimalLat": -38.354354 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.47725, "decimalLat": -26.930133 }, "geometry": { "type": "Point", "coordinates": [ 152.477, -26.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057287, "decimalLat": -27.546045 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070494, "decimalLat": -27.54313 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092242, "decimalLat": -27.527469 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.607336, "decimalLat": -28.164585 }, "geometry": { "type": "Point", "coordinates": [ 152.607, -28.165 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068655, "decimalLat": -27.518283 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.518 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.094222, "decimalLat": -33.073514 }, "geometry": { "type": "Point", "coordinates": [ 151.094, -33.074 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.888077, "decimalLat": -37.553758 }, "geometry": { "type": "Point", "coordinates": [ 143.888, -37.554 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090344, "decimalLat": -27.526892 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.546338, "decimalLat": -37.504071 }, "geometry": { "type": "Point", "coordinates": [ 144.546, -37.504 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.843046, "decimalLat": -28.092227 }, "geometry": { "type": "Point", "coordinates": [ 152.843, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.361617, "decimalLat": -27.40755 }, "geometry": { "type": "Point", "coordinates": [ 152.362, -27.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.890604, "decimalLat": -37.584539 }, "geometry": { "type": "Point", "coordinates": [ 143.891, -37.585 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091462, "decimalLat": -27.526779 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.724615, "decimalLat": -34.891049 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.993737, "decimalLat": -30.56026 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -30.56 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.899209, "decimalLat": -37.644971 }, "geometry": { "type": "Point", "coordinates": [ 143.899, -37.645 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092991, "decimalLat": -27.52487 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372663, "decimalLat": -27.91193 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.95627, "decimalLat": -27.48443 }, "geometry": { "type": "Point", "coordinates": [ 152.956, -27.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.695246, "decimalLat": -34.957451 }, "geometry": { "type": "Point", "coordinates": [ 138.695, -34.957 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090782, "decimalLat": -27.526093 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.274379, "decimalLat": -38.139963 }, "geometry": { "type": "Point", "coordinates": [ 145.274, -38.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084242, "decimalLat": -27.511158 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376917, "decimalLat": -28.253975 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.26857, "decimalLat": -37.187538 }, "geometry": { "type": "Point", "coordinates": [ 148.269, -37.188 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734588, "decimalLat": -34.889011 }, "geometry": { "type": "Point", "coordinates": [ 138.735, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105242, "decimalLat": -27.529493 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.700305, "decimalLat": -34.962008 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.962 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.8094, "decimalLat": -26.363365 }, "geometry": { "type": "Point", "coordinates": [ 151.809, -26.363 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895396, "decimalLat": -27.600052 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090585, "decimalLat": -27.526481 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.828786, "decimalLat": -27.429168 }, "geometry": { "type": "Point", "coordinates": [ 151.829, -27.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056564, "decimalLat": -27.544328 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.97277, "decimalLat": -26.16335 }, "geometry": { "type": "Point", "coordinates": [ 151.973, -26.163 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.089221, "decimalLat": -27.220608 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -27.221 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.450138, "decimalLat": -28.093339 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731437, "decimalLat": -34.890895 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372062, "decimalLat": -27.909745 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.91 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.895829, "decimalLat": -37.615254 }, "geometry": { "type": "Point", "coordinates": [ 143.896, -37.615 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376938, "decimalLat": -28.253932 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058642, "decimalLat": -27.54838 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.158727, "decimalLat": -27.656238 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -27.656 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095367, "decimalLat": -33.076633 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.727937, "decimalLat": -38.62807 }, "geometry": { "type": "Point", "coordinates": [ 145.728, -38.628 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.775102, "decimalLat": -38.203258 }, "geometry": { "type": "Point", "coordinates": [ 141.775, -38.203 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.16815, "decimalLat": -37.932528 }, "geometry": { "type": "Point", "coordinates": [ 144.168, -37.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057021, "decimalLat": -27.551036 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.663422, "decimalLat": -27.673583 }, "geometry": { "type": "Point", "coordinates": [ 151.663, -27.674 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.612458, "decimalLat": -35.671986 }, "geometry": { "type": "Point", "coordinates": [ 137.612, -35.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.044208, "decimalLat": -27.257551 }, "geometry": { "type": "Point", "coordinates": [ 152.044, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248024, "decimalLat": -27.490129 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073508, "decimalLat": -27.545712 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.240719, "decimalLat": -30.99372 }, "geometry": { "type": "Point", "coordinates": [ 150.241, -30.994 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.525754, "decimalLat": -27.633133 }, "geometry": { "type": "Point", "coordinates": [ 151.526, -27.633 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.617578, "decimalLat": -36.962008 }, "geometry": { "type": "Point", "coordinates": [ 145.618, -36.962 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70799, "decimalLat": -34.906189 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -34.906 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057804, "decimalLat": -27.546096 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.634669, "decimalLat": -38.786777 }, "geometry": { "type": "Point", "coordinates": [ 143.635, -38.787 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.858142, "decimalLat": -38.666596 }, "geometry": { "type": "Point", "coordinates": [ 143.858, -38.667 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091977, "decimalLat": -27.525909 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090747, "decimalLat": -27.525821 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601584, "decimalLat": -29.866745 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -29.867 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104953, "decimalLat": -27.529788 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10909, "decimalLat": -27.529213 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.176575, "decimalLat": -38.392422 }, "geometry": { "type": "Point", "coordinates": [ 145.177, -38.392 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.632349, "decimalLat": -27.436739 }, "geometry": { "type": "Point", "coordinates": [ 152.632, -27.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10448, "decimalLat": -27.529517 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.657546, "decimalLat": -27.642924 }, "geometry": { "type": "Point", "coordinates": [ 151.658, -27.643 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.403241, "decimalLat": -27.458365 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -27.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059535, "decimalLat": -27.551377 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.536821, "decimalLat": -27.476824 }, "geometry": { "type": "Point", "coordinates": [ 152.537, -27.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071969, "decimalLat": -27.5449 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.822525, "decimalLat": -26.498262 }, "geometry": { "type": "Point", "coordinates": [ 151.823, -26.498 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057542, "decimalLat": -27.551415 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070308, "decimalLat": -27.50958 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.512682, "decimalLat": -38.832721 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.833 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.421773, "decimalLat": -38.552097 }, "geometry": { "type": "Point", "coordinates": [ 143.422, -38.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.727403, "decimalLat": -37.924322 }, "geometry": { "type": "Point", "coordinates": [ 147.727, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363778, "decimalLat": -38.318585 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.162206, "decimalLat": -28.875804 }, "geometry": { "type": "Point", "coordinates": [ 153.162, -28.876 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.897078, "decimalLat": -28.203106 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -28.203 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.123961, "decimalLat": -30.293863 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.294 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.392916, "decimalLat": -38.254199 }, "geometry": { "type": "Point", "coordinates": [ 141.393, -38.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.432787, "decimalLat": -28.13713 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401439, "decimalLat": -28.256302 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.021266, "decimalLat": -26.379617 }, "geometry": { "type": "Point", "coordinates": [ 153.021, -26.38 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.465347, "decimalLat": -35.72798 }, "geometry": { "type": "Point", "coordinates": [ 137.465, -35.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063466, "decimalLat": -27.692142 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.692 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112416, "decimalLat": -27.529471 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091606, "decimalLat": -27.527108 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103826, "decimalLat": -27.529658 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.518926, "decimalLat": -30.520925 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.644073, "decimalLat": -37.909899 }, "geometry": { "type": "Point", "coordinates": [ 147.644, -37.91 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72241, "decimalLat": -34.889813 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092249, "decimalLat": -27.525582 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110008, "decimalLat": -27.52706 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091741, "decimalLat": -27.527171 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.873837, "decimalLat": -19.122166 }, "geometry": { "type": "Point", "coordinates": [ 146.874, -19.122 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.212136, "decimalLat": -27.932636 }, "geometry": { "type": "Point", "coordinates": [ 153.212, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.094192, "decimalLat": -37.624122 }, "geometry": { "type": "Point", "coordinates": [ 144.094, -37.624 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.791881, "decimalLat": -26.136287 }, "geometry": { "type": "Point", "coordinates": [ 151.792, -26.136 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085148, "decimalLat": -27.510498 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07542, "decimalLat": -27.508889 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092073, "decimalLat": -27.524223 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713072, "decimalLat": -34.89188 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.513058, "decimalLat": -38.833725 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.834 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.791881, "decimalLat": -26.136287 }, "geometry": { "type": "Point", "coordinates": [ 151.792, -26.136 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090421, "decimalLat": -27.526932 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091747, "decimalLat": -27.526914 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.637465, "decimalLat": -25.618346 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -25.618 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.641967, "decimalLat": -28.14442 }, "geometry": { "type": "Point", "coordinates": [ 152.642, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705663, "decimalLat": -34.903189 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092323, "decimalLat": -27.528112 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.81242, "decimalLat": -26.597663 }, "geometry": { "type": "Point", "coordinates": [ 151.812, -26.598 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073192, "decimalLat": -27.545894 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.363592, "decimalLat": -38.319278 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 150.697266, "decimalLat": -24.99403 }, "geometry": { "type": "Point", "coordinates": [ 150.697, -24.994 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.160433, "decimalLat": -27.659889 }, "geometry": { "type": "Point", "coordinates": [ 153.16, -27.66 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103434, "decimalLat": -27.530146 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08237, "decimalLat": -27.70093 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.559595, "decimalLat": -27.144396 }, "geometry": { "type": "Point", "coordinates": [ 152.56, -27.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394965, "decimalLat": -28.272918 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.273 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091492, "decimalLat": -27.527303 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.996795, "decimalLat": -37.689233 }, "geometry": { "type": "Point", "coordinates": [ 143.997, -37.689 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06558, "decimalLat": -27.540475 }, "geometry": { "type": "Point", "coordinates": [ 153.066, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.426714, "decimalLat": -28.07362 }, "geometry": { "type": "Point", "coordinates": [ 152.427, -28.074 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.780215, "decimalLat": -34.917415 }, "geometry": { "type": "Point", "coordinates": [ 138.78, -34.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.189445, "decimalLat": -37.859222 }, "geometry": { "type": "Point", "coordinates": [ 144.189, -37.859 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.871187, "decimalLat": -19.1228 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.356434, "decimalLat": -38.333708 }, "geometry": { "type": "Point", "coordinates": [ 142.356, -38.334 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.996719, "decimalLat": -27.304157 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -27.304 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905401, "decimalLat": -31.436887 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.296548, "decimalLat": -27.568552 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.596647, "decimalLat": -38.350686 }, "geometry": { "type": "Point", "coordinates": [ 141.597, -38.351 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.658301, "decimalLat": -35.004205 }, "geometry": { "type": "Point", "coordinates": [ 138.658, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091924, "decimalLat": -27.527106 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.901126, "decimalLat": -37.641368 }, "geometry": { "type": "Point", "coordinates": [ 143.901, -37.641 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092989, "decimalLat": -27.524551 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092342, "decimalLat": -27.528039 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101636, "decimalLat": -27.734145 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -27.734 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870742, "decimalLat": -19.124108 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.124 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.881223, "decimalLat": -26.263554 }, "geometry": { "type": "Point", "coordinates": [ 151.881, -26.264 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103545, "decimalLat": -27.530052 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.801932, "decimalLat": -27.556722 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -27.557 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403345, "decimalLat": -27.493221 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.528966, "decimalLat": -27.721471 }, "geometry": { "type": "Point", "coordinates": [ 151.529, -27.721 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111361, "decimalLat": -27.52804 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.732237, "decimalLat": -34.880853 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.881 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07226, "decimalLat": -27.545182 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.38992, "decimalLat": -38.356583 }, "geometry": { "type": "Point", "coordinates": [ 146.39, -38.357 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073715, "decimalLat": -27.540247 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.487891, "decimalLat": -38.799429 }, "geometry": { "type": "Point", "coordinates": [ 143.488, -38.799 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722435, "decimalLat": -34.89085 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.033585, "decimalLat": -27.528137 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.881805, "decimalLat": -35.067253 }, "geometry": { "type": "Point", "coordinates": [ 138.882, -35.067 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283375, "decimalLat": -27.5342 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091963, "decimalLat": -27.525092 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.691468, "decimalLat": -34.904467 }, "geometry": { "type": "Point", "coordinates": [ 138.691, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092271, "decimalLat": -27.527727 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.120925, "decimalLat": -38.329054 }, "geometry": { "type": "Point", "coordinates": [ 145.121, -38.329 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.553252, "decimalLat": -35.30964 }, "geometry": { "type": "Point", "coordinates": [ 138.553, -35.31 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703557, "decimalLat": -34.90107 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -34.901 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092866, "decimalLat": -27.528462 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.64102, "decimalLat": -30.489953 }, "geometry": { "type": "Point", "coordinates": [ 151.641, -30.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39514, "decimalLat": -28.272625 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.273 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.830527, "decimalLat": -29.640949 }, "geometry": { "type": "Point", "coordinates": [ 152.831, -29.641 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.959021, "decimalLat": -35.954708 }, "geometry": { "type": "Point", "coordinates": [ 144.959, -35.955 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112007, "decimalLat": -27.529413 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.062604, "decimalLat": -27.348609 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -27.349 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.60211, "decimalLat": -38.349196 }, "geometry": { "type": "Point", "coordinates": [ 141.602, -38.349 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.756112, "decimalLat": -26.128936 }, "geometry": { "type": "Point", "coordinates": [ 151.756, -26.129 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057464, "decimalLat": -27.550923 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37262, "decimalLat": -27.914178 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.609375, "decimalLat": -27.396357 }, "geometry": { "type": "Point", "coordinates": [ 152.609, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08485, "decimalLat": -27.506762 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092732, "decimalLat": -27.525601 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.049614, "decimalLat": -27.527485 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.59237, "decimalLat": -35.136206 }, "geometry": { "type": "Point", "coordinates": [ 138.592, -35.136 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093237, "decimalLat": -27.526319 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0908, "decimalLat": -27.527244 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.130342, "decimalLat": -27.533395 }, "geometry": { "type": "Point", "coordinates": [ 153.13, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401003, "decimalLat": -28.25632 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.74231, "decimalLat": -37.912196 }, "geometry": { "type": "Point", "coordinates": [ 147.742, -37.912 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.313393, "decimalLat": -38.379762 }, "geometry": { "type": "Point", "coordinates": [ 145.313, -38.38 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090721, "decimalLat": -27.526512 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090952, "decimalLat": -27.526876 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721922, "decimalLat": -34.890643 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.191853, "decimalLat": -27.703261 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.703 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105289, "decimalLat": -27.529829 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731127, "decimalLat": -34.889583 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60142, "decimalLat": -29.870458 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -29.87 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.513067, "decimalLat": -38.833383 }, "geometry": { "type": "Point", "coordinates": [ 143.513, -38.833 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091382, "decimalLat": -27.527173 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.500252, "decimalLat": -37.233869 }, "geometry": { "type": "Point", "coordinates": [ 144.5, -37.234 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092724, "decimalLat": -27.52857 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 147.66635, "decimalLat": -22.723545 }, "geometry": { "type": "Point", "coordinates": [ 147.666, -22.724 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372973, "decimalLat": -27.914132 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092234, "decimalLat": -27.525696 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.179592, "decimalLat": -37.914578 }, "geometry": { "type": "Point", "coordinates": [ 144.18, -37.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437572, "decimalLat": -27.400707 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.727225, "decimalLat": -37.919864 }, "geometry": { "type": "Point", "coordinates": [ 147.727, -37.92 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086342, "decimalLat": -27.510493 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.227102, "decimalLat": -27.298696 }, "geometry": { "type": "Point", "coordinates": [ 152.227, -27.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.165029, "decimalLat": -38.671183 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105563, "decimalLat": -27.531371 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092922, "decimalLat": -27.528374 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729491, "decimalLat": -34.890088 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.730667, "decimalLat": -37.924112 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054764, "decimalLat": -27.552027 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.631001, "decimalLat": -28.06398 }, "geometry": { "type": "Point", "coordinates": [ 152.631, -28.064 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072493, "decimalLat": -27.549121 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060108, "decimalLat": -27.550511 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059364, "decimalLat": -27.548987 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870235, "decimalLat": -19.123331 }, "geometry": { "type": "Point", "coordinates": [ 146.87, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108928, "decimalLat": -27.527021 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.882349, "decimalLat": -37.620373 }, "geometry": { "type": "Point", "coordinates": [ 143.882, -37.62 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.924876, "decimalLat": -26.233378 }, "geometry": { "type": "Point", "coordinates": [ 151.925, -26.233 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.160433, "decimalLat": -27.659889 }, "geometry": { "type": "Point", "coordinates": [ 153.16, -27.66 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.652444, "decimalLat": -35.009693 }, "geometry": { "type": "Point", "coordinates": [ 138.652, -35.01 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05821, "decimalLat": -27.547752 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.950715, "decimalLat": -37.648727 }, "geometry": { "type": "Point", "coordinates": [ 143.951, -37.649 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.948253, "decimalLat": -27.611711 }, "geometry": { "type": "Point", "coordinates": [ 151.948, -27.612 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.996671, "decimalLat": -38.827552 }, "geometry": { "type": "Point", "coordinates": [ 145.997, -38.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.078964, "decimalLat": -26.975555 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -26.976 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.377016, "decimalLat": -27.919592 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.884767, "decimalLat": -34.939103 }, "geometry": { "type": "Point", "coordinates": [ 138.885, -34.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.158747, "decimalLat": -27.656247 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -27.656 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376656, "decimalLat": -28.253668 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068353, "decimalLat": -27.544466 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.90698, "decimalLat": -37.748637 }, "geometry": { "type": "Point", "coordinates": [ 143.907, -37.749 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.547762, "decimalLat": -34.752945 }, "geometry": { "type": "Point", "coordinates": [ 146.548, -34.753 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.643989, "decimalLat": -30.501265 }, "geometry": { "type": "Point", "coordinates": [ 151.644, -30.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090479, "decimalLat": -27.52567 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072537, "decimalLat": -27.543771 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052188, "decimalLat": -27.54804 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.716278, "decimalLat": -27.567855 }, "geometry": { "type": "Point", "coordinates": [ 151.716, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091242, "decimalLat": -27.527038 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999706, "decimalLat": -27.284024 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095536, "decimalLat": -33.076164 }, "geometry": { "type": "Point", "coordinates": [ 151.096, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091194, "decimalLat": -27.527065 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.277763, "decimalLat": -37.860302 }, "geometry": { "type": "Point", "coordinates": [ 144.278, -37.86 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.115295, "decimalLat": -27.528928 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.468645, "decimalLat": -26.089237 }, "geometry": { "type": "Point", "coordinates": [ 152.469, -26.089 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090931, "decimalLat": -27.526439 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058092, "decimalLat": -27.546755 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993042, "decimalLat": -27.823855 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091077, "decimalLat": -27.526437 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.707113, "decimalLat": -34.904816 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.905 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.503463, "decimalLat": -27.726817 }, "geometry": { "type": "Point", "coordinates": [ 151.503, -27.727 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.187903, "decimalLat": -27.260687 }, "geometry": { "type": "Point", "coordinates": [ 152.188, -27.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.626688, "decimalLat": -26.497711 }, "geometry": { "type": "Point", "coordinates": [ 152.627, -26.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110072, "decimalLat": -27.527034 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.754464, "decimalLat": -37.90878 }, "geometry": { "type": "Point", "coordinates": [ 147.754, -37.909 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233733, "decimalLat": -27.544765 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102553, "decimalLat": -27.529551 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092762, "decimalLat": -27.526687 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.332948, "decimalLat": -27.982414 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -27.982 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105494, "decimalLat": -27.530949 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729992, "decimalLat": -37.925001 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.611237, "decimalLat": -27.331878 }, "geometry": { "type": "Point", "coordinates": [ 152.611, -27.332 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10731, "decimalLat": -27.527344 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.871078, "decimalLat": -19.123317 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090621, "decimalLat": -27.526828 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.067653, "decimalLat": -27.5591 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.869355, "decimalLat": -19.12535 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.125 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.931412, "decimalLat": -27.577572 }, "geometry": { "type": "Point", "coordinates": [ 152.931, -27.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.521831, "decimalLat": -27.714922 }, "geometry": { "type": "Point", "coordinates": [ 151.522, -27.715 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.60303, "decimalLat": -37.483683 }, "geometry": { "type": "Point", "coordinates": [ 144.603, -37.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058156, "decimalLat": -27.551891 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403182, "decimalLat": -27.49349 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.916594, "decimalLat": -37.653526 }, "geometry": { "type": "Point", "coordinates": [ 143.917, -37.654 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091624, "decimalLat": -27.527216 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.043825, "decimalLat": -27.551197 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722339, "decimalLat": -34.88981 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104373, "decimalLat": -27.531008 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.362756, "decimalLat": -31.920647 }, "geometry": { "type": "Point", "coordinates": [ 152.363, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.724876, "decimalLat": -34.894872 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -34.895 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.75391, "decimalLat": -38.633395 }, "geometry": { "type": "Point", "coordinates": [ 145.754, -38.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.644116, "decimalLat": -35.01031 }, "geometry": { "type": "Point", "coordinates": [ 138.644, -35.01 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.424563, "decimalLat": -27.238264 }, "geometry": { "type": "Point", "coordinates": [ 152.425, -27.238 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71797, "decimalLat": -34.836871 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -34.837 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058255, "decimalLat": -27.551421 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103009, "decimalLat": -27.52719 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.40808, "decimalLat": -37.964795 }, "geometry": { "type": "Point", "coordinates": [ 144.408, -37.965 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.09552, "decimalLat": -37.623992 }, "geometry": { "type": "Point", "coordinates": [ 144.096, -37.624 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.542697, "decimalLat": -32.914195 }, "geometry": { "type": "Point", "coordinates": [ 151.543, -32.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.673291, "decimalLat": -35.015167 }, "geometry": { "type": "Point", "coordinates": [ 138.673, -35.015 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999663, "decimalLat": -27.240863 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.241 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091964, "decimalLat": -27.525371 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.00084, "decimalLat": -27.28444 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.703309, "decimalLat": -27.094113 }, "geometry": { "type": "Point", "coordinates": [ 152.703, -27.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.144227, "decimalLat": -37.810841 }, "geometry": { "type": "Point", "coordinates": [ 144.144, -37.811 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.971344, "decimalLat": -27.611522 }, "geometry": { "type": "Point", "coordinates": [ 151.971, -27.612 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.614483, "decimalLat": -34.907996 }, "geometry": { "type": "Point", "coordinates": [ 138.614, -34.908 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090229, "decimalLat": -27.525427 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.541468, "decimalLat": -38.797562 }, "geometry": { "type": "Point", "coordinates": [ 143.541, -38.798 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.365628, "decimalLat": -37.665922 }, "geometry": { "type": "Point", "coordinates": [ 144.366, -37.666 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.543384, "decimalLat": -27.671893 }, "geometry": { "type": "Point", "coordinates": [ 151.543, -27.672 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083481, "decimalLat": -27.511095 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.125709, "decimalLat": -38.174436 }, "geometry": { "type": "Point", "coordinates": [ 145.126, -38.174 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393002, "decimalLat": -28.269211 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.269 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.207663, "decimalLat": -35.625383 }, "geometry": { "type": "Point", "coordinates": [ 137.208, -35.625 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.049277, "decimalLat": -27.549685 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091539, "decimalLat": -27.52687 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092879, "decimalLat": -27.528295 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091557, "decimalLat": -27.527159 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163925, "decimalLat": -38.671233 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437781, "decimalLat": -27.400683 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110529, "decimalLat": -27.526854 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10453, "decimalLat": -27.530286 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1045, "decimalLat": -27.529619 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.996718, "decimalLat": -38.827734 }, "geometry": { "type": "Point", "coordinates": [ 145.997, -38.828 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.594597, "decimalLat": -37.330039 }, "geometry": { "type": "Point", "coordinates": [ 144.595, -37.33 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.923273, "decimalLat": -38.056492 }, "geometry": { "type": "Point", "coordinates": [ 141.923, -38.056 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.689018, "decimalLat": -34.971709 }, "geometry": { "type": "Point", "coordinates": [ 138.689, -34.972 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092588, "decimalLat": -27.525052 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058972, "decimalLat": -27.548843 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.972115, "decimalLat": -27.609361 }, "geometry": { "type": "Point", "coordinates": [ 151.972, -27.609 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062622, "decimalLat": -27.220637 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.221 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057366, "decimalLat": -27.551304 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.027278, "decimalLat": -30.347312 }, "geometry": { "type": "Point", "coordinates": [ 153.027, -30.347 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.04, "decimalLat": -28.26 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.0703, "decimalLat": -37.636488 }, "geometry": { "type": "Point", "coordinates": [ 144.07, -37.636 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090562, "decimalLat": -27.526042 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.930038, "decimalLat": -27.33117 }, "geometry": { "type": "Point", "coordinates": [ 151.93, -27.331 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.896656, "decimalLat": -37.643236 }, "geometry": { "type": "Point", "coordinates": [ 143.897, -37.643 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092281, "decimalLat": -27.528121 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09244, "decimalLat": -27.527759 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103669, "decimalLat": -27.52927 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376978, "decimalLat": -28.254203 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.901313, "decimalLat": -27.626553 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -27.627 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000913, "decimalLat": -27.284418 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395167, "decimalLat": -28.287966 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.288 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054038, "decimalLat": -26.672734 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -26.673 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868778, "decimalLat": -19.13028 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.13 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.001389, "decimalLat": -27.165289 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -27.165 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092348, "decimalLat": -27.528194 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.122916, "decimalLat": -27.764249 }, "geometry": { "type": "Point", "coordinates": [ 153.123, -27.764 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046151, "decimalLat": -27.257115 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401988, "decimalLat": -28.260476 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093239, "decimalLat": -27.525962 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109457, "decimalLat": -27.529502 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.885798, "decimalLat": -27.635824 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -27.636 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.896765, "decimalLat": -26.712571 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -26.713 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376688, "decimalLat": -28.252999 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.631686, "decimalLat": -38.341307 }, "geometry": { "type": "Point", "coordinates": [ 142.632, -38.341 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.56757, "decimalLat": -34.75654 }, "geometry": { "type": "Point", "coordinates": [ 146.568, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638087, "decimalLat": -34.971114 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057416, "decimalLat": -27.551279 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730279, "decimalLat": -34.890894 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.754464, "decimalLat": -37.90878 }, "geometry": { "type": "Point", "coordinates": [ 147.754, -37.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110124, "decimalLat": -27.528345 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.030818, "decimalLat": -26.388809 }, "geometry": { "type": "Point", "coordinates": [ 153.031, -26.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110785, "decimalLat": -27.527192 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093071, "decimalLat": -27.524292 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.983356, "decimalLat": -38.551688 }, "geometry": { "type": "Point", "coordinates": [ 143.983, -38.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43911, "decimalLat": -27.401261 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108387, "decimalLat": -27.527227 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730103, "decimalLat": -34.856546 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.857 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104419, "decimalLat": -27.529808 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.044786, "decimalLat": -27.257893 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.836122, "decimalLat": -34.067391 }, "geometry": { "type": "Point", "coordinates": [ 150.836, -34.067 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749888, "decimalLat": -26.155079 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074987, "decimalLat": -27.54055 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.579134, "decimalLat": -35.145412 }, "geometry": { "type": "Point", "coordinates": [ 138.579, -35.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109367, "decimalLat": -27.527165 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378362, "decimalLat": -28.255323 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702055, "decimalLat": -34.903038 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.466526, "decimalLat": -31.821874 }, "geometry": { "type": "Point", "coordinates": [ 151.467, -31.822 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.875759, "decimalLat": -27.625673 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -27.626 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.400684, "decimalLat": -27.963018 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -27.963 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.63598, "decimalLat": -35.006829 }, "geometry": { "type": "Point", "coordinates": [ 138.636, -35.007 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.750039, "decimalLat": -26.155358 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090695, "decimalLat": -27.527153 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.090119, "decimalLat": -33.078397 }, "geometry": { "type": "Point", "coordinates": [ 151.09, -33.078 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.613545, "decimalLat": -34.903091 }, "geometry": { "type": "Point", "coordinates": [ 138.614, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.290978, "decimalLat": -37.874355 }, "geometry": { "type": "Point", "coordinates": [ 144.291, -37.874 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.708808, "decimalLat": -36.823054 }, "geometry": { "type": "Point", "coordinates": [ 145.709, -36.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091648, "decimalLat": -27.527225 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.186244, "decimalLat": -27.987414 }, "geometry": { "type": "Point", "coordinates": [ 153.186, -27.987 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.248214, "decimalLat": -27.496295 }, "geometry": { "type": "Point", "coordinates": [ 152.248, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.344861, "decimalLat": -29.776436 }, "geometry": { "type": "Point", "coordinates": [ 151.345, -29.776 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731912, "decimalLat": -34.882767 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.883 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.278844, "decimalLat": -38.380519 }, "geometry": { "type": "Point", "coordinates": [ 145.279, -38.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.895396, "decimalLat": -27.600052 }, "geometry": { "type": "Point", "coordinates": [ 151.895, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.727072, "decimalLat": -37.921892 }, "geometry": { "type": "Point", "coordinates": [ 147.727, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.953842, "decimalLat": -27.474855 }, "geometry": { "type": "Point", "coordinates": [ 151.954, -27.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376685, "decimalLat": -28.25363 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.787309, "decimalLat": -34.886734 }, "geometry": { "type": "Point", "coordinates": [ 138.787, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.76061, "decimalLat": -26.274028 }, "geometry": { "type": "Point", "coordinates": [ 151.761, -26.274 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091, "decimalLat": -27.527365 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.496033, "decimalLat": -34.721755 }, "geometry": { "type": "Point", "coordinates": [ 146.496, -34.722 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317177, "decimalLat": -28.949206 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.889808, "decimalLat": -27.597187 }, "geometry": { "type": "Point", "coordinates": [ 151.89, -27.597 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.690456, "decimalLat": -34.954283 }, "geometry": { "type": "Point", "coordinates": [ 138.69, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282324, "decimalLat": -27.526298 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.050121, "decimalLat": -27.546426 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109825, "decimalLat": -27.529507 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.564459, "decimalLat": -27.448689 }, "geometry": { "type": "Point", "coordinates": [ 152.564, -27.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375649, "decimalLat": -28.252275 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104573, "decimalLat": -27.529671 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104518, "decimalLat": -27.530411 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054026, "decimalLat": -27.539429 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.166247, "decimalLat": -37.86695 }, "geometry": { "type": "Point", "coordinates": [ 144.166, -37.867 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060037, "decimalLat": -27.550543 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.106506, "decimalLat": -27.56225 }, "geometry": { "type": "Point", "coordinates": [ 152.107, -27.562 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.640251, "decimalLat": -38.327086 }, "geometry": { "type": "Point", "coordinates": [ 142.64, -38.327 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.551348, "decimalLat": -34.753924 }, "geometry": { "type": "Point", "coordinates": [ 146.551, -34.754 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104092, "decimalLat": -27.529561 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058233, "decimalLat": -27.546768 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372513, "decimalLat": -27.907283 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.907 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11332, "decimalLat": -27.528305 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.362946, "decimalLat": -38.318978 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734701, "decimalLat": -34.888818 }, "geometry": { "type": "Point", "coordinates": [ 138.735, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058872, "decimalLat": -27.548601 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.302922, "decimalLat": -38.344837 }, "geometry": { "type": "Point", "coordinates": [ 145.303, -38.345 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103585, "decimalLat": -27.52902 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093012, "decimalLat": -27.523884 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083239, "decimalLat": -27.51308 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.707859, "decimalLat": -34.903757 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.572399, "decimalLat": -22.370492 }, "geometry": { "type": "Point", "coordinates": [ 149.572, -22.37 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.442348, "decimalLat": -37.95416 }, "geometry": { "type": "Point", "coordinates": [ 144.442, -37.954 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090551, "decimalLat": -27.52648 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.508922, "decimalLat": -38.768828 }, "geometry": { "type": "Point", "coordinates": [ 143.509, -38.769 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111473, "decimalLat": -27.527914 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.958961, "decimalLat": -27.485198 }, "geometry": { "type": "Point", "coordinates": [ 152.959, -27.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105515, "decimalLat": -27.529169 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999762, "decimalLat": -27.283998 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.55019, "decimalLat": -38.506065 }, "geometry": { "type": "Point", "coordinates": [ 143.55, -38.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.060014, "decimalLat": -27.551182 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055081, "decimalLat": -27.552107 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.173307, "decimalLat": -32.735217 }, "geometry": { "type": "Point", "coordinates": [ 152.173, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104019, "decimalLat": -27.52855 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.046756, "decimalLat": -27.552503 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058105, "decimalLat": -27.550734 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394328, "decimalLat": -28.275801 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232247, "decimalLat": -27.9768 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.878168, "decimalLat": -34.058721 }, "geometry": { "type": "Point", "coordinates": [ 150.878, -34.059 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074576, "decimalLat": -27.358575 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.170483, "decimalLat": -36.3012 }, "geometry": { "type": "Point", "coordinates": [ 146.17, -36.301 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.16264, "decimalLat": -27.49783 }, "geometry": { "type": "Point", "coordinates": [ 152.163, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.700163, "decimalLat": -37.765308 }, "geometry": { "type": "Point", "coordinates": [ 145.7, -37.765 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090499, "decimalLat": -27.526583 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.977862, "decimalLat": -27.384097 }, "geometry": { "type": "Point", "coordinates": [ 151.978, -27.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718682, "decimalLat": -34.872489 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.872 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.094533, "decimalLat": -33.076269 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106635, "decimalLat": -27.508419 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.994675, "decimalLat": -26.304521 }, "geometry": { "type": "Point", "coordinates": [ 151.995, -26.305 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.942947, "decimalLat": -38.36457 }, "geometry": { "type": "Point", "coordinates": [ 144.943, -38.365 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070546, "decimalLat": -27.527676 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.699572, "decimalLat": -34.957531 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.958 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.807282, "decimalLat": -34.883453 }, "geometry": { "type": "Point", "coordinates": [ 138.807, -34.883 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066753, "decimalLat": -27.551228 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064133, "decimalLat": -32.698738 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.699 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.859615, "decimalLat": -27.542516 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.449887, "decimalLat": -27.406338 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -27.406 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.700819, "decimalLat": -34.90125 }, "geometry": { "type": "Point", "coordinates": [ 138.701, -34.901 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376862, "decimalLat": -28.253017 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110325, "decimalLat": -27.527617 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09266, "decimalLat": -27.527561 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.727805, "decimalLat": -34.830364 }, "geometry": { "type": "Point", "coordinates": [ 138.728, -34.83 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093141, "decimalLat": -27.526945 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163742, "decimalLat": -38.671313 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.872147, "decimalLat": -19.123228 }, "geometry": { "type": "Point", "coordinates": [ 146.872, -19.123 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.614261, "decimalLat": -34.904116 }, "geometry": { "type": "Point", "coordinates": [ 138.614, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.388882, "decimalLat": -38.354681 }, "geometry": { "type": "Point", "coordinates": [ 146.389, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103674, "decimalLat": -27.529894 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274851, "decimalLat": -27.596393 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.596 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093185, "decimalLat": -27.52555 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.271308, "decimalLat": -38.388921 }, "geometry": { "type": "Point", "coordinates": [ 146.271, -38.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09286, "decimalLat": -27.528016 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10872, "decimalLat": -27.526938 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.163857, "decimalLat": -38.394834 }, "geometry": { "type": "Point", "coordinates": [ 145.164, -38.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091317, "decimalLat": -27.527201 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.543941, "decimalLat": -27.792695 }, "geometry": { "type": "Point", "coordinates": [ 151.544, -27.793 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164214, "decimalLat": -38.671283 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074434, "decimalLat": -27.546811 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053873, "decimalLat": -27.53926 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.698669, "decimalLat": -34.933992 }, "geometry": { "type": "Point", "coordinates": [ 138.699, -34.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111021, "decimalLat": -27.530013 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103113, "decimalLat": -27.530382 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.18373, "decimalLat": -27.53098 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092294, "decimalLat": -27.527764 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092323, "decimalLat": -27.528116 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713046, "decimalLat": -34.891402 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.518629, "decimalLat": -30.519607 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720441, "decimalLat": -34.887287 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.887 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.700179, "decimalLat": -34.956004 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.956 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.726396, "decimalLat": -34.863461 }, "geometry": { "type": "Point", "coordinates": [ 138.726, -34.863 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.021847, "decimalLat": -33.817848 }, "geometry": { "type": "Point", "coordinates": [ 150.022, -33.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65682, "decimalLat": -34.865337 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713783, "decimalLat": -34.892285 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.758986, "decimalLat": -37.561837 }, "geometry": { "type": "Point", "coordinates": [ 149.759, -37.562 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092208, "decimalLat": -27.528031 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.038289, "decimalLat": -27.53312 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074649, "decimalLat": -27.542666 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091362, "decimalLat": -27.527845 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.038923, "decimalLat": -27.533258 }, "geometry": { "type": "Point", "coordinates": [ 153.039, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439377, "decimalLat": -27.401307 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.998887, "decimalLat": -28.524145 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -28.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072205, "decimalLat": -27.545709 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.685924, "decimalLat": -34.83217 }, "geometry": { "type": "Point", "coordinates": [ 135.686, -34.832 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092811, "decimalLat": -27.527614 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813595, "decimalLat": -34.101124 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.526658, "decimalLat": -27.715728 }, "geometry": { "type": "Point", "coordinates": [ 151.527, -27.716 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.394144, "decimalLat": -38.363496 }, "geometry": { "type": "Point", "coordinates": [ 146.394, -38.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059593, "decimalLat": -27.550124 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.268951, "decimalLat": -37.861354 }, "geometry": { "type": "Point", "coordinates": [ 144.269, -37.861 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058687, "decimalLat": -27.547583 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003772, "decimalLat": -27.41378 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058999, "decimalLat": -27.548542 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092545, "decimalLat": -27.527074 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.518981, "decimalLat": -30.520915 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.356434, "decimalLat": -38.333708 }, "geometry": { "type": "Point", "coordinates": [ 142.356, -38.334 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399608, "decimalLat": -27.497629 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.630172, "decimalLat": -27.715338 }, "geometry": { "type": "Point", "coordinates": [ 151.63, -27.715 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.937897, "decimalLat": -27.275638 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -27.276 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.675197, "decimalLat": -35.011924 }, "geometry": { "type": "Point", "coordinates": [ 138.675, -35.012 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124887, "decimalLat": -30.296274 }, "geometry": { "type": "Point", "coordinates": [ 153.125, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.445094, "decimalLat": -37.018233 }, "geometry": { "type": "Point", "coordinates": [ 145.445, -37.018 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.623398, "decimalLat": -34.858716 }, "geometry": { "type": "Point", "coordinates": [ 138.623, -34.859 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.901828, "decimalLat": -27.621667 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.622 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.678942, "decimalLat": -26.431754 }, "geometry": { "type": "Point", "coordinates": [ 151.679, -26.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.657261, "decimalLat": -27.643469 }, "geometry": { "type": "Point", "coordinates": [ 151.657, -27.643 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091218, "decimalLat": -27.527324 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.291021, "decimalLat": -37.874397 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.874 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105348, "decimalLat": -27.53144 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.087335, "decimalLat": -27.511059 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.404335, "decimalLat": -27.453072 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -27.453 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092457, "decimalLat": -27.525655 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05769, "decimalLat": -27.551745 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.694248, "decimalLat": -34.926138 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.926 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090687, "decimalLat": -27.525804 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.593748, "decimalLat": -35.041903 }, "geometry": { "type": "Point", "coordinates": [ 138.594, -35.042 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.562487, "decimalLat": -34.757355 }, "geometry": { "type": "Point", "coordinates": [ 146.562, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.847254, "decimalLat": -26.187101 }, "geometry": { "type": "Point", "coordinates": [ 151.847, -26.187 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.034994, "decimalLat": -27.528497 }, "geometry": { "type": "Point", "coordinates": [ 153.035, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.282363, "decimalLat": -38.895638 }, "geometry": { "type": "Point", "coordinates": [ 146.282, -38.896 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72011, "decimalLat": -34.892407 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.364685, "decimalLat": -38.321272 }, "geometry": { "type": "Point", "coordinates": [ 142.365, -38.321 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090788, "decimalLat": -27.527158 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093432, "decimalLat": -27.527887 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.665463, "decimalLat": -35.008635 }, "geometry": { "type": "Point", "coordinates": [ 138.665, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082695, "decimalLat": -27.514373 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.565078, "decimalLat": -37.089455 }, "geometry": { "type": "Point", "coordinates": [ 145.565, -37.089 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164581, "decimalLat": -38.670997 }, "geometry": { "type": "Point", "coordinates": [ 146.165, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.039084, "decimalLat": -27.296177 }, "geometry": { "type": "Point", "coordinates": [ 152.039, -27.296 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377379, "decimalLat": -28.254171 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.630022, "decimalLat": -28.637653 }, "geometry": { "type": "Point", "coordinates": [ 153.63, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053117, "decimalLat": -27.550989 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.280483, "decimalLat": -38.127306 }, "geometry": { "type": "Point", "coordinates": [ 145.28, -38.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164108, "decimalLat": -38.67153 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107797, "decimalLat": -27.529072 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655885, "decimalLat": -34.86725 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -34.867 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.533328, "decimalLat": -38.803267 }, "geometry": { "type": "Point", "coordinates": [ 143.533, -38.803 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.93228, "decimalLat": -27.33108 }, "geometry": { "type": "Point", "coordinates": [ 151.932, -27.331 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.976433, "decimalLat": -38.500056 }, "geometry": { "type": "Point", "coordinates": [ 142.976, -38.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090615, "decimalLat": -27.524359 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.223161, "decimalLat": -38.501197 }, "geometry": { "type": "Point", "coordinates": [ 146.223, -38.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057848, "decimalLat": -27.551863 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.693818, "decimalLat": -34.921838 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.922 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.372222, "decimalLat": -27.91172 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084686, "decimalLat": -27.506308 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072034, "decimalLat": -27.545739 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.644103, "decimalLat": -34.980633 }, "geometry": { "type": "Point", "coordinates": [ 138.644, -34.981 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.240259, "decimalLat": -30.993163 }, "geometry": { "type": "Point", "coordinates": [ 150.24, -30.993 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.903626, "decimalLat": -37.749445 }, "geometry": { "type": "Point", "coordinates": [ 143.904, -37.749 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.526272, "decimalLat": -38.817297 }, "geometry": { "type": "Point", "coordinates": [ 143.526, -38.817 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.361259, "decimalLat": -38.318837 }, "geometry": { "type": "Point", "coordinates": [ 142.361, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302368, "decimalLat": -28.819986 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.520645, "decimalLat": -27.719697 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -27.72 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.000403, "decimalLat": -27.284415 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108582, "decimalLat": -27.527369 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092218, "decimalLat": -27.52691 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.700715, "decimalLat": -34.961189 }, "geometry": { "type": "Point", "coordinates": [ 138.701, -34.961 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.865928, "decimalLat": -26.14941 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -26.149 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103187, "decimalLat": -27.528985 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.541468, "decimalLat": -38.797562 }, "geometry": { "type": "Point", "coordinates": [ 143.541, -38.798 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999918, "decimalLat": -27.284489 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104769, "decimalLat": -27.529555 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.875, "decimalLat": -37.604133 }, "geometry": { "type": "Point", "coordinates": [ 143.875, -37.604 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907643, "decimalLat": -31.451089 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.168883, "decimalLat": -33.585762 }, "geometry": { "type": "Point", "coordinates": [ 151.169, -33.586 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.321709, "decimalLat": -38.217568 }, "geometry": { "type": "Point", "coordinates": [ 145.322, -38.218 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.580268, "decimalLat": -35.16657 }, "geometry": { "type": "Point", "coordinates": [ 138.58, -35.167 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.980539, "decimalLat": -38.496767 }, "geometry": { "type": "Point", "coordinates": [ 142.981, -38.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375539, "decimalLat": -28.252359 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375712, "decimalLat": -28.252309 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72225, "decimalLat": -34.892314 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 149.740188, "decimalLat": -37.529945 }, "geometry": { "type": "Point", "coordinates": [ 149.74, -37.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868281, "decimalLat": -19.129692 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.13 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.715275, "decimalLat": -36.915878 }, "geometry": { "type": "Point", "coordinates": [ 145.715, -36.916 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.2207, "decimalLat": -28.48631 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -28.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.876072, "decimalLat": -26.312979 }, "geometry": { "type": "Point", "coordinates": [ 151.876, -26.313 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.671203, "decimalLat": -38.744252 }, "geometry": { "type": "Point", "coordinates": [ 143.671, -38.744 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.136672, "decimalLat": -27.564628 }, "geometry": { "type": "Point", "coordinates": [ 153.137, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058332, "decimalLat": -27.546235 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991881, "decimalLat": -27.822871 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.933794, "decimalLat": -27.573913 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056231, "decimalLat": -27.552216 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.055131, "decimalLat": -27.643611 }, "geometry": { "type": "Point", "coordinates": [ 152.055, -27.644 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054075, "decimalLat": -27.552298 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656564, "decimalLat": -35.019361 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -35.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.164946, "decimalLat": -26.968083 }, "geometry": { "type": "Point", "coordinates": [ 152.165, -26.968 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092336, "decimalLat": -27.528314 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.716267, "decimalLat": -34.893429 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08473, "decimalLat": -27.506473 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.861211, "decimalLat": -38.666296 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.666 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.120408, "decimalLat": -38.386983 }, "geometry": { "type": "Point", "coordinates": [ 145.12, -38.387 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090653, "decimalLat": -27.526973 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37702, "decimalLat": -28.254284 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107259, "decimalLat": -27.527427 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092644, "decimalLat": -27.527955 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.994125, "decimalLat": -27.823547 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82724, "decimalLat": -34.09942 }, "geometry": { "type": "Point", "coordinates": [ 150.827, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375202, "decimalLat": -28.252371 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109998, "decimalLat": -27.527431 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.998361, "decimalLat": -27.436192 }, "geometry": { "type": "Point", "coordinates": [ 152.998, -27.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.271114, "decimalLat": -38.297027 }, "geometry": { "type": "Point", "coordinates": [ 143.271, -38.297 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.04954, "decimalLat": -27.54962 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111662, "decimalLat": -27.527762 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.940651, "decimalLat": -27.389895 }, "geometry": { "type": "Point", "coordinates": [ 151.941, -27.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.71463, "decimalLat": -27.649572 }, "geometry": { "type": "Point", "coordinates": [ 151.715, -27.65 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.731492, "decimalLat": -37.921642 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.370739, "decimalLat": -27.89935 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868956, "decimalLat": -19.130725 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.131 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400585, "decimalLat": -28.25785 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.608495, "decimalLat": -27.420044 }, "geometry": { "type": "Point", "coordinates": [ 152.608, -27.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.717442, "decimalLat": -34.892464 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111111, "decimalLat": -27.528477 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091569, "decimalLat": -27.526922 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749867, "decimalLat": -26.155069 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719181, "decimalLat": -34.89159 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.882223, "decimalLat": -37.60471 }, "geometry": { "type": "Point", "coordinates": [ 143.882, -37.605 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091023, "decimalLat": -27.526468 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402165, "decimalLat": -28.258429 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.264872, "decimalLat": -27.523965 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072659, "decimalLat": -27.543274 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.573105, "decimalLat": -27.629913 }, "geometry": { "type": "Point", "coordinates": [ 151.573, -27.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.16362, "decimalLat": -38.671397 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.940033, "decimalLat": -27.273725 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -27.274 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.220923, "decimalLat": -27.502627 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003232, "decimalLat": -27.413992 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638493, "decimalLat": -35.005996 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.240331, "decimalLat": -38.254416 }, "geometry": { "type": "Point", "coordinates": [ 145.24, -38.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.95897, "decimalLat": -38.42177 }, "geometry": { "type": "Point", "coordinates": [ 144.959, -38.422 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073555, "decimalLat": -27.545751 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091642, "decimalLat": -27.526927 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083283, "decimalLat": -27.512275 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058405, "decimalLat": -27.54806 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655809, "decimalLat": -35.019247 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.019 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.122233, "decimalLat": -37.579699 }, "geometry": { "type": "Point", "coordinates": [ 144.122, -37.58 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092082, "decimalLat": -27.524547 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090787, "decimalLat": -27.527101 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.561295, "decimalLat": -27.795137 }, "geometry": { "type": "Point", "coordinates": [ 151.561, -27.795 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.521058, "decimalLat": -30.519321 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.519 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.861356, "decimalLat": -38.670468 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.67 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.566984, "decimalLat": -35.038582 }, "geometry": { "type": "Point", "coordinates": [ 138.567, -35.039 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092805, "decimalLat": -27.525292 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703278, "decimalLat": -34.939583 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.44471, "decimalLat": -26.794511 }, "geometry": { "type": "Point", "coordinates": [ 152.445, -26.795 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070432, "decimalLat": -27.50956 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058009, "decimalLat": -27.550839 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057574, "decimalLat": -27.551203 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376109, "decimalLat": -28.252479 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057754, "decimalLat": -27.551021 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.594011, "decimalLat": -37.330167 }, "geometry": { "type": "Point", "coordinates": [ 144.594, -37.33 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091863, "decimalLat": -27.526889 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24875, "decimalLat": -27.490447 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092076, "decimalLat": -27.527079 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.099442, "decimalLat": -28.290628 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -28.291 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.510776, "decimalLat": -27.55491 }, "geometry": { "type": "Point", "coordinates": [ 151.511, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900969, "decimalLat": -31.442903 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.515397, "decimalLat": -38.836437 }, "geometry": { "type": "Point", "coordinates": [ 143.515, -38.836 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.043622, "decimalLat": -27.550691 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713841, "decimalLat": -35.002011 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -35.002 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095031, "decimalLat": -33.076592 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110962, "decimalLat": -27.527137 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.311793, "decimalLat": -37.940872 }, "geometry": { "type": "Point", "coordinates": [ 141.312, -37.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.050203, "decimalLat": -27.263513 }, "geometry": { "type": "Point", "coordinates": [ 152.05, -27.264 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.677428, "decimalLat": -27.986587 }, "geometry": { "type": "Point", "coordinates": [ 152.677, -27.987 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69905, "decimalLat": -34.875745 }, "geometry": { "type": "Point", "coordinates": [ 138.699, -34.876 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.304162, "decimalLat": -38.384213 }, "geometry": { "type": "Point", "coordinates": [ 145.304, -38.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.520675, "decimalLat": -27.719558 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -27.72 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.825564, "decimalLat": -34.100489 }, "geometry": { "type": "Point", "coordinates": [ 150.826, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.375468, "decimalLat": -27.91972 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.261644, "decimalLat": -38.484304 }, "geometry": { "type": "Point", "coordinates": [ 145.262, -38.484 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108905, "decimalLat": -27.527118 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.00151, "decimalLat": -27.16561 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -27.166 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870984, "decimalLat": -19.129095 }, "geometry": { "type": "Point", "coordinates": [ 146.871, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.983439, "decimalLat": -38.503156 }, "geometry": { "type": "Point", "coordinates": [ 142.983, -38.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.790039, "decimalLat": -36.803519 }, "geometry": { "type": "Point", "coordinates": [ 145.79, -36.804 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731349, "decimalLat": -34.890902 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.91346, "decimalLat": -37.627285 }, "geometry": { "type": "Point", "coordinates": [ 143.913, -37.627 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108185, "decimalLat": -27.527226 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091827, "decimalLat": -27.525793 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.841839, "decimalLat": -34.707426 }, "geometry": { "type": "Point", "coordinates": [ 138.842, -34.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.734167, "decimalLat": -37.9225 }, "geometry": { "type": "Point", "coordinates": [ 147.734, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.719169, "decimalLat": -34.891909 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.08625, "decimalLat": -27.696933 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -27.697 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092239, "decimalLat": -27.527439 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003669, "decimalLat": -27.414538 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057495, "decimalLat": -27.551122 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.626196, "decimalLat": -34.893165 }, "geometry": { "type": "Point", "coordinates": [ 138.626, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.825394, "decimalLat": -26.571302 }, "geometry": { "type": "Point", "coordinates": [ 151.825, -26.571 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.53638, "decimalLat": -27.478232 }, "geometry": { "type": "Point", "coordinates": [ 152.536, -27.478 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.401352, "decimalLat": -27.457387 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -27.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091021, "decimalLat": -27.526322 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.513886, "decimalLat": -27.841639 }, "geometry": { "type": "Point", "coordinates": [ 152.514, -27.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.908889, "decimalLat": -33.983217 }, "geometry": { "type": "Point", "coordinates": [ 150.909, -33.983 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376821, "decimalLat": -28.253468 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.476933, "decimalLat": -38.80287 }, "geometry": { "type": "Point", "coordinates": [ 143.477, -38.803 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056075, "decimalLat": -27.83122 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.774653, "decimalLat": -26.111041 }, "geometry": { "type": "Point", "coordinates": [ 151.775, -26.111 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.659154, "decimalLat": -34.621851 }, "geometry": { "type": "Point", "coordinates": [ 135.659, -34.622 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.92343, "decimalLat": -38.056283 }, "geometry": { "type": "Point", "coordinates": [ 141.923, -38.056 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.044308, "decimalLat": -27.54515 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.309587, "decimalLat": -38.384875 }, "geometry": { "type": "Point", "coordinates": [ 145.31, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.859833, "decimalLat": -27.546555 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394272, "decimalLat": -28.288588 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.289 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.588622, "decimalLat": -34.75705 }, "geometry": { "type": "Point", "coordinates": [ 146.589, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.885961, "decimalLat": -27.423607 }, "geometry": { "type": "Point", "coordinates": [ 151.886, -27.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.762506, "decimalLat": -26.16856 }, "geometry": { "type": "Point", "coordinates": [ 151.763, -26.169 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.893923, "decimalLat": -27.598761 }, "geometry": { "type": "Point", "coordinates": [ 151.894, -27.599 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108303, "decimalLat": -27.527178 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.193107, "decimalLat": -28.203765 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -28.204 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.311923, "decimalLat": -38.385085 }, "geometry": { "type": "Point", "coordinates": [ 145.312, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991455, "decimalLat": -27.104947 }, "geometry": { "type": "Point", "coordinates": [ 152.991, -27.105 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09222, "decimalLat": -27.527344 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.714507, "decimalLat": -26.829613 }, "geometry": { "type": "Point", "coordinates": [ 152.715, -26.83 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.609603, "decimalLat": -27.396238 }, "geometry": { "type": "Point", "coordinates": [ 152.61, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.301182, "decimalLat": -31.94965 }, "geometry": { "type": "Point", "coordinates": [ 152.301, -31.95 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093524, "decimalLat": -27.526454 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.429962, "decimalLat": -27.492703 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090465, "decimalLat": -27.526872 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.132149, "decimalLat": -38.175581 }, "geometry": { "type": "Point", "coordinates": [ 145.132, -38.176 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.286075, "decimalLat": -29.023089 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -29.023 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.158342, "decimalLat": -27.71648 }, "geometry": { "type": "Point", "coordinates": [ 153.158, -27.716 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437797, "decimalLat": -27.401179 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.446092, "decimalLat": -28.103967 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.104 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072853, "decimalLat": -27.545858 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656366, "decimalLat": -35.020748 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.021 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111422, "decimalLat": -27.528435 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.246676, "decimalLat": -27.496005 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32599, "decimalLat": -27.987911 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.988 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.623956, "decimalLat": -28.068607 }, "geometry": { "type": "Point", "coordinates": [ 152.624, -28.069 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091743, "decimalLat": -27.527131 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074667, "decimalLat": -27.358597 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109183, "decimalLat": -27.527203 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056172, "decimalLat": -27.547111 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091263, "decimalLat": -27.527478 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163726, "decimalLat": -38.671212 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.389741, "decimalLat": -38.356506 }, "geometry": { "type": "Point", "coordinates": [ 146.39, -38.357 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.997038, "decimalLat": -27.2585 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510488, "decimalLat": -28.809477 }, "geometry": { "type": "Point", "coordinates": [ 153.51, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059468, "decimalLat": -27.551604 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083903, "decimalLat": -27.513382 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402339, "decimalLat": -28.257658 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059617, "decimalLat": -27.549416 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868245, "decimalLat": -19.128948 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73367, "decimalLat": -34.887683 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.270125, "decimalLat": -37.420987 }, "geometry": { "type": "Point", "coordinates": [ 144.27, -37.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.138153, "decimalLat": -28.815943 }, "geometry": { "type": "Point", "coordinates": [ 153.138, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105182, "decimalLat": -27.528969 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.003769, "decimalLat": -27.413747 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -27.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.735865, "decimalLat": -34.826458 }, "geometry": { "type": "Point", "coordinates": [ 138.736, -34.826 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093426, "decimalLat": -27.528372 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189646, "decimalLat": -27.701124 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.989468, "decimalLat": -27.579246 }, "geometry": { "type": "Point", "coordinates": [ 151.989, -27.579 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.941588, "decimalLat": -38.433267 }, "geometry": { "type": "Point", "coordinates": [ 144.942, -38.433 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.976761, "decimalLat": -38.482594 }, "geometry": { "type": "Point", "coordinates": [ 142.977, -38.483 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058306, "decimalLat": -27.546939 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.710674, "decimalLat": -26.831533 }, "geometry": { "type": "Point", "coordinates": [ 152.711, -26.832 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107555, "decimalLat": -30.261334 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -30.261 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39782, "decimalLat": -28.261538 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242128, "decimalLat": -27.532787 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374145, "decimalLat": -28.25745 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057803, "decimalLat": -27.529453 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377606, "decimalLat": -28.254187 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091038, "decimalLat": -27.527529 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.827889, "decimalLat": -28.069726 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -28.07 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.508358, "decimalLat": -35.122492 }, "geometry": { "type": "Point", "coordinates": [ 138.508, -35.122 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102707, "decimalLat": -27.527638 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.175093, "decimalLat": -37.302864 }, "geometry": { "type": "Point", "coordinates": [ 144.175, -37.303 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.518894, "decimalLat": -30.52057 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093236, "decimalLat": -27.527451 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.824697, "decimalLat": -29.651992 }, "geometry": { "type": "Point", "coordinates": [ 150.825, -29.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084263, "decimalLat": -27.505802 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092267, "decimalLat": -27.525335 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.529463, "decimalLat": -38.817091 }, "geometry": { "type": "Point", "coordinates": [ 143.529, -38.817 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656305, "decimalLat": -35.007376 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.007 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091514, "decimalLat": -27.527135 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.534028, "decimalLat": -34.745342 }, "geometry": { "type": "Point", "coordinates": [ 146.534, -34.745 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.67929, "decimalLat": -28.002767 }, "geometry": { "type": "Point", "coordinates": [ 152.679, -28.003 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164445, "decimalLat": -38.671688 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.639198, "decimalLat": -35.00985 }, "geometry": { "type": "Point", "coordinates": [ 138.639, -35.01 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.634044, "decimalLat": -38.321666 }, "geometry": { "type": "Point", "coordinates": [ 142.634, -38.322 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189646, "decimalLat": -27.701124 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.593333, "decimalLat": -38.823056 }, "geometry": { "type": "Point", "coordinates": [ 143.593, -38.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.567947, "decimalLat": -27.448563 }, "geometry": { "type": "Point", "coordinates": [ 152.568, -27.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09065, "decimalLat": -27.52728 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059246, "decimalLat": -27.547992 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.274078, "decimalLat": -38.138972 }, "geometry": { "type": "Point", "coordinates": [ 145.274, -38.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046139, "decimalLat": -27.256264 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.256 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.268258, "decimalLat": -38.130662 }, "geometry": { "type": "Point", "coordinates": [ 145.268, -38.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074701, "decimalLat": -27.546458 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.282583, "decimalLat": -37.843442 }, "geometry": { "type": "Point", "coordinates": [ 144.283, -37.843 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.285114, "decimalLat": -26.853037 }, "geometry": { "type": "Point", "coordinates": [ 152.285, -26.853 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.590667, "decimalLat": -34.755712 }, "geometry": { "type": "Point", "coordinates": [ 146.591, -34.756 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105495, "decimalLat": -27.531549 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637202, "decimalLat": -34.970482 }, "geometry": { "type": "Point", "coordinates": [ 138.637, -34.97 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068538, "decimalLat": -27.524835 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.89868, "decimalLat": -37.97517 }, "geometry": { "type": "Point", "coordinates": [ 145.899, -37.975 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10455, "decimalLat": -27.530715 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.375453, "decimalLat": -27.913785 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.724317, "decimalLat": -37.924154 }, "geometry": { "type": "Point", "coordinates": [ 147.724, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282275, "decimalLat": -27.526342 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.669357, "decimalLat": -38.755152 }, "geometry": { "type": "Point", "coordinates": [ 143.669, -38.755 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.807639, "decimalLat": -27.531936 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.644283, "decimalLat": -34.980689 }, "geometry": { "type": "Point", "coordinates": [ 138.644, -34.981 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.726182, "decimalLat": -37.91784 }, "geometry": { "type": "Point", "coordinates": [ 147.726, -37.918 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.152545, "decimalLat": -32.128106 }, "geometry": { "type": "Point", "coordinates": [ 152.153, -32.128 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.572617, "decimalLat": -38.352445 }, "geometry": { "type": "Point", "coordinates": [ 141.573, -38.352 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066243, "decimalLat": -27.539322 }, "geometry": { "type": "Point", "coordinates": [ 153.066, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070795, "decimalLat": -27.545716 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092271, "decimalLat": -27.527789 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093093, "decimalLat": -27.52424 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.743497, "decimalLat": -37.902882 }, "geometry": { "type": "Point", "coordinates": [ 147.743, -37.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.837042, "decimalLat": -28.094775 }, "geometry": { "type": "Point", "coordinates": [ 152.837, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.659654, "decimalLat": -35.018088 }, "geometry": { "type": "Point", "coordinates": [ 138.66, -35.018 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.677883, "decimalLat": -36.354314 }, "geometry": { "type": "Point", "coordinates": [ 146.678, -36.354 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.980838, "decimalLat": -27.276632 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -27.277 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108668, "decimalLat": -27.529307 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103386, "decimalLat": -27.530051 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.380433, "decimalLat": -36.847363 }, "geometry": { "type": "Point", "coordinates": [ 145.38, -36.847 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103343, "decimalLat": -27.530179 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.974867, "decimalLat": -34.030862 }, "geometry": { "type": "Point", "coordinates": [ 150.975, -34.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.325342, "decimalLat": -37.688277 }, "geometry": { "type": "Point", "coordinates": [ 144.325, -37.688 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441213, "decimalLat": -28.137954 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.657122, "decimalLat": -34.865003 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.09497, "decimalLat": -33.076217 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.514489, "decimalLat": -35.174868 }, "geometry": { "type": "Point", "coordinates": [ 138.514, -35.175 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.887432, "decimalLat": -38.636155 }, "geometry": { "type": "Point", "coordinates": [ 143.887, -38.636 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721595, "decimalLat": -34.893066 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.077888, "decimalLat": -33.147178 }, "geometry": { "type": "Point", "coordinates": [ 151.078, -33.147 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.714675, "decimalLat": -27.649588 }, "geometry": { "type": "Point", "coordinates": [ 151.715, -27.65 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.69556, "decimalLat": -36.358086 }, "geometry": { "type": "Point", "coordinates": [ 146.696, -36.358 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092696, "decimalLat": -27.527542 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.901742, "decimalLat": -27.621553 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.622 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.673786, "decimalLat": -34.931051 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -34.931 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.734286, "decimalLat": -35.152715 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -35.153 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093087, "decimalLat": -27.525887 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.062667, "decimalLat": -27.261167 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -27.261 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530653, "decimalLat": -33.504041 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -33.504 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.518981, "decimalLat": -30.520915 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720246, "decimalLat": -34.892863 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.883183, "decimalLat": -37.586685 }, "geometry": { "type": "Point", "coordinates": [ 143.883, -37.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085347, "decimalLat": -27.508983 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656722, "decimalLat": -34.865228 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.890762, "decimalLat": -27.598839 }, "geometry": { "type": "Point", "coordinates": [ 151.891, -27.599 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992995, "decimalLat": -27.823807 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095441, "decimalLat": -33.076711 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.631716, "decimalLat": -38.127486 }, "geometry": { "type": "Point", "coordinates": [ 141.632, -38.127 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.587025, "decimalLat": -34.765198 }, "geometry": { "type": "Point", "coordinates": [ 146.587, -34.765 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.428488, "decimalLat": -28.140454 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.011356, "decimalLat": -29.301205 }, "geometry": { "type": "Point", "coordinates": [ 150.011, -29.301 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091041, "decimalLat": -27.52686 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.31488, "decimalLat": -38.372425 }, "geometry": { "type": "Point", "coordinates": [ 145.315, -38.372 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.176413, "decimalLat": -27.573992 }, "geometry": { "type": "Point", "coordinates": [ 153.176, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.058378, "decimalLat": -27.2697 }, "geometry": { "type": "Point", "coordinates": [ 152.058, -27.27 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.176717, "decimalLat": -27.551905 }, "geometry": { "type": "Point", "coordinates": [ 153.177, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.049164, "decimalLat": -38.2769 }, "geometry": { "type": "Point", "coordinates": [ 147.049, -38.277 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1102, "decimalLat": -27.527386 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.034154, "decimalLat": -27.550164 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.649323, "decimalLat": -35.011545 }, "geometry": { "type": "Point", "coordinates": [ 138.649, -35.012 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091581, "decimalLat": -27.527119 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.634357, "decimalLat": -34.969893 }, "geometry": { "type": "Point", "coordinates": [ 138.634, -34.97 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.684044, "decimalLat": -27.997129 }, "geometry": { "type": "Point", "coordinates": [ 152.684, -27.997 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.638119, "decimalLat": -34.970362 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.97 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093693, "decimalLat": -27.524532 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721298, "decimalLat": -34.892015 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09086, "decimalLat": -27.527424 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.450049, "decimalLat": -28.094804 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085067, "decimalLat": -27.510541 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069917, "decimalLat": -27.223547 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.224 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092391, "decimalLat": -27.525285 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.044652, "decimalLat": -27.256175 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -27.256 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.699871, "decimalLat": -34.958065 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.958 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.132256, "decimalLat": -38.175495 }, "geometry": { "type": "Point", "coordinates": [ 145.132, -38.175 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.264257, "decimalLat": -37.221994 }, "geometry": { "type": "Point", "coordinates": [ 148.264, -37.222 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093446, "decimalLat": -27.514174 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.584395, "decimalLat": -35.151603 }, "geometry": { "type": "Point", "coordinates": [ 138.584, -35.152 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7319, "decimalLat": -34.888911 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.723449, "decimalLat": -34.892446 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.766256, "decimalLat": -26.172552 }, "geometry": { "type": "Point", "coordinates": [ 151.766, -26.173 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.749637, "decimalLat": -27.886446 }, "geometry": { "type": "Point", "coordinates": [ 152.75, -27.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073202, "decimalLat": -27.545919 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.658667, "decimalLat": -35.005263 }, "geometry": { "type": "Point", "coordinates": [ 138.659, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106551, "decimalLat": -27.52909 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092221, "decimalLat": -27.52803 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.595117, "decimalLat": -35.076185 }, "geometry": { "type": "Point", "coordinates": [ 138.595, -35.076 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054475, "decimalLat": -27.550965 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.425782, "decimalLat": -28.072701 }, "geometry": { "type": "Point", "coordinates": [ 152.426, -28.073 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.720381, "decimalLat": -34.89286 }, "geometry": { "type": "Point", "coordinates": [ 138.72, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05759, "decimalLat": -27.551392 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.140014, "decimalLat": -37.96811 }, "geometry": { "type": "Point", "coordinates": [ 144.14, -37.968 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06996, "decimalLat": -27.510564 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.98979, "decimalLat": -27.275256 }, "geometry": { "type": "Point", "coordinates": [ 152.99, -27.275 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057856, "decimalLat": -27.551517 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108313, "decimalLat": -27.52698 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073265, "decimalLat": -27.541682 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058064, "decimalLat": -27.550846 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103435, "decimalLat": -27.530889 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.566792, "decimalLat": -28.261875 }, "geometry": { "type": "Point", "coordinates": [ 152.567, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.608847, "decimalLat": -38.784374 }, "geometry": { "type": "Point", "coordinates": [ 143.609, -38.784 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090867, "decimalLat": -27.52695 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374145, "decimalLat": -28.25745 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079392, "decimalLat": -27.513599 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103023, "decimalLat": -27.529109 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.719273, "decimalLat": -26.828408 }, "geometry": { "type": "Point", "coordinates": [ 152.719, -26.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057326, "decimalLat": -27.551604 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.47295, "decimalLat": -27.531927 }, "geometry": { "type": "Point", "coordinates": [ 152.473, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.101251, "decimalLat": -27.530378 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.276152, "decimalLat": -37.840697 }, "geometry": { "type": "Point", "coordinates": [ 144.276, -37.841 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.325553, "decimalLat": -37.657676 }, "geometry": { "type": "Point", "coordinates": [ 141.326, -37.658 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.714806, "decimalLat": -34.892148 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993372, "decimalLat": -27.823873 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.645631, "decimalLat": -35.00266 }, "geometry": { "type": "Point", "coordinates": [ 138.646, -35.003 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095128, "decimalLat": -33.07635 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.654495, "decimalLat": -34.870078 }, "geometry": { "type": "Point", "coordinates": [ 138.654, -34.87 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.087003, "decimalLat": -27.695155 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -27.695 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822053, "decimalLat": -34.101692 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103319, "decimalLat": -27.528471 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.09462, "decimalLat": -37.62403 }, "geometry": { "type": "Point", "coordinates": [ 144.095, -37.624 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111538, "decimalLat": -27.525064 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074122, "decimalLat": -27.518155 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.518 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.930787, "decimalLat": -37.170688 }, "geometry": { "type": "Point", "coordinates": [ 144.931, -37.171 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.2364, "decimalLat": -37.8553 }, "geometry": { "type": "Point", "coordinates": [ 144.236, -37.855 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.567765, "decimalLat": -27.17228 }, "geometry": { "type": "Point", "coordinates": [ 152.568, -27.172 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.683455, "decimalLat": -35.108075 }, "geometry": { "type": "Point", "coordinates": [ 138.683, -35.108 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.861035, "decimalLat": -38.669511 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.67 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.591126, "decimalLat": -27.469748 }, "geometry": { "type": "Point", "coordinates": [ 152.591, -27.47 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072776, "decimalLat": -27.542219 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092456, "decimalLat": -27.527423 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075389, "decimalLat": -27.542471 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.567285, "decimalLat": -34.759078 }, "geometry": { "type": "Point", "coordinates": [ 146.567, -34.759 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241133, "decimalLat": -28.229863 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -28.23 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103355, "decimalLat": -27.528992 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109026, "decimalLat": -27.527158 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.741358, "decimalLat": -34.828389 }, "geometry": { "type": "Point", "coordinates": [ 138.741, -34.828 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713745, "decimalLat": -34.891859 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.747261, "decimalLat": -35.020903 }, "geometry": { "type": "Point", "coordinates": [ 138.747, -35.021 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111621, "decimalLat": -27.527375 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057877, "decimalLat": -27.545442 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105265, "decimalLat": -27.531556 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103245, "decimalLat": -27.529722 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912731, "decimalLat": -31.455273 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.930497, "decimalLat": -27.246998 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -27.247 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629609, "decimalLat": -28.637402 }, "geometry": { "type": "Point", "coordinates": [ 153.63, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.389778, "decimalLat": -28.26711 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.267 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103343, "decimalLat": -27.530125 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103383, "decimalLat": -27.530164 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.654792, "decimalLat": -34.987729 }, "geometry": { "type": "Point", "coordinates": [ 138.655, -34.988 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.595624, "decimalLat": -28.065728 }, "geometry": { "type": "Point", "coordinates": [ 152.596, -28.066 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702587, "decimalLat": -34.903485 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.100307, "decimalLat": -37.303182 }, "geometry": { "type": "Point", "coordinates": [ 144.1, -37.303 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091771, "decimalLat": -27.526923 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.18245, "decimalLat": -37.35128 }, "geometry": { "type": "Point", "coordinates": [ 144.182, -37.351 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.970358, "decimalLat": -27.547819 }, "geometry": { "type": "Point", "coordinates": [ 151.97, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.816325, "decimalLat": -26.409322 }, "geometry": { "type": "Point", "coordinates": [ 151.816, -26.409 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.688941, "decimalLat": -26.354129 }, "geometry": { "type": "Point", "coordinates": [ 151.689, -26.354 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688115, "decimalLat": -21.687572 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.688 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.914336, "decimalLat": -28.10584 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730796, "decimalLat": -34.886444 }, "geometry": { "type": "Point", "coordinates": [ 138.731, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.081489, "decimalLat": -27.508372 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103179, "decimalLat": -27.52907 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068755, "decimalLat": -27.510074 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.695796, "decimalLat": -34.778333 }, "geometry": { "type": "Point", "coordinates": [ 138.696, -34.778 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721403, "decimalLat": -34.899323 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -34.899 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.867997, "decimalLat": -19.128533 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.129 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.17357, "decimalLat": -38.173372 }, "geometry": { "type": "Point", "coordinates": [ 145.174, -38.173 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.624088, "decimalLat": -37.875078 }, "geometry": { "type": "Point", "coordinates": [ 145.624, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.891266, "decimalLat": -37.578918 }, "geometry": { "type": "Point", "coordinates": [ 143.891, -37.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.705596, "decimalLat": -34.903199 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69561, "decimalLat": -34.825443 }, "geometry": { "type": "Point", "coordinates": [ 138.696, -34.825 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.113464, "decimalLat": -27.528437 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.741565, "decimalLat": -28.235153 }, "geometry": { "type": "Point", "coordinates": [ 152.742, -28.235 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.100211, "decimalLat": -27.531128 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.97597, "decimalLat": -26.16294 }, "geometry": { "type": "Point", "coordinates": [ 151.976, -26.163 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.744645, "decimalLat": -38.550125 }, "geometry": { "type": "Point", "coordinates": [ 143.745, -38.55 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057361, "decimalLat": -27.551242 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189646, "decimalLat": -27.701124 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.701 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.674879, "decimalLat": -28.120555 }, "geometry": { "type": "Point", "coordinates": [ 152.675, -28.121 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.133394, "decimalLat": -38.387063 }, "geometry": { "type": "Point", "coordinates": [ 145.133, -38.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082835, "decimalLat": -27.512433 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.26692, "decimalLat": -38.664559 }, "geometry": { "type": "Point", "coordinates": [ 146.267, -38.665 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.699499, "decimalLat": -34.95809 }, "geometry": { "type": "Point", "coordinates": [ 138.699, -34.958 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058598, "decimalLat": -27.548169 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.861497, "decimalLat": -38.667222 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072334, "decimalLat": -27.545424 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.681361, "decimalLat": -27.999288 }, "geometry": { "type": "Point", "coordinates": [ 152.681, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999833, "decimalLat": -27.28446 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.284 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.721655, "decimalLat": -34.891814 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.386486, "decimalLat": -38.354276 }, "geometry": { "type": "Point", "coordinates": [ 146.386, -38.354 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090825, "decimalLat": -27.526785 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058169, "decimalLat": -27.551542 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092323, "decimalLat": -27.527801 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.046406, "decimalLat": -27.257346 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10343, "decimalLat": -27.530178 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.053949, "decimalLat": -27.551898 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37601, "decimalLat": -27.918693 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.052428, "decimalLat": -27.553013 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163742, "decimalLat": -38.671353 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.612533, "decimalLat": -35.061783 }, "geometry": { "type": "Point", "coordinates": [ 138.613, -35.062 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.04897, "decimalLat": -27.550166 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105258, "decimalLat": -27.529439 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.713776, "decimalLat": -34.891963 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.692248, "decimalLat": -34.965719 }, "geometry": { "type": "Point", "coordinates": [ 138.692, -34.966 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.125797, "decimalLat": -38.174557 }, "geometry": { "type": "Point", "coordinates": [ 145.126, -38.175 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.108641, "decimalLat": -27.254561 }, "geometry": { "type": "Point", "coordinates": [ 152.109, -27.255 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.061747, "decimalLat": -37.895649 }, "geometry": { "type": "Point", "coordinates": [ 142.062, -37.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221289, "decimalLat": -27.535087 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.923485, "decimalLat": -38.056576 }, "geometry": { "type": "Point", "coordinates": [ 141.923, -38.057 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221216, "decimalLat": -27.534938 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.933822, "decimalLat": -27.329503 }, "geometry": { "type": "Point", "coordinates": [ 151.934, -27.33 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.54291, "decimalLat": -36.926985 }, "geometry": { "type": "Point", "coordinates": [ 145.543, -36.927 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.194305, "decimalLat": -27.591155 }, "geometry": { "type": "Point", "coordinates": [ 152.194, -27.591 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860793, "decimalLat": -38.669428 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.669 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105416, "decimalLat": -27.529522 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.937676, "decimalLat": -27.41673 }, "geometry": { "type": "Point", "coordinates": [ 151.938, -27.417 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083345, "decimalLat": -27.510497 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.347788, "decimalLat": -27.93334 }, "geometry": { "type": "Point", "coordinates": [ 153.348, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111166, "decimalLat": -27.528891 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109638, "decimalLat": -27.529347 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189987, "decimalLat": -27.736471 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.736 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110284, "decimalLat": -27.527405 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090705, "decimalLat": -27.526526 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090488, "decimalLat": -27.526989 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.564218, "decimalLat": -35.156921 }, "geometry": { "type": "Point", "coordinates": [ 138.564, -35.157 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.157043, "decimalLat": -27.622749 }, "geometry": { "type": "Point", "coordinates": [ 153.157, -27.623 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085152, "decimalLat": -27.510545 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.493163, "decimalLat": -27.420672 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -27.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399611, "decimalLat": -28.260465 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.104448, "decimalLat": -27.530496 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103518, "decimalLat": -27.530026 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086373, "decimalLat": -27.509233 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068033, "decimalLat": -27.509065 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518155, "decimalLat": -33.497576 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -33.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10615, "decimalLat": -27.529255 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.740828, "decimalLat": -35.024798 }, "geometry": { "type": "Point", "coordinates": [ 138.741, -35.025 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095146, "decimalLat": -33.076711 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192688, "decimalLat": -27.703163 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -27.703 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.769552, "decimalLat": -26.371076 }, "geometry": { "type": "Point", "coordinates": [ 151.77, -26.371 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.112474, "decimalLat": -27.528033 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.801326, "decimalLat": -26.154652 }, "geometry": { "type": "Point", "coordinates": [ 151.801, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.860763, "decimalLat": -38.668067 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.668 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058084, "decimalLat": -27.547938 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.341033, "decimalLat": -31.576008 }, "geometry": { "type": "Point", "coordinates": [ 149.341, -31.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.898763, "decimalLat": -37.595419 }, "geometry": { "type": "Point", "coordinates": [ 143.899, -37.595 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.693037, "decimalLat": -27.856406 }, "geometry": { "type": "Point", "coordinates": [ 152.693, -27.856 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.176436, "decimalLat": -28.200933 }, "geometry": { "type": "Point", "coordinates": [ 153.176, -28.201 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069451, "decimalLat": -27.510405 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.047097, "decimalLat": -27.549735 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.753447, "decimalLat": -35.008647 }, "geometry": { "type": "Point", "coordinates": [ 138.753, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091534, "decimalLat": -27.527218 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.867391, "decimalLat": -26.522552 }, "geometry": { "type": "Point", "coordinates": [ 151.867, -26.523 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.106031, "decimalLat": -27.529648 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.861167, "decimalLat": -38.668711 }, "geometry": { "type": "Point", "coordinates": [ 143.861, -38.669 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.690337, "decimalLat": -34.954243 }, "geometry": { "type": "Point", "coordinates": [ 138.69, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.117373, "decimalLat": -33.114143 }, "geometry": { "type": "Point", "coordinates": [ 151.117, -33.114 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057719, "decimalLat": -27.551036 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.725979, "decimalLat": -35.082054 }, "geometry": { "type": "Point", "coordinates": [ 138.726, -35.082 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11183, "decimalLat": -27.528859 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110274, "decimalLat": -27.529867 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.697471, "decimalLat": -34.956881 }, "geometry": { "type": "Point", "coordinates": [ 138.697, -34.957 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.617843, "decimalLat": -27.321903 }, "geometry": { "type": "Point", "coordinates": [ 152.618, -27.322 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072246, "decimalLat": -27.544689 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.686667, "decimalLat": -34.825556 }, "geometry": { "type": "Point", "coordinates": [ 135.687, -34.826 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.472779, "decimalLat": -33.758096 }, "geometry": { "type": "Point", "coordinates": [ 149.473, -33.758 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402268, "decimalLat": -28.258515 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.538578, "decimalLat": -34.916747 }, "geometry": { "type": "Point", "coordinates": [ 138.539, -34.917 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.558679, "decimalLat": -34.914958 }, "geometry": { "type": "Point", "coordinates": [ 138.559, -34.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.018892, "decimalLat": -38.464525 }, "geometry": { "type": "Point", "coordinates": [ 145.019, -38.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.935622, "decimalLat": -27.325487 }, "geometry": { "type": "Point", "coordinates": [ 151.936, -27.325 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.729876, "decimalLat": -34.889991 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.723016, "decimalLat": -34.891725 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.730435, "decimalLat": -34.890778 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.062961, "decimalLat": -27.348613 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -27.349 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.902222, "decimalLat": -27.621983 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.622 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400635, "decimalLat": -28.257885 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.187566, "decimalLat": -28.187872 }, "geometry": { "type": "Point", "coordinates": [ 153.188, -28.188 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091542, "decimalLat": -27.526804 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105719, "decimalLat": -27.521602 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.522 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.568058, "decimalLat": -34.756534 }, "geometry": { "type": "Point", "coordinates": [ 146.568, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.105925, "decimalLat": -27.529502 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.070119, "decimalLat": -36.821806 }, "geometry": { "type": "Point", "coordinates": [ 140.07, -36.822 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.870014, "decimalLat": -19.127393 }, "geometry": { "type": "Point", "coordinates": [ 146.87, -19.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.569298, "decimalLat": -27.759233 }, "geometry": { "type": "Point", "coordinates": [ 151.569, -27.759 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.868333, "decimalLat": -19.127278 }, "geometry": { "type": "Point", "coordinates": [ 146.868, -19.127 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.978438, "decimalLat": -27.276317 }, "geometry": { "type": "Point", "coordinates": [ 152.978, -27.276 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.444556, "decimalLat": -27.582516 }, "geometry": { "type": "Point", "coordinates": [ 152.445, -27.583 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091123, "decimalLat": -27.527784 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080366, "decimalLat": -27.508676 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090733, "decimalLat": -27.527001 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071251, "decimalLat": -27.225656 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.226 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.778008, "decimalLat": -27.338424 }, "geometry": { "type": "Point", "coordinates": [ 151.778, -27.338 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090333, "decimalLat": -27.509631 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058882, "decimalLat": -27.547384 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.914231, "decimalLat": -26.208028 }, "geometry": { "type": "Point", "coordinates": [ 151.914, -26.208 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.750039, "decimalLat": -26.155358 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.683411, "decimalLat": -35.083108 }, "geometry": { "type": "Point", "coordinates": [ 138.683, -35.083 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103648, "decimalLat": -27.528205 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.955365, "decimalLat": -27.445924 }, "geometry": { "type": "Point", "coordinates": [ 151.955, -27.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.692724, "decimalLat": -34.898331 }, "geometry": { "type": "Point", "coordinates": [ 138.693, -34.898 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.476941, "decimalLat": -38.802014 }, "geometry": { "type": "Point", "coordinates": [ 143.477, -38.802 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.890013, "decimalLat": -37.967955 }, "geometry": { "type": "Point", "coordinates": [ 140.89, -37.968 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.164181, "decimalLat": -38.671289 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.062366, "decimalLat": -27.811517 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.812 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082474, "decimalLat": -27.502513 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090565, "decimalLat": -27.52642 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091128, "decimalLat": -27.527134 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.656389, "decimalLat": -30.535 }, "geometry": { "type": "Point", "coordinates": [ 151.656, -30.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.727355, "decimalLat": -37.922263 }, "geometry": { "type": "Point", "coordinates": [ 147.727, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.946392, "decimalLat": -27.467401 }, "geometry": { "type": "Point", "coordinates": [ 151.946, -27.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091546, "decimalLat": -27.526834 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163012, "decimalLat": -38.671446 }, "geometry": { "type": "Point", "coordinates": [ 146.163, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086672, "decimalLat": -27.506118 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.163742, "decimalLat": -38.671275 }, "geometry": { "type": "Point", "coordinates": [ 146.164, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091836, "decimalLat": -27.525905 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.969051, "decimalLat": -26.444967 }, "geometry": { "type": "Point", "coordinates": [ 151.969, -26.445 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.622335, "decimalLat": -27.710949 }, "geometry": { "type": "Point", "coordinates": [ 152.622, -27.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074993, "decimalLat": -27.502178 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.03112, "decimalLat": -37.690687 }, "geometry": { "type": "Point", "coordinates": [ 144.031, -37.691 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.752608, "decimalLat": -26.158158 }, "geometry": { "type": "Point", "coordinates": [ 151.753, -26.158 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.306121, "decimalLat": -38.384507 }, "geometry": { "type": "Point", "coordinates": [ 145.306, -38.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.695451, "decimalLat": -34.957508 }, "geometry": { "type": "Point", "coordinates": [ 138.695, -34.958 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103977, "decimalLat": -27.53058 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092366, "decimalLat": -27.528073 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.971054, "decimalLat": -27.578931 }, "geometry": { "type": "Point", "coordinates": [ 151.971, -27.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.806262, "decimalLat": -27.535778 }, "geometry": { "type": "Point", "coordinates": [ 152.806, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.084231, "decimalLat": -27.511737 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058598, "decimalLat": -27.546473 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.680615, "decimalLat": -28.002598 }, "geometry": { "type": "Point", "coordinates": [ 152.681, -28.003 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656457, "decimalLat": -35.002649 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.003 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637438, "decimalLat": -35.008719 }, "geometry": { "type": "Point", "coordinates": [ 138.637, -35.009 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069209, "decimalLat": -27.510232 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.373406, "decimalLat": -27.917589 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.779444, "decimalLat": -34.921111 }, "geometry": { "type": "Point", "coordinates": [ 138.779, -34.921 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.947372, "decimalLat": -27.423883 }, "geometry": { "type": "Point", "coordinates": [ 151.947, -27.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.675042, "decimalLat": -34.857217 }, "geometry": { "type": "Point", "coordinates": [ 138.675, -34.857 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.107285, "decimalLat": -27.527311 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092853, "decimalLat": -27.527115 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103689, "decimalLat": -27.529702 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562133, "decimalLat": -28.38335 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.383 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090882, "decimalLat": -27.525887 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.207973, "decimalLat": -27.800635 }, "geometry": { "type": "Point", "coordinates": [ 153.208, -27.801 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.362473, "decimalLat": -38.318367 }, "geometry": { "type": "Point", "coordinates": [ 142.362, -38.318 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.269469, "decimalLat": -38.387018 }, "geometry": { "type": "Point", "coordinates": [ 146.269, -38.387 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.939682, "decimalLat": -27.273362 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -27.273 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.981511, "decimalLat": -38.502403 }, "geometry": { "type": "Point", "coordinates": [ 142.982, -38.502 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.35919, "decimalLat": -38.402025 }, "geometry": { "type": "Point", "coordinates": [ 142.359, -38.402 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110788, "decimalLat": -27.525719 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.04571, "decimalLat": -27.258146 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -27.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.651767, "decimalLat": -35.043398 }, "geometry": { "type": "Point", "coordinates": [ 138.652, -35.043 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.494675, "decimalLat": -35.707375 }, "geometry": { "type": "Point", "coordinates": [ 137.495, -35.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.402991, "decimalLat": -27.457878 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -27.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.044433, "decimalLat": -27.295467 }, "geometry": { "type": "Point", "coordinates": [ 152.044, -27.295 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.982222, "decimalLat": -34.130558 }, "geometry": { "type": "Point", "coordinates": [ 150.982, -34.131 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.087295, "decimalLat": -27.511062 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091533, "decimalLat": -27.527366 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.613312, "decimalLat": -27.339465 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655742, "decimalLat": -35.010942 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073222, "decimalLat": -27.545491 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.799648, "decimalLat": -26.152714 }, "geometry": { "type": "Point", "coordinates": [ 151.8, -26.153 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.29091, "decimalLat": -37.874554 }, "geometry": { "type": "Point", "coordinates": [ 142.291, -37.875 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.748292, "decimalLat": -38.551995 }, "geometry": { "type": "Point", "coordinates": [ 143.748, -38.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.994034, "decimalLat": -27.823679 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092115, "decimalLat": -27.525542 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.614761, "decimalLat": -38.555291 }, "geometry": { "type": "Point", "coordinates": [ 143.615, -38.555 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091646, "decimalLat": -27.527261 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092362, "decimalLat": -27.528004 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.056155, "decimalLat": -27.552268 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377158, "decimalLat": -28.253559 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.109291, "decimalLat": -27.527036 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.857756, "decimalLat": -38.666569 }, "geometry": { "type": "Point", "coordinates": [ 143.858, -38.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.615473, "decimalLat": -38.792018 }, "geometry": { "type": "Point", "coordinates": [ 143.615, -38.792 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314576, "decimalLat": -38.374148 }, "geometry": { "type": "Point", "coordinates": [ 145.315, -38.374 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.869691, "decimalLat": -19.130982 }, "geometry": { "type": "Point", "coordinates": [ 146.87, -19.131 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.736563, "decimalLat": -38.551586 }, "geometry": { "type": "Point", "coordinates": [ 143.737, -38.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103414, "decimalLat": -27.529924 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.670366, "decimalLat": -35.015824 }, "geometry": { "type": "Point", "coordinates": [ 138.67, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108369, "decimalLat": -27.526773 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731997, "decimalLat": -34.872606 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.873 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519276, "decimalLat": -30.521537 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.522 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.314941, "decimalLat": -38.372055 }, "geometry": { "type": "Point", "coordinates": [ 145.315, -38.372 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.823492, "decimalLat": -26.417057 }, "geometry": { "type": "Point", "coordinates": [ 151.823, -26.417 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377453, "decimalLat": -28.254355 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886688, "decimalLat": -31.456097 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071494, "decimalLat": -32.713599 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.604965, "decimalLat": -27.654855 }, "geometry": { "type": "Point", "coordinates": [ 151.605, -27.655 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.810048, "decimalLat": -35.960427 }, "geometry": { "type": "Point", "coordinates": [ 136.81, -35.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.865037, "decimalLat": -19.130772 }, "geometry": { "type": "Point", "coordinates": [ 146.865, -19.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.994284, "decimalLat": -27.566214 }, "geometry": { "type": "Point", "coordinates": [ 151.994, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.387725, "decimalLat": -38.354793 }, "geometry": { "type": "Point", "coordinates": [ 146.388, -38.355 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091507, "decimalLat": -27.526829 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.73145, "decimalLat": -26.448501 }, "geometry": { "type": "Point", "coordinates": [ 151.731, -26.449 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.829829, "decimalLat": -26.602338 }, "geometry": { "type": "Point", "coordinates": [ 151.83, -26.602 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092357, "decimalLat": -27.52742 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092616, "decimalLat": -27.527549 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.993046, "decimalLat": -30.559978 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -30.56 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.999856, "decimalLat": -27.284515 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.285 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.788299, "decimalLat": -26.137974 }, "geometry": { "type": "Point", "coordinates": [ 151.788, -26.138 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092295, "decimalLat": -27.527422 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10386, "decimalLat": -27.530523 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05697, "decimalLat": -27.551591 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.848463, "decimalLat": -27.339705 }, "geometry": { "type": "Point", "coordinates": [ 152.848, -27.34 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103956, "decimalLat": -27.528028 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.955615, "decimalLat": -27.474704 }, "geometry": { "type": "Point", "coordinates": [ 151.956, -27.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.749888, "decimalLat": -26.155079 }, "geometry": { "type": "Point", "coordinates": [ 151.75, -26.155 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.849872, "decimalLat": -28.081415 }, "geometry": { "type": "Point", "coordinates": [ 152.85, -28.081 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09333, "decimalLat": -27.524089 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07948, "decimalLat": -27.513497 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.108056, "decimalLat": -38.398333 }, "geometry": { "type": "Point", "coordinates": [ 145.108, -38.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.074603, "decimalLat": -27.358441 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.097085, "decimalLat": -27.566556 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059838, "decimalLat": -27.549457 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.866043, "decimalLat": -28.211487 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.211 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731945, "decimalLat": -34.871752 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.872 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103182, "decimalLat": -27.529917 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.722849, "decimalLat": -34.889549 }, "geometry": { "type": "Point", "coordinates": [ 138.723, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.151276, "decimalLat": -27.752474 }, "geometry": { "type": "Point", "coordinates": [ 153.151, -27.752 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.249513, "decimalLat": -27.496634 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.727329, "decimalLat": -34.889587 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.073295, "decimalLat": -25.539886 }, "geometry": { "type": "Point", "coordinates": [ 151.073, -25.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.668719, "decimalLat": -34.866659 }, "geometry": { "type": "Point", "coordinates": [ 135.669, -34.867 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.709852, "decimalLat": -36.556288 }, "geometry": { "type": "Point", "coordinates": [ 146.71, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.715317, "decimalLat": -27.649705 }, "geometry": { "type": "Point", "coordinates": [ 151.715, -27.65 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.731508, "decimalLat": -34.890289 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.256373, "decimalLat": -37.834621 }, "geometry": { "type": "Point", "coordinates": [ 144.256, -37.835 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.494802, "decimalLat": -38.531318 }, "geometry": { "type": "Point", "coordinates": [ 143.495, -38.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702816, "decimalLat": -34.931048 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.931 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.727746, "decimalLat": -37.924432 }, "geometry": { "type": "Point", "coordinates": [ 147.728, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.068874, "decimalLat": -27.508924 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.092262, "decimalLat": -27.527314 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111491, "decimalLat": -27.527832 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.698572, "decimalLat": -34.935161 }, "geometry": { "type": "Point", "coordinates": [ 138.699, -34.935 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.613312, "decimalLat": -27.339465 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -27.339 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090366, "decimalLat": -27.526817 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.717296, "decimalLat": -35.012194 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -35.012 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.514663, "decimalLat": -38.835858 }, "geometry": { "type": "Point", "coordinates": [ 143.515, -38.836 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066673, "decimalLat": -27.547275 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.975447, "decimalLat": -27.251628 }, "geometry": { "type": "Point", "coordinates": [ 152.975, -27.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.934629, "decimalLat": -27.798555 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -27.799 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.550477, "decimalLat": -36.955773 }, "geometry": { "type": "Point", "coordinates": [ 145.55, -36.956 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091729, "decimalLat": -27.527123 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057637, "decimalLat": -27.551329 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375901, "decimalLat": -28.252489 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438314, "decimalLat": -27.401919 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.402 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440233, "decimalLat": -27.403763 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.404 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440662, "decimalLat": -27.397136 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438974, "decimalLat": -27.395758 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440901, "decimalLat": -27.403815 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.404 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439445, "decimalLat": -27.401346 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439004, "decimalLat": -27.399804 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441564, "decimalLat": -27.39249 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439558, "decimalLat": -27.393783 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438879, "decimalLat": -27.395792 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4444, "decimalLat": -27.395914 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.461457, "decimalLat": -27.409139 }, "geometry": { "type": "Point", "coordinates": [ 153.461, -27.409 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438974, "decimalLat": -27.395758 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437346, "decimalLat": -27.405235 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -27.405 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438679, "decimalLat": -27.40217 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.402 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440184, "decimalLat": -27.40157 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.402 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.450534, "decimalLat": -27.40708 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -27.407 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.450534, "decimalLat": -27.40708 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -27.407 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438179, "decimalLat": -27.401025 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.442835, "decimalLat": -27.392489 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -27.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438879, "decimalLat": -27.395792 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438181, "decimalLat": -27.39625 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.442596, "decimalLat": -27.400145 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438554, "decimalLat": -27.40106 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44816, "decimalLat": -27.395252 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440102, "decimalLat": -27.403746 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.404 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438239, "decimalLat": -27.4034 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.403 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.453095, "decimalLat": -27.392681 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441547, "decimalLat": -27.395231 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440233, "decimalLat": -27.403763 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.404 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439186, "decimalLat": -27.397357 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439126, "decimalLat": -27.397447 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.432919, "decimalLat": -27.396249 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437913, "decimalLat": -27.400259 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440308, "decimalLat": -27.397119 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440308, "decimalLat": -27.397119 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441639, "decimalLat": -27.401096 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440951, "decimalLat": -27.394905 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438554, "decimalLat": -27.40106 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439056, "decimalLat": -27.397592 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.453141, "decimalLat": -27.393954 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -27.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.442767, "decimalLat": -27.392183 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -27.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439664, "decimalLat": -27.393662 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437333, "decimalLat": -27.404468 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -27.404 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441564, "decimalLat": -27.39249 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44093, "decimalLat": -27.398417 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438179, "decimalLat": -27.401025 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44201, "decimalLat": -27.395181 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437583, "decimalLat": -27.403736 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.404 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439571, "decimalLat": -27.393716 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44121, "decimalLat": -27.394967 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.442341, "decimalLat": -27.392359 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.135342, "decimalLat": -27.487736 }, "geometry": { "type": "Point", "coordinates": [ 153.135, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493644, "decimalLat": -28.67517 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.675 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.446, "decimalLat": -28.591 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.591 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.612, "decimalLat": -28.691 }, "geometry": { "type": "Point", "coordinates": [ 153.612, -28.691 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.595595, "decimalLat": -28.715264 }, "geometry": { "type": "Point", "coordinates": [ 153.596, -28.715 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.388, "decimalLat": -28.653 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60945, "decimalLat": -28.662215 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.473, "decimalLat": -28.558 }, "geometry": { "type": "Point", "coordinates": [ 153.473, -28.558 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516, "decimalLat": -28.686 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -28.686 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51074, "decimalLat": -28.667061 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.462, "decimalLat": -28.65 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.598, "decimalLat": -28.723 }, "geometry": { "type": "Point", "coordinates": [ 153.598, -28.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51074, "decimalLat": -28.667061 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.615, "decimalLat": -28.661 }, "geometry": { "type": "Point", "coordinates": [ 153.615, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61, "decimalLat": -28.661 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.473, "decimalLat": -28.703 }, "geometry": { "type": "Point", "coordinates": [ 153.473, -28.703 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.459894, "decimalLat": -28.753289 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.753 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.414, "decimalLat": -28.549 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557, "decimalLat": -28.645 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.645 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61095, "decimalLat": -28.683747 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.439, "decimalLat": -28.611 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.611 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517, "decimalLat": -28.693 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.461, "decimalLat": -28.594 }, "geometry": { "type": "Point", "coordinates": [ 153.461, -28.594 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 3, "stateProvi": "Queensland", "decimalLon": 153.43424, "decimalLat": -28.1338 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.134 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493489, "decimalLat": -28.675379 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -28.675 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 3, "stateProvi": "Victoria", "decimalLon": 149.759578, "decimalLat": -37.562281 }, "geometry": { "type": "Point", "coordinates": [ 149.76, -37.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494, "decimalLat": -28.675 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.675 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437475, "decimalLat": -28.573115 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.573 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.497305, "decimalLat": -28.654526 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.583, "decimalLat": -28.633 }, "geometry": { "type": "Point", "coordinates": [ 153.583, -28.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.614047, "decimalLat": -28.683737 }, "geometry": { "type": "Point", "coordinates": [ 153.614, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609, "decimalLat": -28.69 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.464741, "decimalLat": -28.746865 }, "geometry": { "type": "Point", "coordinates": [ 153.465, -28.747 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.496, "decimalLat": -28.695 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.695 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 3, "stateProvi": "Queensland", "decimalLon": 153.226944, "decimalLat": -27.560833 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523046, "decimalLat": -28.711473 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.446, "decimalLat": -28.588 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.588 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.593559, "decimalLat": -28.723846 }, "geometry": { "type": "Point", "coordinates": [ 153.594, -28.724 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.612, "decimalLat": -28.684 }, "geometry": { "type": "Point", "coordinates": [ 153.612, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.459, "decimalLat": -28.651 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.491, "decimalLat": -28.654 }, "geometry": { "type": "Point", "coordinates": [ 153.491, -28.654 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.519442, "decimalLat": -28.687199 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49, "decimalLat": -28.667 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.397, "decimalLat": -28.559 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498, "decimalLat": -28.653 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.616, "decimalLat": -28.66 }, "geometry": { "type": "Point", "coordinates": [ 153.616, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.611, "decimalLat": -28.684 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.597, "decimalLat": -28.677 }, "geometry": { "type": "Point", "coordinates": [ 153.597, -28.677 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.429342, "decimalLat": -28.573115 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.573 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.534, "decimalLat": -28.635 }, "geometry": { "type": "Point", "coordinates": [ 153.534, -28.635 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517337, "decimalLat": -28.667032 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.627965, "decimalLat": -28.639902 }, "geometry": { "type": "Point", "coordinates": [ 153.628, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.474085, "decimalLat": -28.705059 }, "geometry": { "type": "Point", "coordinates": [ 153.474, -28.705 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517178, "decimalLat": -28.575253 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.475, "decimalLat": -28.689 }, "geometry": { "type": "Point", "coordinates": [ 153.475, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 3, "stateProvi": "Queensland", "decimalLon": 153.236672, "decimalLat": -27.49049 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.507459, "decimalLat": -28.651532 }, "geometry": { "type": "Point", "coordinates": [ 153.507, -28.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59995, "decimalLat": -28.717 }, "geometry": { "type": "Point", "coordinates": [ 153.6, -28.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609, "decimalLat": -28.689 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46, "decimalLat": -28.753 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.753 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.469126, "decimalLat": -28.55567 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434666, "decimalLat": -28.572677 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.573 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516578, "decimalLat": -28.692812 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.616, "decimalLat": -28.656 }, "geometry": { "type": "Point", "coordinates": [ 153.616, -28.656 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495, "decimalLat": -28.694 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 3, "stateProvi": "Queensland", "decimalLon": 153.250244, "decimalLat": -27.50702 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433, "decimalLat": -28.729 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.729 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.628907, "decimalLat": -28.638007 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51, "decimalLat": -28.58 }, "geometry": { "type": "Point", "coordinates": [ 153.51, -28.58 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.592, "decimalLat": -28.636 }, "geometry": { "type": "Point", "coordinates": [ 153.592, -28.636 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609, "decimalLat": -28.687 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.456432, "decimalLat": -28.650521 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.397, "decimalLat": -28.563 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.563 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283802, "decimalLat": -28.680073 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -28.68 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.507, "decimalLat": -28.619 }, "geometry": { "type": "Point", "coordinates": [ 153.507, -28.619 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.549, "decimalLat": -28.57 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.57 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609458, "decimalLat": -28.661288 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.628741, "decimalLat": -28.636848 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.475539, "decimalLat": -28.689075 }, "geometry": { "type": "Point", "coordinates": [ 153.476, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.446, "decimalLat": -28.589 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427, "decimalLat": -28.669 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.552, "decimalLat": -28.571 }, "geometry": { "type": "Point", "coordinates": [ 153.552, -28.571 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.390241, "decimalLat": -28.545817 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.58374, "decimalLat": -28.630128 }, "geometry": { "type": "Point", "coordinates": [ 153.584, -28.63 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.452, "decimalLat": -28.672 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434, "decimalLat": -28.574 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.574 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.462656, "decimalLat": -28.649902 }, "geometry": { "type": "Point", "coordinates": [ 153.463, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 3, "stateProvi": "Queensland", "decimalLon": 153.224474, "decimalLat": -27.500835 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.482, "decimalLat": -28.542 }, "geometry": { "type": "Point", "coordinates": [ 153.482, -28.542 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.425, "decimalLat": -28.573 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.573 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.497035, "decimalLat": -28.685331 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.685 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468766, "decimalLat": -28.6515 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516, "decimalLat": -28.688 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.610954, "decimalLat": -28.660685 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465972, "decimalLat": -28.673632 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.674 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561, "decimalLat": -28.703 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.703 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554, "decimalLat": -28.642 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.642 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517966, "decimalLat": -28.686881 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61, "decimalLat": -28.661 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61, "decimalLat": -28.69 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.521, "decimalLat": -28.685 }, "geometry": { "type": "Point", "coordinates": [ 153.521, -28.685 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.463392, "decimalLat": -28.632776 }, "geometry": { "type": "Point", "coordinates": [ 153.463, -28.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.615, "decimalLat": -28.661 }, "geometry": { "type": "Point", "coordinates": [ 153.615, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.532807, "decimalLat": -28.681229 }, "geometry": { "type": "Point", "coordinates": [ 153.533, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.461934, "decimalLat": -28.650627 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46, "decimalLat": -28.753 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.753 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49471, "decimalLat": -28.69061 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.691 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.615, "decimalLat": -28.663 }, "geometry": { "type": "Point", "coordinates": [ 153.615, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.615, "decimalLat": -28.661 }, "geometry": { "type": "Point", "coordinates": [ 153.615, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.537089, "decimalLat": -28.620414 }, "geometry": { "type": "Point", "coordinates": [ 153.537, -28.62 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.507, "decimalLat": -28.616 }, "geometry": { "type": "Point", "coordinates": [ 153.507, -28.616 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629, "decimalLat": -28.638 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51074, "decimalLat": -28.667061 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.613372, "decimalLat": -28.682634 }, "geometry": { "type": "Point", "coordinates": [ 153.613, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.480957, "decimalLat": -28.703622 }, "geometry": { "type": "Point", "coordinates": [ 153.481, -28.704 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.474, "decimalLat": -28.704 }, "geometry": { "type": "Point", "coordinates": [ 153.474, -28.704 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.462, "decimalLat": -28.651 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434, "decimalLat": -28.575 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61, "decimalLat": -28.661 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.551, "decimalLat": -28.647 }, "geometry": { "type": "Point", "coordinates": [ 153.551, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.509709, "decimalLat": -28.603818 }, "geometry": { "type": "Point", "coordinates": [ 153.51, -28.604 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468928, "decimalLat": -28.673649 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.674 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.515008, "decimalLat": -28.687381 }, "geometry": { "type": "Point", "coordinates": [ 153.515, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 3, "stateProvi": "Queensland", "decimalLon": 153.22441, "decimalLat": -27.500774 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.499, "decimalLat": -28.705 }, "geometry": { "type": "Point", "coordinates": [ 152.499, -28.705 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517009, "decimalLat": -28.691444 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.691 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.611, "decimalLat": -28.683 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.397508, "decimalLat": -28.560685 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609847, "decimalLat": -28.661172 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51074, "decimalLat": -28.667061 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.549427, "decimalLat": -28.569742 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.57 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434038, "decimalLat": -28.732183 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.732 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.397, "decimalLat": -28.561 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.515584, "decimalLat": -28.684936 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -28.685 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.636, "decimalLat": -28.636 }, "geometry": { "type": "Point", "coordinates": [ 153.636, -28.636 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523553, "decimalLat": -28.669701 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -28.67 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.489454, "decimalLat": -28.683227 }, "geometry": { "type": "Point", "coordinates": [ 153.489, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523735, "decimalLat": -28.670918 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -28.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.496, "decimalLat": -28.694 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43429, "decimalLat": -28.731887 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 3, "stateProvi": "Queensland", "decimalLon": 153.250069, "decimalLat": -27.512205 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516301, "decimalLat": -28.688361 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608, "decimalLat": -28.676 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559376, "decimalLat": -28.65693 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607, "decimalLat": -28.691 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.691 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.452, "decimalLat": -28.59 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.45, "decimalLat": -28.551 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.513323, "decimalLat": -28.688702 }, "geometry": { "type": "Point", "coordinates": [ 153.513, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.462163, "decimalLat": -28.650214 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.497742, "decimalLat": -28.704546 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.515, "decimalLat": -28.685 }, "geometry": { "type": "Point", "coordinates": [ 153.515, -28.685 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.429, "decimalLat": -28.573 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.573 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.473012, "decimalLat": -28.705548 }, "geometry": { "type": "Point", "coordinates": [ 153.473, -28.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554, "decimalLat": -28.571 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.571 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.497, "decimalLat": -28.685 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.685 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 3, "stateProvi": "Queensland", "decimalLon": 153.224076, "decimalLat": -27.500364 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.490609, "decimalLat": -28.655332 }, "geometry": { "type": "Point", "coordinates": [ 153.491, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.520752, "decimalLat": -28.686298 }, "geometry": { "type": "Point", "coordinates": [ 153.521, -28.686 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.592405, "decimalLat": -28.63556 }, "geometry": { "type": "Point", "coordinates": [ 153.592, -28.636 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.489, "decimalLat": -28.673 }, "geometry": { "type": "Point", "coordinates": [ 153.489, -28.673 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553703, "decimalLat": -28.570626 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.571 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.42537, "decimalLat": -28.57351 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.574 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 3, "stateProvi": "Queensland", "decimalLon": 153.257915, "decimalLat": -27.499968 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561099, "decimalLat": -28.703206 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.703 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61, "decimalLat": -28.662 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434806, "decimalLat": -28.72789 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.515308, "decimalLat": -28.592667 }, "geometry": { "type": "Point", "coordinates": [ 153.515, -28.593 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427304, "decimalLat": -28.628296 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.628 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.515119, "decimalLat": -28.571967 }, "geometry": { "type": "Point", "coordinates": [ 153.515, -28.572 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.519044, "decimalLat": -28.684774 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.685 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.615, "decimalLat": -28.663 }, "geometry": { "type": "Point", "coordinates": [ 153.615, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.511009, "decimalLat": -28.580327 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.58 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.446, "decimalLat": -28.589 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495, "decimalLat": -28.657 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608, "decimalLat": -28.664 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.664 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.611, "decimalLat": -28.684 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608, "decimalLat": -28.686 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.686 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517, "decimalLat": -28.692 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.692 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.469474, "decimalLat": -28.557779 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.558 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.511108, "decimalLat": -28.580273 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.58 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609847, "decimalLat": -28.661172 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 3, "stateProvi": "New South Wales", "decimalLon": 153.560784, "decimalLat": -28.389253 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.610954, "decimalLat": -28.660685 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.514, "decimalLat": -28.687 }, "geometry": { "type": "Point", "coordinates": [ 153.514, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 3, "stateProvi": "New South Wales", "decimalLon": 153.560256, "decimalLat": -28.287173 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.287 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.387981, "decimalLat": -28.653614 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -28.654 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 3, "stateProvi": "New South Wales", "decimalLon": 153.560285, "decimalLat": -28.389285 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 3, "stateProvi": "New South Wales", "decimalLon": 153.565757, "decimalLat": -28.380154 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.38 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 3, "stateProvi": "New South Wales", "decimalLon": 153.56106, "decimalLat": -28.389187 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523046, "decimalLat": -28.711473 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 3, "stateProvi": "New South Wales", "decimalLon": 153.555869, "decimalLat": -28.399144 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.519044, "decimalLat": -28.684774 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.685 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.47372, "decimalLat": -28.705379 }, "geometry": { "type": "Point", "coordinates": [ 153.474, -28.705 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.462655, "decimalLat": -28.649473 }, "geometry": { "type": "Point", "coordinates": [ 153.463, -28.649 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43881, "decimalLat": -28.690986 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.691 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 3, "stateProvi": "Queensland", "decimalLon": 152.546448, "decimalLat": -27.452332 }, "geometry": { "type": "Point", "coordinates": [ 152.546, -27.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.489454, "decimalLat": -28.683227 }, "geometry": { "type": "Point", "coordinates": [ 153.489, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.469, "decimalLat": -28.558 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.558 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.511749, "decimalLat": -28.575818 }, "geometry": { "type": "Point", "coordinates": [ 153.512, -28.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399097, "decimalLat": -28.618779 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.619 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25018, "decimalLat": -27.94524 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36164, "decimalLat": -27.9388 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41358, "decimalLat": -28.1729 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.173 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35786, "decimalLat": -27.8455 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37254, "decimalLat": -27.91345 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3906, "decimalLat": -28.10482 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.105 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 3, "stateProvi": "New South Wales", "decimalLon": 150.818197, "decimalLat": -34.107829 }, "geometry": { "type": "Point", "coordinates": [ 150.818, -34.108 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38403, "decimalLat": -27.92163 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45858, "decimalLat": -28.13865 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41358, "decimalLat": -28.1729 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.173 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43924, "decimalLat": -28.18098 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.181 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4478, "decimalLat": -28.09306 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44188, "decimalLat": -28.15658 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 3, "stateProvi": "New South Wales", "decimalLon": 151.783851, "decimalLat": -32.654583 }, "geometry": { "type": "Point", "coordinates": [ 151.784, -32.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32225, "decimalLat": -27.90565 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44682, "decimalLat": -28.15373 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44824, "decimalLat": -28.13205 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23237, "decimalLat": -27.97681 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31347, "decimalLat": -27.83645 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -27.836 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 3, "stateProvi": "New South Wales", "decimalLon": 153.281848, "decimalLat": -28.700834 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.701 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45138, "decimalLat": -28.09988 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4581, "decimalLat": -28.14691 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45096, "decimalLat": -28.09126 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44501, "decimalLat": -28.15635 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31369, "decimalLat": -27.82252 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3667, "decimalLat": -27.94138 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36284, "decimalLat": -27.9338 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3151, "decimalLat": -28.0526 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.053 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30278, "decimalLat": -27.99361 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -27.994 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27948, "decimalLat": -27.97746 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31718, "decimalLat": -28.0203 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.02 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3518, "decimalLat": -28.12957 }, "geometry": { "type": "Point", "coordinates": [ 153.352, -28.13 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.379, "decimalLat": -27.94847 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37116, "decimalLat": -28.11049 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.11 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35794, "decimalLat": -28.10913 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -28.109 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44244, "decimalLat": -28.14341 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37895, "decimalLat": -27.92438 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45095, "decimalLat": -28.09276 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38797, "decimalLat": -27.92223 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 27, "individual": 3, "stateProvi": "New South Wales", "decimalLon": 146.595594, "decimalLat": -34.773481 }, "geometry": { "type": "Point", "coordinates": [ 146.596, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33649, "decimalLat": -27.91354 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45624, "decimalLat": -28.09452 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38301, "decimalLat": -27.9518 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -27.952 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36376, "decimalLat": -27.94078 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35724, "decimalLat": -27.95397 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28072, "decimalLat": -27.91669 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4547, "decimalLat": -28.09374 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2985, "decimalLat": -27.83484 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.835 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35907, "decimalLat": -27.94414 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.944 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37843, "decimalLat": -27.95007 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35408, "decimalLat": -27.92458 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -27.925 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36741, "decimalLat": -27.8373 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.837 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33421, "decimalLat": -27.88961 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32882, "decimalLat": -27.98114 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.981 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36201, "decimalLat": -27.93228 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42004, "decimalLat": -28.17239 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45801, "decimalLat": -28.15173 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.152 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45842, "decimalLat": -28.15651 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37886, "decimalLat": -27.82303 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44881, "decimalLat": -28.09224 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24984, "decimalLat": -27.94529 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32745, "decimalLat": -27.88754 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.888 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41985, "decimalLat": -28.17192 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37321, "decimalLat": -28.11978 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -28.12 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41684, "decimalLat": -28.14475 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4485, "decimalLat": -28.09753 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43018, "decimalLat": -28.12186 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45136, "decimalLat": -28.14145 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23105, "decimalLat": -27.97756 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.978 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41684, "decimalLat": -28.14475 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23213, "decimalLat": -27.97678 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27141, "decimalLat": -27.81168 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.812 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35761, "decimalLat": -27.95648 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.956 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44833, "decimalLat": -28.14119 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36459, "decimalLat": -27.92876 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36625, "decimalLat": -27.93641 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39297, "decimalLat": -27.94401 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -27.944 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38297, "decimalLat": -27.94867 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -27.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43425, "decimalLat": -28.14003 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41027, "decimalLat": -28.14513 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36651, "decimalLat": -27.93037 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32947, "decimalLat": -27.8906 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38697, "decimalLat": -27.94242 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36855, "decimalLat": -28.09108 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4547, "decimalLat": -28.09374 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35641, "decimalLat": -27.93914 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35347, "decimalLat": -28.08102 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -28.081 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20037, "decimalLat": -27.9521 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.952 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45642, "decimalLat": -28.0946 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 3, "stateProvi": "New South Wales", "decimalLon": 153.277428, "decimalLat": -28.59695 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.597 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30492, "decimalLat": -28.00822 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -28.008 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31042, "decimalLat": -28.09885 }, "geometry": { "type": "Point", "coordinates": [ 153.31, -28.099 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43939, "decimalLat": -28.14281 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36146, "decimalLat": -27.93031 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23214, "decimalLat": -27.97718 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44676, "decimalLat": -28.09353 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 2, "stateProvi": "Victoria", "decimalLon": 143.96309, "decimalLat": -38.56543 }, "geometry": { "type": "Point", "coordinates": [ 143.963, -38.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40825, "decimalLat": -28.11806 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32919, "decimalLat": -27.89077 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4422, "decimalLat": -28.14344 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44294, "decimalLat": -28.11454 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43508, "decimalLat": -28.14484 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35944, "decimalLat": -27.81333 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.813 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34392, "decimalLat": -27.95704 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -27.957 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33792, "decimalLat": -28.04836 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -28.048 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32831, "decimalLat": -27.90269 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36205, "decimalLat": -27.93326 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 13, "individual": 2, "stateProvi": "Victoria", "decimalLon": 144.30109, "decimalLat": -37.8004 }, "geometry": { "type": "Point", "coordinates": [ 144.301, -37.8 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41008, "decimalLat": -28.14197 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35785, "decimalLat": -27.95762 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.958 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45492, "decimalLat": -28.14775 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45925, "decimalLat": -28.15054 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3556, "decimalLat": -28.1147 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40634, "decimalLat": -28.17065 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.171 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44968, "decimalLat": -28.10065 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32277, "decimalLat": -27.98518 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.985 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33469, "decimalLat": -28.0349 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.035 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30125, "decimalLat": -27.94657 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42763, "decimalLat": -28.1183 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44162, "decimalLat": -28.16174 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.162 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40717, "decimalLat": -28.15788 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.158 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24633, "decimalLat": -27.92608 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.926 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.46179, "decimalLat": -28.15415 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 2, "stateProvi": "Victoria", "decimalLon": 144.28343, "decimalLat": -38.09929 }, "geometry": { "type": "Point", "coordinates": [ 144.283, -38.099 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2246, "decimalLat": -27.9727 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.973 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35769, "decimalLat": -27.94104 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32951, "decimalLat": -27.78936 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.789 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35641, "decimalLat": -27.93914 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 2, "stateProvi": "Victoria", "decimalLon": 144.43194, "decimalLat": -37.93278 }, "geometry": { "type": "Point", "coordinates": [ 144.432, -37.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32276, "decimalLat": -27.89826 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44069, "decimalLat": -28.10628 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33984, "decimalLat": -28.04147 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -28.041 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45258, "decimalLat": -28.09215 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36818, "decimalLat": -27.92918 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36335, "decimalLat": -27.93507 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.935 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25707, "decimalLat": -27.78611 }, "geometry": { "type": "Point", "coordinates": [ 153.257, -27.786 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 2, "stateProvi": "Victoria", "decimalLon": 144.44001, "decimalLat": -37.4745 }, "geometry": { "type": "Point", "coordinates": [ 144.44, -37.474 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32673, "decimalLat": -27.90635 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44598, "decimalLat": -28.14191 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 2, "stateProvi": "Victoria", "decimalLon": 144.27215, "decimalLat": -37.7679 }, "geometry": { "type": "Point", "coordinates": [ 144.272, -37.768 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43931, "decimalLat": -28.13823 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35724, "decimalLat": -27.94994 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45, "decimalLat": -28.10161 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.102 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31556, "decimalLat": -28.05264 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.053 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33543, "decimalLat": -27.8898 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41448, "decimalLat": -28.14508 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 2, "stateProvi": "Victoria", "decimalLon": 144.27689, "decimalLat": -37.76896 }, "geometry": { "type": "Point", "coordinates": [ 144.277, -37.769 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45011, "decimalLat": -28.14263 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 2, "stateProvi": "Victoria", "decimalLon": 145.23065, "decimalLat": -38.1986 }, "geometry": { "type": "Point", "coordinates": [ 145.231, -38.199 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32885, "decimalLat": -27.89082 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35129, "decimalLat": -28.1362 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43257, "decimalLat": -28.13749 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 2, "stateProvi": "Victoria", "decimalLon": 145.88373, "decimalLat": -36.8805 }, "geometry": { "type": "Point", "coordinates": [ 145.884, -36.88 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44414, "decimalLat": -28.10032 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36206, "decimalLat": -27.94054 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44271, "decimalLat": -28.12904 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.129 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 2, "stateProvi": "Victoria", "decimalLon": 145.9746, "decimalLat": -37.40846 }, "geometry": { "type": "Point", "coordinates": [ 145.975, -37.408 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44413, "decimalLat": -28.09894 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.099 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31454, "decimalLat": -28.05284 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.053 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38932, "decimalLat": -28.13654 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26308, "decimalLat": -27.93726 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36545, "decimalLat": -27.91428 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2277, "decimalLat": -27.88061 }, "geometry": { "type": "Point", "coordinates": [ 153.228, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32476, "decimalLat": -27.84659 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.847 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42661, "decimalLat": -28.17239 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45563, "decimalLat": -28.09583 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28894, "decimalLat": -28.00266 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -28.003 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3567, "decimalLat": -27.93735 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44173, "decimalLat": -28.14379 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23237, "decimalLat": -27.97681 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30665, "decimalLat": -28.03121 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38837, "decimalLat": -28.11427 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -28.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43696, "decimalLat": -28.14211 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36646, "decimalLat": -27.94588 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40699, "decimalLat": -28.17835 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.178 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36191, "decimalLat": -27.93229 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37608, "decimalLat": -27.95767 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.958 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.47834, "decimalLat": -28.15329 }, "geometry": { "type": "Point", "coordinates": [ 153.478, -28.153 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36283, "decimalLat": -27.93379 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37605, "decimalLat": -27.95737 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.957 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 2, "stateProvi": "Victoria", "decimalLon": 148.22037, "decimalLat": -37.17586 }, "geometry": { "type": "Point", "coordinates": [ 148.22, -37.176 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44573, "decimalLat": -28.09629 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35641, "decimalLat": -27.93914 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44079, "decimalLat": -28.10657 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44857, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45666, "decimalLat": -28.13161 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44765, "decimalLat": -28.13028 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.13 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35641, "decimalLat": -27.93914 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44807, "decimalLat": -28.09335 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28764, "decimalLat": -28.00836 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.008 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40521, "decimalLat": -28.13957 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35641, "decimalLat": -27.93914 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44764, "decimalLat": -28.1298 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.13 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39023, "decimalLat": -28.19386 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.194 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42858, "decimalLat": -28.15359 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44474, "decimalLat": -28.09317 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32677, "decimalLat": -27.90528 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.905 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.394, "decimalLat": -28.11841 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42981, "decimalLat": -28.15123 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31093, "decimalLat": -28.0205 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.02 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32938, "decimalLat": -27.89043 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 2, "stateProvi": "Victoria", "decimalLon": 143.95905, "decimalLat": -38.54894 }, "geometry": { "type": "Point", "coordinates": [ 143.959, -38.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 2, "stateProvi": "Victoria", "decimalLon": 145.84446, "decimalLat": -38.39953 }, "geometry": { "type": "Point", "coordinates": [ 145.844, -38.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33031, "decimalLat": -27.84066 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.841 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32991, "decimalLat": -27.91376 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38665, "decimalLat": -27.91929 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36232, "decimalLat": -27.92982 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2323, "decimalLat": -27.97669 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42975, "decimalLat": -28.10867 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.109 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32647, "decimalLat": -27.89901 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26243, "decimalLat": -28.13882 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37073, "decimalLat": -28.17978 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.18 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45274, "decimalLat": -28.09519 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27646, "decimalLat": -27.95675 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.957 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45802, "decimalLat": -28.09371 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36087, "decimalLat": -27.93261 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45563, "decimalLat": -28.14899 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35353, "decimalLat": -28.11488 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23234, "decimalLat": -27.97684 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 2, "stateProvi": "Victoria", "decimalLon": 145.53838, "decimalLat": -37.44442 }, "geometry": { "type": "Point", "coordinates": [ 145.538, -37.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32773, "decimalLat": -28.01261 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.013 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38186, "decimalLat": -27.95417 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41656, "decimalLat": -28.14383 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2971, "decimalLat": -27.94054 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25013, "decimalLat": -27.94517 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35908, "decimalLat": -27.93322 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45382, "decimalLat": -28.13327 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 31, "individual": 2, "stateProvi": "Victoria", "decimalLon": 145.20664, "decimalLat": -37.15096 }, "geometry": { "type": "Point", "coordinates": [ 145.207, -37.151 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44411, "decimalLat": -28.14139 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45671, "decimalLat": -28.14264 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36173, "decimalLat": -27.94308 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29924, "decimalLat": -27.8994 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37869, "decimalLat": -27.94975 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44685, "decimalLat": -28.09631 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31543, "decimalLat": -28.05194 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.052 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32548, "decimalLat": -27.81812 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.818 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23243, "decimalLat": -27.97696 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36204, "decimalLat": -27.93345 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 2, "stateProvi": "Victoria", "decimalLon": 145.45096, "decimalLat": -37.02887 }, "geometry": { "type": "Point", "coordinates": [ 145.451, -37.029 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33165, "decimalLat": -27.92186 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25031, "decimalLat": -27.94543 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 2, "stateProvi": "Victoria", "decimalLon": 143.25603, "decimalLat": -37.07894 }, "geometry": { "type": "Point", "coordinates": [ 143.256, -37.079 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 2, "stateProvi": "Victoria", "decimalLon": 143.9809, "decimalLat": -38.54654 }, "geometry": { "type": "Point", "coordinates": [ 143.981, -38.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35756, "decimalLat": -27.91746 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23213, "decimalLat": -27.97714 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41275, "decimalLat": -28.14422 }, "geometry": { "type": "Point", "coordinates": [ 153.413, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36705, "decimalLat": -27.88047 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.88 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32343, "decimalLat": -27.89017 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43814, "decimalLat": -28.15664 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 2, "stateProvi": "Victoria", "decimalLon": 147.27506, "decimalLat": -38.21961 }, "geometry": { "type": "Point", "coordinates": [ 147.275, -38.22 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23213, "decimalLat": -27.97714 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36313, "decimalLat": -27.93274 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36083, "decimalLat": -27.94023 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44647, "decimalLat": -28.14034 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32131, "decimalLat": -28.00349 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.003 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24751, "decimalLat": -27.95895 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.959 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37219, "decimalLat": -27.91216 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44154, "decimalLat": -28.14926 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40743, "decimalLat": -28.15723 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34432, "decimalLat": -27.97687 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36779, "decimalLat": -27.92954 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30539, "decimalLat": -27.97588 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -27.976 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36612, "decimalLat": -27.92896 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43564, "decimalLat": -28.10715 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41067, "decimalLat": -28.16542 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.165 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 2, "stateProvi": "Victoria", "decimalLon": 146.84502, "decimalLat": -38.45333 }, "geometry": { "type": "Point", "coordinates": [ 146.845, -38.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45892, "decimalLat": -28.15414 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37608, "decimalLat": -27.95767 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33384, "decimalLat": -27.8914 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 2, "stateProvi": "Victoria", "decimalLon": 143.97639, "decimalLat": -38.54833 }, "geometry": { "type": "Point", "coordinates": [ 143.976, -38.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34699, "decimalLat": -28.05669 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.057 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35722, "decimalLat": -27.94998 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37105, "decimalLat": -27.90531 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.905 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35743, "decimalLat": -28.0993 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.099 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31217, "decimalLat": -28.05631 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.056 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45421, "decimalLat": -28.14733 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45246, "decimalLat": -28.08866 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.089 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45264, "decimalLat": -28.09616 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42494, "decimalLat": -28.14647 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 2, "stateProvi": "Victoria", "decimalLon": 145.20702, "decimalLat": -37.14843 }, "geometry": { "type": "Point", "coordinates": [ 145.207, -37.148 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32895, "decimalLat": -27.8953 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.895 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23228, "decimalLat": -27.97664 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39951, "decimalLat": -28.12589 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.126 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32756, "decimalLat": -27.90551 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3747, "decimalLat": -27.91642 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4516, "decimalLat": -28.1417 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4485, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.46384, "decimalLat": -28.15787 }, "geometry": { "type": "Point", "coordinates": [ 153.464, -28.158 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 2, "stateProvi": "Victoria", "decimalLon": 148.28953, "decimalLat": -37.27897 }, "geometry": { "type": "Point", "coordinates": [ 148.29, -37.279 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34121, "decimalLat": -27.85162 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -27.852 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37817, "decimalLat": -28.10509 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.105 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45196, "decimalLat": -28.13866 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.51, "decimalLat": -28.692 }, "geometry": { "type": "Point", "coordinates": [ 153.51, -28.692 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45461, "decimalLat": -28.14747 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33186, "decimalLat": -27.91546 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.46003, "decimalLat": -28.09135 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.417, "decimalLat": -28.735 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.735 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36204, "decimalLat": -27.93223 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35882, "decimalLat": -27.93299 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44864, "decimalLat": -28.15375 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23265, "decimalLat": -27.97694 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45096, "decimalLat": -28.09126 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39294, "decimalLat": -27.94829 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.488, "decimalLat": -28.683 }, "geometry": { "type": "Point", "coordinates": [ 153.488, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44127, "decimalLat": -28.1072 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29973, "decimalLat": -28.00818 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.008 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44678, "decimalLat": -28.15368 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32899, "decimalLat": -27.89085 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19988, "decimalLat": -27.75838 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.758 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35268, "decimalLat": -27.95052 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -27.951 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43906, "decimalLat": -28.15938 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.159 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34013, "decimalLat": -27.91639 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26312, "decimalLat": -27.943 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37441, "decimalLat": -27.93165 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38451, "decimalLat": -27.92048 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45258, "decimalLat": -28.09215 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44558, "decimalLat": -28.1566 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4125, "decimalLat": -28.13778 }, "geometry": { "type": "Point", "coordinates": [ 153.413, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36492, "decimalLat": -27.93812 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31482, "decimalLat": -28.05157 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.052 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28633, "decimalLat": -28.00607 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -28.006 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38246, "decimalLat": -27.95489 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.955 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36695, "decimalLat": -27.94281 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232, "decimalLat": -27.97704 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44948, "decimalLat": -28.10015 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38479, "decimalLat": -27.92206 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35623, "decimalLat": -27.95071 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.951 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4563, "decimalLat": -28.14218 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37504, "decimalLat": -28.10168 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.102 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38585, "decimalLat": -27.91944 }, "geometry": { "type": "Point", "coordinates": [ 153.386, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40645, "decimalLat": -28.15002 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44976, "decimalLat": -28.0939 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45666, "decimalLat": -28.13161 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44141, "decimalLat": -28.10776 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.108 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36162, "decimalLat": -28.10574 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2669, "decimalLat": -27.80436 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -27.804 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3292, "decimalLat": -27.89087 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36136, "decimalLat": -27.93222 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26504, "decimalLat": -27.84465 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45588, "decimalLat": -28.13252 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45887, "decimalLat": -28.12747 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.127 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44418, "decimalLat": -28.12725 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.127 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41959, "decimalLat": -28.14582 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.438, "decimalLat": -28.696 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.696 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22484, "decimalLat": -27.97274 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.973 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35671, "decimalLat": -27.93922 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45036, "decimalLat": -28.1614 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25638, "decimalLat": -27.87723 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.877 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37116, "decimalLat": -28.11049 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.11 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11327, "decimalLat": -27.78103 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -27.781 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38432, "decimalLat": -27.92161 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.544, "decimalLat": -28.724 }, "geometry": { "type": "Point", "coordinates": [ 153.544, -28.724 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43239, "decimalLat": -28.16623 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.166 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.592409, "decimalLat": -28.635669 }, "geometry": { "type": "Point", "coordinates": [ 153.592, -28.636 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44871, "decimalLat": -28.0984 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35761, "decimalLat": -27.95648 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.956 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1797, "decimalLat": -27.82659 }, "geometry": { "type": "Point", "coordinates": [ 153.18, -27.827 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42665, "decimalLat": -28.11894 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.119 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33766, "decimalLat": -28.04833 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -28.048 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36576, "decimalLat": -27.93132 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.931 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2789, "decimalLat": -28.03943 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.039 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45557, "decimalLat": -28.13755 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42763, "decimalLat": -28.1183 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.17721, "decimalLat": -27.8443 }, "geometry": { "type": "Point", "coordinates": [ 153.177, -27.844 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43785, "decimalLat": -28.13884 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4412, "decimalLat": -28.15449 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3781, "decimalLat": -27.94963 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3924, "decimalLat": -27.96163 }, "geometry": { "type": "Point", "coordinates": [ 153.392, -27.962 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3927, "decimalLat": -28.1112 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3837, "decimalLat": -28.10966 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -28.11 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4288, "decimalLat": -28.12374 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.124 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23236, "decimalLat": -27.97723 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35882, "decimalLat": -27.93351 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42641, "decimalLat": -28.17175 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45307, "decimalLat": -28.09602 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35777, "decimalLat": -27.94059 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41632, "decimalLat": -28.1446 }, "geometry": { "type": "Point", "coordinates": [ 153.416, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35935, "decimalLat": -27.93294 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41899, "decimalLat": -28.15105 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41737, "decimalLat": -28.17272 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.173 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37893, "decimalLat": -27.94678 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35894, "decimalLat": -27.93323 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23208, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38173, "decimalLat": -28.09445 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45761, "decimalLat": -28.15191 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.152 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36294, "decimalLat": -27.93386 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.523046, "decimalLat": -28.711473 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39406, "decimalLat": -28.11846 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42047, "decimalLat": -28.15091 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45637, "decimalLat": -28.15341 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.153 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38873, "decimalLat": -27.89279 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45273, "decimalLat": -28.09629 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.592, "decimalLat": -28.636 }, "geometry": { "type": "Point", "coordinates": [ 153.592, -28.636 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23213, "decimalLat": -27.97714 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3265, "decimalLat": -27.90659 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.907 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25677, "decimalLat": -28.041 }, "geometry": { "type": "Point", "coordinates": [ 153.257, -28.041 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29924, "decimalLat": -27.8994 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.934 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.9988 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44526, "decimalLat": -28.0958 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4108, "decimalLat": -28.15066 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38275, "decimalLat": -27.9518 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -27.952 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4589, "decimalLat": -28.1274 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.127 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3729, "decimalLat": -28.13271 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39912, "decimalLat": -28.1425 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44818, "decimalLat": -28.10006 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42763, "decimalLat": -28.1183 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40224, "decimalLat": -27.9273 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -27.927 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89089 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41035, "decimalLat": -28.11724 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.117 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35451, "decimalLat": -28.09323 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4563, "decimalLat": -28.14207 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38426, "decimalLat": -27.92171 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23213, "decimalLat": -27.97714 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.516093, "decimalLat": -28.690229 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37233, "decimalLat": -27.90386 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41242, "decimalLat": -28.15054 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23, "decimalLat": -27.88 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -27.88 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44079, "decimalLat": -28.15006 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23208, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23208, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36404, "decimalLat": -27.95437 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35864, "decimalLat": -27.93322 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41997, "decimalLat": -28.15375 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37308, "decimalLat": -28.10152 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -28.102 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38855, "decimalLat": -27.9222 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30193, "decimalLat": -27.9471 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31494, "decimalLat": -27.90276 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -27.903 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43866, "decimalLat": -28.10438 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.104 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4494, "decimalLat": -28.09985 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36529, "decimalLat": -27.9441 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.944 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44932, "decimalLat": -28.16252 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.163 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34154, "decimalLat": -28.0891 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.089 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26375, "decimalLat": -27.9086 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35031, "decimalLat": -28.04426 }, "geometry": { "type": "Point", "coordinates": [ 153.35, -28.044 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41452, "decimalLat": -28.14426 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3795, "decimalLat": -27.82213 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31225, "decimalLat": -27.99417 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -27.994 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44671, "decimalLat": -28.09288 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41881, "decimalLat": -28.1493 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44682, "decimalLat": -28.09297 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42744, "decimalLat": -28.11837 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45286, "decimalLat": -28.09397 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35774, "decimalLat": -27.94046 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44172, "decimalLat": -28.13246 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37053, "decimalLat": -28.1784 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.178 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4121, "decimalLat": -28.11216 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -28.112 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44827, "decimalLat": -28.14153 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44693, "decimalLat": -28.13724 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.607, "decimalLat": -28.677 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.677 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27616, "decimalLat": -27.933 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32382, "decimalLat": -27.90446 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.409654, "decimalLat": -28.66697 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.513824, "decimalLat": -28.690259 }, "geometry": { "type": "Point", "coordinates": [ 153.514, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35641, "decimalLat": -27.93914 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45007, "decimalLat": -28.16295 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.163 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37814, "decimalLat": -27.94972 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.509, "decimalLat": -28.667 }, "geometry": { "type": "Point", "coordinates": [ 153.509, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44182, "decimalLat": -28.10792 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.108 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44511, "decimalLat": -28.13512 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.135 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3845, "decimalLat": -27.91568 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29836, "decimalLat": -27.99681 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.997 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35285, "decimalLat": -27.96104 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -27.961 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45315, "decimalLat": -28.09377 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38396, "decimalLat": -28.10826 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -28.108 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44162, "decimalLat": -28.16174 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.162 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35063, "decimalLat": -27.94232 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.496, "decimalLat": -28.694 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33469, "decimalLat": -28.03414 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.034 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31534, "decimalLat": -28.05254 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.053 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.514452, "decimalLat": -28.687852 }, "geometry": { "type": "Point", "coordinates": [ 153.514, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43454, "decimalLat": -28.14565 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.17852, "decimalLat": -27.72259 }, "geometry": { "type": "Point", "coordinates": [ 153.179, -27.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44668, "decimalLat": -28.09342 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40767, "decimalLat": -28.11829 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26656, "decimalLat": -28.15684 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37701, "decimalLat": -27.94983 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45258, "decimalLat": -28.09215 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3348, "decimalLat": -27.85229 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -27.852 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23199, "decimalLat": -27.97668 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44863, "decimalLat": -28.09659 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.23244, "decimalLat": -27.97709 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33221, "decimalLat": -27.91951 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45332, "decimalLat": -28.14937 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35898, "decimalLat": -27.93266 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.33129, "decimalLat": -27.90702 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.907 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.51846, "decimalLat": -28.16732 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -28.167 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.18495, "decimalLat": -27.80301 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -27.803 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3343, "decimalLat": -27.90211 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -27.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34969, "decimalLat": -27.94364 }, "geometry": { "type": "Point", "coordinates": [ 153.35, -27.944 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43479, "decimalLat": -28.14639 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44679, "decimalLat": -28.13637 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23212, "decimalLat": -27.97671 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3296, "decimalLat": -27.8905 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.362, "decimalLat": -27.93208 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33592, "decimalLat": -27.89977 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45159, "decimalLat": -28.14178 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.23179, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44827, "decimalLat": -28.09564 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45113, "decimalLat": -28.09963 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35641, "decimalLat": -27.93914 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42917, "decimalLat": -28.1713 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.171 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24183, "decimalLat": -27.97865 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.979 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37937, "decimalLat": -27.92444 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3625, "decimalLat": -27.9335 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26515, "decimalLat": -27.9141 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44221, "decimalLat": -28.14344 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3847, "decimalLat": -27.92286 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.3254, "decimalLat": -27.89417 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.894 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39282, "decimalLat": -28.11443 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39686, "decimalLat": -28.13868 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45187, "decimalLat": -28.09208 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35641, "decimalLat": -27.93914 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26375, "decimalLat": -27.9086 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44966, "decimalLat": -28.09881 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.099 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23208, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34124, "decimalLat": -27.91916 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44996, "decimalLat": -28.14799 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3287, "decimalLat": -27.8908 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35825, "decimalLat": -27.94037 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41626, "decimalLat": -28.14476 }, "geometry": { "type": "Point", "coordinates": [ 153.416, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44438, "decimalLat": -28.09448 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32554, "decimalLat": -27.81834 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.818 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35381, "decimalLat": -27.93491 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -27.935 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37368, "decimalLat": -27.94498 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38076, "decimalLat": -27.93981 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32926, "decimalLat": -27.89073 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45266, "decimalLat": -28.09469 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45347, "decimalLat": -28.09237 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36226, "decimalLat": -27.93294 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.35667, "decimalLat": -27.93917 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36188, "decimalLat": -27.93202 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45037, "decimalLat": -28.14905 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32276, "decimalLat": -27.89826 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45287, "decimalLat": -28.11771 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40435, "decimalLat": -28.13412 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.134 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37498, "decimalLat": -27.91366 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37483, "decimalLat": -27.87788 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.878 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44653, "decimalLat": -28.14043 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30278, "decimalLat": -27.99361 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -27.994 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38625, "decimalLat": -27.91729 }, "geometry": { "type": "Point", "coordinates": [ 153.386, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 18, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44699, "decimalLat": -28.13578 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23208, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43236, "decimalLat": -28.16536 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.165 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35647, "decimalLat": -27.93742 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44929, "decimalLat": -28.09917 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45949, "decimalLat": -28.14835 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2709, "decimalLat": -28.1496 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36396, "decimalLat": -27.93762 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41756, "decimalLat": -28.15271 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -28.153 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35847, "decimalLat": -27.92534 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.925 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31154, "decimalLat": -28.0156 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.016 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43366, "decimalLat": -28.16871 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.169 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29647, "decimalLat": -27.91708 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34365, "decimalLat": -27.9054 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -27.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34029, "decimalLat": -27.91545 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38526, "decimalLat": -28.11069 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36308, "decimalLat": -27.93374 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2321, "decimalLat": -27.97717 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36086, "decimalLat": -27.93262 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.23163, "decimalLat": -27.97732 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45754, "decimalLat": -28.09904 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38959, "decimalLat": -28.10609 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37545, "decimalLat": -27.95733 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.957 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32875, "decimalLat": -27.89041 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44518, "decimalLat": -28.09512 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42467, "decimalLat": -28.12324 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.123 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36301, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41864, "decimalLat": -28.17244 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45331, "decimalLat": -28.09382 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45678, "decimalLat": -28.0946 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37896, "decimalLat": -27.82299 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36204, "decimalLat": -27.93223 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37969, "decimalLat": -27.91168 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25157, "decimalLat": -27.78825 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.788 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4516, "decimalLat": -28.09952 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27554, "decimalLat": -27.91164 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35654, "decimalLat": -27.93578 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35647, "decimalLat": -27.93738 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31489, "decimalLat": -28.05246 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.052 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36659, "decimalLat": -27.92919 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25973, "decimalLat": -27.96183 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.962 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45034, "decimalLat": -28.14406 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36689, "decimalLat": -27.88066 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43985, "decimalLat": -28.13751 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45116, "decimalLat": -28.1002 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.33959, "decimalLat": -27.94432 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -27.944 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32678, "decimalLat": -27.90388 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32938, "decimalLat": -27.89044 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4527, "decimalLat": -28.09587 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37432, "decimalLat": -28.10212 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -28.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27827, "decimalLat": -27.99765 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.998 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.17852, "decimalLat": -27.72259 }, "geometry": { "type": "Point", "coordinates": [ 153.179, -27.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37186, "decimalLat": -27.94479 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40615, "decimalLat": -28.16988 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.17 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23137, "decimalLat": -27.79644 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.796 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.4516, "decimalLat": -28.0915 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3593, "decimalLat": -27.93111 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.931 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36021, "decimalLat": -27.93644 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40568, "decimalLat": -28.15073 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34054, "decimalLat": -27.97696 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44846, "decimalLat": -28.09752 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31501, "decimalLat": -28.0135 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.013 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37864, "decimalLat": -27.95215 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.952 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24278, "decimalLat": -27.7588 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.759 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44301, "decimalLat": -28.14405 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35767, "decimalLat": -27.94113 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44778, "decimalLat": -28.09659 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44935, "decimalLat": -28.09543 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33755, "decimalLat": -28.15675 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39192, "decimalLat": -28.11375 }, "geometry": { "type": "Point", "coordinates": [ 153.392, -28.114 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43921, "decimalLat": -28.109 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.109 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45258, "decimalLat": -28.09215 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45157, "decimalLat": -28.1609 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.406, "decimalLat": -28.17066 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.171 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45198, "decimalLat": -28.13876 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36375, "decimalLat": -27.93359 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23215, "decimalLat": -27.97727 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4485, "decimalLat": -28.09658 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31622, "decimalLat": -27.89589 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -27.896 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35915, "decimalLat": -27.93366 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32853, "decimalLat": -27.88404 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.884 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23232, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3025, "decimalLat": -27.93533 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -27.935 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45081, "decimalLat": -28.16152 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.162 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45666, "decimalLat": -28.13161 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3954, "decimalLat": -28.11497 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39142, "decimalLat": -28.13365 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.134 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42779, "decimalLat": -28.17266 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.173 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35341, "decimalLat": -27.95034 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32894, "decimalLat": -27.89069 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4237, "decimalLat": -28.14205 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44892, "decimalLat": -28.09392 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36543, "decimalLat": -27.93422 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4347, "decimalLat": -28.11915 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.119 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45266, "decimalLat": -28.09505 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35931, "decimalLat": -27.93383 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37074, "decimalLat": -27.92999 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42882, "decimalLat": -28.153 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.153 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32737, "decimalLat": -27.85055 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.851 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35715, "decimalLat": -27.94158 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 26, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4459, "decimalLat": -28.09534 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30296, "decimalLat": -28.00711 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.007 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27078, "decimalLat": -28.14963 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39788, "decimalLat": -28.11403 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.114 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35957, "decimalLat": -27.93052 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.931 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43252, "decimalLat": -28.16138 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37308, "decimalLat": -28.10152 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -28.102 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36322, "decimalLat": -27.83294 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44924, "decimalLat": -28.0959 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40647, "decimalLat": -28.14504 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45004, "decimalLat": -28.14942 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23236, "decimalLat": -27.97723 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43625, "decimalLat": -28.16472 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.165 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38622, "decimalLat": -27.94531 }, "geometry": { "type": "Point", "coordinates": [ 153.386, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.34857, "decimalLat": -27.84195 }, "geometry": { "type": "Point", "coordinates": [ 153.349, -27.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31894, "decimalLat": -28.09677 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45753, "decimalLat": -28.13302 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.388, "decimalLat": -27.92198 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36648, "decimalLat": -27.92932 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32276, "decimalLat": -27.89826 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44934, "decimalLat": -28.09741 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42843, "decimalLat": -28.15723 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45549, "decimalLat": -28.13969 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37935, "decimalLat": -27.82215 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36409, "decimalLat": -28.08836 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.088 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35305, "decimalLat": -27.84091 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -27.841 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23208, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32944, "decimalLat": -27.89057 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44779, "decimalLat": -28.10167 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.102 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23279, "decimalLat": -27.97698 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.38711, "decimalLat": -27.91517 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36275, "decimalLat": -27.94024 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27074, "decimalLat": -28.19898 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -28.199 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31693, "decimalLat": -28.03325 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.033 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40471, "decimalLat": -28.16766 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.168 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44855, "decimalLat": -28.0966 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.39602, "decimalLat": -28.10008 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35883, "decimalLat": -27.94253 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45793, "decimalLat": -28.12792 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.128 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44912, "decimalLat": -28.09877 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.099 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2571, "decimalLat": -27.997 }, "geometry": { "type": "Point", "coordinates": [ 153.257, -27.997 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35755, "decimalLat": -27.94091 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24637, "decimalLat": -27.99038 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.99 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36295, "decimalLat": -27.9339 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45569, "decimalLat": -28.09375 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26016, "decimalLat": -27.99819 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.998 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31133, "decimalLat": -28.02996 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.03 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35871, "decimalLat": -27.93991 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38792, "decimalLat": -28.11884 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -28.119 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44653, "decimalLat": -28.14043 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3291, "decimalLat": -27.9205 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35793, "decimalLat": -27.94102 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4464, "decimalLat": -28.14029 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32302, "decimalLat": -27.89009 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.16246, "decimalLat": -27.94161 }, "geometry": { "type": "Point", "coordinates": [ 153.162, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37631, "decimalLat": -27.94241 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3039, "decimalLat": -27.9124 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4486, "decimalLat": -28.09482 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28917, "decimalLat": -27.91948 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45262, "decimalLat": -28.09459 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30909, "decimalLat": -27.83556 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -27.836 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45022, "decimalLat": -28.14862 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36113, "decimalLat": -27.87761 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.878 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37608, "decimalLat": -27.95767 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.958 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25001, "decimalLat": -27.9453 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45493, "decimalLat": -28.09059 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45226, "decimalLat": -28.09511 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32928, "decimalLat": -27.89071 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.43337, "decimalLat": -28.13627 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45256, "decimalLat": -28.09198 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27024, "decimalLat": -27.96355 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.964 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32808, "decimalLat": -27.91668 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45204, "decimalLat": -28.13877 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31618, "decimalLat": -28.00356 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.004 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36734, "decimalLat": -27.88066 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.3418, "decimalLat": -27.9091 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37057, "decimalLat": -27.83744 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.837 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33622, "decimalLat": -27.85175 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -27.852 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23213, "decimalLat": -27.97714 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32579, "decimalLat": -27.81852 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41598, "decimalLat": -28.13128 }, "geometry": { "type": "Point", "coordinates": [ 153.416, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45268, "decimalLat": -28.09161 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23276, "decimalLat": -27.97699 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44881, "decimalLat": -28.16735 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.167 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32885, "decimalLat": -27.89085 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4529, "decimalLat": -28.09624 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44222, "decimalLat": -28.14347 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32702, "decimalLat": -27.91863 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23645, "decimalLat": -27.86866 }, "geometry": { "type": "Point", "coordinates": [ 153.236, -27.869 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36719, "decimalLat": -27.94374 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.944 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44928, "decimalLat": -28.09448 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44807, "decimalLat": -28.10058 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43918, "decimalLat": -28.15648 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 24, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36118, "decimalLat": -27.93269 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37466, "decimalLat": -27.96225 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.962 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33461, "decimalLat": -27.90383 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36732, "decimalLat": -27.88051 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37099, "decimalLat": -27.84046 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.84 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35317, "decimalLat": -27.96145 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -27.961 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32276, "decimalLat": -27.89826 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39553, "decimalLat": -28.15213 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.152 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2664, "decimalLat": -27.97758 }, "geometry": { "type": "Point", "coordinates": [ 153.266, -27.978 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40553, "decimalLat": -28.15068 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45393, "decimalLat": -28.09398 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36326, "decimalLat": -27.92772 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1934, "decimalLat": -28.16492 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -28.165 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42113, "decimalLat": -28.15022 }, "geometry": { "type": "Point", "coordinates": [ 153.421, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.33199, "decimalLat": -27.91187 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.38495, "decimalLat": -28.11045 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -28.11 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45623, "decimalLat": -28.13141 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44858, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44888, "decimalLat": -28.09731 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35794, "decimalLat": -27.94078 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36473, "decimalLat": -27.94968 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43909, "decimalLat": -28.14391 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45198, "decimalLat": -28.09189 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33412, "decimalLat": -27.89217 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -27.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26688, "decimalLat": -28.00749 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -28.007 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36199, "decimalLat": -27.9335 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41102, "decimalLat": -28.14658 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44858, "decimalLat": -28.10051 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44434, "decimalLat": -28.17921 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.179 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43596, "decimalLat": -28.13085 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3705, "decimalLat": -28.09766 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23081, "decimalLat": -27.97529 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.975 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35657, "decimalLat": -27.93888 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38442, "decimalLat": -27.9163 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36203, "decimalLat": -27.9374 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44851, "decimalLat": -28.09759 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45528, "decimalLat": -28.13221 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30391, "decimalLat": -28.02825 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.028 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44889, "decimalLat": -28.09562 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.362, "decimalLat": -27.93227 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44105, "decimalLat": -28.15 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36646, "decimalLat": -27.94588 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44975, "decimalLat": -28.09272 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27322, "decimalLat": -27.9095 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3698, "decimalLat": -28.17779 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -28.178 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35906, "decimalLat": -27.93273 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38084, "decimalLat": -27.95556 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.956 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44577, "decimalLat": -28.09536 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32991, "decimalLat": -27.91376 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32891, "decimalLat": -27.89089 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32885, "decimalLat": -27.89084 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.18487, "decimalLat": -27.80268 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -27.803 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32892, "decimalLat": -27.89072 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39139, "decimalLat": -28.12417 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.124 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.34332, "decimalLat": -27.90467 }, "geometry": { "type": "Point", "coordinates": [ 153.343, -27.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40513, "decimalLat": -28.10664 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33864, "decimalLat": -27.90829 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -27.908 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3638, "decimalLat": -27.92968 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36064, "decimalLat": -27.93288 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26801, "decimalLat": -28.00691 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.007 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26289, "decimalLat": -27.9997 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -28.0 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32913, "decimalLat": -28.01263 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -28.013 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43944, "decimalLat": -28.15593 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43275, "decimalLat": -28.13729 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3532, "decimalLat": -27.84236 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -27.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.23182, "decimalLat": -27.97723 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32871, "decimalLat": -27.89079 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37926, "decimalLat": -27.82202 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30722, "decimalLat": -28.13694 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39568, "decimalLat": -28.14317 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32686, "decimalLat": -27.92116 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23237, "decimalLat": -27.97682 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4473, "decimalLat": -28.10309 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.103 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37277, "decimalLat": -27.91463 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32475, "decimalLat": -27.88642 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45288, "decimalLat": -28.09398 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29923, "decimalLat": -27.8994 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29543, "decimalLat": -27.97396 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.974 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34813, "decimalLat": -28.1361 }, "geometry": { "type": "Point", "coordinates": [ 153.348, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45488, "decimalLat": -28.13273 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35584, "decimalLat": -27.95659 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.957 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37786, "decimalLat": -28.09507 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30252, "decimalLat": -27.83796 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -27.838 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41977, "decimalLat": -28.12091 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.121 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36873, "decimalLat": -27.8444 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -27.844 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32482, "decimalLat": -27.81762 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.818 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40525, "decimalLat": -28.1156 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35846, "decimalLat": -27.84495 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36414, "decimalLat": -27.92824 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43916, "decimalLat": -28.1561 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3362, "decimalLat": -27.8508 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -27.851 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37298, "decimalLat": -27.93907 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40374, "decimalLat": -28.11082 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43595, "decimalLat": -28.14181 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.405, "decimalLat": -28.13665 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34185, "decimalLat": -27.91035 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43156, "decimalLat": -28.13822 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45089, "decimalLat": -28.0928 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36529, "decimalLat": -27.93477 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.935 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45945, "decimalLat": -28.14856 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.35445, "decimalLat": -28.09133 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45253, "decimalLat": -28.09482 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44686, "decimalLat": -28.09677 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34363, "decimalLat": -27.97053 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -27.971 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45551, "decimalLat": -28.09688 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30336, "decimalLat": -27.92664 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -27.927 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44484, "decimalLat": -28.14002 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40559, "decimalLat": -28.11324 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.113 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.39503, "decimalLat": -28.1237 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.124 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4486, "decimalLat": -28.09482 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31684, "decimalLat": -27.92205 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25959, "decimalLat": -27.9615 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.961 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45559, "decimalLat": -28.13317 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32635, "decimalLat": -27.82498 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.825 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4498, "decimalLat": -28.10036 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44886, "decimalLat": -28.09668 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3439, "decimalLat": -28.10342 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.103 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36399, "decimalLat": -27.93893 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44351, "decimalLat": -28.16319 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.163 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45346, "decimalLat": -28.15274 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.153 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37105, "decimalLat": -27.90531 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.905 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42199, "decimalLat": -28.12155 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37349, "decimalLat": -28.10062 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35771, "decimalLat": -27.94102 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30126, "decimalLat": -27.94656 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32819, "decimalLat": -27.89498 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.895 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40717, "decimalLat": -28.15788 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.158 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.18487, "decimalLat": -27.80268 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -27.803 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44073, "decimalLat": -28.14997 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36311, "decimalLat": -28.13892 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24744, "decimalLat": -28.23783 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -28.238 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35649, "decimalLat": -27.93742 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26271, "decimalLat": -27.895 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -27.895 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4249, "decimalLat": -28.12408 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.124 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38381, "decimalLat": -27.92195 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23214, "decimalLat": -27.97718 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37744, "decimalLat": -27.91825 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45269, "decimalLat": -28.09119 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44836, "decimalLat": -28.13773 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33907, "decimalLat": -27.92534 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -27.925 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44816, "decimalLat": -28.09758 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3723, "decimalLat": -28.11761 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31272, "decimalLat": -27.91928 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31243, "decimalLat": -28.03485 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.035 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44446, "decimalLat": -28.09538 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31443, "decimalLat": -28.05237 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.052 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2795, "decimalLat": -27.95812 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -27.958 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33994, "decimalLat": -27.91967 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32758, "decimalLat": -27.82305 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33969, "decimalLat": -27.85565 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -27.856 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43459, "decimalLat": -28.12518 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.125 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23245, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35692, "decimalLat": -27.9379 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24042, "decimalLat": -27.94112 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.31612, "decimalLat": -28.02108 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.021 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44779, "decimalLat": -28.09756 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37907, "decimalLat": -27.91771 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37076, "decimalLat": -28.11037 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.11 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.364, "decimalLat": -27.92938 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44446, "decimalLat": -28.09538 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36514, "decimalLat": -27.93044 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44286, "decimalLat": -28.12935 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.129 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37441, "decimalLat": -27.93165 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32855, "decimalLat": -27.82209 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.822 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36593, "decimalLat": -27.93786 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30124, "decimalLat": -27.92325 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3321, "decimalLat": -27.93192 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36079, "decimalLat": -27.93211 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39329, "decimalLat": -28.10414 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.104 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37997, "decimalLat": -27.93825 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36728, "decimalLat": -27.83187 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.46167, "decimalLat": -28.13965 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42955, "decimalLat": -28.12155 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23236, "decimalLat": -27.97723 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.4417, "decimalLat": -28.1498 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45421, "decimalLat": -28.16052 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32276, "decimalLat": -27.89826 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25913, "decimalLat": -27.83196 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37746, "decimalLat": -27.91915 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25002, "decimalLat": -27.9453 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35788, "decimalLat": -27.95775 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.958 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45258, "decimalLat": -28.09215 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36411, "decimalLat": -27.92826 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36395, "decimalLat": -27.92921 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23214, "decimalLat": -27.97718 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35744, "decimalLat": -27.94077 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38727, "decimalLat": -27.92287 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42632, "decimalLat": -28.14339 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45222, "decimalLat": -28.11949 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.119 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29842, "decimalLat": -27.82783 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35169, "decimalLat": -28.13468 }, "geometry": { "type": "Point", "coordinates": [ 153.352, -28.135 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40853, "decimalLat": -28.11688 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.117 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36496, "decimalLat": -27.93418 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23215, "decimalLat": -27.97718 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25052, "decimalLat": -27.80097 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.801 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.42884, "decimalLat": -28.13654 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4668, "decimalLat": -28.1559 }, "geometry": { "type": "Point", "coordinates": [ 153.467, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32879, "decimalLat": -27.89081 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45036, "decimalLat": -28.14756 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38284, "decimalLat": -27.96245 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -27.962 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.9988 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2516, "decimalLat": -27.78821 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.788 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32928, "decimalLat": -27.8907 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35901, "decimalLat": -27.93284 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32992, "decimalLat": -28.01022 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.01 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36654, "decimalLat": -27.83344 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23213, "decimalLat": -27.97714 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35744, "decimalLat": -27.95121 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.951 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3723, "decimalLat": -27.91103 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.911 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.4516, "decimalLat": -28.09165 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34391, "decimalLat": -27.95375 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33786, "decimalLat": -27.89246 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -27.892 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45004, "decimalLat": -28.14948 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32437, "decimalLat": -27.89572 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -27.896 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2739, "decimalLat": -28.0196 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.02 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36529, "decimalLat": -27.94491 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35133, "decimalLat": -28.12982 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -28.13 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24427, "decimalLat": -27.98532 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.985 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43374, "decimalLat": -28.1442 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43006, "decimalLat": -28.1421 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41716, "decimalLat": -28.14455 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22465, "decimalLat": -27.97229 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.972 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42558, "decimalLat": -28.12976 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.13 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44994, "decimalLat": -28.10079 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38215, "decimalLat": -27.93293 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37895, "decimalLat": -27.8271 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.827 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42396, "decimalLat": -28.12195 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44701, "decimalLat": -28.14034 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36274, "decimalLat": -27.93382 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23213, "decimalLat": -27.97714 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38518, "decimalLat": -27.92135 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45015, "decimalLat": -28.09452 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44195, "decimalLat": -28.10664 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36823, "decimalLat": -27.93023 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.35133, "decimalLat": -28.12982 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -28.13 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41385, "decimalLat": -28.14489 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3714, "decimalLat": -27.90536 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.17976, "decimalLat": -27.83824 }, "geometry": { "type": "Point", "coordinates": [ 153.18, -27.838 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36383, "decimalLat": -27.93449 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42047, "decimalLat": -28.15091 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3673, "decimalLat": -27.8806 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35461, "decimalLat": -28.09298 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44853, "decimalLat": -28.15294 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.153 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35772, "decimalLat": -27.94099 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33996, "decimalLat": -27.91544 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32073, "decimalLat": -28.00957 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.01 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29921, "decimalLat": -27.90009 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4442, "decimalLat": -28.10973 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.11 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37293, "decimalLat": -27.91142 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.911 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25531, "decimalLat": -27.96361 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.964 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37551, "decimalLat": -27.95732 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.957 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37955, "decimalLat": -27.94282 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36222, "decimalLat": -27.84362 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.844 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42322, "decimalLat": -28.12175 }, "geometry": { "type": "Point", "coordinates": [ 153.423, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07899, "decimalLat": -26.50276 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -26.503 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34162, "decimalLat": -27.90885 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38426, "decimalLat": -27.92171 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32846, "decimalLat": -27.89989 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43917, "decimalLat": -28.15611 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36296, "decimalLat": -27.93384 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36199, "decimalLat": -27.93345 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.33123, "decimalLat": -27.88931 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44885, "decimalLat": -28.10104 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37923, "decimalLat": -27.82249 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.822 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37514, "decimalLat": -28.10165 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43933, "decimalLat": -28.15961 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.16 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44649, "decimalLat": -28.13639 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31612, "decimalLat": -28.02113 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.021 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44393, "decimalLat": -28.09513 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43996, "decimalLat": -28.13815 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35507, "decimalLat": -27.92546 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -27.925 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31427, "decimalLat": -28.05249 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.052 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33743, "decimalLat": -27.92015 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39987, "decimalLat": -28.14208 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37385, "decimalLat": -27.92633 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.926 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45872, "decimalLat": -28.12748 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40717, "decimalLat": -28.15788 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.158 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44955, "decimalLat": -28.13738 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2337, "decimalLat": -27.97286 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.973 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.4171, "decimalLat": -28.14477 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45382, "decimalLat": -28.16103 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40422, "decimalLat": -28.13523 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.135 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37869, "decimalLat": -27.92453 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.925 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4118, "decimalLat": -28.16445 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -28.164 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37344, "decimalLat": -27.91371 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34012, "decimalLat": -28.03707 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -28.037 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45627, "decimalLat": -28.09169 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37444, "decimalLat": -27.89756 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36191, "decimalLat": -27.93229 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24345, "decimalLat": -27.9691 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.969 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35467, "decimalLat": -28.09303 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25852, "decimalLat": -27.88884 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.889 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31707, "decimalLat": -27.99281 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -27.993 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42701, "decimalLat": -28.11844 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36191, "decimalLat": -27.93234 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37305, "decimalLat": -28.11981 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -28.12 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37704, "decimalLat": -27.91942 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45355, "decimalLat": -28.12855 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.129 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23212, "decimalLat": -27.97687 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44663, "decimalLat": -28.13657 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43228, "decimalLat": -28.10744 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31074, "decimalLat": -28.02925 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.029 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36228, "decimalLat": -27.84469 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45258, "decimalLat": -28.09494 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35815, "decimalLat": -28.09065 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45258, "decimalLat": -28.09237 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43247, "decimalLat": -28.11482 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32594, "decimalLat": -27.89266 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45918, "decimalLat": -28.14836 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45167, "decimalLat": -28.09147 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45519, "decimalLat": -28.09657 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37609, "decimalLat": -27.83012 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.83 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44857, "decimalLat": -28.09756 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.46023, "decimalLat": -28.16091 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35888, "decimalLat": -27.93353 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35855, "decimalLat": -28.18287 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -28.183 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38257, "decimalLat": -27.92224 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40724, "decimalLat": -28.149301 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35448, "decimalLat": -28.0931 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44359, "decimalLat": -28.13439 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.134 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42467, "decimalLat": -28.12324 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.123 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44427, "decimalLat": -28.14509 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38878, "decimalLat": -27.91577 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32875, "decimalLat": -27.89041 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42954, "decimalLat": -28.16099 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32944, "decimalLat": -27.89097 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32794, "decimalLat": -27.90074 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.901 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.33485, "decimalLat": -27.89071 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42383, "decimalLat": -28.147 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44646, "decimalLat": -28.13718 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36283, "decimalLat": -27.93379 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37551, "decimalLat": -28.10103 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30921, "decimalLat": -27.9821 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -27.982 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44558, "decimalLat": -28.14448 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41089, "decimalLat": -28.14255 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44467, "decimalLat": -28.14506 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34843, "decimalLat": -28.05276 }, "geometry": { "type": "Point", "coordinates": [ 153.348, -28.053 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.3274, "decimalLat": -27.88997 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34108, "decimalLat": -28.03613 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -28.036 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.38486, "decimalLat": -28.21848 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -28.218 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.39568, "decimalLat": -28.14317 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4512, "decimalLat": -28.14151 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45109, "decimalLat": -28.09282 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32824, "decimalLat": -27.92275 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40231, "decimalLat": -28.1151 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29427, "decimalLat": -27.9218 }, "geometry": { "type": "Point", "coordinates": [ 153.294, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45096, "decimalLat": -28.09126 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38479, "decimalLat": -27.92206 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.35133, "decimalLat": -28.12982 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -28.13 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42612, "decimalLat": -28.17195 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32895, "decimalLat": -27.89086 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36203, "decimalLat": -27.9374 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37423, "decimalLat": -27.83347 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26794, "decimalLat": -27.92633 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -27.926 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36305, "decimalLat": -27.94006 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.42101, "decimalLat": -28.15035 }, "geometry": { "type": "Point", "coordinates": [ 153.421, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36278, "decimalLat": -27.93372 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44079, "decimalLat": -28.15442 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4484, "decimalLat": -28.0974 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38294, "decimalLat": -27.92218 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26289, "decimalLat": -27.9997 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -28.0 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40732, "decimalLat": -28.14652 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.411, "decimalLat": -28.14571 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44553, "decimalLat": -28.09438 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37564, "decimalLat": -27.89614 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.41418, "decimalLat": -28.14513 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41684, "decimalLat": -28.14475 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42712, "decimalLat": -28.17278 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.173 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23211, "decimalLat": -27.97748 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43238, "decimalLat": -28.10766 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.108 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42427, "decimalLat": -28.14551 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45106, "decimalLat": -28.13272 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32875, "decimalLat": -27.89041 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36437, "decimalLat": -27.93445 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40274, "decimalLat": -28.11567 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44571, "decimalLat": -28.14359 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45554, "decimalLat": -28.14258 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40286, "decimalLat": -28.11572 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36577, "decimalLat": -27.92987 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45445, "decimalLat": -28.13304 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4411, "decimalLat": -28.14412 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32963, "decimalLat": -28.00988 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.01 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33085, "decimalLat": -27.8441 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.844 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23214, "decimalLat": -27.97718 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36404, "decimalLat": -27.92824 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45527, "decimalLat": -28.13996 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36191, "decimalLat": -27.93234 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41655, "decimalLat": -28.17168 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45436, "decimalLat": -28.14719 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36252, "decimalLat": -27.9372 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44996, "decimalLat": -28.13408 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.134 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43922, "decimalLat": -28.15626 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.434903, "decimalLat": -28.13021 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.13 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41224, "decimalLat": -28.15024 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44589, "decimalLat": -28.09711 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38818, "decimalLat": -28.11802 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.428, "decimalLat": -28.13718 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35687, "decimalLat": -27.8376 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.838 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44557, "decimalLat": -28.09432 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4513, "decimalLat": -28.14173 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.369, "decimalLat": -28.10827 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.108 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36712, "decimalLat": -27.88044 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.88 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2271, "decimalLat": -27.94725 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19185, "decimalLat": -27.77662 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.777 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35911, "decimalLat": -27.93397 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44955, "decimalLat": -28.13743 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45269, "decimalLat": -28.09119 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45579, "decimalLat": -28.13734 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45258, "decimalLat": -28.09215 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3569, "decimalLat": -27.938 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4501, "decimalLat": -28.16037 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.16 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32827, "decimalLat": -27.89512 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.895 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23156, "decimalLat": -27.97707 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45301, "decimalLat": -28.09623 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4485, "decimalLat": -28.09753 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4538, "decimalLat": -28.13315 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44165, "decimalLat": -28.10627 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36565, "decimalLat": -27.93527 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.935 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2738, "decimalLat": -27.8933 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45258, "decimalLat": -28.09215 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35641, "decimalLat": -27.93914 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.23184, "decimalLat": -27.97709 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31995, "decimalLat": -27.90796 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -27.908 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32774, "decimalLat": -27.90648 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23161, "decimalLat": -27.88197 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.882 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32127, "decimalLat": -27.89679 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -27.897 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32794, "decimalLat": -27.90608 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439, "decimalLat": -28.15934 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.159 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23237, "decimalLat": -27.97682 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35787, "decimalLat": -28.12773 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -28.128 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43251, "decimalLat": -28.14173 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.46028, "decimalLat": -28.16122 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26768, "decimalLat": -28.02404 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.024 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3415, "decimalLat": -27.91547 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45196, "decimalLat": -28.0919 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27595, "decimalLat": -27.97768 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.978 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3062, "decimalLat": -28.0563 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.056 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45127, "decimalLat": -28.09972 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23214, "decimalLat": -27.97718 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34046, "decimalLat": -28.15591 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.41483, "decimalLat": -28.14448 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35982, "decimalLat": -28.11239 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -28.112 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23234, "decimalLat": -27.97719 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36542, "decimalLat": -27.9287 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21235, "decimalLat": -27.87215 }, "geometry": { "type": "Point", "coordinates": [ 153.212, -27.872 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31507, "decimalLat": -28.05286 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.053 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25959, "decimalLat": -27.9615 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.961 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41763, "decimalLat": -28.14515 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34186, "decimalLat": -27.91357 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44092, "decimalLat": -28.16148 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45409, "decimalLat": -28.1471 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35794, "decimalLat": -27.94077 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32903, "decimalLat": -27.90296 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.903 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33404, "decimalLat": -27.97477 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -27.975 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40521, "decimalLat": -28.11528 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243, "decimalLat": -27.9807 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.981 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.934 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38264, "decimalLat": -27.91687 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43254, "decimalLat": -28.14227 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44462, "decimalLat": -28.14402 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41949, "decimalLat": -28.12043 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.12 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38344, "decimalLat": -27.92241 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44966, "decimalLat": -28.14839 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.42955, "decimalLat": -28.1572 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30297, "decimalLat": -28.0072 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.007 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2337, "decimalLat": -27.97286 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.973 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40568, "decimalLat": -28.15073 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45157, "decimalLat": -28.16094 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45248, "decimalLat": -28.09622 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45249, "decimalLat": -28.09358 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41959, "decimalLat": -28.14582 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44897, "decimalLat": -28.09584 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44678, "decimalLat": -28.10346 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.103 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45087, "decimalLat": -28.10079 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45157, "decimalLat": -28.16094 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42763, "decimalLat": -28.1183 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37723, "decimalLat": -27.95131 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.951 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3346, "decimalLat": -27.82751 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -27.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39598, "decimalLat": -27.96207 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -27.962 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37315, "decimalLat": -27.94594 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44474, "decimalLat": -28.14669 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31543, "decimalLat": -28.05194 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.052 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45212, "decimalLat": -28.0916 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32276, "decimalLat": -27.89826 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4518, "decimalLat": -28.09178 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3419, "decimalLat": -27.90892 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37061, "decimalLat": -28.18003 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.18 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27263, "decimalLat": -27.78282 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.783 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39701, "decimalLat": -28.10065 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22725, "decimalLat": -27.98992 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.99 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37038, "decimalLat": -27.95072 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -27.951 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42792, "decimalLat": -28.148 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34013, "decimalLat": -27.8008 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -27.801 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30047, "decimalLat": -27.91376 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44825, "decimalLat": -28.1007 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44847, "decimalLat": -28.09914 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.099 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44858, "decimalLat": -28.09745 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37653, "decimalLat": -27.95848 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.958 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36374, "decimalLat": -27.93593 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45914, "decimalLat": -28.14829 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45798, "decimalLat": -28.09371 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.18605, "decimalLat": -27.84148 }, "geometry": { "type": "Point", "coordinates": [ 153.186, -27.841 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43539, "decimalLat": -28.1561 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3665, "decimalLat": -27.9294 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32813, "decimalLat": -27.90312 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.903 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34292, "decimalLat": -28.08967 }, "geometry": { "type": "Point", "coordinates": [ 153.343, -28.09 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32881, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26504, "decimalLat": -27.84465 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36229, "decimalLat": -27.83968 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.84 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37477, "decimalLat": -28.10143 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35466, "decimalLat": -28.10844 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.108 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4578, "decimalLat": -28.14696 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36646, "decimalLat": -27.94588 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44244, "decimalLat": -28.13518 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.135 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39139, "decimalLat": -28.11679 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.117 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35118, "decimalLat": -28.13622 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.42197, "decimalLat": -28.12124 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.121 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2516, "decimalLat": -27.78821 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.788 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32991, "decimalLat": -27.91376 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33817, "decimalLat": -27.89254 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41786, "decimalLat": -28.14452 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38005, "decimalLat": -27.92489 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.925 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31518, "decimalLat": -28.03634 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.036 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32975, "decimalLat": -27.89039 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.18257, "decimalLat": -27.81146 }, "geometry": { "type": "Point", "coordinates": [ 153.183, -27.811 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26009, "decimalLat": -27.9617 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.962 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28814, "decimalLat": -27.99985 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.0 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45853, "decimalLat": -28.09185 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41453, "decimalLat": -28.14507 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33984, "decimalLat": -27.90843 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -27.908 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45761, "decimalLat": -28.14793 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22465, "decimalLat": -27.97229 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.972 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3153, "decimalLat": -28.05131 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.051 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3684, "decimalLat": -27.92989 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36283, "decimalLat": -27.93379 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1815, "decimalLat": -27.80103 }, "geometry": { "type": "Point", "coordinates": [ 153.182, -27.801 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43007, "decimalLat": -28.18059 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.181 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.329, "decimalLat": -27.89084 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44956, "decimalLat": -28.10012 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42955, "decimalLat": -28.12155 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.33826, "decimalLat": -27.91342 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39162, "decimalLat": -28.13645 }, "geometry": { "type": "Point", "coordinates": [ 153.392, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.3447, "decimalLat": -27.95403 }, "geometry": { "type": "Point", "coordinates": [ 153.345, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21846, "decimalLat": -28.00823 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.008 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35914, "decimalLat": -27.93323 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4524, "decimalLat": -28.09609 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32945, "decimalLat": -27.89059 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31526, "decimalLat": -28.02375 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.024 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42629, "decimalLat": -28.17237 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40717, "decimalLat": -28.15788 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.158 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35701, "decimalLat": -27.94203 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32961, "decimalLat": -27.89049 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36605, "decimalLat": -27.87962 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.88 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26644, "decimalLat": -27.84411 }, "geometry": { "type": "Point", "coordinates": [ 153.266, -27.844 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26504, "decimalLat": -27.84465 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37184, "decimalLat": -27.83442 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36272, "decimalLat": -27.94128 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32566, "decimalLat": -27.90878 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23213, "decimalLat": -27.97714 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35915, "decimalLat": -27.93392 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45323, "decimalLat": -28.13815 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36594, "decimalLat": -27.94327 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39987, "decimalLat": -28.14208 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4464, "decimalLat": -28.14046 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36986, "decimalLat": -27.92972 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35904, "decimalLat": -27.93325 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33056, "decimalLat": -27.91688 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35776, "decimalLat": -27.94048 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45609, "decimalLat": -28.13242 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27728, "decimalLat": -27.89666 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.897 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36575, "decimalLat": -27.92991 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26504, "decimalLat": -27.84465 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32938, "decimalLat": -28.0403 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -28.04 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38527, "decimalLat": -27.95392 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32895, "decimalLat": -27.89088 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45258, "decimalLat": -28.09215 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44855, "decimalLat": -28.09753 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36709, "decimalLat": -27.88078 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32926, "decimalLat": -27.91455 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37025, "decimalLat": -27.94636 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33433, "decimalLat": -27.91596 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45139, "decimalLat": -28.09986 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32916, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33467, "decimalLat": -28.03414 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.034 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26249, "decimalLat": -27.89212 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -27.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42706, "decimalLat": -28.15586 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41456, "decimalLat": -28.15063 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44646, "decimalLat": -28.14033 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36512, "decimalLat": -27.92856 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38847, "decimalLat": -27.92163 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41394, "decimalLat": -28.17307 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.173 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36336, "decimalLat": -27.9296 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43395, "decimalLat": -28.12256 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.123 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37099, "decimalLat": -28.11555 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40975, "decimalLat": -28.14202 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45138, "decimalLat": -28.14754 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37038, "decimalLat": -27.95072 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -27.951 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232, "decimalLat": -27.97638 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.976 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36646, "decimalLat": -27.94588 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36709, "decimalLat": -27.88078 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45794, "decimalLat": -28.09643 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45205, "decimalLat": -28.10093 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43975, "decimalLat": -28.14349 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35913, "decimalLat": -27.84212 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28506, "decimalLat": -27.91708 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35795, "decimalLat": -27.94139 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44889, "decimalLat": -28.09719 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31486, "decimalLat": -28.05277 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.053 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3252, "decimalLat": -27.90156 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26009, "decimalLat": -27.99813 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.998 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36395, "decimalLat": -27.92877 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25484, "decimalLat": -27.91806 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32147, "decimalLat": -27.97933 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -27.979 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.23163, "decimalLat": -27.97732 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45876, "decimalLat": -28.14946 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31987, "decimalLat": -28.00608 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.006 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45356, "decimalLat": -28.14864 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39695, "decimalLat": -28.16627 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.166 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42976, "decimalLat": -28.17201 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33126, "decimalLat": -27.84527 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45096, "decimalLat": -28.09126 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36334, "decimalLat": -27.93427 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36415, "decimalLat": -27.87984 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.88 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31625, "decimalLat": -28.02109 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.021 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40512, "decimalLat": -28.11557 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32276, "decimalLat": -27.89826 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44374, "decimalLat": -28.13407 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.134 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39896, "decimalLat": -28.18775 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.24361, "decimalLat": -27.9679 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.968 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28386, "decimalLat": -27.91921 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35952, "decimalLat": -27.95723 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.957 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37047, "decimalLat": -27.9057 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32773, "decimalLat": -28.01278 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.013 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33865, "decimalLat": -27.96761 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -27.968 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35967, "decimalLat": -27.93459 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.935 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36271, "decimalLat": -27.93368 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44734, "decimalLat": -28.1223 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42216, "decimalLat": -28.17152 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23228, "decimalLat": -27.97664 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41769, "decimalLat": -28.11287 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -28.113 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36342, "decimalLat": -27.92977 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29306, "decimalLat": -27.82111 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -27.821 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35864, "decimalLat": -27.93315 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44851, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44787, "decimalLat": -28.10127 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3957, "decimalLat": -27.94862 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -27.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45046, "decimalLat": -28.1463 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24055, "decimalLat": -27.97929 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -27.979 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25713, "decimalLat": -27.83139 }, "geometry": { "type": "Point", "coordinates": [ 153.257, -27.831 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30123, "decimalLat": -27.94804 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4475, "decimalLat": -28.0968 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38733, "decimalLat": -27.91804 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25979, "decimalLat": -27.96147 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.961 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32347, "decimalLat": -27.88931 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27179, "decimalLat": -27.89612 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.25935, "decimalLat": -27.98862 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.989 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45176, "decimalLat": -28.16156 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.162 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29912, "decimalLat": -27.89945 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37827, "decimalLat": -27.92458 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -27.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37608, "decimalLat": -27.95767 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.958 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42614, "decimalLat": -28.14307 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31524, "decimalLat": -28.05198 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.052 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36646, "decimalLat": -27.94588 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34164, "decimalLat": -27.90909 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4529, "decimalLat": -28.13924 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31488, "decimalLat": -28.05202 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.052 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35706, "decimalLat": -27.93385 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41246, "decimalLat": -28.19197 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -28.192 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32875, "decimalLat": -27.89041 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36204, "decimalLat": -27.93348 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32565, "decimalLat": -28.04472 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.045 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41779, "decimalLat": -28.13063 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35804, "decimalLat": -27.91685 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3673, "decimalLat": -27.88137 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32867, "decimalLat": -27.89084 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30086, "decimalLat": -27.83174 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37451, "decimalLat": -27.83611 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.836 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44459, "decimalLat": -28.12597 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.126 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4509, "decimalLat": -28.16155 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.162 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36631, "decimalLat": -27.83927 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.839 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43276, "decimalLat": -28.16731 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.167 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27089, "decimalLat": -27.79785 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.798 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40045, "decimalLat": -28.12506 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38525, "decimalLat": -27.94813 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32499, "decimalLat": -27.82381 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42804, "decimalLat": -28.1584 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.158 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27639, "decimalLat": -27.84951 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.85 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3567, "decimalLat": -27.93735 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34865, "decimalLat": -28.07878 }, "geometry": { "type": "Point", "coordinates": [ 153.349, -28.079 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36608, "decimalLat": -27.94852 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41151, "decimalLat": -28.14418 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23208, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44662, "decimalLat": -28.09687 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.3418, "decimalLat": -27.91379 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.29552, "decimalLat": -27.84022 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -27.84 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45435, "decimalLat": -28.09421 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26763, "decimalLat": -28.00569 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.006 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36542, "decimalLat": -27.94484 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2679, "decimalLat": -28.00612 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.006 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36703, "decimalLat": -27.88055 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43236, "decimalLat": -28.16451 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.165 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45112, "decimalLat": -28.09275 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44412, "decimalLat": -28.14274 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37278, "decimalLat": -27.90036 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38801, "decimalLat": -27.92212 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45118, "decimalLat": -28.09276 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40471, "decimalLat": -28.16766 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.168 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37246, "decimalLat": -28.1102 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -28.11 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32919, "decimalLat": -27.89077 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35069, "decimalLat": -27.9571 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -27.957 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45266, "decimalLat": -28.09494 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45157, "decimalLat": -28.09203 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41394, "decimalLat": -28.1449 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45666, "decimalLat": -28.13161 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37744, "decimalLat": -27.91762 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35649, "decimalLat": -27.93742 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40948, "decimalLat": -28.15705 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34288, "decimalLat": -27.9775 }, "geometry": { "type": "Point", "coordinates": [ 153.343, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32856, "decimalLat": -27.89873 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40407, "decimalLat": -28.10943 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.109 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39843, "decimalLat": -28.10656 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36704, "decimalLat": -27.88062 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45779, "decimalLat": -28.15114 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39695, "decimalLat": -28.16627 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.166 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29333, "decimalLat": -27.89473 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -27.895 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36701, "decimalLat": -27.88054 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23208, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33159, "decimalLat": -27.83448 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45514, "decimalLat": -28.13597 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42698, "decimalLat": -28.11819 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44931, "decimalLat": -28.13941 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32614, "decimalLat": -27.89701 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.897 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37091, "decimalLat": -27.94591 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.33957, "decimalLat": -27.91534 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23208, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32014, "decimalLat": -28.12022 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.12 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4361, "decimalLat": -28.15629 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34777, "decimalLat": -28.12116 }, "geometry": { "type": "Point", "coordinates": [ 153.348, -28.121 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3155, "decimalLat": -28.02163 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.022 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41866, "decimalLat": -28.11442 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36291, "decimalLat": -27.93402 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45191, "decimalLat": -28.16137 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43859, "decimalLat": -28.15513 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.155 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37509, "decimalLat": -27.91667 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37608, "decimalLat": -27.95767 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44471, "decimalLat": -28.14485 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26504, "decimalLat": -27.84465 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3354, "decimalLat": -27.84138 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -27.841 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26734, "decimalLat": -27.9711 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -27.971 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44462, "decimalLat": -28.14402 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44007, "decimalLat": -28.10114 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44308, "decimalLat": -28.14407 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40594, "decimalLat": -28.17069 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.171 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37727, "decimalLat": -27.83426 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23214, "decimalLat": -27.97718 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45533, "decimalLat": -28.08993 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.09 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44904, "decimalLat": -28.09765 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44923, "decimalLat": -28.09738 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32885, "decimalLat": -27.89084 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32637, "decimalLat": -28.01147 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.011 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.25033, "decimalLat": -27.94549 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34156, "decimalLat": -27.91194 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.409, "decimalLat": -28.14713 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44761, "decimalLat": -28.09343 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36137, "decimalLat": -27.93762 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37309, "decimalLat": -27.941 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36972, "decimalLat": -27.83329 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36286, "decimalLat": -27.92259 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3863, "decimalLat": -27.92265 }, "geometry": { "type": "Point", "coordinates": [ 153.386, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3741, "decimalLat": -27.8955 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.895 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42743, "decimalLat": -28.11844 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45116, "decimalLat": -28.14154 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23232, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.329, "decimalLat": -27.89084 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29653, "decimalLat": -28.01629 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.016 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37914, "decimalLat": -27.95784 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34251, "decimalLat": -28.08952 }, "geometry": { "type": "Point", "coordinates": [ 153.343, -28.09 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44959, "decimalLat": -28.14893 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32729, "decimalLat": -27.92175 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45169, "decimalLat": -28.09149 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24286, "decimalLat": -27.9673 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.967 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27805, "decimalLat": -27.99201 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.992 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36824, "decimalLat": -27.92977 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45116, "decimalLat": -28.09962 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44844, "decimalLat": -28.10061 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32806, "decimalLat": -27.9166 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37404, "decimalLat": -27.95429 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38968, "decimalLat": -28.1563 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44503, "decimalLat": -28.14493 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44854, "decimalLat": -28.09752 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35547, "decimalLat": -28.11472 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42586, "decimalLat": -28.14297 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37296, "decimalLat": -28.09948 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -28.099 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43741, "decimalLat": -28.10744 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44283, "decimalLat": -28.13988 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45105, "decimalLat": -28.16078 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4549, "decimalLat": -28.16407 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.164 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44507, "decimalLat": -28.14472 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40717, "decimalLat": -28.17159 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37106, "decimalLat": -27.96045 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.96 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.24998, "decimalLat": -27.9457 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45295, "decimalLat": -28.09804 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40706, "decimalLat": -28.17161 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4529, "decimalLat": -28.09658 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21218, "decimalLat": -27.87044 }, "geometry": { "type": "Point", "coordinates": [ 153.212, -27.87 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36086, "decimalLat": -27.93665 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33061, "decimalLat": -27.92 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45019, "decimalLat": -28.14659 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37014, "decimalLat": -27.95924 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -27.959 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37006, "decimalLat": -27.91654 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41684, "decimalLat": -28.14475 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39209, "decimalLat": -28.12213 }, "geometry": { "type": "Point", "coordinates": [ 153.392, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45159, "decimalLat": -28.09179 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.31657, "decimalLat": -27.89265 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.22473, "decimalLat": -27.9728 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.973 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.3598, "decimalLat": -27.95712 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.957 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36434, "decimalLat": -27.92826 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.353, "decimalLat": -27.84168 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -27.842 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33613, "decimalLat": -27.89343 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40383, "decimalLat": -28.10353 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.104 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25597, "decimalLat": -27.82505 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38787, "decimalLat": -27.9224 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45599, "decimalLat": -28.14132 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 152.99413, "decimalLat": -27.36775 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -27.368 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44167, "decimalLat": -28.14878 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31529, "decimalLat": -28.0146 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.015 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45251, "decimalLat": -28.09144 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37893, "decimalLat": -27.82226 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.822 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31673, "decimalLat": -27.89406 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -27.894 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44566, "decimalLat": -28.10597 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26538, "decimalLat": -28.0085 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -28.008 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36103, "decimalLat": -27.93888 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45167, "decimalLat": -28.09578 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36561, "decimalLat": -27.93007 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36203, "decimalLat": -27.9374 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4588, "decimalLat": -28.12745 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.127 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42597, "decimalLat": -28.14341 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44907, "decimalLat": -28.09506 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39003, "decimalLat": -28.12055 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.121 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42314, "decimalLat": -28.12289 }, "geometry": { "type": "Point", "coordinates": [ 153.423, -28.123 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42446, "decimalLat": -28.17778 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.178 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43778, "decimalLat": -28.10579 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44039, "decimalLat": -28.13136 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34704, "decimalLat": -28.1213 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.121 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23232, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44909, "decimalLat": -28.09476 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23236, "decimalLat": -27.97723 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.458189, "decimalLat": -28.15469 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.155 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40513, "decimalLat": -28.15051 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.42471, "decimalLat": -28.14595 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33707, "decimalLat": -27.89318 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.38859, "decimalLat": -27.9165 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3658, "decimalLat": -27.93012 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26985, "decimalLat": -28.04063 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -28.041 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44842, "decimalLat": -28.14374 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4485, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33391, "decimalLat": -27.84105 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -27.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33853, "decimalLat": -28.0503 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.05 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27687, "decimalLat": -27.95861 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.959 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2516, "decimalLat": -27.78821 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.788 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39253, "decimalLat": -28.1154 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44877, "decimalLat": -28.09792 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232, "decimalLat": -27.97704 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36201, "decimalLat": -27.93348 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36349, "decimalLat": -28.11652 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -28.117 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31524, "decimalLat": -28.05198 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.052 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40909, "decimalLat": -28.15403 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45479, "decimalLat": -28.13359 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.134 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3346, "decimalLat": -28.03412 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.034 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41855, "decimalLat": -28.1301 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.13 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44439, "decimalLat": -28.16476 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.165 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38803, "decimalLat": -27.92203 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23213, "decimalLat": -27.97714 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32783, "decimalLat": -27.91206 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32873, "decimalLat": -27.8908 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43247, "decimalLat": -28.11482 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2895, "decimalLat": -27.96255 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -27.963 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23214, "decimalLat": -27.97718 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45618, "decimalLat": -28.09204 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34544, "decimalLat": -28.13962 }, "geometry": { "type": "Point", "coordinates": [ 153.345, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44981, "decimalLat": -28.10001 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45697, "decimalLat": -28.13173 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32888, "decimalLat": -27.89534 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.895 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4482, "decimalLat": -28.13977 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4485, "decimalLat": -28.09753 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32786, "decimalLat": -27.9064 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23162, "decimalLat": -27.97709 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35751, "decimalLat": -27.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41449, "decimalLat": -28.15916 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.159 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36717, "decimalLat": -27.94383 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.944 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.46368, "decimalLat": -28.15837 }, "geometry": { "type": "Point", "coordinates": [ 153.464, -28.158 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37444, "decimalLat": -27.94289 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23232, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45556, "decimalLat": -28.09206 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.335, "decimalLat": -28.00126 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.001 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45691, "decimalLat": -28.1494 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43284, "decimalLat": -28.13694 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27214, "decimalLat": -27.94323 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.33206, "decimalLat": -27.90524 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -27.905 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37138, "decimalLat": -27.90543 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43292, "decimalLat": -28.13659 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37127, "decimalLat": -27.96743 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.967 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36409, "decimalLat": -27.92824 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32903, "decimalLat": -27.90296 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.903 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43301, "decimalLat": -28.17141 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.171 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44447, "decimalLat": -28.14187 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23213, "decimalLat": -27.97714 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44869, "decimalLat": -28.09847 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36571, "decimalLat": -27.9302 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45246, "decimalLat": -28.09528 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25002, "decimalLat": -27.9453 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33684, "decimalLat": -27.91673 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4493, "decimalLat": -28.09843 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37469, "decimalLat": -27.91432 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39488, "decimalLat": -27.94723 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35951, "decimalLat": -27.93511 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.935 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45124, "decimalLat": -28.09271 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44578, "decimalLat": -28.09617 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31039, "decimalLat": -28.02084 }, "geometry": { "type": "Point", "coordinates": [ 153.31, -28.021 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33247, "decimalLat": -27.89486 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -27.895 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4417, "decimalLat": -28.14965 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.40526, "decimalLat": -28.11568 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45491, "decimalLat": -28.11891 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.119 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38295, "decimalLat": -28.16483 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -28.165 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44685, "decimalLat": -28.09631 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.43248, "decimalLat": -28.16682 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.167 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.35905, "decimalLat": -27.93281 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36292, "decimalLat": -27.93387 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34244, "decimalLat": -27.909 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23232, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4483, "decimalLat": -28.09204 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35737, "decimalLat": -27.93354 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45506, "decimalLat": -28.09381 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36212, "decimalLat": -27.94931 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44447, "decimalLat": -28.09539 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44227, "decimalLat": -28.14977 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44217, "decimalLat": -28.14328 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23212, "decimalLat": -27.97687 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44847, "decimalLat": -28.09756 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3572, "decimalLat": -27.94997 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32885, "decimalLat": -27.89071 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44528, "decimalLat": -28.13568 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32792, "decimalLat": -27.92599 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.926 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41677, "decimalLat": -28.17248 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25972, "decimalLat": -27.96181 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.962 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41684, "decimalLat": -28.14475 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31591, "decimalLat": -27.89911 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23214, "decimalLat": -27.97718 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28905, "decimalLat": -27.91605 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38526, "decimalLat": -28.11069 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45262, "decimalLat": -28.09581 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44649, "decimalLat": -28.14033 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28906, "decimalLat": -27.88021 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -27.88 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37492, "decimalLat": -27.94742 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45589, "decimalLat": -28.09196 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40856, "decimalLat": -28.17153 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38258, "decimalLat": -27.95157 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -27.952 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27836, "decimalLat": -28.01587 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.016 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23183, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32579, "decimalLat": -27.89689 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.897 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3818, "decimalLat": -27.90571 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44816, "decimalLat": -28.09729 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35865, "decimalLat": -27.95417 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44401, "decimalLat": -28.1247 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.125 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36572, "decimalLat": -27.92994 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45224, "decimalLat": -28.09592 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45592, "decimalLat": -28.147343 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41353, "decimalLat": -28.14489 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26249, "decimalLat": -27.89212 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -27.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3597, "decimalLat": -28.12929 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -28.129 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44746, "decimalLat": -28.09334 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35905, "decimalLat": -27.93309 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44653, "decimalLat": -28.14043 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33185, "decimalLat": -27.91612 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40825, "decimalLat": -28.11806 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3387, "decimalLat": -27.909 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4186, "decimalLat": -28.17243 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39295, "decimalLat": -28.11479 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36162, "decimalLat": -27.93914 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37325, "decimalLat": -27.91508 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32921, "decimalLat": -27.89091 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.388, "decimalLat": -27.92203 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45121, "decimalLat": -28.16161 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.162 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45417, "decimalLat": -28.13687 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.42763, "decimalLat": -28.1183 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41765, "decimalLat": -28.14823 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37597, "decimalLat": -27.95762 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.958 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37523, "decimalLat": -28.10174 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.102 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.41025, "decimalLat": -28.11454 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243, "decimalLat": -27.9807 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.981 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44649, "decimalLat": -28.09226 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37323, "decimalLat": -27.94694 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36646, "decimalLat": -27.94588 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23226, "decimalLat": -27.97674 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40378, "decimalLat": -28.11811 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.3322, "decimalLat": -27.84971 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -27.85 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33418, "decimalLat": -27.90943 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44946, "decimalLat": -28.10007 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36796, "decimalLat": -27.94576 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35786, "decimalLat": -27.94111 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41408, "decimalLat": -28.14496 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44816, "decimalLat": -28.09758 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33553, "decimalLat": -27.89136 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.46025, "decimalLat": -28.12775 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.128 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24099, "decimalLat": -28.01874 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -28.019 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32522, "decimalLat": -27.92134 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.921 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44562, "decimalLat": -28.10439 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.104 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37704, "decimalLat": -27.91935 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33095, "decimalLat": -27.91699 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43663, "decimalLat": -28.13322 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45849, "decimalLat": -28.15232 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.152 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33488, "decimalLat": -28.16194 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.162 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45248, "decimalLat": -28.09169 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35638, "decimalLat": -27.93998 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38215, "decimalLat": -27.93293 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.40407, "decimalLat": -28.10969 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.11 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44482, "decimalLat": -28.10059 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36501, "decimalLat": -27.92852 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45098, "decimalLat": -28.09258 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38215, "decimalLat": -27.93293 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41062, "decimalLat": -28.15064 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40739, "decimalLat": -28.10852 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.109 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44946, "decimalLat": -28.09895 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.099 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37785, "decimalLat": -27.91817 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44973, "decimalLat": -28.13777 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27546, "decimalLat": -27.99418 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.994 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.421, "decimalLat": -28.12272 }, "geometry": { "type": "Point", "coordinates": [ 153.421, -28.123 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22911, "decimalLat": -27.89926 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44747, "decimalLat": -28.15541 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.155 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43312, "decimalLat": -28.13655 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3748, "decimalLat": -27.83649 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.836 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23173, "decimalLat": -27.88411 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.884 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45192, "decimalLat": -28.09205 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44973, "decimalLat": -28.13771 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37222, "decimalLat": -27.9075 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.907 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30188, "decimalLat": -27.91343 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36733, "decimalLat": -27.88062 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36836, "decimalLat": -27.8439 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.844 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32819, "decimalLat": -27.89498 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.895 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.33469, "decimalLat": -28.0349 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.035 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37319, "decimalLat": -27.9548 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.955 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45015, "decimalLat": -28.10091 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38276, "decimalLat": -27.95391 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43926, "decimalLat": -28.14409 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32875, "decimalLat": -27.89041 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44735, "decimalLat": -28.14824 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36203, "decimalLat": -27.9374 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23808, "decimalLat": -27.94441 }, "geometry": { "type": "Point", "coordinates": [ 153.238, -27.944 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45764, "decimalLat": -28.14793 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32884, "decimalLat": -27.89084 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36221, "decimalLat": -27.9325 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22833, "decimalLat": -27.97202 }, "geometry": { "type": "Point", "coordinates": [ 153.228, -27.972 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36845, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3623, "decimalLat": -27.94031 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32576, "decimalLat": -27.81847 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33138, "decimalLat": -27.88964 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25052, "decimalLat": -27.78838 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.788 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45248, "decimalLat": -28.09469 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36412, "decimalLat": -27.92824 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36203, "decimalLat": -27.93209 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35265, "decimalLat": -27.94504 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3295, "decimalLat": -27.8909 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4369, "decimalLat": -28.10735 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35951, "decimalLat": -27.93511 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.935 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3323, "decimalLat": -27.84479 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32795, "decimalLat": -27.90609 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43019, "decimalLat": -28.18014 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.18 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41676, "decimalLat": -28.15232 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.152 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45096, "decimalLat": -28.09126 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45699, "decimalLat": -28.13175 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.46355, "decimalLat": -28.1586 }, "geometry": { "type": "Point", "coordinates": [ 153.464, -28.159 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39841, "decimalLat": -28.10645 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.05084, "decimalLat": -28.02423 }, "geometry": { "type": "Point", "coordinates": [ 153.051, -28.024 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45238, "decimalLat": -28.09529 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24145, "decimalLat": -27.94779 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35686, "decimalLat": -27.93898 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36641, "decimalLat": -27.83236 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41084, "decimalLat": -28.14428 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.26318, "decimalLat": -27.95254 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -27.953 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44653, "decimalLat": -28.14043 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45406, "decimalLat": -28.0925 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45569, "decimalLat": -28.14958 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4525, "decimalLat": -28.09611 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36737, "decimalLat": -27.88124 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41884, "decimalLat": -28.12942 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.129 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39285, "decimalLat": -28.11476 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37439, "decimalLat": -27.9133 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33144, "decimalLat": -27.91458 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44984, "decimalLat": -28.10115 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39293, "decimalLat": -28.11386 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2516, "decimalLat": -27.78821 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.788 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36484, "decimalLat": -27.95396 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42529, "decimalLat": -28.12809 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.128 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42988, "decimalLat": -28.16097 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43156, "decimalLat": -28.15659 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44195, "decimalLat": -28.10664 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31513, "decimalLat": -28.05275 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.053 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40717, "decimalLat": -28.15788 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.158 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36553, "decimalLat": -27.93425 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42558, "decimalLat": -28.12976 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.13 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36553, "decimalLat": -27.93425 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33763, "decimalLat": -27.85385 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -27.854 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35706, "decimalLat": -27.93385 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41684, "decimalLat": -28.14475 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37941, "decimalLat": -27.82222 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.822 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32494, "decimalLat": -27.89181 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.892 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33014, "decimalLat": -27.90991 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.91 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31657, "decimalLat": -27.89265 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23207, "decimalLat": -27.9765 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.976 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.3416, "decimalLat": -27.90894 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44644, "decimalLat": -28.14035 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37093, "decimalLat": -27.84049 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37483, "decimalLat": -28.11081 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34788, "decimalLat": -28.10078 }, "geometry": { "type": "Point", "coordinates": [ 153.348, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43108, "decimalLat": -28.1858 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -28.186 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32762, "decimalLat": -28.0085 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.008 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3616, "decimalLat": -27.93983 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37501, "decimalLat": -28.10132 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30312, "decimalLat": -27.96918 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -27.969 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.325, "decimalLat": -27.91659 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23697, "decimalLat": -27.77363 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -27.774 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39278, "decimalLat": -28.11057 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27557, "decimalLat": -27.97433 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.974 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35661, "decimalLat": -27.93737 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23214, "decimalLat": -27.97718 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32926, "decimalLat": -27.89069 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45276, "decimalLat": -28.09639 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43343, "decimalLat": -28.12028 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.12 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22201, "decimalLat": -27.95378 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40416, "decimalLat": -28.15031 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35623, "decimalLat": -27.95496 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.955 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33026, "decimalLat": -27.91385 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44787, "decimalLat": -28.10127 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32755, "decimalLat": -27.88533 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.885 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35912, "decimalLat": -27.9342 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37751, "decimalLat": -27.94915 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -27.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39417, "decimalLat": -28.12338 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.123 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36234, "decimalLat": -27.84472 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4525, "decimalLat": -28.09582 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41855, "decimalLat": -28.1301 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.13 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23213, "decimalLat": -27.97714 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2303, "decimalLat": -28.1272 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44867, "decimalLat": -28.09848 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36401, "decimalLat": -27.92864 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44647, "decimalLat": -28.14032 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44697, "decimalLat": -28.13977 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45499, "decimalLat": -28.09372 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.934 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33293, "decimalLat": -27.91355 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35756, "decimalLat": -27.93362 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43781, "decimalLat": -28.13888 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3081, "decimalLat": -28.0253 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.025 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32916, "decimalLat": -27.89096 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3296, "decimalLat": -27.8905 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32712, "decimalLat": -28.01354 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -28.014 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42706, "decimalLat": -28.15586 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43705, "decimalLat": -28.139 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42762, "decimalLat": -28.12229 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4572, "decimalLat": -28.1259 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.126 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43464, "decimalLat": -28.14508 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26504, "decimalLat": -27.84465 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45129, "decimalLat": -28.14164 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38148, "decimalLat": -28.13543 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -28.135 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45486, "decimalLat": -28.09895 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.099 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34769, "decimalLat": -28.1215 }, "geometry": { "type": "Point", "coordinates": [ 153.348, -28.121 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37492, "decimalLat": -27.90851 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35772, "decimalLat": -27.94045 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.341043, "decimalLat": -28.156009 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43156, "decimalLat": -28.15659 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41864, "decimalLat": -28.11436 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.114 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42743, "decimalLat": -28.1184 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.46108, "decimalLat": -28.14821 }, "geometry": { "type": "Point", "coordinates": [ 153.461, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27691, "decimalLat": -27.8248 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.825 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31409, "decimalLat": -28.00746 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.007 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24062, "decimalLat": -28.01913 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -28.019 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43237, "decimalLat": -28.16539 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.165 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37441, "decimalLat": -27.93165 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36489, "decimalLat": -27.93165 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24733, "decimalLat": -28.03502 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -28.035 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45285, "decimalLat": -28.09443 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34844, "decimalLat": -27.84192 }, "geometry": { "type": "Point", "coordinates": [ 153.348, -27.842 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32774, "decimalLat": -28.01279 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.013 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45465, "decimalLat": -28.09449 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35781, "decimalLat": -27.94107 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36426, "decimalLat": -27.92922 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32951, "decimalLat": -27.89093 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44816, "decimalLat": -28.09758 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43814, "decimalLat": -28.15664 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4071, "decimalLat": -28.14586 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35909, "decimalLat": -27.93403 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23232, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44514, "decimalLat": -28.14495 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37097, "decimalLat": -27.96047 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33083, "decimalLat": -27.91694 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32875, "decimalLat": -27.89041 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35788, "decimalLat": -27.84612 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.846 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.35641, "decimalLat": -27.92225 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33471, "decimalLat": -27.84726 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -27.847 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26838, "decimalLat": -28.01403 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.014 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34184, "decimalLat": -27.909 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45199, "decimalLat": -28.09188 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34269, "decimalLat": -27.88863 }, "geometry": { "type": "Point", "coordinates": [ 153.343, -27.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3738, "decimalLat": -27.93441 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3528, "decimalLat": -27.92436 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -27.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41396, "decimalLat": -28.11885 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.119 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35715, "decimalLat": -27.94155 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45143, "decimalLat": -28.0998 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42965, "decimalLat": -28.1216 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44864, "decimalLat": -28.09841 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23253, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39812, "decimalLat": -28.2048 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.205 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36477, "decimalLat": -27.93389 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35949, "decimalLat": -27.9029 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.903 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31995, "decimalLat": -27.90796 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -27.908 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32849, "decimalLat": -27.90222 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33611, "decimalLat": -27.81423 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -27.814 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37955, "decimalLat": -27.94282 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45093, "decimalLat": -28.13214 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44076, "decimalLat": -28.16161 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.162 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37325, "decimalLat": -27.94156 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45618, "decimalLat": -28.13132 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43645, "decimalLat": -28.16617 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.166 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45019, "decimalLat": -28.14659 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35726, "decimalLat": -27.95002 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43785, "decimalLat": -28.16966 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.17 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25919, "decimalLat": -27.83191 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4595, "decimalLat": -28.1549 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.155 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44575, "decimalLat": -28.09205 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42884, "decimalLat": -28.15363 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45642, "decimalLat": -28.16274 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.163 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45056, "decimalLat": -28.1443 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3835, "decimalLat": -27.92238 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44086, "decimalLat": -28.11744 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.117 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23279, "decimalLat": -27.97698 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42737, "decimalLat": -28.14175 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38989, "decimalLat": -27.89438 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -27.894 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3648, "decimalLat": -27.95031 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44217, "decimalLat": -28.14328 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32691, "decimalLat": -27.90246 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40717, "decimalLat": -28.15788 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.158 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.22699, "decimalLat": -27.9618 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.962 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37871, "decimalLat": -28.11292 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -28.113 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.39023, "decimalLat": -28.19386 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.194 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36782, "decimalLat": -27.92951 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4521, "decimalLat": -28.10013 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45087, "decimalLat": -28.0924 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35736, "decimalLat": -27.84484 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36284, "decimalLat": -27.9338 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36845, "decimalLat": -27.89826 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36181, "decimalLat": -27.95487 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.955 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45018, "decimalLat": -28.14835 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45348, "decimalLat": -28.13822 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44535, "decimalLat": -28.09601 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34775, "decimalLat": -28.13796 }, "geometry": { "type": "Point", "coordinates": [ 153.348, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.38892, "decimalLat": -28.11761 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43879, "decimalLat": -28.13844 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45258, "decimalLat": -28.09215 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44299, "decimalLat": -28.09794 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40717, "decimalLat": -28.15788 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.158 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44904, "decimalLat": -28.09765 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38523, "decimalLat": -27.95207 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.952 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.38339, "decimalLat": -27.9211 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -27.921 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31539, "decimalLat": -28.052 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.052 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34867, "decimalLat": -27.84245 }, "geometry": { "type": "Point", "coordinates": [ 153.349, -27.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32776, "decimalLat": -27.90062 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.901 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23209, "decimalLat": -27.88388 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.884 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45509, "decimalLat": -28.13852 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36211, "decimalLat": -27.93227 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45254, "decimalLat": -28.09655 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38439, "decimalLat": -27.92259 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32505, "decimalLat": -27.89471 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.895 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31581, "decimalLat": -27.89247 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -27.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36201, "decimalLat": -27.9335 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35281, "decimalLat": -27.8408 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -27.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32414, "decimalLat": -27.89667 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -27.897 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36648, "decimalLat": -27.95163 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.952 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32921, "decimalLat": -27.89009 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43407, "decimalLat": -28.12192 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34802, "decimalLat": -27.84201 }, "geometry": { "type": "Point", "coordinates": [ 153.348, -27.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40999, "decimalLat": -28.11742 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.117 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42027, "decimalLat": -28.17228 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38167, "decimalLat": -27.96512 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.965 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32889, "decimalLat": -27.89086 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45584, "decimalLat": -28.13232 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43312, "decimalLat": -28.15431 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32961, "decimalLat": -27.89048 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2228, "decimalLat": -27.95356 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27205, "decimalLat": -28.01315 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -28.013 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44695, "decimalLat": -28.09543 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33845, "decimalLat": -27.85493 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -27.855 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41873, "decimalLat": -28.15015 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36102, "decimalLat": -27.94026 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44339, "decimalLat": -28.09357 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45552, "decimalLat": -28.14289 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24525, "decimalLat": -27.96671 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.967 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33904, "decimalLat": -27.90732 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -27.907 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35685, "decimalLat": -27.93822 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38813, "decimalLat": -28.08924 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -28.089 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44778, "decimalLat": -28.0926 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45975, "decimalLat": -28.09287 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44108, "decimalLat": -28.1546 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.155 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31078, "decimalLat": -28.02928 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.029 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39581, "decimalLat": -28.11951 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.12 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40825, "decimalLat": -28.11806 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45214, "decimalLat": -28.09549 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45613, "decimalLat": -28.09435 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4491, "decimalLat": -28.11825 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42778, "decimalLat": -28.14739 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42324, "decimalLat": -28.15264 }, "geometry": { "type": "Point", "coordinates": [ 153.423, -28.153 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36304, "decimalLat": -27.92842 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44195, "decimalLat": -28.10664 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35438, "decimalLat": -27.94891 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -27.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45798, "decimalLat": -28.1381 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.383, "decimalLat": -27.9474 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23245, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438, "decimalLat": -28.131 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40825, "decimalLat": -28.11806 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27041, "decimalLat": -27.81077 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.811 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31916, "decimalLat": -28.0577 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.058 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36421, "decimalLat": -27.92826 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26504, "decimalLat": -27.84465 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3621, "decimalLat": -28.07936 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -28.079 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31163, "decimalLat": -28.0964 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32157, "decimalLat": -27.84635 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -27.846 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33282, "decimalLat": -27.92194 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.33447, "decimalLat": -27.8927 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35928, "decimalLat": -27.93386 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4358, "decimalLat": -28.13012 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.13 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44794, "decimalLat": -28.09729 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45141, "decimalLat": -28.14111 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45319, "decimalLat": -28.09393 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23236, "decimalLat": -27.97723 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.4518, "decimalLat": -28.09178 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37412, "decimalLat": -27.91055 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.911 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3578, "decimalLat": -27.93214 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32578, "decimalLat": -28.08985 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.09 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44794, "decimalLat": -28.09729 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44769, "decimalLat": -28.09777 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45396, "decimalLat": -28.14713 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33959, "decimalLat": -28.0405 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -28.04 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23235, "decimalLat": -27.97725 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38608, "decimalLat": -27.90492 }, "geometry": { "type": "Point", "coordinates": [ 153.386, -27.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44881, "decimalLat": -28.14922 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3218, "decimalLat": -27.91989 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44101, "decimalLat": -28.10805 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.108 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45149, "decimalLat": -28.16069 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35641, "decimalLat": -27.93914 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3815, "decimalLat": -28.13545 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -28.135 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35751, "decimalLat": -27.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22721, "decimalLat": -27.94704 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23232, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33817, "decimalLat": -27.89254 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36203, "decimalLat": -27.9374 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44904, "decimalLat": -28.16222 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.162 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2316, "decimalLat": -27.97781 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.978 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37055, "decimalLat": -27.89769 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33817, "decimalLat": -27.89254 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32729, "decimalLat": -27.92333 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43012, "decimalLat": -28.12342 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.123 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23217, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42207, "decimalLat": -28.15045 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.31896, "decimalLat": -28.13616 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25002, "decimalLat": -27.9453 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3812, "decimalLat": -27.91764 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37715, "decimalLat": -27.91856 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33817, "decimalLat": -27.89254 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42059, "decimalLat": -28.14991 }, "geometry": { "type": "Point", "coordinates": [ 153.421, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45188, "decimalLat": -28.0921 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29336, "decimalLat": -27.86102 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -27.861 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35906, "decimalLat": -27.93405 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44436, "decimalLat": -28.12944 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.129 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32736, "decimalLat": -27.92606 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.926 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 25, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.18436, "decimalLat": -28.01711 }, "geometry": { "type": "Point", "coordinates": [ 153.184, -28.017 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25002, "decimalLat": -27.9453 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45001, "decimalLat": -28.09275 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27493, "decimalLat": -27.94766 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36942, "decimalLat": -28.10921 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.109 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43236, "decimalLat": -28.16536 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.165 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39586, "decimalLat": -28.11952 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.12 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40571, "decimalLat": -28.14696 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44842, "decimalLat": -28.15372 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45426, "decimalLat": -28.13985 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37477, "decimalLat": -28.1014 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33346, "decimalLat": -27.91389 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36561, "decimalLat": -27.93425 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35682, "decimalLat": -27.93899 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.39297, "decimalLat": -27.94401 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -27.944 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.373, "decimalLat": -27.94014 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4431, "decimalLat": -28.14246 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44969, "decimalLat": -28.16155 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.162 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35866, "decimalLat": -27.93318 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44581, "decimalLat": -28.09538 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3597, "decimalLat": -27.95651 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.957 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36588, "decimalLat": -27.93786 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36693, "decimalLat": -28.10614 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44236, "decimalLat": -28.14352 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35748, "decimalLat": -27.84543 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40135, "decimalLat": -28.11411 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.114 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29956, "decimalLat": -28.04272 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.043 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4536, "decimalLat": -28.14618 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40564, "decimalLat": -28.15236 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.152 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36409, "decimalLat": -27.92863 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23236, "decimalLat": -27.97723 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35868, "decimalLat": -27.93195 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4442, "decimalLat": -28.09352 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29964, "decimalLat": -27.89988 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29931, "decimalLat": -27.98484 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.985 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36442, "decimalLat": -27.93409 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43453, "decimalLat": -28.12296 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.123 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4516, "decimalLat": -28.09166 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37589, "decimalLat": -27.83597 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.836 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44731, "decimalLat": -28.10049 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39172, "decimalLat": -28.12448 }, "geometry": { "type": "Point", "coordinates": [ 153.392, -28.124 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44906, "decimalLat": -28.09166 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44957, "decimalLat": -28.14928 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40644, "decimalLat": -28.1705 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.17 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23208, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44877, "decimalLat": -28.10085 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32938, "decimalLat": -27.89044 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37103, "decimalLat": -27.96045 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45472, "decimalLat": -28.09383 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38827, "decimalLat": -27.94733 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45187, "decimalLat": -28.09204 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3786, "decimalLat": -27.95824 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.958 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29906, "decimalLat": -27.89944 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37867, "decimalLat": -27.92449 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42761, "decimalLat": -28.11844 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37154, "decimalLat": -27.92634 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.926 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33406, "decimalLat": -27.89087 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35817, "decimalLat": -28.10905 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -28.109 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35715, "decimalLat": -27.94158 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37126, "decimalLat": -27.90424 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44803, "decimalLat": -28.09549 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44583, "decimalLat": -28.13639 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43917, "decimalLat": -28.10382 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.104 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45041, "decimalLat": -28.09697 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32329, "decimalLat": -27.88956 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36592, "decimalLat": -27.95418 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32895, "decimalLat": -27.89085 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44216, "decimalLat": -28.14948 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.34517, "decimalLat": -27.93955 }, "geometry": { "type": "Point", "coordinates": [ 153.345, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43696, "decimalLat": -28.14251 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40717, "decimalLat": -28.15788 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.158 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45389, "decimalLat": -28.13751 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32818, "decimalLat": -27.90294 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33697, "decimalLat": -27.83737 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -27.837 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45291, "decimalLat": -28.09631 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3654, "decimalLat": -27.94935 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32939, "decimalLat": -27.89041 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36206, "decimalLat": -27.92676 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.927 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23226, "decimalLat": -27.97683 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43732, "decimalLat": -28.13934 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45772, "decimalLat": -28.15254 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.153 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3576, "decimalLat": -28.09352 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44007, "decimalLat": -28.10114 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3295, "decimalLat": -27.89059 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4577, "decimalLat": -28.1469 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40366, "decimalLat": -27.98517 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -27.985 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44692, "decimalLat": -28.13786 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31909, "decimalLat": -27.97364 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -27.974 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.39235, "decimalLat": -28.10846 }, "geometry": { "type": "Point", "coordinates": [ 153.392, -28.108 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44843, "decimalLat": -28.10059 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36668, "decimalLat": -27.92915 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23208, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40517, "decimalLat": -28.11519 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3192, "decimalLat": -27.82608 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25237, "decimalLat": -28.01155 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -28.012 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45192, "decimalLat": -28.09209 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45159, "decimalLat": -28.09165 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36569, "decimalLat": -27.94475 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42558, "decimalLat": -28.12409 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.124 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23246, "decimalLat": -27.97717 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.23174, "decimalLat": -27.97738 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43936, "decimalLat": -28.13818 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35133, "decimalLat": -28.12982 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -28.13 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41259, "decimalLat": -28.17535 }, "geometry": { "type": "Point", "coordinates": [ 153.413, -28.175 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42547, "decimalLat": -28.12389 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.124 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45258, "decimalLat": -28.09215 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44179, "decimalLat": -28.12688 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.35465, "decimalLat": -28.09073 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32686, "decimalLat": -27.89993 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31681, "decimalLat": -28.02137 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.021 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32884, "decimalLat": -27.89095 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.35916, "decimalLat": -27.93229 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23269, "decimalLat": -27.97697 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.3289, "decimalLat": -27.89086 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22982, "decimalLat": -27.97196 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -27.972 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32944, "decimalLat": -27.89059 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45046, "decimalLat": -28.13213 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.934 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45393, "decimalLat": -28.09229 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29092, "decimalLat": -28.01538 }, "geometry": { "type": "Point", "coordinates": [ 153.291, -28.015 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28312, "decimalLat": -27.87802 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.878 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36893, "decimalLat": -27.83278 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40603, "decimalLat": -28.11639 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24268, "decimalLat": -28.05397 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -28.054 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4299, "decimalLat": -28.18238 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.182 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27646, "decimalLat": -27.99855 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44267, "decimalLat": -28.14357 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.23015, "decimalLat": -27.97464 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -27.975 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27621, "decimalLat": -27.9329 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32276, "decimalLat": -27.89826 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3295, "decimalLat": -27.8909 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43912, "decimalLat": -28.15611 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89088 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.18487, "decimalLat": -27.80268 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -27.803 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45307, "decimalLat": -28.0969 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.42199, "decimalLat": -28.12122 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.121 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23234, "decimalLat": -27.97686 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3576, "decimalLat": -27.94055 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44854, "decimalLat": -28.09753 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23232, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40489, "decimalLat": -28.11301 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.113 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31661, "decimalLat": -28.00801 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.008 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3856, "decimalLat": -27.94806 }, "geometry": { "type": "Point", "coordinates": [ 153.386, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45775, "decimalLat": -28.09906 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28853, "decimalLat": -27.91702 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32339, "decimalLat": -27.90906 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46178, "decimalLat": -28.58893 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23208, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23214, "decimalLat": -27.97718 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43787, "decimalLat": -28.13885 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44646, "decimalLat": -28.13718 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37685, "decimalLat": -27.87584 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.876 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32294, "decimalLat": -27.89049 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39373, "decimalLat": -28.11307 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.113 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45922, "decimalLat": -28.09197 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27641, "decimalLat": -27.9961 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.996 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40526, "decimalLat": -28.11568 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.9988 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32505, "decimalLat": -27.92115 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.921 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37643, "decimalLat": -27.91898 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39706, "decimalLat": -28.11839 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34157, "decimalLat": -27.90894 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37342, "decimalLat": -27.94118 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45198, "decimalLat": -28.13871 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37905, "decimalLat": -27.8231 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37948, "decimalLat": -27.8924 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3631, "decimalLat": -27.93415 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41364, "decimalLat": -28.11831 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2337, "decimalLat": -27.97286 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.973 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36842, "decimalLat": -27.83863 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.839 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.76378, "decimalLat": -26.75037 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -26.75 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33708, "decimalLat": -27.90819 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -27.908 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32413, "decimalLat": -27.89639 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -27.896 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44636, "decimalLat": -28.14209 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30518, "decimalLat": -27.84476 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34037, "decimalLat": -27.91657 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38011, "decimalLat": -27.89231 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44678, "decimalLat": -28.15399 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45252, "decimalLat": -28.09625 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40717, "decimalLat": -28.15788 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.158 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3658, "decimalLat": -27.93565 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3306, "decimalLat": -27.91434 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45514, "decimalLat": -28.09736 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23232, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44923, "decimalLat": -28.09552 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35751, "decimalLat": -27.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45354, "decimalLat": -28.09458 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32884, "decimalLat": -27.89086 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45159, "decimalLat": -28.0914 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31022, "decimalLat": -28.01516 }, "geometry": { "type": "Point", "coordinates": [ 153.31, -28.015 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23245, "decimalLat": -27.977 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40825, "decimalLat": -28.11806 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35906, "decimalLat": -28.09417 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37867, "decimalLat": -27.92449 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45926, "decimalLat": -28.09176 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4484, "decimalLat": -28.16156 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.162 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36244, "decimalLat": -28.10594 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23222, "decimalLat": -27.97679 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40603, "decimalLat": -28.11639 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38568, "decimalLat": -27.9209 }, "geometry": { "type": "Point", "coordinates": [ 153.386, -27.921 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26387, "decimalLat": -28.01677 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -28.017 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32732, "decimalLat": -27.91655 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32685, "decimalLat": -27.8482 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.848 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27389, "decimalLat": -27.83749 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.837 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3099, "decimalLat": -27.82319 }, "geometry": { "type": "Point", "coordinates": [ 153.31, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42812, "decimalLat": -28.15631 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34188, "decimalLat": -28.10122 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41684, "decimalLat": -28.14475 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35902, "decimalLat": -27.93243 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35882, "decimalLat": -27.94197 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3581, "decimalLat": -28.12755 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -28.128 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39987, "decimalLat": -28.14208 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.43916, "decimalLat": -28.1561 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38019, "decimalLat": -27.9567 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.957 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29652, "decimalLat": -27.89913 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3787, "decimalLat": -27.82317 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44177, "decimalLat": -28.10614 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22212, "decimalLat": -27.95298 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -27.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44454, "decimalLat": -28.12584 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.126 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.3157, "decimalLat": -28.03856 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.039 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39382, "decimalLat": -28.11815 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232, "decimalLat": -27.97704 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27326, "decimalLat": -27.83978 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.84 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23267, "decimalLat": -27.977 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36457, "decimalLat": -27.95068 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.951 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23198, "decimalLat": -27.97531 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.975 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35334, "decimalLat": -27.84047 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -27.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44519, "decimalLat": -28.14489 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3741, "decimalLat": -27.8955 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.895 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43551, "decimalLat": -28.17189 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.23213, "decimalLat": -27.97715 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.42402, "decimalLat": -28.19695 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.197 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33408, "decimalLat": -27.89088 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35751, "decimalLat": -27.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26649, "decimalLat": -28.15919 }, "geometry": { "type": "Point", "coordinates": [ 153.266, -28.159 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23156, "decimalLat": -27.97707 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36553, "decimalLat": -27.92876 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23208, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.3295, "decimalLat": -27.8909 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44769, "decimalLat": -28.12205 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28065, "decimalLat": -28.04862 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.049 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3604, "decimalLat": -27.9338 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44176, "decimalLat": -28.14969 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36702, "decimalLat": -27.88041 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.88 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32276, "decimalLat": -27.89826 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33077, "decimalLat": -27.8442 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.844 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39841, "decimalLat": -28.10645 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43116, "decimalLat": -28.12019 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -28.12 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43811, "decimalLat": -28.17978 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.18 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33499, "decimalLat": -27.89084 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36505, "decimalLat": -27.93241 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45105, "decimalLat": -28.16078 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31279, "decimalLat": -27.82304 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31743, "decimalLat": -27.88874 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -27.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44473, "decimalLat": -28.16035 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.16 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3797, "decimalLat": -27.93976 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43386, "decimalLat": -28.14685 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43229, "decimalLat": -28.1647 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.165 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25037, "decimalLat": -28.07759 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -28.078 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34345, "decimalLat": -27.97683 }, "geometry": { "type": "Point", "coordinates": [ 153.343, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44446, "decimalLat": -28.09538 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44972, "decimalLat": -28.09347 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42416, "decimalLat": -28.12303 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.123 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25001, "decimalLat": -27.9453 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37319, "decimalLat": -27.9548 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.955 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32761, "decimalLat": -28.00853 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.009 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3767, "decimalLat": -28.10881 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.109 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41071, "decimalLat": -28.14401 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44219, "decimalLat": -28.10512 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.105 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.35882, "decimalLat": -27.94197 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.24523, "decimalLat": -27.96664 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.967 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37824, "decimalLat": -27.92486 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -27.925 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37989, "decimalLat": -27.90995 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.91 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26969, "decimalLat": -27.90093 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.901 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43366, "decimalLat": -28.12287 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.123 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36204, "decimalLat": -27.93345 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23214, "decimalLat": -27.97718 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32944, "decimalLat": -27.89057 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32892, "decimalLat": -27.89071 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26504, "decimalLat": -27.84465 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.23214, "decimalLat": -27.97742 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42744, "decimalLat": -28.11838 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32587, "decimalLat": -27.94693 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45745, "decimalLat": -28.13312 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36118, "decimalLat": -27.93899 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43743, "decimalLat": -28.13882 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43882, "decimalLat": -28.15956 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.16 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36529, "decimalLat": -27.9441 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.944 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34425, "decimalLat": -28.0928 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45544, "decimalLat": -28.15361 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2243, "decimalLat": -27.97198 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.972 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41482, "decimalLat": -28.14444 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36842, "decimalLat": -27.92971 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3294, "decimalLat": -27.89045 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25903, "decimalLat": -27.92742 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.927 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32798, "decimalLat": -27.91574 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26571, "decimalLat": -28.01039 }, "geometry": { "type": "Point", "coordinates": [ 153.266, -28.01 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23199, "decimalLat": -27.97704 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33761, "decimalLat": -28.10611 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27847, "decimalLat": -27.97745 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45196, "decimalLat": -28.0921 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43916, "decimalLat": -28.15614 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.46135, "decimalLat": -28.14929 }, "geometry": { "type": "Point", "coordinates": [ 153.461, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36339, "decimalLat": -27.83524 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.835 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42231, "decimalLat": -28.14765 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21314, "decimalLat": -27.72052 }, "geometry": { "type": "Point", "coordinates": [ 153.213, -27.721 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41072, "decimalLat": -28.14399 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23273, "decimalLat": -27.97707 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36439, "decimalLat": -27.92943 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44507, "decimalLat": -28.14452 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44447, "decimalLat": -28.09539 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41769, "decimalLat": -28.13235 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39433, "decimalLat": -28.10654 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42321, "decimalLat": -28.14956 }, "geometry": { "type": "Point", "coordinates": [ 153.423, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44784, "decimalLat": -28.09319 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33289, "decimalLat": -28.03754 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -28.038 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42433, "decimalLat": -28.14605 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33527, "decimalLat": -27.96853 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -27.969 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3884, "decimalLat": -27.91897 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37476, "decimalLat": -28.10148 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32989, "decimalLat": -27.91377 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45203, "decimalLat": -28.10018 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45524, "decimalLat": -28.13092 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36556, "decimalLat": -27.92987 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42089, "decimalLat": -28.15046 }, "geometry": { "type": "Point", "coordinates": [ 153.421, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26567, "decimalLat": -27.94068 }, "geometry": { "type": "Point", "coordinates": [ 153.266, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.40603, "decimalLat": -28.11639 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32751, "decimalLat": -27.88456 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.885 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44553, "decimalLat": -28.09434 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36199, "decimalLat": -27.93226 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45117, "decimalLat": -28.14135 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32792, "decimalLat": -27.90618 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27617, "decimalLat": -27.93297 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45265, "decimalLat": -28.09552 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34736, "decimalLat": -28.05638 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.056 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27101, "decimalLat": -27.96687 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.967 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38264, "decimalLat": -28.14275 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39345, "decimalLat": -28.10983 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.11 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3835, "decimalLat": -27.92238 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44178, "decimalLat": -28.1494 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25075, "decimalLat": -27.94588 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38, "decimalLat": -27.95037 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23199, "decimalLat": -27.97705 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35265, "decimalLat": -28.09122 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38116, "decimalLat": -27.95424 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40891, "decimalLat": -28.20138 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.201 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36551, "decimalLat": -27.94092 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44021, "decimalLat": -28.11405 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -28.114 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35448, "decimalLat": -27.98496 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -27.985 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41807, "decimalLat": -28.15029 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44276, "decimalLat": -28.13995 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36215, "decimalLat": -27.92921 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44065, "decimalLat": -28.14999 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36324, "decimalLat": -27.93389 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25045, "decimalLat": -27.87381 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.874 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44853, "decimalLat": -28.09751 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39283, "decimalLat": -27.92352 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -27.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36336, "decimalLat": -27.92938 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44862, "decimalLat": -28.09845 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4535, "decimalLat": -28.09677 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32594, "decimalLat": -27.89266 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37351, "decimalLat": -28.10023 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36589, "decimalLat": -27.9511 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.951 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36588, "decimalLat": -27.93025 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37894, "decimalLat": -27.82277 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.31224, "decimalLat": -28.01703 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.017 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35458, "decimalLat": -28.09324 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43271, "decimalLat": -28.16841 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.168 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35493, "decimalLat": -27.9189 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43355, "decimalLat": -28.13592 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44173, "decimalLat": -28.10635 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32867, "decimalLat": -27.85106 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.851 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36378, "decimalLat": -27.88049 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.88 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.455, "decimalLat": -28.13121 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27641, "decimalLat": -27.999 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32921, "decimalLat": -27.8909 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3302, "decimalLat": -27.9123 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44145, "decimalLat": -28.15115 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27657, "decimalLat": -27.99826 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.998 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41003, "decimalLat": -28.11677 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.117 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44964, "decimalLat": -28.15996 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.16 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36234, "decimalLat": -27.92971 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30097, "decimalLat": -27.92102 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -27.921 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42047, "decimalLat": -28.15091 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26504, "decimalLat": -27.84465 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41358, "decimalLat": -28.1729 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.173 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43407, "decimalLat": -28.18197 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.182 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33102, "decimalLat": -27.90208 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32772, "decimalLat": -27.90014 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35917, "decimalLat": -27.94005 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44528, "decimalLat": -28.13605 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37699, "decimalLat": -27.87446 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.874 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44709, "decimalLat": -28.13696 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32936, "decimalLat": -27.92307 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45937, "decimalLat": -28.1596 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.16 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40769, "decimalLat": -28.17161 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36638, "decimalLat": -27.94119 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44563, "decimalLat": -28.09393 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45413, "decimalLat": -28.13751 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.23226, "decimalLat": -27.97674 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44121, "decimalLat": -28.11496 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44807, "decimalLat": -28.14378 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35896, "decimalLat": -27.93276 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4485, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.31213, "decimalLat": -28.01962 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.02 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.22699, "decimalLat": -27.9618 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.962 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28099, "decimalLat": -27.85987 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.86 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21202, "decimalLat": -27.87213 }, "geometry": { "type": "Point", "coordinates": [ 153.212, -27.872 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44769, "decimalLat": -28.09325 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35694, "decimalLat": -27.93855 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36518, "decimalLat": -27.93241 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44216, "decimalLat": -28.14948 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43808, "decimalLat": -28.12943 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.129 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45033, "decimalLat": -28.09782 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4422, "decimalLat": -28.14344 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43859, "decimalLat": -28.15513 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.155 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42099, "decimalLat": -28.15042 }, "geometry": { "type": "Point", "coordinates": [ 153.421, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41684, "decimalLat": -28.14475 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23208, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36066, "decimalLat": -27.93671 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31165, "decimalLat": -28.03899 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.039 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29667, "decimalLat": -27.91693 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44913, "decimalLat": -28.09454 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45882, "decimalLat": -28.14808 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37612, "decimalLat": -27.95748 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.957 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3295, "decimalLat": -27.8909 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30595, "decimalLat": -27.94249 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45822, "decimalLat": -28.12835 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39994, "decimalLat": -28.14204 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42763, "decimalLat": -28.1183 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3847, "decimalLat": -27.92286 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44385, "decimalLat": -28.14216 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4595, "decimalLat": -28.1549 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.155 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32214, "decimalLat": -27.89719 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -27.897 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.35922, "decimalLat": -27.93416 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4361, "decimalLat": -28.15629 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.33103, "decimalLat": -27.91563 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35015, "decimalLat": -28.13603 }, "geometry": { "type": "Point", "coordinates": [ 153.35, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36204, "decimalLat": -27.93345 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42056, "decimalLat": -28.15031 }, "geometry": { "type": "Point", "coordinates": [ 153.421, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32681, "decimalLat": -27.90238 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.902 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30193, "decimalLat": -27.9471 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41497, "decimalLat": -28.17194 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4362, "decimalLat": -28.1402 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45518, "decimalLat": -28.13079 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37336, "decimalLat": -27.91346 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23241, "decimalLat": -27.97689 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45623, "decimalLat": -28.13141 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.3295, "decimalLat": -27.8909 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36452, "decimalLat": -27.92837 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36545, "decimalLat": -27.93552 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36162, "decimalLat": -27.93019 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20541, "decimalLat": -27.73336 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -27.733 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42622, "decimalLat": -28.17233 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37143, "decimalLat": -27.83843 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.838 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38675, "decimalLat": -27.96461 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -27.965 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32849, "decimalLat": -27.91739 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37986, "decimalLat": -27.93837 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19479, "decimalLat": -27.91998 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40156, "decimalLat": -28.11455 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44438, "decimalLat": -28.09431 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26812, "decimalLat": -27.91403 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23166, "decimalLat": -27.97701 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44783, "decimalLat": -28.09144 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45204, "decimalLat": -28.10013 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3106, "decimalLat": -28.03872 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.039 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44668, "decimalLat": -28.09353 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45119, "decimalLat": -28.09246 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44585, "decimalLat": -28.09522 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.18524, "decimalLat": -27.84127 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -27.841 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36405, "decimalLat": -27.93665 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36573, "decimalLat": -27.93439 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32814, "decimalLat": -27.90314 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37608, "decimalLat": -27.95767 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.958 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37082, "decimalLat": -28.1796 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.18 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23234, "decimalLat": -27.97686 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42745, "decimalLat": -28.15103 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44954, "decimalLat": -28.09631 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28516, "decimalLat": -28.0078 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.008 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44861, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35862, "decimalLat": -27.93324 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45094, "decimalLat": -28.13241 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42628, "decimalLat": -28.17234 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37723, "decimalLat": -27.95131 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.951 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28403, "decimalLat": -27.94348 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.9988 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36145, "decimalLat": -27.93036 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3672, "decimalLat": -27.8806 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32956, "decimalLat": -28.07151 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.072 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32884, "decimalLat": -27.89082 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30595, "decimalLat": -27.9426 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31548, "decimalLat": -28.05149 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.051 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4408, "decimalLat": -28.15026 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.9988 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44564, "decimalLat": -28.13318 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23993, "decimalLat": -28.1113 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42316, "decimalLat": -28.19237 }, "geometry": { "type": "Point", "coordinates": [ 153.423, -28.192 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33137, "decimalLat": -27.91618 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44194, "decimalLat": -28.13688 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42266, "decimalLat": -28.15066 }, "geometry": { "type": "Point", "coordinates": [ 153.423, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3627, "decimalLat": -27.93369 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36533, "decimalLat": -27.93042 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40897, "decimalLat": -28.11143 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32579, "decimalLat": -27.89759 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35843, "decimalLat": -28.09442 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43626, "decimalLat": -28.16455 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.165 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44853, "decimalLat": -28.15413 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38071, "decimalLat": -27.94632 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33103, "decimalLat": -27.9162 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44025, "decimalLat": -28.15924 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -28.159 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31515, "decimalLat": -28.05214 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.052 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45155, "decimalLat": -28.13857 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45306, "decimalLat": -28.09411 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41599, "decimalLat": -28.1312 }, "geometry": { "type": "Point", "coordinates": [ 153.416, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35774, "decimalLat": -27.94043 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26273, "decimalLat": -27.94292 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44858, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3563, "decimalLat": -27.93991 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37441, "decimalLat": -27.93165 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45341, "decimalLat": -28.0965 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37056, "decimalLat": -28.17987 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.18 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43399, "decimalLat": -28.14745 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.431, "decimalLat": -28.11566 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43771, "decimalLat": -28.13885 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35931, "decimalLat": -27.933 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37607, "decimalLat": -27.93171 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45007, "decimalLat": -28.1 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32864, "decimalLat": -27.89075 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32652, "decimalLat": -27.898 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37537, "decimalLat": -27.94652 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3139, "decimalLat": -27.82106 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -27.821 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37098, "decimalLat": -27.96357 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.964 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30376, "decimalLat": -28.0372 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.037 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25903, "decimalLat": -27.92742 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.927 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45339, "decimalLat": -28.09615 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3658, "decimalLat": -27.92991 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25002, "decimalLat": -27.9453 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35624, "decimalLat": -27.95474 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.955 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26812, "decimalLat": -28.02615 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.026 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23245, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43262, "decimalLat": -28.16129 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.4519, "decimalLat": -28.09206 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37239, "decimalLat": -27.89926 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44061, "decimalLat": -28.14996 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44987, "decimalLat": -28.10104 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32895, "decimalLat": -27.89086 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39413, "decimalLat": -28.11456 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29379, "decimalLat": -27.82321 }, "geometry": { "type": "Point", "coordinates": [ 153.294, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.18466, "decimalLat": -27.8027 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -27.803 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37173, "decimalLat": -27.83701 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.837 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3801, "decimalLat": -27.93897 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34186, "decimalLat": -27.909 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36737, "decimalLat": -27.88122 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.40825, "decimalLat": -28.11806 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41978, "decimalLat": -28.1641 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.164 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38005, "decimalLat": -27.94817 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45405, "decimalLat": -28.15284 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.153 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37744, "decimalLat": -27.9194 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3649, "decimalLat": -27.9391 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30402, "decimalLat": -28.02785 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.028 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41148, "decimalLat": -28.14407 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36726, "decimalLat": -27.9346 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.935 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3563, "decimalLat": -27.93991 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33228, "decimalLat": -27.91049 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -27.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35446, "decimalLat": -28.10413 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -28.104 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4406, "decimalLat": -28.1401 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32937, "decimalLat": -27.89043 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44681, "decimalLat": -28.13638 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33419, "decimalLat": -27.90504 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -27.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.3228, "decimalLat": -27.9072 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.907 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3035, "decimalLat": -27.80001 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -27.8 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33329, "decimalLat": -27.81793 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -27.818 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32621, "decimalLat": -27.81886 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32919, "decimalLat": -27.89077 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45995, "decimalLat": -28.16144 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32451, "decimalLat": -28.00413 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.004 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44598, "decimalLat": -28.09497 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36203, "decimalLat": -27.9374 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23232, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32392, "decimalLat": -27.90689 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -27.907 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44643, "decimalLat": -28.14043 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27829, "decimalLat": -27.94782 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32856, "decimalLat": -27.89071 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28008, "decimalLat": -27.99692 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -27.997 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45105, "decimalLat": -28.16078 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23208, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31441, "decimalLat": -27.90307 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -27.903 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23236, "decimalLat": -27.97723 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35775, "decimalLat": -27.94044 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45116, "decimalLat": -28.14154 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36655, "decimalLat": -27.88157 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.882 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36568, "decimalLat": -27.95217 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.952 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32772, "decimalLat": -27.90014 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43064, "decimalLat": -28.1105 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -28.11 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44944, "decimalLat": -28.09906 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45089, "decimalLat": -28.0928 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41071, "decimalLat": -28.14346 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43878, "decimalLat": -28.10607 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4464, "decimalLat": -28.14046 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33294, "decimalLat": -27.88304 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -27.883 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25002, "decimalLat": -27.9453 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3667, "decimalLat": -27.8339 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4297, "decimalLat": -28.10841 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.108 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43933, "decimalLat": -28.15961 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.16 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.40467, "decimalLat": -28.1206 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.121 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.362, "decimalLat": -27.93227 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43236, "decimalLat": -28.1088 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.109 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43363, "decimalLat": -28.14065 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40825, "decimalLat": -28.11806 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44573, "decimalLat": -28.09452 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35818, "decimalLat": -27.93183 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.34644, "decimalLat": -27.93948 }, "geometry": { "type": "Point", "coordinates": [ 153.346, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44636, "decimalLat": -28.14041 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2676, "decimalLat": -28.00629 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.006 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44653, "decimalLat": -28.14043 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.47748, "decimalLat": -28.14205 }, "geometry": { "type": "Point", "coordinates": [ 153.477, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45342, "decimalLat": -28.09398 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44853, "decimalLat": -28.09743 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36262, "decimalLat": -27.94036 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.47868, "decimalLat": -28.1534 }, "geometry": { "type": "Point", "coordinates": [ 153.479, -28.153 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44746, "decimalLat": -28.09332 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34439, "decimalLat": -27.94872 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -27.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32868, "decimalLat": -27.89084 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37615, "decimalLat": -27.91702 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44653, "decimalLat": -28.14043 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45493, "decimalLat": -28.13318 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26552, "decimalLat": -28.01582 }, "geometry": { "type": "Point", "coordinates": [ 153.266, -28.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35984, "decimalLat": -28.12885 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -28.129 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45073, "decimalLat": -28.12053 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.121 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43916, "decimalLat": -28.15623 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27342, "decimalLat": -27.88993 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44754, "decimalLat": -28.0934 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.3754, "decimalLat": -27.91664 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43579, "decimalLat": -28.13024 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.13 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3634, "decimalLat": -27.90237 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.902 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30024, "decimalLat": -27.92287 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37745, "decimalLat": -27.89539 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.895 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32962, "decimalLat": -27.8905 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37598, "decimalLat": -28.10527 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32885, "decimalLat": -27.89084 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45292, "decimalLat": -28.09394 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45163, "decimalLat": -28.09029 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.09 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45237, "decimalLat": -28.09528 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45161, "decimalLat": -28.09166 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.4568, "decimalLat": -28.09463 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.38094, "decimalLat": -28.14355 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.18676, "decimalLat": -27.91285 }, "geometry": { "type": "Point", "coordinates": [ 153.187, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27838, "decimalLat": -27.95471 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.955 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36486, "decimalLat": -27.95146 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.951 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32581, "decimalLat": -27.89688 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.897 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40485, "decimalLat": -28.14572 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45217, "decimalLat": -28.09465 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32329, "decimalLat": -28.01951 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.02 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23199, "decimalLat": -27.97668 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36747, "decimalLat": -27.88038 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.88 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36706, "decimalLat": -27.88057 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42918, "decimalLat": -28.1216 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28053, "decimalLat": -27.98047 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.98 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30163, "decimalLat": -27.91406 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32213, "decimalLat": -27.89765 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44938, "decimalLat": -28.13753 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33674, "decimalLat": -27.80811 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -27.808 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45775, "decimalLat": -28.15113 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27321, "decimalLat": -27.90919 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3888, "decimalLat": -28.12201 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33958, "decimalLat": -28.03973 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -28.04 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36362, "decimalLat": -27.92956 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43769, "decimalLat": -28.13868 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36783, "decimalLat": -27.88181 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.882 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44705, "decimalLat": -28.09698 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.449, "decimalLat": -28.152 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.152 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40355, "decimalLat": -28.11092 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37006, "decimalLat": -27.93021 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29889, "decimalLat": -27.89948 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45975, "decimalLat": -28.09287 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44854, "decimalLat": -28.09752 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36592, "decimalLat": -27.92928 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23156, "decimalLat": -27.97707 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42025, "decimalLat": -28.18947 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.189 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2349, "decimalLat": -27.79052 }, "geometry": { "type": "Point", "coordinates": [ 153.235, -27.791 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44968, "decimalLat": -28.16306 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.163 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4485, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43934, "decimalLat": -28.14287 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42002, "decimalLat": -28.17188 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44747, "decimalLat": -28.10292 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.103 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36423, "decimalLat": -27.95123 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.951 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38654, "decimalLat": -28.09976 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45503, "decimalLat": -28.13122 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3414, "decimalLat": -27.97847 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -27.978 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.4257, "decimalLat": -28.14308 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.442, "decimalLat": -28.10639 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36629, "decimalLat": -27.94576 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34185, "decimalLat": -28.10103 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35715, "decimalLat": -27.94158 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31815, "decimalLat": -27.82214 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -27.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45361, "decimalLat": -28.09627 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37463, "decimalLat": -27.91361 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44813, "decimalLat": -28.09344 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37608, "decimalLat": -27.95767 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.958 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45367, "decimalLat": -28.13829 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40721, "decimalLat": -28.1459 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26539, "decimalLat": -27.91435 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34152, "decimalLat": -27.91164 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42109, "decimalLat": -28.15064 }, "geometry": { "type": "Point", "coordinates": [ 153.421, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38548, "decimalLat": -28.11065 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38508, "decimalLat": -28.11067 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45563, "decimalLat": -28.14899 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40825, "decimalLat": -28.11806 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23233, "decimalLat": -27.97722 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36437, "decimalLat": -27.92831 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44832, "decimalLat": -28.10065 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42895, "decimalLat": -28.15281 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.153 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32888, "decimalLat": -27.89085 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42616, "decimalLat": -28.17238 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45041, "decimalLat": -28.097 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.41684, "decimalLat": -28.14475 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25002, "decimalLat": -27.9453 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23208, "decimalLat": -27.97716 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39308, "decimalLat": -28.13661 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42194, "decimalLat": -28.12155 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34747, "decimalLat": -27.94788 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2327, "decimalLat": -27.97695 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33225, "decimalLat": -28.12069 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -28.121 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43636, "decimalLat": -28.14842 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.23174, "decimalLat": -27.97738 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44386, "decimalLat": -28.13459 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.135 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40693, "decimalLat": -28.13304 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30373, "decimalLat": -27.90017 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23213, "decimalLat": -27.97714 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.35666, "decimalLat": -27.84332 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.843 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36383, "decimalLat": -27.93806 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.3274, "decimalLat": -27.88997 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31229, "decimalLat": -28.01887 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45594, "decimalLat": -28.14706 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36242, "decimalLat": -27.93021 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.23185, "decimalLat": -27.97725 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.422, "decimalLat": -28.12156 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28896, "decimalLat": -27.91755 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44632, "decimalLat": -28.14199 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3569, "decimalLat": -27.93979 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4506, "decimalLat": -28.14583 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45412, "decimalLat": -28.14741 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44471, "decimalLat": -28.14485 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40605, "decimalLat": -28.16994 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.17 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32535, "decimalLat": -27.81872 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.819 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22949, "decimalLat": -28.06749 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -28.067 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36403, "decimalLat": -27.93768 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45789, "decimalLat": -28.09364 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33337, "decimalLat": -27.83745 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -27.837 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36703, "decimalLat": -27.88052 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44728, "decimalLat": -28.095 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44994, "decimalLat": -28.10101 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37978, "decimalLat": -28.10053 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36066, "decimalLat": -27.92942 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34833, "decimalLat": -28.1226 }, "geometry": { "type": "Point", "coordinates": [ 153.348, -28.123 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35739, "decimalLat": -27.84492 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32463, "decimalLat": -27.92095 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.34172, "decimalLat": -27.90892 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34332, "decimalLat": -27.90467 }, "geometry": { "type": "Point", "coordinates": [ 153.343, -27.905 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44772, "decimalLat": -28.09331 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41766, "decimalLat": -28.13119 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23212, "decimalLat": -27.97687 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45385, "decimalLat": -28.09251 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36431, "decimalLat": -27.95058 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.951 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31966, "decimalLat": -27.91394 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44754, "decimalLat": -28.09333 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33885, "decimalLat": -27.95265 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -27.953 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44439, "decimalLat": -28.14509 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43883, "decimalLat": -28.13949 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3142, "decimalLat": -28.0398 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.04 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3578, "decimalLat": -28.10698 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37087, "decimalLat": -28.1169 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.117 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.41662, "decimalLat": -28.14459 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33138, "decimalLat": -27.88964 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35133, "decimalLat": -28.12982 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -28.13 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36039, "decimalLat": -27.93152 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43063, "decimalLat": -28.18218 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -28.182 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39595, "decimalLat": -28.15933 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.159 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26987, "decimalLat": -27.90318 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.903 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40792, "decimalLat": -28.17029 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.17 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.31703, "decimalLat": -27.89373 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -27.894 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3637, "decimalLat": -27.93725 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37075, "decimalLat": -27.94601 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37347, "decimalLat": -27.94114 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45789, "decimalLat": -28.09364 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45503, "decimalLat": -28.09411 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38659, "decimalLat": -27.89955 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38945, "decimalLat": -28.11899 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.119 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45293, "decimalLat": -28.14155 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43901, "decimalLat": -28.10661 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22098, "decimalLat": -27.96957 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -27.97 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45643, "decimalLat": -28.09394 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45487, "decimalLat": -28.16104 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29924, "decimalLat": -27.8994 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45708, "decimalLat": -28.13457 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.135 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36624, "decimalLat": -28.09005 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -28.09 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45056, "decimalLat": -28.1443 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39099, "decimalLat": -28.13262 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36348, "decimalLat": -27.83564 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.836 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32887, "decimalLat": -27.89074 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34583, "decimalLat": -28.14579 }, "geometry": { "type": "Point", "coordinates": [ 153.346, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44787, "decimalLat": -28.10127 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36573, "decimalLat": -28.09332 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45057, "decimalLat": -28.13568 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45504, "decimalLat": -28.13214 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32927, "decimalLat": -27.89053 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44698, "decimalLat": -28.1367 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36706, "decimalLat": -27.88038 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.88 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35919, "decimalLat": -27.94255 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38021, "decimalLat": -27.92416 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.924 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.29342, "decimalLat": -28.1342 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.134 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3631, "decimalLat": -27.93415 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31122, "decimalLat": -28.01587 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.016 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43787, "decimalLat": -28.13881 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41977, "decimalLat": -28.12091 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.121 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42633, "decimalLat": -28.16737 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.167 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45802, "decimalLat": -28.09371 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3303, "decimalLat": -27.91444 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.42731, "decimalLat": -28.11814 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37396, "decimalLat": -27.88253 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.883 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31977, "decimalLat": -27.82748 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -27.827 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35759, "decimalLat": -27.94055 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30126, "decimalLat": -27.94656 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45289, "decimalLat": -28.15363 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26786, "decimalLat": -27.96993 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -27.97 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45383, "decimalLat": -28.09146 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27713, "decimalLat": -27.99652 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.997 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43677, "decimalLat": -28.13071 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45307, "decimalLat": -28.09518 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21189, "decimalLat": -27.87228 }, "geometry": { "type": "Point", "coordinates": [ 153.212, -27.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38968, "decimalLat": -28.1563 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4523, "decimalLat": -28.09594 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42714, "decimalLat": -28.12237 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44145, "decimalLat": -28.10082 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44596, "decimalLat": -28.13614 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38052, "decimalLat": -27.93954 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22671, "decimalLat": -28.07645 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -28.076 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3231, "decimalLat": -28.16366 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.164 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32784, "decimalLat": -27.896 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.896 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23236, "decimalLat": -27.97723 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44175, "decimalLat": -28.12702 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.24362, "decimalLat": -27.96791 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.968 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3546, "decimalLat": -28.09306 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.4338, "decimalLat": -28.14679 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44483, "decimalLat": -28.09326 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40783, "decimalLat": -28.15634 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24627, "decimalLat": -28.03941 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -28.039 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32919, "decimalLat": -27.89077 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31963, "decimalLat": -27.90163 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -27.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3811, "decimalLat": -27.92213 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4381, "decimalLat": -28.14832 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44969, "decimalLat": -28.09505 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23237, "decimalLat": -27.97725 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44636, "decimalLat": -28.13615 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44848, "decimalLat": -28.10062 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37064, "decimalLat": -28.17986 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.18 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45105, "decimalLat": -28.1616 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.162 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23841, "decimalLat": -27.97552 }, "geometry": { "type": "Point", "coordinates": [ 153.238, -27.976 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44959, "decimalLat": -28.14893 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36593, "decimalLat": -27.92944 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3055, "decimalLat": -27.9358 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38474, "decimalLat": -27.9219 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3752, "decimalLat": -28.09769 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36191, "decimalLat": -27.93229 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.33083, "decimalLat": -27.89395 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.894 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23232, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41669, "decimalLat": -28.1727 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.173 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33754, "decimalLat": -27.97668 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.9988 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37331, "decimalLat": -27.9429 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44653, "decimalLat": -28.14043 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45519, "decimalLat": -28.13878 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3627, "decimalLat": -27.93369 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32896, "decimalLat": -27.8909 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45426, "decimalLat": -28.14735 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36498, "decimalLat": -27.93085 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.931 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36486, "decimalLat": -27.95146 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.951 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44791, "decimalLat": -28.13918 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36257, "decimalLat": -27.93333 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32944, "decimalLat": -27.89097 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36332, "decimalLat": -27.93422 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31687, "decimalLat": -28.01188 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.012 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43781, "decimalLat": -28.15654 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32924, "decimalLat": -27.89056 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32885, "decimalLat": -27.89084 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42636, "decimalLat": -28.17246 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44855, "decimalLat": -28.09756 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37116, "decimalLat": -28.11049 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.11 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37626, "decimalLat": -28.11961 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.12 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4514, "decimalLat": -28.14148 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42443, "decimalLat": -28.14994 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44742, "decimalLat": -28.09332 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3661, "decimalLat": -27.95286 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44981, "decimalLat": -28.10001 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34183, "decimalLat": -27.90782 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.908 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34167, "decimalLat": -27.82608 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35939, "decimalLat": -27.93416 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36554, "decimalLat": -27.9287 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.18719, "decimalLat": -27.84117 }, "geometry": { "type": "Point", "coordinates": [ 153.187, -27.841 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44782, "decimalLat": -28.09794 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45097, "decimalLat": -28.14409 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36628, "decimalLat": -27.93489 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.935 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23265, "decimalLat": -27.97694 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25225, "decimalLat": -27.8897 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32994, "decimalLat": -27.91307 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3606, "decimalLat": -27.93219 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32345, "decimalLat": -28.02158 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.022 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35759, "decimalLat": -27.9411 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31497, "decimalLat": -28.05252 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.053 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44799, "decimalLat": -28.09322 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37468, "decimalLat": -28.10533 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.105 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34547, "decimalLat": -27.95461 }, "geometry": { "type": "Point", "coordinates": [ 153.345, -27.955 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22911, "decimalLat": -27.97329 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.973 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27651, "decimalLat": -27.95662 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.957 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31656, "decimalLat": -27.89269 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41985, "decimalLat": -28.17192 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42291, "decimalLat": -28.14342 }, "geometry": { "type": "Point", "coordinates": [ 153.423, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32355, "decimalLat": -27.88985 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42918, "decimalLat": -28.1216 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31487, "decimalLat": -28.05201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.052 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37201, "decimalLat": -27.95676 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.957 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.46705, "decimalLat": -28.15757 }, "geometry": { "type": "Point", "coordinates": [ 153.467, -28.158 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3396, "decimalLat": -28.12639 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -28.126 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36526, "decimalLat": -27.9291 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34154, "decimalLat": -27.85165 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.852 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45161, "decimalLat": -28.09167 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36249, "decimalLat": -27.92945 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45246, "decimalLat": -28.08866 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.089 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3732, "decimalLat": -27.91261 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26884, "decimalLat": -27.90883 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35717, "decimalLat": -27.93818 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41559, "decimalLat": -28.15056 }, "geometry": { "type": "Point", "coordinates": [ 153.416, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35717, "decimalLat": -27.93818 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23265, "decimalLat": -27.97694 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45162, "decimalLat": -28.09168 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43343, "decimalLat": -28.13608 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35969, "decimalLat": -27.94035 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35913, "decimalLat": -27.92703 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.927 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32657, "decimalLat": -28.04901 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -28.049 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32238, "decimalLat": -27.82475 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -27.825 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38344, "decimalLat": -27.92241 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3272, "decimalLat": -28.00644 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -28.006 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40717, "decimalLat": -28.15788 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.158 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36648, "decimalLat": -27.95163 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.952 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38155, "decimalLat": -27.95278 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.953 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43673, "decimalLat": -28.13053 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36191, "decimalLat": -27.93229 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41731, "decimalLat": -28.13232 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.40365, "decimalLat": -28.11092 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23244, "decimalLat": -27.97719 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44927, "decimalLat": -28.09464 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43907, "decimalLat": -28.13824 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39081, "decimalLat": -28.12344 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.123 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39637, "decimalLat": -28.14251 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35905, "decimalLat": -27.93281 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3624, "decimalLat": -27.9408 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3597, "decimalLat": -27.93378 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26707, "decimalLat": -28.01093 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -28.011 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2949, "decimalLat": -27.84189 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.842 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37659, "decimalLat": -28.10491 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45518, "decimalLat": -28.13079 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36774, "decimalLat": -27.94811 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36433, "decimalLat": -27.92961 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39174, "decimalLat": -28.11604 }, "geometry": { "type": "Point", "coordinates": [ 153.392, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36403, "decimalLat": -27.92818 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41449, "decimalLat": -28.15916 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.159 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43891, "decimalLat": -28.15966 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.16 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44847, "decimalLat": -28.09316 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29889, "decimalLat": -27.89949 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44653, "decimalLat": -28.14043 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39849, "decimalLat": -28.1438 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.46004, "decimalLat": -28.14905 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44462, "decimalLat": -28.15628 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42763, "decimalLat": -28.1183 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43924, "decimalLat": -28.1597 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.16 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45057, "decimalLat": -28.13568 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42763, "decimalLat": -28.12234 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.456, "decimalLat": -28.095 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3516, "decimalLat": -28.02974 }, "geometry": { "type": "Point", "coordinates": [ 153.352, -28.03 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.42623, "decimalLat": -28.17237 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35972, "decimalLat": -27.84356 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.844 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45132, "decimalLat": -28.16127 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45116, "decimalLat": -28.14154 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45559, "decimalLat": -28.09213 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33918, "decimalLat": -27.80392 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -27.804 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3139, "decimalLat": -27.82106 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -27.821 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45163, "decimalLat": -28.09271 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34008, "decimalLat": -27.91608 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37169, "decimalLat": -27.83849 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.838 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45882, "decimalLat": -28.15787 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.158 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44825, "decimalLat": -28.1007 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45255, "decimalLat": -28.09112 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35751, "decimalLat": -27.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45535, "decimalLat": -28.09673 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3847, "decimalLat": -27.92286 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36576, "decimalLat": -27.9523 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.952 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37351, "decimalLat": -27.94049 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33598, "decimalLat": -27.89973 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44206, "decimalLat": -28.14911 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45271, "decimalLat": -28.09623 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24396, "decimalLat": -27.90641 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43693, "decimalLat": -28.10557 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32875, "decimalLat": -27.89063 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36875, "decimalLat": -28.1071 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45015, "decimalLat": -28.10014 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33569, "decimalLat": -27.90701 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -27.907 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36451, "decimalLat": -27.92839 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.409, "decimalLat": -28.11401 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.114 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43011, "decimalLat": -28.17907 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.179 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43976, "decimalLat": -28.13853 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.365, "decimalLat": -27.93893 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4453, "decimalLat": -28.14114 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35731, "decimalLat": -28.10718 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35706, "decimalLat": -27.93385 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89097 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44065, "decimalLat": -28.15809 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.158 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32822, "decimalLat": -27.89585 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.896 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25002, "decimalLat": -27.9453 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37237, "decimalLat": -27.95845 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.958 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44769, "decimalLat": -28.09036 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.09 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45258, "decimalLat": -28.09215 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32952, "decimalLat": -27.89046 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31966, "decimalLat": -27.91398 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36698, "decimalLat": -27.92919 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09758 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.18487, "decimalLat": -27.80268 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -27.803 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42907, "decimalLat": -28.1464 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37966, "decimalLat": -27.93884 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23237, "decimalLat": -27.97681 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.42729, "decimalLat": -28.1183 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44186, "decimalLat": -28.10626 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33122, "decimalLat": -27.91838 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44709, "decimalLat": -28.13696 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45424, "decimalLat": -28.16273 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.163 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4105, "decimalLat": -28.1137 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.114 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35706, "decimalLat": -27.93385 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31657, "decimalLat": -27.89265 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -27.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35073, "decimalLat": -27.94575 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232, "decimalLat": -27.97705 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45116, "decimalLat": -28.14154 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45178, "decimalLat": -28.09148 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36412, "decimalLat": -27.92885 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44854, "decimalLat": -28.09753 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4501, "decimalLat": -28.10204 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.102 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.33517, "decimalLat": -27.89042 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31467, "decimalLat": -28.05186 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.052 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36445, "decimalLat": -27.9086 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32363, "decimalLat": -28.01049 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.01 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.329, "decimalLat": -27.89085 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44503, "decimalLat": -28.14499 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45256, "decimalLat": -28.09549 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32276, "decimalLat": -27.89826 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.26073, "decimalLat": -27.95234 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.952 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4388, "decimalLat": -28.14221 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30652, "decimalLat": -27.82212 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -27.822 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.25074, "decimalLat": -27.94589 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38136, "decimalLat": -27.94535 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44673, "decimalLat": -28.14059 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3105, "decimalLat": -28.02967 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.03 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35773, "decimalLat": -27.94047 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36109, "decimalLat": -27.93306 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44682, "decimalLat": -28.15373 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36185, "decimalLat": -27.93357 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28263, "decimalLat": -27.99112 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.991 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33543, "decimalLat": -27.91383 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43548, "decimalLat": -28.15603 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33505, "decimalLat": -27.97601 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -27.976 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40556, "decimalLat": -28.14714 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36212, "decimalLat": -27.94931 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43932, "decimalLat": -28.15616 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37388, "decimalLat": -27.94773 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42921, "decimalLat": -28.15905 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.159 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36283, "decimalLat": -27.93379 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43335, "decimalLat": -28.13718 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29798, "decimalLat": -28.00079 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.001 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35669, "decimalLat": -27.94021 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44671, "decimalLat": -28.14064 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32895, "decimalLat": -27.89086 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38958, "decimalLat": -28.10701 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26821, "decimalLat": -27.9152 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39409, "decimalLat": -28.1158 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40355, "decimalLat": -28.11564 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36305, "decimalLat": -27.94256 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36293, "decimalLat": -27.93387 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.24362, "decimalLat": -27.94517 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36311, "decimalLat": -27.91469 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37687, "decimalLat": -27.95826 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.958 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40474, "decimalLat": -28.10688 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38275, "decimalLat": -28.11202 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -28.112 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32398, "decimalLat": -27.90425 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37517, "decimalLat": -28.10973 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.11 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38506, "decimalLat": -27.92311 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45491, "decimalLat": -28.091 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32701, "decimalLat": -27.84938 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.849 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32086, "decimalLat": -27.89533 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -27.895 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38587, "decimalLat": -27.92293 }, "geometry": { "type": "Point", "coordinates": [ 153.386, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.449, "decimalLat": -28.152 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.152 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45105, "decimalLat": -28.16078 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3142, "decimalLat": -27.82085 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -27.821 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3576, "decimalLat": -27.94054 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32598, "decimalLat": -27.81905 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32442, "decimalLat": -27.82479 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -27.825 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45231, "decimalLat": -28.09629 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45209, "decimalLat": -28.09248 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.4294, "decimalLat": -28.157 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.46098, "decimalLat": -28.16101 }, "geometry": { "type": "Point", "coordinates": [ 153.461, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37234, "decimalLat": -27.94452 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.35694, "decimalLat": -27.93855 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45592, "decimalLat": -28.1415 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33125, "decimalLat": -27.91591 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45256, "decimalLat": -28.0957 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35146, "decimalLat": -28.10623 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38465, "decimalLat": -27.92152 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35682, "decimalLat": -27.93798 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30051, "decimalLat": -27.82475 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -27.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23243, "decimalLat": -27.97696 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37493, "decimalLat": -27.94743 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43248, "decimalLat": -28.16552 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.166 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44014, "decimalLat": -28.16689 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -28.167 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44101, "decimalLat": -28.14977 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35167, "decimalLat": -28.11291 }, "geometry": { "type": "Point", "coordinates": [ 153.352, -28.113 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36525, "decimalLat": -27.90277 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42226, "decimalLat": -28.14761 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89089 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38237, "decimalLat": -27.94569 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36963, "decimalLat": -27.94614 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36543, "decimalLat": -27.93072 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.931 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45221, "decimalLat": -28.09686 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42115, "decimalLat": -28.15682 }, "geometry": { "type": "Point", "coordinates": [ 153.421, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26799, "decimalLat": -27.97822 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -27.978 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.42763, "decimalLat": -28.1183 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.4519, "decimalLat": -28.09208 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32284, "decimalLat": -27.90721 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.907 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40825, "decimalLat": -28.11806 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40744, "decimalLat": -28.15722 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44832, "decimalLat": -28.09741 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42228, "decimalLat": -28.1211 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.121 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42468, "decimalLat": -28.12325 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.123 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40575, "decimalLat": -28.16967 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.17 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23213, "decimalLat": -27.97714 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.41444, "decimalLat": -28.14495 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37144, "decimalLat": -27.9054 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.905 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44864, "decimalLat": -28.15375 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42894, "decimalLat": -28.15999 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.16 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36278, "decimalLat": -27.93373 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37997, "decimalLat": -27.82347 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33195, "decimalLat": -28.08082 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -28.081 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33298, "decimalLat": -28.02252 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -28.023 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.331, "decimalLat": -27.90628 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4096, "decimalLat": -28.18311 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.183 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43934, "decimalLat": -28.15967 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.16 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45751, "decimalLat": -28.13303 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32315, "decimalLat": -27.89017 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35694, "decimalLat": -27.93855 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44626, "decimalLat": -28.0896 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.09 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.4099, "decimalLat": -28.11772 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33, "decimalLat": -27.91172 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39843, "decimalLat": -28.10656 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38215, "decimalLat": -27.93293 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3314, "decimalLat": -27.91526 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31967, "decimalLat": -27.90881 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43993, "decimalLat": -28.13712 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43295, "decimalLat": -28.13689 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41062, "decimalLat": -28.18249 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.182 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.13112, "decimalLat": -27.76799 }, "geometry": { "type": "Point", "coordinates": [ 153.131, -27.768 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38271, "decimalLat": -27.90602 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36575, "decimalLat": -27.93016 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.42654, "decimalLat": -28.19025 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.19 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38056, "decimalLat": -27.89217 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44121, "decimalLat": -28.11541 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30402, "decimalLat": -28.02785 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.028 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36295, "decimalLat": -27.9339 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35464, "decimalLat": -28.09126 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.34686, "decimalLat": -27.93263 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45112, "decimalLat": -28.09279 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3316, "decimalLat": -27.96145 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -27.961 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41095, "decimalLat": -28.14262 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40087, "decimalLat": -28.20647 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.206 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2712, "decimalLat": -27.79778 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.798 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40607, "decimalLat": -28.11641 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35023, "decimalLat": -28.13027 }, "geometry": { "type": "Point", "coordinates": [ 153.35, -28.13 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35669, "decimalLat": -27.9358 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33236, "decimalLat": -27.88747 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -27.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45337, "decimalLat": -28.13794 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25994, "decimalLat": -27.99801 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.998 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37298, "decimalLat": -28.10796 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -28.108 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45802, "decimalLat": -28.09371 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22307, "decimalLat": -27.843 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.843 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44652, "decimalLat": -28.14205 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45802, "decimalLat": -28.09371 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25543, "decimalLat": -27.87476 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.875 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44312, "decimalLat": -28.16238 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.162 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41853, "decimalLat": -28.17255 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.173 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44941, "decimalLat": -28.13748 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40372, "decimalLat": -28.11092 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44866, "decimalLat": -28.09511 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45163, "decimalLat": -28.09029 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.09 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45375, "decimalLat": -28.13705 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4572, "decimalLat": -28.1259 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.126 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35706, "decimalLat": -27.93385 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3887, "decimalLat": -27.9223 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26504, "decimalLat": -27.84465 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44088, "decimalLat": -28.11125 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30725, "decimalLat": -27.94028 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42763, "decimalLat": -28.1183 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45382, "decimalLat": -28.16103 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43986, "decimalLat": -28.15661 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43733, "decimalLat": -28.14464 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.18516, "decimalLat": -27.80273 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -27.803 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35603, "decimalLat": -28.09277 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256, "decimalLat": -28.00813 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -28.008 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36569, "decimalLat": -27.94465 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21167, "decimalLat": -27.87267 }, "geometry": { "type": "Point", "coordinates": [ 153.212, -27.873 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4497, "decimalLat": -28.13892 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42113, "decimalLat": -28.15022 }, "geometry": { "type": "Point", "coordinates": [ 153.421, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44204, "decimalLat": -28.14901 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32281, "decimalLat": -27.90675 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.907 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31599, "decimalLat": -27.8991 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45116, "decimalLat": -28.1002 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25756, "decimalLat": -27.7863 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.786 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45305, "decimalLat": -28.16072 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44685, "decimalLat": -28.09347 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36243, "decimalLat": -27.93306 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44573, "decimalLat": -28.15931 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.159 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45, "decimalLat": -28.10097 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35932, "decimalLat": -27.93381 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45123, "decimalLat": -28.09279 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3633, "decimalLat": -27.84246 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.842 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38467, "decimalLat": -27.91667 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44643, "decimalLat": -28.14043 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36256, "decimalLat": -27.94027 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43192, "decimalLat": -28.15712 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.157 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4378, "decimalLat": -28.13879 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40934, "decimalLat": -28.14076 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36936, "decimalLat": -27.83282 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39192, "decimalLat": -28.11375 }, "geometry": { "type": "Point", "coordinates": [ 153.392, -28.114 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35291, "decimalLat": -27.8429 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -27.843 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30023, "decimalLat": -28.0021 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.002 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45258, "decimalLat": -28.09215 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24396, "decimalLat": -27.90641 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36528, "decimalLat": -27.83409 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.341, "decimalLat": -27.90585 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38167, "decimalLat": -27.96512 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.965 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43932, "decimalLat": -28.15616 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36127, "decimalLat": -28.12178 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37338, "decimalLat": -28.10079 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36615, "decimalLat": -27.94826 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40597, "decimalLat": -28.17028 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.17 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35706, "decimalLat": -27.93385 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33, "decimalLat": -27.92281 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45644, "decimalLat": -28.13082 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34521, "decimalLat": -28.11563 }, "geometry": { "type": "Point", "coordinates": [ 153.345, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36388, "decimalLat": -27.92812 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36283, "decimalLat": -27.93379 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36109, "decimalLat": -27.93244 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38801, "decimalLat": -27.92245 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -27.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40296, "decimalLat": -28.11072 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37412, "decimalLat": -27.91055 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.911 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36278, "decimalLat": -27.93373 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45257, "decimalLat": -28.09622 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32885, "decimalLat": -27.89084 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2477, "decimalLat": -27.84138 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.841 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33479, "decimalLat": -28.15172 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.152 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45346, "decimalLat": -28.15274 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.153 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.329, "decimalLat": -27.91564 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45321, "decimalLat": -28.09663 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31919, "decimalLat": -27.90144 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -27.901 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33968, "decimalLat": -27.85552 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -27.856 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27651, "decimalLat": -27.99572 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.996 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37991, "decimalLat": -27.9177 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37144, "decimalLat": -27.83934 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.839 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45203, "decimalLat": -28.14757 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38902, "decimalLat": -28.12217 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3721, "decimalLat": -27.91477 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37702, "decimalLat": -27.8299 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.83 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44921, "decimalLat": -28.0984 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43589, "decimalLat": -28.12854 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.129 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4485, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44869, "decimalLat": -28.09841 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.28915, "decimalLat": -27.91877 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36488, "decimalLat": -27.93417 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37435, "decimalLat": -27.9621 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.962 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42655, "decimalLat": -28.12541 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.125 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32198, "decimalLat": -27.89243 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -27.892 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43389, "decimalLat": -28.16911 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.169 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.33649, "decimalLat": -27.91116 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -27.911 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.934 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45105, "decimalLat": -28.16078 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26504, "decimalLat": -27.84465 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32914, "decimalLat": -27.92049 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45533, "decimalLat": -28.08993 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.09 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35706, "decimalLat": -27.93385 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44861, "decimalLat": -28.10079 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42471, "decimalLat": -28.12313 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.123 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35751, "decimalLat": -27.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45864, "decimalLat": -28.15505 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.155 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35778, "decimalLat": -27.94042 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42047, "decimalLat": -28.15091 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37116, "decimalLat": -28.11049 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.11 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36205, "decimalLat": -27.93206 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35392, "decimalLat": -27.95012 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37996, "decimalLat": -28.13708 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.38859, "decimalLat": -27.91656 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.335, "decimalLat": -28.07194 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.072 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25731, "decimalLat": -27.82617 }, "geometry": { "type": "Point", "coordinates": [ 153.257, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45095, "decimalLat": -28.09276 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4552, "decimalLat": -28.09276 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35504, "decimalLat": -28.10536 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.105 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45554, "decimalLat": -28.14288 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44748, "decimalLat": -28.09328 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.09192, "decimalLat": -27.83332 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23201, "decimalLat": -27.97701 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36294, "decimalLat": -27.84176 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44512, "decimalLat": -28.14493 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44606, "decimalLat": -28.09533 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38262, "decimalLat": -27.95385 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36278, "decimalLat": -27.90226 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4526, "decimalLat": -28.09506 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22937, "decimalLat": -27.97748 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44899, "decimalLat": -28.13754 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32885, "decimalLat": -27.89084 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23197, "decimalLat": -27.97531 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.975 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45007, "decimalLat": -28.14877 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40825, "decimalLat": -28.11806 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27421, "decimalLat": -27.96313 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.963 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28104, "decimalLat": -27.81579 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.816 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44498, "decimalLat": -28.0946 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36389, "decimalLat": -27.92872 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37116, "decimalLat": -28.11049 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.11 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25157, "decimalLat": -27.78826 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.788 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.40714, "decimalLat": -28.14586 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.146 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2731, "decimalLat": -27.97828 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.978 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37232, "decimalLat": -27.93737 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23212, "decimalLat": -27.97671 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45143, "decimalLat": -28.0998 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32569, "decimalLat": -28.0898 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.09 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45258, "decimalLat": -28.09215 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32824, "decimalLat": -27.89936 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44705, "decimalLat": -28.13625 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39213, "decimalLat": -28.12229 }, "geometry": { "type": "Point", "coordinates": [ 153.392, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25002, "decimalLat": -27.9453 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44867, "decimalLat": -28.09744 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35913, "decimalLat": -27.93338 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38009, "decimalLat": -27.93903 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45222, "decimalLat": -28.09539 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45124, "decimalLat": -28.09261 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40825, "decimalLat": -28.11806 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23197, "decimalLat": -27.97534 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.975 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32898, "decimalLat": -27.89091 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35699, "decimalLat": -27.94981 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37139, "decimalLat": -27.95399 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32834, "decimalLat": -27.89125 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45206, "decimalLat": -28.09504 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43851, "decimalLat": -28.11373 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.114 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89085 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.934 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40583, "decimalLat": -28.14791 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29801, "decimalLat": -27.82804 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37955, "decimalLat": -27.94282 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36418, "decimalLat": -27.92825 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.928 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23229, "decimalLat": -27.97712 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36893, "decimalLat": -27.83285 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45194, "decimalLat": -28.13857 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37723, "decimalLat": -27.95131 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.951 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36111, "decimalLat": -27.77802 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.778 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36735, "decimalLat": -27.88144 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.881 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32958, "decimalLat": -27.89015 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40365, "decimalLat": -28.11092 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34068, "decimalLat": -27.90241 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -27.902 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38413, "decimalLat": -27.92024 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2516, "decimalLat": -27.78821 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.788 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26801, "decimalLat": -27.78373 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -27.784 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36587, "decimalLat": -27.93029 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22873, "decimalLat": -27.88457 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.885 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.42853, "decimalLat": -28.14056 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44905, "decimalLat": -28.09768 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32892, "decimalLat": -27.89087 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32659, "decimalLat": -27.905 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.905 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37303, "decimalLat": -27.91254 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43779, "decimalLat": -28.14491 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36064, "decimalLat": -27.93288 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23243, "decimalLat": -27.977 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32921, "decimalLat": -27.89076 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43572, "decimalLat": -28.14216 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3625, "decimalLat": -27.93325 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32931, "decimalLat": -27.89074 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40424, "decimalLat": -28.11792 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44942, "decimalLat": -28.09303 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39167, "decimalLat": -28.10438 }, "geometry": { "type": "Point", "coordinates": [ 153.392, -28.104 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44033, "decimalLat": -28.15039 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37884, "decimalLat": -27.9063 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -27.906 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44788, "decimalLat": -28.09687 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.34166, "decimalLat": -27.90657 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.907 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23215, "decimalLat": -27.97723 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23196, "decimalLat": -27.97668 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44695, "decimalLat": -28.09314 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32316, "decimalLat": -27.92008 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24633, "decimalLat": -27.92608 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.926 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38936, "decimalLat": -27.9227 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45841, "decimalLat": -28.14726 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29561, "decimalLat": -27.84437 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -27.844 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42956, "decimalLat": -28.12154 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32625, "decimalLat": -27.90447 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36393, "decimalLat": -27.92919 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.33023, "decimalLat": -27.912 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37314, "decimalLat": -27.94009 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38755, "decimalLat": -27.92251 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37308, "decimalLat": -28.10152 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -28.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42047, "decimalLat": -28.15091 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44634, "decimalLat": -28.15488 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.155 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43988, "decimalLat": -28.10415 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -28.104 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32921, "decimalLat": -27.89993 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23197, "decimalLat": -27.97534 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.975 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33608, "decimalLat": -27.90697 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -27.907 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44218, "decimalLat": -28.14345 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23766, "decimalLat": -27.97625 }, "geometry": { "type": "Point", "coordinates": [ 153.238, -27.976 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44945, "decimalLat": -28.13374 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.134 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23214, "decimalLat": -27.97718 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31687, "decimalLat": -28.01188 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.012 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44912, "decimalLat": -28.10121 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35751, "decimalLat": -27.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31775, "decimalLat": -28.00129 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.001 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36523, "decimalLat": -27.93943 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45117, "decimalLat": -28.09248 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.99879 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1815, "decimalLat": -27.80103 }, "geometry": { "type": "Point", "coordinates": [ 153.182, -27.801 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37313, "decimalLat": -27.94706 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45157, "decimalLat": -28.09172 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.18487, "decimalLat": -27.80268 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -27.803 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37394, "decimalLat": -27.93424 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23245, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44589, "decimalLat": -28.09711 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36311, "decimalLat": -27.93411 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32927, "decimalLat": -27.89089 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36146, "decimalLat": -27.90292 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24005, "decimalLat": -27.97772 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.978 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45153, "decimalLat": -28.13965 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35888, "decimalLat": -27.93341 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23251, "decimalLat": -27.97711 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45157, "decimalLat": -28.09146 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43674, "decimalLat": -28.1376 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32875, "decimalLat": -27.89041 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40459, "decimalLat": -28.10742 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23244, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37321, "decimalLat": -28.11978 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -28.12 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41912, "decimalLat": -28.11959 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.12 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36442, "decimalLat": -27.92955 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38193, "decimalLat": -27.95268 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38481, "decimalLat": -27.9476 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33124, "decimalLat": -27.91457 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37279, "decimalLat": -27.95446 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35882, "decimalLat": -27.94197 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36203, "decimalLat": -27.9374 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38215, "decimalLat": -27.93293 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43842, "decimalLat": -28.13078 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35743, "decimalLat": -27.94082 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33517, "decimalLat": -27.89075 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44853, "decimalLat": -28.09752 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26429, "decimalLat": -27.84388 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -27.844 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23236, "decimalLat": -27.97683 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44157, "decimalLat": -28.10626 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36423, "decimalLat": -27.95123 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.951 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41849, "decimalLat": -28.13062 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39273, "decimalLat": -28.10974 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.11 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34803, "decimalLat": -27.96021 }, "geometry": { "type": "Point", "coordinates": [ 153.348, -27.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35809, "decimalLat": -27.84313 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.843 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45265, "decimalLat": -28.14016 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37173, "decimalLat": -27.83957 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32935, "decimalLat": -27.89053 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44809, "decimalLat": -28.09828 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34108, "decimalLat": -27.82546 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -27.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32919, "decimalLat": -27.89085 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44671, "decimalLat": -28.14064 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44908, "decimalLat": -28.09873 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.099 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37952, "decimalLat": -27.82202 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2752, "decimalLat": -27.81126 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.811 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32282, "decimalLat": -27.89107 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44153, "decimalLat": -28.11231 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.112 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36677, "decimalLat": -27.92918 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32207, "decimalLat": -27.90182 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -27.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36534, "decimalLat": -27.9326 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.40825, "decimalLat": -28.11806 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44876, "decimalLat": -28.09616 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32822, "decimalLat": -27.89969 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35733, "decimalLat": -27.94074 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.9988 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25001, "decimalLat": -27.9453 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42934, "decimalLat": -28.15178 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.152 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4418, "decimalLat": -28.10347 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.103 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44914, "decimalLat": -28.13747 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23215, "decimalLat": -27.97718 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45269, "decimalLat": -28.09555 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42984, "decimalLat": -28.17994 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.18 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27787, "decimalLat": -27.96181 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.962 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37425, "decimalLat": -27.96187 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.962 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33537, "decimalLat": -28.10378 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.104 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32765, "decimalLat": -28.00853 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.009 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36529, "decimalLat": -27.94491 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23245, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27563, "decimalLat": -27.97425 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.974 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32118, "decimalLat": -27.9791 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -27.979 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44361, "decimalLat": -28.14034 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37127, "decimalLat": -27.89992 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42052, "decimalLat": -28.14974 }, "geometry": { "type": "Point", "coordinates": [ 153.421, -28.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32857, "decimalLat": -27.89541 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.895 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37429, "decimalLat": -27.95405 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45119, "decimalLat": -28.09957 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35453, "decimalLat": -28.09299 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41052, "decimalLat": -28.14313 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44704, "decimalLat": -28.14059 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38741, "decimalLat": -27.92147 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -27.921 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36435, "decimalLat": -27.92895 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.269, "decimalLat": -27.78307 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -27.783 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45663, "decimalLat": -28.09486 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40132, "decimalLat": -28.11435 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.114 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35648, "decimalLat": -27.93738 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31569, "decimalLat": -27.99524 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -27.995 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43934, "decimalLat": -28.13821 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44787, "decimalLat": -28.0932 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35753, "decimalLat": -27.8371 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.837 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32895, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35795, "decimalLat": -27.94139 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41053, "decimalLat": -28.20877 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.209 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35641, "decimalLat": -27.93914 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35841, "decimalLat": -27.94065 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44506, "decimalLat": -28.14078 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32473, "decimalLat": -27.91027 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.91 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35195, "decimalLat": -28.05415 }, "geometry": { "type": "Point", "coordinates": [ 153.352, -28.054 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3841, "decimalLat": -27.92028 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32522, "decimalLat": -27.82378 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38734, "decimalLat": -27.92255 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35999, "decimalLat": -27.94306 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26971, "decimalLat": -28.01639 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -28.016 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43785, "decimalLat": -28.13882 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45282, "decimalLat": -28.13722 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36203, "decimalLat": -27.9374 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45269, "decimalLat": -28.09119 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44652, "decimalLat": -28.1363 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36789, "decimalLat": -27.94941 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -27.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3571, "decimalLat": -27.94176 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.9988 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45195, "decimalLat": -28.09188 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36522, "decimalLat": -27.93126 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.931 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35606, "decimalLat": -27.84246 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44141, "decimalLat": -28.14807 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45892, "decimalLat": -28.15538 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.155 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44694, "decimalLat": -28.09722 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40699, "decimalLat": -28.17835 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.178 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27663, "decimalLat": -27.9988 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.999 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41072, "decimalLat": -28.14401 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42657, "decimalLat": -28.17237 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45167, "decimalLat": -28.1327 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36203, "decimalLat": -27.9374 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44621, "decimalLat": -28.1363 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44471, "decimalLat": -28.14485 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44579, "decimalLat": -28.13783 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2516, "decimalLat": -27.78821 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.788 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32783, "decimalLat": -27.88397 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.884 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45194, "decimalLat": -28.16141 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36145, "decimalLat": -27.9304 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36036, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33075, "decimalLat": -27.91489 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45263, "decimalLat": -28.09537 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36612, "decimalLat": -27.92902 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42489, "decimalLat": -28.12648 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.126 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21165, "decimalLat": -27.87226 }, "geometry": { "type": "Point", "coordinates": [ 153.212, -27.872 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29571, "decimalLat": -27.799 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -27.799 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36093, "decimalLat": -27.93301 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45201, "decimalLat": -28.13882 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45095, "decimalLat": -28.09276 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44761, "decimalLat": -28.09807 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30126, "decimalLat": -27.92325 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -27.923 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23232, "decimalLat": -27.9772 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23241, "decimalLat": -27.97689 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45188, "decimalLat": -28.09206 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.43858, "decimalLat": -28.1554 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.155 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23241, "decimalLat": -27.97689 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42925, "decimalLat": -28.16103 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33025, "decimalLat": -27.90441 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44167, "decimalLat": -28.15623 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44894, "decimalLat": -28.09602 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27309, "decimalLat": -27.98496 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.985 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35774, "decimalLat": -27.94048 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39194, "decimalLat": -28.20908 }, "geometry": { "type": "Point", "coordinates": [ 153.392, -28.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31913, "decimalLat": -27.82618 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -27.826 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45835, "decimalLat": -28.15497 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.155 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38989, "decimalLat": -27.89438 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -27.894 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43917, "decimalLat": -28.1561 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.156 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45354, "decimalLat": -28.09458 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37483, "decimalLat": -28.11081 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35143, "decimalLat": -28.12985 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -28.13 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44981, "decimalLat": -28.10001 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44167, "decimalLat": -28.10623 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44489, "decimalLat": -28.14493 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37083, "decimalLat": -28.17893 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.179 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37452, "decimalLat": -28.20867 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.209 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23229, "decimalLat": -27.97691 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35717, "decimalLat": -27.93818 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43474, "decimalLat": -28.14538 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45518, "decimalLat": -28.16129 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36071, "decimalLat": -27.93681 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36302, "decimalLat": -27.9295 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25242, "decimalLat": -28.12051 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -28.121 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34102, "decimalLat": -27.82546 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -27.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38674, "decimalLat": -27.91495 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37955, "decimalLat": -27.94282 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.409, "decimalLat": -28.14713 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38681, "decimalLat": -27.91882 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31225, "decimalLat": -28.01849 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.018 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3635, "decimalLat": -27.94965 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.934 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37515, "decimalLat": -28.10168 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.102 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34152, "decimalLat": -27.91607 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.27694, "decimalLat": -27.97994 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.98 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29225, "decimalLat": -27.84642 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -27.846 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.3293, "decimalLat": -27.89087 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44962, "decimalLat": -28.15994 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.16 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44644, "decimalLat": -28.14035 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26202, "decimalLat": -28.03093 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -28.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44059, "decimalLat": -28.10461 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.105 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37299, "decimalLat": -27.83195 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.832 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35717, "decimalLat": -27.93818 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.938 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30653, "decimalLat": -28.00788 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.008 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32899, "decimalLat": -27.89087 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44878, "decimalLat": -28.09259 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44798, "decimalLat": -28.16088 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.161 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38603, "decimalLat": -27.94684 }, "geometry": { "type": "Point", "coordinates": [ 153.386, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37306, "decimalLat": -27.91339 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45113, "decimalLat": -28.0928 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43733, "decimalLat": -28.14464 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38393, "decimalLat": -27.92023 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37099, "decimalLat": -28.11555 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32638, "decimalLat": -27.88604 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.886 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35363, "decimalLat": -27.93305 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45007, "decimalLat": -28.14273 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45163, "decimalLat": -28.09204 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36589, "decimalLat": -27.9511 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -27.951 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44154, "decimalLat": -28.10656 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.107 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45408, "decimalLat": -28.13302 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32884, "decimalLat": -27.89082 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2726, "decimalLat": -27.83989 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.07371, "decimalLat": -27.93033 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44879, "decimalLat": -28.09793 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32774, "decimalLat": -28.01279 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.013 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45263, "decimalLat": -28.09503 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37713, "decimalLat": -27.93418 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45407, "decimalLat": -28.09728 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45594, "decimalLat": -28.14706 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.147 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33055, "decimalLat": -27.9183 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.918 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4546, "decimalLat": -28.13288 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36229, "decimalLat": -27.92993 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37704, "decimalLat": -27.91942 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36198, "decimalLat": -27.93227 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37096, "decimalLat": -27.83306 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.833 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38024, "decimalLat": -27.9568 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -27.957 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27698, "decimalLat": -27.99672 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.997 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43882, "decimalLat": -28.15956 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.16 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27126, "decimalLat": -28.01201 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -28.012 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45676, "decimalLat": -28.09324 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35809, "decimalLat": -27.93411 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24738, "decimalLat": -27.76464 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.765 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.17781, "decimalLat": -27.79305 }, "geometry": { "type": "Point", "coordinates": [ 153.178, -27.793 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44696, "decimalLat": -28.13328 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.133 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45278, "decimalLat": -28.09411 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45102, "decimalLat": -28.14135 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2949, "decimalLat": -27.84205 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32923, "decimalLat": -27.89074 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23197, "decimalLat": -27.9753 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.975 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37234, "decimalLat": -27.90385 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32938, "decimalLat": -27.89044 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36191, "decimalLat": -27.93234 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37486, "decimalLat": -27.94737 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.947 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32921, "decimalLat": -27.89076 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23099, "decimalLat": -27.97529 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.975 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41008, "decimalLat": -28.14197 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35611, "decimalLat": -27.93302 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36203, "decimalLat": -27.9374 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36283, "decimalLat": -27.93379 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37449, "decimalLat": -27.90909 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35885, "decimalLat": -27.93283 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45278, "decimalLat": -28.09475 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.35704, "decimalLat": -27.83716 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.837 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45271, "decimalLat": -28.0964 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4501, "decimalLat": -28.10103 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44822, "decimalLat": -28.09938 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.099 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31415, "decimalLat": -28.05113 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.051 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44197, "decimalLat": -28.10639 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27716, "decimalLat": -27.98091 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.981 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.40825, "decimalLat": -28.11806 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36421, "decimalLat": -27.93558 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45163, "decimalLat": -28.09029 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.09 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32944, "decimalLat": -27.89097 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2029, "decimalLat": -27.91123 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.911 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45111, "decimalLat": -28.16049 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.16 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45574, "decimalLat": -28.13122 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.131 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32927, "decimalLat": -27.89072 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44857, "decimalLat": -28.09744 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37231, "decimalLat": -27.91977 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -27.92 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36212, "decimalLat": -27.94931 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43528, "decimalLat": -28.11912 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.119 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37608, "decimalLat": -27.95767 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -27.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31412, "decimalLat": -28.09356 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32298, "decimalLat": -28.0133 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.013 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36297, "decimalLat": -27.93399 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37408, "decimalLat": -27.94815 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -27.948 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44678, "decimalLat": -28.13637 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27634, "decimalLat": -27.97944 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.979 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44142, "decimalLat": -28.15111 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.151 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40415, "decimalLat": -28.13512 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.135 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45889, "decimalLat": -28.13862 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44978, "decimalLat": -28.15357 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.154 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40753, "decimalLat": -28.11841 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.3854, "decimalLat": -27.9148 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45261, "decimalLat": -28.09606 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36252, "decimalLat": -27.95347 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.953 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43233, "decimalLat": -28.16541 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.165 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32923, "decimalLat": -27.89076 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35729, "decimalLat": -27.95005 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41684, "decimalLat": -28.14475 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45287, "decimalLat": -28.09568 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.23137, "decimalLat": -27.97742 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45353, "decimalLat": -28.09637 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43924, "decimalLat": -28.15968 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.16 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4547, "decimalLat": -28.09374 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36039, "decimalLat": -27.93688 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23245, "decimalLat": -27.977 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44591, "decimalLat": -28.09195 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43176, "decimalLat": -28.11204 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.112 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42083, "decimalLat": -28.17173 }, "geometry": { "type": "Point", "coordinates": [ 153.421, -28.172 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32922, "decimalLat": -27.89093 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37344, "decimalLat": -27.83705 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.837 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.46215, "decimalLat": -28.15937 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.159 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40609, "decimalLat": -28.16862 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.169 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35641, "decimalLat": -27.93914 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35756, "decimalLat": -27.94101 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -27.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27544, "decimalLat": -27.99466 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.995 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.46437, "decimalLat": -28.15801 }, "geometry": { "type": "Point", "coordinates": [ 153.464, -28.158 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44647, "decimalLat": -28.13642 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.136 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44645, "decimalLat": -28.14034 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43429, "decimalLat": -28.159 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.159 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45207, "decimalLat": -28.13235 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.132 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23214, "decimalLat": -27.97718 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09742 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35657, "decimalLat": -27.84163 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38131, "decimalLat": -28.08484 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -28.085 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32819, "decimalLat": -27.89498 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.895 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23121, "decimalLat": -27.97582 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.976 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35671, "decimalLat": -27.93713 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2222, "decimalLat": -27.96158 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -27.962 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44369, "decimalLat": -28.16261 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.163 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45945, "decimalLat": -28.14856 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38072, "decimalLat": -27.95351 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -27.954 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37331, "decimalLat": -27.95562 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.956 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32643, "decimalLat": -27.82421 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -27.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37502, "decimalLat": -27.91299 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39321, "decimalLat": -28.1269 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.127 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23246, "decimalLat": -27.97186 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.972 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32695, "decimalLat": -27.82146 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -27.821 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36532, "decimalLat": -27.93055 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -27.931 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43785, "decimalLat": -28.13888 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37097, "decimalLat": -28.11042 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.11 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23234, "decimalLat": -27.97686 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.331278, "decimalLat": -27.982296 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -27.982 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44649, "decimalLat": -28.14027 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.14 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44754, "decimalLat": -28.14932 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.149 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45001, "decimalLat": -28.09275 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3525, "decimalLat": -27.93605 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3413, "decimalLat": -28.0907 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -28.091 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38831, "decimalLat": -27.91109 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -27.911 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43713, "decimalLat": -28.11869 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.119 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3476, "decimalLat": -28.1212 }, "geometry": { "type": "Point", "coordinates": [ 153.348, -28.121 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.42631, "decimalLat": -28.14299 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3295, "decimalLat": -27.8909 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3287, "decimalLat": -27.89088 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29901, "decimalLat": -27.89941 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.899 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41026, "decimalLat": -28.11713 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.117 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32989, "decimalLat": -27.91377 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23204, "decimalLat": -27.97695 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34253, "decimalLat": -27.9086 }, "geometry": { "type": "Point", "coordinates": [ 153.343, -27.909 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.41056, "decimalLat": -28.18167 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.182 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32783, "decimalLat": -27.91206 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36209, "decimalLat": -27.93238 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.932 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.18596, "decimalLat": -27.84146 }, "geometry": { "type": "Point", "coordinates": [ 153.186, -27.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43256, "decimalLat": -28.16681 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.167 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44533, "decimalLat": -28.14129 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37694, "decimalLat": -27.95565 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.956 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.38665, "decimalLat": -27.91929 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -27.919 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44403, "decimalLat": -28.12798 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34442, "decimalLat": -27.95128 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -27.951 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35688, "decimalLat": -27.94035 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35887, "decimalLat": -27.94257 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.943 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.38902, "decimalLat": -28.11749 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.117 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40965, "decimalLat": -28.11395 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.114 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44526, "decimalLat": -28.14395 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33046, "decimalLat": -27.91428 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45119, "decimalLat": -28.09294 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.093 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22555, "decimalLat": -28.20897 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -28.209 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44806, "decimalLat": -28.09752 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25002, "decimalLat": -27.9453 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.945 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36401, "decimalLat": -27.93588 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44694, "decimalLat": -28.14115 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.141 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37666, "decimalLat": -27.91726 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2814, "decimalLat": -27.99411 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.994 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.37836, "decimalLat": -27.94999 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -27.95 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.33023, "decimalLat": -27.88567 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -27.886 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.34529, "decimalLat": -27.94225 }, "geometry": { "type": "Point", "coordinates": [ 153.345, -27.942 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32765, "decimalLat": -28.01266 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.013 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45634, "decimalLat": -28.09161 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40823, "decimalLat": -28.11635 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.116 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45312, "decimalLat": -28.09402 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45219, "decimalLat": -28.09578 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44849, "decimalLat": -28.09754 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.35695, "decimalLat": -27.84492 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25008, "decimalLat": -27.94574 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36207, "decimalLat": -27.93343 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.33943, "decimalLat": -28.03986 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.04 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2951, "decimalLat": -27.84379 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.844 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44503, "decimalLat": -28.14493 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29991, "decimalLat": -28.889062 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.239589, "decimalLat": -29.0855 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -29.085 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.61, "decimalLat": -35.011088 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.6, "decimalLat": -27.4 }, "geometry": { "type": "Point", "coordinates": [ 152.6, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7, "decimalLat": -33.5 }, "geometry": { "type": "Point", "coordinates": [ 150.7, -33.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.2, "decimalLat": -33.8 }, "geometry": { "type": "Point", "coordinates": [ 151.2, -33.8 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.5, "decimalLat": -27.4 }, "geometry": { "type": "Point", "coordinates": [ 153.5, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.658813, "decimalLat": -38.771422 }, "geometry": { "type": "Point", "coordinates": [ 143.659, -38.771 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1, "decimalLat": -27.4 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.6, "decimalLat": -27.4 }, "geometry": { "type": "Point", "coordinates": [ 152.6, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.6, "decimalLat": -27.4 }, "geometry": { "type": "Point", "coordinates": [ 152.6, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.845657, "decimalLat": -34.834544 }, "geometry": { "type": "Point", "coordinates": [ 138.846, -34.835 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.651945, "decimalLat": -34.99907 }, "geometry": { "type": "Point", "coordinates": [ 138.652, -34.999 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.609939, "decimalLat": -35.010859 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.6, "decimalLat": -34.8 }, "geometry": { "type": "Point", "coordinates": [ 146.6, -34.8 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.995291, "decimalLat": -34.847359 }, "geometry": { "type": "Point", "coordinates": [ 138.995, -34.847 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.959324, "decimalLat": -34.8562 }, "geometry": { "type": "Point", "coordinates": [ 138.959, -34.856 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.7, "decimalLat": -34.9 }, "geometry": { "type": "Point", "coordinates": [ 135.7, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.7, "decimalLat": -34.9 }, "geometry": { "type": "Point", "coordinates": [ 135.7, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3, "decimalLat": -28.8 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.8 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.924788, "decimalLat": -27.394295 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -27.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.692118, "decimalLat": -35.094583 }, "geometry": { "type": "Point", "coordinates": [ 138.692, -35.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7, "decimalLat": -33.5 }, "geometry": { "type": "Point", "coordinates": [ 150.7, -33.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.1, "decimalLat": -22.3 }, "geometry": { "type": "Point", "coordinates": [ 149.1, -22.3 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.074106, "decimalLat": -30.886764 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.706115, "decimalLat": -34.904723 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.5, "decimalLat": -27.4 }, "geometry": { "type": "Point", "coordinates": [ 152.5, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.7, "decimalLat": -34.9 }, "geometry": { "type": "Point", "coordinates": [ 135.7, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.0, "decimalLat": -37.6 }, "geometry": { "type": "Point", "coordinates": [ 144.0, -37.6 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.595923, "decimalLat": -38.346242 }, "geometry": { "type": "Point", "coordinates": [ 141.596, -38.346 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.4 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4, "decimalLat": -27.4 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.5, "decimalLat": -27.4 }, "geometry": { "type": "Point", "coordinates": [ 152.5, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 139.0, "decimalLat": -34.9 }, "geometry": { "type": "Point", "coordinates": [ 139.0, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.5, "decimalLat": -27.4 }, "geometry": { "type": "Point", "coordinates": [ 153.5, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 145.60757, "decimalLat": -17.419219 }, "geometry": { "type": "Point", "coordinates": [ 145.608, -17.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.656901, "decimalLat": -34.947763 }, "geometry": { "type": "Point", "coordinates": [ 138.657, -34.948 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.610168, "decimalLat": -35.010901 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.7, "decimalLat": -34.9 }, "geometry": { "type": "Point", "coordinates": [ 135.7, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7, "decimalLat": -33.5 }, "geometry": { "type": "Point", "coordinates": [ 150.7, -33.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.9, "decimalLat": -38.6 }, "geometry": { "type": "Point", "coordinates": [ 145.9, -38.6 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.144964, "decimalLat": -38.034469 }, "geometry": { "type": "Point", "coordinates": [ 141.145, -38.034 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.1, "decimalLat": -21.3 }, "geometry": { "type": "Point", "coordinates": [ 149.1, -21.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.610244, "decimalLat": -35.010886 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7, "decimalLat": -33.5 }, "geometry": { "type": "Point", "coordinates": [ 150.7, -33.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.602968, "decimalLat": -35.014107 }, "geometry": { "type": "Point", "coordinates": [ 138.603, -35.014 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.61026, "decimalLat": -35.010829 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.740127, "decimalLat": -34.831787 }, "geometry": { "type": "Point", "coordinates": [ 138.74, -34.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.939397, "decimalLat": -27.35958 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -27.36 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.642075, "decimalLat": -34.974407 }, "geometry": { "type": "Point", "coordinates": [ 138.642, -34.974 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.6, "decimalLat": -27.4 }, "geometry": { "type": "Point", "coordinates": [ 152.6, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.617278, "decimalLat": -34.956805 }, "geometry": { "type": "Point", "coordinates": [ 138.617, -34.957 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.083154, "decimalLat": -27.507331 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.610275, "decimalLat": -35.01081 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.759798, "decimalLat": -34.907458 }, "geometry": { "type": "Point", "coordinates": [ 138.76, -34.907 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.940004, "decimalLat": -27.357586 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.4 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.6, "decimalLat": -27.1 }, "geometry": { "type": "Point", "coordinates": [ 152.6, -27.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.441471, "decimalLat": -27.348883 }, "geometry": { "type": "Point", "coordinates": [ 152.441, -27.349 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.6, "decimalLat": -32.3 }, "geometry": { "type": "Point", "coordinates": [ 148.6, -32.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.712022, "decimalLat": -38.253662 }, "geometry": { "type": "Point", "coordinates": [ 141.712, -38.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703851, "decimalLat": -34.903081 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.077557, "decimalLat": -27.26164 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.262 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.5, "decimalLat": -28.0 }, "geometry": { "type": "Point", "coordinates": [ 151.5, -28.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.773564, "decimalLat": -34.183092 }, "geometry": { "type": "Point", "coordinates": [ 140.774, -34.183 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1, "decimalLat": -30.3 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -30.3 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.759167, "decimalLat": -35.041517 }, "geometry": { "type": "Point", "coordinates": [ 138.759, -35.042 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.2, "decimalLat": -38.1 }, "geometry": { "type": "Point", "coordinates": [ 141.2, -38.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -34.9 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718161, "decimalLat": -34.900775 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -34.901 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7, "decimalLat": -33.5 }, "geometry": { "type": "Point", "coordinates": [ 150.7, -33.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.4, "decimalLat": -38.3 }, "geometry": { "type": "Point", "coordinates": [ 142.4, -38.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.218783, "decimalLat": -28.182941 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -28.183 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -34.9 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.5934, "decimalLat": -38.276845 }, "geometry": { "type": "Point", "coordinates": [ 141.593, -38.277 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082229, "decimalLat": -27.510265 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.60265, "decimalLat": -34.900517 }, "geometry": { "type": "Point", "coordinates": [ 138.603, -34.901 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.6, "decimalLat": -35.7 }, "geometry": { "type": "Point", "coordinates": [ 137.6, -35.7 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1, "decimalLat": -27.2 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.2 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.737443, "decimalLat": -34.829846 }, "geometry": { "type": "Point", "coordinates": [ 138.737, -34.83 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4, "decimalLat": -27.9 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.635362, "decimalLat": -34.990659 }, "geometry": { "type": "Point", "coordinates": [ 138.635, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.775833, "decimalLat": -34.969953 }, "geometry": { "type": "Point", "coordinates": [ 138.776, -34.97 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.6, "decimalLat": -27.4 }, "geometry": { "type": "Point", "coordinates": [ 152.6, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.264489, "decimalLat": -37.470778 }, "geometry": { "type": "Point", "coordinates": [ 145.264, -37.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.61, "decimalLat": -35.011088 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199617, "decimalLat": -27.565993 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6, "decimalLat": -30.5 }, "geometry": { "type": "Point", "coordinates": [ 151.6, -30.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.3, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7, "decimalLat": -33.5 }, "geometry": { "type": "Point", "coordinates": [ 150.7, -33.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.711804, "decimalLat": -34.908561 }, "geometry": { "type": "Point", "coordinates": [ 138.712, -34.909 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -34.9 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.7, "decimalLat": -38.3 }, "geometry": { "type": "Point", "coordinates": [ 141.7, -38.3 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 136.8, "decimalLat": -36.0 }, "geometry": { "type": "Point", "coordinates": [ 136.8, -36.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.633347, "decimalLat": -34.970558 }, "geometry": { "type": "Point", "coordinates": [ 138.633, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2, "decimalLat": -27.6 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057535, "decimalLat": -27.550909 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4, "decimalLat": -27.9 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -34.9 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.9, "decimalLat": -38.6 }, "geometry": { "type": "Point", "coordinates": [ 143.9, -38.6 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.274108, "decimalLat": -38.05377 }, "geometry": { "type": "Point", "coordinates": [ 141.274, -38.054 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.7, "decimalLat": -27.4 }, "geometry": { "type": "Point", "coordinates": [ 151.7, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.9, "decimalLat": -28.7 }, "geometry": { "type": "Point", "coordinates": [ 151.9, -28.7 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9403, "decimalLat": -27.357953 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.725069, "decimalLat": -34.87525 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -34.875 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6, "decimalLat": -30.5 }, "geometry": { "type": "Point", "coordinates": [ 151.6, -30.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718047, "decimalLat": -34.892223 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -34.892 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.9, "decimalLat": -38.6 }, "geometry": { "type": "Point", "coordinates": [ 143.9, -38.6 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.004893, "decimalLat": -27.761052 }, "geometry": { "type": "Point", "coordinates": [ 153.005, -27.761 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.741348, "decimalLat": -34.839073 }, "geometry": { "type": "Point", "coordinates": [ 138.741, -34.839 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8, "decimalLat": -30.3 }, "geometry": { "type": "Point", "coordinates": [ 152.8, -30.3 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3, "decimalLat": -28.9 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.971192, "decimalLat": -37.718055 }, "geometry": { "type": "Point", "coordinates": [ 141.971, -37.718 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.767473, "decimalLat": -27.737 }, "geometry": { "type": "Point", "coordinates": [ 152.767, -27.737 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.94031, "decimalLat": -27.357711 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086554, "decimalLat": -26.396647 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -26.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.635189, "decimalLat": -35.007999 }, "geometry": { "type": "Point", "coordinates": [ 138.635, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.610229, "decimalLat": -35.010856 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90364, "decimalLat": -31.443707 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.713924, "decimalLat": -38.638951 }, "geometry": { "type": "Point", "coordinates": [ 145.714, -38.639 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2, "decimalLat": -27.7 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.7 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.1 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.631702, "decimalLat": -38.324909 }, "geometry": { "type": "Point", "coordinates": [ 142.632, -38.325 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.630908, "decimalLat": -35.023943 }, "geometry": { "type": "Point", "coordinates": [ 138.631, -35.024 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.646294, "decimalLat": -35.003144 }, "geometry": { "type": "Point", "coordinates": [ 138.646, -35.003 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.630166, "decimalLat": -35.112316 }, "geometry": { "type": "Point", "coordinates": [ 138.63, -35.112 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.649715, "decimalLat": -34.932866 }, "geometry": { "type": "Point", "coordinates": [ 138.65, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.632181, "decimalLat": -34.889277 }, "geometry": { "type": "Point", "coordinates": [ 138.632, -34.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.614835, "decimalLat": -34.932007 }, "geometry": { "type": "Point", "coordinates": [ 138.615, -34.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.735312, "decimalLat": -34.826976 }, "geometry": { "type": "Point", "coordinates": [ 138.735, -34.827 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.650453, "decimalLat": -34.948988 }, "geometry": { "type": "Point", "coordinates": [ 138.65, -34.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.610092, "decimalLat": -35.010966 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67698, "decimalLat": -35.102867 }, "geometry": { "type": "Point", "coordinates": [ 138.677, -35.103 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.3 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -34.9 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.740448, "decimalLat": -34.772599 }, "geometry": { "type": "Point", "coordinates": [ 138.74, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.1, "decimalLat": -32.8 }, "geometry": { "type": "Point", "coordinates": [ 152.1, -32.8 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -34.8 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.8 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.673919, "decimalLat": -34.939206 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -34.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.2, "decimalLat": -28.5 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -28.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.61006, "decimalLat": -35.011072 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.5, "decimalLat": -28.0 }, "geometry": { "type": "Point", "coordinates": [ 151.5, -28.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703755, "decimalLat": -34.930467 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -34.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.755474, "decimalLat": -34.177302 }, "geometry": { "type": "Point", "coordinates": [ 140.755, -34.177 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.688862, "decimalLat": -34.953501 }, "geometry": { "type": "Point", "coordinates": [ 138.689, -34.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.939871, "decimalLat": -27.358177 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -34.8 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.8 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.610275, "decimalLat": -35.01081 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.9, "decimalLat": -27.6 }, "geometry": { "type": "Point", "coordinates": [ 151.9, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085282, "decimalLat": -27.510229 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.745041, "decimalLat": -34.838462 }, "geometry": { "type": "Point", "coordinates": [ 138.745, -34.838 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.3, "decimalLat": -27.2 }, "geometry": { "type": "Point", "coordinates": [ 151.3, -27.2 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.5, "decimalLat": -28.0 }, "geometry": { "type": "Point", "coordinates": [ 151.5, -28.0 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.610275, "decimalLat": -35.01081 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898293, "decimalLat": -31.443979 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.607759, "decimalLat": -35.072804 }, "geometry": { "type": "Point", "coordinates": [ 138.608, -35.073 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.1, "decimalLat": -34.0 }, "geometry": { "type": "Point", "coordinates": [ 151.1, -34.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.59801, "decimalLat": -35.059488 }, "geometry": { "type": "Point", "coordinates": [ 138.598, -35.059 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.997753, "decimalLat": -27.434648 }, "geometry": { "type": "Point", "coordinates": [ 152.998, -27.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 147.9, "decimalLat": -20.3 }, "geometry": { "type": "Point", "coordinates": [ 147.9, -20.3 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.76158, "decimalLat": -35.046794 }, "geometry": { "type": "Point", "coordinates": [ 138.762, -35.047 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.637909, "decimalLat": -34.989087 }, "geometry": { "type": "Point", "coordinates": [ 138.638, -34.989 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.744713, "decimalLat": -34.99288 }, "geometry": { "type": "Point", "coordinates": [ 138.745, -34.993 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.5, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 152.5, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.493439, "decimalLat": -27.394215 }, "geometry": { "type": "Point", "coordinates": [ 152.493, -27.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.701713, "decimalLat": -34.902815 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0, "decimalLat": -27.3 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.9, "decimalLat": -38.7 }, "geometry": { "type": "Point", "coordinates": [ 143.9, -38.7 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.865782, "decimalLat": -26.67271 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -26.673 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.0, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 152.0, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.696547, "decimalLat": -34.899689 }, "geometry": { "type": "Point", "coordinates": [ 138.697, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.718336, "decimalLat": -34.896628 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -34.897 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.5, "decimalLat": -38.4 }, "geometry": { "type": "Point", "coordinates": [ 141.5, -38.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4, "decimalLat": -28.1 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.588083, "decimalLat": -34.769573 }, "geometry": { "type": "Point", "coordinates": [ 146.588, -34.77 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.641237, "decimalLat": -35.005683 }, "geometry": { "type": "Point", "coordinates": [ 138.641, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.1 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -34.8 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.8 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.756505, "decimalLat": -34.178945 }, "geometry": { "type": "Point", "coordinates": [ 140.757, -34.179 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.940498, "decimalLat": -27.357505 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1, "decimalLat": -30.2 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -30.2 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.564553, "decimalLat": -35.154061 }, "geometry": { "type": "Point", "coordinates": [ 138.565, -35.154 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.3, "decimalLat": -38.4 }, "geometry": { "type": "Point", "coordinates": [ 143.3, -38.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072176, "decimalLat": -27.664422 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.664 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -26.9 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -26.9 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.7, "decimalLat": -38.2 }, "geometry": { "type": "Point", "coordinates": [ 141.7, -38.2 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.698121, "decimalLat": -34.90336 }, "geometry": { "type": "Point", "coordinates": [ 138.698, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.704971, "decimalLat": -34.903662 }, "geometry": { "type": "Point", "coordinates": [ 138.705, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0, "decimalLat": -27.3 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.610275, "decimalLat": -35.01081 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.609451, "decimalLat": -35.011199 }, "geometry": { "type": "Point", "coordinates": [ 138.609, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.700915, "decimalLat": -34.901524 }, "geometry": { "type": "Point", "coordinates": [ 138.701, -34.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -34.8 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.8 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.744995, "decimalLat": -34.827743 }, "geometry": { "type": "Point", "coordinates": [ 138.745, -34.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.940223, "decimalLat": -27.357769 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.614593, "decimalLat": -27.072515 }, "geometry": { "type": "Point", "coordinates": [ 152.615, -27.073 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702919, "decimalLat": -34.902796 }, "geometry": { "type": "Point", "coordinates": [ 138.703, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.939831, "decimalLat": -38.729557 }, "geometry": { "type": "Point", "coordinates": [ 145.94, -38.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.5, "decimalLat": -28.1 }, "geometry": { "type": "Point", "coordinates": [ 151.5, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 145.2, "decimalLat": -15.4 }, "geometry": { "type": "Point", "coordinates": [ 145.2, -15.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.610092, "decimalLat": -35.011004 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.710647, "decimalLat": -34.903707 }, "geometry": { "type": "Point", "coordinates": [ 138.711, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.0, "decimalLat": -27.6 }, "geometry": { "type": "Point", "coordinates": [ 152.0, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -34.9 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.6, "decimalLat": -37.9 }, "geometry": { "type": "Point", "coordinates": [ 144.6, -37.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080001, "decimalLat": -27.513863 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.3 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.8, "decimalLat": -19.1 }, "geometry": { "type": "Point", "coordinates": [ 146.8, -19.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.6, "decimalLat": -27.3 }, "geometry": { "type": "Point", "coordinates": [ 152.6, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.632572, "decimalLat": -38.32478 }, "geometry": { "type": "Point", "coordinates": [ 142.633, -38.325 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.616976, "decimalLat": -34.904502 }, "geometry": { "type": "Point", "coordinates": [ 138.617, -34.905 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.2, "decimalLat": -38.5 }, "geometry": { "type": "Point", "coordinates": [ 145.2, -38.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.3 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703846, "decimalLat": -34.976249 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -34.976 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.3 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.743848, "decimalLat": -34.955533 }, "geometry": { "type": "Point", "coordinates": [ 138.744, -34.956 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1, "decimalLat": -27.3 }, "geometry": { "type": "Point", "coordinates": [ 152.1, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.648636, "decimalLat": -34.885628 }, "geometry": { "type": "Point", "coordinates": [ 138.649, -34.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.5, "decimalLat": -38.3 }, "geometry": { "type": "Point", "coordinates": [ 142.5, -38.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.0, "decimalLat": -28.7 }, "geometry": { "type": "Point", "coordinates": [ 152.0, -28.7 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1, "decimalLat": -30.4 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -30.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.761644, "decimalLat": -34.178946 }, "geometry": { "type": "Point", "coordinates": [ 140.762, -34.179 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.5, "decimalLat": -38.3 }, "geometry": { "type": "Point", "coordinates": [ 142.5, -38.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929004, "decimalLat": -31.459586 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.660079, "decimalLat": -34.947713 }, "geometry": { "type": "Point", "coordinates": [ 138.66, -34.948 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.940038, "decimalLat": -27.357859 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.635445, "decimalLat": -34.854081 }, "geometry": { "type": "Point", "coordinates": [ 138.635, -34.854 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.9, "decimalLat": -19.1 }, "geometry": { "type": "Point", "coordinates": [ 146.9, -19.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.930789, "decimalLat": -27.471577 }, "geometry": { "type": "Point", "coordinates": [ 152.931, -27.472 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.1, "decimalLat": -27.3 }, "geometry": { "type": "Point", "coordinates": [ 152.1, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.684016, "decimalLat": -34.775417 }, "geometry": { "type": "Point", "coordinates": [ 138.684, -34.775 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.545837, "decimalLat": -38.771366 }, "geometry": { "type": "Point", "coordinates": [ 143.546, -38.771 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.709941, "decimalLat": -38.684348 }, "geometry": { "type": "Point", "coordinates": [ 143.71, -38.684 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.643385, "decimalLat": -35.003732 }, "geometry": { "type": "Point", "coordinates": [ 138.643, -35.004 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.50568, "decimalLat": -34.815709 }, "geometry": { "type": "Point", "coordinates": [ 138.506, -34.816 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.0, "decimalLat": -34.0 }, "geometry": { "type": "Point", "coordinates": [ 151.0, -34.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.654008, "decimalLat": -38.722057 }, "geometry": { "type": "Point", "coordinates": [ 143.654, -38.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -34.9 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232728, "decimalLat": -27.486428 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655731, "decimalLat": -35.017779 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -35.018 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -34.9 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.364392, "decimalLat": -38.314737 }, "geometry": { "type": "Point", "coordinates": [ 142.364, -38.315 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2, "decimalLat": -28.2 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -28.2 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.5, "decimalLat": -27.3 }, "geometry": { "type": "Point", "coordinates": [ 152.5, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.9, "decimalLat": -27.6 }, "geometry": { "type": "Point", "coordinates": [ 151.9, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.7, "decimalLat": -38.2 }, "geometry": { "type": "Point", "coordinates": [ 141.7, -38.2 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.706423, "decimalLat": -34.97068 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.642048, "decimalLat": -35.019929 }, "geometry": { "type": "Point", "coordinates": [ 138.642, -35.02 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.610275, "decimalLat": -35.01081 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.660912, "decimalLat": -38.014023 }, "geometry": { "type": "Point", "coordinates": [ 141.661, -38.014 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.8, "decimalLat": -36.0 }, "geometry": { "type": "Point", "coordinates": [ 145.8, -36.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.634505, "decimalLat": -38.121864 }, "geometry": { "type": "Point", "coordinates": [ 141.635, -38.122 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.4 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -34.9 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.939892, "decimalLat": -27.358759 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -27.359 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.496445, "decimalLat": -27.394195 }, "geometry": { "type": "Point", "coordinates": [ 152.496, -27.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.733899, "decimalLat": -34.827199 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -34.827 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.2, "decimalLat": -28.1 }, "geometry": { "type": "Point", "coordinates": [ 152.2, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.708068, "decimalLat": -34.932596 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.7, "decimalLat": -34.8 }, "geometry": { "type": "Point", "coordinates": [ 135.7, -34.8 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.3 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.636803, "decimalLat": -35.006336 }, "geometry": { "type": "Point", "coordinates": [ 138.637, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.9, "decimalLat": -19.1 }, "geometry": { "type": "Point", "coordinates": [ 146.9, -19.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.610202, "decimalLat": -35.011167 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.7, "decimalLat": -28.3 }, "geometry": { "type": "Point", "coordinates": [ 152.7, -28.3 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.4, "decimalLat": -38.3 }, "geometry": { "type": "Point", "coordinates": [ 142.4, -38.3 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.6, "decimalLat": -38.8 }, "geometry": { "type": "Point", "coordinates": [ 143.6, -38.8 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.8, "decimalLat": -19.1 }, "geometry": { "type": "Point", "coordinates": [ 146.8, -19.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.0, "decimalLat": -27.6 }, "geometry": { "type": "Point", "coordinates": [ 152.0, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.703887, "decimalLat": -34.903331 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.594483, "decimalLat": -38.271208 }, "geometry": { "type": "Point", "coordinates": [ 141.594, -38.271 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -34.9 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.940331, "decimalLat": -27.357159 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -27.357 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1, "decimalLat": -30.4 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -30.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.0, "decimalLat": -30.6 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -30.6 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.3 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.618584, "decimalLat": -34.965885 }, "geometry": { "type": "Point", "coordinates": [ 138.619, -34.966 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.435039, "decimalLat": -20.933456 }, "geometry": { "type": "Point", "coordinates": [ 149.435, -20.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.939077, "decimalLat": -38.733087 }, "geometry": { "type": "Point", "coordinates": [ 145.939, -38.733 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.655737, "decimalLat": -34.86852 }, "geometry": { "type": "Point", "coordinates": [ 138.656, -34.869 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.938152, "decimalLat": -27.273562 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -27.274 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.742492, "decimalLat": -37.963392 }, "geometry": { "type": "Point", "coordinates": [ 141.742, -37.963 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9, "decimalLat": -27.3 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.939802, "decimalLat": -27.35819 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -27.358 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.712275, "decimalLat": -34.899662 }, "geometry": { "type": "Point", "coordinates": [ 138.712, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.4 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 145.5, "decimalLat": -17.3 }, "geometry": { "type": "Point", "coordinates": [ 145.5, -17.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253008, "decimalLat": -28.039554 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -28.04 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -34.9 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.520019, "decimalLat": -34.930377 }, "geometry": { "type": "Point", "coordinates": [ 138.52, -34.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073671, "decimalLat": -27.542869 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.761825, "decimalLat": -34.178969 }, "geometry": { "type": "Point", "coordinates": [ 140.762, -34.179 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.6, "decimalLat": -38.8 }, "geometry": { "type": "Point", "coordinates": [ 143.6, -38.8 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -34.9 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.3 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.610245, "decimalLat": -35.01111 }, "geometry": { "type": "Point", "coordinates": [ 138.61, -35.011 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.9, "decimalLat": -19.1 }, "geometry": { "type": "Point", "coordinates": [ 146.9, -19.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.606619, "decimalLat": -34.921887 }, "geometry": { "type": "Point", "coordinates": [ 138.607, -34.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.743442, "decimalLat": -34.629339 }, "geometry": { "type": "Point", "coordinates": [ 138.743, -34.629 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.530724, "decimalLat": -38.336663 }, "geometry": { "type": "Point", "coordinates": [ 142.531, -38.337 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.909266, "decimalLat": -38.574149 }, "geometry": { "type": "Point", "coordinates": [ 143.909, -38.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.9, "decimalLat": -19.1 }, "geometry": { "type": "Point", "coordinates": [ 146.9, -19.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.728939, "decimalLat": -34.833792 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -34.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6, "decimalLat": -35.0 }, "geometry": { "type": "Point", "coordinates": [ 138.6, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.701541, "decimalLat": -36.359558 }, "geometry": { "type": "Point", "coordinates": [ 146.702, -36.36 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24992, "decimalLat": -27.511609 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2514, "decimalLat": -27.511692 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26062, "decimalLat": -27.523256 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.523 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27197, "decimalLat": -27.575242 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201918, "decimalLat": -27.548516 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248485, "decimalLat": -27.490719 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24556, "decimalLat": -27.490995 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19371, "decimalLat": -27.503429 }, "geometry": { "type": "Point", "coordinates": [ 153.194, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250881, "decimalLat": -27.50987 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256078, "decimalLat": -27.512748 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247238, "decimalLat": -27.48958 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.195023, "decimalLat": -27.50412 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251918, "decimalLat": -27.511597 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200168, "decimalLat": -27.510928 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255609, "decimalLat": -27.494794 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.523816, "decimalLat": -27.432085 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232193, "decimalLat": -27.507948 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253819, "decimalLat": -27.511702 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24187, "decimalLat": -27.512992 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19458, "decimalLat": -27.504375 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271025, "decimalLat": -27.575318 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243469, "decimalLat": -27.491316 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.405275, "decimalLat": -27.494279 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270789, "decimalLat": -27.575547 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271841, "decimalLat": -27.576688 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247709, "decimalLat": -27.511462 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245453, "decimalLat": -27.48966 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248993, "decimalLat": -27.489954 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221983, "decimalLat": -27.500228 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.405581, "decimalLat": -27.4934 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283329, "decimalLat": -27.525843 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25021, "decimalLat": -27.502539 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249192, "decimalLat": -27.490329 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255107, "decimalLat": -27.513302 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250223, "decimalLat": -27.51138 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245932, "decimalLat": -27.496903 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439373, "decimalLat": -27.400296 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202957, "decimalLat": -27.512945 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248692, "decimalLat": -27.511599 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.538359, "decimalLat": -27.427002 }, "geometry": { "type": "Point", "coordinates": [ 153.538, -27.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19751, "decimalLat": -27.513937 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259001, "decimalLat": -27.512222 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251359, "decimalLat": -27.511621 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250277, "decimalLat": -27.511368 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271603, "decimalLat": -27.575143 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245086, "decimalLat": -27.490385 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.268539, "decimalLat": -27.54628 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25114, "decimalLat": -27.503072 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439675, "decimalLat": -27.393433 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248601, "decimalLat": -27.511465 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2521, "decimalLat": -27.501164 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.222015, "decimalLat": -27.496115 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196411, "decimalLat": -27.509653 }, "geometry": { "type": "Point", "coordinates": [ 153.196, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198288, "decimalLat": -27.510695 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248232, "decimalLat": -27.49096 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200226, "decimalLat": -27.51087 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250672, "decimalLat": -27.511741 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198105, "decimalLat": -27.613394 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20672, "decimalLat": -27.62116 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.304794, "decimalLat": -27.564629 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199142, "decimalLat": -27.511171 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225401, "decimalLat": -27.502655 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245453, "decimalLat": -27.489662 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249546, "decimalLat": -27.490048 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246262, "decimalLat": -27.489143 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272603, "decimalLat": -27.572769 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43918, "decimalLat": -27.4002 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246092, "decimalLat": -27.497924 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248716, "decimalLat": -27.491018 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.269759, "decimalLat": -27.575204 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24543, "decimalLat": -27.49093 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232986, "decimalLat": -27.505886 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231457, "decimalLat": -27.502215 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256038, "decimalLat": -27.513783 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232605, "decimalLat": -27.55551 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.556 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271051, "decimalLat": -27.574737 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272552, "decimalLat": -27.528944 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247995, "decimalLat": -27.489778 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.520771, "decimalLat": -27.425619 }, "geometry": { "type": "Point", "coordinates": [ 153.521, -27.426 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271862, "decimalLat": -27.576726 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198471, "decimalLat": -27.613459 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272061, "decimalLat": -27.576659 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233398, "decimalLat": -27.506153 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272903, "decimalLat": -27.576421 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245117, "decimalLat": -27.489929 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.448778, "decimalLat": -27.391539 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -27.392 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233093, "decimalLat": -27.506384 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22559, "decimalLat": -27.502926 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43795, "decimalLat": -27.400578 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244958, "decimalLat": -27.491139 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248893, "decimalLat": -27.489709 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281819, "decimalLat": -27.532576 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23172, "decimalLat": -27.500996 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438783, "decimalLat": -27.396297 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254149, "decimalLat": -27.493616 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246027, "decimalLat": -27.497588 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24827, "decimalLat": -27.490662 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232452, "decimalLat": -27.502241 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.442296, "decimalLat": -27.395655 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259696, "decimalLat": -27.546544 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27094, "decimalLat": -27.575623 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201447, "decimalLat": -27.511513 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250312, "decimalLat": -27.511355 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250572, "decimalLat": -27.511731 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250521, "decimalLat": -27.5117 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245213, "decimalLat": -27.49576 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250843, "decimalLat": -27.511676 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249208, "decimalLat": -27.489882 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29863, "decimalLat": -27.569805 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248452, "decimalLat": -27.490725 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248275, "decimalLat": -27.490728 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255614, "decimalLat": -27.512198 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21788, "decimalLat": -27.494668 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24784, "decimalLat": -27.491291 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.515589, "decimalLat": -27.422871 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -27.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403291, "decimalLat": -27.493787 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199646, "decimalLat": -27.613317 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244522, "decimalLat": -27.488209 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199554, "decimalLat": -27.613079 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242225, "decimalLat": -27.512319 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253684, "decimalLat": -27.51174 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.208694, "decimalLat": -27.622513 }, "geometry": { "type": "Point", "coordinates": [ 153.209, -27.623 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248135, "decimalLat": -27.490586 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271058, "decimalLat": -27.575698 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.269424, "decimalLat": -27.540329 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248337, "decimalLat": -27.490517 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198364, "decimalLat": -27.510536 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248537, "decimalLat": -27.511545 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248253, "decimalLat": -27.490109 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201324, "decimalLat": -27.506072 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200958, "decimalLat": -27.508215 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.446385, "decimalLat": -27.396045 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250675, "decimalLat": -27.511579 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4, "decimalLat": -27.62 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.62 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250232, "decimalLat": -27.511375 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.296906, "decimalLat": -27.567814 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.430567, "decimalLat": -27.494999 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231743, "decimalLat": -27.533558 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259476, "decimalLat": -27.532635 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.089955, "decimalLat": -27.514837 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24727, "decimalLat": -27.511424 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251456, "decimalLat": -27.511661 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204082, "decimalLat": -27.511498 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246869, "decimalLat": -27.511447 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271519, "decimalLat": -27.574729 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198868, "decimalLat": -27.613426 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247148, "decimalLat": -27.511465 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249889, "decimalLat": -27.511264 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271433, "decimalLat": -27.575204 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437998, "decimalLat": -27.398356 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281775, "decimalLat": -27.525886 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248634, "decimalLat": -27.490289 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234055, "decimalLat": -27.504677 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253098, "decimalLat": -27.502888 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282012, "decimalLat": -27.531877 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249144, "decimalLat": -27.489882 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270832, "decimalLat": -27.575566 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239096, "decimalLat": -27.482888 }, "geometry": { "type": "Point", "coordinates": [ 153.239, -27.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248506, "decimalLat": -27.490676 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250694, "decimalLat": -27.531638 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231464, "decimalLat": -27.500194 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.304611, "decimalLat": -27.565456 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197693, "decimalLat": -27.615135 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.520117, "decimalLat": -27.424926 }, "geometry": { "type": "Point", "coordinates": [ 153.52, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271455, "decimalLat": -27.575261 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251924, "decimalLat": -27.512212 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20192, "decimalLat": -27.5117 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271648, "decimalLat": -27.574082 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250195, "decimalLat": -27.511356 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225447, "decimalLat": -27.498372 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248526, "decimalLat": -27.490319 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249983, "decimalLat": -27.511584 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.516941, "decimalLat": -27.426024 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -27.426 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295029, "decimalLat": -27.568907 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272163, "decimalLat": -27.5745 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.457883, "decimalLat": -27.412381 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -27.412 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250773, "decimalLat": -27.511564 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250072, "decimalLat": -27.511573 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244863, "decimalLat": -27.491012 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244954, "decimalLat": -27.490837 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.444499, "decimalLat": -27.395957 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233139, "decimalLat": -27.505827 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253868, "decimalLat": -27.511779 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197403, "decimalLat": -27.615328 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24772, "decimalLat": -27.511421 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271712, "decimalLat": -27.575242 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251883, "decimalLat": -27.500896 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246119, "decimalLat": -27.508354 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21445, "decimalLat": -27.49223 }, "geometry": { "type": "Point", "coordinates": [ 153.214, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.398943, "decimalLat": -27.496988 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248679, "decimalLat": -27.489833 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197968, "decimalLat": -27.506226 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248635, "decimalLat": -27.490398 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.402749, "decimalLat": -27.494307 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.400066, "decimalLat": -27.499091 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245514, "decimalLat": -27.489487 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251678, "decimalLat": -27.5093 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249451, "decimalLat": -27.490229 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206711, "decimalLat": -27.621141 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250124, "decimalLat": -27.511334 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245259, "decimalLat": -27.489934 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250866, "decimalLat": -27.511627 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248733, "decimalLat": -27.490963 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271603, "decimalLat": -27.575143 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441925, "decimalLat": -27.395012 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249687, "decimalLat": -27.511633 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255996, "decimalLat": -27.514377 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245282, "decimalLat": -27.495843 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255218, "decimalLat": -27.513305 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258854, "decimalLat": -27.547812 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246811, "decimalLat": -27.498795 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2398, "decimalLat": -27.515365 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245594, "decimalLat": -27.496342 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271691, "decimalLat": -27.575147 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246081, "decimalLat": -27.496985 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253478, "decimalLat": -27.496035 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248443, "decimalLat": -27.511889 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.227187, "decimalLat": -27.56195 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.562 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249992, "decimalLat": -27.51129 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272961, "decimalLat": -27.576639 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248603, "decimalLat": -27.500435 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248468, "decimalLat": -27.490714 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252397, "decimalLat": -27.501249 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202469, "decimalLat": -27.513897 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248452, "decimalLat": -27.490831 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200638, "decimalLat": -27.504702 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244308, "decimalLat": -27.48999 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2948, "decimalLat": -27.56876 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250274, "decimalLat": -27.511382 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27242, "decimalLat": -27.574405 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248506, "decimalLat": -27.490169 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198563, "decimalLat": -27.613537 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204468, "decimalLat": -27.620533 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247828, "decimalLat": -27.490768 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2948, "decimalLat": -27.56876 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250431, "decimalLat": -27.502677 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255037, "decimalLat": -27.513641 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27109, "decimalLat": -27.574767 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271948, "decimalLat": -27.575033 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.228555, "decimalLat": -27.549859 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271744, "decimalLat": -27.574024 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250332, "decimalLat": -27.511311 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252312, "decimalLat": -27.509157 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248758, "decimalLat": -27.489745 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242373, "decimalLat": -27.513094 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43961, "decimalLat": -27.40138 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.217885, "decimalLat": -27.49443 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252553, "decimalLat": -27.511703 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256005, "decimalLat": -27.51358 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255509, "decimalLat": -27.512225 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245464, "decimalLat": -27.490324 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245178, "decimalLat": -27.489737 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.235229, "decimalLat": -27.500921 }, "geometry": { "type": "Point", "coordinates": [ 153.235, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2502, "decimalLat": -27.511523 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249391, "decimalLat": -27.511523 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255077, "decimalLat": -27.513252 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199188, "decimalLat": -27.499846 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403331, "decimalLat": -27.497683 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28189, "decimalLat": -27.58511 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.585 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253428, "decimalLat": -27.511687 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225574, "decimalLat": -27.502743 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248788, "decimalLat": -27.490129 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271358, "decimalLat": -27.57566 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271476, "decimalLat": -27.575623 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251994, "decimalLat": -27.5009 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246307, "decimalLat": -27.490021 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251867, "decimalLat": -27.509325 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245285, "decimalLat": -27.491146 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251923, "decimalLat": -27.50931 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250298, "decimalLat": -27.511343 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23885, "decimalLat": -27.53103 }, "geometry": { "type": "Point", "coordinates": [ 153.239, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270639, "decimalLat": -27.575547 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245252, "decimalLat": -27.495718 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247238, "decimalLat": -27.490229 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245644, "decimalLat": -27.49625 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203259, "decimalLat": -27.508283 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.219818, "decimalLat": -27.516802 }, "geometry": { "type": "Point", "coordinates": [ 153.22, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250346, "decimalLat": -27.511145 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250937, "decimalLat": -27.5116 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249989, "decimalLat": -27.5116 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272141, "decimalLat": -27.5745 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282344, "decimalLat": -27.533322 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248669, "decimalLat": -27.490575 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199463, "decimalLat": -27.513945 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.216767, "decimalLat": -27.500435 }, "geometry": { "type": "Point", "coordinates": [ 153.217, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247543, "decimalLat": -27.511359 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.446337, "decimalLat": -27.394164 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -27.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247956, "decimalLat": -27.511078 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1978, "decimalLat": -27.613314 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.443278, "decimalLat": -27.399553 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244848, "decimalLat": -27.490896 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248403, "decimalLat": -27.490665 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251998, "decimalLat": -27.500911 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201996, "decimalLat": -27.510239 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273911, "decimalLat": -27.534135 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270329, "decimalLat": -27.551827 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440021, "decimalLat": -27.392941 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251383, "decimalLat": -27.509494 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249983, "decimalLat": -27.511584 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245255, "decimalLat": -27.489653 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.215761, "decimalLat": -27.539289 }, "geometry": { "type": "Point", "coordinates": [ 153.216, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438269, "decimalLat": -27.400894 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19764, "decimalLat": -27.61248 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.612 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273815, "decimalLat": -27.575642 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244531, "decimalLat": -27.530943 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.446624, "decimalLat": -27.396062 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2505, "decimalLat": -27.511645 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.210928, "decimalLat": -27.495092 }, "geometry": { "type": "Point", "coordinates": [ 153.211, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247236, "decimalLat": -27.511364 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249042, "decimalLat": -27.490052 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248318, "decimalLat": -27.49014 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245285, "decimalLat": -27.489359 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233124, "decimalLat": -27.506411 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243313, "decimalLat": -27.538258 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.402782, "decimalLat": -27.494999 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247452, "decimalLat": -27.490124 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250289, "decimalLat": -27.511318 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251834, "decimalLat": -27.509403 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271841, "decimalLat": -27.576631 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253792, "decimalLat": -27.511816 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.16, "decimalLat": -27.29 }, "geometry": { "type": "Point", "coordinates": [ 153.16, -27.29 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248101, "decimalLat": -27.490509 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251499, "decimalLat": -27.511697 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24848, "decimalLat": -27.490861 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201675, "decimalLat": -27.51111 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.275806, "decimalLat": -27.543904 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225943, "decimalLat": -27.498541 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252475, "decimalLat": -27.501386 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247569, "decimalLat": -27.511429 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245952, "decimalLat": -27.497252 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244709, "decimalLat": -27.491381 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.265972, "decimalLat": -27.649168 }, "geometry": { "type": "Point", "coordinates": [ 153.266, -27.649 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243738, "decimalLat": -27.491356 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244869, "decimalLat": -27.490502 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250211, "decimalLat": -27.511355 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272356, "decimalLat": -27.574843 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27061, "decimalLat": -27.5388 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249501, "decimalLat": -27.511416 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244732, "decimalLat": -27.491594 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24802, "decimalLat": -27.4905 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245257, "decimalLat": -27.489943 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29552, "decimalLat": -27.56887 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272345, "decimalLat": -27.554528 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282087, "decimalLat": -27.532991 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440828, "decimalLat": -27.398775 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248283, "decimalLat": -27.490152 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27124, "decimalLat": -27.575128 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247893, "decimalLat": -27.490777 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244934, "decimalLat": -27.490366 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2462, "decimalLat": -27.498827 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254619, "decimalLat": -27.511613 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250579, "decimalLat": -27.502061 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241968, "decimalLat": -27.5146 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249777, "decimalLat": -27.511751 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271734, "decimalLat": -27.574443 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245531, "decimalLat": -27.489732 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246235, "decimalLat": -27.49741 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255982, "decimalLat": -27.513556 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250211, "decimalLat": -27.511448 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43968, "decimalLat": -27.393594 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271626, "decimalLat": -27.575508 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249358, "decimalLat": -27.489989 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248199, "decimalLat": -27.490641 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202011, "decimalLat": -27.512291 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282827, "decimalLat": -27.526594 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248935, "decimalLat": -27.489605 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198611, "decimalLat": -27.510278 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260139, "decimalLat": -27.501905 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204742, "decimalLat": -27.511295 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250435, "decimalLat": -27.511592 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249979, "decimalLat": -27.511266 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272012, "decimalLat": -27.574691 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248639, "decimalLat": -27.489955 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.217822, "decimalLat": -27.547203 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283664, "decimalLat": -27.525664 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239818, "decimalLat": -27.515371 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251886, "decimalLat": -27.514589 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244239, "decimalLat": -27.489719 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239818, "decimalLat": -27.515384 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248549, "decimalLat": -27.490355 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242264, "decimalLat": -27.489216 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.224731, "decimalLat": -27.501322 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243973, "decimalLat": -27.489588 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242288, "decimalLat": -27.511556 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245886, "decimalLat": -27.497758 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271542, "decimalLat": -27.53591 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282151, "decimalLat": -27.53139 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271497, "decimalLat": -27.573606 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252273, "decimalLat": -27.501371 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270694, "decimalLat": -27.538711 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250205, "decimalLat": -27.511285 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25022, "decimalLat": -27.51143 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283994, "decimalLat": -27.524421 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27227, "decimalLat": -27.574234 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250172, "decimalLat": -27.511566 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198151, "decimalLat": -27.615389 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20107, "decimalLat": -27.61345 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2507, "decimalLat": -27.511736 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250183, "decimalLat": -27.511648 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282894, "decimalLat": -27.534026 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256319, "decimalLat": -27.512601 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251401, "decimalLat": -27.509439 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27153, "decimalLat": -27.535692 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271605, "decimalLat": -27.574272 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246187, "decimalLat": -27.497351 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199448, "decimalLat": -27.613871 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245002, "decimalLat": -27.490435 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197769, "decimalLat": -27.614563 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242905, "decimalLat": -27.489344 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274877, "decimalLat": -27.596486 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.596 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250865, "decimalLat": -27.51179 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272291, "decimalLat": -27.574432 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250189, "decimalLat": -27.511426 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25681, "decimalLat": -27.512764 }, "geometry": { "type": "Point", "coordinates": [ 153.257, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250384, "decimalLat": -27.511226 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249063, "decimalLat": -27.490138 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247094, "decimalLat": -27.498749 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248754, "decimalLat": -27.490159 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.182094, "decimalLat": -27.53828 }, "geometry": { "type": "Point", "coordinates": [ 153.182, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244992, "decimalLat": -27.491044 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247622, "decimalLat": -27.511502 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270832, "decimalLat": -27.575642 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.518475, "decimalLat": -27.424424 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -27.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201279, "decimalLat": -27.511028 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247108, "decimalLat": -27.511481 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255947, "decimalLat": -27.513299 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247572, "decimalLat": -27.511505 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198135, "decimalLat": -27.615261 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439589, "decimalLat": -27.399275 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199188, "decimalLat": -27.61371 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243334, "decimalLat": -27.511633 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272098, "decimalLat": -27.574576 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.535334, "decimalLat": -27.429723 }, "geometry": { "type": "Point", "coordinates": [ 153.535, -27.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256031, "decimalLat": -27.513554 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272055, "decimalLat": -27.574653 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244897, "decimalLat": -27.490826 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244974, "decimalLat": -27.490768 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273161, "decimalLat": -27.576607 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251998, "decimalLat": -27.500938 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26825, "decimalLat": -27.546614 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245621, "decimalLat": -27.491489 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44043, "decimalLat": -27.398926 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251939, "decimalLat": -27.513543 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248465, "decimalLat": -27.490561 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440326, "decimalLat": -27.398555 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272034, "decimalLat": -27.576802 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.275022, "decimalLat": -27.554927 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273343, "decimalLat": -27.576402 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250078, "decimalLat": -27.511784 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248344, "decimalLat": -27.511064 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256051, "decimalLat": -27.512334 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250011, "decimalLat": -27.511475 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248055, "decimalLat": -27.490835 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244675, "decimalLat": -27.489056 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271959, "decimalLat": -27.575242 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202209, "decimalLat": -27.509274 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245101, "decimalLat": -27.490706 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.263657, "decimalLat": -27.539967 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247726, "decimalLat": -27.490808 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245953, "decimalLat": -27.495471 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245249, "decimalLat": -27.495777 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198105, "decimalLat": -27.615278 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204575, "decimalLat": -27.620535 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248519, "decimalLat": -27.490594 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2503, "decimalLat": -27.511365 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271644, "decimalLat": -27.575586 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.226343, "decimalLat": -27.562357 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.562 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253881, "decimalLat": -27.511848 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253823, "decimalLat": -27.511781 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271691, "decimalLat": -27.574672 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254823, "decimalLat": -27.51182 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25012, "decimalLat": -27.502652 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198441, "decimalLat": -27.513212 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.208099, "decimalLat": -27.62182 }, "geometry": { "type": "Point", "coordinates": [ 153.208, -27.622 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.286453, "decimalLat": -27.520414 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -27.52 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24919, "decimalLat": -27.489822 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.224219, "decimalLat": -27.500514 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271148, "decimalLat": -27.575377 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249495, "decimalLat": -27.490234 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248742, "decimalLat": -27.490365 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255124, "decimalLat": -27.511763 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254009, "decimalLat": -27.49402 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249595, "decimalLat": -27.511602 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25012, "decimalLat": -27.511308 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24963, "decimalLat": -27.511546 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248096, "decimalLat": -27.490268 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256042, "decimalLat": -27.513913 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251974, "decimalLat": -27.514441 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250309, "decimalLat": -27.511375 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271133, "decimalLat": -27.574976 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225586, "decimalLat": -27.503575 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250051, "decimalLat": -27.511314 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258719, "decimalLat": -27.547078 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206894, "decimalLat": -27.624491 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -27.624 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245794, "decimalLat": -27.496576 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249268, "decimalLat": -27.489988 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250029, "decimalLat": -27.511915 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244832, "decimalLat": -27.489676 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250373, "decimalLat": -27.511356 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196198, "decimalLat": -27.507128 }, "geometry": { "type": "Point", "coordinates": [ 153.196, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248302, "decimalLat": -27.500375 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241825, "decimalLat": -27.51458 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244763, "decimalLat": -27.491046 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248184, "decimalLat": -27.511231 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253768, "decimalLat": -27.511822 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271905, "decimalLat": -27.576574 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203339, "decimalLat": -27.510983 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245828, "decimalLat": -27.497095 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271644, "decimalLat": -27.575586 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.275868, "decimalLat": -27.527599 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253865, "decimalLat": -27.511784 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244807, "decimalLat": -27.490737 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246274, "decimalLat": -27.497945 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.216998, "decimalLat": -27.54717 }, "geometry": { "type": "Point", "coordinates": [ 153.217, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271176, "decimalLat": -27.575337 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196808, "decimalLat": -27.513742 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246577, "decimalLat": -27.499738 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271181, "decimalLat": -27.539372 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.402767, "decimalLat": -27.498191 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272431, "decimalLat": -27.574291 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255084, "decimalLat": -27.513246 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250304, "decimalLat": -27.511406 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249696, "decimalLat": -27.489231 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241986, "decimalLat": -27.514657 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271927, "decimalLat": -27.576726 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247554, "decimalLat": -27.51153 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251043, "decimalLat": -27.511781 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250247, "decimalLat": -27.511258 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437931, "decimalLat": -27.400119 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243691, "decimalLat": -27.491388 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245255, "decimalLat": -27.489695 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271616, "decimalLat": -27.573865 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197144, "decimalLat": -27.506395 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232559, "decimalLat": -27.50201 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250583, "decimalLat": -27.511781 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440749, "decimalLat": -27.403524 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.404 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24614, "decimalLat": -27.488226 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245196, "decimalLat": -27.495873 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295291, "decimalLat": -27.581462 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.581 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.299698, "decimalLat": -27.572126 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -27.572 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298798, "decimalLat": -27.569609 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249287, "decimalLat": -27.490562 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251021, "decimalLat": -27.511711 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249085, "decimalLat": -27.490545 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248539, "decimalLat": -27.511487 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19632, "decimalLat": -27.514498 }, "geometry": { "type": "Point", "coordinates": [ 153.196, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201431, "decimalLat": -27.613386 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245438, "decimalLat": -27.49055 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271499, "decimalLat": -27.575697 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250292, "decimalLat": -27.511358 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.400031, "decimalLat": -27.497764 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256026, "decimalLat": -27.513808 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.268417, "decimalLat": -27.546486 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271058, "decimalLat": -27.575204 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.519181, "decimalLat": -27.425452 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270409, "decimalLat": -27.551841 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250292, "decimalLat": -27.511324 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44063, "decimalLat": -27.39685 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24998, "decimalLat": -27.511567 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273161, "decimalLat": -27.576607 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232651, "decimalLat": -27.506912 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27197, "decimalLat": -27.576574 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198134, "decimalLat": -27.61498 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248386, "decimalLat": -27.50036 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272271, "decimalLat": -27.5749 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198898, "decimalLat": -27.5138 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20745, "decimalLat": -27.598081 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -27.598 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256023, "decimalLat": -27.514859 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271304, "decimalLat": -27.575033 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247025, "decimalLat": -27.511439 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.400497, "decimalLat": -27.497908 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272227, "decimalLat": -27.57487 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251709, "decimalLat": -27.509285 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249353, "decimalLat": -27.5011 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251369, "decimalLat": -27.511668 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.224559, "decimalLat": -27.501072 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256052, "decimalLat": -27.513608 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243729, "decimalLat": -27.488634 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225482, "decimalLat": -27.498565 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271455, "decimalLat": -27.57568 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250049, "decimalLat": -27.511429 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251923, "decimalLat": -27.50932 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201745, "decimalLat": -27.509328 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273552, "decimalLat": -27.53692 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246033, "decimalLat": -27.490103 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252105, "decimalLat": -27.494235 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255933, "decimalLat": -27.513577 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248935, "decimalLat": -27.489587 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245056, "decimalLat": -27.489899 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.51913, "decimalLat": -27.42488 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271703, "decimalLat": -27.539332 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271219, "decimalLat": -27.576003 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221061, "decimalLat": -27.499564 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247881, "decimalLat": -27.510103 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255548, "decimalLat": -27.512378 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.195023, "decimalLat": -27.512955 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245959, "decimalLat": -27.497007 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2444, "decimalLat": -27.489674 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40279, "decimalLat": -27.49434 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221954, "decimalLat": -27.610979 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -27.611 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244316, "decimalLat": -27.489575 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251944, "decimalLat": -27.500983 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244202, "decimalLat": -27.48992 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247299, "decimalLat": -27.49033 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271148, "decimalLat": -27.575377 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254137, "decimalLat": -27.511787 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250262, "decimalLat": -27.51142 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197891, "decimalLat": -27.506077 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.269883, "decimalLat": -27.575326 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271499, "decimalLat": -27.575697 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271499, "decimalLat": -27.575697 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271004, "decimalLat": -27.575642 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253438, "decimalLat": -27.511777 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250591, "decimalLat": -27.511541 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2435, "decimalLat": -27.491346 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271088, "decimalLat": -27.539793 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251835, "decimalLat": -27.503063 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248661, "decimalLat": -27.489857 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.275081, "decimalLat": -27.554813 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202988, "decimalLat": -27.513855 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250838, "decimalLat": -27.511633 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243018, "decimalLat": -27.489352 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270199, "decimalLat": -27.552028 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251939, "decimalLat": -27.514352 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243786, "decimalLat": -27.491345 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250034, "decimalLat": -27.511606 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250216, "decimalLat": -27.51135 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271315, "decimalLat": -27.575584 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271891, "decimalLat": -27.575395 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.356237, "decimalLat": -27.501111 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253114, "decimalLat": -27.511915 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403136, "decimalLat": -27.494025 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250179, "decimalLat": -27.511362 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249966, "decimalLat": -27.51116 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253788, "decimalLat": -27.51173 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247269, "decimalLat": -27.490713 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.424094, "decimalLat": -27.469636 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -27.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201385, "decimalLat": -27.613293 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248602, "decimalLat": -27.511504 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2422, "decimalLat": -27.512075 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221949, "decimalLat": -27.500225 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271891, "decimalLat": -27.575395 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203827, "decimalLat": -27.511761 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199188, "decimalLat": -27.499846 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251869, "decimalLat": -27.509246 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255517, "decimalLat": -27.512213 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244106, "decimalLat": -27.488483 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234421, "decimalLat": -27.501087 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.402191, "decimalLat": -27.496952 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247256, "decimalLat": -27.490165 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271891, "decimalLat": -27.575395 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250215, "decimalLat": -27.511556 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250136, "decimalLat": -27.511377 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246086, "decimalLat": -27.497204 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198273, "decimalLat": -27.491456 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259234, "decimalLat": -27.547013 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206985, "decimalLat": -27.624348 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -27.624 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248827, "decimalLat": -27.489917 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272308, "decimalLat": -27.536697 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25195, "decimalLat": -27.514499 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272249, "decimalLat": -27.574329 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245346, "decimalLat": -27.489834 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245392, "decimalLat": -27.489529 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250293, "decimalLat": -27.511243 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437375, "decimalLat": -27.405222 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -27.405 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249381, "decimalLat": -27.511615 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271154, "decimalLat": -27.575337 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272547, "decimalLat": -27.576387 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251892, "decimalLat": -27.509295 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248656, "decimalLat": -27.49051 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273343, "decimalLat": -27.576117 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248444, "decimalLat": -27.490221 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250049, "decimalLat": -27.51142 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251735, "decimalLat": -27.512015 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246978, "decimalLat": -27.490164 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248583, "decimalLat": -27.511505 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252701, "decimalLat": -27.501532 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255903, "decimalLat": -27.514026 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271315, "decimalLat": -27.549829 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232086, "decimalLat": -27.500996 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25009, "decimalLat": -27.511385 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440283, "decimalLat": -27.398478 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.297974, "decimalLat": -27.569403 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270832, "decimalLat": -27.575604 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2482, "decimalLat": -27.490287 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244629, "decimalLat": -27.491414 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255956, "decimalLat": -27.548808 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253533, "decimalLat": -27.511982 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.297541, "decimalLat": -27.569377 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253816, "decimalLat": -27.511767 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.528317, "decimalLat": -27.430046 }, "geometry": { "type": "Point", "coordinates": [ 153.528, -27.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25378, "decimalLat": -27.511761 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24843, "decimalLat": -27.490472 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270983, "decimalLat": -27.575623 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256803, "decimalLat": -27.513255 }, "geometry": { "type": "Point", "coordinates": [ 153.257, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274223, "decimalLat": -27.529328 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273729, "decimalLat": -27.55897 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.559 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246362, "decimalLat": -27.498817 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202728, "decimalLat": -27.513334 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25265, "decimalLat": -27.501768 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439053, "decimalLat": -27.39655 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245789, "decimalLat": -27.488878 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202, "decimalLat": -27.50721 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.207108, "decimalLat": -27.622965 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -27.623 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250288, "decimalLat": -27.511341 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251685, "decimalLat": -27.503448 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24762, "decimalLat": -27.511428 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19814, "decimalLat": -27.50939 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245201, "decimalLat": -27.495759 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196594, "decimalLat": -27.507936 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246625, "decimalLat": -27.488847 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27154, "decimalLat": -27.576155 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271401, "decimalLat": -27.575051 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252009, "decimalLat": -27.500975 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250394, "decimalLat": -27.51136 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242054, "decimalLat": -27.512065 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248662, "decimalLat": -27.511466 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.235275, "decimalLat": -27.491407 }, "geometry": { "type": "Point", "coordinates": [ 153.235, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441952, "decimalLat": -27.39295 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250267, "decimalLat": -27.51132 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247154, "decimalLat": -27.511415 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271948, "decimalLat": -27.575147 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440789, "decimalLat": -27.39355 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.213535, "decimalLat": -27.493959 }, "geometry": { "type": "Point", "coordinates": [ 153.214, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254403, "decimalLat": -27.511753 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225114, "decimalLat": -27.501934 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253824, "decimalLat": -27.511793 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27315, "decimalLat": -27.575775 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438128, "decimalLat": -27.400685 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.277795, "decimalLat": -27.55293 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.514042, "decimalLat": -27.42302 }, "geometry": { "type": "Point", "coordinates": [ 153.514, -27.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246228, "decimalLat": -27.499043 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25195, "decimalLat": -27.513954 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24857, "decimalLat": -27.490111 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252969, "decimalLat": -27.554984 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201309, "decimalLat": -27.511198 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202026, "decimalLat": -27.62237 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.622 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246311, "decimalLat": -27.497994 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252231, "decimalLat": -27.504025 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256002, "decimalLat": -27.514058 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199554, "decimalLat": -27.511337 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43947, "decimalLat": -27.40034 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249299, "decimalLat": -27.489833 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27109, "decimalLat": -27.575528 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245884, "decimalLat": -27.496968 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19902, "decimalLat": -27.505604 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270897, "decimalLat": -27.575467 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273278, "decimalLat": -27.575623 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247913, "decimalLat": -27.510165 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.268646, "decimalLat": -27.54003 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25609, "decimalLat": -27.546497 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246848, "decimalLat": -27.498792 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245373, "decimalLat": -27.49196 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.275886, "decimalLat": -27.537366 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271862, "decimalLat": -27.574234 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250649, "decimalLat": -27.511617 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231232, "decimalLat": -27.532496 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250252, "decimalLat": -27.511372 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250228, "decimalLat": -27.50218 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252111, "decimalLat": -27.501074 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243927, "decimalLat": -27.488506 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271444, "decimalLat": -27.574253 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247132, "decimalLat": -27.511481 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197601, "decimalLat": -27.614954 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247541, "decimalLat": -27.511464 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251807, "decimalLat": -27.509215 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250007, "decimalLat": -27.511293 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249961, "decimalLat": -27.511267 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282816, "decimalLat": -27.53396 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252682, "decimalLat": -27.501861 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246261, "decimalLat": -27.498038 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22544, "decimalLat": -27.502624 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271583, "decimalLat": -27.574386 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230009, "decimalLat": -27.498984 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246022, "decimalLat": -27.490808 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242094, "decimalLat": -27.512517 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248162, "decimalLat": -27.511469 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254265, "decimalLat": -27.511806 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199112, "decimalLat": -27.612839 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2965, "decimalLat": -27.56858 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270838, "decimalLat": -27.57565 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.519452, "decimalLat": -27.425174 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251048, "decimalLat": -27.511665 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248728, "decimalLat": -27.511491 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244934, "decimalLat": -27.489561 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284221, "decimalLat": -27.526668 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225158, "decimalLat": -27.501789 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24896, "decimalLat": -27.490639 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295105, "decimalLat": -27.568682 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249907, "decimalLat": -27.511324 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242433, "decimalLat": -27.489333 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272238, "decimalLat": -27.554128 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.240045, "decimalLat": -27.5301 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44097, "decimalLat": -27.398834 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245468, "decimalLat": -27.489912 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25184, "decimalLat": -27.511557 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251688, "decimalLat": -27.509322 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196106, "decimalLat": -27.506563 }, "geometry": { "type": "Point", "coordinates": [ 153.196, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246266, "decimalLat": -27.497839 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246768, "decimalLat": -27.511442 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25206, "decimalLat": -27.50107 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271948, "decimalLat": -27.57665 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439245, "decimalLat": -27.399718 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24648, "decimalLat": -27.499628 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198227, "decimalLat": -27.613527 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255964, "decimalLat": -27.514491 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203461, "decimalLat": -27.509176 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270918, "decimalLat": -27.575566 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.261872, "decimalLat": -27.518883 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24746, "decimalLat": -27.490847 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251059, "decimalLat": -27.511616 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253856, "decimalLat": -27.511775 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255514, "decimalLat": -27.512299 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198486, "decimalLat": -27.510462 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271991, "decimalLat": -27.575052 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255937, "decimalLat": -27.513934 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244841, "decimalLat": -27.49143 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270854, "decimalLat": -27.575604 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271111, "decimalLat": -27.575642 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200389, "decimalLat": -27.504411 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196671, "decimalLat": -27.507673 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258247, "decimalLat": -27.546833 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247572, "decimalLat": -27.511491 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441705, "decimalLat": -27.392795 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271616, "decimalLat": -27.574024 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271036, "decimalLat": -27.575501 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247616, "decimalLat": -27.511514 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250525, "decimalLat": -27.511567 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200729, "decimalLat": -27.510473 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247894, "decimalLat": -27.490797 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250076, "decimalLat": -27.511292 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245921, "decimalLat": -27.497829 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298126, "decimalLat": -27.569456 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250316, "decimalLat": -27.511398 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250852, "decimalLat": -27.511619 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253053, "decimalLat": -27.511889 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198349, "decimalLat": -27.61273 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271219, "decimalLat": -27.57547 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245379, "decimalLat": -27.490361 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.405375, "decimalLat": -27.494375 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250354, "decimalLat": -27.511389 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250305, "decimalLat": -27.51141 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281969, "decimalLat": -27.530677 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298035, "decimalLat": -27.569353 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19764, "decimalLat": -27.61248 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.612 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250054, "decimalLat": -27.511278 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250002, "decimalLat": -27.511606 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.195068, "decimalLat": -27.507017 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198685, "decimalLat": -27.514666 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248551, "decimalLat": -27.511545 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244659, "decimalLat": -27.489626 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254825, "decimalLat": -27.537808 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244308, "decimalLat": -27.492468 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253826, "decimalLat": -27.511751 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24653, "decimalLat": -27.499096 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203064, "decimalLat": -27.510912 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.181343, "decimalLat": -27.504541 }, "geometry": { "type": "Point", "coordinates": [ 153.181, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256019, "decimalLat": -27.513549 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248913, "decimalLat": -27.51164 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252035, "decimalLat": -27.500862 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248441, "decimalLat": -27.49028 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.195648, "decimalLat": -27.505995 }, "geometry": { "type": "Point", "coordinates": [ 153.196, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239904, "decimalLat": -27.515543 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250567, "decimalLat": -27.511719 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250482, "decimalLat": -27.511785 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259674, "decimalLat": -27.546514 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24681, "decimalLat": -27.511389 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249387, "decimalLat": -27.501084 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250725, "decimalLat": -27.511611 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246856, "decimalLat": -27.500492 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271644, "decimalLat": -27.575586 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.518359, "decimalLat": -27.424932 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.224075, "decimalLat": -27.500483 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197845, "decimalLat": -27.615158 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29518, "decimalLat": -27.5687 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202301, "decimalLat": -27.508247 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250282, "decimalLat": -27.51138 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245882, "decimalLat": -27.497588 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254267, "decimalLat": -27.511784 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248569, "decimalLat": -27.490764 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200747, "decimalLat": -27.510327 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199463, "decimalLat": -27.51128 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403038, "decimalLat": -27.50228 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.267926, "decimalLat": -27.54667 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.195099, "decimalLat": -27.514364 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251371, "decimalLat": -27.509496 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273804, "decimalLat": -27.537434 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270691, "decimalLat": -27.538607 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29539, "decimalLat": -27.56839 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271025, "decimalLat": -27.575737 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.514325, "decimalLat": -27.422627 }, "geometry": { "type": "Point", "coordinates": [ 153.514, -27.423 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250767, "decimalLat": -27.50333 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250961, "decimalLat": -27.509279 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281319, "decimalLat": -27.532546 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249963, "decimalLat": -27.511568 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271326, "decimalLat": -27.575813 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247391, "decimalLat": -27.490753 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244049, "decimalLat": -27.489407 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.296326, "decimalLat": -27.568413 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251122, "decimalLat": -27.507727 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245026, "decimalLat": -27.49124 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.516759, "decimalLat": -27.425711 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -27.426 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272077, "decimalLat": -27.576821 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244979, "decimalLat": -27.490873 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253894, "decimalLat": -27.5118 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247733, "decimalLat": -27.511527 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250332, "decimalLat": -27.502732 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440525, "decimalLat": -27.398906 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248613, "decimalLat": -27.49023 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248312, "decimalLat": -27.490923 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249863, "decimalLat": -27.511302 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271148, "decimalLat": -27.575377 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250095, "decimalLat": -27.511512 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251768, "decimalLat": -27.509341 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.285736, "decimalLat": -27.523592 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440643, "decimalLat": -27.392631 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246017, "decimalLat": -27.496896 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248656, "decimalLat": -27.490826 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255939, "decimalLat": -27.513909 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247046, "decimalLat": -27.51148 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441807, "decimalLat": -27.393315 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247437, "decimalLat": -27.490152 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.224503, "decimalLat": -27.498676 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438647, "decimalLat": -27.399824 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282266, "decimalLat": -27.556601 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.557 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273515, "decimalLat": -27.575528 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252051, "decimalLat": -27.500846 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249008, "decimalLat": -27.511635 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250176, "decimalLat": -27.511264 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439675, "decimalLat": -27.393433 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271197, "decimalLat": -27.575832 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.46349, "decimalLat": -27.407287 }, "geometry": { "type": "Point", "coordinates": [ 153.463, -27.407 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245105, "decimalLat": -27.490349 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248648, "decimalLat": -27.511561 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223111, "decimalLat": -27.507175 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246088, "decimalLat": -27.498097 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234573, "decimalLat": -27.50075 }, "geometry": { "type": "Point", "coordinates": [ 153.235, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206497, "decimalLat": -27.620731 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251733, "decimalLat": -27.509655 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252282, "decimalLat": -27.49335 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245948, "decimalLat": -27.498003 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244944, "decimalLat": -27.490494 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250241, "decimalLat": -27.502683 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253431, "decimalLat": -27.511764 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250221, "decimalLat": -27.511281 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245193, "decimalLat": -27.490431 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253647, "decimalLat": -27.511746 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248316, "decimalLat": -27.490782 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273128, "decimalLat": -27.576574 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.228023, "decimalLat": -27.546457 }, "geometry": { "type": "Point", "coordinates": [ 153.228, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239839, "decimalLat": -27.515567 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204071, "decimalLat": -27.621227 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271562, "decimalLat": -27.57568 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250268, "decimalLat": -27.511412 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204224, "decimalLat": -27.50873 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270918, "decimalLat": -27.575604 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.219447, "decimalLat": -27.495067 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203506, "decimalLat": -27.508062 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246017, "decimalLat": -27.490059 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24758, "decimalLat": -27.511318 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272817, "decimalLat": -27.572579 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.280571, "decimalLat": -27.524868 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254238, "decimalLat": -27.511834 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234604, "decimalLat": -27.501228 }, "geometry": { "type": "Point", "coordinates": [ 153.235, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233734, "decimalLat": -27.505301 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244364, "decimalLat": -27.510919 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248011, "decimalLat": -27.490964 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298386, "decimalLat": -27.569441 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253049, "decimalLat": -27.511995 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201141, "decimalLat": -27.510986 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198517, "decimalLat": -27.511288 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252379, "decimalLat": -27.501373 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274584, "decimalLat": -27.538877 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249854, "decimalLat": -27.511381 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197632, "decimalLat": -27.614571 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245087, "decimalLat": -27.490318 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.224849, "decimalLat": -27.501268 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.236039, "decimalLat": -27.520908 }, "geometry": { "type": "Point", "coordinates": [ 153.236, -27.521 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246061, "decimalLat": -27.497217 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.257797, "decimalLat": -27.499248 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248312, "decimalLat": -27.490985 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241859, "decimalLat": -27.514605 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.424351, "decimalLat": -27.469439 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -27.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271283, "decimalLat": -27.575718 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271283, "decimalLat": -27.574691 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251511, "decimalLat": -27.509462 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271197, "decimalLat": -27.575927 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248833, "decimalLat": -27.490577 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255975, "decimalLat": -27.513594 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201782, "decimalLat": -27.511042 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.297836, "decimalLat": -27.569275 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248924, "decimalLat": -27.490482 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223135, "decimalLat": -27.499262 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272759, "decimalLat": -27.539095 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252977, "decimalLat": -27.511967 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271669, "decimalLat": -27.574596 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.268982, "decimalLat": -27.540131 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198047, "decimalLat": -27.50542 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271143, "decimalLat": -27.575432 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246251, "decimalLat": -27.499763 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250794, "decimalLat": -27.511562 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439844, "decimalLat": -27.396778 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251677, "decimalLat": -27.511793 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248677, "decimalLat": -27.490463 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250316, "decimalLat": -27.502855 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25264, "decimalLat": -27.511497 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.299698, "decimalLat": -27.572584 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -27.573 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241957, "decimalLat": -27.514498 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246167, "decimalLat": -27.497617 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248154, "decimalLat": -27.490076 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271101, "decimalLat": -27.575622 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245734, "decimalLat": -27.510655 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245406, "decimalLat": -27.490597 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201266, "decimalLat": -27.505069 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298492, "decimalLat": -27.569235 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253471, "decimalLat": -27.496023 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.222606, "decimalLat": -27.499088 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.523716, "decimalLat": -27.432175 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223131, "decimalLat": -27.499417 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242249, "decimalLat": -27.489269 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259417, "decimalLat": -27.500254 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248506, "decimalLat": -27.490859 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272442, "decimalLat": -27.574329 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245453, "decimalLat": -27.490959 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239813, "decimalLat": -27.515372 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.228024, "decimalLat": -27.56168 }, "geometry": { "type": "Point", "coordinates": [ 153.228, -27.562 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251853, "decimalLat": -27.513543 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.191814, "decimalLat": -27.61508 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295, "decimalLat": -27.568 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197144, "decimalLat": -27.506294 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245071, "decimalLat": -27.490881 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250175, "decimalLat": -27.511328 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248023, "decimalLat": -27.490663 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197662, "decimalLat": -27.612938 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.187744, "decimalLat": -27.504419 }, "geometry": { "type": "Point", "coordinates": [ 153.188, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251381, "decimalLat": -27.50325 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250126, "decimalLat": -27.5114 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282745, "decimalLat": -27.52689 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438364, "decimalLat": -27.396108 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247177, "decimalLat": -27.489429 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255974, "decimalLat": -27.513853 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246948, "decimalLat": -27.490232 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249692, "decimalLat": -27.511518 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245346, "decimalLat": -27.489477 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250908, "decimalLat": -27.51164 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271948, "decimalLat": -27.575128 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249083, "decimalLat": -27.490246 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253898, "decimalLat": -27.511873 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.530116, "decimalLat": -27.427604 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -27.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249405, "decimalLat": -27.500901 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254862, "decimalLat": -27.512052 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250491, "decimalLat": -27.511667 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203019, "decimalLat": -27.514522 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24205, "decimalLat": -27.512072 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232193, "decimalLat": -27.503878 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271304, "decimalLat": -27.575166 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249984, "decimalLat": -27.511647 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437379, "decimalLat": -27.404462 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -27.404 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251668, "decimalLat": -27.509267 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248162, "decimalLat": -27.511501 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25027, "decimalLat": -27.502834 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2513, "decimalLat": -27.503204 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250023, "decimalLat": -27.511229 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203979, "decimalLat": -27.508228 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244966, "decimalLat": -27.490726 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25201, "decimalLat": -27.501018 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248516, "decimalLat": -27.490579 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245725, "decimalLat": -27.491056 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249321, "decimalLat": -27.490117 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198624, "decimalLat": -27.510618 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248632, "decimalLat": -27.491034 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247677, "decimalLat": -27.511486 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272867, "decimalLat": -27.572102 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.572 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244919, "decimalLat": -27.491043 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239901, "decimalLat": -27.515541 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245209, "decimalLat": -27.49012 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438578, "decimalLat": -27.397946 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28195, "decimalLat": -27.530724 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246914, "decimalLat": -27.592668 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.593 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255234, "decimalLat": -27.513583 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248809, "decimalLat": -27.490934 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255142, "decimalLat": -27.513306 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271347, "decimalLat": -27.575984 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252025, "decimalLat": -27.500984 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245026, "decimalLat": -27.489779 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25223, "decimalLat": -27.510568 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.404621, "decimalLat": -27.500273 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282216, "decimalLat": -27.530923 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241885, "decimalLat": -27.514619 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242981, "decimalLat": -27.489185 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248164, "decimalLat": -27.490601 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251648, "decimalLat": -27.50931 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250807, "decimalLat": -27.511631 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25003, "decimalLat": -27.51145 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203537, "decimalLat": -27.508049 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272163, "decimalLat": -27.574938 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26976, "decimalLat": -27.546171 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198196, "decimalLat": -27.612606 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256037, "decimalLat": -27.513637 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1997, "decimalLat": -27.569635 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239821, "decimalLat": -27.515358 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250096, "decimalLat": -27.511413 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244816, "decimalLat": -27.491297 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248581, "decimalLat": -27.490526 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199829, "decimalLat": -27.61347 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249919, "decimalLat": -27.511419 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197262, "decimalLat": -27.508483 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248178, "decimalLat": -27.511504 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250515, "decimalLat": -27.511624 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244858, "decimalLat": -27.489618 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239803, "decimalLat": -27.515372 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197571, "decimalLat": -27.61293 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29686, "decimalLat": -27.567892 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197693, "decimalLat": -27.615093 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246779, "decimalLat": -27.499745 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24769, "decimalLat": -27.511502 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249406, "decimalLat": -27.490023 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245093, "decimalLat": -27.5103 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25138, "decimalLat": -27.511673 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271004, "decimalLat": -27.575642 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24854, "decimalLat": -27.511411 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439675, "decimalLat": -27.393433 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247174, "decimalLat": -27.511407 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239813, "decimalLat": -27.51537 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271058, "decimalLat": -27.575432 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251895, "decimalLat": -27.50925 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248517, "decimalLat": -27.51152 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251207, "decimalLat": -27.503277 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248154, "decimalLat": -27.490642 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271283, "decimalLat": -27.574348 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271455, "decimalLat": -27.574653 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252711, "decimalLat": -27.511747 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244385, "decimalLat": -27.489639 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25055, "decimalLat": -27.511725 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271905, "decimalLat": -27.576631 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.275548, "decimalLat": -27.526065 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248101, "decimalLat": -27.490549 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249522, "decimalLat": -27.511611 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245226, "decimalLat": -27.495749 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250232, "decimalLat": -27.511402 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19371, "decimalLat": -27.503542 }, "geometry": { "type": "Point", "coordinates": [ 153.194, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19722, "decimalLat": -27.505342 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250173, "decimalLat": -27.511267 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197006, "decimalLat": -27.614145 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250608, "decimalLat": -27.511759 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.180434, "decimalLat": -27.537074 }, "geometry": { "type": "Point", "coordinates": [ 153.18, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198502, "decimalLat": -27.613417 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245656, "decimalLat": -27.490582 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248879, "decimalLat": -27.489713 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248409, "decimalLat": -27.490338 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245834, "decimalLat": -27.511057 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256015, "decimalLat": -27.513701 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43826, "decimalLat": -27.40092 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.268058, "decimalLat": -27.54652 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244659, "decimalLat": -27.49118 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24989, "decimalLat": -27.511391 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24836, "decimalLat": -27.490946 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27109, "decimalLat": -27.575394 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.523742, "decimalLat": -27.431893 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24861, "decimalLat": -27.490052 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255609, "decimalLat": -27.494794 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247516, "decimalLat": -27.49084 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2733, "decimalLat": -27.556107 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271787, "decimalLat": -27.574329 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271637, "decimalLat": -27.531507 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250163, "decimalLat": -27.511373 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270645, "decimalLat": -27.53956 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250136, "decimalLat": -27.511386 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250129, "decimalLat": -27.511274 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248841, "decimalLat": -27.489674 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27212, "decimalLat": -27.574481 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259771, "decimalLat": -27.546553 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250163, "decimalLat": -27.511429 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1985, "decimalLat": -27.51451 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244624, "decimalLat": -27.49238 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270844, "decimalLat": -27.538385 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201462, "decimalLat": -27.511435 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273214, "decimalLat": -27.576383 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197915, "decimalLat": -27.509235 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.228348, "decimalLat": -27.606379 }, "geometry": { "type": "Point", "coordinates": [ 153.228, -27.606 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27849, "decimalLat": -27.53527 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255557, "decimalLat": -27.5122 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438213, "decimalLat": -27.396145 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25002, "decimalLat": -27.511613 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.5237, "decimalLat": -27.432785 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -27.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256035, "decimalLat": -27.513566 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245575, "decimalLat": -27.490631 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243091, "decimalLat": -27.510823 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252694, "decimalLat": -27.50125 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22556, "decimalLat": -27.503714 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250133, "decimalLat": -27.511414 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19807, "decimalLat": -27.61314 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254353, "decimalLat": -27.51179 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198593, "decimalLat": -27.514364 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248969, "decimalLat": -27.490575 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272688, "decimalLat": -27.576398 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25293, "decimalLat": -27.511303 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270961, "decimalLat": -27.575699 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22142, "decimalLat": -27.516359 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248076, "decimalLat": -27.490513 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.205658, "decimalLat": -27.5077 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250352, "decimalLat": -27.511393 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295303, "decimalLat": -27.568724 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242205, "decimalLat": -27.512748 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24504, "decimalLat": -27.511642 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259781, "decimalLat": -27.532003 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25156, "decimalLat": -27.503402 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271961, "decimalLat": -27.575361 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252445, "decimalLat": -27.511657 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273032, "decimalLat": -27.54444 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271378, "decimalLat": -27.539175 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271891, "decimalLat": -27.575395 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244507, "decimalLat": -27.489729 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24527, "decimalLat": -27.490871 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.226388, "decimalLat": -27.49873 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.224258, "decimalLat": -27.506235 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.296509, "decimalLat": -27.567863 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270584, "decimalLat": -27.538576 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250099, "decimalLat": -27.511446 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233972, "decimalLat": -27.532183 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199722, "decimalLat": -27.613012 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243765, "decimalLat": -27.491367 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249305, "decimalLat": -27.489923 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201851, "decimalLat": -27.507655 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200364, "decimalLat": -27.510733 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225725, "decimalLat": -27.503083 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244034, "decimalLat": -27.488651 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223132, "decimalLat": -27.499793 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239821, "decimalLat": -27.515378 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253797, "decimalLat": -27.511741 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20224, "decimalLat": -27.513189 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250093, "decimalLat": -27.511457 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271476, "decimalLat": -27.57509 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251908, "decimalLat": -27.51445 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245019, "decimalLat": -27.49089 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271891, "decimalLat": -27.575395 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251317, "decimalLat": -27.503195 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24472, "decimalLat": -27.489649 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250712, "decimalLat": -27.511612 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251667, "decimalLat": -27.509244 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250278, "decimalLat": -27.511262 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233597, "decimalLat": -27.608927 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.609 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250008, "decimalLat": -27.48985 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232369, "decimalLat": -27.532972 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.207855, "decimalLat": -27.621159 }, "geometry": { "type": "Point", "coordinates": [ 153.208, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252347, "decimalLat": -27.501099 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.405589, "decimalLat": -27.493411 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2061, "decimalLat": -27.496501 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259213, "decimalLat": -27.544781 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234067, "decimalLat": -27.501138 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25028, "decimalLat": -27.511375 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.240343, "decimalLat": -27.512829 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270929, "decimalLat": -27.575166 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25166, "decimalLat": -27.511564 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273278, "decimalLat": -27.572827 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247964, "decimalLat": -27.4909 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.405611, "decimalLat": -27.493447 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243012, "decimalLat": -27.546714 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24469, "decimalLat": -27.491097 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246841, "decimalLat": -27.49033 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248093, "decimalLat": -27.490539 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441678, "decimalLat": -27.39356 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272156, "decimalLat": -27.546566 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253627, "decimalLat": -27.511757 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272967, "decimalLat": -27.55099 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202077, "decimalLat": -27.51341 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232651, "decimalLat": -27.506912 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24814, "decimalLat": -27.48964 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239791, "decimalLat": -27.515359 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440114, "decimalLat": -27.393035 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249481, "decimalLat": -27.501333 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250221, "decimalLat": -27.511371 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245209, "decimalLat": -27.489676 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245285, "decimalLat": -27.489548 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252143, "decimalLat": -27.501259 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250095, "decimalLat": -27.511563 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272098, "decimalLat": -27.576212 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272206, "decimalLat": -27.573949 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232178, "decimalLat": -27.507566 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251827, "decimalLat": -27.509217 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271347, "decimalLat": -27.5745 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254366, "decimalLat": -27.511832 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21913, "decimalLat": -27.494934 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24612, "decimalLat": -27.48992 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206253, "decimalLat": -27.497361 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272275, "decimalLat": -27.574867 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253857, "decimalLat": -27.511759 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248648, "decimalLat": -27.511531 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247808, "decimalLat": -27.511455 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256011, "decimalLat": -27.513914 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245567, "decimalLat": -27.496516 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245804, "decimalLat": -27.495735 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.400348, "decimalLat": -27.499177 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21174, "decimalLat": -27.498069 }, "geometry": { "type": "Point", "coordinates": [ 153.212, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253851, "decimalLat": -27.511805 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249407, "decimalLat": -27.48984 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251161, "decimalLat": -27.511645 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198456, "decimalLat": -27.613434 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249313, "decimalLat": -27.490057 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271047, "decimalLat": -27.575528 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242007, "decimalLat": -27.514678 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2517, "decimalLat": -27.509288 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249295, "decimalLat": -27.489934 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249329, "decimalLat": -27.489994 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247454, "decimalLat": -27.490833 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282192, "decimalLat": -27.532973 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440434, "decimalLat": -27.396058 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255158, "decimalLat": -27.513058 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232285, "decimalLat": -27.507467 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251717, "decimalLat": -27.50087 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248489, "decimalLat": -27.490385 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247096, "decimalLat": -27.511419 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250796, "decimalLat": -27.502871 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244921, "decimalLat": -27.490805 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250418, "decimalLat": -27.511296 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259554, "decimalLat": -27.50155 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.537938, "decimalLat": -27.425318 }, "geometry": { "type": "Point", "coordinates": [ 153.538, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441045, "decimalLat": -27.398865 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25042, "decimalLat": -27.511253 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25037, "decimalLat": -27.511314 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21957, "decimalLat": -27.495063 }, "geometry": { "type": "Point", "coordinates": [ 153.22, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270961, "decimalLat": -27.575623 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295563, "decimalLat": -27.56881 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.404923, "decimalLat": -27.493824 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.208542, "decimalLat": -27.621668 }, "geometry": { "type": "Point", "coordinates": [ 153.209, -27.622 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199585, "decimalLat": -27.612837 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24524, "decimalLat": -27.48997 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232758, "decimalLat": -27.50106 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25195, "decimalLat": -27.513274 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248634, "decimalLat": -27.490244 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20488, "decimalLat": -27.620489 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -27.62 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243759, "decimalLat": -27.491372 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245483, "decimalLat": -27.491165 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225661, "decimalLat": -27.503897 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248912, "decimalLat": -27.489527 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225541, "decimalLat": -27.503642 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251906, "decimalLat": -27.514524 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399633, "decimalLat": -27.497765 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24595, "decimalLat": -27.49711 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.195343, "decimalLat": -27.510416 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.305481, "decimalLat": -27.564884 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248583, "decimalLat": -27.490229 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249336, "decimalLat": -27.489935 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251992, "decimalLat": -27.500939 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250217, "decimalLat": -27.502574 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440576, "decimalLat": -27.39877 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25256, "decimalLat": -27.501749 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203156, "decimalLat": -27.508595 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251419, "decimalLat": -27.511692 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250151, "decimalLat": -27.51139 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.229309, "decimalLat": -27.604959 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.605 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250291, "decimalLat": -27.51133 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246222, "decimalLat": -27.511158 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248228, "decimalLat": -27.489493 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271101, "decimalLat": -27.57585 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250931, "decimalLat": -27.509132 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232391, "decimalLat": -27.501408 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247283, "decimalLat": -27.511501 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247256, "decimalLat": -27.511503 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249961, "decimalLat": -27.511584 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272431, "decimalLat": -27.554243 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244946, "decimalLat": -27.491041 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252691, "decimalLat": -27.501374 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242127, "decimalLat": -27.513088 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248215, "decimalLat": -27.490612 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201828, "decimalLat": -27.50913 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248149, "decimalLat": -27.490359 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231049, "decimalLat": -27.500095 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248184, "decimalLat": -27.490505 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253769, "decimalLat": -27.511865 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298111, "decimalLat": -27.569464 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.52653, "decimalLat": -27.431594 }, "geometry": { "type": "Point", "coordinates": [ 153.527, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245605, "decimalLat": -27.489622 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250253, "decimalLat": -27.511753 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202441, "decimalLat": -27.513024 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252078, "decimalLat": -27.500962 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201813, "decimalLat": -27.512175 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249974, "decimalLat": -27.511587 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24842, "decimalLat": -27.490522 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250648, "decimalLat": -27.511567 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251697, "decimalLat": -27.509256 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271994, "decimalLat": -27.575413 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.268845, "decimalLat": -27.546438 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244989, "decimalLat": -27.490753 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438889, "decimalLat": -27.396613 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203445, "decimalLat": -27.507469 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251674, "decimalLat": -27.509276 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252975, "decimalLat": -27.501186 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271583, "decimalLat": -27.574177 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251948, "decimalLat": -27.509326 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271782, "decimalLat": -27.544298 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250244, "decimalLat": -27.511592 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439838, "decimalLat": -27.393455 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251986, "decimalLat": -27.514477 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248376, "decimalLat": -27.490891 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244049, "decimalLat": -27.489918 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249298, "decimalLat": -27.490091 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250312, "decimalLat": -27.511328 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247907, "decimalLat": -27.510104 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250619, "decimalLat": -27.511672 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271347, "decimalLat": -27.575946 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.299728, "decimalLat": -27.569761 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25195, "decimalLat": -27.514427 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25383, "decimalLat": -27.511797 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230628, "decimalLat": -27.498992 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273193, "decimalLat": -27.576593 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203003, "decimalLat": -27.512814 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255239, "decimalLat": -27.513571 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271051, "decimalLat": -27.574737 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399329, "decimalLat": -27.496197 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247856, "decimalLat": -27.490848 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.261188, "decimalLat": -27.52279 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.523 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244743, "decimalLat": -27.491363 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251785, "decimalLat": -27.509366 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272517, "decimalLat": -27.573986 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225448, "decimalLat": -27.502661 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248656, "decimalLat": -27.490746 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246151, "decimalLat": -27.497358 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202362, "decimalLat": -27.513472 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22435, "decimalLat": -27.513165 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199292, "decimalLat": -27.491779 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259127, "decimalLat": -27.547303 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271133, "decimalLat": -27.575356 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272249, "decimalLat": -27.576631 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245498, "decimalLat": -27.490294 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251026, "decimalLat": -27.503421 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273665, "decimalLat": -27.53476 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272098, "decimalLat": -27.574653 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244853, "decimalLat": -27.491224 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251942, "decimalLat": -27.509311 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248688, "decimalLat": -27.490534 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252392, "decimalLat": -27.50122 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270886, "decimalLat": -27.574861 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19826, "decimalLat": -27.61335 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198944, "decimalLat": -27.614197 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.285659, "decimalLat": -27.523547 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250073, "decimalLat": -27.511501 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.530158, "decimalLat": -27.426575 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -27.427 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19841, "decimalLat": -27.515299 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.236542, "decimalLat": -27.490238 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198582, "decimalLat": -27.61326 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244622, "decimalLat": -27.551941 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245331, "decimalLat": -27.489859 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198303, "decimalLat": -27.612696 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250135, "decimalLat": -27.511647 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242996, "decimalLat": -27.489119 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256073, "decimalLat": -27.513984 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202469, "decimalLat": -27.513523 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.17837, "decimalLat": -27.53807 }, "geometry": { "type": "Point", "coordinates": [ 153.178, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223314, "decimalLat": -27.499388 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244669, "decimalLat": -27.491127 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24796, "decimalLat": -27.510091 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20119, "decimalLat": -27.61326 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248618, "decimalLat": -27.511513 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241843, "decimalLat": -27.51187 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249351, "decimalLat": -27.490105 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242111, "decimalLat": -27.51281 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250638, "decimalLat": -27.511614 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27094, "decimalLat": -27.575585 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242277, "decimalLat": -27.511511 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248463, "decimalLat": -27.490904 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244687, "decimalLat": -27.491132 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271158, "decimalLat": -27.553325 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225617, "decimalLat": -27.503128 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248941, "decimalLat": -27.49067 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248053, "decimalLat": -27.510118 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196915, "decimalLat": -27.515703 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253854, "decimalLat": -27.511808 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25254, "decimalLat": -27.504492 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251708, "decimalLat": -27.509187 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199753, "decimalLat": -27.613239 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25173, "decimalLat": -27.511688 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245182, "decimalLat": -27.510543 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.193344, "decimalLat": -27.504934 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252116, "decimalLat": -27.501084 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249227, "decimalLat": -27.490248 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245056, "decimalLat": -27.489643 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246422, "decimalLat": -27.499497 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256034, "decimalLat": -27.512682 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245438, "decimalLat": -27.490267 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232544, "decimalLat": -27.50157 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250097, "decimalLat": -27.511362 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441167, "decimalLat": -27.394674 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251993, "decimalLat": -27.514361 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246507, "decimalLat": -27.498829 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242462, "decimalLat": -27.513104 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254042, "decimalLat": -27.511793 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.404464, "decimalLat": -27.494938 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233749, "decimalLat": -27.506273 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24609, "decimalLat": -27.4974 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239869, "decimalLat": -27.515341 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233749, "decimalLat": -27.506273 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259825, "decimalLat": -27.546344 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272173, "decimalLat": -27.554319 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243817, "decimalLat": -27.511541 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250099, "decimalLat": -27.511389 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.442802, "decimalLat": -27.398993 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198914, "decimalLat": -27.505962 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203735, "decimalLat": -27.51166 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249842, "decimalLat": -27.489385 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239821, "decimalLat": -27.515368 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248086, "decimalLat": -27.490606 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247243, "decimalLat": -27.511425 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.208664, "decimalLat": -27.625813 }, "geometry": { "type": "Point", "coordinates": [ 153.209, -27.626 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271927, "decimalLat": -27.576688 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225678, "decimalLat": -27.50385 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.219346, "decimalLat": -27.495389 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.219186, "decimalLat": -27.494354 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197865, "decimalLat": -27.491599 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198883, "decimalLat": -27.613251 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233337, "decimalLat": -27.506691 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271841, "decimalLat": -27.574158 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272034, "decimalLat": -27.57684 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20222, "decimalLat": -27.50861 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25075, "decimalLat": -27.511669 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245468, "decimalLat": -27.489555 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252534, "decimalLat": -27.511655 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.523865, "decimalLat": -27.432096 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.219492, "decimalLat": -27.49549 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24839, "decimalLat": -27.490994 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248555, "decimalLat": -27.511524 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.268236, "decimalLat": -27.538889 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245866, "decimalLat": -27.496652 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247642, "decimalLat": -27.511497 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.257164, "decimalLat": -27.501941 }, "geometry": { "type": "Point", "coordinates": [ 153.257, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202942, "decimalLat": -27.514233 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245972, "decimalLat": -27.48983 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248334, "decimalLat": -27.490954 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243313, "decimalLat": -27.511499 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250251, "decimalLat": -27.511359 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200668, "decimalLat": -27.504223 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438462, "decimalLat": -27.397847 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202682, "decimalLat": -27.513311 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249505, "decimalLat": -27.501824 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.261993, "decimalLat": -27.519273 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247836, "decimalLat": -27.51018 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24666, "decimalLat": -27.490323 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251617, "decimalLat": -27.509064 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248078, "decimalLat": -27.49042 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271004, "decimalLat": -27.575604 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243744, "decimalLat": -27.491213 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230674, "decimalLat": -27.500668 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274861, "decimalLat": -27.554834 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270875, "decimalLat": -27.575699 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440758, "decimalLat": -27.402921 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.403 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245618, "decimalLat": -27.490657 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271487, "decimalLat": -27.576002 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203354, "decimalLat": -27.508244 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.52085, "decimalLat": -27.425815 }, "geometry": { "type": "Point", "coordinates": [ 153.521, -27.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281904, "decimalLat": -27.53222 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249739, "decimalLat": -27.501428 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199743, "decimalLat": -27.491675 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247601, "decimalLat": -27.511404 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298527, "decimalLat": -27.567318 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.400387, "decimalLat": -27.498924 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284223, "decimalLat": -27.525009 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270798, "decimalLat": -27.538393 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233215, "decimalLat": -27.506399 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283302, "decimalLat": -27.525719 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271991, "decimalLat": -27.574824 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.532519, "decimalLat": -27.427642 }, "geometry": { "type": "Point", "coordinates": [ 153.533, -27.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248205, "decimalLat": -27.490761 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281729, "decimalLat": -27.557677 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.558 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245641, "decimalLat": -27.49613 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197928, "decimalLat": -27.614819 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271358, "decimalLat": -27.575888 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250199, "decimalLat": -27.511455 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271562, "decimalLat": -27.575071 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247985, "decimalLat": -27.490893 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273032, "decimalLat": -27.575888 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246986, "decimalLat": -27.489781 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250266, "decimalLat": -27.511243 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248004, "decimalLat": -27.490673 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250726, "decimalLat": -27.511586 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249118, "decimalLat": -27.48983 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241823, "decimalLat": -27.514769 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198746, "decimalLat": -27.613249 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25019, "decimalLat": -27.51137 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242252, "decimalLat": -27.512796 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274271, "decimalLat": -27.571001 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.571 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248824, "decimalLat": -27.490784 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270333, "decimalLat": -27.552665 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223143, "decimalLat": -27.506902 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281718, "decimalLat": -27.530408 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440753, "decimalLat": -27.398949 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272184, "decimalLat": -27.5745 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250171, "decimalLat": -27.511319 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201813, "decimalLat": -27.508556 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242281, "decimalLat": -27.489299 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273751, "decimalLat": -27.559484 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.559 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244354, "decimalLat": -27.489197 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245101, "decimalLat": -27.510261 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248184, "decimalLat": -27.490618 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259187, "decimalLat": -27.518843 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244064, "decimalLat": -27.488499 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24769, "decimalLat": -27.511507 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273359, "decimalLat": -27.57627 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253587, "decimalLat": -27.51171 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439078, "decimalLat": -27.3964 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244589, "decimalLat": -27.518825 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295731, "decimalLat": -27.568857 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249938, "decimalLat": -27.511388 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22308, "decimalLat": -27.499689 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203857, "decimalLat": -27.508497 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271369, "decimalLat": -27.574253 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250292, "decimalLat": -27.511332 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250202, "decimalLat": -27.511359 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232839, "decimalLat": -27.507489 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197685, "decimalLat": -27.61269 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271626, "decimalLat": -27.574234 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24861, "decimalLat": -27.490098 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251689, "decimalLat": -27.509237 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440656, "decimalLat": -27.398773 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24957, "decimalLat": -27.501423 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203018, "decimalLat": -27.512821 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248859, "decimalLat": -27.489661 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253546, "decimalLat": -27.511735 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.212533, "decimalLat": -27.496706 }, "geometry": { "type": "Point", "coordinates": [ 153.213, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.261931, "decimalLat": -27.519434 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254328, "decimalLat": -27.511962 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244278, "decimalLat": -27.488281 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260925, "decimalLat": -27.523582 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199753, "decimalLat": -27.61314 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403915, "decimalLat": -27.493206 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271004, "decimalLat": -27.575566 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248395, "decimalLat": -27.489729 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298889, "decimalLat": -27.570034 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271111, "decimalLat": -27.575642 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281859, "decimalLat": -27.530981 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253382, "decimalLat": -27.511771 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27197, "decimalLat": -27.576764 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252661, "decimalLat": -27.511444 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25129, "decimalLat": -27.511655 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29788, "decimalLat": -27.56733 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24942, "decimalLat": -27.490053 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.195374, "decimalLat": -27.508032 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249192, "decimalLat": -27.489886 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199036, "decimalLat": -27.613281 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198486, "decimalLat": -27.612535 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233963, "decimalLat": -27.504705 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250222, "decimalLat": -27.511311 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272947, "decimalLat": -27.573424 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.573 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232361, "decimalLat": -27.507151 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271051, "decimalLat": -27.574737 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.269985, "decimalLat": -27.575356 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.524375, "decimalLat": -27.431544 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.52031, "decimalLat": -27.425737 }, "geometry": { "type": "Point", "coordinates": [ 153.52, -27.426 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271841, "decimalLat": -27.576612 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197205, "decimalLat": -27.505381 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233597, "decimalLat": -27.608927 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.609 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24872, "decimalLat": -27.511536 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271734, "decimalLat": -27.575413 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298233, "decimalLat": -27.569551 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244858, "decimalLat": -27.48959 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244942, "decimalLat": -27.490827 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253714, "decimalLat": -27.511768 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255088, "decimalLat": -27.513247 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248232, "decimalLat": -27.490906 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19902, "decimalLat": -27.511158 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198242, "decimalLat": -27.515219 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271898, "decimalLat": -27.575412 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25569, "decimalLat": -27.514392 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259556, "decimalLat": -27.546871 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24989, "decimalLat": -27.511402 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245276, "decimalLat": -27.488892 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260757, "decimalLat": -27.522989 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.523 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250233, "decimalLat": -27.511406 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271884, "decimalLat": -27.575071 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248296, "decimalLat": -27.490966 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271283, "decimalLat": -27.575052 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441346, "decimalLat": -27.393012 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22258, "decimalLat": -27.51523 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438972, "decimalLat": -27.397194 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270854, "decimalLat": -27.575623 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.291977, "decimalLat": -27.571283 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -27.571 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399981, "decimalLat": -27.4978 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272184, "decimalLat": -27.574405 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246124, "decimalLat": -27.489895 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244934, "decimalLat": -27.489964 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250318, "decimalLat": -27.511328 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.453169, "decimalLat": -27.388675 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -27.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249508, "decimalLat": -27.501106 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244873, "decimalLat": -27.490833 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284112, "decimalLat": -27.52523 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270203, "decimalLat": -27.546757 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399265, "decimalLat": -27.496257 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25, "decimalLat": -27.511339 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272012, "decimalLat": -27.554195 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.523652, "decimalLat": -27.432062 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.228702, "decimalLat": -27.590336 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.59 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244977, "decimalLat": -27.490898 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199203, "decimalLat": -27.511023 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250113, "decimalLat": -27.511382 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272174, "decimalLat": -27.575262 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25054, "decimalLat": -27.511782 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21174, "decimalLat": -27.498069 }, "geometry": { "type": "Point", "coordinates": [ 153.212, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206159, "decimalLat": -27.496528 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.217737, "decimalLat": -27.547608 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250965, "decimalLat": -27.502951 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24864, "decimalLat": -27.489971 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197342, "decimalLat": -27.61451 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250146, "decimalLat": -27.511465 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271852, "decimalLat": -27.575469 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.226944, "decimalLat": -27.560879 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.222311, "decimalLat": -27.645846 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -27.646 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250286, "decimalLat": -27.511296 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249342, "decimalLat": -27.500499 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271004, "decimalLat": -27.575566 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249146, "decimalLat": -27.510155 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271994, "decimalLat": -27.575413 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250267, "decimalLat": -27.502663 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198624, "decimalLat": -27.513962 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437906, "decimalLat": -27.400233 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248119, "decimalLat": -27.511534 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44072, "decimalLat": -27.39702 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198334, "decimalLat": -27.615305 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223101, "decimalLat": -27.499744 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27212, "decimalLat": -27.574615 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260824, "decimalLat": -27.521338 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232773, "decimalLat": -27.506947 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249283, "decimalLat": -27.489795 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249676, "decimalLat": -27.48995 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30571, "decimalLat": -27.565067 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22477, "decimalLat": -27.501239 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248635, "decimalLat": -27.511495 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281765, "decimalLat": -27.532326 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251896, "decimalLat": -27.50932 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245238, "decimalLat": -27.495741 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248403, "decimalLat": -27.4905 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248683, "decimalLat": -27.489595 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27065, "decimalLat": -27.536416 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271004, "decimalLat": -27.575642 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249887, "decimalLat": -27.511604 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198044, "decimalLat": -27.615282 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298447, "decimalLat": -27.569553 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250097, "decimalLat": -27.511677 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247433, "decimalLat": -27.490783 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199738, "decimalLat": -27.61331 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.263774, "decimalLat": -27.540541 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19754, "decimalLat": -27.612751 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230717, "decimalLat": -27.500192 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246076, "decimalLat": -27.497089 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203766, "decimalLat": -27.509369 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25037, "decimalLat": -27.51132 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245408, "decimalLat": -27.49648 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206802, "decimalLat": -27.62446 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -27.624 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252495, "decimalLat": -27.511699 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24498, "decimalLat": -27.490231 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251541, "decimalLat": -27.50922 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247202, "decimalLat": -27.501106 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440686, "decimalLat": -27.398727 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271197, "decimalLat": -27.575014 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21036, "decimalLat": -27.607935 }, "geometry": { "type": "Point", "coordinates": [ 153.21, -27.608 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239818, "decimalLat": -27.51536 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441432, "decimalLat": -27.398884 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.218148, "decimalLat": -27.494691 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258251, "decimalLat": -27.50267 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271819, "decimalLat": -27.574253 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.430059, "decimalLat": -27.490684 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204391, "decimalLat": -27.509674 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250335, "decimalLat": -27.502559 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.400212, "decimalLat": -27.49853 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206253, "decimalLat": -27.620832 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284027, "decimalLat": -27.525221 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252207, "decimalLat": -27.501016 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.269989, "decimalLat": -27.540371 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298447, "decimalLat": -27.569477 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241211, "decimalLat": -27.491642 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.301559, "decimalLat": -27.567816 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20745, "decimalLat": -27.600455 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -27.6 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.409894, "decimalLat": -27.487127 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -27.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2715, "decimalLat": -27.540506 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271664, "decimalLat": -27.575113 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.219302, "decimalLat": -27.50221 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271499, "decimalLat": -27.575697 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244456, "decimalLat": -27.489419 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.51911, "decimalLat": -27.425389 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251574, "decimalLat": -27.494796 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241936, "decimalLat": -27.514523 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26475, "decimalLat": -27.523871 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.228736, "decimalLat": -27.561365 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.561 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245686, "decimalLat": -27.490276 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.195478, "decimalLat": -27.572686 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.573 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197159, "decimalLat": -27.505419 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272002, "decimalLat": -27.554138 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.45, "decimalLat": -27.4 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251056, "decimalLat": -27.511664 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247956, "decimalLat": -27.490791 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250166, "decimalLat": -27.511636 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271664, "decimalLat": -27.575113 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247304, "decimalLat": -27.511374 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253702, "decimalLat": -27.511599 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27139, "decimalLat": -27.574786 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253833, "decimalLat": -27.511831 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.222097, "decimalLat": -27.498117 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246277, "decimalLat": -27.490034 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248639, "decimalLat": -27.511496 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271326, "decimalLat": -27.576136 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248215, "decimalLat": -27.511277 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245041, "decimalLat": -27.489668 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.523839, "decimalLat": -27.431968 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204657, "decimalLat": -27.617824 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -27.618 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.431196, "decimalLat": -27.48912 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250221, "decimalLat": -27.511371 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271497, "decimalLat": -27.575356 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249985, "decimalLat": -27.511577 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239842, "decimalLat": -27.515358 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251767, "decimalLat": -27.509274 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244929, "decimalLat": -27.490727 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239897, "decimalLat": -27.515403 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250425, "decimalLat": -27.511381 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21192, "decimalLat": -27.618125 }, "geometry": { "type": "Point", "coordinates": [ 153.212, -27.618 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250206, "decimalLat": -27.511142 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239798, "decimalLat": -27.515361 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27132, "decimalLat": -27.575336 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20433, "decimalLat": -27.617435 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.617 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245257, "decimalLat": -27.495779 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199799, "decimalLat": -27.511456 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258904, "decimalLat": -27.546638 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27728, "decimalLat": -27.537139 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202133, "decimalLat": -27.511782 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247245, "decimalLat": -27.499503 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254249, "decimalLat": -27.511966 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250213, "decimalLat": -27.511381 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253288, "decimalLat": -27.511727 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247519, "decimalLat": -27.490803 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399063, "decimalLat": -27.497328 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247161, "decimalLat": -27.511524 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247936, "decimalLat": -27.511049 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1987, "decimalLat": -27.615374 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25048, "decimalLat": -27.502953 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.216995, "decimalLat": -27.547302 }, "geometry": { "type": "Point", "coordinates": [ 153.217, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255994, "decimalLat": -27.514023 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197388, "decimalLat": -27.514866 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250239, "decimalLat": -27.511212 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255324, "decimalLat": -27.545302 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250316, "decimalLat": -27.511316 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245316, "decimalLat": -27.489365 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272206, "decimalLat": -27.554328 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250149, "decimalLat": -27.511361 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241944, "decimalLat": -27.514625 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248511, "decimalLat": -27.511461 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189018, "decimalLat": -27.582786 }, "geometry": { "type": "Point", "coordinates": [ 153.189, -27.583 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250174, "decimalLat": -27.511363 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251435, "decimalLat": -27.495348 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.294647, "decimalLat": -27.568865 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270725, "decimalLat": -27.575528 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295197, "decimalLat": -27.568853 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24472, "decimalLat": -27.490814 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247685, "decimalLat": -27.511611 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281808, "decimalLat": -27.532895 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246964, "decimalLat": -27.490284 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249872, "decimalLat": -27.511585 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250182, "decimalLat": -27.511381 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270307, "decimalLat": -27.547721 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254495, "decimalLat": -27.511836 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250079, "decimalLat": -27.511566 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.402972, "decimalLat": -27.493653 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250661, "decimalLat": -27.511756 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24467, "decimalLat": -27.489872 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198685, "decimalLat": -27.503168 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.238513, "decimalLat": -27.482814 }, "geometry": { "type": "Point", "coordinates": [ 153.239, -27.483 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244953, "decimalLat": -27.490659 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232574, "decimalLat": -27.506811 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225441, "decimalLat": -27.503266 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260173, "decimalLat": -27.502231 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221984, "decimalLat": -27.50751 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245565, "decimalLat": -27.489687 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248709, "decimalLat": -27.49046 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250544, "decimalLat": -27.511469 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248785, "decimalLat": -27.511535 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251418, "decimalLat": -27.511615 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258419, "decimalLat": -27.546893 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271712, "decimalLat": -27.575756 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281556, "decimalLat": -27.530268 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252068, "decimalLat": -27.500822 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250126, "decimalLat": -27.51178 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438068, "decimalLat": -27.400797 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199646, "decimalLat": -27.511303 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272141, "decimalLat": -27.536777 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225571, "decimalLat": -27.503682 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253764, "decimalLat": -27.511749 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271862, "decimalLat": -27.574519 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232544, "decimalLat": -27.50157 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273021, "decimalLat": -27.576041 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248504, "decimalLat": -27.511467 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251327, "decimalLat": -27.503163 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24996, "decimalLat": -27.502418 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.299825, "decimalLat": -27.576796 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250234, "decimalLat": -27.511227 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251391, "decimalLat": -27.50945 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22966, "decimalLat": -27.608955 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -27.609 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250273, "decimalLat": -27.511305 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258891, "decimalLat": -27.546897 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25141, "decimalLat": -27.511698 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246602, "decimalLat": -27.4993 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273858, "decimalLat": -27.559103 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.559 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248009, "decimalLat": -27.490536 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441349, "decimalLat": -27.392992 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.442881, "decimalLat": -27.394898 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249835, "decimalLat": -27.511299 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250221, "decimalLat": -27.511371 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439462, "decimalLat": -27.396952 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245132, "decimalLat": -27.490892 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245117, "decimalLat": -27.489809 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2418, "decimalLat": -27.514684 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273179, "decimalLat": -27.576652 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.400031, "decimalLat": -27.498403 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4403, "decimalLat": -27.396553 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24559, "decimalLat": -27.489569 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27315, "decimalLat": -27.576174 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233002, "decimalLat": -27.507231 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245239, "decimalLat": -27.48987 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25035, "decimalLat": -27.511362 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248744, "decimalLat": -27.490614 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247967, "decimalLat": -27.490821 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242202, "decimalLat": -27.511442 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25009, "decimalLat": -27.511379 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199234, "decimalLat": -27.614861 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253564, "decimalLat": -27.511646 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27109, "decimalLat": -27.575699 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.236084, "decimalLat": -27.48908 }, "geometry": { "type": "Point", "coordinates": [ 153.236, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252389, "decimalLat": -27.501735 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248926, "decimalLat": -27.489596 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253431, "decimalLat": -27.511738 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255965, "decimalLat": -27.513927 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44058, "decimalLat": -27.40308 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.403 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241521, "decimalLat": -27.512446 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271347, "decimalLat": -27.575356 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243799, "decimalLat": -27.491344 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248358, "decimalLat": -27.490681 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250232, "decimalLat": -27.511386 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250139, "decimalLat": -27.511271 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250622, "decimalLat": -27.511577 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271499, "decimalLat": -27.575697 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250167, "decimalLat": -27.511349 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248778, "decimalLat": -27.490219 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233749, "decimalLat": -27.506273 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24968, "decimalLat": -27.502181 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250148, "decimalLat": -27.511456 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248909, "decimalLat": -27.490773 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250119, "decimalLat": -27.511411 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239211, "decimalLat": -27.521256 }, "geometry": { "type": "Point", "coordinates": [ 153.239, -27.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.216764, "decimalLat": -27.50045 }, "geometry": { "type": "Point", "coordinates": [ 153.217, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251036, "decimalLat": -27.511607 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196967, "decimalLat": -27.505413 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245998, "decimalLat": -27.497658 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248124, "decimalLat": -27.490514 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250234, "decimalLat": -27.511283 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440192, "decimalLat": -27.397476 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249435, "decimalLat": -27.490159 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247397, "decimalLat": -27.511557 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241211, "decimalLat": -27.491497 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247888, "decimalLat": -27.490951 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254986, "decimalLat": -27.535511 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225557, "decimalLat": -27.503509 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271603, "decimalLat": -27.575143 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270307, "decimalLat": -27.547721 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198111, "decimalLat": -27.615008 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246698, "decimalLat": -27.499372 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196548, "decimalLat": -27.501356 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248651, "decimalLat": -27.511491 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24368, "decimalLat": -27.491359 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244741, "decimalLat": -27.491297 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25196, "decimalLat": -27.510555 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253623, "decimalLat": -27.51178 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253923, "decimalLat": -27.511782 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249438, "decimalLat": -27.511549 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270918, "decimalLat": -27.575623 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20096, "decimalLat": -27.50684 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44274, "decimalLat": -27.393871 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -27.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225632, "decimalLat": -27.498551 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202988, "decimalLat": -27.512886 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.228702, "decimalLat": -27.556319 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.556 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298064, "decimalLat": -27.56943 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250249, "decimalLat": -27.511368 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.275124, "decimalLat": -27.554832 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255945, "decimalLat": -27.5138 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245276, "decimalLat": -27.49569 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199861, "decimalLat": -27.492189 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232986, "decimalLat": -27.500938 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250654, "decimalLat": -27.511698 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248334, "decimalLat": -27.490544 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271499, "decimalLat": -27.575697 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255189, "decimalLat": -27.513064 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273293, "decimalLat": -27.53663 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251258, "decimalLat": -27.502982 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245331, "decimalLat": -27.489882 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259541, "decimalLat": -27.546487 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253629, "decimalLat": -27.511778 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25365, "decimalLat": -27.511728 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251808, "decimalLat": -27.509413 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2453, "decimalLat": -27.489485 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271734, "decimalLat": -27.574615 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24617, "decimalLat": -27.489687 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244476, "decimalLat": -27.488914 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232986, "decimalLat": -27.506477 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200562, "decimalLat": -27.511272 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247324, "decimalLat": -27.511373 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281075, "decimalLat": -27.52934 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250158, "decimalLat": -27.511452 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256024, "decimalLat": -27.513777 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271326, "decimalLat": -27.574938 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250239, "decimalLat": -27.511338 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256028, "decimalLat": -27.513621 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249659, "decimalLat": -27.502512 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.163222, "decimalLat": -27.595669 }, "geometry": { "type": "Point", "coordinates": [ 153.163, -27.596 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250854, "decimalLat": -27.509836 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249971, "decimalLat": -27.511267 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258322, "decimalLat": -27.546893 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.263778, "decimalLat": -27.542439 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255419, "decimalLat": -27.513106 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272184, "decimalLat": -27.574348 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.518829, "decimalLat": -27.424793 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.224323, "decimalLat": -27.498284 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245798, "decimalLat": -27.495741 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245193, "decimalLat": -27.489408 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281744, "decimalLat": -27.531264 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250144, "decimalLat": -27.511361 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245468, "decimalLat": -27.489885 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273021, "decimalLat": -27.576212 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206924, "decimalLat": -27.623398 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -27.623 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258322, "decimalLat": -27.544796 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271658, "decimalLat": -27.574975 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438621, "decimalLat": -27.400943 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232788, "decimalLat": -27.50737 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206406, "decimalLat": -27.620687 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249996, "decimalLat": -27.511575 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.529129, "decimalLat": -27.428652 }, "geometry": { "type": "Point", "coordinates": [ 153.529, -27.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24931, "decimalLat": -27.511088 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258339, "decimalLat": -27.546824 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.444556, "decimalLat": -27.395958 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245483, "decimalLat": -27.489634 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24834, "decimalLat": -27.511182 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249686, "decimalLat": -27.511531 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271358, "decimalLat": -27.575622 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250123, "decimalLat": -27.502067 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250668, "decimalLat": -27.511514 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.215641, "decimalLat": -27.537825 }, "geometry": { "type": "Point", "coordinates": [ 153.216, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248575, "decimalLat": -27.490848 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.409693, "decimalLat": -27.498418 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24529, "decimalLat": -27.48984 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273366, "decimalLat": -27.536703 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201584, "decimalLat": -27.508215 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255938, "decimalLat": -27.513629 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250772, "decimalLat": -27.503223 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244864, "decimalLat": -27.490762 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202515, "decimalLat": -27.507196 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230792, "decimalLat": -27.500373 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.455056, "decimalLat": -27.39138 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -27.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.522442, "decimalLat": -27.426054 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -27.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271176, "decimalLat": -27.57568 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252002, "decimalLat": -27.501111 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251209, "decimalLat": -27.5031 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250989, "decimalLat": -27.511597 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270854, "decimalLat": -27.575737 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403092, "decimalLat": -27.493325 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198318, "decimalLat": -27.612719 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234238, "decimalLat": -27.500748 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272527, "decimalLat": -27.539146 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249385, "decimalLat": -27.490459 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250345, "decimalLat": -27.511345 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247132, "decimalLat": -27.490576 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200821, "decimalLat": -27.50478 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253829, "decimalLat": -27.511743 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250033, "decimalLat": -27.502421 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274216, "decimalLat": -27.538734 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24559, "decimalLat": -27.48876 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271148, "decimalLat": -27.575377 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271499, "decimalLat": -27.575697 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271036, "decimalLat": -27.575501 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271744, "decimalLat": -27.575964 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282012, "decimalLat": -27.531383 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246, "decimalLat": -27.498069 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271326, "decimalLat": -27.575889 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250192, "decimalLat": -27.51141 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243988, "decimalLat": -27.48941 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2451, "decimalLat": -27.491051 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206894, "decimalLat": -27.624491 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -27.624 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254342, "decimalLat": -27.511801 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251784, "decimalLat": -27.509325 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25008, "decimalLat": -27.511336 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271047, "decimalLat": -27.575356 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243759, "decimalLat": -27.49137 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2538, "decimalLat": -27.51176 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250906, "decimalLat": -27.509881 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271669, "decimalLat": -27.575489 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295044, "decimalLat": -27.568708 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243607, "decimalLat": -27.49136 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.218234, "decimalLat": -27.506455 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250777, "decimalLat": -27.511764 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273171, "decimalLat": -27.576022 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.404632, "decimalLat": -27.493395 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250967, "decimalLat": -27.511656 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247148, "decimalLat": -27.500965 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248352, "decimalLat": -27.490498 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245558, "decimalLat": -27.489732 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256011, "decimalLat": -27.513612 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248099, "decimalLat": -27.500392 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246903, "decimalLat": -27.499107 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244919, "decimalLat": -27.489622 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.195175, "decimalLat": -27.504225 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248167, "decimalLat": -27.490325 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271197, "decimalLat": -27.574596 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256079, "decimalLat": -27.513999 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250159, "decimalLat": -27.511398 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.218156, "decimalLat": -27.548648 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250097, "decimalLat": -27.511415 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250312, "decimalLat": -27.511301 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253647, "decimalLat": -27.511729 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250382, "decimalLat": -27.511353 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223675, "decimalLat": -27.500096 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248098, "decimalLat": -27.490377 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245465, "decimalLat": -27.490569 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20114, "decimalLat": -27.6134 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.534648, "decimalLat": -27.429167 }, "geometry": { "type": "Point", "coordinates": [ 153.535, -27.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198578, "decimalLat": -27.511377 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243645, "decimalLat": -27.492997 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249968, "decimalLat": -27.511316 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255189, "decimalLat": -27.513031 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253595, "decimalLat": -27.511746 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247849, "decimalLat": -27.490641 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247046, "decimalLat": -27.511448 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250265, "decimalLat": -27.511394 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24278, "decimalLat": -27.519738 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.52 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204407, "decimalLat": -27.509716 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248605, "decimalLat": -27.515361 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250163, "decimalLat": -27.511466 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271315, "decimalLat": -27.575432 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251199, "decimalLat": -27.511643 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255987, "decimalLat": -27.513725 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248154, "decimalLat": -27.490295 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253838, "decimalLat": -27.511766 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260157, "decimalLat": -27.501664 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249928, "decimalLat": -27.511421 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197769, "decimalLat": -27.615204 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242691, "decimalLat": -27.488892 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233856, "decimalLat": -27.504988 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.51911, "decimalLat": -27.425389 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298386, "decimalLat": -27.569441 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250089, "decimalLat": -27.511278 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440386, "decimalLat": -27.39845 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271648, "decimalLat": -27.575661 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245255, "decimalLat": -27.495815 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250269, "decimalLat": -27.511374 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244847, "decimalLat": -27.491053 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230677, "decimalLat": -27.499031 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245514, "decimalLat": -27.490005 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260252, "decimalLat": -27.501723 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197784, "decimalLat": -27.505033 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28185, "decimalLat": -27.531765 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.216782, "decimalLat": -27.500442 }, "geometry": { "type": "Point", "coordinates": [ 153.217, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245011, "decimalLat": -27.490777 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252035, "decimalLat": -27.500895 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232697, "decimalLat": -27.506868 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250763, "decimalLat": -27.511618 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281357, "decimalLat": -27.529986 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.219274, "decimalLat": -27.495405 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244665, "decimalLat": -27.48975 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440934, "decimalLat": -27.394989 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242121, "decimalLat": -27.512913 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247577, "decimalLat": -27.511477 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248763, "decimalLat": -27.48958 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20433, "decimalLat": -27.621201 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.524223, "decimalLat": -27.432069 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246022, "decimalLat": -27.496485 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199554, "decimalLat": -27.613146 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201438, "decimalLat": -27.511281 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29513, "decimalLat": -27.56863 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256049, "decimalLat": -27.512721 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251915, "decimalLat": -27.511603 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23892, "decimalLat": -27.492476 }, "geometry": { "type": "Point", "coordinates": [ 153.239, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.269974, "decimalLat": -27.575163 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272098, "decimalLat": -27.574576 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248345, "decimalLat": -27.490697 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248575, "decimalLat": -27.490534 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271272, "decimalLat": -27.575729 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204989, "decimalLat": -27.563602 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -27.564 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25259, "decimalLat": -27.511703 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251709, "decimalLat": -27.509285 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248538, "decimalLat": -27.491019 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.238069, "decimalLat": -27.49177 }, "geometry": { "type": "Point", "coordinates": [ 153.238, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252322, "decimalLat": -27.511622 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245308, "decimalLat": -27.495846 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198227, "decimalLat": -27.612724 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197083, "decimalLat": -27.613775 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295237, "decimalLat": -27.568663 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403522, "decimalLat": -27.495033 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252102, "decimalLat": -27.512167 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256017, "decimalLat": -27.513804 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247568, "decimalLat": -27.511464 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25034, "decimalLat": -27.511301 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270983, "decimalLat": -27.575604 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253993, "decimalLat": -27.511812 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24577, "decimalLat": -27.496401 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39915, "decimalLat": -27.496253 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272507, "decimalLat": -27.539131 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250221, "decimalLat": -27.511371 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251862, "decimalLat": -27.510075 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256338, "decimalLat": -27.513834 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26763, "decimalLat": -27.61862 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -27.619 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.280337, "decimalLat": -27.581552 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -27.582 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24992, "decimalLat": -27.511561 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202179, "decimalLat": -27.512442 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233994, "decimalLat": -27.505861 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250358, "decimalLat": -27.511335 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239825, "decimalLat": -27.515846 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255401, "decimalLat": -27.567985 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199203, "decimalLat": -27.513699 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248662, "decimalLat": -27.490638 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244327, "decimalLat": -27.495796 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248573, "decimalLat": -27.490725 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243408, "decimalLat": -27.489111 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.217644, "decimalLat": -27.546518 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24995, "decimalLat": -27.511918 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250659, "decimalLat": -27.511767 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249174, "decimalLat": -27.51147 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281915, "decimalLat": -27.531058 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223922, "decimalLat": -27.500289 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253854, "decimalLat": -27.511759 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251691, "decimalLat": -27.509272 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233307, "decimalLat": -27.505215 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245461, "decimalLat": -27.490713 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246719, "decimalLat": -27.490417 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245723, "decimalLat": -27.495749 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272227, "decimalLat": -27.57431 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202408, "decimalLat": -27.513723 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.442659, "decimalLat": -27.392372 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -27.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24775, "decimalLat": -27.495945 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242218, "decimalLat": -27.51456 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250104, "decimalLat": -27.511384 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.524261, "decimalLat": -27.42795 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -27.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281904, "decimalLat": -27.531678 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250859, "decimalLat": -27.511763 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270897, "decimalLat": -27.575581 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244995, "decimalLat": -27.490944 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256822, "decimalLat": -27.512881 }, "geometry": { "type": "Point", "coordinates": [ 153.257, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250313, "decimalLat": -27.511265 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204132, "decimalLat": -27.50922 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24621, "decimalLat": -27.49565 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198853, "decimalLat": -27.514212 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248231, "decimalLat": -27.490859 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270961, "decimalLat": -27.575604 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255066, "decimalLat": -27.527807 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245, "decimalLat": -27.490478 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248373, "decimalLat": -27.511449 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.408966, "decimalLat": -27.650708 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -27.651 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251969, "decimalLat": -27.514483 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245429, "decimalLat": -27.489669 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250232, "decimalLat": -27.511384 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253806, "decimalLat": -27.511731 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241968, "decimalLat": -27.514492 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251209, "decimalLat": -27.511663 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247986, "decimalLat": -27.490381 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251638, "decimalLat": -27.503633 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251891, "decimalLat": -27.509318 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253819, "decimalLat": -27.511834 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.269931, "decimalLat": -27.575242 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250238, "decimalLat": -27.51147 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271042, "decimalLat": -27.539661 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273643, "decimalLat": -27.534807 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244385, "decimalLat": -27.492548 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244922, "decimalLat": -27.491116 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251906, "decimalLat": -27.514583 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.222458, "decimalLat": -27.515429 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199356, "decimalLat": -27.513639 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202316, "decimalLat": -27.513174 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250254, "decimalLat": -27.511414 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250299, "decimalLat": -27.511259 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245952, "decimalLat": -27.497872 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271015, "decimalLat": -27.57547 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.226248, "decimalLat": -27.562613 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.563 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247978, "decimalLat": -27.511503 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24471, "decimalLat": -27.491172 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246817, "decimalLat": -27.490464 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25016, "decimalLat": -27.511707 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199005, "decimalLat": -27.613218 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241211, "decimalLat": -27.515208 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251023, "decimalLat": -27.511817 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.523748, "decimalLat": -27.431824 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247726, "decimalLat": -27.490822 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239821, "decimalLat": -27.515392 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202011, "decimalLat": -27.512377 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44181, "decimalLat": -27.394025 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252279, "decimalLat": -27.501109 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245759, "decimalLat": -27.496453 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248056, "decimalLat": -27.51118 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250161, "decimalLat": -27.511637 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232483, "decimalLat": -27.500586 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252521, "decimalLat": -27.511679 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248625, "decimalLat": -27.490803 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272281, "decimalLat": -27.554414 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439961, "decimalLat": -27.398382 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.405375, "decimalLat": -27.494375 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272404, "decimalLat": -27.576222 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251476, "decimalLat": -27.509423 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271369, "decimalLat": -27.57315 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.573 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250239, "decimalLat": -27.511476 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25007, "decimalLat": -27.511362 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245987, "decimalLat": -27.489969 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250958, "decimalLat": -27.500942 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272442, "decimalLat": -27.554404 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271905, "decimalLat": -27.576745 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245422, "decimalLat": -27.499077 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439028, "decimalLat": -27.401181 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24559, "decimalLat": -27.489557 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272012, "decimalLat": -27.576459 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242927, "decimalLat": -27.538302 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245911, "decimalLat": -27.48999 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251065, "decimalLat": -27.511605 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24789, "decimalLat": -27.526894 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24141, "decimalLat": -27.513747 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248237, "decimalLat": -27.490552 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24813, "decimalLat": -27.490514 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271111, "decimalLat": -27.57625 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248474, "decimalLat": -27.490817 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272055, "decimalLat": -27.574976 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244962, "decimalLat": -27.490875 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.195114, "decimalLat": -27.514368 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27683, "decimalLat": -27.526522 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.297485, "decimalLat": -27.567314 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230531, "decimalLat": -27.499847 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25366, "decimalLat": -27.511641 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232391, "decimalLat": -27.50783 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242176, "decimalLat": -27.512458 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250534, "decimalLat": -27.511658 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19487, "decimalLat": -27.507368 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250761, "decimalLat": -27.511605 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.217834, "decimalLat": -27.518948 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249536, "decimalLat": -27.501839 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250103, "decimalLat": -27.511539 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271202, "decimalLat": -27.576002 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248516, "decimalLat": -27.490737 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250337, "decimalLat": -27.502507 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198608, "decimalLat": -27.613066 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.218798, "decimalLat": -27.49495 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249536, "decimalLat": -27.511374 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245102, "decimalLat": -27.489698 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252401, "decimalLat": -27.501187 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.524192, "decimalLat": -27.432046 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248722, "decimalLat": -27.490173 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245346, "decimalLat": -27.489878 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251834, "decimalLat": -27.50934 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250032, "decimalLat": -27.511668 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272275, "decimalLat": -27.574867 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.279146, "decimalLat": -27.525472 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251492, "decimalLat": -27.511623 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2713, "decimalLat": -27.575196 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246413, "decimalLat": -27.497595 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247036, "decimalLat": -27.490767 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.279266, "decimalLat": -27.525486 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.268829, "decimalLat": -27.546358 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.226821, "decimalLat": -27.503263 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19841, "decimalLat": -27.612909 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245422, "decimalLat": -27.490114 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251205, "decimalLat": -27.502817 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197769, "decimalLat": -27.612509 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250279, "decimalLat": -27.511651 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234009, "decimalLat": -27.504042 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247994, "decimalLat": -27.49062 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256153, "decimalLat": -27.514428 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24189, "decimalLat": -27.514635 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256112, "decimalLat": -27.51376 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278684, "decimalLat": -27.534932 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245468, "decimalLat": -27.489561 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199356, "decimalLat": -27.61375 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250168, "decimalLat": -27.511465 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198563, "decimalLat": -27.504433 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253283, "decimalLat": -27.496089 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23378, "decimalLat": -27.505907 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441526, "decimalLat": -27.402917 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.403 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272699, "decimalLat": -27.57409 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244732, "decimalLat": -27.491625 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244856, "decimalLat": -27.491391 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281668, "decimalLat": -27.531257 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225415, "decimalLat": -27.502928 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249981, "decimalLat": -27.511366 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282065, "decimalLat": -27.531787 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248189, "decimalLat": -27.490428 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244737, "decimalLat": -27.491042 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270954, "decimalLat": -27.575003 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248575, "decimalLat": -27.511466 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.235092, "decimalLat": -27.501314 }, "geometry": { "type": "Point", "coordinates": [ 153.235, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248658, "decimalLat": -27.51158 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250184, "decimalLat": -27.51154 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249902, "decimalLat": -27.511413 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244847, "decimalLat": -27.49087 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255398, "decimalLat": -27.513115 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206325, "decimalLat": -27.496606 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248615, "decimalLat": -27.511605 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20166, "decimalLat": -27.505302 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.446423, "decimalLat": -27.395841 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255895, "decimalLat": -27.51402 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248455, "decimalLat": -27.490764 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252309, "decimalLat": -27.511717 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.194778, "decimalLat": -27.514791 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251025, "decimalLat": -27.509204 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247131, "decimalLat": -27.490431 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243759, "decimalLat": -27.491342 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243668, "decimalLat": -27.491362 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439016, "decimalLat": -27.395565 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247189, "decimalLat": -27.511461 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295135, "decimalLat": -27.56875 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231598, "decimalLat": -27.502319 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248322, "decimalLat": -27.489899 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.277355, "decimalLat": -27.525417 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225642, "decimalLat": -27.503506 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29512, "decimalLat": -27.568626 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26194, "decimalLat": -27.519349 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270875, "decimalLat": -27.575566 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271884, "decimalLat": -27.576745 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251881, "decimalLat": -27.514459 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438177, "decimalLat": -27.400946 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440654, "decimalLat": -27.398868 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231743, "decimalLat": -27.533558 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4385, "decimalLat": -27.395513 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273386, "decimalLat": -27.57625 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271744, "decimalLat": -27.574138 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248173, "decimalLat": -27.511485 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23, "decimalLat": -27.52 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -27.52 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249106, "decimalLat": -27.489739 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.268919, "decimalLat": -27.540199 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254331, "decimalLat": -27.51183 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253624, "decimalLat": -27.511727 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251539, "decimalLat": -27.511695 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252562, "decimalLat": -27.511635 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256118, "decimalLat": -27.54868 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250156, "decimalLat": -27.511446 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27094, "decimalLat": -27.575699 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201981, "decimalLat": -27.508234 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197784, "decimalLat": -27.615105 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.519223, "decimalLat": -27.42493 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250532, "decimalLat": -27.511596 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27094, "decimalLat": -27.575451 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225678, "decimalLat": -27.503753 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24861, "decimalLat": -27.511734 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272313, "decimalLat": -27.574348 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247873, "decimalLat": -27.490875 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245651, "decimalLat": -27.489721 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25023, "decimalLat": -27.511403 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203003, "decimalLat": -27.512789 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250903, "decimalLat": -27.511615 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253849, "decimalLat": -27.511709 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250326, "decimalLat": -27.511282 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281918, "decimalLat": -27.525579 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198273, "decimalLat": -27.510561 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225235, "decimalLat": -27.505575 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20195, "decimalLat": -27.50803 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4389, "decimalLat": -27.40005 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253376, "decimalLat": -27.493978 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244742, "decimalLat": -27.491347 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248173, "decimalLat": -27.490555 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2513, "decimalLat": -27.511691 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251067, "decimalLat": -27.509106 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40181, "decimalLat": -27.49796 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251921, "decimalLat": -27.514651 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25027, "decimalLat": -27.511254 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231743, "decimalLat": -27.533558 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.219818, "decimalLat": -27.611816 }, "geometry": { "type": "Point", "coordinates": [ 153.22, -27.612 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250628, "decimalLat": -27.503188 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251606, "decimalLat": -27.511646 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272012, "decimalLat": -27.574767 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271927, "decimalLat": -27.574919 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225422, "decimalLat": -27.502602 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239814, "decimalLat": -27.51537 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248924, "decimalLat": -27.490602 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272067, "decimalLat": -27.576764 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.207108, "decimalLat": -27.622965 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -27.623 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196503, "decimalLat": -27.50976 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244407, "decimalLat": -27.488792 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270274, "decimalLat": -27.575394 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271433, "decimalLat": -27.575242 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439072, "decimalLat": -27.395709 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258805, "decimalLat": -27.54682 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20311, "decimalLat": -27.509058 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28306, "decimalLat": -27.525918 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440817, "decimalLat": -27.39698 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21795, "decimalLat": -27.546747 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258344, "decimalLat": -27.547261 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271068, "decimalLat": -27.575566 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2714, "decimalLat": -27.575311 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247594, "decimalLat": -27.490813 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27139, "decimalLat": -27.575014 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250091, "decimalLat": -27.511602 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244042, "decimalLat": -27.48955 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.268387, "decimalLat": -27.546328 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198112, "decimalLat": -27.615006 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225487, "decimalLat": -27.503074 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250962, "decimalLat": -27.535396 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221596, "decimalLat": -27.500876 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200241, "decimalLat": -27.51078 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241875, "decimalLat": -27.514513 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.261963, "decimalLat": -27.546856 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27058, "decimalLat": -27.53534 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233444, "decimalLat": -27.505064 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249932, "decimalLat": -27.511245 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253809, "decimalLat": -27.495028 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271148, "decimalLat": -27.575377 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284411, "decimalLat": -27.52534 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.529577, "decimalLat": -27.429261 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -27.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248044, "decimalLat": -27.490519 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.522001, "decimalLat": -27.426151 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -27.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247926, "decimalLat": -27.490643 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244994, "decimalLat": -27.4896 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247055, "decimalLat": -27.490387 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204727, "decimalLat": -27.620499 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -27.62 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271036, "decimalLat": -27.575501 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.222947, "decimalLat": -27.507244 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223152, "decimalLat": -27.499429 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204971, "decimalLat": -27.617893 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -27.618 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.450864, "decimalLat": -27.407348 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -27.407 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.399608, "decimalLat": -27.497968 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270961, "decimalLat": -27.575623 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19827, "decimalLat": -27.62269 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.623 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272002, "decimalLat": -27.576611 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249989, "decimalLat": -27.51155 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19747, "decimalLat": -27.61276 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.205459, "decimalLat": -27.490323 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27925, "decimalLat": -27.536392 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20171, "decimalLat": -27.50808 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198729, "decimalLat": -27.505043 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270961, "decimalLat": -27.575585 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.526267, "decimalLat": -27.430989 }, "geometry": { "type": "Point", "coordinates": [ 153.526, -27.431 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247209, "decimalLat": -27.511424 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2516, "decimalLat": -27.509096 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281958, "decimalLat": -27.532632 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272141, "decimalLat": -27.574424 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197876, "decimalLat": -27.50625 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.444603, "decimalLat": -27.39601 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281937, "decimalLat": -27.531896 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202332, "decimalLat": -27.504461 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271042, "decimalLat": -27.539635 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441464, "decimalLat": -27.394877 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249503, "decimalLat": -27.511243 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249691, "decimalLat": -27.502655 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251872, "decimalLat": -27.511703 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.268707, "decimalLat": -27.546385 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.217142, "decimalLat": -27.548482 }, "geometry": { "type": "Point", "coordinates": [ 153.217, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250551, "decimalLat": -27.502983 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439981, "decimalLat": -27.396785 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251991, "decimalLat": -27.51477 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202835, "decimalLat": -27.512978 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251019, "decimalLat": -27.503398 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251214, "decimalLat": -27.502931 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202698, "decimalLat": -27.513046 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197921, "decimalLat": -27.504959 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206787, "decimalLat": -27.625097 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -27.625 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249042, "decimalLat": -27.490185 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271176, "decimalLat": -27.57587 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250527, "decimalLat": -27.51158 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.26886, "decimalLat": -27.546545 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247801, "decimalLat": -27.51143 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252211, "decimalLat": -27.501035 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.219078, "decimalLat": -27.495243 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249247, "decimalLat": -27.490332 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250781, "decimalLat": -27.511612 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249952, "decimalLat": -27.511425 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24872, "decimalLat": -27.490262 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197296, "decimalLat": -27.505367 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197113, "decimalLat": -27.505304 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247003, "decimalLat": -27.490148 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272377, "decimalLat": -27.554347 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244837, "decimalLat": -27.492331 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243973, "decimalLat": -27.488796 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201828, "decimalLat": -27.512236 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245193, "decimalLat": -27.489132 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.408859, "decimalLat": -27.485473 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -27.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274126, "decimalLat": -27.551484 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250372, "decimalLat": -27.511287 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200241, "decimalLat": -27.514021 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245578, "decimalLat": -27.496006 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247183, "decimalLat": -27.511405 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271497, "decimalLat": -27.573416 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246531, "decimalLat": -27.498305 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25008, "decimalLat": -27.511336 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250064, "decimalLat": -27.511403 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.519181, "decimalLat": -27.425452 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25563, "decimalLat": -27.514371 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223609, "decimalLat": -27.498233 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197433, "decimalLat": -27.614483 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.217982, "decimalLat": -27.547476 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253602, "decimalLat": -27.511782 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249908, "decimalLat": -27.511503 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225489, "decimalLat": -27.49852 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252537, "decimalLat": -27.501289 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231781, "decimalLat": -27.508011 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.306122, "decimalLat": -27.564442 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -27.564 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248787, "decimalLat": -27.490587 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439904, "decimalLat": -27.393212 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27109, "decimalLat": -27.575585 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244956, "decimalLat": -27.490913 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239807, "decimalLat": -27.515357 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249677, "decimalLat": -27.511568 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2485, "decimalLat": -27.490131 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245268, "decimalLat": -27.490174 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245021, "decimalLat": -27.490696 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25959, "decimalLat": -27.520257 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.52 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248602, "decimalLat": -27.490181 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.238576, "decimalLat": -27.482867 }, "geometry": { "type": "Point", "coordinates": [ 153.239, -27.483 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247726, "decimalLat": -27.490444 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206636, "decimalLat": -27.620802 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249995, "decimalLat": -27.511298 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250053, "decimalLat": -27.502423 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272356, "decimalLat": -27.574424 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270897, "decimalLat": -27.575604 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253664, "decimalLat": -27.51169 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255539, "decimalLat": -27.51225 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201172, "decimalLat": -27.506016 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246902, "decimalLat": -27.490124 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249943, "decimalLat": -27.511236 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.297165, "decimalLat": -27.56736 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245287, "decimalLat": -27.489911 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204269, "decimalLat": -27.621217 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203156, "decimalLat": -27.510918 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225528, "decimalLat": -27.503691 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272156, "decimalLat": -27.546566 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.530745, "decimalLat": -27.428984 }, "geometry": { "type": "Point", "coordinates": [ 153.531, -27.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245614, "decimalLat": -27.490752 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270473, "decimalLat": -27.574912 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271358, "decimalLat": -27.574975 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272547, "decimalLat": -27.576387 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248841, "decimalLat": -27.489586 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252676, "decimalLat": -27.551341 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242174, "decimalLat": -27.513191 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.188939, "decimalLat": -27.544236 }, "geometry": { "type": "Point", "coordinates": [ 153.189, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270336, "decimalLat": -27.546594 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252735, "decimalLat": -27.493807 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.444784, "decimalLat": -27.39616 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.205013, "decimalLat": -27.549659 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196701, "decimalLat": -27.505056 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202663, "decimalLat": -27.627955 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.628 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244986, "decimalLat": -27.490977 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19368, "decimalLat": -27.503622 }, "geometry": { "type": "Point", "coordinates": [ 153.194, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247954, "decimalLat": -27.490734 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069158, "decimalLat": -27.479245 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.300131, "decimalLat": -27.569191 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255953, "decimalLat": -27.513917 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251359, "decimalLat": -27.511676 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200151, "decimalLat": -27.492721 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.217714, "decimalLat": -27.494397 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248173, "decimalLat": -27.490878 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25033, "decimalLat": -27.511382 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244204, "decimalLat": -27.49172 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245094, "decimalLat": -27.490038 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272766, "decimalLat": -27.5298 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27063, "decimalLat": -27.539585 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273729, "decimalLat": -27.534775 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.210114, "decimalLat": -27.617191 }, "geometry": { "type": "Point", "coordinates": [ 153.21, -27.617 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250748, "decimalLat": -27.51167 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248095, "decimalLat": -27.490659 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245635, "decimalLat": -27.490104 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.524233, "decimalLat": -27.432067 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273064, "decimalLat": -27.577506 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.578 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250068, "decimalLat": -27.511559 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245032, "decimalLat": -27.491018 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.182233, "decimalLat": -27.53829 }, "geometry": { "type": "Point", "coordinates": [ 153.182, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248119, "decimalLat": -27.490947 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271283, "decimalLat": -27.574767 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.51912, "decimalLat": -27.427402 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -27.427 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223837, "decimalLat": -27.500215 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255987, "decimalLat": -27.514064 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295794, "decimalLat": -27.611312 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -27.611 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278439, "decimalLat": -27.536644 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242787, "decimalLat": -27.513428 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196426, "decimalLat": -27.514484 }, "geometry": { "type": "Point", "coordinates": [ 153.196, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2453, "decimalLat": -27.491142 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.294586, "decimalLat": -27.568825 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437988, "decimalLat": -27.399004 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248905, "decimalLat": -27.490464 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251437, "decimalLat": -27.509372 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.407057, "decimalLat": -27.502611 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252625, "decimalLat": -27.503892 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.290131, "decimalLat": -27.570223 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25426, "decimalLat": -27.511973 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298676, "decimalLat": -27.56963 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282087, "decimalLat": -27.531696 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250278, "decimalLat": -27.511411 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251575, "decimalLat": -27.5032 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241856, "decimalLat": -27.514501 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248862, "decimalLat": -27.490736 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24529, "decimalLat": -27.4898 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248659, "decimalLat": -27.511499 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.235239, "decimalLat": -27.512043 }, "geometry": { "type": "Point", "coordinates": [ 153.235, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271358, "decimalLat": -27.575812 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250341, "decimalLat": -27.511416 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223137, "decimalLat": -27.499726 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249821, "decimalLat": -27.511851 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27345, "decimalLat": -27.576041 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247558, "decimalLat": -27.511424 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249967, "decimalLat": -27.511352 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230682, "decimalLat": -27.501377 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23233, "decimalLat": -27.50773 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202545, "decimalLat": -27.513124 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247039, "decimalLat": -27.490632 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252658, "decimalLat": -27.50135 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250181, "decimalLat": -27.511452 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250274, "decimalLat": -27.511577 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250392, "decimalLat": -27.511436 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248613, "decimalLat": -27.491023 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250174, "decimalLat": -27.511242 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441822, "decimalLat": -27.395319 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281894, "decimalLat": -27.531348 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271927, "decimalLat": -27.576726 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251891, "decimalLat": -27.509318 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198471, "decimalLat": -27.613125 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.4426, "decimalLat": -27.397137 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247817, "decimalLat": -27.490998 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274228, "decimalLat": -27.539251 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27153, "decimalLat": -27.575204 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24622, "decimalLat": -27.497573 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252947, "decimalLat": -27.493825 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197144, "decimalLat": -27.612942 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231743, "decimalLat": -27.533558 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278412, "decimalLat": -27.536877 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250956, "decimalLat": -27.503065 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282077, "decimalLat": -27.533064 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250917, "decimalLat": -27.511695 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239831, "decimalLat": -27.515358 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249305, "decimalLat": -27.490015 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250903, "decimalLat": -27.511649 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253887, "decimalLat": -27.588191 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.588 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248306, "decimalLat": -27.510544 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197983, "decimalLat": -27.513535 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255371, "decimalLat": -27.533566 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24909, "decimalLat": -27.490311 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270746, "decimalLat": -27.575619 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246711, "decimalLat": -27.498009 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245051, "decimalLat": -27.553368 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248194, "decimalLat": -27.490904 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270757, "decimalLat": -27.575584 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249381, "decimalLat": -27.511355 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198227, "decimalLat": -27.612848 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271149, "decimalLat": -27.55322 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197922, "decimalLat": -27.613277 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24295, "decimalLat": -27.488617 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.444846, "decimalLat": -27.395648 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282044, "decimalLat": -27.629946 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.63 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244967, "decimalLat": -27.489878 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251067, "decimalLat": -27.509176 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247955, "decimalLat": -27.490183 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.205528, "decimalLat": -27.498334 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248858, "decimalLat": -27.48954 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244858, "decimalLat": -27.497711 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251829, "decimalLat": -27.51462 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250363, "decimalLat": -27.511281 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271047, "decimalLat": -27.57547 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250344, "decimalLat": -27.511343 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24504, "decimalLat": -27.491126 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201279, "decimalLat": -27.506208 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20285, "decimalLat": -27.511311 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250179, "decimalLat": -27.511287 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232005, "decimalLat": -27.50831 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245686, "decimalLat": -27.496185 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250917, "decimalLat": -27.511695 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.228768, "decimalLat": -27.546248 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.226517, "decimalLat": -27.606987 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.607 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250921, "decimalLat": -27.511675 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278148, "decimalLat": -27.552473 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251974, "decimalLat": -27.500941 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250952, "decimalLat": -27.511768 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251962, "decimalLat": -27.509333 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270264, "decimalLat": -27.545547 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271819, "decimalLat": -27.576707 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.269989, "decimalLat": -27.545322 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251561, "decimalLat": -27.509819 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250311, "decimalLat": -27.511379 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271841, "decimalLat": -27.575356 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242003, "decimalLat": -27.514562 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244812, "decimalLat": -27.489494 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248589, "decimalLat": -27.490703 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200211, "decimalLat": -27.51392 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20256, "decimalLat": -27.507339 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271358, "decimalLat": -27.575051 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27139, "decimalLat": -27.575642 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20283, "decimalLat": -27.511302 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202194, "decimalLat": -27.505449 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247232, "decimalLat": -27.511333 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.276132, "decimalLat": -27.535893 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253659, "decimalLat": -27.51171 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.216763, "decimalLat": -27.500435 }, "geometry": { "type": "Point", "coordinates": [ 153.217, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203094, "decimalLat": -27.513794 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248001, "decimalLat": -27.490618 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249074, "decimalLat": -27.490339 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.297882, "decimalLat": -27.569315 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248631, "decimalLat": -27.490077 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19764, "decimalLat": -27.61248 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.612 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201248, "decimalLat": -27.511444 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271682, "decimalLat": -27.574292 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39913, "decimalLat": -27.497204 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252043, "decimalLat": -27.500925 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.285797, "decimalLat": -27.523469 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -27.523 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225525, "decimalLat": -27.504014 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250433, "decimalLat": -27.511743 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298874, "decimalLat": -27.569696 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255654, "decimalLat": -27.51218 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225861, "decimalLat": -27.498581 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25005, "decimalLat": -27.51129 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248677, "decimalLat": -27.490618 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198511, "decimalLat": -27.615119 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.275435, "decimalLat": -27.53672 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255753, "decimalLat": -27.494653 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2505, "decimalLat": -27.511641 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44, "decimalLat": -27.4 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248519, "decimalLat": -27.490779 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253583, "decimalLat": -27.511692 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246659, "decimalLat": -27.498606 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24946, "decimalLat": -27.511262 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24695, "decimalLat": -27.49009 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24792, "decimalLat": -27.510066 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23378, "decimalLat": -27.505726 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271369, "decimalLat": -27.576003 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.31895, "decimalLat": -27.697002 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -27.697 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199738, "decimalLat": -27.613548 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249134, "decimalLat": -27.490179 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.296036, "decimalLat": -27.567532 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202957, "decimalLat": -27.512882 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281937, "decimalLat": -27.525511 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253271, "decimalLat": -27.496183 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273236, "decimalLat": -27.576209 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248377, "decimalLat": -27.489679 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441511, "decimalLat": -27.394858 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253833, "decimalLat": -27.511809 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246517, "decimalLat": -27.499092 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255273, "decimalLat": -27.545268 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248205, "decimalLat": -27.53581 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256145, "decimalLat": -27.548686 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242265, "decimalLat": -27.512933 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24852, "decimalLat": -27.490364 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.240743, "decimalLat": -27.484059 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -27.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2052, "decimalLat": -27.617811 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -27.618 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439769, "decimalLat": -27.401585 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.402 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27227, "decimalLat": -27.574748 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245941, "decimalLat": -27.489864 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271562, "decimalLat": -27.574653 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295151, "decimalLat": -27.568602 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248109, "decimalLat": -27.490931 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244886, "decimalLat": -27.490964 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249144, "decimalLat": -27.490052 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.43154, "decimalLat": -27.486383 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -27.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249664, "decimalLat": -27.50229 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247991, "decimalLat": -27.490569 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252398, "decimalLat": -27.511439 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.205505, "decimalLat": -27.618845 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -27.619 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282001, "decimalLat": -27.532555 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271626, "decimalLat": -27.574957 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.205392, "decimalLat": -27.490456 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202774, "decimalLat": -27.506792 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250266, "decimalLat": -27.511283 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251425, "decimalLat": -27.509429 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241226, "decimalLat": -27.491545 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.405855, "decimalLat": -27.496935 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250297, "decimalLat": -27.502696 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271497, "decimalLat": -27.574386 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251927, "decimalLat": -27.509269 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245003, "decimalLat": -27.491024 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.194885, "decimalLat": -27.507105 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271454, "decimalLat": -27.536732 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239847, "decimalLat": -27.515385 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250201, "decimalLat": -27.511381 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295013, "decimalLat": -27.568651 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245026, "decimalLat": -27.490236 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.529258, "decimalLat": -27.428995 }, "geometry": { "type": "Point", "coordinates": [ 153.529, -27.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273128, "decimalLat": -27.575889 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246193, "decimalLat": -27.489015 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22649, "decimalLat": -27.50293 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437862, "decimalLat": -27.40067 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246933, "decimalLat": -27.490564 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254745, "decimalLat": -27.529127 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.296737, "decimalLat": -27.582144 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.582 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248304, "decimalLat": -27.490593 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271186, "decimalLat": -27.57566 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29468, "decimalLat": -27.56894 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254303, "decimalLat": -27.519368 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248307, "decimalLat": -27.490906 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250108, "decimalLat": -27.502308 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271476, "decimalLat": -27.575451 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200516, "decimalLat": -27.51124 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197682, "decimalLat": -27.505671 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245601, "decimalLat": -27.490805 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2744, "decimalLat": -27.571811 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244979, "decimalLat": -27.490923 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250235, "decimalLat": -27.511427 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271603, "decimalLat": -27.575143 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197235, "decimalLat": -27.515734 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249973, "decimalLat": -27.51164 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199112, "decimalLat": -27.505472 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270831, "decimalLat": -27.539601 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251542, "decimalLat": -27.503226 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271433, "decimalLat": -27.575014 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248076, "decimalLat": -27.490574 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271168, "decimalLat": -27.575304 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278434, "decimalLat": -27.537407 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.263174, "decimalLat": -27.524193 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256764, "decimalLat": -27.512674 }, "geometry": { "type": "Point", "coordinates": [ 153.257, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250263, "decimalLat": -27.511366 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248654, "decimalLat": -27.511482 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242232, "decimalLat": -27.514488 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252342, "decimalLat": -27.501096 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2448, "decimalLat": -27.49079 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.515915, "decimalLat": -27.422566 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -27.423 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201736, "decimalLat": -27.508106 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281894, "decimalLat": -27.532698 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271497, "decimalLat": -27.573416 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.573 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245392, "decimalLat": -27.489965 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250142, "decimalLat": -27.511672 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27202, "decimalLat": -27.57679 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282274, "decimalLat": -27.533048 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440128, "decimalLat": -27.398746 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272088, "decimalLat": -27.574899 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20076, "decimalLat": -27.509523 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243965, "decimalLat": -27.489551 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250193, "decimalLat": -27.511595 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248634, "decimalLat": -27.490171 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244792, "decimalLat": -27.491421 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271004, "decimalLat": -27.57547 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24527, "decimalLat": -27.489445 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.195969, "decimalLat": -27.509714 }, "geometry": { "type": "Point", "coordinates": [ 153.196, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245255, "decimalLat": -27.489534 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25174, "decimalLat": -27.510084 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248361, "decimalLat": -27.511507 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256378, "decimalLat": -27.514543 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254388, "decimalLat": -27.511838 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248334, "decimalLat": -27.490615 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439394, "decimalLat": -27.39814 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20107, "decimalLat": -27.61345 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206891, "decimalLat": -27.622161 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -27.622 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271104, "decimalLat": -27.574673 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.257534, "decimalLat": -27.5001 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.297348, "decimalLat": -27.567369 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273987, "decimalLat": -27.558485 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.558 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241965, "decimalLat": -27.514511 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198792, "decimalLat": -27.614233 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250394, "decimalLat": -27.511581 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247993, "decimalLat": -27.490794 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258318, "decimalLat": -27.500114 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232391, "decimalLat": -27.50724 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250389, "decimalLat": -27.502883 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271197, "decimalLat": -27.575604 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243755, "decimalLat": -27.491425 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249951, "decimalLat": -27.5116 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250248, "decimalLat": -27.511382 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198883, "decimalLat": -27.510933 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244868, "decimalLat": -27.491331 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255275, "decimalLat": -27.513034 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251668, "decimalLat": -27.509269 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.297073, "decimalLat": -27.567892 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247288, "decimalLat": -27.490234 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234024, "decimalLat": -27.501087 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272055, "decimalLat": -27.574653 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270126, "decimalLat": -27.545811 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232407, "decimalLat": -27.507133 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.219345, "decimalLat": -27.495234 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270789, "decimalLat": -27.540564 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439417, "decimalLat": -27.396786 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231995, "decimalLat": -27.50148 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247223, "decimalLat": -27.49057 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253263, "decimalLat": -27.50187 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244848, "decimalLat": -27.490896 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249257, "decimalLat": -27.48982 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23291, "decimalLat": -27.507471 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272334, "decimalLat": -27.574253 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440976, "decimalLat": -27.398877 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253458, "decimalLat": -27.511785 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271111, "decimalLat": -27.576022 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438041, "decimalLat": -27.399562 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248458, "decimalLat": -27.490636 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272377, "decimalLat": -27.574215 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271054, "decimalLat": -27.575496 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225101, "decimalLat": -27.501786 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248193, "decimalLat": -27.490487 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250536, "decimalLat": -27.511761 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271573, "decimalLat": -27.575242 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250088, "decimalLat": -27.511339 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245483, "decimalLat": -27.495619 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251846, "decimalLat": -27.509295 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248188, "decimalLat": -27.490917 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197983, "decimalLat": -27.612528 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.226822, "decimalLat": -27.503592 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223949, "decimalLat": -27.500264 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271663, "decimalLat": -27.575085 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247519, "decimalLat": -27.511495 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249374, "decimalLat": -27.489988 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253623, "decimalLat": -27.511716 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248495, "decimalLat": -27.490782 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24574, "decimalLat": -27.496418 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247627, "decimalLat": -27.511494 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272002, "decimalLat": -27.576649 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244058, "decimalLat": -27.48867 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271261, "decimalLat": -27.575356 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247647, "decimalLat": -27.491402 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232712, "decimalLat": -27.5042 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.268204, "decimalLat": -27.538784 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252604, "decimalLat": -27.501556 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.218646, "decimalLat": -27.502574 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248682, "decimalLat": -27.489975 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.195679, "decimalLat": -27.505907 }, "geometry": { "type": "Point", "coordinates": [ 153.196, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245709, "decimalLat": -27.496093 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247612, "decimalLat": -27.511431 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243805, "decimalLat": -27.489508 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250392, "decimalLat": -27.511313 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244954, "decimalLat": -27.490575 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271701, "decimalLat": -27.574291 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231232, "decimalLat": -27.500773 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271347, "decimalLat": -27.576003 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247964, "decimalLat": -27.510044 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439136, "decimalLat": -27.397133 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.296606, "decimalLat": -27.611306 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.611 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271154, "decimalLat": -27.574672 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24408, "decimalLat": -27.488525 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44449, "decimalLat": -27.395982 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251877, "decimalLat": -27.511579 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248205, "decimalLat": -27.490173 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250993, "decimalLat": -27.509263 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251801, "decimalLat": -27.509158 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246489, "decimalLat": -27.497725 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.216752, "decimalLat": -27.500437 }, "geometry": { "type": "Point", "coordinates": [ 153.217, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199901, "decimalLat": -27.493708 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.235168, "decimalLat": -27.501377 }, "geometry": { "type": "Point", "coordinates": [ 153.235, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250045, "decimalLat": -27.511545 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295731, "decimalLat": -27.567734 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24843, "decimalLat": -27.490647 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244723, "decimalLat": -27.49119 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251086, "decimalLat": -27.511661 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251834, "decimalLat": -27.509298 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272077, "decimalLat": -27.573854 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254052, "decimalLat": -27.511817 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281915, "decimalLat": -27.531031 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244957, "decimalLat": -27.495668 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270875, "decimalLat": -27.575585 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.216195, "decimalLat": -27.537184 }, "geometry": { "type": "Point", "coordinates": [ 153.216, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.520684, "decimalLat": -27.426201 }, "geometry": { "type": "Point", "coordinates": [ 153.521, -27.426 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24185, "decimalLat": -27.514779 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223212, "decimalLat": -27.499626 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.297394, "decimalLat": -27.569626 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202423, "decimalLat": -27.513885 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260153, "decimalLat": -27.501602 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25559, "decimalLat": -27.546189 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242046, "decimalLat": -27.512361 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232107, "decimalLat": -27.507427 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255988, "decimalLat": -27.51312 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242879, "decimalLat": -27.489484 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248072, "decimalLat": -27.490367 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241589, "decimalLat": -27.514216 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245991, "decimalLat": -27.497058 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271884, "decimalLat": -27.576688 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272077, "decimalLat": -27.574538 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250318, "decimalLat": -27.511332 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271798, "decimalLat": -27.575547 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248121, "decimalLat": -27.490759 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244644, "decimalLat": -27.497044 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271499, "decimalLat": -27.575697 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244836, "decimalLat": -27.490901 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249552, "decimalLat": -27.51156 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245687, "decimalLat": -27.496278 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249021, "decimalLat": -27.49038 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248656, "decimalLat": -27.490064 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244568, "decimalLat": -27.492142 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.275392, "decimalLat": -27.540297 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250407, "decimalLat": -27.5117 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248286, "decimalLat": -27.49077 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.269595, "decimalLat": -27.540597 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.297958, "decimalLat": -27.569099 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281914, "decimalLat": -27.530607 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244922, "decimalLat": -27.49102 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272463, "decimalLat": -27.574006 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246567, "decimalLat": -27.498616 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245501, "decimalLat": -27.490724 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239864, "decimalLat": -27.515349 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252873, "decimalLat": -27.511749 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255249, "decimalLat": -27.545141 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199432, "decimalLat": -27.613768 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202087, "decimalLat": -27.513712 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252347, "decimalLat": -27.501142 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249983, "decimalLat": -27.502424 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198151, "decimalLat": -27.615406 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271283, "decimalLat": -27.575528 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283906, "decimalLat": -27.525286 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244646, "decimalLat": -27.49144 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.218234, "decimalLat": -27.494606 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253826, "decimalLat": -27.511751 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271499, "decimalLat": -27.575697 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251992, "decimalLat": -27.501221 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248502, "decimalLat": -27.490315 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441159, "decimalLat": -27.397017 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251894, "decimalLat": -27.509372 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248337, "decimalLat": -27.490564 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200806, "decimalLat": -27.508196 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44122, "decimalLat": -27.39511 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245911, "decimalLat": -27.490011 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.218242, "decimalLat": -27.501342 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272141, "decimalLat": -27.576536 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.289673, "decimalLat": -27.571846 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -27.572 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24707, "decimalLat": -27.490311 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250617, "decimalLat": -27.511492 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24909, "decimalLat": -27.490371 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.400897, "decimalLat": -27.499898 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250202, "decimalLat": -27.511234 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245028, "decimalLat": -27.490906 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249321, "decimalLat": -27.490378 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250885, "decimalLat": -27.509768 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242238, "decimalLat": -27.512922 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243765, "decimalLat": -27.491339 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25386, "decimalLat": -27.511727 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271154, "decimalLat": -27.57547 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253945, "decimalLat": -27.51181 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200851, "decimalLat": -27.511013 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239825, "decimalLat": -27.515846 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245529, "decimalLat": -27.510773 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256004, "decimalLat": -27.513487 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25445, "decimalLat": -27.495862 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244906, "decimalLat": -27.490915 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253856, "decimalLat": -27.511763 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197708, "decimalLat": -27.51543 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196838, "decimalLat": -27.507553 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248566, "decimalLat": -27.490294 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244904, "decimalLat": -27.489466 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246644, "decimalLat": -27.498186 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29924, "decimalLat": -27.572201 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.572 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250299, "decimalLat": -27.511661 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203629, "decimalLat": -27.508911 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24894, "decimalLat": -27.490189 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249008, "decimalLat": -27.511635 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248384, "decimalLat": -27.50045 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251767, "decimalLat": -27.503303 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253294, "decimalLat": -27.511678 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245224, "decimalLat": -27.48991 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248392, "decimalLat": -27.490316 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251144, "decimalLat": -27.511594 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273085, "decimalLat": -27.576117 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250442, "decimalLat": -27.502688 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249629, "decimalLat": -27.511538 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246277, "decimalLat": -27.490303 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273834, "decimalLat": -27.537455 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19949, "decimalLat": -27.613221 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440318, "decimalLat": -27.396994 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250032, "decimalLat": -27.511668 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248495, "decimalLat": -27.490717 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242859, "decimalLat": -27.489187 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.52, "decimalLat": -27.43 }, "geometry": { "type": "Point", "coordinates": [ 153.52, -27.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244858, "decimalLat": -27.489679 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271047, "decimalLat": -27.575718 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.444387, "decimalLat": -27.391986 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -27.392 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271164, "decimalLat": -27.54026 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241878, "decimalLat": -27.51485 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239813, "decimalLat": -27.515365 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258489, "decimalLat": -27.54756 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247408, "decimalLat": -27.490778 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245834, "decimalLat": -27.497276 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244733, "decimalLat": -27.491366 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271499, "decimalLat": -27.575697 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223148, "decimalLat": -27.499716 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251724, "decimalLat": -27.509254 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259052, "decimalLat": -27.547611 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.430338, "decimalLat": -27.491635 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256059, "decimalLat": -27.513943 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248544, "decimalLat": -27.490405 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244247, "decimalLat": -27.489223 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253878, "decimalLat": -27.511773 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248897, "decimalLat": -27.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246086, "decimalLat": -27.497204 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441499, "decimalLat": -27.397037 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206253, "decimalLat": -27.620224 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -27.62 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251821, "decimalLat": -27.509216 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271476, "decimalLat": -27.576079 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252243, "decimalLat": -27.498101 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249268, "decimalLat": -27.490135 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248637, "decimalLat": -27.490745 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271304, "decimalLat": -27.575946 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253666, "decimalLat": -27.511695 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247839, "decimalLat": -27.510133 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25451, "decimalLat": -27.51186 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270875, "decimalLat": -27.575585 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250131, "decimalLat": -27.51143 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233032, "decimalLat": -27.507324 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271197, "decimalLat": -27.575432 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239791, "decimalLat": -27.515362 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271927, "decimalLat": -27.574976 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249906, "decimalLat": -27.511367 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.297882, "decimalLat": -27.569374 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.200867, "decimalLat": -27.508358 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271991, "decimalLat": -27.575223 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25032, "decimalLat": -27.511305 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248662, "decimalLat": -27.490616 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250223, "decimalLat": -27.51138 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438387, "decimalLat": -27.401128 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250051, "decimalLat": -27.511799 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250035, "decimalLat": -27.511274 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.360115, "decimalLat": -27.61478 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249192, "decimalLat": -27.490495 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283923, "decimalLat": -27.525531 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250157, "decimalLat": -27.511432 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273665, "decimalLat": -27.575752 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245484, "decimalLat": -27.490609 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248476, "decimalLat": -27.490389 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24617, "decimalLat": -27.489981 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255973, "decimalLat": -27.514099 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271342, "decimalLat": -27.574574 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239821, "decimalLat": -27.51537 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20134, "decimalLat": -27.50617 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271283, "decimalLat": -27.575623 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249417, "decimalLat": -27.490162 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246185, "decimalLat": -27.489796 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27153, "decimalLat": -27.575964 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271499, "decimalLat": -27.575697 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250319, "decimalLat": -27.511611 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251709, "decimalLat": -27.509243 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255939, "decimalLat": -27.514445 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25358, "decimalLat": -27.511732 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270918, "decimalLat": -27.575813 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.1977, "decimalLat": -27.61276 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250146, "decimalLat": -27.511374 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440331, "decimalLat": -27.399111 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250581, "decimalLat": -27.511758 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244948, "decimalLat": -27.49085 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245019, "decimalLat": -27.491038 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24256, "decimalLat": -27.513093 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234375, "decimalLat": -27.500268 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247909, "decimalLat": -27.489747 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253853, "decimalLat": -27.511758 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223169, "decimalLat": -27.49974 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253399, "decimalLat": -27.511752 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202408, "decimalLat": -27.513746 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245652, "decimalLat": -27.490669 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247731, "decimalLat": -27.490825 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243234, "decimalLat": -27.51165 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245071, "decimalLat": -27.490055 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258102, "decimalLat": -27.547061 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221211, "decimalLat": -27.498929 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248527, "decimalLat": -27.489734 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233749, "decimalLat": -27.506273 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250146, "decimalLat": -27.511419 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245087, "decimalLat": -27.489576 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252408, "decimalLat": -27.511689 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.193176, "decimalLat": -27.507463 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199585, "decimalLat": -27.612917 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.292859, "decimalLat": -27.618035 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -27.618 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270639, "decimalLat": -27.530156 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250032, "decimalLat": -27.51147 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.526234, "decimalLat": -27.431012 }, "geometry": { "type": "Point", "coordinates": [ 153.526, -27.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270983, "decimalLat": -27.575585 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.236318, "decimalLat": -27.519633 }, "geometry": { "type": "Point", "coordinates": [ 153.236, -27.52 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242905, "decimalLat": -27.489344 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295212, "decimalLat": -27.569588 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245015, "decimalLat": -27.490374 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248619, "decimalLat": -27.51148 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.227472, "decimalLat": -27.545982 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25849, "decimalLat": -27.500044 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251678, "decimalLat": -27.509356 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278197, "decimalLat": -27.55245 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247658, "decimalLat": -27.490902 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245249, "decimalLat": -27.495993 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437721, "decimalLat": -27.403448 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.403 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202919, "decimalLat": -27.506928 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27124, "decimalLat": -27.574367 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.404862, "decimalLat": -27.496077 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.228327, "decimalLat": -27.502468 }, "geometry": { "type": "Point", "coordinates": [ 153.228, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44115, "decimalLat": -27.398842 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24726, "decimalLat": -27.511437 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202972, "decimalLat": -27.514 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.211259, "decimalLat": -27.531228 }, "geometry": { "type": "Point", "coordinates": [ 153.211, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295258, "decimalLat": -27.568876 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256072, "decimalLat": -27.512756 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247658, "decimalLat": -27.535235 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248511, "decimalLat": -27.491043 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283678, "decimalLat": -27.525619 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248035, "decimalLat": -27.490813 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24897, "decimalLat": -27.489692 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270727, "decimalLat": -27.544196 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298706, "decimalLat": -27.569592 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24541, "decimalLat": -27.49039 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251897, "decimalLat": -27.509375 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244888, "decimalLat": -27.497326 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245678, "decimalLat": -27.490871 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.52653, "decimalLat": -27.431594 }, "geometry": { "type": "Point", "coordinates": [ 153.527, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253849, "decimalLat": -27.511822 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232697, "decimalLat": -27.507208 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250221, "decimalLat": -27.511281 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403025, "decimalLat": -27.493445 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249589, "decimalLat": -27.511567 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440006, "decimalLat": -27.396692 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250319, "decimalLat": -27.511423 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248762, "decimalLat": -27.490245 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245378, "decimalLat": -27.490448 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19722, "decimalLat": -27.505108 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271148, "decimalLat": -27.575377 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239829, "decimalLat": -27.51538 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281091, "decimalLat": -27.529207 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22391, "decimalLat": -27.500311 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196332, "decimalLat": -27.488283 }, "geometry": { "type": "Point", "coordinates": [ 153.196, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251312, "decimalLat": -27.509459 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250115, "decimalLat": -27.511409 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270889, "decimalLat": -27.538078 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252148, "decimalLat": -27.549735 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249418, "decimalLat": -27.489439 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256341, "decimalLat": -27.548421 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252335, "decimalLat": -27.508713 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251801, "decimalLat": -27.509232 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271036, "decimalLat": -27.575501 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250135, "decimalLat": -27.511322 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250238, "decimalLat": -27.511373 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248591, "decimalLat": -27.489832 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246408, "decimalLat": -27.498447 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251694, "decimalLat": -27.509583 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250251, "decimalLat": -27.511286 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250425, "decimalLat": -27.511615 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20102, "decimalLat": -27.492017 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244731, "decimalLat": -27.491049 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250336, "decimalLat": -27.511333 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271197, "decimalLat": -27.575908 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244247, "decimalLat": -27.489578 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.237486, "decimalLat": -27.507128 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.220154, "decimalLat": -27.581069 }, "geometry": { "type": "Point", "coordinates": [ 153.22, -27.581 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197372, "decimalLat": -27.505335 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197891, "decimalLat": -27.61323 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255076, "decimalLat": -27.513252 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251885, "decimalLat": -27.514472 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.437274, "decimalLat": -27.405222 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -27.405 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248566, "decimalLat": -27.490807 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25552, "decimalLat": -27.494656 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271304, "decimalLat": -27.575813 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250028, "decimalLat": -27.511478 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403092, "decimalLat": -27.493336 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203979, "decimalLat": -27.511717 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245316, "decimalLat": -27.489668 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24842, "decimalLat": -27.490465 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.296875, "decimalLat": -27.567993 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24827, "decimalLat": -27.490858 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271519, "decimalLat": -27.5749 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241998, "decimalLat": -27.514534 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248473, "decimalLat": -27.490537 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250081, "decimalLat": -27.511814 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249986, "decimalLat": -27.504141 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.194672, "decimalLat": -27.514551 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242166, "decimalLat": -27.514468 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.296204, "decimalLat": -27.568653 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239802, "decimalLat": -27.515363 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439897, "decimalLat": -27.393463 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281722, "decimalLat": -27.53244 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.216763, "decimalLat": -27.500454 }, "geometry": { "type": "Point", "coordinates": [ 153.217, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250237, "decimalLat": -27.511401 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271476, "decimalLat": -27.575033 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298935, "decimalLat": -27.567944 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250172, "decimalLat": -27.511263 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271862, "decimalLat": -27.575109 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438272, "decimalLat": -27.401842 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.402 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254969, "decimalLat": -27.51209 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272275, "decimalLat": -27.574867 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248413, "decimalLat": -27.490246 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250054, "decimalLat": -27.511542 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24602, "decimalLat": -27.497511 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252615, "decimalLat": -27.50186 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250263, "decimalLat": -27.511439 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255189, "decimalLat": -27.513008 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199417, "decimalLat": -27.61363 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248346, "decimalLat": -27.490925 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258462, "decimalLat": -27.545979 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272012, "decimalLat": -27.573968 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247958, "decimalLat": -27.490862 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271194, "decimalLat": -27.54084 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233733, "decimalLat": -27.608844 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.609 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253859, "decimalLat": -27.511663 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271927, "decimalLat": -27.574957 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25255, "decimalLat": -27.50195 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256023, "decimalLat": -27.513638 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249591, "decimalLat": -27.500748 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197327, "decimalLat": -27.614538 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272336, "decimalLat": -27.575142 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199368, "decimalLat": -27.491522 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25549, "decimalLat": -27.494377 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245316, "decimalLat": -27.489981 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271927, "decimalLat": -27.576536 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249021, "decimalLat": -27.490137 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281987, "decimalLat": -27.530905 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248619, "decimalLat": -27.490254 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247192, "decimalLat": -27.490337 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24359, "decimalLat": -27.49132 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245224, "decimalLat": -27.498363 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29685, "decimalLat": -27.568064 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248492, "decimalLat": -27.490861 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248141, "decimalLat": -27.490352 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260886, "decimalLat": -27.549978 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25151, "decimalLat": -27.511656 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198502, "decimalLat": -27.612656 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24657, "decimalLat": -27.499178 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242233, "decimalLat": -27.512939 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239853, "decimalLat": -27.515373 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.404444, "decimalLat": -27.495374 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281925, "decimalLat": -27.525661 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248068, "decimalLat": -27.490951 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25016, "decimalLat": -27.511436 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246033, "decimalLat": -27.498037 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248532, "decimalLat": -27.490304 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247647, "decimalLat": -27.511522 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202271, "decimalLat": -27.513409 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281907, "decimalLat": -27.531525 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250432, "decimalLat": -27.550492 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250974, "decimalLat": -27.511635 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233643, "decimalLat": -27.505934 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058106, "decimalLat": -27.501001 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273665, "decimalLat": -27.534797 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270918, "decimalLat": -27.575604 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245286, "decimalLat": -27.495663 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271562, "decimalLat": -27.575585 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232559, "decimalLat": -27.5019 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250468, "decimalLat": -27.511721 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245087, "decimalLat": -27.48959 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201248, "decimalLat": -27.504982 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25367, "decimalLat": -27.511762 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270875, "decimalLat": -27.575623 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249982, "decimalLat": -27.511613 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20046, "decimalLat": -27.50433 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250165, "decimalLat": -27.51135 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245941, "decimalLat": -27.488955 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.226275, "decimalLat": -27.498384 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251754, "decimalLat": -27.509283 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25012, "decimalLat": -27.511813 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24976, "decimalLat": -27.490125 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243802, "decimalLat": -27.491335 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245011, "decimalLat": -27.490469 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24471, "decimalLat": -27.489635 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270767, "decimalLat": -27.5392 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248555, "decimalLat": -27.511524 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198135, "decimalLat": -27.615221 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248149, "decimalLat": -27.511526 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.294601, "decimalLat": -27.569031 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248688, "decimalLat": -27.511547 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250127, "decimalLat": -27.511342 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250403, "decimalLat": -27.511312 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252105, "decimalLat": -27.511009 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271219, "decimalLat": -27.575623 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27111, "decimalLat": -27.574659 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244965, "decimalLat": -27.49087 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245161, "decimalLat": -27.490403 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248236, "decimalLat": -27.49063 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272141, "decimalLat": -27.574557 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232193, "decimalLat": -27.507786 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.215249, "decimalLat": -27.492227 }, "geometry": { "type": "Point", "coordinates": [ 153.215, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252321, "decimalLat": -27.501177 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.217904, "decimalLat": -27.546976 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248677, "decimalLat": -27.490692 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234829, "decimalLat": -27.501293 }, "geometry": { "type": "Point", "coordinates": [ 153.235, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25074, "decimalLat": -27.503059 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25, "decimalLat": -27.5 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251408, "decimalLat": -27.511611 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247177, "decimalLat": -27.490419 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248248, "decimalLat": -27.491184 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244973, "decimalLat": -27.491069 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25603, "decimalLat": -27.51269 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256381, "decimalLat": -27.512534 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248334, "decimalLat": -27.489855 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246537, "decimalLat": -27.497936 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441554, "decimalLat": -27.392912 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270983, "decimalLat": -27.575585 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250138, "decimalLat": -27.51144 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271154, "decimalLat": -27.575528 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.194672, "decimalLat": -27.507759 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438444, "decimalLat": -27.399894 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250759, "decimalLat": -27.503023 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233307, "decimalLat": -27.504488 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272152, "decimalLat": -27.554319 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249114, "decimalLat": -27.489858 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244372, "decimalLat": -27.489875 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.236146, "decimalLat": -27.521231 }, "geometry": { "type": "Point", "coordinates": [ 153.236, -27.521 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251719, "decimalLat": -27.509298 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255676, "decimalLat": -27.547223 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272806, "decimalLat": -27.539067 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403063, "decimalLat": -27.493668 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271499, "decimalLat": -27.575697 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245271, "decimalLat": -27.495766 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256029, "decimalLat": -27.513935 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.19693, "decimalLat": -27.507341 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244697, "decimalLat": -27.491312 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250598, "decimalLat": -27.511477 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29457, "decimalLat": -27.568867 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270854, "decimalLat": -27.575508 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271905, "decimalLat": -27.576688 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249023, "decimalLat": -27.490592 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255543, "decimalLat": -27.512194 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248575, "decimalLat": -27.490089 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250295, "decimalLat": -27.511399 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251645, "decimalLat": -27.509316 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284508, "decimalLat": -27.524801 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232224, "decimalLat": -27.507425 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271626, "decimalLat": -27.574386 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248592, "decimalLat": -27.490467 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248029, "decimalLat": -27.490786 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25189, "decimalLat": -27.509328 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232727, "decimalLat": -27.50688 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247205, "decimalLat": -27.511405 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239818, "decimalLat": -27.515365 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199265, "decimalLat": -27.614119 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247965, "decimalLat": -27.490907 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242107, "decimalLat": -27.511578 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251902, "decimalLat": -27.514474 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25061, "decimalLat": -27.511675 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197835, "decimalLat": -27.612908 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.44095, "decimalLat": -27.395066 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25009, "decimalLat": -27.511267 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239858, "decimalLat": -27.515427 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247948, "decimalLat": -27.510145 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23981, "decimalLat": -27.515346 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245654, "decimalLat": -27.496922 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272957, "decimalLat": -27.576402 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242755, "decimalLat": -27.513792 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.285614, "decimalLat": -27.523592 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258204, "decimalLat": -27.546601 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253053, "decimalLat": -27.496121 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25175, "decimalLat": -27.509261 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245998, "decimalLat": -27.49825 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248709, "decimalLat": -27.490543 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248797, "decimalLat": -27.489941 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225227, "decimalLat": -27.502095 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253622, "decimalLat": -27.511715 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271111, "decimalLat": -27.575623 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271176, "decimalLat": -27.575242 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440927, "decimalLat": -27.394936 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245228, "decimalLat": -27.490268 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271857, "decimalLat": -27.544354 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439358, "decimalLat": -27.397086 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251976, "decimalLat": -27.500989 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272206, "decimalLat": -27.57431 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.238758, "decimalLat": -27.482639 }, "geometry": { "type": "Point", "coordinates": [ 153.239, -27.483 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283834, "decimalLat": -27.525616 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439075, "decimalLat": -27.397058 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254273, "decimalLat": -27.511943 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233963, "decimalLat": -27.500633 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272034, "decimalLat": -27.576821 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271304, "decimalLat": -27.575908 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248538, "decimalLat": -27.490827 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244873, "decimalLat": -27.489319 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25387, "decimalLat": -27.511726 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255901, "decimalLat": -27.513758 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271226, "decimalLat": -27.574633 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256023, "decimalLat": -27.512929 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244064, "decimalLat": -27.489384 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.39913, "decimalLat": -27.49624 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.275806, "decimalLat": -27.543904 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244869, "decimalLat": -27.491205 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27124, "decimalLat": -27.575794 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248446, "decimalLat": -27.49007 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245453, "decimalLat": -27.489592 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.275966, "decimalLat": -27.551969 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270918, "decimalLat": -27.575642 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.267899, "decimalLat": -27.530722 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271616, "decimalLat": -27.573872 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201614, "decimalLat": -27.505293 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246124, "decimalLat": -27.488363 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24987, "decimalLat": -27.511396 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198853, "decimalLat": -27.613853 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249222, "decimalLat": -27.489911 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221723, "decimalLat": -27.500998 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248677, "decimalLat": -27.490565 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251067, "decimalLat": -27.511654 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281674, "decimalLat": -27.531257 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.193381, "decimalLat": -27.568508 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249004, "decimalLat": -27.489769 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251864, "decimalLat": -27.514805 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230667, "decimalLat": -27.499739 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249496, "decimalLat": -27.511543 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.406134, "decimalLat": -27.493578 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249283, "decimalLat": -27.489868 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252035, "decimalLat": -27.511702 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.517671, "decimalLat": -27.424757 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -27.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244644, "decimalLat": -27.489765 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272055, "decimalLat": -27.574615 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247572, "decimalLat": -27.511451 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248122, "decimalLat": -27.490646 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252566, "decimalLat": -27.501252 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.222534, "decimalLat": -27.496534 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223115, "decimalLat": -27.499215 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201149, "decimalLat": -27.613285 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223341, "decimalLat": -27.506768 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24578, "decimalLat": -27.496473 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27109, "decimalLat": -27.574405 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271497, "decimalLat": -27.574101 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25001, "decimalLat": -27.511347 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242034, "decimalLat": -27.51213 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202545, "decimalLat": -27.513975 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250269, "decimalLat": -27.511374 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248752, "decimalLat": -27.490523 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27315, "decimalLat": -27.573664 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.257133, "decimalLat": -27.513312 }, "geometry": { "type": "Point", "coordinates": [ 153.257, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247742, "decimalLat": -27.490177 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255563, "decimalLat": -27.512245 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25604, "decimalLat": -27.514069 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239798, "decimalLat": -27.515366 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248682, "decimalLat": -27.490452 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.523864, "decimalLat": -27.4314 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -27.431 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249463, "decimalLat": -27.511596 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250197, "decimalLat": -27.51142 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24842, "decimalLat": -27.490753 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247118, "decimalLat": -27.511455 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.300705, "decimalLat": -27.570202 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245804, "decimalLat": -27.497417 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250152, "decimalLat": -27.511446 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250036, "decimalLat": -27.511324 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248763, "decimalLat": -27.489996 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244461, "decimalLat": -27.491486 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256375, "decimalLat": -27.513678 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25007, "decimalLat": -27.511361 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271873, "decimalLat": -27.574861 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25225, "decimalLat": -27.501294 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199127, "decimalLat": -27.613783 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232788, "decimalLat": -27.506847 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25377, "decimalLat": -27.511738 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441801, "decimalLat": -27.397093 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.297348, "decimalLat": -27.567339 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258054, "decimalLat": -27.546338 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251003, "decimalLat": -27.509208 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250292, "decimalLat": -27.502188 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.441701, "decimalLat": -27.395325 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -27.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198517, "decimalLat": -27.612688 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253611, "decimalLat": -27.511812 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199979, "decimalLat": -27.492293 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271412, "decimalLat": -27.57587 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198517, "decimalLat": -27.612635 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245887, "decimalLat": -27.496433 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247905, "decimalLat": -27.490843 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272881, "decimalLat": -27.572853 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.573 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247906, "decimalLat": -27.510106 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248121, "decimalLat": -27.505642 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201416, "decimalLat": -27.511133 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248551, "decimalLat": -27.49071 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251938, "decimalLat": -27.514497 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249308, "decimalLat": -27.489868 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233261, "decimalLat": -27.506916 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298584, "decimalLat": -27.569809 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.240804, "decimalLat": -27.51558 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27213, "decimalLat": -27.576725 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252566, "decimalLat": -27.501323 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248756, "decimalLat": -27.489884 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27154, "decimalLat": -27.574348 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250812, "decimalLat": -27.511671 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243727, "decimalLat": -27.511604 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250047, "decimalLat": -27.511358 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247309, "decimalLat": -27.511495 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204208, "decimalLat": -27.508854 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246674, "decimalLat": -27.498552 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249388, "decimalLat": -27.490269 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251897, "decimalLat": -27.509277 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250114, "decimalLat": -27.511377 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245547, "decimalLat": -27.490661 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245244, "decimalLat": -27.495724 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256197, "decimalLat": -27.548571 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254213, "decimalLat": -27.49413 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245035, "decimalLat": -27.490958 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23317, "decimalLat": -27.505762 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438745, "decimalLat": -27.400139 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271326, "decimalLat": -27.575813 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281636, "decimalLat": -27.53216 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250082, "decimalLat": -27.511426 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255906, "decimalLat": -27.513961 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230561, "decimalLat": -27.500528 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244995, "decimalLat": -27.489908 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253763, "decimalLat": -27.511717 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253759, "decimalLat": -27.511752 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20284, "decimalLat": -27.50686 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239813, "decimalLat": -27.515371 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204086, "decimalLat": -27.509441 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246002, "decimalLat": -27.488152 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438831, "decimalLat": -27.395546 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250581, "decimalLat": -27.511725 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252894, "decimalLat": -27.511766 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272377, "decimalLat": -27.573549 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439524, "decimalLat": -27.401279 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198837, "decimalLat": -27.614206 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.217872, "decimalLat": -27.547014 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248624, "decimalLat": -27.491046 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245004, "decimalLat": -27.495493 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250343, "decimalLat": -27.511298 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23949, "decimalLat": -27.614897 }, "geometry": { "type": "Point", "coordinates": [ 153.239, -27.615 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258956, "decimalLat": -27.502456 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253797, "decimalLat": -27.511763 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.304671, "decimalLat": -27.564762 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199931, "decimalLat": -27.614331 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242061, "decimalLat": -27.513099 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.232529, "decimalLat": -27.501648 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248027, "decimalLat": -27.490804 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246078, "decimalLat": -27.488783 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246275, "decimalLat": -27.498084 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248763, "decimalLat": -27.532887 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.440313, "decimalLat": -27.396252 }, "geometry": { "type": "Point", "coordinates": [ 153.44, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250028, "decimalLat": -27.511613 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245361, "decimalLat": -27.491432 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197084, "decimalLat": -27.61302 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223079, "decimalLat": -27.499515 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246343, "decimalLat": -27.496058 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.439335, "decimalLat": -27.396799 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272152, "decimalLat": -27.536693 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282333, "decimalLat": -27.526978 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.276611, "decimalLat": -27.52652 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272012, "decimalLat": -27.57644 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.540064, "decimalLat": -27.429374 }, "geometry": { "type": "Point", "coordinates": [ 153.54, -27.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271025, "decimalLat": -27.575451 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248656, "decimalLat": -27.489795 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247893, "decimalLat": -27.490843 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272978, "decimalLat": -27.574805 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248215, "decimalLat": -27.511166 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28189, "decimalLat": -27.58511 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.528642, "decimalLat": -27.430692 }, "geometry": { "type": "Point", "coordinates": [ 153.529, -27.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242286, "decimalLat": -27.512832 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250417, "decimalLat": -27.511421 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29462, "decimalLat": -27.56886 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243691, "decimalLat": -27.491379 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.269974, "decimalLat": -27.575147 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244934, "decimalLat": -27.490023 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239874, "decimalLat": -27.515362 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.269738, "decimalLat": -27.575128 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251499, "decimalLat": -27.514921 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256091, "decimalLat": -27.514446 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225418, "decimalLat": -27.502679 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.298528, "decimalLat": -27.56934 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245417, "decimalLat": -27.490384 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249031, "decimalLat": -27.511507 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.275027, "decimalLat": -27.538908 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247345, "decimalLat": -27.509909 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247709, "decimalLat": -27.511416 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245922, "decimalLat": -27.497652 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270897, "decimalLat": -27.575547 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251063, "decimalLat": -27.509414 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249042, "decimalLat": -27.489863 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250906, "decimalLat": -27.511668 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.261362, "decimalLat": -27.519105 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.224364, "decimalLat": -27.500892 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251259, "decimalLat": -27.511685 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248291, "decimalLat": -27.511168 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250893, "decimalLat": -27.511627 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242544, "decimalLat": -27.489266 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272184, "decimalLat": -27.554271 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245066, "decimalLat": -27.511477 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248066, "decimalLat": -27.490655 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250124, "decimalLat": -27.511373 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250432, "decimalLat": -27.511711 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248012, "decimalLat": -27.490575 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.202225, "decimalLat": -27.511963 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199539, "decimalLat": -27.612726 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253504, "decimalLat": -27.493754 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251712, "decimalLat": -27.509298 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248174, "decimalLat": -27.490522 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282967, "decimalLat": -27.531983 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271101, "decimalLat": -27.575774 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201843, "decimalLat": -27.510988 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.199799, "decimalLat": -27.612799 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27065, "decimalLat": -27.538909 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245421, "decimalLat": -27.490504 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248197, "decimalLat": -27.490529 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271755, "decimalLat": -27.574919 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271369, "decimalLat": -27.57587 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.227493, "decimalLat": -27.516808 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248463, "decimalLat": -27.490137 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250298, "decimalLat": -27.51127 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24559, "decimalLat": -27.49058 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248538, "decimalLat": -27.490511 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438054, "decimalLat": -27.400582 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197296, "decimalLat": -27.515013 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250964, "decimalLat": -27.511808 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248387, "decimalLat": -27.490512 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249321, "decimalLat": -27.490302 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.147819, "decimalLat": -27.528838 }, "geometry": { "type": "Point", "coordinates": [ 153.148, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367917, "decimalLat": -29.097702 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -29.098 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255961, "decimalLat": -27.513656 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.515385, "decimalLat": -31.406387 }, "geometry": { "type": "Point", "coordinates": [ 152.515, -31.406 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250177, "decimalLat": -27.511352 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.515435, "decimalLat": -31.406542 }, "geometry": { "type": "Point", "coordinates": [ 152.515, -31.407 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.612458, "decimalLat": -35.671986 }, "geometry": { "type": "Point", "coordinates": [ 137.612, -35.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.974733, "decimalLat": -38.293495 }, "geometry": { "type": "Point", "coordinates": [ 145.975, -38.293 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.943719, "decimalLat": -36.190069 }, "geometry": { "type": "Point", "coordinates": [ 146.944, -36.19 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.515445, "decimalLat": -31.406556 }, "geometry": { "type": "Point", "coordinates": [ 152.515, -31.407 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248125, "decimalLat": -27.505642 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.584698, "decimalLat": -34.774423 }, "geometry": { "type": "Point", "coordinates": [ 146.585, -34.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.258156, "decimalLat": -35.344156 }, "geometry": { "type": "Point", "coordinates": [ 149.258, -35.344 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.515429, "decimalLat": -31.406537 }, "geometry": { "type": "Point", "coordinates": [ 152.515, -31.407 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255956, "decimalLat": -27.513755 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255948, "decimalLat": -27.513577 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32893, "decimalLat": -27.89083 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.515425, "decimalLat": -31.406531 }, "geometry": { "type": "Point", "coordinates": [ 152.515, -31.407 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.693055, "decimalLat": -36.347897 }, "geometry": { "type": "Point", "coordinates": [ 146.693, -36.348 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.515447, "decimalLat": -31.406544 }, "geometry": { "type": "Point", "coordinates": [ 152.515, -31.407 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32939, "decimalLat": -27.89044 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.582685, "decimalLat": -34.767326 }, "geometry": { "type": "Point", "coordinates": [ 146.583, -34.767 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.952283, "decimalLat": -36.128619 }, "geometry": { "type": "Point", "coordinates": [ 146.952, -36.129 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255998, "decimalLat": -27.513423 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250462, "decimalLat": -27.511582 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250637, "decimalLat": -27.511432 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.727758, "decimalLat": -37.922175 }, "geometry": { "type": "Point", "coordinates": [ 147.728, -37.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.850267, "decimalLat": -19.144123 }, "geometry": { "type": "Point", "coordinates": [ 146.85, -19.144 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.515439, "decimalLat": -31.406549 }, "geometry": { "type": "Point", "coordinates": [ 152.515, -31.407 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25001, "decimalLat": -27.511477 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.01229, "decimalLat": -27.157634 }, "geometry": { "type": "Point", "coordinates": [ 153.012, -27.158 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "Australian Capital Territory", "decimalLon": 148.9, "decimalLat": -35.46 }, "geometry": { "type": "Point", "coordinates": [ 148.9, -35.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.24678, "decimalLat": -35.740311 }, "geometry": { "type": "Point", "coordinates": [ 149.247, -35.74 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.055861, "decimalLat": -34.759756 }, "geometry": { "type": "Point", "coordinates": [ 150.056, -34.76 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378037, "decimalLat": -29.450684 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.515444, "decimalLat": -31.406545 }, "geometry": { "type": "Point", "coordinates": [ 152.515, -31.407 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.515464, "decimalLat": -31.406547 }, "geometry": { "type": "Point", "coordinates": [ 152.515, -31.407 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903081, "decimalLat": -30.42415 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.646006, "decimalLat": -35.893712 }, "geometry": { "type": "Point", "coordinates": [ 145.646, -35.894 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.731339, "decimalLat": -37.923523 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.727001, "decimalLat": -37.920219 }, "geometry": { "type": "Point", "coordinates": [ 147.727, -37.92 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 145.411771, "decimalLat": -35.834042 }, "geometry": { "type": "Point", "coordinates": [ 145.412, -35.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.730679, "decimalLat": -37.923845 }, "geometry": { "type": "Point", "coordinates": [ 147.731, -37.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "Victoria", "decimalLon": 147.729917, "decimalLat": -37.924839 }, "geometry": { "type": "Point", "coordinates": [ 147.73, -37.925 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.549826, "decimalLat": -28.556631 }, "geometry": { "type": "Point", "coordinates": [ 153.55, -28.557 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.270075, "decimalLat": -35.573406 }, "geometry": { "type": "Point", "coordinates": [ 149.27, -35.573 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.288926, "decimalLat": -35.357073 }, "geometry": { "type": "Point", "coordinates": [ 149.289, -35.357 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.066092, "decimalLat": -36.819902 }, "geometry": { "type": "Point", "coordinates": [ 140.066, -36.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.31931, "decimalLat": -27.9019 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -27.902 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.644948, "decimalLat": -30.490998 }, "geometry": { "type": "Point", "coordinates": [ 151.645, -30.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.515446, "decimalLat": -31.406525 }, "geometry": { "type": "Point", "coordinates": [ 152.515, -31.407 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.869125, "decimalLat": -19.131206 }, "geometry": { "type": "Point", "coordinates": [ 146.869, -19.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250148, "decimalLat": -27.511402 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.609723, "decimalLat": -36.128428 }, "geometry": { "type": "Point", "coordinates": [ 146.61, -36.128 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.515436, "decimalLat": -31.406556 }, "geometry": { "type": "Point", "coordinates": [ 152.515, -31.407 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.949726, "decimalLat": -35.929174 }, "geometry": { "type": "Point", "coordinates": [ 144.95, -35.929 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.35694, "decimalLat": -27.93897 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.939 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.586836, "decimalLat": -34.771078 }, "geometry": { "type": "Point", "coordinates": [ 146.587, -34.771 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256025, "decimalLat": -27.512852 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.515437, "decimalLat": -31.406528 }, "geometry": { "type": "Point", "coordinates": [ 152.515, -31.407 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.865067, "decimalLat": -19.130797 }, "geometry": { "type": "Point", "coordinates": [ 146.865, -19.131 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250182, "decimalLat": -27.511338 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248121, "decimalLat": -27.505642 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367956, "decimalLat": -29.097656 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -29.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.835102, "decimalLat": -36.258999 }, "geometry": { "type": "Point", "coordinates": [ 146.835, -36.259 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.340867, "decimalLat": -33.259925 }, "geometry": { "type": "Point", "coordinates": [ 150.341, -33.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.637059, "decimalLat": -25.426213 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -25.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.637059, "decimalLat": -25.426213 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -25.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.637059, "decimalLat": -25.426213 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -25.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.637059, "decimalLat": -25.426213 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -25.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37488, "decimalLat": -27.91196 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.637059, "decimalLat": -25.426213 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -25.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.637059, "decimalLat": -25.426213 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -25.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.637059, "decimalLat": -25.426213 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -25.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36234, "decimalLat": -27.94029 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -27.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.637059, "decimalLat": -25.426213 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -25.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.637059, "decimalLat": -25.426213 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -25.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.637059, "decimalLat": -25.426213 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -25.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.637059, "decimalLat": -25.426213 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -25.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.36353, "decimalLat": -27.92957 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -27.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.637059, "decimalLat": -25.426213 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -25.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.637059, "decimalLat": -25.426213 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -25.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.87172, "decimalLat": -21.44091 }, "geometry": { "type": "Point", "coordinates": [ 148.872, -21.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.738861, "decimalLat": -21.740289 }, "geometry": { "type": "Point", "coordinates": [ 148.739, -21.74 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69175, "decimalLat": -21.69772 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.673447, "decimalLat": -21.665972 }, "geometry": { "type": "Point", "coordinates": [ 148.673, -21.666 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.934, "decimalLat": -21.88226 }, "geometry": { "type": "Point", "coordinates": [ 148.934, -21.882 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.301386, "decimalLat": -22.3614 }, "geometry": { "type": "Point", "coordinates": [ 149.301, -22.361 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.603064, "decimalLat": -21.720775 }, "geometry": { "type": "Point", "coordinates": [ 148.603, -21.721 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.50992, "decimalLat": -21.44374 }, "geometry": { "type": "Point", "coordinates": [ 148.51, -21.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75863, "decimalLat": -21.55624 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7316, "decimalLat": -21.72761 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.728 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.890556, "decimalLat": -21.22 }, "geometry": { "type": "Point", "coordinates": [ 148.891, -21.22 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686438, "decimalLat": -21.684184 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.684 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.769217, "decimalLat": -21.147226 }, "geometry": { "type": "Point", "coordinates": [ 148.769, -21.147 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.90262, "decimalLat": -21.41861 }, "geometry": { "type": "Point", "coordinates": [ 148.903, -21.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.844994, "decimalLat": -21.464029 }, "geometry": { "type": "Point", "coordinates": [ 148.845, -21.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.79285, "decimalLat": -21.50758 }, "geometry": { "type": "Point", "coordinates": [ 148.793, -21.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68821, "decimalLat": -21.68917 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.689 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.694628, "decimalLat": -21.638394 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.98936, "decimalLat": -21.68791 }, "geometry": { "type": "Point", "coordinates": [ 148.989, -21.688 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.86458, "decimalLat": -21.44865 }, "geometry": { "type": "Point", "coordinates": [ 148.865, -21.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.940744, "decimalLat": -21.362623 }, "geometry": { "type": "Point", "coordinates": [ 148.941, -21.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.684376, "decimalLat": -21.687228 }, "geometry": { "type": "Point", "coordinates": [ 148.684, -21.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.693511, "decimalLat": -21.697453 }, "geometry": { "type": "Point", "coordinates": [ 148.694, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75706, "decimalLat": -21.55978 }, "geometry": { "type": "Point", "coordinates": [ 148.757, -21.56 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.740556, "decimalLat": -21.74255 }, "geometry": { "type": "Point", "coordinates": [ 148.741, -21.743 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.687408, "decimalLat": -21.679617 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.68 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69152, "decimalLat": -21.697129 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.936182, "decimalLat": -21.341088 }, "geometry": { "type": "Point", "coordinates": [ 148.936, -21.341 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.685502, "decimalLat": -21.68536 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.901467, "decimalLat": -21.41949 }, "geometry": { "type": "Point", "coordinates": [ 148.901, -21.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.741111, "decimalLat": -21.155562 }, "geometry": { "type": "Point", "coordinates": [ 148.741, -21.156 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.665704, "decimalLat": -22.895664 }, "geometry": { "type": "Point", "coordinates": [ 149.666, -22.896 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68915, "decimalLat": -21.69213 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.692 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.882468, "decimalLat": -21.4308 }, "geometry": { "type": "Point", "coordinates": [ 148.882, -21.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.692424, "decimalLat": -21.723569 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7455, "decimalLat": -21.75 }, "geometry": { "type": "Point", "coordinates": [ 148.746, -21.75 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.15072, "decimalLat": -22.44774 }, "geometry": { "type": "Point", "coordinates": [ 149.151, -22.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.831744, "decimalLat": -21.468526 }, "geometry": { "type": "Point", "coordinates": [ 148.832, -21.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.737984, "decimalLat": -21.738697 }, "geometry": { "type": "Point", "coordinates": [ 148.738, -21.739 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67479, "decimalLat": -21.66757 }, "geometry": { "type": "Point", "coordinates": [ 148.675, -21.668 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690186, "decimalLat": -21.694967 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.695 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67147, "decimalLat": -21.63675 }, "geometry": { "type": "Point", "coordinates": [ 148.671, -21.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73836, "decimalLat": -21.73946 }, "geometry": { "type": "Point", "coordinates": [ 148.738, -21.739 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.94458, "decimalLat": -21.37118 }, "geometry": { "type": "Point", "coordinates": [ 148.945, -21.371 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.925903, "decimalLat": -21.405022 }, "geometry": { "type": "Point", "coordinates": [ 148.926, -21.405 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.849308, "decimalLat": -21.462246 }, "geometry": { "type": "Point", "coordinates": [ 148.849, -21.462 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.70249, "decimalLat": -21.68083 }, "geometry": { "type": "Point", "coordinates": [ 148.702, -21.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.829154, "decimalLat": -21.469343 }, "geometry": { "type": "Point", "coordinates": [ 148.829, -21.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67876, "decimalLat": -21.67456 }, "geometry": { "type": "Point", "coordinates": [ 148.679, -21.675 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.86668, "decimalLat": -21.44628 }, "geometry": { "type": "Point", "coordinates": [ 148.867, -21.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.732544, "decimalLat": -21.729384 }, "geometry": { "type": "Point", "coordinates": [ 148.733, -21.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.694084, "decimalLat": -21.649771 }, "geometry": { "type": "Point", "coordinates": [ 148.694, -21.65 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.742661, "decimalLat": -21.747203 }, "geometry": { "type": "Point", "coordinates": [ 148.743, -21.747 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73036, "decimalLat": -21.60575 }, "geometry": { "type": "Point", "coordinates": [ 148.73, -21.606 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690111, "decimalLat": -21.69499 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.695 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73195, "decimalLat": -21.72854 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.729 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.091178, "decimalLat": -21.361563 }, "geometry": { "type": "Point", "coordinates": [ 149.091, -21.362 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.643788, "decimalLat": -21.706344 }, "geometry": { "type": "Point", "coordinates": [ 148.644, -21.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.685829, "decimalLat": -21.682643 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.683 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.668639, "decimalLat": -21.695761 }, "geometry": { "type": "Point", "coordinates": [ 148.669, -21.696 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.77317, "decimalLat": -21.897515 }, "geometry": { "type": "Point", "coordinates": [ 148.773, -21.898 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69184, "decimalLat": -21.66979 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.67 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.885792, "decimalLat": -21.430022 }, "geometry": { "type": "Point", "coordinates": [ 148.886, -21.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.692185, "decimalLat": -21.724463 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.748752, "decimalLat": -21.571997 }, "geometry": { "type": "Point", "coordinates": [ 148.749, -21.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688994, "decimalLat": -21.695235 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.695 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68404, "decimalLat": -21.68353 }, "geometry": { "type": "Point", "coordinates": [ 148.684, -21.684 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.63443, "decimalLat": -21.7096 }, "geometry": { "type": "Point", "coordinates": [ 148.634, -21.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.017171, "decimalLat": -21.172369 }, "geometry": { "type": "Point", "coordinates": [ 149.017, -21.172 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690111, "decimalLat": -21.694886 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.695 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.00687, "decimalLat": -21.6387 }, "geometry": { "type": "Point", "coordinates": [ 149.007, -21.639 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.82925, "decimalLat": -21.46944 }, "geometry": { "type": "Point", "coordinates": [ 148.829, -21.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7739, "decimalLat": -21.775214 }, "geometry": { "type": "Point", "coordinates": [ 148.774, -21.775 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75039, "decimalLat": -21.75774 }, "geometry": { "type": "Point", "coordinates": [ 148.75, -21.758 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6715, "decimalLat": -21.63979 }, "geometry": { "type": "Point", "coordinates": [ 148.672, -21.64 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.84554, "decimalLat": -21.46367 }, "geometry": { "type": "Point", "coordinates": [ 148.846, -21.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69499, "decimalLat": -21.70466 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.705 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.70218, "decimalLat": -21.71248 }, "geometry": { "type": "Point", "coordinates": [ 148.702, -21.712 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.33594, "decimalLat": -22.57595 }, "geometry": { "type": "Point", "coordinates": [ 148.336, -22.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73867, "decimalLat": -21.73948 }, "geometry": { "type": "Point", "coordinates": [ 148.739, -21.739 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.883286, "decimalLat": -21.43007 }, "geometry": { "type": "Point", "coordinates": [ 148.883, -21.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6918, "decimalLat": -21.69772 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.889339, "decimalLat": -21.427998 }, "geometry": { "type": "Point", "coordinates": [ 148.889, -21.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75185, "decimalLat": -21.7603 }, "geometry": { "type": "Point", "coordinates": [ 148.752, -21.76 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.293631, "decimalLat": -21.2984 }, "geometry": { "type": "Point", "coordinates": [ 149.294, -21.298 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68766, "decimalLat": -21.6932 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.77104, "decimalLat": -21.53076 }, "geometry": { "type": "Point", "coordinates": [ 148.771, -21.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.792198, "decimalLat": -21.770102 }, "geometry": { "type": "Point", "coordinates": [ 148.792, -21.77 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.689298, "decimalLat": -21.696903 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6826, "decimalLat": -21.67999 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.68 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.9099, "decimalLat": -21.41156 }, "geometry": { "type": "Point", "coordinates": [ 148.91, -21.412 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690415, "decimalLat": -21.697514 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69828, "decimalLat": -21.70488 }, "geometry": { "type": "Point", "coordinates": [ 148.698, -21.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691583, "decimalLat": -21.697828 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.904036, "decimalLat": -21.417731 }, "geometry": { "type": "Point", "coordinates": [ 148.904, -21.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.78842, "decimalLat": -21.5092 }, "geometry": { "type": "Point", "coordinates": [ 148.788, -21.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.71306, "decimalLat": -21.61781 }, "geometry": { "type": "Point", "coordinates": [ 148.713, -21.618 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7304, "decimalLat": -21.72609 }, "geometry": { "type": "Point", "coordinates": [ 148.73, -21.726 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.92198, "decimalLat": -21.4071 }, "geometry": { "type": "Point", "coordinates": [ 148.922, -21.407 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.9074, "decimalLat": -21.41372 }, "geometry": { "type": "Point", "coordinates": [ 148.907, -21.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.144743, "decimalLat": -21.450521 }, "geometry": { "type": "Point", "coordinates": [ 149.145, -21.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.63974, "decimalLat": -21.707798 }, "geometry": { "type": "Point", "coordinates": [ 148.64, -21.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73474, "decimalLat": -21.73278 }, "geometry": { "type": "Point", "coordinates": [ 148.735, -21.733 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72893, "decimalLat": -21.72371 }, "geometry": { "type": "Point", "coordinates": [ 148.729, -21.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690744, "decimalLat": -21.696708 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.056837, "decimalLat": -21.17818 }, "geometry": { "type": "Point", "coordinates": [ 149.057, -21.178 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67777, "decimalLat": -21.67299 }, "geometry": { "type": "Point", "coordinates": [ 148.678, -21.673 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.125886, "decimalLat": -21.467275 }, "geometry": { "type": "Point", "coordinates": [ 149.126, -21.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.973206, "decimalLat": -21.726675 }, "geometry": { "type": "Point", "coordinates": [ 148.973, -21.727 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.062157, "decimalLat": -21.333656 }, "geometry": { "type": "Point", "coordinates": [ 149.062, -21.334 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686515, "decimalLat": -21.684673 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.746506, "decimalLat": -21.751697 }, "geometry": { "type": "Point", "coordinates": [ 148.747, -21.752 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.858889, "decimalLat": -21.455278 }, "geometry": { "type": "Point", "coordinates": [ 148.859, -21.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69208, "decimalLat": -21.67353 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.674 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.759155, "decimalLat": -21.555189 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68949, "decimalLat": -21.6928 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.689787, "decimalLat": -21.684834 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.87216, "decimalLat": -21.44043 }, "geometry": { "type": "Point", "coordinates": [ 148.872, -21.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.787456, "decimalLat": -21.771028 }, "geometry": { "type": "Point", "coordinates": [ 148.787, -21.771 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.93709, "decimalLat": -21.39485 }, "geometry": { "type": "Point", "coordinates": [ 148.937, -21.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.758852, "decimalLat": -21.555824 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.067277, "decimalLat": -21.189402 }, "geometry": { "type": "Point", "coordinates": [ 149.067, -21.189 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.526547, "decimalLat": -22.533783 }, "geometry": { "type": "Point", "coordinates": [ 149.527, -22.534 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72174, "decimalLat": -21.7121 }, "geometry": { "type": "Point", "coordinates": [ 148.722, -21.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.116347, "decimalLat": -21.512169 }, "geometry": { "type": "Point", "coordinates": [ 149.116, -21.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73903, "decimalLat": -21.59844 }, "geometry": { "type": "Point", "coordinates": [ 148.739, -21.598 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6938, "decimalLat": -21.65952 }, "geometry": { "type": "Point", "coordinates": [ 148.694, -21.66 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.754058, "decimalLat": -21.76495 }, "geometry": { "type": "Point", "coordinates": [ 148.754, -21.765 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.689275, "decimalLat": -21.698164 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.92476, "decimalLat": -21.40588 }, "geometry": { "type": "Point", "coordinates": [ 148.925, -21.406 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.49357, "decimalLat": -21.54635 }, "geometry": { "type": "Point", "coordinates": [ 148.494, -21.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68274, "decimalLat": -21.68833 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.688 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.71492, "decimalLat": -21.70834 }, "geometry": { "type": "Point", "coordinates": [ 148.715, -21.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.875278, "decimalLat": -21.437361 }, "geometry": { "type": "Point", "coordinates": [ 148.875, -21.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67252, "decimalLat": -21.81843 }, "geometry": { "type": "Point", "coordinates": [ 148.673, -21.818 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.93766, "decimalLat": -21.39404 }, "geometry": { "type": "Point", "coordinates": [ 148.938, -21.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690519, "decimalLat": -21.697395 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74938, "decimalLat": -21.75605 }, "geometry": { "type": "Point", "coordinates": [ 148.749, -21.756 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7974, "decimalLat": -21.5038 }, "geometry": { "type": "Point", "coordinates": [ 148.797, -21.504 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.89982, "decimalLat": -21.42063 }, "geometry": { "type": "Point", "coordinates": [ 148.9, -21.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67614, "decimalLat": -21.67025 }, "geometry": { "type": "Point", "coordinates": [ 148.676, -21.67 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.911986, "decimalLat": -21.410577 }, "geometry": { "type": "Point", "coordinates": [ 148.912, -21.411 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.723, "decimalLat": -21.71469 }, "geometry": { "type": "Point", "coordinates": [ 148.723, -21.715 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.749585, "decimalLat": -21.570879 }, "geometry": { "type": "Point", "coordinates": [ 148.75, -21.571 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.698411, "decimalLat": -21.624775 }, "geometry": { "type": "Point", "coordinates": [ 148.698, -21.625 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.143666, "decimalLat": -23.865867 }, "geometry": { "type": "Point", "coordinates": [ 148.144, -23.866 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 150.091944, "decimalLat": -22.565278 }, "geometry": { "type": "Point", "coordinates": [ 150.092, -22.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.961502, "decimalLat": -21.415226 }, "geometry": { "type": "Point", "coordinates": [ 148.962, -21.415 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.06183, "decimalLat": -22.186 }, "geometry": { "type": "Point", "coordinates": [ 149.062, -22.186 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6996, "decimalLat": -21.623692 }, "geometry": { "type": "Point", "coordinates": [ 148.7, -21.624 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.009915, "decimalLat": -21.657006 }, "geometry": { "type": "Point", "coordinates": [ 149.01, -21.657 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.0628, "decimalLat": -21.324594 }, "geometry": { "type": "Point", "coordinates": [ 149.063, -21.325 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69154, "decimalLat": -21.69757 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.693444, "decimalLat": -21.697463 }, "geometry": { "type": "Point", "coordinates": [ 148.693, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.701837, "decimalLat": -21.714942 }, "geometry": { "type": "Point", "coordinates": [ 148.702, -21.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6825, "decimalLat": -21.67999 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.088378, "decimalLat": -21.363971 }, "geometry": { "type": "Point", "coordinates": [ 149.088, -21.364 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.249474, "decimalLat": -22.409976 }, "geometry": { "type": "Point", "coordinates": [ 149.249, -22.41 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68225, "decimalLat": -21.80913 }, "geometry": { "type": "Point", "coordinates": [ 148.682, -21.809 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69046, "decimalLat": -21.69743 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.662342, "decimalLat": -21.698894 }, "geometry": { "type": "Point", "coordinates": [ 148.662, -21.699 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72844, "decimalLat": -21.60703 }, "geometry": { "type": "Point", "coordinates": [ 148.728, -21.607 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75244, "decimalLat": -21.76158 }, "geometry": { "type": "Point", "coordinates": [ 148.752, -21.762 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.71103, "decimalLat": -21.70782 }, "geometry": { "type": "Point", "coordinates": [ 148.711, -21.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69239, "decimalLat": -21.67559 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.676 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.941075, "decimalLat": -21.35417 }, "geometry": { "type": "Point", "coordinates": [ 148.941, -21.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.733114, "decimalLat": -21.730259 }, "geometry": { "type": "Point", "coordinates": [ 148.733, -21.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.693509, "decimalLat": -21.632385 }, "geometry": { "type": "Point", "coordinates": [ 148.694, -21.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74045, "decimalLat": -21.74305 }, "geometry": { "type": "Point", "coordinates": [ 148.74, -21.743 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69337, "decimalLat": -21.68106 }, "geometry": { "type": "Point", "coordinates": [ 148.693, -21.681 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.881961, "decimalLat": -21.431334 }, "geometry": { "type": "Point", "coordinates": [ 148.882, -21.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69249, "decimalLat": -21.6783 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.678 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67603, "decimalLat": -21.67004 }, "geometry": { "type": "Point", "coordinates": [ 148.676, -21.67 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.718112, "decimalLat": -21.616379 }, "geometry": { "type": "Point", "coordinates": [ 148.718, -21.616 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.936667, "decimalLat": -21.395575 }, "geometry": { "type": "Point", "coordinates": [ 148.937, -21.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68919, "decimalLat": -21.69209 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.692 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.258318, "decimalLat": -22.637773 }, "geometry": { "type": "Point", "coordinates": [ 149.258, -22.638 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.86249, "decimalLat": -21.45211 }, "geometry": { "type": "Point", "coordinates": [ 148.862, -21.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.93438, "decimalLat": -21.314 }, "geometry": { "type": "Point", "coordinates": [ 148.934, -21.314 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.88019, "decimalLat": -21.432206 }, "geometry": { "type": "Point", "coordinates": [ 148.88, -21.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.733651, "decimalLat": -21.731006 }, "geometry": { "type": "Point", "coordinates": [ 148.734, -21.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690602, "decimalLat": -21.696513 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.782618, "decimalLat": -21.514766 }, "geometry": { "type": "Point", "coordinates": [ 148.783, -21.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73719, "decimalLat": -21.73737 }, "geometry": { "type": "Point", "coordinates": [ 148.737, -21.737 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.673874, "decimalLat": -21.692681 }, "geometry": { "type": "Point", "coordinates": [ 148.674, -21.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.87499, "decimalLat": -21.4374 }, "geometry": { "type": "Point", "coordinates": [ 148.875, -21.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.056564, "decimalLat": -21.1819 }, "geometry": { "type": "Point", "coordinates": [ 149.057, -21.182 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.6325, "decimalLat": -22.8947 }, "geometry": { "type": "Point", "coordinates": [ 149.633, -22.895 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.863912, "decimalLat": -21.449879 }, "geometry": { "type": "Point", "coordinates": [ 148.864, -21.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69951, "decimalLat": -21.70493 }, "geometry": { "type": "Point", "coordinates": [ 148.7, -21.705 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72574, "decimalLat": -21.71887 }, "geometry": { "type": "Point", "coordinates": [ 148.726, -21.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690601, "decimalLat": -21.69674 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.87216, "decimalLat": -21.44043 }, "geometry": { "type": "Point", "coordinates": [ 148.872, -21.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 147.515653, "decimalLat": -22.547064 }, "geometry": { "type": "Point", "coordinates": [ 147.516, -22.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.92998, "decimalLat": -21.40202 }, "geometry": { "type": "Point", "coordinates": [ 148.93, -21.402 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67117, "decimalLat": -21.6359 }, "geometry": { "type": "Point", "coordinates": [ 148.671, -21.636 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74777, "decimalLat": -21.57482 }, "geometry": { "type": "Point", "coordinates": [ 148.748, -21.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7023, "decimalLat": -21.70552 }, "geometry": { "type": "Point", "coordinates": [ 148.702, -21.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.71667, "decimalLat": -21.61609 }, "geometry": { "type": "Point", "coordinates": [ 148.717, -21.616 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68976, "decimalLat": -21.69347 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.77158, "decimalLat": -21.5302 }, "geometry": { "type": "Point", "coordinates": [ 148.772, -21.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.718432, "decimalLat": -21.614753 }, "geometry": { "type": "Point", "coordinates": [ 148.718, -21.615 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.93396, "decimalLat": -21.39862 }, "geometry": { "type": "Point", "coordinates": [ 148.934, -21.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688568, "decimalLat": -21.691213 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.691 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.803, "decimalLat": -21.49723 }, "geometry": { "type": "Point", "coordinates": [ 148.803, -21.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.9003, "decimalLat": -21.42022 }, "geometry": { "type": "Point", "coordinates": [ 148.9, -21.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.92697, "decimalLat": -21.40432 }, "geometry": { "type": "Point", "coordinates": [ 148.927, -21.404 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.81361, "decimalLat": -21.478953 }, "geometry": { "type": "Point", "coordinates": [ 148.814, -21.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.794811, "decimalLat": -21.506748 }, "geometry": { "type": "Point", "coordinates": [ 148.795, -21.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.85728, "decimalLat": -21.45656 }, "geometry": { "type": "Point", "coordinates": [ 148.857, -21.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73146, "decimalLat": -21.60516 }, "geometry": { "type": "Point", "coordinates": [ 148.731, -21.605 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69936, "decimalLat": -21.69989 }, "geometry": { "type": "Point", "coordinates": [ 148.699, -21.7 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69247, "decimalLat": -21.67896 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.679 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74493, "decimalLat": -21.58468 }, "geometry": { "type": "Point", "coordinates": [ 148.745, -21.585 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.682983, "decimalLat": -21.681347 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.681 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72308, "decimalLat": -21.71498 }, "geometry": { "type": "Point", "coordinates": [ 148.723, -21.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.553872, "decimalLat": -22.638613 }, "geometry": { "type": "Point", "coordinates": [ 149.554, -22.639 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.88178, "decimalLat": -21.43135 }, "geometry": { "type": "Point", "coordinates": [ 148.882, -21.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68076, "decimalLat": -21.67852 }, "geometry": { "type": "Point", "coordinates": [ 148.681, -21.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73152, "decimalLat": -21.72792 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.728 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68766, "decimalLat": -21.68906 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.689 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.93736, "decimalLat": -21.394482 }, "geometry": { "type": "Point", "coordinates": [ 148.937, -21.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.70232, "decimalLat": -21.71106 }, "geometry": { "type": "Point", "coordinates": [ 148.702, -21.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.327759, "decimalLat": -22.435194 }, "geometry": { "type": "Point", "coordinates": [ 148.328, -22.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.71443, "decimalLat": -21.61675 }, "geometry": { "type": "Point", "coordinates": [ 148.714, -21.617 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.88919, "decimalLat": -21.42809 }, "geometry": { "type": "Point", "coordinates": [ 148.889, -21.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688053, "decimalLat": -21.68978 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.69 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73683, "decimalLat": -21.73662 }, "geometry": { "type": "Point", "coordinates": [ 148.737, -21.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.932, "decimalLat": -21.40051 }, "geometry": { "type": "Point", "coordinates": [ 148.932, -21.401 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.9202, "decimalLat": -21.40784 }, "geometry": { "type": "Point", "coordinates": [ 148.92, -21.408 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.882521, "decimalLat": -21.43117 }, "geometry": { "type": "Point", "coordinates": [ 148.883, -21.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.90554, "decimalLat": -21.41626 }, "geometry": { "type": "Point", "coordinates": [ 148.906, -21.416 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.936447, "decimalLat": -21.318725 }, "geometry": { "type": "Point", "coordinates": [ 148.936, -21.319 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68974, "decimalLat": -21.69377 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.694 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.745836, "decimalLat": -21.750361 }, "geometry": { "type": "Point", "coordinates": [ 148.746, -21.75 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.911972, "decimalLat": -21.410667 }, "geometry": { "type": "Point", "coordinates": [ 148.912, -21.411 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69031, "decimalLat": -21.69795 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69545, "decimalLat": -21.7442 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.744 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.740556, "decimalLat": -21.74255 }, "geometry": { "type": "Point", "coordinates": [ 148.741, -21.743 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.245439, "decimalLat": -22.40987 }, "geometry": { "type": "Point", "coordinates": [ 149.245, -22.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72897, "decimalLat": -21.72377 }, "geometry": { "type": "Point", "coordinates": [ 148.729, -21.724 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68145, "decimalLat": -21.6791 }, "geometry": { "type": "Point", "coordinates": [ 148.681, -21.679 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75121, "decimalLat": -21.22156 }, "geometry": { "type": "Point", "coordinates": [ 148.751, -21.222 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.743428, "decimalLat": -21.747955 }, "geometry": { "type": "Point", "coordinates": [ 148.743, -21.748 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.744567, "decimalLat": -21.750061 }, "geometry": { "type": "Point", "coordinates": [ 148.745, -21.75 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.599752, "decimalLat": -21.721923 }, "geometry": { "type": "Point", "coordinates": [ 148.6, -21.722 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.782809, "decimalLat": -21.515067 }, "geometry": { "type": "Point", "coordinates": [ 148.783, -21.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68217, "decimalLat": -21.67868 }, "geometry": { "type": "Point", "coordinates": [ 148.682, -21.679 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.677769, "decimalLat": -21.20251 }, "geometry": { "type": "Point", "coordinates": [ 148.678, -21.203 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72659, "decimalLat": -21.72012 }, "geometry": { "type": "Point", "coordinates": [ 148.727, -21.72 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.941237, "decimalLat": -21.36664 }, "geometry": { "type": "Point", "coordinates": [ 148.941, -21.367 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691368, "decimalLat": -21.697032 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.737092, "decimalLat": -21.736881 }, "geometry": { "type": "Point", "coordinates": [ 148.737, -21.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73475, "decimalLat": -21.73285 }, "geometry": { "type": "Point", "coordinates": [ 148.735, -21.733 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.84544, "decimalLat": -21.46378 }, "geometry": { "type": "Point", "coordinates": [ 148.845, -21.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69184, "decimalLat": -21.67004 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.67 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.47122, "decimalLat": -20.06635 }, "geometry": { "type": "Point", "coordinates": [ 148.471, -20.066 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.84752, "decimalLat": -21.46306 }, "geometry": { "type": "Point", "coordinates": [ 148.848, -21.463 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68076, "decimalLat": -21.67846 }, "geometry": { "type": "Point", "coordinates": [ 148.681, -21.678 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.835328, "decimalLat": -21.467733 }, "geometry": { "type": "Point", "coordinates": [ 148.835, -21.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.733034, "decimalLat": -21.73011 }, "geometry": { "type": "Point", "coordinates": [ 148.733, -21.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.59979, "decimalLat": -21.7219 }, "geometry": { "type": "Point", "coordinates": [ 148.6, -21.722 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68945, "decimalLat": -21.6925 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.692 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.81278, "decimalLat": -21.47959 }, "geometry": { "type": "Point", "coordinates": [ 148.813, -21.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72428, "decimalLat": -21.61054 }, "geometry": { "type": "Point", "coordinates": [ 148.724, -21.611 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.700619, "decimalLat": -21.722666 }, "geometry": { "type": "Point", "coordinates": [ 148.701, -21.723 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.062276, "decimalLat": -21.160681 }, "geometry": { "type": "Point", "coordinates": [ 149.062, -21.161 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.687714, "decimalLat": -21.680672 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691697, "decimalLat": -21.697164 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.026866, "decimalLat": -21.621734 }, "geometry": { "type": "Point", "coordinates": [ 149.027, -21.622 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68732, "decimalLat": -21.69161 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.692 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75521, "decimalLat": -21.76771 }, "geometry": { "type": "Point", "coordinates": [ 148.755, -21.768 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688005, "decimalLat": -21.690036 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73075, "decimalLat": -21.72642 }, "geometry": { "type": "Point", "coordinates": [ 148.731, -21.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7337, "decimalLat": -21.73079 }, "geometry": { "type": "Point", "coordinates": [ 148.734, -21.731 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.736029, "decimalLat": -22.734856 }, "geometry": { "type": "Point", "coordinates": [ 149.736, -22.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.877629, "decimalLat": -21.434703 }, "geometry": { "type": "Point", "coordinates": [ 148.878, -21.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.104602, "decimalLat": -21.551562 }, "geometry": { "type": "Point", "coordinates": [ 149.105, -21.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75727, "decimalLat": -21.5595 }, "geometry": { "type": "Point", "coordinates": [ 148.757, -21.559 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.84775, "decimalLat": -21.4628 }, "geometry": { "type": "Point", "coordinates": [ 148.848, -21.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.687868, "decimalLat": -21.634602 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.635 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73042, "decimalLat": -21.72599 }, "geometry": { "type": "Point", "coordinates": [ 148.73, -21.726 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.713636, "decimalLat": -21.152027 }, "geometry": { "type": "Point", "coordinates": [ 148.714, -21.152 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.89621, "decimalLat": -21.42303 }, "geometry": { "type": "Point", "coordinates": [ 148.896, -21.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68433, "decimalLat": -21.68533 }, "geometry": { "type": "Point", "coordinates": [ 148.684, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.77609, "decimalLat": -21.52355 }, "geometry": { "type": "Point", "coordinates": [ 148.776, -21.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.674303, "decimalLat": -21.634153 }, "geometry": { "type": "Point", "coordinates": [ 148.674, -21.634 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.78046, "decimalLat": -21.51907 }, "geometry": { "type": "Point", "coordinates": [ 148.78, -21.519 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.759185, "decimalLat": -21.551779 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68787, "decimalLat": -21.693033 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.076107, "decimalLat": -21.362195 }, "geometry": { "type": "Point", "coordinates": [ 149.076, -21.362 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.836267, "decimalLat": -21.531283 }, "geometry": { "type": "Point", "coordinates": [ 148.836, -21.531 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.91199, "decimalLat": -21.41058 }, "geometry": { "type": "Point", "coordinates": [ 148.912, -21.411 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.61576, "decimalLat": -21.8451 }, "geometry": { "type": "Point", "coordinates": [ 148.616, -21.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75808, "decimalLat": -21.77337 }, "geometry": { "type": "Point", "coordinates": [ 148.758, -21.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.819045, "decimalLat": -21.4728 }, "geometry": { "type": "Point", "coordinates": [ 148.819, -21.473 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.737442, "decimalLat": -21.737981 }, "geometry": { "type": "Point", "coordinates": [ 148.737, -21.738 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68478, "decimalLat": -21.68564 }, "geometry": { "type": "Point", "coordinates": [ 148.685, -21.686 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 147.63591, "decimalLat": -22.82075 }, "geometry": { "type": "Point", "coordinates": [ 147.636, -22.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68887, "decimalLat": -21.69124 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.691 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.762007, "decimalLat": -21.777511 }, "geometry": { "type": "Point", "coordinates": [ 148.762, -21.778 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68476, "decimalLat": -21.68604 }, "geometry": { "type": "Point", "coordinates": [ 148.685, -21.686 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68594, "decimalLat": -21.68293 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.683 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74504, "decimalLat": -21.75045 }, "geometry": { "type": "Point", "coordinates": [ 148.745, -21.75 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.722132, "decimalLat": -22.807321 }, "geometry": { "type": "Point", "coordinates": [ 148.722, -22.807 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.725631, "decimalLat": -21.718825 }, "geometry": { "type": "Point", "coordinates": [ 148.726, -21.719 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.535348, "decimalLat": -22.604407 }, "geometry": { "type": "Point", "coordinates": [ 149.535, -22.604 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.602047, "decimalLat": -21.721097 }, "geometry": { "type": "Point", "coordinates": [ 148.602, -21.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.227195, "decimalLat": -21.363446 }, "geometry": { "type": "Point", "coordinates": [ 149.227, -21.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.699886, "decimalLat": -21.700858 }, "geometry": { "type": "Point", "coordinates": [ 148.7, -21.701 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.684405, "decimalLat": -21.687154 }, "geometry": { "type": "Point", "coordinates": [ 148.684, -21.687 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.768852, "decimalLat": -21.533096 }, "geometry": { "type": "Point", "coordinates": [ 148.769, -21.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.692244, "decimalLat": -21.697797 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686841, "decimalLat": -21.685744 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.686 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75474, "decimalLat": -21.56307 }, "geometry": { "type": "Point", "coordinates": [ 148.755, -21.563 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.88577, "decimalLat": -21.4301 }, "geometry": { "type": "Point", "coordinates": [ 148.886, -21.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.720536, "decimalLat": -21.709889 }, "geometry": { "type": "Point", "coordinates": [ 148.721, -21.71 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.692397, "decimalLat": -21.676397 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.676 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.89004, "decimalLat": -21.42747 }, "geometry": { "type": "Point", "coordinates": [ 148.89, -21.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.70223, "decimalLat": -21.70548 }, "geometry": { "type": "Point", "coordinates": [ 148.702, -21.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.651736, "decimalLat": -21.703682 }, "geometry": { "type": "Point", "coordinates": [ 148.652, -21.704 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72794, "decimalLat": -21.72246 }, "geometry": { "type": "Point", "coordinates": [ 148.728, -21.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688985, "decimalLat": -21.698923 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.699 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.685565, "decimalLat": -21.760852 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.761 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.753661, "decimalLat": -21.764044 }, "geometry": { "type": "Point", "coordinates": [ 148.754, -21.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.341315, "decimalLat": -22.586391 }, "geometry": { "type": "Point", "coordinates": [ 148.341, -22.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.695833, "decimalLat": -21.695278 }, "geometry": { "type": "Point", "coordinates": [ 148.696, -21.695 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691745, "decimalLat": -21.697975 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.871872, "decimalLat": -21.440858 }, "geometry": { "type": "Point", "coordinates": [ 148.872, -21.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.9481, "decimalLat": -21.37743 }, "geometry": { "type": "Point", "coordinates": [ 148.948, -21.377 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691695, "decimalLat": -21.697718 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686338, "decimalLat": -21.69 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74277, "decimalLat": -21.74653 }, "geometry": { "type": "Point", "coordinates": [ 148.743, -21.747 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.70842, "decimalLat": -21.70692 }, "geometry": { "type": "Point", "coordinates": [ 148.708, -21.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74245, "decimalLat": -21.74722 }, "geometry": { "type": "Point", "coordinates": [ 148.742, -21.747 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.81729, "decimalLat": -21.47682 }, "geometry": { "type": "Point", "coordinates": [ 148.817, -21.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.863147, "decimalLat": -21.451114 }, "geometry": { "type": "Point", "coordinates": [ 148.863, -21.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.510622, "decimalLat": -22.165481 }, "geometry": { "type": "Point", "coordinates": [ 149.511, -22.165 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.93218, "decimalLat": -21.40031 }, "geometry": { "type": "Point", "coordinates": [ 148.932, -21.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.530278, "decimalLat": -22.5625 }, "geometry": { "type": "Point", "coordinates": [ 149.53, -22.562 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.91844, "decimalLat": -21.40827 }, "geometry": { "type": "Point", "coordinates": [ 148.918, -21.408 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.44215, "decimalLat": -22.85089 }, "geometry": { "type": "Point", "coordinates": [ 149.442, -22.851 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68801, "decimalLat": -21.68051 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.681 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.88713, "decimalLat": -21.42947 }, "geometry": { "type": "Point", "coordinates": [ 148.887, -21.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.616049, "decimalLat": -21.58386 }, "geometry": { "type": "Point", "coordinates": [ 148.616, -21.584 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.79181, "decimalLat": -21.50804 }, "geometry": { "type": "Point", "coordinates": [ 148.792, -21.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.368565, "decimalLat": -21.852232 }, "geometry": { "type": "Point", "coordinates": [ 149.369, -21.852 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.93745, "decimalLat": -21.334237 }, "geometry": { "type": "Point", "coordinates": [ 148.937, -21.334 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75953, "decimalLat": -21.77515 }, "geometry": { "type": "Point", "coordinates": [ 148.76, -21.775 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.80568, "decimalLat": -21.49117 }, "geometry": { "type": "Point", "coordinates": [ 148.806, -21.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74352, "decimalLat": -21.74776 }, "geometry": { "type": "Point", "coordinates": [ 148.744, -21.748 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68184, "decimalLat": -21.78891 }, "geometry": { "type": "Point", "coordinates": [ 148.682, -21.789 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.651679, "decimalLat": -21.703823 }, "geometry": { "type": "Point", "coordinates": [ 148.652, -21.704 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.682157, "decimalLat": -21.808491 }, "geometry": { "type": "Point", "coordinates": [ 148.682, -21.808 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.881905, "decimalLat": -21.43124 }, "geometry": { "type": "Point", "coordinates": [ 148.882, -21.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.698063, "decimalLat": -21.62519 }, "geometry": { "type": "Point", "coordinates": [ 148.698, -21.625 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691636, "decimalLat": -21.697797 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.687028, "decimalLat": -21.680406 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.68 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74269, "decimalLat": -21.74687 }, "geometry": { "type": "Point", "coordinates": [ 148.743, -21.747 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75985, "decimalLat": -21.54505 }, "geometry": { "type": "Point", "coordinates": [ 148.76, -21.545 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.799167, "decimalLat": -22.780196 }, "geometry": { "type": "Point", "coordinates": [ 149.799, -22.78 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75001, "decimalLat": -21.56979 }, "geometry": { "type": "Point", "coordinates": [ 148.75, -21.57 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.71082, "decimalLat": -21.70792 }, "geometry": { "type": "Point", "coordinates": [ 148.711, -21.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.090309, "decimalLat": -21.360294 }, "geometry": { "type": "Point", "coordinates": [ 149.09, -21.36 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.712356, "decimalLat": -21.618123 }, "geometry": { "type": "Point", "coordinates": [ 148.712, -21.618 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.974164, "decimalLat": -21.447943 }, "geometry": { "type": "Point", "coordinates": [ 148.974, -21.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.695354, "decimalLat": -21.710836 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72261, "decimalLat": -21.71373 }, "geometry": { "type": "Point", "coordinates": [ 148.723, -21.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.933006, "decimalLat": -21.687282 }, "geometry": { "type": "Point", "coordinates": [ 148.933, -21.687 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7597, "decimalLat": -21.54729 }, "geometry": { "type": "Point", "coordinates": [ 148.76, -21.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68293, "decimalLat": -21.68136 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.681 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.988519, "decimalLat": -21.702653 }, "geometry": { "type": "Point", "coordinates": [ 148.989, -21.703 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.71302, "decimalLat": -21.61771 }, "geometry": { "type": "Point", "coordinates": [ 148.713, -21.618 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.695354, "decimalLat": -21.710836 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.530293, "decimalLat": -22.561213 }, "geometry": { "type": "Point", "coordinates": [ 149.53, -22.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.906003, "decimalLat": -21.415588 }, "geometry": { "type": "Point", "coordinates": [ 148.906, -21.416 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.05709, "decimalLat": -21.178407 }, "geometry": { "type": "Point", "coordinates": [ 149.057, -21.178 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.62658, "decimalLat": -21.59233 }, "geometry": { "type": "Point", "coordinates": [ 148.627, -21.592 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75859, "decimalLat": -21.55608 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.556 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.93503, "decimalLat": -21.39747 }, "geometry": { "type": "Point", "coordinates": [ 148.935, -21.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.675066, "decimalLat": -21.660628 }, "geometry": { "type": "Point", "coordinates": [ 148.675, -21.661 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7466, "decimalLat": -21.57897 }, "geometry": { "type": "Point", "coordinates": [ 148.747, -21.579 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73468, "decimalLat": -21.73287 }, "geometry": { "type": "Point", "coordinates": [ 148.735, -21.733 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.703292, "decimalLat": -21.68554 }, "geometry": { "type": "Point", "coordinates": [ 148.703, -21.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6879, "decimalLat": -21.694289 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.694 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69144, "decimalLat": -21.697067 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.76759, "decimalLat": -21.5341 }, "geometry": { "type": "Point", "coordinates": [ 148.768, -21.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69228, "decimalLat": -21.67633 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.676 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.945586, "decimalLat": -21.372089 }, "geometry": { "type": "Point", "coordinates": [ 148.946, -21.372 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.88675, "decimalLat": -21.429697 }, "geometry": { "type": "Point", "coordinates": [ 148.887, -21.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.692313, "decimalLat": -21.656102 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.717797, "decimalLat": -21.616221 }, "geometry": { "type": "Point", "coordinates": [ 148.718, -21.616 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.907913, "decimalLat": -21.413252 }, "geometry": { "type": "Point", "coordinates": [ 148.908, -21.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68957, "decimalLat": -21.69312 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75246, "decimalLat": -21.7615 }, "geometry": { "type": "Point", "coordinates": [ 148.752, -21.761 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.974103, "decimalLat": -21.447659 }, "geometry": { "type": "Point", "coordinates": [ 148.974, -21.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686489, "decimalLat": -21.684673 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.71498, "decimalLat": -21.61681 }, "geometry": { "type": "Point", "coordinates": [ 148.715, -21.617 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69176, "decimalLat": -21.66656 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.826742, "decimalLat": -21.470191 }, "geometry": { "type": "Point", "coordinates": [ 148.827, -21.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7391, "decimalLat": -21.59834 }, "geometry": { "type": "Point", "coordinates": [ 148.739, -21.598 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.599835, "decimalLat": -21.721877 }, "geometry": { "type": "Point", "coordinates": [ 148.6, -21.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.64235, "decimalLat": -21.70694 }, "geometry": { "type": "Point", "coordinates": [ 148.642, -21.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.882223, "decimalLat": -21.431224 }, "geometry": { "type": "Point", "coordinates": [ 148.882, -21.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74652, "decimalLat": -21.75169 }, "geometry": { "type": "Point", "coordinates": [ 148.747, -21.752 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68932, "decimalLat": -21.6925 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75808, "decimalLat": -21.77337 }, "geometry": { "type": "Point", "coordinates": [ 148.758, -21.773 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.869169, "decimalLat": -21.443495 }, "geometry": { "type": "Point", "coordinates": [ 148.869, -21.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68453, "decimalLat": -21.68615 }, "geometry": { "type": "Point", "coordinates": [ 148.685, -21.686 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75727, "decimalLat": -21.5595 }, "geometry": { "type": "Point", "coordinates": [ 148.757, -21.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.76039, "decimalLat": -21.77691 }, "geometry": { "type": "Point", "coordinates": [ 148.76, -21.777 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.683134, "decimalLat": -21.681808 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.682 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.79089, "decimalLat": -21.50819 }, "geometry": { "type": "Point", "coordinates": [ 148.791, -21.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.933215, "decimalLat": -21.305585 }, "geometry": { "type": "Point", "coordinates": [ 148.933, -21.306 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.875551, "decimalLat": -21.436691 }, "geometry": { "type": "Point", "coordinates": [ 148.876, -21.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.167364, "decimalLat": -21.458241 }, "geometry": { "type": "Point", "coordinates": [ 149.167, -21.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.8822, "decimalLat": -21.43136 }, "geometry": { "type": "Point", "coordinates": [ 148.882, -21.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67886, "decimalLat": -21.67457 }, "geometry": { "type": "Point", "coordinates": [ 148.679, -21.675 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.697739, "decimalLat": -21.682005 }, "geometry": { "type": "Point", "coordinates": [ 148.698, -21.682 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.70596, "decimalLat": -21.7059 }, "geometry": { "type": "Point", "coordinates": [ 148.706, -21.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69265, "decimalLat": -21.69712 }, "geometry": { "type": "Point", "coordinates": [ 148.693, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.716597, "decimalLat": -21.616042 }, "geometry": { "type": "Point", "coordinates": [ 148.717, -21.616 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.056491, "decimalLat": -21.178253 }, "geometry": { "type": "Point", "coordinates": [ 149.056, -21.178 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.611948, "decimalLat": -21.717728 }, "geometry": { "type": "Point", "coordinates": [ 148.612, -21.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686028, "decimalLat": -21.688059 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.688 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.064368, "decimalLat": -21.269948 }, "geometry": { "type": "Point", "coordinates": [ 149.064, -21.27 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686465, "decimalLat": -21.690178 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.69 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.700714, "decimalLat": -21.686044 }, "geometry": { "type": "Point", "coordinates": [ 148.701, -21.686 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69137, "decimalLat": -21.698201 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.683173, "decimalLat": -21.784282 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.784 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.678728, "decimalLat": -21.674606 }, "geometry": { "type": "Point", "coordinates": [ 148.679, -21.675 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691046, "decimalLat": -21.697693 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.373567, "decimalLat": -21.758552 }, "geometry": { "type": "Point", "coordinates": [ 149.374, -21.759 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 147.650233, "decimalLat": -22.52195 }, "geometry": { "type": "Point", "coordinates": [ 147.65, -22.522 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.679214, "decimalLat": -21.675269 }, "geometry": { "type": "Point", "coordinates": [ 148.679, -21.675 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691907, "decimalLat": -21.698128 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67601, "decimalLat": -21.67031 }, "geometry": { "type": "Point", "coordinates": [ 148.676, -21.67 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.11656, "decimalLat": -22.3922 }, "geometry": { "type": "Point", "coordinates": [ 149.117, -22.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.726591, "decimalLat": -21.720116 }, "geometry": { "type": "Point", "coordinates": [ 148.727, -21.72 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.26649, "decimalLat": -22.38548 }, "geometry": { "type": "Point", "coordinates": [ 148.266, -22.385 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74045, "decimalLat": -21.74301 }, "geometry": { "type": "Point", "coordinates": [ 148.74, -21.743 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.879832, "decimalLat": -21.774331 }, "geometry": { "type": "Point", "coordinates": [ 148.88, -21.774 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.14588, "decimalLat": -21.165825 }, "geometry": { "type": "Point", "coordinates": [ 149.146, -21.166 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.055608, "decimalLat": -22.234589 }, "geometry": { "type": "Point", "coordinates": [ 149.056, -22.235 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.86192, "decimalLat": -21.45277 }, "geometry": { "type": "Point", "coordinates": [ 148.862, -21.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691599, "decimalLat": -21.697095 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.70396, "decimalLat": -21.80351 }, "geometry": { "type": "Point", "coordinates": [ 148.704, -21.804 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.812754, "decimalLat": -21.479418 }, "geometry": { "type": "Point", "coordinates": [ 148.813, -21.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691721, "decimalLat": -21.697728 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6904, "decimalLat": -21.6956 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.696 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68952, "decimalLat": -21.69203 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.692 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.327837, "decimalLat": -22.580988 }, "geometry": { "type": "Point", "coordinates": [ 148.328, -22.581 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.759353, "decimalLat": -21.773932 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.774 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.91116, "decimalLat": -21.41089 }, "geometry": { "type": "Point", "coordinates": [ 148.911, -21.411 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.175107, "decimalLat": -22.424425 }, "geometry": { "type": "Point", "coordinates": [ 149.175, -22.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.946647, "decimalLat": -21.381199 }, "geometry": { "type": "Point", "coordinates": [ 148.947, -21.381 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73359, "decimalLat": -21.73074 }, "geometry": { "type": "Point", "coordinates": [ 148.734, -21.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.54461, "decimalLat": -21.55364 }, "geometry": { "type": "Point", "coordinates": [ 148.545, -21.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68834, "decimalLat": -21.68926 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.689 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.564854, "decimalLat": -21.724162 }, "geometry": { "type": "Point", "coordinates": [ 148.565, -21.724 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.747441, "decimalLat": -21.576017 }, "geometry": { "type": "Point", "coordinates": [ 148.747, -21.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.71423, "decimalLat": -21.61695 }, "geometry": { "type": "Point", "coordinates": [ 148.714, -21.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.96076, "decimalLat": -21.281867 }, "geometry": { "type": "Point", "coordinates": [ 148.961, -21.282 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75953, "decimalLat": -21.77515 }, "geometry": { "type": "Point", "coordinates": [ 148.76, -21.775 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.80205, "decimalLat": -21.49866 }, "geometry": { "type": "Point", "coordinates": [ 148.802, -21.499 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.466148, "decimalLat": -21.871336 }, "geometry": { "type": "Point", "coordinates": [ 148.466, -21.871 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.737247, "decimalLat": -21.737515 }, "geometry": { "type": "Point", "coordinates": [ 148.737, -21.738 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.858978, "decimalLat": -21.455289 }, "geometry": { "type": "Point", "coordinates": [ 148.859, -21.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.743435, "decimalLat": -21.747497 }, "geometry": { "type": "Point", "coordinates": [ 148.743, -21.747 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.739806, "decimalLat": -21.739853 }, "geometry": { "type": "Point", "coordinates": [ 148.74, -21.74 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.865096, "decimalLat": -21.447765 }, "geometry": { "type": "Point", "coordinates": [ 148.865, -21.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7474, "decimalLat": -21.7532 }, "geometry": { "type": "Point", "coordinates": [ 148.747, -21.753 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7591, "decimalLat": -21.77424 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.774 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.937628, "decimalLat": -21.338755 }, "geometry": { "type": "Point", "coordinates": [ 148.938, -21.339 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.732988, "decimalLat": -21.730106 }, "geometry": { "type": "Point", "coordinates": [ 148.733, -21.73 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7761, "decimalLat": -21.52359 }, "geometry": { "type": "Point", "coordinates": [ 148.776, -21.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.936436, "decimalLat": -21.34256 }, "geometry": { "type": "Point", "coordinates": [ 148.936, -21.343 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.938898, "decimalLat": -21.357021 }, "geometry": { "type": "Point", "coordinates": [ 148.939, -21.357 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.938389, "decimalLat": -21.356564 }, "geometry": { "type": "Point", "coordinates": [ 148.938, -21.357 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.940781, "decimalLat": -21.35195 }, "geometry": { "type": "Point", "coordinates": [ 148.941, -21.352 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.739303, "decimalLat": -21.740489 }, "geometry": { "type": "Point", "coordinates": [ 148.739, -21.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691831, "decimalLat": -21.698091 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67865, "decimalLat": -21.67417 }, "geometry": { "type": "Point", "coordinates": [ 148.679, -21.674 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.687555, "decimalLat": -21.688334 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.688 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69109, "decimalLat": -21.68908 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.689 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75486, "decimalLat": -21.767622 }, "geometry": { "type": "Point", "coordinates": [ 148.755, -21.768 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.87686, "decimalLat": -21.43567 }, "geometry": { "type": "Point", "coordinates": [ 148.877, -21.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75934, "decimalLat": -21.55078 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688282, "decimalLat": -21.690448 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.69 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.812164, "decimalLat": -21.480144 }, "geometry": { "type": "Point", "coordinates": [ 148.812, -21.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.787456, "decimalLat": -21.771028 }, "geometry": { "type": "Point", "coordinates": [ 148.787, -21.771 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.94454, "decimalLat": -21.38407 }, "geometry": { "type": "Point", "coordinates": [ 148.945, -21.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.83165, "decimalLat": -21.77151 }, "geometry": { "type": "Point", "coordinates": [ 148.832, -21.772 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74036, "decimalLat": -21.74309 }, "geometry": { "type": "Point", "coordinates": [ 148.74, -21.743 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.70355, "decimalLat": -21.62181 }, "geometry": { "type": "Point", "coordinates": [ 148.704, -21.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.353545, "decimalLat": -22.589626 }, "geometry": { "type": "Point", "coordinates": [ 148.354, -22.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691382, "decimalLat": -21.698159 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.763792, "decimalLat": -21.539313 }, "geometry": { "type": "Point", "coordinates": [ 148.764, -21.539 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.043281, "decimalLat": -21.596687 }, "geometry": { "type": "Point", "coordinates": [ 149.043, -21.597 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.854104, "decimalLat": -21.459385 }, "geometry": { "type": "Point", "coordinates": [ 148.854, -21.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.12908, "decimalLat": -22.41166 }, "geometry": { "type": "Point", "coordinates": [ 149.129, -22.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.689425, "decimalLat": -21.684923 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68479, "decimalLat": -21.68488 }, "geometry": { "type": "Point", "coordinates": [ 148.685, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.85466, "decimalLat": -21.45876 }, "geometry": { "type": "Point", "coordinates": [ 148.855, -21.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68931, "decimalLat": -21.69249 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72897, "decimalLat": -21.72377 }, "geometry": { "type": "Point", "coordinates": [ 148.729, -21.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.717884, "decimalLat": -21.61706 }, "geometry": { "type": "Point", "coordinates": [ 148.718, -21.617 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6915, "decimalLat": -21.67805 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.678 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.94145, "decimalLat": -21.28781 }, "geometry": { "type": "Point", "coordinates": [ 148.941, -21.288 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.782547, "decimalLat": -21.515128 }, "geometry": { "type": "Point", "coordinates": [ 148.783, -21.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.79341, "decimalLat": -21.50745 }, "geometry": { "type": "Point", "coordinates": [ 148.793, -21.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69176, "decimalLat": -21.697822 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75929, "decimalLat": -21.77431 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.88575, "decimalLat": -21.77809 }, "geometry": { "type": "Point", "coordinates": [ 148.886, -21.778 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.937373, "decimalLat": -21.354758 }, "geometry": { "type": "Point", "coordinates": [ 148.937, -21.355 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72669, "decimalLat": -21.72042 }, "geometry": { "type": "Point", "coordinates": [ 148.727, -21.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.683083, "decimalLat": -21.681344 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73522, "decimalLat": -21.73367 }, "geometry": { "type": "Point", "coordinates": [ 148.735, -21.734 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68437, "decimalLat": -21.68563 }, "geometry": { "type": "Point", "coordinates": [ 148.684, -21.686 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.770626, "decimalLat": -21.531044 }, "geometry": { "type": "Point", "coordinates": [ 148.771, -21.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69235, "decimalLat": -21.67732 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.677 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688113, "decimalLat": -21.690171 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68912, "decimalLat": -21.69223 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.692 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75138, "decimalLat": -21.56732 }, "geometry": { "type": "Point", "coordinates": [ 148.751, -21.567 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69155, "decimalLat": -21.697643 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.212278, "decimalLat": -22.418731 }, "geometry": { "type": "Point", "coordinates": [ 149.212, -22.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68759, "decimalLat": -21.692541 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.693 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691341, "decimalLat": -21.697204 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67739, "decimalLat": -21.67301 }, "geometry": { "type": "Point", "coordinates": [ 148.677, -21.673 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.973483, "decimalLat": -21.444472 }, "geometry": { "type": "Point", "coordinates": [ 148.973, -21.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73154, "decimalLat": -21.72795 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.728 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.89531, "decimalLat": -21.42362 }, "geometry": { "type": "Point", "coordinates": [ 148.895, -21.424 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74774, "decimalLat": -21.57496 }, "geometry": { "type": "Point", "coordinates": [ 148.748, -21.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.89904, "decimalLat": -21.42103 }, "geometry": { "type": "Point", "coordinates": [ 148.899, -21.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.87636, "decimalLat": -21.43606 }, "geometry": { "type": "Point", "coordinates": [ 148.876, -21.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69175, "decimalLat": -21.69781 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74837, "decimalLat": -21.57298 }, "geometry": { "type": "Point", "coordinates": [ 148.748, -21.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68715, "decimalLat": -21.68644 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.057037, "decimalLat": -21.17843 }, "geometry": { "type": "Point", "coordinates": [ 149.057, -21.178 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.674626, "decimalLat": -21.648764 }, "geometry": { "type": "Point", "coordinates": [ 148.675, -21.649 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.94463, "decimalLat": -21.38387 }, "geometry": { "type": "Point", "coordinates": [ 148.945, -21.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.651582, "decimalLat": -21.703721 }, "geometry": { "type": "Point", "coordinates": [ 148.652, -21.704 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.710847, "decimalLat": -21.618978 }, "geometry": { "type": "Point", "coordinates": [ 148.711, -21.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.860991, "decimalLat": -21.453069 }, "geometry": { "type": "Point", "coordinates": [ 148.861, -21.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69382, "decimalLat": -21.63328 }, "geometry": { "type": "Point", "coordinates": [ 148.694, -21.633 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.80396, "decimalLat": -21.49497 }, "geometry": { "type": "Point", "coordinates": [ 148.804, -21.495 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.870042, "decimalLat": -21.442715 }, "geometry": { "type": "Point", "coordinates": [ 148.87, -21.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68973, "decimalLat": -21.69331 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69017, "decimalLat": -21.69491 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.695 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.76458, "decimalLat": -21.53818 }, "geometry": { "type": "Point", "coordinates": [ 148.765, -21.538 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.678654, "decimalLat": -21.674544 }, "geometry": { "type": "Point", "coordinates": [ 148.679, -21.675 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.86282, "decimalLat": -21.45147 }, "geometry": { "type": "Point", "coordinates": [ 148.863, -21.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.526917, "decimalLat": -22.537311 }, "geometry": { "type": "Point", "coordinates": [ 149.527, -22.537 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688457, "decimalLat": -21.69474 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.695 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73523, "decimalLat": -21.73367 }, "geometry": { "type": "Point", "coordinates": [ 148.735, -21.734 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69422, "decimalLat": -21.63668 }, "geometry": { "type": "Point", "coordinates": [ 148.694, -21.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.459224, "decimalLat": -22.758225 }, "geometry": { "type": "Point", "coordinates": [ 148.459, -22.758 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.756464, "decimalLat": -21.561116 }, "geometry": { "type": "Point", "coordinates": [ 148.756, -21.561 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72298, "decimalLat": -21.71419 }, "geometry": { "type": "Point", "coordinates": [ 148.723, -21.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6904, "decimalLat": -21.6956 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.696 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73381, "decimalLat": -21.73105 }, "geometry": { "type": "Point", "coordinates": [ 148.734, -21.731 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.81209, "decimalLat": -21.48034 }, "geometry": { "type": "Point", "coordinates": [ 148.812, -21.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.966944, "decimalLat": -21.738603 }, "geometry": { "type": "Point", "coordinates": [ 148.967, -21.739 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.108288, "decimalLat": -22.366413 }, "geometry": { "type": "Point", "coordinates": [ 149.108, -22.366 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69163, "decimalLat": -21.69774 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.736464, "decimalLat": -21.737431 }, "geometry": { "type": "Point", "coordinates": [ 148.736, -21.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.026566, "decimalLat": -22.034144 }, "geometry": { "type": "Point", "coordinates": [ 148.027, -22.034 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.694962, "decimalLat": -21.704463 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.704 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.701877, "decimalLat": -21.715426 }, "geometry": { "type": "Point", "coordinates": [ 148.702, -21.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6882, "decimalLat": -21.68753 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.688 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67445, "decimalLat": -21.66701 }, "geometry": { "type": "Point", "coordinates": [ 148.674, -21.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69626, "decimalLat": -21.743317 }, "geometry": { "type": "Point", "coordinates": [ 148.696, -21.743 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.859939, "decimalLat": -21.454619 }, "geometry": { "type": "Point", "coordinates": [ 148.86, -21.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74844, "decimalLat": -21.572711 }, "geometry": { "type": "Point", "coordinates": [ 148.748, -21.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.939194, "decimalLat": -21.326473 }, "geometry": { "type": "Point", "coordinates": [ 148.939, -21.326 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.66299, "decimalLat": -21.69873 }, "geometry": { "type": "Point", "coordinates": [ 148.663, -21.699 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7258, "decimalLat": -21.71918 }, "geometry": { "type": "Point", "coordinates": [ 148.726, -21.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75949, "decimalLat": -21.55324 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.553 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73236, "decimalLat": -21.60462 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.605 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7309, "decimalLat": -21.72667 }, "geometry": { "type": "Point", "coordinates": [ 148.731, -21.727 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.935237, "decimalLat": -21.705964 }, "geometry": { "type": "Point", "coordinates": [ 148.935, -21.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.78611, "decimalLat": -21.51029 }, "geometry": { "type": "Point", "coordinates": [ 148.786, -21.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.05624, "decimalLat": -21.179618 }, "geometry": { "type": "Point", "coordinates": [ 149.056, -21.18 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68018, "decimalLat": -21.678184 }, "geometry": { "type": "Point", "coordinates": [ 148.68, -21.678 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.00592, "decimalLat": -21.64938 }, "geometry": { "type": "Point", "coordinates": [ 149.006, -21.649 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69455, "decimalLat": -21.64159 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.642 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74418, "decimalLat": -21.74823 }, "geometry": { "type": "Point", "coordinates": [ 148.744, -21.748 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.83164, "decimalLat": -21.46865 }, "geometry": { "type": "Point", "coordinates": [ 148.832, -21.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75909, "decimalLat": -21.553103 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.839157, "decimalLat": -21.466606 }, "geometry": { "type": "Point", "coordinates": [ 148.839, -21.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72201, "decimalLat": -21.61261 }, "geometry": { "type": "Point", "coordinates": [ 148.722, -21.613 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72312, "decimalLat": -21.71487 }, "geometry": { "type": "Point", "coordinates": [ 148.723, -21.715 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.89395, "decimalLat": -21.4245 }, "geometry": { "type": "Point", "coordinates": [ 148.894, -21.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68831, "decimalLat": -21.68718 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.687 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.970373, "decimalLat": -21.432603 }, "geometry": { "type": "Point", "coordinates": [ 148.97, -21.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.091532, "decimalLat": -21.361613 }, "geometry": { "type": "Point", "coordinates": [ 149.092, -21.362 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69199, "decimalLat": -21.669144 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.669 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69168, "decimalLat": -21.69774 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.159823, "decimalLat": -22.665371 }, "geometry": { "type": "Point", "coordinates": [ 149.16, -22.665 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.782421, "decimalLat": -21.515527 }, "geometry": { "type": "Point", "coordinates": [ 148.782, -21.516 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68926, "decimalLat": -21.6924 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.692 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690247, "decimalLat": -21.695156 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.695 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.855301, "decimalLat": -21.458096 }, "geometry": { "type": "Point", "coordinates": [ 148.855, -21.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.729984, "decimalLat": -21.679408 }, "geometry": { "type": "Point", "coordinates": [ 148.73, -21.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.689113, "decimalLat": -21.685027 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.783316, "decimalLat": -21.514127 }, "geometry": { "type": "Point", "coordinates": [ 148.783, -21.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.680664, "decimalLat": -21.678078 }, "geometry": { "type": "Point", "coordinates": [ 148.681, -21.678 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6787, "decimalLat": -21.815845 }, "geometry": { "type": "Point", "coordinates": [ 148.679, -21.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.018252, "decimalLat": -21.530443 }, "geometry": { "type": "Point", "coordinates": [ 149.018, -21.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688289, "decimalLat": -21.690446 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686488, "decimalLat": -21.684703 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.695784, "decimalLat": -21.627398 }, "geometry": { "type": "Point", "coordinates": [ 148.696, -21.627 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67793, "decimalLat": -21.67288 }, "geometry": { "type": "Point", "coordinates": [ 148.678, -21.673 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.083612, "decimalLat": -21.16151 }, "geometry": { "type": "Point", "coordinates": [ 149.084, -21.162 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.682542, "decimalLat": -21.680137 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.04067, "decimalLat": -21.182093 }, "geometry": { "type": "Point", "coordinates": [ 149.041, -21.182 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.682472, "decimalLat": -21.680011 }, "geometry": { "type": "Point", "coordinates": [ 148.682, -21.68 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68448, "decimalLat": -21.77074 }, "geometry": { "type": "Point", "coordinates": [ 148.684, -21.771 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691617, "decimalLat": -21.663871 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.664 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73535, "decimalLat": -21.73303 }, "geometry": { "type": "Point", "coordinates": [ 148.735, -21.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.683304, "decimalLat": -21.683426 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.683 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69044, "decimalLat": -21.696825 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.030917, "decimalLat": -21.642676 }, "geometry": { "type": "Point", "coordinates": [ 149.031, -21.643 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.939853, "decimalLat": -21.345555 }, "geometry": { "type": "Point", "coordinates": [ 148.94, -21.346 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.64163, "decimalLat": -22.621537 }, "geometry": { "type": "Point", "coordinates": [ 149.642, -22.622 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.899796, "decimalLat": -21.778604 }, "geometry": { "type": "Point", "coordinates": [ 148.9, -21.779 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67495, "decimalLat": -21.64997 }, "geometry": { "type": "Point", "coordinates": [ 148.675, -21.65 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74904, "decimalLat": -21.86236 }, "geometry": { "type": "Point", "coordinates": [ 148.749, -21.862 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.849136, "decimalLat": -21.461376 }, "geometry": { "type": "Point", "coordinates": [ 148.849, -21.461 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.896314, "decimalLat": -23.445319 }, "geometry": { "type": "Point", "coordinates": [ 148.896, -23.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.684083, "decimalLat": -21.683811 }, "geometry": { "type": "Point", "coordinates": [ 148.684, -21.684 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67448, "decimalLat": -21.66703 }, "geometry": { "type": "Point", "coordinates": [ 148.674, -21.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.682128, "decimalLat": -21.678283 }, "geometry": { "type": "Point", "coordinates": [ 148.682, -21.678 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74669, "decimalLat": -21.57849 }, "geometry": { "type": "Point", "coordinates": [ 148.747, -21.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.610727, "decimalLat": -21.717995 }, "geometry": { "type": "Point", "coordinates": [ 148.611, -21.718 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.4643, "decimalLat": -21.55205 }, "geometry": { "type": "Point", "coordinates": [ 148.464, -21.552 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.86655, "decimalLat": -21.44624 }, "geometry": { "type": "Point", "coordinates": [ 148.867, -21.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.772484, "decimalLat": -21.529286 }, "geometry": { "type": "Point", "coordinates": [ 148.772, -21.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686356, "decimalLat": -21.684947 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.9012, "decimalLat": -21.419434 }, "geometry": { "type": "Point", "coordinates": [ 148.901, -21.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.724263, "decimalLat": -21.610724 }, "geometry": { "type": "Point", "coordinates": [ 148.724, -21.611 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69539, "decimalLat": -21.68258 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.683 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.747724, "decimalLat": -21.57463 }, "geometry": { "type": "Point", "coordinates": [ 148.748, -21.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73957, "decimalLat": -21.73947 }, "geometry": { "type": "Point", "coordinates": [ 148.74, -21.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.27063, "decimalLat": -22.392986 }, "geometry": { "type": "Point", "coordinates": [ 148.271, -22.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690923, "decimalLat": -21.697837 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.81828, "decimalLat": -21.47352 }, "geometry": { "type": "Point", "coordinates": [ 148.818, -21.474 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.522609, "decimalLat": -21.329078 }, "geometry": { "type": "Point", "coordinates": [ 148.523, -21.329 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690464, "decimalLat": -21.697394 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67179, "decimalLat": -21.63764 }, "geometry": { "type": "Point", "coordinates": [ 148.672, -21.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.76358, "decimalLat": -21.53964 }, "geometry": { "type": "Point", "coordinates": [ 148.764, -21.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.933416, "decimalLat": -21.399287 }, "geometry": { "type": "Point", "coordinates": [ 148.933, -21.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.744567, "decimalLat": -21.750061 }, "geometry": { "type": "Point", "coordinates": [ 148.745, -21.75 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.63443, "decimalLat": -21.7096 }, "geometry": { "type": "Point", "coordinates": [ 148.634, -21.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.86874, "decimalLat": -21.44406 }, "geometry": { "type": "Point", "coordinates": [ 148.869, -21.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68303, "decimalLat": -21.68159 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.682 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.71118, "decimalLat": -21.68242 }, "geometry": { "type": "Point", "coordinates": [ 148.711, -21.682 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6934, "decimalLat": -21.697494 }, "geometry": { "type": "Point", "coordinates": [ 148.693, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.937179, "decimalLat": -21.356074 }, "geometry": { "type": "Point", "coordinates": [ 148.937, -21.356 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68199, "decimalLat": -21.801786 }, "geometry": { "type": "Point", "coordinates": [ 148.682, -21.802 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691894, "decimalLat": -21.698022 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69038, "decimalLat": -21.69677 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72424, "decimalLat": -21.6105 }, "geometry": { "type": "Point", "coordinates": [ 148.724, -21.61 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.894034, "decimalLat": -21.777781 }, "geometry": { "type": "Point", "coordinates": [ 148.894, -21.778 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72896, "decimalLat": -21.72372 }, "geometry": { "type": "Point", "coordinates": [ 148.729, -21.724 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69177, "decimalLat": -21.66288 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.663 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.209504, "decimalLat": -21.420197 }, "geometry": { "type": "Point", "coordinates": [ 149.21, -21.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69818, "decimalLat": -21.80599 }, "geometry": { "type": "Point", "coordinates": [ 148.698, -21.806 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691756, "decimalLat": -21.678761 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.683875, "decimalLat": -21.63138 }, "geometry": { "type": "Point", "coordinates": [ 148.684, -21.631 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69109, "decimalLat": -21.68908 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.689 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.17143, "decimalLat": -21.459151 }, "geometry": { "type": "Point", "coordinates": [ 149.171, -21.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690564, "decimalLat": -21.697701 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.915318, "decimalLat": -21.409322 }, "geometry": { "type": "Point", "coordinates": [ 148.915, -21.409 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.279073, "decimalLat": -22.358264 }, "geometry": { "type": "Point", "coordinates": [ 149.279, -22.358 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.50867, "decimalLat": -21.43765 }, "geometry": { "type": "Point", "coordinates": [ 148.509, -21.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68233, "decimalLat": -21.78663 }, "geometry": { "type": "Point", "coordinates": [ 148.682, -21.787 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.70414, "decimalLat": -21.70529 }, "geometry": { "type": "Point", "coordinates": [ 148.704, -21.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.684435, "decimalLat": -21.687172 }, "geometry": { "type": "Point", "coordinates": [ 148.684, -21.687 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68283, "decimalLat": -21.7844 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.784 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.65208, "decimalLat": -21.70363 }, "geometry": { "type": "Point", "coordinates": [ 148.652, -21.704 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686877, "decimalLat": -21.749724 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.75 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.645374, "decimalLat": -21.609637 }, "geometry": { "type": "Point", "coordinates": [ 148.645, -21.61 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.949417, "decimalLat": -21.751991 }, "geometry": { "type": "Point", "coordinates": [ 148.949, -21.752 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.192994, "decimalLat": -22.294447 }, "geometry": { "type": "Point", "coordinates": [ 148.193, -22.294 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.62248, "decimalLat": -21.5883 }, "geometry": { "type": "Point", "coordinates": [ 148.622, -21.588 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73063, "decimalLat": -21.60566 }, "geometry": { "type": "Point", "coordinates": [ 148.731, -21.606 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67499, "decimalLat": -21.64998 }, "geometry": { "type": "Point", "coordinates": [ 148.675, -21.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691452, "decimalLat": -21.697051 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.696454, "decimalLat": -21.712261 }, "geometry": { "type": "Point", "coordinates": [ 148.696, -21.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.671326, "decimalLat": -21.641255 }, "geometry": { "type": "Point", "coordinates": [ 148.671, -21.641 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688291, "decimalLat": -21.690458 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.69 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.63391, "decimalLat": -21.60069 }, "geometry": { "type": "Point", "coordinates": [ 148.634, -21.601 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.57369, "decimalLat": -21.86266 }, "geometry": { "type": "Point", "coordinates": [ 148.574, -21.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690508, "decimalLat": -21.695765 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.696 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75497, "decimalLat": -21.76724 }, "geometry": { "type": "Point", "coordinates": [ 148.755, -21.767 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69168, "decimalLat": -21.69774 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75775, "decimalLat": -21.55827 }, "geometry": { "type": "Point", "coordinates": [ 148.758, -21.558 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.709519, "decimalLat": -21.619686 }, "geometry": { "type": "Point", "coordinates": [ 148.71, -21.62 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.791329, "decimalLat": -21.508061 }, "geometry": { "type": "Point", "coordinates": [ 148.791, -21.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69148, "decimalLat": -21.69558 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.696 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.758894, "decimalLat": -21.555921 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69498, "decimalLat": -21.70477 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.705 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.329092, "decimalLat": -22.759334 }, "geometry": { "type": "Point", "coordinates": [ 149.329, -22.759 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.65502, "decimalLat": -21.82756 }, "geometry": { "type": "Point", "coordinates": [ 148.655, -21.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.524696, "decimalLat": -22.349527 }, "geometry": { "type": "Point", "coordinates": [ 149.525, -22.35 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.792492, "decimalLat": -21.507754 }, "geometry": { "type": "Point", "coordinates": [ 148.792, -21.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.687871, "decimalLat": -21.689553 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69507, "decimalLat": -21.7114 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.10553, "decimalLat": -21.550828 }, "geometry": { "type": "Point", "coordinates": [ 149.106, -21.551 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69702, "decimalLat": -21.6963 }, "geometry": { "type": "Point", "coordinates": [ 148.697, -21.696 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690104, "decimalLat": -21.69492 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.695 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.671418, "decimalLat": -21.640738 }, "geometry": { "type": "Point", "coordinates": [ 148.671, -21.641 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 147.562074, "decimalLat": -22.164267 }, "geometry": { "type": "Point", "coordinates": [ 147.562, -22.164 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.018244, "decimalLat": -21.198867 }, "geometry": { "type": "Point", "coordinates": [ 149.018, -21.199 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67495, "decimalLat": -21.64997 }, "geometry": { "type": "Point", "coordinates": [ 148.675, -21.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.255055, "decimalLat": -22.407849 }, "geometry": { "type": "Point", "coordinates": [ 149.255, -22.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.689959, "decimalLat": -21.683856 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.684 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72811, "decimalLat": -21.72179 }, "geometry": { "type": "Point", "coordinates": [ 148.728, -21.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.613698, "decimalLat": -21.716984 }, "geometry": { "type": "Point", "coordinates": [ 148.614, -21.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690137, "decimalLat": -21.69497 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.695 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.974334, "decimalLat": -21.455638 }, "geometry": { "type": "Point", "coordinates": [ 148.974, -21.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.632783, "decimalLat": -21.59937 }, "geometry": { "type": "Point", "coordinates": [ 148.633, -21.599 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68636, "decimalLat": -21.68493 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73324, "decimalLat": -21.73033 }, "geometry": { "type": "Point", "coordinates": [ 148.733, -21.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74516, "decimalLat": -21.74929 }, "geometry": { "type": "Point", "coordinates": [ 148.745, -21.749 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.820557, "decimalLat": -21.471807 }, "geometry": { "type": "Point", "coordinates": [ 148.821, -21.472 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68656, "decimalLat": -21.68104 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.681 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.59747, "decimalLat": -22.672315 }, "geometry": { "type": "Point", "coordinates": [ 149.597, -22.672 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.434554, "decimalLat": -21.743929 }, "geometry": { "type": "Point", "coordinates": [ 148.435, -21.744 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686446, "decimalLat": -21.684306 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7739, "decimalLat": -21.775214 }, "geometry": { "type": "Point", "coordinates": [ 148.774, -21.775 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.652296, "decimalLat": -21.70357 }, "geometry": { "type": "Point", "coordinates": [ 148.652, -21.704 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.89091, "decimalLat": -21.42693 }, "geometry": { "type": "Point", "coordinates": [ 148.891, -21.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.731797, "decimalLat": -21.728219 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.710938, "decimalLat": -21.626793 }, "geometry": { "type": "Point", "coordinates": [ 148.711, -21.627 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.694501, "decimalLat": -21.711304 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68892, "decimalLat": -21.69558 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.696 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74238, "decimalLat": -21.74611 }, "geometry": { "type": "Point", "coordinates": [ 148.742, -21.746 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.5308, "decimalLat": -21.44614 }, "geometry": { "type": "Point", "coordinates": [ 148.531, -21.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.712666, "decimalLat": -21.61798 }, "geometry": { "type": "Point", "coordinates": [ 148.713, -21.618 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.709657, "decimalLat": -21.619579 }, "geometry": { "type": "Point", "coordinates": [ 148.71, -21.62 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.839245, "decimalLat": -21.466103 }, "geometry": { "type": "Point", "coordinates": [ 148.839, -21.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.02935, "decimalLat": -22.03462 }, "geometry": { "type": "Point", "coordinates": [ 148.029, -22.035 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75946, "decimalLat": -21.77544 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.775 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67172, "decimalLat": -21.63763 }, "geometry": { "type": "Point", "coordinates": [ 148.672, -21.638 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.921403, "decimalLat": -21.407231 }, "geometry": { "type": "Point", "coordinates": [ 148.921, -21.407 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.863257, "decimalLat": -21.450777 }, "geometry": { "type": "Point", "coordinates": [ 148.863, -21.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.65175, "decimalLat": -21.70384 }, "geometry": { "type": "Point", "coordinates": [ 148.652, -21.704 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.573744, "decimalLat": -21.862464 }, "geometry": { "type": "Point", "coordinates": [ 148.574, -21.862 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73986, "decimalLat": -21.74201 }, "geometry": { "type": "Point", "coordinates": [ 148.74, -21.742 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.10452, "decimalLat": -21.551609 }, "geometry": { "type": "Point", "coordinates": [ 149.105, -21.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7316, "decimalLat": -21.72761 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.737, "decimalLat": -21.7367 }, "geometry": { "type": "Point", "coordinates": [ 148.737, -21.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.759156, "decimalLat": -21.773778 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.90175, "decimalLat": -21.41919 }, "geometry": { "type": "Point", "coordinates": [ 148.902, -21.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6816, "decimalLat": -21.8 }, "geometry": { "type": "Point", "coordinates": [ 148.682, -21.8 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75192, "decimalLat": -21.76049 }, "geometry": { "type": "Point", "coordinates": [ 148.752, -21.76 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.93759, "decimalLat": -21.39429 }, "geometry": { "type": "Point", "coordinates": [ 148.938, -21.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.944001, "decimalLat": -21.286732 }, "geometry": { "type": "Point", "coordinates": [ 148.944, -21.287 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.92583, "decimalLat": -21.40506 }, "geometry": { "type": "Point", "coordinates": [ 148.926, -21.405 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68652, "decimalLat": -21.68463 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.726559, "decimalLat": -21.791666 }, "geometry": { "type": "Point", "coordinates": [ 148.727, -21.792 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.908949, "decimalLat": -21.411934 }, "geometry": { "type": "Point", "coordinates": [ 148.909, -21.412 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.269674, "decimalLat": -22.609872 }, "geometry": { "type": "Point", "coordinates": [ 149.27, -22.61 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.940599, "decimalLat": -21.343352 }, "geometry": { "type": "Point", "coordinates": [ 148.941, -21.343 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691561, "decimalLat": -21.697054 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.742845, "decimalLat": -21.756614 }, "geometry": { "type": "Point", "coordinates": [ 148.743, -21.757 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.694906, "decimalLat": -21.710031 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72293, "decimalLat": -21.71428 }, "geometry": { "type": "Point", "coordinates": [ 148.723, -21.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73168, "decimalLat": -21.72783 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.728 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.995437, "decimalLat": -21.674241 }, "geometry": { "type": "Point", "coordinates": [ 148.995, -21.674 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75154, "decimalLat": -21.56711 }, "geometry": { "type": "Point", "coordinates": [ 148.752, -21.567 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67436, "decimalLat": -21.6342 }, "geometry": { "type": "Point", "coordinates": [ 148.674, -21.634 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73703, "decimalLat": -21.73674 }, "geometry": { "type": "Point", "coordinates": [ 148.737, -21.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.801388, "decimalLat": -21.500114 }, "geometry": { "type": "Point", "coordinates": [ 148.801, -21.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 147.904303, "decimalLat": -22.487074 }, "geometry": { "type": "Point", "coordinates": [ 147.904, -22.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.700096, "decimalLat": -21.681455 }, "geometry": { "type": "Point", "coordinates": [ 148.7, -21.681 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.687456, "decimalLat": -21.679861 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.68 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69026, "decimalLat": -21.69524 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.695 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69139, "decimalLat": -21.697692 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.94147, "decimalLat": -21.36003 }, "geometry": { "type": "Point", "coordinates": [ 148.941, -21.36 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68829, "decimalLat": -21.69039 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.69 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.71694, "decimalLat": -21.61594 }, "geometry": { "type": "Point", "coordinates": [ 148.717, -21.616 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6825, "decimalLat": -21.688494 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.688 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.782885, "decimalLat": -21.514806 }, "geometry": { "type": "Point", "coordinates": [ 148.783, -21.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68489, "decimalLat": -21.68598 }, "geometry": { "type": "Point", "coordinates": [ 148.685, -21.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.70978, "decimalLat": -21.70733 }, "geometry": { "type": "Point", "coordinates": [ 148.71, -21.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72415, "decimalLat": -21.71679 }, "geometry": { "type": "Point", "coordinates": [ 148.724, -21.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.131495, "decimalLat": -21.353619 }, "geometry": { "type": "Point", "coordinates": [ 148.131, -21.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.056896, "decimalLat": -21.178201 }, "geometry": { "type": "Point", "coordinates": [ 149.057, -21.178 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.939024, "decimalLat": -21.338652 }, "geometry": { "type": "Point", "coordinates": [ 148.939, -21.339 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.681574, "decimalLat": -21.679346 }, "geometry": { "type": "Point", "coordinates": [ 148.682, -21.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688964, "decimalLat": -21.674593 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.675 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68412, "decimalLat": -21.68759 }, "geometry": { "type": "Point", "coordinates": [ 148.684, -21.688 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691552, "decimalLat": -21.697125 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.692878, "decimalLat": -21.654203 }, "geometry": { "type": "Point", "coordinates": [ 148.693, -21.654 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69185, "decimalLat": -21.698138 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69458, "decimalLat": -21.63913 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.639 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.781574, "decimalLat": -21.517738 }, "geometry": { "type": "Point", "coordinates": [ 148.782, -21.518 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.89409, "decimalLat": -21.42428 }, "geometry": { "type": "Point", "coordinates": [ 148.894, -21.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.737258, "decimalLat": -21.737631 }, "geometry": { "type": "Point", "coordinates": [ 148.737, -21.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.702157, "decimalLat": -21.712201 }, "geometry": { "type": "Point", "coordinates": [ 148.702, -21.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691892, "decimalLat": -21.69812 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68333, "decimalLat": -21.68368 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.684 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68469, "decimalLat": -21.68468 }, "geometry": { "type": "Point", "coordinates": [ 148.685, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.576857, "decimalLat": -21.856416 }, "geometry": { "type": "Point", "coordinates": [ 148.577, -21.856 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72701, "decimalLat": -21.72036 }, "geometry": { "type": "Point", "coordinates": [ 148.727, -21.72 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7549, "decimalLat": -21.76757 }, "geometry": { "type": "Point", "coordinates": [ 148.755, -21.768 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69341, "decimalLat": -21.6597 }, "geometry": { "type": "Point", "coordinates": [ 148.693, -21.66 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.863918, "decimalLat": -21.449899 }, "geometry": { "type": "Point", "coordinates": [ 148.864, -21.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69418, "decimalLat": -21.70996 }, "geometry": { "type": "Point", "coordinates": [ 148.694, -21.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72247, "decimalLat": -21.7137 }, "geometry": { "type": "Point", "coordinates": [ 148.722, -21.714 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.90811, "decimalLat": -21.41302 }, "geometry": { "type": "Point", "coordinates": [ 148.908, -21.413 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69341, "decimalLat": -21.6597 }, "geometry": { "type": "Point", "coordinates": [ 148.693, -21.66 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.945526, "decimalLat": -21.382571 }, "geometry": { "type": "Point", "coordinates": [ 148.946, -21.383 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.215916, "decimalLat": -21.421013 }, "geometry": { "type": "Point", "coordinates": [ 149.216, -21.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.817582, "decimalLat": -21.474416 }, "geometry": { "type": "Point", "coordinates": [ 148.818, -21.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.739069, "decimalLat": -21.740745 }, "geometry": { "type": "Point", "coordinates": [ 148.739, -21.741 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73195, "decimalLat": -21.72858 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.729 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686348, "decimalLat": -21.689463 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.689 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69189, "decimalLat": -21.698152 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69178, "decimalLat": -21.697201 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.742477, "decimalLat": -21.59496 }, "geometry": { "type": "Point", "coordinates": [ 148.742, -21.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691894, "decimalLat": -21.698022 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73376, "decimalLat": -21.73132 }, "geometry": { "type": "Point", "coordinates": [ 148.734, -21.731 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73893, "decimalLat": -21.59856 }, "geometry": { "type": "Point", "coordinates": [ 148.739, -21.599 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.83218, "decimalLat": -21.4686 }, "geometry": { "type": "Point", "coordinates": [ 148.832, -21.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688469, "decimalLat": -21.685176 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.745652, "decimalLat": -21.75014 }, "geometry": { "type": "Point", "coordinates": [ 148.746, -21.75 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74966, "decimalLat": -21.86264 }, "geometry": { "type": "Point", "coordinates": [ 148.75, -21.863 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.782652, "decimalLat": -21.516323 }, "geometry": { "type": "Point", "coordinates": [ 148.783, -21.516 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690208, "decimalLat": -21.709902 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.88276, "decimalLat": -21.43134 }, "geometry": { "type": "Point", "coordinates": [ 148.883, -21.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7814, "decimalLat": -21.51811 }, "geometry": { "type": "Point", "coordinates": [ 148.781, -21.518 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.79008, "decimalLat": -21.77039 }, "geometry": { "type": "Point", "coordinates": [ 148.79, -21.77 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.702433, "decimalLat": -21.680866 }, "geometry": { "type": "Point", "coordinates": [ 148.702, -21.681 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691682, "decimalLat": -21.697735 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.757119, "decimalLat": -21.56045 }, "geometry": { "type": "Point", "coordinates": [ 148.757, -21.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.610888, "decimalLat": -21.717634 }, "geometry": { "type": "Point", "coordinates": [ 148.611, -21.718 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.629168, "decimalLat": -22.68916 }, "geometry": { "type": "Point", "coordinates": [ 149.629, -22.689 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67609, "decimalLat": -21.65504 }, "geometry": { "type": "Point", "coordinates": [ 148.676, -21.655 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.63593, "decimalLat": -21.60276 }, "geometry": { "type": "Point", "coordinates": [ 148.636, -21.603 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.738225, "decimalLat": -21.599459 }, "geometry": { "type": "Point", "coordinates": [ 148.738, -21.599 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.687697, "decimalLat": -21.680719 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.681 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.971552, "decimalLat": -21.26545 }, "geometry": { "type": "Point", "coordinates": [ 148.972, -21.265 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.342155, "decimalLat": -22.357343 }, "geometry": { "type": "Point", "coordinates": [ 149.342, -22.357 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.732589, "decimalLat": -21.730192 }, "geometry": { "type": "Point", "coordinates": [ 148.733, -21.73 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.792023, "decimalLat": -21.770281 }, "geometry": { "type": "Point", "coordinates": [ 148.792, -21.77 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.689147, "decimalLat": -21.692056 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.692 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.679851, "decimalLat": -21.203402 }, "geometry": { "type": "Point", "coordinates": [ 148.68, -21.203 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691428, "decimalLat": -21.696943 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.694469, "decimalLat": -21.645617 }, "geometry": { "type": "Point", "coordinates": [ 148.694, -21.646 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691166, "decimalLat": -21.698118 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.681519, "decimalLat": -21.813189 }, "geometry": { "type": "Point", "coordinates": [ 148.682, -21.813 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.575654, "decimalLat": -21.857725 }, "geometry": { "type": "Point", "coordinates": [ 148.576, -21.858 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.93812, "decimalLat": -21.39336 }, "geometry": { "type": "Point", "coordinates": [ 148.938, -21.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.9273, "decimalLat": -21.772648 }, "geometry": { "type": "Point", "coordinates": [ 148.927, -21.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68829, "decimalLat": -21.690744 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.691 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69164, "decimalLat": -21.69774 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75484, "decimalLat": -21.76757 }, "geometry": { "type": "Point", "coordinates": [ 148.755, -21.768 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.694112, "decimalLat": -21.649482 }, "geometry": { "type": "Point", "coordinates": [ 148.694, -21.649 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.890257, "decimalLat": -21.424746 }, "geometry": { "type": "Point", "coordinates": [ 148.89, -21.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.533642, "decimalLat": -21.22739 }, "geometry": { "type": "Point", "coordinates": [ 148.534, -21.227 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.92511, "decimalLat": -21.40564 }, "geometry": { "type": "Point", "coordinates": [ 148.925, -21.406 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.872222, "decimalLat": -21.44 }, "geometry": { "type": "Point", "coordinates": [ 148.872, -21.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72008, "decimalLat": -21.613765 }, "geometry": { "type": "Point", "coordinates": [ 148.72, -21.614 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69502, "decimalLat": -21.71148 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.711 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.907364, "decimalLat": -21.413739 }, "geometry": { "type": "Point", "coordinates": [ 148.907, -21.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7315, "decimalLat": -21.72758 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.728 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69232, "decimalLat": -21.6906 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.691 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.759672, "decimalLat": -21.775819 }, "geometry": { "type": "Point", "coordinates": [ 148.76, -21.776 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.78914, "decimalLat": -21.50895 }, "geometry": { "type": "Point", "coordinates": [ 148.789, -21.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68836, "decimalLat": -21.68705 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.687 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68159, "decimalLat": -21.79925 }, "geometry": { "type": "Point", "coordinates": [ 148.682, -21.799 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75444, "decimalLat": -21.76653 }, "geometry": { "type": "Point", "coordinates": [ 148.754, -21.767 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691439, "decimalLat": -21.697131 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.87528, "decimalLat": -21.43723 }, "geometry": { "type": "Point", "coordinates": [ 148.875, -21.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.779591, "decimalLat": -21.519874 }, "geometry": { "type": "Point", "coordinates": [ 148.78, -21.52 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.746511, "decimalLat": -21.751721 }, "geometry": { "type": "Point", "coordinates": [ 148.747, -21.752 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73172, "decimalLat": -21.72811 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.178688, "decimalLat": -22.271345 }, "geometry": { "type": "Point", "coordinates": [ 148.179, -22.271 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.77219, "decimalLat": -21.52938 }, "geometry": { "type": "Point", "coordinates": [ 148.772, -21.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.738525, "decimalLat": -21.739897 }, "geometry": { "type": "Point", "coordinates": [ 148.739, -21.74 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69183, "decimalLat": -21.69808 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.692094, "decimalLat": -21.660469 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.66 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.63311, "decimalLat": -21.71008 }, "geometry": { "type": "Point", "coordinates": [ 148.633, -21.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.82674, "decimalLat": -21.46997 }, "geometry": { "type": "Point", "coordinates": [ 148.827, -21.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686586, "decimalLat": -21.684215 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691311, "decimalLat": -21.696991 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.87227, "decimalLat": -21.44045 }, "geometry": { "type": "Point", "coordinates": [ 148.872, -21.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69013, "decimalLat": -21.6949 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.695 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7514, "decimalLat": -21.567 }, "geometry": { "type": "Point", "coordinates": [ 148.751, -21.567 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.918136, "decimalLat": -21.408281 }, "geometry": { "type": "Point", "coordinates": [ 148.918, -21.408 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691277, "decimalLat": -21.697134 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.656371, "decimalLat": -21.619505 }, "geometry": { "type": "Point", "coordinates": [ 148.656, -21.62 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.93402, "decimalLat": -21.39867 }, "geometry": { "type": "Point", "coordinates": [ 148.934, -21.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.83174, "decimalLat": -21.46871 }, "geometry": { "type": "Point", "coordinates": [ 148.832, -21.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690486, "decimalLat": -21.697435 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690875, "decimalLat": -21.697219 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.934612, "decimalLat": -21.398133 }, "geometry": { "type": "Point", "coordinates": [ 148.935, -21.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.694396, "decimalLat": -21.710717 }, "geometry": { "type": "Point", "coordinates": [ 148.694, -21.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75117, "decimalLat": -21.75943 }, "geometry": { "type": "Point", "coordinates": [ 148.751, -21.759 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73721, "decimalLat": -21.73711 }, "geometry": { "type": "Point", "coordinates": [ 148.737, -21.737 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.09399, "decimalLat": -22.08286 }, "geometry": { "type": "Point", "coordinates": [ 149.094, -22.083 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.93062, "decimalLat": -21.40196 }, "geometry": { "type": "Point", "coordinates": [ 148.931, -21.402 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.267456, "decimalLat": -22.63156 }, "geometry": { "type": "Point", "coordinates": [ 149.267, -22.632 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67789, "decimalLat": -21.67285 }, "geometry": { "type": "Point", "coordinates": [ 148.678, -21.673 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69218, "decimalLat": -21.67475 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.675 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.812781, "decimalLat": -21.479398 }, "geometry": { "type": "Point", "coordinates": [ 148.813, -21.479 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.010605, "decimalLat": -21.65612 }, "geometry": { "type": "Point", "coordinates": [ 149.011, -21.656 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68695, "decimalLat": -21.680381 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.778725, "decimalLat": -21.520397 }, "geometry": { "type": "Point", "coordinates": [ 148.779, -21.52 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68777, "decimalLat": -21.68921 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.689 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.754853, "decimalLat": -21.767344 }, "geometry": { "type": "Point", "coordinates": [ 148.755, -21.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69081, "decimalLat": -21.69495 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.695 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.94439, "decimalLat": -21.38405 }, "geometry": { "type": "Point", "coordinates": [ 148.944, -21.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.93947, "decimalLat": -21.32879 }, "geometry": { "type": "Point", "coordinates": [ 148.939, -21.329 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691529, "decimalLat": -21.697049 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.85355, "decimalLat": -21.46 }, "geometry": { "type": "Point", "coordinates": [ 148.854, -21.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.8749, "decimalLat": -21.43782 }, "geometry": { "type": "Point", "coordinates": [ 148.875, -21.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7363, "decimalLat": -21.7355 }, "geometry": { "type": "Point", "coordinates": [ 148.736, -21.735 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73259, "decimalLat": -21.72942 }, "geometry": { "type": "Point", "coordinates": [ 148.733, -21.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.76013, "decimalLat": -21.54434 }, "geometry": { "type": "Point", "coordinates": [ 148.76, -21.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75767, "decimalLat": -21.77258 }, "geometry": { "type": "Point", "coordinates": [ 148.758, -21.773 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.685558, "decimalLat": -21.685303 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.732719, "decimalLat": -21.729646 }, "geometry": { "type": "Point", "coordinates": [ 148.733, -21.73 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.677772, "decimalLat": -21.202502 }, "geometry": { "type": "Point", "coordinates": [ 148.678, -21.203 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691851, "decimalLat": -21.698166 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69214, "decimalLat": -21.672168 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690353, "decimalLat": -21.695522 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.696 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7292, "decimalLat": -21.72417 }, "geometry": { "type": "Point", "coordinates": [ 148.729, -21.724 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691706, "decimalLat": -21.696207 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.696 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686518, "decimalLat": -21.684181 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.684 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.906269, "decimalLat": -21.415206 }, "geometry": { "type": "Point", "coordinates": [ 148.906, -21.415 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.99436, "decimalLat": -21.70884 }, "geometry": { "type": "Point", "coordinates": [ 148.994, -21.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.511401, "decimalLat": -22.495238 }, "geometry": { "type": "Point", "coordinates": [ 149.511, -22.495 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.343312, "decimalLat": -21.508868 }, "geometry": { "type": "Point", "coordinates": [ 148.343, -21.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72774, "decimalLat": -21.72247 }, "geometry": { "type": "Point", "coordinates": [ 148.728, -21.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.689248, "decimalLat": -21.692159 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.692 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.89346, "decimalLat": -21.42483 }, "geometry": { "type": "Point", "coordinates": [ 148.893, -21.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69507, "decimalLat": -21.7114 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.83064, "decimalLat": -21.46892 }, "geometry": { "type": "Point", "coordinates": [ 148.831, -21.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690016, "decimalLat": -21.685216 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72551, "decimalLat": -21.71885 }, "geometry": { "type": "Point", "coordinates": [ 148.726, -21.719 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.89281, "decimalLat": -21.42527 }, "geometry": { "type": "Point", "coordinates": [ 148.893, -21.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74344, "decimalLat": -21.74752 }, "geometry": { "type": "Point", "coordinates": [ 148.743, -21.748 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69757, "decimalLat": -21.62572 }, "geometry": { "type": "Point", "coordinates": [ 148.698, -21.626 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7316, "decimalLat": -21.72761 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.104593, "decimalLat": -21.551812 }, "geometry": { "type": "Point", "coordinates": [ 149.105, -21.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.2309, "decimalLat": -21.976 }, "geometry": { "type": "Point", "coordinates": [ 148.231, -21.976 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73218, "decimalLat": -21.72862 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.729 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.834164, "decimalLat": -21.468159 }, "geometry": { "type": "Point", "coordinates": [ 148.834, -21.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68939, "decimalLat": -21.69247 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.692 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.8871, "decimalLat": -21.42946 }, "geometry": { "type": "Point", "coordinates": [ 148.887, -21.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.59982, "decimalLat": -21.72191 }, "geometry": { "type": "Point", "coordinates": [ 148.6, -21.722 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.933904, "decimalLat": -21.349748 }, "geometry": { "type": "Point", "coordinates": [ 148.934, -21.35 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68283, "decimalLat": -21.7844 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.784 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73867, "decimalLat": -21.73942 }, "geometry": { "type": "Point", "coordinates": [ 148.739, -21.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.332534, "decimalLat": -22.5904 }, "geometry": { "type": "Point", "coordinates": [ 148.333, -22.59 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.78686, "decimalLat": -21.50961 }, "geometry": { "type": "Point", "coordinates": [ 148.787, -21.51 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.875187, "decimalLat": -21.437238 }, "geometry": { "type": "Point", "coordinates": [ 148.875, -21.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68809, "decimalLat": -21.684528 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.857293, "decimalLat": -21.456237 }, "geometry": { "type": "Point", "coordinates": [ 148.857, -21.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.64171, "decimalLat": -21.70734 }, "geometry": { "type": "Point", "coordinates": [ 148.642, -21.707 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6964, "decimalLat": -21.62685 }, "geometry": { "type": "Point", "coordinates": [ 148.696, -21.627 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75727, "decimalLat": -21.5595 }, "geometry": { "type": "Point", "coordinates": [ 148.757, -21.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.944725, "decimalLat": -21.383646 }, "geometry": { "type": "Point", "coordinates": [ 148.945, -21.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67611, "decimalLat": -21.67017 }, "geometry": { "type": "Point", "coordinates": [ 148.676, -21.67 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.82485, "decimalLat": -21.47049 }, "geometry": { "type": "Point", "coordinates": [ 148.825, -21.47 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.50867, "decimalLat": -21.43765 }, "geometry": { "type": "Point", "coordinates": [ 148.509, -21.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7593, "decimalLat": -21.55094 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.368562, "decimalLat": -21.749981 }, "geometry": { "type": "Point", "coordinates": [ 149.369, -21.75 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.105158, "decimalLat": -21.551291 }, "geometry": { "type": "Point", "coordinates": [ 149.105, -21.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.716615, "decimalLat": -21.6161 }, "geometry": { "type": "Point", "coordinates": [ 148.717, -21.616 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.42668, "decimalLat": -22.510641 }, "geometry": { "type": "Point", "coordinates": [ 148.427, -22.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69182, "decimalLat": -21.6981 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.652262, "decimalLat": -21.703558 }, "geometry": { "type": "Point", "coordinates": [ 148.652, -21.704 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.83513, "decimalLat": -21.46767 }, "geometry": { "type": "Point", "coordinates": [ 148.835, -21.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.016014, "decimalLat": -21.526282 }, "geometry": { "type": "Point", "coordinates": [ 149.016, -21.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.279687, "decimalLat": -21.292468 }, "geometry": { "type": "Point", "coordinates": [ 149.28, -21.292 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.212594, "decimalLat": -20.030242 }, "geometry": { "type": "Point", "coordinates": [ 148.213, -20.03 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73684, "decimalLat": -21.60101 }, "geometry": { "type": "Point", "coordinates": [ 148.737, -21.601 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73713, "decimalLat": -21.73667 }, "geometry": { "type": "Point", "coordinates": [ 148.737, -21.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68845, "decimalLat": -21.694778 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.695 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7316, "decimalLat": -21.72757 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691752, "decimalLat": -21.697206 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6924, "decimalLat": -21.67706 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.677 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69005, "decimalLat": -21.6867 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688113, "decimalLat": -21.690171 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.69 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.696661, "decimalLat": -21.695227 }, "geometry": { "type": "Point", "coordinates": [ 148.697, -21.695 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.82198, "decimalLat": -21.47137 }, "geometry": { "type": "Point", "coordinates": [ 148.822, -21.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.748733, "decimalLat": -21.755147 }, "geometry": { "type": "Point", "coordinates": [ 148.749, -21.755 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.70254, "decimalLat": -21.709365 }, "geometry": { "type": "Point", "coordinates": [ 148.703, -21.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69168, "decimalLat": -21.69774 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73511, "decimalLat": -21.84697 }, "geometry": { "type": "Point", "coordinates": [ 148.735, -21.847 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68853, "decimalLat": -21.6948 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.695 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.639769, "decimalLat": -21.707796 }, "geometry": { "type": "Point", "coordinates": [ 148.64, -21.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72724, "decimalLat": -21.72168 }, "geometry": { "type": "Point", "coordinates": [ 148.727, -21.722 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.96794, "decimalLat": -21.427836 }, "geometry": { "type": "Point", "coordinates": [ 148.968, -21.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.631587, "decimalLat": -21.597887 }, "geometry": { "type": "Point", "coordinates": [ 148.632, -21.598 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 147.717673, "decimalLat": -22.634004 }, "geometry": { "type": "Point", "coordinates": [ 147.718, -22.634 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.679122, "decimalLat": -21.675147 }, "geometry": { "type": "Point", "coordinates": [ 148.679, -21.675 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.939749, "decimalLat": -21.390563 }, "geometry": { "type": "Point", "coordinates": [ 148.94, -21.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69248, "decimalLat": -21.690738 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.691 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.104325, "decimalLat": -21.551304 }, "geometry": { "type": "Point", "coordinates": [ 149.104, -21.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.828258, "decimalLat": -21.469683 }, "geometry": { "type": "Point", "coordinates": [ 148.828, -21.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.061733, "decimalLat": -21.332682 }, "geometry": { "type": "Point", "coordinates": [ 149.062, -21.333 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67434, "decimalLat": -21.63408 }, "geometry": { "type": "Point", "coordinates": [ 148.674, -21.634 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.83626, "decimalLat": -21.46727 }, "geometry": { "type": "Point", "coordinates": [ 148.836, -21.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.682768, "decimalLat": -21.680482 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.837631, "decimalLat": -21.272856 }, "geometry": { "type": "Point", "coordinates": [ 148.838, -21.273 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.610107, "decimalLat": -21.718228 }, "geometry": { "type": "Point", "coordinates": [ 148.61, -21.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.644364, "decimalLat": -21.834094 }, "geometry": { "type": "Point", "coordinates": [ 148.644, -21.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73202, "decimalLat": -21.60471 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.605 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.82506, "decimalLat": -21.47058 }, "geometry": { "type": "Point", "coordinates": [ 148.825, -21.471 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75186, "decimalLat": -21.56678 }, "geometry": { "type": "Point", "coordinates": [ 148.752, -21.567 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.907789, "decimalLat": -21.41336 }, "geometry": { "type": "Point", "coordinates": [ 148.908, -21.413 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.727569, "decimalLat": -21.721561 }, "geometry": { "type": "Point", "coordinates": [ 148.728, -21.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.937499, "decimalLat": -21.334651 }, "geometry": { "type": "Point", "coordinates": [ 148.937, -21.335 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.871156, "decimalLat": -21.441642 }, "geometry": { "type": "Point", "coordinates": [ 148.871, -21.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691717, "decimalLat": -21.697783 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.679611, "decimalLat": -21.742906 }, "geometry": { "type": "Point", "coordinates": [ 148.68, -21.743 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69862, "decimalLat": -21.62469 }, "geometry": { "type": "Point", "coordinates": [ 148.699, -21.625 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.937938, "decimalLat": -21.33883 }, "geometry": { "type": "Point", "coordinates": [ 148.938, -21.339 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.667765, "decimalLat": -21.820151 }, "geometry": { "type": "Point", "coordinates": [ 148.668, -21.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.70115, "decimalLat": -21.70318 }, "geometry": { "type": "Point", "coordinates": [ 148.701, -21.703 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.652197, "decimalLat": -21.703614 }, "geometry": { "type": "Point", "coordinates": [ 148.652, -21.704 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.056406, "decimalLat": -21.180119 }, "geometry": { "type": "Point", "coordinates": [ 149.056, -21.18 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.71053, "decimalLat": -21.70762 }, "geometry": { "type": "Point", "coordinates": [ 148.711, -21.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68755, "decimalLat": -21.69204 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.336285, "decimalLat": -22.466151 }, "geometry": { "type": "Point", "coordinates": [ 148.336, -22.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.89381, "decimalLat": -21.42469 }, "geometry": { "type": "Point", "coordinates": [ 148.894, -21.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72893, "decimalLat": -21.72331 }, "geometry": { "type": "Point", "coordinates": [ 148.729, -21.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.684716, "decimalLat": -21.686054 }, "geometry": { "type": "Point", "coordinates": [ 148.685, -21.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.734849, "decimalLat": -21.732889 }, "geometry": { "type": "Point", "coordinates": [ 148.735, -21.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690445, "decimalLat": -21.696713 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.878592, "decimalLat": -21.433973 }, "geometry": { "type": "Point", "coordinates": [ 148.879, -21.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69034, "decimalLat": -21.6979 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.874476, "decimalLat": -21.438028 }, "geometry": { "type": "Point", "coordinates": [ 148.874, -21.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.714886, "decimalLat": -21.61646 }, "geometry": { "type": "Point", "coordinates": [ 148.715, -21.616 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.79332, "decimalLat": -21.50704 }, "geometry": { "type": "Point", "coordinates": [ 148.793, -21.507 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75944, "decimalLat": -21.55282 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.553 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75193, "decimalLat": -21.56636 }, "geometry": { "type": "Point", "coordinates": [ 148.752, -21.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.699759, "decimalLat": -21.623638 }, "geometry": { "type": "Point", "coordinates": [ 148.7, -21.624 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67882, "decimalLat": -21.67459 }, "geometry": { "type": "Point", "coordinates": [ 148.679, -21.675 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69541, "decimalLat": -21.69065 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.691 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.703568, "decimalLat": -21.70524 }, "geometry": { "type": "Point", "coordinates": [ 148.704, -21.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.756749, "decimalLat": -21.560501 }, "geometry": { "type": "Point", "coordinates": [ 148.757, -21.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68822, "decimalLat": -21.68888 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.689 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.738918, "decimalLat": -21.739891 }, "geometry": { "type": "Point", "coordinates": [ 148.739, -21.74 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.322598, "decimalLat": -22.368664 }, "geometry": { "type": "Point", "coordinates": [ 149.323, -22.369 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.877299, "decimalLat": -21.435363 }, "geometry": { "type": "Point", "coordinates": [ 148.877, -21.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.63973, "decimalLat": -21.70766 }, "geometry": { "type": "Point", "coordinates": [ 148.64, -21.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686158, "decimalLat": -21.754992 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.755 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.937356, "decimalLat": -21.356713 }, "geometry": { "type": "Point", "coordinates": [ 148.937, -21.357 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68658, "decimalLat": -21.68106 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.681 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.727569, "decimalLat": -21.721561 }, "geometry": { "type": "Point", "coordinates": [ 148.728, -21.722 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73531, "decimalLat": -21.7332 }, "geometry": { "type": "Point", "coordinates": [ 148.735, -21.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.757381, "decimalLat": -21.55894 }, "geometry": { "type": "Point", "coordinates": [ 148.757, -21.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73151, "decimalLat": -21.72785 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.847633, "decimalLat": -21.462944 }, "geometry": { "type": "Point", "coordinates": [ 148.848, -21.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.939721, "decimalLat": -21.289069 }, "geometry": { "type": "Point", "coordinates": [ 148.94, -21.289 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68821, "decimalLat": -21.6891 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.689 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.717797, "decimalLat": -21.616622 }, "geometry": { "type": "Point", "coordinates": [ 148.718, -21.617 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.737, "decimalLat": -21.7367 }, "geometry": { "type": "Point", "coordinates": [ 148.737, -21.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68644, "decimalLat": -21.684521 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.57946, "decimalLat": -21.8543 }, "geometry": { "type": "Point", "coordinates": [ 148.579, -21.854 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69866, "decimalLat": -21.70485 }, "geometry": { "type": "Point", "coordinates": [ 148.699, -21.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.938007, "decimalLat": -21.331447 }, "geometry": { "type": "Point", "coordinates": [ 148.938, -21.331 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.70981, "decimalLat": -21.67896 }, "geometry": { "type": "Point", "coordinates": [ 148.71, -21.679 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69176, "decimalLat": -21.69712 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.78165, "decimalLat": -21.51762 }, "geometry": { "type": "Point", "coordinates": [ 148.782, -21.518 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69164, "decimalLat": -21.66577 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.666 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.755128, "decimalLat": -21.767428 }, "geometry": { "type": "Point", "coordinates": [ 148.755, -21.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.716607, "decimalLat": -21.616059 }, "geometry": { "type": "Point", "coordinates": [ 148.717, -21.616 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691058, "decimalLat": -21.696909 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.759219, "decimalLat": -21.552737 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.722029, "decimalLat": -21.612493 }, "geometry": { "type": "Point", "coordinates": [ 148.722, -21.612 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.144608, "decimalLat": -21.177357 }, "geometry": { "type": "Point", "coordinates": [ 149.145, -21.177 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.790087, "decimalLat": -21.7703 }, "geometry": { "type": "Point", "coordinates": [ 148.79, -21.77 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.639745, "decimalLat": -21.707817 }, "geometry": { "type": "Point", "coordinates": [ 148.64, -21.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.66912, "decimalLat": -22.7119 }, "geometry": { "type": "Point", "coordinates": [ 149.669, -22.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.495859, "decimalLat": -22.470813 }, "geometry": { "type": "Point", "coordinates": [ 149.496, -22.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6901, "decimalLat": -21.6766 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.677 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.680344, "decimalLat": -21.677664 }, "geometry": { "type": "Point", "coordinates": [ 148.68, -21.678 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74344, "decimalLat": -21.74752 }, "geometry": { "type": "Point", "coordinates": [ 148.743, -21.748 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75975, "decimalLat": -21.54808 }, "geometry": { "type": "Point", "coordinates": [ 148.76, -21.548 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.792391, "decimalLat": -21.50766 }, "geometry": { "type": "Point", "coordinates": [ 148.792, -21.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.86, "decimalLat": -21.45 }, "geometry": { "type": "Point", "coordinates": [ 148.86, -21.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.19192, "decimalLat": -22.22367 }, "geometry": { "type": "Point", "coordinates": [ 148.192, -22.224 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68768, "decimalLat": -21.69332 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.693 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75299, "decimalLat": -21.76255 }, "geometry": { "type": "Point", "coordinates": [ 148.753, -21.763 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.826253, "decimalLat": -21.470219 }, "geometry": { "type": "Point", "coordinates": [ 148.826, -21.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.698671, "decimalLat": -21.624681 }, "geometry": { "type": "Point", "coordinates": [ 148.699, -21.625 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.89198, "decimalLat": -21.42586 }, "geometry": { "type": "Point", "coordinates": [ 148.892, -21.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.863577, "decimalLat": -21.451848 }, "geometry": { "type": "Point", "coordinates": [ 148.864, -21.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69225, "decimalLat": -21.67506 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.675 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69227, "decimalLat": -21.67427 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.674 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688123, "decimalLat": -21.687365 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69352, "decimalLat": -21.65477 }, "geometry": { "type": "Point", "coordinates": [ 148.694, -21.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686562, "decimalLat": -21.684206 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.684 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.909, "decimalLat": -21.41221 }, "geometry": { "type": "Point", "coordinates": [ 148.909, -21.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.684546, "decimalLat": -21.684566 }, "geometry": { "type": "Point", "coordinates": [ 148.685, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.678284, "decimalLat": -21.690634 }, "geometry": { "type": "Point", "coordinates": [ 148.678, -21.691 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686514, "decimalLat": -21.684701 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.689769, "decimalLat": -21.693857 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.694 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68224, "decimalLat": -21.81221 }, "geometry": { "type": "Point", "coordinates": [ 148.682, -21.812 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.065935, "decimalLat": -21.149385 }, "geometry": { "type": "Point", "coordinates": [ 149.066, -21.149 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69385, "decimalLat": -21.63111 }, "geometry": { "type": "Point", "coordinates": [ 148.694, -21.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691443, "decimalLat": -21.69707 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.694136, "decimalLat": -21.630473 }, "geometry": { "type": "Point", "coordinates": [ 148.694, -21.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.65225, "decimalLat": -21.70356 }, "geometry": { "type": "Point", "coordinates": [ 148.652, -21.704 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.801351, "decimalLat": -21.49973 }, "geometry": { "type": "Point", "coordinates": [ 148.801, -21.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75977, "decimalLat": -21.77599 }, "geometry": { "type": "Point", "coordinates": [ 148.76, -21.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.88019, "decimalLat": -21.432206 }, "geometry": { "type": "Point", "coordinates": [ 148.88, -21.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.41939, "decimalLat": -21.88048 }, "geometry": { "type": "Point", "coordinates": [ 148.419, -21.88 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.480635, "decimalLat": -21.55006 }, "geometry": { "type": "Point", "coordinates": [ 148.481, -21.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.885952, "decimalLat": -21.778434 }, "geometry": { "type": "Point", "coordinates": [ 148.886, -21.778 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691875, "decimalLat": -21.698061 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.057083, "decimalLat": -21.178434 }, "geometry": { "type": "Point", "coordinates": [ 149.057, -21.178 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.685378, "decimalLat": -21.634489 }, "geometry": { "type": "Point", "coordinates": [ 148.685, -21.634 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.280215, "decimalLat": -22.453553 }, "geometry": { "type": "Point", "coordinates": [ 148.28, -22.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690883, "decimalLat": -21.749298 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.749 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.738983, "decimalLat": -21.739969 }, "geometry": { "type": "Point", "coordinates": [ 148.739, -21.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691583, "decimalLat": -21.697089 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686387, "decimalLat": -21.754779 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.755 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.018294, "decimalLat": -21.530414 }, "geometry": { "type": "Point", "coordinates": [ 149.018, -21.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.49646, "decimalLat": -22.471405 }, "geometry": { "type": "Point", "coordinates": [ 149.496, -22.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.687474, "decimalLat": -21.679095 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.679 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68567, "decimalLat": -21.76041 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.76 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.86193, "decimalLat": -21.45281 }, "geometry": { "type": "Point", "coordinates": [ 148.862, -21.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74668, "decimalLat": -21.5785 }, "geometry": { "type": "Point", "coordinates": [ 148.747, -21.578 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68244, "decimalLat": -21.67972 }, "geometry": { "type": "Point", "coordinates": [ 148.682, -21.68 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72674, "decimalLat": -21.60836 }, "geometry": { "type": "Point", "coordinates": [ 148.727, -21.608 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.729263, "decimalLat": -21.724218 }, "geometry": { "type": "Point", "coordinates": [ 148.729, -21.724 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.939027, "decimalLat": -21.333344 }, "geometry": { "type": "Point", "coordinates": [ 148.939, -21.333 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69185, "decimalLat": -21.69812 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7014, "decimalLat": -21.71797 }, "geometry": { "type": "Point", "coordinates": [ 148.701, -21.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.937631, "decimalLat": -21.393658 }, "geometry": { "type": "Point", "coordinates": [ 148.938, -21.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72415, "decimalLat": -21.71679 }, "geometry": { "type": "Point", "coordinates": [ 148.724, -21.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.677368, "decimalLat": -21.179285 }, "geometry": { "type": "Point", "coordinates": [ 148.677, -21.179 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688568, "decimalLat": -21.681665 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.682 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.938403, "decimalLat": -21.33964 }, "geometry": { "type": "Point", "coordinates": [ 148.938, -21.34 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.766334, "decimalLat": -21.535764 }, "geometry": { "type": "Point", "coordinates": [ 148.766, -21.536 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72631, "decimalLat": -21.7199 }, "geometry": { "type": "Point", "coordinates": [ 148.726, -21.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72893, "decimalLat": -21.72331 }, "geometry": { "type": "Point", "coordinates": [ 148.729, -21.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.018333, "decimalLat": -21.530278 }, "geometry": { "type": "Point", "coordinates": [ 149.018, -21.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69813, "decimalLat": -21.70465 }, "geometry": { "type": "Point", "coordinates": [ 148.698, -21.705 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.86352, "decimalLat": -21.45051 }, "geometry": { "type": "Point", "coordinates": [ 148.864, -21.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72306, "decimalLat": -21.71493 }, "geometry": { "type": "Point", "coordinates": [ 148.723, -21.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690464, "decimalLat": -21.697369 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.72917, "decimalLat": -21.7229 }, "geometry": { "type": "Point", "coordinates": [ 148.729, -21.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.947887, "decimalLat": -21.378579 }, "geometry": { "type": "Point", "coordinates": [ 148.948, -21.379 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68609, "decimalLat": -21.68285 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.683 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.71128, "decimalLat": -21.61884 }, "geometry": { "type": "Point", "coordinates": [ 148.711, -21.619 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.93725, "decimalLat": -21.357322 }, "geometry": { "type": "Point", "coordinates": [ 148.937, -21.357 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75773, "decimalLat": -21.5582 }, "geometry": { "type": "Point", "coordinates": [ 148.758, -21.558 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.688982, "decimalLat": -21.699792 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.7 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.889428, "decimalLat": -21.427987 }, "geometry": { "type": "Point", "coordinates": [ 148.889, -21.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.741256, "decimalLat": -21.596167 }, "geometry": { "type": "Point", "coordinates": [ 148.741, -21.596 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.76048, "decimalLat": -21.88086 }, "geometry": { "type": "Point", "coordinates": [ 148.76, -21.881 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.759583, "decimalLat": -21.548756 }, "geometry": { "type": "Point", "coordinates": [ 148.76, -21.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.064748, "decimalLat": -21.33552 }, "geometry": { "type": "Point", "coordinates": [ 149.065, -21.336 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68835, "decimalLat": -21.69033 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686164, "decimalLat": -21.685445 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.909035, "decimalLat": -21.41169 }, "geometry": { "type": "Point", "coordinates": [ 148.909, -21.412 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.886402, "decimalLat": -21.429814 }, "geometry": { "type": "Point", "coordinates": [ 148.886, -21.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690977, "decimalLat": -21.697219 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.667365, "decimalLat": -21.696652 }, "geometry": { "type": "Point", "coordinates": [ 148.667, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.750622, "decimalLat": -21.568952 }, "geometry": { "type": "Point", "coordinates": [ 148.751, -21.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.089172, "decimalLat": -21.359574 }, "geometry": { "type": "Point", "coordinates": [ 149.089, -21.36 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.693109, "decimalLat": -21.690702 }, "geometry": { "type": "Point", "coordinates": [ 148.693, -21.691 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.671299, "decimalLat": -21.634522 }, "geometry": { "type": "Point", "coordinates": [ 148.671, -21.635 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.76582, "decimalLat": -21.53597 }, "geometry": { "type": "Point", "coordinates": [ 148.766, -21.536 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.995397, "decimalLat": -21.713301 }, "geometry": { "type": "Point", "coordinates": [ 148.995, -21.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.88742, "decimalLat": -21.42922 }, "geometry": { "type": "Point", "coordinates": [ 148.887, -21.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.0255, "decimalLat": -21.9892 }, "geometry": { "type": "Point", "coordinates": [ 148.026, -21.989 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.82228, "decimalLat": -21.47111 }, "geometry": { "type": "Point", "coordinates": [ 148.822, -21.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.85381, "decimalLat": -21.459669 }, "geometry": { "type": "Point", "coordinates": [ 148.854, -21.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.75341, "decimalLat": -21.76358 }, "geometry": { "type": "Point", "coordinates": [ 148.753, -21.764 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.739167, "decimalLat": -21.740992 }, "geometry": { "type": "Point", "coordinates": [ 148.739, -21.741 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.803771, "decimalLat": -21.495872 }, "geometry": { "type": "Point", "coordinates": [ 148.804, -21.496 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.792664, "decimalLat": -21.50773 }, "geometry": { "type": "Point", "coordinates": [ 148.793, -21.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.65634, "decimalLat": -21.61945 }, "geometry": { "type": "Point", "coordinates": [ 148.656, -21.619 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.687598, "decimalLat": -21.693283 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68115, "decimalLat": -21.67896 }, "geometry": { "type": "Point", "coordinates": [ 148.681, -21.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.302018, "decimalLat": -22.361284 }, "geometry": { "type": "Point", "coordinates": [ 149.302, -22.361 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.67792, "decimalLat": -21.81638 }, "geometry": { "type": "Point", "coordinates": [ 148.678, -21.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.9294, "decimalLat": -21.81724 }, "geometry": { "type": "Point", "coordinates": [ 148.929, -21.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.882764, "decimalLat": -21.431003 }, "geometry": { "type": "Point", "coordinates": [ 148.883, -21.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.107851, "decimalLat": -21.648568 }, "geometry": { "type": "Point", "coordinates": [ 149.108, -21.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691856, "decimalLat": -21.697174 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73868, "decimalLat": -21.59892 }, "geometry": { "type": "Point", "coordinates": [ 148.739, -21.599 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.733139, "decimalLat": -21.730281 }, "geometry": { "type": "Point", "coordinates": [ 148.733, -21.73 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691467, "decimalLat": -21.69809 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68637, "decimalLat": -21.68497 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690443, "decimalLat": -21.697421 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.29594, "decimalLat": -21.94229 }, "geometry": { "type": "Point", "coordinates": [ 148.296, -21.942 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.94345, "decimalLat": -21.36988 }, "geometry": { "type": "Point", "coordinates": [ 148.943, -21.37 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686373, "decimalLat": -21.684282 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.684 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690611, "decimalLat": -21.697465 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.94656, "decimalLat": -21.381135 }, "geometry": { "type": "Point", "coordinates": [ 148.947, -21.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.902904, "decimalLat": -21.418487 }, "geometry": { "type": "Point", "coordinates": [ 148.903, -21.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68802, "decimalLat": -21.68973 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.69 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68071, "decimalLat": -21.67848 }, "geometry": { "type": "Point", "coordinates": [ 148.681, -21.678 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69507, "decimalLat": -21.7114 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68937, "decimalLat": -21.69242 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.692 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.639664, "decimalLat": -21.707756 }, "geometry": { "type": "Point", "coordinates": [ 148.64, -21.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68214, "decimalLat": -21.80689 }, "geometry": { "type": "Point", "coordinates": [ 148.682, -21.807 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68493, "decimalLat": -21.68533 }, "geometry": { "type": "Point", "coordinates": [ 148.685, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.266234, "decimalLat": -22.630781 }, "geometry": { "type": "Point", "coordinates": [ 149.266, -22.631 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.226987, "decimalLat": -21.299245 }, "geometry": { "type": "Point", "coordinates": [ 149.227, -21.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.689314, "decimalLat": -21.692496 }, "geometry": { "type": "Point", "coordinates": [ 148.689, -21.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69833, "decimalLat": -21.70477 }, "geometry": { "type": "Point", "coordinates": [ 148.698, -21.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.93581, "decimalLat": -21.303888 }, "geometry": { "type": "Point", "coordinates": [ 148.936, -21.304 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.862199, "decimalLat": -21.452315 }, "geometry": { "type": "Point", "coordinates": [ 148.862, -21.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.912456, "decimalLat": -21.410509 }, "geometry": { "type": "Point", "coordinates": [ 148.912, -21.411 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7309, "decimalLat": -21.72667 }, "geometry": { "type": "Point", "coordinates": [ 148.731, -21.727 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.82213, "decimalLat": -21.77134 }, "geometry": { "type": "Point", "coordinates": [ 148.822, -21.771 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73329, "decimalLat": -21.730607 }, "geometry": { "type": "Point", "coordinates": [ 148.733, -21.731 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.683153, "decimalLat": -21.681864 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.682 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.38299, "decimalLat": -21.3958 }, "geometry": { "type": "Point", "coordinates": [ 148.383, -21.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69176, "decimalLat": -21.69712 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.76055, "decimalLat": -21.54311 }, "geometry": { "type": "Point", "coordinates": [ 148.761, -21.543 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68392, "decimalLat": -21.68348 }, "geometry": { "type": "Point", "coordinates": [ 148.684, -21.683 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.710556, "decimalLat": -21.665833 }, "geometry": { "type": "Point", "coordinates": [ 148.711, -21.666 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.690231, "decimalLat": -21.695269 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.695 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69536, "decimalLat": -21.62784 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.628 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.78689, "decimalLat": -21.77063 }, "geometry": { "type": "Point", "coordinates": [ 148.787, -21.771 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 147.726308, "decimalLat": -22.63022 }, "geometry": { "type": "Point", "coordinates": [ 147.726, -22.63 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.85565, "decimalLat": -21.45772 }, "geometry": { "type": "Point", "coordinates": [ 148.856, -21.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73201, "decimalLat": -21.7285 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.694862, "decimalLat": -21.710025 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.907456, "decimalLat": -21.413689 }, "geometry": { "type": "Point", "coordinates": [ 148.907, -21.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73838, "decimalLat": -21.73983 }, "geometry": { "type": "Point", "coordinates": [ 148.738, -21.74 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691605, "decimalLat": -21.697823 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69225, "decimalLat": -21.67565 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.701653, "decimalLat": -21.715789 }, "geometry": { "type": "Point", "coordinates": [ 148.702, -21.716 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.814778, "decimalLat": -21.47742 }, "geometry": { "type": "Point", "coordinates": [ 148.815, -21.477 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.80085, "decimalLat": -21.50078 }, "geometry": { "type": "Point", "coordinates": [ 148.801, -21.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7657, "decimalLat": -21.5362 }, "geometry": { "type": "Point", "coordinates": [ 148.766, -21.536 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686905, "decimalLat": -21.686314 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.686 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.742431, "decimalLat": -21.746253 }, "geometry": { "type": "Point", "coordinates": [ 148.742, -21.746 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68291, "decimalLat": -21.68079 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.681 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.433104, "decimalLat": -21.74309 }, "geometry": { "type": "Point", "coordinates": [ 148.433, -21.743 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.71551, "decimalLat": -21.6166 }, "geometry": { "type": "Point", "coordinates": [ 148.716, -21.617 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.599417, "decimalLat": -21.57978 }, "geometry": { "type": "Point", "coordinates": [ 148.599, -21.58 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.717618, "decimalLat": -21.615428 }, "geometry": { "type": "Point", "coordinates": [ 148.718, -21.615 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.625561, "decimalLat": -21.843089 }, "geometry": { "type": "Point", "coordinates": [ 148.626, -21.843 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7059, "decimalLat": -21.80268 }, "geometry": { "type": "Point", "coordinates": [ 148.706, -21.803 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.915318, "decimalLat": -21.409322 }, "geometry": { "type": "Point", "coordinates": [ 148.915, -21.409 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.937008, "decimalLat": -21.337995 }, "geometry": { "type": "Point", "coordinates": [ 148.937, -21.338 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74232, "decimalLat": -21.74638 }, "geometry": { "type": "Point", "coordinates": [ 148.742, -21.746 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.46313, "decimalLat": -21.55243 }, "geometry": { "type": "Point", "coordinates": [ 148.463, -21.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.694276, "decimalLat": -21.637076 }, "geometry": { "type": "Point", "coordinates": [ 148.694, -21.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.143792, "decimalLat": -21.450832 }, "geometry": { "type": "Point", "coordinates": [ 149.144, -21.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.691854, "decimalLat": -21.698168 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6916, "decimalLat": -21.66402 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.664 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.86318, "decimalLat": -21.45114 }, "geometry": { "type": "Point", "coordinates": [ 148.863, -21.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69229, "decimalLat": -21.67537 }, "geometry": { "type": "Point", "coordinates": [ 148.692, -21.675 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.825503, "decimalLat": -21.470323 }, "geometry": { "type": "Point", "coordinates": [ 148.826, -21.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.885483, "decimalLat": -21.430203 }, "geometry": { "type": "Point", "coordinates": [ 148.885, -21.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.74526, "decimalLat": -21.74958 }, "geometry": { "type": "Point", "coordinates": [ 148.745, -21.75 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.470035, "decimalLat": -21.768355 }, "geometry": { "type": "Point", "coordinates": [ 148.47, -21.768 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.686386, "decimalLat": -21.684953 }, "geometry": { "type": "Point", "coordinates": [ 148.686, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.683123, "decimalLat": -21.681828 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.682 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.32396, "decimalLat": -21.32223 }, "geometry": { "type": "Point", "coordinates": [ 148.324, -21.322 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.694619, "decimalLat": -21.628969 }, "geometry": { "type": "Point", "coordinates": [ 148.695, -21.629 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.739167, "decimalLat": -21.740992 }, "geometry": { "type": "Point", "coordinates": [ 148.739, -21.741 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.73245, "decimalLat": -21.72854 }, "geometry": { "type": "Point", "coordinates": [ 148.732, -21.729 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.71436, "decimalLat": -21.70839 }, "geometry": { "type": "Point", "coordinates": [ 148.714, -21.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.760924, "decimalLat": -21.779763 }, "geometry": { "type": "Point", "coordinates": [ 148.761, -21.78 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.70116, "decimalLat": -21.72042 }, "geometry": { "type": "Point", "coordinates": [ 148.701, -21.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.670316, "decimalLat": -21.634177 }, "geometry": { "type": "Point", "coordinates": [ 148.67, -21.634 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.678939, "decimalLat": -21.674836 }, "geometry": { "type": "Point", "coordinates": [ 148.679, -21.675 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68685, "decimalLat": -21.68531 }, "geometry": { "type": "Point", "coordinates": [ 148.687, -21.685 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.68252, "decimalLat": -21.67996 }, "geometry": { "type": "Point", "coordinates": [ 148.683, -21.68 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.83392, "decimalLat": -21.46818 }, "geometry": { "type": "Point", "coordinates": [ 148.834, -21.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.717705, "decimalLat": -21.615351 }, "geometry": { "type": "Point", "coordinates": [ 148.718, -21.615 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.737258, "decimalLat": -21.737631 }, "geometry": { "type": "Point", "coordinates": [ 148.737, -21.738 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.873383, "decimalLat": -21.439196 }, "geometry": { "type": "Point", "coordinates": [ 148.873, -21.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.689566, "decimalLat": -21.693045 }, "geometry": { "type": "Point", "coordinates": [ 148.69, -21.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.640733, "decimalLat": -21.707475 }, "geometry": { "type": "Point", "coordinates": [ 148.641, -21.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.806901, "decimalLat": -21.488548 }, "geometry": { "type": "Point", "coordinates": [ 148.807, -21.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.639782, "decimalLat": -21.707836 }, "geometry": { "type": "Point", "coordinates": [ 148.64, -21.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.670986, "decimalLat": -21.694431 }, "geometry": { "type": "Point", "coordinates": [ 148.671, -21.694 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.947751, "decimalLat": -21.772426 }, "geometry": { "type": "Point", "coordinates": [ 148.948, -21.772 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.419408, "decimalLat": -21.197385 }, "geometry": { "type": "Point", "coordinates": [ 148.419, -21.197 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.76894, "decimalLat": -21.77697 }, "geometry": { "type": "Point", "coordinates": [ 148.769, -21.777 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.687578, "decimalLat": -21.679614 }, "geometry": { "type": "Point", "coordinates": [ 148.688, -21.68 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.7257, "decimalLat": -21.71886 }, "geometry": { "type": "Point", "coordinates": [ 148.726, -21.719 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.742652, "decimalLat": -21.746633 }, "geometry": { "type": "Point", "coordinates": [ 148.743, -21.747 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.759353, "decimalLat": -21.775294 }, "geometry": { "type": "Point", "coordinates": [ 148.759, -21.775 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.69095, "decimalLat": -21.697757 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.93706, "decimalLat": -21.39504 }, "geometry": { "type": "Point", "coordinates": [ 148.937, -21.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.6911, "decimalLat": -21.697513 }, "geometry": { "type": "Point", "coordinates": [ 148.691, -21.698 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.765685, "decimalLat": -21.536538 }, "geometry": { "type": "Point", "coordinates": [ 148.766, -21.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.744567, "decimalLat": -21.750061 }, "geometry": { "type": "Point", "coordinates": [ 148.745, -21.75 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.573744, "decimalLat": -21.862714 }, "geometry": { "type": "Point", "coordinates": [ 148.574, -21.863 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.737381, "decimalLat": -21.737739 }, "geometry": { "type": "Point", "coordinates": [ 148.737, -21.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.717861, "decimalLat": -21.617058 }, "geometry": { "type": "Point", "coordinates": [ 148.718, -21.617 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 148.738831, "decimalLat": -21.740422 }, "geometry": { "type": "Point", "coordinates": [ 148.739, -21.74 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553413, "decimalLat": -28.331479 }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.545955, "decimalLat": -28.335426 }, "geometry": { "type": "Point", "coordinates": [ 153.546, -28.335 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553413, "decimalLat": -28.331479 }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553413, "decimalLat": -28.331479 }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.545955, "decimalLat": -28.335426 }, "geometry": { "type": "Point", "coordinates": [ 153.546, -28.335 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.545955, "decimalLat": -28.335426 }, "geometry": { "type": "Point", "coordinates": [ 153.546, -28.335 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.226262, "decimalLat": -27.61296 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.071675, "decimalLat": -27.531679 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278664, "decimalLat": -27.534972 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230779, "decimalLat": -27.498803 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.228164, "decimalLat": -27.50811 }, "geometry": { "type": "Point", "coordinates": [ 153.228, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255448, "decimalLat": -27.517275 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.279771, "decimalLat": -27.525156 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.01657, "decimalLat": -27.180783 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -27.181 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.414757, "decimalLat": -27.546022 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.967008, "decimalLat": -26.702277 }, "geometry": { "type": "Point", "coordinates": [ 152.967, -26.702 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.997803, "decimalLat": -26.438253 }, "geometry": { "type": "Point", "coordinates": [ 152.998, -26.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273854, "decimalLat": -27.538697 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.222752, "decimalLat": -27.497621 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234311, "decimalLat": -27.502846 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45231, "decimalLat": -28.09557 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281712, "decimalLat": -27.525438 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284016, "decimalLat": -27.525139 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.117977, "decimalLat": -27.87661 }, "geometry": { "type": "Point", "coordinates": [ 153.118, -27.877 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271039, "decimalLat": -27.553351 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248241, "decimalLat": -27.489955 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45184, "decimalLat": -28.10023 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260685, "decimalLat": -27.548318 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.264754, "decimalLat": -27.59517 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -27.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.985132, "decimalLat": -27.162829 }, "geometry": { "type": "Point", "coordinates": [ 152.985, -27.163 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241383, "decimalLat": -27.521869 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -27.522 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89065 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.848429, "decimalLat": -27.531786 }, "geometry": { "type": "Point", "coordinates": [ 152.848, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249353, "decimalLat": -27.594953 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256282, "decimalLat": -27.548577 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249353, "decimalLat": -27.594953 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234088, "decimalLat": -27.488126 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281937, "decimalLat": -27.525665 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.262084, "decimalLat": -27.540981 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.097658, "decimalLat": -27.814502 }, "geometry": { "type": "Point", "coordinates": [ 153.098, -27.815 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.327684, "decimalLat": -28.094661 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249199, "decimalLat": -27.490105 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32304, "decimalLat": -27.89017 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -27.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45116, "decimalLat": -28.14154 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.42706, "decimalLat": -28.11845 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244402, "decimalLat": -27.511693 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230775, "decimalLat": -27.498803 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24884, "decimalLat": -27.511714 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284167, "decimalLat": -27.525293 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249353, "decimalLat": -27.594953 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204148, "decimalLat": -27.549201 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206093, "decimalLat": -27.527771 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198872, "decimalLat": -27.544641 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282182, "decimalLat": -27.53148 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255852, "decimalLat": -27.548212 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284491, "decimalLat": -27.525424 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230154, "decimalLat": -27.542128 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256283, "decimalLat": -27.548526 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256273, "decimalLat": -27.548541 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281929, "decimalLat": -27.532135 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244799, "decimalLat": -27.626789 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.627 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37078, "decimalLat": -27.83763 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -27.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284496, "decimalLat": -27.524676 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282285, "decimalLat": -27.53295 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254192, "decimalLat": -27.502952 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.635337, "decimalLat": -27.790618 }, "geometry": { "type": "Point", "coordinates": [ 152.635, -27.791 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273683, "decimalLat": -27.53772 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245877, "decimalLat": -27.497832 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271391, "decimalLat": -27.553172 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274127, "decimalLat": -27.531922 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.41465, "decimalLat": -28.1445 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250648, "decimalLat": -27.516038 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273797, "decimalLat": -27.5374 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252257, "decimalLat": -27.547545 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283364, "decimalLat": -27.916601 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090355, "decimalLat": -27.535474 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272739, "decimalLat": -27.539057 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271039, "decimalLat": -27.553351 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.043836, "decimalLat": -26.667472 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -26.667 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284176, "decimalLat": -27.525153 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250492, "decimalLat": -27.539444 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204179, "decimalLat": -27.546095 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244937, "decimalLat": -27.490672 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245299, "decimalLat": -27.501072 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284088, "decimalLat": -27.525192 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271896, "decimalLat": -27.554209 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.937074, "decimalLat": -27.380999 }, "geometry": { "type": "Point", "coordinates": [ 152.937, -27.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283321, "decimalLat": -27.525654 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246283, "decimalLat": -27.507949 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247726, "decimalLat": -27.490861 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.236671, "decimalLat": -27.489999 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.35659, "decimalLat": -27.93739 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.937 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.41671, "decimalLat": -28.14359 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25211, "decimalLat": -27.53251 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274219, "decimalLat": -27.540947 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.38495, "decimalLat": -28.11045 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -28.11 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250465, "decimalLat": -27.515222 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256279, "decimalLat": -27.548521 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249526, "decimalLat": -27.490951 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260419, "decimalLat": -27.50354 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.735376, "decimalLat": -26.285213 }, "geometry": { "type": "Point", "coordinates": [ 152.735, -26.285 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25195, "decimalLat": -27.514699 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.515 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282462, "decimalLat": -27.533302 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.857114, "decimalLat": -25.320127 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -25.32 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.40965, "decimalLat": -28.11395 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.114 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281316, "decimalLat": -27.583841 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.584 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.43926, "decimalLat": -28.14409 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283307, "decimalLat": -27.525966 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245162, "decimalLat": -27.501323 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283474, "decimalLat": -27.525871 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242037, "decimalLat": -27.491286 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070572, "decimalLat": -27.502484 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32912, "decimalLat": -27.89066 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.40567, "decimalLat": -28.11538 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.115 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23056, "decimalLat": -27.49748 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273691, "decimalLat": -27.537749 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252611, "decimalLat": -27.553451 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251608, "decimalLat": -27.556523 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.557 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.176877, "decimalLat": -27.536777 }, "geometry": { "type": "Point", "coordinates": [ 153.177, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273683, "decimalLat": -27.538729 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256464, "decimalLat": -27.548777 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28358, "decimalLat": -27.534233 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.97824, "decimalLat": -27.381574 }, "geometry": { "type": "Point", "coordinates": [ 152.978, -27.382 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273662, "decimalLat": -27.543139 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27206, "decimalLat": -27.551436 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256377, "decimalLat": -27.548852 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.384901, "decimalLat": -27.915992 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271952, "decimalLat": -27.54442 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242601, "decimalLat": -27.513133 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.089977, "decimalLat": -27.535222 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.34165, "decimalLat": -27.9122 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -27.912 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.457392, "decimalLat": -28.093919 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.276628, "decimalLat": -27.529556 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234749, "decimalLat": -27.494664 }, "geometry": { "type": "Point", "coordinates": [ 153.235, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.302276, "decimalLat": -27.569094 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271474, "decimalLat": -27.553103 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.269964, "decimalLat": -27.545519 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37702, "decimalLat": -27.95863 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -27.959 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283858, "decimalLat": -27.525564 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27359, "decimalLat": -27.553627 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256276, "decimalLat": -27.548573 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.37114, "decimalLat": -28.11066 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.095341, "decimalLat": -27.526693 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231434, "decimalLat": -27.500197 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272081, "decimalLat": -27.551979 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.224888, "decimalLat": -27.507564 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282466, "decimalLat": -27.529655 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.228892, "decimalLat": -27.550143 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.836679, "decimalLat": -26.530611 }, "geometry": { "type": "Point", "coordinates": [ 151.837, -26.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233303, "decimalLat": -27.48803 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284467, "decimalLat": -27.524591 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.172751, "decimalLat": -27.715559 }, "geometry": { "type": "Point", "coordinates": [ 153.173, -27.716 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.45302, "decimalLat": -28.09636 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256259, "decimalLat": -27.548566 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203504, "decimalLat": -27.549476 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.264019, "decimalLat": -27.53398 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28188, "decimalLat": -27.531929 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.297373, "decimalLat": -27.569036 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273411, "decimalLat": -27.5587 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.559 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24517, "decimalLat": -27.627242 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.627 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252125, "decimalLat": -27.542327 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.277223, "decimalLat": -27.544322 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249815, "decimalLat": -27.511729 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256276, "decimalLat": -27.548563 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.182013, "decimalLat": -27.538627 }, "geometry": { "type": "Point", "coordinates": [ 153.182, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25352, "decimalLat": -27.540455 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.976693, "decimalLat": -27.27332 }, "geometry": { "type": "Point", "coordinates": [ 152.977, -27.273 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27, "decimalLat": -27.55 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.127007, "decimalLat": -27.759123 }, "geometry": { "type": "Point", "coordinates": [ 153.127, -27.759 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.277284, "decimalLat": -27.544294 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103554, "decimalLat": -27.511491 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.44696, "decimalLat": -28.09703 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.32894, "decimalLat": -27.89069 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -27.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.894867, "decimalLat": -34.004089 }, "geometry": { "type": "Point", "coordinates": [ 150.895, -34.004 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196728, "decimalLat": -27.503093 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.277942, "decimalLat": -27.581733 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.582 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.985595, "decimalLat": -27.248834 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -27.249 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274759, "decimalLat": -27.539923 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248775, "decimalLat": -27.510691 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.35896, "decimalLat": -27.93334 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -27.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271068, "decimalLat": -27.539747 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066595, "decimalLat": -26.689958 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -26.69 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247726, "decimalLat": -27.489611 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270659, "decimalLat": -27.53866 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.220162, "decimalLat": -27.513239 }, "geometry": { "type": "Point", "coordinates": [ 153.22, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.918004, "decimalLat": -27.409476 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -27.409 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.257344, "decimalLat": -27.5477 }, "geometry": { "type": "Point", "coordinates": [ 153.257, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.978809, "decimalLat": -27.120487 }, "geometry": { "type": "Point", "coordinates": [ 152.979, -27.12 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282083, "decimalLat": -27.531713 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206057, "decimalLat": -27.497618 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270126, "decimalLat": -27.552161 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245125, "decimalLat": -27.500945 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282223, "decimalLat": -27.532878 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.217528, "decimalLat": -27.493856 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252313, "decimalLat": -27.494257 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.218785, "decimalLat": -27.493762 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.226958, "decimalLat": -27.560734 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.561 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231434, "decimalLat": -27.500197 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.860825, "decimalLat": -27.54885 }, "geometry": { "type": "Point", "coordinates": [ 152.861, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.549493, "decimalLat": -28.556988 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.557 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278386, "decimalLat": -27.525336 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197097, "decimalLat": -27.491142 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244636, "decimalLat": -27.498973 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.296943, "decimalLat": -27.595599 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.596 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284058, "decimalLat": -27.525031 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.279939, "decimalLat": -27.534164 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.276855, "decimalLat": -27.544214 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.195979, "decimalLat": -27.492193 }, "geometry": { "type": "Point", "coordinates": [ 153.196, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252995, "decimalLat": -27.531425 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249587, "decimalLat": -27.556563 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.557 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.360839, "decimalLat": -27.568508 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.192864, "decimalLat": -27.51694 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -27.517 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281835, "decimalLat": -27.525361 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281677, "decimalLat": -27.526888 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.281932, "decimalLat": -27.532405 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.228867, "decimalLat": -27.498658 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251681, "decimalLat": -27.531721 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.276249, "decimalLat": -27.534912 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.743289, "decimalLat": -27.419252 }, "geometry": { "type": "Point", "coordinates": [ 151.743, -27.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.279135, "decimalLat": -27.545254 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230385, "decimalLat": -27.500782 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282084, "decimalLat": -27.53143 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281216, "decimalLat": -27.529448 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278838, "decimalLat": -27.525267 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.935811, "decimalLat": -27.320861 }, "geometry": { "type": "Point", "coordinates": [ 152.936, -27.321 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.965402, "decimalLat": -27.280642 }, "geometry": { "type": "Point", "coordinates": [ 152.965, -27.281 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260903, "decimalLat": -27.54863 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.662895, "decimalLat": -26.24252 }, "geometry": { "type": "Point", "coordinates": [ 152.663, -26.243 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 150.465243, "decimalLat": -34.490357 }, "geometry": { "type": "Point", "coordinates": [ 150.465, -34.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.934325, "decimalLat": -27.480369 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -27.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246366, "decimalLat": -27.603566 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.604 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273846, "decimalLat": -27.535603 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.953827, "decimalLat": -27.212189 }, "geometry": { "type": "Point", "coordinates": [ 152.954, -27.212 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.276102, "decimalLat": -27.536857 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256251, "decimalLat": -27.548597 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282986, "decimalLat": -27.533948 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273846, "decimalLat": -27.535603 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.360839, "decimalLat": -27.568508 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.294769, "decimalLat": -27.612663 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.235328, "decimalLat": -27.496323 }, "geometry": { "type": "Point", "coordinates": [ 153.235, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281667, "decimalLat": -27.53101 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271932, "decimalLat": -27.549659 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.023247, "decimalLat": -26.725784 }, "geometry": { "type": "Point", "coordinates": [ 153.023, -26.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 151.637059, "decimalLat": -25.426213 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -25.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283422, "decimalLat": -27.525783 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 151.637059, "decimalLat": -25.426213 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -25.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244863, "decimalLat": -27.501126 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.261858, "decimalLat": -27.519014 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256277, "decimalLat": -27.548573 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.269463, "decimalLat": -27.54624 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274536, "decimalLat": -27.539412 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08068, "decimalLat": -27.508825 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.276684, "decimalLat": -27.526613 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.393838, "decimalLat": -28.106415 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.106 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.932923, "decimalLat": -27.316825 }, "geometry": { "type": "Point", "coordinates": [ 152.933, -27.317 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252507, "decimalLat": -27.511702 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256279, "decimalLat": -27.548587 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.262485, "decimalLat": -27.546019 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.648759, "decimalLat": -26.22168 }, "geometry": { "type": "Point", "coordinates": [ 152.649, -26.222 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.115224, "decimalLat": -27.758552 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.759 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271287, "decimalLat": -27.546443 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 151.637059, "decimalLat": -25.426213 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -25.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.993304, "decimalLat": -27.241801 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.236582, "decimalLat": -27.489838 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241201, "decimalLat": -27.490285 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239507, "decimalLat": -27.4938 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258899, "decimalLat": -27.519062 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239467, "decimalLat": -27.499992 }, "geometry": { "type": "Point", "coordinates": [ 153.239, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.171944, "decimalLat": -27.730278 }, "geometry": { "type": "Point", "coordinates": [ 153.172, -27.73 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274127, "decimalLat": -27.531922 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295714, "decimalLat": -27.611128 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -27.611 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.28388, "decimalLat": -27.525093 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.009896, "decimalLat": -27.250757 }, "geometry": { "type": "Point", "coordinates": [ 153.01, -27.251 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27232, "decimalLat": -27.539083 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091089, "decimalLat": -27.49898 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.304835, "decimalLat": -27.564712 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -27.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.781122, "decimalLat": -26.09176 }, "geometry": { "type": "Point", "coordinates": [ 152.781, -26.092 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30421, "decimalLat": -27.566208 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.257154, "decimalLat": -27.553088 }, "geometry": { "type": "Point", "coordinates": [ 153.257, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256294, "decimalLat": -27.548887 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.265147, "decimalLat": -28.03563 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -28.036 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.981586, "decimalLat": -27.240651 }, "geometry": { "type": "Point", "coordinates": [ 152.982, -27.241 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231814, "decimalLat": -27.495174 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.945583, "decimalLat": -27.304296 }, "geometry": { "type": "Point", "coordinates": [ 152.946, -27.304 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28186, "decimalLat": -27.525573 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.714682, "decimalLat": -26.418161 }, "geometry": { "type": "Point", "coordinates": [ 152.715, -26.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.257447, "decimalLat": -27.547654 }, "geometry": { "type": "Point", "coordinates": [ 153.257, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281941, "decimalLat": -27.525585 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.214924, "decimalLat": -27.49182 }, "geometry": { "type": "Point", "coordinates": [ 153.215, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197267, "decimalLat": -27.567269 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.567 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24513, "decimalLat": -27.501433 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.266502, "decimalLat": -27.548098 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271063, "decimalLat": -27.553363 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281854, "decimalLat": -27.531066 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.294123, "decimalLat": -27.579389 }, "geometry": { "type": "Point", "coordinates": [ 153.294, -27.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281422, "decimalLat": -27.529471 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283527, "decimalLat": -27.525655 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284144, "decimalLat": -27.525161 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282033, "decimalLat": -27.532588 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271214, "decimalLat": -27.540236 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295472, "decimalLat": -27.609531 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.61 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.261206, "decimalLat": -27.519954 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.52 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274244, "decimalLat": -27.538701 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225405, "decimalLat": -27.502782 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278945, "decimalLat": -27.556866 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061897, "decimalLat": -27.533286 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.251569, "decimalLat": -27.531575 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274133, "decimalLat": -27.531917 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.237628, "decimalLat": -27.503366 }, "geometry": { "type": "Point", "coordinates": [ 153.238, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.306823, "decimalLat": -27.642425 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -27.642 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272051, "decimalLat": -27.529153 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.044699, "decimalLat": -27.545639 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.097131, "decimalLat": -27.502231 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.085635, "decimalLat": -27.516341 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284142, "decimalLat": -27.525216 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27625, "decimalLat": -27.535045 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281791, "decimalLat": -27.530216 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061107, "decimalLat": -27.515753 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28264, "decimalLat": -27.533105 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.228972, "decimalLat": -27.498504 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.111616, "decimalLat": -27.527939 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -27.528 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281907, "decimalLat": -27.525571 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.95015, "decimalLat": -27.484275 }, "geometry": { "type": "Point", "coordinates": [ 152.95, -27.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281833, "decimalLat": -27.525348 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.279203, "decimalLat": -27.582653 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.583 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273615, "decimalLat": -27.539369 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.931854, "decimalLat": -27.518757 }, "geometry": { "type": "Point", "coordinates": [ 152.932, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273704, "decimalLat": -27.53772 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.281857, "decimalLat": -27.52556 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2821, "decimalLat": -27.52559 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274577, "decimalLat": -27.538832 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 2, "stateProvi": "Queensland", "decimalLon": 152.955766, "decimalLat": -27.293143 }, "geometry": { "type": "Point", "coordinates": [ 152.956, -27.293 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.224881, "decimalLat": -27.498527 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225558, "decimalLat": -27.502571 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247405, "decimalLat": -27.490044 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.092388, "decimalLat": -27.361139 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -27.361 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271057, "decimalLat": -27.553389 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.403531, "decimalLat": -27.49663 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.180918, "decimalLat": -27.537622 }, "geometry": { "type": "Point", "coordinates": [ 153.181, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.257785, "decimalLat": -27.547652 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.243088, "decimalLat": -27.535445 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256277, "decimalLat": -27.548579 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282044, "decimalLat": -27.527018 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069879, "decimalLat": -27.525094 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230668, "decimalLat": -27.497378 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.140807, "decimalLat": -27.660842 }, "geometry": { "type": "Point", "coordinates": [ 153.141, -27.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260023, "decimalLat": -27.549981 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273633, "decimalLat": -27.536739 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.721535, "decimalLat": -26.62207 }, "geometry": { "type": "Point", "coordinates": [ 151.722, -26.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230653, "decimalLat": -27.498013 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282015, "decimalLat": -27.525506 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283303, "decimalLat": -27.525751 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.0992, "decimalLat": -27.513242 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.236371, "decimalLat": -27.48934 }, "geometry": { "type": "Point", "coordinates": [ 153.236, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274545, "decimalLat": -27.539408 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.009045, "decimalLat": -27.776557 }, "geometry": { "type": "Point", "coordinates": [ 153.009, -27.777 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.284114, "decimalLat": -27.525289 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.277316, "decimalLat": -27.525935 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.295324, "decimalLat": -27.590237 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -27.59 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271208, "decimalLat": -27.53795 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.400767, "decimalLat": -27.498505 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.268833, "decimalLat": -27.629437 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -27.629 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 24, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.226944, "decimalLat": -27.560833 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252526, "decimalLat": -27.547594 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.272954, "decimalLat": -27.529089 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.937847, "decimalLat": -27.326559 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -27.327 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090463, "decimalLat": -27.535454 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251561, "decimalLat": -27.5156 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250575, "decimalLat": -27.531309 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273647, "decimalLat": -27.539414 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28195, "decimalLat": -27.531479 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271174, "decimalLat": -27.541191 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.229274, "decimalLat": -27.549624 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245087, "decimalLat": -27.501273 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27198, "decimalLat": -27.554214 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.057243, "decimalLat": -27.535522 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06202, "decimalLat": -27.55109 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284132, "decimalLat": -27.525198 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281241, "decimalLat": -27.529342 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.044673, "decimalLat": -27.5458 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281321, "decimalLat": -27.529464 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249341, "decimalLat": -27.490113 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.222909, "decimalLat": -27.499832 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281795, "decimalLat": -27.530721 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.387158, "decimalLat": -27.620528 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -27.621 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28198, "decimalLat": -27.532533 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.9927, "decimalLat": -27.295 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.295 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 152.566907, "decimalLat": -27.504777 }, "geometry": { "type": "Point", "coordinates": [ 152.567, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.275123, "decimalLat": -27.543984 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281905, "decimalLat": -27.530818 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282608, "decimalLat": -27.526293 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.051676, "decimalLat": -26.726645 }, "geometry": { "type": "Point", "coordinates": [ 152.052, -26.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271762, "decimalLat": -27.529905 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.187946, "decimalLat": -27.721428 }, "geometry": { "type": "Point", "coordinates": [ 153.188, -27.721 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.228661, "decimalLat": -27.49906 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245244, "decimalLat": -27.501103 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.031654, "decimalLat": -26.747028 }, "geometry": { "type": "Point", "coordinates": [ 153.032, -26.747 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.940209, "decimalLat": -27.250055 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -27.25 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.044673, "decimalLat": -27.5458 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231812, "decimalLat": -27.501515 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252497, "decimalLat": -27.562619 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.563 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.388045, "decimalLat": -28.117917 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -28.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255844, "decimalLat": -27.548412 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274856, "decimalLat": -27.554832 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.994649, "decimalLat": -26.458721 }, "geometry": { "type": "Point", "coordinates": [ 152.995, -26.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.530099, "decimalLat": -27.427456 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -27.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.067017, "decimalLat": -27.555003 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28305, "decimalLat": -27.525783 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246628, "decimalLat": -27.499461 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281242, "decimalLat": -27.529476 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.269298, "decimalLat": -27.538797 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.207929, "decimalLat": -27.502657 }, "geometry": { "type": "Point", "coordinates": [ 153.208, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283476, "decimalLat": -27.534347 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283615, "decimalLat": -27.526354 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248205, "decimalLat": -27.490351 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.273885, "decimalLat": -27.183446 }, "geometry": { "type": "Point", "coordinates": [ 151.274, -27.183 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.224369, "decimalLat": -27.508354 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274213, "decimalLat": -27.538807 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281696, "decimalLat": -27.583326 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.583 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.098861, "decimalLat": -27.530833 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.128716, "decimalLat": -27.523154 }, "geometry": { "type": "Point", "coordinates": [ 152.129, -27.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.17157, "decimalLat": -27.50149 }, "geometry": { "type": "Point", "coordinates": [ 153.172, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.084203, "decimalLat": -27.529661 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.282594, "decimalLat": -27.526328 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245241, "decimalLat": -27.490365 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.082201, "decimalLat": -27.502319 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282211, "decimalLat": -27.530826 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271545, "decimalLat": -27.553196 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.426778, "decimalLat": -27.247327 }, "geometry": { "type": "Point", "coordinates": [ 152.427, -27.247 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281417, "decimalLat": -27.532805 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.208108, "decimalLat": -27.493064 }, "geometry": { "type": "Point", "coordinates": [ 153.208, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225628, "decimalLat": -27.502771 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.267719, "decimalLat": -27.525897 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272032, "decimalLat": -27.554336 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225423, "decimalLat": -27.503566 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.050781, "decimalLat": -27.557954 }, "geometry": { "type": "Point", "coordinates": [ 153.051, -27.558 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281842, "decimalLat": -27.530719 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23679, "decimalLat": -27.490582 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248025, "decimalLat": -27.490864 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278253, "decimalLat": -27.537107 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278926, "decimalLat": -27.532693 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20949, "decimalLat": -27.530057 }, "geometry": { "type": "Point", "coordinates": [ 153.209, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252144, "decimalLat": -27.551569 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273809, "decimalLat": -27.536862 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254698, "decimalLat": -27.543145 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284023, "decimalLat": -27.525878 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283812, "decimalLat": -27.525552 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.307047, "decimalLat": -28.030977 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27724, "decimalLat": -27.544324 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.172578, "decimalLat": -27.73576 }, "geometry": { "type": "Point", "coordinates": [ 153.173, -27.736 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272898, "decimalLat": -27.543553 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223372, "decimalLat": -27.497722 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274184, "decimalLat": -27.526147 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272574, "decimalLat": -27.536808 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.336411, "decimalLat": -28.033499 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -28.033 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201852, "decimalLat": -27.509185 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.090375, "decimalLat": -27.535427 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.74624, "decimalLat": -27.979445 }, "geometry": { "type": "Point", "coordinates": [ 152.746, -27.979 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.271366, "decimalLat": -27.574398 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256295, "decimalLat": -27.548585 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.055861, "decimalLat": -27.543031 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.890006, "decimalLat": -27.410808 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -27.411 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.054383, "decimalLat": -27.551003 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.259832, "decimalLat": -27.519138 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2761, "decimalLat": -27.544253 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.899858, "decimalLat": -27.622251 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -27.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.093768, "decimalLat": -27.496883 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204083, "decimalLat": -27.547146 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284122, "decimalLat": -27.525222 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.225217, "decimalLat": -27.498679 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 152.920006, "decimalLat": -27.408414 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -27.408 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.211066, "decimalLat": -27.531819 }, "geometry": { "type": "Point", "coordinates": [ 153.211, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.282594, "decimalLat": -27.526337 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.520288, "decimalLat": -27.429747 }, "geometry": { "type": "Point", "coordinates": [ 153.52, -27.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281857, "decimalLat": -27.525333 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252171, "decimalLat": -27.53309 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.970421, "decimalLat": -27.299113 }, "geometry": { "type": "Point", "coordinates": [ 152.97, -27.299 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.061599, "decimalLat": -26.473089 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -26.473 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.968333, "decimalLat": -27.146463 }, "geometry": { "type": "Point", "coordinates": [ 152.968, -27.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27724, "decimalLat": -27.544326 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.863584, "decimalLat": -26.142408 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -26.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.27384, "decimalLat": -27.537421 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283958, "decimalLat": -27.525734 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.239319, "decimalLat": -27.473538 }, "geometry": { "type": "Point", "coordinates": [ 153.239, -27.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.251526, "decimalLat": -27.512101 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249353, "decimalLat": -27.594953 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28193, "decimalLat": -27.52556 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.208314, "decimalLat": -27.913344 }, "geometry": { "type": "Point", "coordinates": [ 153.208, -27.913 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249353, "decimalLat": -27.594953 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284091, "decimalLat": -27.525304 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.228861, "decimalLat": -27.498112 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.257852, "decimalLat": -27.49977 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231282, "decimalLat": -27.646883 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.647 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.285787, "decimalLat": -27.52349 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -27.523 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278462, "decimalLat": -27.535336 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273608, "decimalLat": -27.53803 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278539, "decimalLat": -27.536918 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.047335, "decimalLat": -27.725328 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -27.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.404711, "decimalLat": -27.494041 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.281832, "decimalLat": -27.525597 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197601, "decimalLat": -27.568554 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282105, "decimalLat": -27.531424 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.226969, "decimalLat": -27.560763 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244471, "decimalLat": -27.626596 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.627 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244772, "decimalLat": -27.492232 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.137922, "decimalLat": -27.81932 }, "geometry": { "type": "Point", "coordinates": [ 153.138, -27.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.360839, "decimalLat": -27.568508 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.464432, "decimalLat": -26.675976 }, "geometry": { "type": "Point", "coordinates": [ 152.464, -26.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21198, "decimalLat": -27.494819 }, "geometry": { "type": "Point", "coordinates": [ 153.212, -27.495 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.938485, "decimalLat": -27.123759 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -27.124 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27186, "decimalLat": -27.55312 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282117, "decimalLat": -27.532919 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278542, "decimalLat": -27.534885 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.276145, "decimalLat": -27.537522 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253198, "decimalLat": -27.547425 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.168057, "decimalLat": -28.018894 }, "geometry": { "type": "Point", "coordinates": [ 153.168, -28.019 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274746, "decimalLat": -27.539818 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.226957, "decimalLat": -27.503289 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.258147, "decimalLat": -27.597951 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.598 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253477, "decimalLat": -27.551801 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281678, "decimalLat": -27.532166 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233879, "decimalLat": -27.500485 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273877, "decimalLat": -27.537418 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248737, "decimalLat": -27.489999 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.183526, "decimalLat": -27.72063 }, "geometry": { "type": "Point", "coordinates": [ 153.184, -27.721 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.281247, "decimalLat": -27.529782 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.241383, "decimalLat": -27.521869 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -27.522 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271151, "decimalLat": -27.553354 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248327, "decimalLat": -27.490205 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.918321, "decimalLat": -27.408595 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -27.409 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282155, "decimalLat": -27.525545 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 2, "stateProvi": "Queensland", "decimalLon": 152.881365, "decimalLat": -26.456589 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -26.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281829, "decimalLat": -27.530601 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273704, "decimalLat": -27.537739 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273261, "decimalLat": -27.551912 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221956, "decimalLat": -27.501956 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.103795, "decimalLat": -27.518415 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -27.518 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274127, "decimalLat": -27.531922 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.326683, "decimalLat": -28.090355 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -28.09 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253586, "decimalLat": -27.495923 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234082, "decimalLat": -27.500297 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058915, "decimalLat": -27.538924 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20425, "decimalLat": -27.489384 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.176889, "decimalLat": -27.536648 }, "geometry": { "type": "Point", "coordinates": [ 153.177, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252426, "decimalLat": -27.531641 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282147, "decimalLat": -27.525579 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.270969, "decimalLat": -27.553354 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.24551, "decimalLat": -27.500837 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.264014, "decimalLat": -27.540803 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.254277, "decimalLat": -27.495896 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.276128, "decimalLat": -27.537452 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.261312, "decimalLat": -27.543984 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256304, "decimalLat": -27.548884 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.250239, "decimalLat": -27.508447 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -27.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256374, "decimalLat": -27.548836 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.276089, "decimalLat": -27.537481 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.257844, "decimalLat": -27.639864 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.64 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.951171, "decimalLat": -27.294576 }, "geometry": { "type": "Point", "coordinates": [ 152.951, -27.295 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256286, "decimalLat": -27.548888 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.086043, "decimalLat": -27.516295 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256285, "decimalLat": -27.548583 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.195388, "decimalLat": -27.73659 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -27.737 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256281, "decimalLat": -27.548581 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256283, "decimalLat": -27.548885 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28415, "decimalLat": -27.525046 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.866323, "decimalLat": -27.521212 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -27.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.091026, "decimalLat": -27.499164 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230403, "decimalLat": -27.498787 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256308, "decimalLat": -27.548552 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.272708, "decimalLat": -27.539005 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249353, "decimalLat": -27.594953 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.974356, "decimalLat": -27.646747 }, "geometry": { "type": "Point", "coordinates": [ 151.974, -27.647 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245115, "decimalLat": -27.50102 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256251, "decimalLat": -27.548592 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271201, "decimalLat": -27.54093 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.229604, "decimalLat": -27.513722 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.922053, "decimalLat": -27.442353 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -27.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.481265, "decimalLat": -26.20498 }, "geometry": { "type": "Point", "coordinates": [ 152.481, -26.205 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249353, "decimalLat": -27.594953 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.231812, "decimalLat": -27.55293 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.357291, "decimalLat": -27.837164 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.837 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.193219, "decimalLat": -27.69999 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -27.7 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271101, "decimalLat": -27.539073 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22698, "decimalLat": -27.560807 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283544, "decimalLat": -27.534776 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.207747, "decimalLat": -27.502743 }, "geometry": { "type": "Point", "coordinates": [ 153.208, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282146, "decimalLat": -27.531397 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.203368, "decimalLat": -27.549772 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28291, "decimalLat": -27.52654 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283697, "decimalLat": -27.525598 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080556, "decimalLat": -27.513111 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.236511, "decimalLat": -27.489961 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252171, "decimalLat": -27.53309 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271319, "decimalLat": -27.553206 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282138, "decimalLat": -27.532961 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.248475, "decimalLat": -27.490059 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282195, "decimalLat": -27.530983 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233122, "decimalLat": -27.507145 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248017, "decimalLat": -27.511214 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.110991, "decimalLat": -27.530511 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282126, "decimalLat": -27.531453 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.280963, "decimalLat": -27.529171 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.438306, "decimalLat": -27.401315 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.077939, "decimalLat": -27.552112 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2669, "decimalLat": -27.546486 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283336, "decimalLat": -27.534299 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.217213, "decimalLat": -27.54766 }, "geometry": { "type": "Point", "coordinates": [ 153.217, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.182175, "decimalLat": -27.538266 }, "geometry": { "type": "Point", "coordinates": [ 153.182, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.277665, "decimalLat": -27.558171 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.558 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248106, "decimalLat": -27.49039 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284479, "decimalLat": -27.524625 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.20129, "decimalLat": -27.488257 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.045259, "decimalLat": -27.558295 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -27.558 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.248361, "decimalLat": -27.490224 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247701, "decimalLat": -27.51163 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.200777, "decimalLat": -27.549518 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090197, "decimalLat": -27.535557 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.21508, "decimalLat": -27.491989 }, "geometry": { "type": "Point", "coordinates": [ 153.215, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248298, "decimalLat": -27.490096 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283702, "decimalLat": -27.525437 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.257245, "decimalLat": -27.498714 }, "geometry": { "type": "Point", "coordinates": [ 153.257, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259083, "decimalLat": -27.519006 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.228141, "decimalLat": -27.499001 }, "geometry": { "type": "Point", "coordinates": [ 153.228, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242402, "decimalLat": -27.489412 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.22308, "decimalLat": -27.499647 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271079, "decimalLat": -27.539041 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27457, "decimalLat": -27.538856 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281942, "decimalLat": -27.525324 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.263488, "decimalLat": -27.540522 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282841, "decimalLat": -27.526547 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.284017, "decimalLat": -27.525353 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.035141, "decimalLat": -27.54131 }, "geometry": { "type": "Point", "coordinates": [ 153.035, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.360839, "decimalLat": -27.568508 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.296875, "decimalLat": -27.568895 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070976, "decimalLat": -27.531597 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256393, "decimalLat": -27.524211 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282168, "decimalLat": -27.532754 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248509, "decimalLat": -27.490837 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.261716, "decimalLat": -27.51932 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.283498, "decimalLat": -27.525821 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271446, "decimalLat": -27.539012 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.276254, "decimalLat": -27.534758 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278906, "decimalLat": -27.536658 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284203, "decimalLat": -27.525155 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251524, "decimalLat": -27.556534 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.557 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.174096, "decimalLat": -27.690955 }, "geometry": { "type": "Point", "coordinates": [ 153.174, -27.691 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252676, "decimalLat": -27.530004 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25215, "decimalLat": -27.501282 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.889261, "decimalLat": -27.417675 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -27.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.236425, "decimalLat": -27.489885 }, "geometry": { "type": "Point", "coordinates": [ 153.236, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.004683, "decimalLat": -27.298853 }, "geometry": { "type": "Point", "coordinates": [ 153.005, -27.299 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284092, "decimalLat": -27.525309 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248539, "decimalLat": -27.490376 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27133, "decimalLat": -27.552334 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.097139, "decimalLat": -21.390097 }, "geometry": { "type": "Point", "coordinates": [ 149.097, -21.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225737, "decimalLat": -27.553892 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245061, "decimalLat": -27.500825 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.278322, "decimalLat": -27.537017 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281316, "decimalLat": -27.52967 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281753, "decimalLat": -27.525568 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.253662, "decimalLat": -27.495739 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278569, "decimalLat": -27.544405 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090226, "decimalLat": -27.535507 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273876, "decimalLat": -27.537752 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.196868, "decimalLat": -27.570593 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -27.571 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278046, "decimalLat": -27.537121 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.044673, "decimalLat": -27.5458 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.281834, "decimalLat": -27.525537 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281686, "decimalLat": -27.527008 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.269591, "decimalLat": -27.532335 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281426, "decimalLat": -27.52721 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.079655, "decimalLat": -27.530384 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.236697, "decimalLat": -27.490843 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.180335, "decimalLat": -28.031512 }, "geometry": { "type": "Point", "coordinates": [ 153.18, -28.032 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.182187, "decimalLat": -27.575395 }, "geometry": { "type": "Point", "coordinates": [ 153.182, -27.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.276153, "decimalLat": -27.535539 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278561, "decimalLat": -27.537031 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284033, "decimalLat": -27.525067 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.160719, "decimalLat": -27.709544 }, "geometry": { "type": "Point", "coordinates": [ 153.161, -27.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.268433, "decimalLat": -27.612624 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -27.613 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.279188, "decimalLat": -27.537278 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.235929, "decimalLat": -27.523525 }, "geometry": { "type": "Point", "coordinates": [ 153.236, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.2737, "decimalLat": -27.62972 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.28417, "decimalLat": -27.525209 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.228411, "decimalLat": -27.563796 }, "geometry": { "type": "Point", "coordinates": [ 153.228, -27.564 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281258, "decimalLat": -27.52943 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.28399, "decimalLat": -27.525792 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.226944, "decimalLat": -27.560556 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -27.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.27, "decimalLat": -27.55 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.127106, "decimalLat": -27.89795 }, "geometry": { "type": "Point", "coordinates": [ 153.127, -27.898 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.282156, "decimalLat": -27.525547 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271072, "decimalLat": -27.55335 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.553 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.201818, "decimalLat": -27.512101 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274557, "decimalLat": -27.539423 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.087543, "decimalLat": -27.523911 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260622, "decimalLat": -27.519094 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273793, "decimalLat": -27.537824 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.275916, "decimalLat": -27.538285 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.284398, "decimalLat": -27.52486 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.090119, "decimalLat": -27.535516 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281847, "decimalLat": -27.530759 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080015, "decimalLat": -27.479983 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281969, "decimalLat": -27.53158 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.225149, "decimalLat": -27.50201 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.573411, "decimalLat": -27.400483 }, "geometry": { "type": "Point", "coordinates": [ 152.573, -27.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.263583, "decimalLat": -27.53811 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.277885, "decimalLat": -27.537079 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255317, "decimalLat": -27.586688 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249353, "decimalLat": -27.594953 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.153549, "decimalLat": -27.484321 }, "geometry": { "type": "Point", "coordinates": [ 153.154, -27.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.360839, "decimalLat": -27.568508 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281854, "decimalLat": -27.525329 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282156, "decimalLat": -27.532959 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 152.990183, "decimalLat": -27.373749 }, "geometry": { "type": "Point", "coordinates": [ 152.99, -27.374 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249353, "decimalLat": -27.594953 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.24841, "decimalLat": -27.489987 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.226429, "decimalLat": -27.547357 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.547 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.251014, "decimalLat": -27.511695 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -27.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.225777, "decimalLat": -27.503602 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -27.504 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.210693, "decimalLat": -27.531841 }, "geometry": { "type": "Point", "coordinates": [ 153.211, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.254038, "decimalLat": -27.554591 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.257954, "decimalLat": -27.533017 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252494, "decimalLat": -27.547645 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281603, "decimalLat": -27.531922 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.245516, "decimalLat": -27.49055 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.935607, "decimalLat": -27.355789 }, "geometry": { "type": "Point", "coordinates": [ 152.936, -27.356 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282117, "decimalLat": -27.533178 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28186, "decimalLat": -27.530807 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.07549, "decimalLat": -27.550976 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.210365, "decimalLat": -27.531692 }, "geometry": { "type": "Point", "coordinates": [ 153.21, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.807517, "decimalLat": -27.532991 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248501, "decimalLat": -27.490856 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.517751, "decimalLat": -27.424462 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -27.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.452933, "decimalLat": -28.138601 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.139 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.062092, "decimalLat": -27.537129 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.264642, "decimalLat": -27.524325 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23827, "decimalLat": -27.535813 }, "geometry": { "type": "Point", "coordinates": [ 153.238, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.491711, "decimalLat": -28.065738 }, "geometry": { "type": "Point", "coordinates": [ 152.492, -28.066 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272631, "decimalLat": -27.536759 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281775, "decimalLat": -27.530734 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256299, "decimalLat": -27.548894 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282117, "decimalLat": -27.532926 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.254937, "decimalLat": -27.494391 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.275215, "decimalLat": -27.555011 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282157, "decimalLat": -27.531074 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.275815, "decimalLat": -27.538445 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.073343, "decimalLat": -27.542157 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.293759, "decimalLat": -27.614143 }, "geometry": { "type": "Point", "coordinates": [ 153.294, -27.614 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 2, "stateProvi": "Queensland", "decimalLon": 152.651682, "decimalLat": -27.465118 }, "geometry": { "type": "Point", "coordinates": [ 152.652, -27.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.283194, "decimalLat": -27.525676 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.661789, "decimalLat": -27.451101 }, "geometry": { "type": "Point", "coordinates": [ 152.662, -27.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.198204, "decimalLat": -27.544064 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.210791, "decimalLat": -27.531825 }, "geometry": { "type": "Point", "coordinates": [ 153.211, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 2, "stateProvi": "Queensland", "decimalLon": 152.969959, "decimalLat": -27.144223 }, "geometry": { "type": "Point", "coordinates": [ 152.97, -27.144 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282047, "decimalLat": -27.525633 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256286, "decimalLat": -27.54858 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.248272, "decimalLat": -27.490231 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272874, "decimalLat": -27.528997 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.856765, "decimalLat": -27.545611 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.167675, "decimalLat": -26.872922 }, "geometry": { "type": "Point", "coordinates": [ 152.168, -26.873 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25629, "decimalLat": -27.548887 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.255074, "decimalLat": -27.493896 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.247578, "decimalLat": -27.511483 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.180416, "decimalLat": -27.533758 }, "geometry": { "type": "Point", "coordinates": [ 153.18, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.284288, "decimalLat": -27.525031 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.284312, "decimalLat": -27.525576 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06922, "decimalLat": -27.551314 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10537, "decimalLat": -27.505462 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.905204, "decimalLat": -27.396398 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -27.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.14254, "decimalLat": -27.526737 }, "geometry": { "type": "Point", "coordinates": [ 153.143, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.516952, "decimalLat": -27.425747 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -27.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.242255, "decimalLat": -27.521948 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -27.522 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274127, "decimalLat": -27.531922 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244379, "decimalLat": -27.505137 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.23639, "decimalLat": -27.489438 }, "geometry": { "type": "Point", "coordinates": [ 153.236, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274119, "decimalLat": -27.530124 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284509, "decimalLat": -27.525532 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249353, "decimalLat": -27.594953 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.30005, "decimalLat": -27.647595 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -27.648 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.221776, "decimalLat": -27.508735 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.237044, "decimalLat": -27.506097 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -27.506 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.253114, "decimalLat": -27.495732 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.10785, "decimalLat": -27.546125 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274312, "decimalLat": -27.538729 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273679, "decimalLat": -27.538016 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.538 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274323, "decimalLat": -27.538712 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.25278, "decimalLat": -27.547564 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244973, "decimalLat": -27.501343 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -27.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.274729, "decimalLat": -27.539961 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.295815, "decimalLat": -27.5681 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204818, "decimalLat": -27.497442 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281802, "decimalLat": -27.531154 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.235997, "decimalLat": -27.533543 }, "geometry": { "type": "Point", "coordinates": [ 153.236, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256305, "decimalLat": -27.548537 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.220054, "decimalLat": -27.559244 }, "geometry": { "type": "Point", "coordinates": [ 153.22, -27.559 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.183501, "decimalLat": -27.763892 }, "geometry": { "type": "Point", "coordinates": [ 153.184, -27.764 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.510383, "decimalLat": -27.981003 }, "geometry": { "type": "Point", "coordinates": [ 152.51, -27.981 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.215467, "decimalLat": -27.492188 }, "geometry": { "type": "Point", "coordinates": [ 153.215, -27.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281834, "decimalLat": -27.525307 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.249353, "decimalLat": -27.594953 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.244124, "decimalLat": -27.493137 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -27.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.284655, "decimalLat": -27.525395 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.293119, "decimalLat": -27.597146 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -27.597 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.281687, "decimalLat": -27.531082 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.253753, "decimalLat": -27.541585 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -27.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.165427, "decimalLat": -27.476279 }, "geometry": { "type": "Point", "coordinates": [ 153.165, -27.476 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.273961, "decimalLat": -27.529173 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374722, "decimalLat": -28.2525 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465174, "decimalLat": -28.324971 }, "geometry": { "type": "Point", "coordinates": [ 153.465, -28.325 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564028, "decimalLat": -28.387972 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.505993, "decimalLat": -28.240329 }, "geometry": { "type": "Point", "coordinates": [ 153.506, -28.24 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.410281, "decimalLat": -28.247811 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.248 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.534257, "decimalLat": -28.3323 }, "geometry": { "type": "Point", "coordinates": [ 153.534, -28.332 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561356, "decimalLat": -28.382917 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.522788, "decimalLat": -28.21365 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.214 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.373615, "decimalLat": -28.25059 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -28.251 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562726, "decimalLat": -28.391267 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.552753, "decimalLat": -28.40778 }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564052, "decimalLat": -28.374668 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.375 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.466671, "decimalLat": -28.237308 }, "geometry": { "type": "Point", "coordinates": [ 153.467, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.260948, "decimalLat": -27.519173 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555824, "decimalLat": -28.399102 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.501758, "decimalLat": -28.236784 }, "geometry": { "type": "Point", "coordinates": [ 153.502, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516363, "decimalLat": -28.368068 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -28.368 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561427, "decimalLat": -28.385585 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555944, "decimalLat": -28.399282 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557228, "decimalLat": -28.397082 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.370556, "decimalLat": -28.256111 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559742, "decimalLat": -28.371257 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.371 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555441, "decimalLat": -28.403228 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.403 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.075575, "decimalLat": -27.540469 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557625, "decimalLat": -28.396686 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559679, "decimalLat": -28.387578 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.206652, "decimalLat": -27.489271 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555591, "decimalLat": -28.414391 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.467912, "decimalLat": -28.329373 }, "geometry": { "type": "Point", "coordinates": [ 153.468, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562425, "decimalLat": -28.384036 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56286, "decimalLat": -28.332073 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.332 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.476784, "decimalLat": -28.311276 }, "geometry": { "type": "Point", "coordinates": [ 153.477, -28.311 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556465, "decimalLat": -28.407968 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.333213, "decimalLat": -28.379277 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -28.379 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557617, "decimalLat": -28.388696 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.333564, "decimalLat": -28.300791 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.301 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555833, "decimalLat": -28.399149 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498294, "decimalLat": -28.223973 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.224 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.541961, "decimalLat": -28.396606 }, "geometry": { "type": "Point", "coordinates": [ 153.542, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.411949, "decimalLat": -28.272384 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -28.272 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561382, "decimalLat": -28.384773 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561715, "decimalLat": -28.393024 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556505, "decimalLat": -28.399929 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.236557, "decimalLat": -27.493664 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -27.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556056, "decimalLat": -28.398535 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564117, "decimalLat": -28.385942 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556701, "decimalLat": -28.400142 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557252, "decimalLat": -28.397271 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562904, "decimalLat": -28.384369 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56145, "decimalLat": -28.38553 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.530075, "decimalLat": -28.219672 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -28.22 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55758, "decimalLat": -28.396713 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.27599, "decimalLat": -27.54426 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -27.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.515065, "decimalLat": -28.377326 }, "geometry": { "type": "Point", "coordinates": [ 153.515, -28.377 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.567479, "decimalLat": -28.380244 }, "geometry": { "type": "Point", "coordinates": [ 153.567, -28.38 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.272327, "decimalLat": -27.563198 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.563 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557933, "decimalLat": -28.388411 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553572, "decimalLat": -28.368427 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.368 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556778, "decimalLat": -28.400014 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559218, "decimalLat": -28.393779 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557522, "decimalLat": -28.393719 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56327, "decimalLat": -28.393411 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561913, "decimalLat": -28.386071 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556946, "decimalLat": -28.397563 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560418, "decimalLat": -28.373683 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555823, "decimalLat": -28.243606 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.244 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.483346, "decimalLat": -28.216138 }, "geometry": { "type": "Point", "coordinates": [ 153.483, -28.216 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.567422, "decimalLat": -28.378508 }, "geometry": { "type": "Point", "coordinates": [ 153.567, -28.379 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561649, "decimalLat": -28.393472 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564434, "decimalLat": -28.336159 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.336 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.54768, "decimalLat": -28.388909 }, "geometry": { "type": "Point", "coordinates": [ 153.548, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564167, "decimalLat": -28.380833 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558805, "decimalLat": -28.38969 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560261, "decimalLat": -28.389497 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.284859, "decimalLat": -28.454651 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 2, "stateProvi": "Queensland", "decimalLon": 152.940527, "decimalLat": -27.393202 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -27.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561847, "decimalLat": -28.389192 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.470367, "decimalLat": -28.260494 }, "geometry": { "type": "Point", "coordinates": [ 153.47, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.546746, "decimalLat": -28.388884 }, "geometry": { "type": "Point", "coordinates": [ 153.547, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556243, "decimalLat": -28.37735 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.377 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558593, "decimalLat": -28.372579 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.373 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556253, "decimalLat": -28.40825 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555641, "decimalLat": -28.398184 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563403, "decimalLat": -28.393425 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.282412, "decimalLat": -27.531018 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.282048, "decimalLat": -27.525623 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564383, "decimalLat": -28.37347 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.373 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.412883, "decimalLat": -28.228295 }, "geometry": { "type": "Point", "coordinates": [ 153.413, -28.228 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56189, "decimalLat": -28.389145 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56206, "decimalLat": -28.383751 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498144, "decimalLat": -28.222544 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561414, "decimalLat": -28.393378 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.228911, "decimalLat": -27.498711 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468522, "decimalLat": -28.261378 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561372, "decimalLat": -28.385558 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557532, "decimalLat": -28.388545 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564544, "decimalLat": -28.380786 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.490079, "decimalLat": -28.228197 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.228 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.225346, "decimalLat": -27.502821 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.222497, "decimalLat": -28.279609 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -28.28 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4691, "decimalLat": -28.26228 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468706, "decimalLat": -28.262092 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.533753, "decimalLat": -28.199886 }, "geometry": { "type": "Point", "coordinates": [ 153.534, -28.2 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557172, "decimalLat": -28.397528 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510122, "decimalLat": -28.241817 }, "geometry": { "type": "Point", "coordinates": [ 153.51, -28.242 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.214461, "decimalLat": -28.37945 }, "geometry": { "type": "Point", "coordinates": [ 153.214, -28.379 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 25, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.273506, "decimalLat": -27.528899 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494089, "decimalLat": -28.328909 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554792, "decimalLat": -28.383586 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493728, "decimalLat": -28.254048 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495958, "decimalLat": -28.254464 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561127, "decimalLat": -28.384976 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5481, "decimalLat": -28.329457 }, "geometry": { "type": "Point", "coordinates": [ 153.548, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557601, "decimalLat": -28.38855 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.246495, "decimalLat": -27.511432 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.296618, "decimalLat": -27.56812 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.568 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564147, "decimalLat": -28.380817 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559223, "decimalLat": -28.331185 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49413, "decimalLat": -28.236882 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.442773, "decimalLat": -28.274143 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.274 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556326, "decimalLat": -28.408185 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523666, "decimalLat": -28.38674 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556098, "decimalLat": -28.398509 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562603, "decimalLat": -28.384563 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561873, "decimalLat": -28.389159 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557459, "decimalLat": -28.388474 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555878, "decimalLat": -28.399509 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557818, "decimalLat": -28.331142 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.456689, "decimalLat": -28.419806 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377257, "decimalLat": -28.305823 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.306 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556034, "decimalLat": -28.37778 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558399, "decimalLat": -28.394284 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55836, "decimalLat": -28.394137 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564682, "decimalLat": -28.327859 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.271366, "decimalLat": -27.574398 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.574 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557729, "decimalLat": -28.371592 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.372 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56368, "decimalLat": -28.389402 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498072, "decimalLat": -28.226882 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.227 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559441, "decimalLat": -28.353407 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.353 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.47843, "decimalLat": -28.232497 }, "geometry": { "type": "Point", "coordinates": [ 153.478, -28.232 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556522, "decimalLat": -28.408245 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.270114, "decimalLat": -27.552104 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -27.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498187, "decimalLat": -28.222942 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557437, "decimalLat": -28.388392 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557022, "decimalLat": -28.400992 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.567133, "decimalLat": -28.392434 }, "geometry": { "type": "Point", "coordinates": [ 153.567, -28.392 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561825, "decimalLat": -28.38914 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.469069, "decimalLat": -28.262386 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564385, "decimalLat": -28.336136 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.336 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55593, "decimalLat": -28.376831 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.377 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.459558, "decimalLat": -28.322296 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.322 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498938, "decimalLat": -28.22333 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.232616, "decimalLat": -27.497384 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562273, "decimalLat": -28.384192 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563158, "decimalLat": -28.392594 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494519, "decimalLat": -28.227394 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.227 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56122, "decimalLat": -28.393297 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.061837, "decimalLat": -27.536561 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561199, "decimalLat": -28.39334 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555887, "decimalLat": -28.378224 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.467083, "decimalLat": -28.237356 }, "geometry": { "type": "Point", "coordinates": [ 153.467, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563896, "decimalLat": -28.387998 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.373266, "decimalLat": -28.251322 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -28.251 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.244397, "decimalLat": -28.290966 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -28.291 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563878, "decimalLat": -28.391181 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.084528, "decimalLat": -27.523182 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -27.523 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557109, "decimalLat": -28.381234 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564428, "decimalLat": -28.388822 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.490288, "decimalLat": -28.244008 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.244 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562785, "decimalLat": -28.384633 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.236225, "decimalLat": -27.488762 }, "geometry": { "type": "Point", "coordinates": [ 153.236, -27.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555926, "decimalLat": -28.399127 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.282106, "decimalLat": -27.532896 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.371739, "decimalLat": -28.250411 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -28.25 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557006, "decimalLat": -28.400461 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495349, "decimalLat": -28.230068 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.23 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334283, "decimalLat": -28.277245 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.277 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.562646, "decimalLat": -28.391295 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561106, "decimalLat": -28.393341 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.458876, "decimalLat": -28.237207 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.568053, "decimalLat": -28.377195 }, "geometry": { "type": "Point", "coordinates": [ 153.568, -28.377 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.483942, "decimalLat": -28.246439 }, "geometry": { "type": "Point", "coordinates": [ 153.484, -28.246 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.491708, "decimalLat": -28.231058 }, "geometry": { "type": "Point", "coordinates": [ 153.492, -28.231 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55439, "decimalLat": -28.385238 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562707, "decimalLat": -28.38545 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555833, "decimalLat": -28.399167 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.346846, "decimalLat": -28.37037 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.37 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556565, "decimalLat": -28.372792 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.373 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51934, "decimalLat": -28.21586 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.216 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561433, "decimalLat": -28.389232 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.541296, "decimalLat": -28.392231 }, "geometry": { "type": "Point", "coordinates": [ 153.541, -28.392 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5618, "decimalLat": -28.387053 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556905, "decimalLat": -28.388121 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562732, "decimalLat": -28.391207 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556044, "decimalLat": -28.399308 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.561418, "decimalLat": -28.390195 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.499196, "decimalLat": -28.223352 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560828, "decimalLat": -28.36432 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.364 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555546, "decimalLat": -28.371012 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.371 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561774, "decimalLat": -28.330606 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.562037, "decimalLat": -28.384015 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565845, "decimalLat": -28.38719 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.471885, "decimalLat": -28.328574 }, "geometry": { "type": "Point", "coordinates": [ 153.472, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557995, "decimalLat": -28.388315 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360079, "decimalLat": -28.356845 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -28.357 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.397897, "decimalLat": -28.259715 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.466063, "decimalLat": -28.237277 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5597, "decimalLat": -28.3707 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.371 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561567, "decimalLat": -28.384435 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498766, "decimalLat": -28.222876 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559671, "decimalLat": -28.372144 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.372 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561368, "decimalLat": -28.38529 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555586, "decimalLat": -28.378379 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.378 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565121, "decimalLat": -28.391023 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556069, "decimalLat": -28.398564 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564177, "decimalLat": -28.38064 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49896, "decimalLat": -28.223337 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.457958, "decimalLat": -28.227892 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.228 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560962, "decimalLat": -28.330978 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556034, "decimalLat": -28.399486 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.513454, "decimalLat": -28.241549 }, "geometry": { "type": "Point", "coordinates": [ 153.513, -28.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558467, "decimalLat": -28.39427 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559696, "decimalLat": -28.371176 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.371 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555936, "decimalLat": -28.375236 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.375 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.471848, "decimalLat": -28.24154 }, "geometry": { "type": "Point", "coordinates": [ 153.472, -28.242 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562388, "decimalLat": -28.384204 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.561539, "decimalLat": -28.384411 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.47353, "decimalLat": -28.326705 }, "geometry": { "type": "Point", "coordinates": [ 153.474, -28.327 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556009, "decimalLat": -28.398854 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376512, "decimalLat": -28.252984 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.470183, "decimalLat": -28.26085 }, "geometry": { "type": "Point", "coordinates": [ 153.47, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.466167, "decimalLat": -28.237535 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.238 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56215, "decimalLat": -28.383603 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.502222, "decimalLat": -28.251271 }, "geometry": { "type": "Point", "coordinates": [ 153.502, -28.251 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.466058, "decimalLat": -28.237356 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557433, "decimalLat": -28.388442 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561847, "decimalLat": -28.391123 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.526587, "decimalLat": -28.396236 }, "geometry": { "type": "Point", "coordinates": [ 153.527, -28.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.555907, "decimalLat": -28.398833 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557526, "decimalLat": -28.396851 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564228, "decimalLat": -28.387552 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557872, "decimalLat": -28.388371 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557309, "decimalLat": -28.397012 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562222, "decimalLat": -28.384722 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563799, "decimalLat": -28.380972 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556107, "decimalLat": -28.377676 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.378 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563998, "decimalLat": -28.387913 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5597, "decimalLat": -28.389131 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557617, "decimalLat": -28.400197 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559444, "decimalLat": -28.328333 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562606, "decimalLat": -28.384572 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.566026, "decimalLat": -28.387582 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557668, "decimalLat": -28.388333 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561808, "decimalLat": -28.387194 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557112, "decimalLat": -28.397533 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.471272, "decimalLat": -28.35123 }, "geometry": { "type": "Point", "coordinates": [ 153.471, -28.351 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556772, "decimalLat": -28.369147 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.369 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562221, "decimalLat": -28.384193 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556935, "decimalLat": -28.400944 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562714, "decimalLat": -28.384544 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557603, "decimalLat": -28.394378 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56409, "decimalLat": -28.336216 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.336 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559543, "decimalLat": -28.393755 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557679, "decimalLat": -28.394606 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.555914, "decimalLat": -28.398965 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555909, "decimalLat": -28.399153 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561341, "decimalLat": -28.384755 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555196, "decimalLat": -28.370334 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.37 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561913, "decimalLat": -28.389135 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557961, "decimalLat": -28.393962 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558413, "decimalLat": -28.394336 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558014, "decimalLat": -28.388531 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556713, "decimalLat": -28.397644 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565119, "decimalLat": -28.389956 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498734, "decimalLat": -28.223562 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.224 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.531608, "decimalLat": -28.221719 }, "geometry": { "type": "Point", "coordinates": [ 153.532, -28.222 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.168177, "decimalLat": -28.353989 }, "geometry": { "type": "Point", "coordinates": [ 153.168, -28.354 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555912, "decimalLat": -28.399095 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558496, "decimalLat": -28.394081 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56233, "decimalLat": -28.373466 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.373 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561956, "decimalLat": -28.383121 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.383 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5578, "decimalLat": -28.3967 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557209, "decimalLat": -28.400305 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561854, "decimalLat": -28.389255 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.374763, "decimalLat": -28.252334 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561579, "decimalLat": -28.386313 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.470275, "decimalLat": -28.260758 }, "geometry": { "type": "Point", "coordinates": [ 153.47, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557215, "decimalLat": -28.400332 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.511577, "decimalLat": -28.241621 }, "geometry": { "type": "Point", "coordinates": [ 153.512, -28.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.478339, "decimalLat": -28.249243 }, "geometry": { "type": "Point", "coordinates": [ 153.478, -28.249 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557721, "decimalLat": -28.396494 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.463836, "decimalLat": -28.320689 }, "geometry": { "type": "Point", "coordinates": [ 153.464, -28.321 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.560752, "decimalLat": -28.287007 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.287 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.518875, "decimalLat": -28.230652 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.231 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55715, "decimalLat": -28.397464 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.544066, "decimalLat": -28.333102 }, "geometry": { "type": "Point", "coordinates": [ 153.544, -28.333 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.470139, "decimalLat": -28.325992 }, "geometry": { "type": "Point", "coordinates": [ 153.47, -28.326 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55759, "decimalLat": -28.388498 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.502075, "decimalLat": -28.238141 }, "geometry": { "type": "Point", "coordinates": [ 153.502, -28.238 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561823, "decimalLat": -28.389182 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.564393, "decimalLat": -28.380908 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494377, "decimalLat": -28.242245 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560377, "decimalLat": -28.287376 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.287 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.527861, "decimalLat": -28.40453 }, "geometry": { "type": "Point", "coordinates": [ 153.528, -28.405 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559028, "decimalLat": -28.368921 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.369 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563961, "decimalLat": -28.380772 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555956, "decimalLat": -28.398776 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558007, "decimalLat": -28.388596 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563815, "decimalLat": -28.387814 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557923, "decimalLat": -28.388661 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.35622, "decimalLat": -28.360009 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -28.36 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557615, "decimalLat": -28.388328 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.488326, "decimalLat": -28.227743 }, "geometry": { "type": "Point", "coordinates": [ 153.488, -28.228 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.545254, "decimalLat": -28.332526 }, "geometry": { "type": "Point", "coordinates": [ 153.545, -28.333 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556249, "decimalLat": -28.408148 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.568311, "decimalLat": -28.328258 }, "geometry": { "type": "Point", "coordinates": [ 153.568, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.555983, "decimalLat": -28.398753 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510981, "decimalLat": -28.216448 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.216 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.243706, "decimalLat": -28.29284 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -28.293 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561809, "decimalLat": -28.389135 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557526, "decimalLat": -28.388545 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5563, "decimalLat": -28.408167 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556747, "decimalLat": -28.400128 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555838, "decimalLat": -28.398866 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559753, "decimalLat": -28.371301 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.371 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.505408, "decimalLat": -28.242169 }, "geometry": { "type": "Point", "coordinates": [ 153.505, -28.242 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557122, "decimalLat": -28.397501 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557512, "decimalLat": -28.388387 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562415, "decimalLat": -28.383754 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.532187, "decimalLat": -28.361203 }, "geometry": { "type": "Point", "coordinates": [ 153.532, -28.361 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563184, "decimalLat": -28.392627 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498076, "decimalLat": -28.310977 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.311 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.562606, "decimalLat": -28.384026 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.49683, "decimalLat": -28.254577 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557587, "decimalLat": -28.396913 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558272, "decimalLat": -28.388433 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564237, "decimalLat": -28.387719 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559427, "decimalLat": -28.37077 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.371 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.460073, "decimalLat": -28.272041 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.272 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555602, "decimalLat": -28.376255 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.376 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564338, "decimalLat": -28.380544 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555597, "decimalLat": -28.378771 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.379 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556042, "decimalLat": -28.399591 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561786, "decimalLat": -28.367257 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.367 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558289, "decimalLat": -28.394194 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556205, "decimalLat": -28.408245 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.496278, "decimalLat": -28.328913 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565702, "decimalLat": -28.387292 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55756, "decimalLat": -28.396592 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.469863, "decimalLat": -28.326218 }, "geometry": { "type": "Point", "coordinates": [ 153.47, -28.326 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555885, "decimalLat": -28.399201 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556337, "decimalLat": -28.377412 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.377 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.548611, "decimalLat": -28.405 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.405 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556207, "decimalLat": -28.37234 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.372 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557024, "decimalLat": -28.397261 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.555897, "decimalLat": -28.398812 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563487, "decimalLat": -28.38947 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560396, "decimalLat": -28.372784 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.373 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557183, "decimalLat": -28.397356 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.567606, "decimalLat": -28.328294 }, "geometry": { "type": "Point", "coordinates": [ 153.568, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559675, "decimalLat": -28.286866 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.287 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56526, "decimalLat": -28.389704 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561557, "decimalLat": -28.385714 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.233958, "decimalLat": -28.304107 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -28.304 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561809, "decimalLat": -28.389145 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559739, "decimalLat": -28.393697 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.546464, "decimalLat": -28.390008 }, "geometry": { "type": "Point", "coordinates": [ 153.546, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556012, "decimalLat": -28.398726 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.4064, "decimalLat": -28.4371 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.557314, "decimalLat": -28.397007 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.505377, "decimalLat": -28.240346 }, "geometry": { "type": "Point", "coordinates": [ 153.505, -28.24 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558181, "decimalLat": -28.373789 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.566262, "decimalLat": -28.37576 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.376 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.557034, "decimalLat": -28.397415 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562697, "decimalLat": -28.374739 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.375 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558708, "decimalLat": -28.331049 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.503083, "decimalLat": -28.187681 }, "geometry": { "type": "Point", "coordinates": [ 153.503, -28.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.181628, "decimalLat": -28.516985 }, "geometry": { "type": "Point", "coordinates": [ 153.182, -28.517 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.48756, "decimalLat": -28.424519 }, "geometry": { "type": "Point", "coordinates": [ 153.488, -28.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562481, "decimalLat": -28.384158 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560947, "decimalLat": -28.385053 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.561568, "decimalLat": -28.38586 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.561507, "decimalLat": -28.385487 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.557739, "decimalLat": -28.396753 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.499496, "decimalLat": -28.223126 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557144, "decimalLat": -28.397442 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.499024, "decimalLat": -28.22333 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498659, "decimalLat": -28.223567 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.224 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.561629, "decimalLat": -28.386672 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561506, "decimalLat": -28.385638 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555313, "decimalLat": -28.3875 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555149, "decimalLat": -28.380843 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556122, "decimalLat": -28.399483 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.555888, "decimalLat": -28.399064 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.458175, "decimalLat": -28.268077 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.268 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556594, "decimalLat": -28.399972 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.464524, "decimalLat": -28.253417 }, "geometry": { "type": "Point", "coordinates": [ 153.465, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.562089, "decimalLat": -28.383281 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560399, "decimalLat": -28.286564 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.287 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556803, "decimalLat": -28.400064 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49941, "decimalLat": -28.223179 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.572475, "decimalLat": -28.354594 }, "geometry": { "type": "Point", "coordinates": [ 153.572, -28.355 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557518, "decimalLat": -28.388505 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556439, "decimalLat": -28.408205 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556929, "decimalLat": -28.402046 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.402 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561186, "decimalLat": -28.389286 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56441, "decimalLat": -28.380461 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.38 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.533716, "decimalLat": -28.21712 }, "geometry": { "type": "Point", "coordinates": [ 153.534, -28.217 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557497, "decimalLat": -28.388625 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563515, "decimalLat": -28.385784 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555833, "decimalLat": -28.371944 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.372 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.466081, "decimalLat": -28.237573 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.238 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465839, "decimalLat": -28.226358 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.226 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557765, "decimalLat": -28.388103 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272353, "decimalLat": -28.313877 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -28.314 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517868, "decimalLat": -28.603257 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -28.603 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.520101, "decimalLat": -28.235962 }, "geometry": { "type": "Point", "coordinates": [ 153.52, -28.236 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.522363, "decimalLat": -28.220704 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -28.221 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558228, "decimalLat": -28.394156 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5569, "decimalLat": -28.400371 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272431, "decimalLat": -28.355594 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -28.356 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498863, "decimalLat": -28.223573 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.224 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558072, "decimalLat": -28.389679 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557525, "decimalLat": -28.394319 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374722, "decimalLat": -28.2525 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558592, "decimalLat": -28.369199 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.369 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.564161, "decimalLat": -28.385935 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563451, "decimalLat": -28.390181 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559659, "decimalLat": -28.39363 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559907, "decimalLat": -28.393177 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562713, "decimalLat": -28.391188 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.48834, "decimalLat": -28.238862 }, "geometry": { "type": "Point", "coordinates": [ 153.488, -28.239 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.274614, "decimalLat": -28.355099 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -28.355 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.564424, "decimalLat": -28.328066 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493605, "decimalLat": -28.213426 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.213 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561739, "decimalLat": -28.367331 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.367 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561346, "decimalLat": -28.389209 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561934, "decimalLat": -28.389272 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554216, "decimalLat": -28.41521 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.556379, "decimalLat": -28.399966 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561196, "decimalLat": -28.393312 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.525844, "decimalLat": -28.229928 }, "geometry": { "type": "Point", "coordinates": [ 153.526, -28.23 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494107, "decimalLat": -28.226932 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.227 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558303, "decimalLat": -28.394183 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55599, "decimalLat": -28.399309 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468978, "decimalLat": -28.261697 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559883, "decimalLat": -28.371927 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.372 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55137, "decimalLat": -28.329334 }, "geometry": { "type": "Point", "coordinates": [ 153.551, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.525759, "decimalLat": -28.230101 }, "geometry": { "type": "Point", "coordinates": [ 153.526, -28.23 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335477, "decimalLat": -28.479923 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563435, "decimalLat": -28.393303 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468475, "decimalLat": -28.261208 }, "geometry": { "type": "Point", "coordinates": [ 153.468, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565173, "decimalLat": -28.386314 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557369, "decimalLat": -28.397374 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559031, "decimalLat": -28.389211 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56316, "decimalLat": -28.374485 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556382, "decimalLat": -28.399921 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564194, "decimalLat": -28.380608 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556106, "decimalLat": -28.398612 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556508, "decimalLat": -28.330994 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558243, "decimalLat": -28.394251 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563949, "decimalLat": -28.387927 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523302, "decimalLat": -28.218826 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.219 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.552788, "decimalLat": -28.40779 }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560176, "decimalLat": -28.363195 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557349, "decimalLat": -28.393288 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557426, "decimalLat": -28.386921 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556397, "decimalLat": -28.398271 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556309, "decimalLat": -28.370935 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.371 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561464, "decimalLat": -28.388041 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561541, "decimalLat": -28.385699 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557323, "decimalLat": -28.387638 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555798, "decimalLat": -28.3986 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555878, "decimalLat": -28.399509 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.482997, "decimalLat": -28.246907 }, "geometry": { "type": "Point", "coordinates": [ 153.483, -28.247 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558668, "decimalLat": -28.394034 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560416, "decimalLat": -28.286772 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.287 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561041, "decimalLat": -28.331063 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557617, "decimalLat": -28.394358 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272353, "decimalLat": -28.313877 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -28.314 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.467897, "decimalLat": -28.32819 }, "geometry": { "type": "Point", "coordinates": [ 153.468, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557957, "decimalLat": -28.407577 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.470078, "decimalLat": -28.2608 }, "geometry": { "type": "Point", "coordinates": [ 153.47, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55781, "decimalLat": -28.393807 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555683, "decimalLat": -28.243663 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.244 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563539, "decimalLat": -28.3813 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562364, "decimalLat": -28.382647 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.383 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560622, "decimalLat": -28.37407 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55672, "decimalLat": -28.397337 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557274, "decimalLat": -28.387794 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.472227, "decimalLat": -28.247172 }, "geometry": { "type": "Point", "coordinates": [ 153.472, -28.247 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.445745, "decimalLat": -28.254683 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.26662, "decimalLat": -28.35045 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -28.35 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.499378, "decimalLat": -28.223 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.492249, "decimalLat": -28.229973 }, "geometry": { "type": "Point", "coordinates": [ 153.492, -28.23 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558372, "decimalLat": -28.373534 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562334, "decimalLat": -28.384369 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561989, "decimalLat": -28.383579 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.448083, "decimalLat": -28.234631 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.235 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559673, "decimalLat": -28.393654 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562331, "decimalLat": -28.392089 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.392 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556975, "decimalLat": -28.397536 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556778, "decimalLat": -28.400014 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.466467, "decimalLat": -28.237308 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556241, "decimalLat": -28.408207 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556212, "decimalLat": -28.408219 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559205, "decimalLat": -28.38333 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.383 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559586, "decimalLat": -28.393689 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55781, "decimalLat": -28.393779 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55828, "decimalLat": -28.394222 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55749, "decimalLat": -28.388386 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557263, "decimalLat": -28.397093 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562542, "decimalLat": -28.392306 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556057, "decimalLat": -28.398547 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557805, "decimalLat": -28.388392 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561338, "decimalLat": -28.28902 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.289 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561873, "decimalLat": -28.38922 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516988, "decimalLat": -28.330064 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.33 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561879, "decimalLat": -28.389201 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.549396, "decimalLat": -28.328876 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.47177, "decimalLat": -28.261056 }, "geometry": { "type": "Point", "coordinates": [ 153.472, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563264, "decimalLat": -28.393411 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560891, "decimalLat": -28.387175 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559707, "decimalLat": -28.393663 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556803, "decimalLat": -28.400064 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564401, "decimalLat": -28.336159 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.336 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556734, "decimalLat": -28.369107 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.369 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557066, "decimalLat": -28.393549 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561852, "decimalLat": -28.389069 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.461419, "decimalLat": -28.235416 }, "geometry": { "type": "Point", "coordinates": [ 153.461, -28.235 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498076, "decimalLat": -28.310977 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.311 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.499217, "decimalLat": -28.388531 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.477853, "decimalLat": -28.415444 }, "geometry": { "type": "Point", "coordinates": [ 153.478, -28.415 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.472082, "decimalLat": -28.434324 }, "geometry": { "type": "Point", "coordinates": [ 153.472, -28.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557549, "decimalLat": -28.397244 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374688, "decimalLat": -28.252292 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.561545, "decimalLat": -28.385605 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.499241, "decimalLat": -28.222922 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561829, "decimalLat": -28.391217 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559478, "decimalLat": -28.393779 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324552, "decimalLat": -28.390324 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498766, "decimalLat": -28.22333 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.502222, "decimalLat": -28.251271 }, "geometry": { "type": "Point", "coordinates": [ 153.502, -28.251 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.55592, "decimalLat": -28.398698 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562712, "decimalLat": -28.387266 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.443557, "decimalLat": -28.232986 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.233 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51374, "decimalLat": -28.21383 }, "geometry": { "type": "Point", "coordinates": [ 153.514, -28.214 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559532, "decimalLat": -28.393748 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561808, "decimalLat": -28.330657 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.469927, "decimalLat": -28.26075 }, "geometry": { "type": "Point", "coordinates": [ 153.47, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556836, "decimalLat": -28.400272 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498874, "decimalLat": -28.223491 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.572557, "decimalLat": -28.368956 }, "geometry": { "type": "Point", "coordinates": [ 153.573, -28.369 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559633, "decimalLat": -28.393708 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.470045, "decimalLat": -28.261166 }, "geometry": { "type": "Point", "coordinates": [ 153.47, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555957, "decimalLat": -28.398844 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557554, "decimalLat": -28.38855 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554747, "decimalLat": -28.415225 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.415 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465132, "decimalLat": -28.324825 }, "geometry": { "type": "Point", "coordinates": [ 153.465, -28.325 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555884, "decimalLat": -28.376912 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.377 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.219631, "decimalLat": -28.339384 }, "geometry": { "type": "Point", "coordinates": [ 153.22, -28.339 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562398, "decimalLat": -28.392146 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.461614, "decimalLat": -28.46623 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562275, "decimalLat": -28.38367 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559704, "decimalLat": -28.371295 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.371 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555804, "decimalLat": -28.399086 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556565, "decimalLat": -28.37268 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.373 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.562995, "decimalLat": -28.381709 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.382 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563846, "decimalLat": -28.388031 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556466, "decimalLat": -28.33094 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 8, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.561326, "decimalLat": -28.385519 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49078, "decimalLat": -28.244504 }, "geometry": { "type": "Point", "coordinates": [ 153.491, -28.245 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563915, "decimalLat": -28.374668 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.375 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556997, "decimalLat": -28.40089 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555851, "decimalLat": -28.399168 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562809, "decimalLat": -28.374906 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.375 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.438638, "decimalLat": -28.203027 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.203 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561399, "decimalLat": -28.387475 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516048, "decimalLat": -28.237942 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -28.238 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.462354, "decimalLat": -28.235204 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.235 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.556092, "decimalLat": -28.399522 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559028, "decimalLat": -28.368921 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.369 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.482784, "decimalLat": -28.41718 }, "geometry": { "type": "Point", "coordinates": [ 153.483, -28.417 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557467, "decimalLat": -28.388533 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556043, "decimalLat": -28.399617 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562022, "decimalLat": -28.383321 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.571052, "decimalLat": -28.35228 }, "geometry": { "type": "Point", "coordinates": [ 153.571, -28.352 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.567994, "decimalLat": -28.377162 }, "geometry": { "type": "Point", "coordinates": [ 153.568, -28.377 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564056, "decimalLat": -28.387975 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.556726, "decimalLat": -28.397422 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.537312, "decimalLat": -28.333004 }, "geometry": { "type": "Point", "coordinates": [ 153.537, -28.333 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.492796, "decimalLat": -28.228717 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -28.229 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.466863, "decimalLat": -28.237293 }, "geometry": { "type": "Point", "coordinates": [ 153.467, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37723, "decimalLat": -28.253671 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.490644, "decimalLat": -28.228239 }, "geometry": { "type": "Point", "coordinates": [ 153.491, -28.228 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555943, "decimalLat": -28.398694 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562592, "decimalLat": -28.384211 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556825, "decimalLat": -28.400103 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564502, "decimalLat": -28.372579 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.373 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.355407, "decimalLat": -28.264682 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.265 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565513, "decimalLat": -28.388597 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561768, "decimalLat": -28.393085 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562211, "decimalLat": -28.383769 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557536, "decimalLat": -28.393661 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.370187, "decimalLat": -28.258902 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55491, "decimalLat": -28.24379 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.244 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562606, "decimalLat": -28.384396 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564752, "decimalLat": -28.375063 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.375 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556552, "decimalLat": -28.408213 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498917, "decimalLat": -28.223189 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5569, "decimalLat": -28.400371 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557758, "decimalLat": -28.396424 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560674, "decimalLat": -28.286672 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.287 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563451, "decimalLat": -28.390181 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557901, "decimalLat": -28.395869 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563634, "decimalLat": -28.372948 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.373 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56241, "decimalLat": -28.372208 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.372 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563999, "decimalLat": -28.387927 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559782, "decimalLat": -28.287886 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561535, "decimalLat": -28.388682 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498938, "decimalLat": -28.223563 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.224 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555851, "decimalLat": -28.399168 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.430101, "decimalLat": -28.27542 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.275 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.481557, "decimalLat": -28.248294 }, "geometry": { "type": "Point", "coordinates": [ 153.482, -28.248 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56398, "decimalLat": -28.387951 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562622, "decimalLat": -28.38459 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.527843, "decimalLat": -28.404377 }, "geometry": { "type": "Point", "coordinates": [ 153.528, -28.404 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561443, "decimalLat": -28.385621 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556301, "decimalLat": -28.399832 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.499324, "decimalLat": -28.22342 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557212, "decimalLat": -28.400321 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.228679, "decimalLat": -28.470615 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -28.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562241, "decimalLat": -28.382587 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.541925, "decimalLat": -28.396572 }, "geometry": { "type": "Point", "coordinates": [ 153.542, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557046, "decimalLat": -28.397354 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562237, "decimalLat": -28.374599 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.375 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.445326, "decimalLat": -28.231356 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.231 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561321, "decimalLat": -28.376147 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.376 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.463368, "decimalLat": -28.321162 }, "geometry": { "type": "Point", "coordinates": [ 153.463, -28.321 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559092, "decimalLat": -28.393945 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561184, "decimalLat": -28.393307 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.466245, "decimalLat": -28.23731 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55866, "decimalLat": -28.394081 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.561351, "decimalLat": -28.385497 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563263, "decimalLat": -28.384989 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.459485, "decimalLat": -28.327038 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.327 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561886, "decimalLat": -28.386544 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.466171, "decimalLat": -28.237404 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554402, "decimalLat": -28.413281 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.556289, "decimalLat": -28.399887 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.474456, "decimalLat": -28.258198 }, "geometry": { "type": "Point", "coordinates": [ 153.474, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563161, "decimalLat": -28.381373 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561373, "decimalLat": -28.331098 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561867, "decimalLat": -28.388795 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563909, "decimalLat": -28.38797 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559162, "decimalLat": -28.408523 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.409 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.499174, "decimalLat": -28.223378 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560992, "decimalLat": -28.388905 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558425, "decimalLat": -28.394206 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556979, "decimalLat": -28.400244 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56086, "decimalLat": -28.39009 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55922, "decimalLat": -28.383315 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.48519, "decimalLat": -28.244216 }, "geometry": { "type": "Point", "coordinates": [ 153.485, -28.244 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555618, "decimalLat": -28.378469 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556667, "decimalLat": -28.398611 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468597, "decimalLat": -28.261593 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.55946, "decimalLat": -28.393795 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561633, "decimalLat": -28.367891 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.368 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.466038, "decimalLat": -28.237696 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.238 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.363352, "decimalLat": -28.391102 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.560089, "decimalLat": -28.389489 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560095, "decimalLat": -28.286877 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.287 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557165, "decimalLat": -28.373277 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.373 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557389, "decimalLat": -28.387794 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555051, "decimalLat": -28.330883 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559492, "decimalLat": -28.389838 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561774, "decimalLat": -28.385765 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.355605, "decimalLat": -28.248741 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -28.249 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558278, "decimalLat": -28.388334 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.499174, "decimalLat": -28.223378 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563264, "decimalLat": -28.393418 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375997, "decimalLat": -28.243368 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.243 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.503502, "decimalLat": -28.239539 }, "geometry": { "type": "Point", "coordinates": [ 153.504, -28.24 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556336, "decimalLat": -28.408166 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564035, "decimalLat": -28.381339 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555254, "decimalLat": -28.403401 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.403 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557114, "decimalLat": -28.400283 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556747, "decimalLat": -28.400128 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517873, "decimalLat": -28.194829 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -28.195 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561219, "decimalLat": -28.393386 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.524537, "decimalLat": -28.391716 }, "geometry": { "type": "Point", "coordinates": [ 153.525, -28.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555779, "decimalLat": -28.399392 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563517, "decimalLat": -28.38096 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557433, "decimalLat": -28.394633 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558089, "decimalLat": -28.388356 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555751, "decimalLat": -28.375262 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.375 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562595, "decimalLat": -28.391241 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561336, "decimalLat": -28.385548 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556466, "decimalLat": -28.373508 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560834, "decimalLat": -28.36428 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.364 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.391845, "decimalLat": -28.315833 }, "geometry": { "type": "Point", "coordinates": [ 153.392, -28.316 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.373851, "decimalLat": -28.251819 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.240562, "decimalLat": -28.497324 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -28.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557511, "decimalLat": -28.394642 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39323, "decimalLat": -28.286805 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.287 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558768, "decimalLat": -28.393911 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.540581, "decimalLat": -28.332128 }, "geometry": { "type": "Point", "coordinates": [ 153.541, -28.332 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 8, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.563417, "decimalLat": -28.38145 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564009, "decimalLat": -28.37467 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.375 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.522273, "decimalLat": -28.358392 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -28.358 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561623, "decimalLat": -28.385899 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.498734, "decimalLat": -28.22343 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.563736, "decimalLat": -28.381181 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556801, "decimalLat": -28.408402 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563183, "decimalLat": -28.392594 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.541381, "decimalLat": -28.332186 }, "geometry": { "type": "Point", "coordinates": [ 153.541, -28.332 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561416, "decimalLat": -28.38553 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.501114, "decimalLat": -28.224592 }, "geometry": { "type": "Point", "coordinates": [ 153.501, -28.225 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562319, "decimalLat": -28.384128 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.519965, "decimalLat": -28.186409 }, "geometry": { "type": "Point", "coordinates": [ 153.52, -28.186 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556353, "decimalLat": -28.399896 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555849, "decimalLat": -28.375307 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.375 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556804, "decimalLat": -28.381159 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562469, "decimalLat": -28.384097 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563248, "decimalLat": -28.393392 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557375, "decimalLat": -28.397359 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563912, "decimalLat": -28.381074 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.483167, "decimalLat": -28.246895 }, "geometry": { "type": "Point", "coordinates": [ 153.483, -28.247 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.532096, "decimalLat": -28.229026 }, "geometry": { "type": "Point", "coordinates": [ 153.532, -28.229 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.398932, "decimalLat": -28.327034 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.327 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.475131, "decimalLat": -28.3123 }, "geometry": { "type": "Point", "coordinates": [ 153.475, -28.312 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556382, "decimalLat": -28.37752 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.378 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555948, "decimalLat": -28.398935 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465844, "decimalLat": -28.237484 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.546218, "decimalLat": -28.388732 }, "geometry": { "type": "Point", "coordinates": [ 153.546, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564448, "decimalLat": -28.335019 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.335 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.547172, "decimalLat": -28.388961 }, "geometry": { "type": "Point", "coordinates": [ 153.547, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.499174, "decimalLat": -28.223378 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465325, "decimalLat": -28.325189 }, "geometry": { "type": "Point", "coordinates": [ 153.465, -28.325 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468557, "decimalLat": -28.328904 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559297, "decimalLat": -28.373334 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.373 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5657, "decimalLat": -28.32933 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55643, "decimalLat": -28.408178 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563655, "decimalLat": -28.388033 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556012, "decimalLat": -28.399483 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.561372, "decimalLat": -28.38548 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559618, "decimalLat": -28.393736 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.527643, "decimalLat": -28.404354 }, "geometry": { "type": "Point", "coordinates": [ 153.528, -28.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559686, "decimalLat": -28.371042 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.371 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.495889, "decimalLat": -28.255722 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.527843, "decimalLat": -28.404377 }, "geometry": { "type": "Point", "coordinates": [ 153.528, -28.404 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.49189, "decimalLat": -28.229437 }, "geometry": { "type": "Point", "coordinates": [ 153.492, -28.229 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.559623, "decimalLat": -28.393647 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556975, "decimalLat": -28.397536 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.496814, "decimalLat": -28.237443 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.450165, "decimalLat": -28.262129 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.574456, "decimalLat": -28.365997 }, "geometry": { "type": "Point", "coordinates": [ 153.574, -28.366 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.240856, "decimalLat": -28.315753 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -28.316 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3728, "decimalLat": -28.251194 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -28.251 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563931, "decimalLat": -28.388052 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556055, "decimalLat": -28.399735 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557446, "decimalLat": -28.396942 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556518, "decimalLat": -28.372548 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.373 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558566, "decimalLat": -28.394019 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561513, "decimalLat": -28.38924 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557262, "decimalLat": -28.397359 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556977, "decimalLat": -28.397252 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555688, "decimalLat": -28.376375 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.376 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555388, "decimalLat": -28.40827 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557953, "decimalLat": -28.396392 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557439, "decimalLat": -28.397381 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564025, "decimalLat": -28.380925 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560914, "decimalLat": -28.388123 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556988, "decimalLat": -28.397314 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555115, "decimalLat": -28.32982 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.33 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.389567, "decimalLat": -28.30084 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.301 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55752, "decimalLat": -28.388597 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557528, "decimalLat": -28.388673 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557006, "decimalLat": -28.397367 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557558, "decimalLat": -28.388503 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378076, "decimalLat": -28.255211 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.556868, "decimalLat": -28.40031 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.474069, "decimalLat": -28.258765 }, "geometry": { "type": "Point", "coordinates": [ 153.474, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.527242, "decimalLat": -28.233314 }, "geometry": { "type": "Point", "coordinates": [ 153.527, -28.233 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55671, "decimalLat": -28.40005 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562425, "decimalLat": -28.389917 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556044, "decimalLat": -28.403117 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.403 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557464, "decimalLat": -28.394275 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561262, "decimalLat": -28.366065 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.366 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.370133, "decimalLat": -28.259275 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557297, "decimalLat": -28.388597 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.48113, "decimalLat": -28.228416 }, "geometry": { "type": "Point", "coordinates": [ 153.481, -28.228 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561166, "decimalLat": -28.389204 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.54932, "decimalLat": -28.404832 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.405 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556187, "decimalLat": -28.398598 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433313, "decimalLat": -28.261702 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555267, "decimalLat": -28.408776 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.409 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563994, "decimalLat": -28.387975 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.255785, "decimalLat": -28.436217 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -28.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56185, "decimalLat": -28.392953 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.526673, "decimalLat": -28.233303 }, "geometry": { "type": "Point", "coordinates": [ 153.527, -28.233 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.54932, "decimalLat": -28.404832 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.405 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.482648, "decimalLat": -28.247201 }, "geometry": { "type": "Point", "coordinates": [ 153.483, -28.247 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.370418, "decimalLat": -28.258897 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558143, "decimalLat": -28.393943 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561767, "decimalLat": -28.386939 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561752, "decimalLat": -28.388988 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465627, "decimalLat": -28.325477 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.325 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.47209, "decimalLat": -28.264043 }, "geometry": { "type": "Point", "coordinates": [ 153.472, -28.264 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.502055, "decimalLat": -28.238096 }, "geometry": { "type": "Point", "coordinates": [ 153.502, -28.238 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.446973, "decimalLat": -28.223349 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375095, "decimalLat": -28.252332 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55745, "decimalLat": -28.388384 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557512, "decimalLat": -28.393581 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55609, "decimalLat": -28.398479 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433619, "decimalLat": -28.238243 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.238 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562939, "decimalLat": -28.386584 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.55705, "decimalLat": -28.397447 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561133, "decimalLat": -28.286809 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.287 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.466987, "decimalLat": -28.326808 }, "geometry": { "type": "Point", "coordinates": [ 153.467, -28.327 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465285, "decimalLat": -28.237583 }, "geometry": { "type": "Point", "coordinates": [ 153.465, -28.238 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563734, "decimalLat": -28.381087 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562877, "decimalLat": -28.329372 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.548894, "decimalLat": -28.404028 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39463, "decimalLat": -28.288936 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.289 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55926, "decimalLat": -28.393866 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.518851, "decimalLat": -28.232736 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.233 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557739, "decimalLat": -28.397239 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.573188, "decimalLat": -28.36821 }, "geometry": { "type": "Point", "coordinates": [ 153.573, -28.368 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55913, "decimalLat": -28.368998 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.369 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558372, "decimalLat": -28.394137 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.499045, "decimalLat": -28.223491 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.413474, "decimalLat": -28.249657 }, "geometry": { "type": "Point", "coordinates": [ 153.413, -28.25 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561895, "decimalLat": -28.389022 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.541106, "decimalLat": -28.33583 }, "geometry": { "type": "Point", "coordinates": [ 153.541, -28.336 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556415, "decimalLat": -28.371558 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.372 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557475, "decimalLat": -28.396989 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.490444, "decimalLat": -28.23463 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.235 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558, "decimalLat": -28.388242 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.502222, "decimalLat": -28.251271 }, "geometry": { "type": "Point", "coordinates": [ 153.502, -28.251 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561699, "decimalLat": -28.367279 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.367 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.567341, "decimalLat": -28.386438 }, "geometry": { "type": "Point", "coordinates": [ 153.567, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.47857, "decimalLat": -28.232574 }, "geometry": { "type": "Point", "coordinates": [ 153.479, -28.233 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557147, "decimalLat": -28.400357 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555908, "decimalLat": -28.37526 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.375 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559556, "decimalLat": -28.289734 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.29 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.477993, "decimalLat": -28.248694 }, "geometry": { "type": "Point", "coordinates": [ 153.478, -28.249 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.564671, "decimalLat": -28.386657 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.259633, "decimalLat": -28.353414 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -28.353 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558418, "decimalLat": -28.369256 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.369 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556756, "decimalLat": -28.400291 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555875, "decimalLat": -28.375219 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.375 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556688, "decimalLat": -28.400022 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.267446, "decimalLat": -28.442728 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -28.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563939, "decimalLat": -28.387946 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562466, "decimalLat": -28.39117 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.540846, "decimalLat": -28.195932 }, "geometry": { "type": "Point", "coordinates": [ 153.541, -28.196 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.532761, "decimalLat": -28.197031 }, "geometry": { "type": "Point", "coordinates": [ 153.533, -28.197 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56029, "decimalLat": -28.28575 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.286 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.548981, "decimalLat": -28.404528 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.405 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555612, "decimalLat": -28.398078 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564837, "decimalLat": -28.334547 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.335 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49838, "decimalLat": -28.223964 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.224 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.261077, "decimalLat": -28.437691 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -28.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561384, "decimalLat": -28.363083 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563995, "decimalLat": -28.387986 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556103, "decimalLat": -28.408131 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.490065, "decimalLat": -28.239334 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.239 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558285, "decimalLat": -28.394024 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563196, "decimalLat": -28.392608 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562175, "decimalLat": -28.390466 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.416797, "decimalLat": -28.288372 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.288 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561535, "decimalLat": -28.385582 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495627, "decimalLat": -28.254361 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.427208, "decimalLat": -28.229862 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.23 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.461284, "decimalLat": -28.464957 }, "geometry": { "type": "Point", "coordinates": [ 153.461, -28.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562505, "decimalLat": -28.391285 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561596, "decimalLat": -28.393401 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.564642, "decimalLat": -28.327767 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325549, "decimalLat": -28.387771 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565028, "decimalLat": -28.389615 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.556218, "decimalLat": -28.40823 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564397, "decimalLat": -28.391396 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49866, "decimalLat": -28.222508 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555796, "decimalLat": -28.398946 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559853, "decimalLat": -28.371386 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.371 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.35622, "decimalLat": -28.360009 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -28.36 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.419191, "decimalLat": -28.368727 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.369 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557586, "decimalLat": -28.394686 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556209, "decimalLat": -28.370785 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.371 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.556057, "decimalLat": -28.398603 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556647, "decimalLat": -28.40001 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465827, "decimalLat": -28.326579 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.327 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557778, "decimalLat": -28.396944 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559681, "decimalLat": -28.393611 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557217, "decimalLat": -28.38838 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557232, "decimalLat": -28.397366 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.389582, "decimalLat": -28.284035 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.284 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557611, "decimalLat": -28.394514 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.202841, "decimalLat": -28.363296 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -28.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.474541, "decimalLat": -28.257896 }, "geometry": { "type": "Point", "coordinates": [ 153.475, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.462302, "decimalLat": -28.187167 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.187 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.557416, "decimalLat": -28.397082 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.541124, "decimalLat": -28.393798 }, "geometry": { "type": "Point", "coordinates": [ 153.541, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.544911, "decimalLat": -28.332602 }, "geometry": { "type": "Point", "coordinates": [ 153.545, -28.333 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555453, "decimalLat": -28.378385 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55589, "decimalLat": -28.399119 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559233, "decimalLat": -28.393883 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.562111, "decimalLat": -28.385548 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564167, "decimalLat": -28.380833 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555933, "decimalLat": -28.398746 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557477, "decimalLat": -28.388387 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.478336, "decimalLat": -28.249349 }, "geometry": { "type": "Point", "coordinates": [ 153.478, -28.249 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556778, "decimalLat": -28.397534 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56144, "decimalLat": -28.385616 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303636, "decimalLat": -28.35799 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.358 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374444, "decimalLat": -28.252222 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5572, "decimalLat": -28.397524 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55563, "decimalLat": -28.378447 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.378 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562434, "decimalLat": -28.384161 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560115, "decimalLat": -28.393996 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495958, "decimalLat": -28.254464 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.373197, "decimalLat": -28.251337 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -28.251 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563982, "decimalLat": -28.380817 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564354, "decimalLat": -28.380511 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465495, "decimalLat": -28.237336 }, "geometry": { "type": "Point", "coordinates": [ 153.465, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465926, "decimalLat": -28.2261 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.226 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.460132, "decimalLat": -28.323843 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.324 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56342, "decimalLat": -28.381295 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331312, "decimalLat": -28.362476 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.362 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.555834, "decimalLat": -28.398963 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555779, "decimalLat": -28.399392 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.511236, "decimalLat": -28.241607 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.242 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563236, "decimalLat": -28.381282 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.520242, "decimalLat": -28.234366 }, "geometry": { "type": "Point", "coordinates": [ 153.52, -28.234 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563269, "decimalLat": -28.361556 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.362 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.55336, "decimalLat": -28.407803 }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.549962, "decimalLat": -28.329005 }, "geometry": { "type": "Point", "coordinates": [ 153.55, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.506985, "decimalLat": -28.244665 }, "geometry": { "type": "Point", "coordinates": [ 153.507, -28.245 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377742, "decimalLat": -28.249381 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.249 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.474455, "decimalLat": -28.324952 }, "geometry": { "type": "Point", "coordinates": [ 153.474, -28.325 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555716, "decimalLat": -28.399074 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.482165, "decimalLat": -28.247673 }, "geometry": { "type": "Point", "coordinates": [ 153.482, -28.248 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555628, "decimalLat": -28.399215 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557566, "decimalLat": -28.388418 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564011, "decimalLat": -28.387913 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56231, "decimalLat": -28.392104 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557985, "decimalLat": -28.39508 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564544, "decimalLat": -28.380335 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.38 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556418, "decimalLat": -28.408199 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562317, "decimalLat": -28.383844 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.556163, "decimalLat": -28.398314 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564037, "decimalLat": -28.387951 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556904, "decimalLat": -28.400365 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.543966, "decimalLat": -28.388928 }, "geometry": { "type": "Point", "coordinates": [ 153.544, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561777, "decimalLat": -28.389206 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427208, "decimalLat": -28.229862 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.23 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.561844, "decimalLat": -28.392972 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.466081, "decimalLat": -28.237195 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.567429, "decimalLat": -28.380983 }, "geometry": { "type": "Point", "coordinates": [ 153.567, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557582, "decimalLat": -28.388407 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.557673, "decimalLat": -28.38842 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561341, "decimalLat": -28.38468 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.478146, "decimalLat": -28.250297 }, "geometry": { "type": "Point", "coordinates": [ 153.478, -28.25 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395107, "decimalLat": -28.287731 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561749, "decimalLat": -28.388894 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559727, "decimalLat": -28.371361 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.371 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55917, "decimalLat": -28.383293 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563628, "decimalLat": -28.391286 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.137314, "decimalLat": -28.383891 }, "geometry": { "type": "Point", "coordinates": [ 153.137, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557027, "decimalLat": -28.393638 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374264, "decimalLat": -28.252098 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564524, "decimalLat": -28.332234 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.332 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557472, "decimalLat": -28.388513 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563412, "decimalLat": -28.389488 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556602, "decimalLat": -28.372279 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.372 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561932, "decimalLat": -28.389182 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558056, "decimalLat": -28.373982 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557523, "decimalLat": -28.388503 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.449221, "decimalLat": -28.260391 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.406923, "decimalLat": -28.325282 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.325 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555998, "decimalLat": -28.376772 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.377 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555939, "decimalLat": -28.398822 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562364, "decimalLat": -28.384194 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.568218, "decimalLat": -28.376657 }, "geometry": { "type": "Point", "coordinates": [ 153.568, -28.377 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561868, "decimalLat": -28.389121 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557079, "decimalLat": -28.394204 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555877, "decimalLat": -28.398924 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.566422, "decimalLat": -28.376057 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.376 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555108, "decimalLat": -28.330888 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559268, "decimalLat": -28.39384 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564243, "decimalLat": -28.380706 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559531, "decimalLat": -28.393769 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560523, "decimalLat": -28.373989 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560235, "decimalLat": -28.37446 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563531, "decimalLat": -28.381558 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.382 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468747, "decimalLat": -28.261392 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.505273, "decimalLat": -28.241618 }, "geometry": { "type": "Point", "coordinates": [ 153.505, -28.242 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555629, "decimalLat": -28.378563 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.379 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557511, "decimalLat": -28.394264 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556197, "decimalLat": -28.398648 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56116, "decimalLat": -28.344958 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.345 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.158, "decimalLat": -37.3046 }, "geometry": { "type": "Point", "coordinates": [ 144.158, -37.305 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.153, "decimalLat": -37.294 }, "geometry": { "type": "Point", "coordinates": [ 144.153, -37.294 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.3, "decimalLat": -37.1168 }, "geometry": { "type": "Point", "coordinates": [ 144.3, -37.117 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.687, "decimalLat": -36.5112 }, "geometry": { "type": "Point", "coordinates": [ 146.687, -36.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 4, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.492, "decimalLat": -38.4571 }, "geometry": { "type": "Point", "coordinates": [ 143.492, -38.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.84, "decimalLat": -37.7565 }, "geometry": { "type": "Point", "coordinates": [ 143.84, -37.756 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.594, "decimalLat": -38.5406 }, "geometry": { "type": "Point", "coordinates": [ 143.594, -38.541 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.768, "decimalLat": -38.4837 }, "geometry": { "type": "Point", "coordinates": [ 143.768, -38.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.623, "decimalLat": -38.5204 }, "geometry": { "type": "Point", "coordinates": [ 143.623, -38.52 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.442, "decimalLat": -37.2881 }, "geometry": { "type": "Point", "coordinates": [ 143.442, -37.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.913, "decimalLat": -37.4561 }, "geometry": { "type": "Point", "coordinates": [ 143.913, -37.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.24, "decimalLat": -37.0906 }, "geometry": { "type": "Point", "coordinates": [ 143.24, -37.091 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.622, "decimalLat": -38.5194 }, "geometry": { "type": "Point", "coordinates": [ 143.622, -38.519 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.832, "decimalLat": -37.7304 }, "geometry": { "type": "Point", "coordinates": [ 143.832, -37.73 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.576, "decimalLat": -38.4517 }, "geometry": { "type": "Point", "coordinates": [ 143.576, -38.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.155, "decimalLat": -36.8255 }, "geometry": { "type": "Point", "coordinates": [ 146.155, -36.825 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.358, "decimalLat": -38.531 }, "geometry": { "type": "Point", "coordinates": [ 143.358, -38.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.623, "decimalLat": -38.5204 }, "geometry": { "type": "Point", "coordinates": [ 143.623, -38.52 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.241, "decimalLat": -37.091 }, "geometry": { "type": "Point", "coordinates": [ 143.241, -37.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.804, "decimalLat": -37.7746 }, "geometry": { "type": "Point", "coordinates": [ 143.804, -37.775 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.623, "decimalLat": -38.5204 }, "geometry": { "type": "Point", "coordinates": [ 143.623, -38.52 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.3, "decimalLat": -37.1158 }, "geometry": { "type": "Point", "coordinates": [ 144.3, -37.116 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.244, "decimalLat": -37.2326 }, "geometry": { "type": "Point", "coordinates": [ 144.244, -37.233 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 16, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.39, "decimalLat": -38.4462 }, "geometry": { "type": "Point", "coordinates": [ 143.39, -38.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.279, "decimalLat": -37.0947 }, "geometry": { "type": "Point", "coordinates": [ 144.279, -37.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.55, "decimalLat": -38.4616 }, "geometry": { "type": "Point", "coordinates": [ 143.55, -38.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.688, "decimalLat": -36.5273 }, "geometry": { "type": "Point", "coordinates": [ 146.688, -36.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.246, "decimalLat": -38.6482 }, "geometry": { "type": "Point", "coordinates": [ 143.246, -38.648 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.244, "decimalLat": -36.7776 }, "geometry": { "type": "Point", "coordinates": [ 143.244, -36.778 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.772, "decimalLat": -38.4937 }, "geometry": { "type": "Point", "coordinates": [ 143.772, -38.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.772, "decimalLat": -38.4937 }, "geometry": { "type": "Point", "coordinates": [ 143.772, -38.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.772, "decimalLat": -38.4937 }, "geometry": { "type": "Point", "coordinates": [ 143.772, -38.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.359, "decimalLat": -37.6846 }, "geometry": { "type": "Point", "coordinates": [ 146.359, -37.685 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.558, "decimalLat": -38.4504 }, "geometry": { "type": "Point", "coordinates": [ 143.558, -38.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.433, "decimalLat": -37.291 }, "geometry": { "type": "Point", "coordinates": [ 143.433, -37.291 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.697, "decimalLat": -36.4801 }, "geometry": { "type": "Point", "coordinates": [ 146.697, -36.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 12, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.772, "decimalLat": -38.4942 }, "geometry": { "type": "Point", "coordinates": [ 143.772, -38.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.661, "decimalLat": -36.4911 }, "geometry": { "type": "Point", "coordinates": [ 146.661, -36.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.917, "decimalLat": -37.4382 }, "geometry": { "type": "Point", "coordinates": [ 143.917, -37.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.358, "decimalLat": -38.531 }, "geometry": { "type": "Point", "coordinates": [ 143.358, -38.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.409, "decimalLat": -38.4342 }, "geometry": { "type": "Point", "coordinates": [ 143.409, -38.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.24, "decimalLat": -37.0906 }, "geometry": { "type": "Point", "coordinates": [ 143.24, -37.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.155, "decimalLat": -36.8255 }, "geometry": { "type": "Point", "coordinates": [ 146.155, -36.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.527, "decimalLat": -37.0977 }, "geometry": { "type": "Point", "coordinates": [ 143.527, -37.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.442, "decimalLat": -38.1133 }, "geometry": { "type": "Point", "coordinates": [ 146.442, -38.113 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.772, "decimalLat": -38.4937 }, "geometry": { "type": "Point", "coordinates": [ 143.772, -38.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.804, "decimalLat": -37.7746 }, "geometry": { "type": "Point", "coordinates": [ 143.804, -37.775 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.768, "decimalLat": -38.4849 }, "geometry": { "type": "Point", "coordinates": [ 143.768, -38.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.39, "decimalLat": -38.4462 }, "geometry": { "type": "Point", "coordinates": [ 143.39, -38.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.928, "decimalLat": -37.4511 }, "geometry": { "type": "Point", "coordinates": [ 143.928, -37.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.6, "decimalLat": -38.3783 }, "geometry": { "type": "Point", "coordinates": [ 141.6, -38.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.832, "decimalLat": -37.7304 }, "geometry": { "type": "Point", "coordinates": [ 143.832, -37.73 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.493, "decimalLat": -38.4568 }, "geometry": { "type": "Point", "coordinates": [ 143.493, -38.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.442778, "decimalLat": -20.925 }, "geometry": { "type": "Point", "coordinates": [ 149.443, -20.925 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259194, "decimalLat": -27.518914 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.234083, "decimalLat": -27.50046 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.667746, "decimalLat": -27.811707 }, "geometry": { "type": "Point", "coordinates": [ 152.668, -27.812 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.246094, "decimalLat": -27.527231 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -27.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.223124, "decimalLat": -27.562109 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.154191, "decimalLat": -27.486699 }, "geometry": { "type": "Point", "coordinates": [ 153.154, -27.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 146.934773, "decimalLat": -19.428541 }, "geometry": { "type": "Point", "coordinates": [ 146.935, -19.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.102829, "decimalLat": -27.524771 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.812245, "decimalLat": -27.510311 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -27.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079728, "decimalLat": -27.507031 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.926206, "decimalLat": -30.347877 }, "geometry": { "type": "Point", "coordinates": [ 150.926, -30.348 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.560154, "decimalLat": -28.389494 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.812046, "decimalLat": -27.53635 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "Victoria", "decimalLon": 141.406227, "decimalLat": -37.586635 }, "geometry": { "type": "Point", "coordinates": [ 141.406, -37.587 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189706, "decimalLat": -27.651923 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -27.652 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.532329, "decimalLat": -34.73716 }, "geometry": { "type": "Point", "coordinates": [ 146.532, -34.737 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.943052, "decimalLat": -29.741902 }, "geometry": { "type": "Point", "coordinates": [ 152.943, -29.742 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906413, "decimalLat": -30.460847 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -30.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.11031, "decimalLat": -27.566147 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -27.566 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.946722, "decimalLat": -27.455046 }, "geometry": { "type": "Point", "coordinates": [ 151.947, -27.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073759, "decimalLat": -27.537124 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -27.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256281, "decimalLat": -27.548889 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.525132, "decimalLat": -38.435481 }, "geometry": { "type": "Point", "coordinates": [ 145.525, -38.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.19598, "decimalLat": -29.78625 }, "geometry": { "type": "Point", "coordinates": [ 151.196, -29.786 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.000546, "decimalLat": -34.061504 }, "geometry": { "type": "Point", "coordinates": [ 151.001, -34.062 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.004606, "decimalLat": -27.378111 }, "geometry": { "type": "Point", "coordinates": [ 153.005, -27.378 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.02274, "decimalLat": -27.525291 }, "geometry": { "type": "Point", "coordinates": [ 153.023, -27.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.278342, "decimalLat": -27.535274 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.090667, "decimalLat": -38.28881 }, "geometry": { "type": "Point", "coordinates": [ 145.091, -38.289 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.360081, "decimalLat": -27.915713 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -27.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.085162, "decimalLat": -27.541199 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -27.541 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206641, "decimalLat": -27.49753 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.01898, "decimalLat": -27.288758 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -27.289 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233435, "decimalLat": -27.533306 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.703602, "decimalLat": -38.458596 }, "geometry": { "type": "Point", "coordinates": [ 145.704, -38.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.339994, "decimalLat": -28.032945 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -28.033 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.537089, "decimalLat": -28.33307 }, "geometry": { "type": "Point", "coordinates": [ 153.537, -28.333 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256281, "decimalLat": -27.548889 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.229936, "decimalLat": -27.502764 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.19598, "decimalLat": -29.78625 }, "geometry": { "type": "Point", "coordinates": [ 151.196, -29.786 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.19598, "decimalLat": -29.78625 }, "geometry": { "type": "Point", "coordinates": [ 151.196, -29.786 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.57827, "decimalLat": -29.863158 }, "geometry": { "type": "Point", "coordinates": [ 150.578, -29.863 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.279247, "decimalLat": -27.525732 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -27.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.673591, "decimalLat": -28.01231 }, "geometry": { "type": "Point", "coordinates": [ 152.674, -28.012 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.863855, "decimalLat": -27.540481 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.058333, "decimalLat": -27.532772 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.564256, "decimalLat": -28.380667 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.282, "decimalLat": -27.532 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233727, "decimalLat": -27.542961 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.180878, "decimalLat": -27.69068 }, "geometry": { "type": "Point", "coordinates": [ 153.181, -27.691 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.4335, "decimalLat": -28.879101 }, "geometry": { "type": "Point", "coordinates": [ 152.434, -28.879 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 13, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.202551, "decimalLat": -38.651438 }, "geometry": { "type": "Point", "coordinates": [ 146.203, -38.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.369713, "decimalLat": -27.834269 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -27.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.807541, "decimalLat": -27.531846 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.866674, "decimalLat": -27.357116 }, "geometry": { "type": "Point", "coordinates": [ 151.867, -27.357 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.555884, "decimalLat": -28.399137 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.556836, "decimalLat": -28.397261 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564774, "decimalLat": -28.387398 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.29706, "decimalLat": -27.569272 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -27.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.840742, "decimalLat": -27.528783 }, "geometry": { "type": "Point", "coordinates": [ 152.841, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256281, "decimalLat": -27.548889 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.136124, "decimalLat": -32.719025 }, "geometry": { "type": "Point", "coordinates": [ 152.136, -32.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.075693, "decimalLat": -27.845438 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.108487, "decimalLat": -27.512861 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -27.513 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.555833, "decimalLat": -28.399167 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.805285, "decimalLat": -27.534527 }, "geometry": { "type": "Point", "coordinates": [ 152.805, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.910913, "decimalLat": -30.343103 }, "geometry": { "type": "Point", "coordinates": [ 150.911, -30.343 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.971429, "decimalLat": -38.274687 }, "geometry": { "type": "Point", "coordinates": [ 145.971, -38.275 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 11, "day": 10, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.506285, "decimalLat": -28.241669 }, "geometry": { "type": "Point", "coordinates": [ 153.506, -28.242 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.807332, "decimalLat": -27.530471 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.379697, "decimalLat": -27.25714 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -27.257 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.080035, "decimalLat": -27.484726 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.556941, "decimalLat": -28.397195 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.863855, "decimalLat": -27.540481 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.19597, "decimalLat": -29.78653 }, "geometry": { "type": "Point", "coordinates": [ 151.196, -29.787 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.229011, "decimalLat": -27.498311 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.229446, "decimalLat": -28.12233 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -28.122 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.556922, "decimalLat": -28.397139 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.11454, "decimalLat": -27.590064 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -27.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.197767, "decimalLat": -27.502912 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.123475, "decimalLat": -27.778815 }, "geometry": { "type": "Point", "coordinates": [ 153.123, -27.779 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.465634, "decimalLat": -28.322836 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.323 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.444479, "decimalLat": -28.261052 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 29, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.694582, "decimalLat": -38.265883 }, "geometry": { "type": "Point", "coordinates": [ 146.695, -38.266 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.47057, "decimalLat": -27.404673 }, "geometry": { "type": "Point", "coordinates": [ 153.471, -27.405 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.40249, "decimalLat": -28.108995 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.109 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.324926, "decimalLat": -27.921097 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -27.921 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.007313, "decimalLat": -27.304248 }, "geometry": { "type": "Point", "coordinates": [ 153.007, -27.304 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.555948, "decimalLat": -28.398935 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206314, "decimalLat": -27.497665 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -27.498 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.555987, "decimalLat": -28.398821 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.428148, "decimalLat": -28.189969 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.19 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.564663, "decimalLat": -28.327875 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.229198, "decimalLat": -27.549427 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.28274, "decimalLat": -27.533817 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -27.534 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.06355, "decimalLat": -27.724201 }, "geometry": { "type": "Point", "coordinates": [ 153.064, -27.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.106763, "decimalLat": -27.561401 }, "geometry": { "type": "Point", "coordinates": [ 152.107, -27.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.467861, "decimalLat": -28.326539 }, "geometry": { "type": "Point", "coordinates": [ 153.468, -28.327 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.840742, "decimalLat": -27.528783 }, "geometry": { "type": "Point", "coordinates": [ 152.841, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.559889, "decimalLat": -28.286486 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.286 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.500881, "decimalLat": -30.518178 }, "geometry": { "type": "Point", "coordinates": [ 151.501, -30.518 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.760861, "decimalLat": -22.740992 }, "geometry": { "type": "Point", "coordinates": [ 149.761, -22.741 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.891868, "decimalLat": -26.71947 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -26.719 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.560725, "decimalLat": -28.286951 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.287 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.260146, "decimalLat": -27.502317 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.271358, "decimalLat": -27.575642 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -27.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.17, "decimalLat": -27.638333 }, "geometry": { "type": "Point", "coordinates": [ 153.17, -27.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.556036, "decimalLat": -28.399676 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.950909, "decimalLat": -27.14524 }, "geometry": { "type": "Point", "coordinates": [ 152.951, -27.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.088659, "decimalLat": -27.515984 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.072345, "decimalLat": -27.524029 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.803627, "decimalLat": -27.532621 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.087868, "decimalLat": -27.507314 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.843884, "decimalLat": -29.461929 }, "geometry": { "type": "Point", "coordinates": [ 149.844, -29.462 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.228867, "decimalLat": -27.5028 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.259033, "decimalLat": -27.500161 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.652758, "decimalLat": -26.371375 }, "geometry": { "type": "Point", "coordinates": [ 152.653, -26.371 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.100672, "decimalLat": -27.790453 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -27.79 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.10679, "decimalLat": -27.53455 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.859868, "decimalLat": -27.545058 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -27.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.446356, "decimalLat": -28.257992 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.138889, "decimalLat": -30.208889 }, "geometry": { "type": "Point", "coordinates": [ 153.139, -30.209 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.025927, "decimalLat": -26.675912 }, "geometry": { "type": "Point", "coordinates": [ 152.026, -26.676 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.063028, "decimalLat": -27.540036 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.806816, "decimalLat": -27.529464 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -27.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 2, "stateProvi": "Victoria", "decimalLon": 145.546875, "decimalLat": -37.71859 }, "geometry": { "type": "Point", "coordinates": [ 145.547, -37.719 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.229906, "decimalLat": -27.502814 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.070176, "decimalLat": -27.510693 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -27.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.18856, "decimalLat": -27.702088 }, "geometry": { "type": "Point", "coordinates": [ 153.189, -27.702 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.863855, "decimalLat": -27.540481 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.961977, "decimalLat": -26.699996 }, "geometry": { "type": "Point", "coordinates": [ 152.962, -26.7 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.925627, "decimalLat": -29.690439 }, "geometry": { "type": "Point", "coordinates": [ 150.926, -29.69 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.523555, "decimalLat": -27.430733 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -27.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.252167, "decimalLat": -27.542664 }, "geometry": { "type": "Point", "coordinates": [ 153.252, -27.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 2, "stateProvi": "Queensland", "decimalLon": 152.812257, "decimalLat": -27.53646 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.229814, "decimalLat": -27.502719 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.256312, "decimalLat": -27.548436 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.637206, "decimalLat": -27.659812 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -27.66 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.272321, "decimalLat": -27.554369 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -27.554 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.429187, "decimalLat": -27.320497 }, "geometry": { "type": "Point", "coordinates": [ 152.429, -27.32 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.523738, "decimalLat": -27.431976 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -27.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.204953, "decimalLat": -27.547829 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37919, "decimalLat": -28.55907 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -28.559 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.434508, "decimalLat": -28.878855 }, "geometry": { "type": "Point", "coordinates": [ 152.435, -28.879 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.847924, "decimalLat": -27.531617 }, "geometry": { "type": "Point", "coordinates": [ 152.848, -27.532 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 24, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.258151, "decimalLat": -27.502338 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.074813, "decimalLat": -27.32077 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -27.321 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.925627, "decimalLat": -29.690439 }, "geometry": { "type": "Point", "coordinates": [ 150.926, -29.69 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.925627, "decimalLat": -29.690439 }, "geometry": { "type": "Point", "coordinates": [ 150.926, -29.69 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.925627, "decimalLat": -29.690439 }, "geometry": { "type": "Point", "coordinates": [ 150.926, -29.69 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.19598, "decimalLat": -29.78625 }, "geometry": { "type": "Point", "coordinates": [ 151.196, -29.786 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.581963, "decimalLat": -32.975037 }, "geometry": { "type": "Point", "coordinates": [ 151.582, -32.975 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.223069, "decimalLat": -27.499848 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.287838, "decimalLat": -29.355285 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -29.355 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.206082, "decimalLat": -27.497428 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.344389, "decimalLat": -28.055122 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.055 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.20632, "decimalLat": -27.497271 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -27.497 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.19598, "decimalLat": -29.78625 }, "geometry": { "type": "Point", "coordinates": [ 151.196, -29.786 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 152.653656, "decimalLat": -26.372675 }, "geometry": { "type": "Point", "coordinates": [ 152.654, -26.373 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 150.925627, "decimalLat": -29.690439 }, "geometry": { "type": "Point", "coordinates": [ 150.926, -29.69 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601942, "decimalLat": -29.86728 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -29.867 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.079972, "decimalLat": -27.507136 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -27.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 2, "stateProvi": "Victoria", "decimalLon": 142.363329, "decimalLat": -38.318577 }, "geometry": { "type": "Point", "coordinates": [ 142.363, -38.319 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.230772, "decimalLat": -27.499153 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -27.499 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.072459, "decimalLat": -27.523949 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -27.524 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.235635, "decimalLat": -27.50938 }, "geometry": { "type": "Point", "coordinates": [ 153.236, -27.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.857472, "decimalLat": -27.530463 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -27.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.073422, "decimalLat": -27.519176 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -27.519 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066152, "decimalLat": -27.5348 }, "geometry": { "type": "Point", "coordinates": [ 153.066, -27.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.863855, "decimalLat": -27.540481 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -27.54 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.99758, "decimalLat": -27.434708 }, "geometry": { "type": "Point", "coordinates": [ 152.998, -27.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069463, "decimalLat": -27.222745 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "Queensland", "decimalLon": 143.878541, "decimalLat": -18.620159 }, "geometry": { "type": "Point", "coordinates": [ 143.879, -18.62 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.188821, "decimalLat": -28.523078 }, "geometry": { "type": "Point", "coordinates": [ 153.189, -28.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.901567, "decimalLat": -27.146706 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -27.147 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.269067, "decimalLat": -27.536409 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -27.536 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.094606, "decimalLat": -27.514257 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -27.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.233398, "decimalLat": -27.533285 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -27.533 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.55005, "decimalLat": -35.32686 }, "geometry": { "type": "Point", "coordinates": [ 138.55, -35.327 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70917, "decimalLat": -35.02967 }, "geometry": { "type": "Point", "coordinates": [ 138.709, -35.03 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69791, "decimalLat": -35.11454 }, "geometry": { "type": "Point", "coordinates": [ 138.698, -35.115 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67424, "decimalLat": -35.0827 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -35.083 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71667, "decimalLat": -35.01274 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -35.013 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71753, "decimalLat": -35.00511 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -35.005 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 2, "stateProvi": "Queensland", "decimalLon": 152.876103, "decimalLat": -27.944047 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -27.944 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67616, "decimalLat": -35.10565 }, "geometry": { "type": "Point", "coordinates": [ 138.676, -35.106 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.78286, "decimalLat": -35.08736 }, "geometry": { "type": "Point", "coordinates": [ 138.783, -35.087 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7065, "decimalLat": -34.99024 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67616, "decimalLat": -35.10565 }, "geometry": { "type": "Point", "coordinates": [ 138.676, -35.106 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.80632, "decimalLat": -34.83283 }, "geometry": { "type": "Point", "coordinates": [ 138.806, -34.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68592, "decimalLat": -34.985 }, "geometry": { "type": "Point", "coordinates": [ 138.686, -34.985 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68332, "decimalLat": -34.95011 }, "geometry": { "type": "Point", "coordinates": [ 138.683, -34.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.78286, "decimalLat": -35.01277 }, "geometry": { "type": "Point", "coordinates": [ 138.783, -35.013 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.64789, "decimalLat": -35.08615 }, "geometry": { "type": "Point", "coordinates": [ 138.648, -35.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73756, "decimalLat": -35.1083 }, "geometry": { "type": "Point", "coordinates": [ 138.738, -35.108 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71099, "decimalLat": -35.01647 }, "geometry": { "type": "Point", "coordinates": [ 138.711, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71656, "decimalLat": -35.10743 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -35.107 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.74315, "decimalLat": -35.11246 }, "geometry": { "type": "Point", "coordinates": [ 138.743, -35.112 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.83179, "decimalLat": -34.68817 }, "geometry": { "type": "Point", "coordinates": [ 138.832, -34.688 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71656, "decimalLat": -35.10743 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -35.107 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.66485, "decimalLat": -35.10187 }, "geometry": { "type": "Point", "coordinates": [ 138.665, -35.102 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.58715, "decimalLat": -35.74552 }, "geometry": { "type": "Point", "coordinates": [ 137.587, -35.746 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.85653, "decimalLat": -34.65349 }, "geometry": { "type": "Point", "coordinates": [ 135.857, -34.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.83105, "decimalLat": -35.05169 }, "geometry": { "type": "Point", "coordinates": [ 138.831, -35.052 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72936, "decimalLat": -35.12749 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -35.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 150.99961, "decimalLat": -34.083779 }, "geometry": { "type": "Point", "coordinates": [ 151.0, -34.084 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.74616, "decimalLat": -35.06865 }, "geometry": { "type": "Point", "coordinates": [ 138.746, -35.069 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71812, "decimalLat": -34.9168 }, "geometry": { "type": "Point", "coordinates": [ 138.718, -34.917 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 139.17638, "decimalLat": -34.72228 }, "geometry": { "type": "Point", "coordinates": [ 139.176, -34.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70113, "decimalLat": -35.10422 }, "geometry": { "type": "Point", "coordinates": [ 138.701, -35.104 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6802, "decimalLat": -35.13158 }, "geometry": { "type": "Point", "coordinates": [ 138.68, -35.132 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67518, "decimalLat": -34.93106 }, "geometry": { "type": "Point", "coordinates": [ 138.675, -34.931 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.220715, "decimalLat": -27.502214 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -27.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.7443, "decimalLat": -34.1743 }, "geometry": { "type": "Point", "coordinates": [ 140.744, -34.174 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.64494, "decimalLat": -35.08356 }, "geometry": { "type": "Point", "coordinates": [ 138.645, -35.084 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6622, "decimalLat": -35.08399 }, "geometry": { "type": "Point", "coordinates": [ 138.662, -35.084 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.57927, "decimalLat": -35.06163 }, "geometry": { "type": "Point", "coordinates": [ 138.579, -35.062 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68332, "decimalLat": -34.95011 }, "geometry": { "type": "Point", "coordinates": [ 138.683, -34.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72993, "decimalLat": -34.82606 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.826 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 2, "stateProvi": "Queensland", "decimalLon": 145.429781, "decimalLat": -17.107279 }, "geometry": { "type": "Point", "coordinates": [ 145.43, -17.107 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69099, "decimalLat": -35.45644 }, "geometry": { "type": "Point", "coordinates": [ 138.691, -35.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7534, "decimalLat": -35.00206 }, "geometry": { "type": "Point", "coordinates": [ 138.753, -35.002 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.84161, "decimalLat": -37.97355 }, "geometry": { "type": "Point", "coordinates": [ 140.842, -37.974 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67393, "decimalLat": -35.11435 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -35.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.78813, "decimalLat": -34.78559 }, "geometry": { "type": "Point", "coordinates": [ 135.788, -34.786 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.66485, "decimalLat": -35.10187 }, "geometry": { "type": "Point", "coordinates": [ 138.665, -35.102 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.7443, "decimalLat": -34.1743 }, "geometry": { "type": "Point", "coordinates": [ 140.744, -34.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 152.973638, "decimalLat": -26.510737 }, "geometry": { "type": "Point", "coordinates": [ 152.974, -26.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68332, "decimalLat": -34.95011 }, "geometry": { "type": "Point", "coordinates": [ 138.683, -34.95 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68332, "decimalLat": -34.95011 }, "geometry": { "type": "Point", "coordinates": [ 138.683, -34.95 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70248, "decimalLat": -34.87787 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.878 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.22184, "decimalLat": -27.502854 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -27.503 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68145, "decimalLat": -35.08274 }, "geometry": { "type": "Point", "coordinates": [ 138.681, -35.083 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68145, "decimalLat": -35.08274 }, "geometry": { "type": "Point", "coordinates": [ 138.681, -35.083 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.85477, "decimalLat": -34.69416 }, "geometry": { "type": "Point", "coordinates": [ 135.855, -34.694 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73958, "decimalLat": -34.99555 }, "geometry": { "type": "Point", "coordinates": [ 138.74, -34.996 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.75569, "decimalLat": -35.00272 }, "geometry": { "type": "Point", "coordinates": [ 138.756, -35.003 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.64804, "decimalLat": -35.08612 }, "geometry": { "type": "Point", "coordinates": [ 138.648, -35.086 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.83157, "decimalLat": -34.68821 }, "geometry": { "type": "Point", "coordinates": [ 138.832, -34.688 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68353, "decimalLat": -35.09246 }, "geometry": { "type": "Point", "coordinates": [ 138.684, -35.092 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.85256, "decimalLat": -34.68679 }, "geometry": { "type": "Point", "coordinates": [ 135.853, -34.687 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.64494, "decimalLat": -35.08356 }, "geometry": { "type": "Point", "coordinates": [ 138.645, -35.084 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67424, "decimalLat": -35.0827 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -35.083 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72469, "decimalLat": -34.99957 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 2, "stateProvi": "Victoria", "decimalLon": 145.710762, "decimalLat": -38.518537 }, "geometry": { "type": "Point", "coordinates": [ 145.711, -38.519 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.81896, "decimalLat": -37.84217 }, "geometry": { "type": "Point", "coordinates": [ 140.819, -37.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.91743, "decimalLat": -34.70637 }, "geometry": { "type": "Point", "coordinates": [ 138.917, -34.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6986, "decimalLat": -35.00625 }, "geometry": { "type": "Point", "coordinates": [ 138.699, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69027, "decimalLat": -35.12428 }, "geometry": { "type": "Point", "coordinates": [ 138.69, -35.124 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70708, "decimalLat": -34.99066 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.84404, "decimalLat": -34.70542 }, "geometry": { "type": "Point", "coordinates": [ 135.844, -34.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67393, "decimalLat": -35.11435 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -35.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.80473, "decimalLat": -34.78735 }, "geometry": { "type": "Point", "coordinates": [ 135.805, -34.787 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70947, "decimalLat": -34.99878 }, "geometry": { "type": "Point", "coordinates": [ 138.709, -34.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72154, "decimalLat": -35.00668 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -35.007 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.62983, "decimalLat": -34.99131 }, "geometry": { "type": "Point", "coordinates": [ 138.63, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67393, "decimalLat": -35.11435 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -35.114 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68145, "decimalLat": -35.08274 }, "geometry": { "type": "Point", "coordinates": [ 138.681, -35.083 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.66141, "decimalLat": -34.61292 }, "geometry": { "type": "Point", "coordinates": [ 135.661, -34.613 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71656, "decimalLat": -35.10743 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -35.107 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67396, "decimalLat": -35.00627 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -35.006 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70248, "decimalLat": -34.87787 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.878 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.8547, "decimalLat": -34.694 }, "geometry": { "type": "Point", "coordinates": [ 135.855, -34.694 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.72455, "decimalLat": -38.03825 }, "geometry": { "type": "Point", "coordinates": [ 140.725, -38.038 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.64619, "decimalLat": -35.78658 }, "geometry": { "type": "Point", "coordinates": [ 137.646, -35.787 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65419, "decimalLat": -35.08521 }, "geometry": { "type": "Point", "coordinates": [ 138.654, -35.085 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71071, "decimalLat": -35.02585 }, "geometry": { "type": "Point", "coordinates": [ 138.711, -35.026 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.249164, "decimalLat": -27.490062 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -27.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72537, "decimalLat": -34.99932 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -34.999 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.66764, "decimalLat": -35.00847 }, "geometry": { "type": "Point", "coordinates": [ 138.668, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.70089, "decimalLat": -34.63871 }, "geometry": { "type": "Point", "coordinates": [ 135.701, -34.639 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7218, "decimalLat": -35.12718 }, "geometry": { "type": "Point", "coordinates": [ 138.722, -35.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 2, "stateProvi": "Queensland", "decimalLon": 152.937828, "decimalLat": -27.277513 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -27.278 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.59933, "decimalLat": -35.75381 }, "geometry": { "type": "Point", "coordinates": [ 137.599, -35.754 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70248, "decimalLat": -34.87787 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.878 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69326, "decimalLat": -35.10718 }, "geometry": { "type": "Point", "coordinates": [ 138.693, -35.107 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67257, "decimalLat": -35.00825 }, "geometry": { "type": "Point", "coordinates": [ 138.673, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6618, "decimalLat": -35.10972 }, "geometry": { "type": "Point", "coordinates": [ 138.662, -35.11 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.74616, "decimalLat": -35.06865 }, "geometry": { "type": "Point", "coordinates": [ 138.746, -35.069 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70695, "decimalLat": -34.99039 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68319, "decimalLat": -34.99803 }, "geometry": { "type": "Point", "coordinates": [ 138.683, -34.998 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.82407, "decimalLat": -34.76728 }, "geometry": { "type": "Point", "coordinates": [ 135.824, -34.767 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72922, "decimalLat": -35.09018 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -35.09 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.086983, "decimalLat": -27.515858 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -27.516 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69404, "decimalLat": -34.98823 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -34.988 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67642, "decimalLat": -34.99125 }, "geometry": { "type": "Point", "coordinates": [ 138.676, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70415, "decimalLat": -35.07237 }, "geometry": { "type": "Point", "coordinates": [ 138.704, -35.072 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 2, "stateProvi": "Queensland", "decimalLon": 152.99758, "decimalLat": -27.434708 }, "geometry": { "type": "Point", "coordinates": [ 152.998, -27.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7067, "decimalLat": -34.99033 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.61619, "decimalLat": -34.97262 }, "geometry": { "type": "Point", "coordinates": [ 138.616, -34.973 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69027, "decimalLat": -35.12428 }, "geometry": { "type": "Point", "coordinates": [ 138.69, -35.124 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.85085, "decimalLat": -34.70768 }, "geometry": { "type": "Point", "coordinates": [ 135.851, -34.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72451, "decimalLat": -35.08282 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -35.083 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.85476, "decimalLat": -34.69118 }, "geometry": { "type": "Point", "coordinates": [ 135.855, -34.691 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73343, "decimalLat": -35.09491 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -35.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.5556, "decimalLat": -34.96383 }, "geometry": { "type": "Point", "coordinates": [ 138.556, -34.964 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73235, "decimalLat": -35.10626 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -35.106 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73651, "decimalLat": -35.0786 }, "geometry": { "type": "Point", "coordinates": [ 138.737, -35.079 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.77629, "decimalLat": -34.9889 }, "geometry": { "type": "Point", "coordinates": [ 138.776, -34.989 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67393, "decimalLat": -35.11435 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -35.114 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.66041, "decimalLat": -35.11016 }, "geometry": { "type": "Point", "coordinates": [ 138.66, -35.11 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68835, "decimalLat": -35.08836 }, "geometry": { "type": "Point", "coordinates": [ 138.688, -35.088 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.8397, "decimalLat": -37.96744 }, "geometry": { "type": "Point", "coordinates": [ 140.84, -37.967 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.85079, "decimalLat": -34.70764 }, "geometry": { "type": "Point", "coordinates": [ 135.851, -34.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 137.62076, "decimalLat": -35.7687 }, "geometry": { "type": "Point", "coordinates": [ 137.621, -35.769 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7476, "decimalLat": -35.07894 }, "geometry": { "type": "Point", "coordinates": [ 138.748, -35.079 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67409, "decimalLat": -34.9991 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -34.999 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73434, "decimalLat": -35.08414 }, "geometry": { "type": "Point", "coordinates": [ 138.734, -35.084 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70567, "decimalLat": -34.99159 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.992 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.81423, "decimalLat": -34.04977 }, "geometry": { "type": "Point", "coordinates": [ 140.814, -34.05 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.72414, "decimalLat": -38.04427 }, "geometry": { "type": "Point", "coordinates": [ 140.724, -38.044 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.204953, "decimalLat": -27.547829 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -27.548 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70567, "decimalLat": -34.99156 }, "geometry": { "type": "Point", "coordinates": [ 138.706, -34.992 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70695, "decimalLat": -34.99039 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.7443, "decimalLat": -34.17442 }, "geometry": { "type": "Point", "coordinates": [ 140.744, -34.174 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67914, "decimalLat": -35.11392 }, "geometry": { "type": "Point", "coordinates": [ 138.679, -35.114 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.66623, "decimalLat": -34.93654 }, "geometry": { "type": "Point", "coordinates": [ 135.666, -34.937 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.58238, "decimalLat": -35.30866 }, "geometry": { "type": "Point", "coordinates": [ 138.582, -35.309 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.75937, "decimalLat": -35.00302 }, "geometry": { "type": "Point", "coordinates": [ 138.759, -35.003 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.85124, "decimalLat": -34.70731 }, "geometry": { "type": "Point", "coordinates": [ 135.851, -34.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.79092, "decimalLat": -38.02567 }, "geometry": { "type": "Point", "coordinates": [ 140.791, -38.026 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70671, "decimalLat": -34.99038 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70695, "decimalLat": -34.99039 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.88401, "decimalLat": -34.82185 }, "geometry": { "type": "Point", "coordinates": [ 138.884, -34.822 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67393, "decimalLat": -35.11435 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -35.114 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70683, "decimalLat": -34.99046 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.75151, "decimalLat": -34.99934 }, "geometry": { "type": "Point", "coordinates": [ 138.752, -34.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71907, "decimalLat": -35.08421 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -35.084 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67444, "decimalLat": -34.94252 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -34.943 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72718, "decimalLat": -34.99632 }, "geometry": { "type": "Point", "coordinates": [ 138.727, -34.996 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67616, "decimalLat": -35.10565 }, "geometry": { "type": "Point", "coordinates": [ 138.676, -35.106 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71558, "decimalLat": -35.01191 }, "geometry": { "type": "Point", "coordinates": [ 138.716, -35.012 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70654, "decimalLat": -34.99039 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71443, "decimalLat": -35.0876 }, "geometry": { "type": "Point", "coordinates": [ 138.714, -35.088 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68332, "decimalLat": -34.95011 }, "geometry": { "type": "Point", "coordinates": [ 138.683, -34.95 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73235, "decimalLat": -35.10626 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -35.106 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71904, "decimalLat": -35.0842 }, "geometry": { "type": "Point", "coordinates": [ 138.719, -35.084 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73651, "decimalLat": -35.0786 }, "geometry": { "type": "Point", "coordinates": [ 138.737, -35.079 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70715, "decimalLat": -35.07823 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -35.078 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70687, "decimalLat": -34.99042 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69728, "decimalLat": -34.99074 }, "geometry": { "type": "Point", "coordinates": [ 138.697, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73676, "decimalLat": -35.40432 }, "geometry": { "type": "Point", "coordinates": [ 138.737, -35.404 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68353, "decimalLat": -35.09246 }, "geometry": { "type": "Point", "coordinates": [ 138.684, -35.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.67009, "decimalLat": -34.8898 }, "geometry": { "type": "Point", "coordinates": [ 135.67, -34.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73802, "decimalLat": -34.77328 }, "geometry": { "type": "Point", "coordinates": [ 138.738, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69566, "decimalLat": -35.08987 }, "geometry": { "type": "Point", "coordinates": [ 138.696, -35.09 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70654, "decimalLat": -34.99039 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.85006, "decimalLat": -34.84819 }, "geometry": { "type": "Point", "coordinates": [ 135.85, -34.848 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.74655, "decimalLat": -35.07446 }, "geometry": { "type": "Point", "coordinates": [ 138.747, -35.074 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67925, "decimalLat": -35.12319 }, "geometry": { "type": "Point", "coordinates": [ 138.679, -35.123 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 2, "stateProvi": "Queensland", "decimalLon": 153.234398, "decimalLat": -27.500472 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -27.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73815, "decimalLat": -35.11988 }, "geometry": { "type": "Point", "coordinates": [ 138.738, -35.12 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6999, "decimalLat": -34.86802 }, "geometry": { "type": "Point", "coordinates": [ 138.7, -34.868 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68145, "decimalLat": -35.08274 }, "geometry": { "type": "Point", "coordinates": [ 138.681, -35.083 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.83832, "decimalLat": -34.71964 }, "geometry": { "type": "Point", "coordinates": [ 135.838, -34.72 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6802, "decimalLat": -35.13158 }, "geometry": { "type": "Point", "coordinates": [ 138.68, -35.132 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.74655, "decimalLat": -35.07446 }, "geometry": { "type": "Point", "coordinates": [ 138.747, -35.074 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 2, "stateProvi": "South Australia", "decimalLon": 137.60413, "decimalLat": -35.96621 }, "geometry": { "type": "Point", "coordinates": [ 137.604, -35.966 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.74588, "decimalLat": -35.06881 }, "geometry": { "type": "Point", "coordinates": [ 138.746, -35.069 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 2, "stateProvi": "South Australia", "decimalLon": 137.68124, "decimalLat": -35.81113 }, "geometry": { "type": "Point", "coordinates": [ 137.681, -35.811 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70654, "decimalLat": -34.99039 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 2, "stateProvi": "South Australia", "decimalLon": 140.86578, "decimalLat": -37.80778 }, "geometry": { "type": "Point", "coordinates": [ 140.866, -37.808 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73756, "decimalLat": -35.1083 }, "geometry": { "type": "Point", "coordinates": [ 138.738, -35.108 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69839, "decimalLat": -35.00149 }, "geometry": { "type": "Point", "coordinates": [ 138.698, -35.001 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70718, "decimalLat": -34.99069 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71656, "decimalLat": -35.10743 }, "geometry": { "type": "Point", "coordinates": [ 138.717, -35.107 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67843, "decimalLat": -34.99539 }, "geometry": { "type": "Point", "coordinates": [ 138.678, -34.995 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.694, "decimalLat": -35.0158 }, "geometry": { "type": "Point", "coordinates": [ 138.694, -35.016 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69119, "decimalLat": -35.12341 }, "geometry": { "type": "Point", "coordinates": [ 138.691, -35.123 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.63903, "decimalLat": -34.9888 }, "geometry": { "type": "Point", "coordinates": [ 138.639, -34.989 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.64789, "decimalLat": -35.08615 }, "geometry": { "type": "Point", "coordinates": [ 138.648, -35.086 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70867, "decimalLat": -34.98959 }, "geometry": { "type": "Point", "coordinates": [ 138.709, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67393, "decimalLat": -35.11435 }, "geometry": { "type": "Point", "coordinates": [ 138.674, -35.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67924, "decimalLat": -35.12319 }, "geometry": { "type": "Point", "coordinates": [ 138.679, -35.123 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.78339, "decimalLat": -35.01494 }, "geometry": { "type": "Point", "coordinates": [ 138.783, -35.015 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.75654, "decimalLat": -35.00313 }, "geometry": { "type": "Point", "coordinates": [ 138.757, -35.003 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68577, "decimalLat": -35.07946 }, "geometry": { "type": "Point", "coordinates": [ 138.686, -35.079 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69027, "decimalLat": -35.12428 }, "geometry": { "type": "Point", "coordinates": [ 138.69, -35.124 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73194, "decimalLat": -35.12278 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -35.123 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.66228, "decimalLat": -34.99416 }, "geometry": { "type": "Point", "coordinates": [ 138.662, -34.994 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73756, "decimalLat": -35.1083 }, "geometry": { "type": "Point", "coordinates": [ 138.738, -35.108 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 2, "stateProvi": "South Australia", "decimalLon": 138.61226, "decimalLat": -34.9123 }, "geometry": { "type": "Point", "coordinates": [ 138.612, -34.912 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72936, "decimalLat": -35.12749 }, "geometry": { "type": "Point", "coordinates": [ 138.729, -35.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.69648, "decimalLat": -35.0823 }, "geometry": { "type": "Point", "coordinates": [ 138.696, -35.082 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.93088, "decimalLat": -35.00016 }, "geometry": { "type": "Point", "coordinates": [ 138.931, -35.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73193, "decimalLat": -35.12278 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -35.123 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.75352, "decimalLat": -35.00196 }, "geometry": { "type": "Point", "coordinates": [ 138.754, -35.002 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 2, "stateProvi": "South Australia", "decimalLon": 138.75094, "decimalLat": -34.99808 }, "geometry": { "type": "Point", "coordinates": [ 138.751, -34.998 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70695, "decimalLat": -34.99039 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "South Australia", "decimalLon": 140.72458, "decimalLat": -38.03835 }, "geometry": { "type": "Point", "coordinates": [ 140.725, -38.038 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.85159, "decimalLat": -34.70746 }, "geometry": { "type": "Point", "coordinates": [ 135.852, -34.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6802, "decimalLat": -35.13158 }, "geometry": { "type": "Point", "coordinates": [ 138.68, -35.132 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 2, "stateProvi": "South Australia", "decimalLon": 140.7163, "decimalLat": -38.03453 }, "geometry": { "type": "Point", "coordinates": [ 140.716, -38.035 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73621, "decimalLat": -35.14914 }, "geometry": { "type": "Point", "coordinates": [ 138.736, -35.149 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7325, "decimalLat": -35.2233 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -35.223 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67345, "decimalLat": -34.9988 }, "geometry": { "type": "Point", "coordinates": [ 138.673, -34.999 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.82965, "decimalLat": -34.77891 }, "geometry": { "type": "Point", "coordinates": [ 135.83, -34.779 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.74655, "decimalLat": -35.07446 }, "geometry": { "type": "Point", "coordinates": [ 138.747, -35.074 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68176, "decimalLat": -35.26796 }, "geometry": { "type": "Point", "coordinates": [ 138.682, -35.268 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70163, "decimalLat": -35.07996 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -35.08 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65861, "decimalLat": -35.01733 }, "geometry": { "type": "Point", "coordinates": [ 138.659, -35.017 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67616, "decimalLat": -35.10565 }, "geometry": { "type": "Point", "coordinates": [ 138.676, -35.106 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.85078, "decimalLat": -34.70762 }, "geometry": { "type": "Point", "coordinates": [ 135.851, -34.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.85259, "decimalLat": -34.6976 }, "geometry": { "type": "Point", "coordinates": [ 135.853, -34.698 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 2, "stateProvi": "South Australia", "decimalLon": 138.58233, "decimalLat": -35.06734 }, "geometry": { "type": "Point", "coordinates": [ 138.582, -35.067 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.83678, "decimalLat": -35.0564 }, "geometry": { "type": "Point", "coordinates": [ 138.837, -35.056 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.84085, "decimalLat": -34.71996 }, "geometry": { "type": "Point", "coordinates": [ 135.841, -34.72 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.75587, "decimalLat": -35.00845 }, "geometry": { "type": "Point", "coordinates": [ 138.756, -35.008 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71502, "decimalLat": -35.02863 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -35.029 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 27, "individual": 2, "stateProvi": "South Australia", "decimalLon": 135.82416, "decimalLat": -34.76989 }, "geometry": { "type": "Point", "coordinates": [ 135.824, -34.77 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70661, "decimalLat": -34.9902 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73756, "decimalLat": -35.1083 }, "geometry": { "type": "Point", "coordinates": [ 138.738, -35.108 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73756, "decimalLat": -35.1083 }, "geometry": { "type": "Point", "coordinates": [ 138.738, -35.108 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73343, "decimalLat": -35.09491 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -35.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67925, "decimalLat": -35.12319 }, "geometry": { "type": "Point", "coordinates": [ 138.679, -35.123 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68332, "decimalLat": -34.95011 }, "geometry": { "type": "Point", "coordinates": [ 138.683, -34.95 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72451, "decimalLat": -35.08282 }, "geometry": { "type": "Point", "coordinates": [ 138.725, -35.083 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.68332, "decimalLat": -34.95011 }, "geometry": { "type": "Point", "coordinates": [ 138.683, -34.95 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 2, "stateProvi": "South Australia", "decimalLon": 138.90559, "decimalLat": -34.71083 }, "geometry": { "type": "Point", "coordinates": [ 138.906, -34.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70687, "decimalLat": -34.99042 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73801, "decimalLat": -34.83473 }, "geometry": { "type": "Point", "coordinates": [ 138.738, -34.835 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.64494, "decimalLat": -35.08356 }, "geometry": { "type": "Point", "coordinates": [ 138.645, -35.084 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7128, "decimalLat": -35.0982 }, "geometry": { "type": "Point", "coordinates": [ 138.713, -35.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.7065, "decimalLat": -34.99024 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.65755, "decimalLat": -35.10044 }, "geometry": { "type": "Point", "coordinates": [ 138.658, -35.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67914, "decimalLat": -35.11392 }, "geometry": { "type": "Point", "coordinates": [ 138.679, -35.114 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.84903, "decimalLat": -34.70764 }, "geometry": { "type": "Point", "coordinates": [ 135.849, -34.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.70248, "decimalLat": -34.87787 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.878 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.71526, "decimalLat": -35.01152 }, "geometry": { "type": "Point", "coordinates": [ 138.715, -35.012 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.67295, "decimalLat": -34.99004 }, "geometry": { "type": "Point", "coordinates": [ 138.673, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 2, "stateProvi": "South Australia", "decimalLon": 138.70759, "decimalLat": -34.99168 }, "geometry": { "type": "Point", "coordinates": [ 138.708, -34.992 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73343, "decimalLat": -35.09491 }, "geometry": { "type": "Point", "coordinates": [ 138.733, -35.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 135.80851, "decimalLat": -34.67691 }, "geometry": { "type": "Point", "coordinates": [ 135.809, -34.677 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73012, "decimalLat": -34.83663 }, "geometry": { "type": "Point", "coordinates": [ 138.73, -34.837 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 2, "stateProvi": "South Australia", "decimalLon": 138.75346, "decimalLat": -35.00654 }, "geometry": { "type": "Point", "coordinates": [ 138.753, -35.007 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.83157, "decimalLat": -34.68794 }, "geometry": { "type": "Point", "coordinates": [ 138.832, -34.688 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.83157, "decimalLat": -34.68794 }, "geometry": { "type": "Point", "coordinates": [ 138.832, -34.688 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 6, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6483, "decimalLat": -34.96591 }, "geometry": { "type": "Point", "coordinates": [ 138.648, -34.966 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.64494, "decimalLat": -35.08356 }, "geometry": { "type": "Point", "coordinates": [ 138.645, -35.084 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.74255, "decimalLat": -35.06389 }, "geometry": { "type": "Point", "coordinates": [ 138.743, -35.064 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.6975, "decimalLat": -35.02219 }, "geometry": { "type": "Point", "coordinates": [ 138.698, -35.022 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.73194, "decimalLat": -35.12278 }, "geometry": { "type": "Point", "coordinates": [ 138.732, -35.123 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72112, "decimalLat": -35.00082 }, "geometry": { "type": "Point", "coordinates": [ 138.721, -35.001 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.8313, "decimalLat": -34.6882 }, "geometry": { "type": "Point", "coordinates": [ 138.831, -34.688 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.72412, "decimalLat": -35.11784 }, "geometry": { "type": "Point", "coordinates": [ 138.724, -35.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.55732, "decimalLat": -34.75377 }, "geometry": { "type": "Point", "coordinates": [ 146.557, -34.754 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90276, "decimalLat": -30.23952 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.24 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.526374, "decimalLat": -28.70571 }, "geometry": { "type": "Point", "coordinates": [ 153.526, -28.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522372, "decimalLat": -34.46685 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381029, "decimalLat": -31.92389 }, "geometry": { "type": "Point", "coordinates": [ 152.381, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.828334, "decimalLat": -31.649845 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -31.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52348, "decimalLat": -34.4636 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9156, "decimalLat": -31.468579 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60004, "decimalLat": -34.5231 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.523 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.69647, "decimalLat": -31.79003 }, "geometry": { "type": "Point", "coordinates": [ 152.696, -31.79 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792895, "decimalLat": -30.218552 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -30.219 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659634, "decimalLat": -33.526982 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514286, "decimalLat": -34.4466 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.53804, "decimalLat": -32.05739 }, "geometry": { "type": "Point", "coordinates": [ 152.538, -32.057 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787067, "decimalLat": -31.62991 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921151, "decimalLat": -31.480359 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.64852, "decimalLat": -32.69442 }, "geometry": { "type": "Point", "coordinates": [ 151.649, -32.694 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093613, "decimalLat": -29.48396 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.20543, "decimalLat": -28.61131 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -28.611 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516143, "decimalLat": -34.446746 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.102118, "decimalLat": -32.756832 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -32.757 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.17919, "decimalLat": -33.122846 }, "geometry": { "type": "Point", "coordinates": [ 151.179, -33.123 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.83156, "decimalLat": -34.8746 }, "geometry": { "type": "Point", "coordinates": [ 146.832, -34.875 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630222, "decimalLat": -34.420983 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437014, "decimalLat": -28.991215 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.991 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.003163, "decimalLat": -29.1829 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -29.183 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79422, "decimalLat": -34.134334 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.134 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30453, "decimalLat": -28.827266 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104096, "decimalLat": -29.483834 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633769, "decimalLat": -34.418247 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.549897, "decimalLat": -34.462 }, "geometry": { "type": "Point", "coordinates": [ 150.55, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096103, "decimalLat": -29.484955 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516891, "decimalLat": -34.446482 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.45439, "decimalLat": -28.65348 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605586, "decimalLat": -34.432232 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521886, "decimalLat": -34.464523 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924741, "decimalLat": -31.440628 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82929, "decimalLat": -31.26329 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -31.263 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609072, "decimalLat": -34.43514 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01473, "decimalLat": -29.53762 }, "geometry": { "type": "Point", "coordinates": [ 153.015, -29.538 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109739, "decimalLat": -29.490203 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.83352, "decimalLat": -34.094032 }, "geometry": { "type": "Point", "coordinates": [ 150.834, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288427, "decimalLat": -28.815615 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.04154, "decimalLat": -30.44817 }, "geometry": { "type": "Point", "coordinates": [ 153.042, -30.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809506, "decimalLat": -34.09996 }, "geometry": { "type": "Point", "coordinates": [ 150.81, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07555, "decimalLat": -28.558157 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -28.558 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785579, "decimalLat": -33.714589 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.05034, "decimalLat": -31.13523 }, "geometry": { "type": "Point", "coordinates": [ 150.05, -31.135 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60252, "decimalLat": -34.419947 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562423, "decimalLat": -28.384452 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.712063, "decimalLat": -30.456101 }, "geometry": { "type": "Point", "coordinates": [ 152.712, -30.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881366, "decimalLat": -31.447926 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516279, "decimalLat": -34.47008 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523958, "decimalLat": -34.463998 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514179, "decimalLat": -34.447283 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.328268, "decimalLat": -28.81661 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516454, "decimalLat": -34.447636 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51698, "decimalLat": -34.44789 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.235428, "decimalLat": -33.11801 }, "geometry": { "type": "Point", "coordinates": [ 151.235, -33.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.957605, "decimalLat": -30.64834 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -30.648 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016902, "decimalLat": -36.541583 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62278, "decimalLat": -34.53402 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.534 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520359, "decimalLat": -34.46571 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926755, "decimalLat": -31.471214 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785318, "decimalLat": -33.70544 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.805354, "decimalLat": -31.534422 }, "geometry": { "type": "Point", "coordinates": [ 152.805, -31.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884721, "decimalLat": -31.430048 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868061, "decimalLat": -29.667247 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52271, "decimalLat": -34.451721 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63306, "decimalLat": -34.41754 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520368, "decimalLat": -34.4658 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786175, "decimalLat": -33.706015 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360023, "decimalLat": -28.676412 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.23581, "decimalLat": -28.885991 }, "geometry": { "type": "Point", "coordinates": [ 153.236, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.23033, "decimalLat": -28.889525 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98183, "decimalLat": -28.428586 }, "geometry": { "type": "Point", "coordinates": [ 152.982, -28.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394689, "decimalLat": -28.275677 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.637195, "decimalLat": -30.44393 }, "geometry": { "type": "Point", "coordinates": [ 152.637, -30.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610356, "decimalLat": -34.41909 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.9232, "decimalLat": -32.77939 }, "geometry": { "type": "Point", "coordinates": [ 151.923, -32.779 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910537, "decimalLat": -31.44152 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524522, "decimalLat": -34.45338 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51288, "decimalLat": -34.44668 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321383, "decimalLat": -28.81374 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.696625, "decimalLat": -32.683275 }, "geometry": { "type": "Point", "coordinates": [ 151.697, -32.683 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53485, "decimalLat": -34.463379 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01022, "decimalLat": -28.986157 }, "geometry": { "type": "Point", "coordinates": [ 153.01, -28.986 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640919, "decimalLat": -34.393773 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602947, "decimalLat": -34.45186 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091178, "decimalLat": -29.477581 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107995, "decimalLat": -29.490427 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522536, "decimalLat": -34.451717 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98432, "decimalLat": -28.617398 }, "geometry": { "type": "Point", "coordinates": [ 152.984, -28.617 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110608, "decimalLat": -29.489928 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637334, "decimalLat": -34.423771 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615674, "decimalLat": -34.435999 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304289, "decimalLat": -28.816931 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.352906, "decimalLat": -28.83385 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793958, "decimalLat": -31.638877 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607146, "decimalLat": -34.454593 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627384, "decimalLat": -34.390104 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604233, "decimalLat": -34.438083 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557818, "decimalLat": -28.331142 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090781, "decimalLat": -29.48721 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516233, "decimalLat": -34.44957 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.081893, "decimalLat": -29.747449 }, "geometry": { "type": "Point", "coordinates": [ 151.082, -29.747 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.092488, "decimalLat": -29.772474 }, "geometry": { "type": "Point", "coordinates": [ 151.092, -29.772 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526592, "decimalLat": -34.448157 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.331826, "decimalLat": -34.49156 }, "geometry": { "type": "Point", "coordinates": [ 150.332, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616456, "decimalLat": -34.43605 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78697, "decimalLat": -31.629382 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63107, "decimalLat": -34.386262 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78275, "decimalLat": -31.631125 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59608, "decimalLat": -34.411571 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925436, "decimalLat": -31.458908 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.823359, "decimalLat": -34.149919 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.52954, "decimalLat": -28.54593 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -28.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615725, "decimalLat": -34.449523 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627306, "decimalLat": -34.39058 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103489, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608991, "decimalLat": -34.420407 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.814766, "decimalLat": -31.65226 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557475, "decimalLat": -28.396989 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.333311, "decimalLat": -28.861328 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.10109, "decimalLat": -31.12214 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -31.122 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524522, "decimalLat": -34.45338 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.745302, "decimalLat": -31.201744 }, "geometry": { "type": "Point", "coordinates": [ 152.745, -31.202 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110549, "decimalLat": -29.489918 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101258, "decimalLat": -29.48997 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630399, "decimalLat": -34.42086 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530239, "decimalLat": -34.471003 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.04862, "decimalLat": -34.029227 }, "geometry": { "type": "Point", "coordinates": [ 151.049, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604079, "decimalLat": -34.45145 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52161, "decimalLat": -34.465374 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108194, "decimalLat": -29.490404 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.069221, "decimalLat": -32.748434 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.748 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619196, "decimalLat": -34.43687 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109342, "decimalLat": -29.490549 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92311, "decimalLat": -31.460608 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518603, "decimalLat": -34.444867 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.006179, "decimalLat": -32.72742 }, "geometry": { "type": "Point", "coordinates": [ 152.006, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.111267, "decimalLat": -30.28553 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -30.286 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093058, "decimalLat": -29.49491 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896115, "decimalLat": -31.435875 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640061, "decimalLat": -34.399905 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529721, "decimalLat": -34.467892 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617068, "decimalLat": -34.43059 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.151251, "decimalLat": -32.714759 }, "geometry": { "type": "Point", "coordinates": [ 152.151, -32.715 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.804743, "decimalLat": -29.393372 }, "geometry": { "type": "Point", "coordinates": [ 152.805, -29.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104262, "decimalLat": -29.482232 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524933, "decimalLat": -34.46418 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39438, "decimalLat": -28.960579 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.62882, "decimalLat": -28.637878 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.893548, "decimalLat": -34.39366 }, "geometry": { "type": "Point", "coordinates": [ 150.894, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412385, "decimalLat": -31.933133 }, "geometry": { "type": "Point", "coordinates": [ 152.412, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880336, "decimalLat": -31.15604 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.156 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.55134, "decimalLat": -33.492172 }, "geometry": { "type": "Point", "coordinates": [ 149.551, -33.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63383, "decimalLat": -34.392158 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.962048, "decimalLat": -36.514707 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609644, "decimalLat": -34.436431 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605419, "decimalLat": -34.437322 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60419, "decimalLat": -34.435017 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514377, "decimalLat": -34.446476 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.457947, "decimalLat": -28.51607 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.516 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898766, "decimalLat": -31.443635 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637344, "decimalLat": -34.423825 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558467, "decimalLat": -28.673442 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.673 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.39804, "decimalLat": -31.979846 }, "geometry": { "type": "Point", "coordinates": [ 152.398, -31.98 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518099, "decimalLat": -34.453466 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56201, "decimalLat": -28.383818 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298141, "decimalLat": -28.82356 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518739, "decimalLat": -34.445068 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10519, "decimalLat": -29.489727 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.588411, "decimalLat": -34.761405 }, "geometry": { "type": "Point", "coordinates": [ 146.588, -34.761 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.38858, "decimalLat": -31.970201 }, "geometry": { "type": "Point", "coordinates": [ 152.389, -31.97 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.4768, "decimalLat": -36.340889 }, "geometry": { "type": "Point", "coordinates": [ 149.477, -36.341 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515597, "decimalLat": -34.454533 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40941, "decimalLat": -31.91019 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522336, "decimalLat": -34.46511 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597139, "decimalLat": -34.41335 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616353, "decimalLat": -34.435832 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602802, "decimalLat": -34.424568 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613865, "decimalLat": -34.433025 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909022, "decimalLat": -31.490642 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91531, "decimalLat": -31.459518 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641021, "decimalLat": -34.396327 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066839, "decimalLat": -32.7479 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.748 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910059, "decimalLat": -31.465823 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89442, "decimalLat": -31.458795 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110184, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.053033, "decimalLat": -33.192609 }, "geometry": { "type": "Point", "coordinates": [ 151.053, -33.193 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06202, "decimalLat": -34.90192 }, "geometry": { "type": "Point", "coordinates": [ 150.062, -34.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624634, "decimalLat": -34.38584 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.960978, "decimalLat": -34.101454 }, "geometry": { "type": "Point", "coordinates": [ 150.961, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061498, "decimalLat": -32.711309 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61729, "decimalLat": -34.399779 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.72741, "decimalLat": -34.27298 }, "geometry": { "type": "Point", "coordinates": [ 150.727, -34.273 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06373, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913455, "decimalLat": -31.476912 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6351, "decimalLat": -34.483735 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.484 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.03073, "decimalLat": -29.672332 }, "geometry": { "type": "Point", "coordinates": [ 151.031, -29.672 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.02831, "decimalLat": -32.305045 }, "geometry": { "type": "Point", "coordinates": [ 152.028, -32.305 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07615, "decimalLat": -32.724658 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892003, "decimalLat": -30.880764 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -30.881 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06823, "decimalLat": -33.782586 }, "geometry": { "type": "Point", "coordinates": [ 150.068, -33.783 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10399, "decimalLat": -32.732488 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108081, "decimalLat": -29.49018 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916535, "decimalLat": -31.439139 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.039121, "decimalLat": -35.074674 }, "geometry": { "type": "Point", "coordinates": [ 150.039, -35.075 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637342, "decimalLat": -34.42387 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09717, "decimalLat": -29.486764 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784789, "decimalLat": -33.713671 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09636, "decimalLat": -30.334389 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -30.334 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86816, "decimalLat": -31.47334 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526808, "decimalLat": -34.458908 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610443, "decimalLat": -34.430533 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3033, "decimalLat": -28.821668 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61015, "decimalLat": -34.429761 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604716, "decimalLat": -34.437543 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.77014, "decimalLat": -30.589822 }, "geometry": { "type": "Point", "coordinates": [ 151.77, -30.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92221, "decimalLat": -31.44663 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.023887, "decimalLat": -32.319249 }, "geometry": { "type": "Point", "coordinates": [ 152.024, -32.319 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913376, "decimalLat": -31.478434 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.382059, "decimalLat": -31.928007 }, "geometry": { "type": "Point", "coordinates": [ 152.382, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62698, "decimalLat": -34.420965 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901207, "decimalLat": -31.447065 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78569, "decimalLat": -34.189755 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -34.19 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.34501, "decimalLat": -28.748604 }, "geometry": { "type": "Point", "coordinates": [ 153.345, -28.749 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.972939, "decimalLat": -34.10075 }, "geometry": { "type": "Point", "coordinates": [ 150.973, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604384, "decimalLat": -34.426682 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.409428, "decimalLat": -28.969929 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.97 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917762, "decimalLat": -30.53177 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -30.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525609, "decimalLat": -34.465591 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91949, "decimalLat": -31.435119 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867932, "decimalLat": -29.66721 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402832, "decimalLat": -28.96062 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519545, "decimalLat": -34.46343 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.913678, "decimalLat": -34.068368 }, "geometry": { "type": "Point", "coordinates": [ 150.914, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403917, "decimalLat": -31.92834 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639175, "decimalLat": -34.39273 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103744, "decimalLat": -29.48551 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.56073, "decimalLat": -31.972434 }, "geometry": { "type": "Point", "coordinates": [ 152.561, -31.972 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.29628, "decimalLat": -31.27583 }, "geometry": { "type": "Point", "coordinates": [ 150.296, -31.276 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600689, "decimalLat": -34.416259 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.416 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.39268, "decimalLat": -32.03516 }, "geometry": { "type": "Point", "coordinates": [ 152.393, -32.035 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.704, "decimalLat": -30.397 }, "geometry": { "type": "Point", "coordinates": [ 151.704, -30.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.283667, "decimalLat": -32.423153 }, "geometry": { "type": "Point", "coordinates": [ 152.284, -32.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637356, "decimalLat": -34.42378 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516714, "decimalLat": -34.444378 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.04111, "decimalLat": -30.44833 }, "geometry": { "type": "Point", "coordinates": [ 153.041, -30.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.843338, "decimalLat": -32.245824 }, "geometry": { "type": "Point", "coordinates": [ 151.843, -32.246 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918, "decimalLat": -31.479204 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.398274, "decimalLat": -33.48909 }, "geometry": { "type": "Point", "coordinates": [ 149.398, -33.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072609, "decimalLat": -32.710536 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.667755, "decimalLat": -31.20241 }, "geometry": { "type": "Point", "coordinates": [ 152.668, -31.202 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103935, "decimalLat": -29.489568 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.110282, "decimalLat": -29.762752 }, "geometry": { "type": "Point", "coordinates": [ 151.11, -29.763 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622065, "decimalLat": -34.397835 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.060139, "decimalLat": -36.115954 }, "geometry": { "type": "Point", "coordinates": [ 150.06, -36.116 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.605967, "decimalLat": -30.341355 }, "geometry": { "type": "Point", "coordinates": [ 152.606, -30.341 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522426, "decimalLat": -34.46576 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.672763, "decimalLat": -35.919304 }, "geometry": { "type": "Point", "coordinates": [ 145.673, -35.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323523, "decimalLat": -28.880436 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.860451, "decimalLat": -31.459519 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9278, "decimalLat": -31.4646 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.586079, "decimalLat": -28.632728 }, "geometry": { "type": "Point", "coordinates": [ 153.586, -28.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62744, "decimalLat": -34.38621 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.871078, "decimalLat": -34.098743 }, "geometry": { "type": "Point", "coordinates": [ 150.871, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611469, "decimalLat": -34.419743 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.967947, "decimalLat": -34.097846 }, "geometry": { "type": "Point", "coordinates": [ 150.968, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.157422, "decimalLat": -32.003965 }, "geometry": { "type": "Point", "coordinates": [ 152.157, -32.004 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.475301, "decimalLat": -31.941413 }, "geometry": { "type": "Point", "coordinates": [ 152.475, -31.941 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.101052, "decimalLat": -33.824396 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -33.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.058877, "decimalLat": -33.772915 }, "geometry": { "type": "Point", "coordinates": [ 150.059, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.829547, "decimalLat": -29.642903 }, "geometry": { "type": "Point", "coordinates": [ 152.83, -29.643 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30413, "decimalLat": -29.05296 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -29.053 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316984, "decimalLat": -28.937089 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304202, "decimalLat": -28.649902 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.315318, "decimalLat": -31.92365 }, "geometry": { "type": "Point", "coordinates": [ 152.315, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785501, "decimalLat": -33.707658 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.94172, "decimalLat": -29.254788 }, "geometry": { "type": "Point", "coordinates": [ 152.942, -29.255 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901817, "decimalLat": -31.241796 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.242 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.892639, "decimalLat": -34.057995 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -34.058 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062857, "decimalLat": -32.709368 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.74877, "decimalLat": -28.558892 }, "geometry": { "type": "Point", "coordinates": [ 152.749, -28.559 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40941, "decimalLat": -31.91019 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383296, "decimalLat": -31.922656 }, "geometry": { "type": "Point", "coordinates": [ 152.383, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.479935 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818454, "decimalLat": -31.65075 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519365, "decimalLat": -34.463264 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53038, "decimalLat": -34.471385 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521134, "decimalLat": -34.465653 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372218, "decimalLat": -31.91878 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465565, "decimalLat": -28.323003 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.323 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016902, "decimalLat": -36.541583 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515622, "decimalLat": -34.445221 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.00608, "decimalLat": -30.22871 }, "geometry": { "type": "Point", "coordinates": [ 153.006, -30.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.653638, "decimalLat": -34.45545 }, "geometry": { "type": "Point", "coordinates": [ 150.654, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62421, "decimalLat": -34.388906 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.510302, "decimalLat": -31.936905 }, "geometry": { "type": "Point", "coordinates": [ 152.51, -31.937 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077233, "decimalLat": -32.722482 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908776, "decimalLat": -31.466934 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513837, "decimalLat": -34.446348 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62421, "decimalLat": -34.388906 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.231466, "decimalLat": -28.890093 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615809, "decimalLat": -34.433153 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606278, "decimalLat": -34.438493 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625254, "decimalLat": -34.385816 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402931, "decimalLat": -28.715871 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.716 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.80028, "decimalLat": -31.678285 }, "geometry": { "type": "Point", "coordinates": [ 152.8, -31.678 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611448, "decimalLat": -34.419716 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921657, "decimalLat": -31.445256 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867868, "decimalLat": -29.667322 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064338, "decimalLat": -32.708774 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110506, "decimalLat": -29.49018 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.344637, "decimalLat": -28.749739 }, "geometry": { "type": "Point", "coordinates": [ 153.345, -28.75 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522009, "decimalLat": -34.465518 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.649793, "decimalLat": -30.326216 }, "geometry": { "type": "Point", "coordinates": [ 151.65, -30.326 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516399, "decimalLat": -34.442866 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108087, "decimalLat": -29.490623 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094846, "decimalLat": -29.494276 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603336, "decimalLat": -34.444728 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62743, "decimalLat": -34.421226 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110501, "decimalLat": -29.490152 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.089558, "decimalLat": -28.598067 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -28.598 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103763, "decimalLat": -29.48551 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62483, "decimalLat": -34.399683 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09298, "decimalLat": -30.33807 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -30.338 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.106284, "decimalLat": -32.728982 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.375633, "decimalLat": -36.16835 }, "geometry": { "type": "Point", "coordinates": [ 149.376, -36.168 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520326, "decimalLat": -34.465736 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59608, "decimalLat": -34.411571 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.882228, "decimalLat": -34.019191 }, "geometry": { "type": "Point", "coordinates": [ 150.882, -34.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64387, "decimalLat": -34.393244 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093179, "decimalLat": -29.488695 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.708605, "decimalLat": -31.53525 }, "geometry": { "type": "Point", "coordinates": [ 152.709, -31.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342669, "decimalLat": -29.00341 }, "geometry": { "type": "Point", "coordinates": [ 153.343, -29.003 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.08615, "decimalLat": -30.36367 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -30.364 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818189, "decimalLat": -31.651127 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.129821, "decimalLat": -32.728879 }, "geometry": { "type": "Point", "coordinates": [ 152.13, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31185, "decimalLat": -28.821624 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.391483, "decimalLat": -28.838694 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.839 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.353593, "decimalLat": -31.919823 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099809, "decimalLat": -29.491604 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.078206, "decimalLat": -32.727783 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913089, "decimalLat": -31.45295 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606662, "decimalLat": -34.432262 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617184, "decimalLat": -34.433775 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88248, "decimalLat": -31.459736 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.179945, "decimalLat": -28.576441 }, "geometry": { "type": "Point", "coordinates": [ 153.18, -28.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523757, "decimalLat": -34.453363 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.159345, "decimalLat": -28.924729 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302213, "decimalLat": -28.818582 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635636, "decimalLat": -34.485169 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526035, "decimalLat": -34.45781 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784913, "decimalLat": -33.704891 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.652977, "decimalLat": -31.470311 }, "geometry": { "type": "Point", "coordinates": [ 150.653, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885273, "decimalLat": -28.981516 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -28.982 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612122, "decimalLat": -34.432332 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516055, "decimalLat": -34.44825 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605761, "decimalLat": -34.427619 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639676, "decimalLat": -34.393488 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103918, "decimalLat": -29.489587 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637545, "decimalLat": -34.488515 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516708, "decimalLat": -34.446415 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.104913, "decimalLat": -32.727135 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293451, "decimalLat": -28.86466 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.682382, "decimalLat": -30.720778 }, "geometry": { "type": "Point", "coordinates": [ 152.682, -30.721 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37948, "decimalLat": -31.919012 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786545, "decimalLat": -31.629663 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.068415, "decimalLat": -30.889653 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -30.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532376, "decimalLat": -34.461662 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902902, "decimalLat": -31.441294 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522688, "decimalLat": -34.46573 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911347, "decimalLat": -31.473844 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.769196, "decimalLat": -32.641817 }, "geometry": { "type": "Point", "coordinates": [ 151.769, -32.642 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311888, "decimalLat": -28.821114 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604885, "decimalLat": -34.427052 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39323, "decimalLat": -28.286805 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.287 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606861, "decimalLat": -34.438648 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627058, "decimalLat": -34.38971 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513118, "decimalLat": -34.44599 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10424, "decimalLat": -29.477446 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378767, "decimalLat": -31.920792 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637303, "decimalLat": -34.423725 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789795, "decimalLat": -34.160358 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.16 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521393, "decimalLat": -34.466452 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895702, "decimalLat": -31.123864 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.124 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103436, "decimalLat": -29.489045 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403199, "decimalLat": -31.925262 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890587, "decimalLat": -31.159687 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -31.16 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10195, "decimalLat": -29.488765 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627352, "decimalLat": -34.421279 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630953, "decimalLat": -34.388883 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.756701, "decimalLat": -31.63092 }, "geometry": { "type": "Point", "coordinates": [ 152.757, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64307, "decimalLat": -34.395392 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51901, "decimalLat": -34.459813 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928045, "decimalLat": -31.462129 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558496, "decimalLat": -28.394081 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925852, "decimalLat": -31.45274 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881699, "decimalLat": -31.442216 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.49003 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403976, "decimalLat": -28.84234 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303415, "decimalLat": -28.816423 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104037, "decimalLat": -29.485141 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637297, "decimalLat": -34.42395 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525462, "decimalLat": -34.459881 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.344522, "decimalLat": -32.309328 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -32.309 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920058, "decimalLat": -31.47813 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.992659, "decimalLat": -27.295094 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -27.295 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52257, "decimalLat": -34.463825 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.198697, "decimalLat": -28.881314 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -28.881 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.115257, "decimalLat": -32.764661 }, "geometry": { "type": "Point", "coordinates": [ 152.115, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103876, "decimalLat": -29.485417 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070348, "decimalLat": -32.713852 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894418, "decimalLat": -31.447732 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60918, "decimalLat": -34.420663 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618466, "decimalLat": -34.439975 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62794, "decimalLat": -34.420497 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78591, "decimalLat": -33.709699 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627947, "decimalLat": -34.389817 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.55746, "decimalLat": -33.493105 }, "geometry": { "type": "Point", "coordinates": [ 149.557, -33.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.330989, "decimalLat": -28.818576 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78584, "decimalLat": -33.706834 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.381747, "decimalLat": -36.149577 }, "geometry": { "type": "Point", "coordinates": [ 149.382, -36.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517254, "decimalLat": -34.454432 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514323, "decimalLat": -34.446457 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630173, "decimalLat": -34.420387 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851464, "decimalLat": -29.692524 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924126, "decimalLat": -31.473213 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913355, "decimalLat": -31.48053 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602664, "decimalLat": -34.418732 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383869, "decimalLat": -31.929119 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.929 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.57375, "decimalLat": -33.61721 }, "geometry": { "type": "Point", "coordinates": [ 149.574, -33.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51579, "decimalLat": -34.450931 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51419, "decimalLat": -34.455 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92473, "decimalLat": -31.434963 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189573, "decimalLat": -32.226267 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.373422, "decimalLat": -29.088252 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -29.088 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.996787, "decimalLat": -34.047267 }, "geometry": { "type": "Point", "coordinates": [ 150.997, -34.047 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519959, "decimalLat": -34.457543 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315736, "decimalLat": -28.849837 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104251, "decimalLat": -29.480198 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.0915, "decimalLat": -29.487971 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.28107, "decimalLat": -32.405658 }, "geometry": { "type": "Point", "coordinates": [ 152.281, -32.406 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.991386, "decimalLat": -32.720977 }, "geometry": { "type": "Point", "coordinates": [ 151.991, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659438, "decimalLat": -34.459005 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104117, "decimalLat": -29.483717 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300422, "decimalLat": -31.948252 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.079993, "decimalLat": -30.356111 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -30.356 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635883, "decimalLat": -34.484913 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.836598, "decimalLat": -31.532371 }, "geometry": { "type": "Point", "coordinates": [ 152.837, -31.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605574, "decimalLat": -34.432249 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630355, "decimalLat": -34.420886 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626708, "decimalLat": -34.389396 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60533, "decimalLat": -34.456433 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899333, "decimalLat": -31.145777 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60417, "decimalLat": -34.438001 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066255, "decimalLat": -32.712452 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616093, "decimalLat": -34.438099 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280054, "decimalLat": -28.828246 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.333511, "decimalLat": -28.779439 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.779 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91358, "decimalLat": -31.468842 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109304, "decimalLat": -29.490787 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.008014, "decimalLat": -36.503633 }, "geometry": { "type": "Point", "coordinates": [ 150.008, -36.504 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311775, "decimalLat": -28.850693 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103741, "decimalLat": -29.48566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.042957, "decimalLat": -28.469309 }, "geometry": { "type": "Point", "coordinates": [ 153.043, -28.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824668, "decimalLat": -29.505196 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.47453, "decimalLat": -34.42133 }, "geometry": { "type": "Point", "coordinates": [ 150.475, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.87626, "decimalLat": -34.025052 }, "geometry": { "type": "Point", "coordinates": [ 150.876, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639069, "decimalLat": -34.49161 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110291, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29295, "decimalLat": -28.864525 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622908, "decimalLat": -34.383814 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790593, "decimalLat": -34.141866 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.142 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395619, "decimalLat": -29.01741 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -29.017 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.114387, "decimalLat": -29.185754 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -29.186 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557611, "decimalLat": -28.394514 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.983255, "decimalLat": -28.62063 }, "geometry": { "type": "Point", "coordinates": [ 152.983, -28.621 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302885, "decimalLat": -28.84372 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605993, "decimalLat": -34.437802 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638821, "decimalLat": -34.492696 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.209846, "decimalLat": -31.560724 }, "geometry": { "type": "Point", "coordinates": [ 152.21, -31.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.006335, "decimalLat": -28.617975 }, "geometry": { "type": "Point", "coordinates": [ 153.006, -28.618 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521333, "decimalLat": -34.46664 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.385263, "decimalLat": -31.918684 }, "geometry": { "type": "Point", "coordinates": [ 152.385, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65852, "decimalLat": -34.458347 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.045771, "decimalLat": -30.42436 }, "geometry": { "type": "Point", "coordinates": [ 153.046, -30.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.55446, "decimalLat": -34.511282 }, "geometry": { "type": "Point", "coordinates": [ 150.554, -34.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.097134, "decimalLat": -32.773532 }, "geometry": { "type": "Point", "coordinates": [ 152.097, -32.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521653, "decimalLat": -34.466123 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017645, "decimalLat": -30.365697 }, "geometry": { "type": "Point", "coordinates": [ 153.018, -30.366 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636398, "decimalLat": -34.485554 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55227, "decimalLat": -28.588919 }, "geometry": { "type": "Point", "coordinates": [ 153.552, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659073, "decimalLat": -33.527129 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79077, "decimalLat": -34.189358 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.189 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.085229, "decimalLat": -28.535988 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -28.536 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82369, "decimalLat": -34.141271 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.963148, "decimalLat": -32.032495 }, "geometry": { "type": "Point", "coordinates": [ 151.963, -32.032 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.189109, "decimalLat": -34.539893 }, "geometry": { "type": "Point", "coordinates": [ 150.189, -34.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897369, "decimalLat": -31.475222 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.269498, "decimalLat": -32.487777 }, "geometry": { "type": "Point", "coordinates": [ 152.269, -32.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395156, "decimalLat": -28.959978 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525493, "decimalLat": -34.459954 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.145608, "decimalLat": -28.541892 }, "geometry": { "type": "Point", "coordinates": [ 153.146, -28.542 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100447, "decimalLat": -30.281572 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -30.282 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108017, "decimalLat": -29.490409 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63586, "decimalLat": -34.419334 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894537, "decimalLat": -31.44635 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.414417, "decimalLat": -31.934305 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625292, "decimalLat": -34.384491 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07375, "decimalLat": -30.886194 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517039, "decimalLat": -34.44625 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90954, "decimalLat": -30.17215 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -30.172 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642167, "decimalLat": -34.394266 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.552788, "decimalLat": -28.40779 }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616454, "decimalLat": -34.433445 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51593, "decimalLat": -34.450618 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887821, "decimalLat": -31.453553 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62796, "decimalLat": -34.420939 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516524, "decimalLat": -34.450044 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.022743, "decimalLat": -28.48916 }, "geometry": { "type": "Point", "coordinates": [ 153.023, -28.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79288, "decimalLat": -31.641704 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312391, "decimalLat": -28.816543 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61182, "decimalLat": -34.419615 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604128, "decimalLat": -34.426875 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.789431, "decimalLat": -32.654355 }, "geometry": { "type": "Point", "coordinates": [ 151.789, -32.654 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894376, "decimalLat": -31.438375 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925939, "decimalLat": -31.458825 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.097336, "decimalLat": -29.491809 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296004, "decimalLat": -28.818579 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635758, "decimalLat": -34.392808 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533343, "decimalLat": -34.50051 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.075901, "decimalLat": -32.766602 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -32.767 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785866, "decimalLat": -31.631973 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634002, "decimalLat": -34.48869 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06619, "decimalLat": -32.71168 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092796, "decimalLat": -29.493011 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.926583, "decimalLat": -35.11532 }, "geometry": { "type": "Point", "coordinates": [ 149.927, -35.115 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520052, "decimalLat": -34.43562 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.046331, "decimalLat": -34.028817 }, "geometry": { "type": "Point", "coordinates": [ 151.046, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.490161 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921206, "decimalLat": -31.474075 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311298, "decimalLat": -28.822003 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.396884, "decimalLat": -31.902418 }, "geometry": { "type": "Point", "coordinates": [ 152.397, -31.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615856, "decimalLat": -34.43648 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602494, "decimalLat": -34.418567 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517978, "decimalLat": -34.447604 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782343, "decimalLat": -33.71882 }, "geometry": { "type": "Point", "coordinates": [ 150.782, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868052, "decimalLat": -29.667271 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78449, "decimalLat": -33.710269 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.371095, "decimalLat": -31.918408 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615814, "decimalLat": -34.436434 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868576, "decimalLat": -29.667322 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109412, "decimalLat": -29.490525 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644133, "decimalLat": -34.397072 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875543, "decimalLat": -31.457695 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78549, "decimalLat": -33.713632 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51955, "decimalLat": -34.45519 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520741, "decimalLat": -34.46569 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785077, "decimalLat": -33.716982 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40417, "decimalLat": -31.94582 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37748, "decimalLat": -31.906297 }, "geometry": { "type": "Point", "coordinates": [ 152.377, -31.906 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629804, "decimalLat": -34.420758 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627365, "decimalLat": -34.421216 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.104371, "decimalLat": -32.734244 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794388, "decimalLat": -31.126545 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.150659, "decimalLat": -32.723591 }, "geometry": { "type": "Point", "coordinates": [ 152.151, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621882, "decimalLat": -34.397777 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517284, "decimalLat": -28.668167 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.668 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293171, "decimalLat": -28.864644 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.734049, "decimalLat": -30.84847 }, "geometry": { "type": "Point", "coordinates": [ 152.734, -30.848 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.974029, "decimalLat": -34.099865 }, "geometry": { "type": "Point", "coordinates": [ 150.974, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52173, "decimalLat": -34.465746 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630678, "decimalLat": -34.420631 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104214, "decimalLat": -29.483246 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.141009, "decimalLat": -32.9383 }, "geometry": { "type": "Point", "coordinates": [ 151.141, -32.938 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637334, "decimalLat": -34.42378 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.408726, "decimalLat": -31.933801 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297816, "decimalLat": -28.827692 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521573, "decimalLat": -34.465527 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072789, "decimalLat": -32.717118 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641581, "decimalLat": -34.396905 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617686, "decimalLat": -34.438698 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51801, "decimalLat": -34.447622 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.008014, "decimalLat": -36.503633 }, "geometry": { "type": "Point", "coordinates": [ 150.008, -36.504 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101086, "decimalLat": -29.490082 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787655, "decimalLat": -34.188482 }, "geometry": { "type": "Point", "coordinates": [ 150.788, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379331, "decimalLat": -31.919974 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92382, "decimalLat": -31.444233 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604447, "decimalLat": -34.422941 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.033575, "decimalLat": -30.379498 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -30.379 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.187703, "decimalLat": -31.614784 }, "geometry": { "type": "Point", "coordinates": [ 152.188, -31.615 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102985, "decimalLat": -29.48665 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784167, "decimalLat": -33.716972 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.112615, "decimalLat": -29.339964 }, "geometry": { "type": "Point", "coordinates": [ 151.113, -29.34 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.050306, "decimalLat": -30.444524 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -30.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517932, "decimalLat": -34.437758 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530498, "decimalLat": -34.469972 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016902, "decimalLat": -36.541583 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.542 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604962, "decimalLat": -34.427017 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.020649, "decimalLat": -30.425757 }, "geometry": { "type": "Point", "coordinates": [ 153.021, -30.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999945, "decimalLat": -36.563902 }, "geometry": { "type": "Point", "coordinates": [ 150.0, -36.564 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.405114, "decimalLat": -28.602226 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.602 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558263, "decimalLat": -28.637097 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561316, "decimalLat": -28.386418 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.174456, "decimalLat": -32.661379 }, "geometry": { "type": "Point", "coordinates": [ 152.174, -32.661 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09619, "decimalLat": -29.484803 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920826, "decimalLat": -30.506442 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32305, "decimalLat": -28.919792 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625277, "decimalLat": -34.386177 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108162, "decimalLat": -29.490586 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.069149, "decimalLat": -30.89729 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -30.897 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917449, "decimalLat": -31.474536 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.397705, "decimalLat": -36.215154 }, "geometry": { "type": "Point", "coordinates": [ 149.398, -36.215 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784139, "decimalLat": -33.716931 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493926, "decimalLat": -28.68004 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603199, "decimalLat": -34.438847 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109465, "decimalLat": -29.490446 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605001, "decimalLat": -34.437855 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52658, "decimalLat": -34.469568 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52089, "decimalLat": -34.466523 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.714259, "decimalLat": -30.995047 }, "geometry": { "type": "Point", "coordinates": [ 152.714, -30.995 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910888, "decimalLat": -31.16157 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.162 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521607, "decimalLat": -34.465852 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065031, "decimalLat": -32.710364 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637334, "decimalLat": -34.42378 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784513, "decimalLat": -33.718161 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068778, "decimalLat": -28.66117 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608678, "decimalLat": -34.455813 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.173488, "decimalLat": -31.571017 }, "geometry": { "type": "Point", "coordinates": [ 152.173, -31.571 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603922, "decimalLat": -34.438663 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59019, "decimalLat": -28.65505 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.832189, "decimalLat": -29.642428 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -29.642 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910582, "decimalLat": -31.465483 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90105, "decimalLat": -31.442723 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403554, "decimalLat": -28.626581 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10137, "decimalLat": -29.489848 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.846603, "decimalLat": -34.111366 }, "geometry": { "type": "Point", "coordinates": [ 150.847, -34.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51378, "decimalLat": -34.446419 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103892, "decimalLat": -29.48481 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899265, "decimalLat": -31.449809 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515553, "decimalLat": -34.439098 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.501264, "decimalLat": -34.46011 }, "geometry": { "type": "Point", "coordinates": [ 150.501, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629888, "decimalLat": -34.395426 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.980855, "decimalLat": -28.36775 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -28.368 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29168, "decimalLat": -28.975004 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.975 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636654, "decimalLat": -34.488083 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518345, "decimalLat": -34.451398 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524065, "decimalLat": -34.471437 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.817096, "decimalLat": -31.1201 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -31.12 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521282, "decimalLat": -34.466152 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109267, "decimalLat": -29.490876 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609073, "decimalLat": -34.49498 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600616, "decimalLat": -34.42796 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103961, "decimalLat": -29.48961 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80858, "decimalLat": -34.079579 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.08 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.458429, "decimalLat": -28.725206 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.566447, "decimalLat": -34.460307 }, "geometry": { "type": "Point", "coordinates": [ 150.566, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637395, "decimalLat": -34.420463 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.844695, "decimalLat": -34.053299 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.973524, "decimalLat": -34.125321 }, "geometry": { "type": "Point", "coordinates": [ 150.974, -34.125 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.543438, "decimalLat": -33.699723 }, "geometry": { "type": "Point", "coordinates": [ 149.543, -33.7 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108156, "decimalLat": -29.490521 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10379, "decimalLat": -29.485594 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630862, "decimalLat": -34.420661 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.98565, "decimalLat": -32.78189 }, "geometry": { "type": "Point", "coordinates": [ 151.986, -32.782 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.9266, "decimalLat": -32.5215 }, "geometry": { "type": "Point", "coordinates": [ 151.927, -32.521 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.209, "decimalLat": -31.84213 }, "geometry": { "type": "Point", "coordinates": [ 150.209, -31.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602969, "decimalLat": -34.437752 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3061, "decimalLat": -28.822665 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.577506, "decimalLat": -33.419281 }, "geometry": { "type": "Point", "coordinates": [ 149.578, -33.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.168833, "decimalLat": -28.646094 }, "geometry": { "type": "Point", "coordinates": [ 153.169, -28.646 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627994, "decimalLat": -34.389701 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.474256, "decimalLat": -28.938534 }, "geometry": { "type": "Point", "coordinates": [ 153.474, -28.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375627, "decimalLat": -28.999986 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -29.0 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.317037, "decimalLat": -32.081971 }, "geometry": { "type": "Point", "coordinates": [ 152.317, -32.082 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.078206, "decimalLat": -32.727783 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.397629, "decimalLat": -28.841103 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617374, "decimalLat": -34.39988 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610401, "decimalLat": -34.419037 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616047, "decimalLat": -34.44009 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378462, "decimalLat": -31.92265 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520719, "decimalLat": -34.46569 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60863, "decimalLat": -28.66111 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919597, "decimalLat": -30.505935 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606507, "decimalLat": -34.433503 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929353, "decimalLat": -31.466614 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.703546, "decimalLat": -34.262064 }, "geometry": { "type": "Point", "coordinates": [ 150.704, -34.262 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10387, "decimalLat": -29.489605 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103613, "decimalLat": -29.485898 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520389, "decimalLat": -34.454035 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522705, "decimalLat": -34.459257 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016902, "decimalLat": -36.541583 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.542 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19974, "decimalLat": -32.23908 }, "geometry": { "type": "Point", "coordinates": [ 152.2, -32.239 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.391388, "decimalLat": -28.854763 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.855 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605738, "decimalLat": -34.427655 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557426, "decimalLat": -28.386921 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.423967, "decimalLat": -28.662577 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61008, "decimalLat": -34.419995 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617368, "decimalLat": -33.431526 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -33.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615492, "decimalLat": -34.43284 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786123, "decimalLat": -33.713073 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090241, "decimalLat": -28.598929 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -28.599 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.217935, "decimalLat": -28.82448 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562622, "decimalLat": -28.384228 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626453, "decimalLat": -34.386867 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.939111, "decimalLat": -30.230223 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -30.23 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517303, "decimalLat": -34.452774 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.610728, "decimalLat": -28.659915 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.022176, "decimalLat": -28.412855 }, "geometry": { "type": "Point", "coordinates": [ 153.022, -28.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627776, "decimalLat": -34.390084 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32037, "decimalLat": -28.843373 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.843 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609911, "decimalLat": -34.432812 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517424, "decimalLat": -34.447574 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78524, "decimalLat": -33.715673 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.1059, "decimalLat": -33.820504 }, "geometry": { "type": "Point", "coordinates": [ 151.106, -33.821 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924694, "decimalLat": -31.465054 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39415, "decimalLat": -28.959159 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631312, "decimalLat": -34.42012 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415177, "decimalLat": -31.933636 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523054, "decimalLat": -34.452232 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606991, "decimalLat": -34.437515 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292797, "decimalLat": -28.864694 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60709, "decimalLat": -34.454259 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521963, "decimalLat": -34.46375 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103913, "decimalLat": -29.485566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.455576, "decimalLat": -28.285215 }, "geometry": { "type": "Point", "coordinates": [ 152.456, -28.285 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.037669, "decimalLat": -32.66973 }, "geometry": { "type": "Point", "coordinates": [ 152.038, -32.67 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523862, "decimalLat": -34.452159 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.871433, "decimalLat": -31.502429 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786979, "decimalLat": -33.703775 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063455, "decimalLat": -32.706441 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.0043, "decimalLat": -34.83636 }, "geometry": { "type": "Point", "coordinates": [ 150.004, -34.836 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78397, "decimalLat": -33.71759 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335729, "decimalLat": -28.814645 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079275, "decimalLat": -32.761922 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.762 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63629, "decimalLat": -34.42183 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.166469, "decimalLat": -28.353694 }, "geometry": { "type": "Point", "coordinates": [ 153.166, -28.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639148, "decimalLat": -34.491918 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301101, "decimalLat": -28.819961 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630336, "decimalLat": -34.420795 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78242, "decimalLat": -33.719343 }, "geometry": { "type": "Point", "coordinates": [ 150.782, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616246, "decimalLat": -34.434234 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646225, "decimalLat": -34.39731 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887828, "decimalLat": -30.336874 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -30.337 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598696, "decimalLat": -34.414057 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924717, "decimalLat": -31.448047 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101231, "decimalLat": -29.489918 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.211583, "decimalLat": -28.646836 }, "geometry": { "type": "Point", "coordinates": [ 153.212, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.572354, "decimalLat": -33.686705 }, "geometry": { "type": "Point", "coordinates": [ 150.572, -33.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610442, "decimalLat": -34.430596 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.761336, "decimalLat": -32.768177 }, "geometry": { "type": "Point", "coordinates": [ 151.761, -32.768 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5237, "decimalLat": -34.464993 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521928, "decimalLat": -34.464578 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627698, "decimalLat": -34.42097 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109479, "decimalLat": -29.490744 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.643511, "decimalLat": -32.66561 }, "geometry": { "type": "Point", "coordinates": [ 151.644, -32.666 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.956884, "decimalLat": -36.59937 }, "geometry": { "type": "Point", "coordinates": [ 149.957, -36.599 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109422, "decimalLat": -29.490635 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.499155, "decimalLat": -28.768784 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.769 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6275, "decimalLat": -34.420272 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.988366, "decimalLat": -28.553626 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -28.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628708, "decimalLat": -34.394844 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658954, "decimalLat": -34.457616 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314609, "decimalLat": -28.846843 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063568, "decimalLat": -32.706253 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10799, "decimalLat": -29.490488 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602415, "decimalLat": -34.436208 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103902, "decimalLat": -29.489591 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616378, "decimalLat": -34.434201 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624907, "decimalLat": -34.39963 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.37623, "decimalLat": -30.75059 }, "geometry": { "type": "Point", "coordinates": [ 151.376, -30.751 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631098, "decimalLat": -34.38913 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518112, "decimalLat": -34.446777 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92875, "decimalLat": -30.24445 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -30.244 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313836, "decimalLat": -28.838902 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.839 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659545, "decimalLat": -34.458304 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.295183, "decimalLat": -28.820371 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395158, "decimalLat": -28.960039 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08889, "decimalLat": -32.73675 }, "geometry": { "type": "Point", "coordinates": [ 152.089, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.688296, "decimalLat": -32.687025 }, "geometry": { "type": "Point", "coordinates": [ 151.688, -32.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562037, "decimalLat": -28.384015 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552169, "decimalLat": -33.491227 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625245, "decimalLat": -34.38614 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603491, "decimalLat": -34.427493 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60449, "decimalLat": -34.424511 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.350016, "decimalLat": -28.695364 }, "geometry": { "type": "Point", "coordinates": [ 153.35, -28.695 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924362, "decimalLat": -31.460082 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60487, "decimalLat": -34.437474 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.695053, "decimalLat": -34.272808 }, "geometry": { "type": "Point", "coordinates": [ 150.695, -34.273 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.147222, "decimalLat": -29.253111 }, "geometry": { "type": "Point", "coordinates": [ 150.147, -29.253 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.006614, "decimalLat": -30.40855 }, "geometry": { "type": "Point", "coordinates": [ 153.007, -30.409 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.801804, "decimalLat": -31.127477 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343646, "decimalLat": -28.866891 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640457, "decimalLat": -29.943563 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -29.944 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.836748, "decimalLat": -34.056467 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.910199, "decimalLat": -33.96871 }, "geometry": { "type": "Point", "coordinates": [ 150.91, -33.969 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627315, "decimalLat": -34.420683 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615294, "decimalLat": -34.431358 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6404, "decimalLat": -34.398307 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643644, "decimalLat": -34.395872 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924348, "decimalLat": -31.470976 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603557, "decimalLat": -34.427468 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6624, "decimalLat": -33.57034 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -33.57 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98335, "decimalLat": -34.093645 }, "geometry": { "type": "Point", "coordinates": [ 150.983, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51517, "decimalLat": -34.451685 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603924, "decimalLat": -34.432515 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923406, "decimalLat": -31.469912 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103758, "decimalLat": -29.485398 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79753, "decimalLat": -34.14215 }, "geometry": { "type": "Point", "coordinates": [ 150.798, -34.142 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.290603, "decimalLat": -28.840992 }, "geometry": { "type": "Point", "coordinates": [ 153.291, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922279, "decimalLat": -31.478142 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604127, "decimalLat": -34.42692 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626025, "decimalLat": -34.388941 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616486, "decimalLat": -34.435771 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900716, "decimalLat": -31.409201 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.409 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51802, "decimalLat": -34.447289 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415013, "decimalLat": -31.934615 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.935 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108022, "decimalLat": -29.490287 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62332, "decimalLat": -34.385769 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.235854, "decimalLat": -33.120706 }, "geometry": { "type": "Point", "coordinates": [ 151.236, -33.121 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608005, "decimalLat": -34.436678 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104364, "decimalLat": -29.477637 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.625095, "decimalLat": -28.64268 }, "geometry": { "type": "Point", "coordinates": [ 153.625, -28.643 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.609055, "decimalLat": -30.286732 }, "geometry": { "type": "Point", "coordinates": [ 152.609, -30.287 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638218, "decimalLat": -34.490917 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.290168, "decimalLat": -28.865241 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 2, "stateProvi": "South Australia", "decimalLon": 140.72486, "decimalLat": -38.03839 }, "geometry": { "type": "Point", "coordinates": [ 140.725, -38.038 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607015, "decimalLat": -34.437434 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93857, "decimalLat": -29.702796 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -29.703 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519284, "decimalLat": -34.437687 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.78344, "decimalLat": -32.58763 }, "geometry": { "type": "Point", "coordinates": [ 151.783, -32.588 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515522, "decimalLat": -34.450817 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.178381, "decimalLat": -32.65154 }, "geometry": { "type": "Point", "coordinates": [ 152.178, -32.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610477, "decimalLat": -34.430515 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784923, "decimalLat": -33.717913 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.015337, "decimalLat": -36.564757 }, "geometry": { "type": "Point", "coordinates": [ 150.015, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616008, "decimalLat": -34.440333 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.250288, "decimalLat": -30.066931 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -30.067 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909442, "decimalLat": -31.469112 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604365, "decimalLat": -34.438023 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521654, "decimalLat": -34.467205 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454341, "decimalLat": -28.653446 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787245, "decimalLat": -31.631062 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62903, "decimalLat": -34.390361 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.215032, "decimalLat": -28.824641 }, "geometry": { "type": "Point", "coordinates": [ 153.215, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.734564, "decimalLat": -31.227627 }, "geometry": { "type": "Point", "coordinates": [ 152.735, -31.228 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521485, "decimalLat": -34.464831 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639179, "decimalLat": -34.493108 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.502914, "decimalLat": -28.783596 }, "geometry": { "type": "Point", "coordinates": [ 153.503, -28.784 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645112, "decimalLat": -34.3916 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.7824, "decimalLat": -31.483861 }, "geometry": { "type": "Point", "coordinates": [ 152.782, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.848989, "decimalLat": -31.554983 }, "geometry": { "type": "Point", "coordinates": [ 152.849, -31.555 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192902, "decimalLat": -32.430089 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626708, "decimalLat": -34.421374 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888426, "decimalLat": -31.439965 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604386, "decimalLat": -34.438059 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.159309, "decimalLat": -32.726441 }, "geometry": { "type": "Point", "coordinates": [ 152.159, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101102, "decimalLat": -29.48989 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870596, "decimalLat": -31.498368 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.498 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825467, "decimalLat": -31.178025 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.178 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.015337, "decimalLat": -36.564757 }, "geometry": { "type": "Point", "coordinates": [ 150.015, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095169, "decimalLat": -29.483311 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615169, "decimalLat": -34.431175 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90626, "decimalLat": -30.24051 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -30.241 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.912715, "decimalLat": -32.055223 }, "geometry": { "type": "Point", "coordinates": [ 151.913, -32.055 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615957, "decimalLat": -34.436392 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.99578, "decimalLat": -34.04771 }, "geometry": { "type": "Point", "coordinates": [ 150.996, -34.048 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78278, "decimalLat": -34.086126 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.814383, "decimalLat": -31.542662 }, "geometry": { "type": "Point", "coordinates": [ 152.814, -31.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630933, "decimalLat": -34.38845 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929128, "decimalLat": -31.459618 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355785, "decimalLat": -31.85809 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.082144, "decimalLat": -30.338205 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -30.338 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520293, "decimalLat": -34.453979 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494972, "decimalLat": -28.692228 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.932488, "decimalLat": -29.722728 }, "geometry": { "type": "Point", "coordinates": [ 152.932, -29.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374075, "decimalLat": -31.915481 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93087, "decimalLat": -31.471095 }, "geometry": { "type": "Point", "coordinates": [ 152.931, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61618, "decimalLat": -34.43581 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.229493, "decimalLat": -28.890648 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517124, "decimalLat": -34.453663 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52098, "decimalLat": -34.453921 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630183, "decimalLat": -34.420432 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638935, "decimalLat": -34.491724 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.461934, "decimalLat": -28.650602 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555183, "decimalLat": -28.643366 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.643 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927512, "decimalLat": -31.465411 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401614, "decimalLat": -28.260267 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530654, "decimalLat": -34.471327 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319334, "decimalLat": -28.823739 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.085658, "decimalLat": -33.779934 }, "geometry": { "type": "Point", "coordinates": [ 150.086, -33.78 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607488, "decimalLat": -34.45442 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615535, "decimalLat": -34.435536 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.34329, "decimalLat": -31.984607 }, "geometry": { "type": "Point", "coordinates": [ 152.343, -31.985 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637299, "decimalLat": -34.42386 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.620848, "decimalLat": -30.332248 }, "geometry": { "type": "Point", "coordinates": [ 152.621, -30.332 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.564273, "decimalLat": -29.54578 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -29.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617206, "decimalLat": -34.438742 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311645, "decimalLat": -28.822212 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643859, "decimalLat": -34.393253 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.921178, "decimalLat": -36.633581 }, "geometry": { "type": "Point", "coordinates": [ 149.921, -36.634 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886294, "decimalLat": -30.41503 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -30.415 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.595606, "decimalLat": -34.771738 }, "geometry": { "type": "Point", "coordinates": [ 146.596, -34.772 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01326, "decimalLat": -30.41365 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -30.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91669, "decimalLat": -31.445598 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633382, "decimalLat": -34.417717 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.03635, "decimalLat": -30.89607 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.606717, "decimalLat": -30.351365 }, "geometry": { "type": "Point", "coordinates": [ 152.607, -30.351 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516063, "decimalLat": -34.449088 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636731, "decimalLat": -34.488048 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.667637, "decimalLat": -31.532597 }, "geometry": { "type": "Point", "coordinates": [ 152.668, -31.533 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631182, "decimalLat": -34.388095 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608624, "decimalLat": -34.435978 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535458, "decimalLat": -34.463058 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.240078, "decimalLat": -28.661184 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104096, "decimalLat": -29.478029 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51723, "decimalLat": -34.451943 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071959, "decimalLat": -30.887521 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627262, "decimalLat": -34.421385 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.988171, "decimalLat": -32.71942 }, "geometry": { "type": "Point", "coordinates": [ 151.988, -32.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631002, "decimalLat": -34.389092 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.661662, "decimalLat": -34.458489 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606735, "decimalLat": -34.454116 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.06158, "decimalLat": -30.35981 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -30.36 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516735, "decimalLat": -34.448814 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.015337, "decimalLat": -36.564757 }, "geometry": { "type": "Point", "coordinates": [ 150.015, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317732, "decimalLat": -28.827343 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.980468, "decimalLat": -33.395509 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -33.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302334, "decimalLat": -28.820491 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519045, "decimalLat": -34.447229 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62421, "decimalLat": -34.388906 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900285, "decimalLat": -31.474207 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29621, "decimalLat": -29.025688 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -29.026 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403612, "decimalLat": -28.616578 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639372, "decimalLat": -34.392698 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.137314, "decimalLat": -28.383891 }, "geometry": { "type": "Point", "coordinates": [ 153.137, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.488675, "decimalLat": -28.242042 }, "geometry": { "type": "Point", "coordinates": [ 153.489, -28.242 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31739, "decimalLat": -28.39923 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614499, "decimalLat": -34.429467 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27827, "decimalLat": -28.679393 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283855, "decimalLat": -28.864257 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877144, "decimalLat": -31.448301 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643666, "decimalLat": -34.394719 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.141952, "decimalLat": -28.37377 }, "geometry": { "type": "Point", "coordinates": [ 153.142, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.004758, "decimalLat": -34.045963 }, "geometry": { "type": "Point", "coordinates": [ 151.005, -34.046 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623347, "decimalLat": -34.383254 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192089, "decimalLat": -32.216754 }, "geometry": { "type": "Point", "coordinates": [ 152.192, -32.217 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.813274, "decimalLat": -31.401097 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -31.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.778678, "decimalLat": -31.631388 }, "geometry": { "type": "Point", "coordinates": [ 152.779, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631473, "decimalLat": -34.387785 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.435922, "decimalLat": -28.611011 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.611 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29838, "decimalLat": -28.817309 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.418432, "decimalLat": -28.884592 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -28.885 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611469, "decimalLat": -34.419743 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791066, "decimalLat": -31.125577 }, "geometry": { "type": "Point", "coordinates": [ 152.791, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868901, "decimalLat": -31.528059 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -31.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517437, "decimalLat": -34.453759 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520315, "decimalLat": -34.465754 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912519, "decimalLat": -31.469083 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90776, "decimalLat": -30.17626 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -30.176 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.826247, "decimalLat": -31.649838 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -31.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615398, "decimalLat": -34.428871 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784952, "decimalLat": -33.717449 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302567, "decimalLat": -28.819153 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884572, "decimalLat": -31.429839 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949397, "decimalLat": -36.554597 }, "geometry": { "type": "Point", "coordinates": [ 149.949, -36.555 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633225, "decimalLat": -34.418652 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110538, "decimalLat": -29.490203 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104224, "decimalLat": -29.48241 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522322, "decimalLat": -34.464136 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637334, "decimalLat": -34.488655 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787407, "decimalLat": -31.636525 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632983, "decimalLat": -34.39289 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873582, "decimalLat": -31.453206 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925861, "decimalLat": -31.452741 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558319, "decimalLat": -28.388609 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81513, "decimalLat": -31.575281 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.085663, "decimalLat": -30.321276 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -30.321 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515225, "decimalLat": -34.447593 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642518, "decimalLat": -34.394129 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59723, "decimalLat": -34.410178 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632825, "decimalLat": -34.41895 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.735887, "decimalLat": -32.515004 }, "geometry": { "type": "Point", "coordinates": [ 151.736, -32.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527681, "decimalLat": -34.46657 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793466, "decimalLat": -31.127211 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615218, "decimalLat": -34.435566 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62819, "decimalLat": -34.390074 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519779, "decimalLat": -34.468781 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.544101, "decimalLat": -28.65289 }, "geometry": { "type": "Point", "coordinates": [ 153.544, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108092, "decimalLat": -29.490245 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.834857, "decimalLat": -34.070006 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.215455, "decimalLat": -33.707279 }, "geometry": { "type": "Point", "coordinates": [ 151.215, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603869, "decimalLat": -34.443215 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785679, "decimalLat": -33.706813 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633546, "decimalLat": -34.418451 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.193373, "decimalLat": -32.220759 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.221 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.078341, "decimalLat": -30.353773 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.354 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.506293, "decimalLat": -28.238698 }, "geometry": { "type": "Point", "coordinates": [ 153.506, -28.239 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639743, "decimalLat": -34.393426 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643496, "decimalLat": -34.404651 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.405 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605488, "decimalLat": -34.432239 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03103, "decimalLat": -32.736164 }, "geometry": { "type": "Point", "coordinates": [ 152.031, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875157, "decimalLat": -31.453216 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.273996, "decimalLat": -36.057154 }, "geometry": { "type": "Point", "coordinates": [ 149.274, -36.057 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609343, "decimalLat": -34.419125 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103334, "decimalLat": -29.489858 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791254, "decimalLat": -34.191062 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.191 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617719, "decimalLat": -34.438689 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.173499, "decimalLat": -32.662649 }, "geometry": { "type": "Point", "coordinates": [ 152.173, -32.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334258, "decimalLat": -28.818237 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.839671, "decimalLat": -34.078232 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.078 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.668449, "decimalLat": -33.534702 }, "geometry": { "type": "Point", "coordinates": [ 150.668, -33.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622942, "decimalLat": -34.397581 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092219, "decimalLat": -29.488121 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.938932, "decimalLat": -34.113944 }, "geometry": { "type": "Point", "coordinates": [ 150.939, -34.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516246, "decimalLat": -34.449128 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604004, "decimalLat": -34.440369 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63117, "decimalLat": -34.387373 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.361556, "decimalLat": -28.681335 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896425, "decimalLat": -29.629872 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -29.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639105, "decimalLat": -34.49152 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.484557, "decimalLat": -33.061666 }, "geometry": { "type": "Point", "coordinates": [ 151.485, -33.062 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.489946 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.398822, "decimalLat": -31.965684 }, "geometry": { "type": "Point", "coordinates": [ 152.399, -31.966 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094922, "decimalLat": -29.483512 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.861613, "decimalLat": -31.163889 }, "geometry": { "type": "Point", "coordinates": [ 152.862, -31.164 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792375, "decimalLat": -31.640274 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635343, "decimalLat": -34.488626 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604581, "decimalLat": -34.424738 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08642, "decimalLat": -32.728543 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926013, "decimalLat": -31.458934 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307114, "decimalLat": -28.849295 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.849 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604189, "decimalLat": -34.422477 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.722031, "decimalLat": -30.404135 }, "geometry": { "type": "Point", "coordinates": [ 151.722, -30.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615937, "decimalLat": -34.438619 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109363, "decimalLat": -29.490418 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527205, "decimalLat": -34.469436 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518237, "decimalLat": -34.446572 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659291, "decimalLat": -34.455306 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.883667, "decimalLat": -34.067894 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658799, "decimalLat": -33.526909 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599259, "decimalLat": -28.719912 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517261, "decimalLat": -34.451628 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880228, "decimalLat": -31.453584 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519454, "decimalLat": -34.456586 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990995, "decimalLat": -34.024433 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.694573, "decimalLat": -32.697069 }, "geometry": { "type": "Point", "coordinates": [ 151.695, -32.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.369922, "decimalLat": -36.147866 }, "geometry": { "type": "Point", "coordinates": [ 149.37, -36.148 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626257, "decimalLat": -34.395761 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604372, "decimalLat": -34.424427 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519439, "decimalLat": -34.451203 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515838, "decimalLat": -34.44491 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071143, "decimalLat": -32.710644 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.497432, "decimalLat": -28.765444 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.765 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.377783, "decimalLat": -31.918917 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.841327, "decimalLat": -34.064221 }, "geometry": { "type": "Point", "coordinates": [ 150.841, -34.064 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09341, "decimalLat": -29.492683 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.995149, "decimalLat": -30.417341 }, "geometry": { "type": "Point", "coordinates": [ 152.995, -30.417 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063513, "decimalLat": -32.706071 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104181, "decimalLat": -29.478898 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.476395, "decimalLat": -28.59751 }, "geometry": { "type": "Point", "coordinates": [ 153.476, -28.598 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.566219, "decimalLat": -28.387433 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.210166, "decimalLat": -31.560665 }, "geometry": { "type": "Point", "coordinates": [ 152.21, -31.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603314, "decimalLat": -34.439381 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.99155, "decimalLat": -34.070322 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317651, "decimalLat": -28.862857 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.05885, "decimalLat": -29.742754 }, "geometry": { "type": "Point", "coordinates": [ 151.059, -29.743 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900189, "decimalLat": -31.24248 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.242 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096081, "decimalLat": -29.491179 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596264, "decimalLat": -34.414288 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.045481, "decimalLat": -32.766559 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -32.767 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073087, "decimalLat": -32.724795 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.081893, "decimalLat": -29.747449 }, "geometry": { "type": "Point", "coordinates": [ 151.082, -29.747 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064596, "decimalLat": -32.700928 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.701 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924036, "decimalLat": -31.45146 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615535, "decimalLat": -34.435536 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516583, "decimalLat": -34.440697 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616023, "decimalLat": -34.433653 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109495, "decimalLat": -29.490404 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630323, "decimalLat": -34.420867 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62514, "decimalLat": -34.386787 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640154, "decimalLat": -34.397004 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.789864, "decimalLat": -32.654093 }, "geometry": { "type": "Point", "coordinates": [ 151.79, -32.654 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93946, "decimalLat": -30.39268 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -30.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916571, "decimalLat": -31.450564 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627412, "decimalLat": -34.42146 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.765371, "decimalLat": -32.69804 }, "geometry": { "type": "Point", "coordinates": [ 151.765, -32.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885195, "decimalLat": -33.439079 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -33.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.592011, "decimalLat": -28.637897 }, "geometry": { "type": "Point", "coordinates": [ 153.592, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520391, "decimalLat": -34.453972 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521623, "decimalLat": -34.464572 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.245765, "decimalLat": -31.311055 }, "geometry": { "type": "Point", "coordinates": [ 152.246, -31.311 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523098, "decimalLat": -34.464386 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108081, "decimalLat": -29.490404 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63382, "decimalLat": -34.418384 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063749, "decimalLat": -32.474492 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629764, "decimalLat": -34.42101 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.036211, "decimalLat": -32.767888 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.768 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090845, "decimalLat": -29.487341 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.861947, "decimalLat": -31.428813 }, "geometry": { "type": "Point", "coordinates": [ 152.862, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.961297, "decimalLat": -32.655518 }, "geometry": { "type": "Point", "coordinates": [ 151.961, -32.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604329, "decimalLat": -34.425572 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989618, "decimalLat": -34.031204 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616015, "decimalLat": -34.440072 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873956, "decimalLat": -31.43032 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514555, "decimalLat": -34.447453 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.860613, "decimalLat": -31.129995 }, "geometry": { "type": "Point", "coordinates": [ 152.861, -31.13 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.182867, "decimalLat": -29.176691 }, "geometry": { "type": "Point", "coordinates": [ 150.183, -29.177 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641921, "decimalLat": -34.396813 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865907, "decimalLat": -30.241763 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -30.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842405, "decimalLat": -34.139704 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.837478, "decimalLat": -34.078738 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.079 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616148, "decimalLat": -34.429256 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.200467, "decimalLat": -28.869963 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -28.87 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.54768, "decimalLat": -28.388909 }, "geometry": { "type": "Point", "coordinates": [ 153.548, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637358, "decimalLat": -34.42369 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.788851, "decimalLat": -32.654484 }, "geometry": { "type": "Point", "coordinates": [ 151.789, -32.654 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919079, "decimalLat": -31.468878 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109438, "decimalLat": -29.490455 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794103, "decimalLat": -31.63866 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293107, "decimalLat": -28.864597 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.619751, "decimalLat": -28.650638 }, "geometry": { "type": "Point", "coordinates": [ 153.62, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513717, "decimalLat": -34.446336 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794574, "decimalLat": -31.644196 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -31.644 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513106, "decimalLat": -34.447144 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.411696, "decimalLat": -31.935857 }, "geometry": { "type": "Point", "coordinates": [ 152.412, -31.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.729017, "decimalLat": -36.429736 }, "geometry": { "type": "Point", "coordinates": [ 148.729, -36.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557511, "decimalLat": -28.394264 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890306, "decimalLat": -31.439699 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626478, "decimalLat": -34.385605 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63025, "decimalLat": -34.420361 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610454, "decimalLat": -34.430533 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517939, "decimalLat": -34.454436 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522312, "decimalLat": -34.464821 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520844, "decimalLat": -34.436429 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561963, "decimalLat": -28.386971 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611847, "decimalLat": -34.432075 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.473889, "decimalLat": -28.268443 }, "geometry": { "type": "Point", "coordinates": [ 153.474, -28.268 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.980514, "decimalLat": -36.435679 }, "geometry": { "type": "Point", "coordinates": [ 149.981, -36.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27392, "decimalLat": -28.815709 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298208, "decimalLat": -28.825805 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900579, "decimalLat": -31.450512 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518721, "decimalLat": -34.460024 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.936104, "decimalLat": -32.322436 }, "geometry": { "type": "Point", "coordinates": [ 149.936, -32.322 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356805, "decimalLat": -28.656536 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.657 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.517753, "decimalLat": -30.516811 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -30.517 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613891, "decimalLat": -34.437082 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.554722, "decimalLat": -32.627779 }, "geometry": { "type": "Point", "coordinates": [ 149.555, -32.628 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624232, "decimalLat": -34.388888 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903071, "decimalLat": -30.239132 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.239 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522294, "decimalLat": -34.469481 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637303, "decimalLat": -34.423725 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632934, "decimalLat": -33.537963 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -33.538 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071698, "decimalLat": -30.887358 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899625, "decimalLat": -29.631611 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611874, "decimalLat": -34.431877 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603412, "decimalLat": -34.427573 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949575, "decimalLat": -36.554484 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.554 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.007423, "decimalLat": -28.623614 }, "geometry": { "type": "Point", "coordinates": [ 153.007, -28.624 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108146, "decimalLat": -29.490297 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524547, "decimalLat": -34.461395 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.937814, "decimalLat": -29.770638 }, "geometry": { "type": "Point", "coordinates": [ 150.938, -29.771 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916468, "decimalLat": -31.450803 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.991951, "decimalLat": -34.022337 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -34.022 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641912, "decimalLat": -34.39482 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523043, "decimalLat": -34.452232 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.045481, "decimalLat": -32.766559 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -32.767 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.489569, "decimalLat": -28.228915 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632739, "decimalLat": -34.418913 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101671, "decimalLat": -29.489419 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627628, "decimalLat": -34.421527 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632549, "decimalLat": -34.418296 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622883, "decimalLat": -34.383913 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658547, "decimalLat": -33.614222 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.614 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515522, "decimalLat": -34.454468 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621181, "decimalLat": -34.398701 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639164, "decimalLat": -34.392748 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989261, "decimalLat": -34.025143 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941399, "decimalLat": -36.632151 }, "geometry": { "type": "Point", "coordinates": [ 149.941, -36.632 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061381, "decimalLat": -32.709645 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808166, "decimalLat": -34.158317 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.158 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604783, "decimalLat": -34.427203 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941399, "decimalLat": -36.632151 }, "geometry": { "type": "Point", "coordinates": [ 149.941, -36.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555878, "decimalLat": -28.399509 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.109243, "decimalLat": -32.771982 }, "geometry": { "type": "Point", "coordinates": [ 152.109, -32.772 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915369, "decimalLat": -31.484327 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519169, "decimalLat": -34.459961 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605439, "decimalLat": -34.436998 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842335, "decimalLat": -34.068546 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908804, "decimalLat": -31.45483 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819706, "decimalLat": -30.911832 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -30.912 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.752853, "decimalLat": -29.241905 }, "geometry": { "type": "Point", "coordinates": [ 150.753, -29.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523241, "decimalLat": -34.464317 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637278, "decimalLat": -34.423824 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31025, "decimalLat": -28.643659 }, "geometry": { "type": "Point", "coordinates": [ 153.31, -28.644 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909494, "decimalLat": -31.197644 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.198 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.603295, "decimalLat": -34.762857 }, "geometry": { "type": "Point", "coordinates": [ 146.603, -34.763 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526001, "decimalLat": -34.449987 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402668, "decimalLat": -28.260652 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924126, "decimalLat": -31.473213 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.075123, "decimalLat": -32.721793 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.828312, "decimalLat": -32.287481 }, "geometry": { "type": "Point", "coordinates": [ 151.828, -32.287 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.08576, "decimalLat": -30.347255 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -30.347 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941399, "decimalLat": -36.632151 }, "geometry": { "type": "Point", "coordinates": [ 149.941, -36.632 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077381, "decimalLat": -28.557078 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -28.557 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.80737, "decimalLat": -31.536756 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -31.537 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321075, "decimalLat": -28.676028 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949397, "decimalLat": -36.554597 }, "geometry": { "type": "Point", "coordinates": [ 149.949, -36.555 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396801, "decimalLat": -29.015679 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299172, "decimalLat": -28.818305 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60049, "decimalLat": -34.428949 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.330332, "decimalLat": -28.816675 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63091, "decimalLat": -34.388865 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52339, "decimalLat": -34.453015 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.788705, "decimalLat": -34.212613 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.213 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630234, "decimalLat": -34.420929 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.240128, "decimalLat": -29.616021 }, "geometry": { "type": "Point", "coordinates": [ 152.24, -29.616 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521924, "decimalLat": -34.459178 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908061, "decimalLat": -31.457101 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516651, "decimalLat": -34.469646 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.564483, "decimalLat": -34.536721 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -34.537 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600966, "decimalLat": -34.428661 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.978836, "decimalLat": -30.496339 }, "geometry": { "type": "Point", "coordinates": [ 152.979, -30.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.545269, "decimalLat": -32.945055 }, "geometry": { "type": "Point", "coordinates": [ 151.545, -32.945 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.308686, "decimalLat": -36.112977 }, "geometry": { "type": "Point", "coordinates": [ 149.309, -36.113 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.26798, "decimalLat": -28.870712 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.871 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071543, "decimalLat": -30.885823 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.772773, "decimalLat": -32.592053 }, "geometry": { "type": "Point", "coordinates": [ 151.773, -32.592 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534556, "decimalLat": -34.459308 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517727, "decimalLat": -34.442117 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91826, "decimalLat": -31.485646 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.055997, "decimalLat": -30.333952 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -30.334 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.22958, "decimalLat": -28.889229 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642638, "decimalLat": -34.39451 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608415, "decimalLat": -34.454357 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517229, "decimalLat": -34.4516 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609914, "decimalLat": -34.419695 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.844966, "decimalLat": -29.83437 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.068176, "decimalLat": -30.889839 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -30.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797624, "decimalLat": -31.253754 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.357979, "decimalLat": -32.152693 }, "geometry": { "type": "Point", "coordinates": [ 152.358, -32.153 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49683, "decimalLat": -28.254577 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884555, "decimalLat": -31.439621 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925351, "decimalLat": -31.454158 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427718, "decimalLat": -28.626783 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522412, "decimalLat": -34.46585 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553093, "decimalLat": -28.58524 }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.585 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.104705, "decimalLat": -32.726825 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51385, "decimalLat": -34.446267 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637555, "decimalLat": -34.488542 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104702, "decimalLat": -29.489676 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.588358, "decimalLat": -34.757016 }, "geometry": { "type": "Point", "coordinates": [ 146.588, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.505378, "decimalLat": -28.697081 }, "geometry": { "type": "Point", "coordinates": [ 153.505, -28.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63587, "decimalLat": -34.488086 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785298, "decimalLat": -33.717039 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82672, "decimalLat": -31.650117 }, "geometry": { "type": "Point", "coordinates": [ 152.827, -31.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894418, "decimalLat": -31.447732 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607999, "decimalLat": -34.430034 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901256, "decimalLat": -31.47366 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640019, "decimalLat": -34.491908 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.396718, "decimalLat": -31.903308 }, "geometry": { "type": "Point", "coordinates": [ 152.397, -31.903 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515835, "decimalLat": -34.450535 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.200143, "decimalLat": -32.231881 }, "geometry": { "type": "Point", "coordinates": [ 152.2, -32.232 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068459, "decimalLat": -32.754239 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.754 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.362018, "decimalLat": -35.992587 }, "geometry": { "type": "Point", "coordinates": [ 149.362, -35.993 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.717022, "decimalLat": -30.578731 }, "geometry": { "type": "Point", "coordinates": [ 151.717, -30.579 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793476, "decimalLat": -31.638825 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103527, "decimalLat": -29.485622 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796911, "decimalLat": -34.11832 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.118 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631745, "decimalLat": -34.387033 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.048473, "decimalLat": -30.450237 }, "geometry": { "type": "Point", "coordinates": [ 153.048, -30.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883103, "decimalLat": -31.441363 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.090601, "decimalLat": -32.741007 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -32.741 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.725491, "decimalLat": -34.314153 }, "geometry": { "type": "Point", "coordinates": [ 150.725, -34.314 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894543, "decimalLat": -31.448123 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.996426, "decimalLat": -30.408813 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -30.409 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.105059, "decimalLat": -33.781815 }, "geometry": { "type": "Point", "coordinates": [ 150.105, -33.782 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616634, "decimalLat": -34.433602 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915732, "decimalLat": -31.484445 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520773, "decimalLat": -34.465357 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644211, "decimalLat": -34.396613 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791889, "decimalLat": -34.196052 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.196 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515774, "decimalLat": -34.446721 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521907, "decimalLat": -34.464524 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279211, "decimalLat": -28.873791 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925853, "decimalLat": -31.452751 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394305, "decimalLat": -28.959253 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.359672, "decimalLat": -28.644672 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -28.645 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.413159, "decimalLat": -30.640537 }, "geometry": { "type": "Point", "coordinates": [ 151.413, -30.641 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629155, "decimalLat": -28.639487 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.639 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.496948, "decimalLat": -28.693798 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519469, "decimalLat": -34.447968 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606693, "decimalLat": -34.436887 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.469064, "decimalLat": -28.921733 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604247, "decimalLat": -34.437975 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.720855, "decimalLat": -30.147792 }, "geometry": { "type": "Point", "coordinates": [ 152.721, -30.148 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878235, "decimalLat": -31.455063 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.060476, "decimalLat": -29.747273 }, "geometry": { "type": "Point", "coordinates": [ 151.06, -29.747 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626233, "decimalLat": -34.421221 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64578, "decimalLat": -34.397284 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610279, "decimalLat": -34.419107 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.676385, "decimalLat": -30.522309 }, "geometry": { "type": "Point", "coordinates": [ 151.676, -30.522 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786631, "decimalLat": -31.629219 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.525568, "decimalLat": -33.562382 }, "geometry": { "type": "Point", "coordinates": [ 149.526, -33.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.383996, "decimalLat": -28.904624 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -28.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101773, "decimalLat": -29.489395 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.951824, "decimalLat": -32.313847 }, "geometry": { "type": "Point", "coordinates": [ 151.952, -32.314 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915131, "decimalLat": -31.455806 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.485535, "decimalLat": -34.399947 }, "geometry": { "type": "Point", "coordinates": [ 150.486, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.820191, "decimalLat": -31.461362 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630954, "decimalLat": -34.388856 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.828382, "decimalLat": -34.091467 }, "geometry": { "type": "Point", "coordinates": [ 150.828, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637355, "decimalLat": -34.423807 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527435, "decimalLat": -34.469378 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638886, "decimalLat": -34.492697 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.268421, "decimalLat": -28.92962 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.618086, "decimalLat": -28.660196 }, "geometry": { "type": "Point", "coordinates": [ 153.618, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616041, "decimalLat": -34.438783 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360693, "decimalLat": -28.808055 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.808 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073064, "decimalLat": -32.724694 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.20779, "decimalLat": -32.027673 }, "geometry": { "type": "Point", "coordinates": [ 152.208, -32.028 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78266, "decimalLat": -33.718742 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103827, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.411729, "decimalLat": -31.934865 }, "geometry": { "type": "Point", "coordinates": [ 152.412, -31.935 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838247, "decimalLat": -34.055548 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10372, "decimalLat": -29.485702 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878835, "decimalLat": -31.448372 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517438, "decimalLat": -34.439037 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609542, "decimalLat": -34.449934 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915126, "decimalLat": -31.455225 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.963712, "decimalLat": -31.255599 }, "geometry": { "type": "Point", "coordinates": [ 152.964, -31.256 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.996267, "decimalLat": -34.061174 }, "geometry": { "type": "Point", "coordinates": [ 150.996, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103468, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613845, "decimalLat": -34.43718 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.962048, "decimalLat": -36.514707 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605717, "decimalLat": -34.437535 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976313, "decimalLat": -36.439844 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.000139, "decimalLat": -36.572676 }, "geometry": { "type": "Point", "coordinates": [ 150.0, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606694, "decimalLat": -34.434949 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518419, "decimalLat": -34.451841 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633601, "decimalLat": -34.418434 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.274981, "decimalLat": -28.856616 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -28.857 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516039, "decimalLat": -34.444734 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521841, "decimalLat": -34.466416 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.945366, "decimalLat": -29.82424 }, "geometry": { "type": "Point", "coordinates": [ 150.945, -29.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605809, "decimalLat": -34.426313 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522868, "decimalLat": -34.452265 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.097159, "decimalLat": -29.486762 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631013, "decimalLat": -34.387523 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896986, "decimalLat": -31.475427 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899371, "decimalLat": -31.443834 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899239, "decimalLat": -29.630846 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104401, "decimalLat": -29.482933 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929462, "decimalLat": -29.726753 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307824, "decimalLat": -28.84965 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528645, "decimalLat": -34.470439 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639227, "decimalLat": -34.492983 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784123, "decimalLat": -33.71901 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517453, "decimalLat": -34.445862 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.566447, "decimalLat": -34.460307 }, "geometry": { "type": "Point", "coordinates": [ 150.566, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622607, "decimalLat": -34.384051 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.209038, "decimalLat": -28.902001 }, "geometry": { "type": "Point", "coordinates": [ 153.209, -28.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52039, "decimalLat": -34.465773 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618856, "decimalLat": -34.429687 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879351, "decimalLat": -31.448427 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.800086, "decimalLat": -34.117826 }, "geometry": { "type": "Point", "coordinates": [ 150.8, -34.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110302, "decimalLat": -29.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922663, "decimalLat": -31.466932 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108167, "decimalLat": -29.490292 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914608, "decimalLat": -31.455018 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.967967, "decimalLat": -32.243631 }, "geometry": { "type": "Point", "coordinates": [ 150.968, -32.244 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.589469, "decimalLat": -28.832918 }, "geometry": { "type": "Point", "coordinates": [ 153.589, -28.833 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604679, "decimalLat": -34.439237 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645756, "decimalLat": -34.397364 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.199524, "decimalLat": -33.124375 }, "geometry": { "type": "Point", "coordinates": [ 151.2, -33.124 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31657, "decimalLat": -28.912713 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.913 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.962579, "decimalLat": -31.210386 }, "geometry": { "type": "Point", "coordinates": [ 152.963, -31.21 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317468, "decimalLat": -28.815186 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402021, "decimalLat": -28.259484 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895472, "decimalLat": -31.430738 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498076, "decimalLat": -28.310977 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.311 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919622, "decimalLat": -31.468342 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522427, "decimalLat": -34.464264 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890106, "decimalLat": -31.437282 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525868, "decimalLat": -34.464947 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901753, "decimalLat": -31.257938 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514098, "decimalLat": -34.446344 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65932, "decimalLat": -34.457371 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640535, "decimalLat": -34.494081 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515442, "decimalLat": -34.443586 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514362, "decimalLat": -34.444772 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.040981, "decimalLat": -32.735437 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604262, "decimalLat": -34.438967 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926802, "decimalLat": -29.728044 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -29.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609498, "decimalLat": -34.419046 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602819, "decimalLat": -34.435405 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792919, "decimalLat": -31.642025 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.545615, "decimalLat": -33.492907 }, "geometry": { "type": "Point", "coordinates": [ 149.546, -33.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296605, "decimalLat": -28.814346 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897493, "decimalLat": -31.427239 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924794, "decimalLat": -31.454075 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.551968, "decimalLat": -33.491215 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515608, "decimalLat": -34.450846 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520661, "decimalLat": -34.455501 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899636, "decimalLat": -29.630911 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.941748, "decimalLat": -30.494096 }, "geometry": { "type": "Point", "coordinates": [ 152.942, -30.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108178, "decimalLat": -29.490231 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103857, "decimalLat": -29.485357 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927602, "decimalLat": -31.464468 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095164, "decimalLat": -29.483498 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277658, "decimalLat": -28.937798 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.938 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.508004, "decimalLat": -28.618147 }, "geometry": { "type": "Point", "coordinates": [ 153.508, -28.618 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632603, "decimalLat": -34.418324 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300206, "decimalLat": -28.886464 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522368, "decimalLat": -34.466237 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634919, "decimalLat": -34.485904 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102969, "decimalLat": -29.489419 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52809, "decimalLat": -34.465614 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521335, "decimalLat": -34.466586 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534632, "decimalLat": -34.462275 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602084, "decimalLat": -34.425708 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630552, "decimalLat": -34.420854 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811327, "decimalLat": -29.515065 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -29.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516353, "decimalLat": -34.449951 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613083, "decimalLat": -34.429935 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.831974, "decimalLat": -31.472531 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.803852, "decimalLat": -31.604206 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -31.604 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602086, "decimalLat": -34.425636 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603336, "decimalLat": -34.427202 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.183721, "decimalLat": -32.716302 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -32.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514133, "decimalLat": -34.445912 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529258, "decimalLat": -34.387419 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51328, "decimalLat": -34.447869 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103382, "decimalLat": -29.486407 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.693592, "decimalLat": -30.48117 }, "geometry": { "type": "Point", "coordinates": [ 151.694, -30.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561693, "decimalLat": -28.380941 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.391488, "decimalLat": -31.203566 }, "geometry": { "type": "Point", "coordinates": [ 152.391, -31.204 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293201, "decimalLat": -28.864665 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627057, "decimalLat": -34.420948 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.43508, "decimalLat": -33.539183 }, "geometry": { "type": "Point", "coordinates": [ 149.435, -33.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928477, "decimalLat": -31.46068 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516057, "decimalLat": -34.437976 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634502, "decimalLat": -34.420029 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602009, "decimalLat": -34.42567 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.974883, "decimalLat": -32.564607 }, "geometry": { "type": "Point", "coordinates": [ 151.975, -32.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.062838, "decimalLat": -33.778301 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -33.778 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299474, "decimalLat": -28.819384 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60718, "decimalLat": -34.437771 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925143, "decimalLat": -31.454104 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.795236, "decimalLat": -34.132345 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.132 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864964, "decimalLat": -31.297636 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -31.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632971, "decimalLat": -34.392934 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910213, "decimalLat": -31.458245 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630082, "decimalLat": -34.39433 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602978, "decimalLat": -34.437076 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514364, "decimalLat": -34.447296 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520511, "decimalLat": -34.465722 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641019, "decimalLat": -34.393288 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.789246, "decimalLat": -32.654702 }, "geometry": { "type": "Point", "coordinates": [ 151.789, -32.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633116, "decimalLat": -34.417505 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.874028, "decimalLat": -31.430327 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595561, "decimalLat": -34.514666 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924545, "decimalLat": -29.728939 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -29.729 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.104524, "decimalLat": -33.774293 }, "geometry": { "type": "Point", "coordinates": [ 150.105, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59746, "decimalLat": -34.41469 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.415 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851231, "decimalLat": -29.693116 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888795, "decimalLat": -30.172503 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -30.173 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.576078, "decimalLat": -28.845735 }, "geometry": { "type": "Point", "coordinates": [ 153.576, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908709, "decimalLat": -31.488715 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08478, "decimalLat": -32.729647 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614827, "decimalLat": -34.453166 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.106615, "decimalLat": -32.728964 }, "geometry": { "type": "Point", "coordinates": [ 152.107, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.960447, "decimalLat": -32.236293 }, "geometry": { "type": "Point", "coordinates": [ 150.96, -32.236 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639173, "decimalLat": -34.491404 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558805, "decimalLat": -28.38969 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531972, "decimalLat": -34.460211 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631103, "decimalLat": -34.387417 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.110489, "decimalLat": -31.000351 }, "geometry": { "type": "Point", "coordinates": [ 150.11, -31.0 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824706, "decimalLat": -29.505144 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516619, "decimalLat": -34.449028 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.389131, "decimalLat": -31.970298 }, "geometry": { "type": "Point", "coordinates": [ 152.389, -31.97 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110243, "decimalLat": -29.490287 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101301, "decimalLat": -29.48968 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555834, "decimalLat": -28.398963 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606922, "decimalLat": -34.454436 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641011, "decimalLat": -34.397066 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.936104, "decimalLat": -32.322436 }, "geometry": { "type": "Point", "coordinates": [ 149.936, -32.322 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.286033, "decimalLat": -30.610471 }, "geometry": { "type": "Point", "coordinates": [ 151.286, -30.61 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60457, "decimalLat": -34.438865 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.541761, "decimalLat": -32.330298 }, "geometry": { "type": "Point", "coordinates": [ 152.542, -32.33 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071024, "decimalLat": -30.885054 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095786, "decimalLat": -29.484763 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101955, "decimalLat": -29.488854 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610347, "decimalLat": -34.419018 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.485548 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899529, "decimalLat": -31.472569 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611895, "decimalLat": -34.431895 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631229, "decimalLat": -34.387582 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605576, "decimalLat": -34.437902 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607707, "decimalLat": -34.432634 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.620818, "decimalLat": -34.350933 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.351 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.303696, "decimalLat": -33.318389 }, "geometry": { "type": "Point", "coordinates": [ 151.304, -33.318 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200421, "decimalLat": -29.354409 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637861, "decimalLat": -34.488909 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.226116, "decimalLat": -28.887305 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -28.887 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608948, "decimalLat": -34.434894 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615173, "decimalLat": -34.436395 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103854, "decimalLat": -29.489587 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603953, "decimalLat": -34.437203 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518436, "decimalLat": -34.442438 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794506, "decimalLat": -34.190155 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.19 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633024, "decimalLat": -34.392972 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.959172, "decimalLat": -29.561416 }, "geometry": { "type": "Point", "coordinates": [ 152.959, -29.561 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110544, "decimalLat": -29.490105 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.295738, "decimalLat": -28.820356 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631287, "decimalLat": -34.420237 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519558, "decimalLat": -34.447167 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.567714, "decimalLat": -28.886731 }, "geometry": { "type": "Point", "coordinates": [ 152.568, -28.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.435797, "decimalLat": -31.947218 }, "geometry": { "type": "Point", "coordinates": [ 152.436, -31.947 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784233, "decimalLat": -31.370483 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.37 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.728863, "decimalLat": -30.166618 }, "geometry": { "type": "Point", "coordinates": [ 152.729, -30.167 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87435, "decimalLat": -31.494293 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103937, "decimalLat": -32.759739 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.76 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434038, "decimalLat": -28.732183 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.732 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096204, "decimalLat": -29.485095 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.612458, "decimalLat": -28.663819 }, "geometry": { "type": "Point", "coordinates": [ 153.612, -28.664 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.871804, "decimalLat": -34.044639 }, "geometry": { "type": "Point", "coordinates": [ 150.872, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630234, "decimalLat": -34.420938 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784244, "decimalLat": -33.717718 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812345, "decimalLat": -34.124693 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607946, "decimalLat": -34.455556 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296004, "decimalLat": -28.818579 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794328, "decimalLat": -34.147009 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.147 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.656983, "decimalLat": -30.522373 }, "geometry": { "type": "Point", "coordinates": [ 151.657, -30.522 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819577, "decimalLat": -31.542417 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.291083, "decimalLat": -33.704428 }, "geometry": { "type": "Point", "coordinates": [ 150.291, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924369, "decimalLat": -31.460091 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809751, "decimalLat": -31.140276 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -31.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65984, "decimalLat": -34.457083 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919619, "decimalLat": -31.469096 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52525, "decimalLat": -34.464105 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616802, "decimalLat": -34.430386 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867666, "decimalLat": -29.691643 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.692 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063299, "decimalLat": -32.706088 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615353, "decimalLat": -34.435812 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608854, "decimalLat": -34.435144 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606734, "decimalLat": -34.431271 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.315401, "decimalLat": -36.067445 }, "geometry": { "type": "Point", "coordinates": [ 149.315, -36.067 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.812605, "decimalLat": -32.579085 }, "geometry": { "type": "Point", "coordinates": [ 151.813, -32.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526677, "decimalLat": -34.469624 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.041034, "decimalLat": -32.737604 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.817463, "decimalLat": -32.34057 }, "geometry": { "type": "Point", "coordinates": [ 151.817, -32.341 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.828991, "decimalLat": -34.077732 }, "geometry": { "type": "Point", "coordinates": [ 150.829, -34.078 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413281, "decimalLat": -31.944046 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.944 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640428, "decimalLat": -34.494016 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103747, "decimalLat": -29.485538 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.879594, "decimalLat": -34.014382 }, "geometry": { "type": "Point", "coordinates": [ 150.88, -34.014 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619121, "decimalLat": -34.436859 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336688, "decimalLat": -28.868027 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -28.868 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923643, "decimalLat": -36.618562 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865958, "decimalLat": -29.641626 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -29.642 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.007748, "decimalLat": -32.727342 }, "geometry": { "type": "Point", "coordinates": [ 152.008, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627003, "decimalLat": -34.420938 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.271913, "decimalLat": -28.738086 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -28.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520678, "decimalLat": -34.436534 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302464, "decimalLat": -28.846215 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782715, "decimalLat": -31.630254 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.335517, "decimalLat": -31.950185 }, "geometry": { "type": "Point", "coordinates": [ 152.336, -31.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616424, "decimalLat": -34.43449 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602687, "decimalLat": -34.424791 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.004046, "decimalLat": -28.524027 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -28.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317755, "decimalLat": -28.827612 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926878, "decimalLat": -31.454751 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06153, "decimalLat": -32.710795 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626527, "decimalLat": -34.386174 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528148, "decimalLat": -34.457023 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.897103, "decimalLat": -34.011762 }, "geometry": { "type": "Point", "coordinates": [ 150.897, -34.012 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355432, "decimalLat": -31.909968 }, "geometry": { "type": "Point", "coordinates": [ 152.355, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513172, "decimalLat": -34.447109 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.709367, "decimalLat": -31.81557 }, "geometry": { "type": "Point", "coordinates": [ 152.709, -31.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520434, "decimalLat": -34.467244 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.105773, "decimalLat": -34.970239 }, "geometry": { "type": "Point", "coordinates": [ 150.106, -34.97 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636189, "decimalLat": -34.421937 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915736, "decimalLat": -31.482605 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.483 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.790104, "decimalLat": -32.654353 }, "geometry": { "type": "Point", "coordinates": [ 151.79, -32.654 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.205077, "decimalLat": -28.74311 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -28.743 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629643, "decimalLat": -28.637218 }, "geometry": { "type": "Point", "coordinates": [ 153.63, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786028, "decimalLat": -33.711191 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609146, "decimalLat": -34.418769 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.825496, "decimalLat": -34.150131 }, "geometry": { "type": "Point", "coordinates": [ 150.825, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.341302, "decimalLat": -28.807128 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -28.807 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518311, "decimalLat": -34.451442 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104321, "decimalLat": -29.477207 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.602382, "decimalLat": -31.651665 }, "geometry": { "type": "Point", "coordinates": [ 152.602, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520679, "decimalLat": -34.453789 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063414, "decimalLat": -32.706407 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.380618, "decimalLat": -31.919748 }, "geometry": { "type": "Point", "coordinates": [ 152.381, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626979, "decimalLat": -34.421019 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.663488, "decimalLat": -34.458578 }, "geometry": { "type": "Point", "coordinates": [ 150.663, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523924, "decimalLat": -34.464069 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.704695, "decimalLat": -32.630046 }, "geometry": { "type": "Point", "coordinates": [ 151.705, -32.63 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912152, "decimalLat": -31.476751 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615642, "decimalLat": -34.435989 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.866027, "decimalLat": -34.060984 }, "geometry": { "type": "Point", "coordinates": [ 150.866, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104149, "decimalLat": -29.478688 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.090012, "decimalLat": -32.739577 }, "geometry": { "type": "Point", "coordinates": [ 152.09, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632613, "decimalLat": -34.418342 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063775, "decimalLat": -32.706747 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628201, "decimalLat": -34.390065 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.485682, "decimalLat": -32.16053 }, "geometry": { "type": "Point", "coordinates": [ 152.486, -32.161 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.370912, "decimalLat": -28.570297 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -28.57 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374318, "decimalLat": -31.915428 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529172, "decimalLat": -34.464743 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530116, "decimalLat": -34.458938 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603103, "decimalLat": -34.434978 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848175, "decimalLat": -34.065877 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.066 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631484, "decimalLat": -34.387812 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561545, "decimalLat": -28.385605 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104262, "decimalLat": -29.480205 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.518454, "decimalLat": -28.416309 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -28.416 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897833, "decimalLat": -31.157916 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.158 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604326, "decimalLat": -34.425671 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.460843, "decimalLat": -28.951803 }, "geometry": { "type": "Point", "coordinates": [ 153.461, -28.952 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.872528, "decimalLat": -34.108288 }, "geometry": { "type": "Point", "coordinates": [ 150.873, -34.108 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867388, "decimalLat": -30.40063 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -30.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.701879, "decimalLat": -29.634028 }, "geometry": { "type": "Point", "coordinates": [ 150.702, -29.634 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.989088, "decimalLat": -36.503585 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.504 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.346803, "decimalLat": -29.060314 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -29.06 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634884, "decimalLat": -34.485984 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513188, "decimalLat": -34.445857 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.318031, "decimalLat": -36.298453 }, "geometry": { "type": "Point", "coordinates": [ 149.318, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.994223, "decimalLat": -34.071525 }, "geometry": { "type": "Point", "coordinates": [ 150.994, -34.072 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109664, "decimalLat": -29.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642186, "decimalLat": -34.396295 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.410278, "decimalLat": -28.724932 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.725 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.968763, "decimalLat": -34.121293 }, "geometry": { "type": "Point", "coordinates": [ 150.969, -34.121 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616746, "decimalLat": -34.434631 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.294656, "decimalLat": -31.646417 }, "geometry": { "type": "Point", "coordinates": [ 152.295, -31.646 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644894, "decimalLat": -34.391244 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519105, "decimalLat": -34.459923 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524172, "decimalLat": -34.463037 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108183, "decimalLat": -29.490665 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.173702, "decimalLat": -29.889732 }, "geometry": { "type": "Point", "coordinates": [ 152.174, -29.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.704428, "decimalLat": -31.533617 }, "geometry": { "type": "Point", "coordinates": [ 152.704, -31.534 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514525, "decimalLat": -34.447362 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.983255, "decimalLat": -28.62063 }, "geometry": { "type": "Point", "coordinates": [ 152.983, -28.621 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785748, "decimalLat": -31.629527 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.217972, "decimalLat": -28.830391 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614039, "decimalLat": -34.433028 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639691, "decimalLat": -34.397987 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603643, "decimalLat": -34.427505 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524266, "decimalLat": -34.461326 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.880784, "decimalLat": -36.581514 }, "geometry": { "type": "Point", "coordinates": [ 149.881, -36.582 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.547548, "decimalLat": -34.751612 }, "geometry": { "type": "Point", "coordinates": [ 146.548, -34.752 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870644, "decimalLat": -31.464393 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597242, "decimalLat": -34.409764 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611679, "decimalLat": -34.419621 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094984, "decimalLat": -29.483507 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514402, "decimalLat": -34.447468 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516432, "decimalLat": -34.449096 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520474, "decimalLat": -34.454118 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109615, "decimalLat": -29.492753 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313984, "decimalLat": -28.851919 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.852 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626087, "decimalLat": -34.390583 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925074, "decimalLat": -31.459831 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.484382, "decimalLat": -28.633989 }, "geometry": { "type": "Point", "coordinates": [ 153.484, -28.634 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.73258, "decimalLat": -34.25225 }, "geometry": { "type": "Point", "coordinates": [ 150.733, -34.252 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634767, "decimalLat": -34.423766 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468753, "decimalLat": -28.556548 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.492113, "decimalLat": -34.483971 }, "geometry": { "type": "Point", "coordinates": [ 150.492, -34.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625186, "decimalLat": -34.386689 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927689, "decimalLat": -31.449896 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.745219, "decimalLat": -31.201103 }, "geometry": { "type": "Point", "coordinates": [ 152.745, -31.201 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355785, "decimalLat": -31.85809 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517384, "decimalLat": -34.446366 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.508498, "decimalLat": -34.465991 }, "geometry": { "type": "Point", "coordinates": [ 150.508, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518367, "decimalLat": -34.451371 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790596, "decimalLat": -34.188134 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645279, "decimalLat": -34.393019 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.470616, "decimalLat": -34.491196 }, "geometry": { "type": "Point", "coordinates": [ 150.471, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.527144, "decimalLat": -28.684339 }, "geometry": { "type": "Point", "coordinates": [ 153.527, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521435, "decimalLat": -34.466516 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517335, "decimalLat": -34.452053 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283318, "decimalLat": -28.830756 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517457, "decimalLat": -34.446097 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884903, "decimalLat": -34.06142 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615567, "decimalLat": -34.432093 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609266, "decimalLat": -34.41878 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606661, "decimalLat": -34.436869 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636952, "decimalLat": -34.422682 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924717, "decimalLat": -31.463587 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606707, "decimalLat": -34.456226 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110635, "decimalLat": -29.487556 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522504, "decimalLat": -34.464238 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64683, "decimalLat": -34.401325 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.390153, "decimalLat": -28.876766 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.877 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.957517, "decimalLat": -36.504679 }, "geometry": { "type": "Point", "coordinates": [ 149.958, -36.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782367, "decimalLat": -31.484628 }, "geometry": { "type": "Point", "coordinates": [ 152.782, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316984, "decimalLat": -28.937089 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.937 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.734195, "decimalLat": -30.380012 }, "geometry": { "type": "Point", "coordinates": [ 152.734, -30.38 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.385091, "decimalLat": -28.827832 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.871597, "decimalLat": -34.105583 }, "geometry": { "type": "Point", "coordinates": [ 150.872, -34.106 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104133, "decimalLat": -29.484165 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529159, "decimalLat": -34.47255 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.858188, "decimalLat": -32.051029 }, "geometry": { "type": "Point", "coordinates": [ 151.858, -32.051 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893844, "decimalLat": -31.443116 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514324, "decimalLat": -34.447538 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.565419, "decimalLat": -34.757477 }, "geometry": { "type": "Point", "coordinates": [ 146.565, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.212903, "decimalLat": -28.882773 }, "geometry": { "type": "Point", "coordinates": [ 153.213, -28.883 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609555, "decimalLat": -34.418957 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.604958, "decimalLat": -30.343887 }, "geometry": { "type": "Point", "coordinates": [ 152.605, -30.344 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383563, "decimalLat": -31.927624 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78395, "decimalLat": -33.716936 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521362, "decimalLat": -34.464919 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642567, "decimalLat": -34.395509 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322479, "decimalLat": -28.827651 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912587, "decimalLat": -31.477482 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10997, "decimalLat": -29.490278 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515624, "decimalLat": -34.459492 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627941, "decimalLat": -34.420839 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609554, "decimalLat": -34.418984 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.826226, "decimalLat": -29.809858 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -29.81 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104122, "decimalLat": -29.480028 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.480811, "decimalLat": -28.249102 }, "geometry": { "type": "Point", "coordinates": [ 153.481, -28.249 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.285785, "decimalLat": -33.271566 }, "geometry": { "type": "Point", "coordinates": [ 150.286, -33.272 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.079011, "decimalLat": -30.353222 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -30.353 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.519104, "decimalLat": -30.521125 }, "geometry": { "type": "Point", "coordinates": [ 151.519, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.582596, "decimalLat": -34.498724 }, "geometry": { "type": "Point", "coordinates": [ 150.583, -34.499 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513927, "decimalLat": -34.446971 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553656, "decimalLat": -28.360172 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.36 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639294, "decimalLat": -34.398169 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785129, "decimalLat": -33.718216 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617036, "decimalLat": -34.430571 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959252, "decimalLat": -36.447255 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989748, "decimalLat": -32.978968 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -32.979 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.295364, "decimalLat": -28.713379 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.713 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877448, "decimalLat": -31.144825 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -31.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561739, "decimalLat": -28.367331 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.367 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510417, "decimalLat": -28.809671 }, "geometry": { "type": "Point", "coordinates": [ 153.51, -28.81 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.913134, "decimalLat": -36.588285 }, "geometry": { "type": "Point", "coordinates": [ 149.913, -36.588 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604492, "decimalLat": -34.43816 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555948, "decimalLat": -28.398935 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.171154, "decimalLat": -28.631323 }, "geometry": { "type": "Point", "coordinates": [ 153.171, -28.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375193, "decimalLat": -28.697854 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.698 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.055885, "decimalLat": -33.767616 }, "geometry": { "type": "Point", "coordinates": [ 150.056, -33.768 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399865, "decimalLat": -28.960715 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102888, "decimalLat": -29.487173 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.80716, "decimalLat": -29.575004 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -29.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770125, "decimalLat": -29.637159 }, "geometry": { "type": "Point", "coordinates": [ 152.77, -29.637 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521578, "decimalLat": -34.465734 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903023, "decimalLat": -30.23931 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.239 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.677467, "decimalLat": -31.51058 }, "geometry": { "type": "Point", "coordinates": [ 152.677, -31.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.156411, "decimalLat": -32.100867 }, "geometry": { "type": "Point", "coordinates": [ 152.156, -32.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631239, "decimalLat": -34.393388 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07025, "decimalLat": -30.88572 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454735, "decimalLat": -28.615442 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.615 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.22336, "decimalLat": -28.943812 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -28.944 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987011, "decimalLat": -34.042728 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.043 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639604, "decimalLat": -34.397219 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.017084, "decimalLat": -32.733376 }, "geometry": { "type": "Point", "coordinates": [ 152.017, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610382, "decimalLat": -34.420091 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.747549, "decimalLat": -31.448774 }, "geometry": { "type": "Point", "coordinates": [ 152.748, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.880407, "decimalLat": -32.491055 }, "geometry": { "type": "Point", "coordinates": [ 151.88, -32.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526678, "decimalLat": -34.469588 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.832792, "decimalLat": -30.436667 }, "geometry": { "type": "Point", "coordinates": [ 152.833, -30.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101553, "decimalLat": -29.489704 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628019, "decimalLat": -34.421147 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063403, "decimalLat": -32.705541 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10401, "decimalLat": -29.484371 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889349, "decimalLat": -31.444292 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.106083, "decimalLat": -33.228143 }, "geometry": { "type": "Point", "coordinates": [ 151.106, -33.228 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.591196, "decimalLat": -31.796895 }, "geometry": { "type": "Point", "coordinates": [ 152.591, -31.797 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637324, "decimalLat": -34.423744 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.472497, "decimalLat": -28.280407 }, "geometry": { "type": "Point", "coordinates": [ 152.472, -28.28 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103715, "decimalLat": -29.485613 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606579, "decimalLat": -34.457674 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.159096, "decimalLat": -28.924929 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.132529, "decimalLat": -32.199624 }, "geometry": { "type": "Point", "coordinates": [ 152.133, -32.2 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.60505, "decimalLat": -32.578884 }, "geometry": { "type": "Point", "coordinates": [ 151.605, -32.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641311, "decimalLat": -34.40304 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.403 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327647, "decimalLat": -28.817008 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785087, "decimalLat": -33.710812 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903765, "decimalLat": -31.326927 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.327 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635372, "decimalLat": -34.419676 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276354, "decimalLat": -28.819255 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.059246, "decimalLat": -33.772861 }, "geometry": { "type": "Point", "coordinates": [ 150.059, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63739, "decimalLat": -34.421797 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808563, "decimalLat": -34.098206 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.090707, "decimalLat": -32.738386 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606341, "decimalLat": -29.873659 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -29.874 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064593, "decimalLat": -32.70907 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262628, "decimalLat": -28.951265 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -28.951 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627414, "decimalLat": -34.420243 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.510302, "decimalLat": -31.936905 }, "geometry": { "type": "Point", "coordinates": [ 152.51, -31.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.463836, "decimalLat": -28.320689 }, "geometry": { "type": "Point", "coordinates": [ 153.464, -28.321 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603106, "decimalLat": -34.417722 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300295, "decimalLat": -28.817349 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374722, "decimalLat": -28.2525 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.398066, "decimalLat": -29.01557 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627188, "decimalLat": -34.420942 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.480827 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870213, "decimalLat": -31.46395 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103741, "decimalLat": -29.485632 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298809, "decimalLat": -28.888959 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495403, "decimalLat": -28.693316 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.796852, "decimalLat": -31.63738 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893115, "decimalLat": -31.446849 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516751, "decimalLat": -34.446425 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786239, "decimalLat": -33.712535 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108162, "decimalLat": -29.490581 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949786, "decimalLat": -36.632867 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.633 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063764, "decimalLat": -32.706538 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.168349, "decimalLat": -33.12666 }, "geometry": { "type": "Point", "coordinates": [ 151.168, -33.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.356581, "decimalLat": -32.096996 }, "geometry": { "type": "Point", "coordinates": [ 152.357, -32.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519993, "decimalLat": -34.435772 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517986, "decimalLat": -34.447703 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63, "decimalLat": -34.395302 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639096, "decimalLat": -34.492981 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615588, "decimalLat": -34.450882 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529353, "decimalLat": -34.467812 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520778, "decimalLat": -34.450807 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645276, "decimalLat": -34.393145 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.089446, "decimalLat": -30.319099 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -30.319 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292751, "decimalLat": -28.864745 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530208, "decimalLat": -34.470958 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095325, "decimalLat": -29.483904 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.108516, "decimalLat": -32.592014 }, "geometry": { "type": "Point", "coordinates": [ 152.109, -32.592 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.352187, "decimalLat": -28.695396 }, "geometry": { "type": "Point", "coordinates": [ 153.352, -28.695 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.726, "decimalLat": -32.67 }, "geometry": { "type": "Point", "coordinates": [ 151.726, -32.67 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101226, "decimalLat": -29.489928 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.413378, "decimalLat": -29.031491 }, "geometry": { "type": "Point", "coordinates": [ 153.413, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.479409, "decimalLat": -28.249367 }, "geometry": { "type": "Point", "coordinates": [ 153.479, -28.249 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6064, "decimalLat": -34.43763 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.159378, "decimalLat": -31.626185 }, "geometry": { "type": "Point", "coordinates": [ 152.159, -31.626 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.847035, "decimalLat": -31.545537 }, "geometry": { "type": "Point", "coordinates": [ 152.847, -31.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901014, "decimalLat": -31.442508 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599486, "decimalLat": -34.429795 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.740497, "decimalLat": -33.501078 }, "geometry": { "type": "Point", "coordinates": [ 150.74, -33.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532778, "decimalLat": -34.458722 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898844, "decimalLat": -31.457231 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517239, "decimalLat": -34.451628 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798537, "decimalLat": -31.124819 }, "geometry": { "type": "Point", "coordinates": [ 152.799, -31.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520434, "decimalLat": -34.465774 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.49963, "decimalLat": -34.4474 }, "geometry": { "type": "Point", "coordinates": [ 150.5, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454341, "decimalLat": -28.653446 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.619513, "decimalLat": -30.341332 }, "geometry": { "type": "Point", "coordinates": [ 152.62, -30.341 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.593559, "decimalLat": -28.723846 }, "geometry": { "type": "Point", "coordinates": [ 153.594, -28.724 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.038863, "decimalLat": -30.883362 }, "geometry": { "type": "Point", "coordinates": [ 153.039, -30.883 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095421, "decimalLat": -29.484114 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.985504, "decimalLat": -30.325519 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -30.326 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600297, "decimalLat": -34.428089 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809404, "decimalLat": -34.099795 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.463046, "decimalLat": -28.875821 }, "geometry": { "type": "Point", "coordinates": [ 153.463, -28.876 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644155, "decimalLat": -34.393159 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525047, "decimalLat": -34.452664 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07169, "decimalLat": -32.71099 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.109985, "decimalLat": -32.777513 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -32.778 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.808889, "decimalLat": -31.144146 }, "geometry": { "type": "Point", "coordinates": [ 152.809, -31.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638531, "decimalLat": -34.490635 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.245604, "decimalLat": -30.018307 }, "geometry": { "type": "Point", "coordinates": [ 152.246, -30.018 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.510997, "decimalLat": -34.471262 }, "geometry": { "type": "Point", "coordinates": [ 150.511, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.119945, "decimalLat": -30.304266 }, "geometry": { "type": "Point", "coordinates": [ 153.12, -30.304 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103554, "decimalLat": -29.486019 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300422, "decimalLat": -31.948252 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.040412, "decimalLat": -32.732743 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522274, "decimalLat": -34.441425 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.554836, "decimalLat": -33.533613 }, "geometry": { "type": "Point", "coordinates": [ 149.555, -33.534 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897387, "decimalLat": -31.475057 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784241, "decimalLat": -33.717274 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.75241, "decimalLat": -32.40466 }, "geometry": { "type": "Point", "coordinates": [ 151.752, -32.405 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.558935, "decimalLat": -32.644384 }, "geometry": { "type": "Point", "coordinates": [ 149.559, -32.644 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.969776, "decimalLat": -36.511423 }, "geometry": { "type": "Point", "coordinates": [ 149.97, -36.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609467, "decimalLat": -34.418965 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10379, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.709585, "decimalLat": -32.632872 }, "geometry": { "type": "Point", "coordinates": [ 151.71, -32.633 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.25443, "decimalLat": -28.902453 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -28.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637395, "decimalLat": -34.420463 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.84213, "decimalLat": -34.07023 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.862933, "decimalLat": -28.963656 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -28.964 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070738, "decimalLat": -32.718442 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657621, "decimalLat": -34.45549 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513052, "decimalLat": -34.446034 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784119, "decimalLat": -33.717322 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.609071, "decimalLat": -30.343024 }, "geometry": { "type": "Point", "coordinates": [ 152.609, -30.343 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10379, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.754807, "decimalLat": -29.225616 }, "geometry": { "type": "Point", "coordinates": [ 150.755, -29.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314107, "decimalLat": -28.820206 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517227, "decimalLat": -34.452033 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395841, "decimalLat": -29.045822 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -29.046 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.009047, "decimalLat": -34.045302 }, "geometry": { "type": "Point", "coordinates": [ 151.009, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605638, "decimalLat": -34.437281 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562466, "decimalLat": -28.39117 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810193, "decimalLat": -31.637624 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -31.638 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785858, "decimalLat": -33.710998 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610248, "decimalLat": -34.420206 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642475, "decimalLat": -34.394128 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317651, "decimalLat": -28.862857 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317051, "decimalLat": -28.826957 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985569, "decimalLat": -34.091113 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518968, "decimalLat": -34.447263 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.820986, "decimalLat": -34.101712 }, "geometry": { "type": "Point", "coordinates": [ 150.821, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108205, "decimalLat": -29.490264 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616315, "decimalLat": -34.434506 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603594, "decimalLat": -34.442921 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.219727, "decimalLat": -32.299858 }, "geometry": { "type": "Point", "coordinates": [ 152.22, -32.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415118, "decimalLat": -31.933238 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07261, "decimalLat": -32.71075 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320004, "decimalLat": -28.849989 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.474507, "decimalLat": -28.595802 }, "geometry": { "type": "Point", "coordinates": [ 153.475, -28.596 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.540936, "decimalLat": -30.422497 }, "geometry": { "type": "Point", "coordinates": [ 151.541, -30.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.006494, "decimalLat": -32.728838 }, "geometry": { "type": "Point", "coordinates": [ 152.006, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.783997, "decimalLat": -31.632523 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.941027, "decimalLat": -34.114736 }, "geometry": { "type": "Point", "coordinates": [ 150.941, -34.115 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.450915, "decimalLat": -28.403806 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.404 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108108, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658643, "decimalLat": -34.455131 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646114, "decimalLat": -34.401275 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925021, "decimalLat": -31.454114 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517345, "decimalLat": -34.452811 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518771, "decimalLat": -34.447286 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615994, "decimalLat": -34.436222 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636302, "decimalLat": -34.421813 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642131, "decimalLat": -34.396303 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608852, "decimalLat": -34.420702 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793073, "decimalLat": -31.466249 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.040591, "decimalLat": -32.737719 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867889, "decimalLat": -29.667173 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599914, "decimalLat": -34.425106 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067734, "decimalLat": -32.707667 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615891, "decimalLat": -34.436003 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.090504, "decimalLat": -32.738096 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110141, "decimalLat": -29.490287 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619796, "decimalLat": -34.439145 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107974, "decimalLat": -29.490465 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556245, "decimalLat": -28.398653 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627375, "decimalLat": -34.421234 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359068, "decimalLat": -31.912724 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524369, "decimalLat": -34.466314 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513928, "decimalLat": -34.447314 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632736, "decimalLat": -34.418624 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602354, "decimalLat": -34.425758 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633822, "decimalLat": -34.392437 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600528, "decimalLat": -34.455004 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518504, "decimalLat": -34.457405 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.70964, "decimalLat": -32.691335 }, "geometry": { "type": "Point", "coordinates": [ 151.71, -32.691 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615749, "decimalLat": -34.434107 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913418, "decimalLat": -31.443163 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639464, "decimalLat": -34.392898 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.66622, "decimalLat": -31.825378 }, "geometry": { "type": "Point", "coordinates": [ 152.666, -31.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.385091, "decimalLat": -28.827832 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557112, "decimalLat": -28.397533 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622563, "decimalLat": -34.384465 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597316, "decimalLat": -34.410207 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822863, "decimalLat": -34.127969 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.128 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.073937, "decimalLat": -30.342885 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.343 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635815, "decimalLat": -34.488076 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785987, "decimalLat": -33.712265 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794065, "decimalLat": -31.644902 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.645 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51834, "decimalLat": -34.446412 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402283, "decimalLat": -28.260319 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905315, "decimalLat": -31.435751 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.386455, "decimalLat": -28.78792 }, "geometry": { "type": "Point", "coordinates": [ 153.386, -28.788 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.488326, "decimalLat": -28.227743 }, "geometry": { "type": "Point", "coordinates": [ 153.488, -28.228 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.486938, "decimalLat": -31.458484 }, "geometry": { "type": "Point", "coordinates": [ 151.487, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.800651, "decimalLat": -34.177896 }, "geometry": { "type": "Point", "coordinates": [ 150.801, -34.178 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924908, "decimalLat": -31.459245 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89266, "decimalLat": -33.991958 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.992 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553697, "decimalLat": -28.570637 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.571 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.715119, "decimalLat": -31.635824 }, "geometry": { "type": "Point", "coordinates": [ 152.715, -31.636 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894891, "decimalLat": -31.429077 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607252, "decimalLat": -34.422654 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909933, "decimalLat": -31.464587 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.698744, "decimalLat": -31.680596 }, "geometry": { "type": "Point", "coordinates": [ 152.699, -31.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.677656, "decimalLat": -32.79319 }, "geometry": { "type": "Point", "coordinates": [ 151.678, -32.793 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.557785, "decimalLat": -33.495102 }, "geometry": { "type": "Point", "coordinates": [ 149.558, -33.495 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.800908, "decimalLat": -31.643962 }, "geometry": { "type": "Point", "coordinates": [ 152.801, -31.644 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635869, "decimalLat": -34.394658 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.81337, "decimalLat": -34.111088 }, "geometry": { "type": "Point", "coordinates": [ 150.813, -34.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626676, "decimalLat": -34.389008 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608174, "decimalLat": -28.671969 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.882284, "decimalLat": -29.611382 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -29.611 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555912, "decimalLat": -28.399095 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513901, "decimalLat": -34.446024 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605883, "decimalLat": -34.454235 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.041454, "decimalLat": -30.340052 }, "geometry": { "type": "Point", "coordinates": [ 153.041, -30.34 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318231, "decimalLat": -28.824264 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905245, "decimalLat": -31.444894 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.879593, "decimalLat": -32.484811 }, "geometry": { "type": "Point", "coordinates": [ 151.88, -32.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102427, "decimalLat": -29.488914 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519668, "decimalLat": -34.455238 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610896, "decimalLat": -34.455135 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985466, "decimalLat": -34.091163 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.95688, "decimalLat": -30.663598 }, "geometry": { "type": "Point", "coordinates": [ 152.957, -30.664 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619187, "decimalLat": -34.436816 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104208, "decimalLat": -29.483787 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626756, "decimalLat": -34.385403 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.368924, "decimalLat": -28.804061 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.804 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.966117, "decimalLat": -31.254301 }, "geometry": { "type": "Point", "coordinates": [ 152.966, -31.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554084, "decimalLat": -28.571052 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.571 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.380619, "decimalLat": -31.917372 }, "geometry": { "type": "Point", "coordinates": [ 152.381, -31.917 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039598, "decimalLat": -32.732033 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32387, "decimalLat": -28.697186 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523379, "decimalLat": -34.459298 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.565275, "decimalLat": -31.94611 }, "geometry": { "type": "Point", "coordinates": [ 152.565, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339182, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604106, "decimalLat": -34.438703 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610335, "decimalLat": -34.419063 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.178328, "decimalLat": -31.611749 }, "geometry": { "type": "Point", "coordinates": [ 152.178, -31.612 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639039, "decimalLat": -34.491519 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107985, "decimalLat": -29.490437 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630874, "decimalLat": -34.420617 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902531, "decimalLat": -31.257735 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78629, "decimalLat": -33.711585 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.380098, "decimalLat": -36.177315 }, "geometry": { "type": "Point", "coordinates": [ 149.38, -36.177 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071317, "decimalLat": -30.888051 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.623354, "decimalLat": -31.783109 }, "geometry": { "type": "Point", "coordinates": [ 152.623, -31.783 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533247, "decimalLat": -34.479755 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60478, "decimalLat": -34.427284 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606748, "decimalLat": -34.429252 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454494, "decimalLat": -28.664505 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.665 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.693333, "decimalLat": -32.70257 }, "geometry": { "type": "Point", "coordinates": [ 151.693, -32.703 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785303, "decimalLat": -33.703321 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.703 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.568665, "decimalLat": -28.694927 }, "geometry": { "type": "Point", "coordinates": [ 153.569, -28.695 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.470723, "decimalLat": -28.794169 }, "geometry": { "type": "Point", "coordinates": [ 153.471, -28.794 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639177, "decimalLat": -34.392685 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.734049, "decimalLat": -30.84847 }, "geometry": { "type": "Point", "coordinates": [ 152.734, -30.848 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.798213, "decimalLat": -32.525778 }, "geometry": { "type": "Point", "coordinates": [ 151.798, -32.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92404, "decimalLat": -31.477052 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873462, "decimalLat": -31.285075 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.285 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79422, "decimalLat": -34.142364 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622013, "decimalLat": -34.397753 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063694, "decimalLat": -32.706556 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.563259, "decimalLat": -34.762624 }, "geometry": { "type": "Point", "coordinates": [ 146.563, -34.763 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37407, "decimalLat": -31.915474 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.593559, "decimalLat": -28.723846 }, "geometry": { "type": "Point", "coordinates": [ 153.594, -28.724 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104401, "decimalLat": -29.489619 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103935, "decimalLat": -29.489559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.471711, "decimalLat": -31.939705 }, "geometry": { "type": "Point", "coordinates": [ 152.472, -31.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522917, "decimalLat": -34.452473 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515805, "decimalLat": -34.446757 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495403, "decimalLat": -28.693316 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297228, "decimalLat": -28.824259 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603469, "decimalLat": -34.435481 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786811, "decimalLat": -31.629191 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311298, "decimalLat": -28.822003 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.251989, "decimalLat": -30.991878 }, "geometry": { "type": "Point", "coordinates": [ 150.252, -30.992 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916075, "decimalLat": -29.591198 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -29.591 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626187, "decimalLat": -34.390125 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002802, "decimalLat": -29.18252 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -29.183 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.083327, "decimalLat": -28.651897 }, "geometry": { "type": "Point", "coordinates": [ 152.083, -28.652 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.769263, "decimalLat": -32.640003 }, "geometry": { "type": "Point", "coordinates": [ 151.769, -32.64 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062354, "decimalLat": -32.708881 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.104524, "decimalLat": -33.774293 }, "geometry": { "type": "Point", "coordinates": [ 150.105, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641022, "decimalLat": -34.393965 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556289, "decimalLat": -28.399887 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.699623, "decimalLat": -30.290419 }, "geometry": { "type": "Point", "coordinates": [ 152.7, -30.29 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609555, "decimalLat": -34.418957 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.553504, "decimalLat": -33.558237 }, "geometry": { "type": "Point", "coordinates": [ 149.554, -33.558 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063508, "decimalLat": -32.706212 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793869, "decimalLat": -31.638983 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604892, "decimalLat": -34.425285 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.345731, "decimalLat": -32.298705 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -32.299 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095807, "decimalLat": -29.484782 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.109885, "decimalLat": -32.673976 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -32.674 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 2, "stateProvi": "South Australia", "decimalLon": 138.69847, "decimalLat": -35.02276 }, "geometry": { "type": "Point", "coordinates": [ 138.698, -35.023 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110538, "decimalLat": -29.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645932, "decimalLat": -34.397278 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623566, "decimalLat": -34.389371 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101268, "decimalLat": -29.489984 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.190362, "decimalLat": -32.237057 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.237 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891857, "decimalLat": -31.470757 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617008, "decimalLat": -34.434997 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784737, "decimalLat": -33.713651 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270137, "decimalLat": -28.887255 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -28.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07678, "decimalLat": -28.553296 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -28.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597952, "decimalLat": -34.418027 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921975, "decimalLat": -31.454908 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611572, "decimalLat": -34.420304 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635378, "decimalLat": -34.420226 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.369052, "decimalLat": -28.953149 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.392913, "decimalLat": -28.958831 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896393, "decimalLat": -31.447575 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063831, "decimalLat": -32.706579 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78299, "decimalLat": -33.718629 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913748, "decimalLat": -31.469665 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631488, "decimalLat": -34.388425 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016902, "decimalLat": -36.541583 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.542 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629825, "decimalLat": -28.637745 }, "geometry": { "type": "Point", "coordinates": [ 153.63, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.534383, "decimalLat": -34.746424 }, "geometry": { "type": "Point", "coordinates": [ 146.534, -34.746 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.139995, "decimalLat": -32.227629 }, "geometry": { "type": "Point", "coordinates": [ 152.14, -32.228 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555716, "decimalLat": -28.399074 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519181, "decimalLat": -34.459925 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.937899, "decimalLat": -29.721328 }, "geometry": { "type": "Point", "coordinates": [ 150.938, -29.721 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.974392, "decimalLat": -29.036902 }, "geometry": { "type": "Point", "coordinates": [ 152.974, -29.037 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624484, "decimalLat": -34.388073 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659176, "decimalLat": -34.459018 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52235, "decimalLat": -34.451758 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603682, "decimalLat": -34.438712 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615895, "decimalLat": -34.436265 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808934, "decimalLat": -34.098742 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.230185, "decimalLat": -29.740683 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -29.741 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604679, "decimalLat": -34.439237 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108038, "decimalLat": -29.490213 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639882, "decimalLat": -34.400082 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525516, "decimalLat": -34.458791 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273941, "decimalLat": -28.820088 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527929, "decimalLat": -34.457064 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.562082, "decimalLat": -32.878295 }, "geometry": { "type": "Point", "coordinates": [ 151.562, -32.878 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103682, "decimalLat": -29.485795 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833136, "decimalLat": -34.085987 }, "geometry": { "type": "Point", "coordinates": [ 150.833, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.556337, "decimalLat": -34.75122 }, "geometry": { "type": "Point", "coordinates": [ 146.556, -34.751 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535146, "decimalLat": -34.462935 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103366, "decimalLat": -29.489923 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791254, "decimalLat": -34.191062 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.191 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063553, "decimalLat": -32.706407 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.305872, "decimalLat": -28.827647 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51647, "decimalLat": -34.450043 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908557, "decimalLat": -30.599478 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -30.599 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515945, "decimalLat": -34.443497 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.992558, "decimalLat": -34.025735 }, "geometry": { "type": "Point", "coordinates": [ 150.993, -34.026 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.459576, "decimalLat": -32.04018 }, "geometry": { "type": "Point", "coordinates": [ 152.46, -32.04 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603413, "decimalLat": -34.418395 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.059278, "decimalLat": -32.739099 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645193, "decimalLat": -34.391061 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630888, "decimalLat": -34.388882 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639776, "decimalLat": -34.393427 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1038, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318068, "decimalLat": -28.825824 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632815, "decimalLat": -34.418914 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104047, "decimalLat": -29.484338 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108151, "decimalLat": -29.490297 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514143, "decimalLat": -34.445939 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.846298, "decimalLat": -34.052537 }, "geometry": { "type": "Point", "coordinates": [ 150.846, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518022, "decimalLat": -34.447587 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517553, "decimalLat": -34.440293 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521654, "decimalLat": -34.465745 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522283, "decimalLat": -34.451459 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610322, "decimalLat": -34.419117 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.858731, "decimalLat": -34.072832 }, "geometry": { "type": "Point", "coordinates": [ 150.859, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893484, "decimalLat": -31.448679 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638859, "decimalLat": -34.421781 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101156, "decimalLat": -29.490161 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.861853, "decimalLat": -31.280774 }, "geometry": { "type": "Point", "coordinates": [ 152.862, -31.281 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30453, "decimalLat": -28.827266 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.385144, "decimalLat": -31.914414 }, "geometry": { "type": "Point", "coordinates": [ 152.385, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103988, "decimalLat": -29.48552 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.401731, "decimalLat": -36.233757 }, "geometry": { "type": "Point", "coordinates": [ 149.402, -36.234 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.53657, "decimalLat": -30.514456 }, "geometry": { "type": "Point", "coordinates": [ 151.537, -30.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614177, "decimalLat": -34.429722 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630387, "decimalLat": -34.420905 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967796, "decimalLat": -36.445856 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.080706, "decimalLat": -32.720863 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.788238, "decimalLat": -34.208357 }, "geometry": { "type": "Point", "coordinates": [ 150.788, -34.208 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518178, "decimalLat": -34.437177 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.961393, "decimalLat": -34.094969 }, "geometry": { "type": "Point", "coordinates": [ 150.961, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.529978, "decimalLat": -28.721624 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -28.722 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.852598, "decimalLat": -31.552945 }, "geometry": { "type": "Point", "coordinates": [ 152.853, -31.553 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.215278, "decimalLat": -33.707222 }, "geometry": { "type": "Point", "coordinates": [ 151.215, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525066, "decimalLat": -34.457818 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104155, "decimalLat": -29.480406 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637316, "decimalLat": -34.422112 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925859, "decimalLat": -31.452791 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640667, "decimalLat": -34.413963 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513814, "decimalLat": -34.446392 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.837868, "decimalLat": -31.59445 }, "geometry": { "type": "Point", "coordinates": [ 152.838, -31.594 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.082863, "decimalLat": -33.745837 }, "geometry": { "type": "Point", "coordinates": [ 150.083, -33.746 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.361038, "decimalLat": -28.941392 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616957, "decimalLat": -34.433725 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608538, "decimalLat": -34.434778 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.987718, "decimalLat": -29.259028 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -29.259 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629352, "decimalLat": -34.388961 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606722, "decimalLat": -34.429784 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790834, "decimalLat": -31.639655 }, "geometry": { "type": "Point", "coordinates": [ 152.791, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598004, "decimalLat": -34.426088 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900022, "decimalLat": -29.631018 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912254, "decimalLat": -31.444986 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.486, "decimalLat": -34.40127 }, "geometry": { "type": "Point", "coordinates": [ 150.486, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063986, "decimalLat": -32.699116 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.699 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78712, "decimalLat": -33.704012 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103323, "decimalLat": -29.489886 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.358845, "decimalLat": -29.394612 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -29.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602488, "decimalLat": -34.419928 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518054, "decimalLat": -34.450184 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604279, "decimalLat": -34.437976 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915163, "decimalLat": -31.45148 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637829, "decimalLat": -34.488881 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.1103, "decimalLat": -29.76276 }, "geometry": { "type": "Point", "coordinates": [ 151.11, -29.763 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.823368, "decimalLat": -34.149874 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306378, "decimalLat": -28.977316 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516652, "decimalLat": -34.454167 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640566, "decimalLat": -34.494127 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.1308, "decimalLat": -31.13808 }, "geometry": { "type": "Point", "coordinates": [ 150.131, -31.138 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.267156, "decimalLat": -36.188582 }, "geometry": { "type": "Point", "coordinates": [ 149.267, -36.189 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.069221, "decimalLat": -32.748434 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.748 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630382, "decimalLat": -34.395255 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51433, "decimalLat": -34.447322 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.127017, "decimalLat": -31.766429 }, "geometry": { "type": "Point", "coordinates": [ 152.127, -31.766 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.577692, "decimalLat": -33.015404 }, "geometry": { "type": "Point", "coordinates": [ 151.578, -33.015 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298936, "decimalLat": -28.888756 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562732, "decimalLat": -28.391207 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.1443, "decimalLat": -34.4223 }, "geometry": { "type": "Point", "coordinates": [ 150.144, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51418, "decimalLat": -34.447247 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.040803, "decimalLat": -32.737413 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639176, "decimalLat": -34.392721 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.605266, "decimalLat": -28.692779 }, "geometry": { "type": "Point", "coordinates": [ 153.605, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626299, "decimalLat": -34.395807 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401058, "decimalLat": -29.037756 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -29.038 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108226, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797948, "decimalLat": -30.212442 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -30.212 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924126, "decimalLat": -31.473213 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108135, "decimalLat": -29.490507 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315258, "decimalLat": -29.028428 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -29.028 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976313, "decimalLat": -36.439844 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.497183, "decimalLat": -32.865166 }, "geometry": { "type": "Point", "coordinates": [ 151.497, -32.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.807535, "decimalLat": -31.357274 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -31.357 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53294, "decimalLat": -34.475764 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.85216, "decimalLat": -29.705764 }, "geometry": { "type": "Point", "coordinates": [ 152.852, -29.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109884, "decimalLat": -28.911229 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -28.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633083, "decimalLat": -34.419442 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638485, "decimalLat": -34.491094 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872858, "decimalLat": -31.47907 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606798, "decimalLat": -34.455731 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631972, "decimalLat": -34.418321 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785503, "decimalLat": -33.705582 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617214, "decimalLat": -34.434253 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525432, "decimalLat": -34.45869 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791517, "decimalLat": -31.640283 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614385, "decimalLat": -34.428897 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.21249, "decimalLat": -31.92602 }, "geometry": { "type": "Point", "coordinates": [ 152.212, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.8212, "decimalLat": -34.097442 }, "geometry": { "type": "Point", "coordinates": [ 150.821, -34.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520611, "decimalLat": -34.465661 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297678, "decimalLat": -28.819161 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516743, "decimalLat": -34.436418 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916389, "decimalLat": -31.450779 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.825337, "decimalLat": -34.149966 }, "geometry": { "type": "Point", "coordinates": [ 150.825, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.68942, "decimalLat": -32.671847 }, "geometry": { "type": "Point", "coordinates": [ 151.689, -32.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606625, "decimalLat": -34.435074 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373628, "decimalLat": -31.914468 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640264, "decimalLat": -34.492886 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517242, "decimalLat": -34.452637 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.16828, "decimalLat": -29.432507 }, "geometry": { "type": "Point", "coordinates": [ 153.168, -29.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400782, "decimalLat": -28.880963 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.881 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.795034, "decimalLat": -34.122114 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.122 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.816678, "decimalLat": -30.258572 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -30.259 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627568, "decimalLat": -34.42094 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303214, "decimalLat": -28.817405 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521198, "decimalLat": -34.46606 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.327226, "decimalLat": -36.210767 }, "geometry": { "type": "Point", "coordinates": [ 149.327, -36.211 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614534, "decimalLat": -34.433993 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925179, "decimalLat": -31.454121 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91178, "decimalLat": -31.470441 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07195, "decimalLat": -30.887048 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.418295, "decimalLat": -29.028217 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -29.028 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926272, "decimalLat": -31.45156 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885551, "decimalLat": -31.441289 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103741, "decimalLat": -29.485683 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923276, "decimalLat": -30.506073 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378218, "decimalLat": -31.918365 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784153, "decimalLat": -33.717361 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927735, "decimalLat": -31.458032 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527162, "decimalLat": -34.469417 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103918, "decimalLat": -29.489559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109444, "decimalLat": -29.490404 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.85195, "decimalLat": -29.82887 }, "geometry": { "type": "Point", "coordinates": [ 150.852, -29.829 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.99966, "decimalLat": -32.052189 }, "geometry": { "type": "Point", "coordinates": [ 152.0, -32.052 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607193, "decimalLat": -34.436915 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06354, "decimalLat": -32.705896 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296869, "decimalLat": -28.82068 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.799977, "decimalLat": -34.191103 }, "geometry": { "type": "Point", "coordinates": [ 150.8, -34.191 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595796, "decimalLat": -34.425684 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513851, "decimalLat": -34.446961 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.897949, "decimalLat": -32.079849 }, "geometry": { "type": "Point", "coordinates": [ 151.898, -32.08 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311223, "decimalLat": -28.822063 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.09001, "decimalLat": -32.733047 }, "geometry": { "type": "Point", "coordinates": [ 152.09, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613714, "decimalLat": -34.431074 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53485, "decimalLat": -34.463379 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916453, "decimalLat": -31.45077 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78403, "decimalLat": -31.630036 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.438462, "decimalLat": -34.46681 }, "geometry": { "type": "Point", "coordinates": [ 150.438, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109353, "decimalLat": -29.490502 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072367, "decimalLat": -32.710684 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.863333, "decimalLat": -34.043333 }, "geometry": { "type": "Point", "coordinates": [ 150.863, -34.043 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.230484, "decimalLat": -28.862552 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615453, "decimalLat": -34.435733 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.645843, "decimalLat": -37.368951 }, "geometry": { "type": "Point", "coordinates": [ 149.646, -37.369 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872849, "decimalLat": -31.51885 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.519 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.638022, "decimalLat": -30.442958 }, "geometry": { "type": "Point", "coordinates": [ 152.638, -30.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51845, "decimalLat": -34.444918 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.894231, "decimalLat": -34.817497 }, "geometry": { "type": "Point", "coordinates": [ 149.894, -34.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514204, "decimalLat": -34.446076 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754959, "decimalLat": -31.633109 }, "geometry": { "type": "Point", "coordinates": [ 152.755, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110485, "decimalLat": -29.49011 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638774, "decimalLat": -34.489341 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634749, "decimalLat": -34.418221 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627125, "decimalLat": -34.385816 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.269498, "decimalLat": -32.487777 }, "geometry": { "type": "Point", "coordinates": [ 152.269, -32.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319916, "decimalLat": -28.846402 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63382, "decimalLat": -34.418375 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606626, "decimalLat": -34.435047 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.35998, "decimalLat": -28.791981 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -28.792 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.443107, "decimalLat": -28.600502 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.601 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.069626, "decimalLat": -32.709247 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104396, "decimalLat": -29.477077 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609971, "decimalLat": -34.418839 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51888, "decimalLat": -34.462353 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103715, "decimalLat": -29.485786 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786015, "decimalLat": -34.2132 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -34.213 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101129, "decimalLat": -29.490063 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608753, "decimalLat": -34.453561 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.308007, "decimalLat": -28.821266 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630873, "decimalLat": -34.420653 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.978822, "decimalLat": -30.64945 }, "geometry": { "type": "Point", "coordinates": [ 152.979, -30.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609263, "decimalLat": -34.420791 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.09001, "decimalLat": -32.733047 }, "geometry": { "type": "Point", "coordinates": [ 152.09, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923954, "decimalLat": -31.44795 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524966, "decimalLat": -34.453092 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600966, "decimalLat": -34.421413 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109304, "decimalLat": -29.490871 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293006, "decimalLat": -28.79859 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.799 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615339, "decimalLat": -34.440879 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530439, "decimalLat": -34.469403 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517009, "decimalLat": -28.573914 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.574 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92518, "decimalLat": -31.454129 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40408, "decimalLat": -31.927828 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324348, "decimalLat": -36.295634 }, "geometry": { "type": "Point", "coordinates": [ 149.324, -36.296 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095228, "decimalLat": -29.483441 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.204507, "decimalLat": -31.308743 }, "geometry": { "type": "Point", "coordinates": [ 151.205, -31.309 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925903, "decimalLat": -31.45274 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604267, "decimalLat": -34.438012 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626024, "decimalLat": -34.39014 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.58005, "decimalLat": -32.64283 }, "geometry": { "type": "Point", "coordinates": [ 151.58, -32.643 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.106292, "decimalLat": -32.72845 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514143, "decimalLat": -34.445939 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604126, "decimalLat": -34.438027 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611927, "decimalLat": -34.432689 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104155, "decimalLat": -29.479005 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095078, "decimalLat": -29.483344 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602583, "decimalLat": -34.437158 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901166, "decimalLat": -31.241904 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63506, "decimalLat": -34.486303 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.101397, "decimalLat": -33.778358 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -33.778 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897308, "decimalLat": -29.632963 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -29.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608493, "decimalLat": -34.434083 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61459, "decimalLat": -34.433922 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606861, "decimalLat": -34.438639 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.659967, "decimalLat": -32.66016 }, "geometry": { "type": "Point", "coordinates": [ 151.66, -32.66 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522435, "decimalLat": -34.464345 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55592, "decimalLat": -28.398698 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91095, "decimalLat": -30.17444 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -30.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513072, "decimalLat": -34.447197 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518713, "decimalLat": -34.447429 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89528, "decimalLat": -31.425771 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62232, "decimalLat": -34.397677 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529896, "decimalLat": -34.471195 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.02211, "decimalLat": -33.81592 }, "geometry": { "type": "Point", "coordinates": [ 150.022, -33.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61548, "decimalLat": -34.435535 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412417, "decimalLat": -31.933122 }, "geometry": { "type": "Point", "coordinates": [ 152.412, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.39835, "decimalLat": -33.489095 }, "geometry": { "type": "Point", "coordinates": [ 149.398, -33.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630065, "decimalLat": -34.421151 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614868, "decimalLat": -34.432584 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525419, "decimalLat": -34.458753 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897389, "decimalLat": -31.475 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.583401, "decimalLat": -28.632556 }, "geometry": { "type": "Point", "coordinates": [ 153.583, -28.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313992, "decimalLat": -28.81222 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.812 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790469, "decimalLat": -34.199908 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.2 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.432398, "decimalLat": -31.806444 }, "geometry": { "type": "Point", "coordinates": [ 152.432, -31.806 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3136, "decimalLat": -28.8543 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.854 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519612, "decimalLat": -34.447204 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6674, "decimalLat": -30.5006 }, "geometry": { "type": "Point", "coordinates": [ 151.667, -30.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605025, "decimalLat": -34.423286 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79047, "decimalLat": -34.199869 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.2 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.788111, "decimalLat": -34.337522 }, "geometry": { "type": "Point", "coordinates": [ 150.788, -34.338 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.170157, "decimalLat": -32.745502 }, "geometry": { "type": "Point", "coordinates": [ 152.17, -32.746 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51576, "decimalLat": -34.447189 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189573, "decimalLat": -32.226267 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599216, "decimalLat": -28.71419 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.714 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.574014, "decimalLat": -33.693449 }, "geometry": { "type": "Point", "coordinates": [ 150.574, -33.693 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631078, "decimalLat": -34.389084 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558648, "decimalLat": -28.394052 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060624, "decimalLat": -32.7387 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.046847, "decimalLat": -30.334939 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -30.335 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835214, "decimalLat": -34.068422 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.363078, "decimalLat": -28.83166 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -28.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.407716, "decimalLat": -30.763757 }, "geometry": { "type": "Point", "coordinates": [ 151.408, -30.764 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.70328, "decimalLat": -33.41357 }, "geometry": { "type": "Point", "coordinates": [ 150.703, -33.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92627, "decimalLat": -31.455827 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608043, "decimalLat": -34.433812 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521654, "decimalLat": -34.465745 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104149, "decimalLat": -29.485188 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63286, "decimalLat": -34.418843 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109417, "decimalLat": -29.49046 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62196, "decimalLat": -34.397715 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901003, "decimalLat": -31.44871 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867846, "decimalLat": -29.667401 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.415236, "decimalLat": -28.982502 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517968, "decimalLat": -34.470755 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521394, "decimalLat": -34.466416 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.636193, "decimalLat": -32.61947 }, "geometry": { "type": "Point", "coordinates": [ 151.636, -32.619 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615513, "decimalLat": -34.437835 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632784, "decimalLat": -34.418859 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.115634, "decimalLat": -29.490329 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785136, "decimalLat": -33.713862 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917449, "decimalLat": -31.474536 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.852001, "decimalLat": -31.555062 }, "geometry": { "type": "Point", "coordinates": [ 152.852, -31.555 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104348, "decimalLat": -29.477128 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63322, "decimalLat": -34.418453 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.704389, "decimalLat": -32.50174 }, "geometry": { "type": "Point", "coordinates": [ 151.704, -32.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.305957, "decimalLat": -29.055106 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -29.055 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636656, "decimalLat": -34.488002 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374927, "decimalLat": -31.91572 }, "geometry": { "type": "Point", "coordinates": [ 152.375, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606981, "decimalLat": -34.454257 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.465425, "decimalLat": -34.488492 }, "geometry": { "type": "Point", "coordinates": [ 150.465, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785822, "decimalLat": -33.705673 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.837381, "decimalLat": -34.073777 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.074 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63358, "decimalLat": -34.418388 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08772, "decimalLat": -32.732566 }, "geometry": { "type": "Point", "coordinates": [ 152.088, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 2, "stateProvi": "South Australia", "decimalLon": 138.6975, "decimalLat": -35.03312 }, "geometry": { "type": "Point", "coordinates": [ 138.698, -35.033 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09179, "decimalLat": -29.488013 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.005087, "decimalLat": -32.72752 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613383, "decimalLat": -34.431618 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.390241, "decimalLat": -28.545817 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.879693, "decimalLat": -32.738418 }, "geometry": { "type": "Point", "coordinates": [ 151.88, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.348726, "decimalLat": -28.808536 }, "geometry": { "type": "Point", "coordinates": [ 153.349, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900793, "decimalLat": -31.45123 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632739, "decimalLat": -34.418904 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78931, "decimalLat": -34.186032 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.186 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610754, "decimalLat": -34.430719 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898841, "decimalLat": -31.438484 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.284303, "decimalLat": -28.930196 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.524771, "decimalLat": -34.74133 }, "geometry": { "type": "Point", "coordinates": [ 146.525, -34.741 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103951, "decimalLat": -29.489526 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06318, "decimalLat": -32.706611 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530116, "decimalLat": -34.458938 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.379572, "decimalLat": -35.988681 }, "geometry": { "type": "Point", "coordinates": [ 149.38, -35.989 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913896, "decimalLat": -31.476679 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928777, "decimalLat": -28.755022 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -28.755 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.746717, "decimalLat": -32.047128 }, "geometry": { "type": "Point", "coordinates": [ 151.747, -32.047 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603885, "decimalLat": -34.427402 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61008, "decimalLat": -34.419995 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.098389, "decimalLat": -32.742468 }, "geometry": { "type": "Point", "coordinates": [ 152.098, -32.742 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434308, "decimalLat": -28.732179 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.732 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.94519, "decimalLat": -29.788125 }, "geometry": { "type": "Point", "coordinates": [ 150.945, -29.788 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607946, "decimalLat": -34.433783 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40521, "decimalLat": -28.871112 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.871 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787407, "decimalLat": -31.636525 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785856, "decimalLat": -33.705975 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302351, "decimalLat": -28.820415 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562372, "decimalLat": -28.382684 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.329903, "decimalLat": -28.930447 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.950145, "decimalLat": -29.263456 }, "geometry": { "type": "Point", "coordinates": [ 152.95, -29.263 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279451, "decimalLat": -28.678443 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.678 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.678884, "decimalLat": -32.511408 }, "geometry": { "type": "Point", "coordinates": [ 151.679, -32.511 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.591027, "decimalLat": -34.455 }, "geometry": { "type": "Point", "coordinates": [ 150.591, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379414, "decimalLat": -31.919628 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.078358, "decimalLat": -33.12962 }, "geometry": { "type": "Point", "coordinates": [ 151.078, -33.13 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601467, "decimalLat": -34.426715 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923393, "decimalLat": -31.456312 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.3804, "decimalLat": -31.922055 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262924, "decimalLat": -28.923353 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -28.923 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27876, "decimalLat": -28.93413 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783186, "decimalLat": -33.718643 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46202, "decimalLat": -28.650527 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517259, "decimalLat": -34.452791 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6351, "decimalLat": -34.486439 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793006, "decimalLat": -31.639632 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6089, "decimalLat": -34.433523 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627048, "decimalLat": -34.389673 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63014, "decimalLat": -34.420783 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63739, "decimalLat": -34.423736 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907965, "decimalLat": -31.43474 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985655, "decimalLat": -34.021477 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.021 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.724812, "decimalLat": -34.187646 }, "geometry": { "type": "Point", "coordinates": [ 150.725, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108038, "decimalLat": -29.491048 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52138, "decimalLat": -34.459176 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5914, "decimalLat": -28.63691 }, "geometry": { "type": "Point", "coordinates": [ 153.591, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.551101, "decimalLat": -33.492389 }, "geometry": { "type": "Point", "coordinates": [ 149.551, -33.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60841, "decimalLat": -34.422487 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530805, "decimalLat": -34.470997 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10438, "decimalLat": -29.47753 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.673575, "decimalLat": -30.433101 }, "geometry": { "type": "Point", "coordinates": [ 151.674, -30.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634816, "decimalLat": -34.486082 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604188, "decimalLat": -34.439272 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645724, "decimalLat": -34.402395 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.402 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.58443, "decimalLat": -31.779181 }, "geometry": { "type": "Point", "coordinates": [ 152.584, -31.779 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.100617, "decimalLat": -32.178221 }, "geometry": { "type": "Point", "coordinates": [ 152.101, -32.178 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517499, "decimalLat": -34.448739 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604386, "decimalLat": -34.438429 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640033, "decimalLat": -34.397831 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790596, "decimalLat": -34.188134 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523771, "decimalLat": -34.463705 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851464, "decimalLat": -29.692524 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535312, "decimalLat": -34.462487 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.837904, "decimalLat": -31.594188 }, "geometry": { "type": "Point", "coordinates": [ 152.838, -31.594 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625427, "decimalLat": -34.386234 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.069922, "decimalLat": -35.096731 }, "geometry": { "type": "Point", "coordinates": [ 150.07, -35.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912288, "decimalLat": -31.442979 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.35486, "decimalLat": -36.18352 }, "geometry": { "type": "Point", "coordinates": [ 149.355, -36.184 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633037, "decimalLat": -34.417602 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.834121, "decimalLat": -31.564639 }, "geometry": { "type": "Point", "coordinates": [ 152.834, -31.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512974, "decimalLat": -34.446087 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60237, "decimalLat": -28.69032 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615694, "decimalLat": -34.437965 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.072417, "decimalLat": -30.879415 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.879 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52228, "decimalLat": -34.464072 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555833, "decimalLat": -28.399149 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.13015, "decimalLat": -32.000786 }, "geometry": { "type": "Point", "coordinates": [ 152.13, -32.001 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109444, "decimalLat": -29.490483 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89196, "decimalLat": -30.46086 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -30.461 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19096, "decimalLat": -32.219628 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -32.22 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.75781, "decimalLat": -32.643164 }, "geometry": { "type": "Point", "coordinates": [ 151.758, -32.643 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.6077, "decimalLat": -30.52432 }, "geometry": { "type": "Point", "coordinates": [ 152.608, -30.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.0686, "decimalLat": -28.549768 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -28.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.83195, "decimalLat": -31.2816 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -31.282 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627306, "decimalLat": -34.390571 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607746, "decimalLat": -34.430128 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9288, "decimalLat": -33.95751 }, "geometry": { "type": "Point", "coordinates": [ 150.929, -33.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515566, "decimalLat": -34.454469 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110211, "decimalLat": -29.48827 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614978, "decimalLat": -34.429458 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51913, "decimalLat": -34.452072 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914901, "decimalLat": -31.467465 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610097, "decimalLat": -34.419374 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.132239, "decimalLat": -31.035875 }, "geometry": { "type": "Point", "coordinates": [ 150.132, -31.036 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.055423, "decimalLat": -33.775745 }, "geometry": { "type": "Point", "coordinates": [ 150.055, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78393, "decimalLat": -33.717644 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659475, "decimalLat": -34.458077 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895049, "decimalLat": -31.460487 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.018923, "decimalLat": -30.367375 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -30.367 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52063, "decimalLat": -34.467978 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.083517, "decimalLat": -33.143153 }, "geometry": { "type": "Point", "coordinates": [ 151.084, -33.143 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27718, "decimalLat": -28.930082 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373741, "decimalLat": -31.91455 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51289, "decimalLat": -34.446707 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.0368, "decimalLat": -28.6031 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -28.603 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630086, "decimalLat": -34.42116 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077093, "decimalLat": -32.725425 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301097, "decimalLat": -28.817001 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.978967, "decimalLat": -30.420348 }, "geometry": { "type": "Point", "coordinates": [ 152.979, -30.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52069, "decimalLat": -34.453789 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.0521, "decimalLat": -32.7691 }, "geometry": { "type": "Point", "coordinates": [ 152.052, -32.769 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520625, "decimalLat": -34.453779 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.970215, "decimalLat": -31.186055 }, "geometry": { "type": "Point", "coordinates": [ 152.97, -31.186 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08772, "decimalLat": -32.732566 }, "geometry": { "type": "Point", "coordinates": [ 152.088, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.937817, "decimalLat": -29.721302 }, "geometry": { "type": "Point", "coordinates": [ 150.938, -29.721 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640186, "decimalLat": -34.415973 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.416 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914901, "decimalLat": -31.467465 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.77565, "decimalLat": -30.19877 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -30.199 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109278, "decimalLat": -29.490838 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324725, "decimalLat": -36.29278 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.293 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6237, "decimalLat": -34.383496 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200496, "decimalLat": -29.353942 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.269144, "decimalLat": -32.48708 }, "geometry": { "type": "Point", "coordinates": [ 152.269, -32.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.097071, "decimalLat": -30.332207 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -30.332 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884774, "decimalLat": -31.440086 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.890427, "decimalLat": -34.017584 }, "geometry": { "type": "Point", "coordinates": [ 150.89, -34.018 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.369011, "decimalLat": -36.024875 }, "geometry": { "type": "Point", "coordinates": [ 149.369, -36.025 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561717, "decimalLat": -28.386297 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.048473, "decimalLat": -30.450237 }, "geometry": { "type": "Point", "coordinates": [ 153.048, -30.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808614, "decimalLat": -34.09831 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367822, "decimalLat": -28.866277 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336688, "decimalLat": -28.868027 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -28.868 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063606, "decimalLat": -32.706008 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520129, "decimalLat": -34.449937 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404303, "decimalLat": -31.925329 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52417, "decimalLat": -34.466418 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.537335, "decimalLat": -34.380735 }, "geometry": { "type": "Point", "coordinates": [ 150.537, -34.381 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.831486, "decimalLat": -29.651473 }, "geometry": { "type": "Point", "coordinates": [ 150.831, -29.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.53859, "decimalLat": -28.51027 }, "geometry": { "type": "Point", "coordinates": [ 153.539, -28.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.054871, "decimalLat": -30.240487 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -30.24 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79028, "decimalLat": -31.63917 }, "geometry": { "type": "Point", "coordinates": [ 152.79, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563451, "decimalLat": -28.390181 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522399, "decimalLat": -34.46484 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79408, "decimalLat": -34.14386 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.144 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554996, "decimalLat": -28.601545 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.602 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8788, "decimalLat": -31.449678 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608229, "decimalLat": -34.434537 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784953, "decimalLat": -33.716408 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639711, "decimalLat": -34.399231 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.20795, "decimalLat": -32.24002 }, "geometry": { "type": "Point", "coordinates": [ 152.208, -32.24 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099777, "decimalLat": -29.491613 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.97662, "decimalLat": -32.72114 }, "geometry": { "type": "Point", "coordinates": [ 150.977, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518207, "decimalLat": -34.453486 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517224, "decimalLat": -33.495739 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -33.496 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91585, "decimalLat": -31.4531 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625454, "decimalLat": -34.389904 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077237, "decimalLat": -32.72247 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608424, "decimalLat": -34.42237 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200462, "decimalLat": -29.354412 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561963, "decimalLat": -28.386971 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.860548, "decimalLat": -34.080942 }, "geometry": { "type": "Point", "coordinates": [ 150.861, -34.081 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51433, "decimalLat": -34.44734 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615034, "decimalLat": -34.431316 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60237, "decimalLat": -28.69032 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639127, "decimalLat": -34.493035 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.749335, "decimalLat": -28.720323 }, "geometry": { "type": "Point", "coordinates": [ 152.749, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.994409, "decimalLat": -28.430361 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -28.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.286501, "decimalLat": -28.834848 }, "geometry": { "type": "Point", "coordinates": [ 153.287, -28.835 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6012, "decimalLat": -34.428855 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.1166, "decimalLat": -29.7667 }, "geometry": { "type": "Point", "coordinates": [ 151.117, -29.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627309, "decimalLat": -34.421269 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.407895, "decimalLat": -28.98187 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.982 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.956, "decimalLat": -30.6653 }, "geometry": { "type": "Point", "coordinates": [ 152.956, -30.665 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19331, "decimalLat": -32.2273 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.227 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103779, "decimalLat": -29.48551 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315933, "decimalLat": -28.83683 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.543438, "decimalLat": -33.699723 }, "geometry": { "type": "Point", "coordinates": [ 149.543, -33.7 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809, "decimalLat": -34.20866 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928724, "decimalLat": -31.457893 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.77244, "decimalLat": -31.631884 }, "geometry": { "type": "Point", "coordinates": [ 152.772, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.543438, "decimalLat": -33.699723 }, "geometry": { "type": "Point", "coordinates": [ 149.543, -33.7 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105705, "decimalLat": -30.303863 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -30.304 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06443, "decimalLat": -32.70682 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.862817, "decimalLat": -31.45929 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.070285, "decimalLat": -30.888223 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516033, "decimalLat": -34.448267 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.464202, "decimalLat": -28.323277 }, "geometry": { "type": "Point", "coordinates": [ 153.464, -28.323 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.880784, "decimalLat": -36.581514 }, "geometry": { "type": "Point", "coordinates": [ 149.881, -36.582 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92566, "decimalLat": -31.466612 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868447, "decimalLat": -29.667471 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521823, "decimalLat": -34.46518 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10813, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3033, "decimalLat": -28.821668 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336451, "decimalLat": -28.817829 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.445905, "decimalLat": -28.693131 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82369, "decimalLat": -34.141271 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.116299, "decimalLat": -29.465157 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -29.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.920031, "decimalLat": -36.586615 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.45232, "decimalLat": -28.709687 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609145, "decimalLat": -34.420734 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.793611, "decimalLat": -34.251556 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.252 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602778, "decimalLat": -34.434917 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.180055, "decimalLat": -28.84707 }, "geometry": { "type": "Point", "coordinates": [ 153.18, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921237, "decimalLat": -31.480956 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.900125, "decimalLat": -33.999016 }, "geometry": { "type": "Point", "coordinates": [ 150.9, -33.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824636, "decimalLat": -29.505494 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606869, "decimalLat": -34.437594 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793635, "decimalLat": -31.126932 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103082, "decimalLat": -29.48728 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.291961, "decimalLat": -28.992784 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.993 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103275, "decimalLat": -29.487588 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610226, "decimalLat": -34.419052 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851464, "decimalLat": -29.692524 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636324, "decimalLat": -34.421795 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625715, "decimalLat": -34.386429 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.665854, "decimalLat": -30.508393 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.508 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.990338, "decimalLat": -28.967517 }, "geometry": { "type": "Point", "coordinates": [ 152.99, -28.968 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597443, "decimalLat": -34.412977 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522338, "decimalLat": -34.466895 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.874162, "decimalLat": -31.485045 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631465, "decimalLat": -34.3881 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32037, "decimalLat": -28.843373 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.843 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518216, "decimalLat": -34.453541 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90555, "decimalLat": -30.23703 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -30.237 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785204, "decimalLat": -33.709455 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61661, "decimalLat": -34.434448 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517446, "decimalLat": -34.453462 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90178, "decimalLat": -31.442354 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070088, "decimalLat": -32.71298 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31584, "decimalLat": -28.82292 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103774, "decimalLat": -29.485608 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92565, "decimalLat": -31.445376 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90497, "decimalLat": -30.2384 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -30.238 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.755685, "decimalLat": -32.769937 }, "geometry": { "type": "Point", "coordinates": [ 151.756, -32.77 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517979, "decimalLat": -34.447946 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.862834, "decimalLat": -31.53509 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -31.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90604, "decimalLat": -31.450185 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.7273, "decimalLat": -29.934892 }, "geometry": { "type": "Point", "coordinates": [ 152.727, -29.935 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615372, "decimalLat": -34.434361 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809, "decimalLat": -34.20866 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920256, "decimalLat": -31.439889 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521404, "decimalLat": -34.465713 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.472975, "decimalLat": -28.264652 }, "geometry": { "type": "Point", "coordinates": [ 153.473, -28.265 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8527, "decimalLat": -31.452139 }, "geometry": { "type": "Point", "coordinates": [ 152.853, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785332, "decimalLat": -34.194318 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -34.194 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.996969, "decimalLat": -33.993433 }, "geometry": { "type": "Point", "coordinates": [ 150.997, -33.993 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879262, "decimalLat": -29.662176 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.718126, "decimalLat": -29.75876 }, "geometry": { "type": "Point", "coordinates": [ 151.718, -29.759 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.536525, "decimalLat": -34.497491 }, "geometry": { "type": "Point", "coordinates": [ 150.537, -34.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79787, "decimalLat": -34.14263 }, "geometry": { "type": "Point", "coordinates": [ 150.798, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606675, "decimalLat": -34.45773 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596693, "decimalLat": -34.409924 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108092, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632626, "decimalLat": -34.418288 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517598, "decimalLat": -34.451986 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785978, "decimalLat": -33.709609 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62318, "decimalLat": -34.397622 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.591837, "decimalLat": -28.635618 }, "geometry": { "type": "Point", "coordinates": [ 153.592, -28.636 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103623, "decimalLat": -29.485949 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104149, "decimalLat": -29.480883 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61588, "decimalLat": -34.434479 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.18685, "decimalLat": -31.6704 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -31.67 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9814, "decimalLat": -30.4375 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -30.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.952618, "decimalLat": -36.579451 }, "geometry": { "type": "Point", "coordinates": [ 149.953, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077015, "decimalLat": -32.722569 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615459, "decimalLat": -34.435535 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.829547, "decimalLat": -29.642903 }, "geometry": { "type": "Point", "coordinates": [ 152.83, -29.643 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628068, "decimalLat": -34.389765 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03675, "decimalLat": -32.73736 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.628617, "decimalLat": -31.431123 }, "geometry": { "type": "Point", "coordinates": [ 152.629, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.726179, "decimalLat": -32.671233 }, "geometry": { "type": "Point", "coordinates": [ 151.726, -32.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9865, "decimalLat": -34.090201 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.09 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.073782, "decimalLat": -30.354913 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.355 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.432368, "decimalLat": -31.806282 }, "geometry": { "type": "Point", "coordinates": [ 152.432, -31.806 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092095, "decimalLat": -29.4882 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.284492, "decimalLat": -28.821488 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323433, "decimalLat": -28.855525 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.856 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86829, "decimalLat": -31.47469 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.978618, "decimalLat": -34.085723 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877853, "decimalLat": -31.458368 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.104205, "decimalLat": -33.132832 }, "geometry": { "type": "Point", "coordinates": [ 151.104, -33.133 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.284266, "decimalLat": -28.666818 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516481, "decimalLat": -34.450016 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632093, "decimalLat": -34.418296 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51953, "decimalLat": -34.456596 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517213, "decimalLat": -28.574061 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.574 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51961, "decimalLat": -34.46125 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534708, "decimalLat": -34.409744 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628111, "decimalLat": -34.389793 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109755, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61613, "decimalLat": -34.43104 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516831, "decimalLat": -34.448852 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039439, "decimalLat": -32.732712 }, "geometry": { "type": "Point", "coordinates": [ 152.039, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.369052, "decimalLat": -28.953149 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645024, "decimalLat": -34.398252 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063267, "decimalLat": -32.70776 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64032, "decimalLat": -34.396899 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402704, "decimalLat": -28.964199 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.964 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616701, "decimalLat": -34.399065 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.789723, "decimalLat": -31.638231 }, "geometry": { "type": "Point", "coordinates": [ 152.79, -31.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.059278, "decimalLat": -32.739099 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62878, "decimalLat": -34.389572 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891735, "decimalLat": -31.456829 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793633, "decimalLat": -30.2184 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -30.218 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077253, "decimalLat": -32.722463 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607809, "decimalLat": -34.430211 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517515, "decimalLat": -34.453689 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624388, "decimalLat": -34.399917 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790799, "decimalLat": -34.185935 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.186 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88866, "decimalLat": -30.4527 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -30.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523913, "decimalLat": -34.452628 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.972825, "decimalLat": -32.184185 }, "geometry": { "type": "Point", "coordinates": [ 151.973, -32.184 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627842, "decimalLat": -34.420864 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.097637, "decimalLat": -29.492379 }, "geometry": { "type": "Point", "coordinates": [ 153.098, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099772, "decimalLat": -29.491613 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893946, "decimalLat": -31.432432 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615859, "decimalLat": -34.436381 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905268, "decimalLat": -31.443561 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103967, "decimalLat": -29.485258 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924902, "decimalLat": -31.459395 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.591395, "decimalLat": -28.735249 }, "geometry": { "type": "Point", "coordinates": [ 153.591, -28.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520689, "decimalLat": -34.465599 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.835793, "decimalLat": -31.452685 }, "geometry": { "type": "Point", "coordinates": [ 152.836, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792747, "decimalLat": -34.140359 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301913, "decimalLat": -28.822705 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327443, "decimalLat": -28.817277 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645921, "decimalLat": -33.734898 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -33.735 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.0, "decimalLat": -34.0 }, "geometry": { "type": "Point", "coordinates": [ 151.0, -34.0 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.698567, "decimalLat": -31.642022 }, "geometry": { "type": "Point", "coordinates": [ 152.699, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639157, "decimalLat": -34.493126 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602795, "decimalLat": -34.435837 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077829, "decimalLat": -32.722008 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293478, "decimalLat": -28.864618 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066656, "decimalLat": -32.707195 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918428, "decimalLat": -31.445964 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632782, "decimalLat": -34.418535 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.069305, "decimalLat": -33.145008 }, "geometry": { "type": "Point", "coordinates": [ 151.069, -33.145 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.65413, "decimalLat": -30.554671 }, "geometry": { "type": "Point", "coordinates": [ 152.654, -30.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615161, "decimalLat": -34.431472 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529895, "decimalLat": -34.471213 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9433, "decimalLat": -30.38978 }, "geometry": { "type": "Point", "coordinates": [ 152.943, -30.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51834, "decimalLat": -34.446412 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898617, "decimalLat": -29.631816 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.94379, "decimalLat": -30.39093 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -30.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103269, "decimalLat": -29.489162 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522427, "decimalLat": -34.464264 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785356, "decimalLat": -31.632454 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905243, "decimalLat": -31.457063 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811234, "decimalLat": -29.808086 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -29.808 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51794, "decimalLat": -34.451858 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604874, "decimalLat": -34.419037 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.298145, "decimalLat": -31.945277 }, "geometry": { "type": "Point", "coordinates": [ 152.298, -31.945 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596068, "decimalLat": -34.411625 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.003034, "decimalLat": -29.184528 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -29.185 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.97938, "decimalLat": -34.02535 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516741, "decimalLat": -34.446758 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626725, "decimalLat": -34.385349 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61606, "decimalLat": -34.437719 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.321901, "decimalLat": -36.29802 }, "geometry": { "type": "Point", "coordinates": [ 149.322, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629378, "decimalLat": -34.390359 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990071, "decimalLat": -34.025907 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.026 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595958, "decimalLat": -34.454193 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108178, "decimalLat": -29.490278 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514225, "decimalLat": -34.447555 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.031308, "decimalLat": -32.646794 }, "geometry": { "type": "Point", "coordinates": [ 152.031, -32.647 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071657, "decimalLat": -30.887293 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514711, "decimalLat": -34.445861 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606959, "decimalLat": -34.433665 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60155, "decimalLat": -28.68121 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617234, "decimalLat": -34.434307 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609211, "decimalLat": -34.419167 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.880784, "decimalLat": -36.581514 }, "geometry": { "type": "Point", "coordinates": [ 149.881, -36.582 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627355, "decimalLat": -34.420404 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639089, "decimalLat": -34.491313 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521622, "decimalLat": -34.465347 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520305, "decimalLat": -34.447299 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.372792, "decimalLat": -28.249959 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -28.25 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520401, "decimalLat": -34.435978 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.06102, "decimalLat": -30.36024 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -30.36 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518099, "decimalLat": -34.453466 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610337, "decimalLat": -34.418982 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605413, "decimalLat": -34.423808 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626698, "decimalLat": -34.42132 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.84221, "decimalLat": -34.062606 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.063 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.055997, "decimalLat": -30.333952 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -30.334 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615689, "decimalLat": -34.437397 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.229691, "decimalLat": -28.889174 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.159047, "decimalLat": -28.924752 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.793304, "decimalLat": -32.706988 }, "geometry": { "type": "Point", "coordinates": [ 151.793, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367822, "decimalLat": -28.866277 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63307, "decimalLat": -34.417576 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604964, "decimalLat": -34.42773 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19328, "decimalLat": -32.235407 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.235 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82369, "decimalLat": -34.141271 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792895, "decimalLat": -31.642221 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662658, "decimalLat": -34.454009 }, "geometry": { "type": "Point", "coordinates": [ 150.663, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299604, "decimalLat": -28.888568 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790596, "decimalLat": -34.188134 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.849941, "decimalLat": -34.080193 }, "geometry": { "type": "Point", "coordinates": [ 150.85, -34.08 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531284, "decimalLat": -34.457691 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922814, "decimalLat": -31.435448 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875973, "decimalLat": -31.425029 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302555, "decimalLat": -28.819938 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612975, "decimalLat": -34.432178 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51988, "decimalLat": -34.453583 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602982, "decimalLat": -34.427402 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764317, "decimalLat": -31.598374 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -31.598 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848835, "decimalLat": -34.080527 }, "geometry": { "type": "Point", "coordinates": [ 150.849, -34.081 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099246, "decimalLat": -29.490675 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.19115, "decimalLat": -28.824162 }, "geometry": { "type": "Point", "coordinates": [ 153.191, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641943, "decimalLat": -34.396822 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.770239, "decimalLat": -31.896106 }, "geometry": { "type": "Point", "coordinates": [ 151.77, -31.896 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784282, "decimalLat": -33.717285 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5256, "decimalLat": -34.465527 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959252, "decimalLat": -36.447255 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07297, "decimalLat": -28.81768 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562668, "decimalLat": -28.386826 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.328896, "decimalLat": -35.988571 }, "geometry": { "type": "Point", "coordinates": [ 149.329, -35.989 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.724004, "decimalLat": -31.52176 }, "geometry": { "type": "Point", "coordinates": [ 152.724, -31.522 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630294, "decimalLat": -34.394532 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.318115, "decimalLat": -31.920613 }, "geometry": { "type": "Point", "coordinates": [ 152.318, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790385, "decimalLat": -34.146302 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79088, "decimalLat": -34.19933 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.199 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.337832, "decimalLat": -32.302205 }, "geometry": { "type": "Point", "coordinates": [ 152.338, -32.302 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.319781, "decimalLat": -36.298767 }, "geometry": { "type": "Point", "coordinates": [ 149.32, -36.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383632, "decimalLat": -31.923715 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090797, "decimalLat": -29.487238 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.761113, "decimalLat": -32.403422 }, "geometry": { "type": "Point", "coordinates": [ 149.761, -32.403 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.111973, "decimalLat": -32.738085 }, "geometry": { "type": "Point", "coordinates": [ 152.112, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.666695, "decimalLat": -31.514409 }, "geometry": { "type": "Point", "coordinates": [ 150.667, -31.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603756, "decimalLat": -34.436875 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.168799, "decimalLat": -32.7498 }, "geometry": { "type": "Point", "coordinates": [ 152.169, -32.75 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278736, "decimalLat": -28.93243 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.932 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9262, "decimalLat": -30.50636 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891714, "decimalLat": -31.442328 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55779, "decimalLat": -28.395703 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635406, "decimalLat": -34.420398 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520945, "decimalLat": -34.454002 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306593, "decimalLat": -28.816073 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631093, "decimalLat": -34.387408 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.57289, "decimalLat": -29.5427 }, "geometry": { "type": "Point", "coordinates": [ 150.573, -29.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628768, "decimalLat": -34.389238 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555591, "decimalLat": -28.414391 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094617, "decimalLat": -29.488475 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927064, "decimalLat": -31.465801 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96634, "decimalLat": -36.680336 }, "geometry": { "type": "Point", "coordinates": [ 149.966, -36.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526076, "decimalLat": -34.457901 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311244, "decimalLat": -28.818643 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104063, "decimalLat": -29.479454 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.005331, "decimalLat": -32.727628 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.557978, "decimalLat": -33.494935 }, "geometry": { "type": "Point", "coordinates": [ 149.558, -33.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619338, "decimalLat": -34.43955 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.956378, "decimalLat": -32.232696 }, "geometry": { "type": "Point", "coordinates": [ 150.956, -32.233 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.764118, "decimalLat": -32.557297 }, "geometry": { "type": "Point", "coordinates": [ 151.764, -32.557 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.299058, "decimalLat": -31.94673 }, "geometry": { "type": "Point", "coordinates": [ 152.299, -31.947 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524249, "decimalLat": -34.466302 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.190362, "decimalLat": -32.237057 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.237 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636993, "decimalLat": -34.395699 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.982931, "decimalLat": -34.092286 }, "geometry": { "type": "Point", "coordinates": [ 150.983, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613087, "decimalLat": -34.43017 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.755272, "decimalLat": -31.380292 }, "geometry": { "type": "Point", "coordinates": [ 152.755, -31.38 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62901, "decimalLat": -34.390306 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523973, "decimalLat": -34.462023 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622951, "decimalLat": -34.397275 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518436, "decimalLat": -34.442078 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521382, "decimalLat": -34.465721 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.964623, "decimalLat": -34.018885 }, "geometry": { "type": "Point", "coordinates": [ 150.965, -34.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640439, "decimalLat": -34.494025 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784778, "decimalLat": -33.708055 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.834685, "decimalLat": -34.069476 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525158, "decimalLat": -34.452861 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.263242, "decimalLat": -28.592167 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -28.592 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786219, "decimalLat": -33.70624 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524353, "decimalLat": -34.453584 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513001, "decimalLat": -34.445916 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82374, "decimalLat": -29.811037 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556318, "decimalLat": -28.672704 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.673 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.429857, "decimalLat": -29.020219 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -29.02 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784214, "decimalLat": -33.717289 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520466, "decimalLat": -34.465793 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558084, "decimalLat": -28.387756 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52545, "decimalLat": -34.459926 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.650774, "decimalLat": -34.396821 }, "geometry": { "type": "Point", "coordinates": [ 150.651, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394231, "decimalLat": -29.019887 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -29.02 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.979415, "decimalLat": -31.154008 }, "geometry": { "type": "Point", "coordinates": [ 152.979, -31.154 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06153, "decimalLat": -32.710795 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627319, "decimalLat": -34.390102 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103586, "decimalLat": -29.488466 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59764, "decimalLat": -34.427018 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.854037, "decimalLat": -31.553362 }, "geometry": { "type": "Point", "coordinates": [ 152.854, -31.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630932, "decimalLat": -34.388856 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519407, "decimalLat": -34.488077 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55964, "decimalLat": -28.30651 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.307 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.567207, "decimalLat": -28.39301 }, "geometry": { "type": "Point", "coordinates": [ 153.567, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639893, "decimalLat": -34.400091 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109331, "decimalLat": -29.490609 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.02698, "decimalLat": -34.03451 }, "geometry": { "type": "Point", "coordinates": [ 151.027, -34.035 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630848, "decimalLat": -34.386447 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.874981, "decimalLat": -31.42526 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.425 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063595, "decimalLat": -32.706114 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.042946, "decimalLat": -28.469302 }, "geometry": { "type": "Point", "coordinates": [ 153.043, -28.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63916, "decimalLat": -34.491467 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315736, "decimalLat": -28.849837 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517534, "decimalLat": -34.447532 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532745, "decimalLat": -34.45873 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.559854, "decimalLat": -31.156814 }, "geometry": { "type": "Point", "coordinates": [ 152.56, -31.157 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063523, "decimalLat": -32.705809 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104074, "decimalLat": -29.480794 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534734, "decimalLat": -34.462133 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303098, "decimalLat": -28.848406 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616848, "decimalLat": -34.42954 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.780718, "decimalLat": -33.382404 }, "geometry": { "type": "Point", "coordinates": [ 150.781, -33.382 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785484, "decimalLat": -33.713905 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642121, "decimalLat": -34.396294 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316984, "decimalLat": -28.937089 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.937 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635448, "decimalLat": -34.488348 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606722, "decimalLat": -34.429784 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316984, "decimalLat": -28.937089 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.410497, "decimalLat": -28.984278 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.984 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51912, "decimalLat": -34.45977 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627546, "decimalLat": -34.420967 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884927, "decimalLat": -34.01848 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.018 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629806, "decimalLat": -34.394478 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901508, "decimalLat": -31.442053 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.471384, "decimalLat": -31.943285 }, "geometry": { "type": "Point", "coordinates": [ 152.471, -31.943 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517977, "decimalLat": -34.442141 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.186783, "decimalLat": -28.888915 }, "geometry": { "type": "Point", "coordinates": [ 153.187, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640056, "decimalLat": -34.396984 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518741, "decimalLat": -34.437279 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104286, "decimalLat": -29.480056 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924749, "decimalLat": -31.465101 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879562, "decimalLat": -29.707235 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -29.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302425, "decimalLat": -28.822664 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.994981, "decimalLat": -30.89503 }, "geometry": { "type": "Point", "coordinates": [ 152.995, -30.895 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637485, "decimalLat": -34.423837 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.541567, "decimalLat": -32.329916 }, "geometry": { "type": "Point", "coordinates": [ 152.542, -32.33 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.448399, "decimalLat": -34.337539 }, "geometry": { "type": "Point", "coordinates": [ 150.448, -34.338 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.333385, "decimalLat": -31.576445 }, "geometry": { "type": "Point", "coordinates": [ 149.333, -31.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8933, "decimalLat": -31.443058 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926061, "decimalLat": -31.449071 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517457, "decimalLat": -34.453074 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396801, "decimalLat": -29.015679 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520265, "decimalLat": -34.44683 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.341446, "decimalLat": -36.313388 }, "geometry": { "type": "Point", "coordinates": [ 149.341, -36.313 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603608, "decimalLat": -34.419193 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881757, "decimalLat": -31.423978 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304436, "decimalLat": -28.826036 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321546, "decimalLat": -28.834841 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.835 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6292, "decimalLat": -34.395124 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296921, "decimalLat": -28.847242 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521367, "decimalLat": -34.45923 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108221, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534045, "decimalLat": -34.480023 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37104, "decimalLat": -31.923129 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.11597, "decimalLat": -31.10181 }, "geometry": { "type": "Point", "coordinates": [ 150.116, -31.102 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520656, "decimalLat": -34.453843 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.969466, "decimalLat": -30.47619 }, "geometry": { "type": "Point", "coordinates": [ 152.969, -30.476 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103822, "decimalLat": -29.485489 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92219, "decimalLat": -31.439288 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28003, "decimalLat": -28.818531 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103741, "decimalLat": -29.485655 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616088, "decimalLat": -34.436377 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.481504, "decimalLat": -32.837813 }, "geometry": { "type": "Point", "coordinates": [ 151.482, -32.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320895, "decimalLat": -28.823763 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.228038, "decimalLat": -29.935354 }, "geometry": { "type": "Point", "coordinates": [ 152.228, -29.935 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.815261, "decimalLat": -32.582565 }, "geometry": { "type": "Point", "coordinates": [ 151.815, -32.583 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513835, "decimalLat": -34.445671 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916183, "decimalLat": -31.485835 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629438, "decimalLat": -34.388611 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930242, "decimalLat": -31.470262 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78569, "decimalLat": -33.714183 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101596, "decimalLat": -29.489503 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615422, "decimalLat": -34.440655 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609592, "decimalLat": -34.436376 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622517, "decimalLat": -34.384564 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.929799, "decimalLat": -31.093492 }, "geometry": { "type": "Point", "coordinates": [ 150.93, -31.093 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.749191, "decimalLat": -30.210155 }, "geometry": { "type": "Point", "coordinates": [ 152.749, -30.21 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.479463, "decimalLat": -28.661989 }, "geometry": { "type": "Point", "coordinates": [ 153.479, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.017104, "decimalLat": -32.298753 }, "geometry": { "type": "Point", "coordinates": [ 152.017, -32.299 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.413761, "decimalLat": -28.26577 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.266 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103913, "decimalLat": -29.489605 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905042, "decimalLat": -31.435643 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623097, "decimalLat": -34.383655 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607421, "decimalLat": -34.433124 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630862, "decimalLat": -34.420643 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.7905, "decimalLat": -32.65447 }, "geometry": { "type": "Point", "coordinates": [ 151.791, -32.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520289, "decimalLat": -34.466619 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915024, "decimalLat": -31.444996 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401999, "decimalLat": -28.257722 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.015337, "decimalLat": -36.564757 }, "geometry": { "type": "Point", "coordinates": [ 150.015, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60155, "decimalLat": -28.68121 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603501, "decimalLat": -34.435517 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515064, "decimalLat": -34.447545 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.022552, "decimalLat": -28.489326 }, "geometry": { "type": "Point", "coordinates": [ 153.023, -28.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51383, "decimalLat": -34.447321 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603252, "decimalLat": -34.440435 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.857833, "decimalLat": -32.531311 }, "geometry": { "type": "Point", "coordinates": [ 151.858, -32.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604277, "decimalLat": -34.4514 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597043, "decimalLat": -34.417098 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.38036, "decimalLat": -28.30386 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -28.304 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922916, "decimalLat": -31.439779 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.883632, "decimalLat": -34.015286 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.015 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606817, "decimalLat": -34.434473 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302121, "decimalLat": -28.820343 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921887, "decimalLat": -31.460622 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.09752, "decimalLat": -31.077054 }, "geometry": { "type": "Point", "coordinates": [ 150.098, -31.077 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317651, "decimalLat": -28.862857 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.368535, "decimalLat": -36.165437 }, "geometry": { "type": "Point", "coordinates": [ 149.369, -36.165 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62508, "decimalLat": -34.385822 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.220048, "decimalLat": -31.425909 }, "geometry": { "type": "Point", "coordinates": [ 152.22, -31.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785517, "decimalLat": -33.711249 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.008863, "decimalLat": -34.04522 }, "geometry": { "type": "Point", "coordinates": [ 151.009, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631147, "decimalLat": -34.387391 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630872, "decimalLat": -34.42068 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.080111, "decimalLat": -32.728237 }, "geometry": { "type": "Point", "coordinates": [ 152.08, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.886215, "decimalLat": -34.017297 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.017 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.424173, "decimalLat": -31.952018 }, "geometry": { "type": "Point", "coordinates": [ 152.424, -31.952 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.807472, "decimalLat": -31.125374 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -31.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.113584, "decimalLat": -29.36183 }, "geometry": { "type": "Point", "coordinates": [ 150.114, -29.362 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918821, "decimalLat": -31.442348 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.344408, "decimalLat": -29.375474 }, "geometry": { "type": "Point", "coordinates": [ 151.344, -29.375 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520618, "decimalLat": -34.454743 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517369, "decimalLat": -34.440244 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273941, "decimalLat": -28.820088 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872881, "decimalLat": -31.402427 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.402 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557, "decimalLat": -28.400484 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78583, "decimalLat": -33.714273 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600971, "decimalLat": -34.427715 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.456297, "decimalLat": -31.272867 }, "geometry": { "type": "Point", "coordinates": [ 150.456, -31.273 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522536, "decimalLat": -34.451735 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615278, "decimalLat": -34.436523 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101263, "decimalLat": -29.489923 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637344, "decimalLat": -34.423825 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530575, "decimalLat": -34.469955 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633743, "decimalLat": -34.418409 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.91555, "decimalLat": -29.43722 }, "geometry": { "type": "Point", "coordinates": [ 150.916, -29.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101478, "decimalLat": -29.489694 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104015, "decimalLat": -29.484292 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.521034, "decimalLat": -30.631245 }, "geometry": { "type": "Point", "coordinates": [ 151.521, -30.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.837072, "decimalLat": -31.492498 }, "geometry": { "type": "Point", "coordinates": [ 152.837, -31.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.963266, "decimalLat": -28.350224 }, "geometry": { "type": "Point", "coordinates": [ 152.963, -28.35 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108108, "decimalLat": -29.490441 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602353, "decimalLat": -34.425812 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531097, "decimalLat": -34.471066 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785637, "decimalLat": -33.713821 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.501758, "decimalLat": -28.236784 }, "geometry": { "type": "Point", "coordinates": [ 153.502, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.425736, "decimalLat": -28.949727 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872676, "decimalLat": -31.431129 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630855, "decimalLat": -34.388882 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51991, "decimalLat": -34.452565 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616795, "decimalLat": -34.429485 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300422, "decimalLat": -31.948252 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.448053, "decimalLat": -28.944235 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.944 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104187, "decimalLat": -29.478987 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517391, "decimalLat": -34.451991 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513805, "decimalLat": -34.446311 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869286, "decimalLat": -30.246236 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -30.246 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609211, "decimalLat": -34.419167 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610027, "decimalLat": -34.429488 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515796, "decimalLat": -34.446685 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.610808, "decimalLat": -31.42495 }, "geometry": { "type": "Point", "coordinates": [ 152.611, -31.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522068, "decimalLat": -34.466087 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616992, "decimalLat": -34.435177 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900474, "decimalLat": -31.473876 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640305, "decimalLat": -34.494113 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560416, "decimalLat": -28.286772 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.287 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413847, "decimalLat": -31.935808 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.887239, "decimalLat": -33.251654 }, "geometry": { "type": "Point", "coordinates": [ 150.887, -33.252 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515827, "decimalLat": -34.447109 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609446, "decimalLat": -34.418946 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610325, "decimalLat": -34.43355 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790463, "decimalLat": -34.190649 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.191 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.978729, "decimalLat": -34.129807 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -34.13 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82075, "decimalLat": -34.10852 }, "geometry": { "type": "Point", "coordinates": [ 150.821, -34.109 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892385, "decimalLat": -31.477808 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910248, "decimalLat": -31.434539 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627223, "decimalLat": -34.385818 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52766, "decimalLat": -34.466534 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.626968, "decimalLat": -30.221438 }, "geometry": { "type": "Point", "coordinates": [ 151.627, -30.221 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519653, "decimalLat": -34.456482 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605575, "decimalLat": -34.43224 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624361, "decimalLat": -34.400503 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891245, "decimalLat": -31.439244 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60237, "decimalLat": -28.69032 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905732, "decimalLat": -31.437715 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602127, "decimalLat": -34.436013 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109422, "decimalLat": -29.490525 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.110282, "decimalLat": -29.762752 }, "geometry": { "type": "Point", "coordinates": [ 151.11, -29.763 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.060153, "decimalLat": -33.774415 }, "geometry": { "type": "Point", "coordinates": [ 150.06, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.99898, "decimalLat": -34.083125 }, "geometry": { "type": "Point", "coordinates": [ 150.999, -34.083 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065787, "decimalLat": -32.711089 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644313, "decimalLat": -34.396462 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517004, "decimalLat": -34.447818 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.743408, "decimalLat": -31.256856 }, "geometry": { "type": "Point", "coordinates": [ 152.743, -31.257 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526822, "decimalLat": -34.469483 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784248, "decimalLat": -33.717296 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.42593, "decimalLat": -29.018522 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -29.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517457, "decimalLat": -34.443176 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616794, "decimalLat": -34.351266 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.351 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605211, "decimalLat": -34.426292 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81478, "decimalLat": -30.256304 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -30.256 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637539, "decimalLat": -34.421539 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915587, "decimalLat": -31.478594 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519009, "decimalLat": -34.444415 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320406, "decimalLat": -28.819981 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520175, "decimalLat": -34.446927 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627196, "decimalLat": -34.420266 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.773135, "decimalLat": -30.194587 }, "geometry": { "type": "Point", "coordinates": [ 152.773, -30.195 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.057818, "decimalLat": -33.778642 }, "geometry": { "type": "Point", "coordinates": [ 150.058, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624331, "decimalLat": -34.38615 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.003753, "decimalLat": -29.184276 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -29.184 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606548, "decimalLat": -34.435126 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790596, "decimalLat": -34.188134 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.018937, "decimalLat": -30.367369 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -30.367 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104208, "decimalLat": -29.47982 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.101352, "decimalLat": -33.779357 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521289, "decimalLat": -34.465927 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899894, "decimalLat": -29.631666 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.121061, "decimalLat": -30.298272 }, "geometry": { "type": "Point", "coordinates": [ 153.121, -30.298 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9863, "decimalLat": -29.030705 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525066, "decimalLat": -34.457818 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108746, "decimalLat": -29.49003 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916677, "decimalLat": -30.275314 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -30.275 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108119, "decimalLat": -29.490231 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.428728, "decimalLat": -36.255228 }, "geometry": { "type": "Point", "coordinates": [ 149.429, -36.255 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515598, "decimalLat": -34.454497 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632019, "decimalLat": -34.418205 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627362, "decimalLat": -34.421315 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642533, "decimalLat": -34.395553 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10424, "decimalLat": -29.480135 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616425, "decimalLat": -34.435996 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.057923, "decimalLat": -31.743645 }, "geometry": { "type": "Point", "coordinates": [ 152.058, -31.744 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838797, "decimalLat": -34.05565 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.15365, "decimalLat": -32.73161 }, "geometry": { "type": "Point", "coordinates": [ 152.154, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103784, "decimalLat": -29.485636 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10747, "decimalLat": -29.4901 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646489, "decimalLat": -34.397207 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516605, "decimalLat": -34.469357 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.435797, "decimalLat": -31.801777 }, "geometry": { "type": "Point", "coordinates": [ 152.436, -31.802 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.210153, "decimalLat": -31.56082 }, "geometry": { "type": "Point", "coordinates": [ 152.21, -31.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642132, "decimalLat": -34.396276 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921258, "decimalLat": -31.453544 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823679, "decimalLat": -29.810468 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.81 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911125, "decimalLat": -31.148049 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.148 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89647, "decimalLat": -31.461028 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51453, "decimalLat": -34.443901 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784427, "decimalLat": -31.63003 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.056482, "decimalLat": -33.777303 }, "geometry": { "type": "Point", "coordinates": [ 150.056, -33.777 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.361561, "decimalLat": -28.870998 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -28.871 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102194, "decimalLat": -29.488209 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604435, "decimalLat": -34.428314 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639176, "decimalLat": -34.491675 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.050376, "decimalLat": -30.445749 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -30.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630678, "decimalLat": -34.420604 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925723, "decimalLat": -31.447944 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.340398, "decimalLat": -28.806874 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -28.807 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.48144, "decimalLat": -28.62669 }, "geometry": { "type": "Point", "coordinates": [ 153.481, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921734, "decimalLat": -31.470525 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.018977, "decimalLat": -30.364627 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -30.365 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071543, "decimalLat": -30.885823 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797106, "decimalLat": -30.217223 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -30.217 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.992085, "decimalLat": -34.047642 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -34.048 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394041, "decimalLat": -28.720572 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.721 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523716, "decimalLat": -28.588488 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -28.588 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879994, "decimalLat": -31.448871 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522883, "decimalLat": -34.45249 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604649, "decimalLat": -34.424649 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813707, "decimalLat": -34.143607 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.144 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926349, "decimalLat": -31.451861 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596578, "decimalLat": -34.411301 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.411 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.173684, "decimalLat": -31.571542 }, "geometry": { "type": "Point", "coordinates": [ 152.174, -31.572 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.475275, "decimalLat": -36.341292 }, "geometry": { "type": "Point", "coordinates": [ 149.475, -36.341 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.711236, "decimalLat": -31.426223 }, "geometry": { "type": "Point", "coordinates": [ 152.711, -31.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819297, "decimalLat": -31.465885 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101773, "decimalLat": -29.48982 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.185284, "decimalLat": -32.700472 }, "geometry": { "type": "Point", "coordinates": [ 152.185, -32.7 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989532, "decimalLat": -34.09331 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.093 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.820431, "decimalLat": -31.160261 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.16 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926404, "decimalLat": -31.454481 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561418, "decimalLat": -28.390195 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630315, "decimalLat": -34.395308 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.394269, "decimalLat": -31.965174 }, "geometry": { "type": "Point", "coordinates": [ 152.394, -31.965 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108237, "decimalLat": -29.490395 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60396, "decimalLat": -34.42707 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304202, "decimalLat": -28.649902 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635988, "decimalLat": -34.392767 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061357, "decimalLat": -32.709627 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6, "decimalLat": -30.9833 }, "geometry": { "type": "Point", "coordinates": [ 151.6, -30.983 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884757, "decimalLat": -30.665874 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -30.666 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.441467, "decimalLat": -31.809272 }, "geometry": { "type": "Point", "coordinates": [ 152.441, -31.809 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299472, "decimalLat": -28.821494 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782691, "decimalLat": -33.718874 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526599, "decimalLat": -34.469316 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104224, "decimalLat": -29.479561 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515844, "decimalLat": -34.448768 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.831, "decimalLat": -31.28018 }, "geometry": { "type": "Point", "coordinates": [ 152.831, -31.28 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949397, "decimalLat": -36.554597 }, "geometry": { "type": "Point", "coordinates": [ 149.949, -36.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557532, "decimalLat": -28.388545 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616246, "decimalLat": -34.434234 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608549, "decimalLat": -34.434012 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868125, "decimalLat": -29.66694 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.980951, "decimalLat": -34.016936 }, "geometry": { "type": "Point", "coordinates": [ 150.981, -34.017 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367822, "decimalLat": -28.866277 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302823, "decimalLat": -28.844361 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627675, "decimalLat": -34.421005 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893924, "decimalLat": -31.432296 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514064, "decimalLat": -34.446397 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604445, "decimalLat": -34.424555 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60678, "decimalLat": -34.42928 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109422, "decimalLat": -29.490497 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633624, "decimalLat": -34.418398 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343646, "decimalLat": -28.866891 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.413445, "decimalLat": -28.661508 }, "geometry": { "type": "Point", "coordinates": [ 153.413, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.917922, "decimalLat": -36.474664 }, "geometry": { "type": "Point", "coordinates": [ 149.918, -36.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624883, "decimalLat": -34.399711 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914702, "decimalLat": -31.469196 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52173, "decimalLat": -34.466089 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.594654, "decimalLat": -34.427563 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609634, "decimalLat": -34.436413 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643082, "decimalLat": -34.395735 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596117, "decimalLat": -34.411445 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.411 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526669, "decimalLat": -34.469507 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520612, "decimalLat": -34.465634 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603545, "decimalLat": -34.426737 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110404, "decimalLat": -29.490292 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.456085, "decimalLat": -31.937349 }, "geometry": { "type": "Point", "coordinates": [ 152.456, -31.937 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901602, "decimalLat": -28.771137 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -28.771 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.157837, "decimalLat": -29.028095 }, "geometry": { "type": "Point", "coordinates": [ 153.158, -29.028 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.083939, "decimalLat": -29.729503 }, "geometry": { "type": "Point", "coordinates": [ 151.084, -29.73 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343646, "decimalLat": -28.866891 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.848198, "decimalLat": -31.060477 }, "geometry": { "type": "Point", "coordinates": [ 152.848, -31.06 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609435, "decimalLat": -34.418937 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071751, "decimalLat": -30.927082 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.927 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.385032, "decimalLat": -31.882977 }, "geometry": { "type": "Point", "coordinates": [ 152.385, -31.883 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519678, "decimalLat": -34.455247 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.490755, "decimalLat": -28.709278 }, "geometry": { "type": "Point", "coordinates": [ 153.491, -28.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929709, "decimalLat": -29.727079 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109245, "decimalLat": -29.490792 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908032, "decimalLat": -31.478874 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514287, "decimalLat": -34.446582 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081375, "decimalLat": -32.776185 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.776 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811295, "decimalLat": -29.515242 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -29.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62735, "decimalLat": -34.42136 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.557947, "decimalLat": -33.494896 }, "geometry": { "type": "Point", "coordinates": [ 149.558, -33.495 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.988839, "decimalLat": -34.018957 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.019 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109433, "decimalLat": -29.490497 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640782, "decimalLat": -34.494185 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283855, "decimalLat": -28.864257 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516646, "decimalLat": -34.447036 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78988, "decimalLat": -34.19412 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.194 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092385, "decimalLat": -29.488149 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8881, "decimalLat": -31.4349 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.284729, "decimalLat": -28.825935 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522527, "decimalLat": -34.451654 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403779, "decimalLat": -31.93913 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.939 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885889, "decimalLat": -34.016736 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.017 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8814, "decimalLat": -31.448177 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.04316, "decimalLat": -32.76786 }, "geometry": { "type": "Point", "coordinates": [ 152.043, -32.768 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884737, "decimalLat": -34.068805 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636875, "decimalLat": -34.421165 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604031, "decimalLat": -34.438683 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809, "decimalLat": -34.20866 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9249, "decimalLat": -31.214814 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.215 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614812, "decimalLat": -34.431087 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631251, "decimalLat": -34.387573 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.212595, "decimalLat": -28.584045 }, "geometry": { "type": "Point", "coordinates": [ 153.213, -28.584 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.424857, "decimalLat": -31.802811 }, "geometry": { "type": "Point", "coordinates": [ 152.425, -31.803 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.18755, "decimalLat": -28.878 }, "geometry": { "type": "Point", "coordinates": [ 153.188, -28.878 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884872, "decimalLat": -34.070312 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.771, "decimalLat": -30.106178 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.106 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394064, "decimalLat": -28.958976 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.967206, "decimalLat": -28.1485 }, "geometry": { "type": "Point", "coordinates": [ 152.967, -28.148 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609223, "decimalLat": -34.420664 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.757608, "decimalLat": -33.60486 }, "geometry": { "type": "Point", "coordinates": [ 150.758, -33.605 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561963, "decimalLat": -28.386971 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.250288, "decimalLat": -30.066931 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -30.067 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790833, "decimalLat": -34.148056 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.148 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.986459, "decimalLat": -34.097138 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627381, "decimalLat": -34.420251 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.162576, "decimalLat": -32.716605 }, "geometry": { "type": "Point", "coordinates": [ 152.163, -32.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907235, "decimalLat": -31.447645 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.794957, "decimalLat": -32.528033 }, "geometry": { "type": "Point", "coordinates": [ 151.795, -32.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615839, "decimalLat": -34.4363 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.666541, "decimalLat": -33.534396 }, "geometry": { "type": "Point", "coordinates": [ 150.667, -33.534 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604237, "decimalLat": -34.438705 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52551, "decimalLat": -34.458647 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522203, "decimalLat": -34.465558 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003439, "decimalLat": -36.573425 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926887, "decimalLat": -31.459542 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637311, "decimalLat": -34.423815 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.780764, "decimalLat": -32.585101 }, "geometry": { "type": "Point", "coordinates": [ 151.781, -32.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.072106, "decimalLat": -33.782885 }, "geometry": { "type": "Point", "coordinates": [ 150.072, -33.783 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518876, "decimalLat": -34.460288 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52368, "decimalLat": -34.464199 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640396, "decimalLat": -34.392627 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.746264, "decimalLat": -31.441596 }, "geometry": { "type": "Point", "coordinates": [ 152.746, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.793311, "decimalLat": -34.144709 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60536, "decimalLat": -34.437474 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616343, "decimalLat": -34.438095 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786175, "decimalLat": -33.70602 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.801219, "decimalLat": -34.186227 }, "geometry": { "type": "Point", "coordinates": [ 150.801, -34.186 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277563, "decimalLat": -28.938117 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.938 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.357267, "decimalLat": -32.069989 }, "geometry": { "type": "Point", "coordinates": [ 152.357, -32.07 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90631, "decimalLat": -30.17555 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -30.176 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063752, "decimalLat": -32.706526 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109567, "decimalLat": -29.490488 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094719, "decimalLat": -29.494261 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516996, "decimalLat": -34.460205 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.991693, "decimalLat": -34.024104 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104146, "decimalLat": -29.480014 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914916, "decimalLat": -31.450468 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.037048, "decimalLat": -32.728656 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43396, "decimalLat": -28.953 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.953 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925906, "decimalLat": -31.453169 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617054, "decimalLat": -34.433772 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071724, "decimalLat": -30.880291 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632658, "decimalLat": -34.418307 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520431, "decimalLat": -34.454099 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968909, "decimalLat": -36.659943 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.66 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627564, "decimalLat": -34.421869 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602978, "decimalLat": -34.451915 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.523, "decimalLat": -30.509 }, "geometry": { "type": "Point", "coordinates": [ 151.523, -30.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103983, "decimalLat": -29.485244 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637247, "decimalLat": -34.423769 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639189, "decimalLat": -34.493145 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.654877, "decimalLat": -32.688193 }, "geometry": { "type": "Point", "coordinates": [ 151.655, -32.688 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521862, "decimalLat": -34.464595 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109385, "decimalLat": -29.490521 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555833, "decimalLat": -28.371944 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.372 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.057723, "decimalLat": -32.736906 }, "geometry": { "type": "Point", "coordinates": [ 152.058, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809735, "decimalLat": -34.140203 }, "geometry": { "type": "Point", "coordinates": [ 150.81, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637501, "decimalLat": -34.488911 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367963, "decimalLat": -28.876416 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.876 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633701, "decimalLat": -34.392471 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108333, "decimalLat": -29.490451 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374468, "decimalLat": -31.915708 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628755, "decimalLat": -34.389301 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605648, "decimalLat": -34.437281 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925267, "decimalLat": -31.454118 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907325, "decimalLat": -31.444176 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659763, "decimalLat": -34.459047 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630482, "decimalLat": -34.420636 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630597, "decimalLat": -34.388777 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.738094, "decimalLat": -34.304797 }, "geometry": { "type": "Point", "coordinates": [ 150.738, -34.305 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072735, "decimalLat": -32.7105 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604294, "decimalLat": -34.439004 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630202, "decimalLat": -34.42091 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302555, "decimalLat": -28.819938 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929763, "decimalLat": -29.726427 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.092401, "decimalLat": -28.783062 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -28.783 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601866, "decimalLat": -34.41237 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519427, "decimalLat": -34.435427 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.480202, "decimalLat": -32.815056 }, "geometry": { "type": "Point", "coordinates": [ 151.48, -32.815 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.0369, "decimalLat": -34.90779 }, "geometry": { "type": "Point", "coordinates": [ 150.037, -34.908 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889824, "decimalLat": -30.468214 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -30.468 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077582, "decimalLat": -30.307633 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.308 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561545, "decimalLat": -28.385605 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.796711, "decimalLat": -31.526289 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.674854, "decimalLat": -34.287614 }, "geometry": { "type": "Point", "coordinates": [ 150.675, -34.288 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883674, "decimalLat": -31.433321 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515879, "decimalLat": -34.447191 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659175, "decimalLat": -34.455177 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495538, "decimalLat": -28.693263 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520477, "decimalLat": -34.465793 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824764, "decimalLat": -31.438954 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517293, "decimalLat": -34.452016 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64387, "decimalLat": -34.393253 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415078, "decimalLat": -31.933261 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.322933, "decimalLat": -36.299136 }, "geometry": { "type": "Point", "coordinates": [ 149.323, -36.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528944, "decimalLat": -34.458798 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306792, "decimalLat": -28.821699 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512739, "decimalLat": -34.446659 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.036748, "decimalLat": -32.070691 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.071 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437114, "decimalLat": -28.993002 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.993 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916628, "decimalLat": -31.445024 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627962, "decimalLat": -34.420479 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646848, "decimalLat": -33.238957 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -33.239 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.448114, "decimalLat": -28.944154 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.944 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103583, "decimalLat": -29.486066 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639821, "decimalLat": -34.393373 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642131, "decimalLat": -34.395933 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662671, "decimalLat": -34.458228 }, "geometry": { "type": "Point", "coordinates": [ 150.663, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784231, "decimalLat": -33.717318 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.788388, "decimalLat": -34.199985 }, "geometry": { "type": "Point", "coordinates": [ 150.788, -34.2 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786046, "decimalLat": -33.712303 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.138925, "decimalLat": -30.119255 }, "geometry": { "type": "Point", "coordinates": [ 152.139, -30.119 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520488, "decimalLat": -34.465775 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.721089, "decimalLat": -32.664348 }, "geometry": { "type": "Point", "coordinates": [ 151.721, -32.664 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82878, "decimalLat": -34.090667 }, "geometry": { "type": "Point", "coordinates": [ 150.829, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367822, "decimalLat": -28.866277 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518619, "decimalLat": -34.443226 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599498, "decimalLat": -34.45182 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.038001, "decimalLat": -32.732775 }, "geometry": { "type": "Point", "coordinates": [ 152.038, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.990705, "decimalLat": -36.458883 }, "geometry": { "type": "Point", "coordinates": [ 149.991, -36.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64449, "decimalLat": -34.393644 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.520955, "decimalLat": -28.654222 }, "geometry": { "type": "Point", "coordinates": [ 153.521, -28.654 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.776829, "decimalLat": -31.506633 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -31.507 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110506, "decimalLat": -29.490166 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636306, "decimalLat": -34.422047 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929319, "decimalLat": -31.466891 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320406, "decimalLat": -28.647407 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.998946, "decimalLat": -34.083034 }, "geometry": { "type": "Point", "coordinates": [ 150.999, -34.083 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784159, "decimalLat": -33.716012 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822056, "decimalLat": -29.507595 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -29.508 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877303, "decimalLat": -29.677379 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -29.677 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071815, "decimalLat": -30.879779 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.88 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071181, "decimalLat": -30.883276 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.883 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293409, "decimalLat": -28.864534 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.682012, "decimalLat": -33.542109 }, "geometry": { "type": "Point", "coordinates": [ 149.682, -33.542 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101247, "decimalLat": -29.489937 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.122951, "decimalLat": -33.114532 }, "geometry": { "type": "Point", "coordinates": [ 151.123, -33.115 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517522, "decimalLat": -34.446125 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.085425, "decimalLat": -30.345203 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -30.345 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607443, "decimalLat": -34.433124 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.346708, "decimalLat": -31.684292 }, "geometry": { "type": "Point", "coordinates": [ 152.347, -31.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642543, "decimalLat": -34.395563 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.282902, "decimalLat": -28.869443 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513839, "decimalLat": -34.447024 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627972, "decimalLat": -34.420912 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786715, "decimalLat": -31.629212 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.898169, "decimalLat": -33.381662 }, "geometry": { "type": "Point", "coordinates": [ 150.898, -33.382 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.362836, "decimalLat": -28.809142 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517858, "decimalLat": -34.437694 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.943371, "decimalLat": -30.394953 }, "geometry": { "type": "Point", "coordinates": [ 152.943, -30.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626566, "decimalLat": -34.387104 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878833, "decimalLat": -31.452074 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922675, "decimalLat": -31.475309 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785071, "decimalLat": -33.719583 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516143, "decimalLat": -28.687022 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635328, "decimalLat": -34.488743 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516264, "decimalLat": -34.449282 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.115731, "decimalLat": -32.764638 }, "geometry": { "type": "Point", "coordinates": [ 152.116, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.221068, "decimalLat": -28.82983 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.577506, "decimalLat": -33.419281 }, "geometry": { "type": "Point", "coordinates": [ 149.578, -33.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103253, "decimalLat": -29.486575 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103945, "decimalLat": -29.484749 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63382, "decimalLat": -34.418366 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292968, "decimalLat": -28.864588 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623599, "decimalLat": -34.389363 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893759, "decimalLat": -31.446523 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519898, "decimalLat": -34.452592 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428647, "decimalLat": -29.017366 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -29.017 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519596, "decimalLat": -34.452523 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.408997, "decimalLat": -28.846732 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.519536, "decimalLat": -28.725919 }, "geometry": { "type": "Point", "coordinates": [ 153.52, -28.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516022, "decimalLat": -34.449006 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072564, "decimalLat": -32.710617 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516497, "decimalLat": -34.447267 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613299, "decimalLat": -34.430751 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520291, "decimalLat": -34.454033 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109374, "decimalLat": -29.490549 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533856, "decimalLat": -34.498996 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.499 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.490755, "decimalLat": -28.709278 }, "geometry": { "type": "Point", "coordinates": [ 153.491, -28.709 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077601, "decimalLat": -30.890801 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.982395, "decimalLat": -34.047876 }, "geometry": { "type": "Point", "coordinates": [ 150.982, -34.048 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306145, "decimalLat": -29.055286 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -29.055 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912481, "decimalLat": -31.454165 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516477, "decimalLat": -34.450152 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.126308, "decimalLat": -31.415433 }, "geometry": { "type": "Point", "coordinates": [ 152.126, -31.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636003, "decimalLat": -34.392623 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.710175, "decimalLat": -31.782439 }, "geometry": { "type": "Point", "coordinates": [ 152.71, -31.782 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.061156, "decimalLat": -33.776359 }, "geometry": { "type": "Point", "coordinates": [ 150.061, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110943, "decimalLat": -29.488391 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.850173, "decimalLat": -34.067842 }, "geometry": { "type": "Point", "coordinates": [ 150.85, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522976, "decimalLat": -34.452303 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.440447, "decimalLat": -30.643985 }, "geometry": { "type": "Point", "coordinates": [ 151.44, -30.644 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.188204, "decimalLat": -31.953289 }, "geometry": { "type": "Point", "coordinates": [ 152.188, -31.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527144, "decimalLat": -34.457833 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597273, "decimalLat": -34.410179 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.436964, "decimalLat": -28.850153 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.964605, "decimalLat": -36.653292 }, "geometry": { "type": "Point", "coordinates": [ 149.965, -36.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521579, "decimalLat": -34.465698 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.624706, "decimalLat": -30.402213 }, "geometry": { "type": "Point", "coordinates": [ 151.625, -30.402 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911609, "decimalLat": -31.458122 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603604, "decimalLat": -34.436484 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926813, "decimalLat": -31.444558 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524123, "decimalLat": -34.452903 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293069, "decimalLat": -28.864674 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609422, "decimalLat": -34.419018 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522295, "decimalLat": -34.464288 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642054, "decimalLat": -34.397104 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.120028, "decimalLat": -35.078249 }, "geometry": { "type": "Point", "coordinates": [ 150.12, -35.078 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513804, "decimalLat": -34.446338 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809841, "decimalLat": -31.518778 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -31.519 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610509, "decimalLat": -34.430534 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.621538, "decimalLat": -30.296163 }, "geometry": { "type": "Point", "coordinates": [ 152.622, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563412, "decimalLat": -28.647325 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091983, "decimalLat": -29.487981 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791503, "decimalLat": -34.218966 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.219 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.601837, "decimalLat": -34.763847 }, "geometry": { "type": "Point", "coordinates": [ 146.602, -34.764 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.355934, "decimalLat": -37.177314 }, "geometry": { "type": "Point", "coordinates": [ 149.356, -37.177 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984658, "decimalLat": -34.092377 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626935, "decimalLat": -34.421036 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63564, "decimalLat": -34.418275 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615957, "decimalLat": -34.436392 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523586, "decimalLat": -34.451558 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635846, "decimalLat": -34.392765 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277993, "decimalLat": -28.873862 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360706, "decimalLat": -28.654666 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518294, "decimalLat": -34.443184 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.814725, "decimalLat": -31.276309 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.276 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526582, "decimalLat": -34.457334 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.502114, "decimalLat": -28.632035 }, "geometry": { "type": "Point", "coordinates": [ 153.502, -28.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514897, "decimalLat": -34.446567 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.738115, "decimalLat": -34.305246 }, "geometry": { "type": "Point", "coordinates": [ 150.738, -34.305 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.447783, "decimalLat": -28.651298 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300787, "decimalLat": -28.821804 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.988561, "decimalLat": -34.028573 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.189405, "decimalLat": -28.889794 }, "geometry": { "type": "Point", "coordinates": [ 153.189, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512959, "decimalLat": -34.447321 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510488, "decimalLat": -28.808776 }, "geometry": { "type": "Point", "coordinates": [ 153.51, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.388709, "decimalLat": -31.902284 }, "geometry": { "type": "Point", "coordinates": [ 152.389, -31.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925697, "decimalLat": -31.479653 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556056, "decimalLat": -28.398535 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918861, "decimalLat": -31.448304 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924977, "decimalLat": -31.459262 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28464, "decimalLat": -28.825104 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631486, "decimalLat": -34.388488 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381867, "decimalLat": -30.786583 }, "geometry": { "type": "Point", "coordinates": [ 152.382, -30.787 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.222492, "decimalLat": -31.356669 }, "geometry": { "type": "Point", "coordinates": [ 152.222, -31.357 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103929, "decimalLat": -29.489512 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.123847, "decimalLat": -30.297643 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.298 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639637, "decimalLat": -34.397995 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.408389, "decimalLat": -31.937443 }, "geometry": { "type": "Point", "coordinates": [ 152.408, -31.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.413338, "decimalLat": -28.659401 }, "geometry": { "type": "Point", "coordinates": [ 153.413, -28.659 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.385425, "decimalLat": -28.524286 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -28.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55828, "decimalLat": -28.394222 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809, "decimalLat": -34.20866 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910604, "decimalLat": -31.442457 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313179, "decimalLat": -28.858271 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.858 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785433, "decimalLat": -33.710214 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639286, "decimalLat": -34.493192 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.002505, "decimalLat": -36.541329 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.541 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373758, "decimalLat": -31.915063 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.803399, "decimalLat": -34.112602 }, "geometry": { "type": "Point", "coordinates": [ 150.803, -34.113 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10335, "decimalLat": -30.32326 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -30.323 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29838, "decimalLat": -28.817309 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60297, "decimalLat": -34.427429 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634435, "decimalLat": -34.420109 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.852272, "decimalLat": -34.077312 }, "geometry": { "type": "Point", "coordinates": [ 150.852, -34.077 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516994, "decimalLat": -34.447394 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522385, "decimalLat": -34.46493 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.440693, "decimalLat": -31.772847 }, "geometry": { "type": "Point", "coordinates": [ 152.441, -31.773 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372529, "decimalLat": -31.921365 }, "geometry": { "type": "Point", "coordinates": [ 152.373, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.566221, "decimalLat": -28.387914 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.811966, "decimalLat": -34.090353 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.09 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92459, "decimalLat": -31.440955 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06928, "decimalLat": -32.712642 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613834, "decimalLat": -34.432988 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523098, "decimalLat": -34.452233 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613331, "decimalLat": -34.432663 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52761, "decimalLat": -34.43675 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534729, "decimalLat": -34.459347 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52627, "decimalLat": -34.427219 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637344, "decimalLat": -34.423807 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 145.582386, "decimalLat": -35.635781 }, "geometry": { "type": "Point", "coordinates": [ 145.582, -35.636 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520221, "decimalLat": -34.447956 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561202, "decimalLat": -28.392606 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519486, "decimalLat": -34.456586 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.111616, "decimalLat": -29.465452 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -29.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82369, "decimalLat": -34.141271 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625641, "decimalLat": -34.386382 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6275, "decimalLat": -34.39062 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.557428, "decimalLat": -31.611478 }, "geometry": { "type": "Point", "coordinates": [ 152.557, -31.611 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627244, "decimalLat": -34.385836 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61132, "decimalLat": -28.68255 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327647, "decimalLat": -28.817008 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633754, "decimalLat": -34.392544 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521622, "decimalLat": -34.465717 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.838362, "decimalLat": -31.594831 }, "geometry": { "type": "Point", "coordinates": [ 152.838, -31.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9837, "decimalLat": -30.4214 }, "geometry": { "type": "Point", "coordinates": [ 152.984, -30.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642882, "decimalLat": -34.394731 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631303, "decimalLat": -34.420066 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.481287, "decimalLat": -28.626781 }, "geometry": { "type": "Point", "coordinates": [ 153.481, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.592081, "decimalLat": -28.729263 }, "geometry": { "type": "Point", "coordinates": [ 153.592, -28.729 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.375744, "decimalLat": -31.924064 }, "geometry": { "type": "Point", "coordinates": [ 152.376, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110045, "decimalLat": -29.488284 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645801, "decimalLat": -34.404298 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092262, "decimalLat": -29.488139 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603923, "decimalLat": -34.426844 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104074, "decimalLat": -29.485057 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786752, "decimalLat": -31.629141 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.069526, "decimalLat": -32.748156 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.748 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.50487, "decimalLat": -32.069784 }, "geometry": { "type": "Point", "coordinates": [ 152.505, -32.07 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071751, "decimalLat": -30.927082 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.927 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278372, "decimalLat": -28.678855 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324269, "decimalLat": -28.97457 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.975 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597636, "decimalLat": -34.418399 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78943, "decimalLat": -34.210866 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.211 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.969639, "decimalLat": -29.219871 }, "geometry": { "type": "Point", "coordinates": [ 149.97, -29.22 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.939729, "decimalLat": -29.668372 }, "geometry": { "type": "Point", "coordinates": [ 150.94, -29.668 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315124, "decimalLat": -28.826545 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.711777, "decimalLat": -31.781985 }, "geometry": { "type": "Point", "coordinates": [ 152.712, -31.782 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394673, "decimalLat": -28.960126 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6152, "decimalLat": -34.43544 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911715, "decimalLat": -31.458672 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.737543, "decimalLat": -30.125115 }, "geometry": { "type": "Point", "coordinates": [ 152.738, -30.125 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.621507, "decimalLat": -30.296172 }, "geometry": { "type": "Point", "coordinates": [ 152.622, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643255, "decimalLat": -34.395414 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525427, "decimalLat": -34.464776 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.728952, "decimalLat": -34.259004 }, "geometry": { "type": "Point", "coordinates": [ 150.729, -34.259 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7929, "decimalLat": -34.2166 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.217 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.732934, "decimalLat": -32.587081 }, "geometry": { "type": "Point", "coordinates": [ 151.733, -32.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604797, "decimalLat": -34.437761 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631299, "decimalLat": -34.420201 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.5579, "decimalLat": -33.494818 }, "geometry": { "type": "Point", "coordinates": [ 149.558, -33.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604748, "decimalLat": -34.431485 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522039, "decimalLat": -34.465978 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.428145, "decimalLat": -31.948469 }, "geometry": { "type": "Point", "coordinates": [ 152.428, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103806, "decimalLat": -29.485557 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108172, "decimalLat": -29.490301 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.806803, "decimalLat": -31.154124 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -31.154 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908334, "decimalLat": -31.452765 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915979, "decimalLat": -31.480861 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604703, "decimalLat": -34.427319 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873889, "decimalLat": -31.457021 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085731, "decimalLat": -32.735737 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610671, "decimalLat": -34.433629 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.991402, "decimalLat": -34.025207 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.298758, "decimalLat": -31.945251 }, "geometry": { "type": "Point", "coordinates": [ 152.299, -31.945 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.007515, "decimalLat": -28.625548 }, "geometry": { "type": "Point", "coordinates": [ 153.008, -28.626 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922698, "decimalLat": -31.479236 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558373, "decimalLat": -28.394137 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.426207, "decimalLat": -28.573473 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.573 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.591984, "decimalLat": -34.77471 }, "geometry": { "type": "Point", "coordinates": [ 146.592, -34.775 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092457, "decimalLat": -28.602275 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -28.602 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609465, "decimalLat": -34.419028 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063658, "decimalLat": -32.706125 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625916, "decimalLat": -34.389723 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639144, "decimalLat": -34.491656 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632815, "decimalLat": -34.418896 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901584, "decimalLat": -31.442356 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63731, "decimalLat": -34.423861 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925759, "decimalLat": -31.445979 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637907, "decimalLat": -34.488828 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523877, "decimalLat": -34.512 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395255, "decimalLat": -28.959969 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631505, "decimalLat": -34.387812 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907866, "decimalLat": -31.475631 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634002, "decimalLat": -34.48869 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617109, "decimalLat": -34.433728 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.994536, "decimalLat": -32.297176 }, "geometry": { "type": "Point", "coordinates": [ 151.995, -32.297 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639173, "decimalLat": -34.492946 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521365, "decimalLat": -34.435745 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495272, "decimalLat": -28.693786 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600194, "decimalLat": -34.428646 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626848, "decimalLat": -34.421007 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601973, "decimalLat": -34.435668 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324244, "decimalLat": -28.879717 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.941027, "decimalLat": -34.114736 }, "geometry": { "type": "Point", "coordinates": [ 150.941, -34.115 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374686, "decimalLat": -31.925299 }, "geometry": { "type": "Point", "coordinates": [ 152.375, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.736498, "decimalLat": -32.551635 }, "geometry": { "type": "Point", "coordinates": [ 151.736, -32.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.476795, "decimalLat": -28.539853 }, "geometry": { "type": "Point", "coordinates": [ 153.477, -28.54 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.1103, "decimalLat": -29.76276 }, "geometry": { "type": "Point", "coordinates": [ 151.11, -29.763 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.112294, "decimalLat": -28.661766 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912589, "decimalLat": -30.488 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -30.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791821, "decimalLat": -31.126317 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630619, "decimalLat": -34.420792 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272766, "decimalLat": -28.931722 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790596, "decimalLat": -34.188134 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517974, "decimalLat": -34.437831 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.326049, "decimalLat": -36.334367 }, "geometry": { "type": "Point", "coordinates": [ 149.326, -36.334 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.390711, "decimalLat": -28.854924 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.855 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071576, "decimalLat": -32.709662 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785536, "decimalLat": -33.715181 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.158632, "decimalLat": -28.924195 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626299, "decimalLat": -34.395807 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949786, "decimalLat": -36.632867 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.633 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.461903, "decimalLat": -28.870811 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.871 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.38824, "decimalLat": -28.997202 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -28.997 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625746, "decimalLat": -34.38844 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.917922, "decimalLat": -36.474664 }, "geometry": { "type": "Point", "coordinates": [ 149.918, -36.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.210062, "decimalLat": -34.626243 }, "geometry": { "type": "Point", "coordinates": [ 150.21, -34.626 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889512, "decimalLat": -30.467742 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -30.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108183, "decimalLat": -29.490227 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315522, "decimalLat": -28.826069 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37244, "decimalLat": -31.921302 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409406, "decimalLat": -31.910186 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.02021, "decimalLat": -36.569074 }, "geometry": { "type": "Point", "coordinates": [ 150.02, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622238, "decimalLat": -34.397883 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108097, "decimalLat": -29.490623 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61584, "decimalLat": -34.440492 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.034966, "decimalLat": -32.768069 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.768 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646808, "decimalLat": -34.401361 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607204, "decimalLat": -34.436906 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.097534, "decimalLat": -29.772983 }, "geometry": { "type": "Point", "coordinates": [ 151.098, -29.773 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103881, "decimalLat": -29.48541 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60428, "decimalLat": -34.437967 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864093, "decimalLat": -31.302697 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.303 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5193, "decimalLat": -34.44819 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11056, "decimalLat": -29.489937 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.154556, "decimalLat": -33.095806 }, "geometry": { "type": "Point", "coordinates": [ 151.155, -33.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.944433, "decimalLat": -29.346563 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -29.347 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.876078, "decimalLat": -31.469203 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904238, "decimalLat": -31.450303 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101226, "decimalLat": -29.490007 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103413, "decimalLat": -32.759234 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -32.759 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918628, "decimalLat": -31.453948 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393951, "decimalLat": -28.959734 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513082, "decimalLat": -34.447207 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603055, "decimalLat": -34.417613 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534895, "decimalLat": -34.459251 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925804, "decimalLat": -31.455289 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.939215, "decimalLat": -30.230169 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -30.23 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303635, "decimalLat": -28.890682 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615802, "decimalLat": -34.434171 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521406, "decimalLat": -34.465668 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513157, "decimalLat": -34.447244 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60529, "decimalLat": -34.437274 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272822, "decimalLat": -28.931702 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626469, "decimalLat": -34.390564 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399805, "decimalLat": -29.037633 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -29.038 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107899, "decimalLat": -29.490792 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10145, "decimalLat": -30.297658 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -30.298 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071633, "decimalLat": -30.880307 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519655, "decimalLat": -34.455301 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604096, "decimalLat": -34.427262 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.032175, "decimalLat": -30.426894 }, "geometry": { "type": "Point", "coordinates": [ 153.032, -30.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.113151, "decimalLat": -29.488578 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604649, "decimalLat": -34.427318 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.133996, "decimalLat": -30.090977 }, "geometry": { "type": "Point", "coordinates": [ 152.134, -30.091 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518508, "decimalLat": -34.45214 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.840465, "decimalLat": -31.594239 }, "geometry": { "type": "Point", "coordinates": [ 152.84, -31.594 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517017, "decimalLat": -34.44735 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.073774, "decimalLat": -30.886261 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923509, "decimalLat": -29.733427 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -29.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637312, "decimalLat": -34.423779 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.051789, "decimalLat": -28.556666 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -28.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632802, "decimalLat": -34.419761 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102631, "decimalLat": -29.489512 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428314, "decimalLat": -28.972587 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.973 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627391, "decimalLat": -34.42027 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517718, "decimalLat": -28.686898 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530833, "decimalLat": -34.459341 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521179, "decimalLat": -34.435417 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.512471, "decimalLat": -30.655961 }, "geometry": { "type": "Point", "coordinates": [ 151.512, -30.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623276, "decimalLat": -34.385768 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622877, "decimalLat": -34.384526 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909937, "decimalLat": -30.505351 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -30.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.084251, "decimalLat": -30.328452 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -30.328 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563196, "decimalLat": -28.392608 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262056, "decimalLat": -28.925911 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -28.926 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10423, "decimalLat": -29.479262 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108242, "decimalLat": -29.490241 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929419, "decimalLat": -31.460059 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079448, "decimalLat": -32.738495 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609669, "decimalLat": -34.436332 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623324, "decimalLat": -34.383299 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65923, "decimalLat": -34.459046 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103524, "decimalLat": -32.759374 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.759 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517725, "decimalLat": -34.441441 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343646, "decimalLat": -28.866891 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104117, "decimalLat": -29.483759 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.019941, "decimalLat": -30.427985 }, "geometry": { "type": "Point", "coordinates": [ 153.02, -30.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907809, "decimalLat": -31.434645 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562171, "decimalLat": -28.383684 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.820089, "decimalLat": -31.131401 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.131 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638897, "decimalLat": -34.492688 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.986451, "decimalLat": -29.030715 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321383, "decimalLat": -28.826683 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.832164, "decimalLat": -29.637445 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -29.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641408, "decimalLat": -34.394928 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.11682, "decimalLat": -31.08082 }, "geometry": { "type": "Point", "coordinates": [ 150.117, -31.081 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028871, "decimalLat": -32.192158 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518047, "decimalLat": -34.457053 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.492541, "decimalLat": -28.240806 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -28.241 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902521, "decimalLat": -31.454137 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.555604, "decimalLat": -30.354494 }, "geometry": { "type": "Point", "coordinates": [ 151.556, -30.354 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911366, "decimalLat": -31.470676 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603379, "decimalLat": -34.436371 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.747076, "decimalLat": -30.908173 }, "geometry": { "type": "Point", "coordinates": [ 152.747, -30.908 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.417781, "decimalLat": -31.481886 }, "geometry": { "type": "Point", "coordinates": [ 150.418, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89849, "decimalLat": -34.014991 }, "geometry": { "type": "Point", "coordinates": [ 150.898, -34.015 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790596, "decimalLat": -34.188134 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.495897, "decimalLat": -28.315294 }, "geometry": { "type": "Point", "coordinates": [ 152.496, -28.315 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822911, "decimalLat": -34.150236 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52161, "decimalLat": -34.465744 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793831, "decimalLat": -31.128448 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.128 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910445, "decimalLat": -31.441614 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394545, "decimalLat": -28.275718 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.980178, "decimalLat": -34.094995 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785304, "decimalLat": -34.207149 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -34.207 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618119, "decimalLat": -34.429583 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.244601, "decimalLat": -33.169049 }, "geometry": { "type": "Point", "coordinates": [ 151.245, -33.169 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.061248, "decimalLat": -34.114522 }, "geometry": { "type": "Point", "coordinates": [ 151.061, -34.115 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.186783, "decimalLat": -28.888915 }, "geometry": { "type": "Point", "coordinates": [ 153.187, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076895, "decimalLat": -32.722543 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.011059, "decimalLat": -29.725567 }, "geometry": { "type": "Point", "coordinates": [ 151.011, -29.726 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.002422, "decimalLat": -32.411497 }, "geometry": { "type": "Point", "coordinates": [ 152.002, -32.411 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07288, "decimalLat": -32.717118 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10394, "decimalLat": -29.489591 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516096, "decimalLat": -34.449432 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293404, "decimalLat": -28.864496 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.438182, "decimalLat": -28.606099 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.606 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107454, "decimalLat": -29.490114 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635915, "decimalLat": -34.419299 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785211, "decimalLat": -33.715663 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517363, "decimalLat": -34.446347 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634979, "decimalLat": -34.488781 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533344, "decimalLat": -34.500492 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283462, "decimalLat": -28.830724 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.329538, "decimalLat": -36.138158 }, "geometry": { "type": "Point", "coordinates": [ 149.33, -36.138 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521715, "decimalLat": -34.467537 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642063, "decimalLat": -34.396013 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.345917, "decimalLat": -28.689908 }, "geometry": { "type": "Point", "coordinates": [ 153.346, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.783167, "decimalLat": -31.484611 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065276, "decimalLat": -32.701664 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630795, "decimalLat": -34.420705 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616428, "decimalLat": -34.438168 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614901, "decimalLat": -34.452473 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.882597, "decimalLat": -29.649789 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -29.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600246, "decimalLat": -34.428719 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.2381, "decimalLat": -28.58022 }, "geometry": { "type": "Point", "coordinates": [ 153.238, -28.58 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103666, "decimalLat": -29.485739 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901602, "decimalLat": -28.771137 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -28.771 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.004502, "decimalLat": -34.040327 }, "geometry": { "type": "Point", "coordinates": [ 151.005, -34.04 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.226702, "decimalLat": -31.619514 }, "geometry": { "type": "Point", "coordinates": [ 152.227, -31.62 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323, "decimalLat": -28.693023 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819936, "decimalLat": -31.144858 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516756, "decimalLat": -34.448471 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103951, "decimalLat": -29.489563 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556465, "decimalLat": -28.407968 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.036423, "decimalLat": -30.8961 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627122, "decimalLat": -34.420968 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094096, "decimalLat": -29.488812 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.963725, "decimalLat": -31.255606 }, "geometry": { "type": "Point", "coordinates": [ 152.964, -31.256 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.843404, "decimalLat": -30.311236 }, "geometry": { "type": "Point", "coordinates": [ 152.843, -30.311 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522869, "decimalLat": -34.464778 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616337, "decimalLat": -34.434506 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.831486, "decimalLat": -31.463575 }, "geometry": { "type": "Point", "coordinates": [ 152.831, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785981, "decimalLat": -33.709701 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.162086, "decimalLat": -28.923985 }, "geometry": { "type": "Point", "coordinates": [ 153.162, -28.924 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.749457, "decimalLat": -28.699193 }, "geometry": { "type": "Point", "coordinates": [ 152.749, -28.699 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922669, "decimalLat": -31.459963 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.967557, "decimalLat": -32.235513 }, "geometry": { "type": "Point", "coordinates": [ 150.968, -32.236 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513142, "decimalLat": -34.445928 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.031334, "decimalLat": -32.733315 }, "geometry": { "type": "Point", "coordinates": [ 152.031, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618664, "decimalLat": -34.439907 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516759, "decimalLat": -34.448724 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.8315, "decimalLat": -32.394083 }, "geometry": { "type": "Point", "coordinates": [ 149.832, -32.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09444, "decimalLat": -30.300015 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -30.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872992, "decimalLat": -31.455522 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273577, "decimalLat": -28.939638 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.422758, "decimalLat": -29.020005 }, "geometry": { "type": "Point", "coordinates": [ 153.423, -29.02 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785584, "decimalLat": -33.710467 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921731, "decimalLat": -31.480556 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915153, "decimalLat": -31.436029 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109712, "decimalLat": -29.490241 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607455, "decimalLat": -34.433071 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604085, "decimalLat": -34.437927 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.586935, "decimalLat": -34.769757 }, "geometry": { "type": "Point", "coordinates": [ 146.587, -34.77 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.949981, "decimalLat": -30.416306 }, "geometry": { "type": "Point", "coordinates": [ 152.95, -30.416 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.834593, "decimalLat": -29.644493 }, "geometry": { "type": "Point", "coordinates": [ 152.835, -29.644 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400454, "decimalLat": -28.258552 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93793, "decimalLat": -30.40425 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -30.404 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.164041, "decimalLat": -30.083908 }, "geometry": { "type": "Point", "coordinates": [ 152.164, -30.084 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624928, "decimalLat": -34.399666 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596608, "decimalLat": -34.411374 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.411 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632871, "decimalLat": -34.418852 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516269, "decimalLat": -34.447993 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556245, "decimalLat": -28.398653 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.421991, "decimalLat": -28.982598 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516939, "decimalLat": -34.448538 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61702, "decimalLat": -34.433798 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.308892, "decimalLat": -29.058961 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -29.059 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78522, "decimalLat": -33.71409 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303415, "decimalLat": -28.816235 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637621, "decimalLat": -34.488525 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519536, "decimalLat": -34.447203 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.810093, "decimalLat": -34.094749 }, "geometry": { "type": "Point", "coordinates": [ 150.81, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.797639, "decimalLat": -34.22475 }, "geometry": { "type": "Point", "coordinates": [ 150.798, -34.225 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785095, "decimalLat": -33.719229 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.23088, "decimalLat": -28.889423 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.492026, "decimalLat": -28.238763 }, "geometry": { "type": "Point", "coordinates": [ 153.492, -28.239 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.532756, "decimalLat": -28.220515 }, "geometry": { "type": "Point", "coordinates": [ 153.533, -28.221 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926919, "decimalLat": -31.459042 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.84278, "decimalLat": -31.926276 }, "geometry": { "type": "Point", "coordinates": [ 151.843, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.078206, "decimalLat": -32.727783 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833136, "decimalLat": -34.085987 }, "geometry": { "type": "Point", "coordinates": [ 150.833, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61702, "decimalLat": -34.433825 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899659, "decimalLat": -31.440769 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.527846, "decimalLat": -28.213025 }, "geometry": { "type": "Point", "coordinates": [ 153.528, -28.213 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8822, "decimalLat": -31.1211 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.121 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784286, "decimalLat": -31.63002 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.365311, "decimalLat": -36.173822 }, "geometry": { "type": "Point", "coordinates": [ 149.365, -36.174 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.318709, "decimalLat": -36.063675 }, "geometry": { "type": "Point", "coordinates": [ 149.319, -36.064 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.072006, "decimalLat": -30.885764 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.74146, "decimalLat": -33.49924 }, "geometry": { "type": "Point", "coordinates": [ 150.741, -33.499 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.70091, "decimalLat": -33.55031 }, "geometry": { "type": "Point", "coordinates": [ 150.701, -33.55 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.62014, "decimalLat": -28.64956 }, "geometry": { "type": "Point", "coordinates": [ 153.62, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875158, "decimalLat": -29.679972 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -29.68 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61632, "decimalLat": -34.434317 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273885, "decimalLat": -28.87015 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.87 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.23116, "decimalLat": -34.33762 }, "geometry": { "type": "Point", "coordinates": [ 150.231, -34.338 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.860751, "decimalLat": -34.034099 }, "geometry": { "type": "Point", "coordinates": [ 150.861, -34.034 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.527358, "decimalLat": -28.4066 }, "geometry": { "type": "Point", "coordinates": [ 153.527, -28.407 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785979, "decimalLat": -33.713226 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522334, "decimalLat": -34.46483 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081971, "decimalLat": -32.723562 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519898, "decimalLat": -34.447823 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602733, "decimalLat": -34.434961 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56185, "decimalLat": -28.392953 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1211, "decimalLat": -28.79465 }, "geometry": { "type": "Point", "coordinates": [ 153.121, -28.795 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895105, "decimalLat": -31.437665 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393331, "decimalLat": -28.687381 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626601, "decimalLat": -34.385499 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302055, "decimalLat": -28.822622 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520921, "decimalLat": -34.465865 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.432181, "decimalLat": -28.617537 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.618 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.091806, "decimalLat": -33.138008 }, "geometry": { "type": "Point", "coordinates": [ 151.092, -33.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605726, "decimalLat": -34.427691 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.326023, "decimalLat": -28.583989 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.584 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5914, "decimalLat": -28.63691 }, "geometry": { "type": "Point", "coordinates": [ 153.591, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.54797, "decimalLat": -28.708004 }, "geometry": { "type": "Point", "coordinates": [ 153.548, -28.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926316, "decimalLat": -31.459222 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.034237, "decimalLat": -32.729793 }, "geometry": { "type": "Point", "coordinates": [ 152.034, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.05652, "decimalLat": -34.90351 }, "geometry": { "type": "Point", "coordinates": [ 150.057, -34.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514543, "decimalLat": -34.443829 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60237, "decimalLat": -28.69032 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.119961, "decimalLat": -33.075658 }, "geometry": { "type": "Point", "coordinates": [ 151.12, -33.076 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625187, "decimalLat": -34.386653 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596895, "decimalLat": -34.414292 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514064, "decimalLat": -34.446388 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627949, "decimalLat": -34.420929 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.09104, "decimalLat": -32.73789 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787207, "decimalLat": -31.636293 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.636 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520773, "decimalLat": -34.465357 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108167, "decimalLat": -29.491095 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639084, "decimalLat": -34.491466 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517974, "decimalLat": -34.43894 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609268, "decimalLat": -34.420602 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863827, "decimalLat": -31.299032 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.299 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.601837, "decimalLat": -34.763847 }, "geometry": { "type": "Point", "coordinates": [ 146.602, -34.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513854, "decimalLat": -34.44724 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103629, "decimalLat": -29.48548 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6674, "decimalLat": -30.5006 }, "geometry": { "type": "Point", "coordinates": [ 151.667, -30.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604702, "decimalLat": -34.427364 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.865278, "decimalLat": -32.530833 }, "geometry": { "type": "Point", "coordinates": [ 149.865, -32.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454341, "decimalLat": -28.653446 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.080964, "decimalLat": -32.732739 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515325, "decimalLat": -34.444232 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.116299, "decimalLat": -29.465157 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -29.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373791, "decimalLat": -31.915624 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82607, "decimalLat": -31.27226 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -31.272 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513021, "decimalLat": -34.44707 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.116066, "decimalLat": -28.561794 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -28.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5237, "decimalLat": -34.464993 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094536, "decimalLat": -30.300427 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -30.3 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901124, "decimalLat": -30.522969 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -30.523 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534544, "decimalLat": -34.459361 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557349, "decimalLat": -28.393288 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.549573, "decimalLat": -28.589252 }, "geometry": { "type": "Point", "coordinates": [ 153.55, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.134235, "decimalLat": -32.200289 }, "geometry": { "type": "Point", "coordinates": [ 152.134, -32.2 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109809, "decimalLat": -29.490161 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917012, "decimalLat": -31.454254 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394146, "decimalLat": -28.959154 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555751, "decimalLat": -28.375262 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.375 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494827, "decimalLat": -28.690529 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.691 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105265, "decimalLat": -29.489755 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.956941, "decimalLat": -36.59482 }, "geometry": { "type": "Point", "coordinates": [ 149.957, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619783, "decimalLat": -34.439586 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.042052, "decimalLat": -32.664824 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -32.665 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626113, "decimalLat": -34.385833 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.263676, "decimalLat": -28.873056 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -28.873 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921114, "decimalLat": -31.446325 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063571, "decimalLat": -32.706675 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635372, "decimalLat": -34.419676 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.078075, "decimalLat": -32.72797 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630861, "decimalLat": -34.420688 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610233, "decimalLat": -34.455114 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79297, "decimalLat": -34.13813 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.138 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.048196, "decimalLat": -33.190232 }, "geometry": { "type": "Point", "coordinates": [ 151.048, -33.19 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515565, "decimalLat": -34.454505 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523669, "decimalLat": -34.464226 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099787, "decimalLat": -29.493454 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924668, "decimalLat": -31.434949 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523973, "decimalLat": -34.462023 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608424, "decimalLat": -34.42237 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103827, "decimalLat": -29.48513 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517318, "decimalLat": -34.446373 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513119, "decimalLat": -34.445972 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.781051, "decimalLat": -34.199915 }, "geometry": { "type": "Point", "coordinates": [ 150.781, -34.2 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07458, "decimalLat": -30.36732 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -30.367 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.414, "decimalLat": -30.643 }, "geometry": { "type": "Point", "coordinates": [ 151.414, -30.643 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519877, "decimalLat": -34.452574 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519284, "decimalLat": -34.468951 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913246, "decimalLat": -31.42942 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926327, "decimalLat": -31.454548 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521654, "decimalLat": -34.465718 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563441, "decimalLat": -28.788338 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.788 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616579, "decimalLat": -34.435926 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518494, "decimalLat": -34.4515 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.282519, "decimalLat": -28.611534 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.612 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606662, "decimalLat": -34.437977 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616393, "decimalLat": -34.429062 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.137467, "decimalLat": -32.724689 }, "geometry": { "type": "Point", "coordinates": [ 152.137, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52388, "decimalLat": -34.464077 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522999, "decimalLat": -34.452249 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.147247, "decimalLat": -35.021419 }, "geometry": { "type": "Point", "coordinates": [ 150.147, -35.021 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520329, "decimalLat": -34.446858 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514142, "decimalLat": -34.446327 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.783893, "decimalLat": -31.63258 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454341, "decimalLat": -28.653446 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.221699, "decimalLat": -28.87153 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279241, "decimalLat": -28.839565 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521377, "decimalLat": -34.46628 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561099, "decimalLat": -28.703206 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.703 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644322, "decimalLat": -34.398076 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520978, "decimalLat": -34.446989 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.201137, "decimalLat": -28.816723 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.00684, "decimalLat": -30.22885 }, "geometry": { "type": "Point", "coordinates": [ 153.007, -30.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.886244, "decimalLat": -34.064404 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.064 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51898, "decimalLat": -28.57492 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912559, "decimalLat": -31.461154 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104096, "decimalLat": -29.484343 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516521, "decimalLat": -34.4542 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632816, "decimalLat": -34.418481 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632594, "decimalLat": -34.418243 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312467, "decimalLat": -28.840476 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110554, "decimalLat": -29.490044 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90325, "decimalLat": -31.150111 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30215, "decimalLat": -28.819239 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920619, "decimalLat": -30.506297 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910837, "decimalLat": -31.469615 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563613, "decimalLat": -28.374871 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.375 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630921, "decimalLat": -34.390037 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659102, "decimalLat": -34.457385 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323726, "decimalLat": -28.941334 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51383, "decimalLat": -34.447321 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06606, "decimalLat": -32.710316 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.075814, "decimalLat": -30.351815 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -30.352 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521373, "decimalLat": -34.435827 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604858, "decimalLat": -34.427223 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.974585, "decimalLat": -30.653064 }, "geometry": { "type": "Point", "coordinates": [ 152.975, -30.653 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381007, "decimalLat": -31.929155 }, "geometry": { "type": "Point", "coordinates": [ 152.381, -31.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608593, "decimalLat": -34.453468 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104079, "decimalLat": -29.485085 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.021657, "decimalLat": -34.038932 }, "geometry": { "type": "Point", "coordinates": [ 151.022, -34.039 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513031, "decimalLat": -34.445998 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428439, "decimalLat": -28.955509 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.956 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.723822, "decimalLat": -34.528943 }, "geometry": { "type": "Point", "coordinates": [ 149.724, -34.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103951, "decimalLat": -29.489559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896113, "decimalLat": -31.452277 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629415, "decimalLat": -34.388655 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609466, "decimalLat": -34.419019 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62628, "decimalLat": -34.395699 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626814, "decimalLat": -34.421448 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.773002, "decimalLat": -32.585738 }, "geometry": { "type": "Point", "coordinates": [ 151.773, -32.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493595, "decimalLat": -28.671265 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627384, "decimalLat": -34.421315 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601507, "decimalLat": -34.417718 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606417, "decimalLat": -34.435133 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00272, "decimalLat": -32.74288 }, "geometry": { "type": "Point", "coordinates": [ 152.003, -32.743 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07198, "decimalLat": -30.887519 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513993, "decimalLat": -34.450254 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603938, "decimalLat": -34.42707 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105018, "decimalLat": -29.489652 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920994, "decimalLat": -31.481606 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604802, "decimalLat": -34.427303 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302823, "decimalLat": -28.844361 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.57485, "decimalLat": -34.52717 }, "geometry": { "type": "Point", "coordinates": [ 150.575, -34.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909212, "decimalLat": -31.475252 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5572, "decimalLat": -28.397524 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614868, "decimalLat": -34.432584 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5159, "decimalLat": -34.446507 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.041687, "decimalLat": -32.737251 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.307547, "decimalLat": -36.184802 }, "geometry": { "type": "Point", "coordinates": [ 149.308, -36.185 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.732006, "decimalLat": -34.211933 }, "geometry": { "type": "Point", "coordinates": [ 150.732, -34.212 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627025, "decimalLat": -34.420921 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987602, "decimalLat": -34.089143 }, "geometry": { "type": "Point", "coordinates": [ 150.988, -34.089 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609179, "decimalLat": -34.420681 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896393, "decimalLat": -31.447575 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.543918, "decimalLat": -34.519414 }, "geometry": { "type": "Point", "coordinates": [ 150.544, -34.519 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.102398, "decimalLat": -33.775253 }, "geometry": { "type": "Point", "coordinates": [ 150.102, -33.775 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325006, "decimalLat": -28.831141 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915189, "decimalLat": -31.467202 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604694, "decimalLat": -34.427247 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639878, "decimalLat": -34.398694 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.25719, "decimalLat": -33.54314 }, "geometry": { "type": "Point", "coordinates": [ 149.257, -33.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630162, "decimalLat": -34.420783 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608962, "decimalLat": -34.420677 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520464, "decimalLat": -34.454082 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434511, "decimalLat": -28.728385 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604513, "decimalLat": -34.424466 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627087, "decimalLat": -34.386771 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51849, "decimalLat": -34.442088 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401057, "decimalLat": -29.037593 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -29.038 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627231, "decimalLat": -34.421321 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522823, "decimalLat": -34.452336 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614835, "decimalLat": -34.431069 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529459, "decimalLat": -34.471231 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788273, "decimalLat": -30.174254 }, "geometry": { "type": "Point", "coordinates": [ 152.788, -30.174 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378048, "decimalLat": -31.919199 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873204, "decimalLat": -31.457925 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614135, "decimalLat": -34.429667 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.036121, "decimalLat": -32.764432 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613245, "decimalLat": -34.432625 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065984, "decimalLat": -32.71117 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.704695, "decimalLat": -32.630046 }, "geometry": { "type": "Point", "coordinates": [ 151.705, -32.63 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796633, "decimalLat": -34.146283 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637144, "decimalLat": -34.423578 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626283, "decimalLat": -33.437589 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -33.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785362, "decimalLat": -33.708449 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512814, "decimalLat": -34.446696 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314444, "decimalLat": -28.468469 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07678, "decimalLat": -28.553296 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -28.553 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077377, "decimalLat": -30.929604 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -30.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.444452, "decimalLat": -31.889461 }, "geometry": { "type": "Point", "coordinates": [ 152.444, -31.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532865, "decimalLat": -34.458714 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9907, "decimalLat": -34.019705 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.02 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626149, "decimalLat": -34.397247 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521361, "decimalLat": -34.466442 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604339, "decimalLat": -34.438951 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103371, "decimalLat": -29.489923 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525329, "decimalLat": -34.464016 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556904, "decimalLat": -28.644538 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.645 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645406, "decimalLat": -34.392003 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.19598, "decimalLat": -29.78625 }, "geometry": { "type": "Point", "coordinates": [ 151.196, -29.786 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527581, "decimalLat": -34.455735 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784515, "decimalLat": -33.710287 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640095, "decimalLat": -34.399879 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915382, "decimalLat": -31.445958 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.210908, "decimalLat": -28.647062 }, "geometry": { "type": "Point", "coordinates": [ 153.211, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109315, "decimalLat": -29.490843 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515242, "decimalLat": -34.460251 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.952101, "decimalLat": -34.117385 }, "geometry": { "type": "Point", "coordinates": [ 150.952, -34.117 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786472, "decimalLat": -33.705402 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630498, "decimalLat": -34.394996 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513137, "decimalLat": -34.44719 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520382, "decimalLat": -34.465683 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597165, "decimalLat": -34.417759 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604724, "decimalLat": -34.427364 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063513, "decimalLat": -32.705989 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279146, "decimalLat": -28.873923 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.382647, "decimalLat": -31.914495 }, "geometry": { "type": "Point", "coordinates": [ 152.383, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520411, "decimalLat": -34.435987 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625336, "decimalLat": -34.384456 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915063, "decimalLat": -31.447671 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616106, "decimalLat": -34.436485 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063408, "decimalLat": -32.705941 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409406, "decimalLat": -31.910186 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631228, "decimalLat": -34.393424 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.456713, "decimalLat": -28.954129 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.954 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108199, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907918, "decimalLat": -30.428586 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -30.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373823, "decimalLat": -31.915723 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.592802, "decimalLat": -28.740832 }, "geometry": { "type": "Point", "coordinates": [ 153.593, -28.741 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783906, "decimalLat": -33.718966 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517252, "decimalLat": -34.446399 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.957871, "decimalLat": -30.663283 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -30.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493083, "decimalLat": -28.693782 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785327, "decimalLat": -33.713984 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906525, "decimalLat": -31.432895 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606233, "decimalLat": -34.45453 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615783, "decimalLat": -34.435974 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518964, "decimalLat": -34.460254 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523738, "decimalLat": -34.463705 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302559, "decimalLat": -28.845668 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636309, "decimalLat": -34.42193 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.040579, "decimalLat": -32.735525 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625583, "decimalLat": -34.386129 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.077611, "decimalLat": -33.147919 }, "geometry": { "type": "Point", "coordinates": [ 151.078, -33.148 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989676, "decimalLat": -34.024519 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364275, "decimalLat": -28.834226 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.957871, "decimalLat": -30.663283 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -30.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630326, "decimalLat": -34.395308 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403607, "decimalLat": -28.839277 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.839 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104788, "decimalLat": -29.476965 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.485444, "decimalLat": -32.926768 }, "geometry": { "type": "Point", "coordinates": [ 151.485, -32.927 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785451, "decimalLat": -33.712788 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898474, "decimalLat": -31.433827 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929999, "decimalLat": -29.726763 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.461447, "decimalLat": -28.919346 }, "geometry": { "type": "Point", "coordinates": [ 153.461, -28.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526775, "decimalLat": -34.469617 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110989, "decimalLat": -29.487434 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.443037, "decimalLat": -28.983189 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919823, "decimalLat": -31.470525 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.863897, "decimalLat": -33.41413 }, "geometry": { "type": "Point", "coordinates": [ 150.864, -33.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.846846, "decimalLat": -31.545488 }, "geometry": { "type": "Point", "coordinates": [ 152.847, -31.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.815696, "decimalLat": -31.42658 }, "geometry": { "type": "Point", "coordinates": [ 152.816, -31.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636174, "decimalLat": -34.487722 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.800222, "decimalLat": -31.121862 }, "geometry": { "type": "Point", "coordinates": [ 152.8, -31.122 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520141, "decimalLat": -34.446981 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.73232, "decimalLat": -31.193047 }, "geometry": { "type": "Point", "coordinates": [ 152.732, -31.193 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374053, "decimalLat": -31.915482 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07705, "decimalLat": -29.45099 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49745, "decimalLat": -28.636812 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065318, "decimalLat": -32.710944 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.847722, "decimalLat": -34.056 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.649902, "decimalLat": -34.402331 }, "geometry": { "type": "Point", "coordinates": [ 150.65, -34.402 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.329026, "decimalLat": -28.929336 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -28.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079265, "decimalLat": -32.727606 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.380825, "decimalLat": -31.907842 }, "geometry": { "type": "Point", "coordinates": [ 152.381, -31.908 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.101093, "decimalLat": -33.77872 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613009, "decimalLat": -34.432142 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062539, "decimalLat": -32.739255 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9682, "decimalLat": -30.414884 }, "geometry": { "type": "Point", "coordinates": [ 152.968, -30.415 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.062859, "decimalLat": -30.325771 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -30.326 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915982, "decimalLat": -31.444741 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915061, "decimalLat": -31.481714 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615522, "decimalLat": -34.435617 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638851, "decimalLat": -34.489307 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.336578, "decimalLat": -32.303749 }, "geometry": { "type": "Point", "coordinates": [ 152.337, -32.304 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.81386, "decimalLat": -34.10442 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.104 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642042, "decimalLat": -34.395977 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07705, "decimalLat": -29.45099 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625699, "decimalLat": -34.386239 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515576, "decimalLat": -34.454479 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.551019, "decimalLat": -33.563057 }, "geometry": { "type": "Point", "coordinates": [ 149.551, -33.563 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.660063, "decimalLat": -34.455717 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.370115, "decimalLat": -29.090107 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -29.09 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.910112, "decimalLat": -36.460589 }, "geometry": { "type": "Point", "coordinates": [ 149.91, -36.461 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894572, "decimalLat": -31.448008 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926422, "decimalLat": -31.451806 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784906, "decimalLat": -33.717936 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605361, "decimalLat": -34.427151 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808197, "decimalLat": -34.097848 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.328297, "decimalLat": -28.814763 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87873, "decimalLat": -31.409817 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639112, "decimalLat": -34.491629 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60277, "decimalLat": -34.434827 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394938, "decimalLat": -28.960556 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517315, "decimalLat": -34.457259 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604568, "decimalLat": -34.42444 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812224, "decimalLat": -29.798684 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -29.799 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.082131, "decimalLat": -32.736321 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.487813, "decimalLat": -28.243765 }, "geometry": { "type": "Point", "coordinates": [ 153.488, -28.244 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63536, "decimalLat": -34.419694 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364275, "decimalLat": -28.834226 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.849796, "decimalLat": -31.526667 }, "geometry": { "type": "Point", "coordinates": [ 152.85, -31.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929196, "decimalLat": -31.457237 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.598475, "decimalLat": -34.763279 }, "geometry": { "type": "Point", "coordinates": [ 146.598, -34.763 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091741, "decimalLat": -29.487822 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103661, "decimalLat": -29.488142 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.741668, "decimalLat": -30.120163 }, "geometry": { "type": "Point", "coordinates": [ 152.742, -30.12 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.614638, "decimalLat": -28.663318 }, "geometry": { "type": "Point", "coordinates": [ 153.615, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615919, "decimalLat": -34.430811 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.657999, "decimalLat": -32.684466 }, "geometry": { "type": "Point", "coordinates": [ 151.658, -32.684 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32428, "decimalLat": -28.831246 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608632, "decimalLat": -34.434148 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.719811, "decimalLat": -30.168086 }, "geometry": { "type": "Point", "coordinates": [ 152.72, -30.168 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607514, "decimalLat": -34.421848 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.479561 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630964, "decimalLat": -34.386179 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.401708, "decimalLat": -31.920062 }, "geometry": { "type": "Point", "coordinates": [ 152.402, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.727631, "decimalLat": -34.20052 }, "geometry": { "type": "Point", "coordinates": [ 150.728, -34.201 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028729, "decimalLat": -32.190981 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.191 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.004017, "decimalLat": -29.185093 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -29.185 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82356, "decimalLat": -29.813599 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.814 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622863, "decimalLat": -34.383858 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607572, "decimalLat": -34.430485 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813125, "decimalLat": -34.145235 }, "geometry": { "type": "Point", "coordinates": [ 150.813, -34.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607411, "decimalLat": -34.433106 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922188, "decimalLat": -31.476999 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633635, "decimalLat": -34.41838 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.393294, "decimalLat": -32.022604 }, "geometry": { "type": "Point", "coordinates": [ 152.393, -32.023 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.743408, "decimalLat": -31.256856 }, "geometry": { "type": "Point", "coordinates": [ 152.743, -31.257 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634043, "decimalLat": -34.476033 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89989, "decimalLat": -31.409538 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.41 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314264, "decimalLat": -28.826328 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863743, "decimalLat": -29.6794 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -29.679 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.242891, "decimalLat": -33.12687 }, "geometry": { "type": "Point", "coordinates": [ 151.243, -33.127 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.305455, "decimalLat": -28.825656 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104273, "decimalLat": -29.482232 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10387, "decimalLat": -29.497268 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615831, "decimalLat": -34.435064 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103682, "decimalLat": -29.485795 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867747, "decimalLat": -31.5021 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.34067, "decimalLat": -28.974972 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -28.975 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071027, "decimalLat": -32.708891 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789395, "decimalLat": -34.203677 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.204 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637237, "decimalLat": -34.42376 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919406, "decimalLat": -31.443481 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.45094, "decimalLat": -28.933223 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872225, "decimalLat": -31.471467 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311638, "decimalLat": -28.821557 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.418019, "decimalLat": -28.873275 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -28.873 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360617, "decimalLat": -28.840581 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521527, "decimalLat": -34.452733 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881963, "decimalLat": -31.430871 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516162, "decimalLat": -34.446828 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.291483, "decimalLat": -28.828072 }, "geometry": { "type": "Point", "coordinates": [ 153.291, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.209622, "decimalLat": -28.928136 }, "geometry": { "type": "Point", "coordinates": [ 153.21, -28.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615863, "decimalLat": -34.43319 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851403, "decimalLat": -31.554457 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -31.554 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787241, "decimalLat": -33.703987 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.856978, "decimalLat": -30.601564 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -30.602 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104155, "decimalLat": -29.478744 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.022552, "decimalLat": -28.489326 }, "geometry": { "type": "Point", "coordinates": [ 153.023, -28.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.405749, "decimalLat": -28.84351 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.50663, "decimalLat": -28.25342 }, "geometry": { "type": "Point", "coordinates": [ 152.507, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614781, "decimalLat": -34.43142 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.517626, "decimalLat": -30.512281 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -30.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878965, "decimalLat": -31.449306 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063695, "decimalLat": -32.706478 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101569, "decimalLat": -29.489727 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552049, "decimalLat": -33.491105 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.85146, "decimalLat": -29.69253 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627993, "decimalLat": -34.420921 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.717883, "decimalLat": -32.662275 }, "geometry": { "type": "Point", "coordinates": [ 151.718, -32.662 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317651, "decimalLat": -28.862857 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01262, "decimalLat": -29.53804 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -29.538 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317651, "decimalLat": -28.862857 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.1166, "decimalLat": -29.7667 }, "geometry": { "type": "Point", "coordinates": [ 151.117, -29.767 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559633, "decimalLat": -28.393708 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786092, "decimalLat": -33.712259 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869901, "decimalLat": -31.46813 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615737, "decimalLat": -34.436063 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.116, "decimalLat": -29.496 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -29.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520603, "decimalLat": -34.453778 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616073, "decimalLat": -34.436512 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.502971, "decimalLat": -31.92674 }, "geometry": { "type": "Point", "coordinates": [ 152.503, -31.927 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534884, "decimalLat": -34.463344 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8965, "decimalLat": -31.43619 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615175, "decimalLat": -34.429426 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86574, "decimalLat": -30.40494 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -30.405 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7839, "decimalLat": -33.717632 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10917, "decimalLat": -29.49183 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5182, "decimalLat": -34.446725 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520003, "decimalLat": -34.46893 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615712, "decimalLat": -34.433908 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.655944, "decimalLat": -32.685139 }, "geometry": { "type": "Point", "coordinates": [ 151.656, -32.685 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906761, "decimalLat": -30.239996 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -30.24 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887338, "decimalLat": -31.439547 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890903, "decimalLat": -31.438015 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110511, "decimalLat": -29.49018 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616197, "decimalLat": -34.434422 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626919, "decimalLat": -34.385794 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525538, "decimalLat": -34.459892 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611393, "decimalLat": -34.419733 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627393, "decimalLat": -34.420234 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016582, "decimalLat": -36.557254 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10181, "decimalLat": -32.73423 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.800539, "decimalLat": -29.162889 }, "geometry": { "type": "Point", "coordinates": [ 152.801, -29.163 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.909982, "decimalLat": -36.631687 }, "geometry": { "type": "Point", "coordinates": [ 149.91, -36.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927995, "decimalLat": -31.457568 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091312, "decimalLat": -29.487714 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637851, "decimalLat": -34.488863 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82955, "decimalLat": -29.6429 }, "geometry": { "type": "Point", "coordinates": [ 152.83, -29.643 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104293, "decimalLat": -29.480044 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300439, "decimalLat": -28.825748 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403655, "decimalLat": -32.342547 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -32.343 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925267, "decimalLat": -31.459867 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.226752, "decimalLat": -28.888412 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -28.888 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313736, "decimalLat": -28.822447 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.992037, "decimalLat": -34.022847 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -34.023 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06661, "decimalLat": -32.709988 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063601, "decimalLat": -32.706532 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606884, "decimalLat": -34.438604 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.824751, "decimalLat": -34.149727 }, "geometry": { "type": "Point", "coordinates": [ 150.825, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.347076, "decimalLat": -28.811044 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.811 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6189, "decimalLat": -34.44002 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520431, "decimalLat": -34.465873 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884465, "decimalLat": -28.440333 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -28.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60675, "decimalLat": -34.438709 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927691, "decimalLat": -31.458629 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627369, "decimalLat": -34.420287 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315696, "decimalLat": -28.818295 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659709, "decimalLat": -34.455143 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.866156, "decimalLat": -30.877762 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -30.878 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.991689, "decimalLat": -32.720961 }, "geometry": { "type": "Point", "coordinates": [ 151.992, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092672, "decimalLat": -29.494436 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105206, "decimalLat": -29.48976 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.10237, "decimalLat": -33.778624 }, "geometry": { "type": "Point", "coordinates": [ 150.102, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603088, "decimalLat": -34.437781 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.438883, "decimalLat": -28.993718 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.994 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910601, "decimalLat": -31.437024 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808229, "decimalLat": -34.098155 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.353952, "decimalLat": -31.918223 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604747, "decimalLat": -34.427329 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562712, "decimalLat": -28.387266 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810885, "decimalLat": -29.806272 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -29.806 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640094, "decimalLat": -34.492711 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.123214, "decimalLat": -30.300848 }, "geometry": { "type": "Point", "coordinates": [ 153.123, -30.301 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.052394, "decimalLat": -33.671115 }, "geometry": { "type": "Point", "coordinates": [ 150.052, -33.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790539, "decimalLat": -34.143183 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520616, "decimalLat": -34.465877 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905271, "decimalLat": -31.443445 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906083, "decimalLat": -31.442625 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527214, "decimalLat": -34.448088 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103758, "decimalLat": -29.485604 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.513861, "decimalLat": -32.029483 }, "geometry": { "type": "Point", "coordinates": [ 152.514, -32.029 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909624, "decimalLat": -31.431087 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103752, "decimalLat": -29.485548 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.759104, "decimalLat": -28.733492 }, "geometry": { "type": "Point", "coordinates": [ 152.759, -28.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516556, "decimalLat": -34.448972 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615307, "decimalLat": -34.431304 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065526, "decimalLat": -32.742849 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.743 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615753, "decimalLat": -34.438561 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600543, "decimalLat": -34.420611 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52411, "decimalLat": -34.452614 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.358798, "decimalLat": -31.926849 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.927 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.469493, "decimalLat": -28.703925 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63949, "decimalLat": -33.54144 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -33.541 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.270246, "decimalLat": -32.484725 }, "geometry": { "type": "Point", "coordinates": [ 152.27, -32.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785911, "decimalLat": -33.706227 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630785, "decimalLat": -34.420669 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619976, "decimalLat": -34.40094 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626027, "decimalLat": -34.388869 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613635, "decimalLat": -34.431929 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.168747, "decimalLat": -32.090002 }, "geometry": { "type": "Point", "coordinates": [ 152.169, -32.09 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522475, "decimalLat": -34.464833 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608734, "decimalLat": -34.453461 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.131888, "decimalLat": -29.088158 }, "geometry": { "type": "Point", "coordinates": [ 153.132, -29.088 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513826, "decimalLat": -34.446356 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060948, "decimalLat": -32.710655 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605605, "decimalLat": -34.437281 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899797, "decimalLat": -29.63175 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.053718, "decimalLat": -34.042188 }, "geometry": { "type": "Point", "coordinates": [ 151.054, -34.042 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634359, "decimalLat": -34.420107 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619243, "decimalLat": -34.400701 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637358, "decimalLat": -34.423708 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108221, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534908, "decimalLat": -34.459188 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603653, "decimalLat": -34.419139 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60742, "decimalLat": -34.433151 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637347, "decimalLat": -34.423717 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630908, "decimalLat": -34.393967 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.382755, "decimalLat": -28.332256 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -28.332 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638275, "decimalLat": -34.490801 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512879, "decimalLat": -34.445986 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.015486, "decimalLat": -30.37941 }, "geometry": { "type": "Point", "coordinates": [ 153.015, -30.379 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108189, "decimalLat": -29.490189 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519223, "decimalLat": -34.459962 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605696, "decimalLat": -34.423417 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63378, "decimalLat": -34.53402 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.534 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632654, "decimalLat": -34.418046 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520778, "decimalLat": -34.467016 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606978, "decimalLat": -34.429951 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.382897, "decimalLat": -31.918364 }, "geometry": { "type": "Point", "coordinates": [ 152.383, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611755, "decimalLat": -34.419631 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.03232, "decimalLat": -31.13645 }, "geometry": { "type": "Point", "coordinates": [ 150.032, -31.136 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.606383, "decimalLat": -29.222514 }, "geometry": { "type": "Point", "coordinates": [ 152.606, -29.223 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863552, "decimalLat": -31.299418 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.299 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955099, "decimalLat": -36.573659 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.574 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.961801, "decimalLat": -32.735331 }, "geometry": { "type": "Point", "coordinates": [ 151.962, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514086, "decimalLat": -34.446389 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09349, "decimalLat": -29.488564 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990439, "decimalLat": -34.024327 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40054, "decimalLat": -28.25768 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523448, "decimalLat": -34.4636 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519898, "decimalLat": -34.452601 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599395, "decimalLat": -34.416622 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.988647, "decimalLat": -34.028132 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.028 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.380443, "decimalLat": -28.876698 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -28.877 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513916, "decimalLat": -34.445862 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869051, "decimalLat": -29.683564 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -29.684 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109283, "decimalLat": -29.490866 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597761, "decimalLat": -34.428102 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79083, "decimalLat": -34.197805 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.198 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.48358, "decimalLat": -28.21589 }, "geometry": { "type": "Point", "coordinates": [ 153.484, -28.216 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522717, "decimalLat": -34.465857 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303135, "decimalLat": -28.824882 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617426, "decimalLat": -34.438278 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921401, "decimalLat": -31.453851 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412613, "decimalLat": -31.932217 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102819, "decimalLat": -29.487383 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627397, "decimalLat": -34.38657 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603334, "decimalLat": -34.436398 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918992, "decimalLat": -31.478788 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.067591, "decimalLat": -33.798157 }, "geometry": { "type": "Point", "coordinates": [ 150.068, -33.798 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517879, "decimalLat": -34.43773 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.487575, "decimalLat": -28.710095 }, "geometry": { "type": "Point", "coordinates": [ 153.488, -28.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605542, "decimalLat": -34.432249 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.238283, "decimalLat": -36.17393 }, "geometry": { "type": "Point", "coordinates": [ 149.238, -36.174 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379291, "decimalLat": -31.919808 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.850512, "decimalLat": -32.791268 }, "geometry": { "type": "Point", "coordinates": [ 151.851, -32.791 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626721, "decimalLat": -34.389333 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360617, "decimalLat": -28.840581 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.773366, "decimalLat": -32.585015 }, "geometry": { "type": "Point", "coordinates": [ 151.773, -32.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624103, "decimalLat": -34.388832 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10931, "decimalLat": -29.490675 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10033, "decimalLat": -29.500849 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785517, "decimalLat": -31.632377 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.456854, "decimalLat": -31.226452 }, "geometry": { "type": "Point", "coordinates": [ 152.457, -31.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.76716, "decimalLat": -32.563716 }, "geometry": { "type": "Point", "coordinates": [ 151.767, -32.564 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.212171, "decimalLat": -28.582341 }, "geometry": { "type": "Point", "coordinates": [ 153.212, -28.582 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909109, "decimalLat": -31.457637 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657608, "decimalLat": -34.455932 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.090208, "decimalLat": -28.783147 }, "geometry": { "type": "Point", "coordinates": [ 152.09, -28.783 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63101, "decimalLat": -34.389966 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.024977, "decimalLat": -34.03722 }, "geometry": { "type": "Point", "coordinates": [ 151.025, -34.037 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875853, "decimalLat": -31.424978 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520945, "decimalLat": -34.454002 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525054, "decimalLat": -34.453418 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.846051, "decimalLat": -29.834008 }, "geometry": { "type": "Point", "coordinates": [ 150.846, -29.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90259, "decimalLat": -30.24125 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.241 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109294, "decimalLat": -29.490904 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627285, "decimalLat": -34.421331 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657839, "decimalLat": -34.455855 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517743, "decimalLat": -28.66879 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.749453, "decimalLat": -30.90373 }, "geometry": { "type": "Point", "coordinates": [ 152.749, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.607622, "decimalLat": -30.343688 }, "geometry": { "type": "Point", "coordinates": [ 152.608, -30.344 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300639, "decimalLat": -28.826227 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633072, "decimalLat": -34.417522 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518799, "decimalLat": -34.447449 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611433, "decimalLat": -34.43286 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925776, "decimalLat": -31.447463 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659134, "decimalLat": -34.4578 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894407, "decimalLat": -31.430976 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.013272, "decimalLat": -34.046067 }, "geometry": { "type": "Point", "coordinates": [ 151.013, -34.046 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.104554, "decimalLat": -32.75184 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.752 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786644, "decimalLat": -33.704004 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6097, "decimalLat": -32.599567 }, "geometry": { "type": "Point", "coordinates": [ 151.61, -32.6 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812671, "decimalLat": -29.797683 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -29.798 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.052888, "decimalLat": -28.446447 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -28.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526062, "decimalLat": -34.458 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52388, "decimalLat": -34.464077 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.921108, "decimalLat": -33.967159 }, "geometry": { "type": "Point", "coordinates": [ 150.921, -33.967 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824789, "decimalLat": -31.256682 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.257 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.466231, "decimalLat": -34.471482 }, "geometry": { "type": "Point", "coordinates": [ 150.466, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.641541, "decimalLat": -30.489931 }, "geometry": { "type": "Point", "coordinates": [ 151.642, -30.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520122, "decimalLat": -34.453489 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809452, "decimalLat": -31.651825 }, "geometry": { "type": "Point", "coordinates": [ 152.809, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.135067, "decimalLat": -28.836206 }, "geometry": { "type": "Point", "coordinates": [ 153.135, -28.836 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519043, "decimalLat": -34.436618 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4034, "decimalLat": -28.569438 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095191, "decimalLat": -30.33686 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -30.337 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.777388, "decimalLat": -30.192663 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -30.193 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.651244, "decimalLat": -34.401797 }, "geometry": { "type": "Point", "coordinates": [ 150.651, -34.402 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609529, "decimalLat": -34.419083 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.649295, "decimalLat": -32.609009 }, "geometry": { "type": "Point", "coordinates": [ 151.649, -32.609 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610289, "decimalLat": -34.419134 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60863, "decimalLat": -28.66111 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639997, "decimalLat": -34.415357 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103827, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521578, "decimalLat": -34.465734 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516391, "decimalLat": -34.447544 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.627963, "decimalLat": -28.640459 }, "geometry": { "type": "Point", "coordinates": [ 153.628, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107969, "decimalLat": -29.490395 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609027, "decimalLat": -34.420687 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104101, "decimalLat": -29.484063 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630786, "decimalLat": -34.387095 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644424, "decimalLat": -34.396374 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79662, "decimalLat": -34.13972 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103677, "decimalLat": -29.487514 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929449, "decimalLat": -29.002832 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -29.003 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639049, "decimalLat": -34.491546 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631488, "decimalLat": -34.388416 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615098, "decimalLat": -34.431381 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659383, "decimalLat": -34.458238 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638973, "decimalLat": -34.491554 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881577, "decimalLat": -31.456291 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898257, "decimalLat": -31.465408 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642155, "decimalLat": -34.394302 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.64197, "decimalLat": -32.636285 }, "geometry": { "type": "Point", "coordinates": [ 151.642, -32.636 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.746057, "decimalLat": -34.3372 }, "geometry": { "type": "Point", "coordinates": [ 150.746, -34.337 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.249903, "decimalLat": -32.417866 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -32.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.807222, "decimalLat": -34.109219 }, "geometry": { "type": "Point", "coordinates": [ 150.807, -34.109 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534642, "decimalLat": -34.462311 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872573, "decimalLat": -31.407595 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640976, "decimalLat": -34.393657 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334493, "decimalLat": -28.813462 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.813 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108146, "decimalLat": -29.490189 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916678, "decimalLat": -31.435459 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911976, "decimalLat": -31.455807 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627438, "decimalLat": -34.421307 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878917, "decimalLat": -31.44848 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104079, "decimalLat": -29.48431 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395129, "decimalLat": -28.960044 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522326, "decimalLat": -34.451451 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530673, "decimalLat": -34.469939 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597583, "decimalLat": -34.415306 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521609, "decimalLat": -34.46578 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.759286, "decimalLat": -34.376047 }, "geometry": { "type": "Point", "coordinates": [ 150.759, -34.376 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063426, "decimalLat": -32.706118 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.497035, "decimalLat": -28.685331 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.685 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.817813, "decimalLat": -31.572524 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103774, "decimalLat": -29.485566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61652, "decimalLat": -34.431102 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.84256, "decimalLat": -31.535463 }, "geometry": { "type": "Point", "coordinates": [ 152.843, -31.535 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.308213, "decimalLat": -28.823205 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103929, "decimalLat": -29.489591 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915958, "decimalLat": -31.444746 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822405, "decimalLat": -31.099703 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604769, "decimalLat": -34.427302 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519221, "decimalLat": -34.448269 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192632, "decimalLat": -32.228945 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.10107, "decimalLat": -33.776844 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -33.777 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.275348, "decimalLat": -28.822516 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880918, "decimalLat": -31.453439 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609102, "decimalLat": -34.420707 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103945, "decimalLat": -29.485496 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919471, "decimalLat": -31.481276 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637333, "decimalLat": -34.423807 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896556, "decimalLat": -31.436271 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623358, "decimalLat": -34.383282 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896852, "decimalLat": -29.632753 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -29.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516735, "decimalLat": -34.448796 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896852, "decimalLat": -29.632753 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -29.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868002, "decimalLat": -29.667173 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.968372, "decimalLat": -33.965225 }, "geometry": { "type": "Point", "coordinates": [ 150.968, -33.965 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413267, "decimalLat": -31.944004 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.944 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319984, "decimalLat": -28.914209 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103731, "decimalLat": -29.48565 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603045, "decimalLat": -34.427476 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812345, "decimalLat": -34.124693 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.036145, "decimalLat": -32.768798 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.769 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89648, "decimalLat": -31.424534 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.737638, "decimalLat": -33.554436 }, "geometry": { "type": "Point", "coordinates": [ 149.738, -33.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927809, "decimalLat": -31.464743 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514129, "decimalLat": -34.446408 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396987, "decimalLat": -28.289961 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.29 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52106, "decimalLat": -34.466688 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786883, "decimalLat": -33.706694 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516832, "decimalLat": -34.448834 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611374, "decimalLat": -34.430731 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893999, "decimalLat": -31.502513 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.503 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785669, "decimalLat": -33.713976 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638963, "decimalLat": -34.418871 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603801, "decimalLat": -34.440238 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606059, "decimalLat": -34.457223 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297464, "decimalLat": -28.829658 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657734, "decimalLat": -34.456123 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.944433, "decimalLat": -29.346563 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -29.347 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926102, "decimalLat": -31.444505 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.991638, "decimalLat": -34.021692 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -34.022 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617099, "decimalLat": -34.433719 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.032588, "decimalLat": -30.380655 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -30.381 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.158305, "decimalLat": -32.714161 }, "geometry": { "type": "Point", "coordinates": [ 152.158, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63033, "decimalLat": -34.420985 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.488711, "decimalLat": -32.032221 }, "geometry": { "type": "Point", "coordinates": [ 152.489, -32.032 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640028, "decimalLat": -34.49198 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.99566, "decimalLat": -30.383649 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -30.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39589, "decimalLat": -29.018366 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -29.018 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626725, "decimalLat": -34.385331 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.983387, "decimalLat": -34.095124 }, "geometry": { "type": "Point", "coordinates": [ 150.983, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.732148, "decimalLat": -34.166609 }, "geometry": { "type": "Point", "coordinates": [ 150.732, -34.167 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09114, "decimalLat": -29.480023 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990995, "decimalLat": -34.024433 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790456, "decimalLat": -30.251169 }, "geometry": { "type": "Point", "coordinates": [ 152.79, -30.251 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886806, "decimalLat": -31.44302 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627546, "decimalLat": -34.420958 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.801183, "decimalLat": -31.473967 }, "geometry": { "type": "Point", "coordinates": [ 152.801, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609113, "decimalLat": -34.418796 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.840124, "decimalLat": -34.069695 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794816, "decimalLat": -34.202843 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.203 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520229, "decimalLat": -34.465716 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640809, "decimalLat": -34.494402 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103779, "decimalLat": -29.485562 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520543, "decimalLat": -34.465758 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644223, "decimalLat": -34.399291 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520763, "decimalLat": -34.465321 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515576, "decimalLat": -34.454479 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928856, "decimalLat": -29.726469 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -29.726 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.30042, "decimalLat": -31.94825 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104004, "decimalLat": -29.484334 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.169342, "decimalLat": -32.747066 }, "geometry": { "type": "Point", "coordinates": [ 152.169, -32.747 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.30042, "decimalLat": -31.94825 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51715, "decimalLat": -34.44655 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605631, "decimalLat": -34.434829 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396523, "decimalLat": -28.262928 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.263 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916577, "decimalLat": -31.44468 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637438, "decimalLat": -34.42279 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645311, "decimalLat": -34.396923 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611556, "decimalLat": -34.420511 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.20833, "decimalLat": -32.2346 }, "geometry": { "type": "Point", "coordinates": [ 152.208, -32.235 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520862, "decimalLat": -34.466747 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.316653, "decimalLat": -36.297917 }, "geometry": { "type": "Point", "coordinates": [ 149.317, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599883, "decimalLat": -34.425043 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.009982, "decimalLat": -30.372653 }, "geometry": { "type": "Point", "coordinates": [ 153.01, -30.373 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53375, "decimalLat": -34.478566 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632816, "decimalLat": -34.418869 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.94349, "decimalLat": -30.38896 }, "geometry": { "type": "Point", "coordinates": [ 152.943, -30.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904996, "decimalLat": -31.442945 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615138, "decimalLat": -34.429209 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630264, "decimalLat": -34.421037 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61546, "decimalLat": -34.435472 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639269, "decimalLat": -34.493011 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.47206, "decimalLat": -34.4908 }, "geometry": { "type": "Point", "coordinates": [ 150.472, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093531, "decimalLat": -29.492883 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812345, "decimalLat": -34.124693 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.125 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.32655, "decimalLat": -36.145066 }, "geometry": { "type": "Point", "coordinates": [ 149.327, -36.145 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081127, "decimalLat": -32.736579 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402251, "decimalLat": -28.259701 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616423, "decimalLat": -34.434544 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517241, "decimalLat": -34.451573 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627544, "decimalLat": -34.389836 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888522, "decimalLat": -28.804711 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -28.805 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51672, "decimalLat": -34.446361 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902289, "decimalLat": -30.46223 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -30.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886575, "decimalLat": -30.888511 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -30.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616765, "decimalLat": -34.433216 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522462, "decimalLat": -34.465635 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627558, "decimalLat": -34.420913 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926893, "decimalLat": -31.472744 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.817219, "decimalLat": -31.449126 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.11261, "decimalLat": -33.12617 }, "geometry": { "type": "Point", "coordinates": [ 151.113, -33.126 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.367889, "decimalLat": -31.875324 }, "geometry": { "type": "Point", "coordinates": [ 152.368, -31.875 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.940765, "decimalLat": -34.114803 }, "geometry": { "type": "Point", "coordinates": [ 150.941, -34.115 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5914, "decimalLat": -28.63691 }, "geometry": { "type": "Point", "coordinates": [ 153.591, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.815305, "decimalLat": -31.429334 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627476, "decimalLat": -34.421524 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524203, "decimalLat": -34.447964 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631484, "decimalLat": -34.387803 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.357334, "decimalLat": -28.891935 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635258, "decimalLat": -34.420224 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645146, "decimalLat": -34.393124 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101966, "decimalLat": -29.488821 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016902, "decimalLat": -36.541583 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.879793, "decimalLat": -34.053072 }, "geometry": { "type": "Point", "coordinates": [ 150.88, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335481, "decimalLat": -28.869015 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516314, "decimalLat": -34.44537 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276239, "decimalLat": -28.857815 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -28.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604874, "decimalLat": -34.438862 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532826, "decimalLat": -34.481468 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893571, "decimalLat": -31.456518 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637387, "decimalLat": -34.423817 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926382, "decimalLat": -31.454527 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.406485, "decimalLat": -28.97575 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.976 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104074, "decimalLat": -29.484366 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627119, "decimalLat": -34.386799 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630171, "decimalLat": -34.420864 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.295075, "decimalLat": -31.951946 }, "geometry": { "type": "Point", "coordinates": [ 152.295, -31.952 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.13899, "decimalLat": -32.723846 }, "geometry": { "type": "Point", "coordinates": [ 152.139, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108119, "decimalLat": -29.491025 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412543, "decimalLat": -31.932266 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784018, "decimalLat": -33.716876 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.583393, "decimalLat": -32.699885 }, "geometry": { "type": "Point", "coordinates": [ 151.583, -32.7 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400089, "decimalLat": -28.260532 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.44189, "decimalLat": -34.47006 }, "geometry": { "type": "Point", "coordinates": [ 150.442, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.678615, "decimalLat": -33.560279 }, "geometry": { "type": "Point", "coordinates": [ 150.679, -33.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628359, "decimalLat": -34.391015 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103849, "decimalLat": -29.478034 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.274431, "decimalLat": -29.007408 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -29.007 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519545, "decimalLat": -34.454992 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293195, "decimalLat": -28.864618 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.162699, "decimalLat": -32.713622 }, "geometry": { "type": "Point", "coordinates": [ 152.163, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316288, "decimalLat": -28.63844 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522459, "decimalLat": -34.464995 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.083773, "decimalLat": -32.727503 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515915, "decimalLat": -34.447102 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633756, "decimalLat": -33.773491 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921277, "decimalLat": -31.479148 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.778695, "decimalLat": -31.631593 }, "geometry": { "type": "Point", "coordinates": [ 152.779, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306193, "decimalLat": -28.653247 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104096, "decimalLat": -29.47993 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627322, "decimalLat": -34.421557 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.594631, "decimalLat": -34.427599 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288292, "decimalLat": -28.809314 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514755, "decimalLat": -34.445852 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610062, "decimalLat": -34.454993 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.732519, "decimalLat": -31.472074 }, "geometry": { "type": "Point", "coordinates": [ 152.733, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.385759, "decimalLat": -31.91282 }, "geometry": { "type": "Point", "coordinates": [ 152.386, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192918, "decimalLat": -31.566678 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -31.567 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627594, "decimalLat": -34.53402 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.534 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.040472, "decimalLat": -32.649546 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.65 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400686, "decimalLat": -28.257627 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.002296, "decimalLat": -34.043136 }, "geometry": { "type": "Point", "coordinates": [ 151.002, -34.043 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51996, "decimalLat": -34.446481 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603344, "decimalLat": -34.439093 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611466, "decimalLat": -34.430904 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.746224, "decimalLat": -31.256329 }, "geometry": { "type": "Point", "coordinates": [ 152.746, -31.256 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517337, "decimalLat": -28.667703 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.668 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632625, "decimalLat": -34.418306 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522273, "decimalLat": -34.465793 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520274, "decimalLat": -34.465663 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895278, "decimalLat": -31.437377 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615398, "decimalLat": -34.428862 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.824101, "decimalLat": -34.150289 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.006019, "decimalLat": -28.627209 }, "geometry": { "type": "Point", "coordinates": [ 153.006, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914346, "decimalLat": -31.466482 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603104, "decimalLat": -34.434924 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.933578, "decimalLat": -31.47209 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.169695, "decimalLat": -28.552523 }, "geometry": { "type": "Point", "coordinates": [ 153.17, -28.553 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303174, "decimalLat": -28.827996 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.122613, "decimalLat": -35.074457 }, "geometry": { "type": "Point", "coordinates": [ 150.123, -35.074 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.998977, "decimalLat": -36.551144 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644405, "decimalLat": -34.391614 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104246, "decimalLat": -29.480194 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.984444, "decimalLat": -32.283338 }, "geometry": { "type": "Point", "coordinates": [ 151.984, -32.283 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52808, "decimalLat": -34.465596 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525205, "decimalLat": -34.463788 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905478, "decimalLat": -31.467655 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10409, "decimalLat": -29.480341 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.882544, "decimalLat": -29.848616 }, "geometry": { "type": "Point", "coordinates": [ 150.883, -29.849 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639751, "decimalLat": -34.400098 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603761, "decimalLat": -34.439345 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.326049, "decimalLat": -36.334367 }, "geometry": { "type": "Point", "coordinates": [ 149.326, -36.334 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822621, "decimalLat": -34.102113 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.961042, "decimalLat": -31.262194 }, "geometry": { "type": "Point", "coordinates": [ 152.961, -31.262 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.265653, "decimalLat": -28.829788 }, "geometry": { "type": "Point", "coordinates": [ 153.266, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103865, "decimalLat": -29.489526 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600743, "decimalLat": -34.428089 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095675, "decimalLat": -30.301528 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -30.302 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90555, "decimalLat": -31.436121 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299542, "decimalLat": -28.888539 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615448, "decimalLat": -34.435535 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.317977, "decimalLat": -36.298474 }, "geometry": { "type": "Point", "coordinates": [ 149.318, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867761, "decimalLat": -29.66734 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617521, "decimalLat": -34.399685 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.846913, "decimalLat": -34.076804 }, "geometry": { "type": "Point", "coordinates": [ 150.847, -34.077 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787661, "decimalLat": -31.636001 }, "geometry": { "type": "Point", "coordinates": [ 152.788, -31.636 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.425778, "decimalLat": -28.62343 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.623 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792467, "decimalLat": -34.13811 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.138 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092165, "decimalLat": -29.488233 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521612, "decimalLat": -34.46569 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633015, "decimalLat": -34.417611 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322439, "decimalLat": -28.815967 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523134, "decimalLat": -28.710546 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610031, "decimalLat": -34.419787 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.780912, "decimalLat": -31.600288 }, "geometry": { "type": "Point", "coordinates": [ 152.781, -31.6 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790596, "decimalLat": -34.188134 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603669, "decimalLat": -34.436494 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623098, "decimalLat": -34.382862 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104235, "decimalLat": -29.482209 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016902, "decimalLat": -36.541583 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608353, "decimalLat": -34.43518 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522904, "decimalLat": -34.452536 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316426, "decimalLat": -28.943486 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.943 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898276, "decimalLat": -31.443867 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516522, "decimalLat": -34.450125 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10394, "decimalLat": -29.489587 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108124, "decimalLat": -29.490572 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104042, "decimalLat": -29.485165 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.489895 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917291, "decimalLat": -31.486389 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616984, "decimalLat": -34.433536 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784697, "decimalLat": -33.713283 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785887, "decimalLat": -33.712923 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091307, "decimalLat": -29.487957 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927149, "decimalLat": -31.458083 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10939, "decimalLat": -29.490581 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564393, "decimalLat": -28.380908 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514698, "decimalLat": -34.444093 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642119, "decimalLat": -34.396366 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613983, "decimalLat": -34.442655 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.059278, "decimalLat": -32.739099 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611766, "decimalLat": -34.419623 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618086, "decimalLat": -33.431233 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -33.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.390764, "decimalLat": -31.95843 }, "geometry": { "type": "Point", "coordinates": [ 152.391, -31.958 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.745544, "decimalLat": -28.653467 }, "geometry": { "type": "Point", "coordinates": [ 152.746, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065339, "decimalLat": -32.710853 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.718235, "decimalLat": -32.71748 }, "geometry": { "type": "Point", "coordinates": [ 151.718, -32.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.961856, "decimalLat": -36.436911 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786387, "decimalLat": -33.706305 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615737, "decimalLat": -34.439904 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.42434, "decimalLat": -31.800914 }, "geometry": { "type": "Point", "coordinates": [ 152.424, -31.801 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.795108, "decimalLat": -32.562904 }, "geometry": { "type": "Point", "coordinates": [ 151.795, -32.563 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317852, "decimalLat": -28.929063 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529963, "decimalLat": -34.442329 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.525899, "decimalLat": -28.679198 }, "geometry": { "type": "Point", "coordinates": [ 153.526, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.727327, "decimalLat": -32.233822 }, "geometry": { "type": "Point", "coordinates": [ 151.727, -32.234 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103763, "decimalLat": -29.485632 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917671, "decimalLat": -31.460451 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789656, "decimalLat": -34.19702 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.197 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627335, "decimalLat": -34.420341 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.182249, "decimalLat": -28.84733 }, "geometry": { "type": "Point", "coordinates": [ 153.182, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360699, "decimalLat": -28.840527 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604284, "decimalLat": -34.422569 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104176, "decimalLat": -29.478823 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.446229, "decimalLat": -28.711586 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513018, "decimalLat": -34.447187 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516463, "decimalLat": -34.47012 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616411, "decimalLat": -34.436103 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898276, "decimalLat": -31.443867 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893571, "decimalLat": -31.460184 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.382958, "decimalLat": -28.905523 }, "geometry": { "type": "Point", "coordinates": [ 152.383, -28.906 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621181, "decimalLat": -34.398701 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89266, "decimalLat": -33.991958 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.992 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784888, "decimalLat": -33.704792 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96634, "decimalLat": -36.680336 }, "geometry": { "type": "Point", "coordinates": [ 149.966, -36.68 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.874367, "decimalLat": -29.673289 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -29.673 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.014745, "decimalLat": -32.722588 }, "geometry": { "type": "Point", "coordinates": [ 152.015, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.174291, "decimalLat": -33.185386 }, "geometry": { "type": "Point", "coordinates": [ 149.174, -33.185 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879142, "decimalLat": -31.297039 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.297 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808591, "decimalLat": -34.098321 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427967, "decimalLat": -28.626458 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.626 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611766, "decimalLat": -34.419623 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.861647, "decimalLat": -29.609175 }, "geometry": { "type": "Point", "coordinates": [ 150.862, -29.609 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615846, "decimalLat": -34.436444 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626526, "decimalLat": -34.386219 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.095163, "decimalLat": -34.893436 }, "geometry": { "type": "Point", "coordinates": [ 150.095, -34.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.310281, "decimalLat": -28.823968 }, "geometry": { "type": "Point", "coordinates": [ 153.31, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.913134, "decimalLat": -36.588285 }, "geometry": { "type": "Point", "coordinates": [ 149.913, -36.588 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072106, "decimalLat": -32.710502 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.772924, "decimalLat": -29.751646 }, "geometry": { "type": "Point", "coordinates": [ 152.773, -29.752 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103393, "decimalLat": -29.486402 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61346, "decimalLat": -34.431953 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515399, "decimalLat": -34.440619 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521665, "decimalLat": -34.465375 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633487, "decimalLat": -34.392358 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522722, "decimalLat": -34.464964 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293128, "decimalLat": -28.864606 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104208, "decimalLat": -29.479131 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.158437, "decimalLat": -29.38273 }, "geometry": { "type": "Point", "coordinates": [ 153.158, -29.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635393, "decimalLat": -34.488401 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.291336, "decimalLat": -28.711453 }, "geometry": { "type": "Point", "coordinates": [ 153.291, -28.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926392, "decimalLat": -31.455623 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064604, "decimalLat": -32.709004 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603993, "decimalLat": -34.440368 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.401531, "decimalLat": -31.92589 }, "geometry": { "type": "Point", "coordinates": [ 152.402, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.988756, "decimalLat": -34.027187 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.027 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908565, "decimalLat": -31.454628 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.913678, "decimalLat": -34.068368 }, "geometry": { "type": "Point", "coordinates": [ 150.914, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624591, "decimalLat": -34.388129 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848102, "decimalLat": -34.069903 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636292, "decimalLat": -34.421749 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926635, "decimalLat": -31.444425 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.837037, "decimalLat": -31.528203 }, "geometry": { "type": "Point", "coordinates": [ 152.837, -31.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.577303, "decimalLat": -30.161511 }, "geometry": { "type": "Point", "coordinates": [ 152.577, -30.162 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646693, "decimalLat": -34.395751 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.048473, "decimalLat": -30.450237 }, "geometry": { "type": "Point", "coordinates": [ 153.048, -30.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606707, "decimalLat": -34.456226 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10379, "decimalLat": -29.485594 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.068806, "decimalLat": -33.785313 }, "geometry": { "type": "Point", "coordinates": [ 150.069, -33.785 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.304704, "decimalLat": -31.942993 }, "geometry": { "type": "Point", "coordinates": [ 152.305, -31.943 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.479122, "decimalLat": -28.249424 }, "geometry": { "type": "Point", "coordinates": [ 153.479, -28.249 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.205909, "decimalLat": -28.745332 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -28.745 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514541, "decimalLat": -34.443874 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.977173, "decimalLat": -34.105455 }, "geometry": { "type": "Point", "coordinates": [ 150.977, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.194095, "decimalLat": -32.224416 }, "geometry": { "type": "Point", "coordinates": [ 152.194, -32.224 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336688, "decimalLat": -28.868027 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -28.868 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375992, "decimalLat": -28.951021 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.951 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625384, "decimalLat": -34.385836 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104133, "decimalLat": -29.483652 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925648, "decimalLat": -31.452901 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104163, "decimalLat": -29.489525 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565173, "decimalLat": -28.386314 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637393, "decimalLat": -34.420535 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615543, "decimalLat": -34.435627 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092347, "decimalLat": -29.488387 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.972092, "decimalLat": -30.428423 }, "geometry": { "type": "Point", "coordinates": [ 152.972, -30.428 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.705301, "decimalLat": -34.255293 }, "geometry": { "type": "Point", "coordinates": [ 150.705, -34.255 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907276, "decimalLat": -31.236216 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.236 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.827792, "decimalLat": -34.156389 }, "geometry": { "type": "Point", "coordinates": [ 150.828, -34.156 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518813, "decimalLat": -34.447359 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62593, "decimalLat": -34.388858 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.828116, "decimalLat": -31.503341 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -31.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103859, "decimalLat": -29.485669 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.506151, "decimalLat": -28.595952 }, "geometry": { "type": "Point", "coordinates": [ 153.506, -28.596 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002944, "decimalLat": -29.186068 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -29.186 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.030408, "decimalLat": -32.73295 }, "geometry": { "type": "Point", "coordinates": [ 152.03, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.310656, "decimalLat": -28.813946 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636017, "decimalLat": -34.485564 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393838, "decimalLat": -28.959097 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29311, "decimalLat": -28.864641 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.806267, "decimalLat": -31.12493 }, "geometry": { "type": "Point", "coordinates": [ 152.806, -31.125 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562111, "decimalLat": -28.385548 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610852, "decimalLat": -34.452484 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790454, "decimalLat": -34.196939 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.197 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631689, "decimalLat": -34.388249 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605136, "decimalLat": -34.426255 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875873, "decimalLat": -29.655259 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -29.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513127, "decimalLat": -34.447163 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.803577, "decimalLat": -31.676443 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -31.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59463, "decimalLat": -34.427635 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.168833, "decimalLat": -28.646094 }, "geometry": { "type": "Point", "coordinates": [ 153.169, -28.646 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610333, "decimalLat": -34.419135 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6317, "decimalLat": -34.388222 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784393, "decimalLat": -31.630403 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.820736, "decimalLat": -31.200466 }, "geometry": { "type": "Point", "coordinates": [ 152.821, -31.2 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79443, "decimalLat": -31.643823 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.644 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108183, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.550649, "decimalLat": -28.299886 }, "geometry": { "type": "Point", "coordinates": [ 153.551, -28.3 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819273, "decimalLat": -31.130318 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.13 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090869, "decimalLat": -30.36316 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -30.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842335, "decimalLat": -34.068546 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437014, "decimalLat": -28.991215 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.991 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.635618, "decimalLat": -32.619858 }, "geometry": { "type": "Point", "coordinates": [ 151.636, -32.62 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926364, "decimalLat": -31.452438 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.00184, "decimalLat": -30.408334 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -30.408 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984067, "decimalLat": -34.093875 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628493, "decimalLat": -34.42057 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521887, "decimalLat": -34.465966 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634921, "decimalLat": -34.487743 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364275, "decimalLat": -28.834226 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.221268, "decimalLat": -28.826448 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.190211, "decimalLat": -31.595466 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -31.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643754, "decimalLat": -34.394666 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604325, "decimalLat": -34.432937 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.371368, "decimalLat": -31.918776 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.110282, "decimalLat": -29.762752 }, "geometry": { "type": "Point", "coordinates": [ 151.11, -29.763 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394458, "decimalLat": -28.960427 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789703, "decimalLat": -34.163407 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.163 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.682329, "decimalLat": -32.516009 }, "geometry": { "type": "Point", "coordinates": [ 151.682, -32.516 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099305, "decimalLat": -29.490642 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1442, "decimalLat": -29.462823 }, "geometry": { "type": "Point", "coordinates": [ 153.144, -29.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.595655, "decimalLat": -28.715282 }, "geometry": { "type": "Point", "coordinates": [ 153.596, -28.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622939, "decimalLat": -34.383851 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521622, "decimalLat": -34.465699 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92898, "decimalLat": -31.45018 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.038068, "decimalLat": -28.600327 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -28.6 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071416, "decimalLat": -30.886911 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517848, "decimalLat": -34.447971 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.547784, "decimalLat": -33.623333 }, "geometry": { "type": "Point", "coordinates": [ 149.548, -33.623 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604367, "decimalLat": -34.431477 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614548, "decimalLat": -34.4354 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630078, "decimalLat": -34.421061 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603501, "decimalLat": -34.435517 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785601, "decimalLat": -33.716998 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525483, "decimalLat": -34.459926 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.612585, "decimalLat": -29.79097 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -29.791 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632386, "decimalLat": -34.394384 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.228889, "decimalLat": -29.970178 }, "geometry": { "type": "Point", "coordinates": [ 151.229, -29.97 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627792, "decimalLat": -34.389922 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.244903, "decimalLat": -33.127366 }, "geometry": { "type": "Point", "coordinates": [ 151.245, -33.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629579, "decimalLat": -28.637434 }, "geometry": { "type": "Point", "coordinates": [ 153.63, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644056, "decimalLat": -34.396313 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926619, "decimalLat": -31.450848 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561808, "decimalLat": -28.387194 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784436, "decimalLat": -33.716273 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613537, "decimalLat": -34.431945 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555987, "decimalLat": -28.398821 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017501, "decimalLat": -28.430168 }, "geometry": { "type": "Point", "coordinates": [ 153.018, -28.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600316, "decimalLat": -34.428567 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62798, "decimalLat": -34.420993 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916255, "decimalLat": -31.485819 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.628829, "decimalLat": -28.637869 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627138, "decimalLat": -34.389576 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65614, "decimalLat": -34.458617 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615175, "decimalLat": -34.431346 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606065, "decimalLat": -34.432593 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633557, "decimalLat": -34.41846 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065356, "decimalLat": -32.71047 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617207, "decimalLat": -34.433757 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400236, "decimalLat": -28.619982 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.62 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627223, "decimalLat": -34.385818 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.470424, "decimalLat": -28.260385 }, "geometry": { "type": "Point", "coordinates": [ 153.47, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518383, "decimalLat": -34.446449 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.1056, "decimalLat": -32.7278 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.527273, "decimalLat": -28.664221 }, "geometry": { "type": "Point", "coordinates": [ 153.527, -28.664 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595745, "decimalLat": -34.428586 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924552, "decimalLat": -31.463506 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925607, "decimalLat": -31.452436 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517196, "decimalLat": -34.451969 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96634, "decimalLat": -36.680336 }, "geometry": { "type": "Point", "coordinates": [ 149.966, -36.68 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898027, "decimalLat": -29.633056 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -29.633 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950373, "decimalLat": -36.572524 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.44948, "decimalLat": -28.840874 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108135, "decimalLat": -29.490255 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603908, "decimalLat": -34.439555 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108108, "decimalLat": -29.490287 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627412, "decimalLat": -34.390672 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639499, "decimalLat": -34.392835 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519604, "decimalLat": -34.447096 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561622, "decimalLat": -28.367915 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.368 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109406, "decimalLat": -29.490525 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627787, "decimalLat": -34.397396 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401775, "decimalLat": -28.260334 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603251, "decimalLat": -34.437009 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395258, "decimalLat": -29.014938 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.015 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.697671, "decimalLat": -31.732206 }, "geometry": { "type": "Point", "coordinates": [ 152.698, -31.732 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316981, "decimalLat": -28.949626 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897185, "decimalLat": -31.474775 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.866027, "decimalLat": -34.060984 }, "geometry": { "type": "Point", "coordinates": [ 150.866, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102449, "decimalLat": -29.487831 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520412, "decimalLat": -34.434861 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.177441, "decimalLat": -30.099383 }, "geometry": { "type": "Point", "coordinates": [ 152.177, -30.099 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.738044, "decimalLat": -34.304895 }, "geometry": { "type": "Point", "coordinates": [ 150.738, -34.305 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.585513, "decimalLat": -28.68591 }, "geometry": { "type": "Point", "coordinates": [ 153.586, -28.686 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.860748, "decimalLat": -34.076776 }, "geometry": { "type": "Point", "coordinates": [ 150.861, -34.077 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.630683, "decimalLat": -31.901432 }, "geometry": { "type": "Point", "coordinates": [ 151.631, -31.901 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.003682, "decimalLat": -34.006923 }, "geometry": { "type": "Point", "coordinates": [ 151.004, -34.007 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633497, "decimalLat": -34.392377 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279241, "decimalLat": -28.839565 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637523, "decimalLat": -34.488515 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064802, "decimalLat": -32.6999 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.7 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519618, "decimalLat": -34.454723 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103688, "decimalLat": -29.485501 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91109, "decimalLat": -31.435008 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.917922, "decimalLat": -36.474664 }, "geometry": { "type": "Point", "coordinates": [ 149.918, -36.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808212, "decimalLat": -34.098106 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786963, "decimalLat": -33.708358 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605505, "decimalLat": -34.437369 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103849, "decimalLat": -29.484936 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629777, "decimalLat": -34.420559 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921058, "decimalLat": -31.481592 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099804, "decimalLat": -29.491609 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623181, "decimalLat": -34.397604 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.508305, "decimalLat": -28.797271 }, "geometry": { "type": "Point", "coordinates": [ 153.508, -28.797 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530979, "decimalLat": -34.471009 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.191009, "decimalLat": -31.594578 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -31.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06885, "decimalLat": -33.785296 }, "geometry": { "type": "Point", "coordinates": [ 150.069, -33.785 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307078, "decimalLat": -28.650599 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614276, "decimalLat": -34.429679 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.820358, "decimalLat": -34.10038 }, "geometry": { "type": "Point", "coordinates": [ 150.82, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923871, "decimalLat": -31.465297 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19096, "decimalLat": -32.219628 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -32.22 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.009996, "decimalLat": -33.767431 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -33.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.420863, "decimalLat": -28.568742 }, "geometry": { "type": "Point", "coordinates": [ 153.421, -28.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07464, "decimalLat": -30.36749 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -30.367 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.772093, "decimalLat": -31.883968 }, "geometry": { "type": "Point", "coordinates": [ 151.772, -31.884 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559426, "decimalLat": -28.651703 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.652 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110495, "decimalLat": -29.490124 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867804, "decimalLat": -29.667285 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.961703, "decimalLat": -31.252398 }, "geometry": { "type": "Point", "coordinates": [ 152.962, -31.252 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.852008, "decimalLat": -32.63437 }, "geometry": { "type": "Point", "coordinates": [ 149.852, -32.634 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529134, "decimalLat": -34.470088 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109401, "decimalLat": -29.490493 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630677, "decimalLat": -34.420667 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784488, "decimalLat": -33.71302 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.849318, "decimalLat": -34.052728 }, "geometry": { "type": "Point", "coordinates": [ 150.849, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.414319, "decimalLat": -31.934544 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.935 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.034828, "decimalLat": -32.765376 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609058, "decimalLat": -34.420733 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626775, "decimalLat": -34.389352 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627594, "decimalLat": -34.537087 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.537 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395241, "decimalLat": -28.959924 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.589902, "decimalLat": -28.688154 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603012, "decimalLat": -34.424428 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525419, "decimalLat": -34.45988 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812651, "decimalLat": -29.797114 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -29.797 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638615, "decimalLat": -34.490726 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786591, "decimalLat": -33.704802 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.845921, "decimalLat": -29.465325 }, "geometry": { "type": "Point", "coordinates": [ 149.846, -29.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606844, "decimalLat": -34.436196 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.47974, "decimalLat": -28.706371 }, "geometry": { "type": "Point", "coordinates": [ 153.48, -28.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909378, "decimalLat": -31.43711 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403014, "decimalLat": -28.260467 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913704, "decimalLat": -31.467283 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659716, "decimalLat": -33.527054 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063097, "decimalLat": -32.705926 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55781, "decimalLat": -28.393779 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.102382, "decimalLat": -33.778588 }, "geometry": { "type": "Point", "coordinates": [ 150.102, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.075379, "decimalLat": -32.724958 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394104, "decimalLat": -28.959014 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.964525, "decimalLat": -30.47493 }, "geometry": { "type": "Point", "coordinates": [ 152.965, -30.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.834591, "decimalLat": -34.07365 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.074 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913629, "decimalLat": -31.466409 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791122, "decimalLat": -30.117962 }, "geometry": { "type": "Point", "coordinates": [ 152.791, -30.118 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522904, "decimalLat": -34.466158 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905893, "decimalLat": -31.436446 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921248, "decimalLat": -31.479905 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915487, "decimalLat": -31.446136 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516585, "decimalLat": -34.446142 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520773, "decimalLat": -34.465357 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395778, "decimalLat": -28.959391 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.336801, "decimalLat": -32.303046 }, "geometry": { "type": "Point", "coordinates": [ 152.337, -32.303 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785259, "decimalLat": -33.717016 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101032, "decimalLat": -29.490035 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611873, "decimalLat": -34.431516 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786604, "decimalLat": -31.021143 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.021 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918039, "decimalLat": -31.457538 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55628, "decimalLat": -28.408427 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630666, "decimalLat": -34.420649 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63563, "decimalLat": -34.41822 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985519, "decimalLat": -34.094528 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095217, "decimalLat": -29.483474 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913412, "decimalLat": -31.451537 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.01907, "decimalLat": -34.94176 }, "geometry": { "type": "Point", "coordinates": [ 150.019, -34.942 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808072, "decimalLat": -34.098641 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607041, "decimalLat": -34.455222 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867615, "decimalLat": -31.306659 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.307 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513171, "decimalLat": -34.447154 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633849, "decimalLat": -34.489471 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.991496, "decimalLat": -32.720736 }, "geometry": { "type": "Point", "coordinates": [ 151.991, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927533, "decimalLat": -31.446418 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904992, "decimalLat": -31.439135 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928154, "decimalLat": -31.447175 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.869012, "decimalLat": -34.073634 }, "geometry": { "type": "Point", "coordinates": [ 150.869, -34.074 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103779, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517868, "decimalLat": -28.603257 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -28.603 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630677, "decimalLat": -34.420649 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108194, "decimalLat": -29.490163 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.090778, "decimalLat": -32.67789 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -32.678 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603318, "decimalLat": -34.426679 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093981, "decimalLat": -29.493053 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6441, "decimalLat": -34.396305 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60921, "decimalLat": -34.418815 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.1748, "decimalLat": -32.66227 }, "geometry": { "type": "Point", "coordinates": [ 152.175, -32.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520968, "decimalLat": -34.453948 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.976466, "decimalLat": -34.107382 }, "geometry": { "type": "Point", "coordinates": [ 150.976, -34.107 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10379, "decimalLat": -32.759253 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.759 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912439, "decimalLat": -31.476726 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52266, "decimalLat": -34.52396 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619592, "decimalLat": -31.520218 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -31.52 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896425, "decimalLat": -29.629872 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -29.63 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103999, "decimalLat": -29.485155 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307876, "decimalLat": -28.849671 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627366, "decimalLat": -34.421189 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516494, "decimalLat": -34.438576 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104954, "decimalLat": -29.476708 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784596, "decimalLat": -33.713335 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.567264, "decimalLat": -28.386326 }, "geometry": { "type": "Point", "coordinates": [ 153.567, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518757, "decimalLat": -34.447394 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.217711, "decimalLat": -28.830147 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622831, "decimalLat": -34.383821 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879459, "decimalLat": -31.450539 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.065, "decimalLat": -34.90695 }, "geometry": { "type": "Point", "coordinates": [ 150.065, -34.907 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514542, "decimalLat": -34.443838 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.070099, "decimalLat": -33.781278 }, "geometry": { "type": "Point", "coordinates": [ 150.07, -33.781 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064748, "decimalLat": -32.700276 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.7 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.556772, "decimalLat": -34.474 }, "geometry": { "type": "Point", "coordinates": [ 150.557, -34.474 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.408778, "decimalLat": -31.930647 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.931 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.790311, "decimalLat": -32.653442 }, "geometry": { "type": "Point", "coordinates": [ 151.79, -32.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530379, "decimalLat": -34.471439 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59467, "decimalLat": -34.427383 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835088, "decimalLat": -34.069614 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521579, "decimalLat": -34.465698 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615786, "decimalLat": -34.436263 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.118622, "decimalLat": -28.738728 }, "geometry": { "type": "Point", "coordinates": [ 153.119, -28.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608349, "decimalLat": -34.454752 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520293, "decimalLat": -34.453979 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.542519, "decimalLat": -32.059455 }, "geometry": { "type": "Point", "coordinates": [ 152.543, -32.059 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103913, "decimalLat": -29.48545 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618214, "decimalLat": -34.429684 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364275, "decimalLat": -28.834226 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110104, "decimalLat": -29.488284 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316981, "decimalLat": -28.949626 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639241, "decimalLat": -34.392722 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334105, "decimalLat": -28.818704 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604187, "decimalLat": -34.437018 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.008201, "decimalLat": -34.04571 }, "geometry": { "type": "Point", "coordinates": [ 151.008, -34.046 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63628, "decimalLat": -34.421794 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.664271, "decimalLat": -34.458611 }, "geometry": { "type": "Point", "coordinates": [ 150.664, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629298, "decimalLat": -34.388572 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784369, "decimalLat": -33.713006 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.115731, "decimalLat": -32.764638 }, "geometry": { "type": "Point", "coordinates": [ 152.116, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402888, "decimalLat": -28.260082 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.977887, "decimalLat": -34.086874 }, "geometry": { "type": "Point", "coordinates": [ 150.978, -34.087 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634263, "decimalLat": -34.488695 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.50578, "decimalLat": -28.554883 }, "geometry": { "type": "Point", "coordinates": [ 153.506, -28.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.814117, "decimalLat": -31.432936 }, "geometry": { "type": "Point", "coordinates": [ 152.814, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.535133, "decimalLat": -28.680984 }, "geometry": { "type": "Point", "coordinates": [ 153.535, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534178, "decimalLat": -34.479936 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091714, "decimalLat": -29.487995 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532853, "decimalLat": -34.475744 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641942, "decimalLat": -34.39684 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.139945, "decimalLat": -32.730489 }, "geometry": { "type": "Point", "coordinates": [ 152.14, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786582, "decimalLat": -33.711056 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562417, "decimalLat": -28.390018 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923643, "decimalLat": -36.618562 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.619 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.03637, "decimalLat": -30.44132 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -30.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495958, "decimalLat": -28.254464 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626554, "decimalLat": -34.385616 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277434, "decimalLat": -28.679647 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596576, "decimalLat": -34.411373 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.411 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.14217, "decimalLat": -32.72132 }, "geometry": { "type": "Point", "coordinates": [ 152.142, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.357539, "decimalLat": -28.974364 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -28.974 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905969, "decimalLat": -31.447997 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808653, "decimalLat": -34.112959 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.113 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521394, "decimalLat": -34.466434 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.021341, "decimalLat": -32.767294 }, "geometry": { "type": "Point", "coordinates": [ 152.021, -32.767 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108156, "decimalLat": -29.490287 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51308, "decimalLat": -34.447288 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644213, "decimalLat": -34.394206 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914421, "decimalLat": -31.451443 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604613, "decimalLat": -34.438875 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633025, "decimalLat": -34.392927 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638905, "decimalLat": -34.491634 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623218, "decimalLat": -34.383991 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108189, "decimalLat": -29.490283 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103945, "decimalLat": -29.478048 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.832918, "decimalLat": -32.398918 }, "geometry": { "type": "Point", "coordinates": [ 149.833, -32.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.545956, "decimalLat": -32.940485 }, "geometry": { "type": "Point", "coordinates": [ 151.546, -32.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517486, "decimalLat": -34.445854 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924671, "decimalLat": -31.436646 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.710128, "decimalLat": -31.352268 }, "geometry": { "type": "Point", "coordinates": [ 152.71, -31.352 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631593, "decimalLat": -34.387796 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786632, "decimalLat": -33.706054 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103452, "decimalLat": -29.48566 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.332297, "decimalLat": -28.810812 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -28.811 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902616, "decimalLat": -31.47263 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.255203, "decimalLat": -33.716411 }, "geometry": { "type": "Point", "coordinates": [ 151.255, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108156, "decimalLat": -29.490623 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.467872, "decimalLat": -33.675392 }, "geometry": { "type": "Point", "coordinates": [ 149.468, -33.675 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.804938, "decimalLat": -34.112754 }, "geometry": { "type": "Point", "coordinates": [ 150.805, -34.113 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630284, "decimalLat": -34.394496 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989977, "decimalLat": -34.028088 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.028 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.424076, "decimalLat": -28.661852 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073064, "decimalLat": -32.724694 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523143, "decimalLat": -34.466181 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629878, "decimalLat": -34.395372 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.477516 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517444, "decimalLat": -34.445799 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10416, "decimalLat": -29.483778 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315805, "decimalLat": -28.646412 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.646 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640254, "decimalLat": -34.492859 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614429, "decimalLat": -34.430015 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615787, "decimalLat": -34.430853 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.622044, "decimalLat": -30.645072 }, "geometry": { "type": "Point", "coordinates": [ 152.622, -30.645 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642792, "decimalLat": -34.394053 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299609, "decimalLat": -28.824422 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985583, "decimalLat": -34.091121 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.326049, "decimalLat": -36.334367 }, "geometry": { "type": "Point", "coordinates": [ 149.326, -36.334 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.158339, "decimalLat": -28.864547 }, "geometry": { "type": "Point", "coordinates": [ 153.158, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922637, "decimalLat": -31.458097 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64989, "decimalLat": -34.402376 }, "geometry": { "type": "Point", "coordinates": [ 150.65, -34.402 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618191, "decimalLat": -34.435092 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606632, "decimalLat": -34.457712 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811713, "decimalLat": -29.515009 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -29.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.765222, "decimalLat": -34.183991 }, "geometry": { "type": "Point", "coordinates": [ 150.765, -34.184 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.852539, "decimalLat": -34.082897 }, "geometry": { "type": "Point", "coordinates": [ 150.853, -34.083 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103752, "decimalLat": -29.485566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561887, "decimalLat": -28.389261 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.60952, "decimalLat": -32.54243 }, "geometry": { "type": "Point", "coordinates": [ 151.61, -32.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519883, "decimalLat": -34.446479 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.010489, "decimalLat": -32.726559 }, "geometry": { "type": "Point", "coordinates": [ 152.01, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.7309, "decimalLat": -30.135857 }, "geometry": { "type": "Point", "coordinates": [ 152.731, -30.136 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336079, "decimalLat": -28.813325 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -28.813 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.724478, "decimalLat": -34.313685 }, "geometry": { "type": "Point", "coordinates": [ 150.724, -34.314 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.021287, "decimalLat": -36.554124 }, "geometry": { "type": "Point", "coordinates": [ 150.021, -36.554 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872707, "decimalLat": -31.502322 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27897, "decimalLat": -28.81654 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637343, "decimalLat": -34.423843 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063839, "decimalLat": -32.706693 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531276, "decimalLat": -34.457961 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.522731, "decimalLat": -28.707346 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639088, "decimalLat": -34.491736 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302999, "decimalLat": -28.820484 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.661664, "decimalLat": -34.458426 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636302, "decimalLat": -34.421794 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906092, "decimalLat": -31.437879 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085863, "decimalLat": -32.728022 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519943, "decimalLat": -34.452557 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.436872, "decimalLat": -31.941586 }, "geometry": { "type": "Point", "coordinates": [ 152.437, -31.942 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393988, "decimalLat": -28.959236 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517244, "decimalLat": -34.441179 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616443, "decimalLat": -34.436122 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513794, "decimalLat": -34.446338 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.576852, "decimalLat": -28.362491 }, "geometry": { "type": "Point", "coordinates": [ 153.577, -28.362 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093531, "decimalLat": -29.492883 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.395649, "decimalLat": -34.628611 }, "geometry": { "type": "Point", "coordinates": [ 146.396, -34.629 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.8107, "decimalLat": -34.11312 }, "geometry": { "type": "Point", "coordinates": [ 150.811, -34.113 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603304, "decimalLat": -34.431366 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.106037, "decimalLat": -32.729432 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.382156, "decimalLat": -36.129686 }, "geometry": { "type": "Point", "coordinates": [ 149.382, -36.13 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107953, "decimalLat": -29.490156 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.100856, "decimalLat": -32.732973 }, "geometry": { "type": "Point", "coordinates": [ 152.101, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521565, "decimalLat": -34.465806 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515751, "decimalLat": -34.458864 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513715, "decimalLat": -34.446426 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8249, "decimalLat": -31.28282 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.283 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.352738, "decimalLat": -31.9267 }, "geometry": { "type": "Point", "coordinates": [ 152.353, -31.927 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607117, "decimalLat": -34.422417 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625477, "decimalLat": -34.389877 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101741, "decimalLat": -29.489806 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607636, "decimalLat": -34.432849 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611501, "decimalLat": -34.419753 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.593048, "decimalLat": -28.655745 }, "geometry": { "type": "Point", "coordinates": [ 153.593, -28.656 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.104618, "decimalLat": -32.721558 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626755, "decimalLat": -34.385421 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615113, "decimalLat": -34.435429 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629415, "decimalLat": -28.637398 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.000519, "decimalLat": -36.571216 }, "geometry": { "type": "Point", "coordinates": [ 150.001, -36.571 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.535346, "decimalLat": -34.745129 }, "geometry": { "type": "Point", "coordinates": [ 146.535, -34.745 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096499, "decimalLat": -29.491805 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637375, "decimalLat": -34.422338 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52787, "decimalLat": -34.51425 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.837261, "decimalLat": -34.079078 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.079 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915701, "decimalLat": -31.481309 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302093, "decimalLat": -28.819097 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.047023, "decimalLat": -30.919496 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637971, "decimalLat": -34.4228 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090845, "decimalLat": -28.598896 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -28.599 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603824, "decimalLat": -34.440194 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.030275, "decimalLat": -34.034446 }, "geometry": { "type": "Point", "coordinates": [ 151.03, -34.034 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.728468, "decimalLat": -32.246363 }, "geometry": { "type": "Point", "coordinates": [ 151.728, -32.246 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634403, "decimalLat": -34.42009 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.419362, "decimalLat": -29.018653 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -29.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636324, "decimalLat": -34.421795 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638584, "decimalLat": -34.490681 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.896698, "decimalLat": -30.039536 }, "geometry": { "type": "Point", "coordinates": [ 151.897, -30.04 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625973, "decimalLat": -34.390392 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064607, "decimalLat": -32.70652 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920663, "decimalLat": -31.456103 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893027, "decimalLat": -31.448131 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401838, "decimalLat": -28.256099 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615359, "decimalLat": -34.430998 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303174, "decimalLat": -28.827996 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599028, "decimalLat": -34.426027 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07148, "decimalLat": -32.709625 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110179, "decimalLat": -29.490269 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377894, "decimalLat": -28.636215 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.636 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880284, "decimalLat": -31.521568 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.522 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514597, "decimalLat": -34.520509 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.521 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.883438, "decimalLat": -34.067856 }, "geometry": { "type": "Point", "coordinates": [ 150.883, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610335, "decimalLat": -34.420208 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898308, "decimalLat": -31.453545 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92434, "decimalLat": -31.472856 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798233, "decimalLat": -31.636947 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.647138, "decimalLat": -30.539675 }, "geometry": { "type": "Point", "coordinates": [ 152.647, -30.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915971, "decimalLat": -31.444798 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63925, "decimalLat": -34.491766 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525785, "decimalLat": -34.444036 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.38368, "decimalLat": -31.929159 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527756, "decimalLat": -34.467338 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556289, "decimalLat": -28.399887 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105154, "decimalLat": -32.736247 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603841, "decimalLat": -34.424363 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632417, "decimalLat": -34.392879 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110527, "decimalLat": -29.490231 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633525, "decimalLat": -34.418414 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631261, "decimalLat": -34.393406 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.948357, "decimalLat": -30.387347 }, "geometry": { "type": "Point", "coordinates": [ 152.948, -30.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606354, "decimalLat": -34.433905 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636654, "decimalLat": -34.41934 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.646678, "decimalLat": -30.480371 }, "geometry": { "type": "Point", "coordinates": [ 151.647, -30.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.76358, "decimalLat": -32.59295 }, "geometry": { "type": "Point", "coordinates": [ 151.764, -32.593 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393819, "decimalLat": -28.855355 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.855 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07151, "decimalLat": -32.707448 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990745, "decimalLat": -34.026228 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.026 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637029, "decimalLat": -34.488298 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.022199, "decimalLat": -32.738114 }, "geometry": { "type": "Point", "coordinates": [ 152.022, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564663, "decimalLat": -28.327875 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92973, "decimalLat": -29.726786 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784019, "decimalLat": -33.715879 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.097043, "decimalLat": -29.49311 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072429, "decimalLat": -32.717849 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.718 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101692, "decimalLat": -29.489148 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9232, "decimalLat": -31.462672 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.4676, "decimalLat": -34.489 }, "geometry": { "type": "Point", "coordinates": [ 150.468, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785381, "decimalLat": -33.707755 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107969, "decimalLat": -29.490128 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92499, "decimalLat": -31.468948 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.160872, "decimalLat": -30.089162 }, "geometry": { "type": "Point", "coordinates": [ 152.161, -30.089 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.336867, "decimalLat": -31.201726 }, "geometry": { "type": "Point", "coordinates": [ 152.337, -31.202 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659834, "decimalLat": -34.456894 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522263, "decimalLat": -34.451378 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616284, "decimalLat": -34.428681 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990916, "decimalLat": -33.980205 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -33.98 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90294, "decimalLat": -31.441314 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.084354, "decimalLat": -30.343631 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -30.344 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.566731, "decimalLat": -34.757086 }, "geometry": { "type": "Point", "coordinates": [ 146.567, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.174407, "decimalLat": -32.662401 }, "geometry": { "type": "Point", "coordinates": [ 152.174, -32.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637821, "decimalLat": -34.485689 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09121, "decimalLat": -29.487901 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399429, "decimalLat": -28.615874 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.616 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.938096, "decimalLat": -33.941253 }, "geometry": { "type": "Point", "coordinates": [ 150.938, -33.941 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373266, "decimalLat": -31.924838 }, "geometry": { "type": "Point", "coordinates": [ 152.373, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104551, "decimalLat": -29.489673 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412806, "decimalLat": -31.935425 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.935 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.137513, "decimalLat": -30.223221 }, "geometry": { "type": "Point", "coordinates": [ 153.138, -30.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633197, "decimalLat": -34.417713 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.935533, "decimalLat": -32.66049 }, "geometry": { "type": "Point", "coordinates": [ 149.936, -32.66 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785289, "decimalLat": -33.717139 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623097, "decimalLat": -34.38288 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52147, "decimalLat": -34.465705 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630895, "decimalLat": -34.420653 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.778714, "decimalLat": -32.574764 }, "geometry": { "type": "Point", "coordinates": [ 151.779, -32.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919508, "decimalLat": -31.472506 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110898, "decimalLat": -29.488391 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610302, "decimalLat": -34.41908 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527169, "decimalLat": -34.443437 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627111, "decimalLat": -34.390549 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.741654, "decimalLat": -31.453522 }, "geometry": { "type": "Point", "coordinates": [ 152.742, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.715669, "decimalLat": -32.669038 }, "geometry": { "type": "Point", "coordinates": [ 151.716, -32.669 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904748, "decimalLat": -31.439373 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626468, "decimalLat": -34.385578 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.254416, "decimalLat": -33.433332 }, "geometry": { "type": "Point", "coordinates": [ 151.254, -33.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103929, "decimalLat": -29.48954 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563516, "decimalLat": -28.385784 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.991284, "decimalLat": -33.98064 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -33.981 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091056, "decimalLat": -28.521908 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -28.522 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364275, "decimalLat": -28.834226 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.021287, "decimalLat": -36.554124 }, "geometry": { "type": "Point", "coordinates": [ 150.021, -36.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.780133, "decimalLat": -30.191675 }, "geometry": { "type": "Point", "coordinates": [ 152.78, -30.192 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316981, "decimalLat": -28.949626 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794966, "decimalLat": -34.139856 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513139, "decimalLat": -34.447136 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.367311, "decimalLat": -36.02428 }, "geometry": { "type": "Point", "coordinates": [ 149.367, -36.024 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898347, "decimalLat": -31.443586 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.131509, "decimalLat": -28.699898 }, "geometry": { "type": "Point", "coordinates": [ 153.132, -28.7 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613933, "decimalLat": -34.432936 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615235, "decimalLat": -34.43114 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.347329, "decimalLat": -36.157399 }, "geometry": { "type": "Point", "coordinates": [ 149.347, -36.157 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555926, "decimalLat": -28.399127 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519531, "decimalLat": -34.456569 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793287, "decimalLat": -31.521788 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.522 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079707, "decimalLat": -32.727415 }, "geometry": { "type": "Point", "coordinates": [ 152.08, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.876708, "decimalLat": -31.448022 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067614, "decimalLat": -32.711766 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812724, "decimalLat": -29.796961 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -29.797 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.687956, "decimalLat": -30.082688 }, "geometry": { "type": "Point", "coordinates": [ 152.688, -30.083 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864379, "decimalLat": -30.405044 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -30.405 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.550619, "decimalLat": -28.588689 }, "geometry": { "type": "Point", "coordinates": [ 153.551, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093072, "decimalLat": -29.488443 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797696, "decimalLat": -31.126063 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797445, "decimalLat": -31.125728 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063736, "decimalLat": -32.705606 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.69167, "decimalLat": -30.723173 }, "geometry": { "type": "Point", "coordinates": [ 152.692, -30.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925273, "decimalLat": -31.449592 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11089, "decimalLat": -29.488121 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51797, "decimalLat": -34.457088 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518492, "decimalLat": -34.447163 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293421, "decimalLat": -28.864595 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635771, "decimalLat": -34.418232 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.860668, "decimalLat": -34.044722 }, "geometry": { "type": "Point", "coordinates": [ 150.861, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376611, "decimalLat": -28.241416 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.241 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.882181, "decimalLat": -31.424857 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.425 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919429, "decimalLat": -31.445605 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.086083, "decimalLat": -32.732412 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617367, "decimalLat": -34.435392 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.93812, "decimalLat": -33.958689 }, "geometry": { "type": "Point", "coordinates": [ 150.938, -33.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522305, "decimalLat": -34.465794 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.832136, "decimalLat": -31.561828 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -31.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.09599, "decimalLat": -33.72381 }, "geometry": { "type": "Point", "coordinates": [ 151.096, -33.724 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.826181, "decimalLat": -34.092443 }, "geometry": { "type": "Point", "coordinates": [ 150.826, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51692, "decimalLat": -34.442921 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102787, "decimalLat": -29.487294 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273941, "decimalLat": -28.820088 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335481, "decimalLat": -28.869015 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.980384, "decimalLat": -34.08439 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -34.084 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897427, "decimalLat": -31.475308 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093573, "decimalLat": -29.492897 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785655, "decimalLat": -33.703581 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614134, "decimalLat": -34.429703 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784207, "decimalLat": -33.716919 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01411, "decimalLat": -30.42508 }, "geometry": { "type": "Point", "coordinates": [ 153.014, -30.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637359, "decimalLat": -34.423672 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.189109, "decimalLat": -34.539893 }, "geometry": { "type": "Point", "coordinates": [ 150.189, -34.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.438206, "decimalLat": -28.667288 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.512471, "decimalLat": -30.655961 }, "geometry": { "type": "Point", "coordinates": [ 151.512, -30.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602552, "decimalLat": -34.419992 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07377, "decimalLat": -30.885809 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109739, "decimalLat": -29.490231 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063678, "decimalLat": -32.706306 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611973, "decimalLat": -34.431825 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.783061, "decimalLat": -31.602715 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -31.603 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824865, "decimalLat": -31.43567 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634481, "decimalLat": -34.420028 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.191011, "decimalLat": -28.900549 }, "geometry": { "type": "Point", "coordinates": [ 153.191, -28.901 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561913, "decimalLat": -28.386071 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913496, "decimalLat": -31.460817 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912336, "decimalLat": -31.469226 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.778603, "decimalLat": -32.738712 }, "geometry": { "type": "Point", "coordinates": [ 151.779, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110157, "decimalLat": -29.490264 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303492, "decimalLat": -28.843049 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.843 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520632, "decimalLat": -34.465688 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900022, "decimalLat": -29.631247 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552092, "decimalLat": -33.491157 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51425, "decimalLat": -34.445995 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618894, "decimalLat": -34.439488 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52161, "decimalLat": -34.465744 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912286, "decimalLat": -31.458155 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529765, "decimalLat": -34.467883 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786064, "decimalLat": -33.709626 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609279, "decimalLat": -34.419078 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.780014, "decimalLat": -30.198371 }, "geometry": { "type": "Point", "coordinates": [ 152.78, -30.198 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293262, "decimalLat": -28.864584 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279705, "decimalLat": -28.831306 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867462, "decimalLat": -31.46815 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520385, "decimalLat": -34.454162 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109385, "decimalLat": -29.490446 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812345, "decimalLat": -34.124693 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518977, "decimalLat": -34.460182 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787639, "decimalLat": -31.636635 }, "geometry": { "type": "Point", "coordinates": [ 152.788, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642867, "decimalLat": -34.395677 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630873, "decimalLat": -34.394039 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.717988, "decimalLat": -31.783416 }, "geometry": { "type": "Point", "coordinates": [ 152.718, -31.783 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109433, "decimalLat": -29.49046 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604845, "decimalLat": -34.427313 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.409145, "decimalLat": -29.015392 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -29.015 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.834845, "decimalLat": -30.19347 }, "geometry": { "type": "Point", "coordinates": [ 152.835, -30.193 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.449375, "decimalLat": -28.7269 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.727 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.004755, "decimalLat": -28.932837 }, "geometry": { "type": "Point", "coordinates": [ 153.005, -28.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598935, "decimalLat": -34.412925 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.971367, "decimalLat": -32.174056 }, "geometry": { "type": "Point", "coordinates": [ 151.971, -32.174 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.910112, "decimalLat": -36.460589 }, "geometry": { "type": "Point", "coordinates": [ 149.91, -36.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641421, "decimalLat": -34.395658 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606954, "decimalLat": -34.455221 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913792, "decimalLat": -31.468725 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107936, "decimalLat": -29.490479 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639148, "decimalLat": -34.491918 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898359, "decimalLat": -29.631657 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915544, "decimalLat": -31.481987 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87309, "decimalLat": -31.46641 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081127, "decimalLat": -32.736579 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108199, "decimalLat": -29.490213 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615082, "decimalLat": -34.435392 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659256, "decimalLat": -34.458127 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283322, "decimalLat": -28.823877 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927345, "decimalLat": -31.457871 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631181, "decimalLat": -34.387752 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402665, "decimalLat": -28.960617 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.901576, "decimalLat": -36.585256 }, "geometry": { "type": "Point", "coordinates": [ 149.902, -36.585 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908775, "decimalLat": -31.466938 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607777, "decimalLat": -34.430165 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604314, "decimalLat": -34.437904 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09352, "decimalLat": -29.488673 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.021287, "decimalLat": -36.554124 }, "geometry": { "type": "Point", "coordinates": [ 150.021, -36.554 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791928, "decimalLat": -34.20562 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.206 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.594683, "decimalLat": -30.725099 }, "geometry": { "type": "Point", "coordinates": [ 152.595, -30.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62686, "decimalLat": -34.390193 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.543587, "decimalLat": -29.385608 }, "geometry": { "type": "Point", "coordinates": [ 151.544, -29.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.952917, "decimalLat": -36.681355 }, "geometry": { "type": "Point", "coordinates": [ 149.953, -36.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609924, "decimalLat": -34.43274 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.852167, "decimalLat": -34.077004 }, "geometry": { "type": "Point", "coordinates": [ 150.852, -34.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.562, "decimalLat": -32.878278 }, "geometry": { "type": "Point", "coordinates": [ 151.562, -32.878 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.220278, "decimalLat": -28.871274 }, "geometry": { "type": "Point", "coordinates": [ 153.22, -28.871 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494107, "decimalLat": -28.226932 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.227 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.224432, "decimalLat": -28.886197 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.533698, "decimalLat": -33.234392 }, "geometry": { "type": "Point", "coordinates": [ 151.534, -33.234 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.1291, "decimalLat": -32.94131 }, "geometry": { "type": "Point", "coordinates": [ 150.129, -32.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.807186, "decimalLat": -34.108852 }, "geometry": { "type": "Point", "coordinates": [ 150.807, -34.109 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081127, "decimalLat": -32.736579 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071599, "decimalLat": -30.887417 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62714, "decimalLat": -34.396455 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616762, "decimalLat": -34.399607 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638552, "decimalLat": -34.490662 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5165, "decimalLat": -34.449025 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299598, "decimalLat": -28.825407 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603321, "decimalLat": -34.438768 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.438626, "decimalLat": -28.944835 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.945 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513814, "decimalLat": -34.446383 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.123795, "decimalLat": -32.724031 }, "geometry": { "type": "Point", "coordinates": [ 152.124, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869519, "decimalLat": -29.668902 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -29.669 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914387, "decimalLat": -31.46812 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639359, "decimalLat": -34.49176 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609135, "decimalLat": -34.420698 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624232, "decimalLat": -34.388906 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343081, "decimalLat": -28.908281 }, "geometry": { "type": "Point", "coordinates": [ 153.343, -28.908 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632614, "decimalLat": -34.418712 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303174, "decimalLat": -28.827996 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091795, "decimalLat": -29.487962 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.660903, "decimalLat": -32.686068 }, "geometry": { "type": "Point", "coordinates": [ 151.661, -32.686 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786139, "decimalLat": -33.705967 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.841908, "decimalLat": -34.058799 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.059 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602658, "decimalLat": -34.434915 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.302936, "decimalLat": -32.325143 }, "geometry": { "type": "Point", "coordinates": [ 152.303, -32.325 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525206, "decimalLat": -34.463761 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787009, "decimalLat": -31.629722 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790648, "decimalLat": -31.63959 }, "geometry": { "type": "Point", "coordinates": [ 152.791, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.896202, "decimalLat": -34.009857 }, "geometry": { "type": "Point", "coordinates": [ 150.896, -34.01 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535187, "decimalLat": -34.497067 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.558043, "decimalLat": -34.749729 }, "geometry": { "type": "Point", "coordinates": [ 146.558, -34.75 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.235762, "decimalLat": -34.268132 }, "geometry": { "type": "Point", "coordinates": [ 150.236, -34.268 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.452852, "decimalLat": -28.649826 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614002, "decimalLat": -34.432793 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626774, "decimalLat": -34.389388 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516247, "decimalLat": -28.556338 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924466, "decimalLat": -31.454216 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949397, "decimalLat": -36.554597 }, "geometry": { "type": "Point", "coordinates": [ 149.949, -36.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881902, "decimalLat": -31.438588 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.83465, "decimalLat": -28.47843 }, "geometry": { "type": "Point", "coordinates": [ 152.835, -28.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810802, "decimalLat": -29.806714 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -29.807 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91585, "decimalLat": -31.446384 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.661665, "decimalLat": -28.610492 }, "geometry": { "type": "Point", "coordinates": [ 152.662, -28.61 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317927, "decimalLat": -28.826212 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.070714, "decimalLat": -30.877178 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.877 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895808, "decimalLat": -31.460426 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614823, "decimalLat": -34.439147 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104112, "decimalLat": -29.479823 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.160691, "decimalLat": -30.088985 }, "geometry": { "type": "Point", "coordinates": [ 152.161, -30.089 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611394, "decimalLat": -34.419706 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52147, "decimalLat": -34.465705 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922515, "decimalLat": -31.476069 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89697, "decimalLat": -29.633196 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -29.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.966266, "decimalLat": -32.456642 }, "geometry": { "type": "Point", "coordinates": [ 151.966, -32.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899309, "decimalLat": -29.630813 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103768, "decimalLat": -29.48552 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525273, "decimalLat": -34.458913 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627438, "decimalLat": -34.386291 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908572, "decimalLat": -31.467004 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.070695, "decimalLat": -28.762542 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -28.763 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784216, "decimalLat": -33.717371 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428988, "decimalLat": -28.956636 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.957 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.321627, "decimalLat": -28.89084 }, "geometry": { "type": "Point", "coordinates": [ 152.322, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516363, "decimalLat": -34.442631 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900308, "decimalLat": -31.443566 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527133, "decimalLat": -34.45785 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.12665, "decimalLat": -28.620565 }, "geometry": { "type": "Point", "coordinates": [ 153.127, -28.621 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555987, "decimalLat": -28.398821 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.759299, "decimalLat": -30.84178 }, "geometry": { "type": "Point", "coordinates": [ 152.759, -30.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918504, "decimalLat": -31.452348 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521252, "decimalLat": -34.46571 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608855, "decimalLat": -34.420594 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07758, "decimalLat": -30.34527 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.345 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.109318, "decimalLat": -32.772045 }, "geometry": { "type": "Point", "coordinates": [ 152.109, -32.772 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.101463, "decimalLat": -32.73989 }, "geometry": { "type": "Point", "coordinates": [ 152.101, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625111, "decimalLat": -34.38667 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.23627, "decimalLat": -29.031623 }, "geometry": { "type": "Point", "coordinates": [ 153.236, -29.032 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.26825, "decimalLat": -35.81764 }, "geometry": { "type": "Point", "coordinates": [ 149.268, -35.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335341, "decimalLat": -28.819695 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.520048, "decimalLat": -28.649007 }, "geometry": { "type": "Point", "coordinates": [ 153.52, -28.649 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.760544, "decimalLat": -34.17149 }, "geometry": { "type": "Point", "coordinates": [ 150.761, -34.171 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916684, "decimalLat": -31.43696 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624315, "decimalLat": -34.400592 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605648, "decimalLat": -34.431575 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.631647, "decimalLat": -32.639689 }, "geometry": { "type": "Point", "coordinates": [ 151.632, -32.64 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108054, "decimalLat": -29.490409 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638809, "decimalLat": -34.492723 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11012, "decimalLat": -29.490245 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31185, "decimalLat": -28.821624 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608045, "decimalLat": -34.449003 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103784, "decimalLat": -29.485543 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518204, "decimalLat": -34.448807 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072518, "decimalLat": -32.712381 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640118, "decimalLat": -34.39868 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.813543, "decimalLat": -31.652328 }, "geometry": { "type": "Point", "coordinates": [ 152.814, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617435, "decimalLat": -34.438341 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524234, "decimalLat": -34.466473 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917219, "decimalLat": -31.19562 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.196 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604781, "decimalLat": -34.427275 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909052, "decimalLat": -31.466672 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641603, "decimalLat": -34.396897 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.412043, "decimalLat": -28.27234 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -28.272 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.103556, "decimalLat": -33.775154 }, "geometry": { "type": "Point", "coordinates": [ 150.104, -33.775 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.554208, "decimalLat": -30.362675 }, "geometry": { "type": "Point", "coordinates": [ 151.554, -30.363 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881156, "decimalLat": -31.42228 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065407, "decimalLat": -32.710499 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79038, "decimalLat": -30.902154 }, "geometry": { "type": "Point", "coordinates": [ 152.79, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516176, "decimalLat": -34.448937 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331562, "decimalLat": -28.816415 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03988, "decimalLat": -32.730582 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108189, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890519, "decimalLat": -31.42818 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -31.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514923, "decimalLat": -34.444954 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599898, "decimalLat": -34.429091 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.015337, "decimalLat": -36.564757 }, "geometry": { "type": "Point", "coordinates": [ 150.015, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604948, "decimalLat": -34.427125 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786381, "decimalLat": -33.706362 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61029, "decimalLat": -34.419098 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51314, "decimalLat": -34.445982 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.837478, "decimalLat": -34.078738 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.079 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924347, "decimalLat": -31.45415 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637821, "decimalLat": -34.485671 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374817, "decimalLat": -31.915683 }, "geometry": { "type": "Point", "coordinates": [ 152.375, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.642402, "decimalLat": -31.707912 }, "geometry": { "type": "Point", "coordinates": [ 152.642, -31.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6281, "decimalLat": -34.389784 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.330287, "decimalLat": -28.81672 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324664, "decimalLat": -28.879812 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908562, "decimalLat": -29.736337 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -29.736 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984872, "decimalLat": -34.096204 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603941, "decimalLat": -34.439529 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.282167, "decimalLat": -31.634899 }, "geometry": { "type": "Point", "coordinates": [ 152.282, -31.635 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.09584, "decimalLat": -35.03096 }, "geometry": { "type": "Point", "coordinates": [ 149.096, -35.031 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.424204, "decimalLat": -31.952072 }, "geometry": { "type": "Point", "coordinates": [ 152.424, -31.952 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.26838, "decimalLat": -28.912883 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609983, "decimalLat": -34.429514 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317651, "decimalLat": -28.862857 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90723, "decimalLat": -30.17441 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -30.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616273, "decimalLat": -34.435587 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.038935, "decimalLat": -32.732209 }, "geometry": { "type": "Point", "coordinates": [ 152.039, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.384682, "decimalLat": -31.948386 }, "geometry": { "type": "Point", "coordinates": [ 152.385, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78642, "decimalLat": -33.703923 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07678, "decimalLat": -28.553296 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -28.553 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.126308, "decimalLat": -31.415433 }, "geometry": { "type": "Point", "coordinates": [ 152.126, -31.415 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324369, "decimalLat": -36.295742 }, "geometry": { "type": "Point", "coordinates": [ 149.324, -36.296 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611985, "decimalLat": -34.432185 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.401326, "decimalLat": -31.326811 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -31.327 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10129, "decimalLat": -29.489998 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636173, "decimalLat": -34.485811 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104044, "decimalLat": -29.478805 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627979, "decimalLat": -34.389836 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905072, "decimalLat": -31.435861 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.323753, "decimalLat": -36.296667 }, "geometry": { "type": "Point", "coordinates": [ 149.324, -36.297 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110511, "decimalLat": -29.49018 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.423786, "decimalLat": -28.663474 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.724783, "decimalLat": -30.198833 }, "geometry": { "type": "Point", "coordinates": [ 152.725, -30.199 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.089983, "decimalLat": -33.846961 }, "geometry": { "type": "Point", "coordinates": [ 150.09, -33.847 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80181, "decimalLat": -34.215378 }, "geometry": { "type": "Point", "coordinates": [ 150.802, -34.215 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.844758, "decimalLat": -31.528122 }, "geometry": { "type": "Point", "coordinates": [ 152.845, -31.528 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603635, "decimalLat": -34.436548 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.086152, "decimalLat": -29.727533 }, "geometry": { "type": "Point", "coordinates": [ 151.086, -29.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.326409, "decimalLat": -28.824703 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.42943, "decimalLat": -28.957013 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.957 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638458, "decimalLat": -34.491291 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319791, "decimalLat": -28.865112 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092503, "decimalLat": -29.48848 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378125, "decimalLat": -31.918232 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790596, "decimalLat": -34.188134 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.580448, "decimalLat": -32.863373 }, "geometry": { "type": "Point", "coordinates": [ 151.58, -32.863 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.77317, "decimalLat": -34.783774 }, "geometry": { "type": "Point", "coordinates": [ 146.773, -34.784 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627897, "decimalLat": -34.420865 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534611, "decimalLat": -34.459309 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.917922, "decimalLat": -36.474664 }, "geometry": { "type": "Point", "coordinates": [ 149.918, -36.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515262, "decimalLat": -34.451506 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093463, "decimalLat": -29.48863 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637379, "decimalLat": -34.423745 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095303, "decimalLat": -30.368649 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -30.369 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987465, "decimalLat": -34.097399 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929532, "decimalLat": -29.001429 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.001 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102459, "decimalLat": -29.48792 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.100539, "decimalLat": -33.778509 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925558, "decimalLat": -30.506489 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104804, "decimalLat": -29.47696 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527096, "decimalLat": -34.469434 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.797021, "decimalLat": -34.210039 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.21 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902209, "decimalLat": -31.442372 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070536, "decimalLat": -32.747818 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.748 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.964276, "decimalLat": -34.034133 }, "geometry": { "type": "Point", "coordinates": [ 150.964, -34.034 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.68122, "decimalLat": -34.234483 }, "geometry": { "type": "Point", "coordinates": [ 150.681, -34.234 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.251745, "decimalLat": -30.992784 }, "geometry": { "type": "Point", "coordinates": [ 150.252, -30.993 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.42297, "decimalLat": -28.98186 }, "geometry": { "type": "Point", "coordinates": [ 153.423, -28.982 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.769829, "decimalLat": -32.593223 }, "geometry": { "type": "Point", "coordinates": [ 151.77, -32.593 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373841, "decimalLat": -31.914728 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103452, "decimalLat": -29.485618 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.18427, "decimalLat": -31.18984 }, "geometry": { "type": "Point", "coordinates": [ 150.184, -31.19 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.380232, "decimalLat": -31.914645 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109543, "decimalLat": -29.490412 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639756, "decimalLat": -34.39916 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.658728, "decimalLat": -32.68941 }, "geometry": { "type": "Point", "coordinates": [ 151.659, -32.689 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.083136, "decimalLat": -29.728188 }, "geometry": { "type": "Point", "coordinates": [ 151.083, -29.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520401, "decimalLat": -34.465764 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925412, "decimalLat": -31.447493 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522187, "decimalLat": -34.451376 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636336, "decimalLat": -34.42175 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558463, "decimalLat": -28.388571 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785315, "decimalLat": -33.705762 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529038, "decimalLat": -34.46447 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640622, "decimalLat": -34.393894 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604921, "decimalLat": -34.426945 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.553339, "decimalLat": -33.553867 }, "geometry": { "type": "Point", "coordinates": [ 149.553, -33.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300422, "decimalLat": -31.948252 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896425, "decimalLat": -29.629872 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -29.63 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.008027, "decimalLat": -32.727746 }, "geometry": { "type": "Point", "coordinates": [ 152.008, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521424, "decimalLat": -34.459159 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394375, "decimalLat": -28.959241 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31676, "decimalLat": -28.9481 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.948 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785386, "decimalLat": -31.632709 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921653, "decimalLat": -31.457885 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623812, "decimalLat": -34.389151 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.574902, "decimalLat": -31.77942 }, "geometry": { "type": "Point", "coordinates": [ 152.575, -31.779 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525464, "decimalLat": -34.458348 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101231, "decimalLat": -29.490007 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.917922, "decimalLat": -36.474664 }, "geometry": { "type": "Point", "coordinates": [ 149.918, -36.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.671934, "decimalLat": -33.565567 }, "geometry": { "type": "Point", "coordinates": [ 150.672, -33.566 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.554988, "decimalLat": -33.533443 }, "geometry": { "type": "Point", "coordinates": [ 149.555, -33.533 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512879, "decimalLat": -34.446734 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64346, "decimalLat": -34.395851 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613524, "decimalLat": -34.432026 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783116, "decimalLat": -33.718652 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927516, "decimalLat": -31.457812 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.303705, "decimalLat": -36.131715 }, "geometry": { "type": "Point", "coordinates": [ 149.304, -36.132 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.375963, "decimalLat": -31.926078 }, "geometry": { "type": "Point", "coordinates": [ 152.376, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103859, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89986, "decimalLat": -31.467138 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.362224, "decimalLat": -28.649443 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -28.649 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822002, "decimalLat": -34.136586 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.137 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928954, "decimalLat": -31.454498 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878213, "decimalLat": -31.45544 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288527, "decimalLat": -28.652934 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43702, "decimalLat": -28.992605 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.993 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641308, "decimalLat": -34.395413 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.693942, "decimalLat": -30.481289 }, "geometry": { "type": "Point", "coordinates": [ 151.694, -30.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103522, "decimalLat": -29.485459 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.467564, "decimalLat": -33.677157 }, "geometry": { "type": "Point", "coordinates": [ 149.468, -33.677 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.957744, "decimalLat": -36.497148 }, "geometry": { "type": "Point", "coordinates": [ 149.958, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786588, "decimalLat": -31.687481 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.992302, "decimalLat": -32.720807 }, "geometry": { "type": "Point", "coordinates": [ 151.992, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262924, "decimalLat": -28.923353 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -28.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513091, "decimalLat": -34.447261 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616084, "decimalLat": -34.4346 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.064587, "decimalLat": -33.776089 }, "geometry": { "type": "Point", "coordinates": [ 150.065, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.00279, "decimalLat": -29.18285 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -29.183 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603596, "decimalLat": -34.419219 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518023, "decimalLat": -34.446478 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92763, "decimalLat": -31.46563 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300422, "decimalLat": -31.948252 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.249403, "decimalLat": -33.852923 }, "geometry": { "type": "Point", "coordinates": [ 150.249, -33.853 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604679, "decimalLat": -34.427391 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.983863, "decimalLat": -30.398573 }, "geometry": { "type": "Point", "coordinates": [ 152.984, -30.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52271, "decimalLat": -34.451721 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520051, "decimalLat": -34.454804 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493083, "decimalLat": -28.693786 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.460499, "decimalLat": -28.650517 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101322, "decimalLat": -29.489979 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065329, "decimalLat": -32.699763 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.7 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790696, "decimalLat": -34.186069 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.186 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.289154, "decimalLat": -28.97947 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -28.979 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785719, "decimalLat": -33.715361 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.652939, "decimalLat": -28.381283 }, "geometry": { "type": "Point", "coordinates": [ 152.653, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076605, "decimalLat": -32.724731 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.819383, "decimalLat": -31.53944 }, "geometry": { "type": "Point", "coordinates": [ 149.819, -31.539 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.951266, "decimalLat": -30.419035 }, "geometry": { "type": "Point", "coordinates": [ 152.951, -30.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640522, "decimalLat": -34.494144 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627214, "decimalLat": -34.389595 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104648, "decimalLat": -29.489643 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786019, "decimalLat": -33.705995 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637267, "decimalLat": -34.423842 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64073, "decimalLat": -34.412874 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894705, "decimalLat": -31.414503 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.415 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782297, "decimalLat": -33.374907 }, "geometry": { "type": "Point", "coordinates": [ 150.782, -33.375 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521642, "decimalLat": -34.465763 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606365, "decimalLat": -34.433915 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.116775, "decimalLat": -32.764971 }, "geometry": { "type": "Point", "coordinates": [ 152.117, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.806057, "decimalLat": -31.124966 }, "geometry": { "type": "Point", "coordinates": [ 152.806, -31.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529958, "decimalLat": -34.470943 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.060463, "decimalLat": -33.774206 }, "geometry": { "type": "Point", "coordinates": [ 150.06, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595785, "decimalLat": -34.425692 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.123052, "decimalLat": -35.06557 }, "geometry": { "type": "Point", "coordinates": [ 150.123, -35.066 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31183, "decimalLat": -28.850697 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560261, "decimalLat": -28.389497 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798375, "decimalLat": -31.636973 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104149, "decimalLat": -29.485193 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.11023, "decimalLat": -32.771979 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -32.772 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302271, "decimalLat": -28.888838 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627385, "decimalLat": -34.386597 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604387, "decimalLat": -34.450203 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615863, "decimalLat": -34.43319 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301303, "decimalLat": -28.817454 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.686986, "decimalLat": -32.671114 }, "geometry": { "type": "Point", "coordinates": [ 151.687, -32.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.078546, "decimalLat": -30.338508 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -30.339 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623976, "decimalLat": -34.38333 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494964, "decimalLat": -28.692221 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633755, "decimalLat": -34.392499 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.457365, "decimalLat": -33.590282 }, "geometry": { "type": "Point", "coordinates": [ 149.457, -33.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.673715, "decimalLat": -30.08408 }, "geometry": { "type": "Point", "coordinates": [ 152.674, -30.084 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510325, "decimalLat": -28.808608 }, "geometry": { "type": "Point", "coordinates": [ 153.51, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889384, "decimalLat": -31.444995 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601849, "decimalLat": -34.412586 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.658705, "decimalLat": -31.874591 }, "geometry": { "type": "Point", "coordinates": [ 152.659, -31.875 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921026, "decimalLat": -30.505557 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.928654, "decimalLat": -36.591146 }, "geometry": { "type": "Point", "coordinates": [ 149.929, -36.591 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313992, "decimalLat": -28.81222 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.812 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926473, "decimalLat": -31.451771 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.034841, "decimalLat": -32.765354 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516225, "decimalLat": -34.44984 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.900422, "decimalLat": -33.998966 }, "geometry": { "type": "Point", "coordinates": [ 150.9, -33.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.244711, "decimalLat": -28.878209 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -28.878 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103693, "decimalLat": -29.485809 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601979, "decimalLat": -34.427094 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.150221, "decimalLat": -36.084594 }, "geometry": { "type": "Point", "coordinates": [ 149.15, -36.085 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923643, "decimalLat": -36.618562 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.619 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.513229, "decimalLat": -30.579907 }, "geometry": { "type": "Point", "coordinates": [ 151.513, -30.58 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.007486, "decimalLat": -28.625551 }, "geometry": { "type": "Point", "coordinates": [ 153.007, -28.626 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.216582, "decimalLat": -32.41096 }, "geometry": { "type": "Point", "coordinates": [ 152.217, -32.411 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898542, "decimalLat": -31.460452 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529061, "decimalLat": -34.444076 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.126308, "decimalLat": -31.415433 }, "geometry": { "type": "Point", "coordinates": [ 152.126, -31.415 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.864765, "decimalLat": -34.058465 }, "geometry": { "type": "Point", "coordinates": [ 150.865, -34.058 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522336, "decimalLat": -34.464749 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1038, "decimalLat": -29.485599 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990172, "decimalLat": -34.023324 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.023 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520876, "decimalLat": -34.447131 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4253, "decimalLat": -28.808321 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.808 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658982, "decimalLat": -34.454281 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633679, "decimalLat": -34.418345 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639085, "decimalLat": -34.49298 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.861388, "decimalLat": -31.145527 }, "geometry": { "type": "Point", "coordinates": [ 152.861, -31.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29874, "decimalLat": -28.818698 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102175, "decimalLat": -29.488457 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812345, "decimalLat": -34.124693 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642902, "decimalLat": -34.394785 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313497, "decimalLat": -28.885212 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.885 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.802263, "decimalLat": -31.217507 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -31.218 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.119781, "decimalLat": -29.489741 }, "geometry": { "type": "Point", "coordinates": [ 153.12, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529493, "decimalLat": -34.459386 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.932671, "decimalLat": -31.474941 }, "geometry": { "type": "Point", "coordinates": [ 152.933, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093692, "decimalLat": -29.492724 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514298, "decimalLat": -34.446582 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639073, "decimalLat": -34.491466 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.34316, "decimalLat": -28.858812 }, "geometry": { "type": "Point", "coordinates": [ 153.343, -28.859 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.11306, "decimalLat": -32.741776 }, "geometry": { "type": "Point", "coordinates": [ 152.113, -32.742 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108167, "decimalLat": -29.490516 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922191, "decimalLat": -31.462006 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523118, "decimalLat": -28.707219 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104332, "decimalLat": -29.477777 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.550358, "decimalLat": -28.586172 }, "geometry": { "type": "Point", "coordinates": [ 153.55, -28.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.893164, "decimalLat": -33.961109 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.961 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103479, "decimalLat": -29.48545 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.576408, "decimalLat": -29.384419 }, "geometry": { "type": "Point", "coordinates": [ 152.576, -29.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796301, "decimalLat": -34.139044 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.139 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562423, "decimalLat": -28.384452 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520402, "decimalLat": -34.465746 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.266675, "decimalLat": -28.920605 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -28.921 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372924, "decimalLat": -31.924757 }, "geometry": { "type": "Point", "coordinates": [ 152.373, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320399, "decimalLat": -28.845128 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630354, "decimalLat": -34.420904 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.551941, "decimalLat": -28.586521 }, "geometry": { "type": "Point", "coordinates": [ 153.552, -28.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554747, "decimalLat": -28.415225 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524327, "decimalLat": -34.452637 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 148.259951, "decimalLat": -37.232341 }, "geometry": { "type": "Point", "coordinates": [ 148.26, -37.232 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515798, "decimalLat": -34.45067 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607756, "decimalLat": -34.430137 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103591, "decimalLat": -29.485487 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.817406, "decimalLat": -34.098577 }, "geometry": { "type": "Point", "coordinates": [ 150.817, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614548, "decimalLat": -34.433894 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793918, "decimalLat": -31.126887 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061132, "decimalLat": -32.709412 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934931, "decimalLat": -36.503907 }, "geometry": { "type": "Point", "coordinates": [ 149.935, -36.504 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615798, "decimalLat": -34.435091 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517781, "decimalLat": -34.440297 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638488, "decimalLat": -34.422982 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.99248, "decimalLat": -34.024573 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913268, "decimalLat": -31.443271 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064283, "decimalLat": -32.709094 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343646, "decimalLat": -28.866891 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.59318, "decimalLat": -32.558127 }, "geometry": { "type": "Point", "coordinates": [ 151.593, -32.558 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.446736, "decimalLat": -28.679744 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285595, "decimalLat": -28.659545 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633656, "decimalLat": -34.418408 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513998, "decimalLat": -34.447162 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.562249, "decimalLat": -31.650333 }, "geometry": { "type": "Point", "coordinates": [ 152.562, -31.65 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315188, "decimalLat": -28.86024 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.86 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.862215, "decimalLat": -31.280182 }, "geometry": { "type": "Point", "coordinates": [ 152.862, -31.28 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64288, "decimalLat": -34.395578 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.392624, "decimalLat": -36.161591 }, "geometry": { "type": "Point", "coordinates": [ 149.393, -36.162 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90674, "decimalLat": -31.44972 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.059957, "decimalLat": -33.762809 }, "geometry": { "type": "Point", "coordinates": [ 150.06, -33.763 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89588, "decimalLat": -31.473888 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30459, "decimalLat": -28.817112 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.734049, "decimalLat": -30.84847 }, "geometry": { "type": "Point", "coordinates": [ 152.734, -30.848 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519405, "decimalLat": -34.435426 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630824, "decimalLat": -34.388836 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10372, "decimalLat": -29.478249 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51683, "decimalLat": -34.447418 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604203, "decimalLat": -34.437965 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.614018, "decimalLat": -28.662353 }, "geometry": { "type": "Point", "coordinates": [ 153.614, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640645, "decimalLat": -34.394237 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529493, "decimalLat": -34.459386 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893952, "decimalLat": -31.431835 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.886917, "decimalLat": -34.0602 }, "geometry": { "type": "Point", "coordinates": [ 150.887, -34.06 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955028, "decimalLat": -36.650407 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631381, "decimalLat": -34.419977 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604203, "decimalLat": -34.437965 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375012, "decimalLat": -28.885121 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.885 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.729453, "decimalLat": -36.429797 }, "geometry": { "type": "Point", "coordinates": [ 148.729, -36.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.602142, "decimalLat": -28.715639 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513805, "decimalLat": -34.44632 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869802, "decimalLat": -31.447924 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603941, "decimalLat": -34.438772 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639084, "decimalLat": -34.491493 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525373, "decimalLat": -34.464017 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903171, "decimalLat": -31.440922 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.650931, "decimalLat": -31.535223 }, "geometry": { "type": "Point", "coordinates": [ 152.651, -31.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615169, "decimalLat": -34.435394 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916436, "decimalLat": -31.468746 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.324546, "decimalLat": -32.202762 }, "geometry": { "type": "Point", "coordinates": [ 152.325, -32.203 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108151, "decimalLat": -29.490633 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523168, "decimalLat": -34.452433 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304662, "decimalLat": -29.052465 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -29.052 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626544, "decimalLat": -34.385597 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.939225, "decimalLat": -29.703025 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -29.703 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912557, "decimalLat": -31.470822 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519579, "decimalLat": -34.45529 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.042125, "decimalLat": -30.340196 }, "geometry": { "type": "Point", "coordinates": [ 153.042, -30.34 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.008112, "decimalLat": -32.727273 }, "geometry": { "type": "Point", "coordinates": [ 152.008, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.185459, "decimalLat": -31.573386 }, "geometry": { "type": "Point", "coordinates": [ 152.185, -31.573 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.799271, "decimalLat": -34.190613 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.191 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521002, "decimalLat": -34.464235 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.006782, "decimalLat": -32.728396 }, "geometry": { "type": "Point", "coordinates": [ 152.007, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339802, "decimalLat": -28.810331 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -28.81 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925069, "decimalLat": -31.443321 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517811, "decimalLat": -34.440406 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628722, "decimalLat": -34.395124 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613993, "decimalLat": -34.433117 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.236707, "decimalLat": -28.843269 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -28.843 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402204, "decimalLat": -28.260499 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401652, "decimalLat": -28.260484 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517291, "decimalLat": -34.45207 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791449, "decimalLat": -31.640213 }, "geometry": { "type": "Point", "coordinates": [ 152.791, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610518, "decimalLat": -34.429822 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789582, "decimalLat": -34.194507 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.195 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.670248, "decimalLat": -31.698762 }, "geometry": { "type": "Point", "coordinates": [ 152.67, -31.699 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638508, "decimalLat": -34.490661 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105227, "decimalLat": -29.489732 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522443, "decimalLat": -34.464445 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51648, "decimalLat": -34.450062 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521214, "decimalLat": -34.466637 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.567171, "decimalLat": -28.385351 }, "geometry": { "type": "Point", "coordinates": [ 153.567, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52066, "decimalLat": -34.465833 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343646, "decimalLat": -28.866891 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.795607, "decimalLat": -34.104743 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640256, "decimalLat": -34.493174 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528387, "decimalLat": -34.457416 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096532, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.843183, "decimalLat": -34.055807 }, "geometry": { "type": "Point", "coordinates": [ 150.843, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62689, "decimalLat": -34.390274 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.191167, "decimalLat": -29.39143 }, "geometry": { "type": "Point", "coordinates": [ 153.191, -29.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.807808, "decimalLat": -34.097951 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063229, "decimalLat": -32.706185 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.029695, "decimalLat": -32.399642 }, "geometry": { "type": "Point", "coordinates": [ 152.03, -32.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921039, "decimalLat": -31.480301 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.879593, "decimalLat": -34.012121 }, "geometry": { "type": "Point", "coordinates": [ 150.88, -34.012 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615893, "decimalLat": -34.434795 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109693, "decimalLat": -29.490152 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602918, "decimalLat": -34.435749 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636699, "decimalLat": -34.420847 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519898, "decimalLat": -34.447823 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278012, "decimalLat": -28.8748 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.875 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608411, "decimalLat": -34.455628 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642163, "decimalLat": -34.395952 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.309351, "decimalLat": -29.0533 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -29.053 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639202, "decimalLat": -34.397211 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.674884, "decimalLat": -30.48972 }, "geometry": { "type": "Point", "coordinates": [ 151.675, -30.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889623, "decimalLat": -31.473333 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.380082, "decimalLat": -32.023186 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -32.023 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.672861, "decimalLat": -31.824051 }, "geometry": { "type": "Point", "coordinates": [ 152.673, -31.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.42764, "decimalLat": -28.626791 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658155, "decimalLat": -34.455825 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9928, "decimalLat": -34.104807 }, "geometry": { "type": "Point", "coordinates": [ 150.993, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.078324, "decimalLat": -30.151428 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.151 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630818, "decimalLat": -34.42067 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521425, "decimalLat": -34.46574 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.485594 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11145, "decimalLat": -29.487294 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867544, "decimalLat": -29.694053 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.694 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513761, "decimalLat": -34.446337 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522792, "decimalLat": -34.467382 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639149, "decimalLat": -34.493018 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313992, "decimalLat": -28.81222 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.812 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785435, "decimalLat": -33.712782 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835092, "decimalLat": -34.069558 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.351709, "decimalLat": -36.151906 }, "geometry": { "type": "Point", "coordinates": [ 149.352, -36.152 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.986009, "decimalLat": -34.090955 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.382794, "decimalLat": -31.915292 }, "geometry": { "type": "Point", "coordinates": [ 152.383, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.11377, "decimalLat": -31.1124 }, "geometry": { "type": "Point", "coordinates": [ 150.114, -31.112 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615322, "decimalLat": -34.428843 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.845, "decimalLat": -29.834338 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.040967, "decimalLat": -32.735464 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565148, "decimalLat": -28.388756 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63054, "decimalLat": -34.395033 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911251, "decimalLat": -31.472844 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63496, "decimalLat": -34.485995 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.937904, "decimalLat": -29.721373 }, "geometry": { "type": "Point", "coordinates": [ 150.938, -29.721 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990792, "decimalLat": -34.020141 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.02 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80862, "decimalLat": -34.098273 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.611255, "decimalLat": -28.662314 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927761, "decimalLat": -31.464659 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59651, "decimalLat": -34.411399 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.411 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627031, "decimalLat": -33.56859 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -33.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103999, "decimalLat": -29.485319 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.47285, "decimalLat": -28.647443 }, "geometry": { "type": "Point", "coordinates": [ 153.473, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640047, "decimalLat": -34.397723 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606648, "decimalLat": -34.43465 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924212, "decimalLat": -31.441135 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639219, "decimalLat": -34.392713 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520945, "decimalLat": -34.464306 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6338, "decimalLat": -34.392437 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063741, "decimalLat": -32.706526 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521653, "decimalLat": -34.465763 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8921, "decimalLat": -31.470686 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10423, "decimalLat": -29.479514 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785326, "decimalLat": -33.716941 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.731241, "decimalLat": -34.280467 }, "geometry": { "type": "Point", "coordinates": [ 150.731, -34.28 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59724, "decimalLat": -34.410214 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907839, "decimalLat": -31.481401 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518682, "decimalLat": -34.43707 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613491, "decimalLat": -34.431656 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402852, "decimalLat": -28.60386 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.604 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.556772, "decimalLat": -34.474 }, "geometry": { "type": "Point", "coordinates": [ 150.557, -34.474 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103762, "decimalLat": -29.485747 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.954936, "decimalLat": -30.668103 }, "geometry": { "type": "Point", "coordinates": [ 152.955, -30.668 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607119, "decimalLat": -34.437617 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.416442, "decimalLat": -31.954443 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.954 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627787, "decimalLat": -34.397396 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525011, "decimalLat": -34.453408 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945401, "decimalLat": -36.34 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.34 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61479, "decimalLat": -34.439146 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103688, "decimalLat": -29.485669 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630798, "decimalLat": -34.420597 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516436, "decimalLat": -34.450088 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6265, "decimalLat": -34.385606 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400888, "decimalLat": -28.256373 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534634, "decimalLat": -34.462212 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517558, "decimalLat": -28.684295 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601789, "decimalLat": -34.431066 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625783, "decimalLat": -34.395572 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.05231, "decimalLat": -34.90108 }, "geometry": { "type": "Point", "coordinates": [ 150.052, -34.901 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296004, "decimalLat": -28.818579 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785611, "decimalLat": -31.632275 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.552635, "decimalLat": -34.51686 }, "geometry": { "type": "Point", "coordinates": [ 150.553, -34.517 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904248, "decimalLat": -31.465831 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897459, "decimalLat": -31.47511 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.728689, "decimalLat": -32.246501 }, "geometry": { "type": "Point", "coordinates": [ 151.729, -32.247 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079344, "decimalLat": -32.727333 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46681, "decimalLat": -28.22462 }, "geometry": { "type": "Point", "coordinates": [ 153.467, -28.225 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868404, "decimalLat": -29.666949 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601801, "decimalLat": -34.41236 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.795088, "decimalLat": -32.589689 }, "geometry": { "type": "Point", "coordinates": [ 151.795, -32.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.185015, "decimalLat": -28.923584 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -28.924 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.508364, "decimalLat": -28.692405 }, "geometry": { "type": "Point", "coordinates": [ 153.508, -28.692 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89467, "decimalLat": -31.429481 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513793, "decimalLat": -34.446365 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.194095, "decimalLat": -32.224416 }, "geometry": { "type": "Point", "coordinates": [ 152.194, -32.224 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.943068, "decimalLat": -34.11459 }, "geometry": { "type": "Point", "coordinates": [ 150.943, -34.115 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637404, "decimalLat": -34.420527 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.015833, "decimalLat": -32.167778 }, "geometry": { "type": "Point", "coordinates": [ 152.016, -32.168 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92517, "decimalLat": -31.454071 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928705, "decimalLat": -31.459245 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394257, "decimalLat": -28.960175 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63094, "decimalLat": -34.393995 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515149, "decimalLat": -34.451279 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906016, "decimalLat": -31.471952 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90937, "decimalLat": -31.475976 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103666, "decimalLat": -29.48587 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553397, "decimalLat": -28.38896 }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913944, "decimalLat": -31.438864 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.172979, "decimalLat": -32.737109 }, "geometry": { "type": "Point", "coordinates": [ 152.173, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403199, "decimalLat": -31.925262 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615826, "decimalLat": -34.436399 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927264, "decimalLat": -31.465471 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559348, "decimalLat": -28.331083 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110527, "decimalLat": -29.490264 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315249, "decimalLat": -28.941639 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.942 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.41519, "decimalLat": -31.933125 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.650606, "decimalLat": -32.683761 }, "geometry": { "type": "Point", "coordinates": [ 151.651, -32.684 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.02021, "decimalLat": -36.569074 }, "geometry": { "type": "Point", "coordinates": [ 150.02, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300206, "decimalLat": -28.886464 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563918, "decimalLat": -28.38564 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.907642, "decimalLat": -34.024789 }, "geometry": { "type": "Point", "coordinates": [ 150.908, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642078, "decimalLat": -34.396663 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01479, "decimalLat": -29.5376 }, "geometry": { "type": "Point", "coordinates": [ 153.015, -29.538 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.149826, "decimalLat": -30.19212 }, "geometry": { "type": "Point", "coordinates": [ 153.15, -30.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644348, "decimalLat": -34.398699 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615065, "decimalLat": -34.431407 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884233, "decimalLat": -34.018221 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.018 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636286, "decimalLat": -34.421965 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299756, "decimalLat": -28.824721 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103758, "decimalLat": -29.485529 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.0802, "decimalLat": -28.5008 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -28.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108087, "decimalLat": -29.490493 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947287, "decimalLat": -36.640259 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.64 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10423, "decimalLat": -29.482171 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.24449, "decimalLat": -36.886 }, "geometry": { "type": "Point", "coordinates": [ 149.244, -36.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626866, "decimalLat": -34.385721 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109412, "decimalLat": -29.490441 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524419, "decimalLat": -34.463863 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606872, "decimalLat": -34.438649 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.262511, "decimalLat": -32.039399 }, "geometry": { "type": "Point", "coordinates": [ 152.263, -32.039 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613483, "decimalLat": -34.431935 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513091, "decimalLat": -34.44727 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.1416, "decimalLat": -31.40529 }, "geometry": { "type": "Point", "coordinates": [ 152.142, -31.405 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615568, "decimalLat": -34.435501 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521687, "decimalLat": -34.465367 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093613, "decimalLat": -29.488592 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325643, "decimalLat": -28.81509 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400618, "decimalLat": -28.291481 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.291 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923158, "decimalLat": -31.45605 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82829, "decimalLat": -29.650455 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -29.65 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.921344, "decimalLat": -33.966784 }, "geometry": { "type": "Point", "coordinates": [ 150.921, -33.967 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644276, "decimalLat": -34.393117 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634581, "decimalLat": -34.420319 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52321, "decimalLat": -34.463532 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531969, "decimalLat": -34.47066 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521044, "decimalLat": -34.454337 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.956941, "decimalLat": -36.59482 }, "geometry": { "type": "Point", "coordinates": [ 149.957, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923624, "decimalLat": -31.441079 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608043, "decimalLat": -34.433812 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52152, "decimalLat": -34.46695 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.875198, "decimalLat": -34.057957 }, "geometry": { "type": "Point", "coordinates": [ 150.875, -34.058 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920154, "decimalLat": -29.734337 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -29.734 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.306353, "decimalLat": -32.192585 }, "geometry": { "type": "Point", "coordinates": [ 152.306, -32.193 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.657435, "decimalLat": -31.29351 }, "geometry": { "type": "Point", "coordinates": [ 152.657, -31.294 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51738, "decimalLat": -34.452009 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520558, "decimalLat": -34.453832 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.810907, "decimalLat": -34.091307 }, "geometry": { "type": "Point", "coordinates": [ 150.811, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.022, "decimalLat": -33.815 }, "geometry": { "type": "Point", "coordinates": [ 150.022, -33.815 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63582, "decimalLat": -34.485975 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107443, "decimalLat": -29.490133 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521578, "decimalLat": -34.465716 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399901, "decimalLat": -28.258429 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89997, "decimalLat": -31.46639 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609203, "decimalLat": -34.4206 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.974623, "decimalLat": -32.472237 }, "geometry": { "type": "Point", "coordinates": [ 151.975, -32.472 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920728, "decimalLat": -31.455822 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.478809 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109337, "decimalLat": -29.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.916905, "decimalLat": -33.971139 }, "geometry": { "type": "Point", "coordinates": [ 150.917, -33.971 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.744576, "decimalLat": -31.194362 }, "geometry": { "type": "Point", "coordinates": [ 152.745, -31.194 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614476, "decimalLat": -34.434136 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514097, "decimalLat": -34.446389 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630051, "decimalLat": -34.420871 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520801, "decimalLat": -34.43604 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604339, "decimalLat": -34.436264 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103645, "decimalLat": -29.485772 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.944201, "decimalLat": -34.000089 }, "geometry": { "type": "Point", "coordinates": [ 150.944, -34.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605206, "decimalLat": -34.425715 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108269, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099777, "decimalLat": -29.491511 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323412, "decimalLat": -28.85553 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.856 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646685, "decimalLat": -34.396418 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637303, "decimalLat": -34.422183 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103098, "decimalLat": -29.486832 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.848384, "decimalLat": -31.105129 }, "geometry": { "type": "Point", "coordinates": [ 152.848, -31.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604701, "decimalLat": -34.4274 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552391, "decimalLat": -33.491265 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30215, "decimalLat": -28.819239 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631484, "decimalLat": -34.387803 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109251, "decimalLat": -29.49074 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.57307, "decimalLat": -28.665253 }, "geometry": { "type": "Point", "coordinates": [ 153.573, -28.665 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.158889, "decimalLat": -32.712816 }, "geometry": { "type": "Point", "coordinates": [ 152.159, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.035887, "decimalLat": -32.731706 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658718, "decimalLat": -33.52683 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.154736, "decimalLat": -32.053436 }, "geometry": { "type": "Point", "coordinates": [ 152.155, -32.053 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643078, "decimalLat": -34.393184 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.400964, "decimalLat": -31.911997 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -31.912 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400813, "decimalLat": -28.257928 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.145877, "decimalLat": -34.927743 }, "geometry": { "type": "Point", "coordinates": [ 150.146, -34.928 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.53301, "decimalLat": -28.279238 }, "geometry": { "type": "Point", "coordinates": [ 152.533, -28.279 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520418, "decimalLat": -34.435023 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395278, "decimalLat": -28.95995 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784608, "decimalLat": -31.631876 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637431, "decimalLat": -34.423818 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402101, "decimalLat": -28.25764 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633111, "decimalLat": -34.479765 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613983, "decimalLat": -34.433081 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.104175, "decimalLat": -33.775682 }, "geometry": { "type": "Point", "coordinates": [ 150.104, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43206, "decimalLat": -28.66276 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604703, "decimalLat": -34.427319 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.155117, "decimalLat": -31.738462 }, "geometry": { "type": "Point", "coordinates": [ 152.155, -31.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9915, "decimalLat": -33.980929 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -33.981 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101247, "decimalLat": -29.489946 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.089998, "decimalLat": -32.734967 }, "geometry": { "type": "Point", "coordinates": [ 152.09, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.893164, "decimalLat": -33.961109 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.961 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86366, "decimalLat": -31.146058 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628078, "decimalLat": -34.389783 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270841, "decimalLat": -29.010748 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -29.011 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60786, "decimalLat": -34.430689 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312316, "decimalLat": -28.822435 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109363, "decimalLat": -29.490516 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603685, "decimalLat": -34.426767 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530554, "decimalLat": -34.469937 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662142, "decimalLat": -34.454161 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.309689, "decimalLat": -28.821315 }, "geometry": { "type": "Point", "coordinates": [ 153.31, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606722, "decimalLat": -34.429784 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.074581, "decimalLat": -33.757117 }, "geometry": { "type": "Point", "coordinates": [ 150.075, -33.757 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.422227, "decimalLat": -28.982408 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.982 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63086, "decimalLat": -34.420733 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617015, "decimalLat": -34.430553 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607914, "decimalLat": -34.422333 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523143, "decimalLat": -34.46619 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921155, "decimalLat": -31.446913 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.133877, "decimalLat": -32.200137 }, "geometry": { "type": "Point", "coordinates": [ 152.134, -32.2 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101317, "decimalLat": -29.48996 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607641, "decimalLat": -34.421976 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892129, "decimalLat": -31.467295 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.866027, "decimalLat": -34.060984 }, "geometry": { "type": "Point", "coordinates": [ 150.866, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.041296, "decimalLat": -30.432252 }, "geometry": { "type": "Point", "coordinates": [ 153.041, -30.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627092, "decimalLat": -34.389674 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644733, "decimalLat": -34.393126 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104074, "decimalLat": -29.480112 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.101406, "decimalLat": -32.740177 }, "geometry": { "type": "Point", "coordinates": [ 152.101, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554614, "decimalLat": -28.58326 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.583 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523439, "decimalLat": -34.464645 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784941, "decimalLat": -33.719629 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.72 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923008, "decimalLat": -31.443005 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639602, "decimalLat": -34.39922 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899797, "decimalLat": -31.443525 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.957874, "decimalLat": -36.307303 }, "geometry": { "type": "Point", "coordinates": [ 149.958, -36.307 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40537, "decimalLat": -28.730918 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.45436, "decimalLat": -28.669384 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646065, "decimalLat": -33.737637 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -33.738 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520597, "decimalLat": -34.450686 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.31241, "decimalLat": -28.74337 }, "geometry": { "type": "Point", "coordinates": [ 152.312, -28.743 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103693, "decimalLat": -29.485767 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625594, "decimalLat": -34.38649 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52159, "decimalLat": -34.465689 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.102097, "decimalLat": -33.776174 }, "geometry": { "type": "Point", "coordinates": [ 150.102, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611755, "decimalLat": -34.419631 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.066923, "decimalLat": -30.900032 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -30.9 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514492, "decimalLat": -34.443341 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.100094, "decimalLat": -32.77767 }, "geometry": { "type": "Point", "coordinates": [ 152.1, -32.778 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395309, "decimalLat": -28.266227 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.266 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31675, "decimalLat": -28.94719 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.947 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915097, "decimalLat": -31.45705 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096135, "decimalLat": -29.485067 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555957, "decimalLat": -28.398844 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785241, "decimalLat": -33.70999 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607556, "decimalLat": -34.421911 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.363088, "decimalLat": -28.814366 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630829, "decimalLat": -34.394047 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848008, "decimalLat": -34.051914 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.052 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522093, "decimalLat": -34.465979 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324152, "decimalLat": -28.855687 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.856 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609467, "decimalLat": -34.418983 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884819, "decimalLat": -31.440055 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063293, "decimalLat": -32.706257 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518162, "decimalLat": -34.453539 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.05924, "decimalLat": -30.35989 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -30.36 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.84108, "decimalLat": -34.155155 }, "geometry": { "type": "Point", "coordinates": [ 150.841, -34.155 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628068, "decimalLat": -34.389774 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32644, "decimalLat": -28.62251 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.623 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616624, "decimalLat": -34.434746 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637069, "decimalLat": -34.485323 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608001, "decimalLat": -34.433775 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615658, "decimalLat": -34.435413 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929693, "decimalLat": -31.458954 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.35899, "decimalLat": -31.92441 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60144, "decimalLat": -28.7273 }, "geometry": { "type": "Point", "coordinates": [ 153.601, -28.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525862, "decimalLat": -34.469553 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.167331, "decimalLat": -29.434421 }, "geometry": { "type": "Point", "coordinates": [ 153.167, -29.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.760478, "decimalLat": -32.647527 }, "geometry": { "type": "Point", "coordinates": [ 151.76, -32.648 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51903, "decimalLat": -34.459859 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.354865, "decimalLat": -36.1835 }, "geometry": { "type": "Point", "coordinates": [ 149.355, -36.183 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.866027, "decimalLat": -34.060984 }, "geometry": { "type": "Point", "coordinates": [ 150.866, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62799, "decimalLat": -34.421038 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298108, "decimalLat": -28.981045 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.981 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532023, "decimalLat": -34.470661 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51647, "decimalLat": -34.450043 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.109794, "decimalLat": -32.764562 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615186, "decimalLat": -34.440533 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394689, "decimalLat": -28.95968 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.677672, "decimalLat": -34.286284 }, "geometry": { "type": "Point", "coordinates": [ 150.678, -34.286 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039933, "decimalLat": -32.732249 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907949, "decimalLat": -31.46729 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43286, "decimalLat": -28.967328 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.967 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604275, "decimalLat": -34.438886 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639376, "decimalLat": -34.399513 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808193, "decimalLat": -34.098193 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.441685, "decimalLat": -32.090675 }, "geometry": { "type": "Point", "coordinates": [ 152.442, -32.091 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412476, "decimalLat": -31.932588 }, "geometry": { "type": "Point", "coordinates": [ 152.412, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.995085, "decimalLat": -28.473542 }, "geometry": { "type": "Point", "coordinates": [ 152.995, -28.474 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90497, "decimalLat": -30.23916 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -30.239 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.68497, "decimalLat": -34.35522 }, "geometry": { "type": "Point", "coordinates": [ 150.685, -34.355 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921042, "decimalLat": -31.444017 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898849, "decimalLat": -31.473756 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063628, "decimalLat": -32.706583 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.33405, "decimalLat": -28.821137 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603363, "decimalLat": -34.435379 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624172, "decimalLat": -34.388725 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.169266, "decimalLat": -30.098262 }, "geometry": { "type": "Point", "coordinates": [ 152.169, -30.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616056, "decimalLat": -34.436331 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88511, "decimalLat": -31.429867 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520446, "decimalLat": -34.465738 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637041, "decimalLat": -34.488235 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.384289, "decimalLat": -31.92886 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.929 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.501042, "decimalLat": -34.460092 }, "geometry": { "type": "Point", "coordinates": [ 150.501, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.462302, "decimalLat": -28.187167 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.187 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063309, "decimalLat": -32.705944 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821644, "decimalLat": -34.101844 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.268126, "decimalLat": -28.91324 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522154, "decimalLat": -34.465007 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101285, "decimalLat": -29.489988 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.82506, "decimalLat": -32.0003 }, "geometry": { "type": "Point", "coordinates": [ 151.825, -32.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103207, "decimalLat": -29.486933 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.466547, "decimalLat": -32.020247 }, "geometry": { "type": "Point", "coordinates": [ 152.467, -32.02 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615679, "decimalLat": -34.43123 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103901, "decimalLat": -32.7596 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.76 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885439, "decimalLat": -29.312999 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -29.313 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103629, "decimalLat": -29.488242 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902259, "decimalLat": -31.24177 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.242 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.840717, "decimalLat": -34.061061 }, "geometry": { "type": "Point", "coordinates": [ 150.841, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528272, "decimalLat": -34.445507 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784722, "decimalLat": -33.713334 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.11135, "decimalLat": -32.761807 }, "geometry": { "type": "Point", "coordinates": [ 152.111, -32.762 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.921178, "decimalLat": -36.633581 }, "geometry": { "type": "Point", "coordinates": [ 149.921, -36.634 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.682001, "decimalLat": -33.54208 }, "geometry": { "type": "Point", "coordinates": [ 149.682, -33.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.414923, "decimalLat": -31.933225 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.48328, "decimalLat": -34.39947 }, "geometry": { "type": "Point", "coordinates": [ 150.483, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784507, "decimalLat": -33.71646 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.391142, "decimalLat": -31.883749 }, "geometry": { "type": "Point", "coordinates": [ 152.391, -31.884 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602283, "decimalLat": -34.425955 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65707, "decimalLat": -33.55194 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -33.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516388, "decimalLat": -34.470064 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30453, "decimalLat": -28.827266 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110906, "decimalLat": -28.662926 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.514175, "decimalLat": -31.722408 }, "geometry": { "type": "Point", "coordinates": [ 152.514, -31.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.067172, "decimalLat": -30.92235 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -30.922 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.52534, "decimalLat": -31.316773 }, "geometry": { "type": "Point", "coordinates": [ 152.525, -31.317 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63905, "decimalLat": -34.491519 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637403, "decimalLat": -34.420563 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608775, "decimalLat": -34.455464 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518344, "decimalLat": -34.447016 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06354, "decimalLat": -32.706158 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.297859, "decimalLat": -31.949129 }, "geometry": { "type": "Point", "coordinates": [ 152.298, -31.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070371, "decimalLat": -32.707201 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627305, "decimalLat": -34.398288 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.452941, "decimalLat": -34.45492 }, "geometry": { "type": "Point", "coordinates": [ 150.453, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906972, "decimalLat": -31.449394 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.02592, "decimalLat": -33.79835 }, "geometry": { "type": "Point", "coordinates": [ 150.026, -33.798 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927101, "decimalLat": -31.45508 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522204, "decimalLat": -34.4648 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627963, "decimalLat": -34.420831 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.975443, "decimalLat": -34.030182 }, "geometry": { "type": "Point", "coordinates": [ 150.975, -34.03 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609456, "decimalLat": -34.418992 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513794, "decimalLat": -34.44632 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517331, "decimalLat": -34.44631 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790447, "decimalLat": -34.143217 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519154, "decimalLat": -34.447213 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639175, "decimalLat": -34.491323 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.99365, "decimalLat": -32.741689 }, "geometry": { "type": "Point", "coordinates": [ 151.994, -32.742 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60831, "decimalLat": -34.4359 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.99593, "decimalLat": -28.635486 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -28.635 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534619, "decimalLat": -34.459399 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610662, "decimalLat": -33.449163 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -33.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.456394, "decimalLat": -28.523083 }, "geometry": { "type": "Point", "coordinates": [ 152.456, -28.523 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.366511, "decimalLat": -36.00829 }, "geometry": { "type": "Point", "coordinates": [ 149.367, -36.008 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072248, "decimalLat": -32.71072 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520587, "decimalLat": -34.46685 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629909, "decimalLat": -34.395436 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929449, "decimalLat": -31.459553 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.24803, "decimalLat": -31.50346 }, "geometry": { "type": "Point", "coordinates": [ 151.248, -31.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.497445, "decimalLat": -28.636812 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81796, "decimalLat": -31.27746 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.277 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293074, "decimalLat": -28.86465 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.34022, "decimalLat": -31.980755 }, "geometry": { "type": "Point", "coordinates": [ 152.34, -31.981 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637104, "decimalLat": -34.485234 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985126, "decimalLat": -34.092358 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604353, "decimalLat": -34.438428 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519909, "decimalLat": -34.45261 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103766, "decimalLat": -29.485552 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605694, "decimalLat": -34.43758 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52779, "decimalLat": -34.462885 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80858, "decimalLat": -34.079579 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.08 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607508, "decimalLat": -28.702101 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103666, "decimalLat": -29.485282 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.0825, "decimalLat": -32.73253 }, "geometry": { "type": "Point", "coordinates": [ 152.083, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838015, "decimalLat": -34.069652 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103892, "decimalLat": -29.484913 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016942, "decimalLat": -36.548959 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.09104, "decimalLat": -32.73789 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.99595, "decimalLat": -30.410432 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -30.41 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88437, "decimalLat": -31.4361 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.171235, "decimalLat": -32.11898 }, "geometry": { "type": "Point", "coordinates": [ 151.171, -32.119 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79647, "decimalLat": -34.14344 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.734049, "decimalLat": -30.84847 }, "geometry": { "type": "Point", "coordinates": [ 152.734, -30.848 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51376, "decimalLat": -34.446364 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.69691, "decimalLat": -32.63633 }, "geometry": { "type": "Point", "coordinates": [ 151.697, -32.636 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595561, "decimalLat": -34.514 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613331, "decimalLat": -34.432663 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522924, "decimalLat": -34.45259 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.65081, "decimalLat": -32.68143 }, "geometry": { "type": "Point", "coordinates": [ 151.651, -32.681 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.990603, "decimalLat": -31.729488 }, "geometry": { "type": "Point", "coordinates": [ 149.991, -31.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615635, "decimalLat": -34.434294 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109723, "decimalLat": -29.490156 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896124, "decimalLat": -31.434419 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636442, "decimalLat": -34.485537 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926912, "decimalLat": -30.508033 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -30.508 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79675, "decimalLat": -31.126909 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.56184, "decimalLat": -33.691224 }, "geometry": { "type": "Point", "coordinates": [ 149.562, -33.691 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.496595, "decimalLat": -28.694781 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.695 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.976265, "decimalLat": -34.087623 }, "geometry": { "type": "Point", "coordinates": [ 150.976, -34.088 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792587, "decimalLat": -31.640029 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606656, "decimalLat": -34.437824 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61421, "decimalLat": -34.429714 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.137517, "decimalLat": -30.22316 }, "geometry": { "type": "Point", "coordinates": [ 153.138, -30.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607928, "decimalLat": -34.436695 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103768, "decimalLat": -29.485627 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.815272, "decimalLat": -31.575315 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06343, "decimalLat": -32.706157 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.459894, "decimalLat": -28.753289 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.753 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79847, "decimalLat": -31.146914 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.147 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367926, "decimalLat": -28.803722 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.804 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818059, "decimalLat": -31.650964 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.651 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104133, "decimalLat": -29.48056 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519451, "decimalLat": -34.45115 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110924, "decimalLat": -29.488564 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60565, "decimalLat": -34.423488 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616581, "decimalLat": -34.430111 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520298, "decimalLat": -34.446812 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895506, "decimalLat": -29.003938 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -29.004 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.661697, "decimalLat": -34.458321 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372737, "decimalLat": -31.923965 }, "geometry": { "type": "Point", "coordinates": [ 152.373, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60908, "decimalLat": -34.455452 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514187, "decimalLat": -34.447391 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610564, "decimalLat": -34.430878 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.42258, "decimalLat": -29.019311 }, "geometry": { "type": "Point", "coordinates": [ 153.423, -29.019 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904136, "decimalLat": -31.44455 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.988604, "decimalLat": -28.553913 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -28.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602648, "decimalLat": -34.418903 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519526, "decimalLat": -34.447148 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564604, "decimalLat": -28.380419 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.38 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514343, "decimalLat": -34.447268 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.77808, "decimalLat": -33.53422 }, "geometry": { "type": "Point", "coordinates": [ 150.778, -33.534 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.954476, "decimalLat": -32.656205 }, "geometry": { "type": "Point", "coordinates": [ 151.954, -32.656 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.841759, "decimalLat": -34.054193 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.054 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101381, "decimalLat": -29.48976 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923643, "decimalLat": -36.618562 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304861, "decimalLat": -28.817267 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78569, "decimalLat": -33.709919 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.066868, "decimalLat": -33.78423 }, "geometry": { "type": "Point", "coordinates": [ 150.067, -33.784 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110063, "decimalLat": -30.302736 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -30.303 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646725, "decimalLat": -34.39576 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523913, "decimalLat": -34.46406 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.417136, "decimalLat": -28.890397 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519107, "decimalLat": -34.472707 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526796, "decimalLat": -34.469644 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885519, "decimalLat": -34.018768 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608187, "decimalLat": -34.456615 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897978, "decimalLat": -31.427246 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605015, "decimalLat": -34.42325 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615169, "decimalLat": -34.431175 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525893, "decimalLat": -34.460056 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785292, "decimalLat": -33.715662 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627579, "decimalLat": -34.386663 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10372, "decimalLat": -29.485601 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615784, "decimalLat": -34.435947 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823287, "decimalLat": -31.240076 }, "geometry": { "type": "Point", "coordinates": [ 152.823, -31.24 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808222, "decimalLat": -34.098125 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.200143, "decimalLat": -32.231881 }, "geometry": { "type": "Point", "coordinates": [ 152.2, -32.232 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639402, "decimalLat": -34.395493 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516897, "decimalLat": -34.453992 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785361, "decimalLat": -33.716774 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292666, "decimalLat": -28.86473 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519836, "decimalLat": -34.452492 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10401, "decimalLat": -29.485324 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.628851, "decimalLat": -31.428953 }, "geometry": { "type": "Point", "coordinates": [ 152.629, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644297, "decimalLat": -34.393144 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929623, "decimalLat": -29.726157 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639681, "decimalLat": -34.399114 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.848198, "decimalLat": -31.060477 }, "geometry": { "type": "Point", "coordinates": [ 152.848, -31.06 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.364617, "decimalLat": -31.877903 }, "geometry": { "type": "Point", "coordinates": [ 152.365, -31.878 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10078, "decimalLat": -29.489979 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924326, "decimalLat": -31.459313 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.556371, "decimalLat": -33.477109 }, "geometry": { "type": "Point", "coordinates": [ 150.556, -33.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374763, "decimalLat": -28.252334 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.100825, "decimalLat": -33.77802 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -33.778 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515829, "decimalLat": -34.446695 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.793817, "decimalLat": -34.145476 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632594, "decimalLat": -34.418243 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630528, "decimalLat": -34.395087 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.522085, "decimalLat": -28.193537 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -28.194 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923435, "decimalLat": -31.461008 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78529, "decimalLat": -33.715615 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.942921, "decimalLat": -34.113947 }, "geometry": { "type": "Point", "coordinates": [ 150.943, -34.114 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902481, "decimalLat": -31.241501 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627962, "decimalLat": -34.42047 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.639164, "decimalLat": -29.070921 }, "geometry": { "type": "Point", "coordinates": [ 149.639, -29.071 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.004171, "decimalLat": -28.931463 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -28.931 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.484885 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911238, "decimalLat": -31.436776 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.361869, "decimalLat": -31.979319 }, "geometry": { "type": "Point", "coordinates": [ 152.362, -31.979 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373486, "decimalLat": -31.915123 }, "geometry": { "type": "Point", "coordinates": [ 152.373, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626774, "decimalLat": -34.389388 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609289, "decimalLat": -34.420656 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626634, "decimalLat": -34.390098 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39337, "decimalLat": -28.269058 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.269 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.032491, "decimalLat": -30.380692 }, "geometry": { "type": "Point", "coordinates": [ 153.032, -30.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607641, "decimalLat": -34.421976 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605015, "decimalLat": -34.423259 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.388945, "decimalLat": -31.912858 }, "geometry": { "type": "Point", "coordinates": [ 152.389, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096011, "decimalLat": -29.484805 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109476, "decimalLat": -29.490479 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624265, "decimalLat": -34.388898 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.034848, "decimalLat": -32.765385 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627853, "decimalLat": -34.390077 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093828, "decimalLat": -29.488632 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627381, "decimalLat": -34.420269 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518157, "decimalLat": -34.451872 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.647893, "decimalLat": -34.399506 }, "geometry": { "type": "Point", "coordinates": [ 150.648, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848005, "decimalLat": -34.069372 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609541, "decimalLat": -34.430876 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.860756, "decimalLat": -34.038597 }, "geometry": { "type": "Point", "coordinates": [ 150.861, -34.039 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624294, "decimalLat": -34.400565 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783179, "decimalLat": -33.718594 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604185, "decimalLat": -34.437839 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077233, "decimalLat": -32.722432 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.060059, "decimalLat": -29.741653 }, "geometry": { "type": "Point", "coordinates": [ 151.06, -29.742 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630841, "decimalLat": -34.420643 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878917, "decimalLat": -31.44848 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104047, "decimalLat": -29.477642 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628462, "decimalLat": -34.420489 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104181, "decimalLat": -29.485197 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.718486, "decimalLat": -30.45099 }, "geometry": { "type": "Point", "coordinates": [ 152.718, -30.451 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.861647, "decimalLat": -29.609175 }, "geometry": { "type": "Point", "coordinates": [ 150.862, -29.609 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101767, "decimalLat": -29.489778 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616079, "decimalLat": -34.433627 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.517399, "decimalLat": -29.288806 }, "geometry": { "type": "Point", "coordinates": [ 151.517, -29.289 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622542, "decimalLat": -34.38442 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.172414, "decimalLat": -33.316802 }, "geometry": { "type": "Point", "coordinates": [ 150.172, -33.317 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364275, "decimalLat": -28.834226 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.479034, "decimalLat": -28.248718 }, "geometry": { "type": "Point", "coordinates": [ 153.479, -28.249 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655321, "decimalLat": -34.459115 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64053, "decimalLat": -34.396768 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373872, "decimalLat": -31.914366 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316981, "decimalLat": -28.949626 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519549, "decimalLat": -34.447131 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598983, "decimalLat": -34.428739 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.788887, "decimalLat": -34.202014 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.202 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.045811, "decimalLat": -34.02903 }, "geometry": { "type": "Point", "coordinates": [ 151.046, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192089, "decimalLat": -32.216754 }, "geometry": { "type": "Point", "coordinates": [ 152.192, -32.217 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884499, "decimalLat": -30.539676 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -30.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.446055, "decimalLat": -32.859866 }, "geometry": { "type": "Point", "coordinates": [ 151.446, -32.86 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.878634, "decimalLat": -32.729723 }, "geometry": { "type": "Point", "coordinates": [ 151.879, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930803, "decimalLat": -29.726688 }, "geometry": { "type": "Point", "coordinates": [ 152.931, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.737082, "decimalLat": -34.302397 }, "geometry": { "type": "Point", "coordinates": [ 150.737, -34.302 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609319, "decimalLat": -34.419214 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915647, "decimalLat": -31.467445 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110055, "decimalLat": -29.490245 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531065, "decimalLat": -34.471065 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331243, "decimalLat": -28.821749 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907863, "decimalLat": -31.450283 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.927685, "decimalLat": -33.425109 }, "geometry": { "type": "Point", "coordinates": [ 150.928, -33.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109573, "decimalLat": -29.490418 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928241, "decimalLat": -31.464631 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.490012 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079503, "decimalLat": -32.730454 }, "geometry": { "type": "Point", "coordinates": [ 152.08, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533208, "decimalLat": -34.479601 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514348, "decimalLat": -34.444889 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.123128, "decimalLat": -31.071726 }, "geometry": { "type": "Point", "coordinates": [ 150.123, -31.072 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911462, "decimalLat": -31.455786 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27578, "decimalLat": -28.931367 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -28.931 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.774386, "decimalLat": -31.255899 }, "geometry": { "type": "Point", "coordinates": [ 152.774, -31.256 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644, "decimalLat": -34.391308 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629286, "decimalLat": -34.388986 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.48996, "decimalLat": -28.6791 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.021287, "decimalLat": -36.554124 }, "geometry": { "type": "Point", "coordinates": [ 150.021, -36.554 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924273, "decimalLat": -31.45801 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924326, "decimalLat": -31.459313 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521653, "decimalLat": -34.466141 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926847, "decimalLat": -31.454825 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104847, "decimalLat": -29.489699 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.53302, "decimalLat": -30.22619 }, "geometry": { "type": "Point", "coordinates": [ 152.533, -30.226 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92375, "decimalLat": -31.456391 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104155, "decimalLat": -29.485197 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.590372, "decimalLat": -31.561433 }, "geometry": { "type": "Point", "coordinates": [ 152.59, -31.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79698, "decimalLat": -33.47377 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -33.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615813, "decimalLat": -34.436461 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617086, "decimalLat": -34.433782 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78593, "decimalLat": -33.70391 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596895, "decimalLat": -34.414265 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630598, "decimalLat": -34.38875 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615064, "decimalLat": -34.43257 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80004, "decimalLat": -34.17924 }, "geometry": { "type": "Point", "coordinates": [ 150.8, -34.179 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.925939, "decimalLat": -32.06422 }, "geometry": { "type": "Point", "coordinates": [ 151.926, -32.064 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62796, "decimalLat": -34.420948 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525011, "decimalLat": -34.4608 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809456, "decimalLat": -34.101953 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103039, "decimalLat": -29.489409 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.003705, "decimalLat": -29.184277 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -29.184 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273277, "decimalLat": -28.88827 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632705, "decimalLat": -34.41856 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530207, "decimalLat": -34.470976 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.591027, "decimalLat": -34.455 }, "geometry": { "type": "Point", "coordinates": [ 150.591, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103854, "decimalLat": -29.489568 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.632916, "decimalLat": -31.6188 }, "geometry": { "type": "Point", "coordinates": [ 152.633, -31.619 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383658, "decimalLat": -31.923677 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.973034, "decimalLat": -34.123104 }, "geometry": { "type": "Point", "coordinates": [ 150.973, -34.123 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.713786, "decimalLat": -32.625098 }, "geometry": { "type": "Point", "coordinates": [ 151.714, -32.625 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631237, "decimalLat": -34.420092 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522413, "decimalLat": -34.465814 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.578331, "decimalLat": -33.03525 }, "geometry": { "type": "Point", "coordinates": [ 151.578, -33.035 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637356, "decimalLat": -34.423771 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.066909, "decimalLat": -30.35239 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -30.352 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.386997, "decimalLat": -28.907753 }, "geometry": { "type": "Point", "coordinates": [ 152.387, -28.908 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627391, "decimalLat": -34.42027 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637334, "decimalLat": -34.423789 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658143, "decimalLat": -34.456285 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517987, "decimalLat": -34.447315 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521596, "decimalLat": -34.466961 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465972, "decimalLat": -28.673632 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.674 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104074, "decimalLat": -29.481471 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.01112, "decimalLat": -36.547428 }, "geometry": { "type": "Point", "coordinates": [ 150.011, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521604, "decimalLat": -34.465942 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.871988, "decimalLat": -31.479069 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.140079, "decimalLat": -32.730521 }, "geometry": { "type": "Point", "coordinates": [ 152.14, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.909295, "decimalLat": -33.998781 }, "geometry": { "type": "Point", "coordinates": [ 150.909, -33.999 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.729037, "decimalLat": -32.245115 }, "geometry": { "type": "Point", "coordinates": [ 151.729, -32.245 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989896, "decimalLat": -34.027813 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.028 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606644, "decimalLat": -34.457694 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604649, "decimalLat": -34.452831 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639724, "decimalLat": -34.397987 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623138, "decimalLat": -34.383755 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077045, "decimalLat": -32.722541 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5199, "decimalLat": -34.44556 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096564, "decimalLat": -29.485669 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517273, "decimalLat": -34.451565 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626465, "decimalLat": -34.389157 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.992021, "decimalLat": -34.005214 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -34.005 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520046, "decimalLat": -34.449431 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621898, "decimalLat": -34.397976 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.350245, "decimalLat": -28.71528 }, "geometry": { "type": "Point", "coordinates": [ 153.35, -28.715 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.0625, "decimalLat": -31.1479 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -31.148 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60724, "decimalLat": -28.664312 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.664 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.761824, "decimalLat": -34.194043 }, "geometry": { "type": "Point", "coordinates": [ 150.762, -34.194 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.7768, "decimalLat": -30.8494 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -30.849 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103323, "decimalLat": -29.489909 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610476, "decimalLat": -34.430533 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609224, "decimalLat": -34.420637 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791761, "decimalLat": -34.196498 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.196 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61229, "decimalLat": -34.437132 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.332771, "decimalLat": -28.231959 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -28.232 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103851, "decimalLat": -29.485431 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642858, "decimalLat": -34.395596 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926006, "decimalLat": -31.453038 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659144, "decimalLat": -34.459017 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313005, "decimalLat": -28.823549 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637312, "decimalLat": -34.488664 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.088534, "decimalLat": -33.404535 }, "geometry": { "type": "Point", "coordinates": [ 151.089, -33.405 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.184815, "decimalLat": -28.889358 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.294408, "decimalLat": -28.994175 }, "geometry": { "type": "Point", "coordinates": [ 153.294, -28.994 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428417, "decimalLat": -28.975068 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.975 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110538, "decimalLat": -29.489956 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262628, "decimalLat": -28.951265 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -28.951 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101172, "decimalLat": -29.489895 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.133978, "decimalLat": -30.090796 }, "geometry": { "type": "Point", "coordinates": [ 152.134, -30.091 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101172, "decimalLat": -29.490072 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522601, "decimalLat": -34.464989 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627458, "decimalLat": -34.386336 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603838, "decimalLat": -34.426752 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.81336, "decimalLat": -32.35301 }, "geometry": { "type": "Point", "coordinates": [ 151.813, -32.353 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296745, "decimalLat": -28.871902 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521237, "decimalLat": -34.466584 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63916, "decimalLat": -34.491873 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.983825, "decimalLat": -34.094879 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627059, "decimalLat": -34.389682 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103787, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923643, "decimalLat": -36.618562 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.619 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.643455, "decimalLat": -30.536332 }, "geometry": { "type": "Point", "coordinates": [ 152.643, -30.536 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102325, "decimalLat": -29.489003 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19096, "decimalLat": -32.219628 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -32.22 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909424, "decimalLat": -31.176289 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.176 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104165, "decimalLat": -29.478706 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635239, "decimalLat": -34.488038 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514569, "decimalLat": -34.447354 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797748, "decimalLat": -31.125973 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522923, "decimalLat": -34.452248 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.174569, "decimalLat": -32.663575 }, "geometry": { "type": "Point", "coordinates": [ 152.175, -32.664 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.612016, "decimalLat": -28.328122 }, "geometry": { "type": "Point", "coordinates": [ 152.612, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.66403, "decimalLat": -34.457894 }, "geometry": { "type": "Point", "coordinates": [ 150.664, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630452, "decimalLat": -34.420906 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917865, "decimalLat": -31.470418 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.028282, "decimalLat": -28.532328 }, "geometry": { "type": "Point", "coordinates": [ 153.028, -28.532 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784483, "decimalLat": -33.713367 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324519, "decimalLat": -28.83284 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.833 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917449, "decimalLat": -31.474536 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.883896, "decimalLat": -34.058449 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.058 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555798, "decimalLat": -28.3986 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949397, "decimalLat": -36.554597 }, "geometry": { "type": "Point", "coordinates": [ 149.949, -36.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063336, "decimalLat": -32.706158 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.401277, "decimalLat": -31.937298 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -31.937 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.391869, "decimalLat": -31.8767 }, "geometry": { "type": "Point", "coordinates": [ 152.392, -31.877 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60425, "decimalLat": -34.437867 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897985, "decimalLat": -31.474794 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631016, "decimalLat": -34.388209 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640025, "decimalLat": -34.397714 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.807228, "decimalLat": -34.068105 }, "geometry": { "type": "Point", "coordinates": [ 150.807, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898735, "decimalLat": -31.13339 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.133 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.804031, "decimalLat": -31.666297 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -31.666 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.059278, "decimalLat": -32.739099 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.087946, "decimalLat": -30.355053 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -30.355 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104171, "decimalLat": -29.485039 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.209167, "decimalLat": -31.560626 }, "geometry": { "type": "Point", "coordinates": [ 152.209, -31.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601496, "decimalLat": -34.424939 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.087946, "decimalLat": -30.355053 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -30.355 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434738, "decimalLat": -28.65498 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555745, "decimalLat": -28.590283 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555948, "decimalLat": -28.398935 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627351, "decimalLat": -34.390121 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.041203, "decimalLat": -30.433153 }, "geometry": { "type": "Point", "coordinates": [ 153.041, -30.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909653, "decimalLat": -31.437192 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598363, "decimalLat": -34.412761 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300422, "decimalLat": -31.948252 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.274842, "decimalLat": -33.281424 }, "geometry": { "type": "Point", "coordinates": [ 150.275, -33.281 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985389, "decimalLat": -34.090763 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.02096, "decimalLat": -34.80422 }, "geometry": { "type": "Point", "coordinates": [ 150.021, -34.804 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522812, "decimalLat": -34.452336 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638301, "decimalLat": -34.486032 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093125, "decimalLat": -29.492657 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785426, "decimalLat": -33.705608 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637685, "decimalLat": -34.486264 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629483, "decimalLat": -34.388567 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315708, "decimalLat": -28.826058 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.17453, "decimalLat": -32.660961 }, "geometry": { "type": "Point", "coordinates": [ 152.175, -32.661 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108156, "decimalLat": -29.490614 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900022, "decimalLat": -29.631247 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514272, "decimalLat": -34.445969 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.245658, "decimalLat": -31.646258 }, "geometry": { "type": "Point", "coordinates": [ 152.246, -31.646 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617249, "decimalLat": -34.433812 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.99891, "decimalLat": -28.52429 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -28.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624391, "decimalLat": -34.400594 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892072, "decimalLat": -31.445966 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603597, "decimalLat": -34.436358 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606948, "decimalLat": -34.454265 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927437, "decimalLat": -31.465659 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630398, "decimalLat": -34.420887 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.637651, "decimalLat": -30.168247 }, "geometry": { "type": "Point", "coordinates": [ 152.638, -30.168 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109471, "decimalLat": -29.490451 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300729, "decimalLat": -28.821307 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658889, "decimalLat": -33.526932 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.94966, "decimalLat": -31.167489 }, "geometry": { "type": "Point", "coordinates": [ 152.95, -31.167 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627316, "decimalLat": -34.420647 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637394, "decimalLat": -34.42049 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103849, "decimalLat": -29.485464 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631009, "decimalLat": -34.388046 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316981, "decimalLat": -28.949626 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.138173, "decimalLat": -31.402559 }, "geometry": { "type": "Point", "coordinates": [ 152.138, -31.403 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377742, "decimalLat": -28.249381 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.249 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.078648, "decimalLat": -30.353926 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -30.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525472, "decimalLat": -34.459908 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.475886, "decimalLat": -28.747793 }, "geometry": { "type": "Point", "coordinates": [ 153.476, -28.748 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.246956, "decimalLat": -31.646112 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -31.646 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.552556, "decimalLat": -28.586471 }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629486, "decimalLat": -34.420833 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.715401, "decimalLat": -32.669555 }, "geometry": { "type": "Point", "coordinates": [ 151.715, -32.67 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.326444, "decimalLat": -28.827968 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784029, "decimalLat": -33.717737 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.846471, "decimalLat": -33.619362 }, "geometry": { "type": "Point", "coordinates": [ 149.846, -33.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611985, "decimalLat": -34.457807 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890912, "decimalLat": -31.436314 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515914, "decimalLat": -34.44675 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316984, "decimalLat": -28.937089 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.688632, "decimalLat": -30.495214 }, "geometry": { "type": "Point", "coordinates": [ 151.689, -30.495 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002582, "decimalLat": -28.619644 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -28.62 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104085, "decimalLat": -29.48424 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842335, "decimalLat": -34.068546 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.75076, "decimalLat": -29.36407 }, "geometry": { "type": "Point", "coordinates": [ 152.751, -29.364 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336688, "decimalLat": -28.868027 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -28.868 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959252, "decimalLat": -36.447255 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885733, "decimalLat": -29.390288 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -29.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.346432, "decimalLat": -28.833926 }, "geometry": { "type": "Point", "coordinates": [ 153.346, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959252, "decimalLat": -36.447255 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604736, "decimalLat": -34.427329 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.589363, "decimalLat": -33.458862 }, "geometry": { "type": "Point", "coordinates": [ 150.589, -33.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103468, "decimalLat": -29.485608 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626332, "decimalLat": -34.421178 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630981, "decimalLat": -34.388262 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105332, "decimalLat": -32.72777 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89309, "decimalLat": -31.45491 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785184, "decimalLat": -33.713965 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611723, "decimalLat": -34.432983 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614746, "decimalLat": -34.431121 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623079, "decimalLat": -34.38315 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101226, "decimalLat": -29.490091 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063617, "decimalLat": -32.706522 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3, "decimalLat": -28.819705 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523235, "decimalLat": -34.466002 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29907, "decimalLat": -28.73532 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.735 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109374, "decimalLat": -29.490469 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.627388, "decimalLat": -31.229622 }, "geometry": { "type": "Point", "coordinates": [ 152.627, -31.23 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415413, "decimalLat": -31.933201 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608778, "decimalLat": -34.436279 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099734, "decimalLat": -29.491492 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.549032, "decimalLat": -34.516267 }, "geometry": { "type": "Point", "coordinates": [ 150.549, -34.516 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.076344, "decimalLat": -28.556276 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785931, "decimalLat": -31.631601 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824491, "decimalLat": -29.505868 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60248, "decimalLat": -34.41982 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103854, "decimalLat": -29.485471 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519992, "decimalLat": -34.435799 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306862, "decimalLat": -28.822956 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515351, "decimalLat": -34.451057 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.702303, "decimalLat": -34.907289 }, "geometry": { "type": "Point", "coordinates": [ 138.702, -34.907 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108103, "decimalLat": -29.490689 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.452215, "decimalLat": -31.939935 }, "geometry": { "type": "Point", "coordinates": [ 152.452, -31.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514834, "decimalLat": -34.446467 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.993396, "decimalLat": -33.979341 }, "geometry": { "type": "Point", "coordinates": [ 150.993, -33.979 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.995012, "decimalLat": -36.511751 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613658, "decimalLat": -34.431885 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093576, "decimalLat": -29.48863 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.036418, "decimalLat": -30.287717 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -30.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630406, "decimalLat": -34.388629 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615523, "decimalLat": -34.435554 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.944433, "decimalLat": -29.346563 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -29.347 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810059, "decimalLat": -31.127661 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -31.128 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529949, "decimalLat": -34.430384 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525365, "decimalLat": -34.458373 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002831, "decimalLat": -29.183263 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -29.183 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631284, "decimalLat": -34.419966 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617141, "decimalLat": -34.434152 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.153525, "decimalLat": -32.731435 }, "geometry": { "type": "Point", "coordinates": [ 152.154, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.320945, "decimalLat": -36.104836 }, "geometry": { "type": "Point", "coordinates": [ 149.321, -36.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637476, "decimalLat": -34.421817 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.073663, "decimalLat": -30.354754 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.355 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784893, "decimalLat": -33.713084 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644489, "decimalLat": -34.393653 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616729, "decimalLat": -34.434875 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.265382, "decimalLat": -36.201217 }, "geometry": { "type": "Point", "coordinates": [ 149.265, -36.201 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.057556, "decimalLat": -29.876788 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -29.877 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002148, "decimalLat": -29.181602 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -29.182 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.352616, "decimalLat": -31.992018 }, "geometry": { "type": "Point", "coordinates": [ 152.353, -31.992 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.047602, "decimalLat": -33.759557 }, "geometry": { "type": "Point", "coordinates": [ 150.048, -33.76 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103725, "decimalLat": -29.485655 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518582, "decimalLat": -34.447805 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518249, "decimalLat": -34.453523 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786035, "decimalLat": -33.706047 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638521, "decimalLat": -34.490598 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522581, "decimalLat": -34.451664 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564816, "decimalLat": -28.38843 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630953, "decimalLat": -34.388892 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613311, "decimalLat": -34.432617 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108135, "decimalLat": -29.490619 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52026, "decimalLat": -34.45397 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905588, "decimalLat": -31.436936 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.807085, "decimalLat": -34.109203 }, "geometry": { "type": "Point", "coordinates": [ 150.807, -34.109 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525052, "decimalLat": -34.453508 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784341, "decimalLat": -33.715149 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.198991, "decimalLat": -32.217431 }, "geometry": { "type": "Point", "coordinates": [ 152.199, -32.217 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818487, "decimalLat": -31.135405 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.135 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1038, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610301, "decimalLat": -34.419098 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.692287, "decimalLat": -32.6911 }, "geometry": { "type": "Point", "coordinates": [ 151.692, -32.691 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785793, "decimalLat": -33.705959 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632507, "decimalLat": -34.418268 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89841, "decimalLat": -30.46426 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -30.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522167, "decimalLat": -34.464953 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615412, "decimalLat": -34.435633 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.821141, "decimalLat": -31.458992 }, "geometry": { "type": "Point", "coordinates": [ 152.821, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065638, "decimalLat": -32.712519 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628844, "decimalLat": -34.389627 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604213, "decimalLat": -34.438786 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529098, "decimalLat": -34.471314 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640211, "decimalLat": -34.415875 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.416 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.978062, "decimalLat": -29.039437 }, "geometry": { "type": "Point", "coordinates": [ 152.978, -29.039 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527522, "decimalLat": -34.457218 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627993, "decimalLat": -34.420939 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632313, "decimalLat": -34.388098 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639158, "decimalLat": -34.493108 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624495, "decimalLat": -34.388812 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635402, "decimalLat": -34.418216 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606354, "decimalLat": -34.438116 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520443, "decimalLat": -34.454064 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.663945, "decimalLat": -34.457793 }, "geometry": { "type": "Point", "coordinates": [ 150.664, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110012, "decimalLat": -29.490278 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.827538, "decimalLat": -30.921398 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -30.921 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.506361, "decimalLat": -28.39692 }, "geometry": { "type": "Point", "coordinates": [ 153.506, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600987, "decimalLat": -34.533564 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.534 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.243084, "decimalLat": -33.238286 }, "geometry": { "type": "Point", "coordinates": [ 150.243, -33.238 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792881, "decimalLat": -34.143677 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.144 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31387, "decimalLat": -28.821064 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520016, "decimalLat": -34.435745 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897138, "decimalLat": -31.474862 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602295, "decimalLat": -34.429742 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.090609, "decimalLat": -32.72981 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639133, "decimalLat": -34.493225 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610322, "decimalLat": -34.419117 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.972886, "decimalLat": -34.122038 }, "geometry": { "type": "Point", "coordinates": [ 150.973, -34.122 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520218, "decimalLat": -34.465716 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.991909, "decimalLat": -32.721011 }, "geometry": { "type": "Point", "coordinates": [ 151.992, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527712, "decimalLat": -34.466634 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529876, "decimalLat": -34.471149 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63922, "decimalLat": -34.39732 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107899, "decimalLat": -29.490404 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.897168, "decimalLat": -33.935974 }, "geometry": { "type": "Point", "coordinates": [ 150.897, -33.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108199, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.238841, "decimalLat": -33.580581 }, "geometry": { "type": "Point", "coordinates": [ 150.239, -33.581 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604259, "decimalLat": -34.426868 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.24412, "decimalLat": -32.22325 }, "geometry": { "type": "Point", "coordinates": [ 152.244, -32.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600437, "decimalLat": -34.427352 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.18648, "decimalLat": -31.66596 }, "geometry": { "type": "Point", "coordinates": [ 152.186, -31.666 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608561, "decimalLat": -34.433958 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.15755, "decimalLat": -32.72384 }, "geometry": { "type": "Point", "coordinates": [ 152.158, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625642, "decimalLat": -34.386337 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061956, "decimalLat": -32.71137 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.102125, "decimalLat": -33.779186 }, "geometry": { "type": "Point", "coordinates": [ 150.102, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.592767, "decimalLat": -28.744283 }, "geometry": { "type": "Point", "coordinates": [ 153.593, -28.744 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786675, "decimalLat": -33.703454 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.703 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.088396, "decimalLat": -32.737588 }, "geometry": { "type": "Point", "coordinates": [ 152.088, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10394, "decimalLat": -29.489573 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.559687, "decimalLat": -30.400739 }, "geometry": { "type": "Point", "coordinates": [ 151.56, -30.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093098, "decimalLat": -29.488574 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076939, "decimalLat": -32.72274 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.913134, "decimalLat": -36.588285 }, "geometry": { "type": "Point", "coordinates": [ 149.913, -36.588 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.832, "decimalLat": -31.26349 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -31.263 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.168531, "decimalLat": -33.585893 }, "geometry": { "type": "Point", "coordinates": [ 151.169, -33.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.467452, "decimalLat": -33.676849 }, "geometry": { "type": "Point", "coordinates": [ 149.467, -33.677 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928611, "decimalLat": -31.46018 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095034, "decimalLat": -29.378186 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.4812 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.359672, "decimalLat": -28.644672 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -28.645 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923643, "decimalLat": -36.618562 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637301, "decimalLat": -34.423788 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533315, "decimalLat": -34.461545 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78513, "decimalLat": -33.714767 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908581, "decimalLat": -31.454676 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.442861, "decimalLat": -31.823496 }, "geometry": { "type": "Point", "coordinates": [ 152.443, -31.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62718, "decimalLat": -34.38579 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.289627, "decimalLat": -31.636763 }, "geometry": { "type": "Point", "coordinates": [ 152.29, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.889751, "decimalLat": -34.018843 }, "geometry": { "type": "Point", "coordinates": [ 150.89, -34.019 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110511, "decimalLat": -29.49018 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.765664, "decimalLat": -32.573191 }, "geometry": { "type": "Point", "coordinates": [ 151.766, -32.573 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.3241, "decimalLat": -36.296381 }, "geometry": { "type": "Point", "coordinates": [ 149.324, -36.296 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644381, "decimalLat": -34.391685 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312909, "decimalLat": -28.857555 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412844, "decimalLat": -31.933156 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615475, "decimalLat": -34.431127 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071503, "decimalLat": -30.887349 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090953, "decimalLat": -29.487504 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90811, "decimalLat": -31.42988 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.710869, "decimalLat": -33.008853 }, "geometry": { "type": "Point", "coordinates": [ 151.711, -33.009 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81796, "decimalLat": -31.27746 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.277 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.648892, "decimalLat": -34.454304 }, "geometry": { "type": "Point", "coordinates": [ 150.649, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61537, "decimalLat": -34.430998 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.915309, "decimalLat": -36.574566 }, "geometry": { "type": "Point", "coordinates": [ 149.915, -36.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.33026, "decimalLat": -28.814134 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603043, "decimalLat": -34.424483 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.110683, "decimalLat": -30.997215 }, "geometry": { "type": "Point", "coordinates": [ 150.111, -30.997 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109393, "decimalLat": -29.489498 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63921, "decimalLat": -34.392658 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079189, "decimalLat": -32.726847 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639125, "decimalLat": -34.491962 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605403, "decimalLat": -34.427585 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631489, "decimalLat": -34.388398 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86366, "decimalLat": -31.146058 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283372, "decimalLat": -28.830733 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885925, "decimalLat": -34.062061 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.062 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.477493, "decimalLat": -28.25109 }, "geometry": { "type": "Point", "coordinates": [ 153.477, -28.251 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513841, "decimalLat": -34.446203 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302863, "decimalLat": -28.865572 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518283, "decimalLat": -34.453506 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784951, "decimalLat": -33.716458 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527042, "decimalLat": -34.469415 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317852, "decimalLat": -28.929063 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302471, "decimalLat": -28.820141 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400673, "decimalLat": -28.257967 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.564395, "decimalLat": -34.756115 }, "geometry": { "type": "Point", "coordinates": [ 146.564, -34.756 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784249, "decimalLat": -33.716906 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.915309, "decimalLat": -36.574566 }, "geometry": { "type": "Point", "coordinates": [ 149.915, -36.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302741, "decimalLat": -28.848168 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614455, "decimalLat": -34.429502 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07261, "decimalLat": -32.71075 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.876136, "decimalLat": -31.425117 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.86603, "decimalLat": -34.06098 }, "geometry": { "type": "Point", "coordinates": [ 150.866, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.804832, "decimalLat": -34.350895 }, "geometry": { "type": "Point", "coordinates": [ 150.805, -34.351 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633458, "decimalLat": -34.417728 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784148, "decimalLat": -33.716961 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.436269, "decimalLat": -28.885922 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513076, "decimalLat": -34.447793 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630993, "decimalLat": -34.388244 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607619, "decimalLat": -34.43 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.111353, "decimalLat": -28.645421 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -28.645 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903987, "decimalLat": -31.439225 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.928654, "decimalLat": -36.591146 }, "geometry": { "type": "Point", "coordinates": [ 149.929, -36.591 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89266, "decimalLat": -33.99196 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.992 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.999583, "decimalLat": -30.408115 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -30.408 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.020521, "decimalLat": -32.739151 }, "geometry": { "type": "Point", "coordinates": [ 152.021, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89266, "decimalLat": -33.99196 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.992 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.630594, "decimalLat": -30.523602 }, "geometry": { "type": "Point", "coordinates": [ 152.631, -30.524 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.801638, "decimalLat": -31.149027 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -31.149 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533446, "decimalLat": -34.461891 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.110282, "decimalLat": -29.762752 }, "geometry": { "type": "Point", "coordinates": [ 151.11, -29.763 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901407, "decimalLat": -31.442267 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323748, "decimalLat": -28.880788 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.881 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603317, "decimalLat": -34.439661 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524933, "decimalLat": -34.46418 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103639, "decimalLat": -29.485486 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783591, "decimalLat": -33.713502 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520506, "decimalLat": -34.454128 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916382, "decimalLat": -31.450656 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.864119, "decimalLat": -29.610086 }, "geometry": { "type": "Point", "coordinates": [ 150.864, -29.61 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.299924, "decimalLat": -31.946014 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609082, "decimalLat": -34.420643 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903445, "decimalLat": -31.441108 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627444, "decimalLat": -34.420325 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.983881, "decimalLat": -34.094516 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.078116, "decimalLat": -30.353921 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.663923, "decimalLat": -34.45782 }, "geometry": { "type": "Point", "coordinates": [ 150.664, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925234, "decimalLat": -31.453898 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604862, "decimalLat": -34.437383 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630961, "decimalLat": -34.388226 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920812, "decimalLat": -31.447702 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304342, "decimalLat": -29.053101 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -29.053 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189573, "decimalLat": -32.226267 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914683, "decimalLat": -31.486218 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.082222, "decimalLat": -32.77562 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -32.776 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091157, "decimalLat": -29.487892 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625228, "decimalLat": -34.386744 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91463, "decimalLat": -31.42949 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.429188, "decimalLat": -31.830229 }, "geometry": { "type": "Point", "coordinates": [ 152.429, -31.83 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516012, "decimalLat": -34.448231 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.168567, "decimalLat": -28.641188 }, "geometry": { "type": "Point", "coordinates": [ 153.169, -28.641 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603212, "decimalLat": -34.434214 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.952917, "decimalLat": -36.681355 }, "geometry": { "type": "Point", "coordinates": [ 149.953, -36.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518933, "decimalLat": -34.462408 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063432, "decimalLat": -32.706614 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.937301, "decimalLat": -32.025343 }, "geometry": { "type": "Point", "coordinates": [ 151.937, -32.025 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643632, "decimalLat": -34.395899 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611973, "decimalLat": -34.432591 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.807827, "decimalLat": -34.097978 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.361869, "decimalLat": -31.979319 }, "geometry": { "type": "Point", "coordinates": [ 152.362, -31.979 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785232, "decimalLat": -33.719171 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518935, "decimalLat": -34.462354 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786454, "decimalLat": -33.709657 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514281, "decimalLat": -34.446041 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.112159, "decimalLat": -28.911268 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -28.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521897, "decimalLat": -34.464506 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659976, "decimalLat": -34.455707 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786639, "decimalLat": -33.708624 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630033, "decimalLat": -34.388334 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606992, "decimalLat": -34.437488 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293082, "decimalLat": -28.864658 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926124, "decimalLat": -31.45252 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394843, "decimalLat": -29.015225 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.015 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372047, "decimalLat": -31.921037 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616578, "decimalLat": -34.429823 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.337032, "decimalLat": -28.935777 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -28.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626909, "decimalLat": -34.421162 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522248, "decimalLat": -34.464792 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630244, "decimalLat": -34.420947 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785515, "decimalLat": -33.715432 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079754, "decimalLat": -32.727701 }, "geometry": { "type": "Point", "coordinates": [ 152.08, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615678, "decimalLat": -34.433159 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786659, "decimalLat": -34.212619 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -34.213 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.653982, "decimalLat": -34.455619 }, "geometry": { "type": "Point", "coordinates": [ 150.654, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899121, "decimalLat": -31.447715 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912082, "decimalLat": -31.477327 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.259326, "decimalLat": -30.414646 }, "geometry": { "type": "Point", "coordinates": [ 150.259, -30.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627178, "decimalLat": -34.390478 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924541, "decimalLat": -31.464325 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104187, "decimalLat": -29.47986 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609237, "decimalLat": -34.420556 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633624, "decimalLat": -34.41838 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9093, "decimalLat": -31.4738 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522736, "decimalLat": -34.464838 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.727779, "decimalLat": -29.008203 }, "geometry": { "type": "Point", "coordinates": [ 152.728, -29.008 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78577, "decimalLat": -33.705448 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 23, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.194961, "decimalLat": -37.841066 }, "geometry": { "type": "Point", "coordinates": [ 144.195, -37.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655926, "decimalLat": -34.45617 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.309348, "decimalLat": -28.823205 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.158632, "decimalLat": -28.924195 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603792, "decimalLat": -34.439409 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.075329, "decimalLat": -32.722269 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516918, "decimalLat": -34.453271 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.034088, "decimalLat": -29.16695 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -29.167 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637693, "decimalLat": -34.421073 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103999, "decimalLat": -29.48467 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.826343, "decimalLat": -34.131685 }, "geometry": { "type": "Point", "coordinates": [ 150.826, -34.132 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627927, "decimalLat": -34.420938 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.582458, "decimalLat": -28.630097 }, "geometry": { "type": "Point", "coordinates": [ 153.582, -28.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641033, "decimalLat": -34.393577 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641964, "decimalLat": -34.396832 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514189, "decimalLat": -34.447319 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515824, "decimalLat": -34.450887 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.057998, "decimalLat": -33.767359 }, "geometry": { "type": "Point", "coordinates": [ 150.058, -33.767 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.780714, "decimalLat": -31.23541 }, "geometry": { "type": "Point", "coordinates": [ 152.781, -31.235 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.547088, "decimalLat": -34.454201 }, "geometry": { "type": "Point", "coordinates": [ 150.547, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616335, "decimalLat": -34.435318 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.559732, "decimalLat": -34.535992 }, "geometry": { "type": "Point", "coordinates": [ 150.56, -34.536 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.009297, "decimalLat": -31.993726 }, "geometry": { "type": "Point", "coordinates": [ 152.009, -31.994 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627092, "decimalLat": -34.389674 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645146, "decimalLat": -34.391583 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.614108, "decimalLat": -28.66228 }, "geometry": { "type": "Point", "coordinates": [ 153.614, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642742, "decimalLat": -34.395089 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557309, "decimalLat": -28.397395 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52409, "decimalLat": -34.462107 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631978, "decimalLat": -34.388011 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616604, "decimalLat": -34.430067 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521213, "decimalLat": -34.435742 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604085, "decimalLat": -34.437918 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905411, "decimalLat": -31.437643 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.116345, "decimalLat": -28.561525 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -28.562 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.229707, "decimalLat": -28.89063 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.746755, "decimalLat": -31.442298 }, "geometry": { "type": "Point", "coordinates": [ 152.747, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.845253, "decimalLat": -34.0608 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608202, "decimalLat": -33.449302 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -33.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606861, "decimalLat": -34.438657 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517428, "decimalLat": -34.453317 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.26224, "decimalLat": -28.95079 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -28.951 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.839334, "decimalLat": -34.067298 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.067 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.612899, "decimalLat": -28.64449 }, "geometry": { "type": "Point", "coordinates": [ 153.613, -28.644 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615016, "decimalLat": -34.435409 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604904, "decimalLat": -34.426773 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335481, "decimalLat": -28.869015 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884823, "decimalLat": -31.440075 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.096133, "decimalLat": -32.173691 }, "geometry": { "type": "Point", "coordinates": [ 152.096, -32.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630724, "decimalLat": -34.388897 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.984001, "decimalLat": -32.412877 }, "geometry": { "type": "Point", "coordinates": [ 151.984, -32.413 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.450108, "decimalLat": -28.588913 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522981, "decimalLat": -34.452492 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.41501, "decimalLat": -31.939974 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277639, "decimalLat": -28.674873 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.675 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107411, "decimalLat": -29.490096 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631498, "decimalLat": -34.388443 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564573, "decimalLat": -28.38642 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605846, "decimalLat": -34.432282 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060801, "decimalLat": -32.710651 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110941, "decimalLat": -29.488583 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.466319, "decimalLat": -34.471481 }, "geometry": { "type": "Point", "coordinates": [ 150.466, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.425301, "decimalLat": -28.319212 }, "geometry": { "type": "Point", "coordinates": [ 152.425, -28.319 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925964, "decimalLat": -31.466607 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103391, "decimalLat": -32.759202 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -32.759 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.323801, "decimalLat": -36.29865 }, "geometry": { "type": "Point", "coordinates": [ 149.324, -36.299 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.783616, "decimalLat": -31.630481 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.955681, "decimalLat": -34.10582 }, "geometry": { "type": "Point", "coordinates": [ 150.956, -34.106 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635971, "decimalLat": -34.48798 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878361, "decimalLat": -31.163006 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.163 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.769722, "decimalLat": -32.565898 }, "geometry": { "type": "Point", "coordinates": [ 151.77, -32.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615704, "decimalLat": -34.438001 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378342, "decimalLat": -31.918224 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.364395, "decimalLat": -31.878896 }, "geometry": { "type": "Point", "coordinates": [ 152.364, -31.879 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795867, "decimalLat": -31.333175 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -31.333 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063508, "decimalLat": -32.706176 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868083, "decimalLat": -29.667378 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922279, "decimalLat": -31.478142 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.142529, "decimalLat": -28.667348 }, "geometry": { "type": "Point", "coordinates": [ 153.143, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611341, "decimalLat": -34.430739 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633224, "decimalLat": -34.392813 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.616467, "decimalLat": -30.332642 }, "geometry": { "type": "Point", "coordinates": [ 152.616, -30.333 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401368, "decimalLat": -28.260395 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923643, "decimalLat": -36.618562 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.619 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.05705, "decimalLat": -28.930261 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298252, "decimalLat": -28.818425 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.380451, "decimalLat": -31.922893 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303135, "decimalLat": -28.824882 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604192, "decimalLat": -34.437983 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6373, "decimalLat": -34.423815 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873178, "decimalLat": -29.683582 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -29.684 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901778, "decimalLat": -31.442136 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639676, "decimalLat": -34.399285 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52118, "decimalLat": -34.435742 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910434, "decimalLat": -31.471185 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103886, "decimalLat": -29.485389 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103854, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637378, "decimalLat": -34.423754 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.773542, "decimalLat": -30.152751 }, "geometry": { "type": "Point", "coordinates": [ 152.774, -30.153 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.113353, "decimalLat": -33.772715 }, "geometry": { "type": "Point", "coordinates": [ 150.113, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907013, "decimalLat": -31.445709 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522771, "decimalLat": -34.452236 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400546, "decimalLat": -28.60426 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.604 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107395, "decimalLat": -29.490124 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627287, "decimalLat": -34.421268 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.778378, "decimalLat": -34.139613 }, "geometry": { "type": "Point", "coordinates": [ 150.778, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879168, "decimalLat": -31.448623 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517087, "decimalLat": -34.437272 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914032, "decimalLat": -31.480395 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519201, "decimalLat": -34.459979 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601947, "decimalLat": -34.426291 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517285, "decimalLat": -34.451547 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59019, "decimalLat": -28.65505 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.309459, "decimalLat": -28.653103 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.044117, "decimalLat": -30.428999 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -30.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.805157, "decimalLat": -34.108814 }, "geometry": { "type": "Point", "coordinates": [ 150.805, -34.109 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659123, "decimalLat": -34.457439 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.200143, "decimalLat": -32.231881 }, "geometry": { "type": "Point", "coordinates": [ 152.2, -32.232 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.181628, "decimalLat": -28.516985 }, "geometry": { "type": "Point", "coordinates": [ 153.182, -28.517 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519074, "decimalLat": -34.447338 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623368, "decimalLat": -34.383282 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645269, "decimalLat": -34.391062 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52715, "decimalLat": -34.469444 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917058, "decimalLat": -31.485269 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634382, "decimalLat": -34.420062 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.111445, "decimalLat": -29.487271 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929688, "decimalLat": -29.726875 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520156, "decimalLat": -34.435793 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.544021, "decimalLat": -33.506776 }, "geometry": { "type": "Point", "coordinates": [ 149.544, -33.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808308, "decimalLat": -34.098327 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.548753, "decimalLat": -28.726548 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.727 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307484, "decimalLat": -28.849556 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.259326, "decimalLat": -30.414646 }, "geometry": { "type": "Point", "coordinates": [ 150.259, -30.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598446, "decimalLat": -34.412907 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321407, "decimalLat": -28.834001 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915497, "decimalLat": -31.477146 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071965, "decimalLat": -32.710425 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520812, "decimalLat": -34.453359 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292716, "decimalLat": -28.864016 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637345, "decimalLat": -34.423771 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373654, "decimalLat": -31.915884 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515277, "decimalLat": -34.443294 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.140817, "decimalLat": -34.928708 }, "geometry": { "type": "Point", "coordinates": [ 150.141, -34.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632528, "decimalLat": -34.418296 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522887, "decimalLat": -34.450913 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513826, "decimalLat": -34.446356 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.305957, "decimalLat": -29.055106 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -29.055 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867546, "decimalLat": -29.667173 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.3233, "decimalLat": -32.4932 }, "geometry": { "type": "Point", "coordinates": [ 151.323, -32.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926942, "decimalLat": -31.457123 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.741471, "decimalLat": -28.766116 }, "geometry": { "type": "Point", "coordinates": [ 152.741, -28.766 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908734, "decimalLat": -31.454816 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531362, "decimalLat": -34.458008 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633393, "decimalLat": -34.417708 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9085, "decimalLat": -31.150529 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.151 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.921004, "decimalLat": -33.966977 }, "geometry": { "type": "Point", "coordinates": [ 150.921, -33.967 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108167, "decimalLat": -29.490241 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888201, "decimalLat": -31.443198 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.12685, "decimalLat": -35.055205 }, "geometry": { "type": "Point", "coordinates": [ 150.127, -35.055 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520663, "decimalLat": -34.466473 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600271, "decimalLat": -34.428602 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.133525, "decimalLat": -33.612044 }, "geometry": { "type": "Point", "coordinates": [ 151.134, -33.612 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103822, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.426361, "decimalLat": -28.875012 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.875 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927513, "decimalLat": -31.467885 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524473, "decimalLat": -34.4639 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109396, "decimalLat": -29.490469 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.347566, "decimalLat": -28.844756 }, "geometry": { "type": "Point", "coordinates": [ 153.348, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302679, "decimalLat": -28.823184 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454894, "decimalLat": -28.71275 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.505993, "decimalLat": -28.240329 }, "geometry": { "type": "Point", "coordinates": [ 153.506, -28.24 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104149, "decimalLat": -29.480131 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90245, "decimalLat": -30.5622 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -30.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061132, "decimalLat": -32.709412 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.187618, "decimalLat": -28.523637 }, "geometry": { "type": "Point", "coordinates": [ 153.188, -28.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110501, "decimalLat": -29.489974 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638475, "decimalLat": -34.423045 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617447, "decimalLat": -34.440226 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929698, "decimalLat": -29.72667 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630366, "decimalLat": -34.420868 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792744, "decimalLat": -34.1435 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.632077, "decimalLat": -32.242665 }, "geometry": { "type": "Point", "coordinates": [ 148.632, -32.243 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515944, "decimalLat": -34.450519 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521489, "decimalLat": -34.452904 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379857, "decimalLat": -31.918185 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606491, "decimalLat": -34.449306 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4364, "decimalLat": -28.5709 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.571 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.515531, "decimalLat": -34.740942 }, "geometry": { "type": "Point", "coordinates": [ 146.516, -34.741 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521633, "decimalLat": -34.465699 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.801881, "decimalLat": -31.504982 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -31.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31725, "decimalLat": -28.82292 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.005508, "decimalLat": -34.089416 }, "geometry": { "type": "Point", "coordinates": [ 151.006, -34.089 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521744, "decimalLat": -34.46636 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.040703, "decimalLat": -32.736895 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.663661, "decimalLat": -34.458617 }, "geometry": { "type": "Point", "coordinates": [ 150.664, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.194956, "decimalLat": -28.881627 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -28.882 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.212505, "decimalLat": -28.883153 }, "geometry": { "type": "Point", "coordinates": [ 153.213, -28.883 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603547, "decimalLat": -34.438854 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.709744, "decimalLat": -32.69195 }, "geometry": { "type": "Point", "coordinates": [ 151.71, -32.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639206, "decimalLat": -34.491387 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.036404, "decimalLat": -32.768102 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.768 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632192, "decimalLat": -34.388529 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27887, "decimalLat": -28.874221 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.799, "decimalLat": -34.230889 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.231 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.813274, "decimalLat": -31.401097 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -31.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630068, "decimalLat": -34.388253 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08478, "decimalLat": -32.729647 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.326195, "decimalLat": -28.833144 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.833 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898657, "decimalLat": -31.4423 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597691, "decimalLat": -34.410422 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627458, "decimalLat": -34.386345 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.460661, "decimalLat": -28.192123 }, "geometry": { "type": "Point", "coordinates": [ 153.461, -28.192 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.645727, "decimalLat": -32.551009 }, "geometry": { "type": "Point", "coordinates": [ 151.646, -32.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796728, "decimalLat": -34.209797 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.21 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785519, "decimalLat": -33.703532 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.106464, "decimalLat": -32.729064 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632817, "decimalLat": -34.418851 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393862, "decimalLat": -28.959206 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.042, "decimalLat": -29.66 }, "geometry": { "type": "Point", "coordinates": [ 151.042, -29.66 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630796, "decimalLat": -34.420669 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621399, "decimalLat": -34.397939 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608647, "decimalLat": -34.453469 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61581, "decimalLat": -34.435055 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639691, "decimalLat": -34.397996 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109583, "decimalLat": -29.490446 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.258606, "decimalLat": -32.040298 }, "geometry": { "type": "Point", "coordinates": [ 152.259, -32.04 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103977, "decimalLat": -29.484334 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925317, "decimalLat": -31.454014 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878975, "decimalLat": -29.661519 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.662 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.794683, "decimalLat": -32.561276 }, "geometry": { "type": "Point", "coordinates": [ 151.795, -32.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517336, "decimalLat": -34.452774 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.566447, "decimalLat": -34.46 }, "geometry": { "type": "Point", "coordinates": [ 150.566, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.042289, "decimalLat": -29.798153 }, "geometry": { "type": "Point", "coordinates": [ 151.042, -29.798 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.939011, "decimalLat": -29.336773 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -29.337 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.151278, "decimalLat": -32.714705 }, "geometry": { "type": "Point", "coordinates": [ 152.151, -32.715 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.111631, "decimalLat": -30.285587 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -30.286 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607805, "decimalLat": -34.430715 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.087861, "decimalLat": -34.107688 }, "geometry": { "type": "Point", "coordinates": [ 151.088, -34.108 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900617, "decimalLat": -31.447508 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109436, "decimalLat": -29.490573 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.428057, "decimalLat": -31.790871 }, "geometry": { "type": "Point", "coordinates": [ 152.428, -31.791 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.166301, "decimalLat": -28.8735 }, "geometry": { "type": "Point", "coordinates": [ 153.166, -28.873 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615512, "decimalLat": -34.435554 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912199, "decimalLat": -31.455948 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.056908, "decimalLat": -32.736947 }, "geometry": { "type": "Point", "coordinates": [ 152.057, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3168, "decimalLat": -28.82047 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.057346, "decimalLat": -33.767173 }, "geometry": { "type": "Point", "coordinates": [ 150.057, -33.767 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916964, "decimalLat": -31.454098 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.936562, "decimalLat": -30.440157 }, "geometry": { "type": "Point", "coordinates": [ 152.937, -30.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356805, "decimalLat": -28.656536 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624424, "decimalLat": -34.387873 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784508, "decimalLat": -33.716518 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557153, "decimalLat": -28.655706 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608974, "decimalLat": -34.435147 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610261, "decimalLat": -34.418971 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101333, "decimalLat": -29.489685 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.739716, "decimalLat": -34.309536 }, "geometry": { "type": "Point", "coordinates": [ 150.74, -34.31 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.040766, "decimalLat": -32.73369 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.492297, "decimalLat": -28.677445 }, "geometry": { "type": "Point", "coordinates": [ 153.492, -28.677 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521502, "decimalLat": -34.465715 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60497, "decimalLat": -34.437791 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.862897, "decimalLat": -31.301009 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -31.301 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.009869, "decimalLat": -28.611518 }, "geometry": { "type": "Point", "coordinates": [ 153.01, -28.612 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792125, "decimalLat": -31.641325 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.641 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.534038, "decimalLat": -30.465531 }, "geometry": { "type": "Point", "coordinates": [ 152.534, -30.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.19184, "decimalLat": -28.87772 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -28.878 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.085029, "decimalLat": -29.728684 }, "geometry": { "type": "Point", "coordinates": [ 151.085, -29.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.390241, "decimalLat": -28.545817 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609265, "decimalLat": -34.419961 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607707, "decimalLat": -34.421959 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316899, "decimalLat": -29.044273 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -29.044 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519415, "decimalLat": -34.435471 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.380525, "decimalLat": -29.086962 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -29.087 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877312, "decimalLat": -28.435952 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -28.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924982, "decimalLat": -31.453846 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306909, "decimalLat": -28.74018 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.74 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901862, "decimalLat": -30.462816 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -30.463 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.418498, "decimalLat": -28.592481 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -28.592 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.304062, "decimalLat": -36.209974 }, "geometry": { "type": "Point", "coordinates": [ 149.304, -36.21 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635713, "decimalLat": -34.485162 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565365, "decimalLat": -28.32922 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.081228, "decimalLat": -28.59283 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -28.593 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095228, "decimalLat": -29.483443 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.016479, "decimalLat": -28.541872 }, "geometry": { "type": "Point", "coordinates": [ 153.016, -28.542 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.989087, "decimalLat": -36.562421 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396446, "decimalLat": -28.56104 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639006, "decimalLat": -34.491554 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631496, "decimalLat": -34.387767 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822341, "decimalLat": -31.562884 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.563 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899068, "decimalLat": -31.474006 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085719, "decimalLat": -32.736423 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524294, "decimalLat": -34.461841 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641986, "decimalLat": -34.394894 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.857819, "decimalLat": -34.05299 }, "geometry": { "type": "Point", "coordinates": [ 150.858, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912504, "decimalLat": -31.450078 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644482, "decimalLat": -34.393905 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.398233, "decimalLat": -28.261122 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639967, "decimalLat": -34.397839 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.67932, "decimalLat": -32.59497 }, "geometry": { "type": "Point", "coordinates": [ 151.679, -32.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642687, "decimalLat": -34.395088 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.839679, "decimalLat": -34.060322 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.06 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605835, "decimalLat": -34.423104 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522701, "decimalLat": -34.464919 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966961, "decimalLat": -36.56748 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.567 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.526124, "decimalLat": -34.735921 }, "geometry": { "type": "Point", "coordinates": [ 146.526, -34.736 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640959, "decimalLat": -34.396199 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314434, "decimalLat": -28.839794 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.544657, "decimalLat": -28.736129 }, "geometry": { "type": "Point", "coordinates": [ 153.545, -28.736 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494, "decimalLat": -28.69021 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.090936, "decimalLat": -33.145184 }, "geometry": { "type": "Point", "coordinates": [ 151.091, -33.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604295, "decimalLat": -34.43895 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904414, "decimalLat": -31.472147 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525426, "decimalLat": -34.464794 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639127, "decimalLat": -34.491485 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519533, "decimalLat": -34.461257 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623874, "decimalLat": -33.569249 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -33.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.996125, "decimalLat": -34.056552 }, "geometry": { "type": "Point", "coordinates": [ 150.996, -34.057 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631304, "decimalLat": -34.420039 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518891, "decimalLat": -34.444487 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561341, "decimalLat": -28.384755 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.600762, "decimalLat": -28.697534 }, "geometry": { "type": "Point", "coordinates": [ 153.601, -28.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629106, "decimalLat": -34.395772 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921633, "decimalLat": -31.48174 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900699, "decimalLat": -31.450003 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312, "decimalLat": -28.831453 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519847, "decimalLat": -34.45764 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617233, "decimalLat": -34.434352 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.979186, "decimalLat": -31.15504 }, "geometry": { "type": "Point", "coordinates": [ 152.979, -31.155 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.002197, "decimalLat": -32.232887 }, "geometry": { "type": "Point", "coordinates": [ 152.002, -32.233 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.915309, "decimalLat": -36.574566 }, "geometry": { "type": "Point", "coordinates": [ 149.915, -36.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.458698, "decimalLat": -28.951435 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.951 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625219, "decimalLat": -34.387077 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.802198, "decimalLat": -33.487458 }, "geometry": { "type": "Point", "coordinates": [ 150.802, -33.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627346, "decimalLat": -34.420323 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.776577, "decimalLat": -31.695214 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -31.695 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616074, "decimalLat": -34.435322 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.380425, "decimalLat": -31.908386 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.908 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521472, "decimalLat": -34.466372 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.53868, "decimalLat": -28.58252 }, "geometry": { "type": "Point", "coordinates": [ 153.539, -28.583 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.361869, "decimalLat": -31.979319 }, "geometry": { "type": "Point", "coordinates": [ 152.362, -31.979 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.233821, "decimalLat": -28.945517 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -28.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598264, "decimalLat": -34.412795 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810584, "decimalLat": -29.807174 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -29.807 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.929224, "decimalLat": -33.954203 }, "geometry": { "type": "Point", "coordinates": [ 150.929, -33.954 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601451, "decimalLat": -34.42501 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.741668, "decimalLat": -30.120163 }, "geometry": { "type": "Point", "coordinates": [ 152.742, -30.12 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630994, "decimalLat": -34.388208 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908928, "decimalLat": -31.44064 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616389, "decimalLat": -34.436103 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615034, "decimalLat": -34.431334 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605122, "decimalLat": -34.432096 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.316396, "decimalLat": -36.297789 }, "geometry": { "type": "Point", "coordinates": [ 149.316, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521611, "decimalLat": -34.465717 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81152, "decimalLat": -29.514915 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -29.515 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82955, "decimalLat": -29.6429 }, "geometry": { "type": "Point", "coordinates": [ 152.83, -29.643 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.862317, "decimalLat": -30.417994 }, "geometry": { "type": "Point", "coordinates": [ 152.862, -30.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399747, "decimalLat": -29.038599 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -29.039 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561326, "decimalLat": -28.385519 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790165, "decimalLat": -34.206134 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.206 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405107, "decimalLat": -31.920313 }, "geometry": { "type": "Point", "coordinates": [ 152.405, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90371, "decimalLat": -31.448805 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627331, "decimalLat": -34.420476 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405107, "decimalLat": -31.920313 }, "geometry": { "type": "Point", "coordinates": [ 152.405, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303135, "decimalLat": -28.824882 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630674, "decimalLat": -34.388743 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784144, "decimalLat": -33.717399 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531431, "decimalLat": -34.457883 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938213, "decimalLat": -36.559404 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902148, "decimalLat": -31.442214 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5218, "decimalLat": -28.68361 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615131, "decimalLat": -34.429434 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302483, "decimalLat": -28.848119 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.560515, "decimalLat": -34.756779 }, "geometry": { "type": "Point", "coordinates": [ 146.561, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658648, "decimalLat": -33.526233 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101719, "decimalLat": -29.489465 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604706, "decimalLat": -34.431051 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521886, "decimalLat": -34.466363 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908244, "decimalLat": -31.160598 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.161 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522245, "decimalLat": -34.464882 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513063, "decimalLat": -34.447134 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063247, "decimalLat": -32.706445 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301348, "decimalLat": -28.823416 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103758, "decimalLat": -29.485569 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.178771, "decimalLat": -32.384235 }, "geometry": { "type": "Point", "coordinates": [ 152.179, -32.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.817293, "decimalLat": -34.092086 }, "geometry": { "type": "Point", "coordinates": [ 150.817, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103328, "decimalLat": -29.489956 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.558, "decimalLat": -30.261 }, "geometry": { "type": "Point", "coordinates": [ 151.558, -30.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10122, "decimalLat": -29.489998 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.144337, "decimalLat": -34.39487 }, "geometry": { "type": "Point", "coordinates": [ 150.144, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.826357, "decimalLat": -31.650111 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -31.65 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784731, "decimalLat": -33.713339 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89045, "decimalLat": -30.46091 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -30.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87703, "decimalLat": -30.54197 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -30.542 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598008, "decimalLat": -34.426692 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.702089, "decimalLat": -32.694067 }, "geometry": { "type": "Point", "coordinates": [ 151.702, -32.694 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306862, "decimalLat": -28.822956 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.894167, "decimalLat": -34.815556 }, "geometry": { "type": "Point", "coordinates": [ 149.894, -34.816 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104621, "decimalLat": -29.489615 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517482, "decimalLat": -34.453327 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437187, "decimalLat": -28.993074 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.993 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922937, "decimalLat": -31.448867 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645024, "decimalLat": -34.401371 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925549, "decimalLat": -31.449104 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.776984, "decimalLat": -29.584919 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -29.585 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923643, "decimalLat": -36.618562 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.619 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809371, "decimalLat": -34.096301 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516566, "decimalLat": -34.448999 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063292, "decimalLat": -32.706879 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.990705, "decimalLat": -36.458883 }, "geometry": { "type": "Point", "coordinates": [ 149.991, -36.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523341, "decimalLat": -34.464625 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79118, "decimalLat": -34.140988 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.980514, "decimalLat": -36.435679 }, "geometry": { "type": "Point", "coordinates": [ 149.981, -36.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630397, "decimalLat": -34.420923 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.35163, "decimalLat": -36.152898 }, "geometry": { "type": "Point", "coordinates": [ 149.352, -36.153 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01039, "decimalLat": -30.644694 }, "geometry": { "type": "Point", "coordinates": [ 153.01, -30.645 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869057, "decimalLat": -29.683551 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -29.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600482, "decimalLat": -34.428075 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.190211, "decimalLat": -31.595457 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -31.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643719, "decimalLat": -34.394738 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516969, "decimalLat": -28.607594 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.608 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895436, "decimalLat": -31.473357 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.808669, "decimalLat": -31.499299 }, "geometry": { "type": "Point", "coordinates": [ 152.809, -31.499 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.710362, "decimalLat": -31.782515 }, "geometry": { "type": "Point", "coordinates": [ 152.71, -31.783 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405107, "decimalLat": -31.920313 }, "geometry": { "type": "Point", "coordinates": [ 152.405, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.316364, "decimalLat": -36.297763 }, "geometry": { "type": "Point", "coordinates": [ 149.316, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.614728, "decimalLat": -30.348961 }, "geometry": { "type": "Point", "coordinates": [ 152.615, -30.349 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526936, "decimalLat": -34.45937 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.354733, "decimalLat": -28.901545 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077254, "decimalLat": -32.722552 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914149, "decimalLat": -31.458618 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065512, "decimalLat": -32.710938 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607587, "decimalLat": -34.4418 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916478, "decimalLat": -31.450737 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.023888, "decimalLat": -32.319245 }, "geometry": { "type": "Point", "coordinates": [ 152.024, -32.319 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.477765, "decimalLat": -28.248472 }, "geometry": { "type": "Point", "coordinates": [ 153.478, -28.248 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.116571, "decimalLat": -32.766323 }, "geometry": { "type": "Point", "coordinates": [ 152.117, -32.766 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.606923, "decimalLat": -30.344119 }, "geometry": { "type": "Point", "coordinates": [ 152.607, -30.344 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599016, "decimalLat": -34.42608 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10181, "decimalLat": -29.489778 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.186783, "decimalLat": -28.888915 }, "geometry": { "type": "Point", "coordinates": [ 153.187, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603298, "decimalLat": -34.436911 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520404, "decimalLat": -34.453901 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609644, "decimalLat": -34.436431 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867761, "decimalLat": -29.667396 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82929, "decimalLat": -31.26329 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -31.263 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.080576, "decimalLat": -32.730404 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413625, "decimalLat": -31.940234 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.716117, "decimalLat": -32.673499 }, "geometry": { "type": "Point", "coordinates": [ 150.716, -32.673 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917188, "decimalLat": -30.484267 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -30.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604245, "decimalLat": -34.451363 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.401362, "decimalLat": -35.936826 }, "geometry": { "type": "Point", "coordinates": [ 149.401, -35.937 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110527, "decimalLat": -29.490138 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82517, "decimalLat": -31.27014 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.27 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555243, "decimalLat": -28.38031 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.38 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51562, "decimalLat": -34.44971 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534634, "decimalLat": -34.46223 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.573329, "decimalLat": -32.614457 }, "geometry": { "type": "Point", "coordinates": [ 149.573, -32.614 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808744, "decimalLat": -34.102026 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.271768, "decimalLat": -28.930242 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103285, "decimalLat": -29.487233 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.106799, "decimalLat": -29.627564 }, "geometry": { "type": "Point", "coordinates": [ 151.107, -29.628 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51639, "decimalLat": -34.447229 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516476, "decimalLat": -34.469669 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616163, "decimalLat": -34.434476 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527904, "decimalLat": -34.456442 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848267, "decimalLat": -34.078712 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.079 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59793, "decimalLat": -34.418035 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301997, "decimalLat": -28.847748 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.988137, "decimalLat": -34.032857 }, "geometry": { "type": "Point", "coordinates": [ 150.988, -34.033 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516094, "decimalLat": -34.449864 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919653, "decimalLat": -31.157601 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.158 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.720973, "decimalLat": -36.460941 }, "geometry": { "type": "Point", "coordinates": [ 148.721, -36.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.472227, "decimalLat": -28.247172 }, "geometry": { "type": "Point", "coordinates": [ 153.472, -28.247 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100682, "decimalLat": -30.302122 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -30.302 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.990868, "decimalLat": -29.038548 }, "geometry": { "type": "Point", "coordinates": [ 152.991, -29.039 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.018914, "decimalLat": -30.367339 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -30.367 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.978186, "decimalLat": -30.419039 }, "geometry": { "type": "Point", "coordinates": [ 152.978, -30.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785803, "decimalLat": -31.631801 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609499, "decimalLat": -34.418983 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514331, "decimalLat": -34.447286 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905595, "decimalLat": -31.448924 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520479, "decimalLat": -34.465703 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625993, "decimalLat": -34.388914 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495272, "decimalLat": -28.693786 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.851273, "decimalLat": -34.081013 }, "geometry": { "type": "Point", "coordinates": [ 150.851, -34.081 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104079, "decimalLat": -29.485193 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91543, "decimalLat": -31.445929 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104063, "decimalLat": -29.485099 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884575, "decimalLat": -34.018827 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.019 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.386722, "decimalLat": -32.026667 }, "geometry": { "type": "Point", "coordinates": [ 152.387, -32.027 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59793, "decimalLat": -34.418017 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314939, "decimalLat": -28.868645 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.263578, "decimalLat": -28.881836 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -28.882 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522571, "decimalLat": -34.464898 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521589, "decimalLat": -34.465734 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530552, "decimalLat": -34.47 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784738, "decimalLat": -33.712391 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.987449, "decimalLat": -36.51267 }, "geometry": { "type": "Point", "coordinates": [ 149.987, -36.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630828, "decimalLat": -34.420706 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415455, "decimalLat": -31.933156 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617293, "decimalLat": -34.438393 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917356, "decimalLat": -30.43414 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -30.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517567, "decimalLat": -34.45305 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.862951, "decimalLat": -31.405709 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -31.406 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626559, "decimalLat": -34.386211 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.99613, "decimalLat": -34.061975 }, "geometry": { "type": "Point", "coordinates": [ 150.996, -34.062 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321371, "decimalLat": -28.82658 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521134, "decimalLat": -34.466753 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912711, "decimalLat": -31.478445 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.860822, "decimalLat": -31.387579 }, "geometry": { "type": "Point", "coordinates": [ 152.861, -31.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516802, "decimalLat": -34.445056 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877369, "decimalLat": -31.488594 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -31.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603068, "decimalLat": -34.437709 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926635, "decimalLat": -31.444425 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627078, "decimalLat": -34.420958 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607728, "decimalLat": -34.436484 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.392478, "decimalLat": -31.970304 }, "geometry": { "type": "Point", "coordinates": [ 152.392, -31.97 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105217, "decimalLat": -29.489722 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.061098, "decimalLat": -33.774582 }, "geometry": { "type": "Point", "coordinates": [ 150.061, -33.775 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615056, "decimalLat": -34.4409 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.795439, "decimalLat": -34.140388 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60403, "decimalLat": -34.437944 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109701, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.544403, "decimalLat": -28.652658 }, "geometry": { "type": "Point", "coordinates": [ 153.544, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.81183, "decimalLat": -32.70071 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -32.701 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629827, "decimalLat": -34.394487 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.26304, "decimalLat": -29.61859 }, "geometry": { "type": "Point", "coordinates": [ 152.263, -29.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.849427, "decimalLat": -32.413596 }, "geometry": { "type": "Point", "coordinates": [ 149.849, -32.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.820486 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929569, "decimalLat": -31.459522 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904733, "decimalLat": -31.439511 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316981, "decimalLat": -28.949626 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.952917, "decimalLat": -36.681355 }, "geometry": { "type": "Point", "coordinates": [ 149.953, -36.681 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916224, "decimalLat": -31.476707 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.062475, "decimalLat": -30.922157 }, "geometry": { "type": "Point", "coordinates": [ 150.062, -30.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.054871, "decimalLat": -30.240487 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -30.24 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.237103, "decimalLat": -29.357302 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -29.357 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9078, "decimalLat": -31.4681 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614044, "decimalLat": -34.432866 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322268, "decimalLat": -28.886074 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616821, "decimalLat": -34.429341 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404077, "decimalLat": -31.92712 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.927 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.412357, "decimalLat": -28.639587 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523931, "decimalLat": -34.463826 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108156, "decimalLat": -29.490521 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.9191, "decimalLat": -32.68079 }, "geometry": { "type": "Point", "coordinates": [ 151.919, -32.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604019, "decimalLat": -34.427287 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.473012, "decimalLat": -28.705548 }, "geometry": { "type": "Point", "coordinates": [ 153.473, -28.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616414, "decimalLat": -34.435608 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641499, "decimalLat": -34.395588 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6674, "decimalLat": -30.5006 }, "geometry": { "type": "Point", "coordinates": [ 151.667, -30.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.880784, "decimalLat": -36.581514 }, "geometry": { "type": "Point", "coordinates": [ 149.881, -36.582 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639205, "decimalLat": -34.491811 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912223, "decimalLat": -31.433035 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886715, "decimalLat": -31.429184 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.189, "decimalLat": -28.523 }, "geometry": { "type": "Point", "coordinates": [ 153.189, -28.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515278, "decimalLat": -34.460125 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515534, "decimalLat": -34.454433 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31683, "decimalLat": -28.94801 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.948 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615676, "decimalLat": -34.437838 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785192, "decimalLat": -33.716326 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631495, "decimalLat": -34.387785 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608, "decimalLat": -34.433424 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.508867, "decimalLat": -28.606669 }, "geometry": { "type": "Point", "coordinates": [ 153.509, -28.607 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869915, "decimalLat": -29.676423 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -29.676 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.062922, "decimalLat": -33.775527 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623703, "decimalLat": -34.388761 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518748, "decimalLat": -34.447692 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60402, "decimalLat": -34.424962 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415808, "decimalLat": -31.933486 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.99663, "decimalLat": -28.472806 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -28.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885551, "decimalLat": -31.441289 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.8, "decimalLat": -34.214167 }, "geometry": { "type": "Point", "coordinates": [ 150.8, -34.214 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110179, "decimalLat": -29.490227 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.548, "decimalLat": -28.724359 }, "geometry": { "type": "Point", "coordinates": [ 153.548, -28.724 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324852, "decimalLat": -36.294059 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.294 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.682001, "decimalLat": -33.54208 }, "geometry": { "type": "Point", "coordinates": [ 149.682, -33.542 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.901148, "decimalLat": -34.009047 }, "geometry": { "type": "Point", "coordinates": [ 150.901, -34.009 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513182, "decimalLat": -34.447137 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60468, "decimalLat": -34.424704 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.13632, "decimalLat": -29.592962 }, "geometry": { "type": "Point", "coordinates": [ 153.136, -29.593 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642031, "decimalLat": -34.396779 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.061238, "decimalLat": -28.569001 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -28.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522327, "decimalLat": -34.465046 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6272, "decimalLat": -34.385854 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924742, "decimalLat": -31.440432 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868028, "decimalLat": -31.474842 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602875, "decimalLat": -34.435334 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103119, "decimalLat": -29.489274 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60919, "decimalLat": -34.420672 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631197, "decimalLat": -34.39336 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107454, "decimalLat": -29.4901 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.21012, "decimalLat": -32.23358 }, "geometry": { "type": "Point", "coordinates": [ 152.21, -32.234 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516108, "decimalLat": -34.446808 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381762, "decimalLat": -31.889433 }, "geometry": { "type": "Point", "coordinates": [ 152.382, -31.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597458, "decimalLat": -34.416647 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.513502, "decimalLat": -28.807102 }, "geometry": { "type": "Point", "coordinates": [ 153.514, -28.807 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790978, "decimalLat": -34.191247 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.191 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394843, "decimalLat": -29.015225 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.015 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790562, "decimalLat": -34.184701 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.185 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.859277, "decimalLat": -31.12644 }, "geometry": { "type": "Point", "coordinates": [ 152.859, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887755, "decimalLat": -31.43252 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395153, "decimalLat": -28.960044 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.514194, "decimalLat": -28.24227 }, "geometry": { "type": "Point", "coordinates": [ 153.514, -28.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522675, "decimalLat": -34.46582 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516644, "decimalLat": -34.44819 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62878, "decimalLat": -34.38959 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522293, "decimalLat": -34.465109 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.520779, "decimalLat": -33.631196 }, "geometry": { "type": "Point", "coordinates": [ 149.521, -33.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637281, "decimalLat": -34.423734 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.001052, "decimalLat": -36.513032 }, "geometry": { "type": "Point", "coordinates": [ 150.001, -36.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793, "decimalLat": -31.642 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.159083, "decimalLat": -28.924809 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29339, "decimalLat": -28.864601 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929492, "decimalLat": -31.459516 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534417, "decimalLat": -34.426667 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615506, "decimalLat": -34.435797 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915289, "decimalLat": -31.445588 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62647, "decimalLat": -34.385506 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607783, "decimalLat": -34.436827 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493371, "decimalLat": -28.677583 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -28.678 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640657, "decimalLat": -34.494011 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110506, "decimalLat": -29.490156 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.390764, "decimalLat": -31.95843 }, "geometry": { "type": "Point", "coordinates": [ 152.391, -31.958 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.298158, "decimalLat": -31.246725 }, "geometry": { "type": "Point", "coordinates": [ 150.298, -31.247 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638583, "decimalLat": -34.489536 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610509, "decimalLat": -34.430516 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314998, "decimalLat": -28.846175 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.548753, "decimalLat": -28.726548 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.727 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521223, "decimalLat": -34.455429 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869155, "decimalLat": -29.680305 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -29.68 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.009459, "decimalLat": -34.045788 }, "geometry": { "type": "Point", "coordinates": [ 151.009, -34.046 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.106595, "decimalLat": -29.490763 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523901, "decimalLat": -34.463744 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.791641, "decimalLat": -32.704663 }, "geometry": { "type": "Point", "coordinates": [ 151.792, -32.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597447, "decimalLat": -34.410191 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609302, "decimalLat": -34.42017 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518314, "decimalLat": -34.451325 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561567, "decimalLat": -28.384435 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88573, "decimalLat": -31.439064 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915717, "decimalLat": -31.484158 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819936, "decimalLat": -31.144858 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.145 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.805141, "decimalLat": -34.100735 }, "geometry": { "type": "Point", "coordinates": [ 150.805, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.789547, "decimalLat": -32.65346 }, "geometry": { "type": "Point", "coordinates": [ 151.79, -32.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523452, "decimalLat": -34.458668 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.044461, "decimalLat": -32.639717 }, "geometry": { "type": "Point", "coordinates": [ 152.044, -32.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613735, "decimalLat": -34.431093 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517927, "decimalLat": -34.437578 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.825347, "decimalLat": -34.097778 }, "geometry": { "type": "Point", "coordinates": [ 150.825, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632594, "decimalLat": -34.41827 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785256, "decimalLat": -33.716973 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11027, "decimalLat": -29.490273 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.007932, "decimalLat": -28.624028 }, "geometry": { "type": "Point", "coordinates": [ 153.008, -28.624 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028817, "decimalLat": -32.159062 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.159 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.373266, "decimalLat": -28.251322 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -28.251 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615658, "decimalLat": -34.431184 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.546131, "decimalLat": -28.73487 }, "geometry": { "type": "Point", "coordinates": [ 153.546, -28.735 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.16624, "decimalLat": -34.48819 }, "geometry": { "type": "Point", "coordinates": [ 150.166, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.3166, "decimalLat": -30.3 }, "geometry": { "type": "Point", "coordinates": [ 151.317, -30.3 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.360619, "decimalLat": -35.992018 }, "geometry": { "type": "Point", "coordinates": [ 149.361, -35.992 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597866, "decimalLat": -34.427879 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521332, "decimalLat": -34.435402 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107395, "decimalLat": -29.490058 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096113, "decimalLat": -29.485029 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.295621, "decimalLat": -28.817985 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342777, "decimalLat": -28.860113 }, "geometry": { "type": "Point", "coordinates": [ 153.343, -28.86 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522909, "decimalLat": -34.452374 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556379, "decimalLat": -28.399966 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808714, "decimalLat": -34.098202 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061622, "decimalLat": -32.71098 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515883, "decimalLat": -34.446705 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616818, "decimalLat": -34.43823 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103725, "decimalLat": -29.48566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600664, "decimalLat": -34.446452 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.719305, "decimalLat": -29.404995 }, "geometry": { "type": "Point", "coordinates": [ 152.719, -29.405 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.478671, "decimalLat": -30.643502 }, "geometry": { "type": "Point", "coordinates": [ 151.479, -30.644 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640949, "decimalLat": -34.396199 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11057, "decimalLat": -29.489844 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518429, "decimalLat": -34.457367 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109717, "decimalLat": -29.49018 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522479, "decimalLat": -34.465067 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520981, "decimalLat": -34.465298 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.66184, "decimalLat": -32.688473 }, "geometry": { "type": "Point", "coordinates": [ 151.662, -32.688 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865888, "decimalLat": -30.405003 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -30.405 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.496173, "decimalLat": -28.693467 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.733646, "decimalLat": -30.898329 }, "geometry": { "type": "Point", "coordinates": [ 152.734, -30.898 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367005, "decimalLat": -28.98155 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -28.982 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.299582, "decimalLat": -36.25465 }, "geometry": { "type": "Point", "coordinates": [ 149.3, -36.255 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927278, "decimalLat": -31.45931 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.069789, "decimalLat": -31.843457 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -31.843 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825072, "decimalLat": -31.175471 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.175 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.614013, "decimalLat": -30.345638 }, "geometry": { "type": "Point", "coordinates": [ 152.614, -30.346 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.392503, "decimalLat": -28.665765 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.666 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607805, "decimalLat": -34.430715 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925737, "decimalLat": -31.458891 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919138, "decimalLat": -31.474586 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515947, "decimalLat": -34.446733 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.750496, "decimalLat": -31.449642 }, "geometry": { "type": "Point", "coordinates": [ 152.75, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5238, "decimalLat": -34.463823 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092111, "decimalLat": -29.488037 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.08305, "decimalLat": -30.153038 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -30.153 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888038, "decimalLat": -31.44389 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093088, "decimalLat": -29.488592 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626772, "decimalLat": -34.421393 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.631035, "decimalLat": -31.517697 }, "geometry": { "type": "Point", "coordinates": [ 151.631, -31.518 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.470471, "decimalLat": -28.260548 }, "geometry": { "type": "Point", "coordinates": [ 153.47, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785253, "decimalLat": -33.713913 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108215, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278713, "decimalLat": -28.933174 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.933 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.516398, "decimalLat": -31.318499 }, "geometry": { "type": "Point", "coordinates": [ 152.516, -31.318 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110511, "decimalLat": -29.490194 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907914, "decimalLat": -31.489188 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.642979, "decimalLat": -32.663949 }, "geometry": { "type": "Point", "coordinates": [ 151.643, -32.664 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518797, "decimalLat": -34.448242 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.70221, "decimalLat": -32.694076 }, "geometry": { "type": "Point", "coordinates": [ 151.702, -32.694 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.978386, "decimalLat": -30.426398 }, "geometry": { "type": "Point", "coordinates": [ 152.978, -30.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108183, "decimalLat": -29.4906 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515813, "decimalLat": -34.450904 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4691, "decimalLat": -28.26228 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.647891, "decimalLat": -34.398001 }, "geometry": { "type": "Point", "coordinates": [ 150.648, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517972, "decimalLat": -34.437876 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.137334, "decimalLat": -32.011295 }, "geometry": { "type": "Point", "coordinates": [ 152.137, -32.011 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334493, "decimalLat": -28.813462 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.813 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6674, "decimalLat": -30.5006 }, "geometry": { "type": "Point", "coordinates": [ 151.667, -30.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.485566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.380029, "decimalLat": -31.914455 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609241, "decimalLat": -34.42043 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887416, "decimalLat": -31.437642 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645307, "decimalLat": -34.399393 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.097557, "decimalLat": -29.772966 }, "geometry": { "type": "Point", "coordinates": [ 151.098, -29.773 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300206, "decimalLat": -28.886464 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.995293, "decimalLat": -34.063797 }, "geometry": { "type": "Point", "coordinates": [ 150.995, -34.064 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600605, "decimalLat": -34.427951 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921916, "decimalLat": -31.457252 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606584, "decimalLat": -34.455962 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101231, "decimalLat": -29.490058 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.03171, "decimalLat": -30.43099 }, "geometry": { "type": "Point", "coordinates": [ 153.032, -30.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513096, "decimalLat": -34.447117 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063459, "decimalLat": -32.706216 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.985436, "decimalLat": -30.3987 }, "geometry": { "type": "Point", "coordinates": [ 152.985, -30.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.977465, "decimalLat": -29.039159 }, "geometry": { "type": "Point", "coordinates": [ 152.977, -29.039 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835019, "decimalLat": -34.069733 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630965, "decimalLat": -34.387315 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304024, "decimalLat": -28.938644 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6339, "decimalLat": -33.540592 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -33.541 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632721, "decimalLat": -34.418002 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28038, "decimalLat": -28.946579 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.947 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522672, "decimalLat": -34.465919 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938213, "decimalLat": -36.559404 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516475, "decimalLat": -34.440298 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.22156, "decimalLat": -29.939291 }, "geometry": { "type": "Point", "coordinates": [ 152.222, -29.939 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.021874, "decimalLat": -27.263855 }, "geometry": { "type": "Point", "coordinates": [ 153.022, -27.264 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313232, "decimalLat": -28.816099 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519898, "decimalLat": -34.466593 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.581289, "decimalLat": -34.761555 }, "geometry": { "type": "Point", "coordinates": [ 146.581, -34.762 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.645334, "decimalLat": -32.55144 }, "geometry": { "type": "Point", "coordinates": [ 151.645, -32.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626741, "decimalLat": -34.421357 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109315, "decimalLat": -29.49074 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64467, "decimalLat": -34.39225 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.113549, "decimalLat": -32.760534 }, "geometry": { "type": "Point", "coordinates": [ 152.114, -32.761 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516372, "decimalLat": -34.447454 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.089026, "decimalLat": -28.784836 }, "geometry": { "type": "Point", "coordinates": [ 152.089, -28.785 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.003543, "decimalLat": -34.059081 }, "geometry": { "type": "Point", "coordinates": [ 151.004, -34.059 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37068, "decimalLat": -31.923062 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515086, "decimalLat": -34.447897 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.32559, "decimalLat": -32.097185 }, "geometry": { "type": "Point", "coordinates": [ 152.326, -32.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520634, "decimalLat": -34.453842 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600987, "decimalLat": -34.533564 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.534 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.337032, "decimalLat": -32.303196 }, "geometry": { "type": "Point", "coordinates": [ 152.337, -32.303 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104079, "decimalLat": -29.480584 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.36838, "decimalLat": -28.940092 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519805, "decimalLat": -34.44728 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785544, "decimalLat": -33.709173 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.262705, "decimalLat": -32.039796 }, "geometry": { "type": "Point", "coordinates": [ 152.263, -32.04 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37193, "decimalLat": -29.08315 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -29.083 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.814839, "decimalLat": -34.103949 }, "geometry": { "type": "Point", "coordinates": [ 150.815, -34.104 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616133, "decimalLat": -34.435909 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616178, "decimalLat": -34.434359 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640354, "decimalLat": -34.492761 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.837839, "decimalLat": -34.074174 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.074 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331636, "decimalLat": -28.8452 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099819, "decimalLat": -30.303974 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -30.304 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.780333, "decimalLat": -32.714185 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.738861, "decimalLat": -30.486105 }, "geometry": { "type": "Point", "coordinates": [ 151.739, -30.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918487, "decimalLat": -31.4842 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.221821, "decimalLat": -32.252481 }, "geometry": { "type": "Point", "coordinates": [ 152.222, -32.252 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62541, "decimalLat": -34.389921 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642995, "decimalLat": -34.400395 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790056, "decimalLat": -34.159167 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.159 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808211, "decimalLat": -34.098136 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.97345, "decimalLat": -36.57936 }, "geometry": { "type": "Point", "coordinates": [ 149.973, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631528, "decimalLat": -34.387795 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606321, "decimalLat": -34.438133 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55836, "decimalLat": -28.394137 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627972, "decimalLat": -34.420903 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.855653, "decimalLat": -31.465993 }, "geometry": { "type": "Point", "coordinates": [ 152.856, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615574, "decimalLat": -34.432625 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6453, "decimalLat": -34.391135 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104305, "decimalLat": -29.477754 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602128, "decimalLat": -34.451565 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.114387, "decimalLat": -29.185754 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -29.186 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519836, "decimalLat": -34.435931 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.620796, "decimalLat": -30.332248 }, "geometry": { "type": "Point", "coordinates": [ 152.621, -30.332 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658844, "decimalLat": -33.526954 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.978404, "decimalLat": -31.187902 }, "geometry": { "type": "Point", "coordinates": [ 152.978, -31.188 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.194095, "decimalLat": -32.224416 }, "geometry": { "type": "Point", "coordinates": [ 152.194, -32.224 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523769, "decimalLat": -34.463786 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626025, "decimalLat": -34.390095 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513153, "decimalLat": -34.447758 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374088, "decimalLat": -31.916242 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514531, "decimalLat": -34.443865 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514117, "decimalLat": -34.446434 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644512, "decimalLat": -34.393635 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61147, "decimalLat": -34.419689 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373754, "decimalLat": -31.914652 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5324, "decimalLat": -34.481171 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.56401, "decimalLat": -34.52157 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -34.522 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.873717, "decimalLat": -32.476152 }, "geometry": { "type": "Point", "coordinates": [ 151.874, -32.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532639, "decimalLat": -34.481194 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786032, "decimalLat": -33.712277 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596127, "decimalLat": -34.411446 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.411 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523787, "decimalLat": -34.461704 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.998977, "decimalLat": -36.551144 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104122, "decimalLat": -29.4812 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.79221, "decimalLat": -34.154769 }, "geometry": { "type": "Point", "coordinates": [ 149.792, -34.155 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10129, "decimalLat": -29.490012 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.09001, "decimalLat": -32.733047 }, "geometry": { "type": "Point", "coordinates": [ 152.09, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615872, "decimalLat": -34.435922 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46749, "decimalLat": -28.81383 }, "geometry": { "type": "Point", "coordinates": [ 153.467, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396456, "decimalLat": -28.647216 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.483, "decimalLat": -30.171 }, "geometry": { "type": "Point", "coordinates": [ 152.483, -30.171 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641523, "decimalLat": -34.395489 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.158571, "decimalLat": -28.927046 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.927 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619232, "decimalLat": -34.40071 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.449572, "decimalLat": -28.259933 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10998, "decimalLat": -29.490236 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.360358, "decimalLat": -36.023781 }, "geometry": { "type": "Point", "coordinates": [ 149.36, -36.024 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092881, "decimalLat": -29.493308 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926788, "decimalLat": -31.45499 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.109919, "decimalLat": -32.777823 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -32.778 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637313, "decimalLat": -34.423743 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61594, "decimalLat": -34.434688 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784551, "decimalLat": -33.711934 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616603, "decimalLat": -34.435097 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786171, "decimalLat": -33.710441 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437804, "decimalLat": -29.026272 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -29.026 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790131, "decimalLat": -34.192847 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.193 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785925, "decimalLat": -33.712912 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78652, "decimalLat": -33.703927 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.111011, "decimalLat": -32.76567 }, "geometry": { "type": "Point", "coordinates": [ 152.111, -32.766 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109267, "decimalLat": -29.490712 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602598, "decimalLat": -34.438917 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785378, "decimalLat": -33.710715 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532596, "decimalLat": -34.482275 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.482 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.72636, "decimalLat": -31.842779 }, "geometry": { "type": "Point", "coordinates": [ 152.726, -31.843 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522462, "decimalLat": -34.451652 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63742, "decimalLat": -34.48872 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63767, "decimalLat": -34.488346 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595059, "decimalLat": -34.411515 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636302, "decimalLat": -34.421794 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.467813, "decimalLat": -33.678165 }, "geometry": { "type": "Point", "coordinates": [ 149.468, -33.678 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.11017, "decimalLat": -31.07295 }, "geometry": { "type": "Point", "coordinates": [ 150.11, -31.073 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.57333, "decimalLat": -32.61446 }, "geometry": { "type": "Point", "coordinates": [ 149.573, -32.614 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513185, "decimalLat": -34.445938 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870469, "decimalLat": -31.46443 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627948, "decimalLat": -34.389772 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7941, "decimalLat": -34.14172 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.102735, "decimalLat": -32.734688 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.291886, "decimalLat": -31.164515 }, "geometry": { "type": "Point", "coordinates": [ 150.292, -31.165 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521633, "decimalLat": -34.449147 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.566238, "decimalLat": -28.664002 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.664 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5188, "decimalLat": -28.576882 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625382, "decimalLat": -34.385909 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609234, "decimalLat": -34.420655 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095341, "decimalLat": -29.483983 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10814, "decimalLat": -29.490236 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627331, "decimalLat": -34.42126 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622831, "decimalLat": -34.383812 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.478842 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109374, "decimalLat": -29.49053 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.47101, "decimalLat": -34.49136 }, "geometry": { "type": "Point", "coordinates": [ 150.471, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.167509, "decimalLat": -31.589311 }, "geometry": { "type": "Point", "coordinates": [ 152.168, -31.589 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51898, "decimalLat": -28.57492 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.370406, "decimalLat": -31.922634 }, "geometry": { "type": "Point", "coordinates": [ 152.37, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.414475, "decimalLat": -31.934363 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.934 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065339, "decimalLat": -32.710989 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.804671, "decimalLat": -31.604038 }, "geometry": { "type": "Point", "coordinates": [ 152.805, -31.604 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110511, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.05246, "decimalLat": -28.594591 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -28.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108178, "decimalLat": -29.490292 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.966913, "decimalLat": -32.238896 }, "geometry": { "type": "Point", "coordinates": [ 150.967, -32.239 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637103, "decimalLat": -34.485279 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.345157, "decimalLat": -29.375014 }, "geometry": { "type": "Point", "coordinates": [ 151.345, -29.375 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643414, "decimalLat": -34.393226 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521319, "decimalLat": -34.448717 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396029, "decimalLat": -28.828386 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.22033, "decimalLat": -31.79145 }, "geometry": { "type": "Point", "coordinates": [ 152.22, -31.791 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076699, "decimalLat": -32.72627 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812345, "decimalLat": -34.124693 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.125 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103869, "decimalLat": -29.485381 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616093, "decimalLat": -34.437711 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632786, "decimalLat": -34.418021 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603897, "decimalLat": -34.439564 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.54646, "decimalLat": -34.5087 }, "geometry": { "type": "Point", "coordinates": [ 150.546, -34.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.084951, "decimalLat": -33.771173 }, "geometry": { "type": "Point", "coordinates": [ 150.085, -33.771 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789967, "decimalLat": -34.20114 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.201 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615903, "decimalLat": -34.431 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889383, "decimalLat": -31.443502 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520503, "decimalLat": -34.453857 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.359253, "decimalLat": -28.893189 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -28.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373744, "decimalLat": -31.9144 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597255, "decimalLat": -34.417643 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10633, "decimalLat": -32.73784 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.323554, "decimalLat": -36.298883 }, "geometry": { "type": "Point", "coordinates": [ 149.324, -36.299 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91779, "decimalLat": -31.4697 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519226, "decimalLat": -34.459881 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.35381, "decimalLat": -28.89644 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -28.896 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.789538, "decimalLat": -32.6549 }, "geometry": { "type": "Point", "coordinates": [ 151.79, -32.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646059, "decimalLat": -34.3916 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.777302, "decimalLat": -30.885013 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.573329, "decimalLat": -32.614457 }, "geometry": { "type": "Point", "coordinates": [ 149.573, -32.614 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630156, "decimalLat": -34.420242 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.490096 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.804668, "decimalLat": -31.13257 }, "geometry": { "type": "Point", "coordinates": [ 152.805, -31.133 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.36712, "decimalLat": -28.807094 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -28.807 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609668, "decimalLat": -34.436377 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55336, "decimalLat": -28.407803 }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.60765, "decimalLat": -30.52431 }, "geometry": { "type": "Point", "coordinates": [ 152.608, -30.524 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926021, "decimalLat": -31.452408 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838487, "decimalLat": -34.085331 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.085 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5175, "decimalLat": -34.451984 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793995, "decimalLat": -31.643628 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.644 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298632, "decimalLat": -28.82029 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.963994, "decimalLat": -27.619752 }, "geometry": { "type": "Point", "coordinates": [ 151.964, -27.62 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52145, "decimalLat": -34.446872 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628979, "decimalLat": -34.390612 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633832, "decimalLat": -34.392455 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894844, "decimalLat": -31.414349 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604095, "decimalLat": -34.437963 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785103, "decimalLat": -33.710113 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.55989, "decimalLat": -33.692482 }, "geometry": { "type": "Point", "coordinates": [ 149.56, -33.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318522, "decimalLat": -28.826961 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103951, "decimalLat": -29.489587 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091634, "decimalLat": -29.48784 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.649727, "decimalLat": -32.680193 }, "geometry": { "type": "Point", "coordinates": [ 151.65, -32.68 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091162, "decimalLat": -29.487878 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638563, "decimalLat": -34.489472 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78993, "decimalLat": -34.23398 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.234 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529743, "decimalLat": -34.467892 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.274112, "decimalLat": -28.888406 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.888 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78537, "decimalLat": -30.186161 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -30.186 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515386, "decimalLat": -34.443287 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.961559, "decimalLat": -34.098921 }, "geometry": { "type": "Point", "coordinates": [ 150.962, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630579, "decimalLat": -34.420647 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104122, "decimalLat": -29.480743 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29238, "decimalLat": -28.864021 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610432, "decimalLat": -34.430541 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.973729, "decimalLat": -34.099438 }, "geometry": { "type": "Point", "coordinates": [ 150.974, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631146, "decimalLat": -34.387454 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103784, "decimalLat": -29.485548 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520306, "decimalLat": -34.465672 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603565, "decimalLat": -34.440522 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071536, "decimalLat": -30.88693 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.977245, "decimalLat": -34.086419 }, "geometry": { "type": "Point", "coordinates": [ 150.977, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518297, "decimalLat": -34.45191 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61459, "decimalLat": -34.43394 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.41411, "decimalLat": -31.907995 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.908 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095309, "decimalLat": -29.483965 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626557, "decimalLat": -34.38704 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603635, "decimalLat": -34.436521 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562331, "decimalLat": -28.392089 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.96213, "decimalLat": -30.671984 }, "geometry": { "type": "Point", "coordinates": [ 152.962, -30.672 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.933006, "decimalLat": -32.276114 }, "geometry": { "type": "Point", "coordinates": [ 150.933, -32.276 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077179, "decimalLat": -32.722441 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924943, "decimalLat": -31.434442 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.942657, "decimalLat": -32.528247 }, "geometry": { "type": "Point", "coordinates": [ 151.943, -32.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.041533, "decimalLat": -34.021685 }, "geometry": { "type": "Point", "coordinates": [ 151.042, -34.022 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.52954, "decimalLat": -28.54593 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -28.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513049, "decimalLat": -34.447242 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.209235, "decimalLat": -31.560939 }, "geometry": { "type": "Point", "coordinates": [ 152.209, -31.561 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.386438, "decimalLat": -31.90253 }, "geometry": { "type": "Point", "coordinates": [ 152.386, -31.903 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618778, "decimalLat": -34.436276 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531262, "decimalLat": -34.473233 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.30893, "decimalLat": -29.064958 }, "geometry": { "type": "Point", "coordinates": [ 150.309, -29.065 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82844, "decimalLat": -29.810285 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -29.81 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616989, "decimalLat": -34.437981 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09518, "decimalLat": -29.483334 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630994, "decimalLat": -34.388217 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10445, "decimalLat": -29.476941 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517229, "decimalLat": -34.454521 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104176, "decimalLat": -29.483769 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6887, "decimalLat": -32.06324 }, "geometry": { "type": "Point", "coordinates": [ 151.689, -32.063 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.826661, "decimalLat": -31.249574 }, "geometry": { "type": "Point", "coordinates": [ 152.827, -31.25 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637557, "decimalLat": -34.488479 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516863, "decimalLat": -34.454036 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90758, "decimalLat": -30.17379 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -30.174 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881902, "decimalLat": -31.438588 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.326746, "decimalLat": -28.815788 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520357, "decimalLat": -34.465782 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.594797, "decimalLat": -35.089459 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -35.089 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91037, "decimalLat": -31.487595 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607988, "decimalLat": -34.433829 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51906, "decimalLat": -34.459968 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513142, "decimalLat": -34.447758 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603663, "decimalLat": -34.426036 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.53215, "decimalLat": -28.703269 }, "geometry": { "type": "Point", "coordinates": [ 153.532, -28.703 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615048, "decimalLat": -34.435419 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103693, "decimalLat": -29.485805 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.199046, "decimalLat": -28.82118 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.05894, "decimalLat": -34.90655 }, "geometry": { "type": "Point", "coordinates": [ 150.059, -34.907 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629075, "decimalLat": -34.389541 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.799225, "decimalLat": -34.213363 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.213 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30756, "decimalLat": -28.823006 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915031, "decimalLat": -31.488943 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878566, "decimalLat": -31.159058 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.159 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615491, "decimalLat": -34.432092 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313079, "decimalLat": -28.820148 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605437, "decimalLat": -34.427144 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914657, "decimalLat": -31.48001 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.044273, "decimalLat": -32.479552 }, "geometry": { "type": "Point", "coordinates": [ 152.044, -32.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.814178, "decimalLat": -34.109791 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.11 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.97787, "decimalLat": -34.085729 }, "geometry": { "type": "Point", "coordinates": [ 150.978, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903739, "decimalLat": -30.50301 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -30.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607716, "decimalLat": -34.430416 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521701, "decimalLat": -34.46488 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513231, "decimalLat": -34.447706 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922519, "decimalLat": -31.45867 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.189405, "decimalLat": -28.889794 }, "geometry": { "type": "Point", "coordinates": [ 153.189, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602769, "decimalLat": -34.424585 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518188, "decimalLat": -34.451917 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.30042, "decimalLat": -31.94825 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634968, "decimalLat": -34.420101 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.334753, "decimalLat": -32.348258 }, "geometry": { "type": "Point", "coordinates": [ 152.335, -32.348 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812345, "decimalLat": -34.124693 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.125 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375014, "decimalLat": -28.254046 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926614, "decimalLat": -31.472944 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630875, "decimalLat": -34.393976 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926081, "decimalLat": -31.453437 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.091014, "decimalLat": -33.77256 }, "geometry": { "type": "Point", "coordinates": [ 150.091, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523679, "decimalLat": -34.464253 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.545289, "decimalLat": -34.514293 }, "geometry": { "type": "Point", "coordinates": [ 150.545, -34.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.246088, "decimalLat": -33.169258 }, "geometry": { "type": "Point", "coordinates": [ 151.246, -33.169 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103916, "decimalLat": -29.489507 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603136, "decimalLat": -34.424295 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92054, "decimalLat": -31.449341 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630544, "decimalLat": -34.388731 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868233, "decimalLat": -29.667023 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.02323, "decimalLat": -32.760757 }, "geometry": { "type": "Point", "coordinates": [ 152.023, -32.761 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824486, "decimalLat": -29.503968 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.504 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890385, "decimalLat": -31.448161 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.460586, "decimalLat": -34.496059 }, "geometry": { "type": "Point", "coordinates": [ 150.461, -34.496 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.352351, "decimalLat": -31.885829 }, "geometry": { "type": "Point", "coordinates": [ 152.352, -31.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.861944, "decimalLat": -32.926389 }, "geometry": { "type": "Point", "coordinates": [ 150.862, -32.926 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864257, "decimalLat": -31.291552 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.292 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90424, "decimalLat": -31.445599 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61607, "decimalLat": -34.437756 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31231, "decimalLat": -28.815314 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521282, "decimalLat": -34.46617 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626968, "decimalLat": -34.421028 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610204, "decimalLat": -34.419078 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.554526, "decimalLat": -30.362471 }, "geometry": { "type": "Point", "coordinates": [ 151.555, -30.362 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.291586, "decimalLat": -28.864043 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.915309, "decimalLat": -36.574566 }, "geometry": { "type": "Point", "coordinates": [ 149.915, -36.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27327, "decimalLat": -28.889411 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.022552, "decimalLat": -28.489326 }, "geometry": { "type": "Point", "coordinates": [ 153.023, -28.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518677, "decimalLat": -34.443489 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.772774, "decimalLat": -34.783562 }, "geometry": { "type": "Point", "coordinates": [ 146.773, -34.784 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848206, "decimalLat": -34.030191 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.03 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104283, "decimalLat": -29.489624 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.335882, "decimalLat": -36.178099 }, "geometry": { "type": "Point", "coordinates": [ 149.336, -36.178 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616391, "decimalLat": -34.436031 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110254, "decimalLat": -29.488433 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.418031, "decimalLat": -36.264311 }, "geometry": { "type": "Point", "coordinates": [ 149.418, -36.264 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604139, "decimalLat": -34.437946 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900897, "decimalLat": -31.440591 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626719, "decimalLat": -34.421338 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095314, "decimalLat": -29.489783 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.820889, "decimalLat": -34.092289 }, "geometry": { "type": "Point", "coordinates": [ 150.821, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192632, "decimalLat": -32.228945 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625959, "decimalLat": -34.389742 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.513129, "decimalLat": -28.654564 }, "geometry": { "type": "Point", "coordinates": [ 153.513, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.458141, "decimalLat": -32.813649 }, "geometry": { "type": "Point", "coordinates": [ 151.458, -32.814 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607684, "decimalLat": -34.422004 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.05632, "decimalLat": -30.35884 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -30.359 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.638284, "decimalLat": -30.445242 }, "geometry": { "type": "Point", "coordinates": [ 152.638, -30.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879205, "decimalLat": -31.454215 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063218, "decimalLat": -32.706156 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63528, "decimalLat": -34.420242 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91782, "decimalLat": -31.438393 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.652675, "decimalLat": -34.207205 }, "geometry": { "type": "Point", "coordinates": [ 150.653, -34.207 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107958, "decimalLat": -29.490245 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.05388, "decimalLat": -30.2799 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -30.28 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638532, "decimalLat": -34.49059 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.851556, "decimalLat": -34.043163 }, "geometry": { "type": "Point", "coordinates": [ 150.852, -34.043 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790595, "decimalLat": -34.18963 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.19 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.431324, "decimalLat": -29.016415 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19898, "decimalLat": -32.21744 }, "geometry": { "type": "Point", "coordinates": [ 152.199, -32.217 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892632, "decimalLat": -31.447503 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613912, "decimalLat": -34.432899 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90726, "decimalLat": -31.450039 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.826727, "decimalLat": -29.812954 }, "geometry": { "type": "Point", "coordinates": [ 152.827, -29.813 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.098294, "decimalLat": -29.271992 }, "geometry": { "type": "Point", "coordinates": [ 150.098, -29.272 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522768, "decimalLat": -34.464145 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595735, "decimalLat": -34.413764 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604482, "decimalLat": -34.439251 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613516, "decimalLat": -34.431927 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91819, "decimalLat": -31.485139 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.836214, "decimalLat": -31.597141 }, "geometry": { "type": "Point", "coordinates": [ 152.836, -31.597 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.35368, "decimalLat": -31.88474 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -31.885 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.759299, "decimalLat": -30.84178 }, "geometry": { "type": "Point", "coordinates": [ 152.759, -30.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4064, "decimalLat": -28.4371 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.709661, "decimalLat": -29.634228 }, "geometry": { "type": "Point", "coordinates": [ 150.71, -29.634 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615873, "decimalLat": -34.435119 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884278, "decimalLat": -31.45775 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.833339, "decimalLat": -30.19891 }, "geometry": { "type": "Point", "coordinates": [ 152.833, -30.199 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51681, "decimalLat": -34.448824 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002397, "decimalLat": -29.18133 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -29.181 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.12734, "decimalLat": -28.57876 }, "geometry": { "type": "Point", "coordinates": [ 153.127, -28.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.80272, "decimalLat": -31.361977 }, "geometry": { "type": "Point", "coordinates": [ 152.803, -31.362 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615786, "decimalLat": -34.436263 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79019, "decimalLat": -34.206998 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.207 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096049, "decimalLat": -29.491179 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.20642, "decimalLat": -32.24255 }, "geometry": { "type": "Point", "coordinates": [ 152.206, -32.243 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372471, "decimalLat": -31.921169 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.370124, "decimalLat": -28.877372 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -28.877 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809217, "decimalLat": -34.102067 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914841, "decimalLat": -31.429271 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52083, "decimalLat": -34.467107 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07291, "decimalLat": -32.717174 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521654, "decimalLat": -34.465745 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637663, "decimalLat": -34.488598 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924287, "decimalLat": -31.459166 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520312, "decimalLat": -34.465835 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614244, "decimalLat": -34.42966 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09106, "decimalLat": -29.487845 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609724, "decimalLat": -34.435919 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792791, "decimalLat": -34.143173 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.55733, "decimalLat": -30.179072 }, "geometry": { "type": "Point", "coordinates": [ 152.557, -30.179 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.194095, "decimalLat": -32.224416 }, "geometry": { "type": "Point", "coordinates": [ 152.194, -32.224 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.398798, "decimalLat": -28.599914 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.6 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06505, "decimalLat": -32.710862 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516551, "decimalLat": -34.440327 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.205251, "decimalLat": -31.420089 }, "geometry": { "type": "Point", "coordinates": [ 152.205, -31.42 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819043, "decimalLat": -31.161712 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.162 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639745, "decimalLat": -34.399566 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633747, "decimalLat": -34.418265 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095003, "decimalLat": -29.483498 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515049, "decimalLat": -34.440711 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633061, "decimalLat": -34.41946 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533139, "decimalLat": -34.479725 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.551589, "decimalLat": -28.356225 }, "geometry": { "type": "Point", "coordinates": [ 153.552, -28.356 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622509, "decimalLat": -34.384464 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64496, "decimalLat": -34.391237 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911706, "decimalLat": -31.472649 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314381, "decimalLat": -28.850528 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81107, "decimalLat": -29.801787 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -29.802 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101129, "decimalLat": -29.490142 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302053, "decimalLat": -28.821017 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513059, "decimalLat": -34.445791 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642832, "decimalLat": -34.39573 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514233, "decimalLat": -34.447284 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787653, "decimalLat": -31.636643 }, "geometry": { "type": "Point", "coordinates": [ 152.788, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60802, "decimalLat": -34.44912 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.97089, "decimalLat": -28.503093 }, "geometry": { "type": "Point", "coordinates": [ 152.971, -28.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.950374, "decimalLat": -32.4745 }, "geometry": { "type": "Point", "coordinates": [ 151.95, -32.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613981, "decimalLat": -34.43355 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608946, "decimalLat": -34.434975 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510553, "decimalLat": -28.69241 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.692 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.943012, "decimalLat": -31.25833 }, "geometry": { "type": "Point", "coordinates": [ 152.943, -31.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.767634, "decimalLat": -32.563688 }, "geometry": { "type": "Point", "coordinates": [ 151.768, -32.564 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.879395, "decimalLat": -34.014404 }, "geometry": { "type": "Point", "coordinates": [ 150.879, -34.014 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.417022, "decimalLat": -31.954189 }, "geometry": { "type": "Point", "coordinates": [ 152.417, -31.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.35578, "decimalLat": -31.85808 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630949, "decimalLat": -34.388243 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103963, "decimalLat": -29.484796 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637019, "decimalLat": -34.488261 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611192, "decimalLat": -34.420297 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.023271, "decimalLat": -28.489755 }, "geometry": { "type": "Point", "coordinates": [ 153.023, -28.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105211, "decimalLat": -29.489704 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109369, "decimalLat": -29.490525 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6279, "decimalLat": -32.643714 }, "geometry": { "type": "Point", "coordinates": [ 151.628, -32.644 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.432545, "decimalLat": -28.617273 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.617 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.1827, "decimalLat": -32.718209 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -32.718 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.84509, "decimalLat": -29.834533 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.835 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.499543, "decimalLat": -28.79521 }, "geometry": { "type": "Point", "coordinates": [ 153.5, -28.795 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102883, "decimalLat": -29.487733 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785676, "decimalLat": -33.714649 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.710572, "decimalLat": -28.666909 }, "geometry": { "type": "Point", "coordinates": [ 152.711, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3346, "decimalLat": -28.820958 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.955376, "decimalLat": -30.663571 }, "geometry": { "type": "Point", "coordinates": [ 152.955, -30.664 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.076265, "decimalLat": -28.553447 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -28.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.783268, "decimalLat": -30.192429 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -30.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51735, "decimalLat": -34.44641 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90635, "decimalLat": -30.23624 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -30.236 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521472, "decimalLat": -34.45312 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.939303, "decimalLat": -32.547247 }, "geometry": { "type": "Point", "coordinates": [ 151.939, -32.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.507487, "decimalLat": -28.79793 }, "geometry": { "type": "Point", "coordinates": [ 153.507, -28.798 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640574, "decimalLat": -34.397138 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.512138, "decimalLat": -28.24121 }, "geometry": { "type": "Point", "coordinates": [ 153.512, -28.241 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.55964, "decimalLat": -34.52468 }, "geometry": { "type": "Point", "coordinates": [ 150.56, -34.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517166, "decimalLat": -34.453709 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.55148, "decimalLat": -34.498281 }, "geometry": { "type": "Point", "coordinates": [ 150.551, -34.498 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434063, "decimalLat": -28.970312 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.97 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785778, "decimalLat": -33.712324 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627147, "decimalLat": -34.385799 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602612, "decimalLat": -34.43083 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.43767, "decimalLat": -34.48861 }, "geometry": { "type": "Point", "coordinates": [ 150.438, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.082224, "decimalLat": -32.730627 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636174, "decimalLat": -34.42209 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616765, "decimalLat": -34.441249 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091752, "decimalLat": -29.382877 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514451, "decimalLat": -34.44728 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200414, "decimalLat": -29.35394 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630787, "decimalLat": -34.420615 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522141, "decimalLat": -34.451475 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64078, "decimalLat": -34.494275 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.240267, "decimalLat": -29.35754 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -29.358 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5284, "decimalLat": -34.46287 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79049, "decimalLat": -34.143698 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.144 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105583, "decimalLat": -32.72786 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.009296, "decimalLat": -34.045933 }, "geometry": { "type": "Point", "coordinates": [ 151.009, -34.046 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599987, "decimalLat": -34.446537 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888659, "decimalLat": -30.452702 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -30.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87327, "decimalLat": -29.6845 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -29.684 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07177, "decimalLat": -30.887507 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63556, "decimalLat": -34.41995 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.932724, "decimalLat": -31.45874 }, "geometry": { "type": "Point", "coordinates": [ 152.933, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6154, "decimalLat": -34.435687 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516543, "decimalLat": -34.450135 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616212, "decimalLat": -34.434305 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.1103, "decimalLat": -32.7787 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -32.779 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.259326, "decimalLat": -30.414646 }, "geometry": { "type": "Point", "coordinates": [ 150.259, -30.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517887, "decimalLat": -28.235662 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -28.236 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.006216, "decimalLat": -30.421315 }, "geometry": { "type": "Point", "coordinates": [ 153.006, -30.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.347903, "decimalLat": -32.228499 }, "geometry": { "type": "Point", "coordinates": [ 152.348, -32.228 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093286, "decimalLat": -29.492627 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612164, "decimalLat": -34.432018 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.041095, "decimalLat": -32.735782 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90837, "decimalLat": -31.434786 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.734049, "decimalLat": -30.84847 }, "geometry": { "type": "Point", "coordinates": [ 152.734, -30.848 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.215212, "decimalLat": -28.508764 }, "geometry": { "type": "Point", "coordinates": [ 153.215, -28.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091784, "decimalLat": -29.487938 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629781, "decimalLat": -34.394207 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615934, "decimalLat": -34.43641 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.856945, "decimalLat": -32.625004 }, "geometry": { "type": "Point", "coordinates": [ 149.857, -32.625 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.878878, "decimalLat": -33.252538 }, "geometry": { "type": "Point", "coordinates": [ 150.879, -33.253 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602951, "decimalLat": -34.435353 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.00215, "decimalLat": -29.181601 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -29.182 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604983, "decimalLat": -34.427045 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625275, "decimalLat": -34.385852 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10972, "decimalLat": -29.490154 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63358, "decimalLat": -34.418415 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618026, "decimalLat": -34.429815 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262628, "decimalLat": -28.951265 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -28.951 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.827328, "decimalLat": -29.812783 }, "geometry": { "type": "Point", "coordinates": [ 152.827, -29.813 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61029, "decimalLat": -34.419098 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617472, "decimalLat": -34.429768 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.38713, "decimalLat": -31.876522 }, "geometry": { "type": "Point", "coordinates": [ 152.387, -31.877 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785594, "decimalLat": -33.713139 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556382, "decimalLat": -28.399921 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.054308, "decimalLat": -33.764504 }, "geometry": { "type": "Point", "coordinates": [ 150.054, -33.765 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79092, "decimalLat": -34.215516 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.216 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.382755, "decimalLat": -28.332256 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -28.332 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891476, "decimalLat": -31.447329 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077252, "decimalLat": -32.722474 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394041, "decimalLat": -28.720572 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.721 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.355934, "decimalLat": -37.177314 }, "geometry": { "type": "Point", "coordinates": [ 149.356, -37.177 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922124, "decimalLat": -31.449922 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109417, "decimalLat": -29.49053 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.844509, "decimalLat": -34.060486 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -34.06 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92771, "decimalLat": -31.466336 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.780333, "decimalLat": -32.714185 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60464, "decimalLat": -34.437541 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630994, "decimalLat": -34.388199 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617953, "decimalLat": -34.448854 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602894, "decimalLat": -34.435415 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278284, "decimalLat": -28.93445 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.290219, "decimalLat": -28.832291 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.832 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523492, "decimalLat": -28.686406 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520658, "decimalLat": -34.45377 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070147, "decimalLat": -32.712831 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63736, "decimalLat": -34.420544 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.111707, "decimalLat": -36.243939 }, "geometry": { "type": "Point", "coordinates": [ 149.112, -36.244 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907901, "decimalLat": -31.445284 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.392847, "decimalLat": -28.269565 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.27 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09526, "decimalLat": -29.483923 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51311, "decimalLat": -34.447721 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.779136, "decimalLat": -32.485756 }, "geometry": { "type": "Point", "coordinates": [ 151.779, -32.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.022406, "decimalLat": -32.73767 }, "geometry": { "type": "Point", "coordinates": [ 152.022, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63472, "decimalLat": -34.485224 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656042, "decimalLat": -34.458633 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604215, "decimalLat": -34.437939 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784854, "decimalLat": -33.715268 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514333, "decimalLat": -34.446502 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.731727, "decimalLat": -28.803954 }, "geometry": { "type": "Point", "coordinates": [ 152.732, -28.804 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.97917, "decimalLat": -34.05292 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343646, "decimalLat": -28.866891 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812032, "decimalLat": -34.119831 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.12 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.651289, "decimalLat": -34.401726 }, "geometry": { "type": "Point", "coordinates": [ 150.651, -34.402 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515743, "decimalLat": -34.444448 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110538, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101311, "decimalLat": -29.48976 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.778102, "decimalLat": -31.657441 }, "geometry": { "type": "Point", "coordinates": [ 152.778, -31.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51749, "decimalLat": -34.453075 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103886, "decimalLat": -29.489587 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656879, "decimalLat": -34.454773 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10409, "decimalLat": -29.484072 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31644, "decimalLat": -28.39963 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78718, "decimalLat": -34.21254 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -34.213 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.08432, "decimalLat": -31.13017 }, "geometry": { "type": "Point", "coordinates": [ 150.084, -31.13 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65871, "decimalLat": -33.526832 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.619482, "decimalLat": -30.341341 }, "geometry": { "type": "Point", "coordinates": [ 152.619, -30.341 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.489811 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92191, "decimalLat": -31.454829 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86303, "decimalLat": -28.963665 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -28.964 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415154, "decimalLat": -31.93329 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.857243, "decimalLat": -30.314094 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -30.314 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.058805, "decimalLat": -33.767775 }, "geometry": { "type": "Point", "coordinates": [ 150.059, -33.768 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564424, "decimalLat": -28.328065 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616563, "decimalLat": -34.439938 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522446, "decimalLat": -34.465824 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517336, "decimalLat": -34.452026 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613559, "decimalLat": -34.417665 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.422028, "decimalLat": -34.387975 }, "geometry": { "type": "Point", "coordinates": [ 150.422, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62991, "decimalLat": -34.395409 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90679, "decimalLat": -31.466968 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 2, "stateProvi": "South Australia", "decimalLon": 138.70654, "decimalLat": -34.99039 }, "geometry": { "type": "Point", "coordinates": [ 138.707, -34.99 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064801, "decimalLat": -32.707579 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52043, "decimalLat": -34.454117 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532747, "decimalLat": -34.475652 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077233, "decimalLat": -32.722459 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.23024, "decimalLat": -34.26114 }, "geometry": { "type": "Point", "coordinates": [ 150.23, -34.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.078142, "decimalLat": -32.727834 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.815152, "decimalLat": -31.42944 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557263, "decimalLat": -28.397359 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61421, "decimalLat": -34.429714 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.325544, "decimalLat": -29.033981 }, "geometry": { "type": "Point", "coordinates": [ 150.326, -29.034 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415046, "decimalLat": -31.9333 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.7361, "decimalLat": -29.75 }, "geometry": { "type": "Point", "coordinates": [ 151.736, -29.75 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104187, "decimalLat": -29.485041 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795541, "decimalLat": -31.645793 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -31.646 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.842428, "decimalLat": -31.529635 }, "geometry": { "type": "Point", "coordinates": [ 152.842, -31.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603436, "decimalLat": -34.435516 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607287, "decimalLat": -34.422555 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914016, "decimalLat": -31.47668 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.352564, "decimalLat": -28.883003 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -28.883 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.48874, "decimalLat": -32.03227 }, "geometry": { "type": "Point", "coordinates": [ 152.489, -32.032 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063524, "decimalLat": -32.70598 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514373, "decimalLat": -34.44479 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364275, "decimalLat": -28.834226 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516389, "decimalLat": -34.447247 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528166, "decimalLat": -34.467463 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104037, "decimalLat": -29.485118 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513732, "decimalLat": -34.44731 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615754, "decimalLat": -34.438525 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.613372, "decimalLat": -28.682634 }, "geometry": { "type": "Point", "coordinates": [ 153.613, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.820736, "decimalLat": -31.200466 }, "geometry": { "type": "Point", "coordinates": [ 152.821, -31.2 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532292, "decimalLat": -34.47338 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.473 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279661, "decimalLat": -28.831073 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615589, "decimalLat": -34.435528 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924972, "decimalLat": -31.45925 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552128, "decimalLat": -33.491218 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609191, "decimalLat": -34.420654 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516981, "decimalLat": -28.691628 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642133, "decimalLat": -34.395852 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312767, "decimalLat": -29.008668 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -29.009 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.195816, "decimalLat": -28.84626 }, "geometry": { "type": "Point", "coordinates": [ 153.196, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630921, "decimalLat": -34.390019 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102701, "decimalLat": -29.487593 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950373, "decimalLat": -36.572524 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630331, "decimalLat": -34.420967 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520292, "decimalLat": -34.465771 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10436, "decimalLat": -32.723988 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108119, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5818, "decimalLat": -28.71029 }, "geometry": { "type": "Point", "coordinates": [ 153.582, -28.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29248, "decimalLat": -28.864786 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.898282, "decimalLat": -33.999921 }, "geometry": { "type": "Point", "coordinates": [ 150.898, -34.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52928, "decimalLat": -34.458858 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558569, "decimalLat": -28.644286 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.644 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.233821, "decimalLat": -28.945517 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -28.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094944, "decimalLat": -30.372371 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -30.372 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.358826, "decimalLat": -36.176866 }, "geometry": { "type": "Point", "coordinates": [ 149.359, -36.177 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.03877, "decimalLat": -30.93457 }, "geometry": { "type": "Point", "coordinates": [ 150.039, -30.935 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519484, "decimalLat": -34.455207 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.83358, "decimalLat": -33.38066 }, "geometry": { "type": "Point", "coordinates": [ 150.834, -33.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395804, "decimalLat": -28.999257 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597072, "decimalLat": -34.428603 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.022649, "decimalLat": -34.026487 }, "geometry": { "type": "Point", "coordinates": [ 151.023, -34.026 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.073282, "decimalLat": -30.297941 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -30.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614882, "decimalLat": -34.432864 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.845508, "decimalLat": -34.07335 }, "geometry": { "type": "Point", "coordinates": [ 150.846, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785074, "decimalLat": -33.710845 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921563, "decimalLat": -31.453251 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607571, "decimalLat": -34.454178 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563417, "decimalLat": -28.38145 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646112, "decimalLat": -33.738628 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -33.739 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.35486, "decimalLat": -36.18352 }, "geometry": { "type": "Point", "coordinates": [ 149.355, -36.184 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61604, "decimalLat": -34.436123 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630277, "decimalLat": -34.420957 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277598, "decimalLat": -28.937314 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.937 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622684, "decimalLat": -34.384035 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515441, "decimalLat": -34.44693 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89905, "decimalLat": -31.44506 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915616, "decimalLat": -31.482586 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.483 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.326041, "decimalLat": -36.334464 }, "geometry": { "type": "Point", "coordinates": [ 149.326, -36.334 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.934118, "decimalLat": -29.725197 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -29.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9869, "decimalLat": -30.4028 }, "geometry": { "type": "Point", "coordinates": [ 152.987, -30.403 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428439, "decimalLat": -28.955509 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.956 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.594666, "decimalLat": -34.427518 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.839682, "decimalLat": -31.090351 }, "geometry": { "type": "Point", "coordinates": [ 152.84, -31.09 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515319, "decimalLat": -34.451057 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597456, "decimalLat": -34.418242 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527581, "decimalLat": -34.455735 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.991043, "decimalLat": -34.08772 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.088 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522228, "decimalLat": -34.451485 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377273, "decimalLat": -28.329243 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656937, "decimalLat": -34.458542 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524537, "decimalLat": -34.482725 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.483 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.270318, "decimalLat": -31.126723 }, "geometry": { "type": "Point", "coordinates": [ 150.27, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302468, "decimalLat": -28.848121 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786056, "decimalLat": -33.714098 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.55444, "decimalLat": -34.511271 }, "geometry": { "type": "Point", "coordinates": [ 150.554, -34.511 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.257467, "decimalLat": -32.209227 }, "geometry": { "type": "Point", "coordinates": [ 152.257, -32.209 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077229, "decimalLat": -32.722466 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6185, "decimalLat": -34.429599 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907764, "decimalLat": -31.456121 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.510267, "decimalLat": -31.678701 }, "geometry": { "type": "Point", "coordinates": [ 152.51, -31.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597958, "decimalLat": -34.415899 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.416 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632904, "decimalLat": -34.418068 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.63547, "decimalLat": -32.619853 }, "geometry": { "type": "Point", "coordinates": [ 151.635, -32.62 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921512, "decimalLat": -31.474598 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901137, "decimalLat": -31.442612 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598708, "decimalLat": -34.428472 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6252, "decimalLat": -34.386184 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.407585, "decimalLat": -28.98299 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524397, "decimalLat": -34.46388 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791068, "decimalLat": -34.112623 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.113 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.850406, "decimalLat": -31.451441 }, "geometry": { "type": "Point", "coordinates": [ 152.85, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513126, "decimalLat": -34.44719 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90811, "decimalLat": -31.429879 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809758, "decimalLat": -34.101251 }, "geometry": { "type": "Point", "coordinates": [ 150.81, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522145, "decimalLat": -34.46497 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066656, "decimalLat": -32.709755 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900198, "decimalLat": -31.452096 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32338, "decimalLat": -28.880745 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.881 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605258, "decimalLat": -34.422741 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.132983, "decimalLat": -32.724912 }, "geometry": { "type": "Point", "coordinates": [ 152.133, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609176, "decimalLat": -34.420771 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910083, "decimalLat": -30.505415 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -30.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522733, "decimalLat": -34.459411 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30258, "decimalLat": -28.845844 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.406557, "decimalLat": -31.944608 }, "geometry": { "type": "Point", "coordinates": [ 152.407, -31.945 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52142, "decimalLat": -34.46666 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517368, "decimalLat": -34.452054 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063676, "decimalLat": -32.706562 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627365, "decimalLat": -34.421216 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984956, "decimalLat": -34.092211 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522138, "decimalLat": -34.465917 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.623128, "decimalLat": -30.415255 }, "geometry": { "type": "Point", "coordinates": [ 151.623, -30.415 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109294, "decimalLat": -29.490801 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.030235, "decimalLat": -32.651336 }, "geometry": { "type": "Point", "coordinates": [ 152.03, -32.651 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516324, "decimalLat": -34.447967 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.802963, "decimalLat": -34.19091 }, "geometry": { "type": "Point", "coordinates": [ 150.803, -34.191 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.463368, "decimalLat": -28.321162 }, "geometry": { "type": "Point", "coordinates": [ 153.463, -28.321 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520245, "decimalLat": -34.465527 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78315, "decimalLat": -33.717931 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521345, "decimalLat": -34.466613 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104122, "decimalLat": -29.477469 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108135, "decimalLat": -29.490245 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.268372, "decimalLat": -28.912917 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.913 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91142, "decimalLat": -31.472867 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795899, "decimalLat": -30.884771 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.359462, "decimalLat": -28.807868 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -28.808 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6887, "decimalLat": -32.06324 }, "geometry": { "type": "Point", "coordinates": [ 151.689, -32.063 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.952246, "decimalLat": -36.596292 }, "geometry": { "type": "Point", "coordinates": [ 149.952, -36.596 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.478507, "decimalLat": -28.631175 }, "geometry": { "type": "Point", "coordinates": [ 153.479, -28.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520828, "decimalLat": -34.459444 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924019, "decimalLat": -31.459472 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604295, "decimalLat": -34.43895 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617307, "decimalLat": -34.439033 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79209, "decimalLat": -34.21536 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.215 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922857, "decimalLat": -31.447206 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623552, "decimalLat": -34.38526 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.50955, "decimalLat": -31.893674 }, "geometry": { "type": "Point", "coordinates": [ 152.51, -31.894 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.397187, "decimalLat": -31.976944 }, "geometry": { "type": "Point", "coordinates": [ 152.397, -31.977 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063677, "decimalLat": -32.706562 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522968, "decimalLat": -34.452573 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923886, "decimalLat": -31.444286 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632707, "decimalLat": -34.418885 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922867, "decimalLat": -31.459288 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515362, "decimalLat": -34.451058 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967708, "decimalLat": -36.441911 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604748, "decimalLat": -34.427293 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.078606, "decimalLat": -30.338775 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -30.339 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.355934, "decimalLat": -37.177314 }, "geometry": { "type": "Point", "coordinates": [ 149.356, -37.177 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90013, "decimalLat": -29.631312 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603042, "decimalLat": -34.424519 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641935, "decimalLat": -34.398643 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520464, "decimalLat": -34.454064 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.105221, "decimalLat": -33.780196 }, "geometry": { "type": "Point", "coordinates": [ 150.105, -33.78 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378205, "decimalLat": -31.918912 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644075, "decimalLat": -34.393681 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.635908, "decimalLat": -32.6197 }, "geometry": { "type": "Point", "coordinates": [ 151.636, -32.62 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534059, "decimalLat": -34.479906 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109723, "decimalLat": -29.490189 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103905, "decimalLat": -29.484878 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.572557, "decimalLat": -28.368956 }, "geometry": { "type": "Point", "coordinates": [ 153.573, -28.369 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923955, "decimalLat": -30.505279 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -30.505 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061195, "decimalLat": -32.739218 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.978421, "decimalLat": -34.085368 }, "geometry": { "type": "Point", "coordinates": [ 150.978, -34.085 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662833, "decimalLat": -33.526343 }, "geometry": { "type": "Point", "coordinates": [ 150.663, -33.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517338, "decimalLat": -34.451575 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888913, "decimalLat": -31.442509 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519032, "decimalLat": -34.447319 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.527063, "decimalLat": -28.642875 }, "geometry": { "type": "Point", "coordinates": [ 153.527, -28.643 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562995, "decimalLat": -28.381709 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.382 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79002, "decimalLat": -34.23712 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.237 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783132, "decimalLat": -33.71872 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630815, "decimalLat": -34.386456 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.092424, "decimalLat": -32.738356 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.736077, "decimalLat": -28.674643 }, "geometry": { "type": "Point", "coordinates": [ 152.736, -28.675 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.582601, "decimalLat": -34.500217 }, "geometry": { "type": "Point", "coordinates": [ 150.583, -34.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.651446, "decimalLat": -33.52184 }, "geometry": { "type": "Point", "coordinates": [ 150.651, -33.522 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59711, "decimalLat": -34.417028 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.466064, "decimalLat": -28.237277 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374163, "decimalLat": -31.91544 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558112, "decimalLat": -28.354205 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525511, "decimalLat": -34.471142 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.796233, "decimalLat": -31.652241 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.354974, "decimalLat": -31.913322 }, "geometry": { "type": "Point", "coordinates": [ 152.355, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518219, "decimalLat": -34.45345 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529664, "decimalLat": -34.467972 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657667, "decimalLat": -34.456167 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631182, "decimalLat": -34.387328 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318205, "decimalLat": -28.820654 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60478, "decimalLat": -34.427302 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.472227, "decimalLat": -28.247172 }, "geometry": { "type": "Point", "coordinates": [ 153.472, -28.247 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.584284, "decimalLat": -28.631598 }, "geometry": { "type": "Point", "coordinates": [ 153.584, -28.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517669, "decimalLat": -34.437455 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559444, "decimalLat": -28.328333 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.963151, "decimalLat": -28.426656 }, "geometry": { "type": "Point", "coordinates": [ 152.963, -28.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909483, "decimalLat": -31.474266 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605729, "decimalLat": -34.437526 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989805, "decimalLat": -34.025883 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.026 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916065, "decimalLat": -31.457764 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319275, "decimalLat": -28.819965 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101204, "decimalLat": -29.490044 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603093, "decimalLat": -34.424285 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.5492, "decimalLat": -33.488035 }, "geometry": { "type": "Point", "coordinates": [ 149.549, -33.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631136, "decimalLat": -34.387417 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616162, "decimalLat": -34.436054 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063828, "decimalLat": -32.706555 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605136, "decimalLat": -34.426255 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895785, "decimalLat": -31.435164 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.734082, "decimalLat": -31.027241 }, "geometry": { "type": "Point", "coordinates": [ 152.734, -31.027 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.368349, "decimalLat": -28.876599 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.877 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925407, "decimalLat": -31.445133 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.935639, "decimalLat": -32.242583 }, "geometry": { "type": "Point", "coordinates": [ 151.936, -32.243 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638518, "decimalLat": -34.490688 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659043, "decimalLat": -34.457573 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52902, "decimalLat": -34.471357 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064942, "decimalLat": -32.709353 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.118389, "decimalLat": -35.081507 }, "geometry": { "type": "Point", "coordinates": [ 150.118, -35.082 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604965, "decimalLat": -34.431498 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.957744, "decimalLat": -36.497148 }, "geometry": { "type": "Point", "coordinates": [ 149.958, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.335998, "decimalLat": -34.639966 }, "geometry": { "type": "Point", "coordinates": [ 150.336, -34.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520735, "decimalLat": -34.436093 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990654, "decimalLat": -34.024174 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627381, "decimalLat": -34.390599 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613447, "decimalLat": -34.431655 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.99624, "decimalLat": -34.082946 }, "geometry": { "type": "Point", "coordinates": [ 150.996, -34.083 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518308, "decimalLat": -34.439767 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626892, "decimalLat": -34.421017 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109358, "decimalLat": -29.490455 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615641, "decimalLat": -34.440596 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.061113, "decimalLat": -33.776358 }, "geometry": { "type": "Point", "coordinates": [ 150.061, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534731, "decimalLat": -34.459302 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627369, "decimalLat": -34.420287 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.857148, "decimalLat": -31.447159 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.356908, "decimalLat": -33.042967 }, "geometry": { "type": "Point", "coordinates": [ 151.357, -33.043 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55589, "decimalLat": -28.399119 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625485, "decimalLat": -34.389949 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525416, "decimalLat": -34.464766 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929294, "decimalLat": -31.450528 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611501, "decimalLat": -34.419753 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59815, "decimalLat": -34.42783 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.87627, "decimalLat": -34.035028 }, "geometry": { "type": "Point", "coordinates": [ 150.876, -34.035 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.828654, "decimalLat": -34.077477 }, "geometry": { "type": "Point", "coordinates": [ 150.829, -34.077 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525619, "decimalLat": -34.464139 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637333, "decimalLat": -34.423825 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.440795, "decimalLat": -31.942237 }, "geometry": { "type": "Point", "coordinates": [ 152.441, -31.942 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104256, "decimalLat": -29.479841 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921742, "decimalLat": -31.474842 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.846455, "decimalLat": -31.430925 }, "geometry": { "type": "Point", "coordinates": [ 152.846, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092524, "decimalLat": -29.493189 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605617, "decimalLat": -34.423505 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522215, "decimalLat": -34.46481 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560992, "decimalLat": -28.388905 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62918, "decimalLat": -34.395845 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607058, "decimalLat": -34.437841 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412555, "decimalLat": -31.932138 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.839174, "decimalLat": -34.057219 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.057 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604572, "decimalLat": -34.424684 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104171, "decimalLat": -29.478524 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523649, "decimalLat": -34.459366 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103806, "decimalLat": -29.485571 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637302, "decimalLat": -34.48787 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317523, "decimalLat": -28.851214 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524121, "decimalLat": -34.471402 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926401, "decimalLat": -31.455671 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.850173, "decimalLat": -34.067842 }, "geometry": { "type": "Point", "coordinates": [ 150.85, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.094261, "decimalLat": -34.148854 }, "geometry": { "type": "Point", "coordinates": [ 150.094, -34.149 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635333, "decimalLat": -34.420261 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.078206, "decimalLat": -32.727783 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796658, "decimalLat": -34.21262 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.213 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374047, "decimalLat": -31.913202 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.17867, "decimalLat": -28.85897 }, "geometry": { "type": "Point", "coordinates": [ 153.179, -28.859 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.909046, "decimalLat": -36.609857 }, "geometry": { "type": "Point", "coordinates": [ 149.909, -36.61 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822979, "decimalLat": -29.506251 }, "geometry": { "type": "Point", "coordinates": [ 152.823, -29.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62795, "decimalLat": -34.42092 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915994, "decimalLat": -31.454495 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786688, "decimalLat": -31.629194 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616465, "decimalLat": -34.430371 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302593, "decimalLat": -28.819803 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076587, "decimalLat": -32.722674 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625767, "decimalLat": -34.38652 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300675, "decimalLat": -28.821829 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.602127, "decimalLat": -31.802261 }, "geometry": { "type": "Point", "coordinates": [ 152.602, -31.802 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110576, "decimalLat": -29.490142 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.11865, "decimalLat": -31.14425 }, "geometry": { "type": "Point", "coordinates": [ 150.119, -31.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.972799, "decimalLat": -32.174892 }, "geometry": { "type": "Point", "coordinates": [ 151.973, -32.175 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608643, "decimalLat": -34.453613 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517169, "decimalLat": -34.44775 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513057, "decimalLat": -34.447314 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.001929, "decimalLat": -36.463023 }, "geometry": { "type": "Point", "coordinates": [ 150.002, -36.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526216, "decimalLat": -34.45831 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793148, "decimalLat": -31.642251 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513091, "decimalLat": -34.447288 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.008, "decimalLat": -32.72804 }, "geometry": { "type": "Point", "coordinates": [ 152.008, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516587, "decimalLat": -34.449009 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.813143, "decimalLat": -31.542456 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -31.542 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914598, "decimalLat": -31.468444 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010328, "decimalLat": -33.769386 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -33.769 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518208, "decimalLat": -34.453441 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516159, "decimalLat": -34.449505 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107432, "decimalLat": -29.490119 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618177, "decimalLat": -34.435218 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.509563, "decimalLat": -28.700441 }, "geometry": { "type": "Point", "coordinates": [ 153.51, -28.7 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.871125, "decimalLat": -34.045533 }, "geometry": { "type": "Point", "coordinates": [ 150.871, -34.046 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.106072, "decimalLat": -28.70895 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -28.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093085, "decimalLat": -30.318178 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -30.318 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.379668, "decimalLat": -28.586368 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -28.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103741, "decimalLat": -29.485557 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.65893, "decimalLat": -32.684334 }, "geometry": { "type": "Point", "coordinates": [ 151.659, -32.684 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.713237, "decimalLat": -31.805293 }, "geometry": { "type": "Point", "coordinates": [ 152.713, -31.805 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437732, "decimalLat": -28.993352 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.993 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60315, "decimalLat": -34.417705 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.326235, "decimalLat": -28.824508 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103178, "decimalLat": -29.486197 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895741, "decimalLat": -31.428246 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902527, "decimalLat": -31.241502 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516536, "decimalLat": -34.450018 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521742, "decimalLat": -34.465693 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645949, "decimalLat": -34.391643 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51613, "decimalLat": -34.454544 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.959382, "decimalLat": -34.106531 }, "geometry": { "type": "Point", "coordinates": [ 150.959, -34.107 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609224, "decimalLat": -34.420637 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43828, "decimalLat": -28.699478 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.699 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356155, "decimalLat": -28.899245 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -28.899 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631483, "decimalLat": -34.387821 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.089045, "decimalLat": -32.738276 }, "geometry": { "type": "Point", "coordinates": [ 152.089, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626568, "decimalLat": -34.38704 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317534, "decimalLat": -28.827945 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.366249, "decimalLat": -31.871338 }, "geometry": { "type": "Point", "coordinates": [ 152.366, -31.871 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.3295, "decimalLat": -31.920675 }, "geometry": { "type": "Point", "coordinates": [ 152.33, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898982, "decimalLat": -29.631079 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064063, "decimalLat": -32.708707 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.846211, "decimalLat": -32.39808 }, "geometry": { "type": "Point", "coordinates": [ 149.846, -32.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108167, "decimalLat": -29.490614 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1094, "decimalLat": -30.29861 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.861946, "decimalLat": -34.029263 }, "geometry": { "type": "Point", "coordinates": [ 150.862, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.487783, "decimalLat": -30.634036 }, "geometry": { "type": "Point", "coordinates": [ 151.488, -30.634 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785911, "decimalLat": -31.631828 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627287, "decimalLat": -34.421286 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639846, "decimalLat": -34.400226 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637181, "decimalLat": -34.422262 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517688, "decimalLat": -34.453746 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513708, "decimalLat": -34.4463 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378822, "decimalLat": -31.919921 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928708, "decimalLat": -31.466484 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104141, "decimalLat": -29.485228 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623255, "decimalLat": -34.38575 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785438, "decimalLat": -33.718741 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.282417, "decimalLat": -36.057778 }, "geometry": { "type": "Point", "coordinates": [ 149.282, -36.058 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.820329, "decimalLat": -31.463294 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895794, "decimalLat": -31.432647 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645986, "decimalLat": -34.397297 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.564273, "decimalLat": -29.54578 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -29.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627273, "decimalLat": -34.420619 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628392, "decimalLat": -34.391007 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523681, "decimalLat": -34.464172 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627927, "decimalLat": -34.390123 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619153, "decimalLat": -34.436878 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063773, "decimalLat": -32.701867 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80834, "decimalLat": -33.464764 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -33.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085295, "decimalLat": -32.730287 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518053, "decimalLat": -34.453537 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105345, "decimalLat": -32.736858 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.044245, "decimalLat": -32.137155 }, "geometry": { "type": "Point", "coordinates": [ 152.044, -32.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394086, "decimalLat": -28.958996 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630932, "decimalLat": -34.388847 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599833, "decimalLat": -34.418037 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818471, "decimalLat": -31.542479 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.542 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104165, "decimalLat": -29.478772 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.862125, "decimalLat": -31.280368 }, "geometry": { "type": "Point", "coordinates": [ 152.862, -31.28 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921056, "decimalLat": -31.473295 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10343, "decimalLat": -29.485594 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06202, "decimalLat": -32.709226 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515763, "decimalLat": -34.446702 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.86291, "decimalLat": -31.37915 }, "geometry": { "type": "Point", "coordinates": [ 149.863, -31.379 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790619, "decimalLat": -34.210895 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.211 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.0348, "decimalLat": -32.76535 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.611127, "decimalLat": -28.662357 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513232, "decimalLat": -34.445839 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513813, "decimalLat": -34.445671 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104157, "decimalLat": -29.485025 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60252, "decimalLat": -34.419956 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784449, "decimalLat": -33.716115 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618038, "decimalLat": -34.435116 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063, "decimalLat": -32.7074 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519804, "decimalLat": -34.464256 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.834844, "decimalLat": -31.594921 }, "geometry": { "type": "Point", "coordinates": [ 152.835, -31.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630965, "decimalLat": -34.388451 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.373649, "decimalLat": -36.146025 }, "geometry": { "type": "Point", "coordinates": [ 149.374, -36.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605505, "decimalLat": -34.437369 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627764, "decimalLat": -34.420962 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.9251, "decimalLat": -32.49093 }, "geometry": { "type": "Point", "coordinates": [ 151.925, -32.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63852, "decimalLat": -34.490616 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103924, "decimalLat": -29.489619 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.153345, "decimalLat": -32.731477 }, "geometry": { "type": "Point", "coordinates": [ 152.153, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.01619, "decimalLat": -32.723907 }, "geometry": { "type": "Point", "coordinates": [ 152.016, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.265006, "decimalLat": -28.85328 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -28.853 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104155, "decimalLat": -29.4788 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.653883, "decimalLat": -31.34279 }, "geometry": { "type": "Point", "coordinates": [ 152.654, -31.343 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288292, "decimalLat": -28.809314 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272241, "decimalLat": -28.941837 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -28.942 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374212, "decimalLat": -31.915419 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621125, "decimalLat": -34.398754 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78326, "decimalLat": -33.719196 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.01112, "decimalLat": -36.547428 }, "geometry": { "type": "Point", "coordinates": [ 150.011, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.38625, "decimalLat": -31.902483 }, "geometry": { "type": "Point", "coordinates": [ 152.386, -31.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607206, "decimalLat": -34.43037 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513842, "decimalLat": -34.447285 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894418, "decimalLat": -31.447732 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634338, "decimalLat": -34.420071 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627122, "decimalLat": -34.390549 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103463, "decimalLat": -29.485697 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639341, "decimalLat": -34.399594 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630283, "decimalLat": -34.395281 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292409, "decimalLat": -28.864674 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103929, "decimalLat": -29.489591 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910411, "decimalLat": -31.43672 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643689, "decimalLat": -34.394656 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914889, "decimalLat": -31.458946 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597226, "decimalLat": -34.410322 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637477, "decimalLat": -34.488216 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521587, "decimalLat": -34.463904 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517192, "decimalLat": -34.447326 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523077, "decimalLat": -34.466206 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82069, "decimalLat": -30.911734 }, "geometry": { "type": "Point", "coordinates": [ 152.821, -30.912 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.23469, "decimalLat": -31.84523 }, "geometry": { "type": "Point", "coordinates": [ 150.235, -31.845 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.235574, "decimalLat": -32.381768 }, "geometry": { "type": "Point", "coordinates": [ 152.236, -32.382 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102776, "decimalLat": -29.487476 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786152, "decimalLat": -33.709735 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303585, "decimalLat": -28.650415 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603939, "decimalLat": -34.427042 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101306, "decimalLat": -29.490096 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786965, "decimalLat": -33.70567 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631182, "decimalLat": -34.387328 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633885, "decimalLat": -34.392519 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794924, "decimalLat": -34.134713 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.135 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518799, "decimalLat": -34.447837 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.106292, "decimalLat": -32.72845 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630921, "decimalLat": -34.388099 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6095, "decimalLat": -34.418947 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603331, "decimalLat": -34.43079 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.168404, "decimalLat": -29.436313 }, "geometry": { "type": "Point", "coordinates": [ 153.168, -29.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629841, "decimalLat": -34.390133 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.909982, "decimalLat": -36.631687 }, "geometry": { "type": "Point", "coordinates": [ 149.91, -36.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412887, "decimalLat": -31.932133 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924223, "decimalLat": -31.454146 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03766, "decimalLat": -32.731462 }, "geometry": { "type": "Point", "coordinates": [ 152.038, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609525, "decimalLat": -28.661307 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279103, "decimalLat": -28.874212 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55749, "decimalLat": -28.388386 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.545175, "decimalLat": -31.582822 }, "geometry": { "type": "Point", "coordinates": [ 151.545, -31.583 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.003806, "decimalLat": -29.18423 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -29.184 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643646, "decimalLat": -34.395818 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626711, "decimalLat": -34.385438 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640844, "decimalLat": -34.393736 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103892, "decimalLat": -29.489559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.969776, "decimalLat": -36.511423 }, "geometry": { "type": "Point", "coordinates": [ 149.97, -36.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894416, "decimalLat": -31.448286 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.979238, "decimalLat": -36.570187 }, "geometry": { "type": "Point", "coordinates": [ 149.979, -36.57 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522189, "decimalLat": -34.464926 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615679, "decimalLat": -34.43544 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923643, "decimalLat": -36.618562 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103768, "decimalLat": -29.485501 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907617, "decimalLat": -31.450773 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929214, "decimalLat": -31.458051 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98375, "decimalLat": -30.421151 }, "geometry": { "type": "Point", "coordinates": [ 152.984, -30.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064739, "decimalLat": -32.709084 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530413, "decimalLat": -34.471376 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908987, "decimalLat": -31.467284 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909794, "decimalLat": -31.472155 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62707, "decimalLat": -34.389674 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103768, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.963999, "decimalLat": -30.66193 }, "geometry": { "type": "Point", "coordinates": [ 152.964, -30.662 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6272, "decimalLat": -34.385836 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.228883, "decimalLat": -28.660093 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785411, "decimalLat": -33.705542 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921514, "decimalLat": -31.475199 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.371061, "decimalLat": -31.923432 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.161819, "decimalLat": -32.713364 }, "geometry": { "type": "Point", "coordinates": [ 152.162, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379004, "decimalLat": -31.918056 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614899, "decimalLat": -34.429574 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.388675, "decimalLat": -31.902263 }, "geometry": { "type": "Point", "coordinates": [ 152.389, -31.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519074, "decimalLat": -34.459851 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.942556, "decimalLat": -36.497108 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.608892, "decimalLat": -30.343602 }, "geometry": { "type": "Point", "coordinates": [ 152.609, -30.344 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515806, "decimalLat": -34.446721 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878918, "decimalLat": -31.479023 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607862, "decimalLat": -34.455446 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785697, "decimalLat": -31.629586 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.315875, "decimalLat": -36.297222 }, "geometry": { "type": "Point", "coordinates": [ 149.316, -36.297 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630941, "decimalLat": -34.387387 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.33124, "decimalLat": -28.82175 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367408, "decimalLat": -28.693612 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630719, "decimalLat": -34.420695 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597931, "decimalLat": -34.425987 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824566, "decimalLat": -29.505882 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606154, "decimalLat": -34.432144 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.7394, "decimalLat": -28.659584 }, "geometry": { "type": "Point", "coordinates": [ 152.739, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522447, "decimalLat": -34.465788 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.005242, "decimalLat": -30.412963 }, "geometry": { "type": "Point", "coordinates": [ 153.005, -30.413 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.553258, "decimalLat": -33.551639 }, "geometry": { "type": "Point", "coordinates": [ 149.553, -33.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288825, "decimalLat": -28.818082 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400586, "decimalLat": -28.257925 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609223, "decimalLat": -34.420673 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105345, "decimalLat": -32.736858 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627224, "decimalLat": -34.421565 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525119, "decimalLat": -34.465977 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626848, "decimalLat": -34.421016 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301773, "decimalLat": -28.818505 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.072555, "decimalLat": -30.334571 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -30.335 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867289, "decimalLat": -29.667247 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601749, "decimalLat": -34.428649 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784935, "decimalLat": -33.716431 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.068642, "decimalLat": -30.877003 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -30.877 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610689, "decimalLat": -34.430709 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.957744, "decimalLat": -36.497148 }, "geometry": { "type": "Point", "coordinates": [ 149.958, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605495, "decimalLat": -34.437333 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364275, "decimalLat": -28.834226 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786173, "decimalLat": -33.70627 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342482, "decimalLat": -28.805797 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.709876, "decimalLat": -32.692071 }, "geometry": { "type": "Point", "coordinates": [ 151.71, -32.692 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076793, "decimalLat": -32.725873 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518034, "decimalLat": -34.457107 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809519, "decimalLat": -34.09992 }, "geometry": { "type": "Point", "coordinates": [ 150.81, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519863, "decimalLat": -34.447173 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519088, "decimalLat": -34.436592 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929611, "decimalLat": -31.458459 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374394, "decimalLat": -31.897072 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.897 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615004, "decimalLat": -34.448842 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065223, "decimalLat": -32.711067 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914252, "decimalLat": -31.459577 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909449, "decimalLat": -31.440649 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522237, "decimalLat": -34.453388 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.844972, "decimalLat": -29.834387 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.56761, "decimalLat": -31.966673 }, "geometry": { "type": "Point", "coordinates": [ 152.568, -31.967 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.382156, "decimalLat": -36.129686 }, "geometry": { "type": "Point", "coordinates": [ 149.382, -36.13 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.093798, "decimalLat": -31.403015 }, "geometry": { "type": "Point", "coordinates": [ 152.094, -31.403 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.426161, "decimalLat": -29.034655 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -29.035 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61038, "decimalLat": -34.420155 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514772, "decimalLat": -34.444906 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610138, "decimalLat": -34.430193 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.751382, "decimalLat": -30.087547 }, "geometry": { "type": "Point", "coordinates": [ 152.751, -30.088 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.614946, "decimalLat": -28.660492 }, "geometry": { "type": "Point", "coordinates": [ 153.615, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.988077, "decimalLat": -34.027976 }, "geometry": { "type": "Point", "coordinates": [ 150.988, -34.028 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110549, "decimalLat": -29.489984 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.472757, "decimalLat": -28.557671 }, "geometry": { "type": "Point", "coordinates": [ 153.473, -28.558 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.309247, "decimalLat": -29.065505 }, "geometry": { "type": "Point", "coordinates": [ 150.309, -29.066 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.570098, "decimalLat": -34.755756 }, "geometry": { "type": "Point", "coordinates": [ 146.57, -34.756 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.436246, "decimalLat": -28.22565 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605382, "decimalLat": -34.423735 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615935, "decimalLat": -34.436004 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925776, "decimalLat": -31.447463 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627424, "decimalLat": -34.420261 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51868, "decimalLat": -34.447429 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.818429, "decimalLat": -34.111429 }, "geometry": { "type": "Point", "coordinates": [ 150.818, -34.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627201, "decimalLat": -34.385818 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.606253, "decimalLat": -28.675057 }, "geometry": { "type": "Point", "coordinates": [ 153.606, -28.675 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.353525, "decimalLat": -31.92625 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.536959, "decimalLat": -28.519564 }, "geometry": { "type": "Point", "coordinates": [ 153.537, -28.52 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373951, "decimalLat": -31.925339 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523829, "decimalLat": -34.463571 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867589, "decimalLat": -29.667284 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92704, "decimalLat": -31.45489 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.813327, "decimalLat": -31.576561 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -31.577 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604202, "decimalLat": -34.438028 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520961, "decimalLat": -34.468174 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.97209, "decimalLat": -28.523167 }, "geometry": { "type": "Point", "coordinates": [ 152.972, -28.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606992, "decimalLat": -34.437488 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063537, "decimalLat": -32.706472 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610333, "decimalLat": -34.419126 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632259, "decimalLat": -34.388449 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557549, "decimalLat": -28.397244 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520249, "decimalLat": -34.447361 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107872, "decimalLat": -29.490152 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526857, "decimalLat": -34.469411 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914845, "decimalLat": -31.45897 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.559732, "decimalLat": -34.535992 }, "geometry": { "type": "Point", "coordinates": [ 150.56, -34.536 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304633, "decimalLat": -28.835936 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -28.836 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.369623, "decimalLat": -31.867705 }, "geometry": { "type": "Point", "coordinates": [ 152.37, -31.868 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.967583, "decimalLat": -30.549333 }, "geometry": { "type": "Point", "coordinates": [ 152.968, -30.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625793, "decimalLat": -34.386367 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335481, "decimalLat": -28.869015 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.827827, "decimalLat": -29.811466 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.159779, "decimalLat": -32.712264 }, "geometry": { "type": "Point", "coordinates": [ 152.16, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78606, "decimalLat": -33.705982 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531416, "decimalLat": -34.419983 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610279, "decimalLat": -34.419098 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519131, "decimalLat": -34.444319 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.722621, "decimalLat": -28.587016 }, "geometry": { "type": "Point", "coordinates": [ 152.723, -28.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886674, "decimalLat": -31.432093 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.828584, "decimalLat": -29.654256 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -29.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644414, "decimalLat": -34.396338 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918616, "decimalLat": -31.479039 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633425, "decimalLat": -34.417727 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513107, "decimalLat": -34.447847 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900226, "decimalLat": -29.631396 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607667, "decimalLat": -34.422211 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607527, "decimalLat": -34.433216 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634323, "decimalLat": -34.420206 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.172145, "decimalLat": -32.728806 }, "geometry": { "type": "Point", "coordinates": [ 152.172, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.765357, "decimalLat": -32.698016 }, "geometry": { "type": "Point", "coordinates": [ 151.765, -32.698 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.482678, "decimalLat": -28.98945 }, "geometry": { "type": "Point", "coordinates": [ 153.483, -28.989 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374241, "decimalLat": -31.915128 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.478339, "decimalLat": -28.249243 }, "geometry": { "type": "Point", "coordinates": [ 153.478, -28.249 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559782, "decimalLat": -28.287886 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605006, "decimalLat": -34.437684 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513128, "decimalLat": -34.447145 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.546098, "decimalLat": -28.598854 }, "geometry": { "type": "Point", "coordinates": [ 153.546, -28.599 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601291, "decimalLat": -34.454974 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909727, "decimalLat": -31.451059 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070821, "decimalLat": -32.717911 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.718 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934931, "decimalLat": -36.503907 }, "geometry": { "type": "Point", "coordinates": [ 149.935, -36.504 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603527, "decimalLat": -34.435374 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.34327, "decimalLat": -28.807075 }, "geometry": { "type": "Point", "coordinates": [ 153.343, -28.807 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.650606, "decimalLat": -32.683761 }, "geometry": { "type": "Point", "coordinates": [ 151.651, -32.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603334, "decimalLat": -34.436398 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.078075, "decimalLat": -32.72797 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522266, "decimalLat": -34.464901 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103564, "decimalLat": -29.488527 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929578, "decimalLat": -31.459877 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517156, "decimalLat": -34.447803 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.26879, "decimalLat": -33.034048 }, "geometry": { "type": "Point", "coordinates": [ 151.269, -33.034 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.761779, "decimalLat": -34.194944 }, "geometry": { "type": "Point", "coordinates": [ 150.762, -34.195 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.957744, "decimalLat": -36.497148 }, "geometry": { "type": "Point", "coordinates": [ 149.958, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630503, "decimalLat": -34.395195 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522, "decimalLat": -34.465436 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615082, "decimalLat": -34.435374 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604985, "decimalLat": -34.437638 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.883898, "decimalLat": -34.015104 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.015 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401795, "decimalLat": -28.257137 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793418, "decimalLat": -31.638929 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.074268, "decimalLat": -30.363436 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.363 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.384947, "decimalLat": -36.140031 }, "geometry": { "type": "Point", "coordinates": [ 149.385, -36.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.371009, "decimalLat": -31.918942 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630295, "decimalLat": -34.420299 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610628, "decimalLat": -34.432474 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609509, "decimalLat": -34.419011 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905169, "decimalLat": -31.442899 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657822, "decimalLat": -34.45608 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987273, "decimalLat": -34.025728 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.026 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623261, "decimalLat": -34.383992 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108238, "decimalLat": -29.490007 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.744238, "decimalLat": -34.195993 }, "geometry": { "type": "Point", "coordinates": [ 150.744, -34.196 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51972, "decimalLat": -34.463046 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609159, "decimalLat": -34.420636 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610335, "decimalLat": -34.419063 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82369, "decimalLat": -34.141271 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924858, "decimalLat": -31.453653 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92434, "decimalLat": -31.472856 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.577746, "decimalLat": -33.6911 }, "geometry": { "type": "Point", "coordinates": [ 150.578, -33.691 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.123926, "decimalLat": -30.29408 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.294 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617664, "decimalLat": -34.438724 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608854, "decimalLat": -34.420639 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795899, "decimalLat": -30.884771 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.089451, "decimalLat": -29.480691 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522471, "decimalLat": -34.464238 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.808331, "decimalLat": -31.653077 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -31.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628779, "decimalLat": -34.389608 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405107, "decimalLat": -31.920313 }, "geometry": { "type": "Point", "coordinates": [ 152.405, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517293, "decimalLat": -34.451998 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623947, "decimalLat": -34.388576 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51569, "decimalLat": -34.444781 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110876, "decimalLat": -29.488452 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633252, "decimalLat": -34.418463 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104482, "decimalLat": -29.476927 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.711315, "decimalLat": -31.781994 }, "geometry": { "type": "Point", "coordinates": [ 152.711, -31.782 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004836, "decimalLat": -31.693066 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -31.693 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093643, "decimalLat": -29.488632 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6618, "decimalLat": -34.458618 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.935069, "decimalLat": -29.040856 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -29.041 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.804254, "decimalLat": -34.157042 }, "geometry": { "type": "Point", "coordinates": [ 150.804, -34.157 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618085, "decimalLat": -34.429627 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10129, "decimalLat": -29.490026 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643589, "decimalLat": -34.395898 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.03139, "decimalLat": -30.43119 }, "geometry": { "type": "Point", "coordinates": [ 153.031, -30.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785258, "decimalLat": -33.705812 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.442313, "decimalLat": -31.809149 }, "geometry": { "type": "Point", "coordinates": [ 152.442, -31.809 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.055217, "decimalLat": -33.762524 }, "geometry": { "type": "Point", "coordinates": [ 150.055, -33.763 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898878, "decimalLat": -31.443751 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070062, "decimalLat": -32.718844 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.719 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405107, "decimalLat": -31.920313 }, "geometry": { "type": "Point", "coordinates": [ 152.405, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604726, "decimalLat": -34.437561 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635221, "decimalLat": -34.420376 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.083327, "decimalLat": -32.730221 }, "geometry": { "type": "Point", "coordinates": [ 152.083, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52498, "decimalLat": -34.449394 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531647, "decimalLat": -34.474196 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610484, "decimalLat": -34.430642 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925659, "decimalLat": -31.452928 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.699841, "decimalLat": -32.686938 }, "geometry": { "type": "Point", "coordinates": [ 151.7, -32.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659238, "decimalLat": -34.457189 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923352, "decimalLat": -31.469984 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.530386, "decimalLat": -33.62819 }, "geometry": { "type": "Point", "coordinates": [ 149.53, -33.628 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.321631, "decimalLat": -31.927692 }, "geometry": { "type": "Point", "coordinates": [ 152.322, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.059173, "decimalLat": -29.739906 }, "geometry": { "type": "Point", "coordinates": [ 151.059, -29.74 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00354, "decimalLat": -32.633042 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.633 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911813, "decimalLat": -31.476415 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103918, "decimalLat": -29.489596 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090872, "decimalLat": -29.487355 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.859745, "decimalLat": -31.101193 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -31.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610279, "decimalLat": -34.419125 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.105017, "decimalLat": -33.77856 }, "geometry": { "type": "Point", "coordinates": [ 150.105, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519901, "decimalLat": -34.452881 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516208, "decimalLat": -34.448974 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.81122, "decimalLat": -34.11675 }, "geometry": { "type": "Point", "coordinates": [ 150.811, -34.117 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895019, "decimalLat": -31.446947 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.732107, "decimalLat": -31.337206 }, "geometry": { "type": "Point", "coordinates": [ 152.732, -31.337 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.994036, "decimalLat": -34.121673 }, "geometry": { "type": "Point", "coordinates": [ 150.994, -34.122 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071805, "decimalLat": -30.887169 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092498, "decimalLat": -29.488447 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926206, "decimalLat": -31.459086 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873354, "decimalLat": -31.458197 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914275, "decimalLat": -31.458734 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40417, "decimalLat": -31.94582 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520446, "decimalLat": -34.435186 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.472448, "decimalLat": -34.491696 }, "geometry": { "type": "Point", "coordinates": [ 150.472, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927334, "decimalLat": -31.469294 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786406, "decimalLat": -33.703888 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.632693, "decimalLat": -30.512159 }, "geometry": { "type": "Point", "coordinates": [ 151.633, -30.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907384, "decimalLat": -31.449551 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.472444, "decimalLat": -28.685041 }, "geometry": { "type": "Point", "coordinates": [ 153.472, -28.685 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523846, "decimalLat": -34.46743 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.680922, "decimalLat": -33.565548 }, "geometry": { "type": "Point", "coordinates": [ 150.681, -33.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630597, "decimalLat": -34.388777 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885366, "decimalLat": -31.439694 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.69683, "decimalLat": -31.521545 }, "geometry": { "type": "Point", "coordinates": [ 152.697, -31.522 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600987, "decimalLat": -34.533564 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.534 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613796, "decimalLat": -34.449594 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556714, "decimalLat": -28.400278 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61525, "decimalLat": -34.440949 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915044, "decimalLat": -31.446374 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608033, "decimalLat": -28.689632 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901503, "decimalLat": -31.446912 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.02096, "decimalLat": -34.80422 }, "geometry": { "type": "Point", "coordinates": [ 150.021, -34.804 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32839, "decimalLat": -28.833159 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.833 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798431, "decimalLat": -31.151976 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.152 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879652, "decimalLat": -31.449312 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630543, "decimalLat": -34.388767 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063717, "decimalLat": -32.706475 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110077, "decimalLat": -29.490245 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639478, "decimalLat": -34.392799 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522371, "decimalLat": -34.465777 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909639, "decimalLat": -31.473189 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.075436, "decimalLat": -32.736825 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.422426, "decimalLat": -31.972489 }, "geometry": { "type": "Point", "coordinates": [ 152.422, -31.972 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635243, "decimalLat": -34.420368 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627336, "decimalLat": -34.420314 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607664, "decimalLat": -34.422319 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602858, "decimalLat": -34.419935 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630387, "decimalLat": -34.420896 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109531, "decimalLat": -29.492763 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630863, "decimalLat": -34.420625 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788626, "decimalLat": -31.311867 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -31.312 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88989, "decimalLat": -31.449055 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786875, "decimalLat": -31.629275 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919636, "decimalLat": -31.473616 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632076, "decimalLat": -34.394558 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61584, "decimalLat": -34.433225 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624172, "decimalLat": -34.388698 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926356, "decimalLat": -31.451697 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624483, "decimalLat": -34.388857 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.858134, "decimalLat": -34.056316 }, "geometry": { "type": "Point", "coordinates": [ 150.858, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603636, "decimalLat": -34.43534 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888811, "decimalLat": -31.433439 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615268, "decimalLat": -34.43536 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632032, "decimalLat": -34.418124 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427713, "decimalLat": -28.626838 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905262, "decimalLat": -31.469896 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.515046, "decimalLat": -30.531449 }, "geometry": { "type": "Point", "coordinates": [ 151.515, -30.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101746, "decimalLat": -29.489666 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614836, "decimalLat": -33.441928 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -33.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617085, "decimalLat": -34.433809 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617229, "decimalLat": -34.434515 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110508, "decimalLat": -29.488336 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.549744, "decimalLat": -33.56812 }, "geometry": { "type": "Point", "coordinates": [ 149.55, -33.568 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103967, "decimalLat": -29.489568 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606922, "decimalLat": -34.429634 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.14002, "decimalLat": -28.83942 }, "geometry": { "type": "Point", "coordinates": [ 153.14, -28.839 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897618, "decimalLat": -31.474674 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513737, "decimalLat": -34.4464 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899149, "decimalLat": -31.436682 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522038, "decimalLat": -34.465996 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901169, "decimalLat": -31.442697 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624478, "decimalLat": -34.385954 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103865, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918613, "decimalLat": -31.445391 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908986, "decimalLat": -31.255802 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.256 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638478, "decimalLat": -34.49057 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.246389, "decimalLat": -33.670556 }, "geometry": { "type": "Point", "coordinates": [ 151.246, -33.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071231, "decimalLat": -32.719007 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513927, "decimalLat": -34.44698 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.320256, "decimalLat": -36.298717 }, "geometry": { "type": "Point", "coordinates": [ 149.32, -36.299 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3033, "decimalLat": -28.821668 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518277, "decimalLat": -34.451847 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.041118, "decimalLat": -32.7361 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.218653, "decimalLat": -28.826065 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.099897, "decimalLat": -32.734379 }, "geometry": { "type": "Point", "coordinates": [ 152.1, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641727, "decimalLat": -33.664961 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -33.665 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016942, "decimalLat": -36.548959 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62837, "decimalLat": -34.391024 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792962, "decimalLat": -31.639708 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902552, "decimalLat": -31.454577 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325401, "decimalLat": -28.669044 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613339, "decimalLat": -34.432014 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52391, "decimalLat": -34.463798 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64532, "decimalLat": -34.397004 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.757888, "decimalLat": -31.628697 }, "geometry": { "type": "Point", "coordinates": [ 152.758, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323111, "decimalLat": -28.892909 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.54498, "decimalLat": -28.557011 }, "geometry": { "type": "Point", "coordinates": [ 153.545, -28.557 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.218178, "decimalLat": -28.825221 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908148, "decimalLat": -31.434695 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913249, "decimalLat": -31.265863 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.266 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630921, "decimalLat": -34.388495 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920712, "decimalLat": -31.463244 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513112, "decimalLat": -34.446189 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637584, "decimalLat": -34.488678 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.401193, "decimalLat": -31.971958 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -31.972 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.229503, "decimalLat": -28.889108 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.428811, "decimalLat": -36.255489 }, "geometry": { "type": "Point", "coordinates": [ 149.429, -36.255 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.70847, "decimalLat": -32.690357 }, "geometry": { "type": "Point", "coordinates": [ 151.708, -32.69 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617192, "decimalLat": -34.433513 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.22156, "decimalLat": -29.939291 }, "geometry": { "type": "Point", "coordinates": [ 152.222, -29.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.04288, "decimalLat": -33.874676 }, "geometry": { "type": "Point", "coordinates": [ 151.043, -33.875 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555546, "decimalLat": -28.371012 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.371 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.064152, "decimalLat": -28.535215 }, "geometry": { "type": "Point", "coordinates": [ 153.064, -28.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635944, "decimalLat": -34.392767 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.382936, "decimalLat": -28.649191 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -28.649 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.530821, "decimalLat": -32.344089 }, "geometry": { "type": "Point", "coordinates": [ 152.531, -32.344 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514937, "decimalLat": -34.447776 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910464, "decimalLat": -31.441604 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.490916, "decimalLat": -28.228983 }, "geometry": { "type": "Point", "coordinates": [ 153.491, -28.229 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922644, "decimalLat": -31.461105 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520488, "decimalLat": -34.465775 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627476, "decimalLat": -34.421515 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.939521, "decimalLat": -30.240033 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -30.24 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.485571 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926912, "decimalLat": -30.508033 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -30.508 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007695, "decimalLat": -36.513507 }, "geometry": { "type": "Point", "coordinates": [ 150.008, -36.514 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.887392, "decimalLat": -32.470287 }, "geometry": { "type": "Point", "coordinates": [ 151.887, -32.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87822, "decimalLat": -31.448165 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520078, "decimalLat": -34.401227 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899266, "decimalLat": -29.630781 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630131, "decimalLat": -34.420737 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.769928, "decimalLat": -32.593837 }, "geometry": { "type": "Point", "coordinates": [ 151.77, -32.594 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103913, "decimalLat": -29.489596 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512936, "decimalLat": -34.447375 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400816, "decimalLat": -28.25619 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.649547, "decimalLat": -34.396365 }, "geometry": { "type": "Point", "coordinates": [ 150.65, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293195, "decimalLat": -28.864618 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597428, "decimalLat": -34.415799 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.416 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092262, "decimalLat": -29.488125 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531981, "decimalLat": -34.460274 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515575, "decimalLat": -34.454515 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.803751, "decimalLat": -32.700231 }, "geometry": { "type": "Point", "coordinates": [ 151.804, -32.7 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513087, "decimalLat": -34.447054 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109729, "decimalLat": -29.490155 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631847, "decimalLat": -34.388035 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530193, "decimalLat": -34.472941 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.473 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.178771, "decimalLat": -32.384235 }, "geometry": { "type": "Point", "coordinates": [ 152.179, -32.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918316, "decimalLat": -31.470336 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526669, "decimalLat": -34.469525 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521267, "decimalLat": -34.447517 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513263, "decimalLat": -34.446967 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.575952, "decimalLat": -30.416427 }, "geometry": { "type": "Point", "coordinates": [ 151.576, -30.416 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092154, "decimalLat": -29.488195 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519149, "decimalLat": -34.459915 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.338838, "decimalLat": -28.82461 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07152, "decimalLat": -32.712497 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.83769, "decimalLat": -28.485365 }, "geometry": { "type": "Point", "coordinates": [ 152.838, -28.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633177, "decimalLat": -34.417641 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791844, "decimalLat": -31.641172 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.641 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520336, "decimalLat": -34.465772 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615846, "decimalLat": -34.436435 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.186922, "decimalLat": -28.888264 }, "geometry": { "type": "Point", "coordinates": [ 153.187, -28.888 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938213, "decimalLat": -36.559404 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.559 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917568, "decimalLat": -31.475317 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520324, "decimalLat": -34.435995 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.621097, "decimalLat": -30.33243 }, "geometry": { "type": "Point", "coordinates": [ 152.621, -30.332 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.882611, "decimalLat": -31.439756 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.083676, "decimalLat": -32.737249 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520052, "decimalLat": -34.438946 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.040613, "decimalLat": -28.51684 }, "geometry": { "type": "Point", "coordinates": [ 153.041, -28.517 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.470746, "decimalLat": -28.581865 }, "geometry": { "type": "Point", "coordinates": [ 153.471, -28.582 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.39325, "decimalLat": -31.945531 }, "geometry": { "type": "Point", "coordinates": [ 152.393, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989204, "decimalLat": -34.026878 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.027 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90626, "decimalLat": -31.449898 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915388, "decimalLat": -31.446036 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812828, "decimalLat": -34.159448 }, "geometry": { "type": "Point", "coordinates": [ 150.813, -34.159 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.488399, "decimalLat": -28.244289 }, "geometry": { "type": "Point", "coordinates": [ 153.488, -28.244 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313679, "decimalLat": -28.859753 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.86 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317732, "decimalLat": -28.827343 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.006515, "decimalLat": -36.579991 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522441, "decimalLat": -34.451616 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108113, "decimalLat": -29.490184 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.154443, "decimalLat": -32.717165 }, "geometry": { "type": "Point", "coordinates": [ 152.154, -32.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924619, "decimalLat": -31.465685 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87968, "decimalLat": -31.034586 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.035 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905842, "decimalLat": -31.437611 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627413, "decimalLat": -34.420261 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626146, "decimalLat": -34.390449 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61549, "decimalLat": -34.439421 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785384, "decimalLat": -33.705124 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.942889, "decimalLat": -30.432705 }, "geometry": { "type": "Point", "coordinates": [ 152.943, -30.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.942556, "decimalLat": -36.497108 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288292, "decimalLat": -28.809314 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894748, "decimalLat": -31.415181 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.415 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071474, "decimalLat": -32.717608 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405107, "decimalLat": -31.920313 }, "geometry": { "type": "Point", "coordinates": [ 152.405, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.010276, "decimalLat": -34.045117 }, "geometry": { "type": "Point", "coordinates": [ 151.01, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784923, "decimalLat": -34.207974 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -34.208 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402165, "decimalLat": -28.258429 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.218565, "decimalLat": -28.824713 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518545, "decimalLat": -34.446092 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525066, "decimalLat": -34.457818 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.666092, "decimalLat": -33.570819 }, "geometry": { "type": "Point", "coordinates": [ 150.666, -33.571 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.566244, "decimalLat": -30.372588 }, "geometry": { "type": "Point", "coordinates": [ 151.566, -30.373 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562423, "decimalLat": -28.384452 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.236747, "decimalLat": -28.947304 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -28.947 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530826, "decimalLat": -34.472494 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.472 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927595, "decimalLat": -31.458662 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.091019, "decimalLat": -28.785363 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -28.785 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.447258, "decimalLat": -28.102872 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.103 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898342, "decimalLat": -31.443498 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914421, "decimalLat": -31.451443 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514255, "decimalLat": -34.445824 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.7309, "decimalLat": -30.135857 }, "geometry": { "type": "Point", "coordinates": [ 152.731, -30.136 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293279, "decimalLat": -28.864491 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891163, "decimalLat": -30.468155 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -30.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913036, "decimalLat": -31.444944 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.883728, "decimalLat": -34.067829 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293078, "decimalLat": -28.820375 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.709194, "decimalLat": -31.596622 }, "geometry": { "type": "Point", "coordinates": [ 152.709, -31.597 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52815, "decimalLat": -34.456203 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517294, "decimalLat": -34.45162 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610061, "decimalLat": -34.430192 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635869, "decimalLat": -34.419388 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.552778, "decimalLat": -34.514917 }, "geometry": { "type": "Point", "coordinates": [ 150.553, -34.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927959, "decimalLat": -31.452849 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635359, "decimalLat": -34.41973 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.092121, "decimalLat": -28.783512 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -28.784 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372764, "decimalLat": -31.924864 }, "geometry": { "type": "Point", "coordinates": [ 152.373, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.00403, "decimalLat": -31.13189 }, "geometry": { "type": "Point", "coordinates": [ 150.004, -31.132 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303722, "decimalLat": -28.890095 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.973743, "decimalLat": -28.530684 }, "geometry": { "type": "Point", "coordinates": [ 152.974, -28.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.421408, "decimalLat": -28.626925 }, "geometry": { "type": "Point", "coordinates": [ 153.421, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095952, "decimalLat": -29.484688 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.238599, "decimalLat": -30.994481 }, "geometry": { "type": "Point", "coordinates": [ 150.239, -30.994 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071948, "decimalLat": -30.880423 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396864, "decimalLat": -29.009458 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -29.009 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342482, "decimalLat": -28.805797 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.908878, "decimalLat": -32.566315 }, "geometry": { "type": "Point", "coordinates": [ 151.909, -32.566 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.246822, "decimalLat": -33.184149 }, "geometry": { "type": "Point", "coordinates": [ 151.247, -33.184 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303174, "decimalLat": -28.827996 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342482, "decimalLat": -28.805797 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929725, "decimalLat": -29.726637 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.739248, "decimalLat": -32.066818 }, "geometry": { "type": "Point", "coordinates": [ 151.739, -32.067 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107995, "decimalLat": -29.490376 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912645, "decimalLat": -31.47672 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103752, "decimalLat": -29.485557 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103956, "decimalLat": -29.489638 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517064, "decimalLat": -34.438056 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928761, "decimalLat": -31.459564 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.435857, "decimalLat": -33.605481 }, "geometry": { "type": "Point", "coordinates": [ 149.436, -33.605 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.857373, "decimalLat": -31.530916 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -31.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283463, "decimalLat": -28.830737 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.992986, "decimalLat": -29.147488 }, "geometry": { "type": "Point", "coordinates": [ 150.993, -29.147 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316426, "decimalLat": -28.812508 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.813 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925217, "decimalLat": -31.454039 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.060577, "decimalLat": -33.773091 }, "geometry": { "type": "Point", "coordinates": [ 150.061, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.426366, "decimalLat": -28.734027 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.734 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064607, "decimalLat": -32.70652 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.850037, "decimalLat": -34.08025 }, "geometry": { "type": "Point", "coordinates": [ 150.85, -34.08 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.645013, "decimalLat": -32.550869 }, "geometry": { "type": "Point", "coordinates": [ 151.645, -32.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108049, "decimalLat": -29.490339 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786087, "decimalLat": -33.706055 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516439, "decimalLat": -34.44998 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604248, "decimalLat": -34.437939 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616315, "decimalLat": -34.43602 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29012, "decimalLat": -28.987277 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.987 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.994462, "decimalLat": -34.058438 }, "geometry": { "type": "Point", "coordinates": [ 150.994, -34.058 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.611768, "decimalLat": -30.347707 }, "geometry": { "type": "Point", "coordinates": [ 152.612, -30.348 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.404285, "decimalLat": -34.695353 }, "geometry": { "type": "Point", "coordinates": [ 146.404, -34.695 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630508, "decimalLat": -34.420853 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028704, "decimalLat": -32.19098 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.191 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517566, "decimalLat": -34.441312 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791633, "decimalLat": -29.500615 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -29.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331243, "decimalLat": -28.821749 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824256, "decimalLat": -29.811877 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.812 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517436, "decimalLat": -34.440912 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608007, "decimalLat": -34.433938 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104133, "decimalLat": -29.478739 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.660091, "decimalLat": -34.455501 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615864, "decimalLat": -34.435038 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403595, "decimalLat": -31.928285 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.340675, "decimalLat": -31.984281 }, "geometry": { "type": "Point", "coordinates": [ 152.341, -31.984 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30258, "decimalLat": -28.845844 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60854, "decimalLat": -34.456451 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609194, "decimalLat": -34.420555 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517105, "decimalLat": -34.447685 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.946452, "decimalLat": -29.77116 }, "geometry": { "type": "Point", "coordinates": [ 150.946, -29.771 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285105, "decimalLat": -29.000226 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -29.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.956941, "decimalLat": -36.59482 }, "geometry": { "type": "Point", "coordinates": [ 149.957, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.813707, "decimalLat": -31.171527 }, "geometry": { "type": "Point", "coordinates": [ 152.814, -31.172 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612164, "decimalLat": -34.432027 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090749, "decimalLat": -29.487486 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525437, "decimalLat": -34.460007 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53256, "decimalLat": -34.46428 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339651, "decimalLat": -28.820526 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628938, "decimalLat": -34.389755 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065071, "decimalLat": -32.699592 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.7 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518191, "decimalLat": -34.437114 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 2, "stateProvi": "South Australia", "decimalLon": 138.83188, "decimalLat": -34.68823 }, "geometry": { "type": "Point", "coordinates": [ 138.832, -34.688 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523259, "decimalLat": -34.466291 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.194827, "decimalLat": -28.879587 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.975294, "decimalLat": -31.192565 }, "geometry": { "type": "Point", "coordinates": [ 152.975, -31.193 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285323, "decimalLat": -29.040946 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -29.041 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317598, "decimalLat": -28.936565 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.937 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60323, "decimalLat": -34.437 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108838, "decimalLat": -29.493159 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517879, "decimalLat": -34.437739 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603542, "decimalLat": -34.419209 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.291674, "decimalLat": -28.976263 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.976 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784549, "decimalLat": -33.717251 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523955, "decimalLat": -34.452692 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.204264, "decimalLat": -32.226111 }, "geometry": { "type": "Point", "coordinates": [ 152.204, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559334, "decimalLat": -28.643569 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.644 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605357, "decimalLat": -34.437961 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108087, "decimalLat": -29.490553 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60576, "decimalLat": -34.437572 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.297813, "decimalLat": -31.948946 }, "geometry": { "type": "Point", "coordinates": [ 152.298, -31.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623368, "decimalLat": -34.383282 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.13989, "decimalLat": -34.50511 }, "geometry": { "type": "Point", "coordinates": [ 150.14, -34.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518768, "decimalLat": -34.447412 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.119406, "decimalLat": -29.489358 }, "geometry": { "type": "Point", "coordinates": [ 153.119, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.646596, "decimalLat": -30.540165 }, "geometry": { "type": "Point", "coordinates": [ 152.647, -30.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108151, "decimalLat": -29.490241 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 2, "stateProvi": "South Australia", "decimalLon": 138.63216, "decimalLat": -34.95046 }, "geometry": { "type": "Point", "coordinates": [ 138.632, -34.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645298, "decimalLat": -34.397004 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609448, "decimalLat": -34.430711 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521407, "decimalLat": -34.435791 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.998977, "decimalLat": -36.551144 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103806, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285118, "decimalLat": -28.981503 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.982 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635513, "decimalLat": -34.420463 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.055997, "decimalLat": -30.333952 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -30.334 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812175, "decimalLat": -31.654858 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -31.655 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916905, "decimalLat": -31.453257 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989817, "decimalLat": -34.090346 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.09 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.144658, "decimalLat": -34.916903 }, "geometry": { "type": "Point", "coordinates": [ 150.145, -34.917 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786115, "decimalLat": -33.713208 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597086, "decimalLat": -34.410247 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.036666, "decimalLat": -32.325829 }, "geometry": { "type": "Point", "coordinates": [ 150.037, -32.326 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615939, "decimalLat": -34.430883 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104026, "decimalLat": -29.484488 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606647, "decimalLat": -34.435092 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 2, "stateProvi": "South Australia", "decimalLon": 138.70115, "decimalLat": -34.99731 }, "geometry": { "type": "Point", "coordinates": [ 138.701, -34.997 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642637, "decimalLat": -34.394555 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521381, "decimalLat": -34.465748 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520951, "decimalLat": -34.45933 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604534, "decimalLat": -34.419148 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103736, "decimalLat": -29.485688 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915488, "decimalLat": -31.444831 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786269, "decimalLat": -33.706302 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.869932, "decimalLat": -34.004143 }, "geometry": { "type": "Point", "coordinates": [ 150.87, -34.004 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092194, "decimalLat": -29.488079 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103543, "decimalLat": -29.485454 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987289, "decimalLat": -34.096052 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928692, "decimalLat": -31.459123 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.795087, "decimalLat": -32.527935 }, "geometry": { "type": "Point", "coordinates": [ 151.795, -32.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.896729, "decimalLat": -34.012814 }, "geometry": { "type": "Point", "coordinates": [ 150.897, -34.013 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926641, "decimalLat": -31.455103 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907705, "decimalLat": -31.451374 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103763, "decimalLat": -29.485566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.347259, "decimalLat": -28.885281 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.885 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401691, "decimalLat": -28.257477 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560572, "decimalLat": -28.375645 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.376 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631228, "decimalLat": -34.393397 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898091, "decimalLat": -29.632524 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -29.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873914, "decimalLat": -31.456825 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.054593, "decimalLat": -33.766566 }, "geometry": { "type": "Point", "coordinates": [ 150.055, -33.767 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912528, "decimalLat": -31.456873 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.399014, "decimalLat": -31.908353 }, "geometry": { "type": "Point", "coordinates": [ 152.399, -31.908 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.331429, "decimalLat": -36.121951 }, "geometry": { "type": "Point", "coordinates": [ 149.331, -36.122 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016461, "decimalLat": -36.575848 }, "geometry": { "type": "Point", "coordinates": [ 150.016, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.100202, "decimalLat": -32.732974 }, "geometry": { "type": "Point", "coordinates": [ 152.1, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632785, "decimalLat": -34.418814 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637512, "decimalLat": -34.488523 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.740113, "decimalLat": -33.410439 }, "geometry": { "type": "Point", "coordinates": [ 150.74, -33.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610432, "decimalLat": -34.420228 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40425, "decimalLat": -28.972865 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.973 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600143, "decimalLat": -34.419377 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.371368, "decimalLat": -28.799393 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.799 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104085, "decimalLat": -29.485109 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604583, "decimalLat": -34.438387 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063706, "decimalLat": -32.706061 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619014, "decimalLat": -34.439472 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520478, "decimalLat": -34.465739 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645055, "decimalLat": -34.398703 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.623084, "decimalLat": -31.784787 }, "geometry": { "type": "Point", "coordinates": [ 152.623, -31.785 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323187, "decimalLat": -28.826164 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.610013, "decimalLat": -30.997307 }, "geometry": { "type": "Point", "coordinates": [ 152.61, -30.997 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561629, "decimalLat": -28.386672 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910281, "decimalLat": -30.505496 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -30.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103505, "decimalLat": -29.485552 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.150772, "decimalLat": -32.716491 }, "geometry": { "type": "Point", "coordinates": [ 152.151, -32.716 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897674, "decimalLat": -31.268449 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.268 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824631, "decimalLat": -29.505872 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793187, "decimalLat": -31.640987 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.641 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.855936, "decimalLat": -31.430665 }, "geometry": { "type": "Point", "coordinates": [ 152.856, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912204, "decimalLat": -31.429671 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.584876, "decimalLat": -28.631411 }, "geometry": { "type": "Point", "coordinates": [ 153.585, -28.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617412, "decimalLat": -34.449114 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109481, "decimalLat": -29.490502 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520385, "decimalLat": -34.465944 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608144, "decimalLat": -34.423023 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625995, "decimalLat": -34.388859 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.942556, "decimalLat": -36.497108 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065499, "decimalLat": -32.704805 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.705 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516529, "decimalLat": -34.448773 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.620278, "decimalLat": -32.241064 }, "geometry": { "type": "Point", "coordinates": [ 148.62, -32.241 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516124, "decimalLat": -34.437478 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279241, "decimalLat": -28.839565 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627243, "decimalLat": -34.421303 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822599, "decimalLat": -34.101707 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039828, "decimalLat": -32.732146 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989891, "decimalLat": -34.021993 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.022 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.323247, "decimalLat": -36.297397 }, "geometry": { "type": "Point", "coordinates": [ 149.323, -36.297 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.687663, "decimalLat": -31.683757 }, "geometry": { "type": "Point", "coordinates": [ 152.688, -31.684 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.218451, "decimalLat": -28.825235 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.100856, "decimalLat": -32.732973 }, "geometry": { "type": "Point", "coordinates": [ 152.101, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104278, "decimalLat": -29.480093 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32964, "decimalLat": -28.93 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518078, "decimalLat": -34.439826 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.077739, "decimalLat": -34.146763 }, "geometry": { "type": "Point", "coordinates": [ 150.078, -34.147 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615712, "decimalLat": -34.435819 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.09711, "decimalLat": -32.68189 }, "geometry": { "type": "Point", "coordinates": [ 152.097, -32.682 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525472, "decimalLat": -34.459926 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.979238, "decimalLat": -36.570187 }, "geometry": { "type": "Point", "coordinates": [ 149.979, -36.57 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.508093, "decimalLat": -28.619263 }, "geometry": { "type": "Point", "coordinates": [ 153.508, -28.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.83195, "decimalLat": -31.2816 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -31.282 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.409969, "decimalLat": -28.894758 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.895 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598766, "decimalLat": -34.428356 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.847035, "decimalLat": -31.545537 }, "geometry": { "type": "Point", "coordinates": [ 152.847, -31.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.514697, "decimalLat": -28.236705 }, "geometry": { "type": "Point", "coordinates": [ 153.515, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.104691, "decimalLat": -32.726275 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784943, "decimalLat": -33.709928 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.057207, "decimalLat": -33.770937 }, "geometry": { "type": "Point", "coordinates": [ 150.057, -33.771 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629488, "decimalLat": -28.637325 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909843, "decimalLat": -31.471819 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606801, "decimalLat": -34.429298 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989843, "decimalLat": -33.979107 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -33.979 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.777444, "decimalLat": -31.71252 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -31.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9335, "decimalLat": -28.74626 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -28.746 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.785497, "decimalLat": -32.580189 }, "geometry": { "type": "Point", "coordinates": [ 151.785, -32.58 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.351976, "decimalLat": -28.988266 }, "geometry": { "type": "Point", "coordinates": [ 153.352, -28.988 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782683, "decimalLat": -31.484304 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515944, "decimalLat": -34.446859 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064603, "decimalLat": -32.708983 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519612, "decimalLat": -34.461187 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624361, "decimalLat": -34.388557 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863968, "decimalLat": -28.964455 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -28.964 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562095, "decimalLat": -28.389309 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103627, "decimalLat": -29.485483 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070821, "decimalLat": -32.717911 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.718 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923643, "decimalLat": -36.618562 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644426, "decimalLat": -34.39632 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.998977, "decimalLat": -36.551144 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437583, "decimalLat": -28.690255 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616636, "decimalLat": -34.429716 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071801, "decimalLat": -30.887245 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192936, "decimalLat": -32.526478 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616044, "decimalLat": -34.434843 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929648, "decimalLat": -31.453478 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907546, "decimalLat": -31.456012 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602535, "decimalLat": -34.424779 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873211, "decimalLat": -29.675181 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -29.675 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529936, "decimalLat": -34.459512 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.040777, "decimalLat": -35.132751 }, "geometry": { "type": "Point", "coordinates": [ 150.041, -35.133 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109347, "decimalLat": -29.49046 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.795234, "decimalLat": -34.132341 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.132 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602788, "decimalLat": -34.434935 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609511, "decimalLat": -34.418948 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989581, "decimalLat": -34.029022 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.086083, "decimalLat": -32.732412 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523179, "decimalLat": -34.464586 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.725853, "decimalLat": -30.833943 }, "geometry": { "type": "Point", "coordinates": [ 152.726, -30.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.304115, "decimalLat": -36.067997 }, "geometry": { "type": "Point", "coordinates": [ 149.304, -36.068 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101499, "decimalLat": -29.489479 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071004, "decimalLat": -32.718362 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.718 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.159336, "decimalLat": -28.924715 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.775941, "decimalLat": -31.490454 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -31.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.908879, "decimalLat": -33.998335 }, "geometry": { "type": "Point", "coordinates": [ 150.909, -33.998 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079535, "decimalLat": -32.726998 }, "geometry": { "type": "Point", "coordinates": [ 152.08, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.952917, "decimalLat": -36.681355 }, "geometry": { "type": "Point", "coordinates": [ 149.953, -36.681 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.870377, "decimalLat": -34.035072 }, "geometry": { "type": "Point", "coordinates": [ 150.87, -34.035 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321983, "decimalLat": -28.823206 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794056, "decimalLat": -34.221219 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.221 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615951, "decimalLat": -34.435815 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785097, "decimalLat": -33.710842 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302529, "decimalLat": -28.821648 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288292, "decimalLat": -28.809314 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628132, "decimalLat": -34.389802 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631953, "decimalLat": -34.418212 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.121061, "decimalLat": -30.298281 }, "geometry": { "type": "Point", "coordinates": [ 153.121, -30.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604065, "decimalLat": -34.427189 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521103, "decimalLat": -34.435407 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518328, "decimalLat": -34.444978 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.806889, "decimalLat": -31.154067 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -31.154 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640843, "decimalLat": -34.393772 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640107, "decimalLat": -34.398662 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.120151, "decimalLat": -30.305382 }, "geometry": { "type": "Point", "coordinates": [ 153.12, -30.305 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615067, "decimalLat": -34.434382 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293015, "decimalLat": -28.824663 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06103, "decimalLat": -33.773724 }, "geometry": { "type": "Point", "coordinates": [ 150.061, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606817, "decimalLat": -34.438657 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124407, "decimalLat": -30.296245 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908578, "decimalLat": -31.441092 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610934, "decimalLat": -34.535937 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.536 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630873, "decimalLat": -34.420635 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528794, "decimalLat": -34.472371 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.472 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.447249, "decimalLat": -28.964835 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.965 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635869, "decimalLat": -34.419388 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517868, "decimalLat": -34.441399 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514926, "decimalLat": -34.445576 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611645, "decimalLat": -34.430754 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868061, "decimalLat": -29.666949 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064617, "decimalLat": -32.709052 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.197908, "decimalLat": -32.219547 }, "geometry": { "type": "Point", "coordinates": [ 152.198, -32.22 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.800026, "decimalLat": -30.212319 }, "geometry": { "type": "Point", "coordinates": [ 152.8, -30.212 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645581, "decimalLat": -34.401653 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.402 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.024437, "decimalLat": -30.416657 }, "geometry": { "type": "Point", "coordinates": [ 153.024, -30.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636302, "decimalLat": -34.485507 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.183981, "decimalLat": -32.243312 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -32.243 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.001662, "decimalLat": -34.060795 }, "geometry": { "type": "Point", "coordinates": [ 151.002, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.430062, "decimalLat": -31.765321 }, "geometry": { "type": "Point", "coordinates": [ 152.43, -31.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810277, "decimalLat": -29.805377 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -29.805 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914953, "decimalLat": -31.445557 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639051, "decimalLat": -34.491501 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615114, "decimalLat": -34.435393 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300421, "decimalLat": -28.819731 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637312, "decimalLat": -34.423788 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600383, "decimalLat": -34.428127 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657638, "decimalLat": -34.455662 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513016, "decimalLat": -34.44725 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529922, "decimalLat": -34.467742 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610337, "decimalLat": -34.418982 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885766, "decimalLat": -30.51747 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -30.517 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625336, "decimalLat": -34.385998 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.598442, "decimalLat": -34.768567 }, "geometry": { "type": "Point", "coordinates": [ 146.598, -34.769 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516361, "decimalLat": -34.44895 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.965449, "decimalLat": -32.241611 }, "geometry": { "type": "Point", "coordinates": [ 150.965, -32.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.347356, "decimalLat": -28.714708 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.715 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523578, "decimalLat": -34.465459 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604932, "decimalLat": -34.426918 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342482, "decimalLat": -28.805797 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641648, "decimalLat": -33.429619 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -33.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919324, "decimalLat": -31.450952 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.429797, "decimalLat": -29.016578 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -29.017 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913239, "decimalLat": -31.451459 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926244, "decimalLat": -31.459063 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.961856, "decimalLat": -36.436911 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.423034, "decimalLat": -28.663391 }, "geometry": { "type": "Point", "coordinates": [ 153.423, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.537312, "decimalLat": -28.333004 }, "geometry": { "type": "Point", "coordinates": [ 153.537, -28.333 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659596, "decimalLat": -34.455294 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.973024, "decimalLat": -34.123068 }, "geometry": { "type": "Point", "coordinates": [ 150.973, -34.123 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.660794, "decimalLat": -32.686035 }, "geometry": { "type": "Point", "coordinates": [ 151.661, -32.686 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028839, "decimalLat": -32.19213 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.192 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.720973, "decimalLat": -36.460941 }, "geometry": { "type": "Point", "coordinates": [ 148.721, -36.461 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515579, "decimalLat": -34.448529 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56409, "decimalLat": -28.336216 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.336 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.274356, "decimalLat": -28.872283 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077249, "decimalLat": -32.722554 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.035292, "decimalLat": -28.600733 }, "geometry": { "type": "Point", "coordinates": [ 153.035, -28.601 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412514, "decimalLat": -31.932252 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615809, "decimalLat": -34.435064 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270217, "decimalLat": -28.888324 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -28.888 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.50375, "decimalLat": -32.376785 }, "geometry": { "type": "Point", "coordinates": [ 152.504, -32.377 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606961, "decimalLat": -34.438569 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616409, "decimalLat": -34.441143 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908286, "decimalLat": -31.431417 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784305, "decimalLat": -33.717291 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903209, "decimalLat": -31.453901 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515718, "decimalLat": -34.450794 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412804, "decimalLat": -31.933272 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611449, "decimalLat": -34.419671 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786126, "decimalLat": -33.713322 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.091422, "decimalLat": -33.145025 }, "geometry": { "type": "Point", "coordinates": [ 151.091, -33.145 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556036, "decimalLat": -28.399676 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519788, "decimalLat": -34.453005 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786067, "decimalLat": -33.711347 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515889, "decimalLat": -34.447237 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556168, "decimalLat": -28.330904 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108119, "decimalLat": -29.490315 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.398366, "decimalLat": -33.489046 }, "geometry": { "type": "Point", "coordinates": [ 149.398, -33.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925939, "decimalLat": -31.458825 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.308788, "decimalLat": -29.053044 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -29.053 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.728863, "decimalLat": -29.505129 }, "geometry": { "type": "Point", "coordinates": [ 152.729, -29.505 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.082286, "decimalLat": -29.073423 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -29.073 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554212, "decimalLat": -28.703481 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.703 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.62228, "decimalLat": -33.543308 }, "geometry": { "type": "Point", "coordinates": [ 149.622, -33.543 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556929, "decimalLat": -28.402046 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.402 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643006, "decimalLat": -34.400792 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.151185, "decimalLat": -33.628687 }, "geometry": { "type": "Point", "coordinates": [ 151.151, -33.629 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518066, "decimalLat": -34.451617 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520266, "decimalLat": -34.447885 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62718, "decimalLat": -34.385799 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.743725, "decimalLat": -28.942751 }, "geometry": { "type": "Point", "coordinates": [ 152.744, -28.943 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523438, "decimalLat": -34.464663 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555612, "decimalLat": -28.398078 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523868, "decimalLat": -34.463752 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.075559, "decimalLat": -30.346344 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -30.346 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809052, "decimalLat": -34.098164 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52136, "decimalLat": -34.466469 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607272, "decimalLat": -34.432634 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631191, "decimalLat": -34.387373 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616064, "decimalLat": -34.436448 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897385, "decimalLat": -31.474898 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603496, "decimalLat": -34.420056 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.295041, "decimalLat": -28.867789 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.868 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381044, "decimalLat": -31.907711 }, "geometry": { "type": "Point", "coordinates": [ 152.381, -31.908 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079651, "decimalLat": -32.727242 }, "geometry": { "type": "Point", "coordinates": [ 152.08, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.074987, "decimalLat": -28.55615 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062034, "decimalLat": -32.709332 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605373, "decimalLat": -34.42369 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279224, "decimalLat": -28.930197 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629043, "decimalLat": -34.390289 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.827206, "decimalLat": -34.127624 }, "geometry": { "type": "Point", "coordinates": [ 150.827, -34.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627411, "decimalLat": -34.421108 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873004, "decimalLat": -31.479254 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905273, "decimalLat": -31.456865 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513003, "decimalLat": -34.447313 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925061, "decimalLat": -31.454131 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.652934, "decimalLat": -34.208264 }, "geometry": { "type": "Point", "coordinates": [ 150.653, -34.208 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642764, "decimalLat": -34.394674 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637068, "decimalLat": -34.422413 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.846388, "decimalLat": -31.450226 }, "geometry": { "type": "Point", "coordinates": [ 152.846, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608626, "decimalLat": -34.453441 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108178, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602909, "decimalLat": -34.435668 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598698, "decimalLat": -34.428436 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.986742, "decimalLat": -29.031464 }, "geometry": { "type": "Point", "coordinates": [ 152.987, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516694, "decimalLat": -34.447235 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610445, "decimalLat": -34.43046 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413049, "decimalLat": -31.932582 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.857701, "decimalLat": -31.544385 }, "geometry": { "type": "Point", "coordinates": [ 152.858, -31.544 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.99207, "decimalLat": -33.981831 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -33.982 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.733037, "decimalLat": -32.721269 }, "geometry": { "type": "Point", "coordinates": [ 151.733, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604676, "decimalLat": -34.424451 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627918, "decimalLat": -34.420884 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601931, "decimalLat": -34.425714 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.429069, "decimalLat": -28.979462 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.979 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103318, "decimalLat": -29.486589 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785092, "decimalLat": -31.630398 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.250591, "decimalLat": -32.211857 }, "geometry": { "type": "Point", "coordinates": [ 152.251, -32.212 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.362296, "decimalLat": -28.884228 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -28.884 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374234, "decimalLat": -31.916151 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517442, "decimalLat": -34.445871 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103806, "decimalLat": -29.48551 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615206, "decimalLat": -34.439064 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.085865, "decimalLat": -33.774449 }, "geometry": { "type": "Point", "coordinates": [ 150.086, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.710237, "decimalLat": -30.838808 }, "geometry": { "type": "Point", "coordinates": [ 152.71, -30.839 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556207, "decimalLat": -28.37234 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.372 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.562555, "decimalLat": -34.757376 }, "geometry": { "type": "Point", "coordinates": [ 146.563, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.130058, "decimalLat": -33.095045 }, "geometry": { "type": "Point", "coordinates": [ 151.13, -33.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.083865, "decimalLat": -32.727394 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.179389, "decimalLat": -30.08386 }, "geometry": { "type": "Point", "coordinates": [ 152.179, -30.084 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109723, "decimalLat": -29.490175 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627925, "decimalLat": -34.421019 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104332, "decimalLat": -29.489615 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609187, "decimalLat": -34.434529 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628846, "decimalLat": -34.389176 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.590203, "decimalLat": -28.711656 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.712 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.848918, "decimalLat": -31.560332 }, "geometry": { "type": "Point", "coordinates": [ 152.849, -31.56 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401629, "decimalLat": -28.256938 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810615, "decimalLat": -31.152926 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -31.153 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638596, "decimalLat": -34.489491 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51898, "decimalLat": -28.57492 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312268, "decimalLat": -28.943292 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.943 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103945, "decimalLat": -29.489577 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.209573, "decimalLat": -35.909051 }, "geometry": { "type": "Point", "coordinates": [ 149.21, -35.909 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.762446, "decimalLat": -31.325051 }, "geometry": { "type": "Point", "coordinates": [ 152.762, -31.325 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110527, "decimalLat": -29.490091 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617559, "decimalLat": -34.438605 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630742, "decimalLat": -34.387121 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519897, "decimalLat": -34.454855 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607045, "decimalLat": -34.429907 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869618, "decimalLat": -30.426042 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -30.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622509, "decimalLat": -34.384464 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630949, "decimalLat": -34.394049 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605372, "decimalLat": -34.432858 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609463, "decimalLat": -34.419109 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519744, "decimalLat": -34.447892 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639768, "decimalLat": -34.399133 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913654, "decimalLat": -31.477123 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637034, "decimalLat": -34.422449 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7999, "decimalLat": -34.17788 }, "geometry": { "type": "Point", "coordinates": [ 150.8, -34.178 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334927, "decimalLat": -28.815011 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518237, "decimalLat": -34.453568 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.872535, "decimalLat": -34.035178 }, "geometry": { "type": "Point", "coordinates": [ 150.873, -34.035 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561356, "decimalLat": -28.382917 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374098, "decimalLat": -31.915671 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.5521, "decimalLat": -33.491276 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643903, "decimalLat": -34.393227 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922532, "decimalLat": -31.460875 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277353, "decimalLat": -28.939508 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.986726, "decimalLat": -29.030746 }, "geometry": { "type": "Point", "coordinates": [ 152.987, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.487924 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522674, "decimalLat": -34.465829 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.816138, "decimalLat": -31.550406 }, "geometry": { "type": "Point", "coordinates": [ 152.816, -31.55 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61431, "decimalLat": -28.662586 }, "geometry": { "type": "Point", "coordinates": [ 153.614, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630298, "decimalLat": -34.420966 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635545, "decimalLat": -34.418156 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610091, "decimalLat": -34.419996 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786536, "decimalLat": -33.704443 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63129, "decimalLat": -34.42012 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.490166 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.883653, "decimalLat": -34.015618 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785822, "decimalLat": -33.715073 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367535, "decimalLat": -28.612172 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.612 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630338, "decimalLat": -34.395282 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.871849, "decimalLat": -31.479051 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657867, "decimalLat": -34.456009 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629186, "decimalLat": -28.639492 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.639 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.515409, "decimalLat": -30.499978 }, "geometry": { "type": "Point", "coordinates": [ 151.515, -30.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616765, "decimalLat": -34.433216 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.106037, "decimalLat": -32.729432 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904344, "decimalLat": -31.456114 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.729366, "decimalLat": -31.600927 }, "geometry": { "type": "Point", "coordinates": [ 152.729, -31.601 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914061, "decimalLat": -31.480401 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624538, "decimalLat": -34.386136 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901443, "decimalLat": -31.241831 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562425, "decimalLat": -28.389917 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791684, "decimalLat": -31.630803 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.594564, "decimalLat": -28.74324 }, "geometry": { "type": "Point", "coordinates": [ 153.595, -28.743 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637334, "decimalLat": -34.423789 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.840287, "decimalLat": -34.06378 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.064 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628038, "decimalLat": -34.420877 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.602409, "decimalLat": -31.651771 }, "geometry": { "type": "Point", "coordinates": [ 152.602, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53316, "decimalLat": -34.475696 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.045437, "decimalLat": -30.463978 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -30.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627446, "decimalLat": -34.421812 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301644, "decimalLat": -28.821884 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09592, "decimalLat": -29.484576 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.994732, "decimalLat": -34.056818 }, "geometry": { "type": "Point", "coordinates": [ 150.995, -34.057 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604337, "decimalLat": -34.422245 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094016, "decimalLat": -29.488709 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.937903, "decimalLat": -28.691735 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -28.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627354, "decimalLat": -34.421197 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523195, "decimalLat": -34.471032 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520307, "decimalLat": -34.465654 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914021, "decimalLat": -31.460392 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626446, "decimalLat": -34.390608 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401468, "decimalLat": -28.872044 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904674, "decimalLat": -31.456106 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.456293, "decimalLat": -32.403623 }, "geometry": { "type": "Point", "coordinates": [ 152.456, -32.404 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867269, "decimalLat": -31.467814 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.856583, "decimalLat": -31.447396 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632802, "decimalLat": -34.418607 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517926, "decimalLat": -34.457096 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519271, "decimalLat": -34.466823 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108097, "decimalLat": -29.490311 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635716, "decimalLat": -34.418285 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516404, "decimalLat": -34.448969 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627482, "decimalLat": -34.386247 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.966033, "decimalLat": -30.397046 }, "geometry": { "type": "Point", "coordinates": [ 152.966, -30.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063663, "decimalLat": -32.705539 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888257, "decimalLat": -29.639691 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -29.64 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016192, "decimalLat": -34.806145 }, "geometry": { "type": "Point", "coordinates": [ 150.016, -34.806 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.915309, "decimalLat": -36.574566 }, "geometry": { "type": "Point", "coordinates": [ 149.915, -36.575 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 146.544787, "decimalLat": -34.753227 }, "geometry": { "type": "Point", "coordinates": [ 146.545, -34.753 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303677, "decimalLat": -28.651197 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.506959, "decimalLat": -30.511997 }, "geometry": { "type": "Point", "coordinates": [ 151.507, -30.512 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809887, "decimalLat": -31.652347 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789331, "decimalLat": -34.200336 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.2 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517335, "decimalLat": -34.452053 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607411, "decimalLat": -34.422774 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643659, "decimalLat": -33.593623 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -33.594 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513798, "decimalLat": -34.447275 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.20507, "decimalLat": -32.22231 }, "geometry": { "type": "Point", "coordinates": [ 152.205, -32.222 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938213, "decimalLat": -36.559404 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659471, "decimalLat": -34.455472 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557961, "decimalLat": -28.393962 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.0802, "decimalLat": -30.9008 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -30.901 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.191179, "decimalLat": -31.59447 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -31.594 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.952917, "decimalLat": -36.681355 }, "geometry": { "type": "Point", "coordinates": [ 149.953, -36.681 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100692, "decimalLat": -30.302212 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -30.302 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640705, "decimalLat": -34.494229 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.685064, "decimalLat": -34.352653 }, "geometry": { "type": "Point", "coordinates": [ 150.685, -34.353 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910592, "decimalLat": -31.465498 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.69219, "decimalLat": -32.697448 }, "geometry": { "type": "Point", "coordinates": [ 151.692, -32.697 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.006924, "decimalLat": -30.407796 }, "geometry": { "type": "Point", "coordinates": [ 153.007, -30.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104079, "decimalLat": -29.48431 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342482, "decimalLat": -28.805797 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.037231, "decimalLat": -32.729309 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644384, "decimalLat": -34.391595 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517886, "decimalLat": -34.437865 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514312, "decimalLat": -34.446483 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89831, "decimalLat": -31.442672 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405107, "decimalLat": -31.920313 }, "geometry": { "type": "Point", "coordinates": [ 152.405, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90909, "decimalLat": -30.1759 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -30.176 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.498059, "decimalLat": -28.313253 }, "geometry": { "type": "Point", "coordinates": [ 152.498, -28.313 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616564, "decimalLat": -34.439893 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405107, "decimalLat": -31.920313 }, "geometry": { "type": "Point", "coordinates": [ 152.405, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87191, "decimalLat": -31.144825 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.145 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.490203 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.778706, "decimalLat": -32.573337 }, "geometry": { "type": "Point", "coordinates": [ 151.779, -32.573 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789197, "decimalLat": -34.195852 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.196 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.960451, "decimalLat": -31.215618 }, "geometry": { "type": "Point", "coordinates": [ 152.96, -31.216 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.529457, "decimalLat": -28.588452 }, "geometry": { "type": "Point", "coordinates": [ 153.529, -28.588 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896567, "decimalLat": -31.443303 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110527, "decimalLat": -29.49018 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.734049, "decimalLat": -30.84847 }, "geometry": { "type": "Point", "coordinates": [ 152.734, -30.848 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604951, "decimalLat": -34.423222 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609044, "decimalLat": -34.434959 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.532454, "decimalLat": -34.741097 }, "geometry": { "type": "Point", "coordinates": [ 146.532, -34.741 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273941, "decimalLat": -28.820088 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092232, "decimalLat": -29.488095 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521632, "decimalLat": -34.465735 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553636, "decimalLat": -28.359247 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.359 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.882534, "decimalLat": -31.254847 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -31.255 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641005, "decimalLat": -34.494784 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.495 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989495, "decimalLat": -34.028018 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.028 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 144.895403, "decimalLat": -35.971447 }, "geometry": { "type": "Point", "coordinates": [ 144.895, -35.971 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605824, "decimalLat": -34.432642 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627376, "decimalLat": -34.421198 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562707, "decimalLat": -28.38545 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396961, "decimalLat": -28.558873 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615339, "decimalLat": -34.430944 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916227, "decimalLat": -31.480952 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868165, "decimalLat": -31.465331 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646163, "decimalLat": -34.39721 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.521767, "decimalLat": -28.566824 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -28.567 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.777302, "decimalLat": -30.885013 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327762, "decimalLat": -28.671784 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597304, "decimalLat": -34.410243 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.24139, "decimalLat": -30.027688 }, "geometry": { "type": "Point", "coordinates": [ 152.241, -30.028 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412635, "decimalLat": -31.932544 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.926899, "decimalLat": -32.959492 }, "geometry": { "type": "Point", "coordinates": [ 149.927, -32.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283345, "decimalLat": -28.830836 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521137, "decimalLat": -34.451932 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797112, "decimalLat": -31.637879 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600953, "decimalLat": -34.426452 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532445, "decimalLat": -34.477413 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299496, "decimalLat": -28.821547 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894749, "decimalLat": -31.448294 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603441, "decimalLat": -34.43951 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604871, "decimalLat": -34.42679 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623075, "decimalLat": -34.382889 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.491477, "decimalLat": -28.667264 }, "geometry": { "type": "Point", "coordinates": [ 153.491, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619383, "decimalLat": -34.439515 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607182, "decimalLat": -34.436942 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659327, "decimalLat": -34.457524 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.995193, "decimalLat": -30.416487 }, "geometry": { "type": "Point", "coordinates": [ 152.995, -30.416 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88489, "decimalLat": -31.429786 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.663314, "decimalLat": -32.720474 }, "geometry": { "type": "Point", "coordinates": [ 151.663, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786938, "decimalLat": -33.707269 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615491, "decimalLat": -34.435527 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108167, "decimalLat": -29.490665 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607953, "decimalLat": -34.45607 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906328, "decimalLat": -31.481698 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.746577, "decimalLat": -32.557035 }, "geometry": { "type": "Point", "coordinates": [ 151.747, -32.557 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.384254, "decimalLat": -31.884849 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.885 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104069, "decimalLat": -29.479267 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923421, "decimalLat": -31.46977 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626675, "decimalLat": -34.389035 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527162, "decimalLat": -34.469399 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630452, "decimalLat": -34.420924 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633666, "decimalLat": -34.418426 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794403, "decimalLat": -34.229736 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.23 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87191, "decimalLat": -31.15075 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.151 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.414197, "decimalLat": -28.953621 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.954 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627102, "decimalLat": -34.389701 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563878, "decimalLat": -28.391181 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.177743, "decimalLat": -29.174626 }, "geometry": { "type": "Point", "coordinates": [ 150.178, -29.175 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.95523, "decimalLat": -30.66673 }, "geometry": { "type": "Point", "coordinates": [ 152.955, -30.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.973847, "decimalLat": -34.106067 }, "geometry": { "type": "Point", "coordinates": [ 150.974, -34.106 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92596, "decimalLat": -31.452378 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.710237, "decimalLat": -31.78229 }, "geometry": { "type": "Point", "coordinates": [ 152.71, -31.782 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514311, "decimalLat": -34.44651 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.090906, "decimalLat": -32.781371 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -32.781 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068944, "decimalLat": -32.748672 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.749 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.451137, "decimalLat": -28.928791 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.541925, "decimalLat": -28.396572 }, "geometry": { "type": "Point", "coordinates": [ 153.542, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.096801, "decimalLat": -29.778078 }, "geometry": { "type": "Point", "coordinates": [ 151.097, -29.778 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104208, "decimalLat": -29.480061 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643979, "decimalLat": -34.391281 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.659379, "decimalLat": -32.682451 }, "geometry": { "type": "Point", "coordinates": [ 151.659, -32.682 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9855, "decimalLat": -34.091522 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.075452, "decimalLat": -30.354936 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -30.355 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603245, "decimalLat": -34.425424 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631527, "decimalLat": -34.387822 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.387605, "decimalLat": -31.902146 }, "geometry": { "type": "Point", "coordinates": [ 152.388, -31.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.182672, "decimalLat": -29.867849 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -29.868 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.649546, "decimalLat": -34.396392 }, "geometry": { "type": "Point", "coordinates": [ 150.65, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639241, "decimalLat": -34.491703 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.182672, "decimalLat": -29.867849 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -29.868 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104305, "decimalLat": -29.482592 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109288, "decimalLat": -29.490647 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079414, "decimalLat": -32.730969 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9091, "decimalLat": -31.4402 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521679, "decimalLat": -34.464889 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555948, "decimalLat": -28.398935 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300463, "decimalLat": -28.823805 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103822, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.56651, "decimalLat": -34.52307 }, "geometry": { "type": "Point", "coordinates": [ 150.567, -34.523 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100716, "decimalLat": -29.490152 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606343, "decimalLat": -34.436195 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90779, "decimalLat": -30.17379 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -30.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639466, "decimalLat": -34.392835 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.717938, "decimalLat": -32.662349 }, "geometry": { "type": "Point", "coordinates": [ 151.718, -32.662 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063314, "decimalLat": -32.705964 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.153345, "decimalLat": -32.731477 }, "geometry": { "type": "Point", "coordinates": [ 152.153, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520709, "decimalLat": -34.465681 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03977, "decimalLat": -32.73392 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63091, "decimalLat": -34.388477 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07817, "decimalLat": -30.340512 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.341 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516447, "decimalLat": -34.450088 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109787, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926356, "decimalLat": -31.451697 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523666, "decimalLat": -28.38674 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.846832, "decimalLat": -32.800506 }, "geometry": { "type": "Point", "coordinates": [ 151.847, -32.801 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638506, "decimalLat": -34.490742 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.056771, "decimalLat": -28.691576 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -28.692 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.820486 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626878, "decimalLat": -34.385685 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.844721, "decimalLat": -29.834265 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.082325, "decimalLat": -33.13776 }, "geometry": { "type": "Point", "coordinates": [ 151.082, -33.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63998, "decimalLat": -34.397758 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628619, "decimalLat": -34.389136 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379396, "decimalLat": -31.919751 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532529, "decimalLat": -34.48121 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924695, "decimalLat": -31.443148 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639569, "decimalLat": -34.39922 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.140067, "decimalLat": -35.971844 }, "geometry": { "type": "Point", "coordinates": [ 149.14, -35.972 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605392, "decimalLat": -34.423762 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.911136, "decimalLat": -33.968789 }, "geometry": { "type": "Point", "coordinates": [ 150.911, -33.969 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104235, "decimalLat": -29.479724 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10401, "decimalLat": -29.483993 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.152509, "decimalLat": -32.722949 }, "geometry": { "type": "Point", "coordinates": [ 152.153, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.399507, "decimalLat": -31.850735 }, "geometry": { "type": "Point", "coordinates": [ 152.4, -31.851 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.398327, "decimalLat": -33.489114 }, "geometry": { "type": "Point", "coordinates": [ 149.398, -33.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513094, "decimalLat": -34.447171 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625446, "decimalLat": -34.384413 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31798, "decimalLat": -28.827161 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616369, "decimalLat": -34.429161 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521454, "decimalLat": -34.465885 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52087, "decimalLat": -34.466847 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.415221, "decimalLat": -28.672232 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521404, "decimalLat": -34.466461 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641399, "decimalLat": -34.395667 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.67026, "decimalLat": -31.166614 }, "geometry": { "type": "Point", "coordinates": [ 152.67, -31.167 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557215, "decimalLat": -28.400332 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515752, "decimalLat": -34.443042 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887031, "decimalLat": -31.439408 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872797, "decimalLat": -31.463682 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.38778, "decimalLat": -28.678148 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -28.678 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.116571, "decimalLat": -32.766323 }, "geometry": { "type": "Point", "coordinates": [ 152.117, -32.766 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62326, "decimalLat": -34.383262 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.069137, "decimalLat": -32.707881 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516584, "decimalLat": -34.446926 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.482136, "decimalLat": -28.640286 }, "geometry": { "type": "Point", "coordinates": [ 153.482, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604372, "decimalLat": -34.424437 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103666, "decimalLat": -29.485819 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.074095, "decimalLat": -30.889394 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884946, "decimalLat": -31.430129 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523906, "decimalLat": -34.452511 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.921178, "decimalLat": -36.633581 }, "geometry": { "type": "Point", "coordinates": [ 149.921, -36.634 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908079, "decimalLat": -31.44189 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615901, "decimalLat": -34.43567 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.003944, "decimalLat": -32.727623 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899011, "decimalLat": -31.477865 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10401, "decimalLat": -29.484597 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.449782, "decimalLat": -32.092397 }, "geometry": { "type": "Point", "coordinates": [ 152.45, -32.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37941, "decimalLat": -31.919753 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.458876, "decimalLat": -28.237207 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631452, "decimalLat": -34.387784 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062125, "decimalLat": -32.70915 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.944433, "decimalLat": -29.346563 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -29.347 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.159359, "decimalLat": -28.924729 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110506, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78684, "decimalLat": -33.707786 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.328556, "decimalLat": -28.816805 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.871287, "decimalLat": -32.774392 }, "geometry": { "type": "Point", "coordinates": [ 151.871, -32.774 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79405, "decimalLat": -34.138436 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868319, "decimalLat": -29.667247 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51312, "decimalLat": -34.445927 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063272, "decimalLat": -32.706203 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923643, "decimalLat": -36.618562 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608876, "decimalLat": -34.435127 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64566, "decimalLat": -34.400401 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273349, "decimalLat": -28.939137 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.939 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.816471, "decimalLat": -32.354277 }, "geometry": { "type": "Point", "coordinates": [ 151.816, -32.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27792, "decimalLat": -28.678948 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56427, "decimalLat": -28.380558 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107894, "decimalLat": -29.490213 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.414365, "decimalLat": -31.93439 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656008, "decimalLat": -34.45866 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622486, "decimalLat": -34.384509 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887473, "decimalLat": -31.444077 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516994, "decimalLat": -34.447394 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281819, "decimalLat": -28.819816 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52394, "decimalLat": -34.46278 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.715294, "decimalLat": -32.668945 }, "geometry": { "type": "Point", "coordinates": [ 151.715, -32.669 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.915309, "decimalLat": -36.574566 }, "geometry": { "type": "Point", "coordinates": [ 149.915, -36.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920882, "decimalLat": -31.455795 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870715, "decimalLat": -31.461602 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609512, "decimalLat": -34.418911 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104203, "decimalLat": -29.47958 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.978567, "decimalLat": -34.084685 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -34.085 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.186783, "decimalLat": -28.888915 }, "geometry": { "type": "Point", "coordinates": [ 153.187, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609177, "decimalLat": -34.434502 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603681, "decimalLat": -34.437594 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611986, "decimalLat": -34.432158 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557719, "decimalLat": -28.388496 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.970412, "decimalLat": -30.422788 }, "geometry": { "type": "Point", "coordinates": [ 152.97, -30.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.666458, "decimalLat": -31.863221 }, "geometry": { "type": "Point", "coordinates": [ 152.666, -31.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533125, "decimalLat": -34.480942 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5182, "decimalLat": -34.437169 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641698, "decimalLat": -34.393509 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637302, "decimalLat": -34.423761 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896425, "decimalLat": -29.629872 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -29.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522293, "decimalLat": -34.4651 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324916, "decimalLat": -36.294197 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.294 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.306418, "decimalLat": -32.200385 }, "geometry": { "type": "Point", "coordinates": [ 152.306, -32.2 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19096, "decimalLat": -32.219628 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -32.22 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842335, "decimalLat": -34.068546 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897136, "decimalLat": -31.442702 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.834442, "decimalLat": -34.069204 }, "geometry": { "type": "Point", "coordinates": [ 150.834, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785679, "decimalLat": -33.70996 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842335, "decimalLat": -34.068546 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910331, "decimalLat": -31.440017 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60426, "decimalLat": -34.437876 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887932, "decimalLat": -31.439302 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107121, "decimalLat": -29.474102 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896714, "decimalLat": -31.414153 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520432, "decimalLat": -34.454072 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626969, "decimalLat": -34.420983 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517286, "decimalLat": -34.45152 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560977, "decimalLat": -28.387175 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911145, "decimalLat": -31.430037 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321928, "decimalLat": -28.998416 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.998 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.116143, "decimalLat": -32.72405 }, "geometry": { "type": "Point", "coordinates": [ 152.116, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.134746, "decimalLat": -30.253714 }, "geometry": { "type": "Point", "coordinates": [ 153.135, -30.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616947, "decimalLat": -34.433716 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077174, "decimalLat": -32.722468 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.228742, "decimalLat": -28.890876 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383191, "decimalLat": -31.912325 }, "geometry": { "type": "Point", "coordinates": [ 152.383, -31.912 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.592081, "decimalLat": -28.729263 }, "geometry": { "type": "Point", "coordinates": [ 153.592, -28.729 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90836, "decimalLat": -31.45791 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.752609, "decimalLat": -34.052067 }, "geometry": { "type": "Point", "coordinates": [ 150.753, -34.052 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.027991, "decimalLat": -34.034455 }, "geometry": { "type": "Point", "coordinates": [ 151.028, -34.034 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607514, "decimalLat": -34.433306 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794063, "decimalLat": -31.127889 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.807665, "decimalLat": -32.354846 }, "geometry": { "type": "Point", "coordinates": [ 149.808, -32.355 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627447, "decimalLat": -34.421389 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.699685, "decimalLat": -30.290428 }, "geometry": { "type": "Point", "coordinates": [ 152.7, -30.29 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.649795, "decimalLat": -30.326234 }, "geometry": { "type": "Point", "coordinates": [ 151.65, -30.326 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922865, "decimalLat": -31.443033 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52049, "decimalLat": -34.467903 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.765664, "decimalLat": -32.573191 }, "geometry": { "type": "Point", "coordinates": [ 151.766, -32.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.862399, "decimalLat": -34.061874 }, "geometry": { "type": "Point", "coordinates": [ 150.862, -34.062 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612691, "decimalLat": -34.458596 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603026, "decimalLat": -34.435003 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409406, "decimalLat": -31.910186 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812873, "decimalLat": -34.099034 }, "geometry": { "type": "Point", "coordinates": [ 150.813, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.05724, "decimalLat": -34.90931 }, "geometry": { "type": "Point", "coordinates": [ 150.057, -34.909 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10379, "decimalLat": -29.485552 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.636403, "decimalLat": -32.619635 }, "geometry": { "type": "Point", "coordinates": [ 151.636, -32.62 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633556, "decimalLat": -34.418478 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632833, "decimalLat": -34.418653 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103184, "decimalLat": -29.486757 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867952, "decimalLat": -31.506576 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519469, "decimalLat": -34.463429 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101977, "decimalLat": -29.488798 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909624, "decimalLat": -31.431087 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110527, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104219, "decimalLat": -29.47971 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063752, "decimalLat": -32.706596 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907297, "decimalLat": -31.470421 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.7295, "decimalLat": -30.202696 }, "geometry": { "type": "Point", "coordinates": [ 152.73, -30.203 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605576, "decimalLat": -34.437902 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.199852, "decimalLat": -31.867495 }, "geometry": { "type": "Point", "coordinates": [ 152.2, -31.867 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990249, "decimalLat": -33.979672 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -33.98 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.326028, "decimalLat": -28.824541 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603242, "decimalLat": -34.436973 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61549, "decimalLat": -34.435572 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786799, "decimalLat": -33.703828 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.195273, "decimalLat": -28.885959 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.158417, "decimalLat": -28.926902 }, "geometry": { "type": "Point", "coordinates": [ 153.158, -28.927 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415397, "decimalLat": -31.93318 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517457, "decimalLat": -34.446097 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632678, "decimalLat": -34.392902 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.829547, "decimalLat": -29.642903 }, "geometry": { "type": "Point", "coordinates": [ 152.83, -29.643 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317755, "decimalLat": -28.827612 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631887, "decimalLat": -34.388171 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.010067, "decimalLat": -34.045103 }, "geometry": { "type": "Point", "coordinates": [ 151.01, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6403, "decimalLat": -34.49313 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315188, "decimalLat": -28.86024 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.86 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637472, "decimalLat": -34.488027 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616363, "decimalLat": -34.434335 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947048, "decimalLat": -36.640426 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616412, "decimalLat": -34.436067 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.721643, "decimalLat": -32.719454 }, "geometry": { "type": "Point", "coordinates": [ 151.722, -32.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.527636, "decimalLat": -28.477117 }, "geometry": { "type": "Point", "coordinates": [ 153.528, -28.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618546, "decimalLat": -34.399209 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61548, "decimalLat": -34.435562 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630797, "decimalLat": -34.420633 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785172, "decimalLat": -33.716224 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602693, "decimalLat": -34.439027 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.488941, "decimalLat": -28.230411 }, "geometry": { "type": "Point", "coordinates": [ 153.489, -28.23 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608353, "decimalLat": -34.432114 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103881, "decimalLat": -29.484913 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556831, "decimalLat": -28.397475 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553711, "decimalLat": -28.359273 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.359 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104042, "decimalLat": -29.485118 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604809, "decimalLat": -34.427033 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627897, "decimalLat": -34.420865 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908755, "decimalLat": -31.454806 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895977, "decimalLat": -31.434431 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.780438, "decimalLat": -32.585358 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -32.585 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.292237, "decimalLat": -32.206082 }, "geometry": { "type": "Point", "coordinates": [ 152.292, -32.206 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60461, "decimalLat": -34.452704 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875735, "decimalLat": -31.468643 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925908, "decimalLat": -31.452762 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520727, "decimalLat": -34.468016 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645306, "decimalLat": -34.399429 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076999, "decimalLat": -32.722408 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296613, "decimalLat": -28.815434 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395162, "decimalLat": -29.096775 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.097 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383596, "decimalLat": -31.923029 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629673, "decimalLat": -34.420765 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904596, "decimalLat": -31.437091 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614076, "decimalLat": -34.432866 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.447243, "decimalLat": -28.944391 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.944 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.957517, "decimalLat": -36.504679 }, "geometry": { "type": "Point", "coordinates": [ 149.958, -36.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609028, "decimalLat": -34.435139 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89266, "decimalLat": -33.991958 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.992 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605684, "decimalLat": -34.423461 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.093798, "decimalLat": -31.403015 }, "geometry": { "type": "Point", "coordinates": [ 152.094, -31.403 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.956825, "decimalLat": -28.624684 }, "geometry": { "type": "Point", "coordinates": [ 152.957, -28.625 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313972, "decimalLat": -28.839543 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655487, "decimalLat": -33.522609 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -33.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519061, "decimalLat": -34.447409 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52043, "decimalLat": -34.435726 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630719, "decimalLat": -34.389871 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790596, "decimalLat": -34.188134 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916798, "decimalLat": -31.457462 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103806, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.483264, "decimalLat": -28.166129 }, "geometry": { "type": "Point", "coordinates": [ 153.483, -28.166 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639141, "decimalLat": -34.491368 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906069, "decimalLat": -31.445847 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104262, "decimalLat": -29.479239 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639144, "decimalLat": -34.493198 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616359, "decimalLat": -34.436021 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10416, "decimalLat": -29.485221 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520833, "decimalLat": -34.466999 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.38516, "decimalLat": -31.918272 }, "geometry": { "type": "Point", "coordinates": [ 152.385, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110236, "decimalLat": -29.491045 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922607, "decimalLat": -31.458564 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916422, "decimalLat": -31.450796 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104106, "decimalLat": -29.480705 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927815, "decimalLat": -31.464741 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610185, "decimalLat": -34.418961 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609164, "decimalLat": -34.420825 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.714104, "decimalLat": -31.524851 }, "geometry": { "type": "Point", "coordinates": [ 152.714, -31.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101204, "decimalLat": -29.489918 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637378, "decimalLat": -34.423754 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797752, "decimalLat": -31.120008 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.12 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926877, "decimalLat": -31.459683 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293263, "decimalLat": -28.864646 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.013656, "decimalLat": -34.055279 }, "geometry": { "type": "Point", "coordinates": [ 151.014, -34.055 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.06328, "decimalLat": -33.341894 }, "geometry": { "type": "Point", "coordinates": [ 151.063, -33.342 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918145, "decimalLat": -31.485113 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637432, "decimalLat": -34.423791 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.979238, "decimalLat": -36.570187 }, "geometry": { "type": "Point", "coordinates": [ 149.979, -36.57 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.41258, "decimalLat": -31.932362 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108167, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103806, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403053, "decimalLat": -28.729278 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602618, "decimalLat": -34.426061 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103806, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808209, "decimalLat": -34.098068 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602488, "decimalLat": -34.419928 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.431476, "decimalLat": -28.889201 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.316503, "decimalLat": -33.344372 }, "geometry": { "type": "Point", "coordinates": [ 151.317, -33.344 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615803, "decimalLat": -34.436443 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.22033, "decimalLat": -31.79145 }, "geometry": { "type": "Point", "coordinates": [ 152.22, -31.791 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063366, "decimalLat": -32.706463 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093361, "decimalLat": -29.486201 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.789503, "decimalLat": -32.653544 }, "geometry": { "type": "Point", "coordinates": [ 151.79, -32.654 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09211, "decimalLat": -29.488031 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.359559, "decimalLat": -28.796653 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -28.797 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.775854, "decimalLat": -30.200187 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -30.2 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06487, "decimalLat": -32.70167 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785432, "decimalLat": -33.703416 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.703 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.73938, "decimalLat": -33.6859 }, "geometry": { "type": "Point", "coordinates": [ 149.739, -33.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395244, "decimalLat": -28.960039 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868319, "decimalLat": -29.667247 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630656, "decimalLat": -34.420639 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.782466, "decimalLat": -32.570605 }, "geometry": { "type": "Point", "coordinates": [ 151.782, -32.571 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.12857, "decimalLat": -30.106609 }, "geometry": { "type": "Point", "coordinates": [ 152.129, -30.107 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514176, "decimalLat": -34.445904 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516468, "decimalLat": -34.450106 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.001052, "decimalLat": -36.513032 }, "geometry": { "type": "Point", "coordinates": [ 150.001, -36.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926608, "decimalLat": -30.507724 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -30.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627292, "decimalLat": -34.390661 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.986725, "decimalLat": -34.044634 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629954, "decimalLat": -34.395382 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.064067, "decimalLat": -33.773598 }, "geometry": { "type": "Point", "coordinates": [ 150.064, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104278, "decimalLat": -29.480065 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.838719, "decimalLat": -31.595037 }, "geometry": { "type": "Point", "coordinates": [ 152.839, -31.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.776514, "decimalLat": -32.373929 }, "geometry": { "type": "Point", "coordinates": [ 149.777, -32.374 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413482, "decimalLat": -31.933489 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.022955, "decimalLat": -32.739427 }, "geometry": { "type": "Point", "coordinates": [ 152.023, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5143, "decimalLat": -34.446501 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.39209, "decimalLat": -28.508652 }, "geometry": { "type": "Point", "coordinates": [ 152.392, -28.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603909, "decimalLat": -34.439528 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522082, "decimalLat": -34.46597 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786548, "decimalLat": -31.634944 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.635 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897863, "decimalLat": -31.456211 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.114058, "decimalLat": -32.764941 }, "geometry": { "type": "Point", "coordinates": [ 152.114, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640916, "decimalLat": -34.395423 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.189755, "decimalLat": -29.425509 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -29.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641103, "decimalLat": -34.403099 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.403 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.991081, "decimalLat": -34.020624 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.021 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926295, "decimalLat": -31.4583 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103924, "decimalLat": -29.489507 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.05409, "decimalLat": -30.28033 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -30.28 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630098, "decimalLat": -34.420728 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520282, "decimalLat": -34.465753 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.853532, "decimalLat": -31.553707 }, "geometry": { "type": "Point", "coordinates": [ 152.854, -31.554 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.007472, "decimalLat": -30.230104 }, "geometry": { "type": "Point", "coordinates": [ 153.007, -30.23 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.277809, "decimalLat": -29.980106 }, "geometry": { "type": "Point", "coordinates": [ 151.278, -29.98 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.106248, "decimalLat": -32.729413 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524156, "decimalLat": -34.466508 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062537, "decimalLat": -32.709575 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532909, "decimalLat": -34.475718 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51598, "decimalLat": -34.446734 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615756, "decimalLat": -34.43427 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51445, "decimalLat": -34.444755 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394328, "decimalLat": -28.275801 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103495, "decimalLat": -29.48883 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639221, "decimalLat": -34.392659 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107836, "decimalLat": -28.672293 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638545, "decimalLat": -34.491266 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610289, "decimalLat": -34.419134 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78694, "decimalLat": -33.706724 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597659, "decimalLat": -34.427866 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599946, "decimalLat": -34.425134 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518071, "decimalLat": -34.446695 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531997, "decimalLat": -34.463421 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603022, "decimalLat": -34.417603 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612165, "decimalLat": -34.431991 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926385, "decimalLat": -31.471982 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.475306, "decimalLat": -31.48891 }, "geometry": { "type": "Point", "coordinates": [ 151.475, -31.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517162, "decimalLat": -34.452032 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875249, "decimalLat": -31.450372 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.401054, "decimalLat": -31.906647 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -31.907 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625738, "decimalLat": -34.395643 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514736, "decimalLat": -34.445762 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.122284, "decimalLat": -33.114326 }, "geometry": { "type": "Point", "coordinates": [ 151.122, -33.114 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.983415, "decimalLat": -32.464227 }, "geometry": { "type": "Point", "coordinates": [ 151.983, -32.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.817161, "decimalLat": -31.131084 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -31.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985326, "decimalLat": -34.090695 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923875, "decimalLat": -29.732803 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -29.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558289, "decimalLat": -28.394194 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.709573, "decimalLat": -31.787701 }, "geometry": { "type": "Point", "coordinates": [ 152.71, -31.788 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519581, "decimalLat": -34.455236 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632018, "decimalLat": -34.418241 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064574, "decimalLat": -32.706704 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516285, "decimalLat": -34.447461 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.763216, "decimalLat": -31.500782 }, "geometry": { "type": "Point", "coordinates": [ 152.763, -31.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.449765, "decimalLat": -28.92949 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063384, "decimalLat": -32.706016 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609945, "decimalLat": -34.43275 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494976, "decimalLat": -28.656932 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606669, "decimalLat": -34.434678 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.45426, "decimalLat": -31.93643 }, "geometry": { "type": "Point", "coordinates": [ 152.454, -31.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627666, "decimalLat": -34.386286 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313553, "decimalLat": -28.871982 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610301, "decimalLat": -34.419098 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.152137, "decimalLat": -30.144069 }, "geometry": { "type": "Point", "coordinates": [ 153.152, -30.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519486, "decimalLat": -34.456586 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.538393, "decimalLat": -28.528678 }, "geometry": { "type": "Point", "coordinates": [ 153.538, -28.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.832007, "decimalLat": -31.631113 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630666, "decimalLat": -34.420658 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.121592, "decimalLat": -30.301315 }, "geometry": { "type": "Point", "coordinates": [ 153.122, -30.301 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.208892, "decimalLat": -31.56062 }, "geometry": { "type": "Point", "coordinates": [ 152.209, -31.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641297, "decimalLat": -34.394637 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603413, "decimalLat": -34.427537 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609644, "decimalLat": -34.436431 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612018, "decimalLat": -34.432186 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786957, "decimalLat": -33.705748 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.921117, "decimalLat": -33.967222 }, "geometry": { "type": "Point", "coordinates": [ 150.921, -33.967 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.814505, "decimalLat": -31.430757 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899658, "decimalLat": -29.631163 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616009, "decimalLat": -34.438007 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.763999, "decimalLat": -32.596543 }, "geometry": { "type": "Point", "coordinates": [ 151.764, -32.597 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.13459, "decimalLat": -28.52286 }, "geometry": { "type": "Point", "coordinates": [ 153.135, -28.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605617, "decimalLat": -34.437254 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636388, "decimalLat": -34.485554 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.958719, "decimalLat": -29.240543 }, "geometry": { "type": "Point", "coordinates": [ 152.959, -29.241 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.4163, "decimalLat": -30.636253 }, "geometry": { "type": "Point", "coordinates": [ 151.416, -30.636 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40417, "decimalLat": -31.94582 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101451, "decimalLat": -29.489629 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.121313, "decimalLat": -32.71906 }, "geometry": { "type": "Point", "coordinates": [ 152.121, -32.719 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.037093, "decimalLat": -30.895318 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -30.895 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104058, "decimalLat": -29.485277 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529492, "decimalLat": -34.471241 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658791, "decimalLat": -33.526907 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630222, "decimalLat": -34.420965 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627488, "decimalLat": -34.421489 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604353, "decimalLat": -34.438843 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617814, "decimalLat": -34.434977 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926475, "decimalLat": -31.451753 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615071, "decimalLat": -34.429262 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092154, "decimalLat": -29.488228 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.489237, "decimalLat": -33.526989 }, "geometry": { "type": "Point", "coordinates": [ 149.489, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.817895, "decimalLat": -31.264179 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.264 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.522986, "decimalLat": -32.066605 }, "geometry": { "type": "Point", "coordinates": [ 152.523, -32.067 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526882, "decimalLat": -34.469304 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520315, "decimalLat": -34.45398 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637528, "decimalLat": -34.488334 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64221, "decimalLat": -34.396999 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109793, "decimalLat": -29.490203 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63071, "decimalLat": -34.420658 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892168, "decimalLat": -31.438007 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519534, "decimalLat": -34.455343 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926709, "decimalLat": -31.445019 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518248, "decimalLat": -34.44879 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900225, "decimalLat": -31.470429 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.106672, "decimalLat": -29.205067 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.205 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645114, "decimalLat": -34.391537 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109363, "decimalLat": -29.490581 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064295, "decimalLat": -32.708764 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628005, "decimalLat": -34.420507 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930868, "decimalLat": -29.726474 }, "geometry": { "type": "Point", "coordinates": [ 152.931, -29.726 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104423, "decimalLat": -29.476885 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.466623, "decimalLat": -33.583845 }, "geometry": { "type": "Point", "coordinates": [ 149.467, -33.584 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.695548, "decimalLat": -33.388037 }, "geometry": { "type": "Point", "coordinates": [ 150.696, -33.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.663732, "decimalLat": -34.458808 }, "geometry": { "type": "Point", "coordinates": [ 150.664, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.436507, "decimalLat": -28.99284 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.993 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867825, "decimalLat": -29.667396 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401309, "decimalLat": -28.256241 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.734784, "decimalLat": -30.443318 }, "geometry": { "type": "Point", "coordinates": [ 151.735, -30.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609221, "decimalLat": -34.434503 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101215, "decimalLat": -29.489928 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10431, "decimalLat": -29.477786 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627445, "decimalLat": -34.390664 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107395, "decimalLat": -29.490124 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108119, "decimalLat": -29.490315 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312419, "decimalLat": -28.689831 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.799633, "decimalLat": -29.168547 }, "geometry": { "type": "Point", "coordinates": [ 152.8, -29.169 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605158, "decimalLat": -34.426237 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433744, "decimalLat": -28.573732 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.574 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527176, "decimalLat": -34.469319 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922859, "decimalLat": -31.466574 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613857, "decimalLat": -34.437135 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092197, "decimalLat": -29.488153 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517866, "decimalLat": -34.459114 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522415, "decimalLat": -34.465778 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063529, "decimalLat": -32.706158 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784636, "decimalLat": -33.715856 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521464, "decimalLat": -34.459268 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.648297, "decimalLat": -33.545022 }, "geometry": { "type": "Point", "coordinates": [ 150.648, -33.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.661908, "decimalLat": -34.458259 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608341, "decimalLat": -34.432132 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104058, "decimalLat": -29.479748 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364004, "decimalLat": -28.833544 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335481, "decimalLat": -28.869015 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.39193, "decimalLat": -31.812159 }, "geometry": { "type": "Point", "coordinates": [ 152.392, -31.812 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635375, "decimalLat": -34.488653 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818062, "decimalLat": -31.264856 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.265 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51649, "decimalLat": -34.45008 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910608, "decimalLat": -31.459806 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635284, "decimalLat": -34.488011 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630265, "decimalLat": -34.420974 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886828, "decimalLat": -31.440355 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513121, "decimalLat": -34.445891 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786618, "decimalLat": -33.708388 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40431, "decimalLat": -31.925132 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624604, "decimalLat": -34.386119 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635178, "decimalLat": -34.420375 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.140473, "decimalLat": -28.494266 }, "geometry": { "type": "Point", "coordinates": [ 153.14, -28.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103623, "decimalLat": -29.485552 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104841, "decimalLat": -29.476717 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923138, "decimalLat": -31.462146 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616008, "decimalLat": -34.441081 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103994, "decimalLat": -29.485244 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108172, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093447, "decimalLat": -29.488746 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096628, "decimalLat": -29.486248 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.049341, "decimalLat": -30.912116 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -30.912 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.375108, "decimalLat": -31.925624 }, "geometry": { "type": "Point", "coordinates": [ 152.375, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616164, "decimalLat": -34.437893 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909937, "decimalLat": -30.505342 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -30.505 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09915, "decimalLat": -29.490936 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.174613, "decimalLat": -32.660899 }, "geometry": { "type": "Point", "coordinates": [ 152.175, -32.661 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564028, "decimalLat": -28.387972 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.350925, "decimalLat": -28.866397 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.238855, "decimalLat": -36.173957 }, "geometry": { "type": "Point", "coordinates": [ 149.239, -36.174 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.762249, "decimalLat": -30.015431 }, "geometry": { "type": "Point", "coordinates": [ 152.762, -30.015 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064462, "decimalLat": -32.710356 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627102, "decimalLat": -34.390477 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.101735, "decimalLat": -32.757248 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -32.757 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603314, "decimalLat": -34.427571 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627992, "decimalLat": -34.390918 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638928, "decimalLat": -34.418933 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317262, "decimalLat": -28.826294 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603395, "decimalLat": -34.436182 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.271853, "decimalLat": -28.888732 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833896, "decimalLat": -34.084454 }, "geometry": { "type": "Point", "coordinates": [ 150.834, -34.084 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.081623, "decimalLat": -33.137746 }, "geometry": { "type": "Point", "coordinates": [ 151.082, -33.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.388316, "decimalLat": -28.556131 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.408078, "decimalLat": -31.93345 }, "geometry": { "type": "Point", "coordinates": [ 152.408, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630893, "decimalLat": -34.420707 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632031, "decimalLat": -34.418169 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.098066, "decimalLat": -29.488489 }, "geometry": { "type": "Point", "coordinates": [ 153.098, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938213, "decimalLat": -36.559404 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516368, "decimalLat": -34.448346 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610378, "decimalLat": -34.430549 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51312, "decimalLat": -34.447775 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513278, "decimalLat": -34.446111 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.845029, "decimalLat": -29.834537 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.835 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990993, "decimalLat": -34.088588 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.089 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.040682, "decimalLat": -28.459169 }, "geometry": { "type": "Point", "coordinates": [ 153.041, -28.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103876, "decimalLat": -29.489587 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403393, "decimalLat": -28.259623 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640245, "decimalLat": -34.415821 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.416 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639454, "decimalLat": -34.392861 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.145044, "decimalLat": -32.010099 }, "geometry": { "type": "Point", "coordinates": [ 152.145, -32.01 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.99504, "decimalLat": -31.13066 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -31.131 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618841, "decimalLat": -34.43982 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868748, "decimalLat": -29.667396 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610042, "decimalLat": -34.430128 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.027864, "decimalLat": -32.305059 }, "geometry": { "type": "Point", "coordinates": [ 152.028, -32.305 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523634, "decimalLat": -34.464288 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789337, "decimalLat": -34.209417 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.769827, "decimalLat": -32.593434 }, "geometry": { "type": "Point", "coordinates": [ 151.77, -32.593 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.53008, "decimalLat": -32.331354 }, "geometry": { "type": "Point", "coordinates": [ 152.53, -32.331 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605576, "decimalLat": -34.43792 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.190362, "decimalLat": -32.237057 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.237 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103779, "decimalLat": -29.48552 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39044, "decimalLat": -28.838189 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615856, "decimalLat": -34.436102 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104031, "decimalLat": -29.485342 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.506898, "decimalLat": -28.804702 }, "geometry": { "type": "Point", "coordinates": [ 153.507, -28.805 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526063, "decimalLat": -34.464617 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.739822, "decimalLat": -30.477672 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -30.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624177, "decimalLat": -34.388923 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.899564, "decimalLat": -33.984341 }, "geometry": { "type": "Point", "coordinates": [ 150.9, -33.984 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110527, "decimalLat": -29.490194 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513052, "decimalLat": -34.446034 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894402, "decimalLat": -31.430362 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904181, "decimalLat": -31.439629 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523863, "decimalLat": -34.463527 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611406, "decimalLat": -34.419643 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644257, "decimalLat": -34.398075 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.859517, "decimalLat": -34.072866 }, "geometry": { "type": "Point", "coordinates": [ 150.86, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383672, "decimalLat": -31.92367 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.582601, "decimalLat": -34.500217 }, "geometry": { "type": "Point", "coordinates": [ 150.583, -34.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520681, "decimalLat": -34.468087 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.031333, "decimalLat": -32.132223 }, "geometry": { "type": "Point", "coordinates": [ 152.031, -32.132 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522169, "decimalLat": -34.461987 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.387072, "decimalLat": -28.907274 }, "geometry": { "type": "Point", "coordinates": [ 152.387, -28.907 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110939, "decimalLat": -29.490648 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.825419, "decimalLat": -34.150037 }, "geometry": { "type": "Point", "coordinates": [ 150.825, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.537089, "decimalLat": -28.620414 }, "geometry": { "type": "Point", "coordinates": [ 153.537, -28.62 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.540319, "decimalLat": -32.060198 }, "geometry": { "type": "Point", "coordinates": [ 152.54, -32.06 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104037, "decimalLat": -29.484357 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514096, "decimalLat": -34.446407 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51952, "decimalLat": -34.447716 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.42816, "decimalLat": -28.626811 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.475172, "decimalLat": -28.684864 }, "geometry": { "type": "Point", "coordinates": [ 153.475, -28.685 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109379, "decimalLat": -29.490502 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621801, "decimalLat": -34.397947 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.171867, "decimalLat": -32.664102 }, "geometry": { "type": "Point", "coordinates": [ 152.172, -32.664 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322317, "decimalLat": -28.824589 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303123, "decimalLat": -28.848003 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616969, "decimalLat": -34.433689 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.834991, "decimalLat": -34.069577 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110222, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520613, "decimalLat": -34.436523 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785145, "decimalLat": -33.717059 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641265, "decimalLat": -34.395015 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101451, "decimalLat": -28.579904 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -28.58 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192632, "decimalLat": -32.228945 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516481, "decimalLat": -34.450043 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402563, "decimalLat": -28.960608 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.388725, "decimalLat": -28.86626 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.666101, "decimalLat": -33.536353 }, "geometry": { "type": "Point", "coordinates": [ 150.666, -33.536 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605092, "decimalLat": -34.426281 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298465, "decimalLat": -28.888411 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.888 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.056771, "decimalLat": -32.736788 }, "geometry": { "type": "Point", "coordinates": [ 152.057, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.643177, "decimalLat": -31.577395 }, "geometry": { "type": "Point", "coordinates": [ 151.643, -31.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110554, "decimalLat": -29.489792 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523877, "decimalLat": -34.512751 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520978, "decimalLat": -34.454372 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.384531, "decimalLat": -29.104379 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -29.104 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.448368, "decimalLat": -28.25335 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521633, "decimalLat": -34.46569 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.703898, "decimalLat": -31.71347 }, "geometry": { "type": "Point", "coordinates": [ 152.704, -31.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627422, "decimalLat": -34.421487 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625272, "decimalLat": -34.384419 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.406039, "decimalLat": -31.386864 }, "geometry": { "type": "Point", "coordinates": [ 150.406, -31.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61712, "decimalLat": -33.51735 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -33.517 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324332, "decimalLat": -28.87971 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913171, "decimalLat": -31.443366 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108151, "decimalLat": -29.490259 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.954709, "decimalLat": -31.240985 }, "geometry": { "type": "Point", "coordinates": [ 152.955, -31.241 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910567, "decimalLat": -31.442553 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642766, "decimalLat": -34.39462 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920812, "decimalLat": -31.447702 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86094, "decimalLat": -31.428682 }, "geometry": { "type": "Point", "coordinates": [ 152.861, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.623847, "decimalLat": -31.558983 }, "geometry": { "type": "Point", "coordinates": [ 152.624, -31.559 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787102, "decimalLat": -33.706337 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630665, "decimalLat": -34.420703 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610261, "decimalLat": -34.418971 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.008997, "decimalLat": -30.422742 }, "geometry": { "type": "Point", "coordinates": [ 153.009, -30.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.075532, "decimalLat": -30.354912 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -30.355 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785298, "decimalLat": -31.632051 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520292, "decimalLat": -34.465789 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919469, "decimalLat": -31.44294 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.804593, "decimalLat": -31.604082 }, "geometry": { "type": "Point", "coordinates": [ 152.805, -31.604 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637008, "decimalLat": -34.485566 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.751426, "decimalLat": -32.402945 }, "geometry": { "type": "Point", "coordinates": [ 151.751, -32.403 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785351, "decimalLat": -33.716985 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616377, "decimalLat": -34.43805 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.401392, "decimalLat": -31.952115 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -31.952 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.540666, "decimalLat": -32.060168 }, "geometry": { "type": "Point", "coordinates": [ 152.541, -32.06 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070612, "decimalLat": -32.712686 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885496, "decimalLat": -31.439806 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643612, "decimalLat": -34.395854 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31783, "decimalLat": -28.915073 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885513, "decimalLat": -34.058521 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.059 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063527, "decimalLat": -32.706456 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.642358, "decimalLat": -32.657896 }, "geometry": { "type": "Point", "coordinates": [ 151.642, -32.658 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630629, "decimalLat": -34.42081 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515396, "decimalLat": -34.446992 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519504, "decimalLat": -34.435383 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.963413, "decimalLat": -31.271709 }, "geometry": { "type": "Point", "coordinates": [ 152.963, -31.272 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.212034, "decimalLat": -30.093753 }, "geometry": { "type": "Point", "coordinates": [ 152.212, -30.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518688, "decimalLat": -34.447537 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605651, "decimalLat": -34.423452 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.943361, "decimalLat": -29.740625 }, "geometry": { "type": "Point", "coordinates": [ 152.943, -29.741 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523748, "decimalLat": -34.449389 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109819, "decimalLat": -29.490184 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.949001, "decimalLat": -30.637202 }, "geometry": { "type": "Point", "coordinates": [ 152.949, -30.637 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317852, "decimalLat": -28.929063 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.929 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319327, "decimalLat": -28.822876 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602696, "decimalLat": -34.426378 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516096, "decimalLat": -34.448701 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.813636, "decimalLat": -31.633635 }, "geometry": { "type": "Point", "coordinates": [ 152.814, -31.634 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614853, "decimalLat": -34.429645 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624425, "decimalLat": -34.388216 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925839, "decimalLat": -31.452478 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.521123, "decimalLat": -28.72186 }, "geometry": { "type": "Point", "coordinates": [ 153.521, -28.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.624549, "decimalLat": -30.523449 }, "geometry": { "type": "Point", "coordinates": [ 152.625, -30.523 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510347, "decimalLat": -28.650448 }, "geometry": { "type": "Point", "coordinates": [ 153.51, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770962, "decimalLat": -31.211353 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -31.211 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.99348, "decimalLat": -34.049268 }, "geometry": { "type": "Point", "coordinates": [ 150.993, -34.049 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.107655, "decimalLat": -31.419488 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -31.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61026, "decimalLat": -34.418998 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604182, "decimalLat": -34.437956 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.415444, "decimalLat": -36.24865 }, "geometry": { "type": "Point", "coordinates": [ 149.415, -36.249 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.307163, "decimalLat": -36.108916 }, "geometry": { "type": "Point", "coordinates": [ 149.307, -36.109 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360581, "decimalLat": -28.889576 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637105, "decimalLat": -34.48829 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300206, "decimalLat": -28.886464 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888668, "decimalLat": -30.451825 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -30.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.008091, "decimalLat": -34.798494 }, "geometry": { "type": "Point", "coordinates": [ 150.008, -34.798 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624481, "decimalLat": -34.385467 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302047, "decimalLat": -28.847893 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.396884, "decimalLat": -31.902418 }, "geometry": { "type": "Point", "coordinates": [ 152.397, -31.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.738141, "decimalLat": -34.305637 }, "geometry": { "type": "Point", "coordinates": [ 150.738, -34.306 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335449, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627409, "decimalLat": -34.421577 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.814232, "decimalLat": -31.432922 }, "geometry": { "type": "Point", "coordinates": [ 152.814, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596082, "decimalLat": -34.411517 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.933658, "decimalLat": -29.681698 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -29.682 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.882558, "decimalLat": -34.019176 }, "geometry": { "type": "Point", "coordinates": [ 150.883, -34.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615861, "decimalLat": -34.434785 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.032037, "decimalLat": -29.749057 }, "geometry": { "type": "Point", "coordinates": [ 151.032, -29.749 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415811, "decimalLat": -31.933496 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517276, "decimalLat": -34.451863 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621158, "decimalLat": -34.398746 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.350972, "decimalLat": -36.153826 }, "geometry": { "type": "Point", "coordinates": [ 149.351, -36.154 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610357, "decimalLat": -34.420208 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825231, "decimalLat": -29.810822 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601411, "decimalLat": -34.426786 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894573, "decimalLat": -31.445696 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51939, "decimalLat": -34.437031 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091189, "decimalLat": -28.598293 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -28.598 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92553, "decimalLat": -31.4693 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.998977, "decimalLat": -36.551144 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604899, "decimalLat": -34.426926 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602796, "decimalLat": -34.41905 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.26304, "decimalLat": -29.61859 }, "geometry": { "type": "Point", "coordinates": [ 152.263, -29.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561462, "decimalLat": -28.385534 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914138, "decimalLat": -31.476156 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302198, "decimalLat": -28.819847 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919152, "decimalLat": -31.474328 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.901576, "decimalLat": -36.585256 }, "geometry": { "type": "Point", "coordinates": [ 149.902, -36.585 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293095, "decimalLat": -28.864561 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.406132, "decimalLat": -28.977706 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.978 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.874203, "decimalLat": -34.016726 }, "geometry": { "type": "Point", "coordinates": [ 150.874, -34.017 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615114, "decimalLat": -34.435393 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557511, "decimalLat": -28.394642 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401564, "decimalLat": -28.260221 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063539, "decimalLat": -32.706445 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615148, "decimalLat": -34.435376 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609758, "decimalLat": -34.430546 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.15365, "decimalLat": -32.73161 }, "geometry": { "type": "Point", "coordinates": [ 152.154, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514497, "decimalLat": -34.443909 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610722, "decimalLat": -34.430673 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9091, "decimalLat": -31.4402 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.167264, "decimalLat": -28.873877 }, "geometry": { "type": "Point", "coordinates": [ 153.167, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405625, "decimalLat": -31.930397 }, "geometry": { "type": "Point", "coordinates": [ 152.406, -31.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109428, "decimalLat": -29.490488 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900123, "decimalLat": -31.474111 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785256, "decimalLat": -33.716942 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.757834, "decimalLat": -31.628735 }, "geometry": { "type": "Point", "coordinates": [ 152.758, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.179945, "decimalLat": -28.576441 }, "geometry": { "type": "Point", "coordinates": [ 153.18, -28.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808365, "decimalLat": -34.219903 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.22 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.074059, "decimalLat": -32.743793 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -32.744 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110232, "decimalLat": -29.488387 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808238, "decimalLat": -34.098107 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605786, "decimalLat": -34.426348 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783941, "decimalLat": -33.718259 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104122, "decimalLat": -29.478809 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.719347, "decimalLat": -32.640221 }, "geometry": { "type": "Point", "coordinates": [ 151.719, -32.64 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.707977, "decimalLat": -32.662271 }, "geometry": { "type": "Point", "coordinates": [ 151.708, -32.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60908, "decimalLat": -34.418804 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.309351, "decimalLat": -28.823238 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.971583, "decimalLat": -31.192702 }, "geometry": { "type": "Point", "coordinates": [ 152.972, -31.193 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786184, "decimalLat": -33.706819 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870774, "decimalLat": -31.464317 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625121, "decimalLat": -34.386688 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189573, "decimalLat": -32.226267 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060523, "decimalLat": -32.710024 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630556, "decimalLat": -34.388695 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52051, "decimalLat": -34.465785 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824237, "decimalLat": -29.810775 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314609, "decimalLat": -28.846843 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916547, "decimalLat": -31.445007 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919393, "decimalLat": -31.445729 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102411, "decimalLat": -29.488116 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785112, "decimalLat": -33.709567 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984626, "decimalLat": -34.095742 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927627, "decimalLat": -31.44683 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285595, "decimalLat": -28.659545 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.521809, "decimalLat": -28.685947 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -28.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600755, "decimalLat": -34.428026 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.80501, "decimalLat": -32.59644 }, "geometry": { "type": "Point", "coordinates": [ 151.805, -32.596 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081326, "decimalLat": -32.776327 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.776 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.316332, "decimalLat": -36.297746 }, "geometry": { "type": "Point", "coordinates": [ 149.316, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659334, "decimalLat": -34.457272 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.258827, "decimalLat": -36.209173 }, "geometry": { "type": "Point", "coordinates": [ 149.259, -36.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639098, "decimalLat": -34.491376 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519948, "decimalLat": -34.446499 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614287, "decimalLat": -34.433871 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82607, "decimalLat": -31.27226 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -31.272 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520306, "decimalLat": -34.46569 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302488, "decimalLat": -28.848137 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78529, "decimalLat": -31.632279 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62785, "decimalLat": -34.421 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790457, "decimalLat": -34.141996 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643005, "decimalLat": -34.395382 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.501758, "decimalLat": -28.236784 }, "geometry": { "type": "Point", "coordinates": [ 153.502, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62901, "decimalLat": -34.390297 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523869, "decimalLat": -34.464068 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.35899, "decimalLat": -31.92441 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522735, "decimalLat": -34.459357 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.31217, "decimalLat": -28.74465 }, "geometry": { "type": "Point", "coordinates": [ 152.312, -28.745 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60155, "decimalLat": -28.68121 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631485, "decimalLat": -34.387776 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8742, "decimalLat": -31.459073 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608, "decimalLat": -34.433802 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.537372, "decimalLat": -33.624442 }, "geometry": { "type": "Point", "coordinates": [ 149.537, -33.624 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532643, "decimalLat": -34.478075 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.478 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.022263, "decimalLat": -32.30351 }, "geometry": { "type": "Point", "coordinates": [ 152.022, -32.304 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.900075, "decimalLat": -34.001426 }, "geometry": { "type": "Point", "coordinates": [ 150.9, -34.001 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787368, "decimalLat": -33.703721 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.921178, "decimalLat": -36.633581 }, "geometry": { "type": "Point", "coordinates": [ 149.921, -36.634 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624188, "decimalLat": -34.388924 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602009, "decimalLat": -34.42567 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7868, "decimalLat": -33.703819 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605102, "decimalLat": -34.427056 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604308, "decimalLat": -34.436227 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521332, "decimalLat": -34.435763 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517274, "decimalLat": -34.454477 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928854, "decimalLat": -31.455393 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641033, "decimalLat": -34.395137 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300789, "decimalLat": -28.995147 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.995 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637453, "decimalLat": -34.4238 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604292, "decimalLat": -34.439067 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104315, "decimalLat": -29.480033 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.289504, "decimalLat": -28.67706 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.677 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904626, "decimalLat": -31.439381 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.431324, "decimalLat": -29.016415 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.282194, "decimalLat": -29.3555 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -29.355 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790444, "decimalLat": -34.143248 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.328184, "decimalLat": -28.831105 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319132, "decimalLat": -28.682751 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.698113, "decimalLat": -31.364619 }, "geometry": { "type": "Point", "coordinates": [ 152.698, -31.365 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92517, "decimalLat": -31.454193 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091575, "decimalLat": -29.487826 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92594, "decimalLat": -31.44677 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311715, "decimalLat": -28.466721 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039572, "decimalLat": -32.737423 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.244302, "decimalLat": -33.185047 }, "geometry": { "type": "Point", "coordinates": [ 151.244, -33.185 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563995, "decimalLat": -28.387986 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413602, "decimalLat": -31.944661 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.945 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.950102, "decimalLat": -30.433774 }, "geometry": { "type": "Point", "coordinates": [ 152.95, -30.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071644, "decimalLat": -30.885799 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606795, "decimalLat": -34.438683 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520778, "decimalLat": -34.436094 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530029, "decimalLat": -34.459667 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085122, "decimalLat": -32.771054 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.771 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.84097, "decimalLat": -34.06006 }, "geometry": { "type": "Point", "coordinates": [ 150.841, -34.06 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277404, "decimalLat": -28.938919 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63379, "decimalLat": -34.489254 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.15231, "decimalLat": -31.456465 }, "geometry": { "type": "Point", "coordinates": [ 152.152, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535033, "decimalLat": -34.45938 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.818755, "decimalLat": -29.665613 }, "geometry": { "type": "Point", "coordinates": [ 150.819, -29.666 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322192, "decimalLat": -28.816036 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60155, "decimalLat": -28.68121 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929663, "decimalLat": -31.458456 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60651, "decimalLat": -34.434918 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7947, "decimalLat": -34.19079 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.191 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52161, "decimalLat": -34.465374 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.741355, "decimalLat": -30.886861 }, "geometry": { "type": "Point", "coordinates": [ 152.741, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103377, "decimalLat": -29.48982 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82287, "decimalLat": -34.150124 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596189, "decimalLat": -34.411582 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.800149, "decimalLat": -32.70424 }, "geometry": { "type": "Point", "coordinates": [ 151.8, -32.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523464, "decimalLat": -34.451619 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.289282, "decimalLat": -29.636094 }, "geometry": { "type": "Point", "coordinates": [ 152.289, -29.636 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822863, "decimalLat": -34.127969 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521257, "decimalLat": -34.459282 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.546745, "decimalLat": -34.746556 }, "geometry": { "type": "Point", "coordinates": [ 146.547, -34.747 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627274, "decimalLat": -34.421358 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530532, "decimalLat": -34.468836 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644023, "decimalLat": -34.396321 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063229, "decimalLat": -32.70614 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851464, "decimalLat": -29.692524 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.953894, "decimalLat": -33.958092 }, "geometry": { "type": "Point", "coordinates": [ 150.954, -33.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520732, "decimalLat": -34.436535 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393562, "decimalLat": -28.664511 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.665 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656788, "decimalLat": -34.45451 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.019226, "decimalLat": -28.541643 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -28.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63924, "decimalLat": -34.392767 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897962, "decimalLat": -31.435983 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.451085, "decimalLat": -28.9288 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.406132, "decimalLat": -28.977706 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.978 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784754, "decimalLat": -33.713287 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617056, "decimalLat": -34.433709 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603912, "decimalLat": -34.438645 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512851, "decimalLat": -34.470055 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.56544, "decimalLat": -34.754683 }, "geometry": { "type": "Point", "coordinates": [ 146.565, -34.755 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.647491, "decimalLat": -30.502198 }, "geometry": { "type": "Point", "coordinates": [ 151.647, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.665507, "decimalLat": -32.662006 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -32.662 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.03695, "decimalLat": -34.038934 }, "geometry": { "type": "Point", "coordinates": [ 151.037, -34.039 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561649, "decimalLat": -28.393472 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.411978, "decimalLat": -28.955515 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -28.956 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.100826, "decimalLat": -33.778308 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -33.778 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.62919, "decimalLat": -28.639399 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.639 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78536, "decimalLat": -31.634038 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.634 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63731, "decimalLat": -34.42387 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921277, "decimalLat": -31.456387 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597336, "decimalLat": -34.409901 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617341, "decimalLat": -34.399879 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812014, "decimalLat": -34.119816 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.12 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104766, "decimalLat": -29.489671 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824621, "decimalLat": -29.81046 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.81 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614853, "decimalLat": -34.429645 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.807228, "decimalLat": -34.068105 }, "geometry": { "type": "Point", "coordinates": [ 150.807, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610379, "decimalLat": -34.430495 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611668, "decimalLat": -34.43071 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110892, "decimalLat": -29.488354 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619141, "decimalLat": -34.436905 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393266, "decimalLat": -28.273234 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.273 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.462981, "decimalLat": -28.650733 }, "geometry": { "type": "Point", "coordinates": [ 153.463, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.534078, "decimalLat": -30.630821 }, "geometry": { "type": "Point", "coordinates": [ 152.534, -30.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599757, "decimalLat": -34.418035 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518772, "decimalLat": -34.459754 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.913678, "decimalLat": -34.068368 }, "geometry": { "type": "Point", "coordinates": [ 150.914, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.244418, "decimalLat": -30.05116 }, "geometry": { "type": "Point", "coordinates": [ 152.244, -30.051 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523837, "decimalLat": -34.463698 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.997768, "decimalLat": -34.082098 }, "geometry": { "type": "Point", "coordinates": [ 150.998, -34.082 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911609, "decimalLat": -31.458122 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627959, "decimalLat": -34.420975 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.665416, "decimalLat": -30.064683 }, "geometry": { "type": "Point", "coordinates": [ 152.665, -30.065 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.591395, "decimalLat": -28.735249 }, "geometry": { "type": "Point", "coordinates": [ 153.591, -28.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518559, "decimalLat": -34.444523 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89832, "decimalLat": -31.444108 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101102, "decimalLat": -29.490138 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.702658, "decimalLat": -33.463326 }, "geometry": { "type": "Point", "coordinates": [ 150.703, -33.463 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920854, "decimalLat": -31.468327 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516481, "decimalLat": -34.450025 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.777767, "decimalLat": -30.902372 }, "geometry": { "type": "Point", "coordinates": [ 152.778, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.16206, "decimalLat": -28.559994 }, "geometry": { "type": "Point", "coordinates": [ 153.162, -28.56 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.04043, "decimalLat": -33.782309 }, "geometry": { "type": "Point", "coordinates": [ 150.04, -33.782 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607942, "decimalLat": -34.422108 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.827291, "decimalLat": -31.249503 }, "geometry": { "type": "Point", "coordinates": [ 152.827, -31.25 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877095, "decimalLat": -31.436169 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.789482, "decimalLat": -31.638567 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62486, "decimalLat": -34.399764 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06845, "decimalLat": -32.71973 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645126, "decimalLat": -34.39811 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093625, "decimalLat": -29.49284 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927125, "decimalLat": -31.45489 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.00003, "decimalLat": -31.13163 }, "geometry": { "type": "Point", "coordinates": [ 150.0, -31.132 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103623, "decimalLat": -29.488475 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.739718, "decimalLat": -30.477694 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -30.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622454, "decimalLat": -34.384481 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.722139, "decimalLat": -31.347215 }, "geometry": { "type": "Point", "coordinates": [ 152.722, -31.347 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343546, "decimalLat": -28.833178 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.833 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600783, "decimalLat": -34.421734 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.816625, "decimalLat": -32.851787 }, "geometry": { "type": "Point", "coordinates": [ 151.817, -32.852 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.220622, "decimalLat": -31.626749 }, "geometry": { "type": "Point", "coordinates": [ 152.221, -31.627 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824001, "decimalLat": -29.677004 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.677 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525238, "decimalLat": -34.459363 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.083495, "decimalLat": -32.730759 }, "geometry": { "type": "Point", "coordinates": [ 152.083, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51958, "decimalLat": -34.447167 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.882004, "decimalLat": -30.044041 }, "geometry": { "type": "Point", "coordinates": [ 151.882, -30.044 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.660813, "decimalLat": -32.66045 }, "geometry": { "type": "Point", "coordinates": [ 151.661, -32.66 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.008903, "decimalLat": -32.729118 }, "geometry": { "type": "Point", "coordinates": [ 152.009, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557739, "decimalLat": -28.397239 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028806, "decimalLat": -32.192157 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78847, "decimalLat": -34.187852 }, "geometry": { "type": "Point", "coordinates": [ 150.788, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.978134, "decimalLat": -30.419039 }, "geometry": { "type": "Point", "coordinates": [ 152.978, -30.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.2288, "decimalLat": -28.888808 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.985282, "decimalLat": -29.539978 }, "geometry": { "type": "Point", "coordinates": [ 152.985, -29.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639692, "decimalLat": -34.400268 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907744, "decimalLat": -31.451415 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.513623, "decimalLat": -32.446719 }, "geometry": { "type": "Point", "coordinates": [ 152.514, -32.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.818648, "decimalLat": -34.108102 }, "geometry": { "type": "Point", "coordinates": [ 150.819, -34.108 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98722, "decimalLat": -34.029501 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.03 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628025, "decimalLat": -34.42094 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52322, "decimalLat": -34.465407 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110238, "decimalLat": -29.490292 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629623, "decimalLat": -34.38939 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624805, "decimalLat": -34.399781 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.471305, "decimalLat": -34.491512 }, "geometry": { "type": "Point", "coordinates": [ 150.471, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316981, "decimalLat": -28.949626 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.953773, "decimalLat": -33.958243 }, "geometry": { "type": "Point", "coordinates": [ 150.954, -33.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.152509, "decimalLat": -32.722949 }, "geometry": { "type": "Point", "coordinates": [ 152.153, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526845, "decimalLat": -34.469438 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618649, "decimalLat": -34.435832 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.145408, "decimalLat": -31.424874 }, "geometry": { "type": "Point", "coordinates": [ 152.145, -31.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.337649, "decimalLat": -28.264271 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -28.264 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.834904, "decimalLat": -34.069441 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077211, "decimalLat": -32.722459 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786509, "decimalLat": -33.705817 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786709, "decimalLat": -31.629385 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607556, "decimalLat": -34.421911 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913143, "decimalLat": -31.451413 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323402, "decimalLat": -28.855565 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.856 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607653, "decimalLat": -34.422319 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.111009, "decimalLat": -29.487764 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607653, "decimalLat": -34.422319 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.446727, "decimalLat": -28.640965 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.641 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.234064, "decimalLat": -33.11816 }, "geometry": { "type": "Point", "coordinates": [ 151.234, -33.118 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557526, "decimalLat": -28.396851 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092149, "decimalLat": -29.488233 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104155, "decimalLat": -29.478515 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63919, "decimalLat": -34.491585 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517391, "decimalLat": -28.690489 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607809, "decimalLat": -34.455391 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.761003, "decimalLat": -28.529721 }, "geometry": { "type": "Point", "coordinates": [ 152.761, -28.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897372, "decimalLat": -31.475247 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80827, "decimalLat": -34.098133 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301293, "decimalLat": -28.685102 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.685 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.271325, "decimalLat": -28.812352 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -28.812 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.085772, "decimalLat": -33.772436 }, "geometry": { "type": "Point", "coordinates": [ 150.086, -33.772 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61069, "decimalLat": -34.429897 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790731, "decimalLat": -34.185044 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.185 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630093, "decimalLat": -34.395088 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785593, "decimalLat": -33.713445 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104106, "decimalLat": -29.480061 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063436, "decimalLat": -32.70619 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63322, "decimalLat": -34.418435 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.837567, "decimalLat": -34.063743 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.064 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787079, "decimalLat": -33.707875 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603803, "decimalLat": -34.4394 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520293, "decimalLat": -34.453979 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110012, "decimalLat": -29.488335 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625583, "decimalLat": -34.38648 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616435, "decimalLat": -34.434472 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.943779, "decimalLat": -30.390621 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -30.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838652, "decimalLat": -34.063862 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.064 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838698, "decimalLat": -34.053453 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916487, "decimalLat": -31.468171 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630786, "decimalLat": -34.420642 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883338, "decimalLat": -31.428835 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520036, "decimalLat": -34.446834 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555983, "decimalLat": -28.398753 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627255, "decimalLat": -34.385828 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787334, "decimalLat": -33.707015 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.008499, "decimalLat": -32.727574 }, "geometry": { "type": "Point", "coordinates": [ 152.008, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.862399, "decimalLat": -34.061874 }, "geometry": { "type": "Point", "coordinates": [ 150.862, -34.062 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786869, "decimalLat": -31.629384 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.396884, "decimalLat": -31.902418 }, "geometry": { "type": "Point", "coordinates": [ 152.397, -31.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.01938, "decimalLat": -32.99363 }, "geometry": { "type": "Point", "coordinates": [ 151.019, -32.994 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786194, "decimalLat": -33.706012 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.242113, "decimalLat": -33.188733 }, "geometry": { "type": "Point", "coordinates": [ 151.242, -33.189 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.04155, "decimalLat": -30.44822 }, "geometry": { "type": "Point", "coordinates": [ 153.042, -30.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.060932, "decimalLat": -36.115541 }, "geometry": { "type": "Point", "coordinates": [ 150.061, -36.116 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78508, "decimalLat": -33.714824 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642029, "decimalLat": -34.396842 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641268, "decimalLat": -34.393726 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867775, "decimalLat": -31.474363 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513137, "decimalLat": -34.44719 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517872, "decimalLat": -34.445321 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619807, "decimalLat": -34.439136 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.845877, "decimalLat": -34.067124 }, "geometry": { "type": "Point", "coordinates": [ 150.846, -34.067 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.083764, "decimalLat": -32.735823 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606984, "decimalLat": -34.45532 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926786, "decimalLat": -31.45476 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277427, "decimalLat": -28.819703 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 146.561789, "decimalLat": -34.761723 }, "geometry": { "type": "Point", "coordinates": [ 146.562, -34.762 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.99786, "decimalLat": -32.35728 }, "geometry": { "type": "Point", "coordinates": [ 151.998, -32.357 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524047, "decimalLat": -34.463197 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616084, "decimalLat": -34.437666 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.070915, "decimalLat": -28.76248 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -28.762 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.921178, "decimalLat": -36.633581 }, "geometry": { "type": "Point", "coordinates": [ 149.921, -36.634 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099171, "decimalLat": -29.48141 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43466, "decimalLat": -28.843672 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.3644, "decimalLat": -36.012983 }, "geometry": { "type": "Point", "coordinates": [ 149.364, -36.013 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.35095, "decimalLat": -36.153888 }, "geometry": { "type": "Point", "coordinates": [ 149.351, -36.154 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606746, "decimalLat": -34.429315 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881402, "decimalLat": -29.737213 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -29.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.655618, "decimalLat": -32.686232 }, "geometry": { "type": "Point", "coordinates": [ 151.656, -32.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.594588, "decimalLat": -34.427598 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07558, "decimalLat": -32.722675 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062476, "decimalLat": -32.709609 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.429595, "decimalLat": -28.598997 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.599 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985347, "decimalLat": -34.091267 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104149, "decimalLat": -29.47873 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615878, "decimalLat": -34.436472 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987632, "decimalLat": -33.977147 }, "geometry": { "type": "Point", "coordinates": [ 150.988, -33.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627217, "decimalLat": -34.420681 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335481, "decimalLat": -28.869015 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.412284, "decimalLat": -28.955072 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -28.955 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616041, "decimalLat": -34.436114 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786208, "decimalLat": -33.705819 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513017, "decimalLat": -34.446088 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104122, "decimalLat": -29.48035 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605566, "decimalLat": -34.437893 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.526125, "decimalLat": -28.665385 }, "geometry": { "type": "Point", "coordinates": [ 153.526, -28.665 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640501, "decimalLat": -34.394694 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960571, "decimalLat": -36.556943 }, "geometry": { "type": "Point", "coordinates": [ 149.961, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.385545, "decimalLat": -31.962169 }, "geometry": { "type": "Point", "coordinates": [ 152.386, -31.962 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631282, "decimalLat": -34.393434 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786018, "decimalLat": -33.706031 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561624, "decimalLat": -28.385899 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604885, "decimalLat": -34.437339 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644758, "decimalLat": -34.392224 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617203, "decimalLat": -34.434262 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920078, "decimalLat": -31.480987 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950453, "decimalLat": -36.576974 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.373649, "decimalLat": -36.146025 }, "geometry": { "type": "Point", "coordinates": [ 149.374, -36.146 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.056846, "decimalLat": -32.737252 }, "geometry": { "type": "Point", "coordinates": [ 152.057, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306761, "decimalLat": -28.821787 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.466658, "decimalLat": -28.556876 }, "geometry": { "type": "Point", "coordinates": [ 153.467, -28.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.863276, "decimalLat": -34.004553 }, "geometry": { "type": "Point", "coordinates": [ 150.863, -34.005 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516373, "decimalLat": -34.450014 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514222, "decimalLat": -34.446563 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635586, "decimalLat": -34.486566 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.487 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.841742, "decimalLat": -34.052162 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.052 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627352, "decimalLat": -34.421288 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627317, "decimalLat": -33.575771 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -33.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.577506, "decimalLat": -33.419281 }, "geometry": { "type": "Point", "coordinates": [ 149.578, -33.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595647, "decimalLat": -34.425942 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.01112, "decimalLat": -36.547428 }, "geometry": { "type": "Point", "coordinates": [ 150.011, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.645569, "decimalLat": -30.537649 }, "geometry": { "type": "Point", "coordinates": [ 152.646, -30.538 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.041279, "decimalLat": -32.735288 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.851949, "decimalLat": -34.050248 }, "geometry": { "type": "Point", "coordinates": [ 150.852, -34.05 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926358, "decimalLat": -31.464279 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655826, "decimalLat": -34.458557 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.854722, "decimalLat": -34.048056 }, "geometry": { "type": "Point", "coordinates": [ 150.855, -34.048 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.575285, "decimalLat": -31.644542 }, "geometry": { "type": "Point", "coordinates": [ 152.575, -31.645 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642197, "decimalLat": -34.39433 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633677, "decimalLat": -34.418426 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302384, "decimalLat": -28.84663 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635326, "decimalLat": -34.488048 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515887, "decimalLat": -34.448769 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327054, "decimalLat": -29.038269 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -29.038 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434299, "decimalLat": -28.695152 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.695 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395355, "decimalLat": -28.959916 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79094, "decimalLat": -34.133848 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.134 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923643, "decimalLat": -36.618562 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.619 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.973293, "decimalLat": -34.100662 }, "geometry": { "type": "Point", "coordinates": [ 150.973, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555833, "decimalLat": -28.399167 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636302, "decimalLat": -34.421794 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630909, "decimalLat": -34.388513 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627151, "decimalLat": -34.389522 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.781386, "decimalLat": -31.97075 }, "geometry": { "type": "Point", "coordinates": [ 151.781, -31.971 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638882, "decimalLat": -34.491687 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.543438, "decimalLat": -33.699723 }, "geometry": { "type": "Point", "coordinates": [ 149.543, -33.7 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603515, "decimalLat": -34.437699 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875485, "decimalLat": -29.679487 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -29.679 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.125195, "decimalLat": -31.069662 }, "geometry": { "type": "Point", "coordinates": [ 150.125, -31.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401891, "decimalLat": -28.260427 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898825, "decimalLat": -31.442271 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611646, "decimalLat": -34.430718 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109776, "decimalLat": -29.490175 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607724, "decimalLat": -34.430137 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108162, "decimalLat": -29.490469 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513794, "decimalLat": -34.44632 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614177, "decimalLat": -34.429704 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.883987, "decimalLat": -34.018527 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630982, "decimalLat": -34.388235 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631941, "decimalLat": -34.388163 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.937207, "decimalLat": -34.113996 }, "geometry": { "type": "Point", "coordinates": [ 150.937, -34.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.092139, "decimalLat": -32.738553 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.216158, "decimalLat": -32.418238 }, "geometry": { "type": "Point", "coordinates": [ 152.216, -32.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.815095, "decimalLat": -34.085656 }, "geometry": { "type": "Point", "coordinates": [ 150.815, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524368, "decimalLat": -34.466332 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19096, "decimalLat": -32.219628 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -32.22 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.042776, "decimalLat": -28.469247 }, "geometry": { "type": "Point", "coordinates": [ 153.043, -28.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638552, "decimalLat": -34.490653 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521633, "decimalLat": -34.465699 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629104, "decimalLat": -34.395077 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110104, "decimalLat": -29.488265 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818278, "decimalLat": -31.65131 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.651 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.698554, "decimalLat": -32.367276 }, "geometry": { "type": "Point", "coordinates": [ 149.699, -32.367 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601852, "decimalLat": -34.418221 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923643, "decimalLat": -36.618562 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616363, "decimalLat": -34.438158 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.968749, "decimalLat": -29.730159 }, "geometry": { "type": "Point", "coordinates": [ 152.969, -29.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52658, "decimalLat": -34.469577 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.013297, "decimalLat": -30.41381 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -30.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911609, "decimalLat": -31.458122 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899894, "decimalLat": -29.631732 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639068, "decimalLat": -34.493187 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608504, "decimalLat": -34.45352 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522908, "decimalLat": -34.450913 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105158, "decimalLat": -29.489746 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.605549, "decimalLat": -30.344458 }, "geometry": { "type": "Point", "coordinates": [ 152.606, -30.344 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.0406, "decimalLat": -30.297238 }, "geometry": { "type": "Point", "coordinates": [ 153.041, -30.297 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413051, "decimalLat": -31.932612 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630168, "decimalLat": -34.420964 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.537072, "decimalLat": -28.222185 }, "geometry": { "type": "Point", "coordinates": [ 153.537, -28.222 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528079, "decimalLat": -34.465641 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879205, "decimalLat": -31.457051 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635236, "decimalLat": -34.487001 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.577042, "decimalLat": -29.838245 }, "geometry": { "type": "Point", "coordinates": [ 150.577, -29.838 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.985894, "decimalLat": -32.448613 }, "geometry": { "type": "Point", "coordinates": [ 151.986, -32.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109766, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316343, "decimalLat": -28.939602 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62584, "decimalLat": -34.386242 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631045, "decimalLat": -34.389084 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525117, "decimalLat": -34.495511 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.496 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.282851, "decimalLat": -28.821387 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101209, "decimalLat": -29.49003 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795899, "decimalLat": -30.884771 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.199985, "decimalLat": -32.150536 }, "geometry": { "type": "Point", "coordinates": [ 152.2, -32.151 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428133, "decimalLat": -28.558093 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.558 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659123, "decimalLat": -33.527192 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10453, "decimalLat": -29.476913 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559692, "decimalLat": -28.371061 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.371 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605617, "decimalLat": -34.437254 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.718739, "decimalLat": -33.456402 }, "geometry": { "type": "Point", "coordinates": [ 150.719, -33.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926635, "decimalLat": -31.472406 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8124, "decimalLat": -29.798531 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -29.799 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104391, "decimalLat": -29.482886 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627185, "decimalLat": -34.420644 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603328, "decimalLat": -34.436605 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.36557, "decimalLat": -36.006435 }, "geometry": { "type": "Point", "coordinates": [ 149.366, -36.006 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904753, "decimalLat": -31.439272 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.623, "decimalLat": -30.438 }, "geometry": { "type": "Point", "coordinates": [ 151.623, -30.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109739, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605865, "decimalLat": -34.454487 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602475, "decimalLat": -34.42 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336688, "decimalLat": -28.868027 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -28.868 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623914, "decimalLat": -34.388972 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.63115, "decimalLat": -28.63729 }, "geometry": { "type": "Point", "coordinates": [ 153.631, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907637, "decimalLat": -31.451214 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632647, "decimalLat": -34.418298 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609379, "decimalLat": -34.418999 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59019, "decimalLat": -28.65505 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52509, "decimalLat": -34.452598 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872983, "decimalLat": -31.479235 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621159, "decimalLat": -34.39871 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109219, "decimalLat": -29.490857 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631121, "decimalLat": -34.387552 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921692, "decimalLat": -31.48029 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101129, "decimalLat": -29.4901 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522173, "decimalLat": -34.449267 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077448, "decimalLat": -32.7228 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.487783, "decimalLat": -30.634036 }, "geometry": { "type": "Point", "coordinates": [ 151.488, -30.634 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640426, "decimalLat": -34.49407 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.293747, "decimalLat": -36.092276 }, "geometry": { "type": "Point", "coordinates": [ 149.294, -36.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599338, "decimalLat": -34.41672 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514386, "decimalLat": -34.447269 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894741, "decimalLat": -30.874477 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -30.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613971, "decimalLat": -34.433144 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331243, "decimalLat": -28.821749 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516384, "decimalLat": -34.449987 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517336, "decimalLat": -34.452035 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61533, "decimalLat": -34.436605 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283976, "decimalLat": -28.66656 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522433, "decimalLat": -34.465887 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522932, "decimalLat": -34.45232 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93665, "decimalLat": -31.475011 }, "geometry": { "type": "Point", "coordinates": [ 152.937, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.986212, "decimalLat": -29.036861 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -29.037 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521577, "decimalLat": -34.465752 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342777, "decimalLat": -28.860113 }, "geometry": { "type": "Point", "coordinates": [ 153.343, -28.86 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515598, "decimalLat": -34.439415 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.605778, "decimalLat": -28.659613 }, "geometry": { "type": "Point", "coordinates": [ 153.606, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.839981, "decimalLat": -34.060713 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927276, "decimalLat": -31.457984 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642551, "decimalLat": -34.394517 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.93134, "decimalLat": -32.586078 }, "geometry": { "type": "Point", "coordinates": [ 151.931, -32.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.187264, "decimalLat": -35.954515 }, "geometry": { "type": "Point", "coordinates": [ 149.187, -35.955 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604143, "decimalLat": -34.422169 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107722, "decimalLat": -29.496754 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.497 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108243, "decimalLat": -29.490478 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.232474, "decimalLat": -33.16171 }, "geometry": { "type": "Point", "coordinates": [ 151.232, -33.162 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.490133 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.341595, "decimalLat": -28.821788 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614288, "decimalLat": -34.429625 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929157, "decimalLat": -31.459635 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.337832, "decimalLat": -32.302205 }, "geometry": { "type": "Point", "coordinates": [ 152.338, -32.302 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643222, "decimalLat": -34.395395 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522349, "decimalLat": -34.465786 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272094, "decimalLat": -29.009814 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -29.01 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.041056, "decimalLat": -32.737555 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603413, "decimalLat": -34.436291 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103849, "decimalLat": -29.484959 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92633, "decimalLat": -31.452736 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.866285, "decimalLat": -29.692025 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -29.692 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396648, "decimalLat": -29.047472 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -29.047 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928526, "decimalLat": -31.459599 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517237, "decimalLat": -34.45316 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.876398, "decimalLat": -31.492034 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639176, "decimalLat": -34.492829 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878677, "decimalLat": -29.662288 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51733, "decimalLat": -34.446346 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782955, "decimalLat": -33.719426 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65973, "decimalLat": -33.527099 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530926, "decimalLat": -34.472802 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517378, "decimalLat": -34.452063 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786196, "decimalLat": -33.705932 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.989087, "decimalLat": -36.562421 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.02018, "decimalLat": -32.739618 }, "geometry": { "type": "Point", "coordinates": [ 152.02, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065232, "decimalLat": -32.699661 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.7 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615642, "decimalLat": -34.435989 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.196837, "decimalLat": -28.752435 }, "geometry": { "type": "Point", "coordinates": [ 153.197, -28.752 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525589, "decimalLat": -34.447461 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644045, "decimalLat": -34.392824 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.982103, "decimalLat": -32.640912 }, "geometry": { "type": "Point", "coordinates": [ 151.982, -32.641 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916607, "decimalLat": -31.450595 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104294, "decimalLat": -29.480364 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.712468, "decimalLat": -32.630412 }, "geometry": { "type": "Point", "coordinates": [ 151.712, -32.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609433, "decimalLat": -34.419027 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518203, "decimalLat": -34.448843 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609278, "decimalLat": -34.420638 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784546, "decimalLat": -33.714173 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105345, "decimalLat": -32.736858 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642774, "decimalLat": -34.395089 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108038, "decimalLat": -29.490334 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311308, "decimalLat": -28.813376 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.813 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908683, "decimalLat": -31.48872 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808277, "decimalLat": -34.09809 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393393, "decimalLat": -28.269299 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.269 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109455, "decimalLat": -29.490483 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.725006, "decimalLat": -34.320115 }, "geometry": { "type": "Point", "coordinates": [ 150.725, -34.32 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639953, "decimalLat": -34.491951 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517624, "decimalLat": -34.437157 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.328329, "decimalLat": -28.814806 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.702147, "decimalLat": -33.503703 }, "geometry": { "type": "Point", "coordinates": [ 150.702, -33.504 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.721715, "decimalLat": -33.443406 }, "geometry": { "type": "Point", "coordinates": [ 150.722, -33.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.187922, "decimalLat": -31.31995 }, "geometry": { "type": "Point", "coordinates": [ 152.188, -31.32 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.57333, "decimalLat": -32.61446 }, "geometry": { "type": "Point", "coordinates": [ 149.573, -32.614 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108135, "decimalLat": -29.490553 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916202, "decimalLat": -31.485298 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786363, "decimalLat": -33.705897 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604314, "decimalLat": -34.437904 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79001, "decimalLat": -34.214698 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.215 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.573329, "decimalLat": -32.614457 }, "geometry": { "type": "Point", "coordinates": [ 149.573, -32.614 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064111, "decimalLat": -32.706973 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.99245, "decimalLat": -31.018692 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -31.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073009, "decimalLat": -32.725859 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637365, "decimalLat": -34.423853 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.697481, "decimalLat": -32.701926 }, "geometry": { "type": "Point", "coordinates": [ 151.697, -32.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104203, "decimalLat": -29.479276 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639592, "decimalLat": -34.399202 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514333, "decimalLat": -34.446511 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.961976, "decimalLat": -31.210305 }, "geometry": { "type": "Point", "coordinates": [ 152.962, -31.21 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.554367, "decimalLat": -33.584157 }, "geometry": { "type": "Point", "coordinates": [ 149.554, -33.584 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103736, "decimalLat": -29.485758 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.940588, "decimalLat": -29.774361 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -29.774 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394474, "decimalLat": -28.288414 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637356, "decimalLat": -34.488674 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522174, "decimalLat": -34.4658 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.125832, "decimalLat": -35.065818 }, "geometry": { "type": "Point", "coordinates": [ 150.126, -35.066 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521496, "decimalLat": -34.465183 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293107, "decimalLat": -28.864597 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784228, "decimalLat": -33.717272 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532965, "decimalLat": -34.495994 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529371, "decimalLat": -34.471265 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52091, "decimalLat": -34.466595 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640577, "decimalLat": -34.494127 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109495, "decimalLat": -29.490721 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.921108, "decimalLat": -33.96715 }, "geometry": { "type": "Point", "coordinates": [ 150.921, -33.967 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.309373, "decimalLat": -28.823163 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643291, "decimalLat": -34.393323 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064609, "decimalLat": -32.699291 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.699 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521577, "decimalLat": -34.46577 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.630753, "decimalLat": -31.224917 }, "geometry": { "type": "Point", "coordinates": [ 152.631, -31.225 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.62858, "decimalLat": -32.641127 }, "geometry": { "type": "Point", "coordinates": [ 151.629, -32.641 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785482, "decimalLat": -33.709387 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.54359, "decimalLat": -34.373392 }, "geometry": { "type": "Point", "coordinates": [ 150.544, -34.373 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10998, "decimalLat": -29.490203 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51431, "decimalLat": -34.447259 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.430681, "decimalLat": -29.01629 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079065, "decimalLat": -28.78178 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -28.782 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917246, "decimalLat": -31.445453 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925776, "decimalLat": -31.447463 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624144, "decimalLat": -34.388923 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628846, "decimalLat": -34.389176 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51801, "decimalLat": -34.447631 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314144, "decimalLat": -28.816318 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643049, "decimalLat": -34.395392 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37674, "decimalLat": -28.304856 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.305 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616182, "decimalLat": -34.43572 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39411, "decimalLat": -28.959119 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.55755, "decimalLat": -33.685964 }, "geometry": { "type": "Point", "coordinates": [ 149.558, -33.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625243, "decimalLat": -34.385825 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.833242, "decimalLat": -29.643678 }, "geometry": { "type": "Point", "coordinates": [ 152.833, -29.644 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.184494, "decimalLat": -34.547284 }, "geometry": { "type": "Point", "coordinates": [ 150.184, -34.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633756, "decimalLat": -34.392463 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525408, "decimalLat": -34.45988 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629131, "decimalLat": -34.389083 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913985, "decimalLat": -31.485206 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518756, "decimalLat": -34.447421 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631092, "decimalLat": -34.420224 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518116, "decimalLat": -34.437446 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262056, "decimalLat": -28.925911 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -28.926 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92083, "decimalLat": -30.50456 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -30.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103945, "decimalLat": -29.484446 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522463, "decimalLat": -34.464887 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637454, "decimalLat": -34.42105 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637212, "decimalLat": -34.423859 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.124036, "decimalLat": -32.719642 }, "geometry": { "type": "Point", "coordinates": [ 152.124, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.977022, "decimalLat": -34.099086 }, "geometry": { "type": "Point", "coordinates": [ 150.977, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630987, "decimalLat": -34.38846 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.755027, "decimalLat": -31.633668 }, "geometry": { "type": "Point", "coordinates": [ 152.755, -31.634 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522618, "decimalLat": -34.465882 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299459, "decimalLat": -28.82149 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.360515, "decimalLat": -36.043897 }, "geometry": { "type": "Point", "coordinates": [ 149.361, -36.044 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919636, "decimalLat": -31.469132 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063375, "decimalLat": -32.706714 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824764, "decimalLat": -31.438954 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10939, "decimalLat": -29.490507 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615143, "decimalLat": -34.431328 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863624, "decimalLat": -31.29087 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.291 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922191, "decimalLat": -31.462006 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608585, "decimalLat": -34.456416 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515898, "decimalLat": -34.450987 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.775592, "decimalLat": -32.590109 }, "geometry": { "type": "Point", "coordinates": [ 151.776, -32.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614888, "decimalLat": -34.429592 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610215, "decimalLat": -34.419051 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909424, "decimalLat": -31.176289 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.176 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899054, "decimalLat": -31.473898 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526503, "decimalLat": -34.452275 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519061, "decimalLat": -34.447427 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39044, "decimalLat": -28.838189 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533281, "decimalLat": -34.475996 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523669, "decimalLat": -34.464217 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064351, "decimalLat": -32.709494 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.870381, "decimalLat": -29.441584 }, "geometry": { "type": "Point", "coordinates": [ 149.87, -29.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656179, "decimalLat": -33.58539 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -33.585 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07275, "decimalLat": -32.711481 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.973564, "decimalLat": -34.100438 }, "geometry": { "type": "Point", "coordinates": [ 150.974, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108038, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10976, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514577, "decimalLat": -34.443757 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.866667, "decimalLat": -32.534167 }, "geometry": { "type": "Point", "coordinates": [ 149.867, -32.534 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888094, "decimalLat": -31.44269 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.780333, "decimalLat": -32.714185 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881577, "decimalLat": -31.45629 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065267, "decimalLat": -32.71098 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.780333, "decimalLat": -32.714185 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559028, "decimalLat": -28.368921 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.369 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518021, "decimalLat": -34.447641 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79337, "decimalLat": -34.14318 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785215, "decimalLat": -33.714047 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879352, "decimalLat": -31.458976 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.929224, "decimalLat": -33.954203 }, "geometry": { "type": "Point", "coordinates": [ 150.929, -33.954 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.243859, "decimalLat": -32.272637 }, "geometry": { "type": "Point", "coordinates": [ 152.244, -32.273 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10814, "decimalLat": -29.490236 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604065, "decimalLat": -34.427189 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522337, "decimalLat": -34.465822 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.325379, "decimalLat": -29.033489 }, "geometry": { "type": "Point", "coordinates": [ 150.325, -29.033 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640441, "decimalLat": -34.494314 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51808, "decimalLat": -34.453718 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615787, "decimalLat": -34.430871 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276239, "decimalLat": -28.857815 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -28.858 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.694931, "decimalLat": -34.275951 }, "geometry": { "type": "Point", "coordinates": [ 150.695, -34.276 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.320726, "decimalLat": -36.298398 }, "geometry": { "type": "Point", "coordinates": [ 149.321, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521589, "decimalLat": -34.465716 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.059868, "decimalLat": -33.767296 }, "geometry": { "type": "Point", "coordinates": [ 150.06, -33.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103956, "decimalLat": -29.489559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604217, "decimalLat": -34.437866 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.537961, "decimalLat": -28.896153 }, "geometry": { "type": "Point", "coordinates": [ 152.538, -28.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868404, "decimalLat": -29.667098 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785281, "decimalLat": -33.714128 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.289698, "decimalLat": -28.867701 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.868 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601226, "decimalLat": -34.448094 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89731, "decimalLat": -31.475427 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.489942, "decimalLat": -28.631915 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637301, "decimalLat": -34.423806 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516918, "decimalLat": -34.453271 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923312, "decimalLat": -31.469731 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519486, "decimalLat": -34.456586 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522403, "decimalLat": -34.443234 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 146.562342, "decimalLat": -34.762424 }, "geometry": { "type": "Point", "coordinates": [ 146.562, -34.762 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531234, "decimalLat": -34.457906 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793177, "decimalLat": -31.641108 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.641 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795899, "decimalLat": -30.884771 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610302, "decimalLat": -34.419053 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555424, "decimalLat": -28.586714 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632604, "decimalLat": -34.418297 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640029, "decimalLat": -34.415375 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518153, "decimalLat": -34.437294 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616147, "decimalLat": -34.436197 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.998479, "decimalLat": -34.043038 }, "geometry": { "type": "Point", "coordinates": [ 150.998, -34.043 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.497818, "decimalLat": -28.706206 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519712, "decimalLat": -34.463298 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639177, "decimalLat": -34.392667 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516017, "decimalLat": -34.449151 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.340865, "decimalLat": -34.484944 }, "geometry": { "type": "Point", "coordinates": [ 150.341, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904744, "decimalLat": -31.465465 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103457, "decimalLat": -29.485674 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.905313, "decimalLat": -33.418413 }, "geometry": { "type": "Point", "coordinates": [ 150.905, -33.418 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.38461, "decimalLat": -31.91601 }, "geometry": { "type": "Point", "coordinates": [ 152.385, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517131, "decimalLat": -34.444242 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605663, "decimalLat": -34.437525 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659575, "decimalLat": -33.527164 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600797, "decimalLat": -34.428081 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635502, "decimalLat": -34.420463 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521894, "decimalLat": -34.459466 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.604159, "decimalLat": -28.661841 }, "geometry": { "type": "Point", "coordinates": [ 153.604, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520796, "decimalLat": -34.466782 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494377, "decimalLat": -28.242245 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.242 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906016, "decimalLat": -31.471952 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.17001, "decimalLat": -32.74494 }, "geometry": { "type": "Point", "coordinates": [ 152.17, -32.745 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616209, "decimalLat": -34.435946 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88165, "decimalLat": -30.911317 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -30.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922224, "decimalLat": -31.446776 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909125, "decimalLat": -31.440799 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103581, "decimalLat": -29.488508 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105628, "decimalLat": -32.727832 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790379, "decimalLat": -31.639046 }, "geometry": { "type": "Point", "coordinates": [ 152.79, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103682, "decimalLat": -29.485767 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640962, "decimalLat": -34.396506 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518539, "decimalLat": -34.448138 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596951, "decimalLat": -34.412697 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989472, "decimalLat": -34.027919 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.028 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521961, "decimalLat": -34.464561 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783692, "decimalLat": -33.719373 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.181044, "decimalLat": -31.941779 }, "geometry": { "type": "Point", "coordinates": [ 152.181, -31.942 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103661, "decimalLat": -29.485669 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638872, "decimalLat": -34.421727 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926041, "decimalLat": -31.452377 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603076, "decimalLat": -34.417631 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604176, "decimalLat": -34.422548 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531138, "decimalLat": -34.457841 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524947, "decimalLat": -34.458149 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.559732, "decimalLat": -34.535992 }, "geometry": { "type": "Point", "coordinates": [ 150.56, -34.536 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523301, "decimalLat": -34.450894 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514405, "decimalLat": -34.446648 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629048, "decimalLat": -34.395112 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60835, "decimalLat": -34.454346 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526486, "decimalLat": -34.457278 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10164, "decimalLat": -30.286806 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -30.287 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624265, "decimalLat": -34.386193 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.0003, "decimalLat": -34.0615 }, "geometry": { "type": "Point", "coordinates": [ 151.0, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.882544, "decimalLat": -29.848616 }, "geometry": { "type": "Point", "coordinates": [ 150.883, -29.849 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099788, "decimalLat": -29.491543 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606794, "decimalLat": -34.43871 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914058, "decimalLat": -31.460474 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608809, "decimalLat": -34.453508 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639125, "decimalLat": -34.493098 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904141, "decimalLat": -31.472325 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.221268, "decimalLat": -28.826448 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8978, "decimalLat": -31.4354 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521267, "decimalLat": -34.447517 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.035846, "decimalLat": -32.764338 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616298, "decimalLat": -34.440843 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514187, "decimalLat": -34.445904 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279592, "decimalLat": -28.831104 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314609, "decimalLat": -28.846843 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789513, "decimalLat": -34.198962 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.199 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796374, "decimalLat": -34.139484 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.139 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402257, "decimalLat": -28.960528 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615447, "decimalLat": -34.432875 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.093659, "decimalLat": -32.740062 }, "geometry": { "type": "Point", "coordinates": [ 152.094, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516294, "decimalLat": -34.448985 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.487783, "decimalLat": -30.634036 }, "geometry": { "type": "Point", "coordinates": [ 151.488, -30.634 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784218, "decimalLat": -33.717325 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513751, "decimalLat": -34.446319 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.975975, "decimalLat": -34.087943 }, "geometry": { "type": "Point", "coordinates": [ 150.976, -34.088 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.772842, "decimalLat": -30.190688 }, "geometry": { "type": "Point", "coordinates": [ 152.773, -30.191 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063591, "decimalLat": -32.705663 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640443, "decimalLat": -34.398308 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625035, "decimalLat": -34.388174 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521566, "decimalLat": -34.465752 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.084889, "decimalLat": -29.729156 }, "geometry": { "type": "Point", "coordinates": [ 151.085, -29.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531841, "decimalLat": -34.474642 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5213, "decimalLat": -34.435356 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495634, "decimalLat": -28.693276 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298638, "decimalLat": -28.818456 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905709, "decimalLat": -31.447595 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.102475, "decimalLat": -32.7347 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796982, "decimalLat": -33.473775 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -33.474 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.001052, "decimalLat": -36.513032 }, "geometry": { "type": "Point", "coordinates": [ 150.001, -36.513 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517241, "decimalLat": -34.451564 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109787, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.058209, "decimalLat": -33.769726 }, "geometry": { "type": "Point", "coordinates": [ 150.058, -33.77 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905405, "decimalLat": -31.436777 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877935, "decimalLat": -31.435353 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.097636, "decimalLat": -30.331099 }, "geometry": { "type": "Point", "coordinates": [ 153.098, -30.331 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513837, "decimalLat": -34.44633 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98111, "decimalLat": -30.437334 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -30.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9254, "decimalLat": -31.4587 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.981428, "decimalLat": -30.423644 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -30.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.140155, "decimalLat": -32.722972 }, "geometry": { "type": "Point", "coordinates": [ 152.14, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5199, "decimalLat": -34.452529 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.836937, "decimalLat": -34.06522 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.065 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642497, "decimalLat": -34.394128 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283377, "decimalLat": -28.830775 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.063356, "decimalLat": -33.775781 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515308, "decimalLat": -34.451038 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.507113, "decimalLat": -33.714893 }, "geometry": { "type": "Point", "coordinates": [ 150.507, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639385, "decimalLat": -34.399595 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597533, "decimalLat": -34.418208 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915729, "decimalLat": -31.468482 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523875, "decimalLat": -34.452456 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790392, "decimalLat": -34.199948 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.2 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609879, "decimalLat": -34.45187 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80038, "decimalLat": -34.20323 }, "geometry": { "type": "Point", "coordinates": [ 150.8, -34.203 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300206, "decimalLat": -28.886464 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071583, "decimalLat": -30.885675 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555196, "decimalLat": -28.370334 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.37 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104026, "decimalLat": -29.478599 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603286, "decimalLat": -34.436956 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608946, "decimalLat": -34.434975 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925098, "decimalLat": -31.459851 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985961, "decimalLat": -34.041246 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.041 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867932, "decimalLat": -29.667257 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.407575, "decimalLat": -28.994054 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.994 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516346, "decimalLat": -34.447985 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.81808, "decimalLat": -34.16363 }, "geometry": { "type": "Point", "coordinates": [ 150.818, -34.164 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.085007, "decimalLat": -30.921114 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -30.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519865, "decimalLat": -34.447831 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.382965, "decimalLat": -28.786726 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -28.787 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632678, "decimalLat": -34.392884 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002375, "decimalLat": -28.623888 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -28.624 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061869, "decimalLat": -32.709238 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785843, "decimalLat": -33.714865 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.209446, "decimalLat": -28.827015 }, "geometry": { "type": "Point", "coordinates": [ 153.209, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378654, "decimalLat": -28.255627 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597718, "decimalLat": -34.412901 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.961159, "decimalLat": -32.018393 }, "geometry": { "type": "Point", "coordinates": [ 151.961, -32.018 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628766, "decimalLat": -34.38931 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521579, "decimalLat": -34.465689 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609939, "decimalLat": -34.449013 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898357, "decimalLat": -31.443494 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51956, "decimalLat": -34.45666 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093209, "decimalLat": -28.521893 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -28.522 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103441, "decimalLat": -29.486323 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600987, "decimalLat": -34.533564 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.534 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514348, "decimalLat": -34.447449 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794198, "decimalLat": -34.142931 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600752, "decimalLat": -34.416333 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.416 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.218619, "decimalLat": -28.824508 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616301, "decimalLat": -34.435768 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.097197, "decimalLat": -29.775256 }, "geometry": { "type": "Point", "coordinates": [ 151.097, -29.775 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.3282, "decimalLat": -35.603929 }, "geometry": { "type": "Point", "coordinates": [ 149.328, -35.604 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517337, "decimalLat": -34.452008 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925875, "decimalLat": -31.452727 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.222243, "decimalLat": -33.100985 }, "geometry": { "type": "Point", "coordinates": [ 151.222, -33.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525264, "decimalLat": -34.458849 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.187121, "decimalLat": -31.953191 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -31.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.54612, "decimalLat": -34.748244 }, "geometry": { "type": "Point", "coordinates": [ 146.546, -34.748 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.681274, "decimalLat": -31.485275 }, "geometry": { "type": "Point", "coordinates": [ 151.681, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.816316, "decimalLat": -31.173335 }, "geometry": { "type": "Point", "coordinates": [ 152.816, -31.173 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.884006, "decimalLat": -32.738597 }, "geometry": { "type": "Point", "coordinates": [ 151.884, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601794, "decimalLat": -34.428623 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633821, "decimalLat": -34.392473 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.104342, "decimalLat": -32.724016 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090523, "decimalLat": -29.48714 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639144, "decimalLat": -34.491647 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534607, "decimalLat": -34.459435 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527074, "decimalLat": -34.469425 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868652, "decimalLat": -31.470543 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.061665, "decimalLat": -33.775037 }, "geometry": { "type": "Point", "coordinates": [ 150.062, -33.775 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.037483, "decimalLat": -32.7317 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.244754, "decimalLat": -30.051129 }, "geometry": { "type": "Point", "coordinates": [ 152.245, -30.051 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306745, "decimalLat": -28.993607 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.994 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659541, "decimalLat": -33.527165 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31725, "decimalLat": -28.82292 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623522, "decimalLat": -34.389379 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517421, "decimalLat": -34.445853 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394104, "decimalLat": -28.958945 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643283, "decimalLat": -34.395956 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603641, "decimalLat": -34.419175 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625014, "decimalLat": -34.385838 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.81368, "decimalLat": -34.10476 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603713, "decimalLat": -34.437613 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533174, "decimalLat": -34.475958 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.591467, "decimalLat": -30.182983 }, "geometry": { "type": "Point", "coordinates": [ 152.591, -30.183 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.11279, "decimalLat": -29.361515 }, "geometry": { "type": "Point", "coordinates": [ 150.113, -29.362 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.061196, "decimalLat": -29.74125 }, "geometry": { "type": "Point", "coordinates": [ 151.061, -29.741 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.485506 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51827, "decimalLat": -34.453569 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82369, "decimalLat": -34.141271 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39448, "decimalLat": -28.67703 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.677 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.78254, "decimalLat": -32.570557 }, "geometry": { "type": "Point", "coordinates": [ 151.783, -32.571 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.041112, "decimalLat": -28.459546 }, "geometry": { "type": "Point", "coordinates": [ 153.041, -28.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.727941, "decimalLat": -31.699914 }, "geometry": { "type": "Point", "coordinates": [ 152.728, -31.7 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608121, "decimalLat": -34.42268 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.450062, "decimalLat": -28.629026 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.629 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9298, "decimalLat": -31.4577 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793198, "decimalLat": -31.642098 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5218, "decimalLat": -28.68361 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795899, "decimalLat": -30.884771 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373764, "decimalLat": -31.9144 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281559, "decimalLat": -28.824938 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627408, "decimalLat": -34.386561 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319528, "decimalLat": -28.821248 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339956, "decimalLat": -28.837629 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630162, "decimalLat": -34.420404 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532489, "decimalLat": -34.477413 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.477 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103897, "decimalLat": -29.489601 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52124, "decimalLat": -34.466476 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901735, "decimalLat": -31.442402 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59019, "decimalLat": -28.65505 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523738, "decimalLat": -34.467419 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787056, "decimalLat": -33.7085 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06419, "decimalLat": -32.706541 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634368, "decimalLat": -34.420152 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.370974, "decimalLat": -31.922322 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614896, "decimalLat": -34.433874 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9023, "decimalLat": -30.462251 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -30.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527581, "decimalLat": -34.455 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393195, "decimalLat": -28.268766 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.269 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.38002, "decimalLat": -32.144524 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -32.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809738, "decimalLat": -34.099773 }, "geometry": { "type": "Point", "coordinates": [ 150.81, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785577, "decimalLat": -33.714683 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645422, "decimalLat": -34.55577 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.971776, "decimalLat": -36.447388 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40521, "decimalLat": -28.871112 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.871 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10572, "decimalLat": -31.842287 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -31.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636199, "decimalLat": -34.423127 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.70578, "decimalLat": -34.29327 }, "geometry": { "type": "Point", "coordinates": [ 150.706, -34.293 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039847, "decimalLat": -32.73081 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103834, "decimalLat": -29.485162 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59293, "decimalLat": -28.660596 }, "geometry": { "type": "Point", "coordinates": [ 153.593, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519877, "decimalLat": -34.452583 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51733, "decimalLat": -34.439369 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899098, "decimalLat": -31.473979 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644436, "decimalLat": -34.396347 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.940548, "decimalLat": -34.11434 }, "geometry": { "type": "Point", "coordinates": [ 150.941, -34.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610213, "decimalLat": -34.419124 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63851, "decimalLat": -34.422991 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522476, "decimalLat": -34.467024 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521611, "decimalLat": -34.465726 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812239, "decimalLat": -31.153342 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -31.153 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104096, "decimalLat": -29.479967 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404017, "decimalLat": -31.927499 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.927 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644918, "decimalLat": -34.391569 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.035213, "decimalLat": -35.07081 }, "geometry": { "type": "Point", "coordinates": [ 150.035, -35.071 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521227, "decimalLat": -34.4592 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523702, "decimalLat": -34.464218 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607571, "decimalLat": -34.450364 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091822, "decimalLat": -29.48791 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635259, "decimalLat": -34.488119 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320399, "decimalLat": -28.845128 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3033, "decimalLat": -28.821668 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521959, "decimalLat": -34.464606 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60458, "decimalLat": -34.438883 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603918, "decimalLat": -34.427015 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922343, "decimalLat": -30.504111 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -30.504 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110544, "decimalLat": -29.48983 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.01112, "decimalLat": -36.547428 }, "geometry": { "type": "Point", "coordinates": [ 150.011, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.14366, "decimalLat": -31.626872 }, "geometry": { "type": "Point", "coordinates": [ 151.144, -31.627 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6073, "decimalLat": -34.437747 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.957744, "decimalLat": -36.497148 }, "geometry": { "type": "Point", "coordinates": [ 149.958, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797476, "decimalLat": -31.125927 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523256, "decimalLat": -34.450929 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521502, "decimalLat": -34.459107 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915821, "decimalLat": -31.467856 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521358, "decimalLat": -34.459194 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10799, "decimalLat": -29.490409 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.185239, "decimalLat": -28.889949 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525601, "decimalLat": -34.465491 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904641, "decimalLat": -29.593951 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -29.594 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.085624, "decimalLat": -30.326976 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -30.327 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78524, "decimalLat": -33.716966 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395707, "decimalLat": -28.66387 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.664 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769597, "decimalLat": -31.632675 }, "geometry": { "type": "Point", "coordinates": [ 152.77, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522234, "decimalLat": -34.464531 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61638, "decimalLat": -34.43604 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494983, "decimalLat": -28.694361 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.352906, "decimalLat": -28.83385 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.502222, "decimalLat": -28.251271 }, "geometry": { "type": "Point", "coordinates": [ 153.502, -28.251 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599074, "decimalLat": -34.411873 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5341, "decimalLat": -34.47851 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527163, "decimalLat": -34.46939 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.287996, "decimalLat": -28.836062 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.836 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189573, "decimalLat": -32.226267 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095899, "decimalLat": -29.484628 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.226194, "decimalLat": -31.425739 }, "geometry": { "type": "Point", "coordinates": [ 152.226, -31.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.975174, "decimalLat": -36.531199 }, "geometry": { "type": "Point", "coordinates": [ 149.975, -36.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103747, "decimalLat": -29.485562 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.620042, "decimalLat": -34.400897 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342482, "decimalLat": -28.805797 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923643, "decimalLat": -36.618562 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.619 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064253, "decimalLat": -32.70562 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637301, "decimalLat": -34.423788 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364275, "decimalLat": -28.834226 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60155, "decimalLat": -28.68121 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904013, "decimalLat": -30.521733 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -30.522 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513949, "decimalLat": -34.446981 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39391, "decimalLat": -28.959171 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522724, "decimalLat": -34.46747 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534895, "decimalLat": -34.463344 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517406, "decimalLat": -34.439361 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786088, "decimalLat": -33.711497 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.325643, "decimalLat": -29.033804 }, "geometry": { "type": "Point", "coordinates": [ 150.326, -29.034 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516466, "decimalLat": -34.459716 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.15428, "decimalLat": -32.713792 }, "geometry": { "type": "Point", "coordinates": [ 152.154, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637454, "decimalLat": -34.423773 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787573, "decimalLat": -31.636396 }, "geometry": { "type": "Point", "coordinates": [ 152.788, -31.636 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609937, "decimalLat": -34.430369 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51298, "decimalLat": -34.447349 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911808, "decimalLat": -30.867598 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -30.868 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896282, "decimalLat": -31.43633 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.057026, "decimalLat": -30.361726 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -30.362 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616316, "decimalLat": -34.440979 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320914, "decimalLat": -28.840576 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519948, "decimalLat": -34.44649 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637269, "decimalLat": -34.423761 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.111973, "decimalLat": -32.738085 }, "geometry": { "type": "Point", "coordinates": [ 152.112, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616504, "decimalLat": -34.429371 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565628, "decimalLat": -28.386819 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919592, "decimalLat": -31.470841 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881873, "decimalLat": -31.424601 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.592409, "decimalLat": -28.635669 }, "geometry": { "type": "Point", "coordinates": [ 153.592, -28.636 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627655, "decimalLat": -34.386304 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103822, "decimalLat": -29.485566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617329, "decimalLat": -34.439791 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105243, "decimalLat": -29.489778 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603846, "decimalLat": -34.437526 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517608, "decimalLat": -34.446154 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.21098, "decimalLat": -33.72181 }, "geometry": { "type": "Point", "coordinates": [ 151.211, -33.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912536, "decimalLat": -31.447089 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.848395, "decimalLat": -31.454602 }, "geometry": { "type": "Point", "coordinates": [ 152.848, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103586, "decimalLat": -29.485478 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892379, "decimalLat": -31.437899 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.199852, "decimalLat": -31.867495 }, "geometry": { "type": "Point", "coordinates": [ 152.2, -31.867 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.973743, "decimalLat": -28.530684 }, "geometry": { "type": "Point", "coordinates": [ 152.974, -28.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100319, "decimalLat": -29.500844 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.250676, "decimalLat": -28.7646 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -28.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604154, "decimalLat": -34.42216 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638762, "decimalLat": -34.489395 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.074168, "decimalLat": -30.886663 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923338, "decimalLat": -31.447023 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.075746, "decimalLat": -28.555442 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -28.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602451, "decimalLat": -34.44673 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616598, "decimalLat": -34.435269 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514232, "decimalLat": -34.447347 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603, "decimalLat": -34.437049 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415784, "decimalLat": -31.937608 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.938 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.330186, "decimalLat": -28.7244 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.724 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.899712, "decimalLat": -31.10907 }, "geometry": { "type": "Point", "coordinates": [ 149.9, -31.109 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515086, "decimalLat": -34.447897 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.246273, "decimalLat": -29.543195 }, "geometry": { "type": "Point", "coordinates": [ 152.246, -29.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627294, "decimalLat": -34.398297 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096703, "decimalLat": -29.486029 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835357, "decimalLat": -34.07024 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.3513, "decimalLat": -36.16785 }, "geometry": { "type": "Point", "coordinates": [ 149.351, -36.168 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300297, "decimalLat": -28.825142 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.595473, "decimalLat": -34.773121 }, "geometry": { "type": "Point", "coordinates": [ 146.595, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929697, "decimalLat": -31.466264 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89174, "decimalLat": -30.46122 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -30.461 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.750721, "decimalLat": -31.643901 }, "geometry": { "type": "Point", "coordinates": [ 152.751, -31.644 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899572, "decimalLat": -29.630855 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644246, "decimalLat": -34.394189 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522507, "decimalLat": -34.451599 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.430461, "decimalLat": -29.019468 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -29.019 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.859648, "decimalLat": -34.073391 }, "geometry": { "type": "Point", "coordinates": [ 150.86, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603536, "decimalLat": -34.427422 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604672, "decimalLat": -34.438335 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896423, "decimalLat": -31.443524 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628069, "decimalLat": -34.389729 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52292, "decimalLat": -34.450895 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630963, "decimalLat": -34.390074 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623884, "decimalLat": -34.388909 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517049, "decimalLat": -34.448126 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609451, "decimalLat": -34.420317 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797565, "decimalLat": -30.915154 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -30.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.118296, "decimalLat": -32.766325 }, "geometry": { "type": "Point", "coordinates": [ 152.118, -32.766 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63564, "decimalLat": -34.418248 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103666, "decimalLat": -29.48552 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073059, "decimalLat": -32.724707 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.897764, "decimalLat": -32.465951 }, "geometry": { "type": "Point", "coordinates": [ 151.898, -32.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108113, "decimalLat": -29.490278 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06347, "decimalLat": -32.705503 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519497, "decimalLat": -34.456596 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.661866, "decimalLat": -34.458204 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109353, "decimalLat": -29.490497 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.523293, "decimalLat": -34.744263 }, "geometry": { "type": "Point", "coordinates": [ 146.523, -34.744 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.777302, "decimalLat": -30.885013 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.328401, "decimalLat": -28.814762 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628016, "decimalLat": -34.420886 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.180586, "decimalLat": -30.092113 }, "geometry": { "type": "Point", "coordinates": [ 153.181, -30.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616777, "decimalLat": -34.399436 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301335, "decimalLat": -28.821349 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865279, "decimalLat": -31.284056 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -31.284 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101864, "decimalLat": -29.488844 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990642, "decimalLat": -34.026903 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.027 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.180055, "decimalLat": -28.84707 }, "geometry": { "type": "Point", "coordinates": [ 153.18, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.244418, "decimalLat": -30.05116 }, "geometry": { "type": "Point", "coordinates": [ 152.244, -30.051 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318205, "decimalLat": -28.820654 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296795, "decimalLat": -28.889779 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513121, "decimalLat": -34.445891 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627384, "decimalLat": -34.390131 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.02234, "decimalLat": -28.5838 }, "geometry": { "type": "Point", "coordinates": [ 153.022, -28.584 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8256, "decimalLat": -30.286669 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -30.287 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657866, "decimalLat": -34.455684 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915305, "decimalLat": -31.433556 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603353, "decimalLat": -34.438778 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938213, "decimalLat": -36.559404 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658869, "decimalLat": -34.456371 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787234, "decimalLat": -33.703609 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.018941, "decimalLat": -30.364789 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -30.365 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.097414, "decimalLat": -29.491723 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49683, "decimalLat": -28.254577 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603044, "decimalLat": -34.427521 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925633, "decimalLat": -31.445399 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.072122, "decimalLat": -30.881193 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.881 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073059, "decimalLat": -32.724707 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01322, "decimalLat": -30.41382 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -30.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.551948, "decimalLat": -28.57084 }, "geometry": { "type": "Point", "coordinates": [ 153.552, -28.571 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.94175, "decimalLat": -30.494052 }, "geometry": { "type": "Point", "coordinates": [ 152.942, -30.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639111, "decimalLat": -34.491304 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627909, "decimalLat": -34.389221 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88542, "decimalLat": -30.51746 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -30.517 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644626, "decimalLat": -34.392276 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645998, "decimalLat": -34.391419 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293999, "decimalLat": -28.864004 }, "geometry": { "type": "Point", "coordinates": [ 153.294, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.563856, "decimalLat": -34.500349 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -34.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908357, "decimalLat": -31.442335 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.575024, "decimalLat": -30.391757 }, "geometry": { "type": "Point", "coordinates": [ 151.575, -30.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.036268, "decimalLat": -32.727617 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.609718, "decimalLat": -30.54727 }, "geometry": { "type": "Point", "coordinates": [ 151.61, -30.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103731, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.190148, "decimalLat": -31.595366 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -31.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039977, "decimalLat": -32.730537 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.755429, "decimalLat": -31.631952 }, "geometry": { "type": "Point", "coordinates": [ 152.755, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104235, "decimalLat": -29.489629 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519315, "decimalLat": -34.436984 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062129, "decimalLat": -32.70953 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824856, "decimalLat": -29.505641 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.485064, "decimalLat": -28.680814 }, "geometry": { "type": "Point", "coordinates": [ 153.485, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.084886, "decimalLat": -33.773407 }, "geometry": { "type": "Point", "coordinates": [ 150.085, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56029, "decimalLat": -28.28575 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.286 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9286, "decimalLat": -33.95807 }, "geometry": { "type": "Point", "coordinates": [ 150.929, -33.958 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602887, "decimalLat": -34.435289 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614977, "decimalLat": -34.432586 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608858, "decimalLat": -34.452571 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.817524, "decimalLat": -31.65301 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812605, "decimalLat": -31.576376 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -31.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632237, "decimalLat": -34.388467 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632696, "decimalLat": -34.418903 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612155, "decimalLat": -34.432324 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793681, "decimalLat": -31.139654 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.14 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896953, "decimalLat": -30.17771 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -30.178 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615796, "decimalLat": -34.440888 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606647, "decimalLat": -34.435074 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51723, "decimalLat": -34.451564 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.796061, "decimalLat": -31.466512 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.076524, "decimalLat": -33.749167 }, "geometry": { "type": "Point", "coordinates": [ 150.077, -33.749 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109589, "decimalLat": -29.490297 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.694304, "decimalLat": -30.752316 }, "geometry": { "type": "Point", "coordinates": [ 152.694, -30.752 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10253, "decimalLat": -32.734327 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.014471, "decimalLat": -34.047414 }, "geometry": { "type": "Point", "coordinates": [ 151.014, -34.047 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07189, "decimalLat": -30.88453 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.41282, "decimalLat": -31.932205 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516265, "decimalLat": -34.449246 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270156, "decimalLat": -28.862716 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87378, "decimalLat": -31.479713 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625119, "decimalLat": -34.386742 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616491, "decimalLat": -34.429461 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110506, "decimalLat": -29.490124 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809244, "decimalLat": -34.099271 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322765, "decimalLat": -28.828705 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.829 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603549, "decimalLat": -34.435365 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867911, "decimalLat": -29.667382 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104648, "decimalLat": -29.477039 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393892, "decimalLat": -28.958972 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523747, "decimalLat": -34.467464 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928972, "decimalLat": -31.459185 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.837921, "decimalLat": -34.093742 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881409, "decimalLat": -31.42923 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.762633, "decimalLat": -31.63418 }, "geometry": { "type": "Point", "coordinates": [ 152.763, -31.634 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52762, "decimalLat": -34.466443 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881209, "decimalLat": -31.427386 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520292, "decimalLat": -34.465762 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299588, "decimalLat": -28.904938 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.905 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.387929, "decimalLat": -28.651872 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -28.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323732, "decimalLat": -28.826043 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922761, "decimalLat": -31.450523 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.004941, "decimalLat": -29.185265 }, "geometry": { "type": "Point", "coordinates": [ 153.005, -29.185 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.104854, "decimalLat": -33.773481 }, "geometry": { "type": "Point", "coordinates": [ 150.105, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092672, "decimalLat": -29.49445 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786397, "decimalLat": -31.629606 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907216, "decimalLat": -31.454326 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625163, "decimalLat": -34.386752 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78519, "decimalLat": -31.631277 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27253, "decimalLat": -28.931499 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.931 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520054, "decimalLat": -34.453605 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519232, "decimalLat": -34.4652 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785086, "decimalLat": -33.713869 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627046, "decimalLat": -34.420957 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.244711, "decimalLat": -28.878209 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -28.878 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631197, "decimalLat": -34.387554 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532725, "decimalLat": -34.458667 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.707442, "decimalLat": -31.422255 }, "geometry": { "type": "Point", "coordinates": [ 152.707, -31.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877735, "decimalLat": -31.423355 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809615, "decimalLat": -28.471333 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -28.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518199, "decimalLat": -34.451908 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405625, "decimalLat": -31.930397 }, "geometry": { "type": "Point", "coordinates": [ 152.406, -31.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092347, "decimalLat": -29.488331 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.287996, "decimalLat": -28.836062 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.836 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604281, "decimalLat": -34.437931 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.515677, "decimalLat": -28.688354 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.24197, "decimalLat": -32.22562 }, "geometry": { "type": "Point", "coordinates": [ 152.242, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517475, "decimalLat": -34.448423 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109401, "decimalLat": -29.490446 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517958, "decimalLat": -34.447567 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623577, "decimalLat": -34.38938 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.7935, "decimalLat": -31.6386 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299519, "decimalLat": -28.821485 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924975, "decimalLat": -31.4458 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.53859, "decimalLat": -28.51027 }, "geometry": { "type": "Point", "coordinates": [ 153.539, -28.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62447, "decimalLat": -34.388154 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616423, "decimalLat": -34.43531 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.950438, "decimalLat": -30.417019 }, "geometry": { "type": "Point", "coordinates": [ 152.95, -30.417 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095325, "decimalLat": -29.483983 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104165, "decimalLat": -29.478809 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072182, "decimalLat": -32.747836 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.748 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.799788, "decimalLat": -31.123738 }, "geometry": { "type": "Point", "coordinates": [ 152.8, -31.124 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.96868, "decimalLat": -34.121103 }, "geometry": { "type": "Point", "coordinates": [ 150.969, -34.121 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335481, "decimalLat": -28.869015 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.737543, "decimalLat": -30.125115 }, "geometry": { "type": "Point", "coordinates": [ 152.738, -30.125 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103961, "decimalLat": -29.484791 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811316, "decimalLat": -29.514635 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -29.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108113, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.370716, "decimalLat": -29.088043 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -29.088 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103092, "decimalLat": -29.489358 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.88535, "decimalLat": -34.033901 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.034 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.789011, "decimalLat": -30.173984 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.174 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10115, "decimalLat": -29.489839 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.978594, "decimalLat": -31.187417 }, "geometry": { "type": "Point", "coordinates": [ 152.979, -31.187 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636409, "decimalLat": -34.485563 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.923948, "decimalLat": -31.97337 }, "geometry": { "type": "Point", "coordinates": [ 151.924, -31.973 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.432247, "decimalLat": -31.791377 }, "geometry": { "type": "Point", "coordinates": [ 152.432, -31.791 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79471, "decimalLat": -33.50547 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -33.505 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906923, "decimalLat": -31.44689 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926445, "decimalLat": -31.466745 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639094, "decimalLat": -34.491493 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.627167, "decimalLat": -30.492588 }, "geometry": { "type": "Point", "coordinates": [ 151.627, -30.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519053, "decimalLat": -34.459823 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918144, "decimalLat": -31.485161 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524155, "decimalLat": -34.462866 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103961, "decimalLat": -29.489526 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638687, "decimalLat": -34.490872 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616239, "decimalLat": -34.440626 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89266, "decimalLat": -33.991958 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.992 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.337149, "decimalLat": -28.815997 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642979, "decimalLat": -34.39476 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635905, "decimalLat": -34.394154 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626643, "decimalLat": -34.389025 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622973, "decimalLat": -34.397266 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518431, "decimalLat": -34.447018 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524934, "decimalLat": -34.453442 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603912, "decimalLat": -34.427204 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922473, "decimalLat": -31.473405 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323145, "decimalLat": -28.835219 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.835 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.266981, "decimalLat": -28.920453 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -28.92 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302315, "decimalLat": -28.846528 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364275, "decimalLat": -28.834226 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37932, "decimalLat": -31.919786 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897871, "decimalLat": -31.466808 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364275, "decimalLat": -28.834226 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604649, "decimalLat": -34.438362 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51607, "decimalLat": -34.447385 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29874, "decimalLat": -28.818698 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.991888, "decimalLat": -34.088098 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -34.088 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626997, "decimalLat": -34.420767 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062936, "decimalLat": -32.707434 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896128, "decimalLat": -31.433236 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607179, "decimalLat": -34.437798 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926375, "decimalLat": -31.454442 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522261, "decimalLat": -34.46582 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604614, "decimalLat": -34.438848 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914995, "decimalLat": -31.467438 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.932322, "decimalLat": -29.679519 }, "geometry": { "type": "Point", "coordinates": [ 150.932, -29.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606891, "decimalLat": -34.454363 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.319131, "decimalLat": -36.299131 }, "geometry": { "type": "Point", "coordinates": [ 149.319, -36.299 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.190379, "decimalLat": -31.594321 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -31.594 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096044, "decimalLat": -29.484838 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.540173, "decimalLat": -28.620621 }, "geometry": { "type": "Point", "coordinates": [ 153.54, -28.621 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103645, "decimalLat": -29.485861 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912654, "decimalLat": -31.475782 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598819, "decimalLat": -34.428763 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528472, "decimalLat": -34.464837 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.826098, "decimalLat": -29.812123 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -29.812 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.184589, "decimalLat": -28.888911 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597843, "decimalLat": -34.427897 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27934, "decimalLat": -28.43501 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520621, "decimalLat": -34.539831 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.54 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293115, "decimalLat": -28.864682 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515364, "decimalLat": -34.450994 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.0728, "decimalLat": -32.710594 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518785, "decimalLat": -34.444988 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273234, "decimalLat": -28.454834 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794827, "decimalLat": -34.139925 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.513619, "decimalLat": -28.688896 }, "geometry": { "type": "Point", "coordinates": [ 153.514, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10409, "decimalLat": -29.477931 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415641, "decimalLat": -31.93348 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49698, "decimalLat": -28.54694 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92532, "decimalLat": -31.478614 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604584, "decimalLat": -34.45283 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517345, "decimalLat": -34.45208 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535411, "decimalLat": -34.497603 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.498 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.565443, "decimalLat": -34.757484 }, "geometry": { "type": "Point", "coordinates": [ 146.565, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519543, "decimalLat": -34.468659 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51955, "decimalLat": -34.468785 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917884, "decimalLat": -31.460468 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626189, "decimalLat": -34.39008 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902544, "decimalLat": -31.441789 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616529, "decimalLat": -34.438089 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.417286, "decimalLat": -28.872591 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.873 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104187, "decimalLat": -29.483185 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797565, "decimalLat": -30.915154 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -30.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825072, "decimalLat": -31.175471 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.175 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922566, "decimalLat": -31.442336 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922735, "decimalLat": -31.459431 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.2237, "decimalLat": -34.36645 }, "geometry": { "type": "Point", "coordinates": [ 150.224, -34.366 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627884, "decimalLat": -34.420919 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609225, "decimalLat": -34.420592 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520955, "decimalLat": -34.45402 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.610517, "decimalLat": -28.641912 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517061, "decimalLat": -34.436334 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.067923, "decimalLat": -28.58182 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -28.582 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517608, "decimalLat": -34.446154 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301618, "decimalLat": -28.81838 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641544, "decimalLat": -34.395534 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527441, "decimalLat": -34.469558 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519181, "decimalLat": -34.459907 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.859776, "decimalLat": -34.03093 }, "geometry": { "type": "Point", "coordinates": [ 150.86, -34.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630279, "decimalLat": -34.420866 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401769, "decimalLat": -28.259955 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273941, "decimalLat": -28.820088 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.897398, "decimalLat": -33.993665 }, "geometry": { "type": "Point", "coordinates": [ 150.897, -33.994 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.328328, "decimalLat": -28.941153 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63145, "decimalLat": -34.387847 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.62828, "decimalLat": -28.63718 }, "geometry": { "type": "Point", "coordinates": [ 153.628, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913733, "decimalLat": -31.428725 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522191, "decimalLat": -34.464142 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103637, "decimalLat": -29.485488 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91347, "decimalLat": -31.476855 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638353, "decimalLat": -34.485745 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519119, "decimalLat": -34.436619 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955109, "decimalLat": -36.55432 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.554 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.913679, "decimalLat": -31.974702 }, "geometry": { "type": "Point", "coordinates": [ 151.914, -31.975 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454494, "decimalLat": -28.664505 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.665 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279661, "decimalLat": -28.831073 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627995, "decimalLat": -34.420489 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627458, "decimalLat": -34.386318 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.139868, "decimalLat": -32.040001 }, "geometry": { "type": "Point", "coordinates": [ 152.14, -32.04 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103983, "decimalLat": -29.484492 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63741, "decimalLat": -34.42379 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104101, "decimalLat": -29.485263 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.549861, "decimalLat": -33.563257 }, "geometry": { "type": "Point", "coordinates": [ 149.55, -33.563 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.552253, "decimalLat": -28.586547 }, "geometry": { "type": "Point", "coordinates": [ 153.552, -28.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53461, "decimalLat": -34.462293 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5975, "decimalLat": -34.450527 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.738271, "decimalLat": -34.306245 }, "geometry": { "type": "Point", "coordinates": [ 150.738, -34.306 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633252, "decimalLat": -34.417679 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.042529, "decimalLat": -28.469144 }, "geometry": { "type": "Point", "coordinates": [ 153.043, -28.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615849, "decimalLat": -34.432901 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.045481, "decimalLat": -32.766559 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -32.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608975, "decimalLat": -34.434344 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624172, "decimalLat": -34.388698 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604833, "decimalLat": -34.426582 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.901331, "decimalLat": -32.194045 }, "geometry": { "type": "Point", "coordinates": [ 151.901, -32.194 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916615, "decimalLat": -31.474294 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522434, "decimalLat": -34.465851 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81706, "decimalLat": -31.261588 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -31.262 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880425, "decimalLat": -31.427597 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.815374, "decimalLat": -31.150922 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.151 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59019, "decimalLat": -28.65505 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513032, "decimalLat": -34.44781 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632509, "decimalLat": -34.418178 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899236, "decimalLat": -29.631379 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782857, "decimalLat": -33.719494 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607152, "decimalLat": -34.435697 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603559, "decimalLat": -34.426629 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630574, "decimalLat": -34.386911 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604825, "decimalLat": -34.427231 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.957744, "decimalLat": -36.497148 }, "geometry": { "type": "Point", "coordinates": [ 149.958, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637894, "decimalLat": -34.422835 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521561, "decimalLat": -34.45524 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06373, "decimalLat": -32.70658 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630894, "decimalLat": -34.420671 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608327, "decimalLat": -28.689888 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603773, "decimalLat": -34.426733 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64002, "decimalLat": -34.41533 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516668, "decimalLat": -34.447018 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610263, "decimalLat": -34.418908 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642544, "decimalLat": -34.395527 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518437, "decimalLat": -34.442042 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623366, "decimalLat": -34.383381 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6273, "decimalLat": -34.421214 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534666, "decimalLat": -34.462231 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320914, "decimalLat": -28.840576 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88655, "decimalLat": -31.169705 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.17 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632751, "decimalLat": -34.418877 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.398424, "decimalLat": -28.957721 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.958 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.411416, "decimalLat": -31.20955 }, "geometry": { "type": "Point", "coordinates": [ 152.411, -31.21 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78488, "decimalLat": -33.715847 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.159345, "decimalLat": -28.924729 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92085, "decimalLat": -31.464543 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616894, "decimalLat": -34.434788 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40048, "decimalLat": -28.256235 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300295, "decimalLat": -28.825033 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925607, "decimalLat": -31.452436 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.253226, "decimalLat": -33.162369 }, "geometry": { "type": "Point", "coordinates": [ 151.253, -33.162 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.116109, "decimalLat": -28.561962 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -28.562 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899582, "decimalLat": -31.473907 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52301, "decimalLat": -34.466268 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518252, "decimalLat": -34.453442 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622411, "decimalLat": -34.384084 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.410246, "decimalLat": -31.93345 }, "geometry": { "type": "Point", "coordinates": [ 152.41, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60567, "decimalLat": -34.437282 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524122, "decimalLat": -34.452182 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898251, "decimalLat": -31.44356 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92979, "decimalLat": -29.732341 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.732 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894534, "decimalLat": -31.415053 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640151, "decimalLat": -34.398645 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.01567, "decimalLat": -32.72457 }, "geometry": { "type": "Point", "coordinates": [ 152.016, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53471, "decimalLat": -34.459266 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.485548 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.453433, "decimalLat": -28.651578 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.652 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066519, "decimalLat": -32.70769 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.94256, "decimalLat": -30.493529 }, "geometry": { "type": "Point", "coordinates": [ 152.943, -30.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.027589, "decimalLat": -28.678126 }, "geometry": { "type": "Point", "coordinates": [ 153.028, -28.678 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872548, "decimalLat": -31.462891 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867846, "decimalLat": -29.667546 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.668 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629, "decimalLat": -34.389513 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796366, "decimalLat": -34.14064 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.475131, "decimalLat": -28.3123 }, "geometry": { "type": "Point", "coordinates": [ 153.475, -28.312 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.47221, "decimalLat": -34.49196 }, "geometry": { "type": "Point", "coordinates": [ 150.472, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52042, "decimalLat": -34.465855 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039334, "decimalLat": -32.729661 }, "geometry": { "type": "Point", "coordinates": [ 152.039, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304528, "decimalLat": -28.822093 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606732, "decimalLat": -34.437817 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63156, "decimalLat": -34.387813 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786714, "decimalLat": -33.711199 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402083, "decimalLat": -28.259763 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513123, "decimalLat": -34.447298 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519406, "decimalLat": -34.451212 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.592682, "decimalLat": -31.795077 }, "geometry": { "type": "Point", "coordinates": [ 152.593, -31.795 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601975, "decimalLat": -34.424939 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556057, "decimalLat": -28.398547 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605456, "decimalLat": -34.423818 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49024, "decimalLat": -28.679852 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60709, "decimalLat": -34.429836 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795899, "decimalLat": -30.884771 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518659, "decimalLat": -34.44741 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621384, "decimalLat": -34.398065 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.422603, "decimalLat": -31.904256 }, "geometry": { "type": "Point", "coordinates": [ 152.423, -31.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602925, "decimalLat": -34.45186 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39821, "decimalLat": -28.648599 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.649 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919227, "decimalLat": -31.474477 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101156, "decimalLat": -29.490063 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558467, "decimalLat": -28.673442 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.673 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108205, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10379, "decimalLat": -29.485571 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.820828, "decimalLat": -29.463426 }, "geometry": { "type": "Point", "coordinates": [ 149.821, -29.463 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077276, "decimalLat": -32.722423 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285105, "decimalLat": -29.000226 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -29.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605495, "decimalLat": -34.437333 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520432, "decimalLat": -34.454054 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316168, "decimalLat": -28.837019 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.371651, "decimalLat": -28.901369 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -28.901 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90963, "decimalLat": -31.428902 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094949, "decimalLat": -29.480983 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.340596, "decimalLat": -28.902241 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -28.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.161756, "decimalLat": -32.646741 }, "geometry": { "type": "Point", "coordinates": [ 152.162, -32.647 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428712, "decimalLat": -28.974463 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.974 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.325428, "decimalLat": -36.292153 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.292 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395236, "decimalLat": -28.95949 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920712, "decimalLat": -31.463244 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629742, "decimalLat": -34.42064 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867395, "decimalLat": -31.306784 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -31.307 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64142, "decimalLat": -34.395667 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.266987, "decimalLat": -36.188613 }, "geometry": { "type": "Point", "coordinates": [ 149.267, -36.189 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6032, "decimalLat": -34.427749 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632753, "decimalLat": -34.418029 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.545166, "decimalLat": -28.733376 }, "geometry": { "type": "Point", "coordinates": [ 153.545, -28.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522853, "decimalLat": -34.450957 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64857, "decimalLat": -34.402134 }, "geometry": { "type": "Point", "coordinates": [ 150.649, -34.402 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03904, "decimalLat": -32.73749 }, "geometry": { "type": "Point", "coordinates": [ 152.039, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40217, "decimalLat": -28.259712 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.462945, "decimalLat": -32.40625 }, "geometry": { "type": "Point", "coordinates": [ 152.463, -32.406 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611467, "decimalLat": -34.430895 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630742, "decimalLat": -34.420677 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521832, "decimalLat": -34.466343 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604326, "decimalLat": -34.427582 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065691, "decimalLat": -32.743065 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.743 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659476, "decimalLat": -33.52695 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521422, "decimalLat": -34.46657 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513826, "decimalLat": -34.446338 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.808919, "decimalLat": -31.136321 }, "geometry": { "type": "Point", "coordinates": [ 152.809, -31.136 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.682001, "decimalLat": -33.54208 }, "geometry": { "type": "Point", "coordinates": [ 149.682, -33.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.660173, "decimalLat": -34.455665 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.204194, "decimalLat": -28.882861 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -28.883 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609402, "decimalLat": -34.418972 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103505, "decimalLat": -29.48545 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623107, "decimalLat": -34.383692 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913498, "decimalLat": -31.48567 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394746, "decimalLat": -28.275477 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.275 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.97432, "decimalLat": -34.101945 }, "geometry": { "type": "Point", "coordinates": [ 150.974, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558179, "decimalLat": -28.393781 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.23033, "decimalLat": -28.889525 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65964, "decimalLat": -34.455276 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522523, "decimalLat": -34.451789 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630022, "decimalLat": -34.420717 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51605, "decimalLat": -34.449503 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56178, "decimalLat": -28.642771 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.643 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.449713, "decimalLat": -28.711485 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811588, "decimalLat": -31.156506 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -31.157 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521928, "decimalLat": -34.46456 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077233, "decimalLat": -32.722432 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864466, "decimalLat": -31.466953 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.645868, "decimalLat": -31.134489 }, "geometry": { "type": "Point", "coordinates": [ 152.646, -31.134 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37723, "decimalLat": -28.253671 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602031, "decimalLat": -34.425662 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104374, "decimalLat": -29.477072 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626783, "decimalLat": -34.385972 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609511, "decimalLat": -34.418948 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63323, "decimalLat": -34.418471 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103977, "decimalLat": -29.485305 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.32559, "decimalLat": -29.914054 }, "geometry": { "type": "Point", "coordinates": [ 152.326, -29.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315853, "decimalLat": -28.849918 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297906, "decimalLat": -28.900041 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.9 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.477854, "decimalLat": -28.415444 }, "geometry": { "type": "Point", "coordinates": [ 153.478, -28.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625991, "decimalLat": -34.39014 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516056, "decimalLat": -34.443805 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378654, "decimalLat": -28.255627 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.15582, "decimalLat": -28.580872 }, "geometry": { "type": "Point", "coordinates": [ 153.156, -28.581 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615627, "decimalLat": -34.440704 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605877, "decimalLat": -34.454451 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.100633, "decimalLat": -33.77797 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -33.778 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523146, "decimalLat": -34.45246 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.481476, "decimalLat": -28.24765 }, "geometry": { "type": "Point", "coordinates": [ 153.481, -28.248 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62781, "decimalLat": -34.397378 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108221, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516451, "decimalLat": -34.440379 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645177, "decimalLat": -34.3994 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.549897, "decimalLat": -34.462307 }, "geometry": { "type": "Point", "coordinates": [ 150.55, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.49613, "decimalLat": -34.52395 }, "geometry": { "type": "Point", "coordinates": [ 150.496, -34.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065493, "decimalLat": -32.710418 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.294297, "decimalLat": -28.863788 }, "geometry": { "type": "Point", "coordinates": [ 153.294, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.421401, "decimalLat": -31.946553 }, "geometry": { "type": "Point", "coordinates": [ 152.421, -31.947 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.759453, "decimalLat": -32.525553 }, "geometry": { "type": "Point", "coordinates": [ 151.759, -32.526 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063551, "decimalLat": -32.706396 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516094, "decimalLat": -34.449495 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.35706, "decimalLat": -28.66967 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.67 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.067992, "decimalLat": -34.039417 }, "geometry": { "type": "Point", "coordinates": [ 151.068, -34.039 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616597, "decimalLat": -34.435683 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516953, "decimalLat": -34.446204 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317176, "decimalLat": -28.826895 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9721, "decimalLat": -34.100033 }, "geometry": { "type": "Point", "coordinates": [ 150.972, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797643, "decimalLat": -31.125972 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606599, "decimalLat": -34.444404 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9721, "decimalLat": -34.100033 }, "geometry": { "type": "Point", "coordinates": [ 150.972, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824652, "decimalLat": -31.256609 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.257 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.430075, "decimalLat": -28.951623 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.952 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060186, "decimalLat": -32.710565 }, "geometry": { "type": "Point", "coordinates": [ 152.06, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904325, "decimalLat": -31.444798 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.05334, "decimalLat": -34.90719 }, "geometry": { "type": "Point", "coordinates": [ 150.053, -34.907 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.961398, "decimalLat": -31.252531 }, "geometry": { "type": "Point", "coordinates": [ 152.961, -31.253 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.103174, "decimalLat": -33.776569 }, "geometry": { "type": "Point", "coordinates": [ 150.103, -33.777 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629759, "decimalLat": -34.420802 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631236, "decimalLat": -34.388114 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630283, "decimalLat": -34.395281 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517154, "decimalLat": -34.453762 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643766, "decimalLat": -34.393449 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104168, "decimalLat": -29.485067 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865711, "decimalLat": -29.687054 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -29.687 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851464, "decimalLat": -29.692524 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065095, "decimalLat": -32.706601 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930439, "decimalLat": -30.224291 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -30.224 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.219332, "decimalLat": -33.272422 }, "geometry": { "type": "Point", "coordinates": [ 150.219, -33.272 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.607777, "decimalLat": -30.341478 }, "geometry": { "type": "Point", "coordinates": [ 152.608, -30.341 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373765, "decimalLat": -31.91533 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784299, "decimalLat": -30.842983 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -30.843 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630764, "decimalLat": -34.42066 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607191, "decimalLat": -34.431253 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.975603, "decimalLat": -34.086966 }, "geometry": { "type": "Point", "coordinates": [ 150.976, -34.087 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279543, "decimalLat": -28.830881 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.422603, "decimalLat": -31.904256 }, "geometry": { "type": "Point", "coordinates": [ 152.423, -31.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606669, "decimalLat": -34.434678 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.137878, "decimalLat": -32.71888 }, "geometry": { "type": "Point", "coordinates": [ 152.138, -32.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103709, "decimalLat": -29.48569 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522262, "decimalLat": -34.464693 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894418, "decimalLat": -31.447732 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926281, "decimalLat": -31.455827 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.374998, "decimalLat": -36.155372 }, "geometry": { "type": "Point", "coordinates": [ 149.375, -36.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900722, "decimalLat": -31.409189 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.409 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.295193, "decimalLat": -28.821001 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.727939, "decimalLat": -34.237888 }, "geometry": { "type": "Point", "coordinates": [ 150.728, -34.238 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521467, "decimalLat": -34.465786 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630829, "decimalLat": -34.420679 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.108521, "decimalLat": -32.738669 }, "geometry": { "type": "Point", "coordinates": [ 152.109, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929924, "decimalLat": -31.461236 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615481, "decimalLat": -34.432849 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.364908, "decimalLat": -36.041221 }, "geometry": { "type": "Point", "coordinates": [ 149.365, -36.041 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.814717, "decimalLat": -31.394657 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101242, "decimalLat": -29.489974 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91099, "decimalLat": -31.478922 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644948, "decimalLat": -34.391254 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.337163, "decimalLat": -32.302588 }, "geometry": { "type": "Point", "coordinates": [ 152.337, -32.303 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521566, "decimalLat": -34.46687 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61624, "decimalLat": -34.437525 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602493, "decimalLat": -34.436516 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869727, "decimalLat": -31.470013 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00455, "decimalLat": -32.72723 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.597196, "decimalLat": -28.6767 }, "geometry": { "type": "Point", "coordinates": [ 153.597, -28.677 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10931, "decimalLat": -29.490703 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.413409, "decimalLat": -29.031382 }, "geometry": { "type": "Point", "coordinates": [ 153.413, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535565, "decimalLat": -34.462375 }, "geometry": { "type": "Point", "coordinates": [ 150.536, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.790872, "decimalLat": -32.382252 }, "geometry": { "type": "Point", "coordinates": [ 149.791, -32.382 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63091, "decimalLat": -34.388486 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11049, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374394, "decimalLat": -31.91144 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.911 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060844, "decimalLat": -32.710711 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.228485, "decimalLat": -28.890175 }, "geometry": { "type": "Point", "coordinates": [ 153.228, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605099, "decimalLat": -34.450415 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061622, "decimalLat": -32.71098 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928763, "decimalLat": -31.459574 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606624, "decimalLat": -34.422137 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434417, "decimalLat": -28.971371 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.971 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09062, "decimalLat": -30.34737 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -30.347 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297633, "decimalLat": -28.93905 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.939 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646441, "decimalLat": -33.553714 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -33.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522435, "decimalLat": -34.465824 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102797, "decimalLat": -29.497716 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.498 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.891921, "decimalLat": -34.018345 }, "geometry": { "type": "Point", "coordinates": [ 150.892, -34.018 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.876586, "decimalLat": -31.459273 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.793836, "decimalLat": -34.137544 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786179, "decimalLat": -33.709692 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615919, "decimalLat": -34.436184 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279103, "decimalLat": -28.874212 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100383, "decimalLat": -29.488639 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632952, "decimalLat": -34.392817 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.382794, "decimalLat": -31.92926 }, "geometry": { "type": "Point", "coordinates": [ 152.383, -31.929 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.075322, "decimalLat": -30.18664 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -30.187 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.698977, "decimalLat": -32.68724 }, "geometry": { "type": "Point", "coordinates": [ 151.699, -32.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110549, "decimalLat": -29.489848 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603791, "decimalLat": -34.439454 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639055, "decimalLat": -34.491339 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523973, "decimalLat": -34.452458 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43048, "decimalLat": -28.600266 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.6 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.464706, "decimalLat": -28.292708 }, "geometry": { "type": "Point", "coordinates": [ 152.465, -28.293 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.861647, "decimalLat": -29.609166 }, "geometry": { "type": "Point", "coordinates": [ 150.862, -29.609 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638504, "decimalLat": -34.491202 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82921, "decimalLat": -31.26336 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -31.263 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.41169, "decimalLat": -31.935763 }, "geometry": { "type": "Point", "coordinates": [ 152.412, -31.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.980864, "decimalLat": -34.128057 }, "geometry": { "type": "Point", "coordinates": [ 150.981, -34.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905505, "decimalLat": -31.437365 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.287996, "decimalLat": -28.836062 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.836 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897393, "decimalLat": -31.474725 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.759571, "decimalLat": -34.192686 }, "geometry": { "type": "Point", "coordinates": [ 150.76, -34.193 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78443, "decimalLat": -33.716325 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.359413, "decimalLat": -28.658223 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -28.658 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002438, "decimalLat": -30.410188 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -30.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517291, "decimalLat": -34.447662 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.879587, "decimalLat": -34.01438 }, "geometry": { "type": "Point", "coordinates": [ 150.88, -34.014 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515227, "decimalLat": -34.451587 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640122, "decimalLat": -34.396985 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.956732, "decimalLat": -32.649601 }, "geometry": { "type": "Point", "coordinates": [ 151.957, -32.65 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.209231, "decimalLat": -32.78742 }, "geometry": { "type": "Point", "coordinates": [ 151.209, -32.787 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607665, "decimalLat": -34.422283 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78996, "decimalLat": -34.207227 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.207 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.165315, "decimalLat": -31.701901 }, "geometry": { "type": "Point", "coordinates": [ 152.165, -31.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526518, "decimalLat": -34.46432 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10122, "decimalLat": -29.490072 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.421401, "decimalLat": -31.946553 }, "geometry": { "type": "Point", "coordinates": [ 152.421, -31.947 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104594, "decimalLat": -29.47724 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624455, "decimalLat": -34.38525 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.075946, "decimalLat": -32.723251 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313005, "decimalLat": -28.823549 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627268, "decimalLat": -34.420781 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.11874, "decimalLat": -31.09702 }, "geometry": { "type": "Point", "coordinates": [ 150.119, -31.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609264, "decimalLat": -34.420746 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316393, "decimalLat": -28.827525 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892687, "decimalLat": -31.437502 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622387, "decimalLat": -34.384534 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.921165, "decimalLat": -33.967052 }, "geometry": { "type": "Point", "coordinates": [ 150.921, -33.967 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617099, "decimalLat": -34.434097 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60155, "decimalLat": -28.68121 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605059, "decimalLat": -34.427055 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.476719, "decimalLat": -36.341347 }, "geometry": { "type": "Point", "coordinates": [ 149.477, -36.341 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631057, "decimalLat": -34.387118 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.68367, "decimalLat": -32.515411 }, "geometry": { "type": "Point", "coordinates": [ 151.684, -32.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104444, "decimalLat": -29.482699 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92612, "decimalLat": -31.471635 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065318, "decimalLat": -32.710989 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43063, "decimalLat": -28.6044 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -28.604 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523682, "decimalLat": -34.459358 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52588, "decimalLat": -34.460064 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655957, "decimalLat": -34.458551 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89723, "decimalLat": -31.475343 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923383, "decimalLat": -31.461041 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52142, "decimalLat": -34.435728 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630589, "decimalLat": -34.388687 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.80596, "decimalLat": -31.654337 }, "geometry": { "type": "Point", "coordinates": [ 152.806, -31.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635923, "decimalLat": -34.488132 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.444452, "decimalLat": -31.889461 }, "geometry": { "type": "Point", "coordinates": [ 152.444, -31.889 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.083636, "decimalLat": -32.729371 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323085, "decimalLat": -28.828438 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602764, "decimalLat": -34.435016 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784643, "decimalLat": -33.713316 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.398354, "decimalLat": -33.489106 }, "geometry": { "type": "Point", "coordinates": [ 149.398, -33.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.660968, "decimalLat": -28.610285 }, "geometry": { "type": "Point", "coordinates": [ 152.661, -28.61 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522778, "decimalLat": -34.45238 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.56265, "decimalLat": -34.760487 }, "geometry": { "type": "Point", "coordinates": [ 146.563, -34.76 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101692, "decimalLat": -29.489419 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522203, "decimalLat": -34.451593 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.398462, "decimalLat": -31.94177 }, "geometry": { "type": "Point", "coordinates": [ 152.398, -31.942 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635347, "decimalLat": -34.488094 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378229, "decimalLat": -31.92659 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.927 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102572, "decimalLat": -29.487985 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.274628, "decimalLat": -28.355583 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -28.356 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104573, "decimalLat": -29.489577 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403898, "decimalLat": -31.928298 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.032917, "decimalLat": -30.380306 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -30.38 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103688, "decimalLat": -29.485739 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562091, "decimalLat": -28.389325 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.210153, "decimalLat": -31.56082 }, "geometry": { "type": "Point", "coordinates": [ 152.21, -31.561 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.775913, "decimalLat": -31.633105 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791002, "decimalLat": -31.638653 }, "geometry": { "type": "Point", "coordinates": [ 152.791, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880613, "decimalLat": -29.606316 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -29.606 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51742, "decimalLat": -34.440353 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631025, "decimalLat": -34.389038 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525876, "decimalLat": -34.460059 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619784, "decimalLat": -34.43918 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610279, "decimalLat": -34.419107 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09092, "decimalLat": -29.487364 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.150223, "decimalLat": -33.104783 }, "geometry": { "type": "Point", "coordinates": [ 151.15, -33.105 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065318, "decimalLat": -32.711025 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640532, "decimalLat": -34.494189 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521022, "decimalLat": -34.453976 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602905, "decimalLat": -34.42741 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.322403, "decimalLat": -36.298192 }, "geometry": { "type": "Point", "coordinates": [ 149.322, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616643, "decimalLat": -34.435215 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608107, "decimalLat": -34.434616 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62921, "decimalLat": -34.395152 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.759299, "decimalLat": -30.84178 }, "geometry": { "type": "Point", "coordinates": [ 152.759, -30.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893317, "decimalLat": -31.429901 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514134, "decimalLat": -34.449906 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622676, "decimalLat": -34.383927 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65784, "decimalLat": -34.458145 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605605, "decimalLat": -34.43729 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630564, "decimalLat": -34.386856 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063631, "decimalLat": -32.705566 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913609, "decimalLat": -31.458959 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785931, "decimalLat": -33.706422 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518238, "decimalLat": -34.453523 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.39945, "decimalLat": -36.03167 }, "geometry": { "type": "Point", "coordinates": [ 149.399, -36.032 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.537335, "decimalLat": -34.380735 }, "geometry": { "type": "Point", "coordinates": [ 150.537, -34.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609753, "decimalLat": -34.419619 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923266, "decimalLat": -31.447221 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517308, "decimalLat": -34.447816 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.532814, "decimalLat": -32.22088 }, "geometry": { "type": "Point", "coordinates": [ 152.533, -32.221 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521504, "decimalLat": -34.465291 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.33378, "decimalLat": -28.815841 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909715, "decimalLat": -31.149088 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.149 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893756, "decimalLat": -31.445683 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063796, "decimalLat": -32.706755 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603535, "decimalLat": -34.427476 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785291, "decimalLat": -33.716972 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.307773, "decimalLat": -29.122144 }, "geometry": { "type": "Point", "coordinates": [ 150.308, -29.122 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.425502, "decimalLat": -28.625477 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.625 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.543918, "decimalLat": -34.519414 }, "geometry": { "type": "Point", "coordinates": [ 150.544, -34.519 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599033, "decimalLat": -34.412945 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.224759, "decimalLat": -28.945705 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -28.946 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.141529, "decimalLat": -34.922751 }, "geometry": { "type": "Point", "coordinates": [ 150.142, -34.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.309171, "decimalLat": -29.065427 }, "geometry": { "type": "Point", "coordinates": [ 150.309, -29.065 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.286906, "decimalLat": -28.868965 }, "geometry": { "type": "Point", "coordinates": [ 153.287, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513825, "decimalLat": -34.446374 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.353525, "decimalLat": -31.92625 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.743408, "decimalLat": -31.256856 }, "geometry": { "type": "Point", "coordinates": [ 152.743, -31.257 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06845, "decimalLat": -32.719735 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627578, "decimalLat": -34.420967 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104847, "decimalLat": -29.476895 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104128, "decimalLat": -29.483853 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.94513, "decimalLat": -29.823614 }, "geometry": { "type": "Point", "coordinates": [ 150.945, -29.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079053, "decimalLat": -32.737201 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518678, "decimalLat": -34.447852 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.948503, "decimalLat": -31.217582 }, "geometry": { "type": "Point", "coordinates": [ 152.949, -31.218 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.08389, "decimalLat": -29.728542 }, "geometry": { "type": "Point", "coordinates": [ 151.084, -29.729 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795237, "decimalLat": -31.636686 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627118, "decimalLat": -34.38953 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87646, "decimalLat": -29.67285 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -29.673 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656758, "decimalLat": -34.454816 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523806, "decimalLat": -34.463634 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.120699, "decimalLat": -31.413327 }, "geometry": { "type": "Point", "coordinates": [ 152.121, -31.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656063, "decimalLat": -34.458643 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795899, "decimalLat": -30.884771 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627336, "decimalLat": -34.420305 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061255, "decimalLat": -32.710891 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521375, "decimalLat": -34.435764 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636872, "decimalLat": -34.420886 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659942, "decimalLat": -34.456932 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.838356, "decimalLat": -31.595013 }, "geometry": { "type": "Point", "coordinates": [ 152.838, -31.595 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.474076, "decimalLat": -31.94068 }, "geometry": { "type": "Point", "coordinates": [ 152.474, -31.941 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.546503, "decimalLat": -28.734248 }, "geometry": { "type": "Point", "coordinates": [ 153.547, -28.734 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616516, "decimalLat": -34.440812 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.602102, "decimalLat": -30.492865 }, "geometry": { "type": "Point", "coordinates": [ 151.602, -30.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519451, "decimalLat": -34.456685 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.158075, "decimalLat": -28.927498 }, "geometry": { "type": "Point", "coordinates": [ 153.158, -28.927 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627186, "decimalLat": -34.420987 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639679, "decimalLat": -34.398041 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103902, "decimalLat": -29.489512 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885538, "decimalLat": -31.444253 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912867, "decimalLat": -31.452965 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607525, "decimalLat": -34.433288 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59917, "decimalLat": -34.411181 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.411 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273491, "decimalLat": -28.817225 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066164, "decimalLat": -32.711226 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104037, "decimalLat": -29.484352 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633242, "decimalLat": -34.418445 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.579366, "decimalLat": -28.686554 }, "geometry": { "type": "Point", "coordinates": [ 153.579, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108167, "decimalLat": -29.490665 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603193, "decimalLat": -34.427244 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01713, "decimalLat": -30.37491 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -30.375 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521336, "decimalLat": -34.466162 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393389, "decimalLat": -28.292207 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.292 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658939, "decimalLat": -34.458175 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.362519, "decimalLat": -36.041873 }, "geometry": { "type": "Point", "coordinates": [ 149.363, -36.042 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798904, "decimalLat": -31.140005 }, "geometry": { "type": "Point", "coordinates": [ 152.799, -31.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513094, "decimalLat": -34.447171 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.032917, "decimalLat": -30.380306 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -30.38 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658415, "decimalLat": -34.454315 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.577692, "decimalLat": -33.015404 }, "geometry": { "type": "Point", "coordinates": [ 151.578, -33.015 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.712346, "decimalLat": -30.45575 }, "geometry": { "type": "Point", "coordinates": [ 152.712, -30.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063642, "decimalLat": -32.706486 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322532, "decimalLat": -28.835663 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.836 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794721, "decimalLat": -34.216289 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.216 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.979109, "decimalLat": -28.64451 }, "geometry": { "type": "Point", "coordinates": [ 152.979, -28.645 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513928, "decimalLat": -34.447323 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.74767, "decimalLat": -30.901362 }, "geometry": { "type": "Point", "coordinates": [ 152.748, -30.901 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523923, "decimalLat": -34.463726 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.826092, "decimalLat": -34.102486 }, "geometry": { "type": "Point", "coordinates": [ 150.826, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655867, "decimalLat": -34.456313 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924872, "decimalLat": -31.443843 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.861473, "decimalLat": -31.281434 }, "geometry": { "type": "Point", "coordinates": [ 152.861, -31.281 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522138, "decimalLat": -34.465944 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627569, "decimalLat": -34.420931 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519536, "decimalLat": -34.447194 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.990128, "decimalLat": -36.434481 }, "geometry": { "type": "Point", "coordinates": [ 149.99, -36.434 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.820936, "decimalLat": -31.559002 }, "geometry": { "type": "Point", "coordinates": [ 152.821, -31.559 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342482, "decimalLat": -28.805797 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095683, "decimalLat": -30.325294 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -30.325 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46611, "decimalLat": -28.716302 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.826183, "decimalLat": -29.810552 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.990128, "decimalLat": -36.434481 }, "geometry": { "type": "Point", "coordinates": [ 149.99, -36.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91497, "decimalLat": -31.429737 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.025636, "decimalLat": -32.127955 }, "geometry": { "type": "Point", "coordinates": [ 152.026, -32.128 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3033, "decimalLat": -28.821668 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513672, "decimalLat": -34.446416 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903078, "decimalLat": -31.46727 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.412006, "decimalLat": -28.666558 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.283146, "decimalLat": -31.897596 }, "geometry": { "type": "Point", "coordinates": [ 152.283, -31.898 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281772, "decimalLat": -28.830931 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.217726, "decimalLat": -28.824238 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.317811, "decimalLat": -36.298311 }, "geometry": { "type": "Point", "coordinates": [ 149.318, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.996446, "decimalLat": -30.413154 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -30.413 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110152, "decimalLat": -29.490241 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.702237, "decimalLat": -32.693745 }, "geometry": { "type": "Point", "coordinates": [ 151.702, -32.694 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60983, "decimalLat": -34.454727 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314609, "decimalLat": -28.846843 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.385426, "decimalLat": -28.784731 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -28.785 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513928, "decimalLat": -34.447323 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809417, "decimalLat": -29.634282 }, "geometry": { "type": "Point", "coordinates": [ 152.809, -29.634 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314609, "decimalLat": -28.846843 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798012, "decimalLat": -31.645162 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.645 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900902, "decimalLat": -30.235823 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -30.236 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.287996, "decimalLat": -28.836062 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.836 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.158889, "decimalLat": -32.712816 }, "geometry": { "type": "Point", "coordinates": [ 152.159, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.816964, "decimalLat": -31.574053 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -31.574 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.332697, "decimalLat": -35.95118 }, "geometry": { "type": "Point", "coordinates": [ 149.333, -35.951 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532939, "decimalLat": -34.481696 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.482 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794178, "decimalLat": -34.14285 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910686, "decimalLat": -31.433967 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104273, "decimalLat": -29.477338 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639251, "decimalLat": -34.392749 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10975, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.348488, "decimalLat": -28.873812 }, "geometry": { "type": "Point", "coordinates": [ 153.348, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609943, "decimalLat": -34.429775 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.452259, "decimalLat": -28.319728 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.32 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525493, "decimalLat": -34.459936 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108205, "decimalLat": -29.490194 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.726309, "decimalLat": -32.226163 }, "geometry": { "type": "Point", "coordinates": [ 151.726, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.316958, "decimalLat": -29.478118 }, "geometry": { "type": "Point", "coordinates": [ 152.317, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623077, "decimalLat": -34.39936 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518145, "decimalLat": -34.451889 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.419273, "decimalLat": -28.26485 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.265 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556648, "decimalLat": -28.400055 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.801786, "decimalLat": -32.703317 }, "geometry": { "type": "Point", "coordinates": [ 151.802, -32.703 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.796455, "decimalLat": -31.655404 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -31.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518695, "decimalLat": -34.447303 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.534917, "decimalLat": -28.336369 }, "geometry": { "type": "Point", "coordinates": [ 153.535, -28.336 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522857, "decimalLat": -34.452643 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517307, "decimalLat": -34.453369 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10379, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.074722, "decimalLat": -32.738611 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516603, "decimalLat": -34.452525 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.093007, "decimalLat": -32.730671 }, "geometry": { "type": "Point", "coordinates": [ 152.093, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605364, "decimalLat": -34.438087 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.226051, "decimalLat": -28.887345 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -28.887 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.454406, "decimalLat": -30.622544 }, "geometry": { "type": "Point", "coordinates": [ 152.454, -30.623 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3033, "decimalLat": -28.821668 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.506959, "decimalLat": -30.511997 }, "geometry": { "type": "Point", "coordinates": [ 151.507, -30.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899314, "decimalLat": -29.631133 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.287759, "decimalLat": -28.903508 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622982, "decimalLat": -34.39733 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531265, "decimalLat": -34.45797 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630954, "decimalLat": -34.388847 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610454, "decimalLat": -34.43056 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639767, "decimalLat": -34.39916 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609135, "decimalLat": -34.420707 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.844528, "decimalLat": -32.711474 }, "geometry": { "type": "Point", "coordinates": [ 151.845, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.624996, "decimalLat": -30.434936 }, "geometry": { "type": "Point", "coordinates": [ 152.625, -30.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905433, "decimalLat": -31.437692 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.30027, "decimalLat": -31.946761 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.947 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646467, "decimalLat": -34.397225 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.065606, "decimalLat": -30.352435 }, "geometry": { "type": "Point", "coordinates": [ 153.066, -30.352 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615935, "decimalLat": -34.435986 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.385256, "decimalLat": -31.214472 }, "geometry": { "type": "Point", "coordinates": [ 152.385, -31.214 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631343, "decimalLat": -34.420193 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281559, "decimalLat": -28.824938 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3033, "decimalLat": -28.821668 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.799985, "decimalLat": -30.212228 }, "geometry": { "type": "Point", "coordinates": [ 152.8, -30.212 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.518426, "decimalLat": -28.216274 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -28.216 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.25953, "decimalLat": -36.192351 }, "geometry": { "type": "Point", "coordinates": [ 149.26, -36.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601853, "decimalLat": -34.412451 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520435, "decimalLat": -34.465729 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603941, "decimalLat": -34.439538 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872878, "decimalLat": -29.6018 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -29.602 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924902, "decimalLat": -31.459395 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886713, "decimalLat": -31.43873 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633153, "decimalLat": -34.418506 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316522, "decimalLat": -28.916769 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.917 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627364, "decimalLat": -34.421252 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880224, "decimalLat": -31.453547 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.326403, "decimalLat": -28.815901 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.663662, "decimalLat": -34.457806 }, "geometry": { "type": "Point", "coordinates": [ 150.664, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518763, "decimalLat": -34.467038 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.062671, "decimalLat": -33.765497 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -33.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914455, "decimalLat": -31.485196 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530795, "decimalLat": -34.470978 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189959, "decimalLat": -32.223426 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53063, "decimalLat": -34.469938 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.15407, "decimalLat": -31.11356 }, "geometry": { "type": "Point", "coordinates": [ 150.154, -31.114 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.454265, "decimalLat": -31.936428 }, "geometry": { "type": "Point", "coordinates": [ 152.454, -31.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60155, "decimalLat": -28.68121 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8853, "decimalLat": -30.51694 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -30.517 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604736, "decimalLat": -34.427329 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.549897, "decimalLat": -34.462307 }, "geometry": { "type": "Point", "coordinates": [ 150.55, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925225, "decimalLat": -31.454221 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916547, "decimalLat": -31.445007 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80651, "decimalLat": -34.18147 }, "geometry": { "type": "Point", "coordinates": [ 150.807, -34.181 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415158, "decimalLat": -31.933289 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631407, "decimalLat": -34.387837 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.447891, "decimalLat": -28.650766 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10321, "decimalLat": -29.487383 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950099, "decimalLat": -36.567944 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.568 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101172, "decimalLat": -29.490077 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927076, "decimalLat": -31.465615 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516668, "decimalLat": -34.469448 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.840726, "decimalLat": -34.058476 }, "geometry": { "type": "Point", "coordinates": [ 150.841, -34.058 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600512, "decimalLat": -34.427399 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.82901, "decimalLat": -32.416313 }, "geometry": { "type": "Point", "coordinates": [ 149.829, -32.416 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616041, "decimalLat": -34.435348 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.490835, "decimalLat": -31.921261 }, "geometry": { "type": "Point", "coordinates": [ 152.491, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609006, "decimalLat": -34.435165 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519877, "decimalLat": -34.452583 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5175, "decimalLat": -34.451993 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515852, "decimalLat": -34.44665 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607914, "decimalLat": -34.422333 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522899, "decimalLat": -34.452319 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906709, "decimalLat": -31.441585 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.54876, "decimalLat": -28.72655 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631179, "decimalLat": -34.420217 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.054919, "decimalLat": -30.908562 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -30.909 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608043, "decimalLat": -34.449084 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.153499, "decimalLat": -31.710926 }, "geometry": { "type": "Point", "coordinates": [ 152.153, -31.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631017, "decimalLat": -34.386234 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06373, "decimalLat": -32.70643 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103672, "decimalLat": -29.485809 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616682, "decimalLat": -33.438925 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -33.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.231248, "decimalLat": -31.733746 }, "geometry": { "type": "Point", "coordinates": [ 152.231, -31.734 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002855, "decimalLat": -29.1819 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -29.182 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.112748, "decimalLat": -29.488424 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636196, "decimalLat": -34.487705 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626512, "decimalLat": -34.385561 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.47385, "decimalLat": -34.50049 }, "geometry": { "type": "Point", "coordinates": [ 150.474, -34.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52495, "decimalLat": -34.48679 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613391, "decimalLat": -34.430175 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924987, "decimalLat": -31.459281 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404027, "decimalLat": -31.928099 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520297, "decimalLat": -34.446857 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.579593, "decimalLat": -30.409963 }, "geometry": { "type": "Point", "coordinates": [ 151.58, -30.41 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92591, "decimalLat": -31.452721 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929044, "decimalLat": -31.450152 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923044, "decimalLat": -31.459918 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92544, "decimalLat": -31.445843 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604172, "decimalLat": -34.437938 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104171, "decimalLat": -29.478762 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51743, "decimalLat": -34.448494 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851464, "decimalLat": -29.692524 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603825, "decimalLat": -34.440167 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603241, "decimalLat": -34.436991 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809413, "decimalLat": -34.099825 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110506, "decimalLat": -29.490189 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89266, "decimalLat": -33.991958 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.992 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.458845, "decimalLat": -33.670775 }, "geometry": { "type": "Point", "coordinates": [ 149.459, -33.671 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298557, "decimalLat": -28.818698 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555888, "decimalLat": -28.399124 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096253, "decimalLat": -29.491422 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90947, "decimalLat": -30.17363 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -30.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81796, "decimalLat": -31.27746 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.277 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608363, "decimalLat": -28.663566 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.664 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.488231, "decimalLat": -28.238831 }, "geometry": { "type": "Point", "coordinates": [ 153.488, -28.239 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.387, "decimalLat": -31.903583 }, "geometry": { "type": "Point", "coordinates": [ 152.387, -31.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602679, "decimalLat": -34.425052 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.482146, "decimalLat": -31.943627 }, "geometry": { "type": "Point", "coordinates": [ 152.482, -31.944 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899776, "decimalLat": -29.630491 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.63 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869551, "decimalLat": -31.466469 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071777, "decimalLat": -32.725221 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.790271, "decimalLat": -32.655267 }, "geometry": { "type": "Point", "coordinates": [ 151.79, -32.655 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.004041, "decimalLat": -29.18193 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -29.182 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521435, "decimalLat": -34.465785 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325602, "decimalLat": -28.814928 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.0128, "decimalLat": -29.53787 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -29.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.545174, "decimalLat": -28.332465 }, "geometry": { "type": "Point", "coordinates": [ 153.545, -28.332 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522735, "decimalLat": -34.459357 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631381, "decimalLat": -34.419995 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609073, "decimalLat": -34.494 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.725342, "decimalLat": -32.60351 }, "geometry": { "type": "Point", "coordinates": [ 151.725, -32.604 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.704917, "decimalLat": -30.185759 }, "geometry": { "type": "Point", "coordinates": [ 152.705, -30.186 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324337, "decimalLat": -28.879744 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29382, "decimalLat": -28.816063 }, "geometry": { "type": "Point", "coordinates": [ 153.294, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884433, "decimalLat": -29.684315 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -29.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516469, "decimalLat": -34.450061 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.088846, "decimalLat": -32.728032 }, "geometry": { "type": "Point", "coordinates": [ 152.089, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.856522, "decimalLat": -31.356723 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -31.357 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.476167, "decimalLat": -29.970004 }, "geometry": { "type": "Point", "coordinates": [ 152.476, -29.97 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64038, "decimalLat": -34.494186 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610235, "decimalLat": -34.419133 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615848, "decimalLat": -34.435993 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928396, "decimalLat": -31.446264 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909916, "decimalLat": -30.505451 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -30.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818125, "decimalLat": -31.129215 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.129 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091559, "decimalLat": -29.48799 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641557, "decimalLat": -33.742033 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -33.742 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.866563, "decimalLat": -31.305739 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -31.306 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.098794, "decimalLat": -33.204749 }, "geometry": { "type": "Point", "coordinates": [ 151.099, -33.205 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9255, "decimalLat": -31.473048 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31872, "decimalLat": -28.927765 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.928 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.547088, "decimalLat": -34.454201 }, "geometry": { "type": "Point", "coordinates": [ 150.547, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.003004, "decimalLat": -29.184643 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -29.185 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.535056, "decimalLat": -34.755862 }, "geometry": { "type": "Point", "coordinates": [ 146.535, -34.756 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090749, "decimalLat": -29.487093 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.336072, "decimalLat": -31.2027 }, "geometry": { "type": "Point", "coordinates": [ 152.336, -31.203 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629659, "decimalLat": -28.637548 }, "geometry": { "type": "Point", "coordinates": [ 153.63, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.904846, "decimalLat": -31.999879 }, "geometry": { "type": "Point", "coordinates": [ 151.905, -32.0 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929736, "decimalLat": -31.466875 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925965, "decimalLat": -31.45247 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.447227, "decimalLat": -31.780553 }, "geometry": { "type": "Point", "coordinates": [ 152.447, -31.781 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51715, "decimalLat": -34.44692 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.08602, "decimalLat": -28.534632 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -28.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46123, "decimalLat": -28.636784 }, "geometry": { "type": "Point", "coordinates": [ 153.461, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.847465, "decimalLat": -31.566357 }, "geometry": { "type": "Point", "coordinates": [ 152.847, -31.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565416, "decimalLat": -28.70167 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514791, "decimalLat": -34.445736 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.66621, "decimalLat": -30.50157 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.25027, "decimalLat": -28.87722 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -28.877 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601559, "decimalLat": -28.827964 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.400264, "decimalLat": -31.196849 }, "geometry": { "type": "Point", "coordinates": [ 152.4, -31.197 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.109729, "decimalLat": -31.906375 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -31.906 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292036, "decimalLat": -28.863396 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510514, "decimalLat": -28.809903 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.81 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785187, "decimalLat": -33.715752 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104037, "decimalLat": -29.484007 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11057, "decimalLat": -29.48982 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.729392, "decimalLat": -36.429911 }, "geometry": { "type": "Point", "coordinates": [ 148.729, -36.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.992754, "decimalLat": -30.409133 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -30.409 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609554, "decimalLat": -34.418984 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884017, "decimalLat": -34.012525 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.013 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.38411, "decimalLat": -28.687929 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521623, "decimalLat": -34.46569 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635373, "decimalLat": -34.41964 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279661, "decimalLat": -28.831073 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.860256, "decimalLat": -29.627572 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -29.628 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78543, "decimalLat": -33.712815 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656947, "decimalLat": -34.456244 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627289, "decimalLat": -34.390021 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.069694, "decimalLat": -33.78207 }, "geometry": { "type": "Point", "coordinates": [ 150.07, -33.782 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.765229, "decimalLat": -31.241379 }, "geometry": { "type": "Point", "coordinates": [ 152.765, -31.241 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911156, "decimalLat": -31.433354 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609181, "decimalLat": -34.420618 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285118, "decimalLat": -28.981503 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.982 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.673349, "decimalLat": -31.514535 }, "geometry": { "type": "Point", "coordinates": [ 150.673, -31.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523712, "decimalLat": -34.464236 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.839947, "decimalLat": -29.582131 }, "geometry": { "type": "Point", "coordinates": [ 152.84, -29.582 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926167, "decimalLat": -31.452764 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062949, "decimalLat": -32.709065 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.422603, "decimalLat": -31.904256 }, "geometry": { "type": "Point", "coordinates": [ 152.423, -31.904 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926647, "decimalLat": -31.444435 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630108, "decimalLat": -34.420764 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110511, "decimalLat": -29.490128 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633776, "decimalLat": -34.392517 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.402791, "decimalLat": -31.925249 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608814, "decimalLat": -34.455636 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103495, "decimalLat": -29.485679 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630244, "decimalLat": -34.420947 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517428, "decimalLat": -34.448548 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.606506, "decimalLat": -28.689405 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631484, "decimalLat": -34.387812 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626741, "decimalLat": -34.421348 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103559, "decimalLat": -29.489156 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629191, "decimalLat": -34.395836 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.566447, "decimalLat": -34.46 }, "geometry": { "type": "Point", "coordinates": [ 150.566, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.437799, "decimalLat": -31.77813 }, "geometry": { "type": "Point", "coordinates": [ 152.438, -31.778 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532713, "decimalLat": -34.48124 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785424, "decimalLat": -31.632767 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607896, "decimalLat": -34.422946 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.0906, "decimalLat": -28.52307 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -28.523 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.47594, "decimalLat": -33.56161 }, "geometry": { "type": "Point", "coordinates": [ 149.476, -33.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516147, "decimalLat": -34.449541 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604275, "decimalLat": -34.438877 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609235, "decimalLat": -34.42061 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434011, "decimalLat": -28.95773 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.958 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908289, "decimalLat": -31.447153 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892569, "decimalLat": -31.432408 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613735, "decimalLat": -34.431093 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923048, "decimalLat": -31.459491 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524613, "decimalLat": -34.456195 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603261, "decimalLat": -34.439353 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869709, "decimalLat": -29.666732 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904445, "decimalLat": -31.456102 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08478, "decimalLat": -32.729647 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311362, "decimalLat": -28.874736 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.875 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784224, "decimalLat": -33.717698 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.009987, "decimalLat": -34.042369 }, "geometry": { "type": "Point", "coordinates": [ 151.01, -34.042 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5275, "decimalLat": -34.469397 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561029, "decimalLat": -28.33111 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635425, "decimalLat": -34.488393 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563938, "decimalLat": -28.393611 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612351, "decimalLat": -34.431571 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626591, "decimalLat": -34.385463 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.10384, "decimalLat": -31.15777 }, "geometry": { "type": "Point", "coordinates": [ 150.104, -31.158 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82757, "decimalLat": -29.810437 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -29.81 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108156, "decimalLat": -29.490259 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31231, "decimalLat": -28.815314 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787145, "decimalLat": -33.706952 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522276, "decimalLat": -34.456111 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635029, "decimalLat": -34.485067 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.15908, "decimalLat": -28.924837 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.245654, "decimalLat": -28.443445 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -28.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360729, "decimalLat": -28.796843 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.797 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8839, "decimalLat": -31.441036 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.422603, "decimalLat": -31.904256 }, "geometry": { "type": "Point", "coordinates": [ 152.423, -31.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80653, "decimalLat": -34.11211 }, "geometry": { "type": "Point", "coordinates": [ 150.807, -34.112 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848206, "decimalLat": -34.030191 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.03 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.442282, "decimalLat": -28.591175 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.591 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926769, "decimalLat": -31.46416 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618929, "decimalLat": -34.440534 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635053, "decimalLat": -34.419787 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.156489, "decimalLat": -32.002023 }, "geometry": { "type": "Point", "coordinates": [ 152.156, -32.002 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43282, "decimalLat": -28.89017 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639096, "decimalLat": -34.491439 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402047, "decimalLat": -28.258067 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110849, "decimalLat": -29.48834 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.88176, "decimalLat": -31.971247 }, "geometry": { "type": "Point", "coordinates": [ 151.882, -31.971 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886089, "decimalLat": -30.361141 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -30.361 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091864, "decimalLat": -29.487984 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630427, "decimalLat": -34.420635 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.991128, "decimalLat": -34.020318 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.02 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521181, "decimalLat": -34.451897 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.163446, "decimalLat": -31.710288 }, "geometry": { "type": "Point", "coordinates": [ 152.163, -31.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103784, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278243, "decimalLat": -28.679411 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610072, "decimalLat": -34.438215 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52245, "decimalLat": -34.453176 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.305556, "decimalLat": -30.054147 }, "geometry": { "type": "Point", "coordinates": [ 152.306, -30.054 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62744, "decimalLat": -34.421262 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.284796, "decimalLat": -28.666699 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625248, "decimalLat": -34.384499 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605437, "decimalLat": -34.427523 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519776, "decimalLat": -34.452671 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524158, "decimalLat": -34.471619 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520391, "decimalLat": -34.453981 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534838, "decimalLat": -34.463424 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.021971, "decimalLat": -28.629621 }, "geometry": { "type": "Point", "coordinates": [ 153.022, -28.63 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.990128, "decimalLat": -36.434481 }, "geometry": { "type": "Point", "coordinates": [ 149.99, -36.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921041, "decimalLat": -31.448924 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632083, "decimalLat": -34.418242 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.828894, "decimalLat": -29.642585 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -29.643 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104012, "decimalLat": -29.485265 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.814899, "decimalLat": -31.653945 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609028, "decimalLat": -34.435139 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911375, "decimalLat": -31.446472 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.200143, "decimalLat": -32.231881 }, "geometry": { "type": "Point", "coordinates": [ 152.2, -32.232 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930015, "decimalLat": -29.726772 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851464, "decimalLat": -29.692524 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.74694, "decimalLat": -31.188605 }, "geometry": { "type": "Point", "coordinates": [ 152.747, -31.189 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784795, "decimalLat": -33.713659 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901832, "decimalLat": -31.442419 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.385016, "decimalLat": -28.583473 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -28.583 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630564, "decimalLat": -34.386856 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.141034, "decimalLat": -28.642768 }, "geometry": { "type": "Point", "coordinates": [ 153.141, -28.643 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630277, "decimalLat": -34.420966 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108205, "decimalLat": -29.490245 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092412, "decimalLat": -29.488452 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596394, "decimalLat": -34.411631 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.665193, "decimalLat": -34.458709 }, "geometry": { "type": "Point", "coordinates": [ 150.665, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.261113, "decimalLat": -36.191934 }, "geometry": { "type": "Point", "coordinates": [ 149.261, -36.192 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.858339, "decimalLat": -34.073367 }, "geometry": { "type": "Point", "coordinates": [ 150.858, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08543, "decimalLat": -32.730356 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639217, "decimalLat": -34.491784 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809224, "decimalLat": -34.102606 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.103 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60915, "decimalLat": -34.420572 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785576, "decimalLat": -33.716818 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.024653, "decimalLat": -29.352429 }, "geometry": { "type": "Point", "coordinates": [ 153.025, -29.352 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101741, "decimalLat": -29.489092 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.743147, "decimalLat": -31.257149 }, "geometry": { "type": "Point", "coordinates": [ 152.743, -31.257 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629505, "decimalLat": -34.388937 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.072069, "decimalLat": -30.881516 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520476, "decimalLat": -34.467299 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.47811, "decimalLat": -31.478289 }, "geometry": { "type": "Point", "coordinates": [ 151.478, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902073, "decimalLat": -31.241799 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630873, "decimalLat": -34.420653 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785026, "decimalLat": -33.716293 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639219, "decimalLat": -34.392713 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522427, "decimalLat": -34.465724 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343646, "decimalLat": -28.866891 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623368, "decimalLat": -34.383309 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.779793, "decimalLat": -34.199263 }, "geometry": { "type": "Point", "coordinates": [ 150.78, -34.199 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.389245, "decimalLat": -31.94658 }, "geometry": { "type": "Point", "coordinates": [ 152.389, -31.947 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103758, "decimalLat": -29.485552 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55781, "decimalLat": -28.393807 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908073, "decimalLat": -31.213404 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.213 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.008935, "decimalLat": -34.041997 }, "geometry": { "type": "Point", "coordinates": [ 151.009, -34.042 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.900142, "decimalLat": -32.595412 }, "geometry": { "type": "Point", "coordinates": [ 151.9, -32.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522339, "decimalLat": -34.465768 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61447, "decimalLat": -34.433938 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319343, "decimalLat": -28.821551 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901026, "decimalLat": -31.44241 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.100284, "decimalLat": -33.778719 }, "geometry": { "type": "Point", "coordinates": [ 150.1, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.024254, "decimalLat": -34.02736 }, "geometry": { "type": "Point", "coordinates": [ 151.024, -34.027 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524594, "decimalLat": -34.452065 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524633, "decimalLat": -34.489425 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.585902, "decimalLat": -30.143451 }, "geometry": { "type": "Point", "coordinates": [ 151.586, -30.143 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.488513, "decimalLat": -32.344787 }, "geometry": { "type": "Point", "coordinates": [ 152.489, -32.345 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.106928, "decimalLat": -29.366767 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.367 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521025, "decimalLat": -34.465642 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635771, "decimalLat": -34.392745 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604854, "decimalLat": -34.418992 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.400714, "decimalLat": -31.98302 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -31.983 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.823235, "decimalLat": -34.149772 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639164, "decimalLat": -34.392739 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919656, "decimalLat": -31.470718 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.602056, "decimalLat": -30.704873 }, "geometry": { "type": "Point", "coordinates": [ 152.602, -30.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634245, "decimalLat": -34.420294 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.99624, "decimalLat": -34.082946 }, "geometry": { "type": "Point", "coordinates": [ 150.996, -34.083 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517263, "decimalLat": -34.451556 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313992, "decimalLat": -28.81222 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.812 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638442, "decimalLat": -34.423071 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.201366, "decimalLat": -29.022503 }, "geometry": { "type": "Point", "coordinates": [ 153.201, -29.023 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638173, "decimalLat": -34.485561 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.23286, "decimalLat": -28.88094 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -28.881 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630399, "decimalLat": -34.42086 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82139, "decimalLat": -34.089692 }, "geometry": { "type": "Point", "coordinates": [ 150.821, -34.09 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.50629, "decimalLat": -28.2387 }, "geometry": { "type": "Point", "coordinates": [ 153.506, -28.239 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.231061, "decimalLat": -28.889378 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273941, "decimalLat": -28.820088 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.265046, "decimalLat": -28.85367 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -28.854 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108135, "decimalLat": -29.490572 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.611059, "decimalLat": -34.734934 }, "geometry": { "type": "Point", "coordinates": [ 146.611, -34.735 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786901, "decimalLat": -33.705803 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067068, "decimalLat": -32.710545 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637544, "decimalLat": -34.488551 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642043, "decimalLat": -34.395941 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615921, "decimalLat": -34.434967 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.384578, "decimalLat": -31.923702 }, "geometry": { "type": "Point", "coordinates": [ 152.385, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515576, "decimalLat": -34.454488 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.512741, "decimalLat": -28.654339 }, "geometry": { "type": "Point", "coordinates": [ 153.513, -28.654 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.795088, "decimalLat": -32.589689 }, "geometry": { "type": "Point", "coordinates": [ 151.795, -32.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630786, "decimalLat": -34.420651 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523968, "decimalLat": -34.466242 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883889, "decimalLat": -31.44098 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614059, "decimalLat": -34.433091 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627366, "decimalLat": -34.420413 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522655, "decimalLat": -34.466468 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868617, "decimalLat": -31.470543 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279343, "decimalLat": -28.678405 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.678 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626891, "decimalLat": -34.421035 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631012, "decimalLat": -34.389119 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.883057, "decimalLat": -30.044378 }, "geometry": { "type": "Point", "coordinates": [ 151.883, -30.044 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.650573, "decimalLat": -34.40247 }, "geometry": { "type": "Point", "coordinates": [ 150.651, -34.402 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626804, "decimalLat": -34.421024 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.173684, "decimalLat": -31.571551 }, "geometry": { "type": "Point", "coordinates": [ 152.174, -31.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615749, "decimalLat": -34.436027 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522449, "decimalLat": -34.464237 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634188, "decimalLat": -34.488639 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318438, "decimalLat": -28.851346 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519453, "decimalLat": -34.456604 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785705, "decimalLat": -33.715109 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609294, "decimalLat": -34.420097 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.852201, "decimalLat": -31.551454 }, "geometry": { "type": "Point", "coordinates": [ 152.852, -31.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631168, "decimalLat": -34.387427 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520788, "decimalLat": -34.436509 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.052888, "decimalLat": -28.446447 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -28.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631777, "decimalLat": -34.387042 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08114, "decimalLat": -32.736715 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.08723, "decimalLat": -31.15582 }, "geometry": { "type": "Point", "coordinates": [ 150.087, -31.156 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109921, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.491791, "decimalLat": -28.660215 }, "geometry": { "type": "Point", "coordinates": [ 153.492, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924377, "decimalLat": -31.459524 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288292, "decimalLat": -28.809314 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.352583, "decimalLat": -31.925191 }, "geometry": { "type": "Point", "coordinates": [ 152.353, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.870348, "decimalLat": -34.044223 }, "geometry": { "type": "Point", "coordinates": [ 150.87, -34.044 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603092, "decimalLat": -34.424312 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918648, "decimalLat": -31.453513 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633241, "decimalLat": -34.418463 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637311, "decimalLat": -34.423824 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104348, "decimalLat": -29.489587 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616331, "decimalLat": -34.434335 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.045221, "decimalLat": -30.237338 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -30.237 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.956229, "decimalLat": -31.281497 }, "geometry": { "type": "Point", "coordinates": [ 152.956, -31.281 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607875, "decimalLat": -34.432096 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555983, "decimalLat": -28.398849 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092208, "decimalLat": -29.488046 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523968, "decimalLat": -34.45263 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927684, "decimalLat": -31.465551 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659535, "decimalLat": -34.458277 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640965, "decimalLat": -34.393305 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605169, "decimalLat": -34.437696 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612276, "decimalLat": -34.429991 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.835402, "decimalLat": -32.390141 }, "geometry": { "type": "Point", "coordinates": [ 149.835, -32.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526675, "decimalLat": -34.469299 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636248, "decimalLat": -34.487805 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.0546, "decimalLat": -33.777068 }, "geometry": { "type": "Point", "coordinates": [ 150.055, -33.777 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9054, "decimalLat": -31.442054 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064588, "decimalLat": -32.708992 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.840035, "decimalLat": -29.320091 }, "geometry": { "type": "Point", "coordinates": [ 152.84, -29.32 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891565, "decimalLat": -31.446745 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.190362, "decimalLat": -32.237057 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.237 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868399, "decimalLat": -31.335146 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.335 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908813, "decimalLat": -31.438865 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608886, "decimalLat": -34.434415 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109342, "decimalLat": -29.490689 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629142, "decimalLat": -28.637877 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513764, "decimalLat": -34.446247 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80037, "decimalLat": -34.102074 }, "geometry": { "type": "Point", "coordinates": [ 150.8, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403012, "decimalLat": -28.260479 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603808, "decimalLat": -34.426679 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.466563, "decimalLat": -36.852794 }, "geometry": { "type": "Point", "coordinates": [ 145.467, -36.853 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908386, "decimalLat": -31.441624 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637378, "decimalLat": -34.423772 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5236, "decimalLat": -34.449223 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316219, "decimalLat": -28.837037 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.677366, "decimalLat": -30.48466 }, "geometry": { "type": "Point", "coordinates": [ 151.677, -30.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608032, "decimalLat": -34.455584 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873607, "decimalLat": -31.286699 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.287 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64291, "decimalLat": -34.395669 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907975, "decimalLat": -30.174625 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -30.175 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.435145, "decimalLat": -31.811653 }, "geometry": { "type": "Point", "coordinates": [ 152.435, -31.812 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599095, "decimalLat": -34.411892 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110527, "decimalLat": -29.490161 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603373, "decimalLat": -34.436182 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37811, "decimalLat": -31.922333 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909233, "decimalLat": -31.475937 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786058, "decimalLat": -33.707189 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98483, "decimalLat": -34.092534 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081557, "decimalLat": -32.735693 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608012, "decimalLat": -28.690047 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646102, "decimalLat": -34.401293 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517873, "decimalLat": -28.194829 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -28.195 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.972761, "decimalLat": -31.194854 }, "geometry": { "type": "Point", "coordinates": [ 152.973, -31.195 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.995981, "decimalLat": -36.454235 }, "geometry": { "type": "Point", "coordinates": [ 149.996, -36.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.998897, "decimalLat": -36.566339 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.774456, "decimalLat": -31.490713 }, "geometry": { "type": "Point", "coordinates": [ 152.774, -31.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612211, "decimalLat": -34.452141 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812126, "decimalLat": -29.515742 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -29.516 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.39268, "decimalLat": -32.03516 }, "geometry": { "type": "Point", "coordinates": [ 152.393, -32.035 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901481, "decimalLat": -31.4685 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300252, "decimalLat": -28.825525 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603465, "decimalLat": -34.439051 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604191, "decimalLat": -34.438786 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.575229, "decimalLat": -31.61743 }, "geometry": { "type": "Point", "coordinates": [ 152.575, -31.617 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102856, "decimalLat": -29.489433 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608887, "decimalLat": -34.435118 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872978, "decimalLat": -29.664828 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -29.665 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60306, "decimalLat": -34.434968 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638597, "decimalLat": -33.542902 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -33.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639476, "decimalLat": -34.392853 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60332, "decimalLat": -34.438813 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.106285, "decimalLat": -31.400942 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -31.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645018, "decimalLat": -34.396521 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104197, "decimalLat": -29.482171 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.133965, "decimalLat": -30.20916 }, "geometry": { "type": "Point", "coordinates": [ 153.134, -30.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603759, "decimalLat": -34.439426 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07972, "decimalLat": -30.335621 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -30.336 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376715, "decimalLat": -28.651191 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605694, "decimalLat": -34.42769 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643589, "decimalLat": -34.399793 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.683667, "decimalLat": -32.515411 }, "geometry": { "type": "Point", "coordinates": [ 151.684, -32.515 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339182, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626002, "decimalLat": -34.389743 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517031, "decimalLat": -34.44689 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605908, "decimalLat": -34.454497 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103961, "decimalLat": -29.489591 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.081504, "decimalLat": -28.593833 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -28.594 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.0946, "decimalLat": -33.139355 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.139 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622906, "decimalLat": -34.39731 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825705, "decimalLat": -29.811869 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -29.812 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109154, "decimalLat": -29.49096 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522839, "decimalLat": -34.439273 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637402, "decimalLat": -34.421753 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.851595, "decimalLat": -34.070391 }, "geometry": { "type": "Point", "coordinates": [ 150.852, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792854, "decimalLat": -30.218561 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -30.219 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6525, "decimalLat": -32.1088 }, "geometry": { "type": "Point", "coordinates": [ 151.653, -32.109 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611572, "decimalLat": -34.420304 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604732, "decimalLat": -34.427058 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638538, "decimalLat": -34.490761 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281041, "decimalLat": -28.873862 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524806, "decimalLat": -34.495739 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.979553, "decimalLat": -34.127 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -34.127 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.361869, "decimalLat": -31.979319 }, "geometry": { "type": "Point", "coordinates": [ 152.362, -31.979 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065691, "decimalLat": -32.743065 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.743 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.138925, "decimalLat": -30.119255 }, "geometry": { "type": "Point", "coordinates": [ 152.139, -30.119 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517943, "decimalLat": -34.446584 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630874, "decimalLat": -34.420608 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109819, "decimalLat": -29.490227 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.026978, "decimalLat": -34.034505 }, "geometry": { "type": "Point", "coordinates": [ 151.027, -34.035 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.491277, "decimalLat": -28.672024 }, "geometry": { "type": "Point", "coordinates": [ 153.491, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.138925, "decimalLat": -30.119255 }, "geometry": { "type": "Point", "coordinates": [ 152.139, -30.119 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630375, "decimalLat": -34.420949 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643266, "decimalLat": -34.395387 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631517, "decimalLat": -34.387795 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.612241, "decimalLat": -28.691428 }, "geometry": { "type": "Point", "coordinates": [ 153.612, -28.691 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622806, "decimalLat": -34.397407 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835074, "decimalLat": -34.069641 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879706, "decimalLat": -29.656653 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -29.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604369, "decimalLat": -34.427601 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787668, "decimalLat": -31.636581 }, "geometry": { "type": "Point", "coordinates": [ 152.788, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.353525, "decimalLat": -31.92625 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929642, "decimalLat": -31.45793 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517307, "decimalLat": -34.446391 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092948, "decimalLat": -29.488303 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.862708, "decimalLat": -34.060553 }, "geometry": { "type": "Point", "coordinates": [ 150.863, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637309, "decimalLat": -34.423906 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071654, "decimalLat": -30.88706 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923384, "decimalLat": -31.441071 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393538, "decimalLat": -28.958969 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517903, "decimalLat": -34.453444 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095569, "decimalLat": -30.301675 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -30.302 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520337, "decimalLat": -34.467206 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079053, "decimalLat": -32.737201 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.95453, "decimalLat": -30.668054 }, "geometry": { "type": "Point", "coordinates": [ 152.955, -30.668 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535432, "decimalLat": -34.462463 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.940123, "decimalLat": -32.772764 }, "geometry": { "type": "Point", "coordinates": [ 151.94, -32.773 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.019495, "decimalLat": -30.367173 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -30.367 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616268, "decimalLat": -34.434252 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108049, "decimalLat": -29.490156 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400765, "decimalLat": -28.260229 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556667, "decimalLat": -28.398611 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602596, "decimalLat": -34.425285 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915983, "decimalLat": -31.480968 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82808, "decimalLat": -34.157325 }, "geometry": { "type": "Point", "coordinates": [ 150.828, -34.157 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916549, "decimalLat": -31.480363 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608828, "decimalLat": -34.45551 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.069041, "decimalLat": -32.743669 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.744 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535414, "decimalLat": -34.463084 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602664, "decimalLat": -34.425187 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.781123, "decimalLat": -32.585403 }, "geometry": { "type": "Point", "coordinates": [ 151.781, -32.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838066, "decimalLat": -34.069668 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.319002, "decimalLat": -31.925419 }, "geometry": { "type": "Point", "coordinates": [ 152.319, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898089, "decimalLat": -31.442973 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929051, "decimalLat": -31.450184 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527864, "decimalLat": -34.457036 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602981, "decimalLat": -34.435065 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.105535, "decimalLat": -33.776967 }, "geometry": { "type": "Point", "coordinates": [ 150.106, -33.777 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637516, "decimalLat": -34.488379 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.459024, "decimalLat": -28.264562 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.265 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.033378, "decimalLat": -28.473567 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -28.474 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.595927, "decimalLat": -28.663694 }, "geometry": { "type": "Point", "coordinates": [ 153.596, -28.664 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526797, "decimalLat": -34.469608 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635729, "decimalLat": -34.48573 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.480878 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600986, "decimalLat": -34.421476 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522931, "decimalLat": -34.466339 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627364, "decimalLat": -34.421225 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335173, "decimalLat": -28.820381 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.338871, "decimalLat": -31.578464 }, "geometry": { "type": "Point", "coordinates": [ 149.339, -31.578 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.685023, "decimalLat": -34.352651 }, "geometry": { "type": "Point", "coordinates": [ 150.685, -34.353 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926116, "decimalLat": -31.458845 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.116373, "decimalLat": -32.764554 }, "geometry": { "type": "Point", "coordinates": [ 152.116, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516529, "decimalLat": -34.440335 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516481, "decimalLat": -34.450043 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.980864, "decimalLat": -34.128057 }, "geometry": { "type": "Point", "coordinates": [ 150.981, -34.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.929005, "decimalLat": -33.955393 }, "geometry": { "type": "Point", "coordinates": [ 150.929, -33.955 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110259, "decimalLat": -29.490311 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616805, "decimalLat": -34.434876 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949397, "decimalLat": -36.554597 }, "geometry": { "type": "Point", "coordinates": [ 149.949, -36.555 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101167, "decimalLat": -29.490091 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.085361, "decimalLat": -29.728135 }, "geometry": { "type": "Point", "coordinates": [ 151.085, -29.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638564, "decimalLat": -34.490608 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616169, "decimalLat": -34.441165 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110527, "decimalLat": -29.490161 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091688, "decimalLat": -29.488074 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293271, "decimalLat": -28.864619 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517338, "decimalLat": -34.447564 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373911, "decimalLat": -31.914769 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.045549, "decimalLat": -30.239277 }, "geometry": { "type": "Point", "coordinates": [ 153.046, -30.239 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.438091, "decimalLat": -28.986031 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.986 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.159167, "decimalLat": -28.850803 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520249, "decimalLat": -34.4525 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.172872, "decimalLat": -32.738319 }, "geometry": { "type": "Point", "coordinates": [ 152.173, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519076, "decimalLat": -34.436618 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784919, "decimalLat": -33.717359 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637786, "decimalLat": -34.488853 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838978, "decimalLat": -34.053416 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923643, "decimalLat": -36.618562 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.988775, "decimalLat": -34.024887 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.041278, "decimalLat": -32.736421 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.537089, "decimalLat": -28.620522 }, "geometry": { "type": "Point", "coordinates": [ 153.537, -28.621 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103264, "decimalLat": -29.489923 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608612, "decimalLat": -34.436005 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063312, "decimalLat": -32.706391 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523639, "decimalLat": -34.428361 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61147, "decimalLat": -28.673561 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.674 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618833, "decimalLat": -34.440478 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378678, "decimalLat": -31.917168 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902955, "decimalLat": -30.537056 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071564, "decimalLat": -28.586025 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -28.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929257, "decimalLat": -31.460519 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904356, "decimalLat": -31.470531 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331879, "decimalLat": -28.815282 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901452, "decimalLat": -31.442512 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599102, "decimalLat": -34.429905 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312962, "decimalLat": -28.857269 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.857 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.838481, "decimalLat": -31.594131 }, "geometry": { "type": "Point", "coordinates": [ 152.838, -31.594 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288825, "decimalLat": -28.824405 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.184673, "decimalLat": -28.889985 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627293, "decimalLat": -34.385242 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324455, "decimalLat": -28.879806 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523043, "decimalLat": -34.466233 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631181, "decimalLat": -34.388122 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.957128, "decimalLat": -33.960016 }, "geometry": { "type": "Point", "coordinates": [ 150.957, -33.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31709, "decimalLat": -28.827123 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892365, "decimalLat": -31.447555 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530642, "decimalLat": -34.469875 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.333542, "decimalLat": -36.179003 }, "geometry": { "type": "Point", "coordinates": [ 149.334, -36.179 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10416, "decimalLat": -29.482087 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646561, "decimalLat": -34.392683 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104181, "decimalLat": -29.482111 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107974, "decimalLat": -29.490465 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606181, "decimalLat": -34.449895 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.467677, "decimalLat": -31.952415 }, "geometry": { "type": "Point", "coordinates": [ 152.468, -31.952 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604385, "decimalLat": -34.438456 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.101252, "decimalLat": -33.776903 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -33.777 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.416342, "decimalLat": -31.938107 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.938 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613951, "decimalLat": -34.433071 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.720815, "decimalLat": -32.644764 }, "geometry": { "type": "Point", "coordinates": [ 151.721, -32.645 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597533, "decimalLat": -34.412898 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.848629, "decimalLat": -31.543343 }, "geometry": { "type": "Point", "coordinates": [ 152.849, -31.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110549, "decimalLat": -29.490166 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.475849, "decimalLat": -28.734899 }, "geometry": { "type": "Point", "coordinates": [ 153.476, -28.735 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606411, "decimalLat": -34.449458 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605671, "decimalLat": -34.437255 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.144851, "decimalLat": -34.925553 }, "geometry": { "type": "Point", "coordinates": [ 150.145, -34.926 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916222, "decimalLat": -31.453394 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518486, "decimalLat": -34.439563 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322343, "decimalLat": -28.815962 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989152, "decimalLat": -34.027519 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.028 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402296, "decimalLat": -28.962269 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.962 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813926, "decimalLat": -34.092478 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324981, "decimalLat": -36.293454 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.293 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517437, "decimalLat": -34.443094 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403724, "decimalLat": -31.928393 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.004266, "decimalLat": -34.049264 }, "geometry": { "type": "Point", "coordinates": [ 151.004, -34.049 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.999308, "decimalLat": -32.727656 }, "geometry": { "type": "Point", "coordinates": [ 151.999, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641987, "decimalLat": -34.396787 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.630567, "decimalLat": -31.449045 }, "geometry": { "type": "Point", "coordinates": [ 151.631, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617141, "decimalLat": -34.433756 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526645, "decimalLat": -34.469227 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626633, "decimalLat": -34.385509 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.759299, "decimalLat": -30.84178 }, "geometry": { "type": "Point", "coordinates": [ 152.759, -30.842 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813393, "decimalLat": -33.365499 }, "geometry": { "type": "Point", "coordinates": [ 150.813, -33.365 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910194, "decimalLat": -31.465858 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066564, "decimalLat": -32.713391 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925304, "decimalLat": -31.454171 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627981, "decimalLat": -34.420984 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.069922, "decimalLat": -35.096731 }, "geometry": { "type": "Point", "coordinates": [ 150.07, -35.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.978031, "decimalLat": -28.638017 }, "geometry": { "type": "Point", "coordinates": [ 152.978, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.187119, "decimalLat": -31.953195 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -31.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065028, "decimalLat": -32.710132 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.957573, "decimalLat": -32.632623 }, "geometry": { "type": "Point", "coordinates": [ 151.958, -32.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.72632, "decimalLat": -30.157302 }, "geometry": { "type": "Point", "coordinates": [ 152.726, -30.157 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633029, "decimalLat": -34.417503 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630687, "decimalLat": -34.39408 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11057, "decimalLat": -29.489872 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10342, "decimalLat": -29.489774 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609379, "decimalLat": -34.42055 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.878445, "decimalLat": -34.016438 }, "geometry": { "type": "Point", "coordinates": [ 150.878, -34.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103527, "decimalLat": -29.485473 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516363, "decimalLat": -28.368068 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -28.368 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.485566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878897, "decimalLat": -29.707214 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637346, "decimalLat": -34.423735 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.303101, "decimalLat": -36.153309 }, "geometry": { "type": "Point", "coordinates": [ 149.303, -36.153 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.987212, "decimalLat": -28.554269 }, "geometry": { "type": "Point", "coordinates": [ 152.987, -28.554 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307114, "decimalLat": -28.849295 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.849 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091961, "decimalLat": -29.488181 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.287347, "decimalLat": -32.374068 }, "geometry": { "type": "Point", "coordinates": [ 152.287, -32.374 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028885, "decimalLat": -32.192146 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565744, "decimalLat": -28.329531 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.33 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.428853, "decimalLat": -36.255633 }, "geometry": { "type": "Point", "coordinates": [ 149.429, -36.256 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063741, "decimalLat": -32.706553 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.874173, "decimalLat": -31.469129 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6309, "decimalLat": -34.388837 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642101, "decimalLat": -34.395825 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794441, "decimalLat": -28.912407 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -28.912 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.50263, "decimalLat": -28.25854 }, "geometry": { "type": "Point", "coordinates": [ 152.503, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061808, "decimalLat": -32.708907 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515304, "decimalLat": -34.448992 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.090111, "decimalLat": -32.734772 }, "geometry": { "type": "Point", "coordinates": [ 152.09, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.830311, "decimalLat": -31.933249 }, "geometry": { "type": "Point", "coordinates": [ 151.83, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.09716, "decimalLat": -32.739482 }, "geometry": { "type": "Point", "coordinates": [ 152.097, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518486, "decimalLat": -34.439563 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27058, "decimalLat": -29.01109 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -29.011 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913278, "decimalLat": -31.443769 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989985, "decimalLat": -34.023465 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.023 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516129, "decimalLat": -34.445394 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.309398, "decimalLat": -28.640289 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640289, "decimalLat": -34.493139 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520461, "decimalLat": -34.454163 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604326, "decimalLat": -34.426446 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.15986, "decimalLat": -31.444132 }, "geometry": { "type": "Point", "coordinates": [ 152.16, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561539, "decimalLat": -28.384411 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094874, "decimalLat": -29.488508 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640612, "decimalLat": -34.393848 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.414754, "decimalLat": -30.643615 }, "geometry": { "type": "Point", "coordinates": [ 151.415, -30.644 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627917, "decimalLat": -34.420929 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.113079, "decimalLat": -29.372752 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -29.373 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085694, "decimalLat": -32.731163 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.655831, "decimalLat": -32.681773 }, "geometry": { "type": "Point", "coordinates": [ 151.656, -32.682 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516026, "decimalLat": -34.437828 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513903, "decimalLat": -34.447061 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603546, "decimalLat": -34.427459 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063559, "decimalLat": -32.706202 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.040201, "decimalLat": -30.365399 }, "geometry": { "type": "Point", "coordinates": [ 153.04, -30.365 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.114827, "decimalLat": -32.214895 }, "geometry": { "type": "Point", "coordinates": [ 152.115, -32.215 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611494, "decimalLat": -34.419617 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.231452, "decimalLat": -28.829328 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -28.829 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623645, "decimalLat": -34.388886 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104037, "decimalLat": -29.485267 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092991, "decimalLat": -29.488546 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615431, "decimalLat": -34.428854 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514255, "decimalLat": -34.446563 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.692068, "decimalLat": -31.483459 }, "geometry": { "type": "Point", "coordinates": [ 152.692, -31.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925246, "decimalLat": -31.443157 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.310613, "decimalLat": -28.822718 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.9593, "decimalLat": -29.8927 }, "geometry": { "type": "Point", "coordinates": [ 151.959, -29.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.721917, "decimalLat": -32.719215 }, "geometry": { "type": "Point", "coordinates": [ 151.722, -32.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.650812, "decimalLat": -30.629244 }, "geometry": { "type": "Point", "coordinates": [ 152.651, -30.629 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868061, "decimalLat": -29.667322 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103763, "decimalLat": -29.485534 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104471, "decimalLat": -29.482886 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101183, "decimalLat": -29.489937 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434589, "decimalLat": -28.620426 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.62 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520422, "decimalLat": -34.46581 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921975, "decimalLat": -31.457087 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884776, "decimalLat": -33.991206 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -33.991 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091063, "decimalLat": -29.487502 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.167306, "decimalLat": -31.58959 }, "geometry": { "type": "Point", "coordinates": [ 152.167, -31.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913382, "decimalLat": -31.45149 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630787, "decimalLat": -34.387077 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.979002, "decimalLat": -34.131552 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -34.132 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614899, "decimalLat": -34.429565 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521716, "decimalLat": -34.464015 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627971, "decimalLat": -34.420948 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.063135, "decimalLat": -30.922055 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -30.922 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.870343, "decimalLat": -34.002523 }, "geometry": { "type": "Point", "coordinates": [ 150.87, -34.003 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31409, "decimalLat": -28.8515 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908102, "decimalLat": -31.449129 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516876, "decimalLat": -34.448825 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787474, "decimalLat": -34.20052 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -34.201 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634425, "decimalLat": -34.420081 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92609, "decimalLat": -30.50624 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600996, "decimalLat": -34.426453 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809396, "decimalLat": -34.101146 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.648748, "decimalLat": -30.705455 }, "geometry": { "type": "Point", "coordinates": [ 151.649, -30.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519969, "decimalLat": -34.452404 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.532458, "decimalLat": -32.046018 }, "geometry": { "type": "Point", "coordinates": [ 152.532, -32.046 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622025, "decimalLat": -34.397717 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595768, "decimalLat": -34.413729 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632655, "decimalLat": -34.41801 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868147, "decimalLat": -29.667322 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103929, "decimalLat": -29.489573 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638858, "decimalLat": -34.421808 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.296273, "decimalLat": -31.871261 }, "geometry": { "type": "Point", "coordinates": [ 152.296, -31.871 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.142806, "decimalLat": -34.928517 }, "geometry": { "type": "Point", "coordinates": [ 150.143, -34.929 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094779, "decimalLat": -29.494334 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904137, "decimalLat": -31.440221 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632572, "decimalLat": -34.418251 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.970795, "decimalLat": -29.493122 }, "geometry": { "type": "Point", "coordinates": [ 151.971, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189959, "decimalLat": -32.223426 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631778, "decimalLat": -34.418245 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637377, "decimalLat": -34.423817 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393984, "decimalLat": -28.959008 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10483, "decimalLat": -29.476871 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.979028, "decimalLat": -34.094584 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.13439, "decimalLat": -28.562399 }, "geometry": { "type": "Point", "coordinates": [ 153.134, -28.562 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.813851, "decimalLat": -31.574742 }, "geometry": { "type": "Point", "coordinates": [ 152.814, -31.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520299, "decimalLat": -34.465546 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93879, "decimalLat": -29.728067 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -29.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637914, "decimalLat": -34.488937 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889349, "decimalLat": -31.444292 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600553, "decimalLat": -34.427869 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60486, "decimalLat": -34.426781 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784201, "decimalLat": -33.717201 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515531, "decimalLat": -34.439485 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627346, "decimalLat": -34.420332 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.996403, "decimalLat": -34.048304 }, "geometry": { "type": "Point", "coordinates": [ 150.996, -34.048 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360617, "decimalLat": -28.840581 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55705, "decimalLat": -28.397447 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068562, "decimalLat": -32.706796 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.560008, "decimalLat": -30.40352 }, "geometry": { "type": "Point", "coordinates": [ 151.56, -30.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512837, "decimalLat": -34.446679 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818259, "decimalLat": -30.671226 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -30.671 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273941, "decimalLat": -28.820088 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639189, "decimalLat": -34.491215 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.702147, "decimalLat": -33.503703 }, "geometry": { "type": "Point", "coordinates": [ 150.702, -33.504 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.042529, "decimalLat": -28.469144 }, "geometry": { "type": "Point", "coordinates": [ 153.043, -28.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784698, "decimalLat": -33.716327 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.819545, "decimalLat": -32.624381 }, "geometry": { "type": "Point", "coordinates": [ 151.82, -32.624 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.993988, "decimalLat": -30.41061 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -30.411 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31591, "decimalLat": -28.96395 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.964 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.702147, "decimalLat": -33.503703 }, "geometry": { "type": "Point", "coordinates": [ 150.702, -33.504 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522177, "decimalLat": -34.461982 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615932, "decimalLat": -34.437266 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514537, "decimalLat": -34.446596 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625427, "decimalLat": -34.386234 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288877, "decimalLat": -28.828331 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.402231, "decimalLat": -34.554766 }, "geometry": { "type": "Point", "coordinates": [ 146.402, -34.555 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060767, "decimalLat": -32.710582 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.340568, "decimalLat": -31.987628 }, "geometry": { "type": "Point", "coordinates": [ 152.341, -31.988 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61006, "decimalLat": -34.430228 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.590836, "decimalLat": -34.757257 }, "geometry": { "type": "Point", "coordinates": [ 146.591, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894797, "decimalLat": -30.189812 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -30.19 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.382552, "decimalLat": -31.440949 }, "geometry": { "type": "Point", "coordinates": [ 150.383, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625337, "decimalLat": -34.384411 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60779, "decimalLat": -34.430111 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812711, "decimalLat": -29.633965 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -29.634 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93908, "decimalLat": -30.23035 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -30.23 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984291, "decimalLat": -34.093484 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885538, "decimalLat": -31.444253 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061703, "decimalLat": -32.708992 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868147, "decimalLat": -29.667322 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.646584, "decimalLat": -30.540256 }, "geometry": { "type": "Point", "coordinates": [ 152.647, -30.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656769, "decimalLat": -34.454816 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615646, "decimalLat": -34.431229 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.089312, "decimalLat": -32.729332 }, "geometry": { "type": "Point", "coordinates": [ 152.089, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.014167, "decimalLat": -31.729722 }, "geometry": { "type": "Point", "coordinates": [ 150.014, -31.73 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104235, "decimalLat": -29.479888 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065691, "decimalLat": -32.743065 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.743 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.241946, "decimalLat": -30.047586 }, "geometry": { "type": "Point", "coordinates": [ 152.242, -30.048 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624484, "decimalLat": -34.385377 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926647, "decimalLat": -31.444435 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312712, "decimalLat": -28.858713 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.859 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.370506, "decimalLat": -28.796339 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.796 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515777, "decimalLat": -34.449533 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604343, "decimalLat": -34.438428 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517914, "decimalLat": -34.447566 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.060051, "decimalLat": -33.773304 }, "geometry": { "type": "Point", "coordinates": [ 150.06, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516498, "decimalLat": -34.44907 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.389441, "decimalLat": -29.016289 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103635, "decimalLat": -29.485486 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104155, "decimalLat": -29.478917 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908694, "decimalLat": -31.476303 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.380171, "decimalLat": -31.914588 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561418, "decimalLat": -28.390195 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609238, "decimalLat": -34.420529 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626603, "decimalLat": -34.398888 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929333, "decimalLat": -31.469243 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522701, "decimalLat": -34.464937 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616529, "decimalLat": -34.43808 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063317, "decimalLat": -32.706428 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521831, "decimalLat": -34.466361 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562051, "decimalLat": -28.383974 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.847077, "decimalLat": -32.532721 }, "geometry": { "type": "Point", "coordinates": [ 151.847, -32.533 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987745, "decimalLat": -34.024033 }, "geometry": { "type": "Point", "coordinates": [ 150.988, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52039, "decimalLat": -34.465782 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339454, "decimalLat": -28.807154 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.807 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.80526, "decimalLat": -32.60102 }, "geometry": { "type": "Point", "coordinates": [ 151.805, -32.601 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06372, "decimalLat": -32.706571 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655766, "decimalLat": -34.459133 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899636, "decimalLat": -29.630911 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377297, "decimalLat": -28.651917 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.652 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884811, "decimalLat": -34.067055 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.067 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302722, "decimalLat": -28.820461 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.552943, "decimalLat": -28.587769 }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.588 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.692338, "decimalLat": -32.691094 }, "geometry": { "type": "Point", "coordinates": [ 151.692, -32.691 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631484, "decimalLat": -34.387812 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.036423, "decimalLat": -30.8961 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104417, "decimalLat": -29.489615 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867966, "decimalLat": -29.667091 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526173, "decimalLat": -34.458309 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523543, "decimalLat": -28.669577 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -28.67 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099718, "decimalLat": -30.305679 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -30.306 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066612, "decimalLat": -32.71324 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.765461, "decimalLat": -28.665933 }, "geometry": { "type": "Point", "coordinates": [ 152.765, -28.666 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.087703, "decimalLat": -30.255043 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -30.255 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.069221, "decimalLat": -32.748434 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.748 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636974, "decimalLat": -34.48561 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824625, "decimalLat": -29.505784 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515973, "decimalLat": -34.446968 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517382, "decimalLat": -34.447547 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093769, "decimalLat": -29.488793 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.423169, "decimalLat": -28.726687 }, "geometry": { "type": "Point", "coordinates": [ 153.423, -28.727 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851464, "decimalLat": -29.692524 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612971, "decimalLat": -34.430807 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523712, "decimalLat": -34.452444 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.490124 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912034, "decimalLat": -31.449446 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.844837, "decimalLat": -29.834427 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607579, "decimalLat": -34.433298 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.410059, "decimalLat": -28.894616 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.895 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528058, "decimalLat": -34.465595 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782339, "decimalLat": -31.630779 }, "geometry": { "type": "Point", "coordinates": [ 152.782, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.226817, "decimalLat": -30.083019 }, "geometry": { "type": "Point", "coordinates": [ 152.227, -30.083 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393232, "decimalLat": -28.647607 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.648 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631291, "decimalLat": -34.420111 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616273, "decimalLat": -34.430989 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108108, "decimalLat": -29.490245 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627719, "decimalLat": -34.420997 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921646, "decimalLat": -31.438521 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524245, "decimalLat": -34.466464 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.326028, "decimalLat": -28.824541 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915662, "decimalLat": -31.453929 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633821, "decimalLat": -34.418348 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37242, "decimalLat": -31.924702 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063642, "decimalLat": -32.706549 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616378, "decimalLat": -34.433416 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.424455, "decimalLat": -34.483098 }, "geometry": { "type": "Point", "coordinates": [ 150.424, -34.483 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.209291, "decimalLat": -28.647468 }, "geometry": { "type": "Point", "coordinates": [ 153.209, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.02477, "decimalLat": -30.416638 }, "geometry": { "type": "Point", "coordinates": [ 153.025, -30.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91426, "decimalLat": -31.484938 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51303, "decimalLat": -34.446025 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606517, "decimalLat": -34.433918 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55686, "decimalLat": -28.39833 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395145, "decimalLat": -28.960091 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609818, "decimalLat": -34.43071 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521379, "decimalLat": -34.459212 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.080272, "decimalLat": -30.351926 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -30.352 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.171948, "decimalLat": -32.722892 }, "geometry": { "type": "Point", "coordinates": [ 152.172, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.767875, "decimalLat": -31.25153 }, "geometry": { "type": "Point", "coordinates": [ 152.768, -31.252 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52392, "decimalLat": -34.448128 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.528013, "decimalLat": -28.230042 }, "geometry": { "type": "Point", "coordinates": [ 153.528, -28.23 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.449444, "decimalLat": -31.943502 }, "geometry": { "type": "Point", "coordinates": [ 152.449, -31.944 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.834934, "decimalLat": -34.066033 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.066 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556726, "decimalLat": -28.397422 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8933, "decimalLat": -31.443058 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518955, "decimalLat": -34.447326 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07719, "decimalLat": -32.722484 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924902, "decimalLat": -31.459395 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632871, "decimalLat": -34.394528 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603528, "decimalLat": -34.43458 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912661, "decimalLat": -31.448244 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.159167, "decimalLat": -28.850803 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785956, "decimalLat": -33.707121 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.67419, "decimalLat": -32.59988 }, "geometry": { "type": "Point", "coordinates": [ 151.674, -32.6 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107995, "decimalLat": -29.49011 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.56362, "decimalLat": -34.523494 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -34.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517075, "decimalLat": -34.446134 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.501737, "decimalLat": -31.894506 }, "geometry": { "type": "Point", "coordinates": [ 152.502, -31.895 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.438617, "decimalLat": -28.993818 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.994 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920725, "decimalLat": -31.448905 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.013071, "decimalLat": -28.44216 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -28.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095904, "decimalLat": -29.484492 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599781, "decimalLat": -34.425185 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78439, "decimalLat": -33.718101 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604747, "decimalLat": -34.427302 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643294, "decimalLat": -34.404484 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59793, "decimalLat": -34.426023 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604748, "decimalLat": -34.427284 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519726, "decimalLat": -34.447026 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51309, "decimalLat": -34.447306 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104085, "decimalLat": -29.479925 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109374, "decimalLat": -29.490595 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624232, "decimalLat": -34.388906 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638896, "decimalLat": -34.491561 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791311, "decimalLat": -34.185742 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.186 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.871109, "decimalLat": -34.061451 }, "geometry": { "type": "Point", "coordinates": [ 150.871, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89256, "decimalLat": -31.458402 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.145934, "decimalLat": -34.920722 }, "geometry": { "type": "Point", "coordinates": [ 150.146, -34.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27058, "decimalLat": -29.01109 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -29.011 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063754, "decimalLat": -32.706452 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792947, "decimalLat": -30.218507 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -30.219 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5159, "decimalLat": -34.448706 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813954, "decimalLat": -34.092453 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529187, "decimalLat": -34.458307 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.972133, "decimalLat": -34.100016 }, "geometry": { "type": "Point", "coordinates": [ 150.972, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895989, "decimalLat": -31.435036 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.295296, "decimalLat": -28.854499 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.854 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90667, "decimalLat": -31.471524 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31578, "decimalLat": -28.857898 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517152, "decimalLat": -34.451977 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.995171, "decimalLat": -28.474523 }, "geometry": { "type": "Point", "coordinates": [ 152.995, -28.475 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.574405, "decimalLat": -34.769076 }, "geometry": { "type": "Point", "coordinates": [ 146.574, -34.769 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603087, "decimalLat": -34.417623 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.001884, "decimalLat": -28.621703 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -28.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522632, "decimalLat": -34.464313 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110527, "decimalLat": -29.490156 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103849, "decimalLat": -29.485515 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.362495, "decimalLat": -28.679249 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517063, "decimalLat": -34.435874 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.003336, "decimalLat": -34.072952 }, "geometry": { "type": "Point", "coordinates": [ 151.003, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.969835, "decimalLat": -31.194172 }, "geometry": { "type": "Point", "coordinates": [ 152.97, -31.194 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603559, "decimalLat": -34.424348 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518133, "decimalLat": -34.4376 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.796342, "decimalLat": -31.686015 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -31.686 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.210253, "decimalLat": -31.560625 }, "geometry": { "type": "Point", "coordinates": [ 152.21, -31.561 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89953, "decimalLat": -31.472569 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519636, "decimalLat": -34.455219 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.890633, "decimalLat": -32.078899 }, "geometry": { "type": "Point", "coordinates": [ 151.891, -32.079 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782496, "decimalLat": -33.719098 }, "geometry": { "type": "Point", "coordinates": [ 150.782, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517743, "decimalLat": -28.66879 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529983, "decimalLat": -34.460477 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990088, "decimalLat": -34.090633 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320897, "decimalLat": -28.84777 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639574, "decimalLat": -34.399066 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635424, "decimalLat": -34.392702 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609969, "decimalLat": -34.429631 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.404973, "decimalLat": -28.973013 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.973 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821777, "decimalLat": -34.100964 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099772, "decimalLat": -29.491557 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607054, "decimalLat": -34.429961 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630462, "decimalLat": -34.42096 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.33606, "decimalLat": -34.488852 }, "geometry": { "type": "Point", "coordinates": [ 150.336, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902133, "decimalLat": -31.442247 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.251059, "decimalLat": -33.596826 }, "geometry": { "type": "Point", "coordinates": [ 150.251, -33.597 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518916, "decimalLat": -34.446811 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92418, "decimalLat": -31.45999 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.189185, "decimalLat": -27.725482 }, "geometry": { "type": "Point", "coordinates": [ 153.189, -27.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659349, "decimalLat": -34.457516 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.462903, "decimalLat": -28.871873 }, "geometry": { "type": "Point", "coordinates": [ 153.463, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896127, "decimalLat": -31.434458 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108151, "decimalLat": -29.490269 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62445, "decimalLat": -34.388875 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929268, "decimalLat": -29.002578 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -29.003 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520295, "decimalLat": -34.453889 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.067105, "decimalLat": -35.141087 }, "geometry": { "type": "Point", "coordinates": [ 150.067, -35.141 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636202, "decimalLat": -34.486325 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639238, "decimalLat": -34.492965 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.874279, "decimalLat": -31.458689 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092835, "decimalLat": -29.384284 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794157, "decimalLat": -31.127808 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37486, "decimalLat": -31.915593 }, "geometry": { "type": "Point", "coordinates": [ 152.375, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629423, "decimalLat": -34.389539 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534634, "decimalLat": -34.462221 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924902, "decimalLat": -31.468765 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102964, "decimalLat": -29.489419 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.640191, "decimalLat": -31.555827 }, "geometry": { "type": "Point", "coordinates": [ 152.64, -31.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611863, "decimalLat": -34.431877 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628004, "decimalLat": -34.420922 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.910308, "decimalLat": -29.713371 }, "geometry": { "type": "Point", "coordinates": [ 150.91, -29.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596832, "decimalLat": -34.412668 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109337, "decimalLat": -29.490656 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302389, "decimalLat": -28.821933 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923867, "decimalLat": -31.452782 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.736874, "decimalLat": -30.874352 }, "geometry": { "type": "Point", "coordinates": [ 152.737, -30.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516413, "decimalLat": -34.450105 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108231, "decimalLat": -29.490241 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.840889, "decimalLat": -34.082896 }, "geometry": { "type": "Point", "coordinates": [ 150.841, -34.083 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926853, "decimalLat": -31.457742 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639101, "decimalLat": -34.392665 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513105, "decimalLat": -34.447171 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640611, "decimalLat": -34.393894 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.621265, "decimalLat": -28.650719 }, "geometry": { "type": "Point", "coordinates": [ 153.621, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.450627, "decimalLat": -28.728127 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518812, "decimalLat": -34.447368 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521893, "decimalLat": -34.459502 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317468, "decimalLat": -28.815186 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91683, "decimalLat": -31.47526 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007695, "decimalLat": -36.513507 }, "geometry": { "type": "Point", "coordinates": [ 150.008, -36.514 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.96538, "decimalLat": -32.73374 }, "geometry": { "type": "Point", "coordinates": [ 151.965, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.942669, "decimalLat": -32.741931 }, "geometry": { "type": "Point", "coordinates": [ 151.943, -32.742 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.46238, "decimalLat": -34.690474 }, "geometry": { "type": "Point", "coordinates": [ 146.462, -34.69 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.769527, "decimalLat": -32.456803 }, "geometry": { "type": "Point", "coordinates": [ 151.77, -32.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6514, "decimalLat": -33.584083 }, "geometry": { "type": "Point", "coordinates": [ 150.651, -33.584 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637083, "decimalLat": -34.488299 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639476, "decimalLat": -34.392853 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.078143, "decimalLat": -32.721993 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636322, "decimalLat": -34.421876 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785314, "decimalLat": -33.714053 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.323715, "decimalLat": -36.29884 }, "geometry": { "type": "Point", "coordinates": [ 149.324, -36.299 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.68559, "decimalLat": -33.539997 }, "geometry": { "type": "Point", "coordinates": [ 149.686, -33.54 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64142, "decimalLat": -34.395676 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.217972, "decimalLat": -28.830391 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617126, "decimalLat": -34.433512 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794805, "decimalLat": -34.143337 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.685416, "decimalLat": -34.353443 }, "geometry": { "type": "Point", "coordinates": [ 150.685, -34.353 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614376, "decimalLat": -34.42923 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606626, "decimalLat": -34.434686 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280168, "decimalLat": -28.828381 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597566, "decimalLat": -34.418181 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.290682, "decimalLat": -28.818095 }, "geometry": { "type": "Point", "coordinates": [ 153.291, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604304, "decimalLat": -34.437877 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613327, "decimalLat": -34.458059 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899261, "decimalLat": -29.63245 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522451, "decimalLat": -34.464905 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107421, "decimalLat": -29.490133 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.897794, "decimalLat": -31.831385 }, "geometry": { "type": "Point", "coordinates": [ 151.898, -31.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.961801, "decimalLat": -36.581243 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.581 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640872, "decimalLat": -34.396216 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924419, "decimalLat": -31.469069 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.264264, "decimalLat": -28.824654 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.506959, "decimalLat": -30.511997 }, "geometry": { "type": "Point", "coordinates": [ 151.507, -30.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.141199, "decimalLat": -28.54005 }, "geometry": { "type": "Point", "coordinates": [ 153.141, -28.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922013, "decimalLat": -31.479595 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343646, "decimalLat": -28.866891 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613339, "decimalLat": -34.458032 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100732, "decimalLat": -29.490096 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628115, "decimalLat": -34.420861 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.874878, "decimalLat": -32.768082 }, "geometry": { "type": "Point", "coordinates": [ 151.875, -32.768 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108108, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657359, "decimalLat": -34.4559 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312092, "decimalLat": -28.840306 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530497, "decimalLat": -34.471477 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616995, "decimalLat": -34.433554 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063595, "decimalLat": -32.706024 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.045766, "decimalLat": -34.028927 }, "geometry": { "type": "Point", "coordinates": [ 151.046, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633197, "decimalLat": -34.418489 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.371656, "decimalLat": -36.007611 }, "geometry": { "type": "Point", "coordinates": [ 149.372, -36.008 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517531, "decimalLat": -34.452805 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.925745, "decimalLat": -33.427547 }, "geometry": { "type": "Point", "coordinates": [ 150.926, -33.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615786, "decimalLat": -34.433197 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5215, "decimalLat": -34.452913 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427267, "decimalLat": -28.807715 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.808 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.843867, "decimalLat": -31.425182 }, "geometry": { "type": "Point", "coordinates": [ 152.844, -31.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063534, "decimalLat": -32.705935 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529874, "decimalLat": -34.471203 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.649028, "decimalLat": -37.366438 }, "geometry": { "type": "Point", "coordinates": [ 149.649, -37.366 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.413643, "decimalLat": -29.031003 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.414737, "decimalLat": -31.944193 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.944 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394902, "decimalLat": -29.033992 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.034 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.555123, "decimalLat": -32.859442 }, "geometry": { "type": "Point", "coordinates": [ 151.555, -32.859 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615557, "decimalLat": -34.435528 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.779136, "decimalLat": -32.485756 }, "geometry": { "type": "Point", "coordinates": [ 151.779, -32.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.433442, "decimalLat": -30.644193 }, "geometry": { "type": "Point", "coordinates": [ 151.433, -30.644 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306645, "decimalLat": -28.610402 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.61 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403899, "decimalLat": -28.260605 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896425, "decimalLat": -29.629872 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -29.63 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104146, "decimalLat": -29.485048 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872153, "decimalLat": -31.475391 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515858, "decimalLat": -34.447182 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9286, "decimalLat": -33.95807 }, "geometry": { "type": "Point", "coordinates": [ 150.929, -33.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644166, "decimalLat": -34.393151 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.492577, "decimalLat": -28.762975 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -28.763 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641856, "decimalLat": -34.394864 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985764, "decimalLat": -34.091881 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793261, "decimalLat": -31.641586 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520382, "decimalLat": -34.465665 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516128, "decimalLat": -34.45019 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.120167, "decimalLat": -29.489619 }, "geometry": { "type": "Point", "coordinates": [ 153.12, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632595, "decimalLat": -34.418225 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.210153, "decimalLat": -31.56082 }, "geometry": { "type": "Point", "coordinates": [ 152.21, -31.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093554, "decimalLat": -29.488644 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513111, "decimalLat": -34.447334 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.104747, "decimalLat": -34.986906 }, "geometry": { "type": "Point", "coordinates": [ 150.105, -34.987 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517637, "decimalLat": -34.44775 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784074, "decimalLat": -33.717027 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108221, "decimalLat": -29.490245 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624341, "decimalLat": -34.386186 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.091178, "decimalLat": -29.774595 }, "geometry": { "type": "Point", "coordinates": [ 151.091, -29.775 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.585614, "decimalLat": -28.79922 }, "geometry": { "type": "Point", "coordinates": [ 153.586, -28.799 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400765, "decimalLat": -28.257909 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533247, "decimalLat": -34.480124 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520005, "decimalLat": -34.447519 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51953, "decimalLat": -34.437457 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096537, "decimalLat": -29.485583 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3033, "decimalLat": -28.821668 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.935874, "decimalLat": -34.112713 }, "geometry": { "type": "Point", "coordinates": [ 150.936, -34.113 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301335, "decimalLat": -28.821349 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.425949, "decimalLat": -32.25695 }, "geometry": { "type": "Point", "coordinates": [ 152.426, -32.257 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104498, "decimalLat": -29.477413 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.400316, "decimalLat": -31.8524 }, "geometry": { "type": "Point", "coordinates": [ 152.4, -31.852 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61531, "decimalLat": -28.66255 }, "geometry": { "type": "Point", "coordinates": [ 153.615, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630917, "decimalLat": -34.388243 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.066745, "decimalLat": -27.925369 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -27.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.807209, "decimalLat": -29.812936 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -29.813 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.999001, "decimalLat": -34.047966 }, "geometry": { "type": "Point", "coordinates": [ 150.999, -34.048 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517262, "decimalLat": -34.451592 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627046, "decimalLat": -34.39053 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642, "decimalLat": -34.394371 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.816706, "decimalLat": -31.573747 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -31.574 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990984, "decimalLat": -34.024525 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615172, "decimalLat": -34.431067 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316454, "decimalLat": -28.823424 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607357, "decimalLat": -34.436125 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.044309, "decimalLat": -30.912286 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -30.912 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.666458, "decimalLat": -31.863221 }, "geometry": { "type": "Point", "coordinates": [ 152.666, -31.863 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060906, "decimalLat": -32.248828 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.249 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090803, "decimalLat": -28.598745 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -28.599 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607498, "decimalLat": -34.430439 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515111, "decimalLat": -34.445932 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331243, "decimalLat": -28.821749 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316219, "decimalLat": -28.837037 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915097, "decimalLat": -31.481547 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513828, "decimalLat": -34.446266 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790411, "decimalLat": -34.143171 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615892, "decimalLat": -34.435985 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518313, "decimalLat": -34.451379 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644329, "decimalLat": -34.391603 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.054228, "decimalLat": -34.040303 }, "geometry": { "type": "Point", "coordinates": [ 151.054, -34.04 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415158, "decimalLat": -31.93326 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085467, "decimalLat": -32.728065 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.126154, "decimalLat": -29.477165 }, "geometry": { "type": "Point", "coordinates": [ 153.126, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607905, "decimalLat": -34.430645 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638731, "decimalLat": -34.490882 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624088, "decimalLat": -34.400543 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60756, "decimalLat": -34.431288 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630355, "decimalLat": -34.420895 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637334, "decimalLat": -34.423771 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51778, "decimalLat": -34.441442 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062288, "decimalLat": -32.707956 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604064, "decimalLat": -34.424926 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602843, "decimalLat": -34.444069 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637019, "decimalLat": -34.488243 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4899, "decimalLat": -28.66979 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.67 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927121, "decimalLat": -31.468863 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662435, "decimalLat": -34.454582 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.664166, "decimalLat": -34.458861 }, "geometry": { "type": "Point", "coordinates": [ 150.664, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52039, "decimalLat": -34.465782 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599232, "decimalLat": -34.429168 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616001, "decimalLat": -34.434842 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108221, "decimalLat": -29.490231 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.781212, "decimalLat": -31.712419 }, "geometry": { "type": "Point", "coordinates": [ 152.781, -31.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627376, "decimalLat": -34.421189 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923014, "decimalLat": -31.450607 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19875, "decimalLat": -32.18785 }, "geometry": { "type": "Point", "coordinates": [ 152.199, -32.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515886, "decimalLat": -34.448814 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.162077, "decimalLat": -32.713414 }, "geometry": { "type": "Point", "coordinates": [ 152.162, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.214727, "decimalLat": -28.647013 }, "geometry": { "type": "Point", "coordinates": [ 153.215, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79581, "decimalLat": -34.17807 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.178 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630252, "decimalLat": -34.389438 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.978134, "decimalLat": -30.41922 }, "geometry": { "type": "Point", "coordinates": [ 152.978, -30.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.106116, "decimalLat": -32.728301 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104042, "decimalLat": -29.485188 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786182, "decimalLat": -33.706131 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.710361, "decimalLat": -33.435893 }, "geometry": { "type": "Point", "coordinates": [ 150.71, -33.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526644, "decimalLat": -34.427946 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.018361, "decimalLat": -30.301056 }, "geometry": { "type": "Point", "coordinates": [ 149.018, -30.301 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.768723, "decimalLat": -32.712202 }, "geometry": { "type": "Point", "coordinates": [ 151.769, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.472157, "decimalLat": -34.492082 }, "geometry": { "type": "Point", "coordinates": [ 150.472, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43068, "decimalLat": -29.015315 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -29.015 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.915437, "decimalLat": -31.972441 }, "geometry": { "type": "Point", "coordinates": [ 151.915, -31.972 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433927, "decimalLat": -28.959788 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.472157, "decimalLat": -34.492082 }, "geometry": { "type": "Point", "coordinates": [ 150.472, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604833, "decimalLat": -34.418955 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09246, "decimalLat": -29.493062 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635434, "decimalLat": -34.488095 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.548214, "decimalLat": -34.513975 }, "geometry": { "type": "Point", "coordinates": [ 150.548, -34.514 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927297, "decimalLat": -31.477972 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644179, "decimalLat": -34.3993 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063698, "decimalLat": -32.7064 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.8133, "decimalLat": -34.20098 }, "geometry": { "type": "Point", "coordinates": [ 150.813, -34.201 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103977, "decimalLat": -29.48481 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517307, "decimalLat": -34.446391 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.85141, "decimalLat": -31.55344 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -31.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314015, "decimalLat": -28.840427 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517285, "decimalLat": -34.451556 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.160218, "decimalLat": -32.712226 }, "geometry": { "type": "Point", "coordinates": [ 152.16, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79688, "decimalLat": -34.14645 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522735, "decimalLat": -34.463774 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.235288, "decimalLat": -31.422726 }, "geometry": { "type": "Point", "coordinates": [ 152.235, -31.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911912, "decimalLat": -30.867833 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -30.868 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.597672, "decimalLat": -32.732685 }, "geometry": { "type": "Point", "coordinates": [ 149.598, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609028, "decimalLat": -34.45271 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513093, "decimalLat": -34.447216 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.164126, "decimalLat": -31.723834 }, "geometry": { "type": "Point", "coordinates": [ 152.164, -31.724 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78596, "decimalLat": -33.713945 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.746636, "decimalLat": -31.416215 }, "geometry": { "type": "Point", "coordinates": [ 152.747, -31.416 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518001, "decimalLat": -34.453464 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516065, "decimalLat": -34.448268 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19256, "decimalLat": -32.242859 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.243 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37945, "decimalLat": -31.919871 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.824122, "decimalLat": -34.150303 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10402, "decimalLat": -29.485263 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78758, "decimalLat": -33.703693 }, "geometry": { "type": "Point", "coordinates": [ 150.788, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603252, "decimalLat": -34.437 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790866, "decimalLat": -34.139954 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378055, "decimalLat": -31.919202 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518292, "decimalLat": -34.449143 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600254, "decimalLat": -34.427304 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.064997, "decimalLat": -30.901921 }, "geometry": { "type": "Point", "coordinates": [ 153.065, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.00447, "decimalLat": -34.04031 }, "geometry": { "type": "Point", "coordinates": [ 151.004, -34.04 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636187, "decimalLat": -34.423163 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604813, "decimalLat": -34.426888 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.038578, "decimalLat": -32.731657 }, "geometry": { "type": "Point", "coordinates": [ 152.039, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785538, "decimalLat": -33.713213 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.668664, "decimalLat": -33.563918 }, "geometry": { "type": "Point", "coordinates": [ 150.669, -33.564 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520521, "decimalLat": -34.467985 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924339, "decimalLat": -30.506281 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.476799, "decimalLat": -28.932925 }, "geometry": { "type": "Point", "coordinates": [ 153.477, -28.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.134651, "decimalLat": -30.190244 }, "geometry": { "type": "Point", "coordinates": [ 153.135, -30.19 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53253, "decimalLat": -34.477486 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51309, "decimalLat": -34.445828 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522303, "decimalLat": -34.464748 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096612, "decimalLat": -29.491931 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518193, "decimalLat": -34.453576 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78588, "decimalLat": -33.706001 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.806158, "decimalLat": -31.654347 }, "geometry": { "type": "Point", "coordinates": [ 152.806, -31.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615523, "decimalLat": -34.435554 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.849716, "decimalLat": -34.095055 }, "geometry": { "type": "Point", "coordinates": [ 150.85, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913249, "decimalLat": -31.429014 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525187, "decimalLat": -34.471036 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519878, "decimalLat": -34.452565 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.290625, "decimalLat": -28.85211 }, "geometry": { "type": "Point", "coordinates": [ 153.291, -28.852 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532895, "decimalLat": -34.476926 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.477 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412471, "decimalLat": -31.93309 }, "geometry": { "type": "Point", "coordinates": [ 152.412, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103881, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637334, "decimalLat": -34.423798 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534938, "decimalLat": -34.463363 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608981, "decimalLat": -34.434525 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103784, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639125, "decimalLat": -34.491962 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.939548, "decimalLat": -32.739729 }, "geometry": { "type": "Point", "coordinates": [ 151.94, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103452, "decimalLat": -29.488686 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.52315, "decimalLat": -28.68808 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.71994, "decimalLat": -30.570134 }, "geometry": { "type": "Point", "coordinates": [ 151.72, -30.57 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010382, "decimalLat": -33.765331 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -33.765 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.08988, "decimalLat": -29.480588 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.759299, "decimalLat": -30.84178 }, "geometry": { "type": "Point", "coordinates": [ 152.759, -30.842 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.937434, "decimalLat": -29.722443 }, "geometry": { "type": "Point", "coordinates": [ 150.937, -29.722 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924971, "decimalLat": -31.454822 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613161, "decimalLat": -34.441341 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515285, "decimalLat": -34.449253 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394456, "decimalLat": -28.959507 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627228, "decimalLat": -34.420681 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109734, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625737, "decimalLat": -34.386438 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108108, "decimalLat": -29.490605 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875185, "decimalLat": -29.679519 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -29.68 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824738, "decimalLat": -29.505802 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.473352, "decimalLat": -34.488637 }, "geometry": { "type": "Point", "coordinates": [ 150.473, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.219138, "decimalLat": -28.827998 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522414, "decimalLat": -34.465805 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811792, "decimalLat": -31.131426 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -31.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792962, "decimalLat": -31.63998 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603475, "decimalLat": -34.439087 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.490133 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60263, "decimalLat": -34.418759 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 146.564765, "decimalLat": -34.757557 }, "geometry": { "type": "Point", "coordinates": [ 146.565, -34.758 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785511, "decimalLat": -33.713373 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.26733, "decimalLat": -29.150028 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -29.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521709, "decimalLat": -34.46607 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316266, "decimalLat": -28.837077 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870792, "decimalLat": -31.285938 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.286 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109294, "decimalLat": -29.490852 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10991, "decimalLat": -32.730377 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103924, "decimalLat": -29.489559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625035, "decimalLat": -34.388174 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.435675, "decimalLat": -28.571838 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.572 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109776, "decimalLat": -29.490119 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925879, "decimalLat": -31.452754 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072243, "decimalLat": -32.710696 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808991, "decimalLat": -34.098826 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914417, "decimalLat": -31.48522 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.808811, "decimalLat": -31.652367 }, "geometry": { "type": "Point", "coordinates": [ 152.809, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795877, "decimalLat": -31.463092 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917202, "decimalLat": -31.471145 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603023, "decimalLat": -34.424428 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868758, "decimalLat": -29.666954 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885909, "decimalLat": -34.016809 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.017 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091741, "decimalLat": -29.487906 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427361, "decimalLat": -28.981083 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.981 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884514, "decimalLat": -31.439712 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517192, "decimalLat": -34.452095 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096591, "decimalLat": -29.485819 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915743, "decimalLat": -31.451391 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.332042, "decimalLat": -28.712244 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -28.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434849, "decimalLat": -28.627709 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.628 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.774437, "decimalLat": -32.589912 }, "geometry": { "type": "Point", "coordinates": [ 151.774, -32.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3116, "decimalLat": -28.82111 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.636855, "decimalLat": -32.634352 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -32.634 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283294, "decimalLat": -28.814781 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325204, "decimalLat": -28.82563 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626021, "decimalLat": -34.38831 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.353525, "decimalLat": -31.92625 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.05832, "decimalLat": -34.90814 }, "geometry": { "type": "Point", "coordinates": [ 150.058, -34.908 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104106, "decimalLat": -29.477502 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905478, "decimalLat": -31.467655 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.04434, "decimalLat": -31.13455 }, "geometry": { "type": "Point", "coordinates": [ 150.044, -31.135 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555944, "decimalLat": -28.399282 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.642998, "decimalLat": -32.658802 }, "geometry": { "type": "Point", "coordinates": [ 151.643, -32.659 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.697129, "decimalLat": -28.658431 }, "geometry": { "type": "Point", "coordinates": [ 152.697, -28.658 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786461, "decimalLat": -33.703948 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604965, "decimalLat": -34.426927 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516253, "decimalLat": -34.446712 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.107255, "decimalLat": -32.729371 }, "geometry": { "type": "Point", "coordinates": [ 152.107, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637463, "decimalLat": -34.488342 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518445, "decimalLat": -34.44361 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604717, "decimalLat": -34.437507 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90598, "decimalLat": -30.24071 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -30.241 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379693, "decimalLat": -31.917977 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110189, "decimalLat": -29.490185 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92669, "decimalLat": -30.51253 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -30.513 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299584, "decimalLat": -28.825056 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293132, "decimalLat": -28.864658 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639233, "decimalLat": -34.493127 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.968363, "decimalLat": -34.097663 }, "geometry": { "type": "Point", "coordinates": [ 150.968, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559427, "decimalLat": -28.37077 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.371 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10387, "decimalLat": -29.489554 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101864, "decimalLat": -29.489671 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.166184, "decimalLat": -28.649353 }, "geometry": { "type": "Point", "coordinates": [ 153.166, -28.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514784, "decimalLat": -34.441913 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601788, "decimalLat": -34.412458 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601805, "decimalLat": -34.428596 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299634, "decimalLat": -28.825034 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.48052, "decimalLat": -31.998759 }, "geometry": { "type": "Point", "coordinates": [ 152.481, -31.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288292, "decimalLat": -28.809314 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.426888, "decimalLat": -34.428813 }, "geometry": { "type": "Point", "coordinates": [ 150.427, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.061644, "decimalLat": -33.77693 }, "geometry": { "type": "Point", "coordinates": [ 150.062, -33.777 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892179, "decimalLat": -31.447953 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91318, "decimalLat": -31.451323 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916619, "decimalLat": -31.461208 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984248, "decimalLat": -34.094271 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.964472, "decimalLat": -30.394456 }, "geometry": { "type": "Point", "coordinates": [ 152.964, -30.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.442889, "decimalLat": -28.469062 }, "geometry": { "type": "Point", "coordinates": [ 152.443, -28.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62743, "decimalLat": -34.386552 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632614, "decimalLat": -34.418333 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604207, "decimalLat": -34.422233 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637324, "decimalLat": -34.423744 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636197, "decimalLat": -34.422045 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523869, "decimalLat": -34.463716 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919855, "decimalLat": -31.443387 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531003, "decimalLat": -34.470929 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.268125, "decimalLat": -28.888919 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.454265, "decimalLat": -31.936428 }, "geometry": { "type": "Point", "coordinates": [ 152.454, -31.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552133, "decimalLat": -33.491228 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.089719, "decimalLat": -29.480626 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945176, "decimalLat": -36.590676 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.591 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869955, "decimalLat": -29.679624 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -29.68 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.584958, "decimalLat": -34.775614 }, "geometry": { "type": "Point", "coordinates": [ 146.585, -34.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641736, "decimalLat": -34.394096 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644364, "decimalLat": -34.393091 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644072, "decimalLat": -34.394564 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.041112, "decimalLat": -28.459546 }, "geometry": { "type": "Point", "coordinates": [ 153.041, -28.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.859794, "decimalLat": -29.356404 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -29.356 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.54542, "decimalLat": -28.654604 }, "geometry": { "type": "Point", "coordinates": [ 153.545, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851464, "decimalLat": -29.692524 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.345248, "decimalLat": -36.160621 }, "geometry": { "type": "Point", "coordinates": [ 149.345, -36.161 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434451, "decimalLat": -28.719432 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638019, "decimalLat": -34.419925 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.233289, "decimalLat": -28.829497 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -28.829 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520315, "decimalLat": -34.465754 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.190633, "decimalLat": -31.595405 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -31.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091376, "decimalLat": -29.487938 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103559, "decimalLat": -29.485515 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.861601, "decimalLat": -29.682112 }, "geometry": { "type": "Point", "coordinates": [ 152.862, -29.682 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.382276, "decimalLat": -30.785785 }, "geometry": { "type": "Point", "coordinates": [ 152.382, -30.786 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110147, "decimalLat": -29.490255 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517834, "decimalLat": -34.443283 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60629, "decimalLat": -34.433868 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109304, "decimalLat": -29.490815 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786285, "decimalLat": -33.706359 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524614, "decimalLat": -34.452102 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302087, "decimalLat": -28.820919 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606723, "decimalLat": -34.437762 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.582596, "decimalLat": -34.498724 }, "geometry": { "type": "Point", "coordinates": [ 150.583, -34.499 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.247552, "decimalLat": -30.071263 }, "geometry": { "type": "Point", "coordinates": [ 152.248, -30.071 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927264, "decimalLat": -31.465471 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633577, "decimalLat": -34.418514 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627904, "decimalLat": -34.389816 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091371, "decimalLat": -29.487668 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607762, "decimalLat": -34.430715 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851464, "decimalLat": -29.692524 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.453198, "decimalLat": -28.646734 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918126, "decimalLat": -31.485138 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516492, "decimalLat": -34.450035 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06515, "decimalLat": -32.709113 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515017, "decimalLat": -34.451321 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635364, "decimalLat": -34.488626 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603546, "decimalLat": -34.427459 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091103, "decimalLat": -29.487892 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522293, "decimalLat": -34.453335 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633573, "decimalLat": -34.392396 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.125467, "decimalLat": -29.088994 }, "geometry": { "type": "Point", "coordinates": [ 153.125, -29.089 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642041, "decimalLat": -34.396797 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324337, "decimalLat": -36.295798 }, "geometry": { "type": "Point", "coordinates": [ 149.324, -36.296 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915403, "decimalLat": -31.43169 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632735, "decimalLat": -34.418264 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064174, "decimalLat": -32.701665 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898593, "decimalLat": -31.474159 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.193373, "decimalLat": -32.220759 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.221 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343646, "decimalLat": -28.866891 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604327, "decimalLat": -34.424499 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324366, "decimalLat": -28.855875 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.856 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631047, "decimalLat": -34.388263 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104922, "decimalLat": -29.489699 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901022, "decimalLat": -30.500021 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -30.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910311, "decimalLat": -31.471125 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.075901, "decimalLat": -32.766602 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -32.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611681, "decimalLat": -34.419531 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923751, "decimalLat": -31.459238 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519407, "decimalLat": -34.488077 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063835, "decimalLat": -32.706769 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.870732, "decimalLat": -34.038268 }, "geometry": { "type": "Point", "coordinates": [ 150.871, -34.038 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517546, "decimalLat": -34.453031 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.410285, "decimalLat": -28.487113 }, "geometry": { "type": "Point", "coordinates": [ 152.41, -28.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989327, "decimalLat": -34.027328 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.027 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323748, "decimalLat": -28.880788 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.881 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522158, "decimalLat": -34.464159 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.084003, "decimalLat": -32.727197 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81942, "decimalLat": -31.653604 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.654 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614483, "decimalLat": -33.431245 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -33.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618395, "decimalLat": -34.440199 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.603596, "decimalLat": -28.68841 }, "geometry": { "type": "Point", "coordinates": [ 153.604, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.978676, "decimalLat": -34.084597 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -34.085 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.454265, "decimalLat": -31.936428 }, "geometry": { "type": "Point", "coordinates": [ 152.454, -31.936 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381175, "decimalLat": -31.922706 }, "geometry": { "type": "Point", "coordinates": [ 152.381, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635359, "decimalLat": -34.41973 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495959, "decimalLat": -28.660629 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.398348, "decimalLat": -33.489028 }, "geometry": { "type": "Point", "coordinates": [ 149.398, -33.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604722, "decimalLat": -34.427418 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527832, "decimalLat": -34.46477 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516037, "decimalLat": -34.449205 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.100935, "decimalLat": -33.778608 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904476, "decimalLat": -31.4531 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.886119, "decimalLat": -32.275372 }, "geometry": { "type": "Point", "coordinates": [ 151.886, -32.275 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606883, "decimalLat": -34.454273 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.841101, "decimalLat": -32.858409 }, "geometry": { "type": "Point", "coordinates": [ 151.841, -32.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643892, "decimalLat": -34.393254 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.777302, "decimalLat": -30.885013 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109283, "decimalLat": -29.490806 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627874, "decimalLat": -34.420919 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.408923, "decimalLat": -31.932184 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.225129, "decimalLat": -29.977542 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -29.978 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.475849, "decimalLat": -28.734899 }, "geometry": { "type": "Point", "coordinates": [ 153.476, -28.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602566, "decimalLat": -34.424816 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622433, "decimalLat": -34.384048 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949397, "decimalLat": -36.554597 }, "geometry": { "type": "Point", "coordinates": [ 149.949, -36.555 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.406039, "decimalLat": -31.386864 }, "geometry": { "type": "Point", "coordinates": [ 150.406, -31.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926877, "decimalLat": -31.459683 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519333, "decimalLat": -34.448172 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103806, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557353, "decimalLat": -28.388482 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104396, "decimalLat": -29.476946 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.365264, "decimalLat": -28.828356 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.901854, "decimalLat": -34.005716 }, "geometry": { "type": "Point", "coordinates": [ 150.902, -34.006 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616853, "decimalLat": -34.438159 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909022, "decimalLat": -31.490642 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.514736, "decimalLat": -31.761352 }, "geometry": { "type": "Point", "coordinates": [ 152.515, -31.761 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633006, "decimalLat": -34.392845 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.937896, "decimalLat": -29.721364 }, "geometry": { "type": "Point", "coordinates": [ 150.938, -29.721 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102706, "decimalLat": -29.489531 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925302, "decimalLat": -31.45411 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.037048, "decimalLat": -32.728656 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610097, "decimalLat": -34.419022 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637378, "decimalLat": -34.485573 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921764, "decimalLat": -31.457591 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790227, "decimalLat": -31.63917 }, "geometry": { "type": "Point", "coordinates": [ 152.79, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.089203, "decimalLat": -36.228097 }, "geometry": { "type": "Point", "coordinates": [ 149.089, -36.228 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785662, "decimalLat": -33.713216 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6158, "decimalLat": -34.43501 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.045481, "decimalLat": -32.766559 }, "geometry": { "type": "Point", "coordinates": [ 152.045, -32.767 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.370661, "decimalLat": -29.088183 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -29.088 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637303, "decimalLat": -34.423725 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.198681, "decimalLat": -28.842875 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -28.843 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.436467, "decimalLat": -31.818389 }, "geometry": { "type": "Point", "coordinates": [ 152.436, -31.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.123887, "decimalLat": -30.214315 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.214 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525066, "decimalLat": -34.457818 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.801163, "decimalLat": -34.112927 }, "geometry": { "type": "Point", "coordinates": [ 150.801, -34.113 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.329499, "decimalLat": -29.184817 }, "geometry": { "type": "Point", "coordinates": [ 152.329, -29.185 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.069922, "decimalLat": -35.096731 }, "geometry": { "type": "Point", "coordinates": [ 150.07, -35.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614277, "decimalLat": -34.429634 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513306, "decimalLat": -34.445886 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.000349, "decimalLat": -34.060319 }, "geometry": { "type": "Point", "coordinates": [ 151.0, -34.06 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520432, "decimalLat": -34.465819 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516902, "decimalLat": -34.446464 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.189109, "decimalLat": -34.539893 }, "geometry": { "type": "Point", "coordinates": [ 150.189, -34.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101209, "decimalLat": -29.489788 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623195, "decimalLat": -34.384027 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769485, "decimalLat": -29.449249 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -29.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516161, "decimalLat": -34.446864 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.690113, "decimalLat": -33.149909 }, "geometry": { "type": "Point", "coordinates": [ 149.69, -33.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37362, "decimalLat": -31.9144 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017542, "decimalLat": -29.014133 }, "geometry": { "type": "Point", "coordinates": [ 153.018, -29.014 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09525, "decimalLat": -29.483481 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.1172, "decimalLat": -32.7647 }, "geometry": { "type": "Point", "coordinates": [ 152.117, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637329, "decimalLat": -34.486924 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627851, "decimalLat": -34.389734 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.705196, "decimalLat": -32.635735 }, "geometry": { "type": "Point", "coordinates": [ 151.705, -32.636 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.996929, "decimalLat": -34.050017 }, "geometry": { "type": "Point", "coordinates": [ 150.997, -34.05 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.600439, "decimalLat": -32.547632 }, "geometry": { "type": "Point", "coordinates": [ 151.6, -32.548 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401778, "decimalLat": -28.260132 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637299, "decimalLat": -34.485283 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.092394, "decimalLat": -28.783947 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -28.784 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.739677, "decimalLat": -30.477665 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -30.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.099467, "decimalLat": -33.779232 }, "geometry": { "type": "Point", "coordinates": [ 150.099, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624526, "decimalLat": -34.388128 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.943663, "decimalLat": -32.771163 }, "geometry": { "type": "Point", "coordinates": [ 151.944, -32.771 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611406, "decimalLat": -34.419643 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880375, "decimalLat": -31.435946 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926226, "decimalLat": -31.454536 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894407, "decimalLat": -31.430976 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.832154, "decimalLat": -29.638267 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -29.638 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109734, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.774605, "decimalLat": -30.109379 }, "geometry": { "type": "Point", "coordinates": [ 152.775, -30.109 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609404, "decimalLat": -28.661237 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78491, "decimalLat": -33.716468 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52271, "decimalLat": -34.464252 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627376, "decimalLat": -34.421189 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607846, "decimalLat": -34.422043 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525515, "decimalLat": -34.459945 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.866933, "decimalLat": -31.306324 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -31.306 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522414, "decimalLat": -34.465805 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339182, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607304, "decimalLat": -34.4357 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621733, "decimalLat": -34.397657 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615956, "decimalLat": -34.436401 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603031, "decimalLat": -34.417694 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405964, "decimalLat": -32.03858 }, "geometry": { "type": "Point", "coordinates": [ 152.406, -32.039 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.701348, "decimalLat": -31.489794 }, "geometry": { "type": "Point", "coordinates": [ 152.701, -31.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784532, "decimalLat": -33.713408 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.74064, "decimalLat": -30.47779 }, "geometry": { "type": "Point", "coordinates": [ 151.741, -30.478 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786719, "decimalLat": -33.703707 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639023, "decimalLat": -34.493259 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607667, "decimalLat": -34.422211 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.2405, "decimalLat": -30.043804 }, "geometry": { "type": "Point", "coordinates": [ 152.241, -30.044 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637312, "decimalLat": -34.423788 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633785, "decimalLat": -34.418464 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811499, "decimalLat": -29.514934 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -29.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104128, "decimalLat": -29.480061 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32981, "decimalLat": -28.93367 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524212, "decimalLat": -34.466473 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783631, "decimalLat": -33.717511 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615431, "decimalLat": -34.428854 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623905, "decimalLat": -34.384681 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631169, "decimalLat": -34.387409 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06412, "decimalLat": -33.768894 }, "geometry": { "type": "Point", "coordinates": [ 150.064, -33.769 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06476, "decimalLat": -32.699654 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.7 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604126, "decimalLat": -34.438766 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520298, "decimalLat": -34.465591 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.563856, "decimalLat": -34.5 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -34.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39743, "decimalLat": -28.259978 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898586, "decimalLat": -31.439154 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631015, "decimalLat": -34.388227 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5295, "decimalLat": -34.459142 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.702147, "decimalLat": -33.503703 }, "geometry": { "type": "Point", "coordinates": [ 150.702, -33.504 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624555, "decimalLat": -34.385929 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615848, "decimalLat": -34.432919 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636063, "decimalLat": -34.485854 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.053038, "decimalLat": -28.446426 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -28.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609595, "decimalLat": -28.661299 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343646, "decimalLat": -28.866891 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631243, "decimalLat": -34.387456 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784145, "decimalLat": -33.717423 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.290554, "decimalLat": -28.948697 }, "geometry": { "type": "Point", "coordinates": [ 153.291, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525451, "decimalLat": -34.459899 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930406, "decimalLat": -30.436573 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -30.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786686, "decimalLat": -33.705538 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.71658, "decimalLat": -33.45018 }, "geometry": { "type": "Point", "coordinates": [ 150.717, -33.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.52954, "decimalLat": -28.54593 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -28.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848589, "decimalLat": -34.049453 }, "geometry": { "type": "Point", "coordinates": [ 150.849, -34.049 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621387, "decimalLat": -34.397975 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.012908, "decimalLat": -30.488945 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -30.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.043613, "decimalLat": -30.450068 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -30.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638991, "decimalLat": -34.492059 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.013656, "decimalLat": -34.055279 }, "geometry": { "type": "Point", "coordinates": [ 151.014, -34.055 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786066, "decimalLat": -33.709601 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630932, "decimalLat": -34.388477 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640015, "decimalLat": -34.398444 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610112, "decimalLat": -34.420023 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.363072, "decimalLat": -29.383336 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -29.383 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621006, "decimalLat": -33.445362 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -33.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076805, "decimalLat": -32.722636 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517384, "decimalLat": -34.441597 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099787, "decimalLat": -29.493454 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606875, "decimalLat": -34.4553 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630704, "decimalLat": -34.388834 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520037, "decimalLat": -34.446429 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615902, "decimalLat": -34.436391 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909842, "decimalLat": -31.467422 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.000187, "decimalLat": -28.640453 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519193, "decimalLat": -34.459889 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.206394, "decimalLat": -28.840079 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880381, "decimalLat": -29.676992 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -29.677 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604294, "decimalLat": -34.438977 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635219, "decimalLat": -34.420457 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513066, "decimalLat": -34.447765 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597931, "decimalLat": -34.417999 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892899, "decimalLat": -31.467024 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092995, "decimalLat": -29.493104 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103918, "decimalLat": -29.489596 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.112657, "decimalLat": -29.488485 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.591317, "decimalLat": -34.587106 }, "geometry": { "type": "Point", "coordinates": [ 150.591, -34.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6053, "decimalLat": -34.437302 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454912, "decimalLat": -28.648522 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.649 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79793, "decimalLat": -31.12443 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.124 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521976, "decimalLat": -34.464417 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626805, "decimalLat": -34.420988 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103859, "decimalLat": -29.485043 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.083349, "decimalLat": -32.728057 }, "geometry": { "type": "Point", "coordinates": [ 152.083, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.080776, "decimalLat": -29.772271 }, "geometry": { "type": "Point", "coordinates": [ 151.081, -29.772 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625123, "decimalLat": -34.385453 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517335, "decimalLat": -34.452044 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515902, "decimalLat": -34.448625 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601703, "decimalLat": -34.431047 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896968, "decimalLat": -31.475164 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925299, "decimalLat": -31.454119 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557252, "decimalLat": -28.397271 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642743, "decimalLat": -34.394638 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.849018, "decimalLat": -32.033369 }, "geometry": { "type": "Point", "coordinates": [ 151.849, -32.033 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60539, "decimalLat": -34.423834 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627704, "decimalLat": -34.421898 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98682, "decimalLat": -34.090893 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108124, "decimalLat": -29.490189 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.549994, "decimalLat": -33.567432 }, "geometry": { "type": "Point", "coordinates": [ 149.55, -33.567 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09975, "decimalLat": -29.491553 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.899382, "decimalLat": -33.9525 }, "geometry": { "type": "Point", "coordinates": [ 150.899, -33.952 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556602, "decimalLat": -28.372279 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.372 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797769, "decimalLat": -31.126 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525114, "decimalLat": -34.458395 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103688, "decimalLat": -29.485828 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.933658, "decimalLat": -29.681698 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -29.682 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302025, "decimalLat": -28.81949 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076725, "decimalLat": -32.722788 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657593, "decimalLat": -34.455715 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515134, "decimalLat": -34.446284 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.280284, "decimalLat": -31.494442 }, "geometry": { "type": "Point", "coordinates": [ 152.28, -31.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40417, "decimalLat": -31.94582 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.377985, "decimalLat": -31.927605 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101285, "decimalLat": -29.4899 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.002505, "decimalLat": -36.541329 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.541 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513777, "decimalLat": -34.447266 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79321, "decimalLat": -31.64232 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599562, "decimalLat": -28.71389 }, "geometry": { "type": "Point", "coordinates": [ 153.6, -28.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.067778, "decimalLat": -33.171111 }, "geometry": { "type": "Point", "coordinates": [ 151.068, -33.171 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.560672, "decimalLat": -33.704938 }, "geometry": { "type": "Point", "coordinates": [ 149.561, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342482, "decimalLat": -28.805797 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.953593, "decimalLat": -30.426799 }, "geometry": { "type": "Point", "coordinates": [ 152.954, -30.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.7841, "decimalLat": -31.1123 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.112 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.788232, "decimalLat": -34.187288 }, "geometry": { "type": "Point", "coordinates": [ 150.788, -34.187 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1668, "decimalLat": -28.857761 }, "geometry": { "type": "Point", "coordinates": [ 153.167, -28.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639833, "decimalLat": -34.400298 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659243, "decimalLat": -34.457406 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631038, "decimalLat": -34.390102 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.801923, "decimalLat": -31.125618 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610322, "decimalLat": -34.419144 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605392, "decimalLat": -34.423771 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090904, "decimalLat": -29.487439 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.286418, "decimalLat": -29.025463 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -29.025 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.507953, "decimalLat": -34.405156 }, "geometry": { "type": "Point", "coordinates": [ 150.508, -34.405 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.973867, "decimalLat": -31.786861 }, "geometry": { "type": "Point", "coordinates": [ 150.974, -31.787 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.576341, "decimalLat": -30.518654 }, "geometry": { "type": "Point", "coordinates": [ 152.576, -30.519 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897471, "decimalLat": -29.623469 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -29.623 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78551, "decimalLat": -33.710552 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926218, "decimalLat": -31.471752 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609182, "decimalLat": -34.420591 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638531, "decimalLat": -34.490635 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064777, "decimalLat": -32.702123 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52564, "decimalLat": -34.464194 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.79902, "decimalLat": -32.56969 }, "geometry": { "type": "Point", "coordinates": [ 151.799, -32.57 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.834274, "decimalLat": -34.074582 }, "geometry": { "type": "Point", "coordinates": [ 150.834, -34.075 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623775, "decimalLat": -34.383524 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624544, "decimalLat": -34.385937 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.003188, "decimalLat": -29.18344 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -29.183 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602488, "decimalLat": -34.424868 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564428, "decimalLat": -28.388822 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607453, "decimalLat": -34.439616 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632752, "decimalLat": -34.418823 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632705, "decimalLat": -34.418939 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62782, "decimalLat": -34.397415 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59665, "decimalLat": -34.409914 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522389, "decimalLat": -34.465183 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629579, "decimalLat": -28.637434 }, "geometry": { "type": "Point", "coordinates": [ 153.63, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928246, "decimalLat": -31.47188 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.765325, "decimalLat": -32.698008 }, "geometry": { "type": "Point", "coordinates": [ 151.765, -32.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638303, "decimalLat": -34.490982 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06455, "decimalLat": -34.9085 }, "geometry": { "type": "Point", "coordinates": [ 150.065, -34.908 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615022, "decimalLat": -34.43137 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516131, "decimalLat": -34.44753 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.540871, "decimalLat": -30.211706 }, "geometry": { "type": "Point", "coordinates": [ 152.541, -30.212 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.70031, "decimalLat": -34.29345 }, "geometry": { "type": "Point", "coordinates": [ 150.7, -34.293 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.075675, "decimalLat": -30.35297 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -30.353 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103366, "decimalLat": -29.489928 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616208, "decimalLat": -34.429464 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521653, "decimalLat": -34.465763 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908943, "decimalLat": -28.998474 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -28.998 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514492, "decimalLat": -34.443332 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62991, "decimalLat": -34.395391 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528975, "decimalLat": -34.471419 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637301, "decimalLat": -34.423806 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3093, "decimalLat": -28.824171 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.122087, "decimalLat": -31.146344 }, "geometry": { "type": "Point", "coordinates": [ 150.122, -31.146 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79781, "decimalLat": -34.13669 }, "geometry": { "type": "Point", "coordinates": [ 150.798, -34.137 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.601403, "decimalLat": -31.651525 }, "geometry": { "type": "Point", "coordinates": [ 152.601, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797833, "decimalLat": -31.509279 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103774, "decimalLat": -29.485632 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794224, "decimalLat": -31.643813 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.644 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.05698, "decimalLat": -30.35793 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -30.358 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616559, "decimalLat": -34.430111 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884882, "decimalLat": -30.242155 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -30.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515774, "decimalLat": -34.446703 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103774, "decimalLat": -29.485632 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.658078, "decimalLat": -31.293099 }, "geometry": { "type": "Point", "coordinates": [ 152.658, -31.293 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.22848, "decimalLat": -28.89182 }, "geometry": { "type": "Point", "coordinates": [ 153.228, -28.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639158, "decimalLat": -34.491936 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925742, "decimalLat": -31.447654 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926653, "decimalLat": -31.454718 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.729144, "decimalLat": -31.221146 }, "geometry": { "type": "Point", "coordinates": [ 152.729, -31.221 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.38445, "decimalLat": -28.786676 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -28.787 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342482, "decimalLat": -28.805797 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557603, "decimalLat": -28.394378 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63094, "decimalLat": -34.393995 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637386, "decimalLat": -34.423871 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521653, "decimalLat": -34.465763 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.35109, "decimalLat": -36.152128 }, "geometry": { "type": "Point", "coordinates": [ 149.351, -36.152 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793781, "decimalLat": -31.641562 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626709, "decimalLat": -34.42132 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522853, "decimalLat": -34.450957 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.218514, "decimalLat": -28.82476 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634308, "decimalLat": -34.488651 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523912, "decimalLat": -34.452655 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40078, "decimalLat": -28.258427 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278692, "decimalLat": -28.662138 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523912, "decimalLat": -34.452655 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.408876, "decimalLat": -31.941279 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556042, "decimalLat": -28.399591 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87607, "decimalLat": -29.677883 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -29.678 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519536, "decimalLat": -34.447194 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609644, "decimalLat": -34.436431 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.759361, "decimalLat": -31.245812 }, "geometry": { "type": "Point", "coordinates": [ 152.759, -31.246 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638866, "decimalLat": -34.492652 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.022335, "decimalLat": -28.489141 }, "geometry": { "type": "Point", "coordinates": [ 153.022, -28.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789578, "decimalLat": -34.194548 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.195 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795197, "decimalLat": -31.644405 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -31.644 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.80582, "decimalLat": -31.675865 }, "geometry": { "type": "Point", "coordinates": [ 152.806, -31.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60684, "decimalLat": -34.438603 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108167, "decimalLat": -29.490628 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.758368, "decimalLat": -32.401848 }, "geometry": { "type": "Point", "coordinates": [ 151.758, -32.402 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842335, "decimalLat": -34.068546 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786346, "decimalLat": -33.706435 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103779, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108194, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628032, "decimalLat": -34.389873 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606737, "decimalLat": -34.43458 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517135, "decimalLat": -34.447803 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603302, "decimalLat": -34.427237 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28477, "decimalLat": -28.868925 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521146, "decimalLat": -34.453843 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657671, "decimalLat": -34.456402 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638843, "decimalLat": -34.493066 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783143, "decimalLat": -33.718624 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51414, "decimalLat": -34.44639 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108113, "decimalLat": -29.490189 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091098, "decimalLat": -29.487766 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899836, "decimalLat": -31.466336 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516554, "decimalLat": -34.449044 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102706, "decimalLat": -29.487392 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629461, "decimalLat": -34.388584 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103876, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108097, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642867, "decimalLat": -34.395659 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515188, "decimalLat": -34.449233 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523834, "decimalLat": -34.46377 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605694, "decimalLat": -34.427681 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559739, "decimalLat": -28.393697 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604899, "decimalLat": -34.426944 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949397, "decimalLat": -36.554597 }, "geometry": { "type": "Point", "coordinates": [ 149.949, -36.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513074, "decimalLat": -34.447125 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607943, "decimalLat": -34.433882 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103913, "decimalLat": -29.489563 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06622, "decimalLat": -32.71155 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103682, "decimalLat": -29.485781 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.753132, "decimalLat": -31.418317 }, "geometry": { "type": "Point", "coordinates": [ 152.753, -31.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.38252, "decimalLat": -31.949035 }, "geometry": { "type": "Point", "coordinates": [ 152.383, -31.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.424916, "decimalLat": -31.947999 }, "geometry": { "type": "Point", "coordinates": [ 152.425, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624298, "decimalLat": -34.386158 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.531713, "decimalLat": -28.315525 }, "geometry": { "type": "Point", "coordinates": [ 153.532, -28.316 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644396, "decimalLat": -34.391947 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61469, "decimalLat": -34.428876 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.126344, "decimalLat": -32.719607 }, "geometry": { "type": "Point", "coordinates": [ 152.126, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627322, "decimalLat": -34.389994 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517579, "decimalLat": -34.446757 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.846327, "decimalLat": -32.43428 }, "geometry": { "type": "Point", "coordinates": [ 149.846, -32.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.171465, "decimalLat": -32.662939 }, "geometry": { "type": "Point", "coordinates": [ 152.171, -32.663 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784241, "decimalLat": -33.716202 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.100605, "decimalLat": -32.73438 }, "geometry": { "type": "Point", "coordinates": [ 152.101, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278824, "decimalLat": -28.874355 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104096, "decimalLat": -29.479869 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901479, "decimalLat": -31.442521 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615452, "decimalLat": -34.428863 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792583, "decimalLat": -31.640093 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534611, "decimalLat": -34.459309 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.617496, "decimalLat": -31.53719 }, "geometry": { "type": "Point", "coordinates": [ 152.617, -31.537 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640035, "decimalLat": -34.397741 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609192, "decimalLat": -34.420618 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90282, "decimalLat": -30.23946 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.239 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518448, "decimalLat": -34.437264 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437486, "decimalLat": -28.991078 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.991 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600232, "decimalLat": -34.427294 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51888, "decimalLat": -34.447307 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.354414, "decimalLat": -36.264873 }, "geometry": { "type": "Point", "coordinates": [ 149.354, -36.265 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605215, "decimalLat": -34.437994 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.347109, "decimalLat": -36.156702 }, "geometry": { "type": "Point", "coordinates": [ 149.347, -36.157 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.074307, "decimalLat": -32.737584 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093315, "decimalLat": -29.492686 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189959, "decimalLat": -32.223426 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848803, "decimalLat": -34.061856 }, "geometry": { "type": "Point", "coordinates": [ 150.849, -34.062 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.854036, "decimalLat": -34.08393 }, "geometry": { "type": "Point", "coordinates": [ 150.854, -34.084 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5622, "decimalLat": -28.382031 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.382 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.407043, "decimalLat": -28.980759 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.981 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1038, "decimalLat": -29.485557 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077227, "decimalLat": -32.722495 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521068, "decimalLat": -34.46677 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.992049, "decimalLat": -34.02504 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.737887, "decimalLat": -34.303706 }, "geometry": { "type": "Point", "coordinates": [ 150.738, -34.304 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.00311, "decimalLat": -29.183413 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -29.183 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82517, "decimalLat": -31.27014 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.27 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.883858, "decimalLat": -34.018485 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.018 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342482, "decimalLat": -28.805797 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276439, "decimalLat": -28.818955 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192632, "decimalLat": -32.228945 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516361, "decimalLat": -34.450023 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.205871, "decimalLat": -28.8389 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -28.839 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615634, "decimalLat": -34.430895 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.606185, "decimalLat": -30.34141 }, "geometry": { "type": "Point", "coordinates": [ 152.606, -30.341 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10819, "decimalLat": -28.739989 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -28.74 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887234, "decimalLat": -31.426437 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.443123, "decimalLat": -31.941959 }, "geometry": { "type": "Point", "coordinates": [ 152.443, -31.942 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.37439, "decimalLat": -36.1536 }, "geometry": { "type": "Point", "coordinates": [ 149.374, -36.154 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632841, "decimalLat": -34.417986 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.682457, "decimalLat": -32.515849 }, "geometry": { "type": "Point", "coordinates": [ 151.682, -32.516 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323255, "decimalLat": -28.828887 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.829 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517608, "decimalLat": -34.440646 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607898, "decimalLat": -34.454175 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518097, "decimalLat": -34.447624 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.417498, "decimalLat": -31.961785 }, "geometry": { "type": "Point", "coordinates": [ 152.417, -31.962 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.349231, "decimalLat": -31.217538 }, "geometry": { "type": "Point", "coordinates": [ 151.349, -31.218 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556027, "decimalLat": -28.398847 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786957, "decimalLat": -31.629316 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914932, "decimalLat": -31.456363 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525348, "decimalLat": -34.464134 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92823, "decimalLat": -31.465844 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625751, "decimalLat": -34.39558 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82929, "decimalLat": -31.26329 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -31.263 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.258453, "decimalLat": -28.798142 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -28.798 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520916, "decimalLat": -34.465297 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626811, "decimalLat": -34.421178 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339182, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.998686, "decimalLat": -30.53081 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -30.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64317, "decimalLat": -34.396485 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606675, "decimalLat": -34.452024 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822066, "decimalLat": -34.101309 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.686971, "decimalLat": -34.356454 }, "geometry": { "type": "Point", "coordinates": [ 150.687, -34.356 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616916, "decimalLat": -34.44091 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.413438, "decimalLat": -29.030985 }, "geometry": { "type": "Point", "coordinates": [ 153.413, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.975988, "decimalLat": -30.403008 }, "geometry": { "type": "Point", "coordinates": [ 152.976, -30.403 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633208, "decimalLat": -34.418092 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103913, "decimalLat": -29.489573 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625768, "decimalLat": -34.386493 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081413, "decimalLat": -32.776174 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518749, "decimalLat": -34.447304 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520305, "decimalLat": -34.447299 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103827, "decimalLat": -29.485571 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895055, "decimalLat": -31.460843 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52835, "decimalLat": -34.464934 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104058, "decimalLat": -29.485314 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.449605, "decimalLat": -33.529732 }, "geometry": { "type": "Point", "coordinates": [ 149.45, -33.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633677, "decimalLat": -34.418426 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782519, "decimalLat": -33.71865 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409255, "decimalLat": -31.940165 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.94 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785095, "decimalLat": -33.713695 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785933, "decimalLat": -33.709177 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10034, "decimalLat": -32.733265 }, "geometry": { "type": "Point", "coordinates": [ 152.1, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606643, "decimalLat": -34.434452 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637387, "decimalLat": -34.423817 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093388, "decimalLat": -29.488854 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658749, "decimalLat": -34.455214 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334283, "decimalLat": -28.277245 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.277 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643464, "decimalLat": -34.404632 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.405 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603776, "decimalLat": -34.431231 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913307, "decimalLat": -31.452795 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926621, "decimalLat": -31.459696 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.999348, "decimalLat": -34.061264 }, "geometry": { "type": "Point", "coordinates": [ 150.999, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639813, "decimalLat": -34.400243 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640533, "decimalLat": -34.494135 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790816, "decimalLat": -34.18447 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.184 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659437, "decimalLat": -34.458275 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071137, "decimalLat": -30.88339 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.883 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.41535, "decimalLat": -31.933351 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.073287, "decimalLat": -30.296539 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -30.297 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.445223, "decimalLat": -28.625494 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.625 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908451, "decimalLat": -31.44235 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.988732, "decimalLat": -34.02772 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.028 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103913, "decimalLat": -29.489605 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989011, "decimalLat": -34.028525 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.148745, "decimalLat": -35.088795 }, "geometry": { "type": "Point", "coordinates": [ 150.149, -35.089 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602477, "decimalLat": -34.419928 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925113, "decimalLat": -31.454107 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891185, "decimalLat": -31.470657 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.32554, "decimalLat": -36.292067 }, "geometry": { "type": "Point", "coordinates": [ 149.326, -36.292 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.17047, "decimalLat": -28.936208 }, "geometry": { "type": "Point", "coordinates": [ 153.17, -28.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516195, "decimalLat": -34.445359 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609117, "decimalLat": -34.420554 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.609345, "decimalLat": -32.544025 }, "geometry": { "type": "Point", "coordinates": [ 151.609, -32.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892673, "decimalLat": -31.447286 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867857, "decimalLat": -29.66741 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315583, "decimalLat": -28.825211 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610279, "decimalLat": -34.419107 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838874, "decimalLat": -34.055558 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811477, "decimalLat": -31.13853 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -31.139 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.632075, "decimalLat": -30.226366 }, "geometry": { "type": "Point", "coordinates": [ 152.632, -30.226 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.546503, "decimalLat": -28.734248 }, "geometry": { "type": "Point", "coordinates": [ 153.547, -28.734 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.77941, "decimalLat": -32.311119 }, "geometry": { "type": "Point", "coordinates": [ 151.779, -32.311 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.652116, "decimalLat": -34.399407 }, "geometry": { "type": "Point", "coordinates": [ 150.652, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.937136, "decimalLat": -34.113796 }, "geometry": { "type": "Point", "coordinates": [ 150.937, -34.114 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.218303, "decimalLat": -32.825211 }, "geometry": { "type": "Point", "coordinates": [ 151.218, -32.825 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099799, "decimalLat": -29.491618 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795629, "decimalLat": -31.137865 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -31.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609202, "decimalLat": -34.420627 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124169, "decimalLat": -30.267407 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.267 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.972959, "decimalLat": -34.122943 }, "geometry": { "type": "Point", "coordinates": [ 150.973, -34.123 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520464, "decimalLat": -34.454082 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.547119, "decimalLat": -28.675864 }, "geometry": { "type": "Point", "coordinates": [ 153.547, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93841, "decimalLat": -30.40561 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -30.406 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905541, "decimalLat": -31.436547 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624174, "decimalLat": -34.388635 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.384475, "decimalLat": -31.917783 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515045, "decimalLat": -34.447797 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929709, "decimalLat": -29.725906 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522458, "decimalLat": -34.46431 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602978, "decimalLat": -34.437076 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103935, "decimalLat": -29.485314 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.682587, "decimalLat": -33.567198 }, "geometry": { "type": "Point", "coordinates": [ 150.683, -33.567 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521105, "decimalLat": -34.435352 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.870275, "decimalLat": -34.044949 }, "geometry": { "type": "Point", "coordinates": [ 150.87, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379287, "decimalLat": -31.918889 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09974, "decimalLat": -29.491543 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.841123, "decimalLat": -31.441926 }, "geometry": { "type": "Point", "coordinates": [ 152.841, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60748, "decimalLat": -34.431818 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.486827, "decimalLat": -34.461697 }, "geometry": { "type": "Point", "coordinates": [ 150.487, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896265, "decimalLat": -31.433785 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786012, "decimalLat": -33.711988 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639446, "decimalLat": -34.493303 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627384, "decimalLat": -34.390131 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103763, "decimalLat": -29.48566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517978, "decimalLat": -34.447973 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915126, "decimalLat": -31.467471 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910643, "decimalLat": -31.44136 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609852, "decimalLat": -34.455097 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.735614, "decimalLat": -34.298063 }, "geometry": { "type": "Point", "coordinates": [ 150.736, -34.298 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.991088, "decimalLat": -33.980476 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -33.98 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520261, "decimalLat": -34.465726 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865584, "decimalLat": -28.566259 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -28.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.484799, "decimalLat": -30.643623 }, "geometry": { "type": "Point", "coordinates": [ 151.485, -30.644 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.866809, "decimalLat": -30.404843 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -30.405 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564733, "decimalLat": -28.386918 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.421208, "decimalLat": -34.46879 }, "geometry": { "type": "Point", "coordinates": [ 150.421, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524503, "decimalLat": -34.454029 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602239, "decimalLat": -34.427135 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637421, "decimalLat": -34.423772 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91361, "decimalLat": -31.42747 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.703279, "decimalLat": -33.413568 }, "geometry": { "type": "Point", "coordinates": [ 150.703, -33.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603316, "decimalLat": -34.427147 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109476, "decimalLat": -29.490493 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784909, "decimalLat": -33.716431 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.8237, "decimalLat": -30.44822 }, "geometry": { "type": "Point", "coordinates": [ 151.824, -30.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278029, "decimalLat": -28.67904 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631276, "decimalLat": -34.420255 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.055007, "decimalLat": -28.551728 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -28.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00956, "decimalLat": -32.73332 }, "geometry": { "type": "Point", "coordinates": [ 152.01, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.449558, "decimalLat": -28.630671 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5204, "decimalLat": -34.454045 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.118221, "decimalLat": -28.619466 }, "geometry": { "type": "Point", "coordinates": [ 153.118, -28.619 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.783415, "decimalLat": -32.587629 }, "geometry": { "type": "Point", "coordinates": [ 151.783, -32.588 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640139, "decimalLat": -34.39869 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637205, "decimalLat": -34.4222 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513809, "decimalLat": -34.447285 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093785, "decimalLat": -29.493075 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892113, "decimalLat": -31.4474 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10331, "decimalLat": -29.486757 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557292, "decimalLat": -28.39738 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606975, "decimalLat": -34.455248 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60237, "decimalLat": -28.69032 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60237, "decimalLat": -28.69032 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281175, "decimalLat": -28.858628 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.859 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51888, "decimalLat": -34.447307 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522157, "decimalLat": -34.464186 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40417, "decimalLat": -31.94582 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.71246, "decimalLat": -34.1883 }, "geometry": { "type": "Point", "coordinates": [ 150.712, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615843, "decimalLat": -34.436164 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093383, "decimalLat": -29.492599 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.157975, "decimalLat": -28.92735 }, "geometry": { "type": "Point", "coordinates": [ 153.158, -28.927 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824998, "decimalLat": -29.81128 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636136, "decimalLat": -34.420367 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625536, "decimalLat": -34.399309 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616703, "decimalLat": -34.433477 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604034, "decimalLat": -34.427135 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.53215, "decimalLat": -28.703269 }, "geometry": { "type": "Point", "coordinates": [ 153.532, -28.703 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.353433, "decimalLat": -28.882608 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -28.883 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616514, "decimalLat": -34.437818 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633916, "decimalLat": -34.392204 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.883228, "decimalLat": -33.250899 }, "geometry": { "type": "Point", "coordinates": [ 150.883, -33.251 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604233, "decimalLat": -34.428554 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.407376, "decimalLat": -33.458229 }, "geometry": { "type": "Point", "coordinates": [ 149.407, -33.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913069, "decimalLat": -31.427941 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602627, "decimalLat": -34.418867 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288292, "decimalLat": -28.809314 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519054, "decimalLat": -34.436609 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635881, "decimalLat": -34.41937 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514445, "decimalLat": -34.446017 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.823151, "decimalLat": -32.000968 }, "geometry": { "type": "Point", "coordinates": [ 151.823, -32.001 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915547, "decimalLat": -31.444673 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604314, "decimalLat": -34.426861 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529875, "decimalLat": -34.471176 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634188, "decimalLat": -34.488657 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.3177, "decimalLat": -29.4798 }, "geometry": { "type": "Point", "coordinates": [ 152.318, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.826826, "decimalLat": -32.382287 }, "geometry": { "type": "Point", "coordinates": [ 149.827, -32.382 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52161, "decimalLat": -34.465735 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288292, "decimalLat": -28.809314 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612376, "decimalLat": -34.449413 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629674, "decimalLat": -34.420747 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514634, "decimalLat": -34.447355 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639217, "decimalLat": -34.392785 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614506, "decimalLat": -34.429251 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10624, "decimalLat": -30.32532 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -30.325 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863224, "decimalLat": -31.459299 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597077, "decimalLat": -34.414385 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520412, "decimalLat": -34.465765 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59741, "decimalLat": -34.409947 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559492, "decimalLat": -28.389838 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.209959, "decimalLat": -34.563126 }, "geometry": { "type": "Point", "coordinates": [ 150.21, -34.563 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51956, "decimalLat": -34.447095 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.834686, "decimalLat": -34.073462 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518482, "decimalLat": -34.457423 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796347, "decimalLat": -31.522447 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -31.522 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.005654, "decimalLat": -29.185057 }, "geometry": { "type": "Point", "coordinates": [ 153.006, -29.185 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535583, "decimalLat": -34.462529 }, "geometry": { "type": "Point", "coordinates": [ 150.536, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288292, "decimalLat": -28.809314 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.798743, "decimalLat": -34.189459 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.189 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.084295, "decimalLat": -32.729472 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110313, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.491708, "decimalLat": -28.231058 }, "geometry": { "type": "Point", "coordinates": [ 153.492, -28.231 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628098, "decimalLat": -34.42105 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867846, "decimalLat": -29.667396 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604284, "decimalLat": -34.42677 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925408, "decimalLat": -31.453849 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633132, "decimalLat": -34.418461 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608012, "decimalLat": -28.690047 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522383, "decimalLat": -34.465733 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.802126, "decimalLat": -30.325185 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -30.325 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564237, "decimalLat": -28.387719 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645121, "decimalLat": -34.398669 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614992, "decimalLat": -34.432821 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278803, "decimalLat": -28.994789 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.995 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557385, "decimalLat": -28.400362 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.780333, "decimalLat": -32.714185 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63873, "decimalLat": -34.489349 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519625, "decimalLat": -34.45521 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278539, "decimalLat": -28.819149 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076416, "decimalLat": -32.763595 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -32.764 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.186704, "decimalLat": -32.23975 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -32.24 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514355, "decimalLat": -34.446502 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878731, "decimalLat": -29.662824 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.807846, "decimalLat": -32.35519 }, "geometry": { "type": "Point", "coordinates": [ 149.808, -32.355 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613704, "decimalLat": -34.431047 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.549897, "decimalLat": -34.462307 }, "geometry": { "type": "Point", "coordinates": [ 150.55, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108012, "decimalLat": -29.490437 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104037, "decimalLat": -29.485113 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907545, "decimalLat": -31.45331 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557729, "decimalLat": -28.371592 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.372 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60785, "decimalLat": -34.455482 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.981559, "decimalLat": -31.186681 }, "geometry": { "type": "Point", "coordinates": [ 152.982, -31.187 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297816, "decimalLat": -28.827692 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.840003, "decimalLat": -31.593183 }, "geometry": { "type": "Point", "coordinates": [ 152.84, -31.593 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604233, "decimalLat": -34.437677 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896105, "decimalLat": -31.414552 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.423251, "decimalLat": -31.826522 }, "geometry": { "type": "Point", "coordinates": [ 152.423, -31.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630797, "decimalLat": -34.420633 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62422, "decimalLat": -34.388924 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.072583, "decimalLat": -33.145764 }, "geometry": { "type": "Point", "coordinates": [ 151.073, -33.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521367, "decimalLat": -34.435682 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533297, "decimalLat": -34.476195 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.560247, "decimalLat": -33.704611 }, "geometry": { "type": "Point", "coordinates": [ 149.56, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515697, "decimalLat": -34.450767 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517424, "decimalLat": -34.447583 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889456, "decimalLat": -31.443489 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78508, "decimalLat": -33.710839 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612165, "decimalLat": -34.432369 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557648, "decimalLat": -28.398661 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635407, "decimalLat": -34.419956 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605942, "decimalLat": -34.432329 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513049, "decimalLat": -34.447242 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516435, "decimalLat": -34.45968 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879669, "decimalLat": -31.449383 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626893, "decimalLat": -34.420954 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842335, "decimalLat": -34.068546 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283377, "decimalLat": -28.830771 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627366, "decimalLat": -34.421189 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628037, "decimalLat": -34.420895 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87316, "decimalLat": -29.68017 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -29.68 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914421, "decimalLat": -31.451443 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.537089, "decimalLat": -28.620414 }, "geometry": { "type": "Point", "coordinates": [ 153.537, -28.62 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104155, "decimalLat": -29.480439 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515453, "decimalLat": -34.449455 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607467, "decimalLat": -34.439508 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400679, "decimalLat": -28.257786 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519911, "decimalLat": -34.452547 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9063, "decimalLat": -31.446912 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313872, "decimalLat": -28.815375 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522517, "decimalLat": -34.464167 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.974941, "decimalLat": -34.133604 }, "geometry": { "type": "Point", "coordinates": [ 150.975, -34.134 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52136, "decimalLat": -34.465748 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.502522, "decimalLat": -34.362145 }, "geometry": { "type": "Point", "coordinates": [ 150.503, -34.362 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.290026, "decimalLat": -28.712208 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78954, "decimalLat": -34.194366 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.194 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367731, "decimalLat": -28.840454 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.237973, "decimalLat": -32.275615 }, "geometry": { "type": "Point", "coordinates": [ 152.238, -32.276 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606659, "decimalLat": -34.435056 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.17289, "decimalLat": -27.736088 }, "geometry": { "type": "Point", "coordinates": [ 153.173, -27.736 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515859, "decimalLat": -34.447137 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521893, "decimalLat": -34.46611 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300206, "decimalLat": -28.886464 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520403, "decimalLat": -34.465701 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.621569, "decimalLat": -30.296317 }, "geometry": { "type": "Point", "coordinates": [ 152.622, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109728, "decimalLat": -29.490156 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.20044, "decimalLat": -29.309753 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -29.31 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524998, "decimalLat": -34.453498 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616789, "decimalLat": -34.440781 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104224, "decimalLat": -29.479795 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091954, "decimalLat": -29.492498 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103677, "decimalLat": -29.485664 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639272, "decimalLat": -34.491767 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.04132, "decimalLat": -32.73534 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016902, "decimalLat": -36.541583 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600271, "decimalLat": -34.428602 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.078294, "decimalLat": -30.338411 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.338 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.684792, "decimalLat": -30.750399 }, "geometry": { "type": "Point", "coordinates": [ 152.685, -30.75 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528884, "decimalLat": -34.470074 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.398422, "decimalLat": -28.597171 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.597 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.27475, "decimalLat": -36.056721 }, "geometry": { "type": "Point", "coordinates": [ 149.275, -36.057 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.087117, "decimalLat": -29.071746 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -29.072 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96634, "decimalLat": -36.680336 }, "geometry": { "type": "Point", "coordinates": [ 149.966, -36.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60155, "decimalLat": -28.68121 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404042, "decimalLat": -31.938105 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.938 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.310945, "decimalLat": -28.85141 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922335, "decimalLat": -31.451278 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.647765, "decimalLat": -34.399783 }, "geometry": { "type": "Point", "coordinates": [ 150.648, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625163, "decimalLat": -34.386752 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628022, "decimalLat": -34.389863 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104031, "decimalLat": -29.485188 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110238, "decimalLat": -29.488317 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.03079, "decimalLat": -34.773031 }, "geometry": { "type": "Point", "coordinates": [ 150.031, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631192, "decimalLat": -34.389285 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.481178, "decimalLat": -32.039002 }, "geometry": { "type": "Point", "coordinates": [ 152.481, -32.039 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.699508, "decimalLat": -30.290327 }, "geometry": { "type": "Point", "coordinates": [ 152.7, -30.29 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.106056, "decimalLat": -32.728504 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627789, "decimalLat": -34.397351 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.078333, "decimalLat": -30.338457 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.338 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786702, "decimalLat": -33.705566 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884757, "decimalLat": -31.443649 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926877, "decimalLat": -31.459683 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.783602, "decimalLat": -31.630221 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878917, "decimalLat": -31.44848 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092111, "decimalLat": -29.488055 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622541, "decimalLat": -34.384456 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985955, "decimalLat": -34.041211 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.041 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.361746, "decimalLat": -31.925813 }, "geometry": { "type": "Point", "coordinates": [ 152.362, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78309, "decimalLat": -33.71855 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072182, "decimalLat": -32.747836 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.748 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869805, "decimalLat": -29.679161 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -29.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637454, "decimalLat": -34.421465 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520594, "decimalLat": -34.465859 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.244357, "decimalLat": -32.361361 }, "geometry": { "type": "Point", "coordinates": [ 152.244, -32.361 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905478, "decimalLat": -31.467655 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919855, "decimalLat": -31.448981 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108205, "decimalLat": -29.490255 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060681, "decimalLat": -32.710847 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.5521, "decimalLat": -33.491128 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55418, "decimalLat": -28.64023 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92442, "decimalLat": -31.44371 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625615, "decimalLat": -34.386508 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109224, "decimalLat": -29.490824 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.979279, "decimalLat": -30.421837 }, "geometry": { "type": "Point", "coordinates": [ 152.979, -30.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520366, "decimalLat": -34.465854 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104058, "decimalLat": -29.4853 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066335, "decimalLat": -32.714189 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292036, "decimalLat": -28.863396 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.985413, "decimalLat": -32.39707 }, "geometry": { "type": "Point", "coordinates": [ 151.985, -32.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.844948, "decimalLat": -29.834366 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611906, "decimalLat": -34.432671 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10357, "decimalLat": -29.485492 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609187, "decimalLat": -34.420798 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602784, "decimalLat": -34.435467 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.712051, "decimalLat": -32.681822 }, "geometry": { "type": "Point", "coordinates": [ 151.712, -32.682 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529864, "decimalLat": -34.471158 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513095, "decimalLat": -34.447153 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312767, "decimalLat": -29.008668 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -29.009 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626637, "decimalLat": -34.389233 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.174569, "decimalLat": -32.663575 }, "geometry": { "type": "Point", "coordinates": [ 152.175, -32.664 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.566825, "decimalLat": -28.387165 }, "geometry": { "type": "Point", "coordinates": [ 153.567, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901111, "decimalLat": -30.235831 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -30.236 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639058, "decimalLat": -34.491609 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635402, "decimalLat": -34.419749 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104407, "decimalLat": -29.489605 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519653, "decimalLat": -34.451316 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646195, "decimalLat": -34.397229 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.969997, "decimalLat": -31.192743 }, "geometry": { "type": "Point", "coordinates": [ 152.97, -31.193 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103457, "decimalLat": -29.485552 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105179, "decimalLat": -29.489708 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.291198, "decimalLat": -31.170858 }, "geometry": { "type": "Point", "coordinates": [ 150.291, -31.171 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101258, "decimalLat": -29.490021 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630275, "decimalLat": -34.42065 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073219, "decimalLat": -32.724502 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312326, "decimalLat": -28.81859 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095227, "decimalLat": -29.48344 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553153, "decimalLat": -28.586366 }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638554, "decimalLat": -34.491338 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.131383, "decimalLat": -30.103476 }, "geometry": { "type": "Point", "coordinates": [ 152.131, -30.103 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108151, "decimalLat": -29.490231 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40292, "decimalLat": -28.260311 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606647, "decimalLat": -34.435065 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.359057, "decimalLat": -28.793723 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -28.794 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616565, "decimalLat": -34.435674 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101977, "decimalLat": -29.4887 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10814, "decimalLat": -29.490269 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638898, "decimalLat": -34.492652 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.26476, "decimalLat": -28.881002 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -28.881 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.16387, "decimalLat": -32.646413 }, "geometry": { "type": "Point", "coordinates": [ 152.164, -32.646 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.236747, "decimalLat": -28.947304 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -28.947 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104246, "decimalLat": -29.483306 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.446492, "decimalLat": -28.587252 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62618, "decimalLat": -34.39576 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.861544, "decimalLat": -29.609182 }, "geometry": { "type": "Point", "coordinates": [ 150.862, -29.609 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46123, "decimalLat": -28.636784 }, "geometry": { "type": "Point", "coordinates": [ 153.461, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.540785, "decimalLat": -34.49004 }, "geometry": { "type": "Point", "coordinates": [ 150.541, -34.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63228, "decimalLat": -34.388098 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109422, "decimalLat": -29.490427 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517308, "decimalLat": -34.446355 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28799, "decimalLat": -29.02463 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -29.025 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096569, "decimalLat": -29.49187 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605626, "decimalLat": -34.437308 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521579, "decimalLat": -34.465689 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104004, "decimalLat": -29.489605 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527354, "decimalLat": -34.469548 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.697671, "decimalLat": -31.732206 }, "geometry": { "type": "Point", "coordinates": [ 152.698, -31.732 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82545, "decimalLat": -31.650768 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618108, "decimalLat": -34.429609 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.496278, "decimalLat": -28.328913 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90328, "decimalLat": -30.23862 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.239 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.605529, "decimalLat": -32.761925 }, "geometry": { "type": "Point", "coordinates": [ 151.606, -32.762 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29271, "decimalLat": -28.864728 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101327, "decimalLat": -29.489979 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606672, "decimalLat": -34.438023 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.02594, "decimalLat": -36.580507 }, "geometry": { "type": "Point", "coordinates": [ 150.026, -36.581 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.074764, "decimalLat": -31.108837 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -31.109 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52124, "decimalLat": -34.465745 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.65331, "decimalLat": -30.559131 }, "geometry": { "type": "Point", "coordinates": [ 152.653, -30.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605206, "decimalLat": -34.423822 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071835, "decimalLat": -30.887588 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629898, "decimalLat": -34.395444 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921184, "decimalLat": -31.480393 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525193, "decimalLat": -34.463833 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604748, "decimalLat": -34.427293 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870746, "decimalLat": -31.474449 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603087, "decimalLat": -34.424492 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635334, "decimalLat": -34.488166 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.295306, "decimalLat": -31.930854 }, "geometry": { "type": "Point", "coordinates": [ 152.295, -31.931 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.000423, "decimalLat": -34.010121 }, "geometry": { "type": "Point", "coordinates": [ 151.0, -34.01 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.406923, "decimalLat": -28.325282 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.325 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658893, "decimalLat": -33.526924 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609209, "decimalLat": -34.420763 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103736, "decimalLat": -29.485548 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51778, "decimalLat": -34.440333 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526173, "decimalLat": -34.458309 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929804, "decimalLat": -29.726432 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912383, "decimalLat": -31.475595 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52849, "decimalLat": -34.442891 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611354, "decimalLat": -34.420336 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925196, "decimalLat": -31.443321 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523117, "decimalLat": -34.452333 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519865, "decimalLat": -34.466592 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606443, "decimalLat": -34.437649 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609402, "decimalLat": -34.418972 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.836, "decimalLat": -30.434 }, "geometry": { "type": "Point", "coordinates": [ 152.836, -30.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.306361, "decimalLat": -31.952617 }, "geometry": { "type": "Point", "coordinates": [ 152.306, -31.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.245688, "decimalLat": -30.051427 }, "geometry": { "type": "Point", "coordinates": [ 152.246, -30.051 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102706, "decimalLat": -29.489386 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103688, "decimalLat": -29.485805 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434038, "decimalLat": -28.969183 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.969 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522856, "decimalLat": -34.452328 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899947, "decimalLat": -29.63155 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.793255, "decimalLat": -34.139925 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603298, "decimalLat": -34.43692 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607389, "decimalLat": -28.687767 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632281, "decimalLat": -34.388062 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618503, "decimalLat": -34.399181 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598851, "decimalLat": -34.426122 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517263, "decimalLat": -34.451556 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.975268, "decimalLat": -28.500347 }, "geometry": { "type": "Point", "coordinates": [ 152.975, -28.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630817, "decimalLat": -34.420697 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.114537, "decimalLat": -32.77928 }, "geometry": { "type": "Point", "coordinates": [ 152.115, -32.779 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610369, "decimalLat": -34.419 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615161, "decimalLat": -34.439117 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.430628, "decimalLat": -28.604396 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -28.604 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52042, "decimalLat": -34.45409 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.306361, "decimalLat": -31.952617 }, "geometry": { "type": "Point", "coordinates": [ 152.306, -31.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104149, "decimalLat": -29.483465 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.15582, "decimalLat": -28.580872 }, "geometry": { "type": "Point", "coordinates": [ 153.156, -28.581 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109793, "decimalLat": -29.490241 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642868, "decimalLat": -34.394469 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627015, "decimalLat": -34.389691 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916547, "decimalLat": -31.445007 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.055997, "decimalLat": -30.333952 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -30.334 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925678, "decimalLat": -31.459341 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900928, "decimalLat": -31.473952 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630666, "decimalLat": -34.420658 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632982, "decimalLat": -34.392899 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.778371, "decimalLat": -30.189687 }, "geometry": { "type": "Point", "coordinates": [ 152.778, -30.19 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786901, "decimalLat": -31.629637 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604433, "decimalLat": -34.437943 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867257, "decimalLat": -30.400392 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -30.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529192, "decimalLat": -34.468106 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.404973, "decimalLat": -28.257841 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104299, "decimalLat": -29.47781 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.88492, "decimalLat": -34.01781 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.018 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.508868, "decimalLat": -34.537204 }, "geometry": { "type": "Point", "coordinates": [ 150.509, -34.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298429, "decimalLat": -28.818562 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.499022, "decimalLat": -28.767981 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.768 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639217, "decimalLat": -34.392785 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603911, "decimalLat": -34.421525 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925264, "decimalLat": -31.440501 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91523, "decimalLat": -31.460963 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.590909, "decimalLat": -30.508175 }, "geometry": { "type": "Point", "coordinates": [ 151.591, -30.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321887, "decimalLat": -28.823774 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292879, "decimalLat": -28.86467 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930642, "decimalLat": -29.726744 }, "geometry": { "type": "Point", "coordinates": [ 152.931, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.998079, "decimalLat": -34.047161 }, "geometry": { "type": "Point", "coordinates": [ 150.998, -34.047 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635543, "decimalLat": -34.488071 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59019, "decimalLat": -28.65505 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288292, "decimalLat": -28.809314 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659032, "decimalLat": -34.455229 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90058, "decimalLat": -31.450524 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.964767, "decimalLat": -31.202958 }, "geometry": { "type": "Point", "coordinates": [ 152.965, -31.203 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.03296, "decimalLat": -30.43127 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -30.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.96718, "decimalLat": -34.026547 }, "geometry": { "type": "Point", "coordinates": [ 150.967, -34.027 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063336, "decimalLat": -32.706212 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.353872, "decimalLat": -31.957479 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -31.957 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.996446, "decimalLat": -30.413154 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -30.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625439, "decimalLat": -34.386198 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616551, "decimalLat": -34.437693 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615339, "decimalLat": -34.430944 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643159, "decimalLat": -34.398829 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52336, "decimalLat": -34.454781 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103715, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101188, "decimalLat": -29.489988 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795899, "decimalLat": -30.884771 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105314, "decimalLat": -32.732711 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279661, "decimalLat": -28.831073 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.193545, "decimalLat": -28.883603 }, "geometry": { "type": "Point", "coordinates": [ 153.194, -28.884 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110318, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061841, "decimalLat": -32.293914 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.294 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.709268, "decimalLat": -32.690949 }, "geometry": { "type": "Point", "coordinates": [ 151.709, -32.691 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.997312, "decimalLat": -34.055546 }, "geometry": { "type": "Point", "coordinates": [ 150.997, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928432, "decimalLat": -29.726418 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -29.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514466, "decimalLat": -34.443836 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301064, "decimalLat": -28.847295 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783747, "decimalLat": -33.717556 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627412, "decimalLat": -34.390645 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.839671, "decimalLat": -34.078232 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.078 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930413, "decimalLat": -31.468031 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791327, "decimalLat": -34.148644 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.149 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644974, "decimalLat": -34.400036 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602031, "decimalLat": -34.425653 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.35359, "decimalLat": -28.4161 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -28.416 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600435, "decimalLat": -34.428966 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.67491, "decimalLat": -32.673424 }, "geometry": { "type": "Point", "coordinates": [ 151.675, -32.673 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31231, "decimalLat": -28.815314 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.18685, "decimalLat": -31.6704 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -31.67 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644948, "decimalLat": -34.391254 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640599, "decimalLat": -34.494137 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92911, "decimalLat": -31.162202 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.162 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894418, "decimalLat": -31.447732 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628416, "decimalLat": -34.420578 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556726, "decimalLat": -28.397422 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630864, "decimalLat": -34.393958 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908138, "decimalLat": -31.435961 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519263, "decimalLat": -34.45312 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522337, "decimalLat": -34.465101 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639188, "decimalLat": -34.493181 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515834, "decimalLat": -34.442124 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908596, "decimalLat": -31.436814 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78564, "decimalLat": -33.704725 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.083638, "decimalLat": -30.921885 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -30.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630797, "decimalLat": -34.420633 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607421, "decimalLat": -34.433106 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262924, "decimalLat": -28.923353 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -28.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625119, "decimalLat": -34.386769 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609969, "decimalLat": -34.429631 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.133676, "decimalLat": -28.93965 }, "geometry": { "type": "Point", "coordinates": [ 153.134, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.160218, "decimalLat": -32.712226 }, "geometry": { "type": "Point", "coordinates": [ 152.16, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.709618, "decimalLat": -31.785832 }, "geometry": { "type": "Point", "coordinates": [ 152.71, -31.786 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293136, "decimalLat": -28.864668 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621755, "decimalLat": -34.397639 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633057, "decimalLat": -34.417648 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913033, "decimalLat": -31.452747 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898899, "decimalLat": -31.443448 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915616, "decimalLat": -31.478123 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.847597, "decimalLat": -34.072147 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.072 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.749385, "decimalLat": -28.678008 }, "geometry": { "type": "Point", "coordinates": [ 152.749, -28.678 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189573, "decimalLat": -32.226267 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101682, "decimalLat": -29.489274 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638521, "decimalLat": -34.422955 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.777302, "decimalLat": -30.885013 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.527275, "decimalLat": -28.68614 }, "geometry": { "type": "Point", "coordinates": [ 153.527, -28.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518204, "decimalLat": -34.446599 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603075, "decimalLat": -34.417668 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609159, "decimalLat": -34.420636 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637223, "decimalLat": -34.422687 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402546, "decimalLat": -28.259616 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5218, "decimalLat": -28.68361 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596189, "decimalLat": -34.41197 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959252, "decimalLat": -36.447255 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.566447, "decimalLat": -34.46 }, "geometry": { "type": "Point", "coordinates": [ 150.566, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607692, "decimalLat": -34.430109 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637356, "decimalLat": -34.423789 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610097, "decimalLat": -34.419374 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611448, "decimalLat": -34.419716 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.882284, "decimalLat": -29.611382 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -29.611 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600346, "decimalLat": -34.428649 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625227, "decimalLat": -34.384481 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10813, "decimalLat": -29.490418 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3234, "decimalLat": -28.6762 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632584, "decimalLat": -34.419775 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641024, "decimalLat": -34.494875 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.074818, "decimalLat": -32.71872 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -32.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639187, "decimalLat": -34.392712 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526623, "decimalLat": -34.469587 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522952, "decimalLat": -34.466384 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316272, "decimalLat": -28.823818 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784785, "decimalLat": -33.71637 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.831723, "decimalLat": -29.642008 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -29.642 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.799298, "decimalLat": -34.213206 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.213 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603652, "decimalLat": -34.419175 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101199, "decimalLat": -29.48989 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.261915, "decimalLat": -31.998166 }, "geometry": { "type": "Point", "coordinates": [ 152.262, -31.998 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.743944, "decimalLat": -31.380947 }, "geometry": { "type": "Point", "coordinates": [ 152.744, -31.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908584, "decimalLat": -31.436921 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553938, "decimalLat": -28.588189 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.588 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609131, "decimalLat": -34.434961 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.435857, "decimalLat": -33.605481 }, "geometry": { "type": "Point", "coordinates": [ 149.436, -33.605 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639135, "decimalLat": -34.491602 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104165, "decimalLat": -29.48375 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43454, "decimalLat": -28.719419 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.770315, "decimalLat": -32.593387 }, "geometry": { "type": "Point", "coordinates": [ 151.77, -32.593 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597992, "decimalLat": -34.426123 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926223, "decimalLat": -31.454793 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.036062, "decimalLat": -32.76419 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.764 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516435, "decimalLat": -34.450097 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401967, "decimalLat": -28.258627 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520187, "decimalLat": -34.435839 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063556, "decimalLat": -32.70553 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090757, "decimalLat": -29.487035 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869553, "decimalLat": -31.498782 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -31.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19028, "decimalLat": -32.23868 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.239 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920016, "decimalLat": -31.443581 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621411, "decimalLat": -34.397894 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608519, "decimalLat": -28.702086 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.55855, "decimalLat": -33.701284 }, "geometry": { "type": "Point", "coordinates": [ 149.559, -33.701 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60915, "decimalLat": -34.420572 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.003427, "decimalLat": -33.983463 }, "geometry": { "type": "Point", "coordinates": [ 151.003, -33.983 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870687, "decimalLat": -31.464354 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513797, "decimalLat": -34.44623 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395041, "decimalLat": -29.02022 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.02 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39756, "decimalLat": -29.013101 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -29.013 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644453, "decimalLat": -34.3934 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520035, "decimalLat": -34.44651 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618251, "decimalLat": -34.43531 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516376, "decimalLat": -34.469749 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109385, "decimalLat": -29.490553 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90942, "decimalLat": -31.46628 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89266, "decimalLat": -33.991958 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.992 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.996446, "decimalLat": -30.413154 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -30.413 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.611353, "decimalLat": -28.683609 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628264, "decimalLat": -34.38976 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596544, "decimalLat": -34.416259 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.416 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093458, "decimalLat": -29.488686 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636324, "decimalLat": -34.421786 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063194, "decimalLat": -32.706391 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794232, "decimalLat": -31.64356 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.644 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.003268, "decimalLat": -30.403632 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -30.404 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824668, "decimalLat": -31.241392 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.241 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.586079, "decimalLat": -28.632728 }, "geometry": { "type": "Point", "coordinates": [ 153.586, -28.633 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.465176, "decimalLat": -33.674475 }, "geometry": { "type": "Point", "coordinates": [ 149.465, -33.674 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.3099, "decimalLat": -36.2184 }, "geometry": { "type": "Point", "coordinates": [ 149.31, -36.218 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.091637, "decimalLat": -32.175474 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -32.175 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31792, "decimalLat": -28.80604 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90803, "decimalLat": -31.457164 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102628, "decimalLat": -30.283432 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -30.283 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62456, "decimalLat": -34.386145 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.327888, "decimalLat": -36.154326 }, "geometry": { "type": "Point", "coordinates": [ 149.328, -36.154 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077119, "decimalLat": -32.722469 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27887, "decimalLat": -28.874221 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.098989, "decimalLat": -29.490068 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633688, "decimalLat": -34.418435 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885636, "decimalLat": -34.01791 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.018 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604251, "decimalLat": -34.438967 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52209, "decimalLat": -34.466087 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792947, "decimalLat": -31.640473 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.601829, "decimalLat": -34.763841 }, "geometry": { "type": "Point", "coordinates": [ 146.602, -34.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595854, "decimalLat": -34.411873 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818075, "decimalLat": -31.470638 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316318, "decimalLat": -28.943569 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.944 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52025, "decimalLat": -34.465743 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521001, "decimalLat": -34.453958 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640883, "decimalLat": -34.396225 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.472427, "decimalLat": -34.491687 }, "geometry": { "type": "Point", "coordinates": [ 150.472, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101671, "decimalLat": -29.48976 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400945, "decimalLat": -29.037765 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -29.038 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.72632, "decimalLat": -30.157302 }, "geometry": { "type": "Point", "coordinates": [ 152.726, -30.157 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.88678, "decimalLat": -34.066475 }, "geometry": { "type": "Point", "coordinates": [ 150.887, -34.066 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628758, "decimalLat": -34.38922 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912612, "decimalLat": -31.477621 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.100431, "decimalLat": -33.13453 }, "geometry": { "type": "Point", "coordinates": [ 151.1, -33.135 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53168, "decimalLat": -34.40731 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.407 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514667, "decimalLat": -34.447717 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.64838, "decimalLat": -31.875943 }, "geometry": { "type": "Point", "coordinates": [ 152.648, -31.876 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938213, "decimalLat": -36.559404 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519883, "decimalLat": -34.453124 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.475404, "decimalLat": -32.364632 }, "geometry": { "type": "Point", "coordinates": [ 152.475, -32.365 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516529, "decimalLat": -34.449152 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603427, "decimalLat": -34.435435 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.361869, "decimalLat": -31.979319 }, "geometry": { "type": "Point", "coordinates": [ 152.362, -31.979 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.35899, "decimalLat": -31.92441 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784125, "decimalLat": -31.630044 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873902, "decimalLat": -31.463787 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.726, "decimalLat": -32.67 }, "geometry": { "type": "Point", "coordinates": [ 151.726, -32.67 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292244, "decimalLat": -28.856083 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.856 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523107, "decimalLat": -34.452288 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.753039, "decimalLat": -34.131708 }, "geometry": { "type": "Point", "coordinates": [ 150.753, -34.132 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603328, "decimalLat": -34.436993 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10821, "decimalLat": -29.490245 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.007449, "decimalLat": -34.046402 }, "geometry": { "type": "Point", "coordinates": [ 151.007, -34.046 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513095, "decimalLat": -34.447144 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494884, "decimalLat": -28.694331 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.398288, "decimalLat": -33.48917 }, "geometry": { "type": "Point", "coordinates": [ 149.398, -33.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513095, "decimalLat": -34.447144 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9185, "decimalLat": -31.4573 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614394, "decimalLat": -34.428978 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519573, "decimalLat": -34.452567 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079082, "decimalLat": -32.7274 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.975593, "decimalLat": -34.086979 }, "geometry": { "type": "Point", "coordinates": [ 150.976, -34.087 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342176, "decimalLat": -28.651032 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091156, "decimalLat": -29.487889 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.2627, "decimalLat": -28.879875 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893403, "decimalLat": -31.458473 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522887, "decimalLat": -34.452364 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90409, "decimalLat": -31.46969 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.978256, "decimalLat": -28.481426 }, "geometry": { "type": "Point", "coordinates": [ 152.978, -28.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835142, "decimalLat": -34.069644 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517379, "decimalLat": -34.460141 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602031, "decimalLat": -34.425653 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103302, "decimalLat": -29.489232 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520465, "decimalLat": -34.454028 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62674, "decimalLat": -34.421384 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.076791, "decimalLat": -28.555115 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -28.555 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.384203, "decimalLat": -28.651513 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -28.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615214, "decimalLat": -34.435323 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10932, "decimalLat": -29.490703 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925961, "decimalLat": -31.452402 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.50421, "decimalLat": -28.65919 }, "geometry": { "type": "Point", "coordinates": [ 153.504, -28.659 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600169, "decimalLat": -34.428736 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605499, "decimalLat": -34.432239 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556979, "decimalLat": -28.400244 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627482, "decimalLat": -34.420145 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017126, "decimalLat": -30.374914 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -30.375 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630965, "decimalLat": -34.388469 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.937136, "decimalLat": -34.113796 }, "geometry": { "type": "Point", "coordinates": [ 150.937, -34.114 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.99055, "decimalLat": -34.025501 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.026 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.463046, "decimalLat": -28.875821 }, "geometry": { "type": "Point", "coordinates": [ 153.463, -28.876 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.762153, "decimalLat": -32.767306 }, "geometry": { "type": "Point", "coordinates": [ 151.762, -32.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523072, "decimalLat": -34.463781 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103473, "decimalLat": -29.487593 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10387, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.934176, "decimalLat": -29.722645 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -29.723 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.9342, "decimalLat": -32.5563 }, "geometry": { "type": "Point", "coordinates": [ 151.934, -32.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875107, "decimalLat": -31.454684 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.003857, "decimalLat": -28.620437 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -28.62 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559472, "decimalLat": -28.645078 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.645 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.18678, "decimalLat": -31.615428 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -31.615 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632066, "decimalLat": -34.41807 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314609, "decimalLat": -28.846843 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626634, "decimalLat": -34.385482 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.041548, "decimalLat": -32.736066 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93752, "decimalLat": -30.231856 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -30.232 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.947054, "decimalLat": -30.434052 }, "geometry": { "type": "Point", "coordinates": [ 152.947, -30.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929611, "decimalLat": -31.453392 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600755, "decimalLat": -34.428044 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.54344, "decimalLat": -33.69972 }, "geometry": { "type": "Point", "coordinates": [ 149.543, -33.7 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.133536, "decimalLat": -32.733961 }, "geometry": { "type": "Point", "coordinates": [ 152.134, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304453, "decimalLat": -28.848398 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515025, "decimalLat": -34.445903 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632518, "decimalLat": -34.418259 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110157, "decimalLat": -29.490241 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909109, "decimalLat": -31.457637 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374259, "decimalLat": -31.912864 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104165, "decimalLat": -29.485197 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79538, "decimalLat": -34.12975 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.13 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520604, "decimalLat": -34.465886 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51479, "decimalLat": -34.445763 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80952, "decimalLat": -34.099962 }, "geometry": { "type": "Point", "coordinates": [ 150.81, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842568, "decimalLat": -34.057022 }, "geometry": { "type": "Point", "coordinates": [ 150.843, -34.057 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617064, "decimalLat": -34.43379 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093506, "decimalLat": -29.488508 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615419, "decimalLat": -34.440745 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.150436, "decimalLat": -32.102546 }, "geometry": { "type": "Point", "coordinates": [ 152.15, -32.103 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879504, "decimalLat": -29.67808 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -29.678 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890677, "decimalLat": -31.444759 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.499597, "decimalLat": -30.518681 }, "geometry": { "type": "Point", "coordinates": [ 151.5, -30.519 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110485, "decimalLat": -29.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616546, "decimalLat": -34.435159 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513793, "decimalLat": -34.446347 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.037266, "decimalLat": -32.737725 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885933, "decimalLat": -34.017663 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.018 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523848, "decimalLat": -34.463689 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103886, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515903, "decimalLat": -34.446777 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63536, "decimalLat": -33.57286 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -33.573 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.295433, "decimalLat": -28.856388 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.856 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633786, "decimalLat": -34.392157 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633693, "decimalLat": -34.418264 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.232257, "decimalLat": -32.165354 }, "geometry": { "type": "Point", "coordinates": [ 152.232, -32.165 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915859, "decimalLat": -31.481819 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562069, "decimalLat": -28.388909 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519475, "decimalLat": -34.456622 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.361646, "decimalLat": -35.999794 }, "geometry": { "type": "Point", "coordinates": [ 149.362, -36.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637238, "decimalLat": -34.487824 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.443915, "decimalLat": -31.954385 }, "geometry": { "type": "Point", "coordinates": [ 152.444, -31.954 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643601, "decimalLat": -34.395853 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630722, "decimalLat": -34.420614 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.852814, "decimalLat": -31.099432 }, "geometry": { "type": "Point", "coordinates": [ 152.853, -31.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523405, "decimalLat": -34.46468 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637661, "decimalLat": -34.421072 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914663, "decimalLat": -31.469203 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.113549, "decimalLat": -32.760534 }, "geometry": { "type": "Point", "coordinates": [ 152.114, -32.761 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638096, "decimalLat": -34.485596 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.920837, "decimalLat": -33.967181 }, "geometry": { "type": "Point", "coordinates": [ 150.921, -33.967 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796788, "decimalLat": -34.135869 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.136 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.325471, "decimalLat": -29.033609 }, "geometry": { "type": "Point", "coordinates": [ 150.325, -29.034 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82517, "decimalLat": -31.27014 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.27 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514983, "decimalLat": -34.446596 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516892, "decimalLat": -34.446806 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518232, "decimalLat": -34.44714 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515965, "decimalLat": -34.449456 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608045, "decimalLat": -34.44903 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557006, "decimalLat": -28.400461 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601423, "decimalLat": -34.426741 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887681, "decimalLat": -31.438054 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.286326, "decimalLat": -28.839825 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516616, "decimalLat": -34.446936 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.485599 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.609051, "decimalLat": -30.342709 }, "geometry": { "type": "Point", "coordinates": [ 152.609, -30.343 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522794, "decimalLat": -34.4522 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10975, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.761695, "decimalLat": -31.05438 }, "geometry": { "type": "Point", "coordinates": [ 151.762, -31.054 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616163, "decimalLat": -34.434476 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808586, "decimalLat": -34.098254 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62422, "decimalLat": -34.388924 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514257, "decimalLat": -34.447231 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788622, "decimalLat": -31.640693 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -31.641 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.858134, "decimalLat": -34.056316 }, "geometry": { "type": "Point", "coordinates": [ 150.858, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067909, "decimalLat": -32.709759 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530523, "decimalLat": -34.469503 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.290427, "decimalLat": -28.86558 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.922668, "decimalLat": -29.796463 }, "geometry": { "type": "Point", "coordinates": [ 150.923, -29.796 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.053627, "decimalLat": -28.45188 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -28.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.045855, "decimalLat": -32.674267 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -32.674 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.141958, "decimalLat": -34.920437 }, "geometry": { "type": "Point", "coordinates": [ 150.142, -34.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615357, "decimalLat": -34.432612 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.834233, "decimalLat": -31.473284 }, "geometry": { "type": "Point", "coordinates": [ 152.834, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899658, "decimalLat": -29.631163 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82517, "decimalLat": -31.27014 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.27 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851464, "decimalLat": -29.692524 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79329, "decimalLat": -34.2191 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.219 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515856, "decimalLat": -34.448733 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514433, "decimalLat": -34.446062 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615171, "decimalLat": -34.436458 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603077, "decimalLat": -34.417604 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851464, "decimalLat": -29.692524 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823644, "decimalLat": -29.491721 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.563215, "decimalLat": -31.961506 }, "geometry": { "type": "Point", "coordinates": [ 152.563, -31.962 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606936, "decimalLat": -34.454688 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104138, "decimalLat": -29.478833 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110554, "decimalLat": -29.489904 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399901, "decimalLat": -28.258429 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.490184 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609271, "decimalLat": -34.420521 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6274, "decimalLat": -34.420351 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60761, "decimalLat": -34.429927 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109487, "decimalLat": -29.490418 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924534, "decimalLat": -31.463513 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918096, "decimalLat": -31.485332 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608592, "decimalLat": -34.434788 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108022, "decimalLat": -29.490287 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912369, "decimalLat": -31.47551 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634308, "decimalLat": -34.488651 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513165, "decimalLat": -34.445892 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110329, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92436, "decimalLat": -31.46013 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101242, "decimalLat": -29.489858 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926647, "decimalLat": -31.444435 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626236, "decimalLat": -34.395725 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628646, "decimalLat": -34.395096 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.361086, "decimalLat": -28.87282 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.873 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630633, "decimalLat": -34.420684 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092449, "decimalLat": -29.488186 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639722, "decimalLat": -34.393399 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104063, "decimalLat": -29.485169 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.833527, "decimalLat": -30.434873 }, "geometry": { "type": "Point", "coordinates": [ 152.834, -30.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52527, "decimalLat": -34.452025 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627177, "decimalLat": -34.389748 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910119, "decimalLat": -31.43403 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633647, "decimalLat": -34.418335 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270719, "decimalLat": -28.873506 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602526, "decimalLat": -34.436138 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099788, "decimalLat": -29.491571 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039998, "decimalLat": -32.730537 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.886646, "decimalLat": -30.894513 }, "geometry": { "type": "Point", "coordinates": [ 151.887, -30.895 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063778, "decimalLat": -32.706633 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.264096, "decimalLat": -28.923918 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -28.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786105, "decimalLat": -33.714074 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.897402, "decimalLat": -34.002039 }, "geometry": { "type": "Point", "coordinates": [ 150.897, -34.002 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645781, "decimalLat": -34.397239 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.08564, "decimalLat": -30.32139 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -30.321 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531248, "decimalLat": -34.461152 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.821774, "decimalLat": -31.456865 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523787, "decimalLat": -34.461704 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896425, "decimalLat": -29.629872 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -29.63 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.479706, "decimalLat": -28.592244 }, "geometry": { "type": "Point", "coordinates": [ 153.48, -28.592 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516768, "decimalLat": -34.446588 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.370971, "decimalLat": -31.918922 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.664655, "decimalLat": -34.458104 }, "geometry": { "type": "Point", "coordinates": [ 150.665, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.52954, "decimalLat": -28.54593 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -28.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.111861, "decimalLat": -30.264335 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -30.264 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644423, "decimalLat": -34.396401 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522736, "decimalLat": -34.452316 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627928, "decimalLat": -34.420911 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787018, "decimalLat": -33.708673 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.284517, "decimalLat": -32.423321 }, "geometry": { "type": "Point", "coordinates": [ 152.285, -32.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631147, "decimalLat": -34.387418 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785485, "decimalLat": -31.632688 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616681, "decimalLat": -34.399001 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635274, "decimalLat": -34.419665 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532821, "decimalLat": -34.458723 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301025, "decimalLat": -28.847787 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395147, "decimalLat": -28.95998 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657099, "decimalLat": -31.673767 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -31.674 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513779, "decimalLat": -34.447185 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601793, "decimalLat": -34.42865 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415805, "decimalLat": -31.933494 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296921, "decimalLat": -28.847242 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.81136, "decimalLat": -34.11579 }, "geometry": { "type": "Point", "coordinates": [ 150.811, -34.116 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101274, "decimalLat": -29.489942 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323925, "decimalLat": -28.817688 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896425, "decimalLat": -29.629872 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -29.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.485652, "decimalLat": -32.059496 }, "geometry": { "type": "Point", "coordinates": [ 152.486, -32.059 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615047, "decimalLat": -34.431254 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615024, "decimalLat": -34.431289 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.601915, "decimalLat": -31.651566 }, "geometry": { "type": "Point", "coordinates": [ 152.602, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063828, "decimalLat": -32.706692 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514074, "decimalLat": -34.447903 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52394, "decimalLat": -34.462789 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105217, "decimalLat": -29.489778 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.16718, "decimalLat": -31.2012 }, "geometry": { "type": "Point", "coordinates": [ 150.167, -31.201 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924693, "decimalLat": -31.453779 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101258, "decimalLat": -29.48997 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396801, "decimalLat": -29.015679 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19925, "decimalLat": -32.23062 }, "geometry": { "type": "Point", "coordinates": [ 152.199, -32.231 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.962048, "decimalLat": -36.514707 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.397392, "decimalLat": -36.228533 }, "geometry": { "type": "Point", "coordinates": [ 149.397, -36.229 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.945609, "decimalLat": -30.216522 }, "geometry": { "type": "Point", "coordinates": [ 152.946, -30.217 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527084, "decimalLat": -34.46947 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630214, "decimalLat": -34.420487 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644819, "decimalLat": -34.391577 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92292, "decimalLat": -29.7306 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -29.731 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.930618, "decimalLat": -32.562252 }, "geometry": { "type": "Point", "coordinates": [ 151.931, -32.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110544, "decimalLat": -29.490166 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.280729, "decimalLat": -31.066162 }, "geometry": { "type": "Point", "coordinates": [ 150.281, -31.066 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924401, "decimalLat": -31.463568 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.654667, "decimalLat": -32.683376 }, "geometry": { "type": "Point", "coordinates": [ 151.655, -32.683 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017126, "decimalLat": -30.374914 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -30.375 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103822, "decimalLat": -29.485464 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.143469, "decimalLat": -34.917107 }, "geometry": { "type": "Point", "coordinates": [ 150.143, -34.917 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9602, "decimalLat": -34.104056 }, "geometry": { "type": "Point", "coordinates": [ 150.96, -34.104 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.796027, "decimalLat": -31.143027 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -31.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.709625, "decimalLat": -31.787706 }, "geometry": { "type": "Point", "coordinates": [ 152.71, -31.788 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093347, "decimalLat": -29.492651 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.859327, "decimalLat": -31.129753 }, "geometry": { "type": "Point", "coordinates": [ 152.859, -31.13 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627032, "decimalLat": -34.390241 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400725, "decimalLat": -28.260092 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109331, "decimalLat": -29.490656 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520915, "decimalLat": -34.465315 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92577, "decimalLat": -31.4468 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.652569, "decimalLat": -34.207428 }, "geometry": { "type": "Point", "coordinates": [ 150.653, -34.207 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785335, "decimalLat": -33.715655 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513168, "decimalLat": -34.447632 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108038, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.90452, "decimalLat": -32.48353 }, "geometry": { "type": "Point", "coordinates": [ 151.905, -32.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.992795, "decimalLat": -33.981826 }, "geometry": { "type": "Point", "coordinates": [ 150.993, -33.982 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.217968, "decimalLat": -28.830692 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616088, "decimalLat": -34.433681 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522914, "decimalLat": -34.452545 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.572904, "decimalLat": -28.368718 }, "geometry": { "type": "Point", "coordinates": [ 153.573, -28.369 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.866357, "decimalLat": -29.691624 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -29.692 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315886, "decimalLat": -28.849921 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824526, "decimalLat": -29.506386 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.506 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881336, "decimalLat": -31.490375 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104053, "decimalLat": -29.480019 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31536, "decimalLat": -28.818123 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402412, "decimalLat": -28.260564 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101268, "decimalLat": -29.489974 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.850223, "decimalLat": -31.543877 }, "geometry": { "type": "Point", "coordinates": [ 152.85, -31.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605426, "decimalLat": -34.42754 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622195, "decimalLat": -34.397837 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103838, "decimalLat": -29.48502 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.162204, "decimalLat": -31.617012 }, "geometry": { "type": "Point", "coordinates": [ 152.162, -31.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532621, "decimalLat": -34.473648 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.474 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.877945, "decimalLat": -34.105858 }, "geometry": { "type": "Point", "coordinates": [ 150.878, -34.106 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883882, "decimalLat": -31.447591 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.141958, "decimalLat": -34.920437 }, "geometry": { "type": "Point", "coordinates": [ 150.142, -34.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109326, "decimalLat": -29.490493 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519792, "decimalLat": -34.446631 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605738, "decimalLat": -34.437563 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.767481, "decimalLat": -32.565191 }, "geometry": { "type": "Point", "coordinates": [ 151.767, -32.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.65611, "decimalLat": -32.687001 }, "geometry": { "type": "Point", "coordinates": [ 151.656, -32.687 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627971, "decimalLat": -34.420921 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.800499, "decimalLat": -34.239726 }, "geometry": { "type": "Point", "coordinates": [ 150.8, -34.24 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090752, "decimalLat": -29.487086 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604679, "decimalLat": -34.439237 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403932, "decimalLat": -31.928294 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094646, "decimalLat": -29.494093 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.02704, "decimalLat": -31.14292 }, "geometry": { "type": "Point", "coordinates": [ 150.027, -31.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103854, "decimalLat": -29.489549 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.34524, "decimalLat": -36.16054 }, "geometry": { "type": "Point", "coordinates": [ 149.345, -36.161 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.164297, "decimalLat": -30.08274 }, "geometry": { "type": "Point", "coordinates": [ 152.164, -30.083 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529497, "decimalLat": -34.469212 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533129, "decimalLat": -34.479707 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.857777, "decimalLat": -31.54224 }, "geometry": { "type": "Point", "coordinates": [ 152.858, -31.542 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795899, "decimalLat": -30.884771 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.282702, "decimalLat": -29.001489 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -29.001 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324959, "decimalLat": -36.293843 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.294 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.471335, "decimalLat": -28.259491 }, "geometry": { "type": "Point", "coordinates": [ 153.471, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92166, "decimalLat": -31.451519 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29459, "decimalLat": -28.86386 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632861, "decimalLat": -34.418825 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.836384, "decimalLat": -34.05628 }, "geometry": { "type": "Point", "coordinates": [ 150.836, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.485594 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636962, "decimalLat": -34.421149 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899176, "decimalLat": -31.445097 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521989, "decimalLat": -34.459198 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638904, "decimalLat": -34.491688 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51747, "decimalLat": -34.439047 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.287597, "decimalLat": -28.964065 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.964 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517061, "decimalLat": -34.447342 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07145, "decimalLat": -30.885476 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615856, "decimalLat": -34.430728 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.598414, "decimalLat": -30.492643 }, "geometry": { "type": "Point", "coordinates": [ 151.598, -30.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599279, "decimalLat": -28.716311 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604779, "decimalLat": -34.427329 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608906, "decimalLat": -34.420712 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606644, "decimalLat": -34.454241 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616459, "decimalLat": -34.399159 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099766, "decimalLat": -29.491595 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604929, "decimalLat": -34.44265 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003444, "decimalLat": -36.572886 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.182292, "decimalLat": -28.846945 }, "geometry": { "type": "Point", "coordinates": [ 153.182, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63054, "decimalLat": -34.39506 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524627, "decimalLat": -34.462352 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.817738, "decimalLat": -31.26362 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.264 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531208, "decimalLat": -34.471005 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.398767, "decimalLat": -31.965777 }, "geometry": { "type": "Point", "coordinates": [ 152.399, -31.966 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599275, "decimalLat": -33.203062 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -33.203 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.979238, "decimalLat": -36.570187 }, "geometry": { "type": "Point", "coordinates": [ 149.979, -36.57 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611438, "decimalLat": -34.419679 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519561, "decimalLat": -34.463268 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604676, "decimalLat": -34.424451 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782133, "decimalLat": -31.569129 }, "geometry": { "type": "Point", "coordinates": [ 152.782, -31.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518737, "decimalLat": -34.447709 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512878, "decimalLat": -34.446743 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637204, "decimalLat": -34.485182 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522517, "decimalLat": -34.451627 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633344, "decimalLat": -34.489606 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604724, "decimalLat": -34.424678 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109342, "decimalLat": -29.490941 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065202, "decimalLat": -32.710956 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.13439, "decimalLat": -28.562399 }, "geometry": { "type": "Point", "coordinates": [ 153.134, -28.562 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.092114, "decimalLat": -32.172681 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -32.173 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.085125, "decimalLat": -29.728597 }, "geometry": { "type": "Point", "coordinates": [ 151.085, -29.729 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.54091, "decimalLat": -28.345835 }, "geometry": { "type": "Point", "coordinates": [ 153.541, -28.346 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095217, "decimalLat": -29.483507 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103699, "decimalLat": -29.485856 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617107, "decimalLat": -34.433827 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.078006, "decimalLat": -32.759765 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.76 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302555, "decimalLat": -28.819938 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929315, "decimalLat": -31.459734 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597608, "decimalLat": -34.418236 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518344, "decimalLat": -34.451416 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631359, "decimalLat": -34.419995 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108215, "decimalLat": -29.490259 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604369, "decimalLat": -34.439014 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630819, "decimalLat": -34.420643 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095963, "decimalLat": -29.484693 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514364, "decimalLat": -34.447296 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.274696, "decimalLat": -28.45331 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -28.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808599, "decimalLat": -34.098258 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.014083, "decimalLat": -28.435381 }, "geometry": { "type": "Point", "coordinates": [ 153.014, -28.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517987, "decimalLat": -34.442168 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905393, "decimalLat": -31.436888 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519442, "decimalLat": -34.456622 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98818, "decimalLat": -30.640405 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -30.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865734, "decimalLat": -30.880361 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -30.88 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103446, "decimalLat": -29.485697 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883273, "decimalLat": -31.437175 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.064049, "decimalLat": -34.961276 }, "geometry": { "type": "Point", "coordinates": [ 150.064, -34.961 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101274, "decimalLat": -29.489979 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562066, "decimalLat": -28.389366 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.027861, "decimalLat": -32.305058 }, "geometry": { "type": "Point", "coordinates": [ 152.028, -32.305 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604736, "decimalLat": -34.427302 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631183, "decimalLat": -34.388816 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924676, "decimalLat": -31.453764 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104171, "decimalLat": -29.481966 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604275, "decimalLat": -34.438877 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604885, "decimalLat": -34.427043 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785055, "decimalLat": -33.716562 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.233127, "decimalLat": -28.601453 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -28.601 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629406, "decimalLat": -34.388971 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.525002, "decimalLat": -28.642488 }, "geometry": { "type": "Point", "coordinates": [ 153.525, -28.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516231, "decimalLat": -34.449272 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.755897, "decimalLat": -31.631223 }, "geometry": { "type": "Point", "coordinates": [ 152.756, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636232, "decimalLat": -34.421964 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093356, "decimalLat": -29.488812 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.962048, "decimalLat": -36.514707 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52379, "decimalLat": -34.465265 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921641, "decimalLat": -31.452603 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.091178, "decimalLat": -29.774595 }, "geometry": { "type": "Point", "coordinates": [ 151.091, -29.775 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.55998, "decimalLat": -32.878656 }, "geometry": { "type": "Point", "coordinates": [ 151.56, -32.879 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316988, "decimalLat": -28.828021 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627752, "decimalLat": -34.420998 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.55998, "decimalLat": -32.878656 }, "geometry": { "type": "Point", "coordinates": [ 151.56, -32.879 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40125, "decimalLat": -28.976847 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.977 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786436, "decimalLat": -33.70815 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110576, "decimalLat": -29.48975 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640286, "decimalLat": -34.415912 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.416 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316981, "decimalLat": -28.949626 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110527, "decimalLat": -29.490175 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108054, "decimalLat": -29.49067 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.141958, "decimalLat": -34.920437 }, "geometry": { "type": "Point", "coordinates": [ 150.142, -34.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.171269, "decimalLat": -30.079403 }, "geometry": { "type": "Point", "coordinates": [ 152.171, -30.079 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656895, "decimalLat": -34.456125 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.756284, "decimalLat": -28.682073 }, "geometry": { "type": "Point", "coordinates": [ 152.756, -28.682 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528836, "decimalLat": -34.458795 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.802756, "decimalLat": -32.862315 }, "geometry": { "type": "Point", "coordinates": [ 151.803, -32.862 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316981, "decimalLat": -28.949626 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.389562, "decimalLat": -29.088439 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -29.088 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921772, "decimalLat": -31.443669 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91986, "decimalLat": -31.438268 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614855, "decimalLat": -34.4296 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897899, "decimalLat": -31.436438 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518185, "decimalLat": -34.453477 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064749, "decimalLat": -32.709086 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527177, "decimalLat": -34.469643 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002351, "decimalLat": -29.181487 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -29.181 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063272, "decimalLat": -32.706167 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071934, "decimalLat": -30.885689 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513105, "decimalLat": -34.447162 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657026, "decimalLat": -34.454577 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.874803, "decimalLat": -31.458526 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10401, "decimalLat": -29.478879 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104138, "decimalLat": -29.478847 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64156, "decimalLat": -34.396878 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.737721, "decimalLat": -31.565834 }, "geometry": { "type": "Point", "coordinates": [ 152.738, -31.566 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82369, "decimalLat": -34.141271 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.962048, "decimalLat": -36.514707 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.597863, "decimalLat": -28.667451 }, "geometry": { "type": "Point", "coordinates": [ 153.598, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617641, "decimalLat": -34.448731 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304453, "decimalLat": -28.848398 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510002, "decimalLat": -28.810799 }, "geometry": { "type": "Point", "coordinates": [ 153.51, -28.811 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51801, "decimalLat": -34.446541 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518139, "decimalLat": -34.437023 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82611, "decimalLat": -31.26929 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -31.269 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.810126, "decimalLat": -34.123635 }, "geometry": { "type": "Point", "coordinates": [ 150.81, -34.124 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787759, "decimalLat": -33.704409 }, "geometry": { "type": "Point", "coordinates": [ 150.788, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318273, "decimalLat": -28.816339 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.422603, "decimalLat": -31.904256 }, "geometry": { "type": "Point", "coordinates": [ 152.423, -31.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633251, "decimalLat": -34.418093 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066185, "decimalLat": -32.708193 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.043528, "decimalLat": -32.767142 }, "geometry": { "type": "Point", "coordinates": [ 152.044, -32.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105012, "decimalLat": -32.72 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625258, "decimalLat": -34.384518 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89309, "decimalLat": -31.45491 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604736, "decimalLat": -34.427302 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100861, "decimalLat": -29.490035 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317651, "decimalLat": -28.862857 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519971, "decimalLat": -34.446445 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927399, "decimalLat": -31.468948 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.539394, "decimalLat": -32.064887 }, "geometry": { "type": "Point", "coordinates": [ 152.539, -32.065 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077265, "decimalLat": -32.722486 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602557, "decimalLat": -34.424744 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628057, "decimalLat": -34.389774 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608603, "decimalLat": -28.686728 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61616, "decimalLat": -34.435359 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4064, "decimalLat": -28.4371 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.77952, "decimalLat": -32.91932 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -32.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.93908, "decimalLat": -32.63183 }, "geometry": { "type": "Point", "coordinates": [ 151.939, -32.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52382, "decimalLat": -34.463517 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.807753, "decimalLat": -34.104236 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.104 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561522, "decimalLat": -28.385714 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605565, "decimalLat": -34.432213 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908244, "decimalLat": -31.160598 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.161 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317651, "decimalLat": -28.862857 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926013, "decimalLat": -31.45285 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656179, "decimalLat": -33.58539 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -33.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632253, "decimalLat": -34.388287 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.540927, "decimalLat": -30.211856 }, "geometry": { "type": "Point", "coordinates": [ 152.541, -30.212 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.45968, "decimalLat": -28.32208 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.322 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.729322, "decimalLat": -36.429981 }, "geometry": { "type": "Point", "coordinates": [ 148.729, -36.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532943, "decimalLat": -34.481191 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643674, "decimalLat": -34.398695 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596283, "decimalLat": -29.838919 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -29.839 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610124, "decimalLat": -34.419978 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990376, "decimalLat": -34.089255 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.089 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929052, "decimalLat": -31.450196 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625275, "decimalLat": -34.385834 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.726, "decimalLat": -32.67 }, "geometry": { "type": "Point", "coordinates": [ 151.726, -32.67 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.080079, "decimalLat": -30.352065 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -30.352 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615842, "decimalLat": -34.43584 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518147, "decimalLat": -34.451844 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109401, "decimalLat": -29.490553 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633469, "decimalLat": -34.417719 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606124, "decimalLat": -34.437778 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.38345, "decimalLat": -31.929091 }, "geometry": { "type": "Point", "coordinates": [ 152.383, -31.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658856, "decimalLat": -34.456452 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59435, "decimalLat": -28.70969 }, "geometry": { "type": "Point", "coordinates": [ 153.594, -28.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.393998, "decimalLat": -36.088697 }, "geometry": { "type": "Point", "coordinates": [ 149.394, -36.089 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.663501, "decimalLat": -34.458118 }, "geometry": { "type": "Point", "coordinates": [ 150.664, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519252, "decimalLat": -34.437659 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624949, "decimalLat": -34.399685 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599408, "decimalLat": -34.429099 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.578506, "decimalLat": -28.86502 }, "geometry": { "type": "Point", "coordinates": [ 153.579, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658753, "decimalLat": -33.526844 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881858, "decimalLat": -29.607118 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -29.607 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617064, "decimalLat": -34.43379 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791835, "decimalLat": -31.641062 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.641 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278692, "decimalLat": -28.662138 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028715, "decimalLat": -32.191062 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.191 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.104, "decimalLat": -32.721 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.046007, "decimalLat": -34.028857 }, "geometry": { "type": "Point", "coordinates": [ 151.046, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635236, "decimalLat": -34.487001 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635333, "decimalLat": -34.488598 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110168, "decimalLat": -29.490231 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.797013, "decimalLat": -34.14552 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.146 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809221, "decimalLat": -34.099449 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077077, "decimalLat": -32.725465 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638477, "decimalLat": -34.490994 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924273, "decimalLat": -31.45801 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.086481, "decimalLat": -32.729137 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627455, "decimalLat": -34.421497 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521381, "decimalLat": -34.465757 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924256, "decimalLat": -31.458937 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528872, "decimalLat": -34.47048 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10137, "decimalLat": -29.489956 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785234, "decimalLat": -33.716877 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9208, "decimalLat": -30.50587 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095985, "decimalLat": -29.484791 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808211, "decimalLat": -34.098128 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929709, "decimalLat": -29.727079 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630398, "decimalLat": -34.420905 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.765123, "decimalLat": -32.697952 }, "geometry": { "type": "Point", "coordinates": [ 151.765, -32.698 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.028493, "decimalLat": -30.426521 }, "geometry": { "type": "Point", "coordinates": [ 153.028, -30.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.00116, "decimalLat": -30.40844 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -30.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615127, "decimalLat": -34.432653 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927454, "decimalLat": -31.465739 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784665, "decimalLat": -33.716589 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623753, "decimalLat": -34.383533 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.839671, "decimalLat": -34.078232 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.078 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630374, "decimalLat": -34.420977 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923035, "decimalLat": -31.45989 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.05278, "decimalLat": -34.89578 }, "geometry": { "type": "Point", "coordinates": [ 150.053, -34.896 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278132, "decimalLat": -28.831137 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.913678, "decimalLat": -34.068368 }, "geometry": { "type": "Point", "coordinates": [ 150.914, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.370487, "decimalLat": -30.466398 }, "geometry": { "type": "Point", "coordinates": [ 151.37, -30.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10932, "decimalLat": -29.4906 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.083512, "decimalLat": -29.745628 }, "geometry": { "type": "Point", "coordinates": [ 151.084, -29.746 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.097044, "decimalLat": -32.739428 }, "geometry": { "type": "Point", "coordinates": [ 152.097, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513826, "decimalLat": -34.446347 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619188, "decimalLat": -34.43678 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.682471, "decimalLat": -32.51552 }, "geometry": { "type": "Point", "coordinates": [ 151.682, -32.516 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.057881, "decimalLat": -33.773306 }, "geometry": { "type": "Point", "coordinates": [ 150.058, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519811, "decimalLat": -34.447839 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521136, "decimalLat": -34.43538 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.606767, "decimalLat": -30.34947 }, "geometry": { "type": "Point", "coordinates": [ 152.607, -30.349 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.750163, "decimalLat": -34.372582 }, "geometry": { "type": "Point", "coordinates": [ 150.75, -34.373 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609091, "decimalLat": -34.418822 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823948, "decimalLat": -31.543136 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -31.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.148212, "decimalLat": -32.725964 }, "geometry": { "type": "Point", "coordinates": [ 152.148, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.582378, "decimalLat": -28.788736 }, "geometry": { "type": "Point", "coordinates": [ 153.582, -28.789 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63531, "decimalLat": -34.488634 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.645375, "decimalLat": -32.551366 }, "geometry": { "type": "Point", "coordinates": [ 151.645, -32.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905249, "decimalLat": -31.496287 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.496 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867889, "decimalLat": -29.667173 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638091, "decimalLat": -34.420098 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632871, "decimalLat": -34.418852 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.576557 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600556, "decimalLat": -34.4274 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520358, "decimalLat": -34.465746 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921933, "decimalLat": -31.452848 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518924, "decimalLat": -34.44728 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520433, "decimalLat": -34.46581 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867203, "decimalLat": -29.669559 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -29.67 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604268, "decimalLat": -34.438003 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885405, "decimalLat": -31.438864 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374523, "decimalLat": -31.915792 }, "geometry": { "type": "Point", "coordinates": [ 152.375, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.296447, "decimalLat": -31.911313 }, "geometry": { "type": "Point", "coordinates": [ 152.296, -31.911 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.059002, "decimalLat": -29.73754 }, "geometry": { "type": "Point", "coordinates": [ 151.059, -29.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642995, "decimalLat": -34.395364 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316981, "decimalLat": -28.949626 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103768, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.369052, "decimalLat": -28.953149 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637346, "decimalLat": -34.423735 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094981, "decimalLat": -29.491889 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636189, "decimalLat": -34.4231 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374047, "decimalLat": -31.913202 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609158, "decimalLat": -34.420672 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630222, "decimalLat": -34.420956 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101204, "decimalLat": -29.489872 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919786, "decimalLat": -30.505421 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -30.505 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867632, "decimalLat": -29.667098 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.3156, "decimalLat": -31.94879 }, "geometry": { "type": "Point", "coordinates": [ 152.316, -31.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.988323, "decimalLat": -30.399605 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -30.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960571, "decimalLat": -36.556943 }, "geometry": { "type": "Point", "coordinates": [ 149.961, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908019, "decimalLat": -31.430194 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402026, "decimalLat": -28.259717 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064373, "decimalLat": -32.708977 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924406, "decimalLat": -31.46562 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607725, "decimalLat": -34.430092 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604122, "decimalLat": -34.439298 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621159, "decimalLat": -34.39871 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794192, "decimalLat": -31.13802 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.386551, "decimalLat": -36.212525 }, "geometry": { "type": "Point", "coordinates": [ 149.387, -36.213 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607255, "decimalLat": -34.437809 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06621, "decimalLat": -32.711568 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.041806, "decimalLat": -32.31259 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -32.313 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063763, "decimalLat": -32.712407 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.548816, "decimalLat": -28.674761 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.675 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378608, "decimalLat": -31.92933 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522799, "decimalLat": -34.46419 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92853, "decimalLat": -31.447756 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616942, "decimalLat": -33.436495 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -33.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783927, "decimalLat": -33.71756 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110495, "decimalLat": -29.4901 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640564, "decimalLat": -34.39712 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373637, "decimalLat": -31.914114 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919608, "decimalLat": -30.50608 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51389, "decimalLat": -34.446385 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.702147, "decimalLat": -33.503703 }, "geometry": { "type": "Point", "coordinates": [ 150.702, -33.504 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.807228, "decimalLat": -34.068105 }, "geometry": { "type": "Point", "coordinates": [ 150.807, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.886666, "decimalLat": -33.254132 }, "geometry": { "type": "Point", "coordinates": [ 150.887, -33.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608607, "decimalLat": -34.456407 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65873, "decimalLat": -33.526837 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.081517, "decimalLat": -30.344269 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -30.344 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.035166, "decimalLat": -32.765489 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626058, "decimalLat": -34.390465 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639073, "decimalLat": -34.491475 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627393, "decimalLat": -34.420234 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603986, "decimalLat": -34.439467 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096049, "decimalLat": -30.303122 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -30.303 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916099, "decimalLat": -31.480637 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293126, "decimalLat": -28.864629 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615845, "decimalLat": -34.43648 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6573, "decimalLat": -30.531555 }, "geometry": { "type": "Point", "coordinates": [ 151.657, -30.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610386, "decimalLat": -34.430622 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11635, "decimalLat": -30.263063 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -30.263 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78204, "decimalLat": -31.696785 }, "geometry": { "type": "Point", "coordinates": [ 152.782, -31.697 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796934, "decimalLat": -34.133034 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.133 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063698, "decimalLat": -32.706508 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.449143, "decimalLat": -28.233606 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.234 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60144, "decimalLat": -28.7273 }, "geometry": { "type": "Point", "coordinates": [ 153.601, -28.727 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324818, "decimalLat": -36.294353 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.294 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.274393, "decimalLat": -29.010397 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -29.01 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.136151, "decimalLat": -31.43267 }, "geometry": { "type": "Point", "coordinates": [ 152.136, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603803, "decimalLat": -34.439409 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520249, "decimalLat": -34.447361 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.19571, "decimalLat": -29.78671 }, "geometry": { "type": "Point", "coordinates": [ 151.196, -29.787 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598038, "decimalLat": -34.4268 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.248416, "decimalLat": -28.726615 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -28.727 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928233, "decimalLat": -31.459579 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513109, "decimalLat": -34.447757 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.621917, "decimalLat": -33.603863 }, "geometry": { "type": "Point", "coordinates": [ 149.622, -33.604 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523847, "decimalLat": -34.452663 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.866027, "decimalLat": -34.060984 }, "geometry": { "type": "Point", "coordinates": [ 150.866, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01264, "decimalLat": -29.53805 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -29.538 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637334, "decimalLat": -34.423798 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.962048, "decimalLat": -36.514707 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.515 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09216, "decimalLat": -29.488093 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616346, "decimalLat": -34.429187 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.962048, "decimalLat": -36.514707 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51755, "decimalLat": -34.444782 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518659, "decimalLat": -34.447392 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4475, "decimalLat": -28.65439 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.438146, "decimalLat": -28.696419 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.696 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.911948, "decimalLat": -33.969911 }, "geometry": { "type": "Point", "coordinates": [ 150.912, -33.97 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603088, "decimalLat": -34.417596 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379533, "decimalLat": -31.919963 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.216709, "decimalLat": -32.419657 }, "geometry": { "type": "Point", "coordinates": [ 152.217, -32.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.059352, "decimalLat": -32.712079 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610226, "decimalLat": -34.419079 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848837, "decimalLat": -34.049087 }, "geometry": { "type": "Point", "coordinates": [ 150.849, -34.049 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.138801, "decimalLat": -32.108708 }, "geometry": { "type": "Point", "coordinates": [ 152.139, -32.109 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887207, "decimalLat": -29.676818 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -29.677 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.988323, "decimalLat": -30.399605 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -30.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630632, "decimalLat": -34.420702 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604924, "decimalLat": -34.437898 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64049, "decimalLat": -34.494125 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.946833, "decimalLat": -36.308587 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.309 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302601, "decimalLat": -28.845501 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605405, "decimalLat": -34.43248 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.871066, "decimalLat": -34.042622 }, "geometry": { "type": "Point", "coordinates": [ 150.871, -34.043 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604314, "decimalLat": -34.42687 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063775, "decimalLat": -32.703195 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.703 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.816839, "decimalLat": -33.481827 }, "geometry": { "type": "Point", "coordinates": [ 150.817, -33.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.101295, "decimalLat": -33.779148 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.85978, "decimalLat": -31.428368 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -31.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637408, "decimalLat": -34.423853 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624195, "decimalLat": -34.388662 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595495, "decimalLat": -34.425939 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.974325, "decimalLat": -34.086265 }, "geometry": { "type": "Point", "coordinates": [ 150.974, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.777493, "decimalLat": -34.199736 }, "geometry": { "type": "Point", "coordinates": [ 150.777, -34.2 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608688, "decimalLat": -28.683535 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103859, "decimalLat": -29.489587 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600146, "decimalLat": -34.42878 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.565372, "decimalLat": -31.967869 }, "geometry": { "type": "Point", "coordinates": [ 152.565, -31.968 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921185, "decimalLat": -31.455091 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103892, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.765371, "decimalLat": -32.69804 }, "geometry": { "type": "Point", "coordinates": [ 151.765, -32.698 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642802, "decimalLat": -34.394882 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924363, "decimalLat": -31.454161 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609555, "decimalLat": -34.418957 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786142, "decimalLat": -33.710441 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914101, "decimalLat": -31.476541 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631153, "decimalLat": -34.387562 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092278, "decimalLat": -29.488121 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519931, "decimalLat": -34.452584 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630906, "decimalLat": -34.420635 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786141, "decimalLat": -33.710529 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104085, "decimalLat": -29.485282 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913073, "decimalLat": -31.428909 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.642093, "decimalLat": -32.657279 }, "geometry": { "type": "Point", "coordinates": [ 151.642, -32.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644959, "decimalLat": -34.391264 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317651, "decimalLat": -28.862857 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.467892, "decimalLat": -31.947093 }, "geometry": { "type": "Point", "coordinates": [ 152.468, -31.947 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.086409, "decimalLat": -34.698469 }, "geometry": { "type": "Point", "coordinates": [ 150.086, -34.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602695, "decimalLat": -34.42526 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632793, "decimalLat": -34.418905 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634769, "decimalLat": -34.423685 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.861754, "decimalLat": -34.065212 }, "geometry": { "type": "Point", "coordinates": [ 150.862, -34.065 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614376, "decimalLat": -34.429212 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627544, "decimalLat": -34.389845 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.136708, "decimalLat": -31.415541 }, "geometry": { "type": "Point", "coordinates": [ 152.137, -31.416 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920334, "decimalLat": -31.478174 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.704278, "decimalLat": -33.405506 }, "geometry": { "type": "Point", "coordinates": [ 150.704, -33.406 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883694, "decimalLat": -31.429034 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89723, "decimalLat": -31.474846 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377477, "decimalLat": -28.85174 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.852 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.096682, "decimalLat": -32.739299 }, "geometry": { "type": "Point", "coordinates": [ 152.097, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.07765, "decimalLat": -31.20481 }, "geometry": { "type": "Point", "coordinates": [ 150.078, -31.205 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905454, "decimalLat": -31.437503 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764875, "decimalLat": -31.437918 }, "geometry": { "type": "Point", "coordinates": [ 152.765, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79265, "decimalLat": -34.13993 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637347, "decimalLat": -34.423699 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104203, "decimalLat": -29.478819 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19874, "decimalLat": -32.187837 }, "geometry": { "type": "Point", "coordinates": [ 152.199, -32.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627239, "decimalLat": -34.420654 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521479, "decimalLat": -34.46575 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43329, "decimalLat": -28.868624 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10821, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918066, "decimalLat": -30.281064 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -30.281 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92331, "decimalLat": -31.471353 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909424, "decimalLat": -31.176289 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.176 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929032, "decimalLat": -31.450166 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.609987, "decimalLat": -30.345617 }, "geometry": { "type": "Point", "coordinates": [ 152.61, -30.346 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633637, "decimalLat": -34.418678 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104214, "decimalLat": -29.47957 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315766, "decimalLat": -28.825103 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627063, "decimalLat": -34.389556 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.229204, "decimalLat": -28.604121 }, "geometry": { "type": "Point", "coordinates": [ 152.229, -28.604 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.097629, "decimalLat": -33.13681 }, "geometry": { "type": "Point", "coordinates": [ 151.098, -33.137 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514333, "decimalLat": -34.446511 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606004, "decimalLat": -34.437793 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.953779, "decimalLat": -33.958984 }, "geometry": { "type": "Point", "coordinates": [ 150.954, -33.959 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.107278, "decimalLat": -32.729397 }, "geometry": { "type": "Point", "coordinates": [ 152.107, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.710506, "decimalLat": -32.629689 }, "geometry": { "type": "Point", "coordinates": [ 151.711, -32.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790596, "decimalLat": -34.188134 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1021, "decimalLat": -29.488742 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520295, "decimalLat": -34.465681 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061035, "decimalLat": -32.710798 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517621, "decimalLat": -34.453051 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.469052, "decimalLat": -28.262461 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.53013, "decimalLat": -28.64474 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -28.645 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063709, "decimalLat": -32.706553 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064327, "decimalLat": -32.710664 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785211, "decimalLat": -33.713734 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.660325, "decimalLat": -34.213129 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.213 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513947, "decimalLat": -34.447035 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556647, "decimalLat": -28.40001 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522447, "decimalLat": -34.46504 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.097885, "decimalLat": -32.739596 }, "geometry": { "type": "Point", "coordinates": [ 152.098, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.308373, "decimalLat": -28.850232 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103752, "decimalLat": -29.485655 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610294, "decimalLat": -34.418954 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558835, "decimalLat": -28.369223 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.369 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924998, "decimalLat": -31.453622 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519482, "decimalLat": -34.447157 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.171948, "decimalLat": -32.662579 }, "geometry": { "type": "Point", "coordinates": [ 152.172, -32.663 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.431617, "decimalLat": -29.014449 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -29.014 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.388204, "decimalLat": -31.802283 }, "geometry": { "type": "Point", "coordinates": [ 152.388, -31.802 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636367, "decimalLat": -34.485508 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630863, "decimalLat": -34.420634 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.018884, "decimalLat": -30.367373 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -30.367 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785167, "decimalLat": -33.714059 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.723503, "decimalLat": -31.623706 }, "geometry": { "type": "Point", "coordinates": [ 151.724, -31.624 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629002, "decimalLat": -34.395986 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636248, "decimalLat": -34.421793 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103918, "decimalLat": -29.489591 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522772, "decimalLat": -34.465849 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.866394, "decimalLat": -29.692061 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -29.692 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.0749, "decimalLat": -32.725189 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.236042, "decimalLat": -35.366018 }, "geometry": { "type": "Point", "coordinates": [ 149.236, -35.366 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.11421, "decimalLat": -31.1731 }, "geometry": { "type": "Point", "coordinates": [ 150.114, -31.173 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896425, "decimalLat": -29.629872 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -29.63 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929283, "decimalLat": -31.453573 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521258, "decimalLat": -34.46662 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.999308, "decimalLat": -32.727656 }, "geometry": { "type": "Point", "coordinates": [ 151.999, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.983557, "decimalLat": -34.094698 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409406, "decimalLat": -31.910186 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786346, "decimalLat": -33.707387 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514309, "decimalLat": -34.446574 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520442, "decimalLat": -34.4541 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901303, "decimalLat": -31.440876 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630552, "decimalLat": -34.386901 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86796, "decimalLat": -31.475495 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901944, "decimalLat": -30.462694 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -30.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556009, "decimalLat": -28.398853 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52673, "decimalLat": -34.469652 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521468, "decimalLat": -34.46575 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.980482, "decimalLat": -34.12769 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -34.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.038512, "decimalLat": -32.735834 }, "geometry": { "type": "Point", "coordinates": [ 152.039, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.488028, "decimalLat": -32.98809 }, "geometry": { "type": "Point", "coordinates": [ 151.488, -32.988 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292842, "decimalLat": -28.864759 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627337, "decimalLat": -34.420278 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516469, "decimalLat": -34.439423 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922612, "decimalLat": -31.442475 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.404872, "decimalLat": -28.972444 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.972 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.084555, "decimalLat": -32.7306 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604188, "decimalLat": -34.422495 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.913678, "decimalLat": -34.068368 }, "geometry": { "type": "Point", "coordinates": [ 150.914, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603775, "decimalLat": -34.426688 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339842, "decimalLat": -28.993026 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -28.993 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.913678, "decimalLat": -34.068368 }, "geometry": { "type": "Point", "coordinates": [ 150.914, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900816, "decimalLat": -29.631326 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52078, "decimalLat": -34.43604 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917147, "decimalLat": -31.450665 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609987, "decimalLat": -34.432814 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516063, "decimalLat": -34.44944 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.207956, "decimalLat": -28.898232 }, "geometry": { "type": "Point", "coordinates": [ 153.208, -28.898 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493666, "decimalLat": -28.675247 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.675 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602341, "decimalLat": -34.42583 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987053, "decimalLat": -34.029231 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929825, "decimalLat": -29.000859 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.001 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.13525, "decimalLat": -32.727203 }, "geometry": { "type": "Point", "coordinates": [ 152.135, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867108, "decimalLat": -31.467551 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520282, "decimalLat": -34.465753 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622066, "decimalLat": -34.39779 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608841, "decimalLat": -34.42071 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.10504, "decimalLat": -31.15824 }, "geometry": { "type": "Point", "coordinates": [ 150.105, -31.158 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56561, "decimalLat": -28.38741 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92117, "decimalLat": -31.479306 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.776098, "decimalLat": -31.582983 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -31.583 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785161, "decimalLat": -33.7192 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595795, "decimalLat": -34.425702 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.039025, "decimalLat": -33.263711 }, "geometry": { "type": "Point", "coordinates": [ 150.039, -33.264 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645213, "decimalLat": -34.392287 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29577, "decimalLat": -28.819465 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630861, "decimalLat": -34.420688 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.001052, "decimalLat": -36.513032 }, "geometry": { "type": "Point", "coordinates": [ 150.001, -36.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785324, "decimalLat": -33.708181 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.854062, "decimalLat": -34.087343 }, "geometry": { "type": "Point", "coordinates": [ 150.854, -34.087 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.805449, "decimalLat": -31.676474 }, "geometry": { "type": "Point", "coordinates": [ 152.805, -31.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.338409, "decimalLat": -29.001672 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -29.002 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637007, "decimalLat": -34.488288 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899733, "decimalLat": -29.631074 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606231, "decimalLat": -34.432118 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927052, "decimalLat": -31.463281 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.857305, "decimalLat": -31.299053 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -31.299 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.84661, "decimalLat": -34.03158 }, "geometry": { "type": "Point", "coordinates": [ 150.847, -34.032 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616015, "decimalLat": -34.440459 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.0945, "decimalLat": -33.14425 }, "geometry": { "type": "Point", "coordinates": [ 151.095, -33.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607985, "decimalLat": -34.454186 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374069, "decimalLat": -28.999868 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -29.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609181, "decimalLat": -34.420618 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.047357, "decimalLat": -30.443767 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -30.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786086, "decimalLat": -33.712276 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322262, "decimalLat": -28.818233 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624195, "decimalLat": -34.388662 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627507, "decimalLat": -34.421579 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.421673, "decimalLat": -28.98268 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322231, "decimalLat": -28.816046 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409049, "decimalLat": -31.670198 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.67 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.438146, "decimalLat": -28.696419 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.696 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926893, "decimalLat": -31.452163 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3505, "decimalLat": -29.386646 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -29.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.370571, "decimalLat": -28.877495 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.877 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515272, "decimalLat": -34.451542 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077923, "decimalLat": -32.731466 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104745, "decimalLat": -29.489634 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29626, "decimalLat": -28.828826 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.829 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071505, "decimalLat": -30.880259 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517242, "decimalLat": -34.451528 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.76313, "decimalLat": -31.250592 }, "geometry": { "type": "Point", "coordinates": [ 152.763, -31.251 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785422, "decimalLat": -31.6323 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521388, "decimalLat": -34.435719 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630721, "decimalLat": -34.42065 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381501, "decimalLat": -31.915208 }, "geometry": { "type": "Point", "coordinates": [ 152.382, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.365536, "decimalLat": -31.951441 }, "geometry": { "type": "Point", "coordinates": [ 152.366, -31.951 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.00492, "decimalLat": -29.737246 }, "geometry": { "type": "Point", "coordinates": [ 151.005, -29.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.814428, "decimalLat": -34.103818 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.104 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631505, "decimalLat": -34.38783 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868211, "decimalLat": -29.667173 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821121, "decimalLat": -34.10191 }, "geometry": { "type": "Point", "coordinates": [ 150.821, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067424, "decimalLat": -32.759928 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.76 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395182, "decimalLat": -28.959966 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51659, "decimalLat": -28.668288 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.668 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798519, "decimalLat": -31.210815 }, "geometry": { "type": "Point", "coordinates": [ 152.799, -31.211 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619813, "decimalLat": -34.439695 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902904, "decimalLat": -31.479872 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07705, "decimalLat": -29.45099 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626708, "decimalLat": -34.421365 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104165, "decimalLat": -29.480892 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533452, "decimalLat": -34.479065 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092181, "decimalLat": -29.488065 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899797, "decimalLat": -31.443525 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.47887 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616392, "decimalLat": -34.434471 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.086936, "decimalLat": -29.071477 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -29.071 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516417, "decimalLat": -34.447788 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640408, "decimalLat": -34.493547 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921567, "decimalLat": -31.453334 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428936, "decimalLat": -28.62677 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.979756, "decimalLat": -34.085315 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -34.085 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.461156, "decimalLat": -28.59417 }, "geometry": { "type": "Point", "coordinates": [ 153.461, -28.594 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6312, "decimalLat": -34.387076 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.291127, "decimalLat": -28.99283 }, "geometry": { "type": "Point", "coordinates": [ 153.291, -28.993 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519833, "decimalLat": -34.447064 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630587, "decimalLat": -34.389922 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.96647, "decimalLat": -31.201429 }, "geometry": { "type": "Point", "coordinates": [ 152.966, -31.201 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6263, "decimalLat": -34.395771 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909023, "decimalLat": -31.435127 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412796, "decimalLat": -31.93298 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809133, "decimalLat": -31.661759 }, "geometry": { "type": "Point", "coordinates": [ 152.809, -31.662 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899454, "decimalLat": -29.631228 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514407, "decimalLat": -34.443619 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.74475, "decimalLat": -30.312932 }, "geometry": { "type": "Point", "coordinates": [ 152.745, -30.313 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900378, "decimalLat": -31.473999 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610171, "decimalLat": -34.42977 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.341699, "decimalLat": -28.806112 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966961, "decimalLat": -36.56748 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.567 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081127, "decimalLat": -32.736579 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.475416, "decimalLat": -32.36447 }, "geometry": { "type": "Point", "coordinates": [ 152.475, -32.364 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315053, "decimalLat": -29.02761 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -29.028 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627152, "decimalLat": -34.386772 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104037, "decimalLat": -29.484329 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.194095, "decimalLat": -32.224416 }, "geometry": { "type": "Point", "coordinates": [ 152.194, -32.224 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605618, "decimalLat": -34.437218 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629557, "decimalLat": -34.389406 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.651, "decimalLat": -30.504 }, "geometry": { "type": "Point", "coordinates": [ 151.651, -30.504 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.182534, "decimalLat": -29.464112 }, "geometry": { "type": "Point", "coordinates": [ 153.183, -29.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065302, "decimalLat": -32.710574 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518247, "decimalLat": -34.451414 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314501, "decimalLat": -28.850797 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524916, "decimalLat": -34.494596 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606021, "decimalLat": -34.45586 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108199, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615467, "decimalLat": -34.432551 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657849, "decimalLat": -34.458208 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872888, "decimalLat": -31.468546 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.162214, "decimalLat": -31.619148 }, "geometry": { "type": "Point", "coordinates": [ 152.162, -31.619 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.814728, "decimalLat": -31.276306 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.276 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527581, "decimalLat": -34.455735 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10412, "decimalLat": -29.480635 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606384, "decimalLat": -34.438206 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.418171, "decimalLat": -29.028046 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -29.028 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92576, "decimalLat": -31.447655 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907263, "decimalLat": -31.44426 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318261, "decimalLat": -28.816002 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638707, "decimalLat": -34.491341 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624222, "decimalLat": -34.388879 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434666, "decimalLat": -28.572677 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606461, "decimalLat": -34.449243 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40749, "decimalLat": -31.911045 }, "geometry": { "type": "Point", "coordinates": [ 152.407, -31.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63853, "decimalLat": -34.490653 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.034943, "decimalLat": -32.727172 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10813, "decimalLat": -29.490497 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377572, "decimalLat": -28.572338 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631085, "decimalLat": -34.387299 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09084, "decimalLat": -29.487663 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603801, "decimalLat": -34.440238 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317651, "decimalLat": -28.862857 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893855, "decimalLat": -31.431878 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.036423, "decimalLat": -30.8961 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402873, "decimalLat": -29.018571 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -29.019 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899454, "decimalLat": -29.6312 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630597, "decimalLat": -34.388777 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639407, "decimalLat": -34.399586 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110195, "decimalLat": -29.490348 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614652, "decimalLat": -34.435204 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.8001, "decimalLat": -34.108335 }, "geometry": { "type": "Point", "coordinates": [ 150.8, -34.108 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607514, "decimalLat": -34.421848 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64532, "decimalLat": -34.393119 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.7127, "decimalLat": -30.4554 }, "geometry": { "type": "Point", "coordinates": [ 152.713, -30.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.992879, "decimalLat": -33.983402 }, "geometry": { "type": "Point", "coordinates": [ 150.993, -33.983 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.037048, "decimalLat": -32.728656 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.238384, "decimalLat": -28.651388 }, "geometry": { "type": "Point", "coordinates": [ 153.238, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902538, "decimalLat": -30.462339 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520284, "decimalLat": -34.465681 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607193, "decimalLat": -34.436906 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513918, "decimalLat": -34.447269 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104771, "decimalLat": -29.47688 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.046988, "decimalLat": -28.592858 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -28.593 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109433, "decimalLat": -29.490521 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.77949, "decimalLat": -31.25626 }, "geometry": { "type": "Point", "coordinates": [ 152.779, -31.256 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521022, "decimalLat": -34.446998 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.802877, "decimalLat": -31.130961 }, "geometry": { "type": "Point", "coordinates": [ 152.803, -31.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103339, "decimalLat": -29.489872 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189959, "decimalLat": -32.223426 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627391, "decimalLat": -34.390645 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624542, "decimalLat": -34.38793 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884553, "decimalLat": -31.429832 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06694, "decimalLat": -31.13794 }, "geometry": { "type": "Point", "coordinates": [ 150.067, -31.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.80659, "decimalLat": -32.360245 }, "geometry": { "type": "Point", "coordinates": [ 149.807, -32.36 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633001, "decimalLat": -34.418494 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063428, "decimalLat": -32.706351 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642803, "decimalLat": -34.394071 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.334677, "decimalLat": -36.153555 }, "geometry": { "type": "Point", "coordinates": [ 149.335, -36.154 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524856, "decimalLat": -34.464187 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643743, "decimalLat": -34.394675 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61096, "decimalLat": -34.432256 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.490082 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521775, "decimalLat": -34.464936 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061041, "decimalLat": -32.710699 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63014, "decimalLat": -34.420395 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922502, "decimalLat": -30.509654 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -30.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60294, "decimalLat": -34.435723 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625166, "decimalLat": -34.386644 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617721, "decimalLat": -34.438617 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658883, "decimalLat": -33.526959 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.97665, "decimalLat": -34.024485 }, "geometry": { "type": "Point", "coordinates": [ 150.977, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923296, "decimalLat": -31.46013 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640332, "decimalLat": -34.493942 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784504, "decimalLat": -33.711996 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884465, "decimalLat": -28.440333 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -28.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06378, "decimalLat": -32.706516 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.309355, "decimalLat": -28.823148 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616442, "decimalLat": -34.43614 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.44401, "decimalLat": -28.681058 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658993, "decimalLat": -34.458176 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.441148, "decimalLat": -28.980713 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.981 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894991, "decimalLat": -31.429386 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911551, "decimalLat": -31.470146 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848206, "decimalLat": -34.030191 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.03 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880034, "decimalLat": -29.68301 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -29.683 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077045, "decimalLat": -32.722541 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561958, "decimalLat": -28.385488 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.008324, "decimalLat": -34.046804 }, "geometry": { "type": "Point", "coordinates": [ 151.008, -34.047 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629825, "decimalLat": -28.637745 }, "geometry": { "type": "Point", "coordinates": [ 153.63, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.245604, "decimalLat": -30.018307 }, "geometry": { "type": "Point", "coordinates": [ 152.246, -30.018 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.849138, "decimalLat": -31.558365 }, "geometry": { "type": "Point", "coordinates": [ 152.849, -31.558 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630295, "decimalLat": -34.394469 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.830615, "decimalLat": -34.159765 }, "geometry": { "type": "Point", "coordinates": [ 150.831, -34.16 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65618, "decimalLat": -33.58539 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -33.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640224, "decimalLat": -34.493138 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613466, "decimalLat": -34.43024 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617065, "decimalLat": -34.433772 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631528, "decimalLat": -34.387795 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610061, "decimalLat": -34.430201 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279605, "decimalLat": -28.858453 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632701, "decimalLat": -34.392857 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.627535, "decimalLat": -32.644012 }, "geometry": { "type": "Point", "coordinates": [ 151.628, -32.644 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.000327, "decimalLat": -34.06167 }, "geometry": { "type": "Point", "coordinates": [ 151.0, -34.062 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079082, "decimalLat": -32.7274 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638807, "decimalLat": -34.419373 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555885, "decimalLat": -28.398905 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104718, "decimalLat": -29.477039 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.972995, "decimalLat": -33.335487 }, "geometry": { "type": "Point", "coordinates": [ 150.973, -33.335 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945176, "decimalLat": -36.590676 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.591 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.354732, "decimalLat": -29.09726 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -29.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316984, "decimalLat": -28.937089 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.937 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785679, "decimalLat": -33.706617 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637324, "decimalLat": -34.423753 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.29591, "decimalLat": -36.161958 }, "geometry": { "type": "Point", "coordinates": [ 149.296, -36.162 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.236621, "decimalLat": -28.899114 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -28.899 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.81422, "decimalLat": -31.990086 }, "geometry": { "type": "Point", "coordinates": [ 151.814, -31.99 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.47943, "decimalLat": -28.621739 }, "geometry": { "type": "Point", "coordinates": [ 153.479, -28.622 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.702147, "decimalLat": -33.503703 }, "geometry": { "type": "Point", "coordinates": [ 150.702, -33.504 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639158, "decimalLat": -34.491936 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401068, "decimalLat": -29.037639 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -29.038 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785232, "decimalLat": -33.717104 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.086195, "decimalLat": -32.733832 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908734, "decimalLat": -31.454816 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519793, "decimalLat": -34.457638 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49554, "decimalLat": -28.693785 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923537, "decimalLat": -31.478065 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518293, "decimalLat": -34.453533 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.8452, "decimalLat": -29.834389 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189959, "decimalLat": -32.223426 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.223 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784998, "decimalLat": -33.716169 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468557, "decimalLat": -28.328904 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10379, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89165, "decimalLat": -34.015134 }, "geometry": { "type": "Point", "coordinates": [ 150.892, -34.015 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609159, "decimalLat": -34.420627 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.011021, "decimalLat": -32.727779 }, "geometry": { "type": "Point", "coordinates": [ 152.011, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60468, "decimalLat": -34.427364 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07719, "decimalLat": -32.722432 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513127, "decimalLat": -34.447163 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52397, "decimalLat": -34.46398 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604405, "decimalLat": -34.43815 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.220131, "decimalLat": -28.865702 }, "geometry": { "type": "Point", "coordinates": [ 153.22, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519138, "decimalLat": -34.459915 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610583, "decimalLat": -34.43251 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63103, "decimalLat": -34.38884 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602052, "decimalLat": -34.42568 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78371, "decimalLat": -31.329011 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.329 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643886, "decimalLat": -34.396174 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867889, "decimalLat": -29.667173 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516096, "decimalLat": -34.446862 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516223, "decimalLat": -34.449542 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302722, "decimalLat": -28.84815 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.069309, "decimalLat": -27.518362 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -27.518 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89337, "decimalLat": -33.971509 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.972 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987363, "decimalLat": -34.091866 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.401708, "decimalLat": -31.920062 }, "geometry": { "type": "Point", "coordinates": [ 152.402, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561958, "decimalLat": -28.385488 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.193314, "decimalLat": -28.844131 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.414839, "decimalLat": -31.938825 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.371166, "decimalLat": -31.916537 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095447, "decimalLat": -28.603172 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -28.603 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901761, "decimalLat": -31.441937 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395189, "decimalLat": -29.047296 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.047 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.866559, "decimalLat": -31.305806 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -31.306 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334817, "decimalLat": -28.814874 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78416, "decimalLat": -33.716917 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928768, "decimalLat": -31.459504 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644174, "decimalLat": -34.548357 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631711, "decimalLat": -34.387059 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.727124, "decimalLat": -31.837541 }, "geometry": { "type": "Point", "coordinates": [ 152.727, -31.838 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101757, "decimalLat": -29.48912 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.112532, "decimalLat": -32.7457 }, "geometry": { "type": "Point", "coordinates": [ 152.113, -32.746 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528836, "decimalLat": -34.458795 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613927, "decimalLat": -34.433152 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61642, "decimalLat": -34.434246 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.060139, "decimalLat": -36.115954 }, "geometry": { "type": "Point", "coordinates": [ 150.06, -36.116 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.97652, "decimalLat": -34.101927 }, "geometry": { "type": "Point", "coordinates": [ 150.977, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102894, "decimalLat": -29.487798 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.594424, "decimalLat": -28.712315 }, "geometry": { "type": "Point", "coordinates": [ 153.594, -28.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519399, "decimalLat": -34.456594 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.04327, "decimalLat": -34.91114 }, "geometry": { "type": "Point", "coordinates": [ 150.043, -34.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521395, "decimalLat": -34.461223 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639131, "decimalLat": -34.421768 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8933, "decimalLat": -31.443058 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.038905, "decimalLat": -32.732426 }, "geometry": { "type": "Point", "coordinates": [ 152.039, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609725, "decimalLat": -34.430546 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.012979, "decimalLat": -29.015323 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -29.015 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525249, "decimalLat": -34.46159 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923377, "decimalLat": -31.45733 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.116803, "decimalLat": -30.24956 }, "geometry": { "type": "Point", "coordinates": [ 153.117, -30.25 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909438, "decimalLat": -31.447377 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.081732, "decimalLat": -33.746099 }, "geometry": { "type": "Point", "coordinates": [ 150.082, -33.746 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63064, "decimalLat": -33.56246 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -33.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513094, "decimalLat": -34.446089 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110495, "decimalLat": -29.489979 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925728, "decimalLat": -31.447656 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07422, "decimalLat": -32.738611 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.169802, "decimalLat": -28.545168 }, "geometry": { "type": "Point", "coordinates": [ 153.17, -28.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607101, "decimalLat": -34.454268 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6156, "decimalLat": -34.435547 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884863, "decimalLat": -31.439029 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945176, "decimalLat": -36.590676 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.591 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626814, "decimalLat": -34.421061 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558084, "decimalLat": -28.387756 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60422, "decimalLat": -34.422513 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79904, "decimalLat": -34.1844 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.184 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.863381, "decimalLat": -34.04301 }, "geometry": { "type": "Point", "coordinates": [ 150.863, -34.043 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.685016, "decimalLat": -31.819477 }, "geometry": { "type": "Point", "coordinates": [ 152.685, -31.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628129, "decimalLat": -34.38992 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.874244, "decimalLat": -30.917112 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -30.917 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928735, "decimalLat": -31.459112 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90645, "decimalLat": -30.23878 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -30.239 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37328, "decimalLat": -31.915914 }, "geometry": { "type": "Point", "coordinates": [ 152.373, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535156, "decimalLat": -34.46298 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795197, "decimalLat": -31.644405 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -31.644 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.007085, "decimalLat": -34.037982 }, "geometry": { "type": "Point", "coordinates": [ 151.007, -34.038 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519035, "decimalLat": -34.44278 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902981, "decimalLat": -31.447769 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064551, "decimalLat": -32.708741 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372057, "decimalLat": -31.921041 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095813, "decimalLat": -29.48799 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.974079, "decimalLat": -32.356517 }, "geometry": { "type": "Point", "coordinates": [ 151.974, -32.357 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794056, "decimalLat": -34.137838 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637453, "decimalLat": -34.423791 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065286, "decimalLat": -32.71098 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796905, "decimalLat": -34.216613 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.217 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40174, "decimalLat": -28.260425 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513074, "decimalLat": -34.447116 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615957, "decimalLat": -34.436392 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315064, "decimalLat": -28.819292 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280168, "decimalLat": -28.828381 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394415, "decimalLat": -28.95947 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597934, "decimalLat": -34.41561 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.416 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786782, "decimalLat": -31.62914 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602432, "decimalLat": -34.434856 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10821, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604294, "decimalLat": -34.438995 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10821, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.850906, "decimalLat": -34.082195 }, "geometry": { "type": "Point", "coordinates": [ 150.851, -34.082 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.261018, "decimalLat": -31.404289 }, "geometry": { "type": "Point", "coordinates": [ 152.261, -31.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626276, "decimalLat": -34.421231 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6637, "decimalLat": -32.67563 }, "geometry": { "type": "Point", "coordinates": [ 151.664, -32.676 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40941, "decimalLat": -31.91019 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37553, "decimalLat": -29.000055 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -29.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901838, "decimalLat": -31.442345 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792125, "decimalLat": -31.641325 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.641 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639128, "decimalLat": -34.491476 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615889, "decimalLat": -34.436084 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079426, "decimalLat": -32.73103 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519437, "decimalLat": -34.435454 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101285, "decimalLat": -29.489979 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.70361, "decimalLat": -34.26211 }, "geometry": { "type": "Point", "coordinates": [ 150.704, -34.262 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.432333, "decimalLat": -28.968909 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.969 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104273, "decimalLat": -29.477572 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924609, "decimalLat": -31.439934 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62907, "decimalLat": -34.395113 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516447, "decimalLat": -34.447501 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522445, "decimalLat": -34.465842 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104466, "decimalLat": -29.489643 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.107713, "decimalLat": -32.7784 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -32.778 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515294, "decimalLat": -34.451516 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889712, "decimalLat": -31.443386 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897211, "decimalLat": -31.18492 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.185 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515249, "decimalLat": -34.444961 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360617, "decimalLat": -28.840581 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607241, "decimalLat": -34.435618 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627439, "decimalLat": -34.390087 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51289, "decimalLat": -28.689059 }, "geometry": { "type": "Point", "coordinates": [ 153.513, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.578608, "decimalLat": -31.758628 }, "geometry": { "type": "Point", "coordinates": [ 152.579, -31.759 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.994539, "decimalLat": -32.297172 }, "geometry": { "type": "Point", "coordinates": [ 151.995, -32.297 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.011964, "decimalLat": -30.422181 }, "geometry": { "type": "Point", "coordinates": [ 153.012, -30.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.84671, "decimalLat": -34.096581 }, "geometry": { "type": "Point", "coordinates": [ 150.847, -34.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.021287, "decimalLat": -36.554124 }, "geometry": { "type": "Point", "coordinates": [ 150.021, -36.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.423246, "decimalLat": -29.020809 }, "geometry": { "type": "Point", "coordinates": [ 153.423, -29.021 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927274, "decimalLat": -31.46875 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626114, "decimalLat": -34.39043 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409406, "decimalLat": -31.910186 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.619533, "decimalLat": -30.341413 }, "geometry": { "type": "Point", "coordinates": [ 152.62, -30.341 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.804381, "decimalLat": -34.113876 }, "geometry": { "type": "Point", "coordinates": [ 150.804, -34.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603076, "decimalLat": -34.424474 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28726, "decimalLat": -29.02696 }, "geometry": { "type": "Point", "coordinates": [ 153.287, -29.027 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92577, "decimalLat": -31.445572 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.073578, "decimalLat": -29.228892 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -29.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523944, "decimalLat": -34.463763 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640399, "decimalLat": -34.397559 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.841982, "decimalLat": -34.055805 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339182, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52037, "decimalLat": -34.46571 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794126, "decimalLat": -31.127799 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.128 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.673168, "decimalLat": -33.547441 }, "geometry": { "type": "Point", "coordinates": [ 150.673, -33.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319946, "decimalLat": -28.850559 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110989, "decimalLat": -29.48742 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637302, "decimalLat": -34.42377 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61147, "decimalLat": -34.41968 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52139, "decimalLat": -34.459203 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517378, "decimalLat": -34.452072 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.1103, "decimalLat": -29.76276 }, "geometry": { "type": "Point", "coordinates": [ 151.11, -29.763 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911175, "decimalLat": -31.441625 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515782, "decimalLat": -34.450832 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785344, "decimalLat": -33.71562 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895808, "decimalLat": -31.460426 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.695043, "decimalLat": -32.246702 }, "geometry": { "type": "Point", "coordinates": [ 151.695, -32.247 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517222, "decimalLat": -34.445208 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796747, "decimalLat": -34.144733 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.145 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.842181, "decimalLat": -31.431984 }, "geometry": { "type": "Point", "coordinates": [ 152.842, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072518, "decimalLat": -32.712381 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600358, "decimalLat": -34.428595 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.194708, "decimalLat": -28.666969 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606976, "decimalLat": -34.430014 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637486, "decimalLat": -34.423783 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903978, "decimalLat": -31.47143 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298814, "decimalLat": -28.82595 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616383, "decimalLat": -34.435941 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.961427, "decimalLat": -30.221394 }, "geometry": { "type": "Point", "coordinates": [ 152.961, -30.221 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609269, "decimalLat": -34.420593 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104026, "decimalLat": -29.484343 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640112, "decimalLat": -34.396949 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.628907, "decimalLat": -28.638007 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277512, "decimalLat": -28.939154 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513749, "decimalLat": -34.446382 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900226, "decimalLat": -31.443713 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823592, "decimalLat": -29.812977 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.813 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916425, "decimalLat": -31.468153 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103645, "decimalLat": -29.485842 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60927, "decimalLat": -34.420548 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.14393, "decimalLat": -34.925929 }, "geometry": { "type": "Point", "coordinates": [ 150.144, -34.926 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557242, "decimalLat": -28.400324 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929682, "decimalLat": -29.001618 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.002 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.634846, "decimalLat": -32.622374 }, "geometry": { "type": "Point", "coordinates": [ 151.635, -32.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101333, "decimalLat": -29.489764 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.083343, "decimalLat": -29.728258 }, "geometry": { "type": "Point", "coordinates": [ 151.083, -29.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617064, "decimalLat": -34.43379 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602536, "decimalLat": -34.41864 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31049, "decimalLat": -28.816404 }, "geometry": { "type": "Point", "coordinates": [ 153.31, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.036281, "decimalLat": -32.737211 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63084, "decimalLat": -34.42067 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10975, "decimalLat": -29.490175 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.630321, "decimalLat": -30.52389 }, "geometry": { "type": "Point", "coordinates": [ 152.63, -30.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514643, "decimalLat": -34.44741 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.862909, "decimalLat": -34.042414 }, "geometry": { "type": "Point", "coordinates": [ 150.863, -34.042 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.992016, "decimalLat": -33.981733 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -33.982 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516308, "decimalLat": -34.446695 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602999, "decimalLat": -34.437076 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782843, "decimalLat": -33.719452 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10394, "decimalLat": -29.489596 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612031, "decimalLat": -34.432105 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51312, "decimalLat": -34.445945 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.060823, "decimalLat": -33.01119 }, "geometry": { "type": "Point", "coordinates": [ 151.061, -33.011 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59728, "decimalLat": -34.410332 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52062, "decimalLat": -34.465724 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.821592, "decimalLat": -32.3538 }, "geometry": { "type": "Point", "coordinates": [ 151.822, -32.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.3242, "decimalLat": -36.130339 }, "geometry": { "type": "Point", "coordinates": [ 149.324, -36.13 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092551, "decimalLat": -29.488429 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293987, "decimalLat": -28.36298 }, "geometry": { "type": "Point", "coordinates": [ 153.294, -28.363 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.991649, "decimalLat": -32.720984 }, "geometry": { "type": "Point", "coordinates": [ 151.992, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521939, "decimalLat": -34.46457 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.804016, "decimalLat": -31.379004 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -31.379 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908086, "decimalLat": -31.442519 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606615, "decimalLat": -34.435047 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465282, "decimalLat": -28.658498 }, "geometry": { "type": "Point", "coordinates": [ 153.465, -28.658 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.291613, "decimalLat": -28.830538 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824371, "decimalLat": -29.811037 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533193, "decimalLat": -34.479727 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.034866, "decimalLat": -32.765345 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.546233, "decimalLat": -28.615939 }, "geometry": { "type": "Point", "coordinates": [ 153.546, -28.616 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606063, "decimalLat": -34.429608 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925303, "decimalLat": -31.454083 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.957517, "decimalLat": -36.504679 }, "geometry": { "type": "Point", "coordinates": [ 149.958, -36.505 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.630753, "decimalLat": -31.224917 }, "geometry": { "type": "Point", "coordinates": [ 152.631, -31.225 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899157, "decimalLat": -31.449716 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627225, "decimalLat": -34.389974 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624176, "decimalLat": -34.38895 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887505, "decimalLat": -31.439237 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885358, "decimalLat": -31.43966 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.748795, "decimalLat": -34.191807 }, "geometry": { "type": "Point", "coordinates": [ 150.749, -34.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61624, "decimalLat": -34.435992 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618756, "decimalLat": -34.435536 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10821, "decimalLat": -29.490203 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637529, "decimalLat": -34.421106 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622486, "decimalLat": -34.384491 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.064683, "decimalLat": -33.772639 }, "geometry": { "type": "Point", "coordinates": [ 150.065, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811429, "decimalLat": -29.514883 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -29.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10799, "decimalLat": -29.490128 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639387, "decimalLat": -34.399532 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.863769, "decimalLat": -32.745607 }, "geometry": { "type": "Point", "coordinates": [ 151.864, -32.746 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64526, "decimalLat": -33.738636 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -33.739 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607542, "decimalLat": -34.422001 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905317, "decimalLat": -31.444907 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.422603, "decimalLat": -31.904256 }, "geometry": { "type": "Point", "coordinates": [ 152.423, -31.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78543, "decimalLat": -33.705096 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606874, "decimalLat": -34.434384 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865666, "decimalLat": -31.271033 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -31.271 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.36534, "decimalLat": -28.612167 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -28.612 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785119, "decimalLat": -33.713856 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90872, "decimalLat": -31.468605 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62796, "decimalLat": -34.42093 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.218113, "decimalLat": -28.83034 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.260884, "decimalLat": -32.038888 }, "geometry": { "type": "Point", "coordinates": [ 152.261, -32.039 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28218, "decimalLat": -28.870872 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.871 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914864, "decimalLat": -31.452967 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904739, "decimalLat": -31.439368 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.470268, "decimalLat": -31.93607 }, "geometry": { "type": "Point", "coordinates": [ 152.47, -31.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.294082, "decimalLat": -28.830236 }, "geometry": { "type": "Point", "coordinates": [ 153.294, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604326, "decimalLat": -34.43786 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401659, "decimalLat": -28.256931 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.525377, "decimalLat": -33.56275 }, "geometry": { "type": "Point", "coordinates": [ 149.525, -33.563 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98111, "decimalLat": -30.437334 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -30.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303792, "decimalLat": -28.890141 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.971512, "decimalLat": -28.621638 }, "geometry": { "type": "Point", "coordinates": [ 152.972, -28.622 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.5525, "decimalLat": -32.073611 }, "geometry": { "type": "Point", "coordinates": [ 151.553, -32.074 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521937, "decimalLat": -34.459106 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.016119, "decimalLat": -32.725778 }, "geometry": { "type": "Point", "coordinates": [ 152.016, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6887, "decimalLat": -32.06324 }, "geometry": { "type": "Point", "coordinates": [ 151.689, -32.063 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63011, "decimalLat": -34.420701 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.083496, "decimalLat": -33.131013 }, "geometry": { "type": "Point", "coordinates": [ 151.083, -33.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109771, "decimalLat": -29.490203 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644499, "decimalLat": -34.393716 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468241, "decimalLat": -28.319679 }, "geometry": { "type": "Point", "coordinates": [ 153.468, -28.32 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521281, "decimalLat": -34.466936 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98111, "decimalLat": -30.437334 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -30.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.222404, "decimalLat": -28.827614 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276422, "decimalLat": -28.931139 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -28.931 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367596, "decimalLat": -28.866001 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603651, "decimalLat": -34.427596 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.017053, "decimalLat": -32.50466 }, "geometry": { "type": "Point", "coordinates": [ 152.017, -32.505 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867632, "decimalLat": -29.667098 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513061, "decimalLat": -34.447197 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924126, "decimalLat": -31.473213 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62576, "decimalLat": -34.395626 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851464, "decimalLat": -29.692524 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79077, "decimalLat": -31.639705 }, "geometry": { "type": "Point", "coordinates": [ 152.791, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890571, "decimalLat": -31.43873 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.256039, "decimalLat": -28.88374 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -28.884 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521608, "decimalLat": -34.465807 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514065, "decimalLat": -34.447082 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790996, "decimalLat": -31.642577 }, "geometry": { "type": "Point", "coordinates": [ 152.791, -31.643 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.439274, "decimalLat": -28.945257 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.945 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067727, "decimalLat": -32.70761 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.189755, "decimalLat": -29.425511 }, "geometry": { "type": "Point", "coordinates": [ 153.19, -29.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.17527, "decimalLat": -29.048582 }, "geometry": { "type": "Point", "coordinates": [ 153.175, -29.049 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622884, "decimalLat": -34.383877 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60918, "decimalLat": -34.418752 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562334, "decimalLat": -28.384369 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616298, "decimalLat": -34.438148 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522473, "decimalLat": -34.465257 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624894, "decimalLat": -34.399729 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623289, "decimalLat": -34.383407 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.978938, "decimalLat": -34.085494 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -34.085 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824529, "decimalLat": -29.506055 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596919, "decimalLat": -34.414184 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632893, "decimalLat": -34.418853 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639209, "decimalLat": -34.392685 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063444, "decimalLat": -32.706212 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.551572, "decimalLat": -33.492399 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288292, "decimalLat": -28.809314 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929642, "decimalLat": -31.459429 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070636, "decimalLat": -32.718438 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604147, "decimalLat": -34.438054 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626522, "decimalLat": -34.385588 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60086, "decimalLat": -34.427793 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630742, "decimalLat": -34.420677 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520338, "decimalLat": -34.4657 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565533, "decimalLat": -28.390616 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108012, "decimalLat": -29.490357 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643947, "decimalLat": -34.39321 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.26682, "decimalLat": -28.919901 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -28.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911534, "decimalLat": -31.442998 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911372, "decimalLat": -31.42952 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82101, "decimalLat": -34.232265 }, "geometry": { "type": "Point", "coordinates": [ 150.821, -34.232 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529194, "decimalLat": -34.464744 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81531, "decimalLat": -31.42933 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864848, "decimalLat": -31.28448 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -31.284 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609446, "decimalLat": -34.418946 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92367, "decimalLat": -31.461438 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639206, "decimalLat": -34.392794 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522733, "decimalLat": -34.464207 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.285216, "decimalLat": -32.422769 }, "geometry": { "type": "Point", "coordinates": [ 152.285, -32.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.426115, "decimalLat": -31.804233 }, "geometry": { "type": "Point", "coordinates": [ 152.426, -31.804 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063677, "decimalLat": -32.706544 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606755, "decimalLat": -34.438556 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.035359, "decimalLat": -30.298384 }, "geometry": { "type": "Point", "coordinates": [ 153.035, -30.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513841, "decimalLat": -34.447294 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200413, "decimalLat": -29.353949 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906599, "decimalLat": -31.4445 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.079318, "decimalLat": -33.770165 }, "geometry": { "type": "Point", "coordinates": [ 150.079, -33.77 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625256, "decimalLat": -34.38614 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5511, "decimalLat": -28.330316 }, "geometry": { "type": "Point", "coordinates": [ 153.551, -28.33 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603702, "decimalLat": -34.4403 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108172, "decimalLat": -29.490385 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615902, "decimalLat": -34.436391 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.480648, "decimalLat": -30.607837 }, "geometry": { "type": "Point", "coordinates": [ 151.481, -30.608 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.460586, "decimalLat": -34.496059 }, "geometry": { "type": "Point", "coordinates": [ 150.461, -34.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559675, "decimalLat": -28.286866 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.287 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.325836, "decimalLat": -36.330067 }, "geometry": { "type": "Point", "coordinates": [ 149.326, -36.33 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516041, "decimalLat": -34.44944 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.97324, "decimalLat": -30.418677 }, "geometry": { "type": "Point", "coordinates": [ 152.973, -30.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561326, "decimalLat": -28.385519 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.073138, "decimalLat": -28.764379 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -28.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607897, "decimalLat": -34.43206 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605672, "decimalLat": -34.43721 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615798, "decimalLat": -34.438535 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632707, "decimalLat": -34.418885 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.705218, "decimalLat": -31.362425 }, "geometry": { "type": "Point", "coordinates": [ 152.705, -31.362 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896122, "decimalLat": -31.433483 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627949, "decimalLat": -34.420939 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10016, "decimalLat": -32.734449 }, "geometry": { "type": "Point", "coordinates": [ 152.1, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.02203, "decimalLat": -33.81689 }, "geometry": { "type": "Point", "coordinates": [ 150.022, -33.817 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092364, "decimalLat": -29.493611 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104439, "decimalLat": -29.48262 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919166, "decimalLat": -31.474521 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063762, "decimalLat": -32.706589 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110474, "decimalLat": -29.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.412483, "decimalLat": -29.12139 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -29.121 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522228, "decimalLat": -34.464341 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614822, "decimalLat": -34.429608 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523192, "decimalLat": -34.456418 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.375786, "decimalLat": -31.923629 }, "geometry": { "type": "Point", "coordinates": [ 152.376, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514375, "decimalLat": -34.447296 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.538685, "decimalLat": -30.621556 }, "geometry": { "type": "Point", "coordinates": [ 152.539, -30.622 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528966, "decimalLat": -34.457328 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.082066, "decimalLat": -32.736384 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90304, "decimalLat": -31.441136 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522338, "decimalLat": -34.465046 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.069323, "decimalLat": -30.882419 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869519, "decimalLat": -29.668902 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -29.669 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10115, "decimalLat": -29.490138 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635072, "decimalLat": -34.486267 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.466934, "decimalLat": -32.400845 }, "geometry": { "type": "Point", "coordinates": [ 152.467, -32.401 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085957, "decimalLat": -32.769061 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -32.769 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.036423, "decimalLat": -30.8961 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630834, "decimalLat": -34.390026 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616073, "decimalLat": -34.435349 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790691, "decimalLat": -34.147882 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.148 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872409, "decimalLat": -31.286671 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.287 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29309, "decimalLat": -28.864642 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616377, "decimalLat": -34.398968 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518123, "decimalLat": -34.437564 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273941, "decimalLat": -28.820088 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415262, "decimalLat": -31.933106 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522441, "decimalLat": -34.454564 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.941206, "decimalLat": -29.139918 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -29.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616315, "decimalLat": -34.43602 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103184, "decimalLat": -29.486724 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.597863, "decimalLat": -28.667451 }, "geometry": { "type": "Point", "coordinates": [ 153.598, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562037, "decimalLat": -28.384015 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.658961, "decimalLat": -30.517151 }, "geometry": { "type": "Point", "coordinates": [ 151.659, -30.517 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604417, "decimalLat": -34.424392 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636997, "decimalLat": -34.488261 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110104, "decimalLat": -29.488377 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104203, "decimalLat": -29.483124 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912645, "decimalLat": -31.431407 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.722306, "decimalLat": -33.456448 }, "geometry": { "type": "Point", "coordinates": [ 150.722, -33.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.804825, "decimalLat": -31.361339 }, "geometry": { "type": "Point", "coordinates": [ 152.805, -31.361 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611437, "decimalLat": -34.419697 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614411, "decimalLat": -34.42915 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515844, "decimalLat": -34.450599 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077182, "decimalLat": -32.724036 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631302, "decimalLat": -34.420111 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.059311, "decimalLat": -33.776018 }, "geometry": { "type": "Point", "coordinates": [ 150.059, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604262, "decimalLat": -34.425642 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323421, "decimalLat": -28.855525 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.856 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643082, "decimalLat": -34.395348 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.196402, "decimalLat": -32.225666 }, "geometry": { "type": "Point", "coordinates": [ 152.196, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.080111, "decimalLat": -32.728237 }, "geometry": { "type": "Point", "coordinates": [ 152.08, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557555, "decimalLat": -28.397173 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.140966, "decimalLat": -32.938278 }, "geometry": { "type": "Point", "coordinates": [ 151.141, -32.938 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522436, "decimalLat": -34.465797 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609135, "decimalLat": -34.420689 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279565, "decimalLat": -28.874205 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63274, "decimalLat": -34.418868 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.046985, "decimalLat": -34.0268 }, "geometry": { "type": "Point", "coordinates": [ 151.047, -34.027 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633082, "decimalLat": -34.41946 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.739882, "decimalLat": -30.10949 }, "geometry": { "type": "Point", "coordinates": [ 152.74, -30.109 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883318, "decimalLat": -31.426607 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -31.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520311, "decimalLat": -34.454115 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.430349, "decimalLat": -28.617278 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101215, "decimalLat": -29.490072 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399989, "decimalLat": -29.037542 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -29.038 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.793482, "decimalLat": -34.147572 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.148 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522725, "decimalLat": -34.450846 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90623, "decimalLat": -30.24025 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -30.24 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104106, "decimalLat": -29.479869 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630922, "decimalLat": -34.386917 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395292, "decimalLat": -28.959956 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06271, "decimalLat": -34.9003 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.07661, "decimalLat": -31.13394 }, "geometry": { "type": "Point", "coordinates": [ 150.077, -31.134 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902757, "decimalLat": -31.441155 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62584, "decimalLat": -34.386269 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513072, "decimalLat": -34.447197 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908529, "decimalLat": -31.43315 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293361, "decimalLat": -28.877875 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.878 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822341, "decimalLat": -31.562884 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.563 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631527, "decimalLat": -34.387813 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.61384, "decimalLat": -32.548814 }, "geometry": { "type": "Point", "coordinates": [ 151.614, -32.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.368881, "decimalLat": -28.575404 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919013, "decimalLat": -31.453816 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.559823, "decimalLat": -30.400634 }, "geometry": { "type": "Point", "coordinates": [ 151.56, -30.401 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.887282, "decimalLat": -32.529237 }, "geometry": { "type": "Point", "coordinates": [ 151.887, -32.529 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518367, "decimalLat": -34.451398 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09408, "decimalLat": -29.488802 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526073, "decimalLat": -34.464617 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.566043, "decimalLat": -34.524474 }, "geometry": { "type": "Point", "coordinates": [ 150.566, -34.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639724, "decimalLat": -34.39796 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.264671, "decimalLat": -28.637651 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606154, "decimalLat": -34.432153 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.12396, "decimalLat": -28.56031 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -28.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520261, "decimalLat": -34.465717 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616435, "decimalLat": -34.434472 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519214, "decimalLat": -34.436378 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917862, "decimalLat": -31.457832 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.988323, "decimalLat": -30.399605 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -30.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603221, "decimalLat": -34.436918 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.054528, "decimalLat": -30.450893 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -30.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.090064, "decimalLat": -28.785628 }, "geometry": { "type": "Point", "coordinates": [ 152.09, -28.786 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516942, "decimalLat": -34.44623 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560256, "decimalLat": -28.644396 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.644 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910295, "decimalLat": -31.45824 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520427, "decimalLat": -34.467838 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920119, "decimalLat": -31.475296 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906503, "decimalLat": -31.441802 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07705, "decimalLat": -29.45099 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602476, "decimalLat": -34.419973 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.655397, "decimalLat": -28.378901 }, "geometry": { "type": "Point", "coordinates": [ 152.655, -28.379 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.481061, "decimalLat": -30.174551 }, "geometry": { "type": "Point", "coordinates": [ 152.481, -30.175 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519123, "decimalLat": -34.467406 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52013, "decimalLat": -34.453579 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922257, "decimalLat": -31.477951 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630863, "decimalLat": -34.420634 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095148, "decimalLat": -30.224124 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -30.224 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596359, "decimalLat": -34.411712 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.132663, "decimalLat": -32.199691 }, "geometry": { "type": "Point", "coordinates": [ 152.133, -32.2 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878701, "decimalLat": -30.407462 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -30.407 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.653306, "decimalLat": -32.686224 }, "geometry": { "type": "Point", "coordinates": [ 151.653, -32.686 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.072091, "decimalLat": -30.881118 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.881 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792663, "decimalLat": -34.104108 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.104 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395128, "decimalLat": -29.058325 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.058 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907396, "decimalLat": -31.483981 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104214, "decimalLat": -29.477558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533018, "decimalLat": -34.475693 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.078601, "decimalLat": -30.338459 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -30.338 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071552, "decimalLat": -32.709636 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067424, "decimalLat": -32.759928 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.76 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.058876, "decimalLat": -33.76757 }, "geometry": { "type": "Point", "coordinates": [ 150.059, -33.768 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110565, "decimalLat": -29.490035 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.097873, "decimalLat": -32.739864 }, "geometry": { "type": "Point", "coordinates": [ 152.098, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785187, "decimalLat": -33.70957 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278056, "decimalLat": -28.934678 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.935 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092526, "decimalLat": -29.493185 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.871723, "decimalLat": -31.49771 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.498 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11437, "decimalLat": -28.71385 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -28.714 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90875, "decimalLat": -30.1741 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -30.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600265, "decimalLat": -34.427286 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641159, "decimalLat": -34.494742 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910478, "decimalLat": -31.458298 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615872, "decimalLat": -34.433226 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636643, "decimalLat": -34.488074 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104187, "decimalLat": -29.478847 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784162, "decimalLat": -33.717754 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822863, "decimalLat": -34.127969 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520373, "decimalLat": -34.453846 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302203, "decimalLat": -28.818589 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655909, "decimalLat": -34.456359 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602872, "decimalLat": -34.427436 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.693838, "decimalLat": -31.786259 }, "geometry": { "type": "Point", "coordinates": [ 152.694, -31.786 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530594, "decimalLat": -34.470028 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561539, "decimalLat": -28.384411 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103857, "decimalLat": -29.485341 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.962107, "decimalLat": -32.230681 }, "geometry": { "type": "Point", "coordinates": [ 150.962, -32.231 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.117097, "decimalLat": -32.764425 }, "geometry": { "type": "Point", "coordinates": [ 152.117, -32.764 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.402691, "decimalLat": -31.925277 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867546, "decimalLat": -29.667173 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.744942, "decimalLat": -28.808943 }, "geometry": { "type": "Point", "coordinates": [ 152.745, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077268, "decimalLat": -32.72261 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.617799, "decimalLat": -28.655322 }, "geometry": { "type": "Point", "coordinates": [ 153.618, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644991, "decimalLat": -34.391273 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101655, "decimalLat": -29.48982 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561186, "decimalLat": -28.389286 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602511, "decimalLat": -34.419892 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924645, "decimalLat": -31.463588 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627315, "decimalLat": -34.420286 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608839, "decimalLat": -34.455519 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.264101, "decimalLat": -28.923918 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -28.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518108, "decimalLat": -34.449112 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.83702, "decimalLat": -27.11172 }, "geometry": { "type": "Point", "coordinates": [ 152.837, -27.112 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.83394, "decimalLat": -31.878915 }, "geometry": { "type": "Point", "coordinates": [ 151.834, -31.879 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524321, "decimalLat": -34.463888 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782778, "decimalLat": -31.484484 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915077, "decimalLat": -31.446374 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791567, "decimalLat": -34.189305 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.189 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.001192, "decimalLat": -32.779054 }, "geometry": { "type": "Point", "coordinates": [ 152.001, -32.779 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28661, "decimalLat": -28.868575 }, "geometry": { "type": "Point", "coordinates": [ 153.287, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299863, "decimalLat": -28.299788 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.3 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.030808, "decimalLat": -28.849862 }, "geometry": { "type": "Point", "coordinates": [ 153.031, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613691, "decimalLat": -34.431894 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.646419, "decimalLat": -32.679433 }, "geometry": { "type": "Point", "coordinates": [ 151.646, -32.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60602, "decimalLat": -34.457429 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610196, "decimalLat": -34.429653 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517727, "decimalLat": -34.441396 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530233, "decimalLat": -34.470841 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51634, "decimalLat": -34.447435 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794344, "decimalLat": -34.148089 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.148 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52031, "decimalLat": -34.454124 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.378611, "decimalLat": -35.751639 }, "geometry": { "type": "Point", "coordinates": [ 149.379, -35.752 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315304, "decimalLat": -28.818774 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336412, "decimalLat": -28.819019 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316829, "decimalLat": -28.865354 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59353, "decimalLat": -28.659742 }, "geometry": { "type": "Point", "coordinates": [ 153.594, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516792, "decimalLat": -28.675567 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899406, "decimalLat": -31.450083 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600234, "decimalLat": -34.428746 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355033, "decimalLat": -31.912948 }, "geometry": { "type": "Point", "coordinates": [ 152.355, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627339, "decimalLat": -34.420196 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039499, "decimalLat": -32.732065 }, "geometry": { "type": "Point", "coordinates": [ 152.039, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920915, "decimalLat": -31.455066 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618026, "decimalLat": -34.429815 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519042, "decimalLat": -34.444768 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.041711, "decimalLat": -30.386833 }, "geometry": { "type": "Point", "coordinates": [ 153.042, -30.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521764, "decimalLat": -34.46718 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063944, "decimalLat": -32.707463 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102242, "decimalLat": -29.489394 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.85259, "decimalLat": -31.45089 }, "geometry": { "type": "Point", "coordinates": [ 152.853, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615675, "decimalLat": -34.434043 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603274, "decimalLat": -34.436973 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103819, "decimalLat": -29.485473 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616504, "decimalLat": -34.441262 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599935, "decimalLat": -34.425143 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104165, "decimalLat": -29.478907 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622864, "decimalLat": -34.383804 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.410686, "decimalLat": -36.249969 }, "geometry": { "type": "Point", "coordinates": [ 149.411, -36.25 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517405, "decimalLat": -34.448584 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630553, "decimalLat": -34.394988 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916781, "decimalLat": -31.445843 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516633, "decimalLat": -34.442699 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604182, "decimalLat": -34.438713 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785089, "decimalLat": -33.713738 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630244, "decimalLat": -34.420965 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604128, "decimalLat": -34.437955 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93503, "decimalLat": -30.4267 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -30.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6237, "decimalLat": -34.383496 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103833, "decimalLat": -29.48502 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787616, "decimalLat": -33.703431 }, "geometry": { "type": "Point", "coordinates": [ 150.788, -33.703 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640382, "decimalLat": -34.494087 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513151, "decimalLat": -34.447812 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915934, "decimalLat": -31.445138 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926366, "decimalLat": -31.454632 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.738485, "decimalLat": -30.48123 }, "geometry": { "type": "Point", "coordinates": [ 151.738, -30.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916431, "decimalLat": -31.444861 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604788, "decimalLat": -34.427032 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92234, "decimalLat": -31.451634 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.74254, "decimalLat": -28.831278 }, "geometry": { "type": "Point", "coordinates": [ 152.743, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637345, "decimalLat": -34.423798 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.036423, "decimalLat": -30.8961 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.171052, "decimalLat": -32.663111 }, "geometry": { "type": "Point", "coordinates": [ 152.171, -32.663 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609484, "decimalLat": -28.661269 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917933, "decimalLat": -31.469217 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792474, "decimalLat": -34.197003 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.197 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.791, "decimalLat": -32.6534 }, "geometry": { "type": "Point", "coordinates": [ 151.791, -32.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604283, "decimalLat": -34.426418 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604905, "decimalLat": -34.427097 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530597, "decimalLat": -34.469947 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.199103, "decimalLat": -31.312712 }, "geometry": { "type": "Point", "coordinates": [ 152.199, -31.313 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893666, "decimalLat": -31.445699 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631505, "decimalLat": -34.38783 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301854, "decimalLat": -28.819317 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82757, "decimalLat": -29.810617 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.211011, "decimalLat": -28.832687 }, "geometry": { "type": "Point", "coordinates": [ 153.211, -28.833 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615419, "decimalLat": -34.433109 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611448, "decimalLat": -34.419707 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.043647, "decimalLat": -33.766239 }, "geometry": { "type": "Point", "coordinates": [ 150.044, -33.766 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985134, "decimalLat": -34.096131 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.242187, "decimalLat": -28.648643 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -28.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46202, "decimalLat": -28.650301 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.913678, "decimalLat": -34.068368 }, "geometry": { "type": "Point", "coordinates": [ 150.914, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.151376, "decimalLat": -30.094786 }, "geometry": { "type": "Point", "coordinates": [ 152.151, -30.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285019, "decimalLat": -28.816541 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101451, "decimalLat": -29.48983 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.120282, "decimalLat": -30.309053 }, "geometry": { "type": "Point", "coordinates": [ 153.12, -30.309 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632815, "decimalLat": -34.418896 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905155, "decimalLat": -31.436028 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523604, "decimalLat": -34.456111 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609191, "decimalLat": -34.418743 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522447, "decimalLat": -34.46504 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614422, "decimalLat": -34.429519 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527846, "decimalLat": -34.466501 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524139, "decimalLat": -34.471529 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515254, "decimalLat": -34.443338 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49089, "decimalLat": -28.229488 }, "geometry": { "type": "Point", "coordinates": [ 153.491, -28.229 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104149, "decimalLat": -29.478851 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907694, "decimalLat": -31.447111 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514791, "decimalLat": -34.445736 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095228, "decimalLat": -29.48344 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921498, "decimalLat": -31.48086 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523022, "decimalLat": -34.466232 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374047, "decimalLat": -31.913202 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917569, "decimalLat": -31.47705 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909507, "decimalLat": -31.428137 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809, "decimalLat": -34.20866 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630828, "decimalLat": -34.420715 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.505206, "decimalLat": -28.376623 }, "geometry": { "type": "Point", "coordinates": [ 153.505, -28.377 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521198, "decimalLat": -34.46569 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600499, "decimalLat": -34.429003 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.85899, "decimalLat": -29.316805 }, "geometry": { "type": "Point", "coordinates": [ 152.859, -29.317 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.399266, "decimalLat": -31.958536 }, "geometry": { "type": "Point", "coordinates": [ 152.399, -31.959 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.198472, "decimalLat": -32.23465 }, "geometry": { "type": "Point", "coordinates": [ 152.198, -32.235 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63117, "decimalLat": -34.387364 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.489559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899196, "decimalLat": -29.630883 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066682, "decimalLat": -32.707344 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604325, "decimalLat": -34.43905 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.702147, "decimalLat": -33.503703 }, "geometry": { "type": "Point", "coordinates": [ 150.702, -33.504 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.996392, "decimalLat": -34.082462 }, "geometry": { "type": "Point", "coordinates": [ 150.996, -34.082 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.166342, "decimalLat": -31.975252 }, "geometry": { "type": "Point", "coordinates": [ 152.166, -31.975 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628479, "decimalLat": -34.390999 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79064, "decimalLat": -34.143427 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623104, "decimalLat": -34.383782 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107995, "decimalLat": -29.490992 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.548005, "decimalLat": -33.556403 }, "geometry": { "type": "Point", "coordinates": [ 149.548, -33.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.147678, "decimalLat": -29.899372 }, "geometry": { "type": "Point", "coordinates": [ 152.148, -29.899 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921498, "decimalLat": -31.48086 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868583, "decimalLat": -31.470596 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900435, "decimalLat": -31.443667 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110576, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323668, "decimalLat": -28.830037 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617814, "decimalLat": -34.399321 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.332334, "decimalLat": -33.730889 }, "geometry": { "type": "Point", "coordinates": [ 150.332, -33.731 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79925, "decimalLat": -34.19726 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.197 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985431, "decimalLat": -34.092652 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.093 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.184738, "decimalLat": -31.957954 }, "geometry": { "type": "Point", "coordinates": [ 152.185, -31.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622421, "decimalLat": -34.384102 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614255, "decimalLat": -34.429633 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602569, "decimalLat": -34.436906 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.209443, "decimalLat": -31.560893 }, "geometry": { "type": "Point", "coordinates": [ 152.209, -31.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614255, "decimalLat": -34.429633 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405729, "decimalLat": -31.930687 }, "geometry": { "type": "Point", "coordinates": [ 152.406, -31.931 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637578, "decimalLat": -34.488507 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394463, "decimalLat": -28.959453 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603956, "decimalLat": -34.43293 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916732, "decimalLat": -31.449176 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533886, "decimalLat": -34.479118 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413633, "decimalLat": -31.908158 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.908 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.191214, "decimalLat": -31.594083 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -31.594 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528286, "decimalLat": -34.464869 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519621, "decimalLat": -34.461241 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867804, "decimalLat": -29.667434 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.043387, "decimalLat": -28.469182 }, "geometry": { "type": "Point", "coordinates": [ 153.043, -28.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558084, "decimalLat": -28.387756 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324384, "decimalLat": -28.879786 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192089, "decimalLat": -32.216754 }, "geometry": { "type": "Point", "coordinates": [ 152.192, -32.217 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630054, "decimalLat": -34.395321 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53167, "decimalLat": -34.40265 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.403 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.712889, "decimalLat": -30.455209 }, "geometry": { "type": "Point", "coordinates": [ 152.713, -30.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104396, "decimalLat": -29.477623 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905922, "decimalLat": -31.447809 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61586, "decimalLat": -34.43099 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786873, "decimalLat": -31.629322 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616779, "decimalLat": -34.399382 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103843, "decimalLat": -29.485454 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923977, "decimalLat": -31.459397 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.092437, "decimalLat": -29.486475 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.582601, "decimalLat": -34.500217 }, "geometry": { "type": "Point", "coordinates": [ 150.583, -34.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.592081, "decimalLat": -28.729263 }, "geometry": { "type": "Point", "coordinates": [ 153.592, -28.729 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.7773, "decimalLat": -31.490051 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -31.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283689, "decimalLat": -28.679315 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603978, "decimalLat": -34.424898 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603595, "decimalLat": -34.435645 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521223, "decimalLat": -34.465574 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334406, "decimalLat": -28.814156 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103371, "decimalLat": -29.489876 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.906611, "decimalLat": -33.978448 }, "geometry": { "type": "Point", "coordinates": [ 150.907, -33.978 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632893, "decimalLat": -34.418844 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409406, "decimalLat": -31.910186 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334406, "decimalLat": -28.814156 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.150101, "decimalLat": -28.531599 }, "geometry": { "type": "Point", "coordinates": [ 153.15, -28.532 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.014755, "decimalLat": -27.217488 }, "geometry": { "type": "Point", "coordinates": [ 153.015, -27.217 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.027045, "decimalLat": -28.430094 }, "geometry": { "type": "Point", "coordinates": [ 153.027, -28.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.917922, "decimalLat": -36.474664 }, "geometry": { "type": "Point", "coordinates": [ 149.918, -36.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103457, "decimalLat": -29.485683 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103468, "decimalLat": -29.485655 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101274, "decimalLat": -29.490007 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867927, "decimalLat": -31.479102 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.485401, "decimalLat": -32.346581 }, "geometry": { "type": "Point", "coordinates": [ 152.485, -32.347 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521022, "decimalLat": -34.446998 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.472241, "decimalLat": -28.264159 }, "geometry": { "type": "Point", "coordinates": [ 153.472, -28.264 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659912, "decimalLat": -33.527214 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597929, "decimalLat": -34.427943 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792649, "decimalLat": -31.640153 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319462, "decimalLat": -28.814504 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51602, "decimalLat": -34.44687 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562995, "decimalLat": -28.381709 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.382 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63286, "decimalLat": -34.418843 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925416, "decimalLat": -31.447703 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.020108, "decimalLat": -27.211485 }, "geometry": { "type": "Point", "coordinates": [ 153.02, -27.211 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627062, "decimalLat": -34.42075 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.124133, "decimalLat": -32.719895 }, "geometry": { "type": "Point", "coordinates": [ 152.124, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.562536, "decimalLat": -34.520916 }, "geometry": { "type": "Point", "coordinates": [ 150.563, -34.521 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.47209, "decimalLat": -28.264043 }, "geometry": { "type": "Point", "coordinates": [ 153.472, -28.264 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52989, "decimalLat": -34.471041 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627352, "decimalLat": -34.421288 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614853, "decimalLat": -34.433873 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62796, "decimalLat": -34.420957 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917449, "decimalLat": -31.474536 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.969402, "decimalLat": -31.185418 }, "geometry": { "type": "Point", "coordinates": [ 152.969, -31.185 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602398, "decimalLat": -34.425768 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556039, "decimalLat": -28.398769 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.414565, "decimalLat": -31.941299 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63117, "decimalLat": -34.387364 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638765, "decimalLat": -34.492731 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304452, "decimalLat": -28.848765 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.849 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.117387, "decimalLat": -28.618971 }, "geometry": { "type": "Point", "coordinates": [ 153.117, -28.619 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899657, "decimalLat": -29.630702 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630235, "decimalLat": -34.420902 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616379, "decimalLat": -34.433407 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.805319, "decimalLat": -31.127058 }, "geometry": { "type": "Point", "coordinates": [ 152.805, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.160691, "decimalLat": -30.088985 }, "geometry": { "type": "Point", "coordinates": [ 152.161, -30.089 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603457, "decimalLat": -34.418396 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.196402, "decimalLat": -32.225666 }, "geometry": { "type": "Point", "coordinates": [ 152.196, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521427, "decimalLat": -34.465677 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636259, "decimalLat": -34.421785 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786217, "decimalLat": -33.705786 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.462917, "decimalLat": -28.872476 }, "geometry": { "type": "Point", "coordinates": [ 153.463, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62795, "decimalLat": -34.390863 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624371, "decimalLat": -34.387836 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610288, "decimalLat": -34.419161 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10814, "decimalLat": -29.490273 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616162, "decimalLat": -34.436054 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.743496, "decimalLat": -34.335476 }, "geometry": { "type": "Point", "coordinates": [ 150.743, -34.335 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.663361, "decimalLat": -34.458052 }, "geometry": { "type": "Point", "coordinates": [ 150.663, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522037, "decimalLat": -34.465671 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521346, "decimalLat": -34.466929 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918698, "decimalLat": -31.454216 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40136, "decimalLat": -28.626581 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639799, "decimalLat": -34.399188 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639843, "decimalLat": -34.400334 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372164, "decimalLat": -31.921114 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907958, "decimalLat": -31.47067 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064276, "decimalLat": -32.706784 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625047, "decimalLat": -34.385839 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.230895, "decimalLat": -31.314991 }, "geometry": { "type": "Point", "coordinates": [ 152.231, -31.315 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104208, "decimalLat": -29.482111 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.30962, "decimalLat": -36.106472 }, "geometry": { "type": "Point", "coordinates": [ 149.31, -36.106 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108194, "decimalLat": -29.490203 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90858, "decimalLat": -31.454667 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.648549, "decimalLat": -34.402097 }, "geometry": { "type": "Point", "coordinates": [ 150.649, -34.402 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635136, "decimalLat": -34.488234 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520401, "decimalLat": -34.435978 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10813, "decimalLat": -29.490259 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.441685, "decimalLat": -32.090675 }, "geometry": { "type": "Point", "coordinates": [ 152.442, -32.091 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999945, "decimalLat": -36.563902 }, "geometry": { "type": "Point", "coordinates": [ 150.0, -36.564 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060993, "decimalLat": -32.710788 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609911, "decimalLat": -34.432812 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78534, "decimalLat": -31.633204 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.411228, "decimalLat": -36.250306 }, "geometry": { "type": "Point", "coordinates": [ 149.411, -36.25 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104117, "decimalLat": -29.484098 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412629, "decimalLat": -31.932184 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887473, "decimalLat": -31.444077 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10379, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.057879, "decimalLat": -29.737362 }, "geometry": { "type": "Point", "coordinates": [ 151.058, -29.737 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076638, "decimalLat": -32.727673 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984826, "decimalLat": -34.108222 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.108 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.329621, "decimalLat": -28.83393 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520248, "decimalLat": -34.465779 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521068, "decimalLat": -34.466761 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.313487, "decimalLat": -36.152467 }, "geometry": { "type": "Point", "coordinates": [ 149.313, -36.152 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908669, "decimalLat": -31.46972 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657017, "decimalLat": -34.455298 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521328, "decimalLat": -34.46645 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887854, "decimalLat": -31.074894 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.075 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559556, "decimalLat": -28.289734 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.29 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924359, "decimalLat": -30.506388 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.036798, "decimalLat": -32.735675 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.040372, "decimalLat": -30.884354 }, "geometry": { "type": "Point", "coordinates": [ 153.04, -30.884 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91001, "decimalLat": -31.464583 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.34881, "decimalLat": -28.823987 }, "geometry": { "type": "Point", "coordinates": [ 153.349, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884417, "decimalLat": -34.047237 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.047 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30197, "decimalLat": -28.810765 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.811 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642577, "decimalLat": -34.395527 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.010503, "decimalLat": -30.364222 }, "geometry": { "type": "Point", "coordinates": [ 153.011, -30.364 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.352564, "decimalLat": -28.883003 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -28.883 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.839633, "decimalLat": -34.057357 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.057 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.058964, "decimalLat": -32.737745 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532734, "decimalLat": -34.458721 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86972, "decimalLat": -31.304815 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -31.305 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.346127, "decimalLat": -28.912792 }, "geometry": { "type": "Point", "coordinates": [ 153.346, -28.913 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.807615, "decimalLat": -31.12735 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.198292, "decimalLat": -32.220827 }, "geometry": { "type": "Point", "coordinates": [ 152.198, -32.221 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.371016, "decimalLat": -31.949251 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604579, "decimalLat": -34.424441 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.70521, "decimalLat": -32.630479 }, "geometry": { "type": "Point", "coordinates": [ 151.705, -32.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607641, "decimalLat": -34.421976 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52006, "decimalLat": -34.446393 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614484, "decimalLat": -34.429232 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.95194, "decimalLat": -33.970139 }, "geometry": { "type": "Point", "coordinates": [ 150.952, -33.97 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.018915, "decimalLat": -30.367341 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -30.367 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077203, "decimalLat": -32.722493 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791327, "decimalLat": -34.141963 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.142 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.459501, "decimalLat": -28.27124 }, "geometry": { "type": "Point", "coordinates": [ 152.46, -28.271 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516008, "decimalLat": -34.447248 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104798, "decimalLat": -29.489671 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.081525, "decimalLat": -28.462257 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -28.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926919, "decimalLat": -31.454898 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518323, "decimalLat": -34.451397 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433562, "decimalLat": -28.238026 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.238 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603848, "decimalLat": -34.440113 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.843124, "decimalLat": -31.428457 }, "geometry": { "type": "Point", "coordinates": [ 152.843, -31.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378488, "decimalLat": -28.874261 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794283, "decimalLat": -34.135544 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.136 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522329, "decimalLat": -34.465722 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092219, "decimalLat": -29.488102 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65618, "decimalLat": -33.58539 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -33.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313447, "decimalLat": -28.948849 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.468304, "decimalLat": -28.282873 }, "geometry": { "type": "Point", "coordinates": [ 152.468, -28.283 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638487, "decimalLat": -34.490625 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313447, "decimalLat": -28.948849 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52213, "decimalLat": -34.465078 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.660374, "decimalLat": -33.525168 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -33.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812484, "decimalLat": -29.798034 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -29.798 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627337, "decimalLat": -34.420278 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645757, "decimalLat": -34.397337 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636599, "decimalLat": -34.488091 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.251817, "decimalLat": -31.917669 }, "geometry": { "type": "Point", "coordinates": [ 152.252, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603577, "decimalLat": -34.427513 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515819, "decimalLat": -34.446667 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644948, "decimalLat": -34.391245 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279295, "decimalLat": -28.678508 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630917, "decimalLat": -34.388252 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894089, "decimalLat": -31.478456 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.330266, "decimalLat": -28.659346 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.659 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519992, "decimalLat": -34.435799 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072718, "decimalLat": -32.724859 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.215502, "decimalLat": -30.082651 }, "geometry": { "type": "Point", "coordinates": [ 152.216, -30.083 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.882224, "decimalLat": -31.430954 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616487, "decimalLat": -34.435726 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105286, "decimalLat": -32.732798 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868447, "decimalLat": -29.666912 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928111, "decimalLat": -31.472115 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514125, "decimalLat": -34.45499 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522603, "decimalLat": -34.464917 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.808444, "decimalLat": -31.500755 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -31.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.352266, "decimalLat": -32.232834 }, "geometry": { "type": "Point", "coordinates": [ 152.352, -32.233 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292004, "decimalLat": -28.832625 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.833 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517412, "decimalLat": -34.453515 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334493, "decimalLat": -28.813462 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.813 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513073, "decimalLat": -34.447143 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627305, "decimalLat": -34.398306 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615438, "decimalLat": -34.435498 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921041, "decimalLat": -31.448924 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101939, "decimalLat": -29.489414 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897611, "decimalLat": -31.474563 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822549, "decimalLat": -31.453664 }, "geometry": { "type": "Point", "coordinates": [ 152.823, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616269, "decimalLat": -34.429213 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990379, "decimalLat": -34.090322 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.09 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.119432, "decimalLat": -33.751393 }, "geometry": { "type": "Point", "coordinates": [ 150.119, -33.751 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.39945, "decimalLat": -36.03167 }, "geometry": { "type": "Point", "coordinates": [ 149.399, -36.032 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109953, "decimalLat": -29.488354 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81879, "decimalLat": -31.300384 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.3 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.840384, "decimalLat": -31.593288 }, "geometry": { "type": "Point", "coordinates": [ 152.84, -31.593 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513836, "decimalLat": -34.446384 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039673, "decimalLat": -32.732024 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610334, "decimalLat": -34.41909 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063563, "decimalLat": -32.706869 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.551286, "decimalLat": -33.490136 }, "geometry": { "type": "Point", "coordinates": [ 149.551, -33.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394466, "decimalLat": -28.960362 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819431, "decimalLat": -31.648854 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618547, "decimalLat": -34.399173 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552141, "decimalLat": -33.491215 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610226, "decimalLat": -34.419052 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.877258, "decimalLat": -34.015981 }, "geometry": { "type": "Point", "coordinates": [ 150.877, -34.016 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90927, "decimalLat": -30.17377 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -30.174 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.614641, "decimalLat": -28.663312 }, "geometry": { "type": "Point", "coordinates": [ 153.615, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627196, "decimalLat": -34.389469 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110901, "decimalLat": -28.662949 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402368, "decimalLat": -28.257634 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879064, "decimalLat": -29.66219 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.662 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921641, "decimalLat": -31.451681 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631943, "decimalLat": -34.387713 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881689, "decimalLat": -31.161695 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.162 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90957, "decimalLat": -31.466093 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91203, "decimalLat": -31.456044 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885195, "decimalLat": -33.439079 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -33.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905666, "decimalLat": -31.444749 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905929, "decimalLat": -31.442757 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.815652, "decimalLat": -31.150235 }, "geometry": { "type": "Point", "coordinates": [ 152.816, -31.15 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.971219, "decimalLat": -31.163249 }, "geometry": { "type": "Point", "coordinates": [ 152.971, -31.163 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.532505, "decimalLat": -28.632876 }, "geometry": { "type": "Point", "coordinates": [ 153.533, -28.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901012, "decimalLat": -31.442508 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521608, "decimalLat": -34.465807 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521426, "decimalLat": -34.466092 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616314, "decimalLat": -34.438734 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.841836, "decimalLat": -31.463745 }, "geometry": { "type": "Point", "coordinates": [ 152.842, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616383, "decimalLat": -34.430189 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604885, "decimalLat": -34.437348 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78917, "decimalLat": -34.16827 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.168 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.143428, "decimalLat": -28.542074 }, "geometry": { "type": "Point", "coordinates": [ 153.143, -28.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.935775, "decimalLat": -31.473085 }, "geometry": { "type": "Point", "coordinates": [ 152.936, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.023076, "decimalLat": -28.489243 }, "geometry": { "type": "Point", "coordinates": [ 153.023, -28.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494261, "decimalLat": -28.604427 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.604 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.2239, "decimalLat": -32.254112 }, "geometry": { "type": "Point", "coordinates": [ 152.224, -32.254 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.445624, "decimalLat": -28.589197 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303135, "decimalLat": -28.824882 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51779, "decimalLat": -34.441479 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630689, "decimalLat": -34.420631 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785307, "decimalLat": -33.716982 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630276, "decimalLat": -34.420984 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.979499, "decimalLat": -28.64423 }, "geometry": { "type": "Point", "coordinates": [ 152.979, -28.644 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525176, "decimalLat": -34.464058 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.172138, "decimalLat": -30.079573 }, "geometry": { "type": "Point", "coordinates": [ 152.172, -30.08 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.004731, "decimalLat": -33.983737 }, "geometry": { "type": "Point", "coordinates": [ 151.005, -33.984 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104031, "decimalLat": -29.484063 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785634, "decimalLat": -33.713126 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605893, "decimalLat": -34.435943 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910052, "decimalLat": -30.505406 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -30.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642379, "decimalLat": -34.395614 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.226806, "decimalLat": -28.88908 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659041, "decimalLat": -34.457618 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523814, "decimalLat": -34.463724 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643642, "decimalLat": -34.39983 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.542801, "decimalLat": -34.43387 }, "geometry": { "type": "Point", "coordinates": [ 150.543, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.779398, "decimalLat": -32.485966 }, "geometry": { "type": "Point", "coordinates": [ 151.779, -32.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.074223, "decimalLat": -28.556532 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -28.557 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921498, "decimalLat": -31.474776 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.612505, "decimalLat": -28.331788 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -28.332 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401793, "decimalLat": -28.960826 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104047, "decimalLat": -29.484292 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637325, "decimalLat": -34.488204 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615751, "decimalLat": -34.435955 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642392, "decimalLat": -34.395551 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614364, "decimalLat": -34.430032 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.194095, "decimalLat": -32.224416 }, "geometry": { "type": "Point", "coordinates": [ 152.194, -32.224 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381308, "decimalLat": -31.907463 }, "geometry": { "type": "Point", "coordinates": [ 152.381, -31.907 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822863, "decimalLat": -34.127969 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607485, "decimalLat": -34.433152 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603288, "decimalLat": -34.419718 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302593, "decimalLat": -28.819803 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606783, "decimalLat": -34.434509 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.187392, "decimalLat": -32.232904 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -32.233 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809024, "decimalLat": -31.654759 }, "geometry": { "type": "Point", "coordinates": [ 152.809, -31.655 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091747, "decimalLat": -29.487906 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.986311, "decimalLat": -30.417822 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -30.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535263, "decimalLat": -34.497438 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.621211, "decimalLat": -28.658782 }, "geometry": { "type": "Point", "coordinates": [ 153.621, -28.659 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788974, "decimalLat": -31.442366 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.371521, "decimalLat": -31.949329 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885077, "decimalLat": -31.431045 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317651, "decimalLat": -28.862857 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603032, "decimalLat": -34.437077 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303545, "decimalLat": -28.824066 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62712, "decimalLat": -34.386763 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657673, "decimalLat": -34.455581 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51413, "decimalLat": -34.446372 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926671, "decimalLat": -31.454472 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.385826, "decimalLat": -28.792334 }, "geometry": { "type": "Point", "coordinates": [ 153.386, -28.792 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.078646, "decimalLat": -30.353928 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -30.354 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868375, "decimalLat": -31.472935 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517058, "decimalLat": -34.447828 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632962, "decimalLat": -34.392862 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521621, "decimalLat": -34.465744 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608553, "decimalLat": -34.456406 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.986069, "decimalLat": -34.096923 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.097 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.568665, "decimalLat": -28.694927 }, "geometry": { "type": "Point", "coordinates": [ 153.569, -28.695 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.855893, "decimalLat": -29.316805 }, "geometry": { "type": "Point", "coordinates": [ 152.856, -29.317 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604848, "decimalLat": -34.437861 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6601, "decimalLat": -30.3125 }, "geometry": { "type": "Point", "coordinates": [ 151.66, -30.312 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60812, "decimalLat": -34.455911 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60048, "decimalLat": -34.42738 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875173, "decimalLat": -29.683015 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -29.683 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605501, "decimalLat": -34.427181 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104809, "decimalLat": -29.489643 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626709, "decimalLat": -34.42132 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810158, "decimalLat": -29.65991 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -29.66 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.937814, "decimalLat": -29.721532 }, "geometry": { "type": "Point", "coordinates": [ 150.938, -29.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517103, "decimalLat": -34.454383 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81246, "decimalLat": -31.276485 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -31.276 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103908, "decimalLat": -29.489591 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635258, "decimalLat": -34.420251 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521328, "decimalLat": -34.46645 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637512, "decimalLat": -34.488532 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630828, "decimalLat": -34.420715 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515895, "decimalLat": -34.449608 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611284, "decimalLat": -34.419721 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516236, "decimalLat": -34.440284 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640332, "decimalLat": -34.493158 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.730163, "decimalLat": -30.154348 }, "geometry": { "type": "Point", "coordinates": [ 152.73, -30.154 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.38406, "decimalLat": -31.215107 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.215 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.184652, "decimalLat": -28.889402 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515733, "decimalLat": -34.44479 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.371578, "decimalLat": -28.577608 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -28.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092246, "decimalLat": -29.488144 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.049498, "decimalLat": -33.767832 }, "geometry": { "type": "Point", "coordinates": [ 150.049, -33.768 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63916, "decimalLat": -34.493027 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896425, "decimalLat": -29.629872 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -29.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40198, "decimalLat": -28.260019 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896425, "decimalLat": -29.629872 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -29.63 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90877, "decimalLat": -30.17587 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -30.176 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.490128 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627974, "decimalLat": -34.420822 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.035761, "decimalLat": -32.765102 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616398, "decimalLat": -34.441152 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302762, "decimalLat": -28.844678 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278089, "decimalLat": -28.679004 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622035, "decimalLat": -34.397735 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40076, "decimalLat": -28.260139 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109436, "decimalLat": -29.490572 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88146, "decimalLat": -30.913293 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -30.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60797, "decimalLat": -34.423028 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517562, "decimalLat": -34.448794 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.746224, "decimalLat": -31.256329 }, "geometry": { "type": "Point", "coordinates": [ 152.746, -31.256 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519877, "decimalLat": -34.452574 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.371067, "decimalLat": -31.923406 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108146, "decimalLat": -29.490483 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31604, "decimalLat": -28.823019 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.294848, "decimalLat": -28.633009 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.965237, "decimalLat": -36.459771 }, "geometry": { "type": "Point", "coordinates": [ 149.965, -36.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300533, "decimalLat": -28.817031 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302829, "decimalLat": -28.84799 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.798005, "decimalLat": -34.113009 }, "geometry": { "type": "Point", "coordinates": [ 150.798, -34.113 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784451, "decimalLat": -33.716562 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.178566, "decimalLat": -31.569922 }, "geometry": { "type": "Point", "coordinates": [ 152.179, -31.57 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103999, "decimalLat": -29.477651 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.369052, "decimalLat": -28.953149 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.953 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.438839, "decimalLat": -28.985803 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.986 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514452, "decimalLat": -34.443592 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.775507, "decimalLat": -32.587074 }, "geometry": { "type": "Point", "coordinates": [ 151.776, -32.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.993228, "decimalLat": -32.720823 }, "geometry": { "type": "Point", "coordinates": [ 151.993, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.803819, "decimalLat": -29.216759 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -29.217 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634979, "decimalLat": -34.488781 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.481364, "decimalLat": -28.626738 }, "geometry": { "type": "Point", "coordinates": [ 153.481, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.16197, "decimalLat": -28.535507 }, "geometry": { "type": "Point", "coordinates": [ 153.162, -28.536 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.384816, "decimalLat": -31.196379 }, "geometry": { "type": "Point", "coordinates": [ 152.385, -31.196 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79253, "decimalLat": -31.116376 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.116 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.551098, "decimalLat": -28.582477 }, "geometry": { "type": "Point", "coordinates": [ 153.551, -28.582 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812379, "decimalLat": -31.65796 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -31.658 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.768706, "decimalLat": -28.962296 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -28.962 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613813, "decimalLat": -34.431022 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602053, "decimalLat": -34.424896 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784306, "decimalLat": -31.520381 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.52 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624417, "decimalLat": -34.388108 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.824153, "decimalLat": -34.150322 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.040386, "decimalLat": -32.990919 }, "geometry": { "type": "Point", "coordinates": [ 151.04, -32.991 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609571, "decimalLat": -28.661288 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.627528, "decimalLat": -25.589136 }, "geometry": { "type": "Point", "coordinates": [ 152.628, -25.589 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394922, "decimalLat": -28.274474 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.274 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915361, "decimalLat": -31.482549 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.483 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10394, "decimalLat": -29.485342 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409406, "decimalLat": -31.910186 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635921, "decimalLat": -34.485499 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615648, "decimalLat": -34.438063 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927413, "decimalLat": -31.465873 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607757, "decimalLat": -34.430128 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.989087, "decimalLat": -36.562421 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616825, "decimalLat": -34.44144 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824679, "decimalLat": -29.504234 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.504 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110565, "decimalLat": -29.489984 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884543, "decimalLat": -31.451821 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885204, "decimalLat": -34.01789 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.018 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639757, "decimalLat": -34.399133 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915526, "decimalLat": -28.849111 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -28.849 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921026, "decimalLat": -31.456439 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602398, "decimalLat": -34.425768 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602864, "decimalLat": -34.424668 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.160763, "decimalLat": -32.712341 }, "geometry": { "type": "Point", "coordinates": [ 152.161, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604875, "decimalLat": -34.423987 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104997, "decimalLat": -29.489648 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367822, "decimalLat": -28.866277 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597474, "decimalLat": -33.459707 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -33.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562646, "decimalLat": -28.391295 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.097054, "decimalLat": -28.559312 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -28.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.449444, "decimalLat": -31.943502 }, "geometry": { "type": "Point", "coordinates": [ 152.449, -31.944 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.05413, "decimalLat": -30.28047 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -30.28 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.385526, "decimalLat": -32.027634 }, "geometry": { "type": "Point", "coordinates": [ 152.386, -32.028 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513926, "decimalLat": -34.447738 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518375, "decimalLat": -34.451479 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.650562, "decimalLat": -34.402443 }, "geometry": { "type": "Point", "coordinates": [ 150.651, -34.402 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.954394, "decimalLat": -31.333756 }, "geometry": { "type": "Point", "coordinates": [ 152.954, -31.334 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521961, "decimalLat": -34.466012 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.795513, "decimalLat": -34.135124 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.135 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928698, "decimalLat": -31.459337 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110495, "decimalLat": -29.490077 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46244, "decimalLat": -28.627856 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.628 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636275, "decimalLat": -34.421983 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.828044, "decimalLat": -29.712486 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -29.712 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635535, "decimalLat": -33.57235 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -33.572 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065043, "decimalLat": -32.699743 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.7 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.616938, "decimalLat": -28.659556 }, "geometry": { "type": "Point", "coordinates": [ 153.617, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110576, "decimalLat": -29.48996 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930133, "decimalLat": -29.000938 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.001 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102293, "decimalLat": -29.488093 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788599, "decimalLat": -31.640312 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605006, "decimalLat": -34.433104 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515732, "decimalLat": -34.446666 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.006961, "decimalLat": -34.046596 }, "geometry": { "type": "Point", "coordinates": [ 151.007, -34.047 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659907, "decimalLat": -33.527182 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.389281, "decimalLat": -28.883743 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.884 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096022, "decimalLat": -29.484875 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.68917, "decimalLat": -32.733612 }, "geometry": { "type": "Point", "coordinates": [ 149.689, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335481, "decimalLat": -28.869015 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949786, "decimalLat": -36.632867 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.633 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926883, "decimalLat": -30.507898 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -30.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192249, "decimalLat": -32.23198 }, "geometry": { "type": "Point", "coordinates": [ 152.192, -32.232 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.240369, "decimalLat": -33.107983 }, "geometry": { "type": "Point", "coordinates": [ 151.24, -33.108 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785693, "decimalLat": -34.206601 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -34.207 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109326, "decimalLat": -29.490586 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821686, "decimalLat": -34.136415 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.136 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.086521, "decimalLat": -34.698285 }, "geometry": { "type": "Point", "coordinates": [ 150.087, -34.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09401, "decimalLat": -29.488802 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632762, "decimalLat": -34.419616 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.032917, "decimalLat": -30.380306 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -30.38 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92067, "decimalLat": -31.463326 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896244, "decimalLat": -31.436102 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632734, "decimalLat": -34.418309 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402087, "decimalLat": -28.258755 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914745, "decimalLat": -31.458772 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100721, "decimalLat": -29.490082 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640552, "decimalLat": -34.494244 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.024044, "decimalLat": -32.139475 }, "geometry": { "type": "Point", "coordinates": [ 152.024, -32.139 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619339, "decimalLat": -34.439523 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409406, "decimalLat": -31.910186 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.43394, "decimalLat": -31.57941 }, "geometry": { "type": "Point", "coordinates": [ 150.434, -31.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640843, "decimalLat": -34.393772 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632604, "decimalLat": -34.418279 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82476, "decimalLat": -29.506699 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.507 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.678244, "decimalLat": -31.489578 }, "geometry": { "type": "Point", "coordinates": [ 152.678, -31.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.94014, "decimalLat": -34.113815 }, "geometry": { "type": "Point", "coordinates": [ 150.94, -34.114 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017872, "decimalLat": -30.378965 }, "geometry": { "type": "Point", "coordinates": [ 153.018, -30.379 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107475, "decimalLat": -29.490133 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59781, "decimalLat": -34.427932 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908628, "decimalLat": -31.454864 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.545595, "decimalLat": -28.733691 }, "geometry": { "type": "Point", "coordinates": [ 153.546, -28.734 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.944201, "decimalLat": -29.999273 }, "geometry": { "type": "Point", "coordinates": [ 151.944, -29.999 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109337, "decimalLat": -29.490493 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627698, "decimalLat": -34.42097 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299324, "decimalLat": -28.888717 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929736, "decimalLat": -31.466875 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095235, "decimalLat": -29.483464 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790596, "decimalLat": -34.188134 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520327, "decimalLat": -34.465709 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.192512, "decimalLat": -30.077654 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -30.078 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615864, "decimalLat": -34.430828 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812345, "decimalLat": -34.124693 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.125 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644174, "decimalLat": -34.548357 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.778194, "decimalLat": -30.190057 }, "geometry": { "type": "Point", "coordinates": [ 152.778, -30.19 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.490189 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904803, "decimalLat": -29.785312 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -29.785 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601527, "decimalLat": -34.425021 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.991936, "decimalLat": -32.721693 }, "geometry": { "type": "Point", "coordinates": [ 151.992, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.789731, "decimalLat": -32.655136 }, "geometry": { "type": "Point", "coordinates": [ 151.79, -32.655 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334806, "decimalLat": -28.816123 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918723, "decimalLat": -31.445741 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272431, "decimalLat": -28.355594 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -28.356 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.021561, "decimalLat": -32.737724 }, "geometry": { "type": "Point", "coordinates": [ 152.022, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.341303, "decimalLat": -28.649831 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519726, "decimalLat": -34.448847 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812345, "decimalLat": -34.124693 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.125 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.186173, "decimalLat": -33.670798 }, "geometry": { "type": "Point", "coordinates": [ 151.186, -33.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528243, "decimalLat": -34.464878 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.12311, "decimalLat": -31.14123 }, "geometry": { "type": "Point", "coordinates": [ 150.123, -31.141 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645113, "decimalLat": -34.391564 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521427, "decimalLat": -34.491064 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.892059, "decimalLat": -34.043064 }, "geometry": { "type": "Point", "coordinates": [ 150.892, -34.043 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.009757, "decimalLat": -30.527157 }, "geometry": { "type": "Point", "coordinates": [ 153.01, -30.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82369, "decimalLat": -34.141271 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.783236, "decimalLat": -30.225945 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -30.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604405, "decimalLat": -34.438925 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630819, "decimalLat": -34.420634 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300521, "decimalLat": -28.810998 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.811 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.918673, "decimalLat": -31.973327 }, "geometry": { "type": "Point", "coordinates": [ 151.919, -31.973 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626389, "decimalLat": -34.387217 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108081, "decimalLat": -29.490306 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519253, "decimalLat": -34.437623 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077632, "decimalLat": -32.725263 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.869923, "decimalLat": -34.004128 }, "geometry": { "type": "Point", "coordinates": [ 150.87, -34.004 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094822, "decimalLat": -29.494264 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.347055, "decimalLat": -28.822851 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300476, "decimalLat": -28.952324 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.952 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596278, "decimalLat": -34.450242 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79873, "decimalLat": -34.17958 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.18 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.196402, "decimalLat": -32.225666 }, "geometry": { "type": "Point", "coordinates": [ 152.196, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.309361, "decimalLat": -28.8232 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.871191, "decimalLat": -31.286182 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.286 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071768, "decimalLat": -32.710587 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300714, "decimalLat": -28.821774 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303139, "decimalLat": -28.848246 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597886, "decimalLat": -34.418025 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.126308, "decimalLat": -31.415433 }, "geometry": { "type": "Point", "coordinates": [ 152.126, -31.415 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886308, "decimalLat": -31.471414 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.047151, "decimalLat": -32.473472 }, "geometry": { "type": "Point", "coordinates": [ 152.047, -32.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633657, "decimalLat": -34.418363 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.53994, "decimalLat": -31.958765 }, "geometry": { "type": "Point", "coordinates": [ 152.54, -31.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637431, "decimalLat": -34.421095 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808271, "decimalLat": -34.098135 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104074, "decimalLat": -29.484362 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.02201, "decimalLat": -32.659322 }, "geometry": { "type": "Point", "coordinates": [ 152.022, -32.659 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085295, "decimalLat": -32.730287 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878659, "decimalLat": -29.677495 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.677 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608439, "decimalLat": -34.454655 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103677, "decimalLat": -29.485758 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.325641, "decimalLat": -29.033802 }, "geometry": { "type": "Point", "coordinates": [ 150.326, -29.034 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103489, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519971, "decimalLat": -34.446463 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.205572, "decimalLat": -28.611714 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -28.612 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603971, "decimalLat": -34.427061 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925366, "decimalLat": -31.454328 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911539, "decimalLat": -31.478801 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517475, "decimalLat": -34.452048 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.983838, "decimalLat": -30.421293 }, "geometry": { "type": "Point", "coordinates": [ 152.984, -30.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37681, "decimalLat": -28.547537 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604646, "decimalLat": -34.438849 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104053, "decimalLat": -29.484352 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520068, "decimalLat": -34.446492 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926422, "decimalLat": -31.444487 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638684, "decimalLat": -34.491359 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61008, "decimalLat": -34.419995 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521069, "decimalLat": -34.466734 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516607, "decimalLat": -34.468933 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.325661, "decimalLat": -29.033812 }, "geometry": { "type": "Point", "coordinates": [ 150.326, -29.034 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910587, "decimalLat": -31.475018 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80465, "decimalLat": -34.183601 }, "geometry": { "type": "Point", "coordinates": [ 150.805, -34.184 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109353, "decimalLat": -29.49046 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89783, "decimalLat": -31.4562 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.660029, "decimalLat": -32.659963 }, "geometry": { "type": "Point", "coordinates": [ 151.66, -32.66 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633558, "decimalLat": -34.418424 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600344, "decimalLat": -34.44851 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.847722, "decimalLat": -34.056 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.817626, "decimalLat": -29.617546 }, "geometry": { "type": "Point", "coordinates": [ 150.818, -29.618 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624571, "decimalLat": -34.386118 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926628, "decimalLat": -31.456781 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616032, "decimalLat": -34.439874 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.436863, "decimalLat": -28.633136 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.633 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.464754, "decimalLat": -28.395726 }, "geometry": { "type": "Point", "coordinates": [ 153.465, -28.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609433, "decimalLat": -34.419027 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.751273, "decimalLat": -30.932674 }, "geometry": { "type": "Point", "coordinates": [ 149.751, -30.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792854, "decimalLat": -31.641715 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189959, "decimalLat": -32.223426 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52727, "decimalLat": -34.469429 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642315, "decimalLat": -34.394413 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.217709, "decimalLat": -28.919419 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.58815, "decimalLat": -28.85266 }, "geometry": { "type": "Point", "coordinates": [ 153.588, -28.853 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.562655, "decimalLat": -29.037002 }, "geometry": { "type": "Point", "coordinates": [ 152.563, -29.037 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635418, "decimalLat": -34.488645 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.420282, "decimalLat": -28.982812 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372243, "decimalLat": -31.921372 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.532794, "decimalLat": -28.400667 }, "geometry": { "type": "Point", "coordinates": [ 153.533, -28.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517092, "decimalLat": -34.447784 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606991, "decimalLat": -34.437515 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324396, "decimalLat": -28.834072 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.54979, "decimalLat": -33.496074 }, "geometry": { "type": "Point", "coordinates": [ 149.55, -33.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517443, "decimalLat": -34.448422 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109385, "decimalLat": -29.490507 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192632, "decimalLat": -32.228945 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609621, "decimalLat": -34.420059 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.985717, "decimalLat": -29.030717 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.040736, "decimalLat": -32.73704 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915994, "decimalLat": -31.445155 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605793, "decimalLat": -34.437546 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270395, "decimalLat": -28.931139 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -28.931 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.247983, "decimalLat": -32.048603 }, "geometry": { "type": "Point", "coordinates": [ 152.248, -32.049 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434047, "decimalLat": -29.013135 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -29.013 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.943926, "decimalLat": -29.267695 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -29.268 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523967, "decimalLat": -34.4637 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516052, "decimalLat": -34.44944 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602612, "decimalLat": -34.436555 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.978213, "decimalLat": -34.083624 }, "geometry": { "type": "Point", "coordinates": [ 150.978, -34.084 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.658441, "decimalLat": -28.421637 }, "geometry": { "type": "Point", "coordinates": [ 152.658, -28.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522761, "decimalLat": -34.46437 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865207, "decimalLat": -29.628263 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -29.628 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921838, "decimalLat": -31.451722 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.824172, "decimalLat": -34.151085 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.151 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.032975, "decimalLat": -32.732124 }, "geometry": { "type": "Point", "coordinates": [ 152.033, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374224, "decimalLat": -31.915707 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.15909, "decimalLat": -28.924799 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640821, "decimalLat": -34.393753 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63103, "decimalLat": -34.387298 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.352767, "decimalLat": -36.154709 }, "geometry": { "type": "Point", "coordinates": [ 149.353, -36.155 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630688, "decimalLat": -34.420658 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.510824, "decimalLat": -34.471231 }, "geometry": { "type": "Point", "coordinates": [ 150.511, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.757767, "decimalLat": -31.240611 }, "geometry": { "type": "Point", "coordinates": [ 152.758, -31.241 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913953, "decimalLat": -31.447768 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.251483, "decimalLat": -28.273111 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -28.273 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518113, "decimalLat": -34.446741 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515852, "decimalLat": -34.449589 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.802682, "decimalLat": -34.111148 }, "geometry": { "type": "Point", "coordinates": [ 150.803, -34.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656203, "decimalLat": -34.458691 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615751, "decimalLat": -34.440941 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.366286, "decimalLat": -36.002004 }, "geometry": { "type": "Point", "coordinates": [ 149.366, -36.002 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922578, "decimalLat": -31.458172 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604328, "decimalLat": -34.438941 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108113, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.382589, "decimalLat": -28.523791 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -28.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.861595, "decimalLat": -30.342791 }, "geometry": { "type": "Point", "coordinates": [ 152.862, -30.343 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104063, "decimalLat": -29.479837 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316984, "decimalLat": -28.937089 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.720013, "decimalLat": -32.224087 }, "geometry": { "type": "Point", "coordinates": [ 151.72, -32.224 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.316157, "decimalLat": -31.206418 }, "geometry": { "type": "Point", "coordinates": [ 150.316, -31.206 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46202, "decimalLat": -28.650301 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.512471, "decimalLat": -30.655961 }, "geometry": { "type": "Point", "coordinates": [ 151.512, -30.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108156, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812214, "decimalLat": -31.13881 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -31.139 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616368, "decimalLat": -34.428791 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797444, "decimalLat": -31.126171 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637342, "decimalLat": -34.423897 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09578, "decimalLat": -30.15738 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -30.157 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515554, "decimalLat": -34.445319 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517138, "decimalLat": -34.435912 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104221, "decimalLat": -29.482149 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919643, "decimalLat": -31.4692 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335473, "decimalLat": -28.817598 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293477, "decimalLat": -28.864625 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.800023, "decimalLat": -30.218771 }, "geometry": { "type": "Point", "coordinates": [ 152.8, -30.219 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639177, "decimalLat": -34.392676 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.231631, "decimalLat": -32.272112 }, "geometry": { "type": "Point", "coordinates": [ 152.232, -32.272 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990921, "decimalLat": -34.021472 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.021 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.507595, "decimalLat": -28.8093 }, "geometry": { "type": "Point", "coordinates": [ 153.508, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59698, "decimalLat": -34.414338 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.379713, "decimalLat": -33.721678 }, "geometry": { "type": "Point", "coordinates": [ 150.38, -33.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624378, "decimalLat": -34.388359 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.413555, "decimalLat": -28.54853 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517241, "decimalLat": -34.451573 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626882, "decimalLat": -34.420963 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.349266, "decimalLat": -28.873789 }, "geometry": { "type": "Point", "coordinates": [ 153.349, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.874191, "decimalLat": -31.463856 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520158, "decimalLat": -34.449334 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624447, "decimalLat": -34.387838 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605637, "decimalLat": -34.437299 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.164469, "decimalLat": -27.865117 }, "geometry": { "type": "Point", "coordinates": [ 153.164, -27.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324009, "decimalLat": -28.825305 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525374, "decimalLat": -34.464711 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516404, "decimalLat": -34.450069 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617498, "decimalLat": -34.399729 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192737, "decimalLat": -28.619829 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -28.62 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.163248, "decimalLat": -32.71419 }, "geometry": { "type": "Point", "coordinates": [ 152.163, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92593, "decimalLat": -31.452743 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61583, "decimalLat": -34.435858 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092406, "decimalLat": -29.488377 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101065, "decimalLat": -29.490063 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639046, "decimalLat": -33.434393 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -33.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077045, "decimalLat": -32.722541 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312767, "decimalLat": -29.008668 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -29.009 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516008, "decimalLat": -34.447248 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.459387, "decimalLat": -28.650505 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.41194, "decimalLat": -32.86789 }, "geometry": { "type": "Point", "coordinates": [ 151.412, -32.868 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.028339, "decimalLat": -28.537034 }, "geometry": { "type": "Point", "coordinates": [ 153.028, -28.537 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520305, "decimalLat": -34.466078 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608992, "decimalLat": -34.420371 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016582, "decimalLat": -36.557254 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.443557, "decimalLat": -28.232986 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.233 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104063, "decimalLat": -29.479972 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911301, "decimalLat": -31.435032 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.424803, "decimalLat": -28.874576 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.875 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.624167, "decimalLat": -31.899167 }, "geometry": { "type": "Point", "coordinates": [ 151.624, -31.899 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632701, "decimalLat": -34.392857 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513075, "decimalLat": -34.447098 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.261177, "decimalLat": -34.305931 }, "geometry": { "type": "Point", "coordinates": [ 150.261, -34.306 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88948, "decimalLat": -30.468265 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -30.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629552, "decimalLat": -34.389217 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.559712, "decimalLat": -30.400741 }, "geometry": { "type": "Point", "coordinates": [ 151.56, -30.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512835, "decimalLat": -34.446742 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796589, "decimalLat": -34.145052 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616059, "decimalLat": -34.43433 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091779, "decimalLat": -29.487938 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.982567, "decimalLat": -29.732031 }, "geometry": { "type": "Point", "coordinates": [ 150.983, -29.732 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908797, "decimalLat": -31.464597 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101665, "decimalLat": -29.489676 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293075, "decimalLat": -28.864687 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833889, "decimalLat": -34.073083 }, "geometry": { "type": "Point", "coordinates": [ 150.834, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293176, "decimalLat": -28.86456 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.913678, "decimalLat": -34.068368 }, "geometry": { "type": "Point", "coordinates": [ 150.914, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604157, "decimalLat": -34.425884 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927638, "decimalLat": -31.472595 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615265, "decimalLat": -34.428571 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518375, "decimalLat": -34.457375 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662402, "decimalLat": -34.458476 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630863, "decimalLat": -34.420616 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519451, "decimalLat": -34.451168 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523454, "decimalLat": -34.453061 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632739, "decimalLat": -34.418922 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.036133, "decimalLat": -32.732037 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.645394, "decimalLat": -32.551095 }, "geometry": { "type": "Point", "coordinates": [ 151.645, -32.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.90609, "decimalLat": -33.968421 }, "geometry": { "type": "Point", "coordinates": [ 150.906, -33.968 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564052, "decimalLat": -28.374668 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.375 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616271, "decimalLat": -34.435659 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916522, "decimalLat": -31.444834 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616331, "decimalLat": -34.434317 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.282056, "decimalLat": -28.830721 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077192, "decimalLat": -32.734199 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605542, "decimalLat": -34.432231 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521273, "decimalLat": -34.465737 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.192386, "decimalLat": -29.425126 }, "geometry": { "type": "Point", "coordinates": [ 153.192, -29.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.957757, "decimalLat": -30.662362 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -30.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518903, "decimalLat": -34.447244 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063448, "decimalLat": -32.705404 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627431, "decimalLat": -34.421181 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.663806, "decimalLat": -34.458097 }, "geometry": { "type": "Point", "coordinates": [ 150.664, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532375, "decimalLat": -34.46168 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916023, "decimalLat": -31.437375 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104106, "decimalLat": -29.480126 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521621, "decimalLat": -34.465744 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556505, "decimalLat": -28.399929 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400689, "decimalLat": -28.644539 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.645 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.54165, "decimalLat": -29.107663 }, "geometry": { "type": "Point", "coordinates": [ 152.542, -29.108 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625789, "decimalLat": -34.386511 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898133, "decimalLat": -31.474397 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520335, "decimalLat": -34.454007 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610322, "decimalLat": -34.419135 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.033896, "decimalLat": -30.367412 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -30.367 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293285, "decimalLat": -28.864609 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.067707, "decimalLat": -30.888275 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518248, "decimalLat": -34.446591 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639005, "decimalLat": -34.492744 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.194095, "decimalLat": -32.224416 }, "geometry": { "type": "Point", "coordinates": [ 152.194, -32.224 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637357, "decimalLat": -34.423735 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109369, "decimalLat": -29.490525 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110554, "decimalLat": -29.489881 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51991, "decimalLat": -34.452556 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790388, "decimalLat": -34.190761 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.191 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637345, "decimalLat": -34.423771 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.180569, "decimalLat": -32.654013 }, "geometry": { "type": "Point", "coordinates": [ 152.181, -32.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521242, "decimalLat": -34.465664 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.046999, "decimalLat": -33.757316 }, "geometry": { "type": "Point", "coordinates": [ 150.047, -33.757 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643323, "decimalLat": -34.395307 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515835, "decimalLat": -34.450905 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094901, "decimalLat": -29.494293 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602966, "decimalLat": -34.45196 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.78214, "decimalLat": -32.57073 }, "geometry": { "type": "Point", "coordinates": [ 151.782, -32.571 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80057, "decimalLat": -34.17502 }, "geometry": { "type": "Point", "coordinates": [ 150.801, -34.175 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.369052, "decimalLat": -28.953149 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.953 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.796786, "decimalLat": -31.327271 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.327 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.807228, "decimalLat": -34.068105 }, "geometry": { "type": "Point", "coordinates": [ 150.807, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616397, "decimalLat": -34.4343 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513994, "decimalLat": -34.447288 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.620962, "decimalLat": -28.647233 }, "geometry": { "type": "Point", "coordinates": [ 153.621, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627322, "decimalLat": -34.421197 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076102, "decimalLat": -32.738979 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645688, "decimalLat": -34.392792 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818969, "decimalLat": -30.914258 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -30.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.484787 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10012, "decimalLat": -29.490796 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838287, "decimalLat": -34.069699 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.890624, "decimalLat": -34.018545 }, "geometry": { "type": "Point", "coordinates": [ 150.891, -34.019 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103398, "decimalLat": -29.486421 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.362291, "decimalLat": -28.65032 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618794, "decimalLat": -34.440694 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.866362, "decimalLat": -29.691624 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -29.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630279, "decimalLat": -34.420894 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110619, "decimalLat": -29.489531 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.962048, "decimalLat": -36.514707 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985223, "decimalLat": -34.091455 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104578, "decimalLat": -29.477263 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532775, "decimalLat": -34.458821 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530595, "decimalLat": -34.470001 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637425, "decimalLat": -34.420536 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108119, "decimalLat": -29.490283 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513836, "decimalLat": -34.446384 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.566043, "decimalLat": -34.524474 }, "geometry": { "type": "Point", "coordinates": [ 150.566, -34.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599209, "decimalLat": -34.413986 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928636, "decimalLat": -31.459553 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610201, "decimalLat": -34.419159 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103935, "decimalLat": -29.489559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535291, "decimalLat": -34.463181 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518985, "decimalLat": -34.459921 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.16856, "decimalLat": -32.748567 }, "geometry": { "type": "Point", "coordinates": [ 152.169, -32.749 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.899382, "decimalLat": -33.9525 }, "geometry": { "type": "Point", "coordinates": [ 150.899, -33.952 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.988969, "decimalLat": -34.032932 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.033 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631291, "decimalLat": -34.420102 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924126, "decimalLat": -31.473213 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091999, "decimalLat": -29.48792 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.369052, "decimalLat": -28.953149 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.953 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789567, "decimalLat": -34.195769 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.196 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.389066, "decimalLat": -28.31409 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.314 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595561, "decimalLat": -34.514666 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101537, "decimalLat": -29.489746 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929672, "decimalLat": -31.454994 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639145, "decimalLat": -34.491629 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915349, "decimalLat": -31.445683 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532299, "decimalLat": -34.480907 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522246, "decimalLat": -34.464846 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.412703, "decimalLat": -28.954611 }, "geometry": { "type": "Point", "coordinates": [ 153.413, -28.955 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092796, "decimalLat": -28.603622 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -28.604 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.076773, "decimalLat": -28.556729 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -28.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535909, "decimalLat": -34.463284 }, "geometry": { "type": "Point", "coordinates": [ 150.536, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62796, "decimalLat": -34.420939 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299609, "decimalLat": -28.888282 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.888 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899379, "decimalLat": -29.630981 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.71462, "decimalLat": -31.348046 }, "geometry": { "type": "Point", "coordinates": [ 152.715, -31.348 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.976902, "decimalLat": -32.704115 }, "geometry": { "type": "Point", "coordinates": [ 151.977, -32.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61696, "decimalLat": -34.430561 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06317, "decimalLat": -32.703313 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.703 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898564, "decimalLat": -31.466618 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907391, "decimalLat": -31.470566 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609446, "decimalLat": -34.418946 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784985, "decimalLat": -33.714279 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604126, "decimalLat": -34.438018 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.469004, "decimalLat": -28.55641 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640426, "decimalLat": -34.494088 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62282, "decimalLat": -34.383839 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400565, "decimalLat": -28.25774 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104932, "decimalLat": -29.477282 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1205, "decimalLat": -30.305313 }, "geometry": { "type": "Point", "coordinates": [ 153.121, -30.305 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063689, "decimalLat": -32.706612 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631288, "decimalLat": -34.420201 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518193, "decimalLat": -34.446598 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.936835, "decimalLat": -30.894257 }, "geometry": { "type": "Point", "coordinates": [ 151.937, -30.894 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563161, "decimalLat": -28.381373 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.70221, "decimalLat": -32.694076 }, "geometry": { "type": "Point", "coordinates": [ 151.702, -32.694 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611572, "decimalLat": -34.420304 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.000971, "decimalLat": -32.727376 }, "geometry": { "type": "Point", "coordinates": [ 152.001, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524401, "decimalLat": -34.451602 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.870852, "decimalLat": -34.042809 }, "geometry": { "type": "Point", "coordinates": [ 150.871, -34.043 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.594786, "decimalLat": -34.412321 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639051, "decimalLat": -34.491474 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.116778, "decimalLat": -32.721097 }, "geometry": { "type": "Point", "coordinates": [ 152.117, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915846, "decimalLat": -31.482057 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.390561, "decimalLat": -28.738745 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.739 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784326, "decimalLat": -31.63034 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794751, "decimalLat": -34.216295 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.216 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518254, "decimalLat": -34.437197 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.059118, "decimalLat": -33.768071 }, "geometry": { "type": "Point", "coordinates": [ 150.059, -33.768 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303174, "decimalLat": -28.827996 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.860181, "decimalLat": -34.072566 }, "geometry": { "type": "Point", "coordinates": [ 150.86, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81132, "decimalLat": -31.654141 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -31.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513799, "decimalLat": -34.447266 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094112, "decimalLat": -29.483946 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659213, "decimalLat": -33.527046 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64267, "decimalLat": -34.394555 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601872, "decimalLat": -34.418257 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.088276, "decimalLat": -30.341761 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -30.342 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614763, "decimalLat": -34.430905 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.176398, "decimalLat": -28.853228 }, "geometry": { "type": "Point", "coordinates": [ 153.176, -28.853 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.405203, "decimalLat": -28.254739 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523075, "decimalLat": -34.45226 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525407, "decimalLat": -34.459925 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637248, "decimalLat": -34.423733 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808214, "decimalLat": -34.098091 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.020691, "decimalLat": -32.767712 }, "geometry": { "type": "Point", "coordinates": [ 152.021, -32.768 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606816, "decimalLat": -34.454334 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514613, "decimalLat": -34.447337 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519561, "decimalLat": -34.447798 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.034866, "decimalLat": -32.765345 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.701691, "decimalLat": -31.549481 }, "geometry": { "type": "Point", "coordinates": [ 152.702, -31.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784778, "decimalLat": -33.717731 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.8658, "decimalLat": -32.74536 }, "geometry": { "type": "Point", "coordinates": [ 151.866, -32.745 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607817, "decimalLat": -34.454345 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64533, "decimalLat": -34.393164 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.611444, "decimalLat": -28.683591 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.713317, "decimalLat": -30.454894 }, "geometry": { "type": "Point", "coordinates": [ 152.713, -30.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.863532, "decimalLat": -34.054048 }, "geometry": { "type": "Point", "coordinates": [ 150.864, -34.054 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644564, "decimalLat": -34.393699 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.196402, "decimalLat": -32.225666 }, "geometry": { "type": "Point", "coordinates": [ 152.196, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.419337, "decimalLat": -28.872666 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.873 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.594663, "decimalLat": -34.427627 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90872, "decimalLat": -31.468605 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.043079, "decimalLat": -28.469347 }, "geometry": { "type": "Point", "coordinates": [ 153.043, -28.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561351, "decimalLat": -28.385497 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629763, "decimalLat": -34.420658 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604231, "decimalLat": -34.422153 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.725898, "decimalLat": -30.403506 }, "geometry": { "type": "Point", "coordinates": [ 151.726, -30.404 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10335, "decimalLat": -29.4865 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512968, "decimalLat": -34.447403 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077753, "decimalLat": -30.354966 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.355 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.023368, "decimalLat": -28.489023 }, "geometry": { "type": "Point", "coordinates": [ 153.023, -28.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315862, "decimalLat": -28.845483 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624516, "decimalLat": -34.385396 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984461, "decimalLat": -34.027084 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.027 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783549, "decimalLat": -33.71737 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.60416, "decimalLat": -30.4623 }, "geometry": { "type": "Point", "coordinates": [ 151.604, -30.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516368, "decimalLat": -34.439511 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916067, "decimalLat": -31.485096 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657349, "decimalLat": -34.455079 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.67229, "decimalLat": -33.56933 }, "geometry": { "type": "Point", "coordinates": [ 150.672, -33.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063451, "decimalLat": -32.706065 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189959, "decimalLat": -32.223426 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101344, "decimalLat": -29.489713 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103398, "decimalLat": -32.759406 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -32.759 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394536, "decimalLat": -28.959554 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.664782, "decimalLat": -34.458999 }, "geometry": { "type": "Point", "coordinates": [ 150.665, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622606, "decimalLat": -34.384079 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615696, "decimalLat": -34.435999 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.0652, "decimalLat": -31.19372 }, "geometry": { "type": "Point", "coordinates": [ 150.065, -31.194 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.556772, "decimalLat": -34.474 }, "geometry": { "type": "Point", "coordinates": [ 150.557, -34.474 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11127, "decimalLat": -30.299322 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597729, "decimalLat": -34.427326 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073059, "decimalLat": -32.724707 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067546, "decimalLat": -32.708104 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.022552, "decimalLat": -28.489326 }, "geometry": { "type": "Point", "coordinates": [ 153.023, -28.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525723, "decimalLat": -34.448464 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517351, "decimalLat": -34.446365 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960571, "decimalLat": -36.556943 }, "geometry": { "type": "Point", "coordinates": [ 149.961, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.111778, "decimalLat": -35.050172 }, "geometry": { "type": "Point", "coordinates": [ 150.112, -35.05 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614592, "decimalLat": -34.433877 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064604, "decimalLat": -32.709009 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607043, "decimalLat": -34.43034 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.004136, "decimalLat": -29.182571 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -29.183 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.355934, "decimalLat": -37.177314 }, "geometry": { "type": "Point", "coordinates": [ 149.356, -37.177 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101285, "decimalLat": -29.489946 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786775, "decimalLat": -31.629191 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.803298, "decimalLat": -31.125286 }, "geometry": { "type": "Point", "coordinates": [ 152.803, -31.125 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.485566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908728, "decimalLat": -31.454794 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108207, "decimalLat": -29.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523668, "decimalLat": -34.464244 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615078, "decimalLat": -34.431308 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29891, "decimalLat": -28.716155 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637317, "decimalLat": -34.421679 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519333, "decimalLat": -34.448154 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.577567, "decimalLat": -34.476912 }, "geometry": { "type": "Point", "coordinates": [ 150.578, -34.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.670546, "decimalLat": -33.534787 }, "geometry": { "type": "Point", "coordinates": [ 150.671, -33.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637344, "decimalLat": -34.423816 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104165, "decimalLat": -29.477716 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606694, "decimalLat": -34.43686 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.887282, "decimalLat": -32.529237 }, "geometry": { "type": "Point", "coordinates": [ 151.887, -32.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520675, "decimalLat": -34.436633 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.862399, "decimalLat": -34.061874 }, "geometry": { "type": "Point", "coordinates": [ 150.862, -34.062 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.2214, "decimalLat": -28.874841 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -28.875 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.736408, "decimalLat": -31.539621 }, "geometry": { "type": "Point", "coordinates": [ 151.736, -31.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87781, "decimalLat": -31.453164 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605028, "decimalLat": -34.427001 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40362, "decimalLat": -28.61199 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.612 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.02264, "decimalLat": -28.489004 }, "geometry": { "type": "Point", "coordinates": [ 153.023, -28.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.780551, "decimalLat": -34.199469 }, "geometry": { "type": "Point", "coordinates": [ 150.781, -34.199 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556701, "decimalLat": -28.400142 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11529, "decimalLat": -29.085168 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -29.085 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605793, "decimalLat": -34.437546 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604233, "decimalLat": -34.438822 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606059, "decimalLat": -34.457223 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.367531, "decimalLat": -36.021952 }, "geometry": { "type": "Point", "coordinates": [ 149.368, -36.022 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.056633, "decimalLat": -32.736868 }, "geometry": { "type": "Point", "coordinates": [ 152.057, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.425241, "decimalLat": -31.803805 }, "geometry": { "type": "Point", "coordinates": [ 152.425, -31.804 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109712, "decimalLat": -29.490128 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334493, "decimalLat": -28.813462 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.813 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.886915, "decimalLat": -32.457662 }, "geometry": { "type": "Point", "coordinates": [ 151.887, -32.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465371, "decimalLat": -28.877163 }, "geometry": { "type": "Point", "coordinates": [ 153.465, -28.877 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.361347, "decimalLat": -36.182528 }, "geometry": { "type": "Point", "coordinates": [ 149.361, -36.183 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103924, "decimalLat": -29.489591 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.844255, "decimalLat": -31.321668 }, "geometry": { "type": "Point", "coordinates": [ 152.844, -31.322 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.290886, "decimalLat": -33.010532 }, "geometry": { "type": "Point", "coordinates": [ 151.291, -33.011 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.596142, "decimalLat": -28.652281 }, "geometry": { "type": "Point", "coordinates": [ 153.596, -28.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604802, "decimalLat": -34.427294 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.998241, "decimalLat": -34.082165 }, "geometry": { "type": "Point", "coordinates": [ 150.998, -34.082 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071682, "decimalLat": -28.585441 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -28.585 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522857, "decimalLat": -34.452264 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63091, "decimalLat": -34.388856 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.635866, "decimalLat": -28.63932 }, "geometry": { "type": "Point", "coordinates": [ 153.636, -28.639 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616261, "decimalLat": -34.43565 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921182, "decimalLat": -31.46494 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615469, "decimalLat": -34.435562 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528836, "decimalLat": -34.458795 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.196402, "decimalLat": -32.225666 }, "geometry": { "type": "Point", "coordinates": [ 152.196, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.871283, "decimalLat": -31.261157 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.261 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.929224, "decimalLat": -33.954203 }, "geometry": { "type": "Point", "coordinates": [ 150.929, -33.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.098382, "decimalLat": -30.296388 }, "geometry": { "type": "Point", "coordinates": [ 153.098, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.692898, "decimalLat": -32.69221 }, "geometry": { "type": "Point", "coordinates": [ 151.693, -32.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514331, "decimalLat": -34.446556 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314521, "decimalLat": -28.826027 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615631, "decimalLat": -34.437891 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.604455, "decimalLat": -28.675648 }, "geometry": { "type": "Point", "coordinates": [ 153.604, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093385, "decimalLat": -29.492686 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.160405, "decimalLat": -28.570554 }, "geometry": { "type": "Point", "coordinates": [ 153.16, -28.571 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890323, "decimalLat": -31.158252 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.158 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604657, "decimalLat": -34.439218 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.153507, "decimalLat": -29.875983 }, "geometry": { "type": "Point", "coordinates": [ 151.154, -29.876 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102089, "decimalLat": -29.48891 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809577, "decimalLat": -34.100074 }, "geometry": { "type": "Point", "coordinates": [ 150.81, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374047, "decimalLat": -31.913202 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.890465, "decimalLat": -34.018007 }, "geometry": { "type": "Point", "coordinates": [ 150.89, -34.018 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.35899, "decimalLat": -31.92441 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.651139, "decimalLat": -32.683786 }, "geometry": { "type": "Point", "coordinates": [ 151.651, -32.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885141, "decimalLat": -31.441225 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107888, "decimalLat": -29.490184 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627995, "decimalLat": -34.420471 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894734, "decimalLat": -31.448279 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.064703, "decimalLat": -28.535245 }, "geometry": { "type": "Point", "coordinates": [ 153.065, -28.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071501, "decimalLat": -32.710049 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323456, "decimalLat": -28.8555 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.855 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785076, "decimalLat": -33.717456 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881749, "decimalLat": -31.452604 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92945, "decimalLat": -31.459749 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522645, "decimalLat": -34.451728 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603407, "decimalLat": -34.419739 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.755975, "decimalLat": -32.770005 }, "geometry": { "type": "Point", "coordinates": [ 151.756, -32.77 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063708, "decimalLat": -32.706505 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924705, "decimalLat": -31.443222 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108049, "decimalLat": -29.490348 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597519, "decimalLat": -34.450248 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.041931, "decimalLat": -30.448523 }, "geometry": { "type": "Point", "coordinates": [ 153.042, -30.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.009514, "decimalLat": -32.727299 }, "geometry": { "type": "Point", "coordinates": [ 152.01, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614836, "decimalLat": -34.431042 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.705386, "decimalLat": -31.355749 }, "geometry": { "type": "Point", "coordinates": [ 152.705, -31.356 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627065, "decimalLat": -34.421435 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636217, "decimalLat": -34.485794 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.496173, "decimalLat": -28.693467 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060559, "decimalLat": -32.710787 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873297, "decimalLat": -31.467563 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6064, "decimalLat": -34.433807 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.340682, "decimalLat": -31.978738 }, "geometry": { "type": "Point", "coordinates": [ 152.341, -31.979 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.2399, "decimalLat": -32.22183 }, "geometry": { "type": "Point", "coordinates": [ 152.24, -32.222 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.009193, "decimalLat": -34.045304 }, "geometry": { "type": "Point", "coordinates": [ 151.009, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09456, "decimalLat": -30.371451 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -30.371 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896469, "decimalLat": -31.415265 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.720724, "decimalLat": -31.345913 }, "geometry": { "type": "Point", "coordinates": [ 152.721, -31.346 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.14511, "decimalLat": -32.72636 }, "geometry": { "type": "Point", "coordinates": [ 152.145, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517589, "decimalLat": -34.45305 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.463115, "decimalLat": -28.421083 }, "geometry": { "type": "Point", "coordinates": [ 153.463, -28.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907012, "decimalLat": -31.454517 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.18776, "decimalLat": -32.238477 }, "geometry": { "type": "Point", "coordinates": [ 152.188, -32.238 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109734, "decimalLat": -29.490161 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108226, "decimalLat": -29.48996 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638764, "decimalLat": -34.489323 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299422, "decimalLat": -28.818202 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.751827, "decimalLat": -31.348315 }, "geometry": { "type": "Point", "coordinates": [ 152.752, -31.348 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293285, "decimalLat": -28.864609 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897126, "decimalLat": -31.47481 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629512, "decimalLat": -34.389469 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095239, "decimalLat": -29.483502 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913909, "decimalLat": -31.478485 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890004, "decimalLat": -30.509293 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -30.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899695, "decimalLat": -29.631042 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898073, "decimalLat": -31.438449 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598892, "decimalLat": -34.413691 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396186, "decimalLat": -29.095797 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -29.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.444246, "decimalLat": -34.470853 }, "geometry": { "type": "Point", "coordinates": [ 150.444, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851304, "decimalLat": -31.438807 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513012, "decimalLat": -34.447368 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.149708, "decimalLat": -35.079356 }, "geometry": { "type": "Point", "coordinates": [ 150.15, -35.079 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093415, "decimalLat": -29.488765 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517391, "decimalLat": -34.453488 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40941, "decimalLat": -31.91019 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558072, "decimalLat": -28.389679 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.09711, "decimalLat": -32.68189 }, "geometry": { "type": "Point", "coordinates": [ 152.097, -32.682 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519624, "decimalLat": -34.455255 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605683, "decimalLat": -34.423489 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516218, "decimalLat": -34.440915 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101108, "decimalLat": -29.489844 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.961209, "decimalLat": -31.250814 }, "geometry": { "type": "Point", "coordinates": [ 152.961, -31.251 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629942, "decimalLat": -34.395436 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.840957, "decimalLat": -34.062897 }, "geometry": { "type": "Point", "coordinates": [ 150.841, -34.063 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.60767, "decimalLat": -30.52283 }, "geometry": { "type": "Point", "coordinates": [ 152.608, -30.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529501, "decimalLat": -34.471313 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615511, "decimalLat": -34.435599 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523745, "decimalLat": -34.464228 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643171, "decimalLat": -34.396458 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606659, "decimalLat": -34.434651 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513004, "decimalLat": -34.447277 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812082, "decimalLat": -31.133161 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -31.133 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31652, "decimalLat": -28.826909 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.136982, "decimalLat": -30.208566 }, "geometry": { "type": "Point", "coordinates": [ 153.137, -30.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519633, "decimalLat": -34.463035 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.187392, "decimalLat": -32.232904 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -32.233 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.789139, "decimalLat": -31.636895 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92379, "decimalLat": -31.470585 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785977, "decimalLat": -33.706001 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.170861, "decimalLat": -29.436645 }, "geometry": { "type": "Point", "coordinates": [ 153.171, -29.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.584997, "decimalLat": -28.637966 }, "geometry": { "type": "Point", "coordinates": [ 153.585, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.013656, "decimalLat": -34.055279 }, "geometry": { "type": "Point", "coordinates": [ 151.014, -34.055 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633546, "decimalLat": -34.418442 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823192, "decimalLat": -31.098829 }, "geometry": { "type": "Point", "coordinates": [ 152.823, -31.099 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316066, "decimalLat": -28.846075 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.627171, "decimalLat": -32.641265 }, "geometry": { "type": "Point", "coordinates": [ 151.627, -32.641 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629136, "decimalLat": -34.395087 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.116051, "decimalLat": -28.561518 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -28.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518585, "decimalLat": -34.445498 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605266, "decimalLat": -34.437328 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.883289, "decimalLat": -34.015205 }, "geometry": { "type": "Point", "coordinates": [ 150.883, -34.015 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600092, "decimalLat": -34.418105 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638531, "decimalLat": -34.490608 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784476, "decimalLat": -33.716577 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523831, "decimalLat": -34.463517 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.102173, "decimalLat": -32.757024 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -32.757 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914764, "decimalLat": -31.448743 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553572, "decimalLat": -28.588037 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.588 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494926, "decimalLat": -28.694325 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532545, "decimalLat": -34.476096 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920959, "decimalLat": -31.481416 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616641, "decimalLat": -34.435288 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.620911, "decimalLat": -34.553314 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.553 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920411, "decimalLat": -30.505521 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903, "decimalLat": -30.424 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608799, "decimalLat": -34.435152 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624177, "decimalLat": -34.388923 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063422, "decimalLat": -32.706176 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302432, "decimalLat": -28.846316 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.445905, "decimalLat": -28.693131 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.939787, "decimalLat": -29.769423 }, "geometry": { "type": "Point", "coordinates": [ 150.94, -29.769 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063416, "decimalLat": -32.706457 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.039631, "decimalLat": -28.517676 }, "geometry": { "type": "Point", "coordinates": [ 153.04, -28.518 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.114488, "decimalLat": -28.661766 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103865, "decimalLat": -29.485422 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039191, "decimalLat": -32.730856 }, "geometry": { "type": "Point", "coordinates": [ 152.039, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.646918, "decimalLat": -32.679834 }, "geometry": { "type": "Point", "coordinates": [ 151.647, -32.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604292, "decimalLat": -34.426869 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604963, "decimalLat": -34.427757 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919858, "decimalLat": -30.506044 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.917922, "decimalLat": -36.474664 }, "geometry": { "type": "Point", "coordinates": [ 149.918, -36.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792944, "decimalLat": -34.220619 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.221 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.379659, "decimalLat": -28.251097 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -28.251 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.458379, "decimalLat": -28.268828 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.269 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31568, "decimalLat": -28.39973 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104777, "decimalLat": -29.476955 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885213, "decimalLat": -31.401436 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108248, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.716141, "decimalLat": -31.472364 }, "geometry": { "type": "Point", "coordinates": [ 152.716, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526108, "decimalLat": -34.466024 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.381445, "decimalLat": -28.485028 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -28.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124085, "decimalLat": -30.296119 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.84089, "decimalLat": -34.060553 }, "geometry": { "type": "Point", "coordinates": [ 150.841, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110796, "decimalLat": -29.488401 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987324, "decimalLat": -33.966344 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -33.966 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108194, "decimalLat": -29.490241 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335481, "decimalLat": -28.869015 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061378, "decimalLat": -32.709636 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016902, "decimalLat": -36.541583 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.542 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894832, "decimalLat": -31.43879 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530597, "decimalLat": -34.469929 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785718, "decimalLat": -33.709931 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625927, "decimalLat": -34.389715 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626557, "decimalLat": -34.387049 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633197, "decimalLat": -34.41848 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.707045, "decimalLat": -32.631825 }, "geometry": { "type": "Point", "coordinates": [ 151.707, -32.632 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924261, "decimalLat": -31.464557 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071503, "decimalLat": -30.887395 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.26095, "decimalLat": -31.404321 }, "geometry": { "type": "Point", "coordinates": [ 152.261, -31.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513019, "decimalLat": -34.446033 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.893304, "decimalLat": -33.468613 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792619, "decimalLat": -31.640099 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.391412, "decimalLat": -31.902486 }, "geometry": { "type": "Point", "coordinates": [ 152.391, -31.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637314, "decimalLat": -34.423725 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522686, "decimalLat": -34.464323 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607618, "decimalLat": -34.422003 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523021, "decimalLat": -34.452241 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.850922, "decimalLat": -34.053036 }, "geometry": { "type": "Point", "coordinates": [ 150.851, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.913678, "decimalLat": -34.068368 }, "geometry": { "type": "Point", "coordinates": [ 150.914, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529051, "decimalLat": -34.471412 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.802282, "decimalLat": -32.396792 }, "geometry": { "type": "Point", "coordinates": [ 149.802, -32.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637269, "decimalLat": -34.42377 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103988, "decimalLat": -29.485319 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.972026, "decimalLat": -31.187716 }, "geometry": { "type": "Point", "coordinates": [ 152.972, -31.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638509, "decimalLat": -34.490616 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.043701, "decimalLat": -30.424995 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -30.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108231, "decimalLat": -29.490357 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628768, "decimalLat": -34.389238 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.862941, "decimalLat": -29.609982 }, "geometry": { "type": "Point", "coordinates": [ 150.863, -29.61 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.370847, "decimalLat": -36.172917 }, "geometry": { "type": "Point", "coordinates": [ 149.371, -36.173 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.225998, "decimalLat": -28.887675 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -28.888 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786698, "decimalLat": -33.705548 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615266, "decimalLat": -34.439246 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603895, "decimalLat": -34.42742 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520474, "decimalLat": -34.454109 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640652, "decimalLat": -34.412584 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.448584, "decimalLat": -28.969732 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.97 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622883, "decimalLat": -34.397382 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27308, "decimalLat": -28.688959 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105012, "decimalLat": -32.721031 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067959, "decimalLat": -32.758352 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.758 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109267, "decimalLat": -29.490703 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401824, "decimalLat": -28.25994 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925941, "decimalLat": -31.452616 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90706, "decimalLat": -30.23649 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -30.236 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638897, "decimalLat": -34.418897 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108205, "decimalLat": -29.490572 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921271, "decimalLat": -31.467664 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.682143, "decimalLat": -28.904438 }, "geometry": { "type": "Point", "coordinates": [ 152.682, -28.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.788721, "decimalLat": -34.197945 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.198 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522479, "decimalLat": -34.465798 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607653, "decimalLat": -34.422319 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908289, "decimalLat": -31.447153 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923409, "decimalLat": -31.476736 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.753087, "decimalLat": -31.418633 }, "geometry": { "type": "Point", "coordinates": [ 152.753, -31.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633112, "decimalLat": -34.417622 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619503, "decimalLat": -33.430557 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -33.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604372, "decimalLat": -34.438924 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907767, "decimalLat": -31.451539 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.492841, "decimalLat": -28.680197 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -28.68 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06316, "decimalLat": -33.776461 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.614329, "decimalLat": -28.656321 }, "geometry": { "type": "Point", "coordinates": [ 153.614, -28.656 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555888, "decimalLat": -28.399064 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100743, "decimalLat": -29.490105 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29324, "decimalLat": -28.864581 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.540898, "decimalLat": -34.43568 }, "geometry": { "type": "Point", "coordinates": [ 150.541, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785356, "decimalLat": -33.717928 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629807, "decimalLat": -34.394424 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786181, "decimalLat": -33.705993 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104793, "decimalLat": -29.476927 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89695, "decimalLat": -30.1777 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -30.178 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785059, "decimalLat": -33.717429 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607593, "decimalLat": -34.432812 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.31627, "decimalLat": -36.29773 }, "geometry": { "type": "Point", "coordinates": [ 149.316, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10413, "decimalLat": -29.485249 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823142, "decimalLat": -31.452655 }, "geometry": { "type": "Point", "coordinates": [ 152.823, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608975, "decimalLat": -34.434335 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8853, "decimalLat": -30.51694 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -30.517 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60759, "decimalLat": -34.433308 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626192, "decimalLat": -34.395733 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563451, "decimalLat": -28.390181 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.952853, "decimalLat": -30.426644 }, "geometry": { "type": "Point", "coordinates": [ 152.953, -30.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913501, "decimalLat": -31.460767 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.555599, "decimalLat": -33.49061 }, "geometry": { "type": "Point", "coordinates": [ 149.556, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627337, "decimalLat": -34.420278 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785024, "decimalLat": -33.707671 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312569, "decimalLat": -28.980549 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.981 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.594613, "decimalLat": -30.52455 }, "geometry": { "type": "Point", "coordinates": [ 152.595, -30.525 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.069643, "decimalLat": -34.045331 }, "geometry": { "type": "Point", "coordinates": [ 151.07, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614011, "decimalLat": -34.45278 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786538, "decimalLat": -31.629209 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104101, "decimalLat": -29.478566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.354531, "decimalLat": -28.974056 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.974 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906945, "decimalLat": -31.471631 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517991, "decimalLat": -34.437624 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614791, "decimalLat": -34.431077 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.538997, "decimalLat": -28.25245 }, "geometry": { "type": "Point", "coordinates": [ 153.539, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901907, "decimalLat": -31.446801 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.477315, "decimalLat": -33.069532 }, "geometry": { "type": "Point", "coordinates": [ 151.477, -33.07 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7863, "decimalLat": -33.703904 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520627, "decimalLat": -34.436407 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928537, "decimalLat": -29.725885 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -29.726 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.00465, "decimalLat": -31.12993 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -31.13 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.234429, "decimalLat": -28.689307 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077954, "decimalLat": -32.733018 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61041, "decimalLat": -34.420245 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316984, "decimalLat": -28.937089 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.937 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632689, "decimalLat": -34.417965 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.592259, "decimalLat": -33.45874 }, "geometry": { "type": "Point", "coordinates": [ 150.592, -33.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513126, "decimalLat": -34.44609 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10416, "decimalLat": -29.483278 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899754, "decimalLat": -31.473918 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65718, "decimalLat": -34.456086 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635289, "decimalLat": -34.420278 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923537, "decimalLat": -31.478065 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517239, "decimalLat": -34.45161 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095995, "decimalLat": -29.484871 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884233, "decimalLat": -34.018221 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.018 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.742658, "decimalLat": -30.095975 }, "geometry": { "type": "Point", "coordinates": [ 152.743, -30.096 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521632, "decimalLat": -34.465384 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519669, "decimalLat": -34.447458 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896425, "decimalLat": -29.629872 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -29.63 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101268, "decimalLat": -29.490021 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636412, "decimalLat": -34.485473 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434373, "decimalLat": -28.980672 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.981 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786214, "decimalLat": -33.706054 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615065, "decimalLat": -34.431389 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103484, "decimalLat": -29.485692 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627002, "decimalLat": -34.420965 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32564, "decimalLat": -28.671148 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61389, "decimalLat": -34.437127 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293285, "decimalLat": -28.864609 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632007, "decimalLat": -34.418231 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880217, "decimalLat": -31.429171 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637499, "decimalLat": -34.421394 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.03255, "decimalLat": -30.380747 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -30.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.589768, "decimalLat": -28.665842 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.666 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634779, "decimalLat": -34.423739 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611941, "decimalLat": -34.431833 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103441, "decimalLat": -29.48565 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.713137, "decimalLat": -31.788246 }, "geometry": { "type": "Point", "coordinates": [ 149.713, -31.788 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637524, "decimalLat": -34.488488 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605595, "decimalLat": -34.422775 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.2405, "decimalLat": -30.043804 }, "geometry": { "type": "Point", "coordinates": [ 152.241, -30.044 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063436, "decimalLat": -32.706499 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379715, "decimalLat": -31.918337 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615535, "decimalLat": -34.432074 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515752, "decimalLat": -34.443042 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.042293, "decimalLat": -32.750796 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -32.751 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80795, "decimalLat": -34.17551 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.176 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293033, "decimalLat": -28.864597 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003869, "decimalLat": -36.562813 }, "geometry": { "type": "Point", "coordinates": [ 150.004, -36.563 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104031, "decimalLat": -29.48954 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.557441, "decimalLat": -34.753572 }, "geometry": { "type": "Point", "coordinates": [ 146.557, -34.754 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897001, "decimalLat": -31.415095 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.469035, "decimalLat": -28.229955 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.23 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524432, "decimalLat": -34.451647 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897346, "decimalLat": -31.474873 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.901605, "decimalLat": -34.001296 }, "geometry": { "type": "Point", "coordinates": [ 150.902, -34.001 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517579, "decimalLat": -34.453023 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603567, "decimalLat": -34.426729 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631962, "decimalLat": -34.394772 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905816, "decimalLat": -31.437758 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109272, "decimalLat": -29.490829 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108135, "decimalLat": -29.491086 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902769, "decimalLat": -31.441873 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.074, "decimalLat": -32.7391 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924861, "decimalLat": -31.453972 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606817, "decimalLat": -34.438666 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064276, "decimalLat": -32.706784 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079281, "decimalLat": -32.732048 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.845932, "decimalLat": -34.098083 }, "geometry": { "type": "Point", "coordinates": [ 150.846, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61008, "decimalLat": -34.419986 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.820061, "decimalLat": -31.300188 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.3 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878789, "decimalLat": -31.159095 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.159 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.002505, "decimalLat": -36.541329 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.541 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630429, "decimalLat": -34.420951 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875078, "decimalLat": -31.493428 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523848, "decimalLat": -34.464058 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.192914, "decimalLat": -28.642332 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -28.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616316, "decimalLat": -34.435606 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616246, "decimalLat": -34.435767 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639241, "decimalLat": -34.392704 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.607093, "decimalLat": -34.760236 }, "geometry": { "type": "Point", "coordinates": [ 146.607, -34.76 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.880784, "decimalLat": -36.581514 }, "geometry": { "type": "Point", "coordinates": [ 149.881, -36.582 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.709563, "decimalLat": -31.596577 }, "geometry": { "type": "Point", "coordinates": [ 152.71, -31.597 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.380203, "decimalLat": -31.914783 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62703, "decimalLat": -34.386472 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60356, "decimalLat": -34.424294 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302076, "decimalLat": -28.819328 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929863, "decimalLat": -29.147294 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.147 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626246, "decimalLat": -34.395743 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920355, "decimalLat": -31.453468 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920697, "decimalLat": -31.441037 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627379, "decimalLat": -34.420314 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641048, "decimalLat": -34.396147 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615647, "decimalLat": -34.431202 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096902, "decimalLat": -29.486313 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104069, "decimalLat": -29.485296 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.611298, "decimalLat": -28.662198 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523803, "decimalLat": -34.463715 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611471, "decimalLat": -34.419671 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.994159, "decimalLat": -30.380971 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -30.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303174, "decimalLat": -28.827996 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894915, "decimalLat": -31.429025 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.366394, "decimalLat": -29.084312 }, "geometry": { "type": "Point", "coordinates": [ 153.366, -29.084 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900733, "decimalLat": -31.466639 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516469, "decimalLat": -34.450052 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520719, "decimalLat": -34.465699 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103682, "decimalLat": -29.485622 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627412, "decimalLat": -34.420315 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.485618 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104222, "decimalLat": -29.47976 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609316, "decimalLat": -34.420467 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522769, "decimalLat": -34.464848 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519276, "decimalLat": -34.437569 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465488, "decimalLat": -28.593693 }, "geometry": { "type": "Point", "coordinates": [ 153.465, -28.594 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534154, "decimalLat": -34.480007 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.196403, "decimalLat": -29.399619 }, "geometry": { "type": "Point", "coordinates": [ 153.196, -29.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.089801, "decimalLat": -32.729525 }, "geometry": { "type": "Point", "coordinates": [ 152.09, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615418, "decimalLat": -34.428908 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621994, "decimalLat": -34.39805 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615003, "decimalLat": -34.43128 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633465, "decimalLat": -34.392376 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.154177, "decimalLat": -32.731525 }, "geometry": { "type": "Point", "coordinates": [ 152.154, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616259, "decimalLat": -34.428825 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189185, "decimalLat": -31.571533 }, "geometry": { "type": "Point", "coordinates": [ 152.189, -31.572 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782771, "decimalLat": -33.719339 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.104417, "decimalLat": -33.772677 }, "geometry": { "type": "Point", "coordinates": [ 150.104, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.397127, "decimalLat": -28.617099 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.857811, "decimalLat": -31.540913 }, "geometry": { "type": "Point", "coordinates": [ 152.858, -31.541 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63084, "decimalLat": -34.420661 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615493, "decimalLat": -34.435491 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.151606, "decimalLat": -31.736787 }, "geometry": { "type": "Point", "coordinates": [ 152.152, -31.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30242, "decimalLat": -28.820049 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914426, "decimalLat": -31.46659 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516096, "decimalLat": -34.450171 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643651, "decimalLat": -34.390959 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311177, "decimalLat": -29.054 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -29.054 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630889, "decimalLat": -34.388828 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516053, "decimalLat": -34.449431 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.171434, "decimalLat": -32.74099 }, "geometry": { "type": "Point", "coordinates": [ 152.171, -32.741 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104096, "decimalLat": -29.481896 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.810983, "decimalLat": -29.375997 }, "geometry": { "type": "Point", "coordinates": [ 149.811, -29.376 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616246, "decimalLat": -34.434234 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.780908, "decimalLat": -30.225933 }, "geometry": { "type": "Point", "coordinates": [ 152.781, -30.226 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.369052, "decimalLat": -28.953149 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879171, "decimalLat": -29.661873 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.662 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383414, "decimalLat": -28.90659 }, "geometry": { "type": "Point", "coordinates": [ 152.383, -28.907 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534514, "decimalLat": -34.462228 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318912, "decimalLat": -28.820992 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.329225, "decimalLat": -28.9337 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -28.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399404, "decimalLat": -28.260274 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.941831, "decimalLat": -30.493987 }, "geometry": { "type": "Point", "coordinates": [ 152.942, -30.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518315, "decimalLat": -34.443211 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105283, "decimalLat": -32.732815 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623839, "decimalLat": -34.388962 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.57812, "decimalLat": -32.599922 }, "geometry": { "type": "Point", "coordinates": [ 149.578, -32.6 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893666, "decimalLat": -31.445699 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.965237, "decimalLat": -36.459771 }, "geometry": { "type": "Point", "coordinates": [ 149.965, -36.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614438, "decimalLat": -34.428943 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630754, "decimalLat": -34.420641 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890228, "decimalLat": -31.435483 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610301, "decimalLat": -34.419116 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.95152, "decimalLat": -36.604072 }, "geometry": { "type": "Point", "coordinates": [ 149.952, -36.604 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.38548, "decimalLat": -28.784683 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -28.785 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516185, "decimalLat": -34.454518 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925625, "decimalLat": -31.471947 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454723, "decimalLat": -28.650316 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599735, "decimalLat": -34.421866 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46202, "decimalLat": -28.650301 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.480035 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602924, "decimalLat": -34.419909 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635296, "decimalLat": -34.419647 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528094, "decimalLat": -34.457013 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785444, "decimalLat": -33.707643 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604006, "decimalLat": -34.42735 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919557, "decimalLat": -36.628449 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.628 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077322, "decimalLat": -31.400794 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -31.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906016, "decimalLat": -31.471952 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343646, "decimalLat": -28.866891 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.866027, "decimalLat": -34.060984 }, "geometry": { "type": "Point", "coordinates": [ 150.866, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.057532, "decimalLat": -33.767105 }, "geometry": { "type": "Point", "coordinates": [ 150.058, -33.767 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919078, "decimalLat": -31.453819 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605179, "decimalLat": -34.436966 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527727, "decimalLat": -34.466508 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656905, "decimalLat": -34.454611 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645248, "decimalLat": -34.394145 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867975, "decimalLat": -29.667396 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.832551, "decimalLat": -34.073018 }, "geometry": { "type": "Point", "coordinates": [ 150.833, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104026, "decimalLat": -29.484282 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325745, "decimalLat": -28.83253 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.833 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.341171, "decimalLat": -30.620867 }, "geometry": { "type": "Point", "coordinates": [ 151.341, -30.621 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063486, "decimalLat": -32.705905 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.524799, "decimalLat": -32.048272 }, "geometry": { "type": "Point", "coordinates": [ 152.525, -32.048 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.727493, "decimalLat": -34.189621 }, "geometry": { "type": "Point", "coordinates": [ 150.727, -34.19 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.406916, "decimalLat": -31.916192 }, "geometry": { "type": "Point", "coordinates": [ 152.407, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.889048, "decimalLat": -34.017517 }, "geometry": { "type": "Point", "coordinates": [ 150.889, -34.018 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319007, "decimalLat": -28.915558 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614499, "decimalLat": -34.429467 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.54435, "decimalLat": -37.303755 }, "geometry": { "type": "Point", "coordinates": [ 149.544, -37.304 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520587, "decimalLat": -34.436289 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335481, "decimalLat": -28.869015 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003444, "decimalLat": -36.572886 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603297, "decimalLat": -34.436947 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639584, "decimalLat": -34.397146 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.764999, "decimalLat": -33.402278 }, "geometry": { "type": "Point", "coordinates": [ 150.765, -33.402 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605437, "decimalLat": -34.437458 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98111, "decimalLat": -30.437334 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -30.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.476653, "decimalLat": -28.702104 }, "geometry": { "type": "Point", "coordinates": [ 153.477, -28.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985861, "decimalLat": -34.095942 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525483, "decimalLat": -34.459899 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7419, "decimalLat": -32.9245 }, "geometry": { "type": "Point", "coordinates": [ 150.742, -32.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607211, "decimalLat": -34.454586 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.521912, "decimalLat": -30.515248 }, "geometry": { "type": "Point", "coordinates": [ 151.522, -30.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.955799, "decimalLat": -30.662604 }, "geometry": { "type": "Point", "coordinates": [ 152.956, -30.663 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.506461, "decimalLat": -28.61641 }, "geometry": { "type": "Point", "coordinates": [ 153.506, -28.616 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628781, "decimalLat": -34.389175 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51824, "decimalLat": -34.453478 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640515, "decimalLat": -34.394604 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.110282, "decimalLat": -29.762752 }, "geometry": { "type": "Point", "coordinates": [ 151.11, -29.763 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394057, "decimalLat": -28.959163 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555278, "decimalLat": -28.413889 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.175471, "decimalLat": -32.412013 }, "geometry": { "type": "Point", "coordinates": [ 152.175, -32.412 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.46813, "decimalLat": -33.675605 }, "geometry": { "type": "Point", "coordinates": [ 149.468, -33.676 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039966, "decimalLat": -32.730546 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.939679, "decimalLat": -30.394559 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -30.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615743, "decimalLat": -34.438552 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.010238, "decimalLat": -30.363375 }, "geometry": { "type": "Point", "coordinates": [ 153.01, -30.363 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.056415, "decimalLat": -32.945732 }, "geometry": { "type": "Point", "coordinates": [ 150.056, -32.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.157229, "decimalLat": -31.999045 }, "geometry": { "type": "Point", "coordinates": [ 152.157, -31.999 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898219, "decimalLat": -31.453149 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808552, "decimalLat": -34.098466 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633547, "decimalLat": -34.418396 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513248, "decimalLat": -34.446029 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895774, "decimalLat": -31.427705 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.086088, "decimalLat": -32.727685 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631503, "decimalLat": -34.387893 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.467513, "decimalLat": -33.676702 }, "geometry": { "type": "Point", "coordinates": [ 149.468, -33.677 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517837, "decimalLat": -34.445401 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613951, "decimalLat": -34.433053 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.824212, "decimalLat": -34.075632 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.076 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630949, "decimalLat": -34.388243 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531277, "decimalLat": -34.457925 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602707, "decimalLat": -34.418751 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894261, "decimalLat": -29.745376 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -29.745 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792871, "decimalLat": -34.143687 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278058, "decimalLat": -28.679028 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104235, "decimalLat": -29.479944 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103731, "decimalLat": -29.485646 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.901197, "decimalLat": -33.990352 }, "geometry": { "type": "Point", "coordinates": [ 150.901, -33.99 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523257, "decimalLat": -34.466012 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616267, "decimalLat": -34.438093 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82352, "decimalLat": -31.235485 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -31.235 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607896, "decimalLat": -34.422946 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616054, "decimalLat": -34.435628 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51648, "decimalLat": -34.450053 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516841, "decimalLat": -34.454054 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.952917, "decimalLat": -36.681355 }, "geometry": { "type": "Point", "coordinates": [ 149.953, -36.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604207, "decimalLat": -34.438984 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520432, "decimalLat": -34.465837 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.010606, "decimalLat": -29.729832 }, "geometry": { "type": "Point", "coordinates": [ 151.011, -29.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642379, "decimalLat": -34.395623 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615448, "decimalLat": -34.435535 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.251164, "decimalLat": -28.764473 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -28.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638856, "decimalLat": -34.491452 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.595319, "decimalLat": -34.772745 }, "geometry": { "type": "Point", "coordinates": [ 146.595, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616517, "decimalLat": -34.438125 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101236, "decimalLat": -29.489904 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633069, "decimalLat": -34.41763 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103838, "decimalLat": -29.485515 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.816513, "decimalLat": -33.686813 }, "geometry": { "type": "Point", "coordinates": [ 150.817, -33.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627424, "decimalLat": -34.420261 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609511, "decimalLat": -34.418948 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512846, "decimalLat": -34.446742 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637928, "decimalLat": -34.488856 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.34022, "decimalLat": -31.98075 }, "geometry": { "type": "Point", "coordinates": [ 152.34, -31.981 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659729, "decimalLat": -33.527077 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644426, "decimalLat": -34.39632 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914426, "decimalLat": -31.486275 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92173, "decimalLat": -31.480991 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640181, "decimalLat": -34.493119 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063573, "decimalLat": -32.706411 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.083081, "decimalLat": -29.730169 }, "geometry": { "type": "Point", "coordinates": [ 151.083, -29.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51627, "decimalLat": -34.448317 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513063, "decimalLat": -34.447116 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.969818, "decimalLat": -29.730798 }, "geometry": { "type": "Point", "coordinates": [ 152.97, -29.731 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909438, "decimalLat": -31.447377 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626766, "decimalLat": -34.385421 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925841, "decimalLat": -31.452768 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.185309, "decimalLat": -29.164403 }, "geometry": { "type": "Point", "coordinates": [ 150.185, -29.164 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110506, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618854, "decimalLat": -34.436277 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614244, "decimalLat": -34.429651 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917332, "decimalLat": -31.457772 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635562, "decimalLat": -34.485105 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639098, "decimalLat": -34.491358 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273129, "decimalLat": -28.93162 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.932 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30216, "decimalLat": -28.819412 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.497766, "decimalLat": -28.769005 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.769 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108178, "decimalLat": -29.490231 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632602, "decimalLat": -34.392891 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8983, "decimalLat": -31.443404 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602885, "decimalLat": -34.435352 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317062, "decimalLat": -28.826946 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637029, "decimalLat": -34.48828 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.512471, "decimalLat": -30.655961 }, "geometry": { "type": "Point", "coordinates": [ 151.512, -30.656 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.755607, "decimalLat": -31.732573 }, "geometry": { "type": "Point", "coordinates": [ 152.756, -31.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520889, "decimalLat": -34.454073 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.746918, "decimalLat": -31.539121 }, "geometry": { "type": "Point", "coordinates": [ 152.747, -31.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627012, "decimalLat": -34.420983 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46332, "decimalLat": -28.6759 }, "geometry": { "type": "Point", "coordinates": [ 153.463, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600292, "decimalLat": -34.42863 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517216, "decimalLat": -34.452024 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516743, "decimalLat": -34.4364 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595561, "decimalLat": -34.514666 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522413, "decimalLat": -34.465823 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809, "decimalLat": -34.20866 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880189, "decimalLat": -31.423627 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.359208, "decimalLat": -28.645253 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -28.645 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.83898, "decimalLat": -34.05342 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914099, "decimalLat": -31.460115 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905121, "decimalLat": -31.448906 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311634, "decimalLat": -28.820975 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.817107, "decimalLat": -31.431247 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644881, "decimalLat": -34.401414 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639743, "decimalLat": -34.393444 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603273, "decimalLat": -34.437 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516339, "decimalLat": -34.448211 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.058029, "decimalLat": -33.772769 }, "geometry": { "type": "Point", "coordinates": [ 150.058, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.12983, "decimalLat": -34.43494 }, "geometry": { "type": "Point", "coordinates": [ 150.13, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786625, "decimalLat": -31.629861 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516314, "decimalLat": -34.449066 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.438638, "decimalLat": -28.203027 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.203 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607575, "decimalLat": -34.421984 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.577506, "decimalLat": -33.419281 }, "geometry": { "type": "Point", "coordinates": [ 149.578, -33.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104106, "decimalLat": -29.483736 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522677, "decimalLat": -34.464269 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.411697, "decimalLat": -28.821838 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967708, "decimalLat": -36.441911 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.435927, "decimalLat": -28.611007 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.611 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619785, "decimalLat": -34.439153 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615751, "decimalLat": -34.433269 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.995701, "decimalLat": -30.415077 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -30.415 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900904, "decimalLat": -30.523239 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -30.523 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897238, "decimalLat": -31.451422 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515499, "decimalLat": -34.450853 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.442425, "decimalLat": -28.680143 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61616, "decimalLat": -34.438037 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519834, "decimalLat": -34.452573 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918769, "decimalLat": -31.468662 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908326, "decimalLat": -31.435399 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636938, "decimalLat": -34.395725 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520284, "decimalLat": -34.465681 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.1103, "decimalLat": -32.7787 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -32.779 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523791, "decimalLat": -34.470043 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.824772, "decimalLat": -34.150689 }, "geometry": { "type": "Point", "coordinates": [ 150.825, -34.151 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630597, "decimalLat": -34.388777 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631528, "decimalLat": -34.387795 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.106248, "decimalLat": -32.729413 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073546, "decimalLat": -32.715121 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -32.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521198, "decimalLat": -34.465681 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.611163, "decimalLat": -28.662456 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605208, "decimalLat": -34.427185 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619274, "decimalLat": -34.439513 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.178297, "decimalLat": -28.636013 }, "geometry": { "type": "Point", "coordinates": [ 152.178, -28.636 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.541384, "decimalLat": -34.546225 }, "geometry": { "type": "Point", "coordinates": [ 150.541, -34.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523798, "decimalLat": -34.463516 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606755, "decimalLat": -34.429388 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63348, "decimalLat": -34.489825 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110184, "decimalLat": -29.488317 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662721, "decimalLat": -34.454064 }, "geometry": { "type": "Point", "coordinates": [ 150.663, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.056847, "decimalLat": -32.737295 }, "geometry": { "type": "Point", "coordinates": [ 152.057, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607784, "decimalLat": -34.430679 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637359, "decimalLat": -34.488151 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.858239, "decimalLat": -31.461955 }, "geometry": { "type": "Point", "coordinates": [ 152.858, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065281, "decimalLat": -32.710517 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.634162, "decimalLat": -32.6193 }, "geometry": { "type": "Point", "coordinates": [ 151.634, -32.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627858, "decimalLat": -34.389878 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527837, "decimalLat": -34.466456 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.351814, "decimalLat": -28.8907 }, "geometry": { "type": "Point", "coordinates": [ 153.352, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.282276, "decimalLat": -28.869759 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.87 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607807, "decimalLat": -34.430652 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637456, "decimalLat": -34.423719 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103886, "decimalLat": -29.489568 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788922, "decimalLat": -30.117272 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.117 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.238912, "decimalLat": -33.127838 }, "geometry": { "type": "Point", "coordinates": [ 151.239, -33.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604704, "decimalLat": -34.427292 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.524588, "decimalLat": -32.337819 }, "geometry": { "type": "Point", "coordinates": [ 152.525, -32.338 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283781, "decimalLat": -28.98326 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640031, "decimalLat": -34.398661 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.976896, "decimalLat": -34.086596 }, "geometry": { "type": "Point", "coordinates": [ 150.977, -34.087 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.54528, "decimalLat": -31.582975 }, "geometry": { "type": "Point", "coordinates": [ 151.545, -31.583 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792734, "decimalLat": -31.641753 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910682, "decimalLat": -31.434972 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519486, "decimalLat": -34.456595 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520477, "decimalLat": -34.465784 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601024, "decimalLat": -34.427779 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920655, "decimalLat": -29.701378 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -29.701 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.248544, "decimalLat": -30.059088 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -30.059 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607575, "decimalLat": -34.421984 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.439684, "decimalLat": -31.817654 }, "geometry": { "type": "Point", "coordinates": [ 152.44, -31.818 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100416, "decimalLat": -29.491128 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.778159, "decimalLat": -31.360232 }, "geometry": { "type": "Point", "coordinates": [ 152.778, -31.36 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101199, "decimalLat": -29.489998 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.225699, "decimalLat": -29.982234 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -29.982 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.033328, "decimalLat": -30.386222 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -30.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61398, "decimalLat": -34.433189 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.651029, "decimalLat": -34.400928 }, "geometry": { "type": "Point", "coordinates": [ 150.651, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616225, "decimalLat": -34.451444 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82001, "decimalLat": -34.098495 }, "geometry": { "type": "Point", "coordinates": [ 150.82, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896425, "decimalLat": -29.629872 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -29.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292802, "decimalLat": -28.864663 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.056954, "decimalLat": -32.737563 }, "geometry": { "type": "Point", "coordinates": [ 152.057, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.620818, "decimalLat": -34.350933 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.351 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635165, "decimalLat": -34.487991 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922483, "decimalLat": -31.457655 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06372, "decimalLat": -32.705843 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603681, "decimalLat": -34.437603 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601544, "decimalLat": -34.4286 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401902, "decimalLat": -28.25933 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377477, "decimalLat": -28.85174 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.852 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984157, "decimalLat": -33.970394 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -33.97 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637375, "decimalLat": -34.422338 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.122991, "decimalLat": -31.071707 }, "geometry": { "type": "Point", "coordinates": [ 150.123, -31.072 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63072, "decimalLat": -34.420659 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646162, "decimalLat": -34.397634 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51381, "decimalLat": -34.447258 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528978, "decimalLat": -34.470202 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631527, "decimalLat": -34.387813 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.065904, "decimalLat": -33.774201 }, "geometry": { "type": "Point", "coordinates": [ 150.066, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608992, "decimalLat": -34.420371 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627181, "decimalLat": -34.386124 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520355, "decimalLat": -34.454071 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630872, "decimalLat": -34.42068 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.798126, "decimalLat": -34.11278 }, "geometry": { "type": "Point", "coordinates": [ 150.798, -34.113 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.993961, "decimalLat": -30.778676 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -30.779 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.241488, "decimalLat": -28.918802 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -28.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637387, "decimalLat": -34.423817 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110511, "decimalLat": -29.490189 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.015707, "decimalLat": -32.296325 }, "geometry": { "type": "Point", "coordinates": [ 152.016, -32.296 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319002, "decimalLat": -28.821014 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513761, "decimalLat": -34.446337 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521515, "decimalLat": -34.465661 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824553, "decimalLat": -29.813574 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.814 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.166754, "decimalLat": -32.745404 }, "geometry": { "type": "Point", "coordinates": [ 152.167, -32.745 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929776, "decimalLat": -31.460649 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.611091, "decimalLat": -28.672041 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631025, "decimalLat": -34.388245 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513821, "decimalLat": -34.44724 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521608, "decimalLat": -34.466934 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791822, "decimalLat": -31.641127 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.641 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897784, "decimalLat": -31.442842 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637007, "decimalLat": -34.485602 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633665, "decimalLat": -34.418462 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434223, "decimalLat": -28.489191 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640074, "decimalLat": -34.398688 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632614, "decimalLat": -34.418306 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.307585, "decimalLat": -30.588898 }, "geometry": { "type": "Point", "coordinates": [ 151.308, -30.589 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628865, "decimalLat": -34.389258 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595647, "decimalLat": -34.414159 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609148, "decimalLat": -34.420635 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98111, "decimalLat": -30.437334 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -30.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.124133, "decimalLat": -32.719895 }, "geometry": { "type": "Point", "coordinates": [ 152.124, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627369, "decimalLat": -34.420287 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924412, "decimalLat": -31.460164 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61015, "decimalLat": -34.454977 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614422, "decimalLat": -34.429519 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.142663, "decimalLat": -28.645111 }, "geometry": { "type": "Point", "coordinates": [ 153.143, -28.645 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103945, "decimalLat": -29.489601 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.866517, "decimalLat": -32.565851 }, "geometry": { "type": "Point", "coordinates": [ 149.867, -32.566 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101258, "decimalLat": -29.489914 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.48113, "decimalLat": -28.228416 }, "geometry": { "type": "Point", "coordinates": [ 153.481, -28.228 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616821, "decimalLat": -34.399418 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907905, "decimalLat": -31.468404 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602626, "decimalLat": -34.43642 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604918, "decimalLat": -34.4377 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863317, "decimalLat": -31.143567 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -31.144 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.647999, "decimalLat": -33.538902 }, "geometry": { "type": "Point", "coordinates": [ 150.648, -33.539 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324023, "decimalLat": -28.879696 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891714, "decimalLat": -31.442328 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.582601, "decimalLat": -34.5 }, "geometry": { "type": "Point", "coordinates": [ 150.583, -34.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634425, "decimalLat": -34.420054 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10387, "decimalLat": -29.489554 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109487, "decimalLat": -29.490493 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639084, "decimalLat": -34.491493 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064147, "decimalLat": -32.706714 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822192, "decimalLat": -31.42428 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517521, "decimalLat": -34.446143 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.821589, "decimalLat": -30.912069 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -30.912 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987529, "decimalLat": -34.029065 }, "geometry": { "type": "Point", "coordinates": [ 150.988, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633214, "decimalLat": -34.417488 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104165, "decimalLat": -29.48375 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.445366, "decimalLat": -31.914027 }, "geometry": { "type": "Point", "coordinates": [ 152.445, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9259, "decimalLat": -31.44678 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.411497, "decimalLat": -28.903544 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.497534, "decimalLat": -28.694006 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614949, "decimalLat": -34.431657 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637362, "decimalLat": -34.423934 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.538378, "decimalLat": -30.541214 }, "geometry": { "type": "Point", "coordinates": [ 152.538, -30.541 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638281, "decimalLat": -33.839982 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -33.84 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785817, "decimalLat": -33.715297 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103983, "decimalLat": -29.489563 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071788, "decimalLat": -30.887381 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.36257, "decimalLat": -27.844633 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -27.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.080084, "decimalLat": -30.352004 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -30.352 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909185, "decimalLat": -31.452532 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638989, "decimalLat": -34.491752 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791684, "decimalLat": -31.630803 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811638, "decimalLat": -29.514957 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -29.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639249, "decimalLat": -34.392803 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077945, "decimalLat": -32.723753 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.429844, "decimalLat": -28.711115 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535523, "decimalLat": -34.497497 }, "geometry": { "type": "Point", "coordinates": [ 150.536, -34.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010258, "decimalLat": -33.767672 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -33.768 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875718, "decimalLat": -31.466242 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093517, "decimalLat": -29.488798 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.554471, "decimalLat": -33.492121 }, "geometry": { "type": "Point", "coordinates": [ 149.554, -33.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517475, "decimalLat": -34.451371 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103892, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.8369, "decimalLat": -34.056619 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.057 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625272, "decimalLat": -34.384428 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523833, "decimalLat": -34.452401 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595561, "decimalLat": -34.514666 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795028, "decimalLat": -31.636454 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -31.636 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609235, "decimalLat": -34.420619 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604681, "decimalLat": -34.424677 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.466171, "decimalLat": -28.237404 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109921, "decimalLat": -29.490142 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.295489, "decimalLat": -28.876261 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.876 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.778535, "decimalLat": -32.589101 }, "geometry": { "type": "Point", "coordinates": [ 151.779, -32.589 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40107, "decimalLat": -28.260281 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302055, "decimalLat": -28.847839 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615829, "decimalLat": -34.433207 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785329, "decimalLat": -33.705146 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.082135, "decimalLat": -33.747262 }, "geometry": { "type": "Point", "coordinates": [ 150.082, -33.747 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517161, "decimalLat": -34.448371 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616809, "decimalLat": -34.430504 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641127, "decimalLat": -34.393714 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.847888, "decimalLat": -32.124511 }, "geometry": { "type": "Point", "coordinates": [ 151.848, -32.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616857, "decimalLat": -34.434201 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.418498, "decimalLat": -28.592481 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -28.592 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626005, "decimalLat": -34.388887 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518237, "decimalLat": -34.446572 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899231, "decimalLat": -31.474269 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402228, "decimalLat": -28.960679 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.855893, "decimalLat": -29.316805 }, "geometry": { "type": "Point", "coordinates": [ 152.856, -29.317 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907698, "decimalLat": -31.470808 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.66621, "decimalLat": -30.50157 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.489654, "decimalLat": -28.66697 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902868, "decimalLat": -31.44133 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632015, "decimalLat": -34.393655 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519932, "decimalLat": -34.438935 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.978499, "decimalLat": -34.086199 }, "geometry": { "type": "Point", "coordinates": [ 150.978, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88521, "decimalLat": -31.440545 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.746881, "decimalLat": -33.499256 }, "geometry": { "type": "Point", "coordinates": [ 150.747, -33.499 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785499, "decimalLat": -33.703494 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.703 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910694, "decimalLat": -31.441544 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.184769, "decimalLat": -31.577586 }, "geometry": { "type": "Point", "coordinates": [ 152.185, -31.578 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373714, "decimalLat": -31.914523 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516403, "decimalLat": -34.450087 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.335354, "decimalLat": -30.638859 }, "geometry": { "type": "Point", "coordinates": [ 151.335, -30.639 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.614981, "decimalLat": -28.660834 }, "geometry": { "type": "Point", "coordinates": [ 153.615, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298855, "decimalLat": -28.889328 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102658, "decimalLat": -29.497585 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.498 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523851, "decimalLat": -34.463563 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.974623, "decimalLat": -32.472237 }, "geometry": { "type": "Point", "coordinates": [ 151.975, -32.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657761, "decimalLat": -34.455547 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108156, "decimalLat": -29.490236 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077179, "decimalLat": -32.72245 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902369, "decimalLat": -31.441884 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517262, "decimalLat": -34.451592 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.23033, "decimalLat": -28.889525 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316972, "decimalLat": -28.921541 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627516, "decimalLat": -34.421624 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.441161, "decimalLat": -30.520641 }, "geometry": { "type": "Point", "coordinates": [ 152.441, -30.521 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9083, "decimalLat": -31.438518 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.140083, "decimalLat": -30.211837 }, "geometry": { "type": "Point", "coordinates": [ 153.14, -30.212 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616184, "decimalLat": -34.431068 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.328184, "decimalLat": -28.831105 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611755, "decimalLat": -34.419631 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898657, "decimalLat": -31.4423 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949786, "decimalLat": -36.632867 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.661322, "decimalLat": -32.659096 }, "geometry": { "type": "Point", "coordinates": [ 151.661, -32.659 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785873, "decimalLat": -31.490778 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.799936, "decimalLat": -34.108194 }, "geometry": { "type": "Point", "coordinates": [ 150.8, -34.108 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925776, "decimalLat": -31.447463 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561275, "decimalLat": -28.642464 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637203, "decimalLat": -34.423804 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10975, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517395, "decimalLat": -34.446348 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.206597, "decimalLat": -28.357926 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -28.358 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863253, "decimalLat": -31.144587 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -31.145 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.391256, "decimalLat": -29.441323 }, "geometry": { "type": "Point", "coordinates": [ 152.391, -29.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896425, "decimalLat": -29.629872 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -29.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51907, "decimalLat": -34.443822 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315098, "decimalLat": -28.940993 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.194095, "decimalLat": -32.224416 }, "geometry": { "type": "Point", "coordinates": [ 152.194, -32.224 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86618, "decimalLat": -31.30501 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -31.305 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9249, "decimalLat": -31.214814 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.215 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.978516, "decimalLat": -32.564229 }, "geometry": { "type": "Point", "coordinates": [ 151.979, -32.564 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.425399, "decimalLat": -28.807966 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.808 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091017, "decimalLat": -29.487509 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.867683, "decimalLat": -32.744554 }, "geometry": { "type": "Point", "coordinates": [ 151.868, -32.745 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80817, "decimalLat": -34.11002 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.11 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617114, "decimalLat": -34.439309 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.005012, "decimalLat": -28.627092 }, "geometry": { "type": "Point", "coordinates": [ 153.005, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924675, "decimalLat": -31.443012 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639829, "decimalLat": -34.398125 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521653, "decimalLat": -34.465393 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627827, "decimalLat": -34.389833 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523696, "decimalLat": -34.438614 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.380162, "decimalLat": -31.913207 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.540148, "decimalLat": -32.059961 }, "geometry": { "type": "Point", "coordinates": [ 152.54, -32.06 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790492, "decimalLat": -34.142899 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.634, "decimalLat": -30.509 }, "geometry": { "type": "Point", "coordinates": [ 151.634, -30.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.762407, "decimalLat": -34.185552 }, "geometry": { "type": "Point", "coordinates": [ 150.762, -34.186 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.805204, "decimalLat": -31.127013 }, "geometry": { "type": "Point", "coordinates": [ 152.805, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.353274, "decimalLat": -36.263594 }, "geometry": { "type": "Point", "coordinates": [ 149.353, -36.264 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924743, "decimalLat": -31.474015 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513836, "decimalLat": -34.446384 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82203, "decimalLat": -31.13153 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.132 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.775987, "decimalLat": -31.506659 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -31.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82303, "decimalLat": -34.150123 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.535084, "decimalLat": -34.756999 }, "geometry": { "type": "Point", "coordinates": [ 146.535, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394923, "decimalLat": -28.960734 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.81114, "decimalLat": -29.375724 }, "geometry": { "type": "Point", "coordinates": [ 149.811, -29.376 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103859, "decimalLat": -29.485566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.102656, "decimalLat": -33.773023 }, "geometry": { "type": "Point", "coordinates": [ 150.103, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.828826, "decimalLat": -34.151791 }, "geometry": { "type": "Point", "coordinates": [ 150.829, -34.152 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.804126, "decimalLat": -31.125513 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616212, "decimalLat": -34.431213 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534622, "decimalLat": -34.462266 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.47548, "decimalLat": -28.701807 }, "geometry": { "type": "Point", "coordinates": [ 153.475, -28.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640089, "decimalLat": -34.396985 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.741968, "decimalLat": -31.200077 }, "geometry": { "type": "Point", "coordinates": [ 152.742, -31.2 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.190362, "decimalLat": -32.237057 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.237 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610336, "decimalLat": -34.432766 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64142, "decimalLat": -34.395685 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.896516, "decimalLat": -33.999498 }, "geometry": { "type": "Point", "coordinates": [ 150.897, -33.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110211, "decimalLat": -29.488349 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.675853, "decimalLat": -31.862754 }, "geometry": { "type": "Point", "coordinates": [ 152.676, -31.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530575, "decimalLat": -34.469955 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638337, "decimalLat": -34.485925 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.606185, "decimalLat": -30.341428 }, "geometry": { "type": "Point", "coordinates": [ 152.606, -30.341 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787629, "decimalLat": -31.636545 }, "geometry": { "type": "Point", "coordinates": [ 152.788, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609921, "decimalLat": -34.432848 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.539028, "decimalLat": -34.441196 }, "geometry": { "type": "Point", "coordinates": [ 150.539, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809213, "decimalLat": -34.100058 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339943, "decimalLat": -28.837646 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78476, "decimalLat": -31.630324 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.07184, "decimalLat": -31.18279 }, "geometry": { "type": "Point", "coordinates": [ 150.072, -31.183 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785264, "decimalLat": -33.711774 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.014083, "decimalLat": -28.435381 }, "geometry": { "type": "Point", "coordinates": [ 153.014, -28.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.765084, "decimalLat": -34.130358 }, "geometry": { "type": "Point", "coordinates": [ 150.765, -34.13 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785389, "decimalLat": -31.634082 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.634 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.47215, "decimalLat": -33.386167 }, "geometry": { "type": "Point", "coordinates": [ 151.472, -33.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808249, "decimalLat": -34.098098 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924512, "decimalLat": -30.504726 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -30.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783227, "decimalLat": -33.718597 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513123, "decimalLat": -34.447289 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638491, "decimalLat": -34.491265 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600173, "decimalLat": -34.427455 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299233, "decimalLat": -28.826058 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303792, "decimalLat": -28.890141 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.827999, "decimalLat": -31.652303 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.733563, "decimalLat": -34.210123 }, "geometry": { "type": "Point", "coordinates": [ 150.734, -34.21 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595767, "decimalLat": -34.428595 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.503083, "decimalLat": -32.371029 }, "geometry": { "type": "Point", "coordinates": [ 152.503, -32.371 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.049335, "decimalLat": -32.747849 }, "geometry": { "type": "Point", "coordinates": [ 152.049, -32.748 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913871, "decimalLat": -31.447822 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.328577, "decimalLat": -28.81682 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630797, "decimalLat": -34.42066 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.423146, "decimalLat": -28.72786 }, "geometry": { "type": "Point", "coordinates": [ 153.423, -28.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641705, "decimalLat": -34.396764 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615643, "decimalLat": -34.432122 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110844, "decimalLat": -29.488223 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101231, "decimalLat": -29.489918 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192089, "decimalLat": -32.216754 }, "geometry": { "type": "Point", "coordinates": [ 152.192, -32.217 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.294316, "decimalLat": -28.857212 }, "geometry": { "type": "Point", "coordinates": [ 153.294, -28.857 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.361427, "decimalLat": -31.925977 }, "geometry": { "type": "Point", "coordinates": [ 152.361, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523085, "decimalLat": -34.466288 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.00032, "decimalLat": -31.12692 }, "geometry": { "type": "Point", "coordinates": [ 150.0, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.163984, "decimalLat": -32.713744 }, "geometry": { "type": "Point", "coordinates": [ 152.164, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.190889, "decimalLat": -33.164156 }, "geometry": { "type": "Point", "coordinates": [ 149.191, -33.164 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784197, "decimalLat": -33.717009 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.979346, "decimalLat": -32.638624 }, "geometry": { "type": "Point", "coordinates": [ 149.979, -32.639 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6129, "decimalLat": -34.448593 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321764, "decimalLat": -28.823898 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908952, "decimalLat": -31.467945 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103845, "decimalLat": -29.485482 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513094, "decimalLat": -34.447171 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.295529, "decimalLat": -28.847195 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.813154, "decimalLat": -31.132276 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -31.132 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513793, "decimalLat": -34.446365 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523268, "decimalLat": -34.466364 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.450417, "decimalLat": -28.550673 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878285, "decimalLat": -31.427361 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916758, "decimalLat": -31.434283 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.325289, "decimalLat": -36.292108 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.292 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103822, "decimalLat": -29.485529 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53284, "decimalLat": -34.475473 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.33331, "decimalLat": -28.86133 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109369, "decimalLat": -29.490493 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.870984, "decimalLat": -34.034041 }, "geometry": { "type": "Point", "coordinates": [ 150.871, -34.034 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78279, "decimalLat": -33.719284 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52007, "decimalLat": -34.446429 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062857, "decimalLat": -32.709368 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.800994, "decimalLat": -32.807643 }, "geometry": { "type": "Point", "coordinates": [ 151.801, -32.808 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523922, "decimalLat": -34.463771 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783035, "decimalLat": -33.718593 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616291, "decimalLat": -34.433415 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610319, "decimalLat": -34.429556 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.086896, "decimalLat": -33.773977 }, "geometry": { "type": "Point", "coordinates": [ 150.087, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.173592, "decimalLat": -32.664896 }, "geometry": { "type": "Point", "coordinates": [ 152.174, -32.665 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554092, "decimalLat": -28.389651 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101569, "decimalLat": -29.489685 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.197726, "decimalLat": -33.086731 }, "geometry": { "type": "Point", "coordinates": [ 151.198, -33.087 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104128, "decimalLat": -29.478571 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514255, "decimalLat": -34.445824 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.235702, "decimalLat": -28.8863 }, "geometry": { "type": "Point", "coordinates": [ 153.236, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516497, "decimalLat": -34.450215 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.81944, "decimalLat": -34.10841 }, "geometry": { "type": "Point", "coordinates": [ 150.819, -34.108 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510476, "decimalLat": -28.808868 }, "geometry": { "type": "Point", "coordinates": [ 153.51, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607953, "decimalLat": -34.422081 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617132, "decimalLat": -34.434089 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.897628, "decimalLat": -32.490361 }, "geometry": { "type": "Point", "coordinates": [ 151.898, -32.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604004, "decimalLat": -34.440369 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.518808, "decimalLat": -32.066025 }, "geometry": { "type": "Point", "coordinates": [ 152.519, -32.066 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985306, "decimalLat": -34.096129 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109465, "decimalLat": -29.490516 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110157, "decimalLat": -29.490255 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899669, "decimalLat": -31.450328 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562348, "decimalLat": -28.384052 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.007852, "decimalLat": -28.623993 }, "geometry": { "type": "Point", "coordinates": [ 153.008, -28.624 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658736, "decimalLat": -33.526675 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900195, "decimalLat": -31.467019 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.055873, "decimalLat": -33.771735 }, "geometry": { "type": "Point", "coordinates": [ 150.056, -33.772 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915397, "decimalLat": -31.482553 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.483 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.740305, "decimalLat": -32.397187 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -32.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609132, "decimalLat": -34.420788 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.708331, "decimalLat": -31.53525 }, "geometry": { "type": "Point", "coordinates": [ 152.708, -31.535 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101242, "decimalLat": -29.489932 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600145, "decimalLat": -34.446712 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519899, "decimalLat": -34.452565 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.246163, "decimalLat": -33.170112 }, "geometry": { "type": "Point", "coordinates": [ 151.246, -33.17 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.87066, "decimalLat": -34.044618 }, "geometry": { "type": "Point", "coordinates": [ 150.871, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645373, "decimalLat": -33.7527 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -33.753 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602967, "decimalLat": -34.437067 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603481, "decimalLat": -34.435454 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.033673, "decimalLat": -30.41867 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -30.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.568548, "decimalLat": -31.971351 }, "geometry": { "type": "Point", "coordinates": [ 152.569, -31.971 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.650098, "decimalLat": -33.559749 }, "geometry": { "type": "Point", "coordinates": [ 150.65, -33.56 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.0637, "decimalLat": -32.706529 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.917922, "decimalLat": -36.474664 }, "geometry": { "type": "Point", "coordinates": [ 149.918, -36.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635175, "decimalLat": -34.420105 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.168497, "decimalLat": -28.641007 }, "geometry": { "type": "Point", "coordinates": [ 153.168, -28.641 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104283, "decimalLat": -29.480014 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.732519, "decimalLat": -31.472074 }, "geometry": { "type": "Point", "coordinates": [ 152.733, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278128, "decimalLat": -28.679019 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.194095, "decimalLat": -32.224416 }, "geometry": { "type": "Point", "coordinates": [ 152.194, -32.224 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07148, "decimalLat": -32.709625 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.091699, "decimalLat": -28.784935 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -28.785 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621981, "decimalLat": -34.397743 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604292, "decimalLat": -34.437904 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785873, "decimalLat": -33.703919 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513134, "decimalLat": -34.447307 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110495, "decimalLat": -29.490119 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.200143, "decimalLat": -32.231881 }, "geometry": { "type": "Point", "coordinates": [ 152.2, -32.232 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632587, "decimalLat": -34.418134 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786931, "decimalLat": -31.629232 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609486, "decimalLat": -34.43092 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373272, "decimalLat": -31.915923 }, "geometry": { "type": "Point", "coordinates": [ 152.373, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519257, "decimalLat": -34.448144 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.98208, "decimalLat": -32.282843 }, "geometry": { "type": "Point", "coordinates": [ 151.982, -32.283 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.932774, "decimalLat": -31.47032 }, "geometry": { "type": "Point", "coordinates": [ 152.933, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614064, "decimalLat": -34.43292 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.02845, "decimalLat": -32.191443 }, "geometry": { "type": "Point", "coordinates": [ 152.028, -32.191 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.81944, "decimalLat": -34.10841 }, "geometry": { "type": "Point", "coordinates": [ 150.819, -34.108 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374028, "decimalLat": -31.915694 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.955501, "decimalLat": -30.66791 }, "geometry": { "type": "Point", "coordinates": [ 152.956, -30.668 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61847, "decimalLat": -34.39918 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514058, "decimalLat": -34.455025 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785428, "decimalLat": -33.704473 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93921, "decimalLat": -30.4057 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -30.406 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.651081, "decimalLat": -29.568082 }, "geometry": { "type": "Point", "coordinates": [ 152.651, -29.568 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610301, "decimalLat": -34.419116 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513794, "decimalLat": -34.446338 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.121111, "decimalLat": -35.066402 }, "geometry": { "type": "Point", "coordinates": [ 150.121, -35.066 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556353, "decimalLat": -28.399896 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.962989, "decimalLat": -30.653909 }, "geometry": { "type": "Point", "coordinates": [ 152.963, -30.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521589, "decimalLat": -34.465356 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.972611, "decimalLat": -34.122691 }, "geometry": { "type": "Point", "coordinates": [ 150.973, -34.123 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615434, "decimalLat": -34.437924 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786446, "decimalLat": -33.706012 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602708, "decimalLat": -34.425188 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616704, "decimalLat": -34.429618 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.420852, "decimalLat": -28.982755 }, "geometry": { "type": "Point", "coordinates": [ 153.421, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793571, "decimalLat": -31.638956 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.089005, "decimalLat": -32.444733 }, "geometry": { "type": "Point", "coordinates": [ 152.089, -32.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.6754, "decimalLat": -28.337076 }, "geometry": { "type": "Point", "coordinates": [ 152.675, -28.337 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.917922, "decimalLat": -36.474664 }, "geometry": { "type": "Point", "coordinates": [ 149.918, -36.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521564, "decimalLat": -34.465473 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60329, "decimalLat": -34.439471 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071778, "decimalLat": -30.885673 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.576557 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625927, "decimalLat": -34.389733 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80901, "decimalLat": -34.099851 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628011, "decimalLat": -34.391017 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640017, "decimalLat": -34.491971 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561778, "decimalLat": -28.384598 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.120282, "decimalLat": -31.074582 }, "geometry": { "type": "Point", "coordinates": [ 150.12, -31.075 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52474, "decimalLat": -34.464807 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604182, "decimalLat": -34.434909 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61617, "decimalLat": -34.434611 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192249, "decimalLat": -32.23198 }, "geometry": { "type": "Point", "coordinates": [ 152.192, -32.232 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524154, "decimalLat": -34.462902 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.294891, "decimalLat": -28.817999 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629471, "decimalLat": -28.63754 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09482, "decimalLat": -30.34655 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -30.347 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786004, "decimalLat": -34.203743 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -34.204 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.05804, "decimalLat": -34.90502 }, "geometry": { "type": "Point", "coordinates": [ 150.058, -34.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.823105, "decimalLat": -32.405872 }, "geometry": { "type": "Point", "coordinates": [ 149.823, -32.406 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.003682, "decimalLat": -34.006923 }, "geometry": { "type": "Point", "coordinates": [ 151.004, -34.007 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645206, "decimalLat": -34.39098 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.855893, "decimalLat": -29.316805 }, "geometry": { "type": "Point", "coordinates": [ 152.856, -29.317 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.974638, "decimalLat": -34.100506 }, "geometry": { "type": "Point", "coordinates": [ 150.975, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59521, "decimalLat": -34.423337 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.656196, "decimalLat": -32.683417 }, "geometry": { "type": "Point", "coordinates": [ 151.656, -32.683 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.422603, "decimalLat": -31.904256 }, "geometry": { "type": "Point", "coordinates": [ 152.423, -31.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.99306, "decimalLat": -28.431739 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -28.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629334, "decimalLat": -34.387292 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.572474, "decimalLat": -32.890081 }, "geometry": { "type": "Point", "coordinates": [ 151.572, -32.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630814, "decimalLat": -34.386474 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635636, "decimalLat": -34.485169 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516566, "decimalLat": -34.448981 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428156, "decimalLat": -28.626815 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924453, "decimalLat": -31.444562 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322256, "decimalLat": -28.824246 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401162, "decimalLat": -28.257882 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520421, "decimalLat": -34.465837 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.934854, "decimalLat": -30.381783 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -30.382 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.009644, "decimalLat": -28.625073 }, "geometry": { "type": "Point", "coordinates": [ 153.01, -28.625 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519611, "decimalLat": -34.463053 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863442, "decimalLat": -31.428833 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784826, "decimalLat": -31.632157 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557778, "decimalLat": -28.396944 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98111, "decimalLat": -30.437334 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -30.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521907, "decimalLat": -34.466372 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520412, "decimalLat": -34.465783 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636107, "decimalLat": -34.420619 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609678, "decimalLat": -34.436396 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.110282, "decimalLat": -29.762752 }, "geometry": { "type": "Point", "coordinates": [ 151.11, -29.763 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192632, "decimalLat": -32.228945 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918886, "decimalLat": -31.47876 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076267, "decimalLat": -32.723531 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646684, "decimalLat": -34.395669 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899476, "decimalLat": -31.44402 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.850922, "decimalLat": -34.053036 }, "geometry": { "type": "Point", "coordinates": [ 150.851, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.910112, "decimalLat": -36.460589 }, "geometry": { "type": "Point", "coordinates": [ 149.91, -36.461 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924525, "decimalLat": -31.463537 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.71964, "decimalLat": -34.99077 }, "geometry": { "type": "Point", "coordinates": [ 150.72, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82332, "decimalLat": -34.091455 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.23067, "decimalLat": -31.026491 }, "geometry": { "type": "Point", "coordinates": [ 150.231, -31.026 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615835, "decimalLat": -34.435696 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.014876, "decimalLat": -28.435381 }, "geometry": { "type": "Point", "coordinates": [ 153.015, -28.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316984, "decimalLat": -28.937089 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.783819, "decimalLat": -32.611264 }, "geometry": { "type": "Point", "coordinates": [ 151.784, -32.611 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.166847, "decimalLat": -33.176969 }, "geometry": { "type": "Point", "coordinates": [ 151.167, -33.177 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.536308, "decimalLat": -32.028138 }, "geometry": { "type": "Point", "coordinates": [ 152.536, -32.028 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.714205, "decimalLat": -31.78251 }, "geometry": { "type": "Point", "coordinates": [ 152.714, -31.783 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639801, "decimalLat": -34.399098 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.650835, "decimalLat": -30.333629 }, "geometry": { "type": "Point", "coordinates": [ 151.651, -30.334 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.160763, "decimalLat": -32.712341 }, "geometry": { "type": "Point", "coordinates": [ 152.161, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784497, "decimalLat": -33.717286 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631656, "decimalLat": -34.387851 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.236903, "decimalLat": -33.167389 }, "geometry": { "type": "Point", "coordinates": [ 151.237, -33.167 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.34022, "decimalLat": -31.980755 }, "geometry": { "type": "Point", "coordinates": [ 152.34, -31.981 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293302, "decimalLat": -28.864539 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400618, "decimalLat": -28.291481 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.291 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624905, "decimalLat": -34.39972 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.059278, "decimalLat": -32.739099 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626048, "decimalLat": -34.387761 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.034303, "decimalLat": -32.118551 }, "geometry": { "type": "Point", "coordinates": [ 152.034, -32.119 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533543, "decimalLat": -34.481167 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62633, "decimalLat": -34.421259 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632814, "decimalLat": -34.418932 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924126, "decimalLat": -31.473213 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631428, "decimalLat": -34.387847 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.001394, "decimalLat": -32.777801 }, "geometry": { "type": "Point", "coordinates": [ 152.001, -32.778 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515889, "decimalLat": -34.450536 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607514, "decimalLat": -34.421848 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.881149, "decimalLat": -34.066635 }, "geometry": { "type": "Point", "coordinates": [ 150.881, -34.067 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103479, "decimalLat": -29.485613 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62421, "decimalLat": -34.388906 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.817301, "decimalLat": -31.450133 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631115, "decimalLat": -34.38739 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916681, "decimalLat": -31.444654 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394944, "decimalLat": -28.276042 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.978709, "decimalLat": -36.441024 }, "geometry": { "type": "Point", "coordinates": [ 149.979, -36.441 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.42581, "decimalLat": -32.256754 }, "geometry": { "type": "Point", "coordinates": [ 152.426, -32.257 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.043697, "decimalLat": -30.240723 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -30.241 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602955, "decimalLat": -34.437093 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.407933, "decimalLat": -31.932825 }, "geometry": { "type": "Point", "coordinates": [ 152.408, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622684, "decimalLat": -34.384017 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277931, "decimalLat": -28.937591 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.938 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104278, "decimalLat": -29.477408 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.330787, "decimalLat": -28.93301 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.933 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893951, "decimalLat": -31.446093 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104106, "decimalLat": -29.481233 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630875, "decimalLat": -34.42059 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920567, "decimalLat": -30.505539 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.175292, "decimalLat": -30.083437 }, "geometry": { "type": "Point", "coordinates": [ 152.175, -30.083 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520189, "decimalLat": -34.452697 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.789818, "decimalLat": -32.65325 }, "geometry": { "type": "Point", "coordinates": [ 151.79, -32.653 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103741, "decimalLat": -29.485622 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.577506, "decimalLat": -33.419281 }, "geometry": { "type": "Point", "coordinates": [ 149.578, -33.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301624, "decimalLat": -28.818314 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557183, "decimalLat": -28.397356 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92117, "decimalLat": -31.479306 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609468, "decimalLat": -34.42047 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104187, "decimalLat": -29.48506 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068005, "decimalLat": -32.723739 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898127, "decimalLat": -31.443408 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518251, "decimalLat": -34.443156 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630633, "decimalLat": -34.420675 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635211, "decimalLat": -34.420376 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555885, "decimalLat": -28.399201 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.274332, "decimalLat": -28.943575 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.944 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529173, "decimalLat": -34.464716 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.542192, "decimalLat": -34.434597 }, "geometry": { "type": "Point", "coordinates": [ 150.542, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403053, "decimalLat": -28.260355 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632965, "decimalLat": -34.419395 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609223, "decimalLat": -34.420655 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602039, "decimalLat": -34.424995 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605504, "decimalLat": -34.427488 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108108, "decimalLat": -29.490567 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521534, "decimalLat": -34.465733 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596103, "decimalLat": -34.411535 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893015, "decimalLat": -31.272449 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.272 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.932573, "decimalLat": -31.474899 }, "geometry": { "type": "Point", "coordinates": [ 152.933, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.314368, "decimalLat": -36.065959 }, "geometry": { "type": "Point", "coordinates": [ 149.314, -36.066 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928339, "decimalLat": -31.459437 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.811485, "decimalLat": -33.366611 }, "geometry": { "type": "Point", "coordinates": [ 150.811, -33.367 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922096, "decimalLat": -31.451705 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278132, "decimalLat": -28.831137 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607305, "decimalLat": -34.435673 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.68367, "decimalLat": -32.515411 }, "geometry": { "type": "Point", "coordinates": [ 151.684, -32.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.629255, "decimalLat": -28.637597 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322064, "decimalLat": -28.824627 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517085, "decimalLat": -34.435884 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625432, "decimalLat": -34.389903 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624512, "decimalLat": -34.387848 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016582, "decimalLat": -36.557254 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605694, "decimalLat": -34.437201 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51374, "decimalLat": -28.21383 }, "geometry": { "type": "Point", "coordinates": [ 153.514, -28.214 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.84068, "decimalLat": -32.52093 }, "geometry": { "type": "Point", "coordinates": [ 151.841, -32.521 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521556, "decimalLat": -34.465725 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.137467, "decimalLat": -32.724689 }, "geometry": { "type": "Point", "coordinates": [ 152.137, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061778, "decimalLat": -32.711316 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52277, "decimalLat": -34.452263 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10122, "decimalLat": -29.48996 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.270899, "decimalLat": -33.633295 }, "geometry": { "type": "Point", "coordinates": [ 150.271, -33.633 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617309, "decimalLat": -34.440502 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78401, "decimalLat": -33.716958 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61711, "decimalLat": -34.433719 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611755, "decimalLat": -34.419631 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.485991, "decimalLat": -32.351167 }, "geometry": { "type": "Point", "coordinates": [ 152.486, -32.351 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.074678, "decimalLat": -32.722295 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662388, "decimalLat": -34.454689 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613309, "decimalLat": -34.432689 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065422, "decimalLat": -32.74272 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.743 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784524, "decimalLat": -33.717517 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90101, "decimalLat": -31.479582 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.628875, "decimalLat": -32.643439 }, "geometry": { "type": "Point", "coordinates": [ 151.629, -32.643 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520399, "decimalLat": -34.465846 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52191, "decimalLat": -34.465903 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604692, "decimalLat": -34.427346 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103473, "decimalLat": -29.479673 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52042, "decimalLat": -34.45409 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.831796, "decimalLat": -31.470148 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785358, "decimalLat": -33.716076 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10335, "decimalLat": -29.489928 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600111, "decimalLat": -34.419367 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513783, "decimalLat": -34.446319 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103001, "decimalLat": -29.486799 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.470376, "decimalLat": -28.260565 }, "geometry": { "type": "Point", "coordinates": [ 153.47, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822303, "decimalLat": -31.254982 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.255 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616, "decimalLat": -34.434851 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.012516, "decimalLat": -30.422876 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -30.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785674, "decimalLat": -31.629599 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615193, "decimalLat": -34.437234 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.802112, "decimalLat": -34.111394 }, "geometry": { "type": "Point", "coordinates": [ 150.802, -34.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.849552, "decimalLat": -31.546884 }, "geometry": { "type": "Point", "coordinates": [ 152.85, -31.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561633, "decimalLat": -28.367891 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.368 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784747, "decimalLat": -34.192296 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -34.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521662, "decimalLat": -34.465817 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104197, "decimalLat": -29.483175 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602785, "decimalLat": -34.435828 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637406, "decimalLat": -34.422771 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071468, "decimalLat": -30.885783 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.007507, "decimalLat": -34.039406 }, "geometry": { "type": "Point", "coordinates": [ 151.008, -34.039 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100495, "decimalLat": -30.30214 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -30.302 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10416, "decimalLat": -29.483787 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63145, "decimalLat": -34.387856 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.056592, "decimalLat": -33.777864 }, "geometry": { "type": "Point", "coordinates": [ 150.057, -33.778 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633668, "decimalLat": -34.418363 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.660048, "decimalLat": -34.455465 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.070336, "decimalLat": -30.876896 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -30.877 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624254, "decimalLat": -34.388898 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603025, "decimalLat": -34.427421 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519139, "decimalLat": -34.45987 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.35714, "decimalLat": -28.885692 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303135, "decimalLat": -28.824882 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635484, "decimalLat": -34.420318 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637211, "decimalLat": -34.423895 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927705, "decimalLat": -31.465493 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.332371, "decimalLat": -32.345114 }, "geometry": { "type": "Point", "coordinates": [ 152.332, -32.345 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109363, "decimalLat": -29.490591 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.182993, "decimalLat": -32.718501 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -32.719 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9117, "decimalLat": -31.4301 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822887, "decimalLat": -31.650231 }, "geometry": { "type": "Point", "coordinates": [ 152.823, -31.65 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.429944, "decimalLat": -28.598104 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.598 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.539207, "decimalLat": -34.747587 }, "geometry": { "type": "Point", "coordinates": [ 146.539, -34.748 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513066, "decimalLat": -34.445926 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.706944, "decimalLat": -34.33 }, "geometry": { "type": "Point", "coordinates": [ 150.707, -34.33 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276239, "decimalLat": -28.857815 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -28.858 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277789, "decimalLat": -28.874003 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626312, "decimalLat": -34.395708 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615003, "decimalLat": -34.432812 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107486, "decimalLat": -29.490133 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002187, "decimalLat": -29.181255 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -29.181 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515608, "decimalLat": -34.446789 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897962, "decimalLat": -30.240161 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -30.24 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639072, "decimalLat": -34.493043 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521608, "decimalLat": -34.465807 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109434, "decimalLat": -29.490532 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605587, "decimalLat": -34.432187 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298311, "decimalLat": -28.876449 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.876 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915121, "decimalLat": -31.446293 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.612356, "decimalLat": -28.662032 }, "geometry": { "type": "Point", "coordinates": [ 153.612, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59781, "decimalLat": -34.427914 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929855, "decimalLat": -31.450925 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516681, "decimalLat": -34.456854 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315763, "decimalLat": -28.850078 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109455, "decimalLat": -29.490507 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.062479, "decimalLat": -33.775552 }, "geometry": { "type": "Point", "coordinates": [ 150.062, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.007627, "decimalLat": -34.046892 }, "geometry": { "type": "Point", "coordinates": [ 151.008, -34.047 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.738019, "decimalLat": -34.194229 }, "geometry": { "type": "Point", "coordinates": [ 150.738, -34.194 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064733, "decimalLat": -32.699847 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.7 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.490189 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.815345, "decimalLat": -31.09505 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378599, "decimalLat": -31.929321 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875612, "decimalLat": -31.453664 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868147, "decimalLat": -29.667322 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927066, "decimalLat": -31.458199 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78273, "decimalLat": -33.718836 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899652, "decimalLat": -31.454565 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11027, "decimalLat": -29.49018 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359276, "decimalLat": -31.85489 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.855 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519045, "decimalLat": -34.436546 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081127, "decimalLat": -32.736579 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516239, "decimalLat": -34.445693 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605651, "decimalLat": -34.423452 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89945, "decimalLat": -29.630963 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103935, "decimalLat": -29.489549 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911609, "decimalLat": -31.458122 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103774, "decimalLat": -29.485496 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787134, "decimalLat": -33.704336 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.755998, "decimalLat": -28.97172 }, "geometry": { "type": "Point", "coordinates": [ 152.756, -28.972 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093469, "decimalLat": -29.48876 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519344, "decimalLat": -34.457368 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103865, "decimalLat": -29.485426 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630586, "decimalLat": -34.4208 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630765, "decimalLat": -34.420623 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604968, "decimalLat": -34.43368 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626696, "decimalLat": -34.421383 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625737, "decimalLat": -34.386438 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525298, "decimalLat": -34.458823 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864586, "decimalLat": -29.630628 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302593, "decimalLat": -28.819803 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52171, "decimalLat": -34.465665 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409406, "decimalLat": -31.910186 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785369, "decimalLat": -33.706379 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.239911, "decimalLat": -28.662796 }, "geometry": { "type": "Point", "coordinates": [ 153.24, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561382, "decimalLat": -28.384773 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637302, "decimalLat": -34.42377 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521863, "decimalLat": -34.46602 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629146, "decimalLat": -34.395105 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428491, "decimalLat": -28.955717 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.956 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297647, "decimalLat": -28.983839 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.984 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523044, "decimalLat": -34.452223 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622844, "decimalLat": -34.384525 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.817328, "decimalLat": -32.353794 }, "geometry": { "type": "Point", "coordinates": [ 151.817, -32.354 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064147, "decimalLat": -32.706714 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524647, "decimalLat": -34.452102 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867197, "decimalLat": -29.685304 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -29.685 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103843, "decimalLat": -29.484899 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109379, "decimalLat": -29.490497 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644839, "decimalLat": -34.39164 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645205, "decimalLat": -34.392972 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921536, "decimalLat": -31.474669 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617371, "decimalLat": -34.449041 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6028, "decimalLat": -34.434909 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784192, "decimalLat": -31.630152 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.788112, "decimalLat": -32.313314 }, "geometry": { "type": "Point", "coordinates": [ 151.788, -32.313 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.249957, "decimalLat": -29.534829 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -29.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314923, "decimalLat": -28.819709 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318679, "decimalLat": -28.916312 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630666, "decimalLat": -34.420676 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.422758, "decimalLat": -29.020005 }, "geometry": { "type": "Point", "coordinates": [ 153.423, -29.02 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110329, "decimalLat": -29.490236 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.845124, "decimalLat": -29.834373 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.870511, "decimalLat": -34.407976 }, "geometry": { "type": "Point", "coordinates": [ 150.871, -34.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532963, "decimalLat": -34.47571 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.893097, "decimalLat": -30.918861 }, "geometry": { "type": "Point", "coordinates": [ 148.893, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907276, "decimalLat": -31.236216 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.236 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316139, "decimalLat": -28.948953 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896099, "decimalLat": -31.448194 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101193, "decimalLat": -29.489914 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613995, "decimalLat": -34.433063 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.19617, "decimalLat": -29.78675 }, "geometry": { "type": "Point", "coordinates": [ 151.196, -29.787 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632585, "decimalLat": -34.418198 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.348, "decimalLat": -34.3928 }, "geometry": { "type": "Point", "coordinates": [ 150.348, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616545, "decimalLat": -34.439036 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921011, "decimalLat": -31.464859 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640987, "decimalLat": -34.393288 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613448, "decimalLat": -34.431998 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626556, "decimalLat": -34.387067 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103784, "decimalLat": -29.485468 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.57961, "decimalLat": -32.64281 }, "geometry": { "type": "Point", "coordinates": [ 151.58, -32.643 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.075188, "decimalLat": -28.555675 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29174, "decimalLat": -28.863841 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5871, "decimalLat": -28.63277 }, "geometry": { "type": "Point", "coordinates": [ 153.587, -28.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615751, "decimalLat": -34.435955 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838342, "decimalLat": -34.055463 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.055 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.75666, "decimalLat": -31.62889 }, "geometry": { "type": "Point", "coordinates": [ 152.757, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785285, "decimalLat": -33.716847 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09517, "decimalLat": -30.34676 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -30.347 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515565, "decimalLat": -34.454496 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.099256, "decimalLat": -31.831604 }, "geometry": { "type": "Point", "coordinates": [ 152.099, -31.832 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604246, "decimalLat": -33.220975 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -33.221 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610279, "decimalLat": -34.419125 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520467, "decimalLat": -34.465739 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521179, "decimalLat": -34.435787 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60307, "decimalLat": -34.434986 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640184, "decimalLat": -34.49302 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.478744, "decimalLat": -28.69642 }, "geometry": { "type": "Point", "coordinates": [ 153.479, -28.696 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.465317, "decimalLat": -33.115211 }, "geometry": { "type": "Point", "coordinates": [ 151.465, -33.115 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311177, "decimalLat": -29.054 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -29.054 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602419, "decimalLat": -34.4372 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.153574, "decimalLat": -28.579378 }, "geometry": { "type": "Point", "coordinates": [ 153.154, -28.579 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914822, "decimalLat": -31.445797 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.802773, "decimalLat": -31.217602 }, "geometry": { "type": "Point", "coordinates": [ 152.803, -31.218 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788591, "decimalLat": -31.637518 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -31.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103918, "decimalLat": -29.485594 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.449423, "decimalLat": -28.628079 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.628 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.861647, "decimalLat": -29.609175 }, "geometry": { "type": "Point", "coordinates": [ 150.862, -29.609 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637256, "decimalLat": -34.42385 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.94298, "decimalLat": -30.39539 }, "geometry": { "type": "Point", "coordinates": [ 152.943, -30.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519267, "decimalLat": -34.44745 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.448052, "decimalLat": -28.627485 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.940581, "decimalLat": -30.413736 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -30.414 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.149568, "decimalLat": -32.004563 }, "geometry": { "type": "Point", "coordinates": [ 152.15, -32.005 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.85412, "decimalLat": -34.047799 }, "geometry": { "type": "Point", "coordinates": [ 150.854, -34.048 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916217, "decimalLat": -31.481002 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.431849, "decimalLat": -28.732179 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.732 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87856, "decimalLat": -31.4527 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.528762, "decimalLat": -28.431212 }, "geometry": { "type": "Point", "coordinates": [ 153.529, -28.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.141639, "decimalLat": -30.197143 }, "geometry": { "type": "Point", "coordinates": [ 153.142, -30.197 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523021, "decimalLat": -34.452241 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925128, "decimalLat": -31.453953 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863323, "decimalLat": -31.283793 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -31.284 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.660017, "decimalLat": -32.660001 }, "geometry": { "type": "Point", "coordinates": [ 151.66, -32.66 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.018265, "decimalLat": -32.728847 }, "geometry": { "type": "Point", "coordinates": [ 152.018, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.71307, "decimalLat": -32.62421 }, "geometry": { "type": "Point", "coordinates": [ 151.713, -32.624 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914177, "decimalLat": -31.453175 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907012, "decimalLat": -31.454665 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79871, "decimalLat": -34.14623 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600413, "decimalLat": -34.428966 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926905, "decimalLat": -31.472381 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.18174, "decimalLat": -32.719823 }, "geometry": { "type": "Point", "coordinates": [ 152.182, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.090821, "decimalLat": -32.729911 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394013, "decimalLat": -28.95907 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637304, "decimalLat": -34.423698 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603804, "decimalLat": -34.439391 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.755356, "decimalLat": -29.233568 }, "geometry": { "type": "Point", "coordinates": [ 150.755, -29.234 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109433, "decimalLat": -29.490507 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604421, "decimalLat": -34.440629 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520911, "decimalLat": -34.458473 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.155315, "decimalLat": -29.38253 }, "geometry": { "type": "Point", "coordinates": [ 153.155, -29.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108237, "decimalLat": -29.490227 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.025, "decimalLat": -29.78 }, "geometry": { "type": "Point", "coordinates": [ 151.025, -29.78 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292968, "decimalLat": -28.864588 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192632, "decimalLat": -32.228945 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.852499, "decimalLat": -34.076921 }, "geometry": { "type": "Point", "coordinates": [ 150.852, -34.077 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784855, "decimalLat": -33.713256 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110029, "decimalLat": -29.490236 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07789, "decimalLat": -30.32102 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.321 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.804307, "decimalLat": -34.157182 }, "geometry": { "type": "Point", "coordinates": [ 150.804, -34.157 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06621, "decimalLat": -32.711568 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.620023, "decimalLat": -34.400797 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.375212, "decimalLat": -31.910431 }, "geometry": { "type": "Point", "coordinates": [ 152.375, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786246, "decimalLat": -33.704703 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602009, "decimalLat": -34.424913 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104374, "decimalLat": -29.482891 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926265, "decimalLat": -31.472015 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277841, "decimalLat": -28.679036 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614485, "decimalLat": -34.429205 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.827206, "decimalLat": -34.127624 }, "geometry": { "type": "Point", "coordinates": [ 150.827, -34.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.512471, "decimalLat": -30.655961 }, "geometry": { "type": "Point", "coordinates": [ 151.512, -30.656 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110136, "decimalLat": -29.490241 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609571, "decimalLat": -28.661288 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109406, "decimalLat": -29.490609 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412845, "decimalLat": -31.932237 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919557, "decimalLat": -36.628449 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.628 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071673, "decimalLat": -28.554293 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -28.554 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.328391, "decimalLat": -28.832072 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.832 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792982, "decimalLat": -31.642119 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809901, "decimalLat": -31.654867 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -31.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603816, "decimalLat": -34.426752 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639119, "decimalLat": -34.392801 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792982, "decimalLat": -31.642119 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.996409, "decimalLat": -29.518732 }, "geometry": { "type": "Point", "coordinates": [ 150.996, -29.519 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.854036, "decimalLat": -34.08393 }, "geometry": { "type": "Point", "coordinates": [ 150.854, -34.084 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517304, "decimalLat": -34.452747 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632893, "decimalLat": -34.418844 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.737543, "decimalLat": -30.125115 }, "geometry": { "type": "Point", "coordinates": [ 152.738, -30.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644819, "decimalLat": -34.391595 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616521, "decimalLat": -34.398881 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.943204, "decimalLat": -30.395187 }, "geometry": { "type": "Point", "coordinates": [ 152.943, -30.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103509, "decimalLat": -32.759368 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.759 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637312, "decimalLat": -34.423797 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396108, "decimalLat": -28.559611 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.56 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.075672, "decimalLat": -32.724323 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.305638, "decimalLat": -28.826765 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.962131, "decimalLat": -32.184258 }, "geometry": { "type": "Point", "coordinates": [ 150.962, -32.184 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.862399, "decimalLat": -34.061874 }, "geometry": { "type": "Point", "coordinates": [ 150.862, -34.062 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630399, "decimalLat": -34.420851 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.12901, "decimalLat": -31.13463 }, "geometry": { "type": "Point", "coordinates": [ 150.129, -31.135 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.832, "decimalLat": -31.26349 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -31.263 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9286, "decimalLat": -33.95807 }, "geometry": { "type": "Point", "coordinates": [ 150.929, -33.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630221, "decimalLat": -34.42101 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108178, "decimalLat": -29.490409 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63345, "decimalLat": -34.417619 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.934212, "decimalLat": -29.722693 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -29.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.402368, "decimalLat": -31.938661 }, "geometry": { "type": "Point", "coordinates": [ 152.402, -31.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107464, "decimalLat": -29.490138 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644061, "decimalLat": -34.393798 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916023, "decimalLat": -31.454389 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616179, "decimalLat": -34.434314 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632603, "decimalLat": -34.418315 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90988, "decimalLat": -30.17297 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -30.173 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609191, "decimalLat": -34.420636 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.2101, "decimalLat": -28.928384 }, "geometry": { "type": "Point", "coordinates": [ 153.21, -28.928 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909424, "decimalLat": -31.176289 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.176 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.516775, "decimalLat": -32.444507 }, "geometry": { "type": "Point", "coordinates": [ 152.517, -32.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516619, "decimalLat": -34.449028 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10983, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518344, "decimalLat": -34.451812 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.456711, "decimalLat": -28.78346 }, "geometry": { "type": "Point", "coordinates": [ 153.457, -28.783 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520856, "decimalLat": -34.454072 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.352906, "decimalLat": -28.83385 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639111, "decimalLat": -34.493215 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517629, "decimalLat": -34.442855 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517949, "decimalLat": -34.447874 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604632, "decimalLat": -34.424496 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624369, "decimalLat": -34.387881 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.929224, "decimalLat": -33.954203 }, "geometry": { "type": "Point", "coordinates": [ 150.929, -33.954 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3944, "decimalLat": -28.855254 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.855 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785981, "decimalLat": -33.712349 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.795089, "decimalLat": -34.138664 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.139 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.908792, "decimalLat": -33.998345 }, "geometry": { "type": "Point", "coordinates": [ 150.909, -33.998 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.381541, "decimalLat": -28.695055 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -28.695 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096982, "decimalLat": -29.486561 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103913, "decimalLat": -29.489489 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.718696, "decimalLat": -31.348795 }, "geometry": { "type": "Point", "coordinates": [ 152.719, -31.349 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.749512, "decimalLat": -34.372303 }, "geometry": { "type": "Point", "coordinates": [ 150.75, -34.372 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493083, "decimalLat": -28.693786 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632762, "decimalLat": -34.41885 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557034, "decimalLat": -28.397415 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270671, "decimalLat": -28.862636 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063516, "decimalLat": -32.705335 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619965, "decimalLat": -34.400931 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.864858, "decimalLat": -34.021526 }, "geometry": { "type": "Point", "coordinates": [ 150.865, -34.022 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.83513, "decimalLat": -34.069677 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103693, "decimalLat": -29.485669 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624282, "decimalLat": -34.4006 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521206, "decimalLat": -34.466908 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513783, "decimalLat": -34.446319 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316281, "decimalLat": -28.837109 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303135, "decimalLat": -28.824882 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903671, "decimalLat": -31.445015 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891077, "decimalLat": -31.442912 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906855, "decimalLat": -31.44044 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.391298, "decimalLat": -28.838377 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926148, "decimalLat": -31.459147 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.482997, "decimalLat": -28.246907 }, "geometry": { "type": "Point", "coordinates": [ 153.483, -28.247 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791854, "decimalLat": -31.527069 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966961, "decimalLat": -36.56748 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.567 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930028, "decimalLat": -31.476538 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109793, "decimalLat": -29.490175 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639066, "decimalLat": -34.392746 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.037953, "decimalLat": -28.851502 }, "geometry": { "type": "Point", "coordinates": [ 153.038, -28.852 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.969856, "decimalLat": -29.731011 }, "geometry": { "type": "Point", "coordinates": [ 152.97, -29.731 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.825278, "decimalLat": -34.149167 }, "geometry": { "type": "Point", "coordinates": [ 150.825, -34.149 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288785, "decimalLat": -28.978011 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -28.978 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.26473, "decimalLat": -28.85414 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -28.854 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809326, "decimalLat": -34.102169 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.876259, "decimalLat": -31.425153 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.391142, "decimalLat": -31.90253 }, "geometry": { "type": "Point", "coordinates": [ 152.391, -31.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.601677, "decimalLat": -31.651391 }, "geometry": { "type": "Point", "coordinates": [ 152.602, -31.651 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.370187, "decimalLat": -28.258902 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.806894, "decimalLat": -34.100577 }, "geometry": { "type": "Point", "coordinates": [ 150.807, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615878, "decimalLat": -34.436472 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.490128 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645161, "decimalLat": -34.391024 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60547, "decimalLat": -34.427505 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517293, "decimalLat": -34.452007 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063292, "decimalLat": -32.706656 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320936, "decimalLat": -28.918269 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.918 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.921178, "decimalLat": -36.633581 }, "geometry": { "type": "Point", "coordinates": [ 149.921, -36.634 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.852145, "decimalLat": -34.403156 }, "geometry": { "type": "Point", "coordinates": [ 150.852, -34.403 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51646, "decimalLat": -34.449998 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.921178, "decimalLat": -36.633581 }, "geometry": { "type": "Point", "coordinates": [ 149.921, -36.634 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.124778, "decimalLat": -35.0641 }, "geometry": { "type": "Point", "coordinates": [ 150.125, -35.064 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.993648, "decimalLat": -34.071083 }, "geometry": { "type": "Point", "coordinates": [ 150.994, -34.071 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103892, "decimalLat": -29.489563 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.778378, "decimalLat": -34.139613 }, "geometry": { "type": "Point", "coordinates": [ 150.778, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783204, "decimalLat": -33.718565 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5143, "decimalLat": -34.44651 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.852033, "decimalLat": -31.443752 }, "geometry": { "type": "Point", "coordinates": [ 152.852, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.605918, "decimalLat": -28.689425 }, "geometry": { "type": "Point", "coordinates": [ 153.606, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63912, "decimalLat": -34.392765 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.972566, "decimalLat": -31.194882 }, "geometry": { "type": "Point", "coordinates": [ 152.973, -31.195 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09354, "decimalLat": -30.33917 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -30.339 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07842, "decimalLat": -30.35548 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.355 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.956904, "decimalLat": -32.651449 }, "geometry": { "type": "Point", "coordinates": [ 151.957, -32.651 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924924, "decimalLat": -31.459262 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905566, "decimalLat": -31.436889 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917419, "decimalLat": -31.45773 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517261, "decimalLat": -34.453097 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.09291, "decimalLat": -32.653034 }, "geometry": { "type": "Point", "coordinates": [ 152.093, -32.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.933658, "decimalLat": -29.681698 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -29.682 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.93782, "decimalLat": -29.721303 }, "geometry": { "type": "Point", "coordinates": [ 150.938, -29.721 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924154, "decimalLat": -31.444136 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.345753, "decimalLat": -28.832697 }, "geometry": { "type": "Point", "coordinates": [ 153.346, -28.833 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.605261, "decimalLat": -30.520053 }, "geometry": { "type": "Point", "coordinates": [ 152.605, -30.52 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.088711, "decimalLat": -32.735951 }, "geometry": { "type": "Point", "coordinates": [ 152.089, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611525, "decimalLat": -34.419672 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.328844, "decimalLat": -28.814901 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616256, "decimalLat": -34.434261 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.793402, "decimalLat": -34.207563 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.208 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600038, "decimalLat": -34.418095 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.011589, "decimalLat": -30.596306 }, "geometry": { "type": "Point", "coordinates": [ 153.012, -30.596 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063502, "decimalLat": -32.706006 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98472, "decimalLat": -34.096067 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521046, "decimalLat": -34.435505 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.386755, "decimalLat": -31.882179 }, "geometry": { "type": "Point", "coordinates": [ 152.387, -31.882 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10409, "decimalLat": -29.480145 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.490184 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.761746, "decimalLat": -36.371011 }, "geometry": { "type": "Point", "coordinates": [ 148.762, -36.371 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786191, "decimalLat": -33.705952 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342482, "decimalLat": -28.805797 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.66582, "decimalLat": -30.534255 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.534 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896425, "decimalLat": -29.629872 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -29.63 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40941, "decimalLat": -31.91019 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06621, "decimalLat": -32.711568 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919643, "decimalLat": -31.4692 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6887, "decimalLat": -32.06324 }, "geometry": { "type": "Point", "coordinates": [ 151.689, -32.063 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.539599, "decimalLat": -32.064646 }, "geometry": { "type": "Point", "coordinates": [ 152.54, -32.065 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324661, "decimalLat": -36.293208 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.293 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.577918, "decimalLat": -30.32236 }, "geometry": { "type": "Point", "coordinates": [ 151.578, -30.322 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109304, "decimalLat": -29.490852 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513915, "decimalLat": -34.447007 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.699739, "decimalLat": -30.289868 }, "geometry": { "type": "Point", "coordinates": [ 152.7, -30.29 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926957, "decimalLat": -31.463308 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631912, "decimalLat": -34.387667 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317734, "decimalLat": -28.822728 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516343, "decimalLat": -34.442576 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367535, "decimalLat": -28.612172 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.612 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810751, "decimalLat": -31.167271 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -31.167 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.037481, "decimalLat": -32.307677 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.308 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.150223, "decimalLat": -33.104783 }, "geometry": { "type": "Point", "coordinates": [ 151.15, -33.105 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905712, "decimalLat": -31.453709 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402513, "decimalLat": -28.960704 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.11759, "decimalLat": -34.77234 }, "geometry": { "type": "Point", "coordinates": [ 150.118, -34.772 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.230164, "decimalLat": -28.925076 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.150223, "decimalLat": -33.104783 }, "geometry": { "type": "Point", "coordinates": [ 151.15, -33.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616412, "decimalLat": -34.430334 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.109373, "decimalLat": -32.736099 }, "geometry": { "type": "Point", "coordinates": [ 152.109, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513228, "decimalLat": -34.447056 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077206, "decimalLat": -32.722459 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915048, "decimalLat": -31.485269 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.299548, "decimalLat": -36.137257 }, "geometry": { "type": "Point", "coordinates": [ 149.3, -36.137 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564434, "decimalLat": -28.336159 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.336 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870846, "decimalLat": -31.464661 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520572, "decimalLat": -34.454093 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606888, "decimalLat": -34.439587 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095228, "decimalLat": -29.483442 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513874, "decimalLat": -34.447304 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395195, "decimalLat": -28.959932 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.915166, "decimalLat": -33.969835 }, "geometry": { "type": "Point", "coordinates": [ 150.915, -33.97 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91921, "decimalLat": -31.442813 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526868, "decimalLat": -34.469411 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626025, "decimalLat": -34.390095 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.066993, "decimalLat": -34.958306 }, "geometry": { "type": "Point", "coordinates": [ 150.067, -34.958 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104176, "decimalLat": -29.479169 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.428977, "decimalLat": -31.833611 }, "geometry": { "type": "Point", "coordinates": [ 152.429, -31.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103473, "decimalLat": -29.485632 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523969, "decimalLat": -34.463646 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.671111, "decimalLat": -32.596389 }, "geometry": { "type": "Point", "coordinates": [ 151.671, -32.596 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.913678, "decimalLat": -34.068368 }, "geometry": { "type": "Point", "coordinates": [ 150.914, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645432, "decimalLat": -34.396871 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637345, "decimalLat": -34.423798 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883375, "decimalLat": -31.435592 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415642, "decimalLat": -31.933481 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515768, "decimalLat": -34.447288 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11158, "decimalLat": -29.465633 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -29.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.232154, "decimalLat": -28.830347 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907313, "decimalLat": -31.470435 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923097, "decimalLat": -31.459411 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985097, "decimalLat": -34.067516 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.776613, "decimalLat": -33.382543 }, "geometry": { "type": "Point", "coordinates": [ 150.777, -33.383 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914514, "decimalLat": -31.455166 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32228, "decimalLat": -28.815537 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.665621, "decimalLat": -33.548838 }, "geometry": { "type": "Point", "coordinates": [ 150.666, -33.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093687, "decimalLat": -29.375133 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.375 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909102, "decimalLat": -31.435188 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615698, "decimalLat": -33.432441 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -33.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92782, "decimalLat": -31.464683 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.824095, "decimalLat": -34.150308 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562188, "decimalLat": -28.38399 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.332731, "decimalLat": -32.34502 }, "geometry": { "type": "Point", "coordinates": [ 152.333, -32.345 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.020569, "decimalLat": -28.429244 }, "geometry": { "type": "Point", "coordinates": [ 153.021, -28.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.295029, "decimalLat": -28.821687 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092026, "decimalLat": -29.48799 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.579254, "decimalLat": -28.687931 }, "geometry": { "type": "Point", "coordinates": [ 153.579, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.996234, "decimalLat": -28.635247 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -28.635 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085609, "decimalLat": -32.731046 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604023, "decimalLat": -34.426756 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.756185, "decimalLat": -31.63103 }, "geometry": { "type": "Point", "coordinates": [ 152.756, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.05578, "decimalLat": -30.3566 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -30.357 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409406, "decimalLat": -31.910186 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523257, "decimalLat": -34.465994 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924757, "decimalLat": -31.464357 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.890633, "decimalLat": -34.018549 }, "geometry": { "type": "Point", "coordinates": [ 150.891, -34.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.204862, "decimalLat": -30.095476 }, "geometry": { "type": "Point", "coordinates": [ 152.205, -30.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.328511, "decimalLat": -28.816736 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.658636, "decimalLat": -32.663196 }, "geometry": { "type": "Point", "coordinates": [ 151.659, -32.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895208, "decimalLat": -30.440188 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -30.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929133, "decimalLat": -31.455984 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645703, "decimalLat": -34.400402 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.995573, "decimalLat": -36.572611 }, "geometry": { "type": "Point", "coordinates": [ 149.996, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513154, "decimalLat": -34.445883 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.806784, "decimalLat": -32.469856 }, "geometry": { "type": "Point", "coordinates": [ 151.807, -32.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303503, "decimalLat": -28.81632 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518284, "decimalLat": -34.45347 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785538, "decimalLat": -33.708025 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299324, "decimalLat": -28.888717 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.00568, "decimalLat": -34.84227 }, "geometry": { "type": "Point", "coordinates": [ 150.006, -34.842 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91872, "decimalLat": -31.478956 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63071, "decimalLat": -34.420649 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.802682, "decimalLat": -34.111148 }, "geometry": { "type": "Point", "coordinates": [ 150.803, -34.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888659, "decimalLat": -30.452702 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -30.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632588, "decimalLat": -34.418459 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.959769, "decimalLat": -33.739042 }, "geometry": { "type": "Point", "coordinates": [ 150.96, -33.739 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110554, "decimalLat": -29.489862 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623764, "decimalLat": -34.383506 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785586, "decimalLat": -33.709569 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787159, "decimalLat": -34.241266 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -34.241 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.410095, "decimalLat": -34.495547 }, "geometry": { "type": "Point", "coordinates": [ 150.41, -34.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599031, "decimalLat": -34.412981 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521045, "decimalLat": -34.464245 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.044328, "decimalLat": -29.169249 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -29.169 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.795412, "decimalLat": -32.570205 }, "geometry": { "type": "Point", "coordinates": [ 151.795, -32.57 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.447094, "decimalLat": -32.385025 }, "geometry": { "type": "Point", "coordinates": [ 152.447, -32.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923672, "decimalLat": -30.505757 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916376, "decimalLat": -31.481892 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89841, "decimalLat": -31.443221 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.817021, "decimalLat": -31.130437 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -31.13 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320503, "decimalLat": -28.916298 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063994, "decimalLat": -32.706663 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79071, "decimalLat": -34.186332 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.186 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559907, "decimalLat": -28.393177 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315214, "decimalLat": -29.028258 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -29.028 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514255, "decimalLat": -34.445824 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785009, "decimalLat": -33.71322 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628688, "decimalLat": -34.395159 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603363, "decimalLat": -34.435379 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.79132, "decimalLat": -32.382158 }, "geometry": { "type": "Point", "coordinates": [ 149.791, -32.382 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394619, "decimalLat": -28.960666 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9785, "decimalLat": -30.4193 }, "geometry": { "type": "Point", "coordinates": [ 152.979, -30.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616424, "decimalLat": -34.439097 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.568679, "decimalLat": -28.695089 }, "geometry": { "type": "Point", "coordinates": [ 153.569, -28.695 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929911, "decimalLat": -31.466543 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634145, "decimalLat": -34.488611 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.551199, "decimalLat": -33.490003 }, "geometry": { "type": "Point", "coordinates": [ 149.551, -33.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.980215, "decimalLat": -30.323526 }, "geometry": { "type": "Point", "coordinates": [ 152.98, -30.324 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905835, "decimalLat": -31.448039 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.69013, "decimalLat": -33.442443 }, "geometry": { "type": "Point", "coordinates": [ 150.69, -33.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.469528, "decimalLat": -34.721257 }, "geometry": { "type": "Point", "coordinates": [ 146.47, -34.721 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900733, "decimalLat": -31.466687 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.925447, "decimalLat": -35.104734 }, "geometry": { "type": "Point", "coordinates": [ 149.925, -35.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521611, "decimalLat": -34.465726 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105286, "decimalLat": -32.732798 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627255, "decimalLat": -34.385819 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.553276, "decimalLat": -33.556385 }, "geometry": { "type": "Point", "coordinates": [ 149.553, -33.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93881, "decimalLat": -30.23025 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -30.23 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319838, "decimalLat": -28.844336 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640379, "decimalLat": -34.395178 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064106, "decimalLat": -32.708778 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.298817, "decimalLat": -31.945384 }, "geometry": { "type": "Point", "coordinates": [ 152.299, -31.945 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608845, "decimalLat": -34.435081 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604108, "decimalLat": -34.426829 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.200153, "decimalLat": -28.881273 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -28.881 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433909, "decimalLat": -28.989862 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.99 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.545624, "decimalLat": -33.683565 }, "geometry": { "type": "Point", "coordinates": [ 150.546, -33.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521639, "decimalLat": -34.464753 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077238, "decimalLat": -32.722476 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888066, "decimalLat": -31.453502 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608795, "decimalLat": -34.455536 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52713, "decimalLat": -34.469381 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642991, "decimalLat": -34.394742 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10424, "decimalLat": -29.479972 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61849, "decimalLat": -34.4403 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555865, "decimalLat": -28.398951 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189597, "decimalLat": -32.229205 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528165, "decimalLat": -34.456429 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.485604 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833816, "decimalLat": -29.656348 }, "geometry": { "type": "Point", "coordinates": [ 150.834, -29.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623722, "decimalLat": -34.383469 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.945417, "decimalLat": -29.770741 }, "geometry": { "type": "Point", "coordinates": [ 150.945, -29.771 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37032, "decimalLat": -31.91938 }, "geometry": { "type": "Point", "coordinates": [ 152.37, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103783, "decimalLat": -29.485584 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604555, "decimalLat": -34.424494 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331908, "decimalLat": -28.85774 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -28.858 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.968181, "decimalLat": -32.447469 }, "geometry": { "type": "Point", "coordinates": [ 151.968, -32.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01301, "decimalLat": -30.41382 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -30.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895106, "decimalLat": -31.435995 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53461, "decimalLat": -34.459345 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101274, "decimalLat": -29.489918 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.696428, "decimalLat": -30.40374 }, "geometry": { "type": "Point", "coordinates": [ 151.696, -30.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636398, "decimalLat": -34.485554 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605073, "decimalLat": -34.43306 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.858769, "decimalLat": -31.906259 }, "geometry": { "type": "Point", "coordinates": [ 151.859, -31.906 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.128847, "decimalLat": -33.11426 }, "geometry": { "type": "Point", "coordinates": [ 151.129, -33.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62437, "decimalLat": -34.38515 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293166, "decimalLat": -28.864637 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518845, "decimalLat": -34.446639 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521329, "decimalLat": -34.464936 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303174, "decimalLat": -28.827996 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.337558, "decimalLat": -28.81758 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616518, "decimalLat": -34.43808 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101338, "decimalLat": -29.489676 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.007752, "decimalLat": -34.045989 }, "geometry": { "type": "Point", "coordinates": [ 151.008, -34.046 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378239, "decimalLat": -31.91701 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.917 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835252, "decimalLat": -34.085996 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520315, "decimalLat": -34.465745 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.65772, "decimalLat": -32.689837 }, "geometry": { "type": "Point", "coordinates": [ 151.658, -32.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61624, "decimalLat": -33.35049 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -33.35 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616338, "decimalLat": -34.43942 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887495, "decimalLat": -31.448437 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.178209, "decimalLat": -28.635946 }, "geometry": { "type": "Point", "coordinates": [ 152.178, -28.636 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101226, "decimalLat": -29.489923 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07705, "decimalLat": -32.722522 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.131817, "decimalLat": -28.836564 }, "geometry": { "type": "Point", "coordinates": [ 153.132, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.542263, "decimalLat": -34.434409 }, "geometry": { "type": "Point", "coordinates": [ 150.542, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272286, "decimalLat": -29.010473 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -29.01 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46202, "decimalLat": -28.650301 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109369, "decimalLat": -29.490642 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63257, "decimalLat": -34.418323 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899616, "decimalLat": -31.466722 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092082, "decimalLat": -29.48803 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039191, "decimalLat": -32.730856 }, "geometry": { "type": "Point", "coordinates": [ 152.039, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.014476, "decimalLat": -32.666802 }, "geometry": { "type": "Point", "coordinates": [ 152.014, -32.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561338, "decimalLat": -28.28902 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.289 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104085, "decimalLat": -29.479888 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515859, "decimalLat": -34.447155 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616591, "decimalLat": -34.437802 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405012, "decimalLat": -31.20122 }, "geometry": { "type": "Point", "coordinates": [ 152.405, -31.201 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633104, "decimalLat": -34.417531 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.846588, "decimalLat": -34.112049 }, "geometry": { "type": "Point", "coordinates": [ 150.847, -34.112 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82423, "decimalLat": -31.448562 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518522, "decimalLat": -34.438068 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608297, "decimalLat": -34.434079 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.079208, "decimalLat": -28.733192 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -28.733 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899468, "decimalLat": -31.443901 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907827, "decimalLat": -31.449107 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520602, "decimalLat": -34.453832 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597442, "decimalLat": -34.455972 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51833, "decimalLat": -34.437189 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316408, "decimalLat": -28.823502 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610156, "decimalLat": -34.419979 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.764483, "decimalLat": -30.47882 }, "geometry": { "type": "Point", "coordinates": [ 151.764, -30.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10379, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523823, "decimalLat": -34.463787 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63535, "decimalLat": -34.419657 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55879, "decimalLat": -28.33206 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.332 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607092, "decimalLat": -34.437806 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920148, "decimalLat": -31.468121 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517367, "decimalLat": -34.456859 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37417, "decimalLat": -31.91495 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091081, "decimalLat": -29.487864 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107953, "decimalLat": -29.490194 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.418326, "decimalLat": -31.949518 }, "geometry": { "type": "Point", "coordinates": [ 152.418, -31.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637729, "decimalLat": -34.488564 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19925, "decimalLat": -32.22062 }, "geometry": { "type": "Point", "coordinates": [ 152.199, -32.221 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110865, "decimalLat": -29.488546 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609203, "decimalLat": -34.420591 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070445, "decimalLat": -32.717963 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400646, "decimalLat": -28.257815 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322971, "decimalLat": -28.890057 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783797, "decimalLat": -33.718718 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.077406, "decimalLat": -33.148032 }, "geometry": { "type": "Point", "coordinates": [ 151.077, -33.148 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270921, "decimalLat": -28.630745 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -28.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104299, "decimalLat": -29.482419 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01536, "decimalLat": -28.63955 }, "geometry": { "type": "Point", "coordinates": [ 153.015, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519841, "decimalLat": -34.466673 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518604, "decimalLat": -34.444497 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783674, "decimalLat": -33.713509 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318297, "decimalLat": -28.82451 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609402, "decimalLat": -34.418963 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.046608, "decimalLat": -30.378604 }, "geometry": { "type": "Point", "coordinates": [ 153.047, -30.379 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604261, "decimalLat": -34.438985 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.944414, "decimalLat": -30.39082 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -30.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.780584, "decimalLat": -31.25536 }, "geometry": { "type": "Point", "coordinates": [ 152.781, -31.255 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10402, "decimalLat": -29.484296 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094492, "decimalLat": -30.299789 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -30.3 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.044301, "decimalLat": -30.425221 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -30.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642484, "decimalLat": -34.394182 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.783304, "decimalLat": -31.48444 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640048, "decimalLat": -34.398463 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60715, "decimalLat": -34.45407 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.980769, "decimalLat": -32.564261 }, "geometry": { "type": "Point", "coordinates": [ 151.981, -32.564 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602031, "decimalLat": -34.425662 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606015, "decimalLat": -34.457222 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610379, "decimalLat": -34.419037 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068751, "decimalLat": -32.749205 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.749 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606968, "decimalLat": -34.454346 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603133, "decimalLat": -34.435068 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.965822, "decimalLat": -31.200967 }, "geometry": { "type": "Point", "coordinates": [ 152.966, -31.201 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.191886, "decimalLat": -31.565273 }, "geometry": { "type": "Point", "coordinates": [ 152.192, -31.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.72129, "decimalLat": -33.56781 }, "geometry": { "type": "Point", "coordinates": [ 150.721, -33.568 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630688, "decimalLat": -34.387111 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811633, "decimalLat": -29.515027 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -29.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.664166, "decimalLat": -34.45887 }, "geometry": { "type": "Point", "coordinates": [ 150.664, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517303, "decimalLat": -34.443957 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610171, "decimalLat": -34.42977 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515339, "decimalLat": -34.448893 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312672, "decimalLat": -28.692616 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.247804, "decimalLat": -28.614653 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -28.615 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11638, "decimalLat": -28.561523 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -28.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519658, "decimalLat": -34.45522 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879058, "decimalLat": -29.70733 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790887, "decimalLat": -34.204612 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.205 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104219, "decimalLat": -29.479902 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61604, "decimalLat": -34.43615 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606197, "decimalLat": -34.437887 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605191, "decimalLat": -34.437678 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786073, "decimalLat": -33.706023 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.258387, "decimalLat": -28.796603 }, "geometry": { "type": "Point", "coordinates": [ 153.258, -28.797 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092483, "decimalLat": -29.493094 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.95699, "decimalLat": -32.639158 }, "geometry": { "type": "Point", "coordinates": [ 151.957, -32.639 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873518, "decimalLat": -31.457717 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520843, "decimalLat": -34.467036 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918812, "decimalLat": -31.45932 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.993445, "decimalLat": -32.72283 }, "geometry": { "type": "Point", "coordinates": [ 151.993, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067352, "decimalLat": -32.710382 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.322764, "decimalLat": -36.298458 }, "geometry": { "type": "Point", "coordinates": [ 149.323, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.017903, "decimalLat": -32.54935 }, "geometry": { "type": "Point", "coordinates": [ 152.018, -32.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863625, "decimalLat": -31.291832 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.292 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400846, "decimalLat": -28.2564 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59019, "decimalLat": -28.65505 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.121961, "decimalLat": -31.079077 }, "geometry": { "type": "Point", "coordinates": [ 150.122, -31.079 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61997, "decimalLat": -33.430377 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -33.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.123295, "decimalLat": -30.300543 }, "geometry": { "type": "Point", "coordinates": [ 153.123, -30.301 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.83192, "decimalLat": -31.28162 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -31.282 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.061178, "decimalLat": -29.741257 }, "geometry": { "type": "Point", "coordinates": [ 151.061, -29.741 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.435927, "decimalLat": -28.611007 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.611 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53189, "decimalLat": -34.460426 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.30042, "decimalLat": -31.94825 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.008286, "decimalLat": -28.623894 }, "geometry": { "type": "Point", "coordinates": [ 153.008, -28.624 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092122, "decimalLat": -29.488046 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913816, "decimalLat": -31.480407 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.870765, "decimalLat": -34.044516 }, "geometry": { "type": "Point", "coordinates": [ 150.871, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.311799, "decimalLat": -36.13566 }, "geometry": { "type": "Point", "coordinates": [ 149.312, -36.136 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108864, "decimalLat": -29.493136 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616268, "decimalLat": -34.441131 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917631, "decimalLat": -31.455367 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.48788, "decimalLat": -34.38806 }, "geometry": { "type": "Point", "coordinates": [ 150.488, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627398, "decimalLat": -34.421207 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533602, "decimalLat": -34.479545 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825474, "decimalLat": -28.841974 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.540596, "decimalLat": -32.059349 }, "geometry": { "type": "Point", "coordinates": [ 152.541, -32.059 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60686, "decimalLat": -34.454308 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513097, "decimalLat": -34.447081 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.39892, "decimalLat": -31.96562 }, "geometry": { "type": "Point", "coordinates": [ 152.399, -31.966 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609876, "decimalLat": -34.455043 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10331, "decimalLat": -32.759364 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -32.759 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.758487, "decimalLat": -31.263233 }, "geometry": { "type": "Point", "coordinates": [ 152.758, -31.263 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632763, "decimalLat": -34.419607 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928817, "decimalLat": -31.459628 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108215, "decimalLat": -29.490633 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516764, "decimalLat": -34.446344 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517293, "decimalLat": -34.447608 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603162, "decimalLat": -34.439378 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.541704, "decimalLat": -32.329929 }, "geometry": { "type": "Point", "coordinates": [ 152.542, -32.33 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626613, "decimalLat": -34.385464 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520262, "decimalLat": -34.450598 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928708, "decimalLat": -31.466484 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.268126, "decimalLat": -28.91324 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.913 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107448, "decimalLat": -29.490156 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40177, "decimalLat": -28.259899 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.480794 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630862, "decimalLat": -34.420652 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.380483, "decimalLat": -31.914336 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627958, "decimalLat": -34.390971 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.034669, "decimalLat": -30.35524 }, "geometry": { "type": "Point", "coordinates": [ 153.035, -30.355 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605681, "decimalLat": -34.437652 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513047, "decimalLat": -34.447296 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067456, "decimalLat": -32.75982 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.76 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109986, "decimalLat": -29.490255 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.113964, "decimalLat": -32.768796 }, "geometry": { "type": "Point", "coordinates": [ 152.114, -32.769 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788487, "decimalLat": -28.609553 }, "geometry": { "type": "Point", "coordinates": [ 152.788, -28.61 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785294, "decimalLat": -33.709241 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522593, "decimalLat": -34.46488 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512846, "decimalLat": -34.446733 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56206, "decimalLat": -28.383751 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.088095, "decimalLat": -33.847854 }, "geometry": { "type": "Point", "coordinates": [ 150.088, -33.848 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.506293, "decimalLat": -28.238698 }, "geometry": { "type": "Point", "coordinates": [ 153.506, -28.239 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53041, "decimalLat": -34.471494 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.031643, "decimalLat": -32.197389 }, "geometry": { "type": "Point", "coordinates": [ 152.032, -32.197 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532777, "decimalLat": -34.458749 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.970013, "decimalLat": -31.192675 }, "geometry": { "type": "Point", "coordinates": [ 152.97, -31.193 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78702, "decimalLat": -33.70844 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635372, "decimalLat": -34.419667 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786459, "decimalLat": -33.705953 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.376021, "decimalLat": -36.01439 }, "geometry": { "type": "Point", "coordinates": [ 149.376, -36.014 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.7152, "decimalLat": -31.636783 }, "geometry": { "type": "Point", "coordinates": [ 152.715, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63904, "decimalLat": -34.491474 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.651193, "decimalLat": -32.608963 }, "geometry": { "type": "Point", "coordinates": [ 151.651, -32.609 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.427455, "decimalLat": -30.480875 }, "geometry": { "type": "Point", "coordinates": [ 151.427, -30.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518964, "decimalLat": -34.460254 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401777, "decimalLat": -28.260089 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.390502, "decimalLat": -31.876097 }, "geometry": { "type": "Point", "coordinates": [ 152.391, -31.876 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.771284, "decimalLat": -32.588266 }, "geometry": { "type": "Point", "coordinates": [ 151.771, -32.588 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625873, "decimalLat": -34.386252 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639145, "decimalLat": -34.493162 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06176, "decimalLat": -32.708918 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104176, "decimalLat": -29.479038 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103693, "decimalLat": -29.485767 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919349, "decimalLat": -31.442598 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016942, "decimalLat": -36.548959 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782999, "decimalLat": -31.484367 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278132, "decimalLat": -28.831137 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904895, "decimalLat": -31.445308 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630982, "decimalLat": -34.388253 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812345, "decimalLat": -34.124693 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518041, "decimalLat": -34.438869 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.011, "decimalLat": -31.12414 }, "geometry": { "type": "Point", "coordinates": [ 150.011, -31.124 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644414, "decimalLat": -34.396347 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.175292, "decimalLat": -30.083437 }, "geometry": { "type": "Point", "coordinates": [ 152.175, -30.083 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639323, "decimalLat": -34.421907 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.044713, "decimalLat": -34.029825 }, "geometry": { "type": "Point", "coordinates": [ 151.045, -34.03 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819826, "decimalLat": -31.101184 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634411, "decimalLat": -34.42018 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616213, "decimalLat": -34.434251 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596176, "decimalLat": -34.411654 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91932, "decimalLat": -31.476258 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610257, "decimalLat": -34.430186 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603379, "decimalLat": -34.427212 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63829, "decimalLat": -34.419985 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.34163, "decimalLat": -28.805638 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.336911, "decimalLat": -36.307015 }, "geometry": { "type": "Point", "coordinates": [ 149.337, -36.307 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514996, "decimalLat": -34.446515 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635881, "decimalLat": -34.41937 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064358, "decimalLat": -32.70898 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606692, "decimalLat": -34.43466 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062125, "decimalLat": -32.709923 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519613, "decimalLat": -34.46299 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644245, "decimalLat": -34.399283 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658805, "decimalLat": -33.526978 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.97285, "decimalLat": -34.12311 }, "geometry": { "type": "Point", "coordinates": [ 150.973, -34.123 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603776, "decimalLat": -34.431231 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608247, "decimalLat": -34.450333 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51904, "decimalLat": -34.460256 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604137, "decimalLat": -34.438757 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.044532, "decimalLat": -34.019374 }, "geometry": { "type": "Point", "coordinates": [ 151.045, -34.019 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517228, "decimalLat": -34.440953 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884147, "decimalLat": -34.018322 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.018 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319111, "decimalLat": -28.864188 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.216373, "decimalLat": -32.408145 }, "geometry": { "type": "Point", "coordinates": [ 152.216, -32.408 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917959, "decimalLat": -31.445289 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.944869, "decimalLat": -36.572615 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606702, "decimalLat": -34.456027 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109755, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605619, "decimalLat": -34.432214 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.382114, "decimalLat": -36.157321 }, "geometry": { "type": "Point", "coordinates": [ 149.382, -36.157 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633577, "decimalLat": -34.418496 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929239, "decimalLat": -31.461813 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605516, "decimalLat": -34.437342 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784826, "decimalLat": -31.63246 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637282, "decimalLat": -34.423707 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278317, "decimalLat": -28.818924 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529163, "decimalLat": -34.464301 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.86406, "decimalLat": -32.74329 }, "geometry": { "type": "Point", "coordinates": [ 151.864, -32.743 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103723, "decimalLat": -29.485674 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110597, "decimalLat": -29.489584 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881437, "decimalLat": -31.452384 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.858675, "decimalLat": -31.129495 }, "geometry": { "type": "Point", "coordinates": [ 152.859, -31.129 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.485682, "decimalLat": -32.16053 }, "geometry": { "type": "Point", "coordinates": [ 152.486, -32.161 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519666, "decimalLat": -34.463009 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102996, "decimalLat": -29.489381 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786253, "decimalLat": -33.706566 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.041838, "decimalLat": -28.601622 }, "geometry": { "type": "Point", "coordinates": [ 153.042, -28.602 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989361, "decimalLat": -34.029329 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517437, "decimalLat": -34.435996 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606276, "decimalLat": -34.438186 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615232, "decimalLat": -34.429346 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634815, "decimalLat": -34.487651 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262256, "decimalLat": -28.950844 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -28.951 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.187773, "decimalLat": -28.825298 }, "geometry": { "type": "Point", "coordinates": [ 153.188, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626729, "decimalLat": -34.421384 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657576, "decimalLat": -34.455913 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790833, "decimalLat": -34.138333 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.138 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103838, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602661, "decimalLat": -34.439026 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604889, "decimalLat": -34.426926 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517532, "decimalLat": -34.445783 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103956, "decimalLat": -29.485183 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9215, "decimalLat": -31.47939 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639131, "decimalLat": -34.421768 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51375, "decimalLat": -34.446355 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786054, "decimalLat": -33.712279 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926703, "decimalLat": -31.455103 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.836933, "decimalLat": -31.483097 }, "geometry": { "type": "Point", "coordinates": [ 152.837, -31.483 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317183, "decimalLat": -28.817365 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321649, "decimalLat": -28.8901 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520474, "decimalLat": -34.4541 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.659218, "decimalLat": -30.181345 }, "geometry": { "type": "Point", "coordinates": [ 152.659, -30.181 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637104, "decimalLat": -34.485234 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603313, "decimalLat": -34.427634 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603348, "decimalLat": -34.42676 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627887, "decimalLat": -34.390789 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640749, "decimalLat": -34.49423 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.100691, "decimalLat": -32.733103 }, "geometry": { "type": "Point", "coordinates": [ 152.101, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916547, "decimalLat": -31.445007 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519824, "decimalLat": -34.446641 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515167, "decimalLat": -34.447745 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81903, "decimalLat": -31.27443 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.274 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.620069, "decimalLat": -28.658108 }, "geometry": { "type": "Point", "coordinates": [ 153.62, -28.658 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.282752, "decimalLat": -36.056042 }, "geometry": { "type": "Point", "coordinates": [ 149.283, -36.056 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.777889, "decimalLat": -34.2012 }, "geometry": { "type": "Point", "coordinates": [ 150.778, -34.201 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629802, "decimalLat": -28.637418 }, "geometry": { "type": "Point", "coordinates": [ 153.63, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556223, "decimalLat": -28.398629 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.789154, "decimalLat": -32.653858 }, "geometry": { "type": "Point", "coordinates": [ 151.789, -32.654 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600433, "decimalLat": -34.522986 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.523 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657412, "decimalLat": -34.455946 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909306, "decimalLat": -31.453225 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784153, "decimalLat": -33.716735 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103902, "decimalLat": -29.484903 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627594, "decimalLat": -34.537087 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.537 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065429, "decimalLat": -32.710463 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521963, "decimalLat": -34.46375 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.41864, "decimalLat": -34.42638 }, "geometry": { "type": "Point", "coordinates": [ 150.419, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609255, "decimalLat": -34.420701 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.866613, "decimalLat": -31.284238 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -31.284 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.386733, "decimalLat": -28.637772 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.00185, "decimalLat": -31.12511 }, "geometry": { "type": "Point", "coordinates": [ 150.002, -31.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627177, "decimalLat": -34.389748 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637347, "decimalLat": -34.488583 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627441, "decimalLat": -34.421226 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785085, "decimalLat": -31.629799 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.22997, "decimalLat": -31.86089 }, "geometry": { "type": "Point", "coordinates": [ 150.23, -31.861 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606977, "decimalLat": -34.454401 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610274, "decimalLat": -34.429988 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103924, "decimalLat": -29.489489 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323245, "decimalLat": -28.817949 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628812, "decimalLat": -34.389212 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401827, "decimalLat": -28.258487 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785495, "decimalLat": -33.706431 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605092, "decimalLat": -34.423216 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520366, "decimalLat": -34.454071 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.836994, "decimalLat": -34.055761 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638294, "decimalLat": -34.485897 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825402, "decimalLat": -31.64956 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633072, "decimalLat": -34.417522 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108199, "decimalLat": -29.490259 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523831, "decimalLat": -34.463535 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897234, "decimalLat": -31.475332 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378153, "decimalLat": -28.885242 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.885 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630064, "decimalLat": -34.421169 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604884, "decimalLat": -34.427088 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640246, "decimalLat": -34.493138 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.111271, "decimalLat": -32.732169 }, "geometry": { "type": "Point", "coordinates": [ 152.111, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61569, "decimalLat": -34.450757 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603821, "decimalLat": -34.436885 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.806799, "decimalLat": -32.465571 }, "geometry": { "type": "Point", "coordinates": [ 151.807, -32.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52249, "decimalLat": -34.464346 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928968, "decimalLat": -31.459686 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78318, "decimalLat": -33.718605 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101156, "decimalLat": -29.489914 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627238, "decimalLat": -34.39835 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641722, "decimalLat": -34.395781 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639798, "decimalLat": -34.40036 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316206, "decimalLat": -28.850613 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913348, "decimalLat": -31.477106 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838674, "decimalLat": -34.085646 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889948, "decimalLat": -31.444008 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60857, "decimalLat": -34.453494 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516156, "decimalLat": -34.449244 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066821, "decimalLat": -32.738907 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316082, "decimalLat": -28.820485 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.190117, "decimalLat": -31.593167 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -31.593 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615839, "decimalLat": -34.4363 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.072356, "decimalLat": -33.781566 }, "geometry": { "type": "Point", "coordinates": [ 150.072, -33.782 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.829766, "decimalLat": -29.653645 }, "geometry": { "type": "Point", "coordinates": [ 152.83, -29.654 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925495, "decimalLat": -31.454213 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611425, "decimalLat": -34.419751 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512758, "decimalLat": -34.447119 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.470997, "decimalLat": -28.555904 }, "geometry": { "type": "Point", "coordinates": [ 153.471, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909363, "decimalLat": -31.453378 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605057, "decimalLat": -34.456455 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.370133, "decimalLat": -28.259275 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109778, "decimalLat": -28.655817 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -28.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640975, "decimalLat": -34.393306 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520757, "decimalLat": -34.436085 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613895, "decimalLat": -34.433124 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103538, "decimalLat": -29.485506 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279539, "decimalLat": -28.678813 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518933, "decimalLat": -34.437418 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.219427, "decimalLat": -33.81748 }, "geometry": { "type": "Point", "coordinates": [ 151.219, -33.817 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103468, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605425, "decimalLat": -34.437484 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639239, "decimalLat": -34.392776 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.551369, "decimalLat": -33.492269 }, "geometry": { "type": "Point", "coordinates": [ 149.551, -33.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.805876, "decimalLat": -34.175806 }, "geometry": { "type": "Point", "coordinates": [ 150.806, -34.176 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.069137, "decimalLat": -32.707881 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104063, "decimalLat": -29.479356 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926247, "decimalLat": -31.47667 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785975, "decimalLat": -31.629353 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518981, "decimalLat": -34.4354 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.318289, "decimalLat": -29.480554 }, "geometry": { "type": "Point", "coordinates": [ 152.318, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.882376, "decimalLat": -31.428673 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927815, "decimalLat": -31.464749 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316211, "decimalLat": -28.837046 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925868, "decimalLat": -31.453019 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62907, "decimalLat": -34.395122 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921302, "decimalLat": -31.447009 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.571487, "decimalLat": -28.696016 }, "geometry": { "type": "Point", "coordinates": [ 153.571, -28.696 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.256484, "decimalLat": -28.798844 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -28.799 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597637, "decimalLat": -34.41839 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642812, "decimalLat": -34.398011 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.036423, "decimalLat": -30.8961 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.020331, "decimalLat": -32.735877 }, "geometry": { "type": "Point", "coordinates": [ 152.02, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071758, "decimalLat": -30.885713 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400512, "decimalLat": -28.259128 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.63115, "decimalLat": -28.63729 }, "geometry": { "type": "Point", "coordinates": [ 153.631, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.490336, "decimalLat": -32.352926 }, "geometry": { "type": "Point", "coordinates": [ 152.49, -32.353 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.675042, "decimalLat": -31.516414 }, "geometry": { "type": "Point", "coordinates": [ 150.675, -31.516 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82611, "decimalLat": -31.26929 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -31.269 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10181, "decimalLat": -32.734228 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107459, "decimalLat": -29.490156 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.562655, "decimalLat": -29.037002 }, "geometry": { "type": "Point", "coordinates": [ 152.563, -29.037 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104176, "decimalLat": -29.477277 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.965237, "decimalLat": -36.459771 }, "geometry": { "type": "Point", "coordinates": [ 149.965, -36.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785122, "decimalLat": -33.714179 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89337, "decimalLat": -33.971509 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.972 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797792, "decimalLat": -30.212216 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -30.212 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62541, "decimalLat": -34.389912 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635837, "decimalLat": -34.419378 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.968057, "decimalLat": -31.173216 }, "geometry": { "type": "Point", "coordinates": [ 152.968, -31.173 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520433, "decimalLat": -34.454036 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82926, "decimalLat": -34.077175 }, "geometry": { "type": "Point", "coordinates": [ 150.829, -34.077 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630265, "decimalLat": -34.421001 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627185, "decimalLat": -34.420635 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786855, "decimalLat": -31.629354 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790608, "decimalLat": -34.109424 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.109 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87476, "decimalLat": -31.46143 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.522225, "decimalLat": -28.654909 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87158, "decimalLat": -29.653412 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -29.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632313, "decimalLat": -34.388098 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613709, "decimalLat": -34.449592 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517241, "decimalLat": -34.451546 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635044, "decimalLat": -34.486096 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636083, "decimalLat": -34.485539 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78574, "decimalLat": -33.706002 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627732, "decimalLat": -34.397449 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427006, "decimalLat": -28.80193 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.802 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063559, "decimalLat": -32.706148 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926153, "decimalLat": -31.471501 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628003, "decimalLat": -34.420967 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627271, "decimalLat": -34.420312 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108178, "decimalLat": -29.490427 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.496278, "decimalLat": -28.328913 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519929, "decimalLat": -34.435743 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515788, "decimalLat": -34.444765 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520398, "decimalLat": -34.454117 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517608, "decimalLat": -34.446163 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656193, "decimalLat": -34.455544 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611712, "decimalLat": -34.432992 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923313, "decimalLat": -31.446109 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61728, "decimalLat": -34.434218 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605998, "decimalLat": -34.454391 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630862, "decimalLat": -34.420652 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.965047, "decimalLat": -30.648712 }, "geometry": { "type": "Point", "coordinates": [ 152.965, -30.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108189, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825169, "decimalLat": -31.549417 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.184606, "decimalLat": -32.713683 }, "geometry": { "type": "Point", "coordinates": [ 152.185, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094259, "decimalLat": -28.603471 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -28.603 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6337, "decimalLat": -34.41839 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888518, "decimalLat": -31.434721 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062966, "decimalLat": -32.708428 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562778, "decimalLat": -28.332222 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.332 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90881, "decimalLat": -30.17148 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -30.171 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.967553, "decimalLat": -31.1828 }, "geometry": { "type": "Point", "coordinates": [ 152.968, -31.183 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928539, "decimalLat": -31.464162 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.41554, "decimalLat": -28.734681 }, "geometry": { "type": "Point", "coordinates": [ 153.416, -28.735 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782987, "decimalLat": -31.484836 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602017, "decimalLat": -34.424994 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.877346, "decimalLat": -34.013124 }, "geometry": { "type": "Point", "coordinates": [ 150.877, -34.013 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.667755, "decimalLat": -31.20241 }, "geometry": { "type": "Point", "coordinates": [ 152.668, -31.202 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077155, "decimalLat": -29.446786 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.38363, "decimalLat": -31.923848 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.009634, "decimalLat": -34.045246 }, "geometry": { "type": "Point", "coordinates": [ 151.01, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636291, "decimalLat": -34.421794 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615705, "decimalLat": -34.439894 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.836213, "decimalLat": -34.067813 }, "geometry": { "type": "Point", "coordinates": [ 150.836, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.248574, "decimalLat": -31.423039 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -31.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604247, "decimalLat": -34.437966 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643489, "decimalLat": -34.399863 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637104, "decimalLat": -34.485252 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.645191, "decimalLat": -30.537583 }, "geometry": { "type": "Point", "coordinates": [ 152.645, -30.538 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403788, "decimalLat": -28.260718 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6593, "decimalLat": -34.459282 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786073, "decimalLat": -33.714064 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520068, "decimalLat": -34.453479 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092272, "decimalLat": -29.488051 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.291127, "decimalLat": -28.99283 }, "geometry": { "type": "Point", "coordinates": [ 153.291, -28.993 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07383, "decimalLat": -32.72208 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519487, "decimalLat": -34.456568 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904817, "decimalLat": -30.437703 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -30.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604172, "decimalLat": -34.44021 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.166559, "decimalLat": -29.4313 }, "geometry": { "type": "Point", "coordinates": [ 153.167, -29.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1038, "decimalLat": -29.489531 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60396, "decimalLat": -34.431253 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52129, "decimalLat": -34.435717 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.787884, "decimalLat": -32.652522 }, "geometry": { "type": "Point", "coordinates": [ 151.788, -32.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634338, "decimalLat": -34.420071 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645737, "decimalLat": -34.397274 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.551256, "decimalLat": -33.563104 }, "geometry": { "type": "Point", "coordinates": [ 149.551, -33.563 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318473, "decimalLat": -28.931395 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.931 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.73973, "decimalLat": -30.477815 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -30.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529679, "decimalLat": -34.47229 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.472 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924994, "decimalLat": -31.459265 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.68364, "decimalLat": -32.5154 }, "geometry": { "type": "Point", "coordinates": [ 151.684, -32.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788405, "decimalLat": -31.151223 }, "geometry": { "type": "Point", "coordinates": [ 152.788, -31.151 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90196, "decimalLat": -31.442204 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.094433, "decimalLat": -32.7608 }, "geometry": { "type": "Point", "coordinates": [ 152.094, -32.761 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630922, "decimalLat": -34.388071 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91383, "decimalLat": -31.452542 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898305, "decimalLat": -31.443558 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785478, "decimalLat": -33.707915 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659645, "decimalLat": -33.527127 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.036423, "decimalLat": -30.8961 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821878, "decimalLat": -34.101248 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784226, "decimalLat": -33.717253 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925776, "decimalLat": -31.447463 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.775981, "decimalLat": -34.12523 }, "geometry": { "type": "Point", "coordinates": [ 150.776, -34.125 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796862, "decimalLat": -34.135908 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.136 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640002, "decimalLat": -34.397776 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607877, "decimalLat": -28.68664 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.352747, "decimalLat": -31.924268 }, "geometry": { "type": "Point", "coordinates": [ 152.353, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32762, "decimalLat": -28.814661 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639099, "decimalLat": -34.493251 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622508, "decimalLat": -34.384491 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989152, "decimalLat": -34.028881 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818111, "decimalLat": -31.572611 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597521, "decimalLat": -34.418235 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522403, "decimalLat": -34.465075 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403424, "decimalLat": -28.683671 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635801, "decimalLat": -34.419504 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.766463, "decimalLat": -34.246745 }, "geometry": { "type": "Point", "coordinates": [ 150.766, -34.247 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.691442, "decimalLat": -34.366275 }, "geometry": { "type": "Point", "coordinates": [ 150.691, -34.366 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610279, "decimalLat": -34.419125 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870423, "decimalLat": -31.163733 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -31.164 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629134, "decimalLat": -34.395934 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64325, "decimalLat": -34.393232 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87194, "decimalLat": -31.464025 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.059244, "decimalLat": -33.77543 }, "geometry": { "type": "Point", "coordinates": [ 150.059, -33.775 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10423, "decimalLat": -29.482171 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103851, "decimalLat": -29.485001 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627364, "decimalLat": -34.386596 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90077, "decimalLat": -31.442886 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630254, "decimalLat": -34.421001 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060997, "decimalLat": -32.710803 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514723, "decimalLat": -34.445816 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516161, "decimalLat": -34.45019 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.398988, "decimalLat": -31.940952 }, "geometry": { "type": "Point", "coordinates": [ 152.399, -31.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636303, "decimalLat": -34.421776 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662767, "decimalLat": -34.454759 }, "geometry": { "type": "Point", "coordinates": [ 150.663, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610126, "decimalLat": -34.419897 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334393, "decimalLat": -28.814137 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785319, "decimalLat": -31.633263 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.777049, "decimalLat": -32.314506 }, "geometry": { "type": "Point", "coordinates": [ 151.777, -32.315 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379054, "decimalLat": -31.921832 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522749, "decimalLat": -34.452262 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.81321, "decimalLat": -34.139662 }, "geometry": { "type": "Point", "coordinates": [ 150.813, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.521255, "decimalLat": -28.685121 }, "geometry": { "type": "Point", "coordinates": [ 153.521, -28.685 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78418, "decimalLat": -33.717369 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529954, "decimalLat": -34.471088 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.373712, "decimalLat": -29.029983 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -29.03 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615786, "decimalLat": -34.436263 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303468, "decimalLat": -28.817396 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529009, "decimalLat": -34.471375 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.972324, "decimalLat": -29.238849 }, "geometry": { "type": "Point", "coordinates": [ 152.972, -29.239 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103838, "decimalLat": -29.489573 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522982, "decimalLat": -34.452483 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518726, "decimalLat": -34.447348 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909493, "decimalLat": -31.457714 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615848, "decimalLat": -34.433307 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.934932, "decimalLat": -30.423849 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -30.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531024, "decimalLat": -34.470947 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296079, "decimalLat": -28.820682 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.496691, "decimalLat": -28.686235 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637236, "decimalLat": -34.423778 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433788, "decimalLat": -28.985675 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.986 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.614926, "decimalLat": -28.663144 }, "geometry": { "type": "Point", "coordinates": [ 153.615, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.478425, "decimalLat": -31.940053 }, "geometry": { "type": "Point", "coordinates": [ 152.478, -31.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513075, "decimalLat": -34.447098 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609255, "decimalLat": -34.418762 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.490152 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.834899, "decimalLat": -31.584987 }, "geometry": { "type": "Point", "coordinates": [ 152.835, -31.585 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104149, "decimalLat": -29.478898 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317852, "decimalLat": -28.929063 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522738, "decimalLat": -34.467353 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.721403, "decimalLat": -29.365098 }, "geometry": { "type": "Point", "coordinates": [ 152.721, -29.365 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517583, "decimalLat": -34.453618 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607389, "decimalLat": -28.687767 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624439, "decimalLat": -34.388108 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789371, "decimalLat": -34.197984 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.198 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52391, "decimalLat": -34.462698 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517792, "decimalLat": -34.441407 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063784, "decimalLat": -32.706589 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603804, "decimalLat": -34.439391 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60436, "decimalLat": -34.438969 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518313, "decimalLat": -34.45137 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109294, "decimalLat": -29.490609 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.760909, "decimalLat": -32.403341 }, "geometry": { "type": "Point", "coordinates": [ 149.761, -32.403 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296846, "decimalLat": -28.820795 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819471, "decimalLat": -30.169833 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -30.17 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639844, "decimalLat": -34.399144 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.83272, "decimalLat": -31.210101 }, "geometry": { "type": "Point", "coordinates": [ 152.833, -31.21 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606435, "decimalLat": -34.45549 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521559, "decimalLat": -34.465617 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.386288, "decimalLat": -31.914637 }, "geometry": { "type": "Point", "coordinates": [ 152.386, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79663, "decimalLat": -31.653461 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52025, "decimalLat": -34.465725 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60403, "decimalLat": -34.427261 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911617, "decimalLat": -31.470209 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516241, "decimalLat": -34.448957 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611623, "decimalLat": -34.419656 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303075, "decimalLat": -28.824231 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.011629, "decimalLat": -29.300857 }, "geometry": { "type": "Point", "coordinates": [ 150.012, -29.301 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613691, "decimalLat": -34.431867 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786353, "decimalLat": -33.704003 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.371143, "decimalLat": -28.884607 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.885 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523256, "decimalLat": -34.46603 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.064348, "decimalLat": -33.772343 }, "geometry": { "type": "Point", "coordinates": [ 150.064, -33.772 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.371996, "decimalLat": -31.921066 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910459, "decimalLat": -31.439111 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625012, "decimalLat": -34.389787 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607966, "decimalLat": -34.436515 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616347, "decimalLat": -34.436057 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06473, "decimalLat": -32.709738 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374047, "decimalLat": -31.913202 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.598349, "decimalLat": -28.723183 }, "geometry": { "type": "Point", "coordinates": [ 153.598, -28.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645207, "decimalLat": -34.392891 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.104582, "decimalLat": -32.183 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.183 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.15908, "decimalLat": -28.924837 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.133659, "decimalLat": -30.11224 }, "geometry": { "type": "Point", "coordinates": [ 152.134, -30.112 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.567012, "decimalLat": -34.483871 }, "geometry": { "type": "Point", "coordinates": [ 150.567, -34.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.382663, "decimalLat": -31.924317 }, "geometry": { "type": "Point", "coordinates": [ 152.383, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320399, "decimalLat": -28.845128 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.075072, "decimalLat": -29.746346 }, "geometry": { "type": "Point", "coordinates": [ 151.075, -29.746 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396418, "decimalLat": -29.097349 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -29.097 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.230493, "decimalLat": -28.943992 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.944 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.222847, "decimalLat": -33.719265 }, "geometry": { "type": "Point", "coordinates": [ 150.223, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610246, "decimalLat": -34.419124 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626588, "decimalLat": -34.387104 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.975593, "decimalLat": -34.086979 }, "geometry": { "type": "Point", "coordinates": [ 150.976, -34.087 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888659, "decimalLat": -30.452702 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -30.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101145, "decimalLat": -29.4899 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879652, "decimalLat": -31.445395 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914901, "decimalLat": -31.449087 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62598, "decimalLat": -34.389779 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.166503, "decimalLat": -32.744762 }, "geometry": { "type": "Point", "coordinates": [ 152.167, -32.745 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.592108, "decimalLat": -31.574115 }, "geometry": { "type": "Point", "coordinates": [ 152.592, -31.574 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622106, "decimalLat": -34.397917 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838296, "decimalLat": -34.074675 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.075 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521916, "decimalLat": -34.464605 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071318, "decimalLat": -30.887664 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.722727, "decimalLat": -34.189762 }, "geometry": { "type": "Point", "coordinates": [ 150.723, -34.19 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897501, "decimalLat": -31.447814 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947895, "decimalLat": -36.653563 }, "geometry": { "type": "Point", "coordinates": [ 149.948, -36.654 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.655098, "decimalLat": -30.174476 }, "geometry": { "type": "Point", "coordinates": [ 152.655, -30.174 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915779, "decimalLat": -31.478301 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104176, "decimalLat": -29.478627 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532413, "decimalLat": -34.477394 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094037, "decimalLat": -29.48877 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913159, "decimalLat": -31.47739 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409406, "decimalLat": -31.910186 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.382538, "decimalLat": -31.225485 }, "geometry": { "type": "Point", "coordinates": [ 152.383, -31.225 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89393, "decimalLat": -31.44729 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409406, "decimalLat": -31.910186 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514249, "decimalLat": -34.446022 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786071, "decimalLat": -31.631664 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.046861, "decimalLat": -32.626972 }, "geometry": { "type": "Point", "coordinates": [ 150.047, -32.627 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325951, "decimalLat": -28.825963 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103951, "decimalLat": -29.489601 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.190904, "decimalLat": -31.594568 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -31.595 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.415262, "decimalLat": -28.672208 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607944, "decimalLat": -34.436533 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.020961, "decimalLat": -32.7672 }, "geometry": { "type": "Point", "coordinates": [ 152.021, -32.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.027556, "decimalLat": -34.031189 }, "geometry": { "type": "Point", "coordinates": [ 151.028, -34.031 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784958, "decimalLat": -33.718725 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516583, "decimalLat": -28.690653 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.691 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616275, "decimalLat": -34.435893 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.387172, "decimalLat": -31.87656 }, "geometry": { "type": "Point", "coordinates": [ 152.387, -31.877 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.649253, "decimalLat": -37.366721 }, "geometry": { "type": "Point", "coordinates": [ 149.649, -37.367 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793312, "decimalLat": -31.643042 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.643 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.438811, "decimalLat": -28.993709 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.994 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616316, "decimalLat": -34.429097 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5166, "decimalLat": -34.445656 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615802, "decimalLat": -34.434171 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554787, "decimalLat": -28.35802 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.358 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604447, "decimalLat": -34.426385 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.155463, "decimalLat": -31.47032 }, "geometry": { "type": "Point", "coordinates": [ 151.155, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790837, "decimalLat": -34.185914 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.186 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640333, "decimalLat": -34.397603 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784625, "decimalLat": -33.716301 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92546, "decimalLat": -31.47324 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.079899, "decimalLat": -30.271084 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -30.271 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.490194 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602645, "decimalLat": -34.436537 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513106, "decimalLat": -34.447135 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.616359, "decimalLat": -28.656503 }, "geometry": { "type": "Point", "coordinates": [ 153.616, -28.657 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278713, "decimalLat": -28.933174 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808227, "decimalLat": -34.098164 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.965237, "decimalLat": -36.459771 }, "geometry": { "type": "Point", "coordinates": [ 149.965, -36.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921257, "decimalLat": -31.456454 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522899, "decimalLat": -34.452328 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52219, "decimalLat": -34.465278 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.201795, "decimalLat": -32.233788 }, "geometry": { "type": "Point", "coordinates": [ 152.202, -32.234 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.12941, "decimalLat": -30.257728 }, "geometry": { "type": "Point", "coordinates": [ 153.129, -30.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517263, "decimalLat": -34.451556 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892374, "decimalLat": -31.447505 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873378, "decimalLat": -31.285084 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.285 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063741, "decimalLat": -32.706607 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79769, "decimalLat": -31.128598 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.129 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.965237, "decimalLat": -36.459771 }, "geometry": { "type": "Point", "coordinates": [ 149.965, -36.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.404353, "decimalLat": -31.449245 }, "geometry": { "type": "Point", "coordinates": [ 151.404, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629714, "decimalLat": -34.394269 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602629, "decimalLat": -34.425277 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517498, "decimalLat": -34.446179 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.772987, "decimalLat": -31.631353 }, "geometry": { "type": "Point", "coordinates": [ 152.773, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924785, "decimalLat": -31.454082 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945176, "decimalLat": -36.590676 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.591 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07727, "decimalLat": -32.722477 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.650528, "decimalLat": -32.682711 }, "geometry": { "type": "Point", "coordinates": [ 151.651, -32.683 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.200436, "decimalLat": -28.874343 }, "geometry": { "type": "Point", "coordinates": [ 153.2, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616375, "decimalLat": -34.434309 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.388588, "decimalLat": -28.556385 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518217, "decimalLat": -34.453514 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.806817, "decimalLat": -34.109266 }, "geometry": { "type": "Point", "coordinates": [ 150.807, -34.109 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645216, "decimalLat": -34.391025 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523106, "decimalLat": -34.464485 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906016, "decimalLat": -31.471952 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.190863, "decimalLat": -28.705862 }, "geometry": { "type": "Point", "coordinates": [ 153.191, -28.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629591, "decimalLat": -34.389371 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526216, "decimalLat": -34.45831 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299324, "decimalLat": -28.888717 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393908, "decimalLat": -28.960305 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900157, "decimalLat": -31.468923 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.875431, "decimalLat": -34.057821 }, "geometry": { "type": "Point", "coordinates": [ 150.875, -34.058 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104176, "decimalLat": -29.48212 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109599, "decimalLat": -29.492781 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658739, "decimalLat": -34.45754 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.620978, "decimalLat": -30.339125 }, "geometry": { "type": "Point", "coordinates": [ 152.621, -30.339 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60059, "decimalLat": -34.428086 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.265895, "decimalLat": -36.067862 }, "geometry": { "type": "Point", "coordinates": [ 149.266, -36.068 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513015, "decimalLat": -34.445808 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.964283, "decimalLat": -36.48252 }, "geometry": { "type": "Point", "coordinates": [ 149.964, -36.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514004, "decimalLat": -34.445837 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.944433, "decimalLat": -29.346563 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -29.347 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.661806, "decimalLat": -34.45841 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516631, "decimalLat": -34.454139 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.07685, "decimalLat": -33.147056 }, "geometry": { "type": "Point", "coordinates": [ 151.077, -33.147 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.177949, "decimalLat": -32.666409 }, "geometry": { "type": "Point", "coordinates": [ 152.178, -32.666 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908156, "decimalLat": -31.44469 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401468, "decimalLat": -28.872044 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.833041, "decimalLat": -31.634218 }, "geometry": { "type": "Point", "coordinates": [ 152.833, -31.634 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628405, "decimalLat": -34.420587 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636248, "decimalLat": -34.421775 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.102532, "decimalLat": -28.615302 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -28.615 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.310754, "decimalLat": -28.942372 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.942 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.778695, "decimalLat": -30.188975 }, "geometry": { "type": "Point", "coordinates": [ 152.779, -30.189 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.559709, "decimalLat": -33.691976 }, "geometry": { "type": "Point", "coordinates": [ 149.56, -33.692 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.849458, "decimalLat": -34.063193 }, "geometry": { "type": "Point", "coordinates": [ 150.849, -34.063 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317534, "decimalLat": -28.827945 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60493, "decimalLat": -34.42699 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.428165, "decimalLat": -31.792171 }, "geometry": { "type": "Point", "coordinates": [ 152.428, -31.792 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528027, "decimalLat": -34.457805 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.129471, "decimalLat": -35.065122 }, "geometry": { "type": "Point", "coordinates": [ 150.129, -35.065 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517395, "decimalLat": -34.441588 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.97348, "decimalLat": -30.4283 }, "geometry": { "type": "Point", "coordinates": [ 152.973, -30.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.740306, "decimalLat": -32.397042 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -32.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.000754, "decimalLat": -30.386962 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -30.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519948, "decimalLat": -34.466377 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928887, "decimalLat": -31.459167 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892084, "decimalLat": -31.443426 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633546, "decimalLat": -34.41846 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629237, "decimalLat": -28.637406 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402846, "decimalLat": -28.963784 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.964 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637248, "decimalLat": -34.48786 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.08973, "decimalLat": -28.597841 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -28.598 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658674, "decimalLat": -33.526857 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.910112, "decimalLat": -36.460589 }, "geometry": { "type": "Point", "coordinates": [ 149.91, -36.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532756, "decimalLat": -34.463166 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61613, "decimalLat": -34.437955 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608412, "decimalLat": -34.455601 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633134, "decimalLat": -34.417622 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635388, "decimalLat": -34.420271 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616115, "decimalLat": -34.437711 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.704764, "decimalLat": -33.479658 }, "geometry": { "type": "Point", "coordinates": [ 150.705, -33.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784203, "decimalLat": -33.717759 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91428, "decimalLat": -31.458611 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.953129, "decimalLat": -36.635401 }, "geometry": { "type": "Point", "coordinates": [ 149.953, -36.635 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599516, "decimalLat": -34.429913 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.729928, "decimalLat": -32.475211 }, "geometry": { "type": "Point", "coordinates": [ 149.73, -32.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.247202, "decimalLat": -30.053999 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -30.054 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53587, "decimalLat": -34.463138 }, "geometry": { "type": "Point", "coordinates": [ 150.536, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285038, "decimalLat": -28.971537 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.972 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.367548, "decimalLat": -36.01979 }, "geometry": { "type": "Point", "coordinates": [ 149.368, -36.02 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.772634, "decimalLat": -31.486569 }, "geometry": { "type": "Point", "coordinates": [ 152.773, -31.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.15231, "decimalLat": -31.445045 }, "geometry": { "type": "Point", "coordinates": [ 152.152, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "Victoria", "decimalLon": 142.625011, "decimalLat": -38.278043 }, "geometry": { "type": "Point", "coordinates": [ 142.625, -38.278 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89975, "decimalLat": -31.473967 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331914, "decimalLat": -28.814261 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.965237, "decimalLat": -36.459771 }, "geometry": { "type": "Point", "coordinates": [ 149.965, -36.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65947, "decimalLat": -34.45512 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921957, "decimalLat": -31.474015 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602999, "decimalLat": -34.417675 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.172153, "decimalLat": -35.958656 }, "geometry": { "type": "Point", "coordinates": [ 149.172, -35.959 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437028, "decimalLat": -28.874832 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.875 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301536, "decimalLat": -28.9982 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.998 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785167, "decimalLat": -33.705197 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413017, "decimalLat": -31.932287 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.325489, "decimalLat": -36.330698 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.331 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637888, "decimalLat": -34.48561 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900238, "decimalLat": -31.474171 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615589, "decimalLat": -34.435528 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.410239, "decimalLat": -28.724964 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.439172, "decimalLat": -31.81832 }, "geometry": { "type": "Point", "coordinates": [ 152.439, -31.818 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.141493, "decimalLat": -29.070701 }, "geometry": { "type": "Point", "coordinates": [ 153.141, -29.071 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.816526, "decimalLat": -31.449466 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527447, "decimalLat": -34.469351 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615116, "decimalLat": -34.435348 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63852, "decimalLat": -34.422991 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60798, "decimalLat": -28.675791 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065365, "decimalLat": -32.71049 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.978275, "decimalLat": -34.084622 }, "geometry": { "type": "Point", "coordinates": [ 150.978, -34.085 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373466, "decimalLat": -31.914313 }, "geometry": { "type": "Point", "coordinates": [ 152.373, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.489942 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43729, "decimalLat": -28.993218 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.993 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615217, "decimalLat": -34.434836 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061473, "decimalLat": -32.739184 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51414, "decimalLat": -34.446399 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335199, "decimalLat": -28.815073 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912435, "decimalLat": -31.444867 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.131065, "decimalLat": -32.731099 }, "geometry": { "type": "Point", "coordinates": [ 152.131, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630266, "decimalLat": -34.420965 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.728427, "decimalLat": -31.222164 }, "geometry": { "type": "Point", "coordinates": [ 152.728, -31.222 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784993, "decimalLat": -33.714304 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896466, "decimalLat": -31.461292 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914487, "decimalLat": -31.467406 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905614, "decimalLat": -31.436771 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532365, "decimalLat": -34.473111 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.473 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626048, "decimalLat": -34.387752 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107454, "decimalLat": -29.490119 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301536, "decimalLat": -28.9982 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.998 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614368, "decimalLat": -34.4295 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104997, "decimalLat": -29.489662 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622442, "decimalLat": -34.384508 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638246, "decimalLat": -34.419975 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.11039, "decimalLat": -32.767366 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -32.767 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925978, "decimalLat": -31.452385 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.006466, "decimalLat": -30.421604 }, "geometry": { "type": "Point", "coordinates": [ 153.006, -30.422 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90294, "decimalLat": -31.441314 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60741, "decimalLat": -34.433142 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867589, "decimalLat": -29.667284 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.451135, "decimalLat": -28.664276 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.664 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519123, "decimalLat": -34.439441 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109261, "decimalLat": -29.491854 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.119993, "decimalLat": -32.718829 }, "geometry": { "type": "Point", "coordinates": [ 152.12, -32.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557046, "decimalLat": -28.397354 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315879, "decimalLat": -28.849906 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91657, "decimalLat": -31.444681 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60947, "decimalLat": -28.689615 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.775575, "decimalLat": -32.590076 }, "geometry": { "type": "Point", "coordinates": [ 151.776, -32.59 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78515, "decimalLat": -33.716916 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.036618, "decimalLat": -32.768798 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.769 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637345, "decimalLat": -34.42378 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515866, "decimalLat": -34.448751 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104176, "decimalLat": -29.479813 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.067614, "decimalLat": -30.331498 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -30.331 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.546776, "decimalLat": -33.488559 }, "geometry": { "type": "Point", "coordinates": [ 149.547, -33.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103881, "decimalLat": -29.489587 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.778378, "decimalLat": -34.139613 }, "geometry": { "type": "Point", "coordinates": [ 150.778, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630819, "decimalLat": -34.420652 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921716, "decimalLat": -31.463686 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635836, "decimalLat": -34.419414 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.704764, "decimalLat": -33.479658 }, "geometry": { "type": "Point", "coordinates": [ 150.705, -33.48 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.747238, "decimalLat": -31.568896 }, "geometry": { "type": "Point", "coordinates": [ 152.747, -31.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.704764, "decimalLat": -33.479658 }, "geometry": { "type": "Point", "coordinates": [ 150.705, -33.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51451, "decimalLat": -34.443828 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104058, "decimalLat": -29.485099 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.14077, "decimalLat": -29.030627 }, "geometry": { "type": "Point", "coordinates": [ 153.141, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302891, "decimalLat": -28.844077 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629244, "decimalLat": -34.395107 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.976896, "decimalLat": -34.086596 }, "geometry": { "type": "Point", "coordinates": [ 150.977, -34.087 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555947, "decimalLat": -28.399393 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394052, "decimalLat": -28.959014 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924725, "decimalLat": -31.439548 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518407, "decimalLat": -34.451507 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.712042, "decimalLat": -30.456182 }, "geometry": { "type": "Point", "coordinates": [ 152.712, -30.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627223, "decimalLat": -34.3858 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.913134, "decimalLat": -36.588285 }, "geometry": { "type": "Point", "coordinates": [ 149.913, -36.588 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109379, "decimalLat": -29.49046 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103355, "decimalLat": -29.489904 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533064, "decimalLat": -34.479679 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104058, "decimalLat": -29.485048 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.370545, "decimalLat": -31.919529 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.256079, "decimalLat": -31.008933 }, "geometry": { "type": "Point", "coordinates": [ 150.256, -31.009 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.547073, "decimalLat": -34.746596 }, "geometry": { "type": "Point", "coordinates": [ 146.547, -34.747 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563801, "decimalLat": -28.395201 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925144, "decimalLat": -31.454012 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.551708, "decimalLat": -33.492358 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374256, "decimalLat": -31.916023 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615462, "decimalLat": -34.449951 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523256, "decimalLat": -34.466021 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.443051, "decimalLat": -31.823416 }, "geometry": { "type": "Point", "coordinates": [ 152.443, -31.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616255, "decimalLat": -34.435839 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615352, "decimalLat": -34.44005 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527204, "decimalLat": -34.469445 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076605, "decimalLat": -32.724731 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784731, "decimalLat": -33.713391 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.92539, "decimalLat": -32.586245 }, "geometry": { "type": "Point", "coordinates": [ 151.925, -32.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.322263, "decimalLat": -33.497426 }, "geometry": { "type": "Point", "coordinates": [ 149.322, -33.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645521, "decimalLat": -33.589049 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -33.589 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518314, "decimalLat": -34.450964 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101306, "decimalLat": -29.489923 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812345, "decimalLat": -34.124693 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.125 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.574475, "decimalLat": -32.838109 }, "geometry": { "type": "Point", "coordinates": [ 151.574, -32.838 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925188, "decimalLat": -31.453488 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517239, "decimalLat": -34.451988 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.540998, "decimalLat": -37.301692 }, "geometry": { "type": "Point", "coordinates": [ 149.541, -37.302 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.398389, "decimalLat": -31.906075 }, "geometry": { "type": "Point", "coordinates": [ 152.398, -31.906 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.480602, "decimalLat": -28.702654 }, "geometry": { "type": "Point", "coordinates": [ 153.481, -28.703 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922989, "decimalLat": -31.475595 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627137, "decimalLat": -34.421175 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.472525, "decimalLat": -28.557038 }, "geometry": { "type": "Point", "coordinates": [ 153.473, -28.557 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916585, "decimalLat": -31.450474 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.841456, "decimalLat": -34.134377 }, "geometry": { "type": "Point", "coordinates": [ 150.841, -34.134 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990368, "decimalLat": -34.025794 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.026 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.003025, "decimalLat": -29.182078 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -29.182 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.965822, "decimalLat": -31.200967 }, "geometry": { "type": "Point", "coordinates": [ 152.966, -31.201 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606722, "decimalLat": -34.437807 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91454, "decimalLat": -31.46705 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920964, "decimalLat": -31.445923 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515792, "decimalLat": -34.450877 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629659, "decimalLat": -28.637548 }, "geometry": { "type": "Point", "coordinates": [ 153.63, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632647, "decimalLat": -34.418316 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.559732, "decimalLat": -34.535992 }, "geometry": { "type": "Point", "coordinates": [ 150.56, -34.536 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103908, "decimalLat": -29.489596 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374234, "decimalLat": -31.916151 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.001829, "decimalLat": -34.05547 }, "geometry": { "type": "Point", "coordinates": [ 151.002, -34.055 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602811, "decimalLat": -34.424622 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.44088, "decimalLat": -28.982871 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.709614, "decimalLat": -29.634217 }, "geometry": { "type": "Point", "coordinates": [ 150.71, -29.634 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878559, "decimalLat": -29.662073 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62717, "decimalLat": -34.389595 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.993848, "decimalLat": -34.049743 }, "geometry": { "type": "Point", "coordinates": [ 150.994, -34.05 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630353, "decimalLat": -34.42094 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.682486, "decimalLat": -30.480298 }, "geometry": { "type": "Point", "coordinates": [ 152.682, -30.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63506, "decimalLat": -34.486303 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614134, "decimalLat": -34.429703 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522337, "decimalLat": -34.465822 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92333, "decimalLat": -31.470015 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.761695, "decimalLat": -31.492172 }, "geometry": { "type": "Point", "coordinates": [ 152.762, -31.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.936226, "decimalLat": -32.322262 }, "geometry": { "type": "Point", "coordinates": [ 149.936, -32.322 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524638, "decimalLat": -34.452048 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609942, "decimalLat": -34.455018 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374205, "decimalLat": -31.915303 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394592, "decimalLat": -28.960091 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283518, "decimalLat": -28.774274 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -28.774 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930119, "decimalLat": -29.734477 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.734 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644223, "decimalLat": -34.394225 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894407, "decimalLat": -31.430976 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.126517, "decimalLat": -35.066677 }, "geometry": { "type": "Point", "coordinates": [ 150.127, -35.067 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521351, "decimalLat": -34.464936 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517939, "decimalLat": -34.437903 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513827, "decimalLat": -34.446311 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.395108, "decimalLat": -29.047548 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.048 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787664, "decimalLat": -31.636692 }, "geometry": { "type": "Point", "coordinates": [ 152.788, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396431, "decimalLat": -29.095634 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -29.096 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516326, "decimalLat": -34.448643 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315556, "decimalLat": -28.827302 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091698, "decimalLat": -30.353831 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -30.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313361, "decimalLat": -28.855518 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.856 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822669, "decimalLat": -31.56309 }, "geometry": { "type": "Point", "coordinates": [ 152.823, -31.563 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.120998, "decimalLat": -30.297938 }, "geometry": { "type": "Point", "coordinates": [ 153.121, -30.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642916, "decimalLat": -34.394695 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003869, "decimalLat": -32.696024 }, "geometry": { "type": "Point", "coordinates": [ 150.004, -32.696 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.717837, "decimalLat": -32.662351 }, "geometry": { "type": "Point", "coordinates": [ 151.718, -32.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622973, "decimalLat": -34.385744 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916581, "decimalLat": -31.439114 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.997525, "decimalLat": -29.517807 }, "geometry": { "type": "Point", "coordinates": [ 150.998, -29.518 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107969, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601298, "decimalLat": -34.417398 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89453, "decimalLat": -31.44548 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872851, "decimalLat": -29.689675 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -29.69 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.965822, "decimalLat": -31.200967 }, "geometry": { "type": "Point", "coordinates": [ 152.966, -31.201 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.136691, "decimalLat": -32.719138 }, "geometry": { "type": "Point", "coordinates": [ 152.137, -32.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522083, "decimalLat": -34.465943 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879472, "decimalLat": -31.448729 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.841739, "decimalLat": -31.546836 }, "geometry": { "type": "Point", "coordinates": [ 152.842, -31.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603397, "decimalLat": -34.438779 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905097, "decimalLat": -31.466051 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605211, "decimalLat": -34.426319 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077686, "decimalLat": -32.722004 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288957, "decimalLat": -28.818109 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375095, "decimalLat": -28.252332 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523468, "decimalLat": -34.459219 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.976748, "decimalLat": -31.139874 }, "geometry": { "type": "Point", "coordinates": [ 152.977, -31.14 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.092424, "decimalLat": -32.738356 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637346, "decimalLat": -34.423762 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302976, "decimalLat": -28.68189 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.682 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.243253, "decimalLat": -33.127446 }, "geometry": { "type": "Point", "coordinates": [ 151.243, -33.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.265614, "decimalLat": -28.892998 }, "geometry": { "type": "Point", "coordinates": [ 153.266, -28.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518997, "decimalLat": -34.438564 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.780737, "decimalLat": -31.631109 }, "geometry": { "type": "Point", "coordinates": [ 152.781, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.728124, "decimalLat": -31.454545 }, "geometry": { "type": "Point", "coordinates": [ 152.728, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631499, "decimalLat": -34.388416 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29339, "decimalLat": -28.864601 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916581, "decimalLat": -31.444823 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.556772, "decimalLat": -34.474832 }, "geometry": { "type": "Point", "coordinates": [ 150.557, -34.475 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.834928, "decimalLat": -31.472086 }, "geometry": { "type": "Point", "coordinates": [ 152.835, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638043, "decimalLat": -34.419854 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.284, "decimalLat": -28.970108 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -28.97 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534883, "decimalLat": -34.463362 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607178, "decimalLat": -28.662723 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.089552, "decimalLat": -32.728099 }, "geometry": { "type": "Point", "coordinates": [ 152.09, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606812, "decimalLat": -34.429677 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602294, "decimalLat": -34.425964 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793049, "decimalLat": -31.641807 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395101, "decimalLat": -29.034894 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.035 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093699, "decimalLat": -29.488863 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630529, "decimalLat": -34.395051 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619143, "decimalLat": -34.436833 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565144, "decimalLat": -28.388785 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603999, "decimalLat": -34.427594 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.689145, "decimalLat": -32.499604 }, "geometry": { "type": "Point", "coordinates": [ 151.689, -32.5 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.478898, "decimalLat": -31.444171 }, "geometry": { "type": "Point", "coordinates": [ 151.479, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428133, "decimalLat": -28.558093 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.558 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.564402, "decimalLat": -29.545672 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -29.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378502, "decimalLat": -31.914527 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104133, "decimalLat": -29.480887 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.383849, "decimalLat": -28.786751 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -28.787 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515698, "decimalLat": -34.438632 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515778, "decimalLat": -34.444737 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611309, "decimalLat": -34.430712 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.069137, "decimalLat": -32.707881 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639614, "decimalLat": -34.399184 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.995496, "decimalLat": -34.086919 }, "geometry": { "type": "Point", "coordinates": [ 150.995, -34.087 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614225, "decimalLat": -34.429543 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.168349, "decimalLat": -33.12666 }, "geometry": { "type": "Point", "coordinates": [ 151.168, -33.127 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314, "decimalLat": -28.885388 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.885 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644542, "decimalLat": -34.393726 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393381, "decimalLat": -28.275426 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.275 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635252, "decimalLat": -34.419683 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342482, "decimalLat": -28.805797 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079387, "decimalLat": -32.727247 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.472894, "decimalLat": -28.625862 }, "geometry": { "type": "Point", "coordinates": [ 153.473, -28.626 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.886858, "decimalLat": -31.205821 }, "geometry": { "type": "Point", "coordinates": [ 151.887, -31.206 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919629, "decimalLat": -30.506035 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.040663, "decimalLat": -32.738125 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314238, "decimalLat": -28.851397 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920332, "decimalLat": -31.446761 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.041302, "decimalLat": -32.735072 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641287, "decimalLat": -34.398883 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.708098, "decimalLat": -31.312682 }, "geometry": { "type": "Point", "coordinates": [ 152.708, -31.313 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.958028, "decimalLat": -30.648678 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -30.649 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922915, "decimalLat": -31.460633 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88604, "decimalLat": -31.439303 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561166, "decimalLat": -28.389204 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.28521, "decimalLat": -36.17839 }, "geometry": { "type": "Point", "coordinates": [ 149.285, -36.178 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091543, "decimalLat": -29.487742 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.084305, "decimalLat": -32.177989 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.178 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605007, "decimalLat": -34.426964 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639109, "decimalLat": -34.421777 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520371, "decimalLat": -34.467152 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519333, "decimalLat": -34.448154 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615481, "decimalLat": -34.434363 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641375, "decimalLat": -34.393412 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614487, "decimalLat": -34.429512 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515888, "decimalLat": -34.450581 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633104, "decimalLat": -34.419479 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514613, "decimalLat": -34.447328 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521207, "decimalLat": -34.466132 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521238, "decimalLat": -34.466539 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39864, "decimalLat": -28.960219 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.683858, "decimalLat": -32.515445 }, "geometry": { "type": "Point", "coordinates": [ 151.684, -32.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513806, "decimalLat": -34.446284 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786379, "decimalLat": -33.706316 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658106, "decimalLat": -34.454463 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300789, "decimalLat": -28.995147 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.995 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639159, "decimalLat": -34.493072 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.008877, "decimalLat": -28.626573 }, "geometry": { "type": "Point", "coordinates": [ 153.009, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613983, "decimalLat": -34.433081 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629591, "decimalLat": -34.389353 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602818, "decimalLat": -34.443023 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.508229, "decimalLat": -28.618208 }, "geometry": { "type": "Point", "coordinates": [ 153.508, -28.618 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.424955, "decimalLat": -28.627538 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.628 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929616, "decimalLat": -31.459632 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532756, "decimalLat": -34.477951 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.478 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899936, "decimalLat": -29.630967 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.956941, "decimalLat": -36.59482 }, "geometry": { "type": "Point", "coordinates": [ 149.957, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103892, "decimalLat": -29.489573 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919691, "decimalLat": -31.469079 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.026355, "decimalLat": -30.90106 }, "geometry": { "type": "Point", "coordinates": [ 153.026, -30.901 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615113, "decimalLat": -34.435447 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602692, "decimalLat": -34.439072 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924957, "decimalLat": -31.459173 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.937485, "decimalLat": -32.734873 }, "geometry": { "type": "Point", "coordinates": [ 151.937, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.333126, "decimalLat": -28.657342 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -28.657 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.941256, "decimalLat": -30.406006 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -30.406 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.003078, "decimalLat": -34.070351 }, "geometry": { "type": "Point", "coordinates": [ 151.003, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517058, "decimalLat": -34.447441 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06619, "decimalLat": -32.71154 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.115787, "decimalLat": -28.663467 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.398048, "decimalLat": -28.289478 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.289 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521879, "decimalLat": -34.456675 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.54112, "decimalLat": -37.301986 }, "geometry": { "type": "Point", "coordinates": [ 149.541, -37.302 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.886444, "decimalLat": -34.060429 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.06 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790104, "decimalLat": -31.097275 }, "geometry": { "type": "Point", "coordinates": [ 152.79, -31.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797907, "decimalLat": -30.211999 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -30.212 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.793777, "decimalLat": -34.124127 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.124 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920937, "decimalLat": -31.464877 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292716, "decimalLat": -28.864016 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639057, "decimalLat": -34.491673 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311084, "decimalLat": -29.053851 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -29.054 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524933, "decimalLat": -34.460844 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092648, "decimalLat": -29.488298 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355785, "decimalLat": -31.85809 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.549488, "decimalLat": -28.588621 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636366, "decimalLat": -34.485553 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307622, "decimalLat": -28.994679 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.995 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.464244, "decimalLat": -28.861577 }, "geometry": { "type": "Point", "coordinates": [ 153.464, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.814622, "decimalLat": -34.131671 }, "geometry": { "type": "Point", "coordinates": [ 150.815, -34.132 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632678, "decimalLat": -34.392884 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638454, "decimalLat": -34.489506 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104037, "decimalLat": -29.478006 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.218628, "decimalLat": -28.826754 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.944451, "decimalLat": -28.736781 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -28.737 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.418019, "decimalLat": -28.873275 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -28.873 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.194715, "decimalLat": -28.885461 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -28.885 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.487147, "decimalLat": -32.353914 }, "geometry": { "type": "Point", "coordinates": [ 152.487, -32.354 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87264, "decimalLat": -29.685835 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -29.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521533, "decimalLat": -34.46576 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867939, "decimalLat": -31.116674 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.117 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658671, "decimalLat": -33.526795 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557066, "decimalLat": -28.393549 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104074, "decimalLat": -29.484236 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51727, "decimalLat": -34.452773 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627185, "decimalLat": -34.420662 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615616, "decimalLat": -34.440704 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.042791, "decimalLat": -34.024321 }, "geometry": { "type": "Point", "coordinates": [ 151.043, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.438099, "decimalLat": -34.463528 }, "geometry": { "type": "Point", "coordinates": [ 150.438, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928887, "decimalLat": -31.459167 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413695, "decimalLat": -31.932247 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525333, "decimalLat": -34.458373 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519628, "decimalLat": -34.452551 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.451604, "decimalLat": -28.590321 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522181, "decimalLat": -34.453423 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519764, "decimalLat": -34.447207 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.685616, "decimalLat": -34.265974 }, "geometry": { "type": "Point", "coordinates": [ 150.686, -34.266 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629029, "decimalLat": -28.639415 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.639 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394112, "decimalLat": -28.959793 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910758, "decimalLat": -31.431245 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520431, "decimalLat": -34.45409 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103366, "decimalLat": -29.489872 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276388, "decimalLat": -28.944726 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -28.945 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639133, "decimalLat": -34.491295 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.593823, "decimalLat": -34.423932 }, "geometry": { "type": "Point", "coordinates": [ 150.594, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634263, "decimalLat": -34.488695 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628067, "decimalLat": -34.390964 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108172, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530475, "decimalLat": -34.471495 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.811161, "decimalLat": -32.349456 }, "geometry": { "type": "Point", "coordinates": [ 151.811, -32.349 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.084116, "decimalLat": -32.739909 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519377, "decimalLat": -34.45662 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609187, "decimalLat": -34.420771 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.035758, "decimalLat": -32.764938 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627321, "decimalLat": -34.421233 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784542, "decimalLat": -33.717099 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.897341, "decimalLat": -32.142993 }, "geometry": { "type": "Point", "coordinates": [ 151.897, -32.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.574425, "decimalLat": -31.763675 }, "geometry": { "type": "Point", "coordinates": [ 152.574, -31.764 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.090768, "decimalLat": -31.681695 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -31.682 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637346, "decimalLat": -34.488628 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.492426, "decimalLat": -28.677125 }, "geometry": { "type": "Point", "coordinates": [ 153.492, -28.677 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.80272, "decimalLat": -31.361977 }, "geometry": { "type": "Point", "coordinates": [ 152.803, -31.362 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616926, "decimalLat": -34.399574 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.974625, "decimalLat": -34.125502 }, "geometry": { "type": "Point", "coordinates": [ 150.975, -34.126 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.355934, "decimalLat": -37.177314 }, "geometry": { "type": "Point", "coordinates": [ 149.356, -37.177 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105459, "decimalLat": -32.732607 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.85722, "decimalLat": -31.446555 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.645882, "decimalLat": -32.548688 }, "geometry": { "type": "Point", "coordinates": [ 151.646, -32.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513951, "decimalLat": -34.445809 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.586472, "decimalLat": -31.317656 }, "geometry": { "type": "Point", "coordinates": [ 152.586, -31.318 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063422, "decimalLat": -32.706338 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607267, "decimalLat": -28.677151 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.677 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916386, "decimalLat": -31.444891 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520035, "decimalLat": -34.435818 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628651, "decimalLat": -34.389136 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.415221, "decimalLat": -28.672232 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522478, "decimalLat": -34.465834 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785201, "decimalLat": -33.716898 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.371019, "decimalLat": -31.922893 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627391, "decimalLat": -34.420279 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085488, "decimalLat": -32.728518 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.543661, "decimalLat": -28.555867 }, "geometry": { "type": "Point", "coordinates": [ 153.544, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556967, "decimalLat": -28.390131 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616913, "decimalLat": -34.434914 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822801, "decimalLat": -34.15023 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517532, "decimalLat": -34.445783 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922675, "decimalLat": -31.460634 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630798, "decimalLat": -34.395164 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785398, "decimalLat": -31.632313 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842815, "decimalLat": -34.054474 }, "geometry": { "type": "Point", "coordinates": [ 150.843, -34.054 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625774, "decimalLat": -34.386286 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103849, "decimalLat": -29.485482 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786167, "decimalLat": -33.706031 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519961, "decimalLat": -34.446427 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627961, "decimalLat": -34.420533 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519513, "decimalLat": -34.455325 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984112, "decimalLat": -36.436474 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870673, "decimalLat": -31.462223 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793401, "decimalLat": -31.640939 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.641 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655795, "decimalLat": -34.458881 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893853, "decimalLat": -31.448539 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627216, "decimalLat": -34.396438 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898402, "decimalLat": -31.156809 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.157 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514299, "decimalLat": -34.446537 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518723, "decimalLat": -34.447096 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.401173, "decimalLat": -31.913783 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064274, "decimalLat": -32.710658 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.058595, "decimalLat": -29.74027 }, "geometry": { "type": "Point", "coordinates": [ 151.059, -29.74 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786302, "decimalLat": -31.489078 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.414272, "decimalLat": -28.869268 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608045, "decimalLat": -34.449012 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615892, "decimalLat": -34.435985 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520326, "decimalLat": -34.465745 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521586, "decimalLat": -34.465816 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.546274, "decimalLat": -28.607652 }, "geometry": { "type": "Point", "coordinates": [ 153.546, -28.608 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.540835, "decimalLat": -28.334542 }, "geometry": { "type": "Point", "coordinates": [ 152.541, -28.335 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104171, "decimalLat": -29.478104 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108178, "decimalLat": -29.490633 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071819, "decimalLat": -30.887327 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910397, "decimalLat": -31.46707 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630932, "decimalLat": -34.388477 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867889, "decimalLat": -29.667322 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.259326, "decimalLat": -30.414646 }, "geometry": { "type": "Point", "coordinates": [ 150.259, -30.415 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372334, "decimalLat": -31.921596 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869955, "decimalLat": -29.679624 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -29.68 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10115, "decimalLat": -29.490105 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094686, "decimalLat": -29.488443 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.367718, "decimalLat": -31.87515 }, "geometry": { "type": "Point", "coordinates": [ 152.368, -31.875 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927012, "decimalLat": -31.463165 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103902, "decimalLat": -29.489596 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632772, "decimalLat": -34.418517 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379214, "decimalLat": -31.918664 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513369, "decimalLat": -34.445977 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315755, "decimalLat": -28.826573 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616481, "decimalLat": -34.429433 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632815, "decimalLat": -34.418923 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.978942, "decimalLat": -34.094098 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530398, "decimalLat": -34.471511 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513108, "decimalLat": -34.447793 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515686, "decimalLat": -34.450794 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104069, "decimalLat": -29.485333 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531589, "decimalLat": -34.407116 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.407 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531339, "decimalLat": -34.473198 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637294, "decimalLat": -34.420552 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279507, "decimalLat": -28.675667 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.073278, "decimalLat": -28.764551 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -28.765 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.32363, "decimalLat": -36.298805 }, "geometry": { "type": "Point", "coordinates": [ 149.324, -36.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640111, "decimalLat": -34.396985 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.325382, "decimalLat": -29.03349 }, "geometry": { "type": "Point", "coordinates": [ 150.325, -29.033 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645233, "decimalLat": -34.391557 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604434, "decimalLat": -34.437889 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314439, "decimalLat": -28.850926 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636688, "decimalLat": -34.488021 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630388, "decimalLat": -34.420869 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912457, "decimalLat": -31.487467 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637269, "decimalLat": -34.422219 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602311, "decimalLat": -34.426136 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520571, "decimalLat": -34.446791 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.036879, "decimalLat": -36.579011 }, "geometry": { "type": "Point", "coordinates": [ 150.037, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520431, "decimalLat": -34.45409 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641387, "decimalLat": -34.393359 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.887619, "decimalLat": -30.032042 }, "geometry": { "type": "Point", "coordinates": [ 151.888, -30.032 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.976748, "decimalLat": -31.139874 }, "geometry": { "type": "Point", "coordinates": [ 152.977, -31.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613906, "decimalLat": -34.433107 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786222, "decimalLat": -29.577973 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -29.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60529, "decimalLat": -34.438023 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.817791, "decimalLat": -31.650375 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635608, "decimalLat": -34.418238 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.355915, "decimalLat": -28.54496 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -28.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793752, "decimalLat": -31.641257 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.641 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522991, "decimalLat": -34.466178 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279743, "decimalLat": -28.831273 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.935177, "decimalLat": -29.040719 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -29.041 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516542, "decimalLat": -34.469274 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824887, "decimalLat": -31.529078 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108113, "decimalLat": -29.490287 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642131, "decimalLat": -34.396294 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101274, "decimalLat": -29.489722 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516571, "decimalLat": -34.44698 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642855, "decimalLat": -34.395695 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10401, "decimalLat": -29.485165 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617406, "decimalLat": -34.399881 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.820061, "decimalLat": -31.300188 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.3 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602031, "decimalLat": -34.425644 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.986501, "decimalLat": -34.025301 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.499903, "decimalLat": -28.324552 }, "geometry": { "type": "Point", "coordinates": [ 152.5, -28.325 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883935, "decimalLat": -31.42899 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.209378, "decimalLat": -31.560754 }, "geometry": { "type": "Point", "coordinates": [ 152.209, -31.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533036, "decimalLat": -34.481364 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.935141, "decimalLat": -29.041187 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -29.041 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200485, "decimalLat": -29.353951 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609509, "decimalLat": -34.419011 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063784, "decimalLat": -32.706589 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872473, "decimalLat": -31.476795 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094107, "decimalLat": -29.488751 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.000663, "decimalLat": -30.408676 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -30.409 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637346, "decimalLat": -34.488628 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.057755, "decimalLat": -32.738231 }, "geometry": { "type": "Point", "coordinates": [ 152.058, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925013, "decimalLat": -31.453919 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530412, "decimalLat": -34.471421 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907025, "decimalLat": -31.450114 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626515, "decimalLat": -34.386228 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637158, "decimalLat": -34.423858 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907157, "decimalLat": -31.440919 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.980914, "decimalLat": -30.419707 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -30.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924983, "decimalLat": -31.459272 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627379, "decimalLat": -34.420332 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637782, "decimalLat": -34.49016 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316981, "decimalLat": -28.949626 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608415, "decimalLat": -34.454357 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644297, "decimalLat": -34.393135 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608992, "decimalLat": -34.420371 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.859976, "decimalLat": -38.670984 }, "geometry": { "type": "Point", "coordinates": [ 143.86, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90077, "decimalLat": -31.442793 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522368, "decimalLat": -34.440472 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873002, "decimalLat": -31.431589 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.385203, "decimalLat": -31.928475 }, "geometry": { "type": "Point", "coordinates": [ 152.385, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.807222, "decimalLat": -34.218889 }, "geometry": { "type": "Point", "coordinates": [ 150.807, -34.219 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.204264, "decimalLat": -32.226111 }, "geometry": { "type": "Point", "coordinates": [ 152.204, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638882, "decimalLat": -34.491687 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.955477, "decimalLat": -30.419061 }, "geometry": { "type": "Point", "coordinates": [ 152.955, -30.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.883133, "decimalLat": -34.064487 }, "geometry": { "type": "Point", "coordinates": [ 150.883, -34.064 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110281, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783268, "decimalLat": -33.717888 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527366, "decimalLat": -34.444546 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.431324, "decimalLat": -29.016415 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870526, "decimalLat": -31.467144 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931388, "decimalLat": -36.568584 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604356, "decimalLat": -34.423111 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.857326, "decimalLat": -30.314157 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -30.314 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627233, "decimalLat": -34.385827 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.043056, "decimalLat": -30.892416 }, "geometry": { "type": "Point", "coordinates": [ 150.043, -30.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514204, "decimalLat": -34.446445 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822863, "decimalLat": -34.127969 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640028, "decimalLat": -34.492746 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563634, "decimalLat": -28.372948 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.373 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912844, "decimalLat": -31.485941 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.612126, "decimalLat": -28.661581 }, "geometry": { "type": "Point", "coordinates": [ 153.612, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.408667, "decimalLat": -28.660662 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517337, "decimalLat": -34.451999 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077582, "decimalLat": -30.345268 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.345 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104273, "decimalLat": -29.480103 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524032, "decimalLat": -34.463332 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519974, "decimalLat": -34.452621 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520402, "decimalLat": -34.465737 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597929, "decimalLat": -34.427934 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91509, "decimalLat": -31.482501 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.483 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.388879, "decimalLat": -28.556794 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.557 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923338, "decimalLat": -31.447023 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605059, "decimalLat": -34.427037 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597004, "decimalLat": -34.414267 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.415262, "decimalLat": -28.672208 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064437, "decimalLat": -32.707572 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073059, "decimalLat": -32.724707 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.133162, "decimalLat": -30.090648 }, "geometry": { "type": "Point", "coordinates": [ 152.133, -30.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526107, "decimalLat": -34.465339 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.59149, "decimalLat": -31.558658 }, "geometry": { "type": "Point", "coordinates": [ 152.591, -31.559 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192632, "decimalLat": -32.228945 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.238682, "decimalLat": -29.349537 }, "geometry": { "type": "Point", "coordinates": [ 153.239, -29.35 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.956199, "decimalLat": -28.598747 }, "geometry": { "type": "Point", "coordinates": [ 152.956, -28.599 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.314239, "decimalLat": -36.297175 }, "geometry": { "type": "Point", "coordinates": [ 149.314, -36.297 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615876, "decimalLat": -34.430801 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632033, "decimalLat": -34.418106 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637313, "decimalLat": -34.423743 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630251, "decimalLat": -34.420343 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624418, "decimalLat": -34.388081 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520373, "decimalLat": -34.46562 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.034457, "decimalLat": -32.626309 }, "geometry": { "type": "Point", "coordinates": [ 152.034, -32.626 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527408, "decimalLat": -34.469558 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.815948, "decimalLat": -31.280222 }, "geometry": { "type": "Point", "coordinates": [ 152.816, -31.28 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.968362, "decimalLat": -28.370084 }, "geometry": { "type": "Point", "coordinates": [ 152.968, -28.37 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.38222, "decimalLat": -32.142053 }, "geometry": { "type": "Point", "coordinates": [ 152.382, -32.142 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.841109, "decimalLat": -31.463547 }, "geometry": { "type": "Point", "coordinates": [ 152.841, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922015, "decimalLat": -31.439312 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109798, "decimalLat": -29.492809 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636325, "decimalLat": -34.421741 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615055, "decimalLat": -34.431371 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521307, "decimalLat": -34.465693 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.798232, "decimalLat": -34.112167 }, "geometry": { "type": "Point", "coordinates": [ 150.798, -34.112 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109347, "decimalLat": -29.490535 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277774, "decimalLat": -28.938183 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.938 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627698, "decimalLat": -34.420979 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632777, "decimalLat": -34.418697 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785095, "decimalLat": -33.714137 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923313, "decimalLat": -31.463554 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900779, "decimalLat": -31.44303 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.499021, "decimalLat": -28.769005 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.769 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915386, "decimalLat": -31.445726 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318048, "decimalLat": -28.825027 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597107, "decimalLat": -34.428522 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381458, "decimalLat": -31.886017 }, "geometry": { "type": "Point", "coordinates": [ 152.381, -31.886 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081079, "decimalLat": -32.732887 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.527217, "decimalLat": -32.597777 }, "geometry": { "type": "Point", "coordinates": [ 149.527, -32.598 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.649182, "decimalLat": -31.862684 }, "geometry": { "type": "Point", "coordinates": [ 152.649, -31.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659724, "decimalLat": -34.455783 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516826, "decimalLat": -34.445002 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065329, "decimalLat": -32.711305 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.104457, "decimalLat": -33.779809 }, "geometry": { "type": "Point", "coordinates": [ 150.104, -33.78 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516086, "decimalLat": -34.446844 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938213, "decimalLat": -36.559404 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.594676, "decimalLat": -34.427573 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.432053, "decimalLat": -28.568771 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103849, "decimalLat": -29.484973 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91498, "decimalLat": -31.455568 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394509, "decimalLat": -28.271479 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.271 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606861, "decimalLat": -34.438639 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293096, "decimalLat": -28.864669 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633678, "decimalLat": -34.41839 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790562, "decimalLat": -34.143596 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786962, "decimalLat": -33.705834 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513106, "decimalLat": -34.446026 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516515, "decimalLat": -34.449972 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.816719, "decimalLat": -30.258617 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -30.259 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.586413, "decimalLat": -31.733473 }, "geometry": { "type": "Point", "coordinates": [ 149.586, -31.733 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924359, "decimalLat": -30.506388 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.41204, "decimalLat": -28.955488 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -28.955 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640992, "decimalLat": -34.393883 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640582, "decimalLat": -34.395714 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921011, "decimalLat": -31.464859 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360617, "decimalLat": -28.840581 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822079, "decimalLat": -34.099806 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.00415, "decimalLat": -29.184506 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -29.185 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522328, "decimalLat": -34.465777 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321625, "decimalLat": -28.823754 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.963785, "decimalLat": -31.255633 }, "geometry": { "type": "Point", "coordinates": [ 152.964, -31.256 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523607, "decimalLat": -34.465577 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838978, "decimalLat": -34.053416 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922398, "decimalLat": -31.478063 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927639, "decimalLat": -31.465638 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.430628, "decimalLat": -28.604396 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -28.604 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303853, "decimalLat": -28.820797 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.488157, "decimalLat": -28.244245 }, "geometry": { "type": "Point", "coordinates": [ 153.488, -28.244 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.340736, "decimalLat": -28.835022 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -28.835 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404551, "decimalLat": -31.924329 }, "geometry": { "type": "Point", "coordinates": [ 152.405, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.646747, "decimalLat": -30.539993 }, "geometry": { "type": "Point", "coordinates": [ 152.647, -30.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900779, "decimalLat": -31.44303 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.113424, "decimalLat": -33.774132 }, "geometry": { "type": "Point", "coordinates": [ 150.113, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795771, "decimalLat": -31.451845 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639088, "decimalLat": -34.49134 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627727, "decimalLat": -34.421096 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06684, "decimalLat": -34.91043 }, "geometry": { "type": "Point", "coordinates": [ 150.067, -34.91 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.628116, "decimalLat": -32.644476 }, "geometry": { "type": "Point", "coordinates": [ 151.628, -32.644 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597808, "decimalLat": -34.428004 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793878, "decimalLat": -31.642109 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868227, "decimalLat": -31.472958 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108156, "decimalLat": -29.490586 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104074, "decimalLat": -29.479958 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394441, "decimalLat": -28.95951 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522213, "decimalLat": -34.464873 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984472, "decimalLat": -34.093044 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608538, "decimalLat": -34.422562 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072142, "decimalLat": -32.747146 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.747 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.699196, "decimalLat": -34.245314 }, "geometry": { "type": "Point", "coordinates": [ 150.699, -34.245 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905233, "decimalLat": -31.438806 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.490213, "decimalLat": -28.665061 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.665 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521398, "decimalLat": -34.466659 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907677, "decimalLat": -29.618322 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -29.618 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907578, "decimalLat": -31.450986 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786943, "decimalLat": -31.629349 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060163, "decimalLat": -31.796829 }, "geometry": { "type": "Point", "coordinates": [ 152.06, -31.797 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.708619, "decimalLat": -31.551166 }, "geometry": { "type": "Point", "coordinates": [ 152.709, -31.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072752, "decimalLat": -32.710743 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515819, "decimalLat": -34.446676 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635335, "decimalLat": -34.420198 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6272, "decimalLat": -34.385836 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520278, "decimalLat": -34.465897 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.183766, "decimalLat": -29.442147 }, "geometry": { "type": "Point", "coordinates": [ 153.184, -29.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516039, "decimalLat": -34.449872 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628856, "decimalLat": -34.389203 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596082, "decimalLat": -34.411499 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.411 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635361, "decimalLat": -34.488365 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.363012, "decimalLat": -28.809402 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270683, "decimalLat": -28.873561 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.664144, "decimalLat": -34.45887 }, "geometry": { "type": "Point", "coordinates": [ 150.664, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.709125, "decimalLat": -31.78661 }, "geometry": { "type": "Point", "coordinates": [ 152.709, -31.787 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110538, "decimalLat": -29.490189 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.188823, "decimalLat": -28.921839 }, "geometry": { "type": "Point", "coordinates": [ 153.189, -28.922 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.219057, "decimalLat": -28.825024 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873532, "decimalLat": -31.457439 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929225, "decimalLat": -31.457249 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604354, "decimalLat": -34.450229 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513903, "decimalLat": -34.447061 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643049, "decimalLat": -34.395365 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.798476, "decimalLat": -34.210931 }, "geometry": { "type": "Point", "coordinates": [ 150.798, -34.211 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556106, "decimalLat": -28.398612 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109422, "decimalLat": -29.490488 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.481092, "decimalLat": -28.705596 }, "geometry": { "type": "Point", "coordinates": [ 153.481, -28.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124516, "decimalLat": -30.296554 }, "geometry": { "type": "Point", "coordinates": [ 153.125, -30.297 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893458, "decimalLat": -31.438416 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63379, "decimalLat": -34.489254 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103532, "decimalLat": -29.485464 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105201, "decimalLat": -29.48968 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629795, "decimalLat": -34.394469 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076592, "decimalLat": -32.725201 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905728, "decimalLat": -31.437105 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559543, "decimalLat": -28.393755 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597446, "decimalLat": -34.416674 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.856176, "decimalLat": -31.134726 }, "geometry": { "type": "Point", "coordinates": [ 152.856, -31.135 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617259, "decimalLat": -34.438437 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605972, "decimalLat": -34.437775 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921166, "decimalLat": -31.447007 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515821, "decimalLat": -34.448813 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605178, "decimalLat": -34.433179 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.038319, "decimalLat": -32.023018 }, "geometry": { "type": "Point", "coordinates": [ 152.038, -32.023 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915305, "decimalLat": -31.433556 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607684, "decimalLat": -34.422004 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.647891, "decimalLat": -34.398001 }, "geometry": { "type": "Point", "coordinates": [ 150.648, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82371, "decimalLat": -34.150763 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.151 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564663, "decimalLat": -28.327875 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631473, "decimalLat": -34.387812 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307849, "decimalLat": -28.849639 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87268, "decimalLat": -31.15015 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093225, "decimalLat": -29.492672 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532545, "decimalLat": -34.476 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8479, "decimalLat": -31.2031 }, "geometry": { "type": "Point", "coordinates": [ 152.848, -31.203 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311323, "decimalLat": -28.838303 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395223, "decimalLat": -28.959983 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562205, "decimalLat": -28.669181 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404497, "decimalLat": -31.920338 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103876, "decimalLat": -29.489554 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919793, "decimalLat": -31.471842 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630939, "decimalLat": -34.388234 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293212, "decimalLat": -28.864673 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303848, "decimalLat": -28.888958 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625981, "decimalLat": -34.387822 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809779, "decimalLat": -34.093907 }, "geometry": { "type": "Point", "coordinates": [ 150.81, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516355, "decimalLat": -34.4473 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.778378, "decimalLat": -34.139613 }, "geometry": { "type": "Point", "coordinates": [ 150.778, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609147, "decimalLat": -34.420671 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921265, "decimalLat": -31.440595 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322444, "decimalLat": -28.825855 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.85229, "decimalLat": -34.076232 }, "geometry": { "type": "Point", "coordinates": [ 150.852, -34.076 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527028, "decimalLat": -34.469514 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637312, "decimalLat": -34.423788 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077582, "decimalLat": -30.345268 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.345 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63979, "decimalLat": -34.400288 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.078045, "decimalLat": -29.765612 }, "geometry": { "type": "Point", "coordinates": [ 151.078, -29.766 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606992, "decimalLat": -34.437488 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604533, "decimalLat": -34.426432 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518237, "decimalLat": -34.446599 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622972, "decimalLat": -34.385781 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.995573, "decimalLat": -36.572611 }, "geometry": { "type": "Point", "coordinates": [ 149.996, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604802, "decimalLat": -34.431107 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.205077, "decimalLat": -28.74311 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -28.743 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.355939, "decimalLat": -28.892514 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -28.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.54948, "decimalLat": -28.59176 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.592 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.712084, "decimalLat": -30.456245 }, "geometry": { "type": "Point", "coordinates": [ 152.712, -30.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527128, "decimalLat": -34.469444 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.0566, "decimalLat": -32.73714 }, "geometry": { "type": "Point", "coordinates": [ 152.057, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.796574, "decimalLat": -31.15266 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.153 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434152, "decimalLat": -28.868822 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813428, "decimalLat": -33.365815 }, "geometry": { "type": "Point", "coordinates": [ 150.813, -33.366 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10379, "decimalLat": -29.485394 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.728373, "decimalLat": -31.351 }, "geometry": { "type": "Point", "coordinates": [ 152.728, -31.351 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595842, "decimalLat": -34.425594 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10696, "decimalLat": -29.474508 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606671, "decimalLat": -34.45599 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299477, "decimalLat": -28.888595 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.921178, "decimalLat": -36.633581 }, "geometry": { "type": "Point", "coordinates": [ 149.921, -36.634 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.041634, "decimalLat": -32.736268 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104128, "decimalLat": -29.480084 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922407, "decimalLat": -31.463065 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374047, "decimalLat": -31.913202 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64612, "decimalLat": -34.394847 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.33019, "decimalLat": -28.72455 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603757, "decimalLat": -34.439507 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884499, "decimalLat": -31.430245 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324858, "decimalLat": -36.294142 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.294 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063761, "decimalLat": -32.706506 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.844837, "decimalLat": -29.834296 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.609345, "decimalLat": -32.544025 }, "geometry": { "type": "Point", "coordinates": [ 151.609, -32.544 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782582, "decimalLat": -33.71937 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427129, "decimalLat": -28.627546 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.628 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104015, "decimalLat": -29.485366 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596533, "decimalLat": -34.411355 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.411 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793317, "decimalLat": -31.521223 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.521 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.964893, "decimalLat": -28.617114 }, "geometry": { "type": "Point", "coordinates": [ 152.965, -28.617 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929282, "decimalLat": -31.450504 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412507, "decimalLat": -31.932356 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103774, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90615, "decimalLat": -30.23792 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -30.238 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355785, "decimalLat": -31.85809 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615955, "decimalLat": -34.43531 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519148, "decimalLat": -34.459942 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62714, "decimalLat": -34.396455 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322828, "decimalLat": -28.833741 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518324, "decimalLat": -34.451379 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.329144, "decimalLat": -28.814882 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31614, "decimalLat": -28.820272 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632647, "decimalLat": -34.417928 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786234, "decimalLat": -33.706006 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626554, "decimalLat": -34.385625 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640605, "decimalLat": -34.394876 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639363, "decimalLat": -34.399603 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.184984, "decimalLat": -28.923632 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -28.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628024, "decimalLat": -34.420994 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925578, "decimalLat": -31.458842 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632215, "decimalLat": -34.393885 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920189, "decimalLat": -31.475328 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108231, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908508, "decimalLat": -31.442382 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530108, "decimalLat": -34.47101 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522206, "decimalLat": -34.451476 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60672, "decimalLat": -34.45005 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605671, "decimalLat": -34.431539 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518997, "decimalLat": -34.459876 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606521, "decimalLat": -34.450948 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063709, "decimalLat": -32.706409 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.160787, "decimalLat": -30.094803 }, "geometry": { "type": "Point", "coordinates": [ 152.161, -30.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631483, "decimalLat": -34.38783 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061046, "decimalLat": -32.710844 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606647, "decimalLat": -34.439654 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616163, "decimalLat": -34.434503 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10998, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.39323, "decimalLat": -36.16555 }, "geometry": { "type": "Point", "coordinates": [ 149.393, -36.166 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835114, "decimalLat": -34.069621 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919343, "decimalLat": -31.455352 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.970444, "decimalLat": -31.192111 }, "geometry": { "type": "Point", "coordinates": [ 152.97, -31.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523259, "decimalLat": -34.465931 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880948, "decimalLat": -31.42427 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.372063, "decimalLat": -36.009731 }, "geometry": { "type": "Point", "coordinates": [ 149.372, -36.01 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522357, "decimalLat": -34.465137 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910603, "decimalLat": -31.465481 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632777, "decimalLat": -34.418697 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.171289, "decimalLat": -32.728985 }, "geometry": { "type": "Point", "coordinates": [ 152.171, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609319, "decimalLat": -34.419214 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.802007, "decimalLat": -31.125681 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522625, "decimalLat": -34.466747 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617709, "decimalLat": -34.438653 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810422, "decimalLat": -29.805125 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -29.805 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630077, "decimalLat": -34.4207 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067068, "decimalLat": -32.71018 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.33124, "decimalLat": -28.82175 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.37953, "decimalLat": -32.41352 }, "geometry": { "type": "Point", "coordinates": [ 149.38, -32.414 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109379, "decimalLat": -29.490591 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091103, "decimalLat": -28.599122 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -28.599 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910308, "decimalLat": -31.475697 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.14047, "decimalLat": -31.463603 }, "geometry": { "type": "Point", "coordinates": [ 152.14, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103656, "decimalLat": -29.485548 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914523, "decimalLat": -31.466584 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.417286, "decimalLat": -28.872591 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.873 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.387172, "decimalLat": -31.87656 }, "geometry": { "type": "Point", "coordinates": [ 152.387, -31.877 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526079, "decimalLat": -34.457775 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103784, "decimalLat": -29.485524 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895156, "decimalLat": -31.42587 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627391, "decimalLat": -34.420297 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.466287, "decimalLat": -29.222477 }, "geometry": { "type": "Point", "coordinates": [ 152.466, -29.222 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52074, "decimalLat": -34.465708 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519071, "decimalLat": -34.447464 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367005, "decimalLat": -28.98155 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -28.982 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641678, "decimalLat": -34.39578 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929081, "decimalLat": -29.725873 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -29.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595794, "decimalLat": -34.428424 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063875, "decimalLat": -32.706456 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493023, "decimalLat": -28.675517 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916257, "decimalLat": -29.594605 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -29.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627842, "decimalLat": -34.397379 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629299, "decimalLat": -34.387373 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630032, "decimalLat": -34.39533 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10379, "decimalLat": -32.759253 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.759 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517698, "decimalLat": -34.441639 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863454, "decimalLat": -31.299562 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -31.3 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27744, "decimalLat": -28.940107 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.977487, "decimalLat": -34.024355 }, "geometry": { "type": "Point", "coordinates": [ 150.977, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627393, "decimalLat": -34.420224 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516998, "decimalLat": -34.448738 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513917, "decimalLat": -34.445835 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.402904, "decimalLat": -31.925023 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627101, "decimalLat": -34.389719 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606417, "decimalLat": -34.435133 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557375, "decimalLat": -28.397359 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890899, "decimalLat": -30.241888 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -30.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.970601, "decimalLat": -34.02929 }, "geometry": { "type": "Point", "coordinates": [ 150.971, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616375, "decimalLat": -34.43622 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40074, "decimalLat": -28.256434 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105332, "decimalLat": -32.72777 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624861, "decimalLat": -34.399746 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627942, "decimalLat": -34.420821 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523373, "decimalLat": -34.464662 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514096, "decimalLat": -34.446398 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.15762, "decimalLat": -32.724723 }, "geometry": { "type": "Point", "coordinates": [ 152.158, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.1747, "decimalLat": -29.173097 }, "geometry": { "type": "Point", "coordinates": [ 150.175, -29.173 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108773, "decimalLat": -29.49004 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063499, "decimalLat": -32.706456 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.789896, "decimalLat": -32.654848 }, "geometry": { "type": "Point", "coordinates": [ 151.79, -32.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90139, "decimalLat": -31.440417 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301536, "decimalLat": -28.9982 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.998 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.412731, "decimalLat": -28.95397 }, "geometry": { "type": "Point", "coordinates": [ 153.413, -28.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62395, "decimalLat": -34.388883 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.14174, "decimalLat": -31.417406 }, "geometry": { "type": "Point", "coordinates": [ 152.142, -31.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606502, "decimalLat": -34.435216 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.970782, "decimalLat": -33.797571 }, "geometry": { "type": "Point", "coordinates": [ 150.971, -33.798 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62756, "decimalLat": -34.385419 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.808442, "decimalLat": -31.13789 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -31.138 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.337681, "decimalLat": -28.867843 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -28.868 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522441, "decimalLat": -34.453455 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61574, "decimalLat": -34.43289 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.037864, "decimalLat": -32.736847 }, "geometry": { "type": "Point", "coordinates": [ 152.038, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.326352, "decimalLat": -28.997617 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.998 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617817, "decimalLat": -34.439845 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823278, "decimalLat": -31.424486 }, "geometry": { "type": "Point", "coordinates": [ 152.823, -31.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5239, "decimalLat": -34.463771 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615782, "decimalLat": -34.436425 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638248, "decimalLat": -34.491017 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92202, "decimalLat": -31.450036 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786177, "decimalLat": -33.706019 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895067, "decimalLat": -31.429062 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824668, "decimalLat": -29.505756 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.506 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104053, "decimalLat": -29.48446 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529215, "decimalLat": -34.464744 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.059244, "decimalLat": -33.77543 }, "geometry": { "type": "Point", "coordinates": [ 150.059, -33.775 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.377538, "decimalLat": -36.015884 }, "geometry": { "type": "Point", "coordinates": [ 149.378, -36.016 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560176, "decimalLat": -28.363195 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.862974, "decimalLat": -31.282072 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -31.282 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.982157, "decimalLat": -29.417711 }, "geometry": { "type": "Point", "coordinates": [ 149.982, -29.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324487, "decimalLat": -36.295504 }, "geometry": { "type": "Point", "coordinates": [ 149.324, -36.296 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908524, "decimalLat": -31.454681 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.44811, "decimalLat": -28.627782 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.628 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.001052, "decimalLat": -36.513032 }, "geometry": { "type": "Point", "coordinates": [ 150.001, -36.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611461, "decimalLat": -34.419635 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064496, "decimalLat": -32.709985 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636938, "decimalLat": -34.395725 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.74933, "decimalLat": -32.629336 }, "geometry": { "type": "Point", "coordinates": [ 151.749, -32.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520358, "decimalLat": -34.465746 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562182, "decimalLat": -28.331902 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.332 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.974623, "decimalLat": -32.472237 }, "geometry": { "type": "Point", "coordinates": [ 151.975, -32.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.094135, "decimalLat": -32.742004 }, "geometry": { "type": "Point", "coordinates": [ 152.094, -32.742 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597751, "decimalLat": -34.412884 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.186866, "decimalLat": -31.575244 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -31.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.980537, "decimalLat": -34.110316 }, "geometry": { "type": "Point", "coordinates": [ 150.981, -34.11 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.268233, "decimalLat": -28.9309 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.931 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101199, "decimalLat": -29.490091 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615726, "decimalLat": -34.436478 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355785, "decimalLat": -31.85809 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303174, "decimalLat": -28.827996 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985401, "decimalLat": -34.094344 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.670358, "decimalLat": -33.534594 }, "geometry": { "type": "Point", "coordinates": [ 150.67, -33.535 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796366, "decimalLat": -34.14064 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899861, "decimalLat": -31.409524 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616572, "decimalLat": -34.4358 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400956, "decimalLat": -29.038 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -29.038 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.39843, "decimalLat": -31.90595 }, "geometry": { "type": "Point", "coordinates": [ 152.398, -31.906 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323595, "decimalLat": -28.881036 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.881 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104326, "decimalLat": -29.489615 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602586, "decimalLat": -34.438988 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31616, "decimalLat": -28.94913 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.90885, "decimalLat": -33.99814 }, "geometry": { "type": "Point", "coordinates": [ 150.909, -33.998 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.103626, "decimalLat": -33.775651 }, "geometry": { "type": "Point", "coordinates": [ 150.104, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093431, "decimalLat": -29.49254 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.07331, "decimalLat": -34.033 }, "geometry": { "type": "Point", "coordinates": [ 151.073, -34.033 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562809, "decimalLat": -28.374906 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.375 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863435, "decimalLat": -31.299548 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -31.3 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.95885, "decimalLat": -30.641952 }, "geometry": { "type": "Point", "coordinates": [ 152.959, -30.642 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898504, "decimalLat": -31.442482 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.198403, "decimalLat": -28.82107 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63155, "decimalLat": -34.387777 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792478, "decimalLat": -31.64191 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918236, "decimalLat": -31.441536 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109374, "decimalLat": -29.490423 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785697, "decimalLat": -33.706986 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.582601, "decimalLat": -34.5 }, "geometry": { "type": "Point", "coordinates": [ 150.583, -34.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55715, "decimalLat": -28.389919 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911279, "decimalLat": -31.473038 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785188, "decimalLat": -33.705157 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.800558, "decimalLat": -31.12669 }, "geometry": { "type": "Point", "coordinates": [ 152.801, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07969, "decimalLat": -30.27118 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -30.271 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522457, "decimalLat": -34.465815 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.32627, "decimalLat": -31.949063 }, "geometry": { "type": "Point", "coordinates": [ 152.326, -31.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101413, "decimalLat": -29.48996 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.551576, "decimalLat": -33.492192 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103881, "decimalLat": -29.485415 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514418, "decimalLat": -34.447315 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532888, "decimalLat": -34.45867 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53099, "decimalLat": -34.471009 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809835, "decimalLat": -34.099623 }, "geometry": { "type": "Point", "coordinates": [ 150.81, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633197, "decimalLat": -34.418083 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.825249, "decimalLat": -34.150187 }, "geometry": { "type": "Point", "coordinates": [ 150.825, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789593, "decimalLat": -34.164932 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.165 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262872, "decimalLat": -28.880776 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -28.881 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262958, "decimalLat": -28.880776 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -28.881 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610246, "decimalLat": -34.419124 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9781, "decimalLat": -30.4187 }, "geometry": { "type": "Point", "coordinates": [ 152.978, -30.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921889, "decimalLat": -31.475979 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615586, "decimalLat": -34.435637 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065329, "decimalLat": -32.711305 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314144, "decimalLat": -28.816318 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928887, "decimalLat": -31.459166 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.777471, "decimalLat": -30.192745 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -30.193 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.380851, "decimalLat": -36.157098 }, "geometry": { "type": "Point", "coordinates": [ 149.381, -36.157 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514574, "decimalLat": -34.443883 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517466, "decimalLat": -34.452038 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624461, "decimalLat": -34.38809 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.281838, "decimalLat": -28.410669 }, "geometry": { "type": "Point", "coordinates": [ 152.282, -28.411 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526079, "decimalLat": -34.457775 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920703, "decimalLat": -31.448101 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.768652, "decimalLat": -31.2557 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -31.256 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78559, "decimalLat": -33.709335 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63126, "decimalLat": -34.420056 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10387, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60472, "decimalLat": -34.438931 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081922, "decimalLat": -32.723578 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.138047, "decimalLat": -31.402485 }, "geometry": { "type": "Point", "coordinates": [ 152.138, -31.402 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.367884, "decimalLat": -31.875301 }, "geometry": { "type": "Point", "coordinates": [ 152.368, -31.875 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630314, "decimalLat": -34.394596 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320324, "decimalLat": -28.845513 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908557, "decimalLat": -31.454647 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518052, "decimalLat": -34.437391 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10814, "decimalLat": -29.490236 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.329006, "decimalLat": -28.932845 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -28.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89788, "decimalLat": -31.437104 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109385, "decimalLat": -29.490483 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611425, "decimalLat": -34.419751 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521589, "decimalLat": -34.465707 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602314, "decimalLat": -34.426019 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521334, "decimalLat": -34.459256 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110554, "decimalLat": -29.489816 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.479316, "decimalLat": -33.047677 }, "geometry": { "type": "Point", "coordinates": [ 151.479, -33.048 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927715, "decimalLat": -31.465028 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785107, "decimalLat": -33.703515 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317256, "decimalLat": -28.817328 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400534, "decimalLat": -28.26025 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622086, "decimalLat": -34.397853 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520843, "decimalLat": -34.467036 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.991011, "decimalLat": -34.026413 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.026 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300864, "decimalLat": -28.824751 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633991, "decimalLat": -34.489835 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400729, "decimalLat": -28.257882 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.308174, "decimalLat": -28.823221 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.310718, "decimalLat": -28.822395 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.476197, "decimalLat": -28.912169 }, "geometry": { "type": "Point", "coordinates": [ 152.476, -28.912 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076961, "decimalLat": -32.75853 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.759 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86746, "decimalLat": -29.667546 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -29.668 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522491, "decimalLat": -34.465771 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813439, "decimalLat": -33.392849 }, "geometry": { "type": "Point", "coordinates": [ 150.813, -33.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64152, "decimalLat": -34.395985 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520282, "decimalLat": -34.465744 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596905, "decimalLat": -34.414301 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101231, "decimalLat": -29.4899 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.520242, "decimalLat": -28.234366 }, "geometry": { "type": "Point", "coordinates": [ 153.52, -28.234 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.697314, "decimalLat": -32.67423 }, "geometry": { "type": "Point", "coordinates": [ 151.697, -32.674 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.560751, "decimalLat": -28.367745 }, "geometry": { "type": "Point", "coordinates": [ 152.561, -28.368 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516096, "decimalLat": -34.45018 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625277, "decimalLat": -34.38615 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521762, "decimalLat": -34.459148 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611437, "decimalLat": -34.419697 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637204, "decimalLat": -34.422209 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.788885, "decimalLat": -34.337843 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.338 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.083331, "decimalLat": -29.745797 }, "geometry": { "type": "Point", "coordinates": [ 151.083, -29.746 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367362, "decimalLat": -28.81355 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.289433, "decimalLat": -28.815723 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517314, "decimalLat": -34.457259 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532963, "decimalLat": -34.475728 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493277, "decimalLat": -28.657288 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -28.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610246, "decimalLat": -34.419124 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091891, "decimalLat": -29.487882 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520307, "decimalLat": -34.465654 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60379, "decimalLat": -34.424254 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606708, "decimalLat": -34.454666 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633225, "decimalLat": -34.418643 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514432, "decimalLat": -34.447198 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.268126, "decimalLat": -28.91324 }, "geometry": { "type": "Point", "coordinates": [ 153.268, -28.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.943361, "decimalLat": -29.740625 }, "geometry": { "type": "Point", "coordinates": [ 152.943, -29.741 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.490166 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.252033, "decimalLat": -30.991512 }, "geometry": { "type": "Point", "coordinates": [ 150.252, -30.992 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616604, "decimalLat": -34.430085 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527355, "decimalLat": -34.469502 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077238, "decimalLat": -32.722486 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276731, "decimalLat": -28.819935 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609524, "decimalLat": -34.449835 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522145, "decimalLat": -34.464204 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.261383, "decimalLat": -28.925495 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518322, "decimalLat": -34.451433 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.072051, "decimalLat": -30.881008 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.881 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10181, "decimalLat": -32.734228 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788661, "decimalLat": -31.637364 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917419, "decimalLat": -31.45773 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103752, "decimalLat": -29.485559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.84278, "decimalLat": -31.926276 }, "geometry": { "type": "Point", "coordinates": [ 151.843, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.744874, "decimalLat": -34.335302 }, "geometry": { "type": "Point", "coordinates": [ 150.745, -34.335 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06416, "decimalLat": -32.709827 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885005, "decimalLat": -30.517586 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -30.518 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103822, "decimalLat": -29.485566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950373, "decimalLat": -36.572524 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824223, "decimalLat": -29.813131 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.813 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785033, "decimalLat": -33.717548 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623687, "decimalLat": -34.383559 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64012, "decimalLat": -34.397039 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893049, "decimalLat": -29.74359 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -29.744 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519117, "decimalLat": -34.459879 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630861, "decimalLat": -34.42067 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.978821, "decimalLat": -34.08358 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -34.084 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.429114, "decimalLat": -31.830274 }, "geometry": { "type": "Point", "coordinates": [ 152.429, -31.83 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899228, "decimalLat": -29.630697 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640667, "decimalLat": -34.39385 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797986, "decimalLat": -31.681563 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.682 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908302, "decimalLat": -31.447296 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.116954, "decimalLat": -33.113691 }, "geometry": { "type": "Point", "coordinates": [ 151.117, -33.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.778378, "decimalLat": -34.139613 }, "geometry": { "type": "Point", "coordinates": [ 150.778, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62569, "decimalLat": -34.386555 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630667, "decimalLat": -34.42064 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559344, "decimalLat": -28.353854 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.351311, "decimalLat": -28.897022 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -28.897 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.012027, "decimalLat": -30.423237 }, "geometry": { "type": "Point", "coordinates": [ 153.012, -30.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639317, "decimalLat": -34.392724 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899018, "decimalLat": -31.443513 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60715, "decimalLat": -34.436905 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823523, "decimalLat": -29.810675 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6281, "decimalLat": -34.389775 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913291, "decimalLat": -31.477103 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532885, "decimalLat": -34.458778 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631228, "decimalLat": -34.393415 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.811934, "decimalLat": -34.1003 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399644, "decimalLat": -28.607691 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.608 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525634, "decimalLat": -34.465492 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921805, "decimalLat": -31.472801 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634252, "decimalLat": -34.420042 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516654, "decimalLat": -28.68913 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.291271, "decimalLat": -29.78795 }, "geometry": { "type": "Point", "coordinates": [ 151.291, -29.788 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561812, "decimalLat": -28.393242 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104058, "decimalLat": -29.478963 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.996446, "decimalLat": -30.413154 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -30.413 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895079, "decimalLat": -31.448181 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605312, "decimalLat": -34.438005 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516459, "decimalLat": -34.450034 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.033799, "decimalLat": -32.730877 }, "geometry": { "type": "Point", "coordinates": [ 152.034, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926913, "decimalLat": -31.470517 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518311, "decimalLat": -34.451451 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6465, "decimalLat": -34.397199 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639254, "decimalLat": -34.493155 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.778378, "decimalLat": -34.139613 }, "geometry": { "type": "Point", "coordinates": [ 150.778, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627262, "decimalLat": -34.420249 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096129, "decimalLat": -29.491291 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55609, "decimalLat": -28.398479 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645189, "decimalLat": -34.399364 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630093, "decimalLat": -34.39433 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.329045, "decimalLat": -31.948763 }, "geometry": { "type": "Point", "coordinates": [ 152.329, -31.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784351, "decimalLat": -33.717757 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609211, "decimalLat": -34.420718 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920387, "decimalLat": -30.505623 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.933658, "decimalLat": -29.681698 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -29.682 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.702131, "decimalLat": -32.694088 }, "geometry": { "type": "Point", "coordinates": [ 151.702, -32.694 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.010502, "decimalLat": -34.04555 }, "geometry": { "type": "Point", "coordinates": [ 151.011, -34.046 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.933658, "decimalLat": -29.681698 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -29.682 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.295269, "decimalLat": -28.867392 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071682, "decimalLat": -28.585441 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -28.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628866, "decimalLat": -34.38924 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557023, "decimalLat": -28.397385 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374317, "decimalLat": -31.915168 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.585877, "decimalLat": -33.704328 }, "geometry": { "type": "Point", "coordinates": [ 150.586, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628888, "decimalLat": -34.389222 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517724, "decimalLat": -28.684252 }, "geometry": { "type": "Point", "coordinates": [ 153.518, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989323, "decimalLat": -34.020007 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.02 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.87977, "decimalLat": -32.89005 }, "geometry": { "type": "Point", "coordinates": [ 150.88, -32.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60669, "decimalLat": -34.438519 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53188, "decimalLat": -34.39938 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897512, "decimalLat": -29.632795 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -29.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597438, "decimalLat": -34.426076 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627057, "decimalLat": -34.420939 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609682, "decimalLat": -34.420204 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.3791, "decimalLat": -31.915198 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79071, "decimalLat": -34.143433 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625163, "decimalLat": -34.386734 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101435, "decimalLat": -29.489694 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614992, "decimalLat": -34.432821 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301293, "decimalLat": -28.685102 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.685 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095325, "decimalLat": -29.483897 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514531, "decimalLat": -34.443865 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.780839, "decimalLat": -31.686858 }, "geometry": { "type": "Point", "coordinates": [ 152.781, -31.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10321, "decimalLat": -29.486813 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606746, "decimalLat": -34.437718 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.229422, "decimalLat": -28.889109 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632615, "decimalLat": -34.418297 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321087, "decimalLat": -28.828008 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518724, "decimalLat": -34.447421 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.41745, "decimalLat": -31.935801 }, "geometry": { "type": "Point", "coordinates": [ 152.417, -31.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622219, "decimalLat": -34.397766 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.474541, "decimalLat": -28.257896 }, "geometry": { "type": "Point", "coordinates": [ 153.475, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520676, "decimalLat": -34.466419 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607255, "decimalLat": -34.45419 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.779169, "decimalLat": -31.636544 }, "geometry": { "type": "Point", "coordinates": [ 152.779, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.847991, "decimalLat": -30.656119 }, "geometry": { "type": "Point", "coordinates": [ 152.848, -30.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62877, "decimalLat": -34.389166 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.993648, "decimalLat": -34.058152 }, "geometry": { "type": "Point", "coordinates": [ 150.994, -34.058 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604748, "decimalLat": -34.437561 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.996012, "decimalLat": -30.410631 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -30.411 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101226, "decimalLat": -29.489834 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355785, "decimalLat": -31.85809 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521511, "decimalLat": -34.452895 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605302, "decimalLat": -34.437987 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783786, "decimalLat": -33.718313 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.101859, "decimalLat": -33.779072 }, "geometry": { "type": "Point", "coordinates": [ 150.102, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.118528, "decimalLat": -32.217241 }, "geometry": { "type": "Point", "coordinates": [ 152.119, -32.217 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.964408, "decimalLat": -31.03128 }, "geometry": { "type": "Point", "coordinates": [ 149.964, -31.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914908, "decimalLat": -31.455499 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522181, "decimalLat": -34.453423 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785519, "decimalLat": -31.521544 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.522 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517379, "decimalLat": -34.453515 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.840892, "decimalLat": -34.064785 }, "geometry": { "type": "Point", "coordinates": [ 150.841, -34.065 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609202, "decimalLat": -34.420636 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.739274, "decimalLat": -32.066822 }, "geometry": { "type": "Point", "coordinates": [ 151.739, -32.067 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.856013, "decimalLat": -31.12578 }, "geometry": { "type": "Point", "coordinates": [ 152.856, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.409145, "decimalLat": -29.015392 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -29.015 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.332807, "decimalLat": -28.81836 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632604, "decimalLat": -34.418297 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.131276, "decimalLat": -28.578875 }, "geometry": { "type": "Point", "coordinates": [ 153.131, -28.579 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881297, "decimalLat": -31.447106 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605729, "decimalLat": -34.437499 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.995318, "decimalLat": -34.054916 }, "geometry": { "type": "Point", "coordinates": [ 150.995, -34.055 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630932, "decimalLat": -34.388477 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629612, "decimalLat": -34.389389 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895604, "decimalLat": -31.123772 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.124 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610443, "decimalLat": -34.448897 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875782, "decimalLat": -31.424988 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.85763, "decimalLat": -31.544374 }, "geometry": { "type": "Point", "coordinates": [ 152.858, -31.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513106, "decimalLat": -34.447135 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303174, "decimalLat": -28.827996 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.567012, "decimalLat": -34.483871 }, "geometry": { "type": "Point", "coordinates": [ 150.567, -34.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302585, "decimalLat": -28.845567 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.858729, "decimalLat": -31.546371 }, "geometry": { "type": "Point", "coordinates": [ 152.859, -31.546 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428356, "decimalLat": -28.972812 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.973 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920448, "decimalLat": -31.452622 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324009, "decimalLat": -28.825305 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.877235, "decimalLat": -32.77945 }, "geometry": { "type": "Point", "coordinates": [ 151.877, -32.779 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604691, "decimalLat": -34.438813 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51698, "decimalLat": -34.447493 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364275, "decimalLat": -28.834226 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.057292, "decimalLat": -33.767829 }, "geometry": { "type": "Point", "coordinates": [ 150.057, -33.768 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795888, "decimalLat": -31.14082 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -31.141 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316981, "decimalLat": -28.949626 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.896157, "decimalLat": -29.874354 }, "geometry": { "type": "Point", "coordinates": [ 150.896, -29.874 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925108, "decimalLat": -31.460113 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.650294, "decimalLat": -31.873495 }, "geometry": { "type": "Point", "coordinates": [ 152.65, -31.873 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513049, "decimalLat": -34.447242 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522358, "decimalLat": -34.465128 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60503, "decimalLat": -34.437603 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786492, "decimalLat": -33.706754 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564397, "decimalLat": -28.391396 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638759, "decimalLat": -34.491405 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638698, "decimalLat": -34.49089 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.87956, "decimalLat": -34.014572 }, "geometry": { "type": "Point", "coordinates": [ 150.88, -34.015 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947048, "decimalLat": -36.640426 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.54705, "decimalLat": -28.57956 }, "geometry": { "type": "Point", "coordinates": [ 153.547, -28.58 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627428, "decimalLat": -34.386624 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355785, "decimalLat": -31.85809 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60242, "decimalLat": -34.439075 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51694, "decimalLat": -34.448854 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.384531, "decimalLat": -29.104379 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -29.104 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925907, "decimalLat": -31.470191 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808212, "decimalLat": -34.098106 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610334, "decimalLat": -34.420253 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.245689, "decimalLat": -28.666246 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -28.666 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110506, "decimalLat": -29.49018 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072187, "decimalLat": -32.74631 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.746 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.000276, "decimalLat": -34.060623 }, "geometry": { "type": "Point", "coordinates": [ 151.0, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606659, "decimalLat": -34.434651 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637454, "decimalLat": -34.421465 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603956, "decimalLat": -34.43293 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606902, "decimalLat": -34.454381 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51682, "decimalLat": -34.44777 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.1245, "decimalLat": -31.07036 }, "geometry": { "type": "Point", "coordinates": [ 150.125, -31.07 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784687, "decimalLat": -33.713329 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.335227, "decimalLat": -29.779277 }, "geometry": { "type": "Point", "coordinates": [ 151.335, -29.779 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.940088, "decimalLat": -33.953175 }, "geometry": { "type": "Point", "coordinates": [ 150.94, -33.953 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89491, "decimalLat": -31.414354 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518236, "decimalLat": -34.451404 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.582601, "decimalLat": -34.500217 }, "geometry": { "type": "Point", "coordinates": [ 150.583, -34.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517338, "decimalLat": -34.441659 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630856, "decimalLat": -34.388855 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808762, "decimalLat": -34.09827 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920253, "decimalLat": -31.475419 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.355934, "decimalLat": -37.177314 }, "geometry": { "type": "Point", "coordinates": [ 149.356, -37.177 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514042, "decimalLat": -34.447875 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60387, "decimalLat": -34.440123 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604658, "decimalLat": -34.427363 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335449, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278317, "decimalLat": -28.818924 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.94316, "decimalLat": -34.114375 }, "geometry": { "type": "Point", "coordinates": [ 150.943, -34.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56178, "decimalLat": -28.642771 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.643 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881536, "decimalLat": -31.447964 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.95556, "decimalLat": -30.667693 }, "geometry": { "type": "Point", "coordinates": [ 152.956, -30.668 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630932, "decimalLat": -34.388477 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63582, "decimalLat": -34.485975 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915019, "decimalLat": -31.436334 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.046985, "decimalLat": -34.0268 }, "geometry": { "type": "Point", "coordinates": [ 151.047, -34.027 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065929, "decimalLat": -32.743384 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.743 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307399, "decimalLat": -28.824302 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864571, "decimalLat": -31.29642 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -31.296 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.056, "decimalLat": -30.33395 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -30.334 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60356, "decimalLat": -34.424294 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.77058, "decimalLat": -34.29484 }, "geometry": { "type": "Point", "coordinates": [ 150.771, -34.295 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.1038, "decimalLat": -32.72055 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638141, "decimalLat": -34.485524 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108135, "decimalLat": -29.490539 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.11039, "decimalLat": -32.773866 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -32.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630708, "decimalLat": -34.389852 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896115, "decimalLat": -31.4357 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.414498, "decimalLat": -28.982567 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61147, "decimalLat": -34.419689 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628146, "decimalLat": -34.389704 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62087, "decimalLat": -34.54599 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90301, "decimalLat": -30.23943 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.239 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095229, "decimalLat": -29.483443 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.198472, "decimalLat": -28.601773 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -28.602 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103935, "decimalLat": -29.489563 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.031718, "decimalLat": -30.389051 }, "geometry": { "type": "Point", "coordinates": [ 153.032, -30.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.980951, "decimalLat": -34.016936 }, "geometry": { "type": "Point", "coordinates": [ 150.981, -34.017 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632675, "decimalLat": -34.418082 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.901126, "decimalLat": -34.01627 }, "geometry": { "type": "Point", "coordinates": [ 150.901, -34.016 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.841735, "decimalLat": -34.072142 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.072 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293076, "decimalLat": -28.864654 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.932322, "decimalLat": -29.679519 }, "geometry": { "type": "Point", "coordinates": [ 150.932, -29.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517335, "decimalLat": -34.45281 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101183, "decimalLat": -29.489946 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604842, "decimalLat": -34.419009 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65764, "decimalLat": -34.455959 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379454, "decimalLat": -31.919902 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096011, "decimalLat": -29.484791 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637314, "decimalLat": -34.423716 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.367945, "decimalLat": -32.886264 }, "geometry": { "type": "Point", "coordinates": [ 151.368, -32.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794038, "decimalLat": -31.63888 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.374187, "decimalLat": -33.580892 }, "geometry": { "type": "Point", "coordinates": [ 149.374, -33.581 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609584, "decimalLat": -34.430921 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.877198, "decimalLat": -34.016253 }, "geometry": { "type": "Point", "coordinates": [ 150.877, -34.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911609, "decimalLat": -31.458122 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9232, "decimalLat": -31.469713 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.162997, "decimalLat": -32.714611 }, "geometry": { "type": "Point", "coordinates": [ 152.163, -32.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516541, "decimalLat": -34.450198 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625154, "decimalLat": -34.386292 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615924, "decimalLat": -34.440611 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103876, "decimalLat": -29.489587 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878917, "decimalLat": -31.44848 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534881, "decimalLat": -34.463443 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.548753, "decimalLat": -28.726548 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.727 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919893, "decimalLat": -31.474066 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.95742, "decimalLat": -32.639285 }, "geometry": { "type": "Point", "coordinates": [ 151.957, -32.639 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630406, "decimalLat": -34.395184 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.921178, "decimalLat": -36.633581 }, "geometry": { "type": "Point", "coordinates": [ 149.921, -36.634 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.001052, "decimalLat": -36.513032 }, "geometry": { "type": "Point", "coordinates": [ 150.001, -36.513 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927472, "decimalLat": -31.472397 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603863, "decimalLat": -34.427014 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863743, "decimalLat": -29.6794 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -29.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635315, "decimalLat": -34.488066 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616638, "decimalLat": -34.433484 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.1016, "decimalLat": -32.761 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -32.761 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518614, "decimalLat": -34.437159 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616149, "decimalLat": -34.438424 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597826, "decimalLat": -34.426986 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063304, "decimalLat": -32.707137 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323871, "decimalLat": -28.828834 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.829 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786988, "decimalLat": -33.705787 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924333, "decimalLat": -31.45422 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.399058, "decimalLat": -31.965324 }, "geometry": { "type": "Point", "coordinates": [ 152.399, -31.965 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077982, "decimalLat": -28.557669 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -28.558 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.373241, "decimalLat": -30.457365 }, "geometry": { "type": "Point", "coordinates": [ 151.373, -30.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095115, "decimalLat": -29.489437 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108146, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104063, "decimalLat": -29.485155 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.490226, "decimalLat": -28.679923 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522839, "decimalLat": -34.466508 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92885, "decimalLat": -31.455952 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110506, "decimalLat": -29.490184 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632602, "decimalLat": -34.41836 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527203, "decimalLat": -34.469499 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200414, "decimalLat": -29.35394 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625291, "decimalLat": -34.386069 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629212, "decimalLat": -33.771456 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -33.771 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88129, "decimalLat": -31.448673 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.034735, "decimalLat": -32.764257 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603665, "decimalLat": -34.440831 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.006171, "decimalLat": -32.72771 }, "geometry": { "type": "Point", "coordinates": [ 152.006, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632839, "decimalLat": -34.419609 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09975, "decimalLat": -29.49159 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.057148, "decimalLat": -33.778022 }, "geometry": { "type": "Point", "coordinates": [ 150.057, -33.778 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528417, "decimalLat": -34.462781 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812127, "decimalLat": -31.659526 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -31.66 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915394, "decimalLat": -31.431811 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785634, "decimalLat": -33.707566 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.515025, "decimalLat": -30.531532 }, "geometry": { "type": "Point", "coordinates": [ 151.515, -30.532 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.02857, "decimalLat": -32.191823 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637143, "decimalLat": -34.485397 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519292, "decimalLat": -34.437038 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631517, "decimalLat": -34.387795 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.43247, "decimalLat": -28.319558 }, "geometry": { "type": "Point", "coordinates": [ 152.432, -28.32 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513852, "decimalLat": -34.447295 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.028287, "decimalLat": -29.172117 }, "geometry": { "type": "Point", "coordinates": [ 153.028, -29.172 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.77402, "decimalLat": -28.94955 }, "geometry": { "type": "Point", "coordinates": [ 152.774, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989821, "decimalLat": -34.090328 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.09 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641195, "decimalLat": -34.402145 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.402 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784206, "decimalLat": -33.711877 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513077, "decimalLat": -34.447369 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.006715, "decimalLat": -30.405141 }, "geometry": { "type": "Point", "coordinates": [ 153.007, -30.405 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513851, "decimalLat": -34.44697 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923476, "decimalLat": -31.464075 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.11475, "decimalLat": -31.09187 }, "geometry": { "type": "Point", "coordinates": [ 150.115, -31.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.993874, "decimalLat": -30.405923 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -30.406 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639026, "decimalLat": -34.493132 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.187392, "decimalLat": -32.232904 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -32.233 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521394, "decimalLat": -34.466434 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59019, "decimalLat": -28.65505 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80368, "decimalLat": -34.10951 }, "geometry": { "type": "Point", "coordinates": [ 150.804, -34.11 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602415, "decimalLat": -34.419827 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.603568, "decimalLat": -28.823354 }, "geometry": { "type": "Point", "coordinates": [ 153.604, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607389, "decimalLat": -28.687767 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611713, "decimalLat": -34.432955 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.807328, "decimalLat": -31.136512 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -31.137 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527173, "decimalLat": -34.469418 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.10183, "decimalLat": -34.01217 }, "geometry": { "type": "Point", "coordinates": [ 151.102, -34.012 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835721, "decimalLat": -34.069552 }, "geometry": { "type": "Point", "coordinates": [ 150.836, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104358, "decimalLat": -29.477137 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894742, "decimalLat": -31.443076 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616926, "decimalLat": -34.399574 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786474, "decimalLat": -33.709587 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639636, "decimalLat": -34.399185 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615796, "decimalLat": -34.434766 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608524, "decimalLat": -34.45435 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645328, "decimalLat": -34.401359 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64592, "decimalLat": -34.397341 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914421, "decimalLat": -31.451443 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.55776, "decimalLat": -33.495076 }, "geometry": { "type": "Point", "coordinates": [ 149.558, -33.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415131, "decimalLat": -31.933183 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189597, "decimalLat": -32.229205 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.154762, "decimalLat": -33.882417 }, "geometry": { "type": "Point", "coordinates": [ 151.155, -33.882 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.607994, "decimalLat": -32.570904 }, "geometry": { "type": "Point", "coordinates": [ 149.608, -32.571 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639111, "decimalLat": -34.493215 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.815949, "decimalLat": -31.280223 }, "geometry": { "type": "Point", "coordinates": [ 152.816, -31.28 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516766, "decimalLat": -34.452528 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783983, "decimalLat": -33.717609 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599964, "decimalLat": -34.428704 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5166, "decimalLat": -28.215655 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.216 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632549, "decimalLat": -34.418305 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.647191, "decimalLat": -32.551731 }, "geometry": { "type": "Point", "coordinates": [ 151.647, -32.552 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63602, "decimalLat": -34.419436 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03122, "decimalLat": -32.73444 }, "geometry": { "type": "Point", "coordinates": [ 152.031, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.815706, "decimalLat": -31.094993 }, "geometry": { "type": "Point", "coordinates": [ 152.816, -31.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659499, "decimalLat": -34.458393 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923544, "decimalLat": -31.470669 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631321, "decimalLat": -34.420192 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793442, "decimalLat": -31.642139 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.41931, "decimalLat": -28.872633 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.873 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604706, "decimalLat": -34.431051 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637345, "decimalLat": -34.423798 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395818, "decimalLat": -28.560281 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.3201, "decimalLat": -34.40016 }, "geometry": { "type": "Point", "coordinates": [ 150.32, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598623, "decimalLat": -34.426127 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.367249, "decimalLat": -33.435848 }, "geometry": { "type": "Point", "coordinates": [ 149.367, -33.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603267, "decimalLat": -34.426579 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636168, "decimalLat": -34.420367 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.05219, "decimalLat": -34.90092 }, "geometry": { "type": "Point", "coordinates": [ 150.052, -34.901 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.613348, "decimalLat": -30.345383 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -30.345 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624603, "decimalLat": -34.386155 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555987, "decimalLat": -28.398817 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.111104, "decimalLat": -28.812518 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -28.813 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639736, "decimalLat": -34.399484 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103935, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.030533, "decimalLat": -32.731152 }, "geometry": { "type": "Point", "coordinates": [ 152.031, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.985913, "decimalLat": -29.030774 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90635, "decimalLat": -30.23551 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -30.236 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104299, "decimalLat": -29.477899 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101274, "decimalLat": -29.490142 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303135, "decimalLat": -28.824882 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635449, "decimalLat": -34.41965 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619932, "decimalLat": -34.400949 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104482, "decimalLat": -29.482265 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611635, "decimalLat": -34.432999 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515782, "decimalLat": -34.446793 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894048, "decimalLat": -31.431816 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607929, "decimalLat": -34.454239 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.175398, "decimalLat": -32.66323 }, "geometry": { "type": "Point", "coordinates": [ 152.175, -32.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.664592, "decimalLat": -34.458409 }, "geometry": { "type": "Point", "coordinates": [ 150.665, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302733, "decimalLat": -28.848165 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335449, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520155, "decimalLat": -34.45349 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910301, "decimalLat": -31.453481 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.20197, "decimalLat": -28.49591 }, "geometry": { "type": "Point", "coordinates": [ 153.202, -28.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608502, "decimalLat": -34.456279 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101199, "decimalLat": -29.490021 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.666458, "decimalLat": -31.863221 }, "geometry": { "type": "Point", "coordinates": [ 152.666, -31.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603902, "decimalLat": -34.438618 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104138, "decimalLat": -29.480299 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636355, "decimalLat": -34.485553 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068395, "decimalLat": -32.707939 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.873769, "decimalLat": -34.035121 }, "geometry": { "type": "Point", "coordinates": [ 150.874, -34.035 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928706, "decimalLat": -29.726842 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104503, "decimalLat": -29.477843 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.428856, "decimalLat": -36.255658 }, "geometry": { "type": "Point", "coordinates": [ 149.429, -36.256 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790805, "decimalLat": -34.187249 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.187 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985957, "decimalLat": -34.096995 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521425, "decimalLat": -34.466497 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.883653, "decimalLat": -34.015618 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.016 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637235, "decimalLat": -34.423823 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631474, "decimalLat": -34.387776 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524355, "decimalLat": -34.464583 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.75671, "decimalLat": -28.983446 }, "geometry": { "type": "Point", "coordinates": [ 152.757, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.587927, "decimalLat": -33.696169 }, "geometry": { "type": "Point", "coordinates": [ 150.588, -33.696 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898464, "decimalLat": -29.631668 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519878, "decimalLat": -34.452565 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.057931, "decimalLat": -33.772803 }, "geometry": { "type": "Point", "coordinates": [ 150.058, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319487, "decimalLat": -28.887191 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.887 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401939, "decimalLat": -28.258372 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409406, "decimalLat": -31.910186 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863317, "decimalLat": -31.143567 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -31.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523823, "decimalLat": -34.463778 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606353, "decimalLat": -34.438134 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.093939, "decimalLat": -28.793596 }, "geometry": { "type": "Point", "coordinates": [ 152.094, -28.794 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618349, "decimalLat": -34.436826 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867889, "decimalLat": -29.667359 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87426, "decimalLat": -31.47948 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103715, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415558, "decimalLat": -31.933111 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604251, "decimalLat": -34.438976 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.371278, "decimalLat": -31.923237 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.133866, "decimalLat": -32.200309 }, "geometry": { "type": "Point", "coordinates": [ 152.134, -32.2 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516041, "decimalLat": -34.449097 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622884, "decimalLat": -34.397328 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517714, "decimalLat": -34.441459 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784938, "decimalLat": -33.707417 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.780333, "decimalLat": -32.714185 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929913, "decimalLat": -31.456954 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920965, "decimalLat": -31.447899 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617191, "decimalLat": -34.434289 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627841, "decimalLat": -34.397415 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.789094, "decimalLat": -32.65405 }, "geometry": { "type": "Point", "coordinates": [ 151.789, -32.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521625, "decimalLat": -34.465591 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923379, "decimalLat": -31.459753 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3, "decimalLat": -28.819705 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631153, "decimalLat": -34.387589 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790619, "decimalLat": -34.210895 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.211 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.8283, "decimalLat": -29.654873 }, "geometry": { "type": "Point", "coordinates": [ 150.828, -29.655 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.140925, "decimalLat": -31.405729 }, "geometry": { "type": "Point", "coordinates": [ 151.141, -31.406 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.830733, "decimalLat": -31.558788 }, "geometry": { "type": "Point", "coordinates": [ 152.831, -31.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563734, "decimalLat": -28.381087 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109294, "decimalLat": -29.490661 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928198, "decimalLat": -31.459067 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934931, "decimalLat": -36.503907 }, "geometry": { "type": "Point", "coordinates": [ 149.935, -36.504 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513808, "decimalLat": -34.447303 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791213, "decimalLat": -34.142897 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468814, "decimalLat": -28.261709 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107995, "decimalLat": -29.490353 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521057, "decimalLat": -34.466778 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104085, "decimalLat": -29.480042 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.970066, "decimalLat": -32.441261 }, "geometry": { "type": "Point", "coordinates": [ 151.97, -32.441 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895449, "decimalLat": -30.556073 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -30.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616719, "decimalLat": -34.435199 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955028, "decimalLat": -36.650407 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.459136, "decimalLat": -28.59158 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.592 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.018682, "decimalLat": -32.73197 }, "geometry": { "type": "Point", "coordinates": [ 152.019, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.085576, "decimalLat": -30.345674 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -30.346 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.164873, "decimalLat": -27.570077 }, "geometry": { "type": "Point", "coordinates": [ 153.165, -27.57 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641805, "decimalLat": -34.393971 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794057, "decimalLat": -31.138285 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.138 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784259, "decimalLat": -33.717281 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604384, "decimalLat": -34.452971 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518344, "decimalLat": -34.451425 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.22866, "decimalLat": -28.890701 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.973787, "decimalLat": -31.189198 }, "geometry": { "type": "Point", "coordinates": [ 152.974, -31.189 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.102978, "decimalLat": -32.732683 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787184, "decimalLat": -33.70647 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062868, "decimalLat": -32.701107 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.701 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626956, "decimalLat": -34.421036 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.420146, "decimalLat": -29.018511 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -29.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51373, "decimalLat": -34.446291 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.986493, "decimalLat": -32.400494 }, "geometry": { "type": "Point", "coordinates": [ 151.986, -32.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104117, "decimalLat": -29.480971 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.99014, "decimalLat": -34.020666 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.021 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063695, "decimalLat": -32.70553 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602613, "decimalLat": -34.436501 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929022, "decimalLat": -31.450193 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108119, "decimalLat": -29.490301 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.915993, "decimalLat": -35.114641 }, "geometry": { "type": "Point", "coordinates": [ 149.916, -35.115 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.307547, "decimalLat": -36.184802 }, "geometry": { "type": "Point", "coordinates": [ 149.308, -36.185 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.163715, "decimalLat": -32.738297 }, "geometry": { "type": "Point", "coordinates": [ 152.164, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926348, "decimalLat": -31.459118 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.810724, "decimalLat": -32.456416 }, "geometry": { "type": "Point", "coordinates": [ 151.811, -32.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.805509, "decimalLat": -34.099116 }, "geometry": { "type": "Point", "coordinates": [ 150.806, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897093, "decimalLat": -31.474709 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.692037, "decimalLat": -31.872313 }, "geometry": { "type": "Point", "coordinates": [ 152.692, -31.872 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911729, "decimalLat": -31.44531 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10372, "decimalLat": -29.485662 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.986632, "decimalLat": -34.092261 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395537, "decimalLat": -29.047123 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -29.047 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597688, "decimalLat": -34.450793 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911833, "decimalLat": -31.448367 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639667, "decimalLat": -34.399222 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.00164, "decimalLat": -36.458645 }, "geometry": { "type": "Point", "coordinates": [ 150.002, -36.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.17252, "decimalLat": -32.738943 }, "geometry": { "type": "Point", "coordinates": [ 152.173, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.344442, "decimalLat": -31.879506 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -31.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520978, "decimalLat": -34.465407 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520679, "decimalLat": -34.436507 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10799, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513233, "decimalLat": -34.447624 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632905, "decimalLat": -34.418799 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607892, "decimalLat": -34.422333 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298493, "decimalLat": -28.816771 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296347, "decimalLat": -28.452492 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.611771, "decimalLat": -28.663195 }, "geometry": { "type": "Point", "coordinates": [ 153.612, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925215, "decimalLat": -31.454065 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324527, "decimalLat": -28.834015 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.356055, "decimalLat": -31.880571 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.881 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925332, "decimalLat": -31.453886 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.426793, "decimalLat": -28.626008 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.626 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513109, "decimalLat": -34.447045 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870544, "decimalLat": -31.464604 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.336867, "decimalLat": -31.201726 }, "geometry": { "type": "Point", "coordinates": [ 152.337, -31.202 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.30372, "decimalLat": -32.295994 }, "geometry": { "type": "Point", "coordinates": [ 152.304, -32.296 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909436, "decimalLat": -31.44738 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301256, "decimalLat": -28.81811 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31428, "decimalLat": -28.468766 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61394, "decimalLat": -34.43308 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102338, "decimalLat": -29.48956 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884999, "decimalLat": -31.429958 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632571, "decimalLat": -34.418296 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905708, "decimalLat": -31.437973 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79647, "decimalLat": -31.136433 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -31.136 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.04316, "decimalLat": -32.76786 }, "geometry": { "type": "Point", "coordinates": [ 152.043, -32.768 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10423, "decimalLat": -29.479388 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606981, "decimalLat": -34.438633 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602436, "decimalLat": -34.419864 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101274, "decimalLat": -29.489886 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.438807, "decimalLat": -34.466001 }, "geometry": { "type": "Point", "coordinates": [ 150.439, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.101871, "decimalLat": -33.779018 }, "geometry": { "type": "Point", "coordinates": [ 150.102, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636399, "decimalLat": -34.485527 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515978, "decimalLat": -34.446797 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610105, "decimalLat": -34.430192 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.54093, "decimalLat": -30.4225 }, "geometry": { "type": "Point", "coordinates": [ 151.541, -30.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.703243, "decimalLat": -34.265205 }, "geometry": { "type": "Point", "coordinates": [ 150.703, -34.265 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532545, "decimalLat": -34.482157 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.482 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.62903, "decimalLat": -31.430488 }, "geometry": { "type": "Point", "coordinates": [ 152.629, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103833, "decimalLat": -29.48541 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.432266, "decimalLat": -31.938701 }, "geometry": { "type": "Point", "coordinates": [ 152.432, -31.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401753, "decimalLat": -28.258658 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339182, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094048, "decimalLat": -29.488798 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103827, "decimalLat": -29.485104 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787206, "decimalLat": -31.630249 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.710377, "decimalLat": -31.782474 }, "geometry": { "type": "Point", "coordinates": [ 152.71, -31.782 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604709, "decimalLat": -34.439319 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808212, "decimalLat": -34.098106 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615892, "decimalLat": -34.435985 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616411, "decimalLat": -34.436094 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517315, "decimalLat": -28.574486 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.574 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619747, "decimalLat": -34.439694 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82356, "decimalLat": -29.813572 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.814 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616592, "decimalLat": -34.441219 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066015, "decimalLat": -32.706147 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.186343, "decimalLat": -31.615984 }, "geometry": { "type": "Point", "coordinates": [ 152.186, -31.616 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792316, "decimalLat": -34.197216 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.197 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922488, "decimalLat": -31.457663 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.978195, "decimalLat": -36.450213 }, "geometry": { "type": "Point", "coordinates": [ 149.978, -36.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.311703, "decimalLat": -36.06528 }, "geometry": { "type": "Point", "coordinates": [ 149.312, -36.065 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631701, "decimalLat": -34.38705 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.710489, "decimalLat": -31.782134 }, "geometry": { "type": "Point", "coordinates": [ 152.71, -31.782 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786059, "decimalLat": -33.712248 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01269, "decimalLat": -29.53837 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -29.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784127, "decimalLat": -33.71767 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532837, "decimalLat": -34.482226 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.482 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.363, "decimalLat": -28.676944 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -28.677 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597828, "decimalLat": -34.426138 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787259, "decimalLat": -33.704008 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918173, "decimalLat": -31.485116 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626484, "decimalLat": -34.390005 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.033527, "decimalLat": -30.193444 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -30.193 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644863, "decimalLat": -34.391586 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894394, "decimalLat": -31.448332 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323839, "decimalLat": -28.828351 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596957, "decimalLat": -34.453131 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606234, "decimalLat": -34.454134 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86892, "decimalLat": -31.305746 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -31.306 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103437, "decimalLat": -32.759345 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -32.759 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878747, "decimalLat": -31.425973 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51375, "decimalLat": -34.446355 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640705, "decimalLat": -34.494238 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.478762, "decimalLat": -28.734126 }, "geometry": { "type": "Point", "coordinates": [ 153.479, -28.734 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607686, "decimalLat": -34.422293 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.811897, "decimalLat": -34.101384 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625701, "decimalLat": -34.399267 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513794, "decimalLat": -34.446338 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.780333, "decimalLat": -32.714185 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641954, "decimalLat": -34.396813 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640355, "decimalLat": -34.397585 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104004, "decimalLat": -29.478361 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10747, "decimalLat": -29.49011 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62907, "decimalLat": -34.395122 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110511, "decimalLat": -29.490194 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630338, "decimalLat": -34.394488 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60045, "decimalLat": -34.42729 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.798583, "decimalLat": -34.213583 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.214 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916857, "decimalLat": -31.461235 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108231, "decimalLat": -29.490301 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5239, "decimalLat": -34.463753 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616378, "decimalLat": -34.433425 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067434, "decimalLat": -32.708155 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.35899, "decimalLat": -31.92441 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516354, "decimalLat": -34.448058 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640743, "decimalLat": -34.395789 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868018, "decimalLat": -29.667098 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.35899, "decimalLat": -31.92441 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104154, "decimalLat": -29.485155 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.036423, "decimalLat": -30.8961 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514341, "decimalLat": -34.444771 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092187, "decimalLat": -29.488083 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10806, "decimalLat": -29.490278 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.368965, "decimalLat": -28.850295 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.94056, "decimalLat": -30.39296 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -30.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071467, "decimalLat": -30.885804 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514983, "decimalLat": -34.445478 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631475, "decimalLat": -34.386964 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867932, "decimalLat": -29.667378 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.444452, "decimalLat": -31.889461 }, "geometry": { "type": "Point", "coordinates": [ 152.444, -31.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603274, "decimalLat": -34.436991 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110635, "decimalLat": -29.489624 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618115, "decimalLat": -34.448885 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610246, "decimalLat": -34.419124 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343996, "decimalLat": -28.749883 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.75 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90863, "decimalLat": -31.468191 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557006, "decimalLat": -28.397367 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104959, "decimalLat": -29.476717 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1031, "decimalLat": -30.32312 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -30.323 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.103604, "decimalLat": -33.780771 }, "geometry": { "type": "Point", "coordinates": [ 150.104, -33.781 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.015549, "decimalLat": -33.993767 }, "geometry": { "type": "Point", "coordinates": [ 151.016, -33.994 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98585, "decimalLat": -34.096545 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.990138, "decimalLat": -32.015229 }, "geometry": { "type": "Point", "coordinates": [ 151.99, -32.015 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604693, "decimalLat": -34.427292 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.0356, "decimalLat": -32.72787 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.655574, "decimalLat": -32.656069 }, "geometry": { "type": "Point", "coordinates": [ 151.656, -32.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519456, "decimalLat": -34.463131 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.934952, "decimalLat": -29.049454 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -29.049 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919477, "decimalLat": -31.438352 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37867, "decimalLat": -31.91053 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067965, "decimalLat": -32.708121 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303608, "decimalLat": -28.824272 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519625, "decimalLat": -34.455219 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.993251, "decimalLat": -34.00383 }, "geometry": { "type": "Point", "coordinates": [ 150.993, -34.004 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103806, "decimalLat": -29.485571 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46253, "decimalLat": -28.6551 }, "geometry": { "type": "Point", "coordinates": [ 153.463, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514929, "decimalLat": -34.446595 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.81153, "decimalLat": -34.11539 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.115 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604265, "decimalLat": -34.439256 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.782387, "decimalLat": -32.570505 }, "geometry": { "type": "Point", "coordinates": [ 151.782, -32.571 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522372, "decimalLat": -34.465011 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.621789, "decimalLat": -30.332939 }, "geometry": { "type": "Point", "coordinates": [ 152.622, -30.333 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616085, "decimalLat": -34.435709 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103935, "decimalLat": -29.489519 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784611, "decimalLat": -34.208131 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -34.208 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627355, "decimalLat": -34.421179 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.137558, "decimalLat": -28.836932 }, "geometry": { "type": "Point", "coordinates": [ 153.138, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611646, "decimalLat": -34.432999 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785865, "decimalLat": -33.708864 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897073, "decimalLat": -31.41371 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913536, "decimalLat": -31.46026 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.316407, "decimalLat": -36.297781 }, "geometry": { "type": "Point", "coordinates": [ 149.316, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605672, "decimalLat": -34.449795 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98807, "decimalLat": -34.09004 }, "geometry": { "type": "Point", "coordinates": [ 150.988, -34.09 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.41279, "decimalLat": -31.93319 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518782, "decimalLat": -34.447296 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525236, "decimalLat": -34.463843 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5578, "decimalLat": -28.3967 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.692628, "decimalLat": -32.69137 }, "geometry": { "type": "Point", "coordinates": [ 151.693, -32.691 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.426635, "decimalLat": -34.418535 }, "geometry": { "type": "Point", "coordinates": [ 150.427, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955116, "decimalLat": -36.511881 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630994, "decimalLat": -34.388217 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.623477, "decimalLat": -30.52295 }, "geometry": { "type": "Point", "coordinates": [ 152.623, -30.523 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.62839, "decimalLat": -32.643446 }, "geometry": { "type": "Point", "coordinates": [ 151.628, -32.643 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.551593, "decimalLat": -32.821996 }, "geometry": { "type": "Point", "coordinates": [ 151.552, -32.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515196, "decimalLat": -34.444924 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521884, "decimalLat": -34.466038 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101762, "decimalLat": -29.488914 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520476, "decimalLat": -34.46582 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533239, "decimalLat": -34.479655 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27253, "decimalLat": -28.931499 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.931 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640647, "decimalLat": -33.428491 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -33.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.41587, "decimalLat": -31.937591 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.938 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378678, "decimalLat": -31.929292 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605006, "decimalLat": -34.427009 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638491, "decimalLat": -34.491283 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316981, "decimalLat": -28.949626 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517505, "decimalLat": -34.446323 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517317, "decimalLat": -34.446409 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608396, "decimalLat": -34.454248 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630268, "decimalLat": -34.420866 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.8973, "decimalLat": -33.982033 }, "geometry": { "type": "Point", "coordinates": [ 150.897, -33.982 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.040415, "decimalLat": -33.75577 }, "geometry": { "type": "Point", "coordinates": [ 150.04, -33.756 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785333, "decimalLat": -33.715628 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615879, "decimalLat": -34.439871 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.722038, "decimalLat": -30.404143 }, "geometry": { "type": "Point", "coordinates": [ 151.722, -30.404 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517619, "decimalLat": -34.447614 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604295, "decimalLat": -34.438959 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108076, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.00819, "decimalLat": -31.12411 }, "geometry": { "type": "Point", "coordinates": [ 150.008, -31.124 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607904, "decimalLat": -28.686299 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60089, "decimalLat": -34.42866 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110544, "decimalLat": -29.490124 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.084204, "decimalLat": -32.739839 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303468, "decimalLat": -28.817396 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628123, "decimalLat": -34.420563 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395419, "decimalLat": -28.959344 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.021287, "decimalLat": -36.554124 }, "geometry": { "type": "Point", "coordinates": [ 150.021, -36.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622894, "decimalLat": -34.383922 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322496, "decimalLat": -28.825978 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.398949, "decimalLat": -28.839339 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.839 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595561, "decimalLat": -34.514 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619815, "decimalLat": -34.439217 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.689383, "decimalLat": -32.687204 }, "geometry": { "type": "Point", "coordinates": [ 151.689, -32.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63536, "decimalLat": -34.419712 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92932, "decimalLat": -29.735127 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -29.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607359, "decimalLat": -34.457798 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.611289, "decimalLat": -28.674533 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.675 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520476, "decimalLat": -34.468011 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792974, "decimalLat": -34.198469 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.198 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.82212, "decimalLat": -32.50942 }, "geometry": { "type": "Point", "coordinates": [ 151.822, -32.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883981, "decimalLat": -31.44028 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.089837, "decimalLat": -29.480644 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.057881, "decimalLat": -33.773306 }, "geometry": { "type": "Point", "coordinates": [ 150.058, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908472, "decimalLat": -31.438559 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277528, "decimalLat": -28.939564 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.437207, "decimalLat": -32.819711 }, "geometry": { "type": "Point", "coordinates": [ 151.437, -32.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.652498, "decimalLat": -34.206821 }, "geometry": { "type": "Point", "coordinates": [ 150.652, -34.207 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104155, "decimalLat": -29.478847 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109256, "decimalLat": -29.490871 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.398902, "decimalLat": -31.965647 }, "geometry": { "type": "Point", "coordinates": [ 152.399, -31.966 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918537, "decimalLat": -31.474461 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557034, "decimalLat": -28.397415 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524302, "decimalLat": -34.466736 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908825, "decimalLat": -31.467006 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299324, "decimalLat": -28.888717 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.664052, "decimalLat": -34.458264 }, "geometry": { "type": "Point", "coordinates": [ 150.664, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517009, "decimalLat": -34.435855 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.260809, "decimalLat": -28.872249 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637867, "decimalLat": -34.485609 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415508, "decimalLat": -31.933093 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.780333, "decimalLat": -32.714185 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533272, "decimalLat": -34.509597 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.436019, "decimalLat": -28.885863 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562022, "decimalLat": -28.383321 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.383 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.208025, "decimalLat": -28.827843 }, "geometry": { "type": "Point", "coordinates": [ 153.208, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923476, "decimalLat": -31.464075 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522372, "decimalLat": -34.46575 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921736, "decimalLat": -31.479919 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372502, "decimalLat": -31.924451 }, "geometry": { "type": "Point", "coordinates": [ 152.373, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314681, "decimalLat": -28.850904 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603481, "decimalLat": -34.435454 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785902, "decimalLat": -33.709203 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.962076, "decimalLat": -31.210203 }, "geometry": { "type": "Point", "coordinates": [ 152.962, -31.21 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.529336, "decimalLat": -32.033006 }, "geometry": { "type": "Point", "coordinates": [ 152.529, -32.033 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515548, "decimalLat": -34.451034 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924479, "decimalLat": -31.471134 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603978, "decimalLat": -34.427188 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318036, "decimalLat": -28.827209 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.352564, "decimalLat": -28.883003 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -28.883 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.934926, "decimalLat": -30.382351 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -30.382 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077095, "decimalLat": -32.725433 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534634, "decimalLat": -34.462212 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519513, "decimalLat": -34.455334 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108231, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.043825, "decimalLat": -30.240612 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -30.241 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063481, "decimalLat": -32.706026 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.110571, "decimalLat": -32.776498 }, "geometry": { "type": "Point", "coordinates": [ 152.111, -32.776 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898271, "decimalLat": -31.443569 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.409056, "decimalLat": -28.966716 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.967 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.133996, "decimalLat": -30.090977 }, "geometry": { "type": "Point", "coordinates": [ 152.134, -30.091 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.965237, "decimalLat": -36.459771 }, "geometry": { "type": "Point", "coordinates": [ 149.965, -36.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104066, "decimalLat": -29.484362 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.56322, "decimalLat": -31.96151 }, "geometry": { "type": "Point", "coordinates": [ 152.563, -31.962 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565849, "decimalLat": -28.387262 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103237, "decimalLat": -29.486715 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619811, "decimalLat": -34.439388 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.174569, "decimalLat": -32.663575 }, "geometry": { "type": "Point", "coordinates": [ 152.175, -32.664 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303174, "decimalLat": -28.827996 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922191, "decimalLat": -31.462006 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109267, "decimalLat": -29.490857 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916477, "decimalLat": -31.444782 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629059, "decimalLat": -34.395104 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809365, "decimalLat": -31.668887 }, "geometry": { "type": "Point", "coordinates": [ 152.809, -31.669 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63083, "decimalLat": -34.420634 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.409804, "decimalLat": -28.330362 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.33 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525328, "decimalLat": -34.464052 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.003613, "decimalLat": -29.184232 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -29.184 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.776189, "decimalLat": -32.574698 }, "geometry": { "type": "Point", "coordinates": [ 151.776, -32.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.307606, "decimalLat": -36.127793 }, "geometry": { "type": "Point", "coordinates": [ 149.308, -36.128 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90777, "decimalLat": -31.470617 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604396, "decimalLat": -34.438068 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070405, "decimalLat": -31.72525 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -31.725 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.56322, "decimalLat": -31.96151 }, "geometry": { "type": "Point", "coordinates": [ 152.563, -31.962 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627217, "decimalLat": -34.420681 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.466547, "decimalLat": -32.020247 }, "geometry": { "type": "Point", "coordinates": [ 152.467, -32.02 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606812, "decimalLat": -34.429677 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819043, "decimalLat": -31.161712 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.162 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630861, "decimalLat": -34.420688 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.977836, "decimalLat": -28.621112 }, "geometry": { "type": "Point", "coordinates": [ 152.978, -28.621 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644424, "decimalLat": -34.396365 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377137, "decimalLat": -28.873182 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.873 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.706798, "decimalLat": -32.671492 }, "geometry": { "type": "Point", "coordinates": [ 151.707, -32.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.410861, "decimalLat": -28.660666 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521144, "decimalLat": -34.465662 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.923198, "decimalLat": -32.779394 }, "geometry": { "type": "Point", "coordinates": [ 151.923, -32.779 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108135, "decimalLat": -29.490586 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306909, "decimalLat": -28.74018 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632751, "decimalLat": -34.418877 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.337491, "decimalLat": -28.872387 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521915, "decimalLat": -34.459106 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.238101, "decimalLat": -28.580227 }, "geometry": { "type": "Point", "coordinates": [ 153.238, -28.58 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.173215, "decimalLat": -31.724545 }, "geometry": { "type": "Point", "coordinates": [ 152.173, -31.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498072, "decimalLat": -28.652831 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867422, "decimalLat": -31.476833 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558418, "decimalLat": -28.369256 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.369 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603729, "decimalLat": -34.439335 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514936, "decimalLat": -34.444882 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277395, "decimalLat": -28.679675 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.68 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06478, "decimalLat": -32.70125 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.701 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51648, "decimalLat": -34.450062 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92772, "decimalLat": -31.465217 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.058972, "decimalLat": -32.738424 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.289662, "decimalLat": -28.865871 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615839, "decimalLat": -34.4363 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016902, "decimalLat": -36.541583 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639054, "decimalLat": -34.491763 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897996, "decimalLat": -31.429608 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510417, "decimalLat": -28.580017 }, "geometry": { "type": "Point", "coordinates": [ 153.51, -28.58 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402012, "decimalLat": -28.955103 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.955 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281771, "decimalLat": -28.82399 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.441841, "decimalLat": -28.4721 }, "geometry": { "type": "Point", "coordinates": [ 152.442, -28.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609367, "decimalLat": -28.662723 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624407, "decimalLat": -34.388089 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102015, "decimalLat": -29.489332 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.802526, "decimalLat": -30.214308 }, "geometry": { "type": "Point", "coordinates": [ 152.803, -30.214 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.24024, "decimalLat": -30.990422 }, "geometry": { "type": "Point", "coordinates": [ 150.24, -30.99 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.723608, "decimalLat": -31.247912 }, "geometry": { "type": "Point", "coordinates": [ 152.724, -31.248 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627269, "decimalLat": -34.420366 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522663, "decimalLat": -34.465828 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334493, "decimalLat": -28.813462 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.813 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.828692, "decimalLat": -31.649886 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -31.65 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092506, "decimalLat": -28.602098 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -28.602 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.604999, "decimalLat": -30.341289 }, "geometry": { "type": "Point", "coordinates": [ 152.605, -30.341 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.892485, "decimalLat": -32.479536 }, "geometry": { "type": "Point", "coordinates": [ 151.892, -32.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630879, "decimalLat": -34.38881 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.477969, "decimalLat": -28.627914 }, "geometry": { "type": "Point", "coordinates": [ 153.478, -28.628 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603759, "decimalLat": -34.439435 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532519, "decimalLat": -34.481191 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312962, "decimalLat": -28.821282 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.992311, "decimalLat": -36.556255 }, "geometry": { "type": "Point", "coordinates": [ 149.992, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.66177, "decimalLat": -34.458518 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908621, "decimalLat": -31.454671 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630237, "decimalLat": -34.420433 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615691, "decimalLat": -34.434241 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518389, "decimalLat": -34.451371 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786779, "decimalLat": -31.629236 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.178816, "decimalLat": -32.569474 }, "geometry": { "type": "Point", "coordinates": [ 151.179, -32.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278851, "decimalLat": -28.87422 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110576, "decimalLat": -29.489746 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60452, "decimalLat": -34.424602 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512928, "decimalLat": -34.447258 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06373, "decimalLat": -32.706598 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.061861, "decimalLat": -28.691744 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -28.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604371, "decimalLat": -34.43896 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906957, "decimalLat": -31.449666 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373836, "decimalLat": -31.914365 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063534, "decimalLat": -32.705503 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9012, "decimalLat": -31.4318 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630901, "decimalLat": -34.388801 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632833, "decimalLat": -34.418653 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561414, "decimalLat": -28.393378 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789143, "decimalLat": -34.142259 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.142 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.965237, "decimalLat": -36.459771 }, "geometry": { "type": "Point", "coordinates": [ 149.965, -36.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618121, "decimalLat": -34.435271 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315583, "decimalLat": -28.825211 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.765361, "decimalLat": -32.698012 }, "geometry": { "type": "Point", "coordinates": [ 151.765, -32.698 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32569, "decimalLat": -28.824673 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063599, "decimalLat": -32.706385 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784017, "decimalLat": -33.71767 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63817, "decimalLat": -34.392521 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372097, "decimalLat": -31.920908 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.783266, "decimalLat": -31.630003 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626511, "decimalLat": -34.421028 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517609, "decimalLat": -34.446118 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625453, "decimalLat": -34.38994 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630982, "decimalLat": -34.388235 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063531, "decimalLat": -32.706509 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.600875, "decimalLat": -28.819443 }, "geometry": { "type": "Point", "coordinates": [ 153.601, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101724, "decimalLat": -29.489106 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.651063, "decimalLat": -34.400505 }, "geometry": { "type": "Point", "coordinates": [ 150.651, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512999, "decimalLat": -34.445979 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516523, "decimalLat": -34.450071 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.119529, "decimalLat": -29.489349 }, "geometry": { "type": "Point", "coordinates": [ 153.12, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625453, "decimalLat": -34.38994 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.971426, "decimalLat": -30.642352 }, "geometry": { "type": "Point", "coordinates": [ 152.971, -30.642 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924691, "decimalLat": -31.439956 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.435953, "decimalLat": -28.869026 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514629, "decimalLat": -34.444588 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.485744 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79338, "decimalLat": -31.642558 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.643 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561989, "decimalLat": -28.383579 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60155, "decimalLat": -28.68121 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606812, "decimalLat": -34.429677 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288462, "decimalLat": -28.824458 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609466, "decimalLat": -34.419019 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.557445, "decimalLat": -33.494664 }, "geometry": { "type": "Point", "coordinates": [ 149.557, -33.495 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561373, "decimalLat": -28.331098 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628156, "decimalLat": -34.38974 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.536587, "decimalLat": -28.680566 }, "geometry": { "type": "Point", "coordinates": [ 153.537, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378929, "decimalLat": -31.919799 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605739, "decimalLat": -34.437554 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517714, "decimalLat": -34.441459 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37553, "decimalLat": -29.000055 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -29.0 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428401, "decimalLat": -28.62709 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303633, "decimalLat": -28.817616 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.074088, "decimalLat": -33.148599 }, "geometry": { "type": "Point", "coordinates": [ 151.074, -33.149 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809947, "decimalLat": -31.125883 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60181, "decimalLat": -34.412441 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272904, "decimalLat": -28.928842 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522479, "decimalLat": -34.465816 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51442, "decimalLat": -34.445773 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.396884, "decimalLat": -31.902418 }, "geometry": { "type": "Point", "coordinates": [ 152.397, -31.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.56022, "decimalLat": -33.691925 }, "geometry": { "type": "Point", "coordinates": [ 149.56, -33.692 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913511, "decimalLat": -31.473286 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.691115, "decimalLat": -33.129661 }, "geometry": { "type": "Point", "coordinates": [ 150.691, -33.13 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873554, "decimalLat": -31.457697 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.011509, "decimalLat": -32.726984 }, "geometry": { "type": "Point", "coordinates": [ 152.012, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629726, "decimalLat": -34.42082 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603757, "decimalLat": -34.436848 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.899707, "decimalLat": -33.999119 }, "geometry": { "type": "Point", "coordinates": [ 150.9, -33.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641382, "decimalLat": -33.431129 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -33.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612164, "decimalLat": -34.432009 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792607, "decimalLat": -31.640827 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.641 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630971, "decimalLat": -34.388253 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609924, "decimalLat": -34.43274 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615749, "decimalLat": -34.436054 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626997, "decimalLat": -34.420758 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603958, "decimalLat": -34.427115 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516095, "decimalLat": -34.449477 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923886, "decimalLat": -31.444286 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.362191, "decimalLat": -28.649451 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -28.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637389, "decimalLat": -34.423763 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640081, "decimalLat": -34.492801 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.045814, "decimalLat": -33.764796 }, "geometry": { "type": "Point", "coordinates": [ 150.046, -33.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605296, "decimalLat": -34.426357 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.245715, "decimalLat": -33.171595 }, "geometry": { "type": "Point", "coordinates": [ 151.246, -33.172 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638748, "decimalLat": -34.491405 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638381, "decimalLat": -34.491299 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51465, "decimalLat": -34.444615 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642915, "decimalLat": -34.394713 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640251, "decimalLat": -33.541888 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -33.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534762, "decimalLat": -34.45933 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355785, "decimalLat": -31.85809 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630109, "decimalLat": -34.420728 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103902, "decimalLat": -29.485548 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.699262, "decimalLat": -32.691489 }, "geometry": { "type": "Point", "coordinates": [ 151.699, -32.691 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.22866, "decimalLat": -28.890701 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60496, "decimalLat": -34.423267 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901458, "decimalLat": -31.442526 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898595, "decimalLat": -31.474334 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91598, "decimalLat": -31.480897 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402665, "decimalLat": -28.960617 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640626, "decimalLat": -34.397626 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895305, "decimalLat": -31.445707 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103642, "decimalLat": -29.48583 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.501842, "decimalLat": -32.373539 }, "geometry": { "type": "Point", "coordinates": [ 152.502, -32.374 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10504, "decimalLat": -29.489694 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095866, "decimalLat": -29.484544 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641688, "decimalLat": -34.394663 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60515, "decimalLat": -34.437984 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527173, "decimalLat": -34.469418 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.773803, "decimalLat": -30.202024 }, "geometry": { "type": "Point", "coordinates": [ 152.774, -30.202 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403889, "decimalLat": -31.927822 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19419, "decimalLat": -32.212387 }, "geometry": { "type": "Point", "coordinates": [ 152.194, -32.212 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885703, "decimalLat": -34.016682 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.017 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.549457, "decimalLat": -28.588934 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637334, "decimalLat": -34.42378 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.187404, "decimalLat": -31.952836 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -31.953 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.709065, "decimalLat": -32.633094 }, "geometry": { "type": "Point", "coordinates": [ 151.709, -32.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103854, "decimalLat": -29.485468 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518232, "decimalLat": -34.4519 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925149, "decimalLat": -31.459057 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.062574, "decimalLat": -33.7756 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644276, "decimalLat": -34.396606 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.979631, "decimalLat": -34.095597 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063364, "decimalLat": -32.706283 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819043, "decimalLat": -31.161712 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.162 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630343, "decimalLat": -34.420913 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515278, "decimalLat": -34.450966 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879613, "decimalLat": -31.453309 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608593, "decimalLat": -28.688273 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.526899, "decimalLat": -33.667782 }, "geometry": { "type": "Point", "coordinates": [ 149.527, -33.668 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603791, "decimalLat": -34.427274 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.281077, "decimalLat": -33.127471 }, "geometry": { "type": "Point", "coordinates": [ 151.281, -33.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520666, "decimalLat": -34.436218 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813985, "decimalLat": -34.127738 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630543, "decimalLat": -34.388767 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907653, "decimalLat": -31.455989 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643874, "decimalLat": -34.393488 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.995573, "decimalLat": -36.572611 }, "geometry": { "type": "Point", "coordinates": [ 149.996, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110511, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603791, "decimalLat": -34.427274 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605549, "decimalLat": -34.432393 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604831, "decimalLat": -34.427024 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914032, "decimalLat": -31.480308 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627579, "decimalLat": -34.42094 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.995573, "decimalLat": -36.572611 }, "geometry": { "type": "Point", "coordinates": [ 149.996, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51648, "decimalLat": -34.450062 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077694, "decimalLat": -32.723503 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925788, "decimalLat": -31.47137 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355785, "decimalLat": -31.85809 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616062, "decimalLat": -34.435348 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355785, "decimalLat": -31.85809 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630002, "decimalLat": -34.421041 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89159, "decimalLat": -31.450291 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522924, "decimalLat": -34.452599 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103918, "decimalLat": -29.489503 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.693612, "decimalLat": -31.234745 }, "geometry": { "type": "Point", "coordinates": [ 152.694, -31.235 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519109, "decimalLat": -34.43661 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039612, "decimalLat": -32.737851 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276362, "decimalLat": -28.932217 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -28.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630086, "decimalLat": -34.420764 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78408, "decimalLat": -31.633444 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516141, "decimalLat": -34.459286 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603359, "decimalLat": -34.445828 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602505, "decimalLat": -34.436111 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82296, "decimalLat": -34.150074 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103881, "decimalLat": -29.489577 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067915, "decimalLat": -32.707654 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914944, "decimalLat": -31.44496 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639659, "decimalLat": -34.397977 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063492, "decimalLat": -32.705827 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612185, "decimalLat": -34.432415 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823771, "decimalLat": -29.810892 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520008, "decimalLat": -34.438945 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609156, "decimalLat": -34.418805 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616607, "decimalLat": -34.441075 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808608, "decimalLat": -34.098235 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108167, "decimalLat": -29.4906 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095559, "decimalLat": -29.485105 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519908, "decimalLat": -34.452655 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.289542, "decimalLat": -28.676152 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824852, "decimalLat": -29.50573 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8249, "decimalLat": -29.810388 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.81 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.287996, "decimalLat": -28.836062 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.836 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280421, "decimalLat": -28.806664 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.807 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433264, "decimalLat": -28.958481 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638987, "decimalLat": -34.491815 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.862976, "decimalLat": -29.609964 }, "geometry": { "type": "Point", "coordinates": [ 150.863, -29.61 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609203, "decimalLat": -34.420591 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515828, "decimalLat": -34.446713 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51712, "decimalLat": -34.453807 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60251, "decimalLat": -34.419928 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.351047, "decimalLat": -36.153498 }, "geometry": { "type": "Point", "coordinates": [ 149.351, -36.153 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06373, "decimalLat": -32.706589 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516758, "decimalLat": -34.44876 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926072, "decimalLat": -31.458849 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.957744, "decimalLat": -36.497148 }, "geometry": { "type": "Point", "coordinates": [ 149.958, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.778774, "decimalLat": -31.640651 }, "geometry": { "type": "Point", "coordinates": [ 152.779, -31.641 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56215, "decimalLat": -28.383603 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785312, "decimalLat": -33.711735 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885466, "decimalLat": -31.444068 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.793442, "decimalLat": -34.140294 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077777, "decimalLat": -32.720929 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.130128, "decimalLat": -30.094961 }, "geometry": { "type": "Point", "coordinates": [ 152.13, -30.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637334, "decimalLat": -34.42378 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640581, "decimalLat": -34.397283 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62697, "decimalLat": -34.420956 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659566, "decimalLat": -34.458331 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78465, "decimalLat": -33.708 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911934, "decimalLat": -31.465554 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632996, "decimalLat": -34.419432 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.496872, "decimalLat": -28.694936 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.695 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921051, "decimalLat": -31.463833 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.175427, "decimalLat": -32.661444 }, "geometry": { "type": "Point", "coordinates": [ 152.175, -32.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555503, "decimalLat": -28.387761 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.83529, "decimalLat": -31.533488 }, "geometry": { "type": "Point", "coordinates": [ 152.835, -31.533 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86819, "decimalLat": -29.66721 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870255, "decimalLat": -31.465057 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629856, "decimalLat": -34.394244 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399429, "decimalLat": -28.615874 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.616 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608142, "decimalLat": -34.456686 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104079, "decimalLat": -29.485174 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636097, "decimalLat": -34.421745 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635848, "decimalLat": -34.394631 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917748, "decimalLat": -31.457821 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520025, "decimalLat": -34.435817 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605806, "decimalLat": -34.437492 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.167614, "decimalLat": -29.432852 }, "geometry": { "type": "Point", "coordinates": [ 153.168, -29.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.03081, "decimalLat": -28.84987 }, "geometry": { "type": "Point", "coordinates": [ 153.031, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61671, "decimalLat": -34.438985 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611998, "decimalLat": -34.432123 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610293, "decimalLat": -34.419008 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604783, "decimalLat": -34.427194 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.337997, "decimalLat": -31.578855 }, "geometry": { "type": "Point", "coordinates": [ 149.338, -31.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.052241, "decimalLat": -33.766537 }, "geometry": { "type": "Point", "coordinates": [ 150.052, -33.767 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.386918, "decimalLat": -31.947618 }, "geometry": { "type": "Point", "coordinates": [ 152.387, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616521, "decimalLat": -34.439901 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916175, "decimalLat": -31.485816 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958366, "decimalLat": -29.321941 }, "geometry": { "type": "Point", "coordinates": [ 149.958, -29.322 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.846997, "decimalLat": -34.051962 }, "geometry": { "type": "Point", "coordinates": [ 150.847, -34.052 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.515757, "decimalLat": -28.685659 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -28.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518207, "decimalLat": -34.453495 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631148, "decimalLat": -34.387355 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624481, "decimalLat": -34.388163 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630153, "decimalLat": -34.420323 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103902, "decimalLat": -29.489507 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607671, "decimalLat": -34.436573 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.657688, "decimalLat": -32.689158 }, "geometry": { "type": "Point", "coordinates": [ 151.658, -32.689 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609379, "decimalLat": -34.418999 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110281, "decimalLat": -29.488377 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521641, "decimalLat": -34.465799 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109669, "decimalLat": -29.492804 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091763, "decimalLat": -29.487901 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064599, "decimalLat": -32.709086 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.758981, "decimalLat": -31.246497 }, "geometry": { "type": "Point", "coordinates": [ 152.759, -31.246 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517136, "decimalLat": -34.453618 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635464, "decimalLat": -34.419867 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609319, "decimalLat": -34.419214 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521655, "decimalLat": -34.465339 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632614, "decimalLat": -34.418315 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609313, "decimalLat": -34.420557 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095384, "decimalLat": -29.484025 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863798, "decimalLat": -31.5351 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630389, "decimalLat": -34.420842 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.392856, "decimalLat": -28.959199 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.640641, "decimalLat": -30.330867 }, "geometry": { "type": "Point", "coordinates": [ 151.641, -30.331 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785146, "decimalLat": -33.712583 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625035, "decimalLat": -34.388174 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519791, "decimalLat": -34.452923 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.855343, "decimalLat": -32.611534 }, "geometry": { "type": "Point", "coordinates": [ 151.855, -32.612 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912557, "decimalLat": -31.452162 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610333, "decimalLat": -34.419126 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517238, "decimalLat": -34.447607 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279948, "decimalLat": -28.831062 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9407, "decimalLat": -30.39354 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -30.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516696, "decimalLat": -34.436516 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.66621, "decimalLat": -30.50157 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604416, "decimalLat": -34.426727 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920242, "decimalLat": -31.475378 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.04178, "decimalLat": -34.02843 }, "geometry": { "type": "Point", "coordinates": [ 151.042, -34.028 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.66621, "decimalLat": -30.50157 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638676, "decimalLat": -34.490881 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519072, "decimalLat": -34.447437 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614796, "decimalLat": -34.433953 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.030153, "decimalLat": -34.033559 }, "geometry": { "type": "Point", "coordinates": [ 151.03, -34.034 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520473, "decimalLat": -34.454127 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.069953, "decimalLat": -32.712723 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606749, "decimalLat": -34.455911 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643676, "decimalLat": -34.395882 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637099, "decimalLat": -34.485414 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521212, "decimalLat": -34.435409 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515776, "decimalLat": -34.448848 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515111, "decimalLat": -34.445932 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323139, "decimalLat": -28.823823 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990241, "decimalLat": -34.019721 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.02 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823968, "decimalLat": -29.810938 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60384, "decimalLat": -34.44078 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90868, "decimalLat": -30.17362 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -30.174 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.467721, "decimalLat": -33.679947 }, "geometry": { "type": "Point", "coordinates": [ 149.468, -33.68 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79369, "decimalLat": -31.64099 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.641 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632741, "decimalLat": -34.418823 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921613, "decimalLat": -31.480341 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.795187, "decimalLat": -34.143231 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.723822, "decimalLat": -34.528943 }, "geometry": { "type": "Point", "coordinates": [ 149.724, -34.529 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.345513, "decimalLat": -28.821842 }, "geometry": { "type": "Point", "coordinates": [ 153.346, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103945, "decimalLat": -29.489587 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.084703, "decimalLat": -32.772039 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.772 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.05965, "decimalLat": -33.776504 }, "geometry": { "type": "Point", "coordinates": [ 150.06, -33.777 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.592747, "decimalLat": -28.660502 }, "geometry": { "type": "Point", "coordinates": [ 153.593, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.41096, "decimalLat": -31.940063 }, "geometry": { "type": "Point", "coordinates": [ 152.411, -31.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.725575, "decimalLat": -29.400071 }, "geometry": { "type": "Point", "coordinates": [ 152.726, -29.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373609, "decimalLat": -31.914578 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.952449, "decimalLat": -33.978417 }, "geometry": { "type": "Point", "coordinates": [ 150.952, -33.978 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06545, "decimalLat": -32.710536 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.52658, "decimalLat": -28.48505 }, "geometry": { "type": "Point", "coordinates": [ 153.527, -28.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521389, "decimalLat": -34.450405 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61357, "decimalLat": -34.431919 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521484, "decimalLat": -34.464849 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.692859, "decimalLat": -32.696456 }, "geometry": { "type": "Point", "coordinates": [ 151.693, -32.696 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624254, "decimalLat": -34.388898 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.828648, "decimalLat": -34.079153 }, "geometry": { "type": "Point", "coordinates": [ 150.829, -34.079 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904889, "decimalLat": -31.45223 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52161, "decimalLat": -34.465374 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631989, "decimalLat": -34.38802 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.19405, "decimalLat": -34.546593 }, "geometry": { "type": "Point", "coordinates": [ 150.194, -34.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316981, "decimalLat": -28.949626 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.845857, "decimalLat": -31.44268 }, "geometry": { "type": "Point", "coordinates": [ 152.846, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523669, "decimalLat": -34.464217 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.991996, "decimalLat": -33.981805 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -33.982 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028358, "decimalLat": -32.191234 }, "geometry": { "type": "Point", "coordinates": [ 152.028, -32.191 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79572, "decimalLat": -34.14609 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103221, "decimalLat": -29.487948 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517197, "decimalLat": -34.451591 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.884006, "decimalLat": -32.738597 }, "geometry": { "type": "Point", "coordinates": [ 151.884, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865195, "decimalLat": -31.284119 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -31.284 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624373, "decimalLat": -34.388125 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616059, "decimalLat": -34.43433 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103377, "decimalLat": -29.489918 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.775888, "decimalLat": -31.583494 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -31.583 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104031, "decimalLat": -29.485557 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.961159, "decimalLat": -32.018393 }, "geometry": { "type": "Point", "coordinates": [ 151.961, -32.018 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513826, "decimalLat": -34.446347 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428951, "decimalLat": -28.972711 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.973 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107395, "decimalLat": -29.490077 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373699, "decimalLat": -31.914518 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.933658, "decimalLat": -29.681698 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -29.682 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785291, "decimalLat": -33.704553 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59578, "decimalLat": -34.413693 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.938952, "decimalLat": -29.789508 }, "geometry": { "type": "Point", "coordinates": [ 150.939, -29.79 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905161, "decimalLat": -31.439029 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367822, "decimalLat": -28.866277 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911315, "decimalLat": -31.472923 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659876, "decimalLat": -34.455389 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.82202, "decimalLat": -32.352909 }, "geometry": { "type": "Point", "coordinates": [ 151.822, -32.353 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524503, "decimalLat": -34.454029 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8933, "decimalLat": -31.443058 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103382, "decimalLat": -29.48636 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.617473, "decimalLat": -28.659644 }, "geometry": { "type": "Point", "coordinates": [ 153.617, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513805, "decimalLat": -34.44632 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838075, "decimalLat": -34.071086 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.071 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103436, "decimalLat": -29.485604 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104004, "decimalLat": -29.484343 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922894, "decimalLat": -31.475207 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07149, "decimalLat": -30.3352 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.335 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639987, "decimalLat": -34.49188 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605362, "decimalLat": -34.427115 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628767, "decimalLat": -34.389283 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299324, "decimalLat": -28.888717 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604915, "decimalLat": -34.42753 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617314, "decimalLat": -34.43879 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.018597, "decimalLat": -30.367895 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -30.368 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641376, "decimalLat": -34.395693 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.412705, "decimalLat": -29.02485 }, "geometry": { "type": "Point", "coordinates": [ 153.413, -29.025 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.018597, "decimalLat": -30.367895 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -30.368 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104079, "decimalLat": -29.4793 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039928, "decimalLat": -32.730415 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.284801, "decimalLat": -28.468062 }, "geometry": { "type": "Point", "coordinates": [ 152.285, -28.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513139, "decimalLat": -34.447127 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.621538, "decimalLat": -30.296253 }, "geometry": { "type": "Point", "coordinates": [ 152.622, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.780153, "decimalLat": -30.191711 }, "geometry": { "type": "Point", "coordinates": [ 152.78, -30.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622129, "decimalLat": -34.39789 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822057, "decimalLat": -31.448906 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10372, "decimalLat": -29.485767 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639088, "decimalLat": -34.491349 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631238, "decimalLat": -34.420047 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.856357, "decimalLat": -31.465625 }, "geometry": { "type": "Point", "coordinates": [ 152.856, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.036297, "decimalLat": -32.764669 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065247, "decimalLat": -32.710111 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.781895, "decimalLat": -30.19323 }, "geometry": { "type": "Point", "coordinates": [ 152.782, -30.193 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.029143, "decimalLat": -32.737359 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928515, "decimalLat": -31.459619 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639094, "decimalLat": -34.491493 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061344, "decimalLat": -32.709636 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8278, "decimalLat": -31.26337 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -31.263 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.873769, "decimalLat": -34.035121 }, "geometry": { "type": "Point", "coordinates": [ 150.874, -34.035 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890236, "decimalLat": -31.448028 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.101771, "decimalLat": -32.733438 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793417, "decimalLat": -31.642535 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.643 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92928, "decimalLat": -31.456425 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812345, "decimalLat": -34.124693 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.125 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063401, "decimalLat": -32.70627 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.719371, "decimalLat": -31.691318 }, "geometry": { "type": "Point", "coordinates": [ 152.719, -31.691 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.106638, "decimalLat": -29.489732 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629001, "decimalLat": -34.390243 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9738, "decimalLat": -28.53064 }, "geometry": { "type": "Point", "coordinates": [ 152.974, -28.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618897, "decimalLat": -34.436314 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637315, "decimalLat": -34.488168 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105345, "decimalLat": -32.736858 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600433, "decimalLat": -34.522986 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.523 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110511, "decimalLat": -29.490152 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608751, "decimalLat": -34.455553 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.300833, "decimalLat": -30.587777 }, "geometry": { "type": "Point", "coordinates": [ 151.301, -30.588 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.714357, "decimalLat": -32.2256 }, "geometry": { "type": "Point", "coordinates": [ 151.714, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606629, "decimalLat": -34.455548 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.377833, "decimalLat": -36.013252 }, "geometry": { "type": "Point", "coordinates": [ 149.378, -36.013 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921534, "decimalLat": -31.450081 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787065, "decimalLat": -33.706769 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.866068, "decimalLat": -31.305093 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -31.305 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612218, "decimalLat": -34.432424 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519305, "decimalLat": -34.453148 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911279, "decimalLat": -31.473747 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913295, "decimalLat": -31.48996 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640289, "decimalLat": -34.396457 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786549, "decimalLat": -31.629548 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.0756, "decimalLat": -28.555634 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908016, "decimalLat": -31.441579 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604405, "decimalLat": -34.424419 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79959, "decimalLat": -34.19051 }, "geometry": { "type": "Point", "coordinates": [ 150.8, -34.191 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914194, "decimalLat": -29.590572 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -29.591 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644245, "decimalLat": -34.394207 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626785, "decimalLat": -34.384737 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.08864, "decimalLat": -28.525889 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -28.526 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785297, "decimalLat": -33.717005 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101193, "decimalLat": -29.489956 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.638, "decimalLat": -30.468 }, "geometry": { "type": "Point", "coordinates": [ 151.638, -30.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630095, "decimalLat": -34.420448 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.661708, "decimalLat": -34.458408 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822863, "decimalLat": -34.127969 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615238, "decimalLat": -34.436414 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631347, "decimalLat": -34.42004 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625348, "decimalLat": -34.384411 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079053, "decimalLat": -32.737201 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10446, "decimalLat": -29.477497 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.097572, "decimalLat": -29.487971 }, "geometry": { "type": "Point", "coordinates": [ 153.098, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79369, "decimalLat": -34.14482 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.145 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.980807, "decimalLat": -34.128146 }, "geometry": { "type": "Point", "coordinates": [ 150.981, -34.128 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298434, "decimalLat": -28.820007 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790445, "decimalLat": -30.251187 }, "geometry": { "type": "Point", "coordinates": [ 152.79, -30.251 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626174, "decimalLat": -34.386735 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071682, "decimalLat": -28.585441 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -28.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516541, "decimalLat": -34.449116 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.167168, "decimalLat": -32.720107 }, "geometry": { "type": "Point", "coordinates": [ 152.167, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555888, "decimalLat": -28.399064 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521102, "decimalLat": -34.435425 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608915, "decimalLat": -34.420802 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631521, "decimalLat": -34.388417 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641543, "decimalLat": -34.395561 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917599, "decimalLat": -31.474412 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516831, "decimalLat": -34.448491 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64075, "decimalLat": -34.402867 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.403 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.218502, "decimalLat": -28.824827 }, "geometry": { "type": "Point", "coordinates": [ 153.219, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.649042, "decimalLat": -32.656556 }, "geometry": { "type": "Point", "coordinates": [ 151.649, -32.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607976, "decimalLat": -34.43007 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102813, "decimalLat": -29.486963 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189959, "decimalLat": -32.223426 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200465, "decimalLat": -29.353932 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561776, "decimalLat": -28.385806 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.480093, "decimalLat": -31.997967 }, "geometry": { "type": "Point", "coordinates": [ 152.48, -31.998 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929617, "decimalLat": -29.734975 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630798, "decimalLat": -34.387041 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908106, "decimalLat": -31.434723 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060972, "decimalLat": -32.710932 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108151, "decimalLat": -29.490161 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.6046, "decimalLat": -30.082446 }, "geometry": { "type": "Point", "coordinates": [ 152.605, -30.082 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637476, "decimalLat": -34.421817 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921094, "decimalLat": -31.479547 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016461, "decimalLat": -36.575848 }, "geometry": { "type": "Point", "coordinates": [ 150.016, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630238, "decimalLat": -34.420406 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.661011, "decimalLat": -34.455285 }, "geometry": { "type": "Point", "coordinates": [ 150.661, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.117587, "decimalLat": -35.059619 }, "geometry": { "type": "Point", "coordinates": [ 150.118, -35.06 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896633, "decimalLat": -31.461992 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523053, "decimalLat": -34.46626 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784414, "decimalLat": -33.717982 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518783, "decimalLat": -34.44725 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598861, "decimalLat": -34.428818 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325475, "decimalLat": -28.825055 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510582, "decimalLat": -28.808619 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.709135, "decimalLat": -31.489597 }, "geometry": { "type": "Point", "coordinates": [ 151.709, -31.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364087, "decimalLat": -28.68098 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520663, "decimalLat": -34.466861 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615941, "decimalLat": -34.438456 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877785, "decimalLat": -31.467171 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55905, "decimalLat": -28.33191 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.332 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635328, "decimalLat": -34.419666 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364275, "decimalLat": -28.834226 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.098066, "decimalLat": -29.489012 }, "geometry": { "type": "Point", "coordinates": [ 153.098, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103623, "decimalLat": -29.488438 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415213, "decimalLat": -31.933254 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.74925, "decimalLat": -29.56628 }, "geometry": { "type": "Point", "coordinates": [ 152.749, -29.566 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895739, "decimalLat": -31.431324 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.624378, "decimalLat": -30.416721 }, "geometry": { "type": "Point", "coordinates": [ 151.624, -30.417 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103956, "decimalLat": -29.489545 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927896, "decimalLat": -31.465414 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659523, "decimalLat": -33.526971 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465972, "decimalLat": -28.673632 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.674 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.385243, "decimalLat": -31.928404 }, "geometry": { "type": "Point", "coordinates": [ 152.385, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101719, "decimalLat": -29.489391 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561944, "decimalLat": -28.38531 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562886, "decimalLat": -28.349043 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.349 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913417, "decimalLat": -31.4292 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520692, "decimalLat": -34.453735 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.996446, "decimalLat": -30.413154 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -30.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494107, "decimalLat": -28.226932 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.227 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625792, "decimalLat": -34.395635 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.849548, "decimalLat": -34.080418 }, "geometry": { "type": "Point", "coordinates": [ 150.85, -34.08 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51723, "decimalLat": -34.451564 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630909, "decimalLat": -34.390064 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.026172, "decimalLat": -32.123382 }, "geometry": { "type": "Point", "coordinates": [ 152.026, -32.123 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.563856, "decimalLat": -34.500349 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -34.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064475, "decimalLat": -32.706797 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519486, "decimalLat": -34.456604 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359068, "decimalLat": -31.912724 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323456, "decimalLat": -28.8555 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.855 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627073, "decimalLat": -34.389557 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101188, "decimalLat": -29.489881 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928637, "decimalLat": -31.459523 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.073313, "decimalLat": -30.888204 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62739, "decimalLat": -34.420306 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.539442, "decimalLat": -32.891945 }, "geometry": { "type": "Point", "coordinates": [ 149.539, -32.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520979, "decimalLat": -34.464271 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889196, "decimalLat": -30.608559 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -30.609 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364275, "decimalLat": -28.834226 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597751, "decimalLat": -34.412857 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632646, "decimalLat": -34.418343 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561829, "decimalLat": -28.391217 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604295, "decimalLat": -34.43895 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603651, "decimalLat": -34.42646 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31413, "decimalLat": -28.85164 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.852 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.956941, "decimalLat": -36.59482 }, "geometry": { "type": "Point", "coordinates": [ 149.957, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.118509, "decimalLat": -28.717485 }, "geometry": { "type": "Point", "coordinates": [ 153.119, -28.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.956941, "decimalLat": -36.59482 }, "geometry": { "type": "Point", "coordinates": [ 149.957, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302055, "decimalLat": -28.847839 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.988759, "decimalLat": -33.978324 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -33.978 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.924176, "decimalLat": -29.795667 }, "geometry": { "type": "Point", "coordinates": [ 150.924, -29.796 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.949789, "decimalLat": -31.171211 }, "geometry": { "type": "Point", "coordinates": [ 152.95, -31.171 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641385, "decimalLat": -34.39344 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.422407, "decimalLat": -28.874361 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316405, "decimalLat": -28.866354 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618424, "decimalLat": -34.439938 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598041, "decimalLat": -34.425926 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400571, "decimalLat": -28.257686 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.467897, "decimalLat": -28.32819 }, "geometry": { "type": "Point", "coordinates": [ 153.468, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606837, "decimalLat": -34.434528 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517253, "decimalLat": -34.454468 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299068, "decimalLat": -28.889469 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632646, "decimalLat": -34.392883 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.057947, "decimalLat": -29.737034 }, "geometry": { "type": "Point", "coordinates": [ 151.058, -29.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51761, "decimalLat": -34.44756 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.860742, "decimalLat": -34.069334 }, "geometry": { "type": "Point", "coordinates": [ 150.861, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.040736, "decimalLat": -30.886881 }, "geometry": { "type": "Point", "coordinates": [ 153.041, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908694, "decimalLat": -31.476303 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518451, "decimalLat": -34.457368 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9, "decimalLat": -31.466435 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.882095, "decimalLat": -34.066811 }, "geometry": { "type": "Point", "coordinates": [ 150.882, -34.067 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658781, "decimalLat": -33.526821 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.413761, "decimalLat": -28.26577 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.266 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911108, "decimalLat": -31.429599 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51765, "decimalLat": -34.446182 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065178, "decimalLat": -32.71096 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63379, "decimalLat": -34.489254 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.512127, "decimalLat": -28.723421 }, "geometry": { "type": "Point", "coordinates": [ 153.512, -28.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.060932, "decimalLat": -36.115541 }, "geometry": { "type": "Point", "coordinates": [ 150.061, -36.116 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.089215, "decimalLat": -28.597991 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -28.598 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895827, "decimalLat": -31.473211 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514528, "decimalLat": -34.444694 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520037, "decimalLat": -34.444607 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898387, "decimalLat": -31.435116 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.719185, "decimalLat": -32.639258 }, "geometry": { "type": "Point", "coordinates": [ 151.719, -32.639 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.955565, "decimalLat": -30.667309 }, "geometry": { "type": "Point", "coordinates": [ 152.956, -30.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622928, "decimalLat": -34.38385 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629777, "decimalLat": -34.390087 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092144, "decimalLat": -29.488065 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636166, "decimalLat": -34.485703 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100767, "decimalLat": -29.490142 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604765, "decimalLat": -34.427068 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522875, "decimalLat": -34.450931 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6288, "decimalLat": -34.420865 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296358, "decimalLat": -28.825967 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516434, "decimalLat": -34.450151 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109363, "decimalLat": -29.490684 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09282, "decimalLat": -29.488363 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.567012, "decimalLat": -34.483871 }, "geometry": { "type": "Point", "coordinates": [ 150.567, -34.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659793, "decimalLat": -34.458381 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784899, "decimalLat": -33.712935 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515696, "decimalLat": -34.449712 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643644, "decimalLat": -34.394709 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514777, "decimalLat": -34.456674 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108205, "decimalLat": -29.490586 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519854, "decimalLat": -34.452618 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522251, "decimalLat": -34.465036 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514266, "decimalLat": -34.446537 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640736, "decimalLat": -34.494283 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515447, "decimalLat": -34.448941 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514569, "decimalLat": -34.447345 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990022, "decimalLat": -34.029758 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.03 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641557, "decimalLat": -33.742033 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -33.742 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604765, "decimalLat": -34.427068 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.958955, "decimalLat": -29.560748 }, "geometry": { "type": "Point", "coordinates": [ 152.959, -29.561 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989154, "decimalLat": -34.02876 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632753, "decimalLat": -34.418029 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.969665, "decimalLat": -31.197088 }, "geometry": { "type": "Point", "coordinates": [ 152.97, -31.197 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513903, "decimalLat": -34.447061 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.607518, "decimalLat": -30.343733 }, "geometry": { "type": "Point", "coordinates": [ 152.608, -30.344 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.957744, "decimalLat": -36.497148 }, "geometry": { "type": "Point", "coordinates": [ 149.958, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785219, "decimalLat": -33.705671 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522588, "decimalLat": -34.451808 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.162082, "decimalLat": -32.71238 }, "geometry": { "type": "Point", "coordinates": [ 152.162, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293928, "decimalLat": -28.864534 }, "geometry": { "type": "Point", "coordinates": [ 153.294, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603623, "decimalLat": -34.427433 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528581, "decimalLat": -34.470384 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104047, "decimalLat": -29.485146 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81106, "decimalLat": -31.654179 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -31.654 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818669, "decimalLat": -31.649283 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.649 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383566, "decimalLat": -31.885699 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364275, "decimalLat": -28.834226 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102711, "decimalLat": -29.48764 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373696, "decimalLat": -31.914323 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.08315, "decimalLat": -29.728634 }, "geometry": { "type": "Point", "coordinates": [ 151.083, -29.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.996446, "decimalLat": -30.413154 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -30.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637467, "decimalLat": -34.42371 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.12752, "decimalLat": -31.10136 }, "geometry": { "type": "Point", "coordinates": [ 150.128, -31.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637334, "decimalLat": -34.42378 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63202, "decimalLat": -34.394629 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103876, "decimalLat": -29.489605 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910811, "decimalLat": -31.431343 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90656, "decimalLat": -30.17504 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -30.175 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909428, "decimalLat": -31.475575 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627086, "decimalLat": -34.389494 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.093798, "decimalLat": -31.403015 }, "geometry": { "type": "Point", "coordinates": [ 152.094, -31.403 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412804, "decimalLat": -31.933272 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517185, "decimalLat": -34.451626 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514324, "decimalLat": -34.446421 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639186, "decimalLat": -34.39273 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603083, "decimalLat": -34.417749 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919099, "decimalLat": -31.480973 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792576, "decimalLat": -31.641596 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60237, "decimalLat": -28.69032 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.083715, "decimalLat": -32.73127 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785405, "decimalLat": -31.632709 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335403, "decimalLat": -28.87187 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637618, "decimalLat": -34.488625 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91622, "decimalLat": -31.435971 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.801022, "decimalLat": -34.112924 }, "geometry": { "type": "Point", "coordinates": [ 150.801, -34.113 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.54409, "decimalLat": -31.877279 }, "geometry": { "type": "Point", "coordinates": [ 148.544, -31.877 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402077, "decimalLat": -28.260205 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.389894, "decimalLat": -31.902771 }, "geometry": { "type": "Point", "coordinates": [ 152.39, -31.903 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622867, "decimalLat": -34.384489 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514345, "decimalLat": -34.446457 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531266, "decimalLat": -34.457934 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603468, "decimalLat": -34.419127 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63884, "decimalLat": -34.419373 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.009605, "decimalLat": -34.04509 }, "geometry": { "type": "Point", "coordinates": [ 151.01, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639051, "decimalLat": -34.491492 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.079785, "decimalLat": -31.131996 }, "geometry": { "type": "Point", "coordinates": [ 150.08, -31.132 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.368221, "decimalLat": -28.614583 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.615 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.087119, "decimalLat": -32.763923 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -32.764 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.876892, "decimalLat": -31.490985 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -31.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615856, "decimalLat": -34.439933 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63119, "decimalLat": -34.387428 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.957701, "decimalLat": -30.648918 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -30.649 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921265, "decimalLat": -31.440595 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520434, "decimalLat": -34.465765 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.862399, "decimalLat": -34.061874 }, "geometry": { "type": "Point", "coordinates": [ 150.862, -34.062 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527073, "decimalLat": -34.469479 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520279, "decimalLat": -34.465834 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.838424, "decimalLat": -31.594859 }, "geometry": { "type": "Point", "coordinates": [ 152.838, -31.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608429, "decimalLat": -28.689794 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.299948, "decimalLat": -31.945874 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628079, "decimalLat": -34.390928 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810624, "decimalLat": -29.807661 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -29.808 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.376681, "decimalLat": -31.918591 }, "geometry": { "type": "Point", "coordinates": [ 152.377, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787233, "decimalLat": -33.704205 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065456, "decimalLat": -32.701662 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.702 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.613328, "decimalLat": -31.231404 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -31.231 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919383, "decimalLat": -31.471416 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519902, "decimalLat": -34.452484 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.3105, "decimalLat": -32.4936 }, "geometry": { "type": "Point", "coordinates": [ 152.311, -32.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514455, "decimalLat": -34.446036 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063677, "decimalLat": -32.706607 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656266, "decimalLat": -34.458773 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.496998, "decimalLat": -28.546915 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629115, "decimalLat": -28.637699 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910278, "decimalLat": -31.469568 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617, "decimalLat": -34.448682 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630886, "decimalLat": -34.39009 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.808048, "decimalLat": -31.670899 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -31.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.205304, "decimalLat": -28.61071 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -28.611 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955028, "decimalLat": -36.650407 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.290135, "decimalLat": -28.832358 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.832 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522169, "decimalLat": -34.464863 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296191, "decimalLat": -28.82055 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609266, "decimalLat": -34.41878 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553297, "decimalLat": -28.713344 }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.713 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.527643, "decimalLat": -28.404354 }, "geometry": { "type": "Point", "coordinates": [ 153.528, -28.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616198, "decimalLat": -34.434395 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609379, "decimalLat": -34.418999 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608012, "decimalLat": -34.433767 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.992784, "decimalLat": -30.40912 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -30.409 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.451672, "decimalLat": -31.937801 }, "geometry": { "type": "Point", "coordinates": [ 152.452, -31.938 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899175, "decimalLat": -29.63079 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818579, "decimalLat": -28.464975 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -28.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640118, "decimalLat": -34.398662 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9096, "decimalLat": -30.17195 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -30.172 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516476, "decimalLat": -34.448736 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597325, "decimalLat": -34.41027 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.041366, "decimalLat": -29.771693 }, "geometry": { "type": "Point", "coordinates": [ 151.041, -29.772 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.015786, "decimalLat": -29.014317 }, "geometry": { "type": "Point", "coordinates": [ 153.016, -29.014 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646608, "decimalLat": -34.395659 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278132, "decimalLat": -28.831137 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525468, "decimalLat": -34.464839 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919934, "decimalLat": -31.470342 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908105, "decimalLat": -31.467834 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.934681, "decimalLat": -30.376323 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -30.376 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615833, "decimalLat": -34.43501 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108076, "decimalLat": -29.490395 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.996728, "decimalLat": -32.72173 }, "geometry": { "type": "Point", "coordinates": [ 151.997, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51964, "decimalLat": -34.461341 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.84451, "decimalLat": -31.44267 }, "geometry": { "type": "Point", "coordinates": [ 152.845, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108194, "decimalLat": -29.490194 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03531, "decimalLat": -32.737212 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.80501, "decimalLat": -32.59644 }, "geometry": { "type": "Point", "coordinates": [ 151.805, -32.596 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.765357, "decimalLat": -32.698016 }, "geometry": { "type": "Point", "coordinates": [ 151.765, -32.698 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.613603, "decimalLat": -28.659011 }, "geometry": { "type": "Point", "coordinates": [ 153.614, -28.659 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102443, "decimalLat": -29.487854 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926758, "decimalLat": -29.610298 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -29.61 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51801, "decimalLat": -34.447622 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89337, "decimalLat": -33.971509 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.972 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.73246, "decimalLat": -31.3521 }, "geometry": { "type": "Point", "coordinates": [ 152.732, -31.352 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.946426, "decimalLat": -30.434623 }, "geometry": { "type": "Point", "coordinates": [ 152.946, -30.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628048, "decimalLat": -34.420517 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.468386, "decimalLat": -34.492522 }, "geometry": { "type": "Point", "coordinates": [ 150.468, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630764, "decimalLat": -34.42066 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315572, "decimalLat": -28.928747 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.929 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277501, "decimalLat": -28.939088 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.939 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659817, "decimalLat": -33.527032 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.817516, "decimalLat": -31.26453 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.265 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.780333, "decimalLat": -32.714185 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613919, "decimalLat": -34.433062 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636489, "decimalLat": -34.48542 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107287, "decimalLat": -29.36636 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.366 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639753, "decimalLat": -34.393444 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.798022, "decimalLat": -34.181472 }, "geometry": { "type": "Point", "coordinates": [ 150.798, -34.181 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109428, "decimalLat": -29.490413 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.3242, "decimalLat": -31.2246 }, "geometry": { "type": "Point", "coordinates": [ 149.324, -31.225 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.97363, "decimalLat": -28.531036 }, "geometry": { "type": "Point", "coordinates": [ 152.974, -28.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51949, "decimalLat": -34.463465 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630861, "decimalLat": -34.420679 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515395, "decimalLat": -34.451049 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103865, "decimalLat": -29.485478 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.928061, "decimalLat": -33.960643 }, "geometry": { "type": "Point", "coordinates": [ 150.928, -33.961 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608346, "decimalLat": -33.450598 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -33.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519481, "decimalLat": -34.455288 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.957744, "decimalLat": -36.497148 }, "geometry": { "type": "Point", "coordinates": [ 149.958, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520979, "decimalLat": -34.453948 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606812, "decimalLat": -34.429677 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.073011, "decimalLat": -30.887776 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.0179, "decimalLat": -34.91382 }, "geometry": { "type": "Point", "coordinates": [ 150.018, -34.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639846, "decimalLat": -34.400226 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521763, "decimalLat": -34.46609 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60496, "decimalLat": -34.423267 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893471, "decimalLat": -31.446843 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610302, "decimalLat": -34.419062 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.571052, "decimalLat": -28.35228 }, "geometry": { "type": "Point", "coordinates": [ 153.571, -28.352 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522892, "decimalLat": -34.452554 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.247347, "decimalLat": -28.331337 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415506, "decimalLat": -31.933346 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.502334, "decimalLat": -28.631954 }, "geometry": { "type": "Point", "coordinates": [ 153.502, -28.632 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.05663, "decimalLat": -29.736541 }, "geometry": { "type": "Point", "coordinates": [ 151.057, -29.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784992, "decimalLat": -33.716253 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.730478, "decimalLat": -34.280976 }, "geometry": { "type": "Point", "coordinates": [ 150.73, -34.281 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785381, "decimalLat": -31.632241 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522526, "decimalLat": -34.451699 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873385, "decimalLat": -31.480109 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626302, "decimalLat": -34.39569 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785163, "decimalLat": -33.707955 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002783, "decimalLat": -29.182518 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -29.183 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283622, "decimalLat": -28.975112 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -28.975 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59787, "decimalLat": -34.418214 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642134, "decimalLat": -34.396213 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.238522, "decimalLat": -28.887087 }, "geometry": { "type": "Point", "coordinates": [ 153.239, -28.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.202587, "decimalLat": -28.882121 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -28.882 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300285, "decimalLat": -28.816625 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615556, "decimalLat": -34.437863 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989341, "decimalLat": -34.019784 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.02 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617233, "decimalLat": -34.440113 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640411, "decimalLat": -34.398289 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.978669, "decimalLat": -34.086105 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520436, "decimalLat": -34.465684 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636157, "decimalLat": -33.530988 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -33.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905823, "decimalLat": -31.469733 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.871059, "decimalLat": -34.042623 }, "geometry": { "type": "Point", "coordinates": [ 150.871, -34.043 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516263, "decimalLat": -34.446721 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.287624, "decimalLat": -36.056623 }, "geometry": { "type": "Point", "coordinates": [ 149.288, -36.057 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630873, "decimalLat": -34.420662 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296394, "decimalLat": -28.813954 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960499, "decimalLat": -36.288011 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.288 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.585514, "decimalLat": -28.861774 }, "geometry": { "type": "Point", "coordinates": [ 153.586, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52075, "decimalLat": -34.465366 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.836468, "decimalLat": -34.083944 }, "geometry": { "type": "Point", "coordinates": [ 150.836, -34.084 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109696, "decimalLat": -29.490161 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60684, "decimalLat": -34.438621 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.90303, "decimalLat": -33.995725 }, "geometry": { "type": "Point", "coordinates": [ 150.903, -33.996 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522066, "decimalLat": -34.466159 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395276, "decimalLat": -28.959511 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626556, "decimalLat": -34.387085 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.579053, "decimalLat": -34.753602 }, "geometry": { "type": "Point", "coordinates": [ 146.579, -34.754 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301536, "decimalLat": -28.9982 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.998 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.593712, "decimalLat": -28.720013 }, "geometry": { "type": "Point", "coordinates": [ 153.594, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631145, "decimalLat": -34.38749 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604726, "decimalLat": -34.427301 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627285, "decimalLat": -34.390525 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.430595, "decimalLat": -29.019566 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -29.02 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293441, "decimalLat": -28.864666 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514663, "decimalLat": -34.443074 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.957744, "decimalLat": -36.497148 }, "geometry": { "type": "Point", "coordinates": [ 149.958, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564281, "decimalLat": -28.380731 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823025, "decimalLat": -31.560964 }, "geometry": { "type": "Point", "coordinates": [ 152.823, -31.561 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.805568, "decimalLat": -32.663236 }, "geometry": { "type": "Point", "coordinates": [ 151.806, -32.663 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297509, "decimalLat": -28.819437 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519044, "decimalLat": -34.447256 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905527, "decimalLat": -31.436613 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091301, "decimalLat": -29.487733 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.136183, "decimalLat": -31.409637 }, "geometry": { "type": "Point", "coordinates": [ 152.136, -31.41 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.661161, "decimalLat": -28.610492 }, "geometry": { "type": "Point", "coordinates": [ 152.661, -28.61 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.851218, "decimalLat": -34.070352 }, "geometry": { "type": "Point", "coordinates": [ 150.851, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102256, "decimalLat": -29.488303 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103393, "decimalLat": -29.48982 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894504, "decimalLat": -31.446452 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.777285, "decimalLat": -32.586323 }, "geometry": { "type": "Point", "coordinates": [ 151.777, -32.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39409, "decimalLat": -28.275602 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103845, "decimalLat": -29.485476 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.958, "decimalLat": -30.6487 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -30.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615657, "decimalLat": -34.43544 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604035, "decimalLat": -34.427089 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63152, "decimalLat": -34.388444 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605572, "decimalLat": -34.437289 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641512, "decimalLat": -34.395507 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.805509, "decimalLat": -34.099116 }, "geometry": { "type": "Point", "coordinates": [ 150.806, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644361, "decimalLat": -34.391631 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.991279, "decimalLat": -28.438359 }, "geometry": { "type": "Point", "coordinates": [ 152.991, -28.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.73066, "decimalLat": -31.63837 }, "geometry": { "type": "Point", "coordinates": [ 150.731, -31.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603426, "decimalLat": -34.436228 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604646, "decimalLat": -34.438858 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603673, "decimalLat": -34.437477 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.097728, "decimalLat": -29.487756 }, "geometry": { "type": "Point", "coordinates": [ 153.098, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.6371, "decimalLat": -33.670955 }, "geometry": { "type": "Point", "coordinates": [ 149.637, -33.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302905, "decimalLat": -28.822099 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628359, "decimalLat": -34.391006 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630764, "decimalLat": -34.420651 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.194827, "decimalLat": -28.879587 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.952604, "decimalLat": -33.974574 }, "geometry": { "type": "Point", "coordinates": [ 150.953, -33.975 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598784, "decimalLat": -34.449777 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104141, "decimalLat": -29.479825 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602977, "decimalLat": -34.437085 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616557, "decimalLat": -34.437846 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534526, "decimalLat": -34.462192 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630984, "decimalLat": -34.38819 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393973, "decimalLat": -28.958943 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092224, "decimalLat": -29.48813 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516278, "decimalLat": -34.449156 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925873, "decimalLat": -31.455317 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.97736, "decimalLat": -34.049349 }, "geometry": { "type": "Point", "coordinates": [ 150.977, -34.049 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10333, "decimalLat": -30.3232 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -30.323 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655487, "decimalLat": -33.522609 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -33.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618223, "decimalLat": -34.43512 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655487, "decimalLat": -33.522609 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -33.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531622, "decimalLat": -34.460285 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.613395, "decimalLat": -28.683843 }, "geometry": { "type": "Point", "coordinates": [ 153.613, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099048, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604793, "decimalLat": -34.427222 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637828, "decimalLat": -34.488917 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639636, "decimalLat": -34.39996 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.834239, "decimalLat": -30.920053 }, "geometry": { "type": "Point", "coordinates": [ 151.834, -30.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.609603, "decimalLat": -32.251163 }, "geometry": { "type": "Point", "coordinates": [ 148.61, -32.251 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.985196, "decimalLat": -29.031727 }, "geometry": { "type": "Point", "coordinates": [ 152.985, -29.032 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307732, "decimalLat": -28.996723 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.997 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515974, "decimalLat": -34.444741 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624439, "decimalLat": -34.388108 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616604, "decimalLat": -34.430058 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640732, "decimalLat": -34.39578 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.351876, "decimalLat": -31.889204 }, "geometry": { "type": "Point", "coordinates": [ 152.352, -31.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.961159, "decimalLat": -32.018393 }, "geometry": { "type": "Point", "coordinates": [ 151.961, -32.018 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.706922, "decimalLat": -32.697245 }, "geometry": { "type": "Point", "coordinates": [ 151.707, -32.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522435, "decimalLat": -34.465815 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609248, "decimalLat": -28.689343 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52058, "decimalLat": -34.453823 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324023, "decimalLat": -28.879696 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063893, "decimalLat": -32.706577 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604174, "decimalLat": -34.439011 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061935, "decimalLat": -32.709033 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62519, "decimalLat": -33.445172 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -33.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630895, "decimalLat": -34.420626 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104256, "decimalLat": -29.479846 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.478835, "decimalLat": -28.309888 }, "geometry": { "type": "Point", "coordinates": [ 152.479, -28.31 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622013, "decimalLat": -34.397744 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641062, "decimalLat": -34.494686 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632097, "decimalLat": -34.394612 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915335, "decimalLat": -31.484169 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611655, "decimalLat": -34.161578 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.162 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615963, "decimalLat": -34.436149 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518451, "decimalLat": -34.437516 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784546, "decimalLat": -33.713259 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923604, "decimalLat": -31.461738 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784508, "decimalLat": -33.717262 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659536, "decimalLat": -34.458241 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063194, "decimalLat": -32.706517 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109522, "decimalLat": -29.490453 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.524971, "decimalLat": -28.221994 }, "geometry": { "type": "Point", "coordinates": [ 153.525, -28.222 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.721529, "decimalLat": -32.611485 }, "geometry": { "type": "Point", "coordinates": [ 151.722, -32.611 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.485534 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104053, "decimalLat": -29.485169 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415333, "decimalLat": -31.933309 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103838, "decimalLat": -29.489601 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.65396, "decimalLat": -30.554911 }, "geometry": { "type": "Point", "coordinates": [ 152.654, -30.555 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603328, "decimalLat": -34.436605 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916126, "decimalLat": -31.477406 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602664, "decimalLat": -34.431291 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782845, "decimalLat": -33.719261 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103918, "decimalLat": -29.489535 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914605, "decimalLat": -31.432742 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.057525, "decimalLat": -29.739686 }, "geometry": { "type": "Point", "coordinates": [ 151.058, -29.74 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.781261, "decimalLat": -32.585355 }, "geometry": { "type": "Point", "coordinates": [ 151.781, -32.585 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32305, "decimalLat": -28.919792 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.521268, "decimalLat": -28.656899 }, "geometry": { "type": "Point", "coordinates": [ 153.521, -28.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513091, "decimalLat": -34.447279 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11863, "decimalLat": -28.737148 }, "geometry": { "type": "Point", "coordinates": [ 153.119, -28.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3939, "decimalLat": -28.959234 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624404, "decimalLat": -34.387828 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.817207, "decimalLat": -31.506494 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -31.506 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.965237, "decimalLat": -36.459771 }, "geometry": { "type": "Point", "coordinates": [ 149.965, -36.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785517, "decimalLat": -31.632377 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812219, "decimalLat": -34.12193 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.122 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109374, "decimalLat": -29.490437 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.389547, "decimalLat": -28.864549 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521093, "decimalLat": -34.435379 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516422, "decimalLat": -34.449799 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.74857, "decimalLat": -31.187336 }, "geometry": { "type": "Point", "coordinates": [ 152.749, -31.187 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104128, "decimalLat": -29.485223 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610379, "decimalLat": -34.430513 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522507, "decimalLat": -34.451608 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.033774, "decimalLat": -32.73771 }, "geometry": { "type": "Point", "coordinates": [ 152.034, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107432, "decimalLat": -29.490128 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904535, "decimalLat": -31.450459 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914917, "decimalLat": -31.455547 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515226, "decimalLat": -34.444988 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103902, "decimalLat": -29.484899 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902573, "decimalLat": -31.442435 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.030533, "decimalLat": -32.731152 }, "geometry": { "type": "Point", "coordinates": [ 152.031, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59785, "decimalLat": -34.41816 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.006125, "decimalLat": -33.978105 }, "geometry": { "type": "Point", "coordinates": [ 151.006, -33.978 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5177, "decimalLat": -34.446715 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51382, "decimalLat": -34.447276 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360617, "decimalLat": -28.840581 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.308552, "decimalLat": -28.823389 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824652, "decimalLat": -29.506316 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88694, "decimalLat": -31.439442 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.082142, "decimalLat": -32.723709 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90519, "decimalLat": -31.466106 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919629, "decimalLat": -31.469108 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37193, "decimalLat": -29.08315 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -29.083 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921496, "decimalLat": -31.481973 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.62159, "decimalLat": -30.296217 }, "geometry": { "type": "Point", "coordinates": [ 152.622, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.650323, "decimalLat": -30.423315 }, "geometry": { "type": "Point", "coordinates": [ 151.65, -30.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62798, "decimalLat": -34.389818 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.445114, "decimalLat": -31.940663 }, "geometry": { "type": "Point", "coordinates": [ 152.445, -31.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786891, "decimalLat": -33.706188 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517227, "decimalLat": -34.452042 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901349, "decimalLat": -31.443021 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62991, "decimalLat": -34.395418 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.287996, "decimalLat": -28.836062 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.836 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604935, "decimalLat": -34.437881 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632783, "decimalLat": -34.418896 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601466, "decimalLat": -34.42676 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.514736, "decimalLat": -31.761352 }, "geometry": { "type": "Point", "coordinates": [ 152.515, -31.761 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063463, "decimalLat": -32.705973 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296004, "decimalLat": -28.818579 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555255, "decimalLat": -28.586881 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522978, "decimalLat": -34.464023 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109728, "decimalLat": -29.490156 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.713286, "decimalLat": -30.454678 }, "geometry": { "type": "Point", "coordinates": [ 152.713, -30.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296004, "decimalLat": -28.818579 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516222, "decimalLat": -34.446658 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.337376, "decimalLat": -36.183568 }, "geometry": { "type": "Point", "coordinates": [ 149.337, -36.184 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.68494, "decimalLat": -34.352816 }, "geometry": { "type": "Point", "coordinates": [ 150.685, -34.353 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63071, "decimalLat": -34.42064 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822861, "decimalLat": -34.101723 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60776, "decimalLat": -34.436493 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513105, "decimalLat": -34.44718 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512893, "decimalLat": -34.446617 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.956571, "decimalLat": -36.590303 }, "geometry": { "type": "Point", "coordinates": [ 149.957, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530979, "decimalLat": -34.471018 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51549, "decimalLat": -34.450781 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627914, "decimalLat": -34.389816 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515843, "decimalLat": -34.448777 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.044077, "decimalLat": -28.584407 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -28.584 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637279, "decimalLat": -34.423797 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.250632, "decimalLat": -32.086059 }, "geometry": { "type": "Point", "coordinates": [ 152.251, -32.086 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.817515, "decimalLat": -31.25983 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.542723, "decimalLat": -34.510836 }, "geometry": { "type": "Point", "coordinates": [ 150.543, -34.511 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784287, "decimalLat": -31.630076 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.3743, "decimalLat": -36.1895 }, "geometry": { "type": "Point", "coordinates": [ 149.374, -36.189 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82517, "decimalLat": -31.27014 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.27 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.19487, "decimalLat": -28.882593 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -28.883 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.826833, "decimalLat": -32.809409 }, "geometry": { "type": "Point", "coordinates": [ 151.827, -32.809 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794547, "decimalLat": -31.642597 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -31.643 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.880542, "decimalLat": -34.012784 }, "geometry": { "type": "Point", "coordinates": [ 150.881, -34.013 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.509243, "decimalLat": -28.666544 }, "geometry": { "type": "Point", "coordinates": [ 153.509, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493595, "decimalLat": -28.671265 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063502, "decimalLat": -32.705971 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.193722, "decimalLat": -29.42512 }, "geometry": { "type": "Point", "coordinates": [ 153.194, -29.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631545, "decimalLat": -34.388345 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.943768, "decimalLat": -31.171199 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -31.171 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103736, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899584, "decimalLat": -31.449881 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324544, "decimalLat": -28.825256 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602633, "decimalLat": -34.436177 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604305, "decimalLat": -34.438986 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.545289, "decimalLat": -34.514293 }, "geometry": { "type": "Point", "coordinates": [ 150.545, -34.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604756, "decimalLat": -34.427392 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900099, "decimalLat": -31.474255 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516963, "decimalLat": -34.44624 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.291205, "decimalLat": -28.823077 }, "geometry": { "type": "Point", "coordinates": [ 153.291, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639207, "decimalLat": -34.491748 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633454, "decimalLat": -34.392358 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.577922, "decimalLat": -30.322363 }, "geometry": { "type": "Point", "coordinates": [ 151.578, -30.322 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.074069, "decimalLat": -30.887317 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794033, "decimalLat": -31.643395 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.643 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110147, "decimalLat": -29.488331 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104294, "decimalLat": -29.476866 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.390999, "decimalLat": -28.868907 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607747, "decimalLat": -34.436556 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262731, "decimalLat": -28.880416 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.830473, "decimalLat": -32.503964 }, "geometry": { "type": "Point", "coordinates": [ 151.83, -32.504 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.567646, "decimalLat": -34.758651 }, "geometry": { "type": "Point", "coordinates": [ 146.568, -34.759 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085488, "decimalLat": -32.728518 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094585, "decimalLat": -30.371502 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -30.372 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635576, "decimalLat": -34.485376 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636903, "decimalLat": -34.420923 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.004467, "decimalLat": -29.182571 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -29.183 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888196, "decimalLat": -28.803618 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -28.804 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071462, "decimalLat": -32.713922 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.526374, "decimalLat": -28.70571 }, "geometry": { "type": "Point", "coordinates": [ 153.526, -28.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.117738, "decimalLat": -32.726204 }, "geometry": { "type": "Point", "coordinates": [ 152.118, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642009, "decimalLat": -34.396769 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.286695, "decimalLat": -36.172096 }, "geometry": { "type": "Point", "coordinates": [ 149.287, -36.172 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103886, "decimalLat": -29.489591 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518367, "decimalLat": -34.451389 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608626, "decimalLat": -34.45345 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558536, "decimalLat": -28.39414 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103693, "decimalLat": -29.485814 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.229575, "decimalLat": -28.88915 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101156, "decimalLat": -29.48996 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103827, "decimalLat": -29.484903 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635663, "decimalLat": -34.418212 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627201, "decimalLat": -34.385809 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809, "decimalLat": -34.20866 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822435, "decimalLat": -31.143689 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.144 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919628, "decimalLat": -31.438894 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.365596, "decimalLat": -31.951256 }, "geometry": { "type": "Point", "coordinates": [ 152.366, -31.951 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864019, "decimalLat": -31.299042 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893373, "decimalLat": -31.429585 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07705, "decimalLat": -32.722522 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278132, "decimalLat": -28.831137 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110184, "decimalLat": -29.490245 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.854391, "decimalLat": -31.547614 }, "geometry": { "type": "Point", "coordinates": [ 152.854, -31.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.056152, "decimalLat": -32.737994 }, "geometry": { "type": "Point", "coordinates": [ 152.056, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61577, "decimalLat": -34.436434 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.287878, "decimalLat": -28.823779 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.368935, "decimalLat": -34.387953 }, "geometry": { "type": "Point", "coordinates": [ 150.369, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645251, "decimalLat": -34.399473 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635361, "decimalLat": -34.488365 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109288, "decimalLat": -29.490675 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907375, "decimalLat": -31.44425 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521589, "decimalLat": -34.465725 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.843857, "decimalLat": -34.082069 }, "geometry": { "type": "Point", "coordinates": [ 150.844, -34.082 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92207, "decimalLat": -31.48033 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.350019, "decimalLat": -31.978754 }, "geometry": { "type": "Point", "coordinates": [ 152.35, -31.979 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552124, "decimalLat": -33.49119 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522145, "decimalLat": -34.46497 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60007, "decimalLat": -34.419285 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515179, "decimalLat": -34.451378 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.386672, "decimalLat": -28.560609 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -28.561 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.921152, "decimalLat": -33.966691 }, "geometry": { "type": "Point", "coordinates": [ 150.921, -33.967 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092552, "decimalLat": -28.598584 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -28.599 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103752, "decimalLat": -29.485608 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524435, "decimalLat": -34.451548 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925693, "decimalLat": -31.447659 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520489, "decimalLat": -34.467948 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.96493, "decimalLat": -34.02833 }, "geometry": { "type": "Point", "coordinates": [ 150.965, -34.028 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513172, "decimalLat": -34.44784 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60295, "decimalLat": -34.43575 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.794214, "decimalLat": -32.589817 }, "geometry": { "type": "Point", "coordinates": [ 151.794, -32.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6398, "decimalLat": -34.399161 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912574, "decimalLat": -31.451029 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.06158, "decimalLat": -30.35986 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -30.36 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.858113, "decimalLat": -31.529031 }, "geometry": { "type": "Point", "coordinates": [ 152.858, -31.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96634, "decimalLat": -36.680336 }, "geometry": { "type": "Point", "coordinates": [ 149.966, -36.68 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626508, "decimalLat": -34.385326 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515774, "decimalLat": -34.446694 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103774, "decimalLat": -29.485604 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.821657, "decimalLat": -31.646568 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.647 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.365667, "decimalLat": -32.142592 }, "geometry": { "type": "Point", "coordinates": [ 152.366, -32.143 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.189446, "decimalLat": -28.889666 }, "geometry": { "type": "Point", "coordinates": [ 153.189, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825611, "decimalLat": -30.286651 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -30.287 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86882, "decimalLat": -31.473007 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.760909, "decimalLat": -32.403341 }, "geometry": { "type": "Point", "coordinates": [ 149.761, -32.403 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.94413, "decimalLat": -30.39088 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -30.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.089215, "decimalLat": -28.597991 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -28.598 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433407, "decimalLat": -28.95821 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634921, "decimalLat": -34.487752 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985306, "decimalLat": -34.096128 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521544, "decimalLat": -34.465761 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604925, "decimalLat": -34.4268 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334878, "decimalLat": -28.815042 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104289, "decimalLat": -29.480131 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603055, "decimalLat": -34.427512 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514348, "decimalLat": -34.446367 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.03941, "decimalLat": -34.91134 }, "geometry": { "type": "Point", "coordinates": [ 150.039, -34.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522599, "decimalLat": -34.465782 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.172395, "decimalLat": -32.736793 }, "geometry": { "type": "Point", "coordinates": [ 152.172, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87463, "decimalLat": -31.462053 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415339, "decimalLat": -31.93317 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393029, "decimalLat": -28.269182 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.269 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917599, "decimalLat": -31.474412 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523265, "decimalLat": -34.485971 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63881, "decimalLat": -34.492705 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104074, "decimalLat": -29.480098 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626033, "decimalLat": -34.390195 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797444, "decimalLat": -31.126171 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.21206, "decimalLat": -32.22908 }, "geometry": { "type": "Point", "coordinates": [ 152.212, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596614, "decimalLat": -34.411185 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.411 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316984, "decimalLat": -28.937089 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335449, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638651, "decimalLat": -34.489438 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076541, "decimalLat": -32.725255 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109374, "decimalLat": -29.490441 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.436484, "decimalLat": -28.667693 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.668 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276731, "decimalLat": -28.819935 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609248, "decimalLat": -34.420547 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518933, "decimalLat": -34.460208 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530566, "decimalLat": -34.469522 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915691, "decimalLat": -31.482531 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627058, "decimalLat": -34.38971 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911508, "decimalLat": -31.429323 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.47147, "decimalLat": -34.49539 }, "geometry": { "type": "Point", "coordinates": [ 150.471, -34.495 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063752, "decimalLat": -32.706596 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518429, "decimalLat": -34.457394 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523128, "decimalLat": -34.464089 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.373615, "decimalLat": -28.25059 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -28.251 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.661161, "decimalLat": -28.610492 }, "geometry": { "type": "Point", "coordinates": [ 152.661, -28.61 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786088, "decimalLat": -33.712288 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.566043, "decimalLat": -34.524474 }, "geometry": { "type": "Point", "coordinates": [ 150.566, -34.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64143, "decimalLat": -34.400734 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608992, "decimalLat": -34.420371 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517893, "decimalLat": -34.4479 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339458, "decimalLat": -28.89613 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63118, "decimalLat": -34.420163 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602031, "decimalLat": -34.425644 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40587, "decimalLat": -31.930546 }, "geometry": { "type": "Point", "coordinates": [ 152.406, -31.931 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.698317, "decimalLat": -32.696955 }, "geometry": { "type": "Point", "coordinates": [ 151.698, -32.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.06132, "decimalLat": -30.3598 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -30.36 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646467, "decimalLat": -34.397198 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64351, "decimalLat": -34.395221 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.54966, "decimalLat": -33.569109 }, "geometry": { "type": "Point", "coordinates": [ 149.55, -33.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534515, "decimalLat": -34.462201 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318368, "decimalLat": -28.82437 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602588, "decimalLat": -34.424825 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532002, "decimalLat": -34.46325 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.702712, "decimalLat": -32.688033 }, "geometry": { "type": "Point", "coordinates": [ 151.703, -32.688 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604589, "decimalLat": -34.424468 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785882, "decimalLat": -33.704526 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109363, "decimalLat": -29.490511 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630354, "decimalLat": -34.420904 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838432, "decimalLat": -34.055514 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786856, "decimalLat": -34.208051 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -34.208 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.948533, "decimalLat": -36.61303 }, "geometry": { "type": "Point", "coordinates": [ 149.949, -36.613 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624526, "decimalLat": -34.385414 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110479, "decimalLat": -29.490138 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922646, "decimalLat": -31.467053 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924145, "decimalLat": -31.460578 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.701034, "decimalLat": -30.181572 }, "geometry": { "type": "Point", "coordinates": [ 152.701, -30.182 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095227, "decimalLat": -29.483442 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519787, "decimalLat": -34.447172 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06994, "decimalLat": -35.09674 }, "geometry": { "type": "Point", "coordinates": [ 150.07, -35.097 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.878876, "decimalLat": -34.014065 }, "geometry": { "type": "Point", "coordinates": [ 150.879, -34.014 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.490124 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923929, "decimalLat": -31.459449 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383844, "decimalLat": -31.92905 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.929 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522889, "decimalLat": -34.452301 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607892, "decimalLat": -34.422333 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315789, "decimalLat": -28.683037 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82422, "decimalLat": -34.150349 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659714, "decimalLat": -34.4581 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615253, "decimalLat": -34.433196 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.114096, "decimalLat": -32.724199 }, "geometry": { "type": "Point", "coordinates": [ 152.114, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10939, "decimalLat": -29.490521 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335481, "decimalLat": -28.869015 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628647, "decimalLat": -34.389281 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.115459, "decimalLat": -28.63227 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -28.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.851094, "decimalLat": -34.04429 }, "geometry": { "type": "Point", "coordinates": [ 150.851, -34.044 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06416, "decimalLat": -32.70664 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103999, "decimalLat": -29.485267 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077233, "decimalLat": -32.722459 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.407657, "decimalLat": -36.2338 }, "geometry": { "type": "Point", "coordinates": [ 149.408, -36.234 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103758, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103522, "decimalLat": -29.485482 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626171, "decimalLat": -34.39878 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.183766, "decimalLat": -29.442147 }, "geometry": { "type": "Point", "coordinates": [ 153.184, -29.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.491683, "decimalLat": -28.233759 }, "geometry": { "type": "Point", "coordinates": [ 153.492, -28.234 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51698, "decimalLat": -34.440534 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.58451, "decimalLat": -34.52604 }, "geometry": { "type": "Point", "coordinates": [ 150.585, -34.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297172, "decimalLat": -28.819012 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.525862, "decimalLat": -28.80884 }, "geometry": { "type": "Point", "coordinates": [ 153.526, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519132, "decimalLat": -34.460122 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.1299, "decimalLat": -35.069995 }, "geometry": { "type": "Point", "coordinates": [ 150.13, -35.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637334, "decimalLat": -34.42378 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.36363, "decimalLat": -28.6777 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.678 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923886, "decimalLat": -31.444286 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.395186, "decimalLat": -31.94463 }, "geometry": { "type": "Point", "coordinates": [ 152.395, -31.945 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.54974, "decimalLat": -28.56479 }, "geometry": { "type": "Point", "coordinates": [ 153.55, -28.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89337, "decimalLat": -33.97151 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.972 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.087009, "decimalLat": -30.34056 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -30.341 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928752, "decimalLat": -31.459623 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51967, "decimalLat": -34.456626 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658374, "decimalLat": -34.45619 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063, "decimalLat": -32.706299 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109626, "decimalLat": -29.492813 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.16658, "decimalLat": -32.723988 }, "geometry": { "type": "Point", "coordinates": [ 152.167, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522578, "decimalLat": -34.465782 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602918, "decimalLat": -34.435722 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306661, "decimalLat": -28.816046 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374339, "decimalLat": -31.949355 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602648, "decimalLat": -34.418912 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.594928, "decimalLat": -28.854885 }, "geometry": { "type": "Point", "coordinates": [ 153.595, -28.855 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10115, "decimalLat": -29.490012 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630873, "decimalLat": -34.420662 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.802445, "decimalLat": -31.635927 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -31.636 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.759579, "decimalLat": -32.767934 }, "geometry": { "type": "Point", "coordinates": [ 151.76, -32.768 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.397476, "decimalLat": -28.560814 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.224432, "decimalLat": -28.886197 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103902, "decimalLat": -29.489601 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615375, "decimalLat": -34.436561 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.21759, "decimalLat": -28.919236 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093277, "decimalLat": -29.492609 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884272, "decimalLat": -31.457599 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.811205, "decimalLat": -29.375479 }, "geometry": { "type": "Point", "coordinates": [ 149.811, -29.375 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.34377, "decimalLat": -28.833424 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319891, "decimalLat": -28.823212 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606281, "decimalLat": -34.45097 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81408, "decimalLat": -31.130775 }, "geometry": { "type": "Point", "coordinates": [ 152.814, -31.131 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360617, "decimalLat": -28.840581 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607389, "decimalLat": -28.687767 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.522363, "decimalLat": -28.220704 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -28.221 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520924, "decimalLat": -34.453992 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92337, "decimalLat": -31.460774 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.452596, "decimalLat": -35.365574 }, "geometry": { "type": "Point", "coordinates": [ 150.453, -35.366 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60928, "decimalLat": -34.420566 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609441, "decimalLat": -34.420668 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071492, "decimalLat": -32.710569 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863097, "decimalLat": -29.599543 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -29.6 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597075, "decimalLat": -34.428494 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929061, "decimalLat": -31.45098 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.576557 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784917, "decimalLat": -33.71849 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625028, "decimalLat": -34.399596 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.70813, "decimalLat": -33.12797 }, "geometry": { "type": "Point", "coordinates": [ 150.708, -33.128 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108012, "decimalLat": -29.490404 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603115, "decimalLat": -34.434933 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.582601, "decimalLat": -34.500217 }, "geometry": { "type": "Point", "coordinates": [ 150.583, -34.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838978, "decimalLat": -34.053416 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90958, "decimalLat": -31.444162 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.797004, "decimalLat": -34.117213 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.117 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921882, "decimalLat": -31.451535 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864165, "decimalLat": -31.291869 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.292 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61713, "decimalLat": -34.433764 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51382, "decimalLat": -34.447285 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518056, "decimalLat": -34.451599 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63899, "decimalLat": -34.491716 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637389, "decimalLat": -34.423763 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914922, "decimalLat": -31.468154 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521275, "decimalLat": -34.465656 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639072, "decimalLat": -34.49152 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51607, "decimalLat": -34.450297 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601261, "decimalLat": -34.41719 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.862529, "decimalLat": -34.04391 }, "geometry": { "type": "Point", "coordinates": [ 150.863, -34.044 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108097, "decimalLat": -29.490306 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597812, "decimalLat": -34.42786 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.317865, "decimalLat": -36.298423 }, "geometry": { "type": "Point", "coordinates": [ 149.318, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842294, "decimalLat": -34.082676 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.083 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602903, "decimalLat": -34.426364 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.274356, "decimalLat": -28.872288 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523891, "decimalLat": -34.46405 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782748, "decimalLat": -31.62996 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645278, "decimalLat": -34.398897 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.118753, "decimalLat": -30.26309 }, "geometry": { "type": "Point", "coordinates": [ 153.119, -30.263 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109379, "decimalLat": -29.490437 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.978269, "decimalLat": -34.083986 }, "geometry": { "type": "Point", "coordinates": [ 150.978, -34.084 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104004, "decimalLat": -29.47802 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606617, "decimalLat": -34.438031 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.85616, "decimalLat": -31.163855 }, "geometry": { "type": "Point", "coordinates": [ 152.856, -31.164 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.097326, "decimalLat": -29.487037 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924481, "decimalLat": -31.461866 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783165, "decimalLat": -33.718582 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923188, "decimalLat": -31.47532 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921158, "decimalLat": -31.453608 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.436633, "decimalLat": -28.57405 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.574 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110318, "decimalLat": -29.490273 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602492, "decimalLat": -34.418648 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611799, "decimalLat": -34.419596 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809452, "decimalLat": -31.140208 }, "geometry": { "type": "Point", "coordinates": [ 152.809, -31.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.859808, "decimalLat": -32.805023 }, "geometry": { "type": "Point", "coordinates": [ 151.86, -32.805 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9739, "decimalLat": -34.124092 }, "geometry": { "type": "Point", "coordinates": [ 150.974, -34.124 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.258023, "decimalLat": -32.345957 }, "geometry": { "type": "Point", "coordinates": [ 152.258, -32.346 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.954415, "decimalLat": -30.666881 }, "geometry": { "type": "Point", "coordinates": [ 152.954, -30.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556057, "decimalLat": -28.398603 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616593, "decimalLat": -34.435837 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.230894, "decimalLat": -33.09847 }, "geometry": { "type": "Point", "coordinates": [ 151.231, -33.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925662, "decimalLat": -31.459506 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809, "decimalLat": -34.20866 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11128, "decimalLat": -28.663535 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -28.664 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.448841, "decimalLat": -32.17698 }, "geometry": { "type": "Point", "coordinates": [ 152.449, -32.177 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063779, "decimalLat": -32.706537 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.171498, "decimalLat": -32.667886 }, "geometry": { "type": "Point", "coordinates": [ 152.171, -32.668 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.840628, "decimalLat": -34.060701 }, "geometry": { "type": "Point", "coordinates": [ 150.841, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522183, "decimalLat": -34.451503 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.47857, "decimalLat": -28.232574 }, "geometry": { "type": "Point", "coordinates": [ 153.479, -28.233 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919463, "decimalLat": -31.443561 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608504, "decimalLat": -34.45352 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61421, "decimalLat": -34.429714 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636288, "decimalLat": -34.42192 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645217, "decimalLat": -34.390989 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638438, "decimalLat": -34.403111 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.403 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066398, "decimalLat": -32.706001 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602963, "decimalLat": -34.435678 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916502, "decimalLat": -31.47588 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.911136, "decimalLat": -33.968789 }, "geometry": { "type": "Point", "coordinates": [ 150.911, -33.969 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516262, "decimalLat": -34.448957 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600383, "decimalLat": -34.4281 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.880784, "decimalLat": -36.581514 }, "geometry": { "type": "Point", "coordinates": [ 149.881, -36.582 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631455, "decimalLat": -34.388046 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10394, "decimalLat": -29.48961 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523085, "decimalLat": -34.464458 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306646, "decimalLat": -28.831058 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.546628, "decimalLat": -34.514336 }, "geometry": { "type": "Point", "coordinates": [ 150.547, -34.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630687, "decimalLat": -34.387138 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104825, "decimalLat": -29.490301 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642641, "decimalLat": -34.395573 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.330907, "decimalLat": -36.109474 }, "geometry": { "type": "Point", "coordinates": [ 149.331, -36.109 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06499, "decimalLat": -32.699624 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.7 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785663, "decimalLat": -33.713367 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.043427, "decimalLat": -30.887589 }, "geometry": { "type": "Point", "coordinates": [ 153.043, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602656, "decimalLat": -34.527337 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517321, "decimalLat": -34.45144 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.006295, "decimalLat": -31.690323 }, "geometry": { "type": "Point", "coordinates": [ 150.006, -31.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.100651, "decimalLat": -33.77871 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.415401, "decimalLat": -28.982555 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.550241, "decimalLat": -31.643698 }, "geometry": { "type": "Point", "coordinates": [ 152.55, -31.644 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607487, "decimalLat": -34.433089 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608858, "decimalLat": -34.434252 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601818, "decimalLat": -34.418247 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.620974, "decimalLat": -34.439429 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518816, "decimalLat": -34.447621 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927762, "decimalLat": -31.46623 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615947, "decimalLat": -34.435184 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609483, "decimalLat": -34.430631 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612187, "decimalLat": -34.432334 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525547, "decimalLat": -34.459973 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602404, "decimalLat": -34.419827 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918781, "decimalLat": -31.453774 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607255, "decimalLat": -34.437791 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073373, "decimalLat": -32.716992 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521057, "decimalLat": -34.464561 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200394, "decimalLat": -29.354364 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105206, "decimalLat": -29.489788 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.298863, "decimalLat": -31.945372 }, "geometry": { "type": "Point", "coordinates": [ 152.299, -31.945 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522776, "decimalLat": -34.450965 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626557, "decimalLat": -34.385499 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.728756, "decimalLat": -30.90699 }, "geometry": { "type": "Point", "coordinates": [ 152.729, -30.907 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103453, "decimalLat": -32.759387 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -32.759 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07448, "decimalLat": -28.5551 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -28.555 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336079, "decimalLat": -28.813325 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -28.813 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.56515, "decimalLat": -34.52211 }, "geometry": { "type": "Point", "coordinates": [ 150.565, -34.522 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9439, "decimalLat": -30.3905 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -30.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795548, "decimalLat": -30.222274 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -30.222 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904746, "decimalLat": -31.116484 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.116 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.136462, "decimalLat": -29.782422 }, "geometry": { "type": "Point", "coordinates": [ 151.136, -29.782 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604276, "decimalLat": -34.438102 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514342, "decimalLat": -34.447295 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521327, "decimalLat": -34.448826 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606761, "decimalLat": -34.434508 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.185919, "decimalLat": -30.095375 }, "geometry": { "type": "Point", "coordinates": [ 152.186, -30.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639209, "decimalLat": -34.392703 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552171, "decimalLat": -33.491225 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98, "decimalLat": -34.09 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -34.09 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563417, "decimalLat": -28.38145 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.363258, "decimalLat": -29.37758 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -29.378 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.910427, "decimalLat": -32.215233 }, "geometry": { "type": "Point", "coordinates": [ 151.91, -32.215 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298557, "decimalLat": -28.81845 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.155147, "decimalLat": -29.38163 }, "geometry": { "type": "Point", "coordinates": [ 153.155, -29.382 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627325, "decimalLat": -34.420322 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642381, "decimalLat": -34.39555 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609058, "decimalLat": -34.43065 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.461614, "decimalLat": -28.46623 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103463, "decimalLat": -29.485632 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609511, "decimalLat": -34.418948 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522404, "decimalLat": -34.46576 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915856, "decimalLat": -31.476822 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658814, "decimalLat": -34.455639 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520238, "decimalLat": -34.442574 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639248, "decimalLat": -34.493002 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104267, "decimalLat": -29.482228 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917952, "decimalLat": -31.470297 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909957, "decimalLat": -31.47042 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103758, "decimalLat": -29.485557 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624593, "decimalLat": -34.38611 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87222, "decimalLat": -31.286472 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.286 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611971, "decimalLat": -34.432663 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.485459 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03389, "decimalLat": -32.732605 }, "geometry": { "type": "Point", "coordinates": [ 152.034, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922317, "decimalLat": -31.444411 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52312, "decimalLat": -34.466225 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515854, "decimalLat": -34.448796 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60438, "decimalLat": -34.43558 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62445, "decimalLat": -34.388099 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516301, "decimalLat": -28.688361 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.486459, "decimalLat": -28.163166 }, "geometry": { "type": "Point", "coordinates": [ 153.486, -28.163 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916735, "decimalLat": -31.445658 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6595, "decimalLat": -34.458339 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517596, "decimalLat": -34.446181 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603427, "decimalLat": -34.435435 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096628, "decimalLat": -29.491926 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403775, "decimalLat": -31.927523 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893283, "decimalLat": -31.457903 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809083, "decimalLat": -31.146388 }, "geometry": { "type": "Point", "coordinates": [ 152.809, -31.146 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921229, "decimalLat": -31.454443 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.586089, "decimalLat": -34.77279 }, "geometry": { "type": "Point", "coordinates": [ 146.586, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.087047, "decimalLat": -32.762364 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -32.762 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.011472, "decimalLat": -29.71997 }, "geometry": { "type": "Point", "coordinates": [ 151.011, -29.72 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.563827, "decimalLat": -33.689127 }, "geometry": { "type": "Point", "coordinates": [ 149.564, -33.689 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.743508, "decimalLat": -30.903953 }, "geometry": { "type": "Point", "coordinates": [ 152.744, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108194, "decimalLat": -29.490259 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877587, "decimalLat": -31.434324 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.991477, "decimalLat": -26.43875 }, "geometry": { "type": "Point", "coordinates": [ 152.991, -26.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.219631, "decimalLat": -28.339384 }, "geometry": { "type": "Point", "coordinates": [ 153.22, -28.339 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601197, "decimalLat": -34.428197 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.756388, "decimalLat": -31.005135 }, "geometry": { "type": "Point", "coordinates": [ 152.756, -31.005 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.445719, "decimalLat": -28.589459 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520721, "decimalLat": -34.436544 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926507, "decimalLat": -31.47563 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51649, "decimalLat": -34.44971 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520337, "decimalLat": -34.465718 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921536, "decimalLat": -31.479428 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526706, "decimalLat": -34.469354 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103208, "decimalLat": -29.487423 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.833513, "decimalLat": -30.434893 }, "geometry": { "type": "Point", "coordinates": [ 152.834, -30.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867673, "decimalLat": -29.691697 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.692 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.44218, "decimalLat": -31.95546 }, "geometry": { "type": "Point", "coordinates": [ 152.442, -31.955 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632721, "decimalLat": -34.392903 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534654, "decimalLat": -34.459319 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521666, "decimalLat": -34.466052 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.859518, "decimalLat": -34.050756 }, "geometry": { "type": "Point", "coordinates": [ 150.86, -34.051 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87918, "decimalLat": -31.44857 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557079, "decimalLat": -28.394204 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.415946, "decimalLat": -28.982816 }, "geometry": { "type": "Point", "coordinates": [ 153.416, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88391, "decimalLat": -31.44104 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60405, "decimalLat": -34.444489 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615168, "decimalLat": -34.431202 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520443, "decimalLat": -34.454037 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912782, "decimalLat": -31.476147 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.543661, "decimalLat": -28.555867 }, "geometry": { "type": "Point", "coordinates": [ 153.544, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904597, "decimalLat": -31.439218 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.174222, "decimalLat": -31.570282 }, "geometry": { "type": "Point", "coordinates": [ 152.174, -31.57 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606013, "decimalLat": -34.44204 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.250288, "decimalLat": -30.066931 }, "geometry": { "type": "Point", "coordinates": [ 152.25, -30.067 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607747, "decimalLat": -34.436556 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.77082, "decimalLat": -32.587972 }, "geometry": { "type": "Point", "coordinates": [ 151.771, -32.588 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5139, "decimalLat": -34.446421 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604335, "decimalLat": -34.431441 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103827, "decimalLat": -29.485571 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.007009, "decimalLat": -34.046504 }, "geometry": { "type": "Point", "coordinates": [ 151.007, -34.047 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514545, "decimalLat": -34.447408 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659288, "decimalLat": -34.457352 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909177, "decimalLat": -31.466371 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79, "decimalLat": -34.14382 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521609, "decimalLat": -34.465771 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599713, "decimalLat": -34.429105 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315752, "decimalLat": -28.850061 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.259862, "decimalLat": -28.925911 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -28.926 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.3039, "decimalLat": -36.2037 }, "geometry": { "type": "Point", "coordinates": [ 149.304, -36.204 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641101, "decimalLat": -34.393867 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.060153, "decimalLat": -33.774415 }, "geometry": { "type": "Point", "coordinates": [ 150.06, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616559, "decimalLat": -34.429732 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78604, "decimalLat": -33.709625 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613681, "decimalLat": -34.431083 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786533, "decimalLat": -33.70956 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607699, "decimalLat": -34.430226 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785842, "decimalLat": -33.709049 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063741, "decimalLat": -32.706535 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.998977, "decimalLat": -36.551144 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51744, "decimalLat": -34.441526 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.099074, "decimalLat": -33.776491 }, "geometry": { "type": "Point", "coordinates": [ 150.099, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642765, "decimalLat": -34.394629 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626566, "decimalLat": -34.386328 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615458, "decimalLat": -34.435553 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513165, "decimalLat": -34.445892 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630388, "decimalLat": -34.420869 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513972, "decimalLat": -34.446179 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.52664, "decimalLat": -32.96288 }, "geometry": { "type": "Point", "coordinates": [ 151.527, -32.963 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908969, "decimalLat": -31.466613 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520902, "decimalLat": -34.453974 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.979238, "decimalLat": -36.570187 }, "geometry": { "type": "Point", "coordinates": [ 149.979, -36.57 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412818, "decimalLat": -31.93321 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454728, "decimalLat": -28.649429 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.649 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108151, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517582, "decimalLat": -34.446667 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913234, "decimalLat": -31.479295 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516054, "decimalLat": -34.448295 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621105, "decimalLat": -34.398718 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793146, "decimalLat": -31.639074 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927387, "decimalLat": -31.45599 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068413, "decimalLat": -32.707662 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618928, "decimalLat": -34.439804 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641375, "decimalLat": -34.396523 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625265, "decimalLat": -34.3866 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785316, "decimalLat": -33.709762 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925868, "decimalLat": -31.453019 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.943056, "decimalLat": -31.176806 }, "geometry": { "type": "Point", "coordinates": [ 152.943, -31.177 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.431324, "decimalLat": -29.016415 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.820092, "decimalLat": -31.463064 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617854, "decimalLat": -34.448906 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.41301, "decimalLat": -29.031736 }, "geometry": { "type": "Point", "coordinates": [ 153.413, -29.032 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516355, "decimalLat": -34.448031 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520292, "decimalLat": -34.454015 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318601, "decimalLat": -28.824435 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.150223, "decimalLat": -33.104783 }, "geometry": { "type": "Point", "coordinates": [ 151.15, -33.105 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794683, "decimalLat": -34.140137 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96634, "decimalLat": -36.680336 }, "geometry": { "type": "Point", "coordinates": [ 149.966, -36.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609157, "decimalLat": -34.42032 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616092, "decimalLat": -34.438513 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.977585, "decimalLat": -34.041189 }, "geometry": { "type": "Point", "coordinates": [ 150.978, -34.041 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520268, "decimalLat": -34.465473 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101301, "decimalLat": -29.489998 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597885, "decimalLat": -34.427951 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110506, "decimalLat": -29.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627246, "decimalLat": -34.421574 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923386, "decimalLat": -29.725122 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -29.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610554, "decimalLat": -34.429723 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.193992, "decimalLat": -29.42432 }, "geometry": { "type": "Point", "coordinates": [ 153.194, -29.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519407, "decimalLat": -34.488077 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315136, "decimalLat": -28.862636 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794251, "decimalLat": -31.128277 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.128 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355785, "decimalLat": -31.85809 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.398238, "decimalLat": -28.261188 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110203, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611882, "decimalLat": -34.420499 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597121, "decimalLat": -34.41701 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623601, "decimalLat": -34.3893 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.848859, "decimalLat": -30.582438 }, "geometry": { "type": "Point", "coordinates": [ 152.849, -30.582 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.590336, "decimalLat": -28.660527 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609264, "decimalLat": -34.420746 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.039726, "decimalLat": -33.756339 }, "geometry": { "type": "Point", "coordinates": [ 150.04, -33.756 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55998, "decimalLat": -28.331279 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109401, "decimalLat": -29.490446 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316981, "decimalLat": -28.949626 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879212, "decimalLat": -31.448716 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636136, "decimalLat": -34.42034 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865602, "decimalLat": -29.652568 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -29.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.755229, "decimalLat": -31.633106 }, "geometry": { "type": "Point", "coordinates": [ 152.755, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928742, "decimalLat": -31.455921 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909944, "decimalLat": -31.458085 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.043951, "decimalLat": -30.428741 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -30.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30059, "decimalLat": -28.81707 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624544, "decimalLat": -34.385919 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520097, "decimalLat": -34.436693 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607564, "decimalLat": -34.421993 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787655, "decimalLat": -34.188482 }, "geometry": { "type": "Point", "coordinates": [ 150.788, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598226, "decimalLat": -34.427841 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634891, "decimalLat": -34.487661 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.99617, "decimalLat": -30.383883 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -30.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617158, "decimalLat": -34.434324 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.693565, "decimalLat": -33.3858 }, "geometry": { "type": "Point", "coordinates": [ 150.694, -33.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394595, "decimalLat": -28.960088 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.170518, "decimalLat": -29.011799 }, "geometry": { "type": "Point", "coordinates": [ 153.171, -29.012 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520339, "decimalLat": -34.465646 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.649653, "decimalLat": -30.332811 }, "geometry": { "type": "Point", "coordinates": [ 151.65, -30.333 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104171, "decimalLat": -29.478847 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626968, "decimalLat": -34.421019 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985492, "decimalLat": -34.095849 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08885, "decimalLat": -32.73655 }, "geometry": { "type": "Point", "coordinates": [ 152.089, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784178, "decimalLat": -33.717758 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.843837, "decimalLat": -34.137132 }, "geometry": { "type": "Point", "coordinates": [ 150.844, -34.137 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.546315, "decimalLat": -33.541189 }, "geometry": { "type": "Point", "coordinates": [ 149.546, -33.541 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878493, "decimalLat": -31.138286 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605062, "decimalLat": -34.4239 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626774, "decimalLat": -34.420934 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615168, "decimalLat": -34.435421 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.224344, "decimalLat": -28.941391 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108205, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.703279, "decimalLat": -33.413568 }, "geometry": { "type": "Point", "coordinates": [ 150.703, -33.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.841415, "decimalLat": -34.097889 }, "geometry": { "type": "Point", "coordinates": [ 150.841, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614384, "decimalLat": -34.428924 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926532, "decimalLat": -31.458562 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.258624, "decimalLat": -28.89478 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -28.895 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270839, "decimalLat": -28.93365 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -28.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627079, "decimalLat": -34.420949 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645436, "decimalLat": -34.401388 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632615, "decimalLat": -34.418297 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.820061, "decimalLat": -31.300188 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96634, "decimalLat": -36.680336 }, "geometry": { "type": "Point", "coordinates": [ 149.966, -36.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630353, "decimalLat": -34.42094 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.102885, "decimalLat": -33.779051 }, "geometry": { "type": "Point", "coordinates": [ 150.103, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923326, "decimalLat": -31.460961 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616847, "decimalLat": -34.43338 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.943009, "decimalLat": -31.177132 }, "geometry": { "type": "Point", "coordinates": [ 152.943, -31.177 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37372, "decimalLat": -31.914471 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.547088, "decimalLat": -34.454201 }, "geometry": { "type": "Point", "coordinates": [ 150.547, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.652692, "decimalLat": -33.685113 }, "geometry": { "type": "Point", "coordinates": [ 150.653, -33.685 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065397, "decimalLat": -32.710481 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595775, "decimalLat": -34.41198 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.462475, "decimalLat": -28.649629 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822977, "decimalLat": -31.099793 }, "geometry": { "type": "Point", "coordinates": [ 152.823, -31.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630689, "decimalLat": -34.420613 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79082, "decimalLat": -34.18594 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.186 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.866231, "decimalLat": -29.69152 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -29.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604374, "decimalLat": -34.425527 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790908, "decimalLat": -31.639483 }, "geometry": { "type": "Point", "coordinates": [ 152.791, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596127, "decimalLat": -34.411446 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.411 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06976, "decimalLat": -32.712615 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095089, "decimalLat": -29.48339 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925204, "decimalLat": -31.454163 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555267, "decimalLat": -28.408776 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.409 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518524, "decimalLat": -34.444973 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605908, "decimalLat": -34.454497 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104112, "decimalLat": -29.480654 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.992728, "decimalLat": -32.721099 }, "geometry": { "type": "Point", "coordinates": [ 151.993, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637608, "decimalLat": -34.421405 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.699657, "decimalLat": -32.636469 }, "geometry": { "type": "Point", "coordinates": [ 151.7, -32.636 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910219, "decimalLat": -31.465185 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.639454, "decimalLat": -28.802118 }, "geometry": { "type": "Point", "coordinates": [ 152.639, -28.802 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625291, "decimalLat": -34.384518 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605073, "decimalLat": -34.432663 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.910112, "decimalLat": -36.460589 }, "geometry": { "type": "Point", "coordinates": [ 149.91, -36.461 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838978, "decimalLat": -34.053416 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063231, "decimalLat": -32.70675 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639432, "decimalLat": -34.397549 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636335, "decimalLat": -34.421786 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.127277, "decimalLat": -35.062989 }, "geometry": { "type": "Point", "coordinates": [ 150.127, -35.063 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.075165, "decimalLat": -30.296857 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -30.297 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.990835, "decimalLat": -36.467774 }, "geometry": { "type": "Point", "coordinates": [ 149.991, -36.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928677, "decimalLat": -31.459587 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910694, "decimalLat": -31.447017 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559532, "decimalLat": -28.393748 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.996088, "decimalLat": -34.047767 }, "geometry": { "type": "Point", "coordinates": [ 150.996, -34.048 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616169, "decimalLat": -34.43426 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655487, "decimalLat": -33.522609 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -33.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605909, "decimalLat": -34.432328 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786096, "decimalLat": -33.710257 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604034, "decimalLat": -34.427125 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331312, "decimalLat": -28.362476 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.362 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607768, "decimalLat": -34.44156 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793234, "decimalLat": -31.642307 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518249, "decimalLat": -34.453532 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616466, "decimalLat": -34.430344 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517283, "decimalLat": -34.45161 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.978195, "decimalLat": -36.450213 }, "geometry": { "type": "Point", "coordinates": [ 149.978, -36.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603561, "decimalLat": -34.43532 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919207, "decimalLat": -31.474519 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624527, "decimalLat": -34.385387 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372069, "decimalLat": -31.920942 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.970802, "decimalLat": -34.121228 }, "geometry": { "type": "Point", "coordinates": [ 150.971, -34.121 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91153, "decimalLat": -30.17532 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -30.175 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606587, "decimalLat": -34.455863 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.184797, "decimalLat": -28.925356 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522247, "decimalLat": -34.464828 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90797, "decimalLat": -31.468387 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610338, "decimalLat": -34.418955 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.398373, "decimalLat": -28.261128 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618878, "decimalLat": -34.436206 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.69692, "decimalLat": -31.480755 }, "geometry": { "type": "Point", "coordinates": [ 152.697, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600046, "decimalLat": -34.418194 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103822, "decimalLat": -29.485608 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093329, "decimalLat": -29.488546 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105595, "decimalLat": -32.727871 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517986, "decimalLat": -34.446973 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104289, "decimalLat": -29.489615 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60481, "decimalLat": -34.427384 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521698, "decimalLat": -34.46534 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92886, "decimalLat": -31.4595 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638277, "decimalLat": -34.420048 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520848, "decimalLat": -34.465755 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096011, "decimalLat": -29.484824 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604997, "decimalLat": -34.43762 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278038, "decimalLat": -28.937203 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.937 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630786, "decimalLat": -34.420651 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609646, "decimalLat": -34.436386 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296795, "decimalLat": -28.889779 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.353038, "decimalLat": -36.155701 }, "geometry": { "type": "Point", "coordinates": [ 149.353, -36.156 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.807462, "decimalLat": -31.125284 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -31.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517018, "decimalLat": -34.446214 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.718566, "decimalLat": -33.857114 }, "geometry": { "type": "Point", "coordinates": [ 149.719, -33.857 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821259, "decimalLat": -34.101929 }, "geometry": { "type": "Point", "coordinates": [ 150.821, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.944311, "decimalLat": -30.389981 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -30.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893248, "decimalLat": -31.458012 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514896, "decimalLat": -34.445873 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.890156, "decimalLat": -34.01746 }, "geometry": { "type": "Point", "coordinates": [ 150.89, -34.017 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812053, "decimalLat": -31.285018 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -31.285 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.505486, "decimalLat": -32.053775 }, "geometry": { "type": "Point", "coordinates": [ 152.505, -32.054 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.056954, "decimalLat": -32.737563 }, "geometry": { "type": "Point", "coordinates": [ 152.057, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434446, "decimalLat": -28.980816 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.981 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607315, "decimalLat": -34.432626 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796982, "decimalLat": -33.473775 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -33.474 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.934505, "decimalLat": -28.945503 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -28.946 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782593, "decimalLat": -33.719424 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659256, "decimalLat": -33.527026 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.212338, "decimalLat": -28.825764 }, "geometry": { "type": "Point", "coordinates": [ 153.212, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636229, "decimalLat": -34.485767 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.921178, "decimalLat": -36.633581 }, "geometry": { "type": "Point", "coordinates": [ 149.921, -36.634 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.053324, "decimalLat": -30.445093 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -30.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616009, "decimalLat": -34.439125 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.940432, "decimalLat": -34.114645 }, "geometry": { "type": "Point", "coordinates": [ 150.94, -34.115 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533158, "decimalLat": -34.497197 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786198, "decimalLat": -33.707259 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910172, "decimalLat": -31.45807 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.563961, "decimalLat": -33.689184 }, "geometry": { "type": "Point", "coordinates": [ 149.564, -33.689 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929582, "decimalLat": -31.458613 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522053, "decimalLat": -34.4655 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.350694, "decimalLat": -36.154319 }, "geometry": { "type": "Point", "coordinates": [ 149.351, -36.154 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884315, "decimalLat": -34.018617 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.019 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334647, "decimalLat": -28.813771 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914453, "decimalLat": -31.485158 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.583032, "decimalLat": -28.861422 }, "geometry": { "type": "Point", "coordinates": [ 153.583, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627548, "decimalLat": -34.385833 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912999, "decimalLat": -31.468778 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.858679, "decimalLat": -29.312652 }, "geometry": { "type": "Point", "coordinates": [ 152.859, -29.313 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617351, "decimalLat": -34.439764 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.890522, "decimalLat": -33.993426 }, "geometry": { "type": "Point", "coordinates": [ 150.891, -33.993 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610291, "decimalLat": -34.454979 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929788, "decimalLat": -31.476379 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.549025, "decimalLat": -28.634338 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.634 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.915309, "decimalLat": -36.574566 }, "geometry": { "type": "Point", "coordinates": [ 149.915, -36.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616038, "decimalLat": -34.435059 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644046, "decimalLat": -34.396268 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.999358, "decimalLat": -28.524623 }, "geometry": { "type": "Point", "coordinates": [ 152.999, -28.525 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103786, "decimalLat": -29.485589 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395282, "decimalLat": -28.959963 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914641, "decimalLat": -31.436683 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610433, "decimalLat": -34.419056 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612956, "decimalLat": -34.430564 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.042, "decimalLat": -29.66 }, "geometry": { "type": "Point", "coordinates": [ 151.042, -29.66 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921342, "decimalLat": -31.446905 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890444, "decimalLat": -31.446958 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608837, "decimalLat": -28.687614 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6102, "decimalLat": -34.419195 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604336, "decimalLat": -34.42302 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.309506, "decimalLat": -28.851012 }, "geometry": { "type": "Point", "coordinates": [ 153.31, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597962, "decimalLat": -34.427917 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635575, "decimalLat": -34.418255 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518613, "decimalLat": -34.451529 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.343932, "decimalLat": -33.48096 }, "geometry": { "type": "Point", "coordinates": [ 149.344, -33.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396186, "decimalLat": -29.095797 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -29.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110632, "decimalLat": -29.490269 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616081, "decimalLat": -33.448338 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -33.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907333, "decimalLat": -31.470442 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625643, "decimalLat": -34.386698 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784668, "decimalLat": -33.712525 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.816508, "decimalLat": -34.091934 }, "geometry": { "type": "Point", "coordinates": [ 150.817, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634442, "decimalLat": -34.485435 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.059137, "decimalLat": -32.738104 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600022, "decimalLat": -34.425127 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101306, "decimalLat": -29.489988 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095115, "decimalLat": -29.489437 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393908, "decimalLat": -28.960305 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630293, "decimalLat": -34.395308 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641453, "decimalLat": -34.395668 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.450746, "decimalLat": -28.92872 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095727, "decimalLat": -29.490535 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.353525, "decimalLat": -31.92625 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.738435, "decimalLat": -30.481454 }, "geometry": { "type": "Point", "coordinates": [ 151.738, -30.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06308, "decimalLat": -34.90234 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -34.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645216, "decimalLat": -34.394108 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.933771, "decimalLat": -36.681231 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.681 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910618, "decimalLat": -31.465413 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611404, "decimalLat": -34.419715 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.475241, "decimalLat": -28.689402 }, "geometry": { "type": "Point", "coordinates": [ 153.475, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637837, "decimalLat": -34.490892 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.840277, "decimalLat": -34.077271 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.077 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520432, "decimalLat": -34.465828 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913786, "decimalLat": -31.468743 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.074343, "decimalLat": -32.747654 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -32.748 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518811, "decimalLat": -34.440048 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.753459, "decimalLat": -31.71872 }, "geometry": { "type": "Point", "coordinates": [ 152.753, -31.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627424, "decimalLat": -34.421433 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.374462, "decimalLat": -36.167586 }, "geometry": { "type": "Point", "coordinates": [ 149.374, -36.168 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604204, "decimalLat": -34.437956 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526652, "decimalLat": -34.469353 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615811, "decimalLat": -34.435019 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.256332, "decimalLat": -28.88355 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -28.884 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.506959, "decimalLat": -30.511997 }, "geometry": { "type": "Point", "coordinates": [ 151.507, -30.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.799298, "decimalLat": -34.213206 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.213 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110474, "decimalLat": -29.490269 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303792, "decimalLat": -28.890141 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89175, "decimalLat": -31.459003 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.006224, "decimalLat": -32.728775 }, "geometry": { "type": "Point", "coordinates": [ 152.006, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064009, "decimalLat": -32.708626 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323257, "decimalLat": -28.893976 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.894 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608855, "decimalLat": -34.435108 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610333, "decimalLat": -34.419126 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597286, "decimalLat": -34.410125 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635333, "decimalLat": -34.420261 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91475, "decimalLat": -31.485522 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615125, "decimalLat": -34.435393 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784299, "decimalLat": -30.842983 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -30.843 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524113, "decimalLat": -34.462829 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.717435, "decimalLat": -32.662279 }, "geometry": { "type": "Point", "coordinates": [ 151.717, -32.662 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.685179, "decimalLat": -34.352882 }, "geometry": { "type": "Point", "coordinates": [ 150.685, -34.353 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563539, "decimalLat": -28.3813 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785322, "decimalLat": -33.715611 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.112039, "decimalLat": -32.76175 }, "geometry": { "type": "Point", "coordinates": [ 152.112, -32.762 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62433, "decimalLat": -34.388106 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.862965, "decimalLat": -29.608586 }, "geometry": { "type": "Point", "coordinates": [ 150.863, -29.609 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641376, "decimalLat": -34.395693 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608884, "decimalLat": -34.436398 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.345447, "decimalLat": -28.809458 }, "geometry": { "type": "Point", "coordinates": [ 153.345, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.210152, "decimalLat": -31.560833 }, "geometry": { "type": "Point", "coordinates": [ 152.21, -31.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.861976, "decimalLat": -34.037772 }, "geometry": { "type": "Point", "coordinates": [ 150.862, -34.038 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103656, "decimalLat": -29.485814 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600894, "decimalLat": -34.42774 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.44585, "decimalLat": -28.591357 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.591 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520519, "decimalLat": -34.465821 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103784, "decimalLat": -29.485464 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.844528, "decimalLat": -32.711474 }, "geometry": { "type": "Point", "coordinates": [ 151.845, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521589, "decimalLat": -34.465707 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525493, "decimalLat": -34.459936 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523892, "decimalLat": -34.464041 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604813, "decimalLat": -34.427303 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.059241, "decimalLat": -27.557712 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -27.558 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.564844, "decimalLat": -28.330518 }, "geometry": { "type": "Point", "coordinates": [ 152.565, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556055, "decimalLat": -28.399735 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62781, "decimalLat": -34.397369 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609113, "decimalLat": -34.42031 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28537, "decimalLat": -28.987066 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.987 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.991891, "decimalLat": -36.579679 }, "geometry": { "type": "Point", "coordinates": [ 149.992, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901874, "decimalLat": -30.522681 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -30.523 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.847233, "decimalLat": -34.068362 }, "geometry": { "type": "Point", "coordinates": [ 150.847, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.853723, "decimalLat": -32.791439 }, "geometry": { "type": "Point", "coordinates": [ 151.854, -32.791 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.085892, "decimalLat": -28.536314 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -28.536 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632006, "decimalLat": -34.387786 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808618, "decimalLat": -34.098147 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785862, "decimalLat": -33.708246 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604136, "decimalLat": -34.438793 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629092, "decimalLat": -34.395086 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641098, "decimalLat": -34.396283 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617742, "decimalLat": -34.438663 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792484, "decimalLat": -34.144268 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.144 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327395, "decimalLat": -28.818892 }, "geometry": { "type": "Point", "coordinates": [ 153.327, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910328, "decimalLat": -31.470538 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629186, "decimalLat": -28.639841 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602902, "decimalLat": -34.419909 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598631, "decimalLat": -34.428516 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.613306, "decimalLat": -30.348298 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -30.348 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.841516, "decimalLat": -34.063478 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.063 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645046, "decimalLat": -34.398613 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928233, "decimalLat": -31.459579 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.081018, "decimalLat": -28.580764 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -28.581 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.650137, "decimalLat": -33.113703 }, "geometry": { "type": "Point", "coordinates": [ 149.65, -33.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630223, "decimalLat": -34.42092 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.45051, "decimalLat": -28.711329 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.777302, "decimalLat": -30.885013 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900377, "decimalLat": -31.443546 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926283, "decimalLat": -31.458852 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525301, "decimalLat": -34.459445 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.075099, "decimalLat": -29.746351 }, "geometry": { "type": "Point", "coordinates": [ 151.075, -29.746 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659164, "decimalLat": -34.459072 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604902, "decimalLat": -34.437889 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838139, "decimalLat": -34.09259 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627179, "decimalLat": -34.385808 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522853, "decimalLat": -34.450957 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.975268, "decimalLat": -28.500347 }, "geometry": { "type": "Point", "coordinates": [ 152.975, -28.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556034, "decimalLat": -28.399486 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786995, "decimalLat": -33.705878 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606634, "decimalLat": -34.437066 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631533, "decimalLat": -34.388381 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.411379, "decimalLat": -29.014939 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -29.015 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602597, "decimalLat": -34.425276 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064443, "decimalLat": -32.709018 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.95177, "decimalLat": -33.947266 }, "geometry": { "type": "Point", "coordinates": [ 150.952, -33.947 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103849, "decimalLat": -29.485566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61597, "decimalLat": -34.437826 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518237, "decimalLat": -34.446581 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103865, "decimalLat": -29.489535 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532825, "decimalLat": -34.481153 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109418, "decimalLat": -29.490627 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528104, "decimalLat": -34.457023 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609511, "decimalLat": -34.418948 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395157, "decimalLat": -28.275076 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.275 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609511, "decimalLat": -34.418948 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52208, "decimalLat": -34.466051 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367603, "decimalLat": -28.818638 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519603, "decimalLat": -34.45521 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517125, "decimalLat": -34.447758 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092774, "decimalLat": -29.49413 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.35792, "decimalLat": -29.401221 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -29.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516266, "decimalLat": -34.44921 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604092, "decimalLat": -34.438053 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811467, "decimalLat": -29.51499 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -29.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797565, "decimalLat": -30.915154 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -30.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064461, "decimalLat": -32.706824 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.651046, "decimalLat": -34.400694 }, "geometry": { "type": "Point", "coordinates": [ 150.651, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.072034, "decimalLat": -28.56689 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -28.567 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.84034, "decimalLat": -31.593195 }, "geometry": { "type": "Point", "coordinates": [ 152.84, -31.593 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785102, "decimalLat": -33.716282 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626448, "decimalLat": -34.390527 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928719, "decimalLat": -31.459191 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821928, "decimalLat": -34.101151 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104031, "decimalLat": -29.485366 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103886, "decimalLat": -29.489591 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.080846, "decimalLat": -32.722426 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627674, "decimalLat": -34.386377 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522812, "decimalLat": -34.452345 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605649, "decimalLat": -34.437263 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63272, "decimalLat": -34.392957 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519515, "decimalLat": -34.46333 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639179, "decimalLat": -34.491585 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.815969, "decimalLat": -31.563824 }, "geometry": { "type": "Point", "coordinates": [ 152.816, -31.564 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785894, "decimalLat": -33.704017 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632983, "decimalLat": -34.392863 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875238, "decimalLat": -31.458037 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.392849, "decimalLat": -31.977079 }, "geometry": { "type": "Point", "coordinates": [ 152.393, -31.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.017532, "decimalLat": -32.732613 }, "geometry": { "type": "Point", "coordinates": [ 152.018, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63132, "decimalLat": -34.420229 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797565, "decimalLat": -30.915154 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -30.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.821558, "decimalLat": -30.912042 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -30.912 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912507, "decimalLat": -31.429663 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.827643, "decimalLat": -34.15646 }, "geometry": { "type": "Point", "coordinates": [ 150.828, -34.156 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632734, "decimalLat": -34.418318 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637524, "decimalLat": -34.488488 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617298, "decimalLat": -34.439745 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605513, "decimalLat": -34.427524 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.38251, "decimalLat": -31.9159 }, "geometry": { "type": "Point", "coordinates": [ 152.383, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.137736, "decimalLat": -31.180584 }, "geometry": { "type": "Point", "coordinates": [ 150.138, -31.181 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659147, "decimalLat": -34.457737 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644348, "decimalLat": -34.39365 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518825, "decimalLat": -34.446584 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920583, "decimalLat": -31.449626 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556968, "decimalLat": -28.397401 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.84826, "decimalLat": -32.799571 }, "geometry": { "type": "Point", "coordinates": [ 151.848, -32.8 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533007, "decimalLat": -34.475711 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.190265, "decimalLat": -31.594077 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -31.594 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.593108, "decimalLat": -28.797493 }, "geometry": { "type": "Point", "coordinates": [ 153.593, -28.797 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645077, "decimalLat": -34.398686 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279241, "decimalLat": -28.839565 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103342, "decimalLat": -29.48725 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.440827, "decimalLat": -28.982484 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.982 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786193, "decimalLat": -33.706245 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518056, "decimalLat": -34.457107 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557586, "decimalLat": -28.394686 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.450482, "decimalLat": -28.638721 }, "geometry": { "type": "Point", "coordinates": [ 153.45, -28.639 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07168, "decimalLat": -30.887705 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523988, "decimalLat": -34.452693 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.594753, "decimalLat": -34.773332 }, "geometry": { "type": "Point", "coordinates": [ 146.595, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06845, "decimalLat": -32.71973 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.34591, "decimalLat": -32.298768 }, "geometry": { "type": "Point", "coordinates": [ 152.346, -32.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60385, "decimalLat": -34.426734 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.371277, "decimalLat": -31.92352 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.292394, "decimalLat": -31.611878 }, "geometry": { "type": "Point", "coordinates": [ 152.292, -31.612 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.00805, "decimalLat": -30.23166 }, "geometry": { "type": "Point", "coordinates": [ 153.008, -30.232 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110286, "decimalLat": -29.490161 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89266, "decimalLat": -33.991958 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.992 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515858, "decimalLat": -34.447164 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909528, "decimalLat": -31.466054 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628814, "decimalLat": -34.389545 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.988359, "decimalLat": -34.03627 }, "geometry": { "type": "Point", "coordinates": [ 150.988, -34.036 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.66003, "decimalLat": -34.455735 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.006267, "decimalLat": -32.72873 }, "geometry": { "type": "Point", "coordinates": [ 152.006, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.11459, "decimalLat": -32.779102 }, "geometry": { "type": "Point", "coordinates": [ 152.115, -32.779 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.155464, "decimalLat": -28.532129 }, "geometry": { "type": "Point", "coordinates": [ 153.155, -28.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092083, "decimalLat": -29.488136 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516515, "decimalLat": -34.440795 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063805, "decimalLat": -32.706607 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.514058, "decimalLat": -31.950012 }, "geometry": { "type": "Point", "coordinates": [ 152.514, -31.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063543, "decimalLat": -32.706122 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89266, "decimalLat": -33.99196 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.992 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.397897, "decimalLat": -28.259715 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.563604, "decimalLat": -31.975751 }, "geometry": { "type": "Point", "coordinates": [ 152.564, -31.976 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637599, "decimalLat": -34.488525 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55705, "decimalLat": -28.397447 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521366, "decimalLat": -34.459266 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.056697, "decimalLat": -29.739233 }, "geometry": { "type": "Point", "coordinates": [ 151.057, -29.739 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376753, "decimalLat": -28.875831 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.876 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.725531, "decimalLat": -34.188759 }, "geometry": { "type": "Point", "coordinates": [ 150.726, -34.189 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.081228, "decimalLat": -28.59283 }, "geometry": { "type": "Point", "coordinates": [ 153.081, -28.593 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517154, "decimalLat": -34.453762 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911259, "decimalLat": -31.470447 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863565, "decimalLat": -31.299415 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662174, "decimalLat": -34.45418 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869656, "decimalLat": -31.393213 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -31.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513212, "decimalLat": -34.447236 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616192, "decimalLat": -34.436153 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.805718, "decimalLat": -31.675783 }, "geometry": { "type": "Point", "coordinates": [ 152.806, -31.676 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103752, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104444, "decimalLat": -29.482751 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.618366, "decimalLat": -28.642822 }, "geometry": { "type": "Point", "coordinates": [ 153.618, -28.643 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521299, "decimalLat": -34.435392 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516168, "decimalLat": -34.469778 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616838, "decimalLat": -34.429503 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.862909, "decimalLat": -29.611714 }, "geometry": { "type": "Point", "coordinates": [ 150.863, -29.612 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632834, "decimalLat": -34.483615 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522747, "decimalLat": -34.464117 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091039, "decimalLat": -29.487756 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.133659, "decimalLat": -30.11224 }, "geometry": { "type": "Point", "coordinates": [ 152.134, -30.112 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525449, "decimalLat": -34.459953 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104031, "decimalLat": -29.485137 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102846, "decimalLat": -29.489433 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519346, "decimalLat": -34.462065 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607954, "decimalLat": -34.43656 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.44063, "decimalLat": -34.469484 }, "geometry": { "type": "Point", "coordinates": [ 150.441, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915047, "decimalLat": -31.446344 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618243, "decimalLat": -34.435193 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067952, "decimalLat": -32.723551 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643661, "decimalLat": -34.403815 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519008, "decimalLat": -34.438564 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657603, "decimalLat": -34.45613 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909979, "decimalLat": -30.505785 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.421868, "decimalLat": -28.820583 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634626, "decimalLat": -34.420284 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.580448, "decimalLat": -32.863373 }, "geometry": { "type": "Point", "coordinates": [ 151.58, -32.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.655273, "decimalLat": -32.688545 }, "geometry": { "type": "Point", "coordinates": [ 151.655, -32.689 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902021, "decimalLat": -31.448275 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619998, "decimalLat": -34.400914 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.58005, "decimalLat": -32.64283 }, "geometry": { "type": "Point", "coordinates": [ 151.58, -32.643 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293102, "decimalLat": -28.864616 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.739332, "decimalLat": -32.067098 }, "geometry": { "type": "Point", "coordinates": [ 151.739, -32.067 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658886, "decimalLat": -33.526945 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108113, "decimalLat": -29.490255 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.882581, "decimalLat": -31.459139 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.819164, "decimalLat": -31.994786 }, "geometry": { "type": "Point", "coordinates": [ 151.819, -31.995 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615636, "decimalLat": -34.431193 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872105, "decimalLat": -31.286301 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.286 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306243, "decimalLat": -29.055077 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -29.055 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.35312, "decimalLat": -31.92302 }, "geometry": { "type": "Point", "coordinates": [ 152.353, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.064169, "decimalLat": -33.775998 }, "geometry": { "type": "Point", "coordinates": [ 150.064, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.459962, "decimalLat": -28.952373 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.952 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626035, "decimalLat": -34.39014 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394732, "decimalLat": -28.960694 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.224314, "decimalLat": -28.647513 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -28.648 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108205, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10813, "decimalLat": -29.490213 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618884, "decimalLat": -34.436377 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637454, "decimalLat": -34.421465 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51375, "decimalLat": -34.446337 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518246, "decimalLat": -34.43744 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066564, "decimalLat": -32.713391 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.085229, "decimalLat": -28.535988 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -28.536 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643742, "decimalLat": -34.394711 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513123, "decimalLat": -34.445846 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.973345, "decimalLat": -30.418587 }, "geometry": { "type": "Point", "coordinates": [ 152.973, -30.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92819, "decimalLat": -31.458556 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925424, "decimalLat": -31.453888 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513059, "decimalLat": -34.447242 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787301, "decimalLat": -33.706853 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381369, "decimalLat": -32.029779 }, "geometry": { "type": "Point", "coordinates": [ 152.381, -32.03 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.826214, "decimalLat": -31.543812 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -31.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631634, "decimalLat": -34.387121 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.610336, "decimalLat": -28.721583 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298493, "decimalLat": -28.81679 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623287, "decimalLat": -34.385787 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560036, "decimalLat": -28.841696 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359276, "decimalLat": -31.958138 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616358, "decimalLat": -34.398869 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59752, "decimalLat": -34.415233 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322384, "decimalLat": -28.953942 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.698911, "decimalLat": -30.478856 }, "geometry": { "type": "Point", "coordinates": [ 151.699, -30.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.547784, "decimalLat": -33.623333 }, "geometry": { "type": "Point", "coordinates": [ 149.548, -33.623 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905358, "decimalLat": -31.442862 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62457, "decimalLat": -34.386154 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.983236, "decimalLat": -30.421928 }, "geometry": { "type": "Point", "coordinates": [ 152.983, -30.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09011, "decimalLat": -29.486005 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521014, "decimalLat": -34.46529 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784261, "decimalLat": -31.630309 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515048, "decimalLat": -34.459084 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636324, "decimalLat": -34.421804 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637334, "decimalLat": -34.423798 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394678, "decimalLat": -28.95969 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626585, "decimalLat": -34.396056 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.660295, "decimalLat": -34.458336 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873293, "decimalLat": -31.467175 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.090193, "decimalLat": -32.738962 }, "geometry": { "type": "Point", "coordinates": [ 152.09, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617091, "decimalLat": -34.430545 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930261, "decimalLat": -31.456145 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103859, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.059885, "decimalLat": -33.778799 }, "geometry": { "type": "Point", "coordinates": [ 150.06, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.404587, "decimalLat": -28.972241 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.972 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904969, "decimalLat": -31.466083 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520581, "decimalLat": -34.465209 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292968, "decimalLat": -28.805609 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606784, "decimalLat": -34.434473 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.872102, "decimalLat": -34.040711 }, "geometry": { "type": "Point", "coordinates": [ 150.872, -34.041 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28759, "decimalLat": -29.041176 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -29.041 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90829, "decimalLat": -30.17149 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -30.171 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.589332, "decimalLat": -33.462578 }, "geometry": { "type": "Point", "coordinates": [ 150.589, -33.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639463, "decimalLat": -34.491951 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627118, "decimalLat": -34.398771 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.139095, "decimalLat": -32.735486 }, "geometry": { "type": "Point", "coordinates": [ 152.139, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063828, "decimalLat": -32.706746 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103924, "decimalLat": -29.478366 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.775955, "decimalLat": -31.506722 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -31.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515916, "decimalLat": -34.449996 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604949, "decimalLat": -34.427107 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415866, "decimalLat": -31.933496 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292217, "decimalLat": -28.856146 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.856 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615498, "decimalLat": -34.435671 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636993, "decimalLat": -34.488387 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.857656, "decimalLat": -31.544439 }, "geometry": { "type": "Point", "coordinates": [ 152.858, -31.544 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784742, "decimalLat": -33.708256 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40417, "decimalLat": -31.94582 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071943, "decimalLat": -30.887517 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.087135, "decimalLat": -33.774893 }, "geometry": { "type": "Point", "coordinates": [ 150.087, -33.775 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279661, "decimalLat": -28.831073 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614896, "decimalLat": -34.433892 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.840082, "decimalLat": -34.0668 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.067 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627347, "decimalLat": -34.420296 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.139095, "decimalLat": -32.735486 }, "geometry": { "type": "Point", "coordinates": [ 152.139, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279696, "decimalLat": -28.678852 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606812, "decimalLat": -34.429677 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628678, "decimalLat": -34.395132 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630052, "decimalLat": -34.395384 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.985731, "decimalLat": -32.751428 }, "geometry": { "type": "Point", "coordinates": [ 151.986, -32.751 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298208, "decimalLat": -28.825805 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616529, "decimalLat": -34.438062 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865519, "decimalLat": -31.271386 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -31.271 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517324, "decimalLat": -34.448032 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.650089, "decimalLat": -34.403407 }, "geometry": { "type": "Point", "coordinates": [ 150.65, -34.403 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40798, "decimalLat": -31.932795 }, "geometry": { "type": "Point", "coordinates": [ 152.408, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520481, "decimalLat": -34.465631 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.962098, "decimalLat": -36.44151 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.491585, "decimalLat": -28.677649 }, "geometry": { "type": "Point", "coordinates": [ 153.492, -28.678 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785955, "decimalLat": -33.709634 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302724, "decimalLat": -28.844725 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838978, "decimalLat": -34.053416 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556379, "decimalLat": -28.399966 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.298857, "decimalLat": -31.945396 }, "geometry": { "type": "Point", "coordinates": [ 152.299, -31.945 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.995551, "decimalLat": -32.740523 }, "geometry": { "type": "Point", "coordinates": [ 151.996, -32.741 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104063, "decimalLat": -29.4853 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110586, "decimalLat": -29.489867 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093581, "decimalLat": -29.488779 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.122807, "decimalLat": -32.096155 }, "geometry": { "type": "Point", "coordinates": [ 152.123, -32.096 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.233122, "decimalLat": -33.711138 }, "geometry": { "type": "Point", "coordinates": [ 150.233, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.332351, "decimalLat": -28.813621 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.834515, "decimalLat": -34.073845 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.074 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523666, "decimalLat": -28.38674 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104667, "decimalLat": -29.489636 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.914825, "decimalLat": -31.793452 }, "geometry": { "type": "Point", "coordinates": [ 151.915, -31.793 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901357, "decimalLat": -31.473757 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611799, "decimalLat": -34.419596 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607283, "decimalLat": -34.430336 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.529813, "decimalLat": -34.746415 }, "geometry": { "type": "Point", "coordinates": [ 146.53, -34.746 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658856, "decimalLat": -34.45647 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103784, "decimalLat": -29.485529 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107545, "decimalLat": -29.490138 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78993, "decimalLat": -31.637334 }, "geometry": { "type": "Point", "coordinates": [ 152.79, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597139, "decimalLat": -34.42855 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885391, "decimalLat": -34.066471 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.066 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914314, "decimalLat": -31.484727 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.615346, "decimalLat": -32.642844 }, "geometry": { "type": "Point", "coordinates": [ 151.615, -32.643 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61121, "decimalLat": -28.674873 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.675 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.976926, "decimalLat": -34.086171 }, "geometry": { "type": "Point", "coordinates": [ 150.977, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104208, "decimalLat": -29.477735 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794359, "decimalLat": -31.126555 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374059, "decimalLat": -31.949133 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108215, "decimalLat": -29.490245 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609555, "decimalLat": -34.41893 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602031, "decimalLat": -34.425653 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643218, "decimalLat": -34.395927 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52454, "decimalLat": -34.463829 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283377, "decimalLat": -28.830775 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028909, "decimalLat": -32.191262 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.191 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516156, "decimalLat": -34.447765 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.301493, "decimalLat": -30.587496 }, "geometry": { "type": "Point", "coordinates": [ 151.301, -30.587 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.242496, "decimalLat": -28.648123 }, "geometry": { "type": "Point", "coordinates": [ 153.242, -28.648 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.006896, "decimalLat": -30.420651 }, "geometry": { "type": "Point", "coordinates": [ 153.007, -30.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615371, "decimalLat": -34.430944 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525472, "decimalLat": -34.459926 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063978, "decimalLat": -32.706538 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.706476, "decimalLat": -32.684018 }, "geometry": { "type": "Point", "coordinates": [ 151.706, -32.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616245, "decimalLat": -34.435821 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901147, "decimalLat": -30.500156 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -30.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.702666, "decimalLat": -30.298502 }, "geometry": { "type": "Point", "coordinates": [ 152.703, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.2897, "decimalLat": -28.75957 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.76 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298364, "decimalLat": -28.818059 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604782, "decimalLat": -34.42723 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869823, "decimalLat": -30.881917 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.41473, "decimalLat": -31.93297 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617125, "decimalLat": -34.433548 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403593, "decimalLat": -31.928286 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.077021, "decimalLat": -33.147148 }, "geometry": { "type": "Point", "coordinates": [ 151.077, -33.147 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598008, "decimalLat": -34.425943 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517011, "decimalLat": -34.446088 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405107, "decimalLat": -31.920313 }, "geometry": { "type": "Point", "coordinates": [ 152.405, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316393, "decimalLat": -28.827525 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322384, "decimalLat": -28.953942 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.954 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604614, "decimalLat": -34.424739 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639439, "decimalLat": -34.399605 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.186532, "decimalLat": -32.713173 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318036, "decimalLat": -28.827209 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616303, "decimalLat": -34.435696 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095207, "decimalLat": -29.483465 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.834555, "decimalLat": -34.073921 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.074 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.630114, "decimalLat": -28.637403 }, "geometry": { "type": "Point", "coordinates": [ 153.63, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.411653, "decimalLat": -28.955029 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -28.955 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.184395, "decimalLat": -34.562316 }, "geometry": { "type": "Point", "coordinates": [ 150.184, -34.562 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885017, "decimalLat": -34.014328 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.014 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614411, "decimalLat": -34.432575 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.451854, "decimalLat": -28.671784 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319157, "decimalLat": -28.916787 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.917 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627106, "decimalLat": -34.389566 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.830824, "decimalLat": -29.81019 }, "geometry": { "type": "Point", "coordinates": [ 152.831, -29.81 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.488711, "decimalLat": -32.032221 }, "geometry": { "type": "Point", "coordinates": [ 152.489, -32.032 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10821, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627239, "decimalLat": -34.421042 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103822, "decimalLat": -29.484861 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565884, "decimalLat": -28.387113 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605694, "decimalLat": -34.427681 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78558, "decimalLat": -33.710168 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103876, "decimalLat": -29.484903 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.409381, "decimalLat": -28.871817 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788456, "decimalLat": -31.696462 }, "geometry": { "type": "Point", "coordinates": [ 152.788, -31.696 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.755722, "decimalLat": -34.191742 }, "geometry": { "type": "Point", "coordinates": [ 150.756, -34.192 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787346, "decimalLat": -31.635736 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.636 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077083, "decimalLat": -32.722708 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619243, "decimalLat": -34.400719 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.101991, "decimalLat": -33.775135 }, "geometry": { "type": "Point", "coordinates": [ 150.102, -33.775 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.370526, "decimalLat": -31.923032 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.029678, "decimalLat": -29.194282 }, "geometry": { "type": "Point", "coordinates": [ 153.03, -29.194 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.04058, "decimalLat": -32.735846 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627301, "decimalLat": -34.389985 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515822, "decimalLat": -34.44875 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867847, "decimalLat": -29.66721 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91127, "decimalLat": -31.441732 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108017, "decimalLat": -29.490404 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401969, "decimalLat": -28.260365 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.377621, "decimalLat": -33.713011 }, "geometry": { "type": "Point", "coordinates": [ 150.378, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606294, "decimalLat": -34.450889 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383387, "decimalLat": -31.920923 }, "geometry": { "type": "Point", "coordinates": [ 152.383, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.111333, "decimalLat": -29.46469 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.836991, "decimalLat": -34.073711 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.074 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.073874, "decimalLat": -30.886238 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.932749, "decimalLat": -32.240126 }, "geometry": { "type": "Point", "coordinates": [ 151.933, -32.24 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838524, "decimalLat": -34.063823 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.064 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894119, "decimalLat": -31.446332 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.928579, "decimalLat": -33.958262 }, "geometry": { "type": "Point", "coordinates": [ 150.929, -33.958 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.181442, "decimalLat": -31.957561 }, "geometry": { "type": "Point", "coordinates": [ 152.181, -31.958 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103886, "decimalLat": -29.485436 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.856111, "decimalLat": -31.46544 }, "geometry": { "type": "Point", "coordinates": [ 152.856, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.650143, "decimalLat": -34.403444 }, "geometry": { "type": "Point", "coordinates": [ 150.65, -34.403 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522357, "decimalLat": -34.464776 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630962, "decimalLat": -34.388198 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.113632, "decimalLat": -28.631257 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -28.631 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985375, "decimalLat": -34.090657 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520602, "decimalLat": -34.453832 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.028318, "decimalLat": -36.532196 }, "geometry": { "type": "Point", "coordinates": [ 150.028, -36.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631149, "decimalLat": -34.388112 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623815, "decimalLat": -34.389024 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645045, "decimalLat": -34.398658 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517398, "decimalLat": -34.448466 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.045771, "decimalLat": -34.029025 }, "geometry": { "type": "Point", "coordinates": [ 151.046, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616807, "decimalLat": -34.399535 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.070235, "decimalLat": -30.885558 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.781441, "decimalLat": -30.191822 }, "geometry": { "type": "Point", "coordinates": [ 152.781, -30.192 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.069356, "decimalLat": -32.707602 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.76491, "decimalLat": -32.63767 }, "geometry": { "type": "Point", "coordinates": [ 151.765, -32.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915946, "decimalLat": -31.48169 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.426477, "decimalLat": -28.87809 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.878 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.263389, "decimalLat": -31.116816 }, "geometry": { "type": "Point", "coordinates": [ 150.263, -31.117 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.45545, "decimalLat": -28.651328 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.689549, "decimalLat": -32.686954 }, "geometry": { "type": "Point", "coordinates": [ 151.69, -32.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518406, "decimalLat": -34.4372 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523, "decimalLat": -34.466214 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 146.578625, "decimalLat": -34.767703 }, "geometry": { "type": "Point", "coordinates": [ 146.579, -34.768 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.287936, "decimalLat": -28.686572 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.102412, "decimalLat": -33.77867 }, "geometry": { "type": "Point", "coordinates": [ 150.102, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109396, "decimalLat": -29.49046 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.823674, "decimalLat": -34.150166 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.664512, "decimalLat": -30.203358 }, "geometry": { "type": "Point", "coordinates": [ 152.665, -30.203 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912464, "decimalLat": -31.431369 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336244, "decimalLat": -28.8161 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519301, "decimalLat": -34.448153 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792848, "decimalLat": -31.640725 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.641 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37838, "decimalLat": -31.918271 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307837, "decimalLat": -28.849617 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523687, "decimalLat": -34.465443 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518218, "decimalLat": -34.453478 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534634, "decimalLat": -34.46223 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602916, "decimalLat": -34.435425 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520497, "decimalLat": -34.454074 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900364, "decimalLat": -31.436311 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657039, "decimalLat": -34.454487 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634188, "decimalLat": -34.488639 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919855, "decimalLat": -31.469033 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103484, "decimalLat": -29.488139 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.230526, "decimalLat": -28.830629 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.848879, "decimalLat": -29.339319 }, "geometry": { "type": "Point", "coordinates": [ 152.849, -29.339 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916885, "decimalLat": -31.454109 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630173, "decimalLat": -34.420783 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515932, "decimalLat": -34.446525 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608471, "decimalLat": -34.430647 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10975, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9214, "decimalLat": -30.50416 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -30.504 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394144, "decimalLat": -28.959727 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105201, "decimalLat": -29.489788 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.722098, "decimalLat": -34.314732 }, "geometry": { "type": "Point", "coordinates": [ 150.722, -34.315 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899746, "decimalLat": -31.466668 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516096, "decimalLat": -34.446844 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280652, "decimalLat": -28.68319 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06635, "decimalLat": -32.712685 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.547463, "decimalLat": -28.676052 }, "geometry": { "type": "Point", "coordinates": [ 153.547, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605009, "decimalLat": -34.432608 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607942, "decimalLat": -34.422108 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82411, "decimalLat": -34.150311 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.775894, "decimalLat": -32.574766 }, "geometry": { "type": "Point", "coordinates": [ 151.776, -32.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616443, "decimalLat": -34.436122 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604735, "decimalLat": -34.427338 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924873, "decimalLat": -31.44384 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.944869, "decimalLat": -36.572615 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86125, "decimalLat": -31.144333 }, "geometry": { "type": "Point", "coordinates": [ 152.861, -31.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637457, "decimalLat": -34.421745 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52161, "decimalLat": -34.465735 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617162, "decimalLat": -34.439156 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.357065, "decimalLat": -31.981248 }, "geometry": { "type": "Point", "coordinates": [ 152.357, -31.981 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.114072, "decimalLat": -32.764939 }, "geometry": { "type": "Point", "coordinates": [ 152.114, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87778, "decimalLat": -31.434325 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609085, "decimalLat": -34.420544 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615216, "decimalLat": -34.435647 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628133, "decimalLat": -34.389793 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80858, "decimalLat": -34.079579 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.08 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.720227, "decimalLat": -32.903614 }, "geometry": { "type": "Point", "coordinates": [ 151.72, -32.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558596, "decimalLat": -28.394529 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929008, "decimalLat": -31.450184 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068045, "decimalLat": -32.712151 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61697, "decimalLat": -34.435204 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.345255, "decimalLat": -36.160568 }, "geometry": { "type": "Point", "coordinates": [ 149.345, -36.161 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607723, "decimalLat": -34.43322 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877363, "decimalLat": -31.447447 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926763, "decimalLat": -31.471934 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60368, "decimalLat": -34.438766 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.366858, "decimalLat": -28.851685 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -28.852 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639175, "decimalLat": -34.392757 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53011, "decimalLat": -34.470965 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.548753, "decimalLat": -28.726548 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.727 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.01404, "decimalLat": -32.667342 }, "geometry": { "type": "Point", "coordinates": [ 152.014, -32.667 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.275153, "decimalLat": -28.813955 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635914, "decimalLat": -34.488051 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617488, "decimalLat": -34.399702 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603914, "decimalLat": -34.427132 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.83898, "decimalLat": -34.05342 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.562103, "decimalLat": -33.4937 }, "geometry": { "type": "Point", "coordinates": [ 149.562, -33.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635375, "decimalLat": -34.488626 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911729, "decimalLat": -31.44531 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378708, "decimalLat": -31.914293 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80858, "decimalLat": -34.079579 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.08 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095115, "decimalLat": -29.489437 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.88723, "decimalLat": -33.251643 }, "geometry": { "type": "Point", "coordinates": [ 150.887, -33.252 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.471538, "decimalLat": -28.632652 }, "geometry": { "type": "Point", "coordinates": [ 153.472, -28.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521916, "decimalLat": -34.464596 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631423, "decimalLat": -34.388018 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596971, "decimalLat": -34.450382 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526014, "decimalLat": -34.457774 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520644, "decimalLat": -34.464174 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527695, "decimalLat": -34.456879 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.062109, "decimalLat": -33.774038 }, "geometry": { "type": "Point", "coordinates": [ 150.062, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632604, "decimalLat": -34.418306 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613279, "decimalLat": -34.432607 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630223, "decimalLat": -34.420947 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630818, "decimalLat": -34.42067 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.221964, "decimalLat": -28.868818 }, "geometry": { "type": "Point", "coordinates": [ 153.222, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526304, "decimalLat": -34.46455 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618347, "decimalLat": -34.435348 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924126, "decimalLat": -31.473213 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785747, "decimalLat": -33.712649 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101279, "decimalLat": -29.48975 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607389, "decimalLat": -28.687767 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.098152, "decimalLat": -29.489274 }, "geometry": { "type": "Point", "coordinates": [ 153.098, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87778, "decimalLat": -31.434325 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104315, "decimalLat": -29.480439 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293232, "decimalLat": -28.86456 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.62228, "decimalLat": -33.543308 }, "geometry": { "type": "Point", "coordinates": [ 149.622, -33.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.841815, "decimalLat": -34.060288 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.06 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927995, "decimalLat": -31.457568 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.987135, "decimalLat": -29.030312 }, "geometry": { "type": "Point", "coordinates": [ 152.987, -29.03 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90916, "decimalLat": -31.448576 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634791, "decimalLat": -34.423695 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.503231, "decimalLat": -29.092827 }, "geometry": { "type": "Point", "coordinates": [ 152.503, -29.093 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002583, "decimalLat": -29.182206 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -29.182 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632604, "decimalLat": -34.418306 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.308213, "decimalLat": -28.823247 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099761, "decimalLat": -29.491529 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.484936 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520344, "decimalLat": -34.454071 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925258, "decimalLat": -31.45418 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632585, "decimalLat": -34.41973 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.973995, "decimalLat": -28.530409 }, "geometry": { "type": "Point", "coordinates": [ 152.974, -28.53 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517416, "decimalLat": -34.441615 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607347, "decimalLat": -34.433032 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604586, "decimalLat": -34.422665 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.08973, "decimalLat": -28.598067 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -28.598 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.063013, "decimalLat": -33.777296 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -33.777 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302218, "decimalLat": -28.847331 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.304449, "decimalLat": -33.325293 }, "geometry": { "type": "Point", "coordinates": [ 150.304, -33.325 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645633, "decimalLat": -34.391646 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339182, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10416, "decimalLat": -29.482115 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520479, "decimalLat": -34.453938 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516338, "decimalLat": -34.447868 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63025, "decimalLat": -34.388744 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.02093, "decimalLat": -34.80854 }, "geometry": { "type": "Point", "coordinates": [ 150.021, -34.809 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.420144, "decimalLat": -29.018727 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -29.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.406876, "decimalLat": -36.250309 }, "geometry": { "type": "Point", "coordinates": [ 149.407, -36.25 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.165825, "decimalLat": -29.305723 }, "geometry": { "type": "Point", "coordinates": [ 153.166, -29.306 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519063, "decimalLat": -34.459877 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30278, "decimalLat": -28.817457 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.778378, "decimalLat": -34.139613 }, "geometry": { "type": "Point", "coordinates": [ 150.778, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604976, "decimalLat": -34.42691 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.127277, "decimalLat": -35.062989 }, "geometry": { "type": "Point", "coordinates": [ 150.127, -35.063 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373563, "decimalLat": -31.915901 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51453, "decimalLat": -34.446443 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.044217, "decimalLat": -30.912587 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -30.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61028, "decimalLat": -34.419089 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300335, "decimalLat": -28.82356 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.185174, "decimalLat": -28.923013 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -28.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.042791, "decimalLat": -34.024321 }, "geometry": { "type": "Point", "coordinates": [ 151.043, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394206, "decimalLat": -28.95915 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514445, "decimalLat": -34.446017 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278306, "decimalLat": -28.934723 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.935 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785282, "decimalLat": -33.711778 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793528, "decimalLat": -31.642546 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.643 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104122, "decimalLat": -29.480444 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791179, "decimalLat": -34.140905 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.491504, "decimalLat": -28.671454 }, "geometry": { "type": "Point", "coordinates": [ 153.492, -28.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924261, "decimalLat": -31.464557 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621382, "decimalLat": -34.397749 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630873, "decimalLat": -34.394039 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639407, "decimalLat": -34.399595 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615077, "decimalLat": -34.431335 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639094, "decimalLat": -34.491493 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639083, "decimalLat": -34.491511 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325737, "decimalLat": -28.883842 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.884 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610291, "decimalLat": -34.41908 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784263, "decimalLat": -34.276055 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -34.276 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516102, "decimalLat": -34.447755 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522457, "decimalLat": -34.465815 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301419, "decimalLat": -28.823212 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.966901, "decimalLat": -31.253271 }, "geometry": { "type": "Point", "coordinates": [ 152.967, -31.253 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300422, "decimalLat": -31.948252 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900319, "decimalLat": -31.474216 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.289504, "decimalLat": -28.67706 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.677 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62738, "decimalLat": -34.420305 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104557, "decimalLat": -29.477376 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618763, "decimalLat": -34.429523 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.514459, "decimalLat": -28.2398 }, "geometry": { "type": "Point", "coordinates": [ 153.514, -28.24 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955028, "decimalLat": -36.650407 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.574456, "decimalLat": -28.365997 }, "geometry": { "type": "Point", "coordinates": [ 153.574, -28.366 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335751, "decimalLat": -28.819626 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374047, "decimalLat": -31.913202 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32037, "decimalLat": -28.843373 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.843 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110501, "decimalLat": -29.490161 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637279, "decimalLat": -34.423797 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.430653, "decimalLat": -29.016187 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522946, "decimalLat": -34.466222 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617048, "decimalLat": -34.433583 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.661161, "decimalLat": -28.610492 }, "geometry": { "type": "Point", "coordinates": [ 152.661, -28.61 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.749856, "decimalLat": -30.210355 }, "geometry": { "type": "Point", "coordinates": [ 152.75, -30.21 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609391, "decimalLat": -34.418972 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102561, "decimalLat": -29.488041 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638872, "decimalLat": -34.419383 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513058, "decimalLat": -34.447296 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6373, "decimalLat": -34.423842 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.531976, "decimalLat": -28.638162 }, "geometry": { "type": "Point", "coordinates": [ 153.532, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659547, "decimalLat": -34.354778 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.355 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071229, "decimalLat": -32.7091 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522386, "decimalLat": -34.465255 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103833, "decimalLat": -29.485566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091849, "decimalLat": -29.48813 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.418449, "decimalLat": -28.591399 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -28.591 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103725, "decimalLat": -29.485737 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.011194, "decimalLat": -32.315304 }, "geometry": { "type": "Point", "coordinates": [ 152.011, -32.315 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.447181, "decimalLat": -28.636135 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.636 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.75978, "decimalLat": -34.26555 }, "geometry": { "type": "Point", "coordinates": [ 150.76, -34.266 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303635, "decimalLat": -28.839872 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.16788, "decimalLat": -31.22944 }, "geometry": { "type": "Point", "coordinates": [ 150.168, -31.229 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.033432, "decimalLat": -32.748493 }, "geometry": { "type": "Point", "coordinates": [ 152.033, -32.748 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103693, "decimalLat": -29.485758 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627396, "decimalLat": -34.390077 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785155, "decimalLat": -33.709453 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.836071, "decimalLat": -31.532957 }, "geometry": { "type": "Point", "coordinates": [ 152.836, -31.533 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639317, "decimalLat": -34.491696 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.329782, "decimalLat": -28.822269 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.015765, "decimalLat": -30.379068 }, "geometry": { "type": "Point", "coordinates": [ 153.016, -30.379 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.751141, "decimalLat": -30.483565 }, "geometry": { "type": "Point", "coordinates": [ 151.751, -30.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785132, "decimalLat": -33.709474 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 150.937159, "decimalLat": -29.726114 }, "geometry": { "type": "Point", "coordinates": [ 150.937, -29.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515334, "decimalLat": -34.46046 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52547, "decimalLat": -34.45998 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518283, "decimalLat": -34.453488 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.426177, "decimalLat": -28.62832 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.628 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37193, "decimalLat": -29.08315 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -29.083 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89726, "decimalLat": -31.41529 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.525734, "decimalLat": -28.685552 }, "geometry": { "type": "Point", "coordinates": [ 153.526, -28.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.86069, "decimalLat": -34.076756 }, "geometry": { "type": "Point", "coordinates": [ 150.861, -34.077 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285223, "decimalLat": -28.815115 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061388, "decimalLat": -32.709662 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78398, "decimalLat": -33.717635 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104262, "decimalLat": -29.482153 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903644, "decimalLat": -31.113865 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613995, "decimalLat": -34.437255 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519872, "decimalLat": -34.46304 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557137, "decimalLat": -28.397324 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635434, "decimalLat": -34.419785 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.118095, "decimalLat": -32.76419 }, "geometry": { "type": "Point", "coordinates": [ 152.118, -32.764 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.352281, "decimalLat": -31.926205 }, "geometry": { "type": "Point", "coordinates": [ 152.352, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63071, "decimalLat": -34.389807 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603787, "decimalLat": -34.437687 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785118, "decimalLat": -33.713868 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518009, "decimalLat": -34.438851 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838978, "decimalLat": -34.053416 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.624176, "decimalLat": -32.647053 }, "geometry": { "type": "Point", "coordinates": [ 151.624, -32.647 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.13794, "decimalLat": -31.13819 }, "geometry": { "type": "Point", "coordinates": [ 150.138, -31.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.204862, "decimalLat": -30.095476 }, "geometry": { "type": "Point", "coordinates": [ 152.205, -30.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.079295, "decimalLat": -29.070677 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -29.071 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.33336, "decimalLat": -33.432002 }, "geometry": { "type": "Point", "coordinates": [ 149.333, -33.432 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.679161, "decimalLat": -28.38948 }, "geometry": { "type": "Point", "coordinates": [ 152.679, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103961, "decimalLat": -29.48531 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017126, "decimalLat": -30.374914 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -30.375 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277461, "decimalLat": -28.67595 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516111, "decimalLat": -34.459204 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017126, "decimalLat": -30.374914 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -30.375 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.21011, "decimalLat": -28.928314 }, "geometry": { "type": "Point", "coordinates": [ 153.21, -28.928 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.587798, "decimalLat": -34.768008 }, "geometry": { "type": "Point", "coordinates": [ 146.588, -34.768 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.027007, "decimalLat": -30.407831 }, "geometry": { "type": "Point", "coordinates": [ 153.027, -30.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5161, "decimalLat": -34.459222 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785202, "decimalLat": -33.705726 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.058657, "decimalLat": -29.740227 }, "geometry": { "type": "Point", "coordinates": [ 151.059, -29.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610246, "decimalLat": -34.419124 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630917, "decimalLat": -34.420635 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924348, "decimalLat": -31.45954 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810319, "decimalLat": -31.149497 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -31.149 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104197, "decimalLat": -29.479332 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609758, "decimalLat": -34.430519 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.549897, "decimalLat": -34.462307 }, "geometry": { "type": "Point", "coordinates": [ 150.55, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465978, "decimalLat": -28.716027 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.716 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918202, "decimalLat": -31.485223 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520304, "decimalLat": -34.453962 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639175, "decimalLat": -34.39273 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.058613, "decimalLat": -29.7403 }, "geometry": { "type": "Point", "coordinates": [ 151.059, -29.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.663406, "decimalLat": -34.45488 }, "geometry": { "type": "Point", "coordinates": [ 150.663, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.231893, "decimalLat": -28.889765 }, "geometry": { "type": "Point", "coordinates": [ 153.232, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519611, "decimalLat": -34.455318 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09717, "decimalLat": -29.486879 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632717, "decimalLat": -34.418912 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104391, "decimalLat": -29.477235 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.755283, "decimalLat": -31.632616 }, "geometry": { "type": "Point", "coordinates": [ 152.755, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065485, "decimalLat": -32.711058 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603716, "decimalLat": -34.426091 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517487, "decimalLat": -34.444736 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527525, "decimalLat": -34.469272 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.097222, "decimalLat": -28.721083 }, "geometry": { "type": "Point", "coordinates": [ 152.097, -28.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516236, "decimalLat": -34.449128 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.370132, "decimalLat": -28.950323 }, "geometry": { "type": "Point", "coordinates": [ 153.37, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522183, "decimalLat": -34.465882 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990148, "decimalLat": -34.024625 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513087, "decimalLat": -34.445954 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.35486, "decimalLat": -36.18352 }, "geometry": { "type": "Point", "coordinates": [ 149.355, -36.184 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526142, "decimalLat": -34.458245 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.429213, "decimalLat": -29.031125 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627225, "decimalLat": -34.389974 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51579, "decimalLat": -34.450949 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293305, "decimalLat": -28.864429 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78539, "decimalLat": -33.714207 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.739807, "decimalLat": -30.477681 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -30.478 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.305197, "decimalLat": -28.821686 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.309927, "decimalLat": -28.845355 }, "geometry": { "type": "Point", "coordinates": [ 153.31, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612157, "decimalLat": -34.431504 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.826181, "decimalLat": -34.092443 }, "geometry": { "type": "Point", "coordinates": [ 150.826, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.32559, "decimalLat": -32.097185 }, "geometry": { "type": "Point", "coordinates": [ 152.326, -32.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.551525, "decimalLat": -34.352874 }, "geometry": { "type": "Point", "coordinates": [ 150.552, -34.353 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.99617, "decimalLat": -30.383883 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -30.384 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78455, "decimalLat": -33.710245 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017865, "decimalLat": -28.430159 }, "geometry": { "type": "Point", "coordinates": [ 153.018, -28.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415576, "decimalLat": -31.940637 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611681, "decimalLat": -34.419531 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523976, "decimalLat": -34.463763 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103897, "decimalLat": -29.485272 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921058, "decimalLat": -31.473832 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.962098, "decimalLat": -36.44151 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633209, "decimalLat": -34.418444 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394037, "decimalLat": -29.020033 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -29.02 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604798, "decimalLat": -34.4526 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427208, "decimalLat": -28.229862 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.23 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523909, "decimalLat": -34.463834 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623306, "decimalLat": -34.383966 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52071, "decimalLat": -34.465645 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533367, "decimalLat": -34.480857 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624572, "decimalLat": -34.388805 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643896, "decimalLat": -34.393488 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786864, "decimalLat": -33.708407 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.577506, "decimalLat": -33.419281 }, "geometry": { "type": "Point", "coordinates": [ 149.578, -33.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602787, "decimalLat": -34.434972 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897239, "decimalLat": -31.474786 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109862, "decimalLat": -29.490175 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510594, "decimalLat": -28.808559 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9199, "decimalLat": -31.46144 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.485566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.202587, "decimalLat": -28.882121 }, "geometry": { "type": "Point", "coordinates": [ 153.203, -28.882 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109288, "decimalLat": -29.490871 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516522, "decimalLat": -34.450098 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616395, "decimalLat": -34.438204 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615895, "decimalLat": -34.436247 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523911, "decimalLat": -34.463375 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638028, "decimalLat": -34.419998 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635328, "decimalLat": -34.488743 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.905864, "decimalLat": -32.193036 }, "geometry": { "type": "Point", "coordinates": [ 151.906, -32.193 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622556, "decimalLat": -34.383951 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.388541, "decimalLat": -28.31471 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.315 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.68425, "decimalLat": -34.354355 }, "geometry": { "type": "Point", "coordinates": [ 150.684, -34.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276945, "decimalLat": -28.931808 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109969, "decimalLat": -29.490172 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315755, "decimalLat": -28.826573 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.938478, "decimalLat": -32.154128 }, "geometry": { "type": "Point", "coordinates": [ 151.938, -32.154 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316076, "decimalLat": -28.81754 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.882512, "decimalLat": -31.459671 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109449, "decimalLat": -29.490413 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103666, "decimalLat": -29.48579 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32644, "decimalLat": -28.62251 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.623 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.069922, "decimalLat": -35.096731 }, "geometry": { "type": "Point", "coordinates": [ 150.07, -35.097 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.472011, "decimalLat": -28.264551 }, "geometry": { "type": "Point", "coordinates": [ 153.472, -28.265 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600404, "decimalLat": -34.428884 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915703, "decimalLat": -31.451348 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281284, "decimalLat": -28.826273 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626511, "decimalLat": -34.385597 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659008, "decimalLat": -34.457653 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639043, "decimalLat": -34.491393 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929942, "decimalLat": -29.726523 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630376, "decimalLat": -34.388539 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51663, "decimalLat": -34.449037 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596135, "decimalLat": -34.411572 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615127, "decimalLat": -34.435321 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.075773, "decimalLat": -31.041075 }, "geometry": { "type": "Point", "coordinates": [ 150.076, -31.041 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.187934, "decimalLat": -31.573591 }, "geometry": { "type": "Point", "coordinates": [ 152.188, -31.574 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104176, "decimalLat": -29.485118 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863085, "decimalLat": -31.30097 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -31.301 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.373978, "decimalLat": -28.851337 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379013, "decimalLat": -31.919738 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787166, "decimalLat": -31.63015 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625201, "decimalLat": -33.568445 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -33.568 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641827, "decimalLat": -34.394755 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53101, "decimalLat": -34.471073 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784238, "decimalLat": -33.717264 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596588, "decimalLat": -34.411329 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.411 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401382, "decimalLat": -28.260223 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519959, "decimalLat": -34.435825 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.97042, "decimalLat": -30.901413 }, "geometry": { "type": "Point", "coordinates": [ 151.97, -30.901 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616239, "decimalLat": -34.434099 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641469, "decimalLat": -34.394721 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525623, "decimalLat": -34.465492 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563264, "decimalLat": -28.393411 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104224, "decimalLat": -29.479844 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.42936, "decimalLat": -28.952428 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.952 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639971, "decimalLat": -34.397704 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53374, "decimalLat": -34.478926 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656162, "decimalLat": -34.459005 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627123, "decimalLat": -34.390513 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639096, "decimalLat": -34.49299 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.838289, "decimalLat": -31.443537 }, "geometry": { "type": "Point", "coordinates": [ 152.838, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317663, "decimalLat": -28.824892 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910451, "decimalLat": -31.453918 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522281, "decimalLat": -34.464757 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.992853, "decimalLat": -30.400937 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -30.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101274, "decimalLat": -29.489853 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627788, "decimalLat": -34.397387 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603317, "decimalLat": -34.41833 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513093, "decimalLat": -34.447216 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616315, "decimalLat": -34.436047 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905555, "decimalLat": -31.444529 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559577, "decimalLat": -28.393761 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597446, "decimalLat": -34.412869 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62717, "decimalLat": -34.389595 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.803234, "decimalLat": -30.254708 }, "geometry": { "type": "Point", "coordinates": [ 152.803, -30.255 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.489654, "decimalLat": -28.66697 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52144, "decimalLat": -34.435774 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.502222, "decimalLat": -28.251271 }, "geometry": { "type": "Point", "coordinates": [ 153.502, -28.251 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926095, "decimalLat": -31.476858 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.415221, "decimalLat": -28.672232 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601884, "decimalLat": -34.412514 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.870381, "decimalLat": -29.441584 }, "geometry": { "type": "Point", "coordinates": [ 149.87, -29.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.248563, "decimalLat": -28.764982 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -28.765 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919764, "decimalLat": -31.442821 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615931, "decimalLat": -34.433074 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526611, "decimalLat": -34.469623 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513142, "decimalLat": -34.445937 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.697867, "decimalLat": -32.691981 }, "geometry": { "type": "Point", "coordinates": [ 151.698, -32.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627347, "decimalLat": -34.420296 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521222, "decimalLat": -34.435788 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095169, "decimalLat": -29.483255 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823148, "decimalLat": -31.650337 }, "geometry": { "type": "Point", "coordinates": [ 152.823, -31.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635347, "decimalLat": -34.419766 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.400438, "decimalLat": -31.985428 }, "geometry": { "type": "Point", "coordinates": [ 152.4, -31.985 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785746, "decimalLat": -34.189867 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -34.19 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.859604, "decimalLat": -31.101405 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -31.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.498434, "decimalLat": -36.09905 }, "geometry": { "type": "Point", "coordinates": [ 149.498, -36.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52161, "decimalLat": -34.465735 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598298, "decimalLat": -34.412769 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527498, "decimalLat": -34.469469 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627108, "decimalLat": -34.386798 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.650275, "decimalLat": -32.690809 }, "geometry": { "type": "Point", "coordinates": [ 151.65, -32.691 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103216, "decimalLat": -29.489279 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.955971, "decimalLat": -32.648007 }, "geometry": { "type": "Point", "coordinates": [ 151.956, -32.648 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601787, "decimalLat": -34.412485 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.591191, "decimalLat": -28.638053 }, "geometry": { "type": "Point", "coordinates": [ 153.591, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.673181, "decimalLat": -35.048723 }, "geometry": { "type": "Point", "coordinates": [ 150.673, -35.049 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604213, "decimalLat": -34.438002 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636928, "decimalLat": -34.485681 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787695, "decimalLat": -33.703492 }, "geometry": { "type": "Point", "coordinates": [ 150.788, -33.703 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881609, "decimalLat": -31.447602 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615956, "decimalLat": -34.43641 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.286418, "decimalLat": -29.025463 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -29.025 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.956571, "decimalLat": -36.590303 }, "geometry": { "type": "Point", "coordinates": [ 149.957, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.968804, "decimalLat": -32.428513 }, "geometry": { "type": "Point", "coordinates": [ 151.969, -32.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637212, "decimalLat": -34.423877 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.847435, "decimalLat": -32.726537 }, "geometry": { "type": "Point", "coordinates": [ 151.847, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.102546, "decimalLat": -33.777258 }, "geometry": { "type": "Point", "coordinates": [ 150.103, -33.777 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513194, "decimalLat": -34.445992 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10115, "decimalLat": -29.489951 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.840449, "decimalLat": -34.078012 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.078 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520291, "decimalLat": -34.447407 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.559384, "decimalLat": -33.531531 }, "geometry": { "type": "Point", "coordinates": [ 149.559, -33.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513806, "decimalLat": -34.446275 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103901, "decimalLat": -32.759638 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.76 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.237597, "decimalLat": -33.172732 }, "geometry": { "type": "Point", "coordinates": [ 151.238, -33.173 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62143, "decimalLat": -34.397976 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626938, "decimalLat": -34.421298 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099302, "decimalLat": -29.490877 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632657, "decimalLat": -34.392883 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.733212, "decimalLat": -32.721365 }, "geometry": { "type": "Point", "coordinates": [ 151.733, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.70833, "decimalLat": -30.398845 }, "geometry": { "type": "Point", "coordinates": [ 151.708, -30.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623005, "decimalLat": -34.385763 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518324, "decimalLat": -34.451379 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.044944, "decimalLat": -35.134333 }, "geometry": { "type": "Point", "coordinates": [ 150.045, -35.134 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280046, "decimalLat": -28.818329 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522435, "decimalLat": -34.465833 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630784, "decimalLat": -34.420714 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514308, "decimalLat": -34.447331 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605555, "decimalLat": -34.437884 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095239, "decimalLat": -29.483502 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527609, "decimalLat": -34.436748 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109766, "decimalLat": -29.490194 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.046222, "decimalLat": -30.896823 }, "geometry": { "type": "Point", "coordinates": [ 153.046, -30.897 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066564, "decimalLat": -32.713391 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514236, "decimalLat": -34.447212 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.876663, "decimalLat": -31.46373 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521618, "decimalLat": -34.465843 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.348793, "decimalLat": -28.904888 }, "geometry": { "type": "Point", "coordinates": [ 153.349, -28.905 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.793683, "decimalLat": -34.218206 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.218 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.526358, "decimalLat": -28.685405 }, "geometry": { "type": "Point", "coordinates": [ 153.526, -28.685 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.490166 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92659, "decimalLat": -31.459778 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613559, "decimalLat": -34.431946 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07216, "decimalLat": -28.58481 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -28.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637823, "decimalLat": -34.485626 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835694, "decimalLat": -34.069805 }, "geometry": { "type": "Point", "coordinates": [ 150.836, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790694, "decimalLat": -34.147778 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.148 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644198, "decimalLat": -34.397064 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.873769, "decimalLat": -34.035121 }, "geometry": { "type": "Point", "coordinates": [ 150.874, -34.035 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924557, "decimalLat": -31.44445 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941399, "decimalLat": -36.632151 }, "geometry": { "type": "Point", "coordinates": [ 149.941, -36.632 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617769, "decimalLat": -34.440016 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.01112, "decimalLat": -36.547428 }, "geometry": { "type": "Point", "coordinates": [ 150.011, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.271235, "decimalLat": -29.012361 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -29.012 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629899, "decimalLat": -34.395417 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516345, "decimalLat": -34.439538 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321727, "decimalLat": -28.894283 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.894 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513794, "decimalLat": -34.44632 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927516, "decimalLat": -31.457812 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109712, "decimalLat": -29.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.506293, "decimalLat": -28.238698 }, "geometry": { "type": "Point", "coordinates": [ 153.506, -28.239 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.157008, "decimalLat": -33.097989 }, "geometry": { "type": "Point", "coordinates": [ 151.157, -33.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604794, "decimalLat": -34.439753 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9088, "decimalLat": -30.17185 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -30.172 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.037231, "decimalLat": -32.731218 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.931186, "decimalLat": -31.47065 }, "geometry": { "type": "Point", "coordinates": [ 152.931, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.674086, "decimalLat": -33.546935 }, "geometry": { "type": "Point", "coordinates": [ 150.674, -33.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621507, "decimalLat": -34.397968 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930099, "decimalLat": -31.461622 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298463, "decimalLat": -28.81848 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.014607, "decimalLat": -32.666903 }, "geometry": { "type": "Point", "coordinates": [ 152.015, -32.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.074143, "decimalLat": -32.725131 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.62882, "decimalLat": -28.637878 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108199, "decimalLat": -29.490259 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618107, "decimalLat": -34.429645 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643233, "decimalLat": -34.395414 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86634, "decimalLat": -29.692017 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -29.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638607, "decimalLat": -34.490645 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615175, "decimalLat": -34.431364 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.067923, "decimalLat": -28.58182 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -28.582 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.182816, "decimalLat": -31.961599 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -31.962 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519212, "decimalLat": -34.459971 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785422, "decimalLat": -33.713891 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315491, "decimalLat": -28.819132 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60333, "decimalLat": -34.436929 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838333, "decimalLat": -34.09214 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90422, "decimalLat": -31.439189 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104133, "decimalLat": -29.485165 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629025, "decimalLat": -34.395148 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.314657, "decimalLat": -31.924726 }, "geometry": { "type": "Point", "coordinates": [ 152.315, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110951, "decimalLat": -29.487523 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894005, "decimalLat": -30.551316 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -30.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627777, "decimalLat": -34.397378 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.50487, "decimalLat": -32.069784 }, "geometry": { "type": "Point", "coordinates": [ 152.505, -32.07 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.32161, "decimalLat": -36.183184 }, "geometry": { "type": "Point", "coordinates": [ 149.322, -36.183 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.461447, "decimalLat": -28.919346 }, "geometry": { "type": "Point", "coordinates": [ 153.461, -28.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899776, "decimalLat": -29.630491 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.63 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102679, "decimalLat": -29.488144 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.671292, "decimalLat": -32.664107 }, "geometry": { "type": "Point", "coordinates": [ 151.671, -32.664 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784866, "decimalLat": -33.716385 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.591274, "decimalLat": -34.205152 }, "geometry": { "type": "Point", "coordinates": [ 150.591, -34.205 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553525, "decimalLat": -28.640579 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.641 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902595, "decimalLat": -31.441108 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605501, "decimalLat": -34.437486 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514333, "decimalLat": -34.446511 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.401928, "decimalLat": -31.850361 }, "geometry": { "type": "Point", "coordinates": [ 152.402, -31.85 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10298, "decimalLat": -29.487037 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3033, "decimalLat": -28.821668 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597699, "decimalLat": -34.450414 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.12561, "decimalLat": -30.100682 }, "geometry": { "type": "Point", "coordinates": [ 152.126, -30.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.777581, "decimalLat": -34.199629 }, "geometry": { "type": "Point", "coordinates": [ 150.778, -34.2 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.441702, "decimalLat": -28.983022 }, "geometry": { "type": "Point", "coordinates": [ 153.442, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795265, "decimalLat": -31.64814 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -31.648 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520388, "decimalLat": -34.454081 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894704, "decimalLat": -31.460778 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624812, "decimalLat": -34.399547 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108221, "decimalLat": -29.490231 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.80593, "decimalLat": -32.682192 }, "geometry": { "type": "Point", "coordinates": [ 151.806, -32.682 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108156, "decimalLat": -29.490371 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.527885, "decimalLat": -30.518805 }, "geometry": { "type": "Point", "coordinates": [ 151.528, -30.519 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623202, "decimalLat": -34.383802 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786159, "decimalLat": -33.706008 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905454, "decimalLat": -31.437546 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609511, "decimalLat": -34.418948 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.563856, "decimalLat": -34.500349 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -34.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603535, "decimalLat": -34.427476 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926095, "decimalLat": -31.476858 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516193, "decimalLat": -34.446882 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616992, "decimalLat": -34.433645 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601412, "decimalLat": -34.426759 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615678, "decimalLat": -34.431248 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51811, "decimalLat": -34.44794 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604159, "decimalLat": -34.438001 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627957, "decimalLat": -34.390998 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.404093, "decimalLat": -28.913129 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.913 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793051, "decimalLat": -30.21858 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -30.219 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81287, "decimalLat": -31.576523 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -31.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785134, "decimalLat": -33.713566 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626708, "decimalLat": -34.421374 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924801, "decimalLat": -29.735136 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -29.735 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516339, "decimalLat": -34.447471 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.208094, "decimalLat": -28.900565 }, "geometry": { "type": "Point", "coordinates": [ 153.208, -28.901 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.756278, "decimalLat": -34.3205 }, "geometry": { "type": "Point", "coordinates": [ 150.756, -34.32 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.83709, "decimalLat": -31.59299 }, "geometry": { "type": "Point", "coordinates": [ 152.837, -31.593 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645189, "decimalLat": -34.398976 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.02349, "decimalLat": -34.035977 }, "geometry": { "type": "Point", "coordinates": [ 151.023, -34.036 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518322, "decimalLat": -34.451424 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519033, "decimalLat": -34.442781 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1094, "decimalLat": -30.29861 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.041806, "decimalLat": -32.312586 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -32.313 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557446, "decimalLat": -28.396942 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900839, "decimalLat": -31.474068 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342482, "decimalLat": -28.805797 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513072, "decimalLat": -34.44717 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.795133, "decimalLat": -34.143508 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.308938, "decimalLat": -33.309603 }, "geometry": { "type": "Point", "coordinates": [ 150.309, -33.31 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.593647, "decimalLat": -28.711535 }, "geometry": { "type": "Point", "coordinates": [ 153.594, -28.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.940238, "decimalLat": -36.651821 }, "geometry": { "type": "Point", "coordinates": [ 149.94, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928804, "decimalLat": -31.455937 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558228, "decimalLat": -28.394156 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27744, "decimalLat": -28.940107 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.480034, "decimalLat": -31.998586 }, "geometry": { "type": "Point", "coordinates": [ 152.48, -31.999 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108113, "decimalLat": -29.490255 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324396, "decimalLat": -28.834072 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094793, "decimalLat": -30.299239 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.971233, "decimalLat": -34.12137 }, "geometry": { "type": "Point", "coordinates": [ 150.971, -34.121 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.056839, "decimalLat": -33.765926 }, "geometry": { "type": "Point", "coordinates": [ 150.057, -33.766 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630817, "decimalLat": -34.420715 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30278, "decimalLat": -28.817457 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638539, "decimalLat": -34.489553 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617115, "decimalLat": -34.433539 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520357, "decimalLat": -34.447751 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.978394, "decimalLat": -30.419761 }, "geometry": { "type": "Point", "coordinates": [ 152.978, -30.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782872, "decimalLat": -33.719291 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.590651, "decimalLat": -28.688792 }, "geometry": { "type": "Point", "coordinates": [ 153.591, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189959, "decimalLat": -32.223426 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520413, "decimalLat": -34.46572 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.804942, "decimalLat": -34.111115 }, "geometry": { "type": "Point", "coordinates": [ 150.805, -34.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615444, "decimalLat": -34.435661 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.057545, "decimalLat": -33.763571 }, "geometry": { "type": "Point", "coordinates": [ 150.058, -33.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597668, "decimalLat": -34.418436 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615467, "decimalLat": -34.437933 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.452439, "decimalLat": -28.518941 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.519 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638383, "decimalLat": -34.403137 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.403 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110039, "decimalLat": -29.490259 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910635, "decimalLat": -31.488169 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.824495, "decimalLat": -34.15623 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.156 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514341, "decimalLat": -34.444744 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517029, "decimalLat": -34.448784 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624151, "decimalLat": -34.388697 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639232, "decimalLat": -34.39265 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628102, "decimalLat": -34.389721 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797861, "decimalLat": -31.145805 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063754, "decimalLat": -32.706607 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523378, "decimalLat": -34.454159 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636854, "decimalLat": -34.485238 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919799, "decimalLat": -31.482764 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655621, "decimalLat": -34.458499 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626999, "decimalLat": -34.421082 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110515, "decimalLat": -29.490064 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.648892, "decimalLat": -34.454304 }, "geometry": { "type": "Point", "coordinates": [ 150.649, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515824, "decimalLat": -34.450914 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29881, "decimalLat": -28.889997 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619782, "decimalLat": -34.439225 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603014, "decimalLat": -34.42551 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614992, "decimalLat": -34.431289 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.11736, "decimalLat": -32.76438 }, "geometry": { "type": "Point", "coordinates": [ 152.117, -32.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622433, "decimalLat": -34.384048 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062822, "decimalLat": -32.701038 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.701 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52048, "decimalLat": -34.447285 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.866027, "decimalLat": -34.060984 }, "geometry": { "type": "Point", "coordinates": [ 150.866, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.743252, "decimalLat": -31.257275 }, "geometry": { "type": "Point", "coordinates": [ 152.743, -31.257 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885035, "decimalLat": -31.441169 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787878, "decimalLat": -33.70335 }, "geometry": { "type": "Point", "coordinates": [ 150.788, -33.703 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629832, "decimalLat": -34.390061 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.093798, "decimalLat": -31.403015 }, "geometry": { "type": "Point", "coordinates": [ 152.094, -31.403 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606517, "decimalLat": -34.433918 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510079, "decimalLat": -28.810373 }, "geometry": { "type": "Point", "coordinates": [ 153.51, -28.81 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517837, "decimalLat": -34.439884 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.09001, "decimalLat": -32.733047 }, "geometry": { "type": "Point", "coordinates": [ 152.09, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893735, "decimalLat": -31.448292 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.996801, "decimalLat": -33.994363 }, "geometry": { "type": "Point", "coordinates": [ 150.997, -33.994 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905432, "decimalLat": -31.437735 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.521265, "decimalLat": -33.54555 }, "geometry": { "type": "Point", "coordinates": [ 149.521, -33.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63728, "decimalLat": -34.423788 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921047, "decimalLat": -31.481587 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.871508, "decimalLat": -31.28482 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.285 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630421, "decimalLat": -34.42086 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.943636, "decimalLat": -32.77124 }, "geometry": { "type": "Point", "coordinates": [ 151.944, -32.771 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913506, "decimalLat": -31.455223 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319712, "decimalLat": -28.955977 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.956 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873213, "decimalLat": -31.457905 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518052, "decimalLat": -34.447704 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639131, "decimalLat": -34.492909 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920871, "decimalLat": -31.481563 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941399, "decimalLat": -36.632151 }, "geometry": { "type": "Point", "coordinates": [ 149.941, -36.632 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108108, "decimalLat": -29.490283 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110302, "decimalLat": -29.490301 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909815, "decimalLat": -31.467296 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.354441, "decimalLat": -28.891207 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.874732, "decimalLat": -29.661227 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -29.661 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886806, "decimalLat": -31.44302 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.699727, "decimalLat": -30.290446 }, "geometry": { "type": "Point", "coordinates": [ 152.7, -30.29 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519911, "decimalLat": -34.45289 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.270246, "decimalLat": -32.484725 }, "geometry": { "type": "Point", "coordinates": [ 152.27, -32.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.455295, "decimalLat": -28.651026 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627368, "decimalLat": -34.420314 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.521789, "decimalLat": -28.683592 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.14999, "decimalLat": -28.556389 }, "geometry": { "type": "Point", "coordinates": [ 153.15, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907072, "decimalLat": -31.444171 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103826, "decimalLat": -29.485159 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809, "decimalLat": -34.20866 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101209, "decimalLat": -29.490044 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605388, "decimalLat": -34.42772 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900359, "decimalLat": -31.474155 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921463, "decimalLat": -31.452173 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631443, "decimalLat": -34.386946 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96634, "decimalLat": -36.680336 }, "geometry": { "type": "Point", "coordinates": [ 149.966, -36.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516526, "decimalLat": -34.447773 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518658, "decimalLat": -34.447816 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519519, "decimalLat": -34.456578 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626343, "decimalLat": -34.421169 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93813, "decimalLat": -30.4053 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -30.405 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524297, "decimalLat": -34.46212 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.855475, "decimalLat": -33.660153 }, "geometry": { "type": "Point", "coordinates": [ 149.855, -33.66 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103291, "decimalLat": -29.487565 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7915, "decimalLat": -34.218972 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.219 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.186783, "decimalLat": -28.888915 }, "geometry": { "type": "Point", "coordinates": [ 153.187, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.580079, "decimalLat": -34.766634 }, "geometry": { "type": "Point", "coordinates": [ 146.58, -34.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519877, "decimalLat": -34.452583 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915585, "decimalLat": -31.445958 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103623, "decimalLat": -29.485833 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524022, "decimalLat": -34.466271 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82372, "decimalLat": -29.810856 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92546, "decimalLat": -31.47324 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293074, "decimalLat": -28.86465 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.682, "decimalLat": -30.417 }, "geometry": { "type": "Point", "coordinates": [ 151.682, -30.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535295, "decimalLat": -34.463433 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.041096, "decimalLat": -32.737608 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872978, "decimalLat": -29.664828 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -29.665 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.84497, "decimalLat": -29.834378 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065878, "decimalLat": -32.707495 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616671, "decimalLat": -34.433449 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900435, "decimalLat": -31.45678 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824566, "decimalLat": -29.50457 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37346, "decimalLat": -31.914295 }, "geometry": { "type": "Point", "coordinates": [ 152.373, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302888, "decimalLat": -28.84369 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782807, "decimalLat": -31.631326 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609127, "decimalLat": -34.420608 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.964644, "decimalLat": -31.202931 }, "geometry": { "type": "Point", "coordinates": [ 152.965, -31.203 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104562, "decimalLat": -29.477333 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396186, "decimalLat": -29.095797 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -29.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.991128, "decimalLat": -28.440359 }, "geometry": { "type": "Point", "coordinates": [ 152.991, -28.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89266, "decimalLat": -33.99196 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.992 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523256, "decimalLat": -34.450929 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633757, "decimalLat": -34.418301 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786187, "decimalLat": -33.706016 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517583, "decimalLat": -34.447713 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604747, "decimalLat": -34.427311 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522342, "decimalLat": -34.46529 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.089624, "decimalLat": -28.524436 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -28.524 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.990198, "decimalLat": -28.623747 }, "geometry": { "type": "Point", "coordinates": [ 152.99, -28.624 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.988852, "decimalLat": -33.978217 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -33.978 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104138, "decimalLat": -29.48531 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610982, "decimalLat": -34.452505 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06372, "decimalLat": -32.706544 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60516, "decimalLat": -34.439129 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786296, "decimalLat": -33.705961 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.993768, "decimalLat": -30.411614 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -30.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632816, "decimalLat": -34.418878 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913797, "decimalLat": -31.478312 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10122, "decimalLat": -29.490091 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104208, "decimalLat": -29.479458 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.027295, "decimalLat": -29.665515 }, "geometry": { "type": "Point", "coordinates": [ 151.027, -29.666 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.844879, "decimalLat": -29.834312 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.737838, "decimalLat": -32.573656 }, "geometry": { "type": "Point", "coordinates": [ 151.738, -32.574 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096045, "decimalLat": -29.484657 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.068987, "decimalLat": -28.810553 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -28.811 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517241, "decimalLat": -34.446408 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017126, "decimalLat": -30.374914 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -30.375 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925438, "decimalLat": -31.458684 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519911, "decimalLat": -34.452529 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091736, "decimalLat": -29.487892 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639175, "decimalLat": -34.39273 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.150532, "decimalLat": -32.728197 }, "geometry": { "type": "Point", "coordinates": [ 152.151, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108194, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.537072, "decimalLat": -28.222185 }, "geometry": { "type": "Point", "coordinates": [ 153.537, -28.222 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493043, "decimalLat": -28.673033 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -28.673 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609102, "decimalLat": -34.420716 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06523, "decimalLat": -32.710459 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285454, "decimalLat": -28.820487 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.028546, "decimalLat": -35.081492 }, "geometry": { "type": "Point", "coordinates": [ 150.029, -35.081 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624512, "decimalLat": -34.385901 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639177, "decimalLat": -34.392685 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376844, "decimalLat": -28.651078 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65549, "decimalLat": -33.52261 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -33.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520703, "decimalLat": -34.465131 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.204977, "decimalLat": -28.841908 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091741, "decimalLat": -29.486972 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096017, "decimalLat": -29.49109 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60791, "decimalLat": -34.42209 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016461, "decimalLat": -36.575848 }, "geometry": { "type": "Point", "coordinates": [ 150.016, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104149, "decimalLat": -29.485202 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603009, "decimalLat": -34.417675 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.490213 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016461, "decimalLat": -36.575848 }, "geometry": { "type": "Point", "coordinates": [ 150.016, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618391, "decimalLat": -34.439947 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614034, "decimalLat": -34.433605 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597903, "decimalLat": -34.414402 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597227, "decimalLat": -34.413334 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632602, "decimalLat": -34.418351 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.425915, "decimalLat": -28.621616 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.622 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302397, "decimalLat": -28.820041 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784145, "decimalLat": -33.717699 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08478, "decimalLat": -32.729647 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.446567, "decimalLat": -28.629 }, "geometry": { "type": "Point", "coordinates": [ 153.447, -28.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603043, "decimalLat": -34.417649 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631475, "decimalLat": -34.386955 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.734409, "decimalLat": -30.867392 }, "geometry": { "type": "Point", "coordinates": [ 152.734, -30.867 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527105, "decimalLat": -34.469497 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316981, "decimalLat": -28.949626 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629764, "decimalLat": -34.42101 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.528744, "decimalLat": -28.402583 }, "geometry": { "type": "Point", "coordinates": [ 153.529, -28.403 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.426896, "decimalLat": -28.63165 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515624, "decimalLat": -34.459501 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9023, "decimalLat": -31.441777 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.192734, "decimalLat": -28.668946 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515975, "decimalLat": -34.458661 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.04278, "decimalLat": -34.02432 }, "geometry": { "type": "Point", "coordinates": [ 151.043, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520739, "decimalLat": -34.465375 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103752, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62315, "decimalLat": -34.397558 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516018, "decimalLat": -34.444715 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062583, "decimalLat": -32.709749 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103924, "decimalLat": -29.489596 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.556672, "decimalLat": -32.968863 }, "geometry": { "type": "Point", "coordinates": [ 151.557, -32.969 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.824297, "decimalLat": -34.14907 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.149 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920984, "decimalLat": -31.447639 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614016, "decimalLat": -34.433064 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628968, "decimalLat": -34.389476 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278824, "decimalLat": -28.874355 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916147, "decimalLat": -31.448746 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788897, "decimalLat": -30.173921 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615479, "decimalLat": -34.435589 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 146.590933, "decimalLat": -34.769805 }, "geometry": { "type": "Point", "coordinates": [ 146.591, -34.77 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597651, "decimalLat": -34.410268 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095309, "decimalLat": -29.483932 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.115857, "decimalLat": -28.561624 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -28.562 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1621, "decimalLat": -28.850549 }, "geometry": { "type": "Point", "coordinates": [ 153.162, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604276, "decimalLat": -34.438102 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655913, "decimalLat": -34.456242 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52392, "decimalLat": -34.448119 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624012, "decimalLat": -34.388596 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608461, "decimalLat": -34.4352 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899322, "decimalLat": -31.4662 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383795, "decimalLat": -31.929085 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515396, "decimalLat": -34.446992 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293198, "decimalLat": -28.864647 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342482, "decimalLat": -28.805797 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616305, "decimalLat": -34.428718 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785381, "decimalLat": -33.713244 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342482, "decimalLat": -28.805797 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.033792, "decimalLat": -32.73815 }, "geometry": { "type": "Point", "coordinates": [ 152.034, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.413693, "decimalLat": -28.639313 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.639 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.95885, "decimalLat": -30.641952 }, "geometry": { "type": "Point", "coordinates": [ 152.959, -30.642 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.769527, "decimalLat": -32.456803 }, "geometry": { "type": "Point", "coordinates": [ 151.77, -32.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64026, "decimalLat": -34.398656 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.405095, "decimalLat": -28.972767 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.973 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889585, "decimalLat": -30.467908 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -30.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631971, "decimalLat": -34.418357 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.840647, "decimalLat": -34.078313 }, "geometry": { "type": "Point", "coordinates": [ 150.841, -34.078 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640898, "decimalLat": -34.42008 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.850888, "decimalLat": -34.435494 }, "geometry": { "type": "Point", "coordinates": [ 150.851, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8995, "decimalLat": -31.145777 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606945, "decimalLat": -34.454382 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108113, "decimalLat": -29.490586 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.123949, "decimalLat": -30.296029 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.652436, "decimalLat": -31.521912 }, "geometry": { "type": "Point", "coordinates": [ 151.652, -31.522 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520525, "decimalLat": -34.453849 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822925, "decimalLat": -34.150224 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637282, "decimalLat": -34.423689 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107427, "decimalLat": -29.490124 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627384, "decimalLat": -34.390131 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627391, "decimalLat": -34.420279 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603702, "decimalLat": -34.4403 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604274, "decimalLat": -34.43931 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516116, "decimalLat": -34.450225 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926752, "decimalLat": -31.45465 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518251, "decimalLat": -34.447961 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599086, "decimalLat": -34.412982 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515716, "decimalLat": -34.450866 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563915, "decimalLat": -28.374668 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.375 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798305, "decimalLat": -31.121738 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.122 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627407, "decimalLat": -34.386597 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109986, "decimalLat": -29.492463 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.448574, "decimalLat": -28.632125 }, "geometry": { "type": "Point", "coordinates": [ 153.449, -28.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300422, "decimalLat": -31.948252 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.1299, "decimalLat": -35.069995 }, "geometry": { "type": "Point", "coordinates": [ 150.13, -35.07 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604212, "decimalLat": -34.426606 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788615, "decimalLat": -31.640304 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.328317, "decimalLat": -29.03086 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.400065, "decimalLat": -31.930225 }, "geometry": { "type": "Point", "coordinates": [ 152.4, -31.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63971, "decimalLat": -34.393452 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.466019, "decimalLat": -28.924822 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919351, "decimalLat": -31.44523 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616577, "decimalLat": -34.435989 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108215, "decimalLat": -29.490241 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516067, "decimalLat": -34.448214 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301753, "decimalLat": -28.667825 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.668 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.192812, "decimalLat": -29.437147 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -29.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.807397, "decimalLat": -29.812458 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -29.812 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608645, "decimalLat": -34.435979 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.053386, "decimalLat": -28.661655 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641102, "decimalLat": -34.494831 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.495 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782986, "decimalLat": -33.716153 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655871, "decimalLat": -34.456178 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910423, "decimalLat": -31.4322 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610149, "decimalLat": -34.419095 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659166, "decimalLat": -34.459009 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104158, "decimalLat": -29.478606 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.209622, "decimalLat": -28.928136 }, "geometry": { "type": "Point", "coordinates": [ 153.21, -28.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521586, "decimalLat": -34.465816 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528933, "decimalLat": -34.471383 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.05985, "decimalLat": -28.44262 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -28.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.089219, "decimalLat": -29.484693 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.550491, "decimalLat": -28.583656 }, "geometry": { "type": "Point", "coordinates": [ 153.55, -28.584 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.70521, "decimalLat": -32.630479 }, "geometry": { "type": "Point", "coordinates": [ 151.705, -32.63 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428712, "decimalLat": -29.016259 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11064, "decimalLat": -29.489937 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64287, "decimalLat": -34.394767 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.206273, "decimalLat": -28.839441 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -28.839 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.087339, "decimalLat": -30.33947 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -30.339 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.980514, "decimalLat": -36.435679 }, "geometry": { "type": "Point", "coordinates": [ 149.981, -36.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335722, "decimalLat": -28.816947 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514451, "decimalLat": -34.447271 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31904, "decimalLat": -28.93375 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.243684, "decimalLat": -30.991875 }, "geometry": { "type": "Point", "coordinates": [ 150.244, -30.992 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784268, "decimalLat": -31.3706 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.371 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626523, "decimalLat": -34.38557 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607896, "decimalLat": -34.430591 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51961, "decimalLat": -34.435475 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51272, "decimalLat": -34.55135 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101789, "decimalLat": -29.48982 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521197, "decimalLat": -34.454331 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.431324, "decimalLat": -29.016415 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913209, "decimalLat": -31.458348 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888038, "decimalLat": -31.44389 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.139986, "decimalLat": -32.730578 }, "geometry": { "type": "Point", "coordinates": [ 152.14, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784001, "decimalLat": -34.209846 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -34.21 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.801772, "decimalLat": -31.602768 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -31.603 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529755, "decimalLat": -34.440147 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277839, "decimalLat": -28.679011 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615556, "decimalLat": -34.435537 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403266, "decimalLat": -31.925198 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103924, "decimalLat": -29.489535 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516374, "decimalLat": -34.44996 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091741, "decimalLat": -29.487915 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.130051, "decimalLat": -28.512102 }, "geometry": { "type": "Point", "coordinates": [ 153.13, -28.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892385, "decimalLat": -31.477808 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595198, "decimalLat": -34.423373 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10821, "decimalLat": -29.490236 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103677, "decimalLat": -29.485711 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788667, "decimalLat": -31.637379 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559875, "decimalLat": -28.650053 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355785, "decimalLat": -31.85809 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636289, "decimalLat": -34.421866 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867959, "decimalLat": -29.667187 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314434, "decimalLat": -28.839794 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519445, "decimalLat": -34.435544 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610378, "decimalLat": -34.420227 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611895, "decimalLat": -34.431895 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886569, "decimalLat": -29.635356 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -29.635 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318368, "decimalLat": -28.82437 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908706, "decimalLat": -31.443648 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103951, "decimalLat": -29.489563 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604659, "decimalLat": -34.424686 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.808721, "decimalLat": -31.500172 }, "geometry": { "type": "Point", "coordinates": [ 152.809, -31.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.543844, "decimalLat": -28.679772 }, "geometry": { "type": "Point", "coordinates": [ 153.544, -28.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639219, "decimalLat": -34.39274 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619219, "decimalLat": -34.436834 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.277428, "decimalLat": -28.59695 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.597 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064506, "decimalLat": -32.708972 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604726, "decimalLat": -34.43757 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916822, "decimalLat": -31.450375 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926823, "decimalLat": -31.459713 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616593, "decimalLat": -34.435837 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62541, "decimalLat": -34.389939 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10195, "decimalLat": -29.488742 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.356186, "decimalLat": -32.180517 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -32.181 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.25443, "decimalLat": -28.902453 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -28.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628969, "decimalLat": -34.395976 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.563856, "decimalLat": -34.5 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -34.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513809, "decimalLat": -34.447285 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808174, "decimalLat": -34.098204 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104128, "decimalLat": -29.483778 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.115727, "decimalLat": -35.061219 }, "geometry": { "type": "Point", "coordinates": [ 150.116, -35.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615736, "decimalLat": -34.449514 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.665994, "decimalLat": -33.571064 }, "geometry": { "type": "Point", "coordinates": [ 150.666, -33.571 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926839, "decimalLat": -31.454648 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.141399, "decimalLat": -33.109066 }, "geometry": { "type": "Point", "coordinates": [ 151.141, -33.109 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.386934, "decimalLat": -31.876653 }, "geometry": { "type": "Point", "coordinates": [ 152.387, -31.877 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.126308, "decimalLat": -31.413327 }, "geometry": { "type": "Point", "coordinates": [ 152.126, -31.413 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523985, "decimalLat": -34.470462 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.347684, "decimalLat": -28.812094 }, "geometry": { "type": "Point", "coordinates": [ 153.348, -28.812 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61542, "decimalLat": -34.440736 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.530618, "decimalLat": -28.681056 }, "geometry": { "type": "Point", "coordinates": [ 153.531, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314434, "decimalLat": -28.839794 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.310312, "decimalLat": -28.824722 }, "geometry": { "type": "Point", "coordinates": [ 153.31, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.155768, "decimalLat": -28.579383 }, "geometry": { "type": "Point", "coordinates": [ 153.156, -28.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.180893, "decimalLat": -30.096213 }, "geometry": { "type": "Point", "coordinates": [ 153.181, -30.096 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516077, "decimalLat": -34.448223 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.64852, "decimalLat": -32.69442 }, "geometry": { "type": "Point", "coordinates": [ 151.649, -32.694 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.203368, "decimalLat": -32.229858 }, "geometry": { "type": "Point", "coordinates": [ 152.203, -32.23 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513826, "decimalLat": -34.446338 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108049, "decimalLat": -29.490367 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103366, "decimalLat": -29.489858 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91044, "decimalLat": -31.469486 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636211, "decimalLat": -34.486019 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794723, "decimalLat": -34.216292 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.216 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.805731, "decimalLat": -31.675812 }, "geometry": { "type": "Point", "coordinates": [ 152.806, -31.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104047, "decimalLat": -29.4853 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.089896, "decimalLat": -32.728381 }, "geometry": { "type": "Point", "coordinates": [ 152.09, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108273, "decimalLat": -29.49032 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520292, "decimalLat": -34.465771 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561351, "decimalLat": -28.385497 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.380773, "decimalLat": -31.922592 }, "geometry": { "type": "Point", "coordinates": [ 152.381, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.499008, "decimalLat": -28.78141 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.781 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604281, "decimalLat": -34.437904 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894238, "decimalLat": -31.456199 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928242, "decimalLat": -31.474888 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.286418, "decimalLat": -29.025463 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -29.025 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657078, "decimalLat": -34.454272 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626921, "decimalLat": -34.385695 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.022421, "decimalLat": -34.038905 }, "geometry": { "type": "Point", "coordinates": [ 151.022, -34.039 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603138, "decimalLat": -34.434897 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883722, "decimalLat": -31.468453 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08026, "decimalLat": -32.72794 }, "geometry": { "type": "Point", "coordinates": [ 152.08, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.263454, "decimalLat": -35.740656 }, "geometry": { "type": "Point", "coordinates": [ 149.263, -35.741 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618154, "decimalLat": -34.435263 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.838167, "decimalLat": -31.544176 }, "geometry": { "type": "Point", "coordinates": [ 152.838, -31.544 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.887504, "decimalLat": -32.07277 }, "geometry": { "type": "Point", "coordinates": [ 151.888, -32.073 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897911, "decimalLat": -31.466536 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.979238, "decimalLat": -36.570187 }, "geometry": { "type": "Point", "coordinates": [ 149.979, -36.57 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092068, "decimalLat": -29.488037 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.530127, "decimalLat": -34.745239 }, "geometry": { "type": "Point", "coordinates": [ 146.53, -34.745 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062595, "decimalLat": -32.700714 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.701 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.532467, "decimalLat": -31.529299 }, "geometry": { "type": "Point", "coordinates": [ 152.532, -31.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.819336, "decimalLat": -34.098427 }, "geometry": { "type": "Point", "coordinates": [ 150.819, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.034077, "decimalLat": -32.763162 }, "geometry": { "type": "Point", "coordinates": [ 152.034, -32.763 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784622, "decimalLat": -33.716304 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.607683, "decimalLat": -32.570532 }, "geometry": { "type": "Point", "coordinates": [ 149.608, -32.571 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.624949, "decimalLat": -35.955867 }, "geometry": { "type": "Point", "coordinates": [ 146.625, -35.956 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.91114, "decimalLat": -32.650013 }, "geometry": { "type": "Point", "coordinates": [ 151.911, -32.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639936, "decimalLat": -34.398578 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632658, "decimalLat": -34.418316 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62738, "decimalLat": -34.420278 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.549446, "decimalLat": -28.589579 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.632574, "decimalLat": -31.870324 }, "geometry": { "type": "Point", "coordinates": [ 152.633, -31.87 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002156, "decimalLat": -29.211324 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -29.211 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615238, "decimalLat": -34.436414 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104181, "decimalLat": -29.485188 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108162, "decimalLat": -29.490558 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381829, "decimalLat": -31.914264 }, "geometry": { "type": "Point", "coordinates": [ 152.382, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627422, "decimalLat": -34.421505 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103886, "decimalLat": -29.489577 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.48166, "decimalLat": -28.625868 }, "geometry": { "type": "Point", "coordinates": [ 153.482, -28.626 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272536, "decimalLat": -28.931665 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606992, "decimalLat": -34.437488 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614866, "decimalLat": -34.431106 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523891, "decimalLat": -34.46405 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929231, "decimalLat": -31.461909 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629059, "decimalLat": -34.395122 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.03851, "decimalLat": -29.079372 }, "geometry": { "type": "Point", "coordinates": [ 153.039, -29.079 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521686, "decimalLat": -34.466133 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.087713, "decimalLat": -30.255052 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -30.255 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072592, "decimalLat": -32.725218 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518292, "decimalLat": -34.451351 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607912, "decimalLat": -34.430023 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616977, "decimalLat": -34.433789 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094347, "decimalLat": -30.30034 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -30.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886332, "decimalLat": -31.280144 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -31.28 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105184, "decimalLat": -29.489699 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659195, "decimalLat": -34.459118 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605153, "decimalLat": -34.437858 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9083, "decimalLat": -31.4358 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92304, "decimalLat": -31.4359 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.089901, "decimalLat": -29.48056 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519301, "decimalLat": -34.448126 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523088, "decimalLat": -34.46618 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794025, "decimalLat": -31.638566 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51617, "decimalLat": -34.449514 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899978, "decimalLat": -31.453169 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879841, "decimalLat": -31.448971 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.76181, "decimalLat": -34.169865 }, "geometry": { "type": "Point", "coordinates": [ 150.762, -34.17 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.49018 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92901, "decimalLat": -31.459605 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630931, "decimalLat": -34.388495 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928873, "decimalLat": -31.460469 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.17621, "decimalLat": -31.09678 }, "geometry": { "type": "Point", "coordinates": [ 150.176, -31.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.838392, "decimalLat": -31.59502 }, "geometry": { "type": "Point", "coordinates": [ 152.838, -31.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603423, "decimalLat": -34.427582 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.684441, "decimalLat": -34.356036 }, "geometry": { "type": "Point", "coordinates": [ 150.684, -34.356 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785948, "decimalLat": -33.714314 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638978, "decimalLat": -34.49177 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631289, "decimalLat": -34.388142 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514524, "decimalLat": -34.447398 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.428944, "decimalLat": -28.626509 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.415221, "decimalLat": -28.672232 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.398789, "decimalLat": -28.258738 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824357, "decimalLat": -29.505009 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.505 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923379, "decimalLat": -31.459753 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.908967, "decimalLat": -29.713294 }, "geometry": { "type": "Point", "coordinates": [ 150.909, -29.713 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902506, "decimalLat": -31.44542 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.059594, "decimalLat": -33.779405 }, "geometry": { "type": "Point", "coordinates": [ 150.06, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602449, "decimalLat": -34.419792 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.083101, "decimalLat": -29.730627 }, "geometry": { "type": "Point", "coordinates": [ 151.083, -29.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606167, "decimalLat": -34.432072 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.880598, "decimalLat": -31.920475 }, "geometry": { "type": "Point", "coordinates": [ 151.881, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.369052, "decimalLat": -28.953149 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.953 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51606, "decimalLat": -34.437979 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.369052, "decimalLat": -28.953149 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.953 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5017, "decimalLat": -28.328728 }, "geometry": { "type": "Point", "coordinates": [ 153.502, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.490193, "decimalLat": -32.031041 }, "geometry": { "type": "Point", "coordinates": [ 152.49, -32.031 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063304, "decimalLat": -32.706167 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367822, "decimalLat": -28.866277 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110908, "decimalLat": -29.486811 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519549, "decimalLat": -34.45117 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793561, "decimalLat": -31.127121 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105015, "decimalLat": -32.7352 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.146482, "decimalLat": -32.639151 }, "geometry": { "type": "Point", "coordinates": [ 152.146, -32.639 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643651, "decimalLat": -34.396774 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.955751, "decimalLat": -32.650004 }, "geometry": { "type": "Point", "coordinates": [ 151.956, -32.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631474, "decimalLat": -34.387776 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884616, "decimalLat": -31.44444 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616992, "decimalLat": -34.433645 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921855, "decimalLat": -31.46584 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627308, "decimalLat": -34.421314 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103522, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915982, "decimalLat": -31.480925 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786983, "decimalLat": -33.705799 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78292, "decimalLat": -33.716621 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.876097, "decimalLat": -32.085936 }, "geometry": { "type": "Point", "coordinates": [ 151.876, -32.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600069, "decimalLat": -34.418159 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555924, "decimalLat": -28.398741 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622088, "decimalLat": -34.39779 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555227, "decimalLat": -28.586475 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604596, "decimalLat": -34.452803 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517321, "decimalLat": -34.445923 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902522, "decimalLat": -30.462703 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.184459, "decimalLat": -28.889703 }, "geometry": { "type": "Point", "coordinates": [ 153.184, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616212, "decimalLat": -34.430095 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520474, "decimalLat": -34.4541 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924371, "decimalLat": -29.733175 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -29.733 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103924, "decimalLat": -29.489563 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.331052, "decimalLat": -29.488 }, "geometry": { "type": "Point", "coordinates": [ 152.331, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.832866, "decimalLat": -34.238646 }, "geometry": { "type": "Point", "coordinates": [ 150.833, -34.239 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.051182, "decimalLat": -33.113951 }, "geometry": { "type": "Point", "coordinates": [ 150.051, -33.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614072, "decimalLat": -34.433011 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292875, "decimalLat": -28.864692 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629969, "decimalLat": -34.421059 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518692, "decimalLat": -34.444815 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513103, "decimalLat": -34.447252 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.315355, "decimalLat": -33.345951 }, "geometry": { "type": "Point", "coordinates": [ 151.315, -33.346 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.534284, "decimalLat": -34.747516 }, "geometry": { "type": "Point", "coordinates": [ 146.534, -34.748 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633082, "decimalLat": -34.417549 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785937, "decimalLat": -33.706624 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316818, "decimalLat": -28.823055 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609646, "decimalLat": -34.436386 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557802, "decimalLat": -28.396817 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879008, "decimalLat": -31.424151 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520434, "decimalLat": -34.467965 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523378, "decimalLat": -34.454159 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317993, "decimalLat": -28.820852 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62578, "decimalLat": -33.76384 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -33.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402115, "decimalLat": -28.260547 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929791, "decimalLat": -31.455727 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900306, "decimalLat": -29.330013 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.33 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608261, "decimalLat": -34.434962 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104256, "decimalLat": -29.48318 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910327, "decimalLat": -31.469437 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898021, "decimalLat": -30.330959 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -30.331 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639209, "decimalLat": -34.392694 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784984, "decimalLat": -31.630248 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.992127, "decimalLat": -32.719866 }, "geometry": { "type": "Point", "coordinates": [ 151.992, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.056895, "decimalLat": -33.775645 }, "geometry": { "type": "Point", "coordinates": [ 150.057, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.175, "decimalLat": -32.72574 }, "geometry": { "type": "Point", "coordinates": [ 152.175, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785995, "decimalLat": -33.711352 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51913, "decimalLat": -34.454668 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522049, "decimalLat": -34.465996 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.573313, "decimalLat": -34.767365 }, "geometry": { "type": "Point", "coordinates": [ 146.573, -34.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600266, "decimalLat": -34.427259 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.850839, "decimalLat": -31.55547 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -31.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615524, "decimalLat": -34.435536 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520918, "decimalLat": -34.453442 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868399, "decimalLat": -31.335146 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.335 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109379, "decimalLat": -29.490441 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60097, "decimalLat": -34.427751 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099783, "decimalLat": -29.491557 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.01894, "decimalLat": -32.29582 }, "geometry": { "type": "Point", "coordinates": [ 152.019, -32.296 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604672, "decimalLat": -34.427282 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630321, "decimalLat": -34.420948 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.141399, "decimalLat": -33.109066 }, "geometry": { "type": "Point", "coordinates": [ 151.141, -33.109 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899845, "decimalLat": -31.409514 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324303, "decimalLat": -36.130563 }, "geometry": { "type": "Point", "coordinates": [ 149.324, -36.131 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990858, "decimalLat": -34.025693 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.026 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107432, "decimalLat": -29.490096 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.196338, "decimalLat": -32.230264 }, "geometry": { "type": "Point", "coordinates": [ 152.196, -32.23 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.372262, "decimalLat": -28.999986 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -29.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626235, "decimalLat": -34.395752 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921208, "decimalLat": -31.458149 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795512, "decimalLat": -31.636282 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -31.636 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659459, "decimalLat": -34.455147 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625305, "decimalLat": -34.389405 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610246, "decimalLat": -34.419133 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604816, "decimalLat": -34.427186 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.642979, "decimalLat": -32.663949 }, "geometry": { "type": "Point", "coordinates": [ 151.643, -32.664 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028525, "decimalLat": -32.191563 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610047, "decimalLat": -34.419995 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529843, "decimalLat": -34.471139 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.329514, "decimalLat": -30.681882 }, "geometry": { "type": "Point", "coordinates": [ 151.33, -30.682 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100802, "decimalLat": -29.490007 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.282676, "decimalLat": -32.061484 }, "geometry": { "type": "Point", "coordinates": [ 152.283, -32.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628813, "decimalLat": -34.389203 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63391, "decimalLat": -33.57314 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -33.573 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27827, "decimalLat": -28.679393 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885453, "decimalLat": -34.018442 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.018 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602885, "decimalLat": -34.435361 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.486471, "decimalLat": -32.984102 }, "geometry": { "type": "Point", "coordinates": [ 151.486, -32.984 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990611, "decimalLat": -34.029876 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.03 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108135, "decimalLat": -29.490269 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515865, "decimalLat": -34.448796 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920617, "decimalLat": -31.439849 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.542842, "decimalLat": -28.584015 }, "geometry": { "type": "Point", "coordinates": [ 153.543, -28.584 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.518787, "decimalLat": -28.636204 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.636 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642185, "decimalLat": -34.396304 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5253, "decimalLat": -28.723573 }, "geometry": { "type": "Point", "coordinates": [ 153.525, -28.724 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783787, "decimalLat": -33.717587 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52135, "decimalLat": -34.466442 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.84, "decimalLat": -34.13748 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.137 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39438, "decimalLat": -28.271322 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.271 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516835, "decimalLat": -34.438809 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627397, "decimalLat": -34.421225 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55336, "decimalLat": -28.407803 }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06673, "decimalLat": -34.90619 }, "geometry": { "type": "Point", "coordinates": [ 150.067, -34.906 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616224, "decimalLat": -34.435802 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37939, "decimalLat": -31.929515 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525041, "decimalLat": -34.453508 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.874984, "decimalLat": -31.46849 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.932034, "decimalLat": -31.092748 }, "geometry": { "type": "Point", "coordinates": [ 150.932, -31.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515944, "decimalLat": -34.450537 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637863, "decimalLat": -34.422762 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60025, "decimalLat": -34.428575 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797276, "decimalLat": -31.637274 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.433393, "decimalLat": -31.790624 }, "geometry": { "type": "Point", "coordinates": [ 152.433, -31.791 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518513, "decimalLat": -34.447552 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.04544, "decimalLat": -34.019695 }, "geometry": { "type": "Point", "coordinates": [ 151.045, -34.02 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624532, "decimalLat": -34.385964 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616001, "decimalLat": -34.436375 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90616, "decimalLat": -31.449983 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784399, "decimalLat": -33.718032 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.995573, "decimalLat": -36.572611 }, "geometry": { "type": "Point", "coordinates": [ 149.996, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785593, "decimalLat": -33.71026 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.120508, "decimalLat": -35.076865 }, "geometry": { "type": "Point", "coordinates": [ 150.121, -35.077 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784754, "decimalLat": -33.715263 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784552, "decimalLat": -31.590569 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.591 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639079, "decimalLat": -34.493197 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78503, "decimalLat": -31.632369 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888969, "decimalLat": -31.476594 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.979238, "decimalLat": -36.570187 }, "geometry": { "type": "Point", "coordinates": [ 149.979, -36.57 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602009, "decimalLat": -34.42567 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638033, "decimalLat": -34.419827 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78703, "decimalLat": -31.630117 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10409, "decimalLat": -29.479645 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.650005, "decimalLat": -32.683942 }, "geometry": { "type": "Point", "coordinates": [ 151.65, -32.684 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101392, "decimalLat": -29.490012 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922714, "decimalLat": -31.475384 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.486663, "decimalLat": -28.691138 }, "geometry": { "type": "Point", "coordinates": [ 153.487, -28.691 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897331, "decimalLat": -31.438712 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631506, "decimalLat": -34.387803 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.886108, "decimalLat": -34.058746 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.059 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108119, "decimalLat": -29.490535 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103666, "decimalLat": -29.485538 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627192, "decimalLat": -34.385727 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296166, "decimalLat": -28.925133 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630982, "decimalLat": -34.388253 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.110584, "decimalLat": -32.767718 }, "geometry": { "type": "Point", "coordinates": [ 152.111, -32.768 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379576, "decimalLat": -31.918199 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637172, "decimalLat": -34.485136 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556057, "decimalLat": -28.398603 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517321, "decimalLat": -34.45144 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637892, "decimalLat": -34.488954 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90799, "decimalLat": -30.17557 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -30.176 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614364, "decimalLat": -34.430032 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.268663, "decimalLat": -32.335288 }, "geometry": { "type": "Point", "coordinates": [ 152.269, -32.335 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632757, "decimalLat": -34.419824 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637267, "decimalLat": -34.42386 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520709, "decimalLat": -34.43658 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403088, "decimalLat": -31.925107 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531199, "decimalLat": -34.457996 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604232, "decimalLat": -34.435045 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637346, "decimalLat": -34.423735 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.074378, "decimalLat": -32.736962 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107421, "decimalLat": -29.490114 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524217, "decimalLat": -34.452653 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.227204, "decimalLat": -35.179604 }, "geometry": { "type": "Point", "coordinates": [ 149.227, -35.18 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104546, "decimalLat": -29.477319 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065264, "decimalLat": -32.711007 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103849, "decimalLat": -29.484693 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529416, "decimalLat": -34.471221 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300847, "decimalLat": -28.821734 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913379, "decimalLat": -31.479328 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600785, "decimalLat": -34.427738 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631267, "decimalLat": -34.420173 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604015, "decimalLat": -34.440765 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921826, "decimalLat": -31.460668 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600078, "decimalLat": -34.419385 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521864, "decimalLat": -34.464532 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.51629, "decimalLat": -33.641224 }, "geometry": { "type": "Point", "coordinates": [ 149.516, -33.641 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524647, "decimalLat": -34.452102 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609392, "decimalLat": -34.418945 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.415221, "decimalLat": -28.672232 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637239, "decimalLat": -34.422146 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644001, "decimalLat": -34.392841 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556168, "decimalLat": -28.330904 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.35486, "decimalLat": -36.18352 }, "geometry": { "type": "Point", "coordinates": [ 149.355, -36.184 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526689, "decimalLat": -34.469579 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635391, "decimalLat": -34.420524 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629638, "decimalLat": -34.388867 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.988079, "decimalLat": -30.32528 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -30.325 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632138, "decimalLat": -34.394298 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514345, "decimalLat": -34.446457 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01536, "decimalLat": -28.63955 }, "geometry": { "type": "Point", "coordinates": [ 153.015, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.037179, "decimalLat": -30.895341 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -30.895 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.3233, "decimalLat": -28.59082 }, "geometry": { "type": "Point", "coordinates": [ 152.323, -28.591 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922214, "decimalLat": -31.461796 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.344742, "decimalLat": -31.903915 }, "geometry": { "type": "Point", "coordinates": [ 152.345, -31.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616817, "decimalLat": -34.399554 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921998, "decimalLat": -29.739464 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -29.739 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10814, "decimalLat": -29.490502 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.880905, "decimalLat": -34.021389 }, "geometry": { "type": "Point", "coordinates": [ 150.881, -34.021 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900076, "decimalLat": -29.631196 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523272, "decimalLat": -34.452237 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838978, "decimalLat": -34.053416 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603914, "decimalLat": -34.427529 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278132, "decimalLat": -28.831137 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.856894, "decimalLat": -31.447028 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.037804, "decimalLat": -32.731544 }, "geometry": { "type": "Point", "coordinates": [ 152.038, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095421, "decimalLat": -29.4841 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.844843, "decimalLat": -29.834535 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.835 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.882303, "decimalLat": -32.752293 }, "geometry": { "type": "Point", "coordinates": [ 151.882, -32.752 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514096, "decimalLat": -34.446398 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786461, "decimalLat": -33.709609 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524614, "decimalLat": -34.460946 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.811338, "decimalLat": -29.375458 }, "geometry": { "type": "Point", "coordinates": [ 149.811, -29.375 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01327, "decimalLat": -30.41356 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -30.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92489, "decimalLat": -31.468791 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618817, "decimalLat": -34.440279 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.064694, "decimalLat": -29.683519 }, "geometry": { "type": "Point", "coordinates": [ 151.065, -29.684 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08916, "decimalLat": -32.728082 }, "geometry": { "type": "Point", "coordinates": [ 152.089, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615386, "decimalLat": -34.435786 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096634, "decimalLat": -29.491861 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887399, "decimalLat": -31.261111 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403175, "decimalLat": -28.260624 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603575, "decimalLat": -34.41921 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4658, "decimalLat": -28.675702 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.635197, "decimalLat": -30.140644 }, "geometry": { "type": "Point", "coordinates": [ 152.635, -30.141 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.117738, "decimalLat": -32.726204 }, "geometry": { "type": "Point", "coordinates": [ 152.118, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609114, "decimalLat": -34.420671 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.22503, "decimalLat": -28.826912 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901512, "decimalLat": -31.435939 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.46757, "decimalLat": -34.49092 }, "geometry": { "type": "Point", "coordinates": [ 150.468, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51589, "decimalLat": -34.446849 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276437, "decimalLat": -28.818985 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.839123, "decimalLat": -34.056603 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.057 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520261, "decimalLat": -34.465708 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379887, "decimalLat": -31.913487 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.843837, "decimalLat": -34.137132 }, "geometry": { "type": "Point", "coordinates": [ 150.844, -34.137 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.974951, "decimalLat": -36.171177 }, "geometry": { "type": "Point", "coordinates": [ 148.975, -36.171 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316272, "decimalLat": -28.823818 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603702, "decimalLat": -34.438767 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82369, "decimalLat": -34.141271 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.006664, "decimalLat": -30.42108 }, "geometry": { "type": "Point", "coordinates": [ 153.007, -30.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.833456, "decimalLat": -30.434821 }, "geometry": { "type": "Point", "coordinates": [ 152.833, -30.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604583, "decimalLat": -34.438397 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627193, "decimalLat": -34.389577 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60953, "decimalLat": -28.661306 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072676, "decimalLat": -32.710616 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518957, "decimalLat": -34.447272 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601262, "decimalLat": -34.428937 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515383, "decimalLat": -34.447055 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517181, "decimalLat": -34.452131 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304545, "decimalLat": -28.825156 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.072209, "decimalLat": -30.342321 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.342 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616313, "decimalLat": -34.433406 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09165, "decimalLat": -29.488041 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.393235, "decimalLat": -31.945523 }, "geometry": { "type": "Point", "coordinates": [ 152.393, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064147, "decimalLat": -32.70236 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.702 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597296, "decimalLat": -34.410161 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601776, "decimalLat": -34.412485 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317837, "decimalLat": -28.821082 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.660173, "decimalLat": -32.655466 }, "geometry": { "type": "Point", "coordinates": [ 151.66, -32.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514553, "decimalLat": -34.443847 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39669, "decimalLat": -28.874375 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.326024, "decimalLat": -28.824405 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629592, "decimalLat": -34.389326 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609283, "decimalLat": -34.420476 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897321, "decimalLat": -31.47494 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412874, "decimalLat": -31.933085 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.238121, "decimalLat": -36.184928 }, "geometry": { "type": "Point", "coordinates": [ 149.238, -36.185 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.079297, "decimalLat": -30.35381 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -30.354 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819478, "decimalLat": -31.449373 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86799, "decimalLat": -31.479129 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635587, "decimalLat": -34.41822 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615361, "decimalLat": -34.431296 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878844, "decimalLat": -29.662059 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604243, "decimalLat": -34.439246 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631918, "decimalLat": -34.418329 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415185, "decimalLat": -31.933138 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517334, "decimalLat": -34.452098 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600405, "decimalLat": -34.428091 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900459, "decimalLat": -31.44365 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785938, "decimalLat": -33.703959 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529768, "decimalLat": -34.440138 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292385, "decimalLat": -28.856019 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.856 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374722, "decimalLat": -28.2525 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523044, "decimalLat": -34.466197 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.746956, "decimalLat": -31.203254 }, "geometry": { "type": "Point", "coordinates": [ 152.747, -31.203 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.177441, "decimalLat": -30.099383 }, "geometry": { "type": "Point", "coordinates": [ 152.177, -30.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61705, "decimalLat": -34.433528 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.083923, "decimalLat": -29.728212 }, "geometry": { "type": "Point", "coordinates": [ 151.084, -29.728 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785297, "decimalLat": -33.717133 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928529, "decimalLat": -31.464149 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558425, "decimalLat": -28.394206 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59791, "decimalLat": -34.425932 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070176, "decimalLat": -32.72335 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901052, "decimalLat": -31.474153 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556301, "decimalLat": -28.399832 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808078, "decimalLat": -34.093737 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.145816, "decimalLat": -34.932599 }, "geometry": { "type": "Point", "coordinates": [ 150.146, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520069, "decimalLat": -34.446817 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280631, "decimalLat": -28.861053 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881693, "decimalLat": -31.4527 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902077, "decimalLat": -31.442154 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.548838, "decimalLat": -28.675365 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.675 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293072, "decimalLat": -28.864673 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899817, "decimalLat": -31.450312 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60182, "decimalLat": -34.412459 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.627183, "decimalLat": -28.831591 }, "geometry": { "type": "Point", "coordinates": [ 152.627, -28.832 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597804, "decimalLat": -34.426985 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629046, "decimalLat": -34.389424 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.384162, "decimalLat": -31.922893 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434311, "decimalLat": -28.644485 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.644 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603169, "decimalLat": -34.425405 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10416, "decimalLat": -29.485207 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623109, "decimalLat": -34.399361 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.979882, "decimalLat": -34.130124 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -34.13 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.526032, "decimalLat": -32.346095 }, "geometry": { "type": "Point", "coordinates": [ 152.526, -32.346 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.77507, "decimalLat": -34.3838 }, "geometry": { "type": "Point", "coordinates": [ 150.775, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895053, "decimalLat": -31.437714 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324344, "decimalLat": -28.879257 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.879 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.283175, "decimalLat": -31.698289 }, "geometry": { "type": "Point", "coordinates": [ 152.283, -31.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.486365, "decimalLat": -28.677452 }, "geometry": { "type": "Point", "coordinates": [ 153.486, -28.677 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915678, "decimalLat": -31.482596 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602955, "decimalLat": -34.437093 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19904, "decimalLat": -32.23808 }, "geometry": { "type": "Point", "coordinates": [ 152.199, -32.238 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824642, "decimalLat": -29.504766 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.2884, "decimalLat": -28.9904 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.99 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513185, "decimalLat": -34.445956 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873698, "decimalLat": -31.457795 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.490227 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630266, "decimalLat": -34.420965 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.358778, "decimalLat": -31.926457 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.410742, "decimalLat": -31.483349 }, "geometry": { "type": "Point", "coordinates": [ 150.411, -31.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630688, "decimalLat": -34.420658 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784484, "decimalLat": -33.712917 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.565741, "decimalLat": -34.757454 }, "geometry": { "type": "Point", "coordinates": [ 146.566, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376426, "decimalLat": -28.253243 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.253 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109728, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.937114, "decimalLat": -30.439187 }, "geometry": { "type": "Point", "coordinates": [ 152.937, -30.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104176, "decimalLat": -29.478926 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.39999, "decimalLat": -36.16674 }, "geometry": { "type": "Point", "coordinates": [ 149.4, -36.167 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632615, "decimalLat": -34.418297 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792031, "decimalLat": -34.145239 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.457587, "decimalLat": -28.369446 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.369 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109326, "decimalLat": -29.490707 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521855, "decimalLat": -34.466308 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.036423, "decimalLat": -30.8961 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628057, "decimalLat": -34.389783 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559092, "decimalLat": -28.393945 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.653982, "decimalLat": -34.455619 }, "geometry": { "type": "Point", "coordinates": [ 150.654, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606307, "decimalLat": -34.454992 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639191, "decimalLat": -34.491928 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.423548, "decimalLat": -29.105122 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -29.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616192, "decimalLat": -34.436153 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.739939, "decimalLat": -30.477854 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -30.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606992, "decimalLat": -34.437479 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785354, "decimalLat": -31.629703 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521349, "decimalLat": -34.46646 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.661853, "decimalLat": -34.458267 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342482, "decimalLat": -28.818352 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515182, "decimalLat": -34.450901 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.854344, "decimalLat": -32.611461 }, "geometry": { "type": "Point", "coordinates": [ 151.854, -32.611 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522555, "decimalLat": -34.464357 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104208, "decimalLat": -29.482111 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623538, "decimalLat": -34.388812 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.967622, "decimalLat": -31.185868 }, "geometry": { "type": "Point", "coordinates": [ 152.968, -31.186 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103543, "decimalLat": -29.485426 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633498, "decimalLat": -34.392368 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639986, "decimalLat": -34.491925 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107942, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394751, "decimalLat": -28.854553 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.855 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412852, "decimalLat": -31.932493 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990234, "decimalLat": -34.026262 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.026 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606353, "decimalLat": -34.438134 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659578, "decimalLat": -34.458277 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110399, "decimalLat": -29.490637 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063773, "decimalLat": -32.706607 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516405, "decimalLat": -34.450006 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895697, "decimalLat": -31.435745 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617478, "decimalLat": -34.434934 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299324, "decimalLat": -28.888717 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627837, "decimalLat": -34.38986 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641375, "decimalLat": -34.394954 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378802, "decimalLat": -28.876314 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -28.876 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522827, "decimalLat": -34.452552 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.2138, "decimalLat": -28.8234 }, "geometry": { "type": "Point", "coordinates": [ 153.214, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630817, "decimalLat": -34.386384 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.234521, "decimalLat": -31.40059 }, "geometry": { "type": "Point", "coordinates": [ 152.235, -31.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609832, "decimalLat": -34.455043 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909886, "decimalLat": -31.467459 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.549946, "decimalLat": -33.567539 }, "geometry": { "type": "Point", "coordinates": [ 149.55, -33.568 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662807, "decimalLat": -34.45842 }, "geometry": { "type": "Point", "coordinates": [ 150.663, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06731, "decimalLat": -31.03932 }, "geometry": { "type": "Point", "coordinates": [ 150.067, -31.039 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809067, "decimalLat": -34.098713 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.517753, "decimalLat": -30.516811 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -30.517 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531982, "decimalLat": -34.460229 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.460073, "decimalLat": -28.272041 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.272 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521588, "decimalLat": -34.465743 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616704, "decimalLat": -34.43345 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.45426, "decimalLat": -31.93643 }, "geometry": { "type": "Point", "coordinates": [ 152.454, -31.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.789385, "decimalLat": -32.653981 }, "geometry": { "type": "Point", "coordinates": [ 151.789, -32.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10379, "decimalLat": -29.485571 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604086, "decimalLat": -34.427235 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605839, "decimalLat": -34.454225 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.69177, "decimalLat": -34.071526 }, "geometry": { "type": "Point", "coordinates": [ 149.692, -34.072 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636996, "decimalLat": -34.485592 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63539, "decimalLat": -34.4885 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521419, "decimalLat": -34.466326 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793198, "decimalLat": -31.641869 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.749317, "decimalLat": -30.209704 }, "geometry": { "type": "Point", "coordinates": [ 152.749, -30.21 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493023, "decimalLat": -28.675517 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.935644, "decimalLat": -29.041882 }, "geometry": { "type": "Point", "coordinates": [ 152.936, -29.042 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60155, "decimalLat": -28.68121 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.080271, "decimalLat": -32.722386 }, "geometry": { "type": "Point", "coordinates": [ 152.08, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.713472, "decimalLat": -32.721615 }, "geometry": { "type": "Point", "coordinates": [ 150.713, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293095, "decimalLat": -28.864561 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092149, "decimalLat": -29.488051 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.907103, "decimalLat": -32.477379 }, "geometry": { "type": "Point", "coordinates": [ 151.907, -32.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.699151, "decimalLat": -31.728498 }, "geometry": { "type": "Point", "coordinates": [ 152.699, -31.728 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835074, "decimalLat": -34.069559 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635468, "decimalLat": -34.488042 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520222, "decimalLat": -34.465553 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.886924, "decimalLat": -34.01577 }, "geometry": { "type": "Point", "coordinates": [ 150.887, -34.016 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934931, "decimalLat": -36.503907 }, "geometry": { "type": "Point", "coordinates": [ 149.935, -36.504 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.77719, "decimalLat": -30.566023 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -30.566 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615757, "decimalLat": -34.438444 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518727, "decimalLat": -34.447312 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.134335, "decimalLat": -32.64183 }, "geometry": { "type": "Point", "coordinates": [ 152.134, -32.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605177, "decimalLat": -34.437011 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.229584, "decimalLat": -28.889165 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599172, "decimalLat": -34.413786 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377332, "decimalLat": -28.582538 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.583 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627577, "decimalLat": -34.386735 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6595, "decimalLat": -34.457555 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.821627, "decimalLat": -35.407548 }, "geometry": { "type": "Point", "coordinates": [ 149.822, -35.408 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.709143, "decimalLat": -32.691444 }, "geometry": { "type": "Point", "coordinates": [ 151.709, -32.691 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907921, "decimalLat": -31.445302 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.95772, "decimalLat": -30.648466 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -30.648 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616817, "decimalLat": -34.399554 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631236, "decimalLat": -34.393514 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091098, "decimalLat": -29.487593 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.881052, "decimalLat": -34.048436 }, "geometry": { "type": "Point", "coordinates": [ 150.881, -34.048 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.15203, "decimalLat": -29.66244 }, "geometry": { "type": "Point", "coordinates": [ 152.152, -29.662 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30184, "decimalLat": -28.822956 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.496543, "decimalLat": -28.694824 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.695 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907086, "decimalLat": -31.454655 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523802, "decimalLat": -34.463778 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.274519, "decimalLat": -28.882387 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -28.882 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.0566, "decimalLat": -32.73714 }, "geometry": { "type": "Point", "coordinates": [ 152.057, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602419, "decimalLat": -34.425787 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630863, "decimalLat": -34.420634 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610443, "decimalLat": -34.430542 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786519, "decimalLat": -31.629167 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898504, "decimalLat": -31.442482 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.97869, "decimalLat": -34.1615 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -34.161 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.99181, "decimalLat": -31.13359 }, "geometry": { "type": "Point", "coordinates": [ 149.992, -31.134 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.718276, "decimalLat": -32.717564 }, "geometry": { "type": "Point", "coordinates": [ 151.718, -32.718 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.867733, "decimalLat": -33.451036 }, "geometry": { "type": "Point", "coordinates": [ 150.868, -33.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.121216, "decimalLat": -35.081255 }, "geometry": { "type": "Point", "coordinates": [ 150.121, -35.081 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064971, "decimalLat": -32.710083 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.123807, "decimalLat": -31.404491 }, "geometry": { "type": "Point", "coordinates": [ 152.124, -31.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517422, "decimalLat": -34.452064 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103699, "decimalLat": -29.485781 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557601, "decimalLat": -28.38855 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925738, "decimalLat": -31.454207 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895096, "decimalLat": -31.443086 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925165, "decimalLat": -31.453952 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372097, "decimalLat": -31.921045 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09224, "decimalLat": -29.488144 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636793, "decimalLat": -34.420975 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915556, "decimalLat": -31.444948 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628768, "decimalLat": -34.389635 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517423, "decimalLat": -34.446159 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626891, "decimalLat": -34.421026 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63605, "decimalLat": -34.485935 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518849, "decimalLat": -34.447234 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01536, "decimalLat": -28.63955 }, "geometry": { "type": "Point", "coordinates": [ 153.015, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520341, "decimalLat": -34.46561 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.710282, "decimalLat": -32.616911 }, "geometry": { "type": "Point", "coordinates": [ 151.71, -32.617 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.589764, "decimalLat": -31.798099 }, "geometry": { "type": "Point", "coordinates": [ 152.59, -31.798 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617596, "decimalLat": -34.448775 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784322, "decimalLat": -33.718254 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789597, "decimalLat": -34.195798 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.196 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602312, "decimalLat": -34.426082 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063438, "decimalLat": -32.70598 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.825499, "decimalLat": -32.806959 }, "geometry": { "type": "Point", "coordinates": [ 151.825, -32.807 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.438813, "decimalLat": -32.241752 }, "geometry": { "type": "Point", "coordinates": [ 150.439, -32.242 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.46456, "decimalLat": -33.491102 }, "geometry": { "type": "Point", "coordinates": [ 149.465, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10122, "decimalLat": -29.489951 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98877, "decimalLat": -34.027287 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.027 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.861619, "decimalLat": -29.609284 }, "geometry": { "type": "Point", "coordinates": [ 150.862, -29.609 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610052, "decimalLat": -34.430155 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51625, "decimalLat": -34.44792 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27974, "decimalLat": -28.678998 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017126, "decimalLat": -30.374914 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -30.375 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630725, "decimalLat": -34.388888 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9276, "decimalLat": -31.4541 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.963573, "decimalLat": -31.255768 }, "geometry": { "type": "Point", "coordinates": [ 152.964, -31.256 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606784, "decimalLat": -34.434482 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.061154, "decimalLat": -30.916151 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103441, "decimalLat": -29.489848 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523135, "decimalLat": -34.438432 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10372, "decimalLat": -29.485604 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285323, "decimalLat": -29.040946 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -29.041 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632763, "decimalLat": -34.418057 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513141, "decimalLat": -34.445946 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639232, "decimalLat": -34.493191 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632215, "decimalLat": -34.388088 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299324, "decimalLat": -28.888717 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52002, "decimalLat": -34.467614 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "Queensland", "decimalLon": 149.062543, "decimalLat": -21.160705 }, "geometry": { "type": "Point", "coordinates": [ 149.063, -21.161 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.005503, "decimalLat": -34.045587 }, "geometry": { "type": "Point", "coordinates": [ 151.006, -34.046 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627074, "decimalLat": -34.38953 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105574, "decimalLat": -32.760544 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.761 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101574, "decimalLat": -29.489414 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303135, "decimalLat": -28.824882 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.466547, "decimalLat": -32.020247 }, "geometry": { "type": "Point", "coordinates": [ 152.467, -32.02 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.456293, "decimalLat": -32.403623 }, "geometry": { "type": "Point", "coordinates": [ 152.456, -32.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.527598, "decimalLat": -28.404354 }, "geometry": { "type": "Point", "coordinates": [ 153.528, -28.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598008, "decimalLat": -34.425934 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.546628, "decimalLat": -34.514336 }, "geometry": { "type": "Point", "coordinates": [ 150.547, -34.514 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103618, "decimalLat": -29.485646 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.087904, "decimalLat": -32.728239 }, "geometry": { "type": "Point", "coordinates": [ 152.088, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627427, "decimalLat": -34.421307 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62717, "decimalLat": -34.389595 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51801, "decimalLat": -34.444332 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833136, "decimalLat": -34.085987 }, "geometry": { "type": "Point", "coordinates": [ 150.833, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.100262, "decimalLat": -32.733304 }, "geometry": { "type": "Point", "coordinates": [ 152.1, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108146, "decimalLat": -29.490297 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626039, "decimalLat": -34.386138 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.001032, "decimalLat": -30.414469 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -30.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415374, "decimalLat": -31.93308 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277955, "decimalLat": -28.678994 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529239, "decimalLat": -34.464663 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.800106, "decimalLat": -30.218879 }, "geometry": { "type": "Point", "coordinates": [ 152.8, -30.219 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645056, "decimalLat": -34.398676 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.978195, "decimalLat": -36.450213 }, "geometry": { "type": "Point", "coordinates": [ 149.978, -36.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609004, "decimalLat": -34.43064 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521696, "decimalLat": -34.466142 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096242, "decimalLat": -29.491483 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03482, "decimalLat": -32.765351 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521927, "decimalLat": -34.459431 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92666, "decimalLat": -28.473761 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -28.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645218, "decimalLat": -34.392891 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.398058, "decimalLat": -34.37673 }, "geometry": { "type": "Point", "coordinates": [ 150.398, -34.377 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104106, "decimalLat": -29.47845 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.57307, "decimalLat": -28.665253 }, "geometry": { "type": "Point", "coordinates": [ 153.573, -28.665 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306614, "decimalLat": -28.822635 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302174, "decimalLat": -28.818627 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.801348, "decimalLat": -34.112152 }, "geometry": { "type": "Point", "coordinates": [ 150.801, -34.112 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096489, "decimalLat": -30.34975 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -30.35 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.029056, "decimalLat": -32.191495 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.191 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605101, "decimalLat": -34.438939 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.039429, "decimalLat": -35.777938 }, "geometry": { "type": "Point", "coordinates": [ 148.039, -35.778 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.316321, "decimalLat": -36.297737 }, "geometry": { "type": "Point", "coordinates": [ 149.316, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52964, "decimalLat": -34.51358 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638045, "decimalLat": -34.420178 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.993823, "decimalLat": -34.048508 }, "geometry": { "type": "Point", "coordinates": [ 150.994, -34.049 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108113, "decimalLat": -29.490497 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616612, "decimalLat": -34.43782 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.103015, "decimalLat": -29.769074 }, "geometry": { "type": "Point", "coordinates": [ 151.103, -29.769 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615783, "decimalLat": -34.436389 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630711, "decimalLat": -34.420604 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.866027, "decimalLat": -34.060984 }, "geometry": { "type": "Point", "coordinates": [ 150.866, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78048, "decimalLat": -31.48568 }, "geometry": { "type": "Point", "coordinates": [ 152.78, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.986767, "decimalLat": -30.485692 }, "geometry": { "type": "Point", "coordinates": [ 152.987, -30.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79576, "decimalLat": -31.451319 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516097, "decimalLat": -34.449017 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604907, "decimalLat": -34.427034 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.059758, "decimalLat": -30.927524 }, "geometry": { "type": "Point", "coordinates": [ 150.06, -30.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632602, "decimalLat": -34.418351 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413018, "decimalLat": -31.932772 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917354, "decimalLat": -31.457605 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627307, "decimalLat": -34.421332 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.307204, "decimalLat": -36.124832 }, "geometry": { "type": "Point", "coordinates": [ 149.307, -36.125 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897363, "decimalLat": -31.474877 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631378, "decimalLat": -34.420112 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603594, "decimalLat": -34.435682 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907848, "decimalLat": -31.456237 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533116, "decimalLat": -34.475695 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561257, "decimalLat": -28.390177 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895044, "decimalLat": -31.431 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.05392, "decimalLat": -30.28081 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -30.281 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.0666, "decimalLat": -32.9108 }, "geometry": { "type": "Point", "coordinates": [ 151.067, -32.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893775, "decimalLat": -31.445449 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607007, "decimalLat": -34.455258 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518071, "decimalLat": -34.446686 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60928, "decimalLat": -34.420566 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.286418, "decimalLat": -29.025463 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -29.025 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103884, "decimalLat": -29.485401 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516414, "decimalLat": -34.450087 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.531367, "decimalLat": -28.704717 }, "geometry": { "type": "Point", "coordinates": [ 153.531, -28.705 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302579, "decimalLat": -28.846194 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917579, "decimalLat": -31.440989 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437028, "decimalLat": -28.974833 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.975 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.980473, "decimalLat": -28.481454 }, "geometry": { "type": "Point", "coordinates": [ 152.98, -28.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.072732, "decimalLat": -33.778771 }, "geometry": { "type": "Point", "coordinates": [ 150.073, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915047, "decimalLat": -31.446301 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82929, "decimalLat": -31.26569 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -31.266 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608782, "decimalLat": -28.674101 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.674 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.441201, "decimalLat": -28.699307 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.699 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879128, "decimalLat": -29.661957 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52095, "decimalLat": -34.465253 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628955, "decimalLat": -34.390323 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.039438, "decimalLat": -35.078506 }, "geometry": { "type": "Point", "coordinates": [ 150.039, -35.079 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616672, "decimalLat": -34.434955 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.241178, "decimalLat": -30.027575 }, "geometry": { "type": "Point", "coordinates": [ 152.241, -30.028 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611461, "decimalLat": -34.419635 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070155, "decimalLat": -32.713766 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.51451, "decimalLat": -33.580187 }, "geometry": { "type": "Point", "coordinates": [ 149.515, -33.58 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785282, "decimalLat": -33.715313 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.284266, "decimalLat": -28.666818 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104047, "decimalLat": -29.484385 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631527, "decimalLat": -34.387831 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094635, "decimalLat": -29.494083 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6151, "decimalLat": -34.431318 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.537335, "decimalLat": -34.380735 }, "geometry": { "type": "Point", "coordinates": [ 150.537, -34.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645146, "decimalLat": -34.393115 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628024, "decimalLat": -34.420994 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110554, "decimalLat": -29.489848 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.229587, "decimalLat": -28.889132 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.007682, "decimalLat": -28.625544 }, "geometry": { "type": "Point", "coordinates": [ 153.008, -28.626 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608154, "decimalLat": -28.690049 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.486827, "decimalLat": -34.461697 }, "geometry": { "type": "Point", "coordinates": [ 150.487, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91782, "decimalLat": -31.438393 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091607, "decimalLat": -29.487836 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09317, "decimalLat": -29.492624 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619762, "decimalLat": -34.439198 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.305432, "decimalLat": -28.269898 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -28.27 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51312, "decimalLat": -34.447775 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.328215, "decimalLat": -28.667194 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520462, "decimalLat": -34.454145 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103833, "decimalLat": -29.484987 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92597, "decimalLat": -28.965193 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -28.965 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626512, "decimalLat": -34.38557 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522414, "decimalLat": -34.465796 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.48515, "decimalLat": -34.39801 }, "geometry": { "type": "Point", "coordinates": [ 150.485, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520841, "decimalLat": -34.465629 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605696, "decimalLat": -34.423417 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.860293, "decimalLat": -29.627806 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -29.628 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61642, "decimalLat": -34.441143 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901465, "decimalLat": -31.448796 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.247246, "decimalLat": -33.854489 }, "geometry": { "type": "Point", "coordinates": [ 150.247, -33.854 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.216815, "decimalLat": -32.411142 }, "geometry": { "type": "Point", "coordinates": [ 152.217, -32.411 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614887, "decimalLat": -34.429601 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.544989, "decimalLat": -28.733635 }, "geometry": { "type": "Point", "coordinates": [ 153.545, -28.734 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783887, "decimalLat": -33.71694 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626602, "decimalLat": -34.385472 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891577, "decimalLat": -31.44651 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063261, "decimalLat": -32.706194 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518967, "decimalLat": -34.447281 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.689833, "decimalLat": -31.793819 }, "geometry": { "type": "Point", "coordinates": [ 152.69, -31.794 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.139812, "decimalLat": -32.698758 }, "geometry": { "type": "Point", "coordinates": [ 150.14, -32.699 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107438, "decimalLat": -29.490142 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51647, "decimalLat": -34.450043 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638851, "decimalLat": -34.421681 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604263, "decimalLat": -34.438922 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.6143, "decimalLat": -30.53562 }, "geometry": { "type": "Point", "coordinates": [ 152.614, -30.536 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307732, "decimalLat": -28.996723 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.997 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633242, "decimalLat": -34.417651 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.233803, "decimalLat": -29.328715 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -29.329 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524419, "decimalLat": -34.46499 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604152, "decimalLat": -34.444717 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905822, "decimalLat": -31.448677 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.117442, "decimalLat": -28.618439 }, "geometry": { "type": "Point", "coordinates": [ 153.117, -28.618 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325686, "decimalLat": -28.894918 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.895 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909346, "decimalLat": -31.453298 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808544, "decimalLat": -34.097588 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.248544, "decimalLat": -30.059088 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -30.059 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108189, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515382, "decimalLat": -34.444134 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513825, "decimalLat": -34.446365 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522357, "decimalLat": -34.465876 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374025, "decimalLat": -31.915828 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.206595, "decimalLat": -28.839568 }, "geometry": { "type": "Point", "coordinates": [ 153.207, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.227641, "decimalLat": -28.890086 }, "geometry": { "type": "Point", "coordinates": [ 153.228, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611909, "decimalLat": -34.431796 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.203368, "decimalLat": -32.229858 }, "geometry": { "type": "Point", "coordinates": [ 152.203, -32.23 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.455197, "decimalLat": -31.936369 }, "geometry": { "type": "Point", "coordinates": [ 152.455, -31.936 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.84256, "decimalLat": -34.095871 }, "geometry": { "type": "Point", "coordinates": [ 150.843, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.15712, "decimalLat": -31.12662 }, "geometry": { "type": "Point", "coordinates": [ 150.157, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01171, "decimalLat": -30.373861 }, "geometry": { "type": "Point", "coordinates": [ 153.012, -30.374 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.414615, "decimalLat": -31.939633 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.56435, "decimalLat": -34.748414 }, "geometry": { "type": "Point", "coordinates": [ 146.564, -34.748 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.159083, "decimalLat": -28.924809 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.123305, "decimalLat": -30.300643 }, "geometry": { "type": "Point", "coordinates": [ 153.123, -30.301 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10475, "decimalLat": -29.477016 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302967, "decimalLat": -28.82047 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630931, "decimalLat": -34.388892 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924533, "decimalLat": -31.46356 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071511, "decimalLat": -32.71712 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.717 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.962627, "decimalLat": -32.65561 }, "geometry": { "type": "Point", "coordinates": [ 151.963, -32.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644287, "decimalLat": -34.393126 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786057, "decimalLat": -33.714026 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.975743, "decimalLat": -31.191933 }, "geometry": { "type": "Point", "coordinates": [ 152.976, -31.192 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.789792, "decimalLat": -32.654088 }, "geometry": { "type": "Point", "coordinates": [ 151.79, -32.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.661001, "decimalLat": -32.68591 }, "geometry": { "type": "Point", "coordinates": [ 151.661, -32.686 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907054, "decimalLat": -31.449658 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897875, "decimalLat": -31.456325 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091468, "decimalLat": -29.487747 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276657, "decimalLat": -28.818014 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.981735, "decimalLat": -34.130172 }, "geometry": { "type": "Point", "coordinates": [ 150.982, -34.13 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604208, "decimalLat": -34.438966 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093454, "decimalLat": -29.492534 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277281, "decimalLat": -28.679386 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.771158, "decimalLat": -32.587406 }, "geometry": { "type": "Point", "coordinates": [ 151.771, -32.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.354401, "decimalLat": -28.66184 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531214, "decimalLat": -34.457852 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893768, "decimalLat": -31.443094 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.605868, "decimalLat": -30.521931 }, "geometry": { "type": "Point", "coordinates": [ 152.606, -30.522 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634724, "decimalLat": -34.48856 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.321078, "decimalLat": -36.298331 }, "geometry": { "type": "Point", "coordinates": [ 149.321, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109728, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552017, "decimalLat": -33.49075 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101392, "decimalLat": -29.489732 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.870993, "decimalLat": -34.043832 }, "geometry": { "type": "Point", "coordinates": [ 150.871, -34.044 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632021, "decimalLat": -34.388039 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.430479, "decimalLat": -29.016164 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.14047, "decimalLat": -31.463603 }, "geometry": { "type": "Point", "coordinates": [ 152.14, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.354865, "decimalLat": -36.1835 }, "geometry": { "type": "Point", "coordinates": [ 149.355, -36.183 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301293, "decimalLat": -28.685102 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.685 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.128071, "decimalLat": -28.563076 }, "geometry": { "type": "Point", "coordinates": [ 153.128, -28.563 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40941, "decimalLat": -31.91019 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609889, "decimalLat": -34.429755 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51622, "decimalLat": -34.449642 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.694627, "decimalLat": -32.697232 }, "geometry": { "type": "Point", "coordinates": [ 151.695, -32.697 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923472, "decimalLat": -31.476918 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073109, "decimalLat": -32.712611 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910026, "decimalLat": -31.489791 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639832, "decimalLat": -34.400325 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103688, "decimalLat": -29.485786 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607362, "decimalLat": -28.686607 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.075981, "decimalLat": -32.723348 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603777, "decimalLat": -34.436884 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.999003, "decimalLat": -34.083054 }, "geometry": { "type": "Point", "coordinates": [ 150.999, -34.083 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.67208, "decimalLat": -33.564761 }, "geometry": { "type": "Point", "coordinates": [ 150.672, -33.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615705, "decimalLat": -34.439876 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.549897, "decimalLat": -34.462 }, "geometry": { "type": "Point", "coordinates": [ 150.55, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.723772, "decimalLat": -29.384661 }, "geometry": { "type": "Point", "coordinates": [ 152.724, -29.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522958, "decimalLat": -34.453267 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.138784, "decimalLat": -30.208097 }, "geometry": { "type": "Point", "coordinates": [ 153.139, -30.208 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.481758, "decimalLat": -32.664717 }, "geometry": { "type": "Point", "coordinates": [ 149.482, -32.665 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787267, "decimalLat": -33.707068 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.70963, "decimalLat": -30.140485 }, "geometry": { "type": "Point", "coordinates": [ 152.71, -30.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786197, "decimalLat": -33.710453 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527268, "decimalLat": -34.469519 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636232, "decimalLat": -34.485668 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109755, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623104, "decimalLat": -34.39762 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602906, "decimalLat": -34.435407 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613947, "decimalLat": -34.429366 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.445237, "decimalLat": -28.704084 }, "geometry": { "type": "Point", "coordinates": [ 153.445, -28.704 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914421, "decimalLat": -31.485895 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644688, "decimalLat": -34.39317 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.506227, "decimalLat": -28.798532 }, "geometry": { "type": "Point", "coordinates": [ 153.506, -28.799 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609319, "decimalLat": -34.419214 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52182, "decimalLat": -34.466379 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433733, "decimalLat": -28.574646 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639013, "decimalLat": -34.491681 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898578, "decimalLat": -31.474157 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.830729, "decimalLat": -29.640893 }, "geometry": { "type": "Point", "coordinates": [ 152.831, -29.641 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635469, "decimalLat": -34.420462 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.438946, "decimalLat": -34.46442 }, "geometry": { "type": "Point", "coordinates": [ 150.439, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.45439, "decimalLat": -28.65348 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.092991, "decimalLat": -31.049286 }, "geometry": { "type": "Point", "coordinates": [ 150.093, -31.049 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.352005, "decimalLat": -28.882533 }, "geometry": { "type": "Point", "coordinates": [ 153.352, -28.883 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520752, "decimalLat": -34.46569 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518055, "decimalLat": -34.439879 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31269, "decimalLat": -28.638 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27655, "decimalLat": -28.872288 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.480202, "decimalLat": -32.815056 }, "geometry": { "type": "Point", "coordinates": [ 151.48, -32.815 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898599, "decimalLat": -31.455572 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527195, "decimalLat": -34.4694 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510618, "decimalLat": -28.808662 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108124, "decimalLat": -29.490637 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.978966, "decimalLat": -30.421882 }, "geometry": { "type": "Point", "coordinates": [ 152.979, -30.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517505, "decimalLat": -34.453652 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378362, "decimalLat": -31.918245 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604722, "decimalLat": -34.427409 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.6109, "decimalLat": -28.68185 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.682 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630539, "decimalLat": -34.395078 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.950561, "decimalLat": -31.216978 }, "geometry": { "type": "Point", "coordinates": [ 152.951, -31.217 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400633, "decimalLat": -28.257664 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.33124, "decimalLat": -28.82175 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62946, "decimalLat": -34.388611 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513835, "decimalLat": -34.446411 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.216831, "decimalLat": -28.87218 }, "geometry": { "type": "Point", "coordinates": [ 153.217, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.57815, "decimalLat": -30.33197 }, "geometry": { "type": "Point", "coordinates": [ 151.578, -30.332 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910589, "decimalLat": -31.431446 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401898, "decimalLat": -28.259943 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902216, "decimalLat": -30.462807 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -30.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516902, "decimalLat": -34.447933 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.958535, "decimalLat": -31.287935 }, "geometry": { "type": "Point", "coordinates": [ 152.959, -31.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643949, "decimalLat": -34.391208 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613493, "decimalLat": -34.431953 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314609, "decimalLat": -28.846843 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796001, "decimalLat": -34.207579 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.208 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.649508, "decimalLat": -37.366283 }, "geometry": { "type": "Point", "coordinates": [ 149.65, -37.366 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627172, "decimalLat": -34.396473 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.36433, "decimalLat": -31.9505 }, "geometry": { "type": "Point", "coordinates": [ 152.364, -31.95 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313065, "decimalLat": -28.821373 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099788, "decimalLat": -29.491609 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.989088, "decimalLat": -36.503585 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.504 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606295, "decimalLat": -34.438277 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.531294, "decimalLat": -28.229296 }, "geometry": { "type": "Point", "coordinates": [ 153.531, -28.229 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494903, "decimalLat": -28.210224 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.21 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903199, "decimalLat": -29.337796 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -29.338 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893638, "decimalLat": -31.446628 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625973, "decimalLat": -34.389625 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.042, "decimalLat": -29.66 }, "geometry": { "type": "Point", "coordinates": [ 151.042, -29.66 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301536, "decimalLat": -28.9982 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.998 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639109, "decimalLat": -34.493278 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627379, "decimalLat": -34.420323 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90267, "decimalLat": -30.23729 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.237 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518142, "decimalLat": -34.451829 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555195, "decimalLat": -28.586543 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262977, "decimalLat": -28.881084 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -28.881 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.083496, "decimalLat": -29.745618 }, "geometry": { "type": "Point", "coordinates": [ 151.083, -29.746 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104133, "decimalLat": -29.480383 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065095, "decimalLat": -32.706601 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925348, "decimalLat": -31.45409 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061388, "decimalLat": -32.709662 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916075, "decimalLat": -31.445661 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627689, "decimalLat": -34.390091 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.484337, "decimalLat": -28.680835 }, "geometry": { "type": "Point", "coordinates": [ 153.484, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520403, "decimalLat": -34.468649 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812613, "decimalLat": -34.10581 }, "geometry": { "type": "Point", "coordinates": [ 150.813, -34.106 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514373, "decimalLat": -34.444763 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910807, "decimalLat": -31.431749 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630115, "decimalLat": -34.394295 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063851, "decimalLat": -32.705836 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63969, "decimalLat": -34.398032 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318734, "decimalLat": -28.815308 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629697, "decimalLat": -34.389454 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367822, "decimalLat": -28.866277 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515048, "decimalLat": -34.459084 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379615, "decimalLat": -31.911521 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.912 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630572, "decimalLat": -34.42089 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.015337, "decimalLat": -36.564757 }, "geometry": { "type": "Point", "coordinates": [ 150.015, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.170039, "decimalLat": -31.071839 }, "geometry": { "type": "Point", "coordinates": [ 150.17, -31.072 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.64, "decimalLat": -30.484131 }, "geometry": { "type": "Point", "coordinates": [ 151.64, -30.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519878, "decimalLat": -34.452538 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.498708, "decimalLat": -31.928166 }, "geometry": { "type": "Point", "coordinates": [ 152.499, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524717, "decimalLat": -34.465221 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929586, "decimalLat": -31.460967 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091339, "decimalLat": -29.487798 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.563856, "decimalLat": -34.500349 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -34.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878361, "decimalLat": -29.707102 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -29.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.796737, "decimalLat": -30.826158 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -30.826 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279776, "decimalLat": -28.873889 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039666, "decimalLat": -32.728849 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819515, "decimalLat": -31.465131 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262928, "decimalLat": -28.923326 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -28.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51808, "decimalLat": -34.453718 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604679, "decimalLat": -34.439237 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072576, "decimalLat": -32.722656 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513149, "decimalLat": -34.446072 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893782, "decimalLat": -31.446463 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822272, "decimalLat": -34.091605 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523012, "decimalLat": -34.464339 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.798386, "decimalLat": -34.136195 }, "geometry": { "type": "Point", "coordinates": [ 150.798, -34.136 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.778159, "decimalLat": -31.360232 }, "geometry": { "type": "Point", "coordinates": [ 152.778, -31.36 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.69903, "decimalLat": -30.1873 }, "geometry": { "type": "Point", "coordinates": [ 152.699, -30.187 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797403, "decimalLat": -31.125764 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784951, "decimalLat": -33.708134 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200415, "decimalLat": -29.353952 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888212, "decimalLat": -31.442949 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786303, "decimalLat": -29.578019 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -29.578 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60054, "decimalLat": -34.60904 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.609 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.046163, "decimalLat": -34.028699 }, "geometry": { "type": "Point", "coordinates": [ 151.046, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914421, "decimalLat": -31.451443 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06535, "decimalLat": -32.710944 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596146, "decimalLat": -34.411545 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073562, "decimalLat": -32.739975 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630815, "decimalLat": -34.386438 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914421, "decimalLat": -31.451443 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3159, "decimalLat": -28.822574 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.66621, "decimalLat": -30.50157 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625142, "decimalLat": -34.386706 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.800782, "decimalLat": -31.139683 }, "geometry": { "type": "Point", "coordinates": [ 152.801, -31.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61707, "decimalLat": -34.43434 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51943, "decimalLat": -34.456666 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87026, "decimalLat": -31.304217 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -31.304 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06385, "decimalLat": -32.706782 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.24788, "decimalLat": -32.22768 }, "geometry": { "type": "Point", "coordinates": [ 152.248, -32.228 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614467, "decimalLat": -34.429088 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632215, "decimalLat": -34.388466 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.298614, "decimalLat": -36.08564 }, "geometry": { "type": "Point", "coordinates": [ 149.299, -36.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635165, "decimalLat": -34.487991 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321214, "decimalLat": -28.827891 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808214, "decimalLat": -34.098121 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.858454, "decimalLat": -34.072662 }, "geometry": { "type": "Point", "coordinates": [ 150.858, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.731727, "decimalLat": -28.803954 }, "geometry": { "type": "Point", "coordinates": [ 152.732, -28.804 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.1867, "decimalLat": -31.957841 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -31.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623211, "decimalLat": -34.385767 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617124, "decimalLat": -34.434359 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288292, "decimalLat": -28.809314 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639508, "decimalLat": -34.392881 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907433, "decimalLat": -31.440849 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916509, "decimalLat": -31.450675 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.230275, "decimalLat": -34.263916 }, "geometry": { "type": "Point", "coordinates": [ 150.23, -34.264 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59019, "decimalLat": -28.65505 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521579, "decimalLat": -34.465707 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598598, "decimalLat": -34.428506 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514129, "decimalLat": -34.446417 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626025, "decimalLat": -34.390104 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633076, "decimalLat": -34.418514 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103479, "decimalLat": -29.485622 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302578, "decimalLat": -28.845525 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604799, "decimalLat": -34.427023 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.346548, "decimalLat": -28.910046 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.91 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915576, "decimalLat": -31.445979 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520358, "decimalLat": -34.453972 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189597, "decimalLat": -32.229205 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.961107, "decimalLat": -34.095162 }, "geometry": { "type": "Point", "coordinates": [ 150.961, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656065, "decimalLat": -34.45858 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517381, "decimalLat": -34.447574 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610247, "decimalLat": -34.419106 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608412, "decimalLat": -34.45561 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067342, "decimalLat": -32.710612 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624822, "decimalLat": -34.399574 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.092547, "decimalLat": -28.783966 }, "geometry": { "type": "Point", "coordinates": [ 152.093, -28.784 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103704, "decimalLat": -29.4858 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527159, "decimalLat": -34.469526 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285445, "decimalLat": -28.822308 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602999, "decimalLat": -34.437085 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98719, "decimalLat": -34.091408 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609402, "decimalLat": -34.418972 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630696, "decimalLat": -34.389888 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.085519, "decimalLat": -30.345701 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -30.346 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607442, "decimalLat": -34.433133 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629, "decimalLat": -34.389513 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.651174, "decimalLat": -34.399632 }, "geometry": { "type": "Point", "coordinates": [ 150.651, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791103, "decimalLat": -34.186262 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.186 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.387318, "decimalLat": -31.947317 }, "geometry": { "type": "Point", "coordinates": [ 152.387, -31.947 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.066364, "decimalLat": -30.92833 }, "geometry": { "type": "Point", "coordinates": [ 149.066, -30.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636211, "decimalLat": -34.485649 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105024, "decimalLat": -29.489666 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517262, "decimalLat": -34.452701 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200414, "decimalLat": -29.35394 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.305757, "decimalLat": -28.822191 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520313, "decimalLat": -34.454025 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514407, "decimalLat": -34.444745 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637217, "decimalLat": -34.423678 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638564, "decimalLat": -34.489463 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607577, "decimalLat": -34.42193 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521197, "decimalLat": -34.454331 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.388471, "decimalLat": -31.946624 }, "geometry": { "type": "Point", "coordinates": [ 152.388, -31.947 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.821464, "decimalLat": -31.425533 }, "geometry": { "type": "Point", "coordinates": [ 152.821, -31.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524157, "decimalLat": -34.463172 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.086458, "decimalLat": -30.186651 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -30.187 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334169, "decimalLat": -28.814201 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374042, "decimalLat": -31.915437 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519169, "decimalLat": -34.459943 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.228173, "decimalLat": -28.889032 }, "geometry": { "type": "Point", "coordinates": [ 153.228, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.325936, "decimalLat": -31.904941 }, "geometry": { "type": "Point", "coordinates": [ 152.326, -31.905 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945176, "decimalLat": -36.590676 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.591 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605211, "decimalLat": -34.436966 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62659, "decimalLat": -34.385481 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516095, "decimalLat": -34.44945 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063516, "decimalLat": -32.706102 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627898, "decimalLat": -34.42082 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.106133, "decimalLat": -30.319659 }, "geometry": { "type": "Point", "coordinates": [ 153.106, -30.32 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641466, "decimalLat": -34.395993 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.865353, "decimalLat": -34.024511 }, "geometry": { "type": "Point", "coordinates": [ 150.865, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.126308, "decimalLat": -31.415433 }, "geometry": { "type": "Point", "coordinates": [ 152.126, -31.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7644, "decimalLat": -34.65589 }, "geometry": { "type": "Point", "coordinates": [ 150.764, -34.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61549, "decimalLat": -34.435572 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877874, "decimalLat": -31.453184 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632918, "decimalLat": -34.417961 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437732, "decimalLat": -28.993352 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.993 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606647, "decimalLat": -34.434687 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.389441, "decimalLat": -29.016289 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.773834, "decimalLat": -30.202024 }, "geometry": { "type": "Point", "coordinates": [ 152.774, -30.202 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62901, "decimalLat": -34.390315 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627364, "decimalLat": -34.421225 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617192, "decimalLat": -34.434261 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627135, "decimalLat": -34.385834 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634188, "decimalLat": -34.488639 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.755218, "decimalLat": -31.632291 }, "geometry": { "type": "Point", "coordinates": [ 152.755, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513155, "decimalLat": -34.445838 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.401322, "decimalLat": -31.322372 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -31.322 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927917, "decimalLat": -29.727368 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.990128, "decimalLat": -36.434481 }, "geometry": { "type": "Point", "coordinates": [ 149.99, -36.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622927, "decimalLat": -34.383895 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519363, "decimalLat": -34.437571 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609268, "decimalLat": -34.420629 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.011319, "decimalLat": -30.423408 }, "geometry": { "type": "Point", "coordinates": [ 153.011, -30.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101188, "decimalLat": -29.490063 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518705, "decimalLat": -34.447321 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605015, "decimalLat": -34.42325 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838417, "decimalLat": -34.052138 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.052 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03524, "decimalLat": -32.736973 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61717, "decimalLat": -34.435054 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784457, "decimalLat": -33.709294 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.800906, "decimalLat": -31.12568 }, "geometry": { "type": "Point", "coordinates": [ 152.801, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.244418, "decimalLat": -30.05116 }, "geometry": { "type": "Point", "coordinates": [ 152.244, -30.051 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90922, "decimalLat": -31.46662 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608043, "decimalLat": -34.449084 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402244, "decimalLat": -28.256771 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.979649, "decimalLat": -34.104728 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.692597, "decimalLat": -32.704025 }, "geometry": { "type": "Point", "coordinates": [ 151.693, -32.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60416, "decimalLat": -34.43874 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.34022, "decimalLat": -31.98075 }, "geometry": { "type": "Point", "coordinates": [ 152.34, -31.981 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625258, "decimalLat": -34.384545 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795492, "decimalLat": -31.656124 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -31.656 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905437, "decimalLat": -31.480025 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.83685, "decimalLat": -34.050188 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.05 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.429996, "decimalLat": -28.616286 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -28.616 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529447, "decimalLat": -34.471294 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78122, "decimalLat": -34.102787 }, "geometry": { "type": "Point", "coordinates": [ 150.781, -34.103 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.170801, "decimalLat": -32.720415 }, "geometry": { "type": "Point", "coordinates": [ 149.171, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10364, "decimalLat": -29.485744 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617434, "decimalLat": -34.399692 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630298, "decimalLat": -34.420975 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520315, "decimalLat": -34.45398 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.001875, "decimalLat": -29.183701 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -29.184 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639094, "decimalLat": -34.491511 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.836236, "decimalLat": -31.594241 }, "geometry": { "type": "Point", "coordinates": [ 152.836, -31.594 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.215502, "decimalLat": -30.082651 }, "geometry": { "type": "Point", "coordinates": [ 152.216, -30.083 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642836, "decimalLat": -34.395595 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378915, "decimalLat": -31.915114 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515675, "decimalLat": -34.446746 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603336, "decimalLat": -34.436344 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643635, "decimalLat": -34.395827 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373819, "decimalLat": -31.914471 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521839, "decimalLat": -34.459122 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528051, "decimalLat": -34.456994 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.199809, "decimalLat": -29.354577 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.355 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532806, "decimalLat": -34.478078 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523424, "decimalLat": -34.45297 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519909, "decimalLat": -34.45261 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60584, "decimalLat": -34.426377 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299072, "decimalLat": -28.821034 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110662, "decimalLat": -29.489339 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606126, "decimalLat": -34.454871 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630819, "decimalLat": -34.420643 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.514752, "decimalLat": -28.237891 }, "geometry": { "type": "Point", "coordinates": [ 153.515, -28.238 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633059, "decimalLat": -34.419532 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633678, "decimalLat": -34.418408 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608958, "decimalLat": -34.434921 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.075749, "decimalLat": -32.725127 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.19617, "decimalLat": -29.78675 }, "geometry": { "type": "Point", "coordinates": [ 151.196, -29.787 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.359794, "decimalLat": -28.654774 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790413, "decimalLat": -31.129063 }, "geometry": { "type": "Point", "coordinates": [ 152.79, -31.129 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.857493, "decimalLat": -30.314103 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -30.314 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61099, "decimalLat": -34.45337 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513097, "decimalLat": -34.445972 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640959, "decimalLat": -34.414032 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.264751, "decimalLat": -30.983682 }, "geometry": { "type": "Point", "coordinates": [ 150.265, -30.984 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.857111, "decimalLat": -30.959107 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -30.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516188, "decimalLat": -34.449262 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516298, "decimalLat": -34.44702 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637287, "decimalLat": -34.423923 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.137379, "decimalLat": -28.858113 }, "geometry": { "type": "Point", "coordinates": [ 153.137, -28.858 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108113, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.117875, "decimalLat": -32.766593 }, "geometry": { "type": "Point", "coordinates": [ 152.118, -32.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604648, "decimalLat": -34.438407 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.981813, "decimalLat": -30.437766 }, "geometry": { "type": "Point", "coordinates": [ 152.982, -30.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520299, "decimalLat": -34.465546 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632227, "decimalLat": -34.38843 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.56513, "decimalLat": -33.6434 }, "geometry": { "type": "Point", "coordinates": [ 150.565, -33.643 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.916185, "decimalLat": -33.944023 }, "geometry": { "type": "Point", "coordinates": [ 150.916, -33.944 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903345, "decimalLat": -31.443998 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.406039, "decimalLat": -31.386864 }, "geometry": { "type": "Point", "coordinates": [ 150.406, -31.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066185, "decimalLat": -32.708193 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925931, "decimalLat": -31.459219 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513949, "decimalLat": -34.446972 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.973397, "decimalLat": -30.418407 }, "geometry": { "type": "Point", "coordinates": [ 152.973, -30.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627381, "decimalLat": -34.420269 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278284, "decimalLat": -28.93445 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513057, "decimalLat": -34.447323 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597265, "decimalLat": -34.410089 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002652, "decimalLat": -29.182353 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -29.182 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637225, "decimalLat": -34.487896 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917952, "decimalLat": -31.479203 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103913, "decimalLat": -29.489573 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285507, "decimalLat": -28.852027 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -28.852 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602908, "decimalLat": -34.435334 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640949, "decimalLat": -34.39619 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.193373, "decimalLat": -32.220759 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.221 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06845, "decimalLat": -32.719735 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092144, "decimalLat": -29.488065 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925162, "decimalLat": -31.454135 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.369052, "decimalLat": -28.953149 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.953 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091205, "decimalLat": -29.487901 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63861, "decimalLat": -34.489365 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.023207, "decimalLat": -28.413351 }, "geometry": { "type": "Point", "coordinates": [ 153.023, -28.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601238, "decimalLat": -34.417235 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609071, "decimalLat": -34.42067 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892385, "decimalLat": -31.477808 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514574, "decimalLat": -34.443856 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073059, "decimalLat": -32.724707 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892125, "decimalLat": -31.446909 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605236, "decimalLat": -34.423913 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884961, "decimalLat": -34.003485 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.003 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524542, "decimalLat": -34.267546 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.268 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.382914, "decimalLat": -31.921347 }, "geometry": { "type": "Point", "coordinates": [ 152.383, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.853946, "decimalLat": -31.431989 }, "geometry": { "type": "Point", "coordinates": [ 152.854, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.197719, "decimalLat": -32.009414 }, "geometry": { "type": "Point", "coordinates": [ 152.198, -32.009 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.176238, "decimalLat": -28.635524 }, "geometry": { "type": "Point", "coordinates": [ 152.176, -28.636 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639293, "decimalLat": -34.392795 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786098, "decimalLat": -34.211503 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -34.212 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.97543, "decimalLat": -34.104028 }, "geometry": { "type": "Point", "coordinates": [ 150.975, -34.104 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.711167, "decimalLat": -31.34267 }, "geometry": { "type": "Point", "coordinates": [ 152.711, -31.343 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104053, "decimalLat": -29.485146 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916227, "decimalLat": -31.453287 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277975, "decimalLat": -28.678974 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520978, "decimalLat": -34.453993 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878226, "decimalLat": -31.449067 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063291, "decimalLat": -32.706091 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618959, "decimalLat": -34.439498 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.816573, "decimalLat": -29.814294 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -29.814 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903112, "decimalLat": -30.236849 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.237 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624669, "decimalLat": -34.386129 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609862, "decimalLat": -34.455124 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104171, "decimalLat": -29.480794 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104283, "decimalLat": -29.480033 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.433598, "decimalLat": -31.793323 }, "geometry": { "type": "Point", "coordinates": [ 152.434, -31.793 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615202, "decimalLat": -34.435386 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109664, "decimalLat": -29.491506 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103865, "decimalLat": -29.485384 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.886398, "decimalLat": -34.014812 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.015 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063817, "decimalLat": -32.706548 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897307, "decimalLat": -31.47489 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607195, "decimalLat": -34.435698 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.100714, "decimalLat": -33.153346 }, "geometry": { "type": "Point", "coordinates": [ 151.101, -33.153 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.33124, "decimalLat": -28.82175 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631103, "decimalLat": -34.388183 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.469126, "decimalLat": -28.55567 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.407003, "decimalLat": -29.032061 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -29.032 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616955, "decimalLat": -34.441073 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.143949, "decimalLat": -30.090195 }, "geometry": { "type": "Point", "coordinates": [ 152.144, -30.09 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.646979, "decimalLat": -32.173607 }, "geometry": { "type": "Point", "coordinates": [ 148.647, -32.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790513, "decimalLat": -34.143688 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785672, "decimalLat": -33.705307 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.943605, "decimalLat": -29.708536 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -29.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094604, "decimalLat": -30.371512 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -30.372 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.671616, "decimalLat": -34.286451 }, "geometry": { "type": "Point", "coordinates": [ 150.672, -34.286 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908902, "decimalLat": -31.440674 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.598093, "decimalLat": -28.712751 }, "geometry": { "type": "Point", "coordinates": [ 153.598, -28.713 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.223866, "decimalLat": -33.133958 }, "geometry": { "type": "Point", "coordinates": [ 151.224, -33.134 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915469, "decimalLat": -31.445901 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.363168, "decimalLat": -28.689494 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10402, "decimalLat": -29.485291 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51964, "decimalLat": -34.461341 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51586, "decimalLat": -34.447128 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.855847, "decimalLat": -34.076045 }, "geometry": { "type": "Point", "coordinates": [ 150.856, -34.076 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615071, "decimalLat": -34.429253 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818836, "decimalLat": -31.467868 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.988571, "decimalLat": -28.68585 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -28.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519559, "decimalLat": -34.447158 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61585, "decimalLat": -34.436318 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516512, "decimalLat": -34.446411 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402776, "decimalLat": -28.711977 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.380327, "decimalLat": -31.921976 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623733, "decimalLat": -34.383478 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906905, "decimalLat": -31.163662 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.164 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293141, "decimalLat": -28.864651 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613241, "decimalLat": -34.432787 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10813, "decimalLat": -29.490558 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59876, "decimalLat": -34.414103 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51585, "decimalLat": -34.447074 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.990128, "decimalLat": -36.434481 }, "geometry": { "type": "Point", "coordinates": [ 149.99, -36.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104337, "decimalLat": -29.477735 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.530614, "decimalLat": -28.930282 }, "geometry": { "type": "Point", "coordinates": [ 152.531, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918172, "decimalLat": -31.485159 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822099, "decimalLat": -31.268543 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.269 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605335, "decimalLat": -34.437969 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514387, "decimalLat": -34.446521 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92957, "decimalLat": -31.458613 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617521, "decimalLat": -34.399658 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092203, "decimalLat": -29.488186 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640245, "decimalLat": -34.493156 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60442, "decimalLat": -34.438006 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.547784, "decimalLat": -33.623333 }, "geometry": { "type": "Point", "coordinates": [ 149.548, -33.623 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913935, "decimalLat": -31.473649 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604981, "decimalLat": -34.423303 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103371, "decimalLat": -29.489914 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605349, "decimalLat": -34.427169 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270395, "decimalLat": -28.931139 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -28.931 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555981, "decimalLat": -28.398851 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.798237, "decimalLat": -34.190765 }, "geometry": { "type": "Point", "coordinates": [ 150.798, -34.191 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892464, "decimalLat": -29.854432 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -29.854 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905629, "decimalLat": -31.436665 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555851, "decimalLat": -28.399168 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533446, "decimalLat": -34.479641 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604613, "decimalLat": -34.438866 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335449, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107411, "decimalLat": -29.490068 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.940498, "decimalLat": -28.640638 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -28.641 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907773, "decimalLat": -31.489249 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597722, "decimalLat": -34.418464 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.746224, "decimalLat": -31.256329 }, "geometry": { "type": "Point", "coordinates": [ 152.746, -31.256 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.444405, "decimalLat": -28.901995 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822089, "decimalLat": -34.100918 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614781, "decimalLat": -34.450947 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630965, "decimalLat": -34.388839 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530957, "decimalLat": -34.471009 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519332, "decimalLat": -34.457404 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1038, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.346548, "decimalLat": -28.910046 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520293, "decimalLat": -34.465753 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603932, "decimalLat": -34.438699 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520967, "decimalLat": -34.465415 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919139, "decimalLat": -31.46431 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911292, "decimalLat": -31.430776 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.333259, "decimalLat": -28.818643 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063631, "decimalLat": -32.705557 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822341, "decimalLat": -31.562884 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.563 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632098, "decimalLat": -34.394549 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635664, "decimalLat": -34.485738 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.39945, "decimalLat": -36.03167 }, "geometry": { "type": "Point", "coordinates": [ 149.399, -36.032 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637333, "decimalLat": -34.423816 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.881836, "decimalLat": -34.069134 }, "geometry": { "type": "Point", "coordinates": [ 150.882, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610655, "decimalLat": -34.430753 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842335, "decimalLat": -34.068546 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01346, "decimalLat": -30.412503 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -30.413 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905296, "decimalLat": -31.435838 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630022, "decimalLat": -34.395294 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639219, "decimalLat": -34.421752 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091285, "decimalLat": -29.487901 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.261246, "decimalLat": -28.913441 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -28.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522402, "decimalLat": -34.465823 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624683, "decimalLat": -34.383695 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30978, "decimalLat": -28.850935 }, "geometry": { "type": "Point", "coordinates": [ 153.31, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.969997, "decimalLat": -31.192743 }, "geometry": { "type": "Point", "coordinates": [ 152.97, -31.193 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103741, "decimalLat": -29.485454 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519866, "decimalLat": -34.45297 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104847, "decimalLat": -29.489699 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.379512, "decimalLat": -29.086999 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -29.087 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.058972, "decimalLat": -32.738424 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607954, "decimalLat": -28.664639 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.665 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784078, "decimalLat": -33.71671 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367822, "decimalLat": -28.866277 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108199, "decimalLat": -29.490269 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914421, "decimalLat": -31.451443 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930133, "decimalLat": -29.726604 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.009401, "decimalLat": -31.993933 }, "geometry": { "type": "Point", "coordinates": [ 152.009, -31.994 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925984, "decimalLat": -31.458851 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630676, "decimalLat": -34.420676 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61391, "decimalLat": -34.432971 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.979238, "decimalLat": -36.570187 }, "geometry": { "type": "Point", "coordinates": [ 149.979, -36.57 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108151, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928607, "decimalLat": -31.463982 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600306, "decimalLat": -34.428125 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.034932, "decimalLat": -30.26903 }, "geometry": { "type": "Point", "coordinates": [ 153.035, -30.269 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62715, "decimalLat": -34.398781 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.107655, "decimalLat": -31.419488 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -31.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.65317, "decimalLat": -30.556321 }, "geometry": { "type": "Point", "coordinates": [ 152.653, -30.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644383, "decimalLat": -34.391613 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621936, "decimalLat": -34.397769 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394737, "decimalLat": -28.854476 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.854 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516391, "decimalLat": -34.448662 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600174, "decimalLat": -34.428943 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.123233, "decimalLat": -35.076012 }, "geometry": { "type": "Point", "coordinates": [ 150.123, -35.076 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640192, "decimalLat": -34.395238 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108231, "decimalLat": -29.490032 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379417, "decimalLat": -31.915685 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108119, "decimalLat": -29.490213 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413213, "decimalLat": -31.932117 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.666119, "decimalLat": -33.571047 }, "geometry": { "type": "Point", "coordinates": [ 150.666, -33.571 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627293, "decimalLat": -34.420304 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.513928, "decimalLat": -33.637563 }, "geometry": { "type": "Point", "coordinates": [ 149.514, -33.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311341, "decimalLat": -28.87453 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.875 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637249, "decimalLat": -34.488221 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604539, "decimalLat": -34.424692 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53001, "decimalLat": -34.471008 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104165, "decimalLat": -29.480224 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630917, "decimalLat": -34.420635 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.234723, "decimalLat": -31.644972 }, "geometry": { "type": "Point", "coordinates": [ 150.235, -31.645 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.804326, "decimalLat": -31.603505 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -31.604 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278306, "decimalLat": -28.934472 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.934 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602977, "decimalLat": -34.45196 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.464226, "decimalLat": -28.709279 }, "geometry": { "type": "Point", "coordinates": [ 153.464, -28.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.675, "decimalLat": -32.662 }, "geometry": { "type": "Point", "coordinates": [ 151.675, -32.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.271045, "decimalLat": -31.934235 }, "geometry": { "type": "Point", "coordinates": [ 152.271, -31.934 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813062, "decimalLat": -33.376554 }, "geometry": { "type": "Point", "coordinates": [ 150.813, -33.377 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521337, "decimalLat": -34.466135 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662826, "decimalLat": -33.526307 }, "geometry": { "type": "Point", "coordinates": [ 150.663, -33.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.735887, "decimalLat": -32.515004 }, "geometry": { "type": "Point", "coordinates": [ 151.736, -32.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.173331, "decimalLat": -32.666864 }, "geometry": { "type": "Point", "coordinates": [ 152.173, -32.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531722, "decimalLat": -34.464623 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.698976, "decimalLat": -31.785133 }, "geometry": { "type": "Point", "coordinates": [ 152.699, -31.785 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599657, "decimalLat": -34.427265 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.716872, "decimalLat": -34.284386 }, "geometry": { "type": "Point", "coordinates": [ 150.717, -34.284 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017126, "decimalLat": -30.374914 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -30.375 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786364, "decimalLat": -33.711685 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604206, "decimalLat": -34.426813 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.162329, "decimalLat": -32.713215 }, "geometry": { "type": "Point", "coordinates": [ 152.162, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336838, "decimalLat": -28.816684 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915153, "decimalLat": -31.446399 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415353, "decimalLat": -31.933102 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875957, "decimalLat": -31.450726 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.987449, "decimalLat": -36.51267 }, "geometry": { "type": "Point", "coordinates": [ 149.987, -36.513 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09651, "decimalLat": -29.485608 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642152, "decimalLat": -34.397106 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906239, "decimalLat": -31.44696 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.369052, "decimalLat": -28.953149 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522277, "decimalLat": -34.465631 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10107, "decimalLat": -29.490077 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532552, "decimalLat": -34.481165 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.046985, "decimalLat": -34.0268 }, "geometry": { "type": "Point", "coordinates": [ 151.047, -34.027 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513063, "decimalLat": -34.447125 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.059473, "decimalLat": -30.911228 }, "geometry": { "type": "Point", "coordinates": [ 153.059, -30.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64178, "decimalLat": -34.395638 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614506, "decimalLat": -34.436896 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323702, "decimalLat": -28.672297 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03058, "decimalLat": -32.184695 }, "geometry": { "type": "Point", "coordinates": [ 152.031, -32.185 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.089603, "decimalLat": -33.139385 }, "geometry": { "type": "Point", "coordinates": [ 151.09, -33.139 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.845694, "decimalLat": -31.192916 }, "geometry": { "type": "Point", "coordinates": [ 152.846, -31.193 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.844126, "decimalLat": -34.063186 }, "geometry": { "type": "Point", "coordinates": [ 150.844, -34.063 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379891, "decimalLat": -31.920849 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317943, "decimalLat": -28.82636 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105304, "decimalLat": -31.411202 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -31.411 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.97061, "decimalLat": -36.58782 }, "geometry": { "type": "Point", "coordinates": [ 149.971, -36.588 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108151, "decimalLat": -29.490287 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913957, "decimalLat": -29.006796 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -29.007 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785751, "decimalLat": -33.70761 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.79325, "decimalLat": -32.697386 }, "geometry": { "type": "Point", "coordinates": [ 151.793, -32.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10394, "decimalLat": -29.489605 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.109971, "decimalLat": -32.738404 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262256, "decimalLat": -28.950844 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -28.951 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.804653, "decimalLat": -34.157179 }, "geometry": { "type": "Point", "coordinates": [ 150.805, -34.157 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189959, "decimalLat": -32.223426 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639109, "decimalLat": -34.491746 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640758, "decimalLat": -34.494284 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608616, "decimalLat": -34.433941 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.982585, "decimalLat": -34.130917 }, "geometry": { "type": "Point", "coordinates": [ 150.983, -34.131 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635419, "decimalLat": -34.488609 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.361953, "decimalLat": -35.992618 }, "geometry": { "type": "Point", "coordinates": [ 149.362, -35.993 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601353, "decimalLat": -34.417381 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.02666, "decimalLat": -33.76622 }, "geometry": { "type": "Point", "coordinates": [ 150.027, -33.766 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633809, "decimalLat": -34.392509 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520498, "decimalLat": -34.454047 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513806, "decimalLat": -34.446302 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785441, "decimalLat": -33.707706 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924126, "decimalLat": -31.473213 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 150.76497, "decimalLat": -34.927256 }, "geometry": { "type": "Point", "coordinates": [ 150.765, -34.927 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.94061, "decimalLat": -30.39287 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -30.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51385, "decimalLat": -34.447358 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60596, "decimalLat": -34.437819 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.613718, "decimalLat": -28.658397 }, "geometry": { "type": "Point", "coordinates": [ 153.614, -28.658 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622854, "decimalLat": -34.384561 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927732, "decimalLat": -30.507605 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -30.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60582, "decimalLat": -34.454531 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.43636, "decimalLat": -31.943356 }, "geometry": { "type": "Point", "coordinates": [ 152.436, -31.943 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909127, "decimalLat": -31.453398 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642946, "decimalLat": -34.394786 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.655534, "decimalLat": -32.686569 }, "geometry": { "type": "Point", "coordinates": [ 151.656, -32.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616337, "decimalLat": -34.451356 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.440619, "decimalLat": -28.981717 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.982 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513829, "decimalLat": -34.446257 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51746, "decimalLat": -34.453724 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.808817, "decimalLat": -31.652253 }, "geometry": { "type": "Point", "coordinates": [ 152.809, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552103, "decimalLat": -33.491237 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.388372, "decimalLat": -28.61134 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -28.611 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.218372, "decimalLat": -28.885717 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630618, "decimalLat": -34.420801 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.577567, "decimalLat": -34.476 }, "geometry": { "type": "Point", "coordinates": [ 150.578, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628801, "decimalLat": -34.389238 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78484, "decimalLat": -33.713675 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520946, "decimalLat": -34.466839 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339182, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.237605, "decimalLat": -31.637937 }, "geometry": { "type": "Point", "coordinates": [ 152.238, -31.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10151, "decimalLat": -29.489526 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273906, "decimalLat": -28.888635 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.94059, "decimalLat": -29.736166 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -29.736 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.21371, "decimalLat": -34.61875 }, "geometry": { "type": "Point", "coordinates": [ 150.214, -34.619 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095532, "decimalLat": -29.483435 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627201, "decimalLat": -34.385809 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200473, "decimalLat": -29.354393 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606626, "decimalLat": -34.434668 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10932, "decimalLat": -29.490787 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520235, "decimalLat": -34.465509 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520153, "decimalLat": -34.453571 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794163, "decimalLat": -31.638555 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923854, "decimalLat": -31.443304 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615629, "decimalLat": -33.431033 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -33.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317214, "decimalLat": -28.846236 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521459, "decimalLat": -34.465705 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626277, "decimalLat": -34.421204 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.436118, "decimalLat": -31.818397 }, "geometry": { "type": "Point", "coordinates": [ 152.436, -31.818 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786946, "decimalLat": -33.708375 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374871, "decimalLat": -31.915681 }, "geometry": { "type": "Point", "coordinates": [ 152.375, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108065, "decimalLat": -29.490339 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615512, "decimalLat": -34.435563 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924357, "decimalLat": -30.504964 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -30.505 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.365456, "decimalLat": -36.015923 }, "geometry": { "type": "Point", "coordinates": [ 149.365, -36.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926107, "decimalLat": -31.471364 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.012809, "decimalLat": -30.365322 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -30.365 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62807, "decimalLat": -34.390847 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604159, "decimalLat": -34.437983 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520431, "decimalLat": -34.45409 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518068, "decimalLat": -34.451563 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.095687, "decimalLat": -31.079438 }, "geometry": { "type": "Point", "coordinates": [ 150.096, -31.079 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890135, "decimalLat": -31.458972 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608538, "decimalLat": -34.422562 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603665, "decimalLat": -34.440831 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.504788, "decimalLat": -28.794781 }, "geometry": { "type": "Point", "coordinates": [ 153.505, -28.795 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.052346, "decimalLat": -28.468198 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -28.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.198292, "decimalLat": -32.220827 }, "geometry": { "type": "Point", "coordinates": [ 152.198, -32.221 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521404, "decimalLat": -34.465722 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.167463, "decimalLat": -29.432632 }, "geometry": { "type": "Point", "coordinates": [ 153.167, -29.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293409, "decimalLat": -28.864618 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.77252, "decimalLat": -32.428555 }, "geometry": { "type": "Point", "coordinates": [ 151.773, -32.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604735, "decimalLat": -34.427338 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.938192, "decimalLat": -29.722007 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -29.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636212, "decimalLat": -34.420341 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596693, "decimalLat": -34.414865 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607616, "decimalLat": -34.432758 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.803229, "decimalLat": -29.560969 }, "geometry": { "type": "Point", "coordinates": [ 152.803, -29.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905478, "decimalLat": -31.467655 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.829753, "decimalLat": -34.878995 }, "geometry": { "type": "Point", "coordinates": [ 146.83, -34.879 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.217689, "decimalLat": -28.830442 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926578, "decimalLat": -31.454549 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.377772, "decimalLat": -31.91785 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915039, "decimalLat": -31.446352 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.859776, "decimalLat": -34.03093 }, "geometry": { "type": "Point", "coordinates": [ 150.86, -34.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.055172, "decimalLat": -33.764804 }, "geometry": { "type": "Point", "coordinates": [ 150.055, -33.765 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.876081, "decimalLat": -31.455905 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.650362, "decimalLat": -34.40298 }, "geometry": { "type": "Point", "coordinates": [ 150.65, -34.403 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017126, "decimalLat": -30.374914 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -30.375 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.098861, "decimalLat": -32.175333 }, "geometry": { "type": "Point", "coordinates": [ 152.099, -32.175 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.353824, "decimalLat": -28.894609 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -28.895 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.781397, "decimalLat": -34.196128 }, "geometry": { "type": "Point", "coordinates": [ 150.781, -34.196 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.638392, "decimalLat": -31.555227 }, "geometry": { "type": "Point", "coordinates": [ 152.638, -31.555 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.854278, "decimalLat": -32.726415 }, "geometry": { "type": "Point", "coordinates": [ 151.854, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784899, "decimalLat": -33.716394 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.936774, "decimalLat": -36.662249 }, "geometry": { "type": "Point", "coordinates": [ 149.937, -36.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.6109, "decimalLat": -28.68185 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.682 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281817, "decimalLat": -28.822398 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885124, "decimalLat": -31.440551 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.780333, "decimalLat": -32.714185 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517455, "decimalLat": -34.452056 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556828, "decimalLat": -28.403846 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92573, "decimalLat": -31.444134 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092272, "decimalLat": -29.488144 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637302, "decimalLat": -34.423752 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610322, "decimalLat": -34.419117 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914215, "decimalLat": -31.460656 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915994, "decimalLat": -31.444793 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894418, "decimalLat": -31.448305 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.83008, "decimalLat": -31.650157 }, "geometry": { "type": "Point", "coordinates": [ 152.83, -31.65 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095909, "decimalLat": -29.482624 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065691, "decimalLat": -32.743065 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.743 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615878, "decimalLat": -34.436481 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.083234, "decimalLat": -29.74731 }, "geometry": { "type": "Point", "coordinates": [ 151.083, -29.747 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625275, "decimalLat": -34.385834 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922548, "decimalLat": -31.4469 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644351, "decimalLat": -34.396274 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.831321, "decimalLat": -29.654391 }, "geometry": { "type": "Point", "coordinates": [ 150.831, -29.654 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924859, "decimalLat": -31.453985 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60492, "decimalLat": -34.437655 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.817545, "decimalLat": -29.618249 }, "geometry": { "type": "Point", "coordinates": [ 150.818, -29.618 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655834, "decimalLat": -34.45633 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809, "decimalLat": -34.20866 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896393, "decimalLat": -31.447575 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604539, "decimalLat": -34.424692 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909796, "decimalLat": -31.471601 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643817, "decimalLat": -34.390881 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9581, "decimalLat": -30.6487 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -30.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534664, "decimalLat": -34.463421 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823603, "decimalLat": -29.812571 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.813 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039817, "decimalLat": -32.735366 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.109142, "decimalLat": -35.047975 }, "geometry": { "type": "Point", "coordinates": [ 150.109, -35.048 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110597, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.933901, "decimalLat": -33.952749 }, "geometry": { "type": "Point", "coordinates": [ 150.934, -33.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637304, "decimalLat": -34.423698 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643253, "decimalLat": -34.397019 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.418213, "decimalLat": -31.905008 }, "geometry": { "type": "Point", "coordinates": [ 152.418, -31.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.767163, "decimalLat": -32.406834 }, "geometry": { "type": "Point", "coordinates": [ 149.767, -32.407 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639127, "decimalLat": -34.491503 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092224, "decimalLat": -29.488102 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.039191, "decimalLat": -34.018358 }, "geometry": { "type": "Point", "coordinates": [ 151.039, -34.018 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552078, "decimalLat": -33.491254 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.574448, "decimalLat": -32.588052 }, "geometry": { "type": "Point", "coordinates": [ 149.574, -32.588 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520766, "decimalLat": -34.465222 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629031, "decimalLat": -34.389567 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.521123, "decimalLat": -28.72186 }, "geometry": { "type": "Point", "coordinates": [ 153.521, -28.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.977245, "decimalLat": -34.086512 }, "geometry": { "type": "Point", "coordinates": [ 150.977, -34.087 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103755, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.385934, "decimalLat": -29.091518 }, "geometry": { "type": "Point", "coordinates": [ 153.386, -29.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521633, "decimalLat": -34.449147 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403053, "decimalLat": -31.925208 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49754, "decimalLat": -28.768431 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.768 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637104, "decimalLat": -34.485252 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.523761, "decimalLat": -32.338572 }, "geometry": { "type": "Point", "coordinates": [ 152.524, -32.339 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272199, "decimalLat": -29.010393 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -29.01 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.549569, "decimalLat": -33.563409 }, "geometry": { "type": "Point", "coordinates": [ 149.55, -33.563 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923591, "decimalLat": -31.456352 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59019, "decimalLat": -28.65505 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.978594, "decimalLat": -34.084503 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -34.085 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928862, "decimalLat": -31.459497 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607164, "decimalLat": -34.437573 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895113, "decimalLat": -31.457515 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848251, "decimalLat": -34.078728 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.079 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298463, "decimalLat": -28.81848 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.004617, "decimalLat": -29.182696 }, "geometry": { "type": "Point", "coordinates": [ 153.005, -29.183 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521274, "decimalLat": -34.465692 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616992, "decimalLat": -34.433663 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908555, "decimalLat": -31.454642 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520399, "decimalLat": -34.454054 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609206, "decimalLat": -34.420483 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808288, "decimalLat": -34.098117 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627232, "decimalLat": -34.421294 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104031, "decimalLat": -29.484371 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109363, "decimalLat": -29.490586 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910323, "decimalLat": -30.505568 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784391, "decimalLat": -31.630507 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515552, "decimalLat": -34.450899 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.824237, "decimalLat": -34.151179 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.151 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930019, "decimalLat": -31.4766 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613964, "decimalLat": -34.433008 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533034, "decimalLat": -34.481085 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.02848, "decimalLat": -32.73263 }, "geometry": { "type": "Point", "coordinates": [ 152.028, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409406, "decimalLat": -31.910186 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085295, "decimalLat": -32.729403 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596308, "decimalLat": -34.411963 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977337, "decimalLat": -36.522201 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.522 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296147, "decimalLat": -28.809588 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.81 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.066755, "decimalLat": -29.742098 }, "geometry": { "type": "Point", "coordinates": [ 151.067, -29.742 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523472, "decimalLat": -28.686915 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600047, "decimalLat": -34.418176 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.840035, "decimalLat": -29.320091 }, "geometry": { "type": "Point", "coordinates": [ 152.84, -29.32 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60486, "decimalLat": -34.425257 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.806661, "decimalLat": -31.127475 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.38376, "decimalLat": -31.929119 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.929 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.499496, "decimalLat": -28.223126 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519933, "decimalLat": -34.452539 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604781, "decimalLat": -34.427275 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907877, "decimalLat": -31.468619 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10821, "decimalLat": -29.490213 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.955919, "decimalLat": -30.667328 }, "geometry": { "type": "Point", "coordinates": [ 152.956, -30.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.851809, "decimalLat": -32.046777 }, "geometry": { "type": "Point", "coordinates": [ 151.852, -32.047 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635326, "decimalLat": -34.488454 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400672, "decimalLat": -28.258145 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616581, "decimalLat": -34.438162 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.414263, "decimalLat": -28.666771 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.549427, "decimalLat": -28.569742 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.57 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627027, "decimalLat": -34.389673 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316134, "decimalLat": -28.821099 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109755, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104546, "decimalLat": -29.477319 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604144, "decimalLat": -34.439289 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103935, "decimalLat": -29.489549 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638671, "decimalLat": -34.491431 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900722, "decimalLat": -31.409189 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.409 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279565, "decimalLat": -28.874205 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614567, "decimalLat": -34.433976 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285323, "decimalLat": -29.040946 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -29.041 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.547279, "decimalLat": -28.384631 }, "geometry": { "type": "Point", "coordinates": [ 153.547, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.778159, "decimalLat": -31.360232 }, "geometry": { "type": "Point", "coordinates": [ 152.778, -31.36 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513093, "decimalLat": -34.447225 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792885, "decimalLat": -34.143675 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891395, "decimalLat": -30.467635 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -30.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627137, "decimalLat": -34.389603 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900919, "decimalLat": -31.474006 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108162, "decimalLat": -29.490539 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002256, "decimalLat": -29.182481 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -29.182 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613279, "decimalLat": -34.432598 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09202, "decimalLat": -29.488027 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623159, "decimalLat": -34.385685 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.774513, "decimalLat": -32.236859 }, "geometry": { "type": "Point", "coordinates": [ 151.775, -32.237 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632793, "decimalLat": -34.418905 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616224, "decimalLat": -34.434621 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608322, "decimalLat": -34.435089 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394064, "decimalLat": -28.267041 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.267 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095224, "decimalLat": -28.601078 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -28.601 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989041, "decimalLat": -34.030317 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.03 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.508229, "decimalLat": -28.618208 }, "geometry": { "type": "Point", "coordinates": [ 153.508, -28.618 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617192, "decimalLat": -34.434271 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81935, "decimalLat": -31.648892 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.958541, "decimalLat": -33.709989 }, "geometry": { "type": "Point", "coordinates": [ 150.959, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.487886, "decimalLat": -28.682671 }, "geometry": { "type": "Point", "coordinates": [ 153.488, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627242, "decimalLat": -34.390534 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.418213, "decimalLat": -31.905008 }, "geometry": { "type": "Point", "coordinates": [ 152.418, -31.905 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.802107, "decimalLat": -31.474753 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624298, "decimalLat": -34.386185 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615878, "decimalLat": -34.434957 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090856, "decimalLat": -29.480131 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6095, "decimalLat": -34.418947 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104761, "decimalLat": -29.489666 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629001, "decimalLat": -34.396031 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53304, "decimalLat": -34.38071 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.381 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.705766, "decimalLat": -33.344283 }, "geometry": { "type": "Point", "coordinates": [ 150.706, -33.344 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.679901, "decimalLat": -32.3877 }, "geometry": { "type": "Point", "coordinates": [ 150.68, -32.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901864, "decimalLat": -31.442303 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60155, "decimalLat": -28.68121 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.055339, "decimalLat": -33.778195 }, "geometry": { "type": "Point", "coordinates": [ 150.055, -33.778 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520618, "decimalLat": -34.450714 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90819, "decimalLat": -31.475785 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.007737, "decimalLat": -32.728287 }, "geometry": { "type": "Point", "coordinates": [ 152.008, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557714, "decimalLat": -28.398325 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630234, "decimalLat": -34.420947 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109363, "decimalLat": -29.490469 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610442, "decimalLat": -34.419119 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071428, "decimalLat": -30.888396 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922969, "decimalLat": -31.460013 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606644, "decimalLat": -34.457703 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322321, "decimalLat": -28.817057 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.876658, "decimalLat": -34.015472 }, "geometry": { "type": "Point", "coordinates": [ 150.877, -34.015 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928707, "decimalLat": -31.459113 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517727, "decimalLat": -34.441378 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527149, "decimalLat": -34.469489 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635618, "decimalLat": -34.488144 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561219, "decimalLat": -28.393386 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.661695, "decimalLat": -34.458471 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517916, "decimalLat": -34.444943 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639094, "decimalLat": -34.491511 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.391331, "decimalLat": -28.867547 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.868 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.797306, "decimalLat": -34.113612 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.114 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.793315, "decimalLat": -34.129134 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.129 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527512, "decimalLat": -34.469352 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468596, "decimalLat": -28.557 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.101318, "decimalLat": -33.778446 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -33.778 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.896381, "decimalLat": -32.472815 }, "geometry": { "type": "Point", "coordinates": [ 151.896, -32.473 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.390054, "decimalLat": -28.282383 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.282 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907801, "decimalLat": -31.434663 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.666545, "decimalLat": -34.249366 }, "geometry": { "type": "Point", "coordinates": [ 150.667, -34.249 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514255, "decimalLat": -34.445824 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.42455, "decimalLat": -28.662539 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002312, "decimalLat": -29.182186 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -29.182 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784406, "decimalLat": -34.192158 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -34.192 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306421, "decimalLat": -28.821728 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926025, "decimalLat": -31.458898 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039889, "decimalLat": -32.730533 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868196, "decimalLat": -31.474859 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.290989, "decimalLat": -28.711703 }, "geometry": { "type": "Point", "coordinates": [ 153.291, -28.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.328392, "decimalLat": -28.666586 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782127, "decimalLat": -31.483779 }, "geometry": { "type": "Point", "coordinates": [ 152.782, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519898, "decimalLat": -34.45261 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626752, "decimalLat": -34.421348 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.390764, "decimalLat": -31.95843 }, "geometry": { "type": "Point", "coordinates": [ 152.391, -31.958 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.866622, "decimalLat": -34.023931 }, "geometry": { "type": "Point", "coordinates": [ 150.867, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639431, "decimalLat": -34.399514 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61029, "decimalLat": -34.419125 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90641, "decimalLat": -30.24074 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -30.241 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10416, "decimalLat": -29.478791 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928733, "decimalLat": -31.459115 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514585, "decimalLat": -34.446453 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.99157, "decimalLat": -29.705835 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -29.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189597, "decimalLat": -32.229205 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513095, "decimalLat": -34.446035 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604245, "decimalLat": -34.435 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515747, "decimalLat": -34.446891 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101419, "decimalLat": -29.489648 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930481, "decimalLat": -31.449625 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525394, "decimalLat": -34.45887 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.807865, "decimalLat": -31.670986 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -31.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59617, "decimalLat": -28.65207 }, "geometry": { "type": "Point", "coordinates": [ 153.596, -28.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.758918, "decimalLat": -31.246496 }, "geometry": { "type": "Point", "coordinates": [ 152.759, -31.246 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324745, "decimalLat": -36.294353 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.294 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063608, "decimalLat": -32.705708 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.38713, "decimalLat": -31.876522 }, "geometry": { "type": "Point", "coordinates": [ 152.387, -31.877 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.531123, "decimalLat": -28.687383 }, "geometry": { "type": "Point", "coordinates": [ 153.531, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790894, "decimalLat": -34.135265 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.135 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296899, "decimalLat": -28.820794 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.17254, "decimalLat": -29.891456 }, "geometry": { "type": "Point", "coordinates": [ 152.173, -29.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.84311, "decimalLat": -34.05664 }, "geometry": { "type": "Point", "coordinates": [ 150.843, -34.057 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.406428, "decimalLat": -28.978044 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.978 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614364, "decimalLat": -34.430032 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.382819, "decimalLat": -28.7863 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -28.786 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556012, "decimalLat": -28.399483 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912089, "decimalLat": -31.469217 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637345, "decimalLat": -34.488673 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825124, "decimalLat": -31.652416 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527195, "decimalLat": -34.469391 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786241, "decimalLat": -33.706027 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.63661, "decimalLat": -28.63518 }, "geometry": { "type": "Point", "coordinates": [ 153.637, -28.635 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514406, "decimalLat": -34.446612 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.0108, "decimalLat": -34.83788 }, "geometry": { "type": "Point", "coordinates": [ 150.011, -34.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521383, "decimalLat": -34.466433 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60798, "decimalLat": -28.68934 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.793832, "decimalLat": -34.137524 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.826153, "decimalLat": -29.809912 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -29.81 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637324, "decimalLat": -34.423744 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897146, "decimalLat": -31.460297 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331167, "decimalLat": -28.719403 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.053503, "decimalLat": -33.774437 }, "geometry": { "type": "Point", "coordinates": [ 150.054, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632738, "decimalLat": -34.41894 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.670037, "decimalLat": -32.606552 }, "geometry": { "type": "Point", "coordinates": [ 151.67, -32.607 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081965, "decimalLat": -32.73276 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51707, "decimalLat": -34.447405 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81152, "decimalLat": -29.515097 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -29.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.851816, "decimalLat": -32.722852 }, "geometry": { "type": "Point", "coordinates": [ 151.852, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279987, "decimalLat": -29.033708 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -29.034 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630081, "decimalLat": -34.394348 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62442, "decimalLat": -34.399936 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.456385, "decimalLat": -28.649096 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.591093, "decimalLat": -28.74039 }, "geometry": { "type": "Point", "coordinates": [ 153.591, -28.74 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.3166, "decimalLat": -30.3 }, "geometry": { "type": "Point", "coordinates": [ 151.317, -30.3 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403784, "decimalLat": -31.939273 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.939 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928234, "decimalLat": -31.459581 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626343, "decimalLat": -34.421187 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62738, "decimalLat": -34.420287 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.224344, "decimalLat": -28.941391 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515133, "decimalLat": -34.456958 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623744, "decimalLat": -34.383461 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104911, "decimalLat": -29.476792 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394689, "decimalLat": -28.95968 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615535, "decimalLat": -34.432093 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518323, "decimalLat": -34.451397 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.824127, "decimalLat": -34.150307 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552928, "decimalLat": -33.561952 }, "geometry": { "type": "Point", "coordinates": [ 149.553, -33.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644078, "decimalLat": -34.396313 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51718, "decimalLat": -34.446253 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629331, "decimalLat": -28.637349 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600481, "decimalLat": -34.427344 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622817, "decimalLat": -34.397399 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.198292, "decimalLat": -32.220827 }, "geometry": { "type": "Point", "coordinates": [ 152.198, -32.221 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.552367, "decimalLat": -28.586544 }, "geometry": { "type": "Point", "coordinates": [ 153.552, -28.587 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104106, "decimalLat": -29.483885 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.082882, "decimalLat": -29.728539 }, "geometry": { "type": "Point", "coordinates": [ 151.083, -29.729 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109363, "decimalLat": -29.490455 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067434, "decimalLat": -32.708155 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916167, "decimalLat": -31.485794 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895326, "decimalLat": -31.447895 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785979, "decimalLat": -33.714084 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637334, "decimalLat": -34.488664 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786645, "decimalLat": -33.708651 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108049, "decimalLat": -29.490184 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89309, "decimalLat": -31.45491 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.714762, "decimalLat": -30.139603 }, "geometry": { "type": "Point", "coordinates": [ 152.715, -30.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912151, "decimalLat": -30.488316 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -30.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.170878, "decimalLat": -33.200215 }, "geometry": { "type": "Point", "coordinates": [ 151.171, -33.2 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640309, "decimalLat": -34.415877 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.416 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622631, "decimalLat": -34.383998 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.034879, "decimalLat": -35.079586 }, "geometry": { "type": "Point", "coordinates": [ 150.035, -35.08 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101167, "decimalLat": -29.49004 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110865, "decimalLat": -29.488503 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514176, "decimalLat": -34.447373 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557697, "decimalLat": -28.388099 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630185, "decimalLat": -34.420342 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897428, "decimalLat": -31.475274 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985399, "decimalLat": -34.091166 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610271, "decimalLat": -34.419025 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.802063, "decimalLat": -30.325257 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -30.325 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.250553, "decimalLat": -36.019986 }, "geometry": { "type": "Point", "coordinates": [ 149.251, -36.02 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6465, "decimalLat": -34.39718 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522383, "decimalLat": -34.465751 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103924, "decimalLat": -29.489573 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9286, "decimalLat": -33.95807 }, "geometry": { "type": "Point", "coordinates": [ 150.929, -33.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521179, "decimalLat": -34.435787 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.995213, "decimalLat": -28.473948 }, "geometry": { "type": "Point", "coordinates": [ 152.995, -28.474 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066185, "decimalLat": -32.708193 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525435, "decimalLat": -34.458591 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604266, "decimalLat": -34.439211 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603438, "decimalLat": -34.435435 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615709, "decimalLat": -34.43325 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877911, "decimalLat": -31.450436 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283251, "decimalLat": -28.822308 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.991907, "decimalLat": -32.720714 }, "geometry": { "type": "Point", "coordinates": [ 151.992, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101966, "decimalLat": -29.488975 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905546, "decimalLat": -31.437726 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615215, "decimalLat": -34.432618 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518584, "decimalLat": -34.435608 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626602, "decimalLat": -34.385463 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637467, "decimalLat": -34.42371 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.6077, "decimalLat": -30.52432 }, "geometry": { "type": "Point", "coordinates": [ 152.608, -30.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.79325, "decimalLat": -32.697386 }, "geometry": { "type": "Point", "coordinates": [ 151.793, -32.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92671, "decimalLat": -31.471075 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.02018, "decimalLat": -32.739618 }, "geometry": { "type": "Point", "coordinates": [ 152.02, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316363, "decimalLat": -28.822558 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.230194, "decimalLat": -29.934297 }, "geometry": { "type": "Point", "coordinates": [ 152.23, -29.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.080304, "decimalLat": -30.35221 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -30.352 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.651208, "decimalLat": -33.531096 }, "geometry": { "type": "Point", "coordinates": [ 150.651, -33.531 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09341, "decimalLat": -29.488788 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61612, "decimalLat": -34.431013 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606614, "decimalLat": -34.434334 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529008, "decimalLat": -34.471393 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527581, "decimalLat": -34.455 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518677, "decimalLat": -34.454875 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.04376, "decimalLat": -34.91207 }, "geometry": { "type": "Point", "coordinates": [ 150.044, -34.912 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.472453, "decimalLat": -28.268646 }, "geometry": { "type": "Point", "coordinates": [ 153.472, -28.269 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.646979, "decimalLat": -32.173607 }, "geometry": { "type": "Point", "coordinates": [ 148.647, -32.174 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900602, "decimalLat": -31.471746 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627474, "decimalLat": -34.421191 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911447, "decimalLat": -31.429645 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906388, "decimalLat": -31.465805 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.373633, "decimalLat": -29.084298 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -29.084 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624232, "decimalLat": -34.388897 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498212, "decimalLat": -28.767297 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.767 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.086695, "decimalLat": -32.17517 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -32.175 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611208, "decimalLat": -34.4308 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.052346, "decimalLat": -28.468198 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -28.468 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.668509, "decimalLat": -32.66138 }, "geometry": { "type": "Point", "coordinates": [ 151.669, -32.661 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.236855, "decimalLat": -28.287244 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -28.287 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.316428, "decimalLat": -36.297807 }, "geometry": { "type": "Point", "coordinates": [ 149.316, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.15607, "decimalLat": -33.076619 }, "geometry": { "type": "Point", "coordinates": [ 151.156, -33.077 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637528, "decimalLat": -34.488334 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373528, "decimalLat": -31.914352 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288541, "decimalLat": -28.692644 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.439049, "decimalLat": -31.781095 }, "geometry": { "type": "Point", "coordinates": [ 152.439, -31.781 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513808, "decimalLat": -34.446221 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616315, "decimalLat": -34.43602 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.562078, "decimalLat": -32.86916 }, "geometry": { "type": "Point", "coordinates": [ 151.562, -32.869 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.415262, "decimalLat": -28.672208 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.823749, "decimalLat": -34.149854 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926853, "decimalLat": -31.454742 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.828322, "decimalLat": -31.651749 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630529, "decimalLat": -34.420898 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.69488, "decimalLat": -34.27594 }, "geometry": { "type": "Point", "coordinates": [ 150.695, -34.276 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63562, "decimalLat": -34.418211 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068443, "decimalLat": -32.753251 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.753 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104122, "decimalLat": -29.485132 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.139095, "decimalLat": -32.735486 }, "geometry": { "type": "Point", "coordinates": [ 152.139, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604263, "decimalLat": -34.438922 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.416729, "decimalLat": -28.735117 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.735 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272353, "decimalLat": -28.313877 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -28.314 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.849405, "decimalLat": -34.062263 }, "geometry": { "type": "Point", "coordinates": [ 150.849, -34.062 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.577613, "decimalLat": -28.890594 }, "geometry": { "type": "Point", "coordinates": [ 152.578, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519407, "decimalLat": -34.488077 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630678, "decimalLat": -34.420631 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49413, "decimalLat": -28.236882 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59019, "decimalLat": -28.65505 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790728, "decimalLat": -34.140954 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517154, "decimalLat": -34.453753 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.873769, "decimalLat": -34.035121 }, "geometry": { "type": "Point", "coordinates": [ 150.874, -34.035 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880613, "decimalLat": -29.606316 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -29.606 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782566, "decimalLat": -33.718649 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789285, "decimalLat": -34.203692 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.204 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825809, "decimalLat": -31.539511 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -31.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513704, "decimalLat": -34.446426 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104133, "decimalLat": -29.485104 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454569, "decimalLat": -28.960713 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513089, "decimalLat": -34.447333 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619996, "decimalLat": -34.400995 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.138047, "decimalLat": -31.402485 }, "geometry": { "type": "Point", "coordinates": [ 152.138, -31.402 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.033612, "decimalLat": -32.64028 }, "geometry": { "type": "Point", "coordinates": [ 150.034, -32.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898037, "decimalLat": -29.632897 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -29.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641887, "decimalLat": -34.396875 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.355485, "decimalLat": -28.974107 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.974 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.364111, "decimalLat": -35.991781 }, "geometry": { "type": "Point", "coordinates": [ 149.364, -35.992 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.649967, "decimalLat": -34.31447 }, "geometry": { "type": "Point", "coordinates": [ 150.65, -34.314 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552664, "decimalLat": -33.562043 }, "geometry": { "type": "Point", "coordinates": [ 149.553, -33.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519009, "decimalLat": -34.438141 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557416, "decimalLat": -28.397082 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636036, "decimalLat": -34.392606 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608948, "decimalLat": -34.434894 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513851, "decimalLat": -34.447331 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887338, "decimalLat": -31.439547 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619387, "decimalLat": -34.439362 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785108, "decimalLat": -33.71409 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926506, "decimalLat": -31.46311 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924623, "decimalLat": -31.443758 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609403, "decimalLat": -34.418945 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.110282, "decimalLat": -29.762752 }, "geometry": { "type": "Point", "coordinates": [ 151.11, -29.763 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5204, "decimalLat": -34.454045 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524396, "decimalLat": -34.463934 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.968568, "decimalLat": -34.12129 }, "geometry": { "type": "Point", "coordinates": [ 150.969, -34.121 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918155, "decimalLat": -31.485305 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790124, "decimalLat": -34.190837 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.191 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51654, "decimalLat": -34.447295 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791789, "decimalLat": -34.205559 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.206 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823673, "decimalLat": -29.81369 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.814 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524945, "decimalLat": -34.453425 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633668, "decimalLat": -34.418381 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796472, "decimalLat": -34.214306 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.214 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925194, "decimalLat": -31.453947 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.702188, "decimalLat": -31.867385 }, "geometry": { "type": "Point", "coordinates": [ 152.702, -31.867 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659501, "decimalLat": -34.457537 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82203, "decimalLat": -31.13135 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.131 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607168, "decimalLat": -34.454585 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.100633, "decimalLat": -31.984778 }, "geometry": { "type": "Point", "coordinates": [ 152.101, -31.985 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06546, "decimalLat": -32.710276 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903255, "decimalLat": -31.469654 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.183588, "decimalLat": -28.656304 }, "geometry": { "type": "Point", "coordinates": [ 153.184, -28.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52052, "decimalLat": -34.454029 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819479, "decimalLat": -31.473808 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629544, "decimalLat": -34.389487 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.478646 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528771, "decimalLat": -34.443934 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.061151, "decimalLat": -29.741266 }, "geometry": { "type": "Point", "coordinates": [ 151.061, -29.741 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626038, "decimalLat": -34.388851 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.550376, "decimalLat": -28.581206 }, "geometry": { "type": "Point", "coordinates": [ 153.55, -28.581 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640574, "decimalLat": -34.392883 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103752, "decimalLat": -29.485557 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96634, "decimalLat": -36.680336 }, "geometry": { "type": "Point", "coordinates": [ 149.966, -36.68 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.422603, "decimalLat": -31.904256 }, "geometry": { "type": "Point", "coordinates": [ 152.423, -31.904 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.94117, "decimalLat": -30.39315 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -30.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336244, "decimalLat": -28.8161 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.201795, "decimalLat": -32.233788 }, "geometry": { "type": "Point", "coordinates": [ 152.202, -32.234 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639216, "decimalLat": -34.49182 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786994, "decimalLat": -31.636124 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.636 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.02759, "decimalLat": -32.73831 }, "geometry": { "type": "Point", "coordinates": [ 152.028, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090947, "decimalLat": -29.487705 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104176, "decimalLat": -29.482036 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108162, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356996, "decimalLat": -28.890884 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907381, "decimalLat": -31.444323 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.713637, "decimalLat": -33.44778 }, "geometry": { "type": "Point", "coordinates": [ 150.714, -33.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317607, "decimalLat": -28.824828 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627118, "decimalLat": -34.38953 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60332, "decimalLat": -34.438804 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522247, "decimalLat": -34.464828 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989988, "decimalLat": -34.028961 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618485, "decimalLat": -34.435477 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519705, "decimalLat": -34.454734 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615829, "decimalLat": -34.438598 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598632, "decimalLat": -34.42848 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92131, "decimalLat": -31.457717 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6311, "decimalLat": -34.387155 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638707, "decimalLat": -34.491341 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.431428, "decimalLat": -28.878292 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -28.878 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085313, "decimalLat": -32.774205 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.710008, "decimalLat": -33.300997 }, "geometry": { "type": "Point", "coordinates": [ 149.71, -33.301 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028949, "decimalLat": -32.737829 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98716, "decimalLat": -34.095113 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10423, "decimalLat": -29.479804 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.951303, "decimalLat": -36.599554 }, "geometry": { "type": "Point", "coordinates": [ 149.951, -36.6 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924902, "decimalLat": -31.468765 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.971625, "decimalLat": -31.192721 }, "geometry": { "type": "Point", "coordinates": [ 152.972, -31.193 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.037045, "decimalLat": -28.868777 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632763, "decimalLat": -34.418814 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785175, "decimalLat": -33.717501 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51915, "decimalLat": -34.459879 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529983, "decimalLat": -34.460477 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624392, "decimalLat": -34.385159 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.402899, "decimalLat": -31.925266 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.783554, "decimalLat": -31.63077 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786205, "decimalLat": -33.706009 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.745843, "decimalLat": -34.343302 }, "geometry": { "type": "Point", "coordinates": [ 150.746, -34.343 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.696517, "decimalLat": -32.701772 }, "geometry": { "type": "Point", "coordinates": [ 151.697, -32.702 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895153, "decimalLat": -29.005137 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -29.005 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.880542, "decimalLat": -34.012784 }, "geometry": { "type": "Point", "coordinates": [ 150.881, -34.013 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063585, "decimalLat": -32.705836 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331636, "decimalLat": -28.8452 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619782, "decimalLat": -34.439225 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434738, "decimalLat": -28.65498 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.876255, "decimalLat": -31.45852 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.139673, "decimalLat": -30.207711 }, "geometry": { "type": "Point", "coordinates": [ 153.14, -30.208 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10088, "decimalLat": -30.352687 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -30.353 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625164, "decimalLat": -34.386707 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516953, "decimalLat": -34.448773 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.838837, "decimalLat": -31.595265 }, "geometry": { "type": "Point", "coordinates": [ 152.839, -31.595 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.965833, "decimalLat": -33.964444 }, "geometry": { "type": "Point", "coordinates": [ 150.966, -33.964 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.976369, "decimalLat": -30.436107 }, "geometry": { "type": "Point", "coordinates": [ 152.976, -30.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314485, "decimalLat": -28.81441 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9054, "decimalLat": -31.43674 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657809, "decimalLat": -34.456143 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90749, "decimalLat": -30.17413 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -30.174 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786855, "decimalLat": -31.629319 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528014, "decimalLat": -34.457138 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633588, "decimalLat": -34.393037 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071793, "decimalLat": -30.887299 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78669, "decimalLat": -33.703792 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61658, "decimalLat": -34.429778 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623948, "decimalLat": -34.383546 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662866, "decimalLat": -33.52725 }, "geometry": { "type": "Point", "coordinates": [ 150.663, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907639, "decimalLat": -31.45119 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61609, "decimalLat": -34.435538 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.549454, "decimalLat": -28.384628 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40063, "decimalLat": -28.257901 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.176919, "decimalLat": -28.63703 }, "geometry": { "type": "Point", "coordinates": [ 152.177, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.85134, "decimalLat": -34.083377 }, "geometry": { "type": "Point", "coordinates": [ 150.851, -34.083 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.89786, "decimalLat": -32.469052 }, "geometry": { "type": "Point", "coordinates": [ 151.898, -32.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.77213, "decimalLat": -32.590716 }, "geometry": { "type": "Point", "coordinates": [ 151.772, -32.591 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339182, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82929, "decimalLat": -31.26329 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -31.263 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797565, "decimalLat": -30.915154 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -30.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627429, "decimalLat": -34.386597 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.48519, "decimalLat": -28.244216 }, "geometry": { "type": "Point", "coordinates": [ 153.485, -28.244 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316981, "decimalLat": -28.949626 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659512, "decimalLat": -34.458312 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921251, "decimalLat": -31.464817 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.547185, "decimalLat": -28.390166 }, "geometry": { "type": "Point", "coordinates": [ 153.547, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108848, "decimalLat": -29.49087 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355785, "decimalLat": -31.85809 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104176, "decimalLat": -29.482022 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82139, "decimalLat": -34.101425 }, "geometry": { "type": "Point", "coordinates": [ 150.821, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293102, "decimalLat": -28.864616 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519421, "decimalLat": -34.456594 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.375368, "decimalLat": -36.15513 }, "geometry": { "type": "Point", "coordinates": [ 149.375, -36.155 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.233106, "decimalLat": -29.931016 }, "geometry": { "type": "Point", "coordinates": [ 152.233, -29.931 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926877, "decimalLat": -31.459683 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878801, "decimalLat": -29.662176 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.662 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910583, "decimalLat": -31.45681 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51305, "decimalLat": -34.446106 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62898, "decimalLat": -34.396004 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064359, "decimalLat": -32.70643 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519428, "decimalLat": -34.456712 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606013, "decimalLat": -34.422972 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52545, "decimalLat": -34.459926 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342293, "decimalLat": -28.818133 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334878, "decimalLat": -28.815042 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.354949, "decimalLat": -28.66949 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627544, "decimalLat": -34.389845 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09415, "decimalLat": -29.488784 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403699, "decimalLat": -31.928326 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.820235, "decimalLat": -31.191941 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637608, "decimalLat": -34.488597 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603107, "decimalLat": -34.417677 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105574, "decimalLat": -32.760544 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.761 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530011, "decimalLat": -34.47099 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19096, "decimalLat": -32.219628 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -32.22 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395162, "decimalLat": -29.096775 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813404, "decimalLat": -33.365499 }, "geometry": { "type": "Point", "coordinates": [ 150.813, -33.365 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901468, "decimalLat": -30.522816 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -30.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521669, "decimalLat": -34.465601 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.52513, "decimalLat": -28.66571 }, "geometry": { "type": "Point", "coordinates": [ 153.525, -28.666 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637894, "decimalLat": -34.422844 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873672, "decimalLat": -31.285093 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.285 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614749, "decimalLat": -34.431013 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636676, "decimalLat": -34.488056 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631317, "decimalLat": -34.419967 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626523, "decimalLat": -34.420974 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919548, "decimalLat": -31.471534 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603, "decimalLat": -34.417639 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926729, "decimalLat": -31.454715 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.04816, "decimalLat": -31.13479 }, "geometry": { "type": "Point", "coordinates": [ 150.048, -31.135 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318052, "decimalLat": -28.824876 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412132, "decimalLat": -31.935307 }, "geometry": { "type": "Point", "coordinates": [ 152.412, -31.935 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110413, "decimalLat": -29.490044 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656179, "decimalLat": -33.58539 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -33.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514677, "decimalLat": -34.444787 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520978, "decimalLat": -34.454742 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110857, "decimalLat": -28.662989 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616315, "decimalLat": -34.434506 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878917, "decimalLat": -31.44848 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07978, "decimalLat": -30.32507 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -30.325 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607038, "decimalLat": -34.438535 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629932, "decimalLat": -34.395382 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926891, "decimalLat": -31.457146 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644122, "decimalLat": -34.396287 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.520079, "decimalLat": -28.722016 }, "geometry": { "type": "Point", "coordinates": [ 153.52, -28.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637833, "decimalLat": -34.485654 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609129, "decimalLat": -34.418985 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92038, "decimalLat": -31.452639 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615952, "decimalLat": -34.439232 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.852629, "decimalLat": -31.552937 }, "geometry": { "type": "Point", "coordinates": [ 152.853, -31.553 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.329859, "decimalLat": -28.930457 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306378, "decimalLat": -28.977316 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603642, "decimalLat": -34.426757 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51878, "decimalLat": -34.44735 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.161603, "decimalLat": -34.759018 }, "geometry": { "type": "Point", "coordinates": [ 150.162, -34.759 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92636, "decimalLat": -30.418651 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -30.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60574, "decimalLat": -34.437518 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278134, "decimalLat": -28.679301 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.625848, "decimalLat": -32.636305 }, "geometry": { "type": "Point", "coordinates": [ 151.626, -32.636 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61722, "decimalLat": -34.434424 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809253, "decimalLat": -31.652221 }, "geometry": { "type": "Point", "coordinates": [ 152.809, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798276, "decimalLat": -31.637 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.089499, "decimalLat": -29.480593 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.209529, "decimalLat": -31.560727 }, "geometry": { "type": "Point", "coordinates": [ 152.21, -31.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51727, "decimalLat": -34.447652 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614666, "decimalLat": -34.430886 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535445, "decimalLat": -34.462391 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.474745, "decimalLat": -28.930299 }, "geometry": { "type": "Point", "coordinates": [ 153.475, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515887, "decimalLat": -34.448778 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879202, "decimalLat": -31.425634 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.866027, "decimalLat": -34.060984 }, "geometry": { "type": "Point", "coordinates": [ 150.866, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.795584, "decimalLat": -34.206121 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.206 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903765, "decimalLat": -31.326927 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.327 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.726, "decimalLat": -32.67 }, "geometry": { "type": "Point", "coordinates": [ 151.726, -32.67 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517025, "decimalLat": -34.447449 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091081, "decimalLat": -29.487528 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616334, "decimalLat": -34.451437 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378576, "decimalLat": -31.917179 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.917 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.696604, "decimalLat": -32.684623 }, "geometry": { "type": "Point", "coordinates": [ 151.697, -32.685 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316219, "decimalLat": -28.837037 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.154518, "decimalLat": -32.718543 }, "geometry": { "type": "Point", "coordinates": [ 152.155, -32.719 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104122, "decimalLat": -29.480794 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.097247, "decimalLat": -32.772258 }, "geometry": { "type": "Point", "coordinates": [ 152.097, -32.772 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605028, "decimalLat": -34.437657 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.630315, "decimalLat": -30.627392 }, "geometry": { "type": "Point", "coordinates": [ 152.63, -30.627 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659382, "decimalLat": -34.456723 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.842629, "decimalLat": -31.44175 }, "geometry": { "type": "Point", "coordinates": [ 152.843, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92717, "decimalLat": -31.450891 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92468, "decimalLat": -31.454243 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52863, "decimalLat": -34.513591 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626048, "decimalLat": -34.390456 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598709, "decimalLat": -34.429581 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.985867, "decimalLat": -30.326866 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -30.327 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.80289, "decimalLat": -32.8791 }, "geometry": { "type": "Point", "coordinates": [ 149.803, -32.879 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10394, "decimalLat": -29.484376 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96634, "decimalLat": -36.680336 }, "geometry": { "type": "Point", "coordinates": [ 149.966, -36.68 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785809, "decimalLat": -31.632016 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809794, "decimalLat": -29.808932 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -29.809 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.242145, "decimalLat": -33.171243 }, "geometry": { "type": "Point", "coordinates": [ 151.242, -33.171 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30358, "decimalLat": -28.816492 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318696, "decimalLat": -28.933563 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625213, "decimalLat": -34.386879 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63191, "decimalLat": -34.388109 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.41131, "decimalLat": -31.46991 }, "geometry": { "type": "Point", "coordinates": [ 150.411, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.359541, "decimalLat": -36.175635 }, "geometry": { "type": "Point", "coordinates": [ 149.36, -36.176 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.476882, "decimalLat": -28.616529 }, "geometry": { "type": "Point", "coordinates": [ 153.477, -28.617 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880504, "decimalLat": -31.444767 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.602345, "decimalLat": -28.679345 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434038, "decimalLat": -28.732183 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.732 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.712126, "decimalLat": -30.455966 }, "geometry": { "type": "Point", "coordinates": [ 152.712, -30.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299233, "decimalLat": -28.826058 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52249, "decimalLat": -34.464328 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616517, "decimalLat": -34.438098 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881952, "decimalLat": -31.463796 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103975, "decimalLat": -29.485303 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909401, "decimalLat": -31.474332 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93946, "decimalLat": -30.3919 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -30.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635815, "decimalLat": -34.419396 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066185, "decimalLat": -32.708193 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.361927, "decimalLat": -36.041388 }, "geometry": { "type": "Point", "coordinates": [ 149.362, -36.041 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374809, "decimalLat": -28.828409 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091672, "decimalLat": -29.48791 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.063462, "decimalLat": -33.776153 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910622, "decimalLat": -31.435079 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519071, "decimalLat": -34.447455 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87901, "decimalLat": -31.456783 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565066, "decimalLat": -28.389868 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.814708, "decimalLat": -31.286691 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.287 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518453, "decimalLat": -34.44298 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.642244, "decimalLat": -30.48978 }, "geometry": { "type": "Point", "coordinates": [ 151.642, -30.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627391, "decimalLat": -34.420288 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91096, "decimalLat": -30.17498 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -30.175 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638066, "decimalLat": -34.420197 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606617, "decimalLat": -34.438031 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.671829, "decimalLat": -33.565013 }, "geometry": { "type": "Point", "coordinates": [ 150.672, -33.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627592, "decimalLat": -34.385447 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.385326, "decimalLat": -31.91537 }, "geometry": { "type": "Point", "coordinates": [ 152.385, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.295045, "decimalLat": -33.27166 }, "geometry": { "type": "Point", "coordinates": [ 150.295, -33.272 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10821, "decimalLat": -29.490577 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910422, "decimalLat": -31.472718 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604992, "decimalLat": -34.423313 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607379, "decimalLat": -34.432681 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926635, "decimalLat": -31.444425 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626037, "decimalLat": -34.388896 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611491, "decimalLat": -34.419707 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.125215, "decimalLat": -28.664007 }, "geometry": { "type": "Point", "coordinates": [ 152.125, -28.664 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.471848, "decimalLat": -28.24154 }, "geometry": { "type": "Point", "coordinates": [ 153.472, -28.242 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.474267, "decimalLat": -30.168938 }, "geometry": { "type": "Point", "coordinates": [ 152.474, -30.169 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865626, "decimalLat": -31.304447 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -31.304 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604769, "decimalLat": -34.427293 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86658, "decimalLat": -31.501305 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -31.501 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064319, "decimalLat": -32.706888 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.54652, "decimalLat": -34.359944 }, "geometry": { "type": "Point", "coordinates": [ 150.547, -34.36 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513095, "decimalLat": -34.447144 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.398164, "decimalLat": -31.942142 }, "geometry": { "type": "Point", "coordinates": [ 152.398, -31.942 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.836877, "decimalLat": -34.056588 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.057 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108913, "decimalLat": -30.318813 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.319 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521574, "decimalLat": -34.465869 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37354, "decimalLat": -31.914308 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597951, "decimalLat": -34.427926 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.974022, "decimalLat": -31.192818 }, "geometry": { "type": "Point", "coordinates": [ 152.974, -31.193 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914785, "decimalLat": -31.450459 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.796194, "decimalLat": -30.87937 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -30.879 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893876, "decimalLat": -31.431846 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.424775, "decimalLat": -29.114869 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -29.115 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.613391, "decimalLat": -30.345041 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -30.345 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.778176, "decimalLat": -30.193432 }, "geometry": { "type": "Point", "coordinates": [ 152.778, -30.193 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607655, "decimalLat": -34.429892 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784231, "decimalLat": -33.716597 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82512, "decimalLat": -31.27024 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.27 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.390764, "decimalLat": -31.95843 }, "geometry": { "type": "Point", "coordinates": [ 152.391, -31.958 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077045, "decimalLat": -32.722541 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.473688, "decimalLat": -28.268359 }, "geometry": { "type": "Point", "coordinates": [ 153.474, -28.268 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.850271, "decimalLat": -34.051381 }, "geometry": { "type": "Point", "coordinates": [ 150.85, -34.051 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.32325, "decimalLat": -36.297286 }, "geometry": { "type": "Point", "coordinates": [ 149.323, -36.297 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.058608, "decimalLat": -29.740284 }, "geometry": { "type": "Point", "coordinates": [ 151.059, -29.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610333, "decimalLat": -34.419126 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87591, "decimalLat": -29.670882 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -29.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634688, "decimalLat": -34.48464 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522459, "decimalLat": -34.453221 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606601, "decimalLat": -34.453861 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851072, "decimalLat": -31.555324 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -31.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616288, "decimalLat": -34.43584 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629888, "decimalLat": -34.420841 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868705, "decimalLat": -29.667322 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.156475, "decimalLat": -28.926928 }, "geometry": { "type": "Point", "coordinates": [ 153.156, -28.927 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.091178, "decimalLat": -29.774595 }, "geometry": { "type": "Point", "coordinates": [ 151.091, -29.775 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105211, "decimalLat": -29.489741 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064745, "decimalLat": -32.708565 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635606, "decimalLat": -34.418328 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517196, "decimalLat": -34.441674 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.81765, "decimalLat": -32.422645 }, "geometry": { "type": "Point", "coordinates": [ 149.818, -32.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.179967, "decimalLat": -31.266761 }, "geometry": { "type": "Point", "coordinates": [ 149.18, -31.267 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39381, "decimalLat": -28.855126 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.855 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615492, "decimalLat": -34.450429 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898132, "decimalLat": -29.63205 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641436, "decimalLat": -34.395099 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51599, "decimalLat": -34.44384 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 6, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 150.979581, "decimalLat": -29.779195 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -29.779 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10416, "decimalLat": -29.478814 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.489332, "decimalLat": -28.673234 }, "geometry": { "type": "Point", "coordinates": [ 153.489, -28.673 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099772, "decimalLat": -29.491529 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.932247, "decimalLat": -28.954711 }, "geometry": { "type": "Point", "coordinates": [ 152.932, -28.955 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523077, "decimalLat": -34.466206 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790681, "decimalLat": -34.204511 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.205 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520315, "decimalLat": -34.465745 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516844, "decimalLat": -34.448807 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609187, "decimalLat": -34.42078 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.353525, "decimalLat": -31.92625 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635375, "decimalLat": -34.488626 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1102, "decimalLat": -29.490292 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61642, "decimalLat": -33.430832 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -33.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.998276, "decimalLat": -34.053946 }, "geometry": { "type": "Point", "coordinates": [ 150.998, -34.054 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.247202, "decimalLat": -30.053999 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -30.054 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.866239, "decimalLat": -29.691415 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -29.691 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.776019, "decimalLat": -31.63241 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.01619, "decimalLat": -32.72417 }, "geometry": { "type": "Point", "coordinates": [ 152.016, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880419, "decimalLat": -31.426452 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534643, "decimalLat": -34.459327 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077182, "decimalLat": -32.724077 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.497224, "decimalLat": -28.651787 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604489, "decimalLat": -34.424547 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412776, "decimalLat": -31.932137 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.875183, "decimalLat": -34.022401 }, "geometry": { "type": "Point", "coordinates": [ 150.875, -34.022 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642047, "decimalLat": -34.394246 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617718, "decimalLat": -34.439501 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.054765, "decimalLat": -30.280293 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -30.28 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521653, "decimalLat": -34.465402 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605328, "decimalLat": -34.432497 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93218, "decimalLat": -29.054449 }, "geometry": { "type": "Point", "coordinates": [ 152.932, -29.054 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561867, "decimalLat": -28.388795 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607961, "decimalLat": -34.454267 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513896, "decimalLat": -34.446187 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90954, "decimalLat": -31.176198 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.176 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630564, "decimalLat": -34.386856 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519563, "decimalLat": -34.469837 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104535, "decimalLat": -29.476736 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428287, "decimalLat": -28.956006 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.956 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525525, "decimalLat": -34.459972 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103366, "decimalLat": -29.486346 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.42536, "decimalLat": -28.875296 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.875 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.461641, "decimalLat": -28.870616 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.871 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609467, "decimalLat": -34.418983 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784944, "decimalLat": -33.715387 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315369, "decimalLat": -28.94184 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.942 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603878, "decimalLat": -34.426897 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898317, "decimalLat": -31.442672 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607143, "decimalLat": -34.437545 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630863, "decimalLat": -34.420616 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.67903, "decimalLat": -33.489673 }, "geometry": { "type": "Point", "coordinates": [ 150.679, -33.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784785, "decimalLat": -33.713322 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609027, "decimalLat": -34.435184 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.649794, "decimalLat": -30.326233 }, "geometry": { "type": "Point", "coordinates": [ 151.65, -30.326 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632816, "decimalLat": -34.418878 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516156, "decimalLat": -34.459151 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642734, "decimalLat": -34.394584 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.541208, "decimalLat": -28.393545 }, "geometry": { "type": "Point", "coordinates": [ 153.541, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.069922, "decimalLat": -35.096731 }, "geometry": { "type": "Point", "coordinates": [ 150.07, -35.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521305, "decimalLat": -34.448825 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.056935, "decimalLat": -33.764062 }, "geometry": { "type": "Point", "coordinates": [ 150.057, -33.764 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926823, "decimalLat": -31.459818 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925573, "decimalLat": -31.458864 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605671, "decimalLat": -34.437652 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.825173, "decimalLat": -34.149808 }, "geometry": { "type": "Point", "coordinates": [ 150.825, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954611, "decimalLat": -36.5994 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.599 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.369116, "decimalLat": -31.949378 }, "geometry": { "type": "Point", "coordinates": [ 152.369, -31.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110286, "decimalLat": -29.490264 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.721095, "decimalLat": -32.71793 }, "geometry": { "type": "Point", "coordinates": [ 151.721, -32.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630917, "decimalLat": -34.388234 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632752, "decimalLat": -34.418832 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890696, "decimalLat": -31.081243 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -31.081 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515993, "decimalLat": -34.44668 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513066, "decimalLat": -34.447378 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.024832, "decimalLat": -33.222527 }, "geometry": { "type": "Point", "coordinates": [ 151.025, -33.223 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412602, "decimalLat": -31.93235 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520722, "decimalLat": -34.436517 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616778, "decimalLat": -34.438103 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822435, "decimalLat": -31.143689 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.144 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31679, "decimalLat": -28.817282 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51738, "decimalLat": -34.452018 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.699282, "decimalLat": -30.404171 }, "geometry": { "type": "Point", "coordinates": [ 151.699, -30.404 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.098466, "decimalLat": -30.296061 }, "geometry": { "type": "Point", "coordinates": [ 153.098, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603246, "decimalLat": -34.418167 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085037, "decimalLat": -31.908858 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -31.909 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.069058, "decimalLat": -30.910992 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -30.911 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894842, "decimalLat": -31.446178 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09577, "decimalLat": -29.49004 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63069, "decimalLat": -34.420586 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521423, "decimalLat": -34.46656 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523956, "decimalLat": -34.452656 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603002, "decimalLat": -34.437743 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.299643, "decimalLat": -31.899816 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.9 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627332, "decimalLat": -34.421206 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104192, "decimalLat": -29.478996 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301696, "decimalLat": -28.819415 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.880149, "decimalLat": -34.014418 }, "geometry": { "type": "Point", "coordinates": [ 150.88, -34.014 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602663, "decimalLat": -34.438927 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.439573, "decimalLat": -31.951329 }, "geometry": { "type": "Point", "coordinates": [ 152.44, -31.951 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063527, "decimalLat": -32.705721 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.857251, "decimalLat": -31.54185 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -31.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521641, "decimalLat": -34.465817 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109723, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518336, "decimalLat": -34.451325 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.490203 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 11, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.08192, "decimalLat": -26.790627 }, "geometry": { "type": "Point", "coordinates": [ 153.082, -26.791 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.841671, "decimalLat": -34.08271 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.083 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630754, "decimalLat": -34.393649 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519548, "decimalLat": -34.447149 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103988, "decimalLat": -29.484315 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523563, "decimalLat": -34.439071 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079143, "decimalLat": -32.72314 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889384, "decimalLat": -31.444995 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864498, "decimalLat": -31.297769 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.041213, "decimalLat": -30.884135 }, "geometry": { "type": "Point", "coordinates": [ 153.041, -30.884 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89977, "decimalLat": -29.631951 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896932, "decimalLat": -31.475419 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923894, "decimalLat": -31.463907 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521343, "decimalLat": -34.435763 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640056, "decimalLat": -33.541697 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -33.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602981, "decimalLat": -34.42742 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900594, "decimalLat": -30.500084 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -30.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626552, "decimalLat": -34.395686 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.485552 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520098, "decimalLat": -34.446962 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.740463, "decimalLat": -32.560405 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -32.56 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.644721, "decimalLat": -30.654151 }, "geometry": { "type": "Point", "coordinates": [ 152.645, -30.654 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109615, "decimalLat": -29.492841 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063638, "decimalLat": -32.706152 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.520079, "decimalLat": -28.722016 }, "geometry": { "type": "Point", "coordinates": [ 153.52, -28.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630798, "decimalLat": -34.420606 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894307, "decimalLat": -29.005774 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -29.006 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607282, "decimalLat": -34.435691 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819409, "decimalLat": -31.653256 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784289, "decimalLat": -31.63011 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796938, "decimalLat": -34.133033 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.133 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.48166, "decimalLat": -28.625868 }, "geometry": { "type": "Point", "coordinates": [ 153.482, -28.626 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.490175 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52389, "decimalLat": -34.463717 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601455, "decimalLat": -34.426777 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.10201, "decimalLat": -33.779057 }, "geometry": { "type": "Point", "coordinates": [ 150.102, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270395, "decimalLat": -28.931139 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -28.931 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604992, "decimalLat": -34.423313 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609573, "decimalLat": -34.43093 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.224518, "decimalLat": -34.340535 }, "geometry": { "type": "Point", "coordinates": [ 150.225, -34.341 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.21501, "decimalLat": -34.53145 }, "geometry": { "type": "Point", "coordinates": [ 150.215, -34.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.152734, "decimalLat": -29.12052 }, "geometry": { "type": "Point", "coordinates": [ 153.153, -29.121 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.158949, "decimalLat": -28.584906 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515781, "decimalLat": -34.450877 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.957161, "decimalLat": -34.106034 }, "geometry": { "type": "Point", "coordinates": [ 150.957, -34.106 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.50221, "decimalLat": -28.25447 }, "geometry": { "type": "Point", "coordinates": [ 152.502, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.483836, "decimalLat": -34.52938 }, "geometry": { "type": "Point", "coordinates": [ 150.484, -34.529 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89746, "decimalLat": -31.47462 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552103, "decimalLat": -33.491237 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065776, "decimalLat": -32.710867 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.887282, "decimalLat": -32.529237 }, "geometry": { "type": "Point", "coordinates": [ 151.887, -32.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433693, "decimalLat": -28.970096 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.97 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.010179, "decimalLat": -28.625631 }, "geometry": { "type": "Point", "coordinates": [ 153.01, -28.626 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62582, "decimalLat": -34.386205 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612133, "decimalLat": -34.432342 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614401, "decimalLat": -34.429501 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.522745, "decimalLat": -28.72669 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.26621, "decimalLat": -28.87101 }, "geometry": { "type": "Point", "coordinates": [ 153.266, -28.871 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109385, "decimalLat": -29.490511 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637156, "decimalLat": -34.42393 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101015, "decimalLat": -30.323015 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -30.323 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615737, "decimalLat": -34.436063 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109358, "decimalLat": -29.490614 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636302, "decimalLat": -34.421813 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.084414, "decimalLat": -32.727892 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524997, "decimalLat": -34.453507 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.550749, "decimalLat": -28.647381 }, "geometry": { "type": "Point", "coordinates": [ 153.551, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615328, "decimalLat": -34.435532 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065383, "decimalLat": -32.710983 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521895, "decimalLat": -34.465678 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52714, "decimalLat": -34.469408 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.224001, "decimalLat": -33.137308 }, "geometry": { "type": "Point", "coordinates": [ 151.224, -33.137 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400804, "decimalLat": -28.259876 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.341081, "decimalLat": -36.185399 }, "geometry": { "type": "Point", "coordinates": [ 149.341, -36.185 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616534, "decimalLat": -34.435222 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607759, "decimalLat": -34.436538 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813056, "decimalLat": -34.122257 }, "geometry": { "type": "Point", "coordinates": [ 150.813, -34.122 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514115, "decimalLat": -34.444676 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5304, "decimalLat": -34.471466 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639249, "decimalLat": -34.491784 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.7355, "decimalLat": -32.405683 }, "geometry": { "type": "Point", "coordinates": [ 151.736, -32.406 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.036232, "decimalLat": -32.727802 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339182, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.83173, "decimalLat": -30.204467 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -30.204 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095164, "decimalLat": -29.483325 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637424, "decimalLat": -34.420581 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607146, "decimalLat": -34.454593 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.36208, "decimalLat": -31.924229 }, "geometry": { "type": "Point", "coordinates": [ 152.362, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433991, "decimalLat": -28.957973 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638249, "decimalLat": -34.490954 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.880417, "decimalLat": -34.066879 }, "geometry": { "type": "Point", "coordinates": [ 150.88, -34.067 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.686923, "decimalLat": -33.14282 }, "geometry": { "type": "Point", "coordinates": [ 150.687, -33.143 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824663, "decimalLat": -29.505205 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.505 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.224597, "decimalLat": -28.830677 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.664088, "decimalLat": -34.458544 }, "geometry": { "type": "Point", "coordinates": [ 150.664, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.481865, "decimalLat": -32.311041 }, "geometry": { "type": "Point", "coordinates": [ 152.482, -32.311 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916788, "decimalLat": -31.449124 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063414, "decimalLat": -32.706381 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.731567, "decimalLat": -30.206671 }, "geometry": { "type": "Point", "coordinates": [ 152.732, -30.207 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.229111, "decimalLat": -28.889404 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.015337, "decimalLat": -36.564757 }, "geometry": { "type": "Point", "coordinates": [ 150.015, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884757, "decimalLat": -31.443649 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.323764, "decimalLat": -36.296628 }, "geometry": { "type": "Point", "coordinates": [ 149.324, -36.297 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641352, "decimalLat": -34.393439 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520769, "decimalLat": -34.465105 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.738381, "decimalLat": -34.349138 }, "geometry": { "type": "Point", "coordinates": [ 150.738, -34.349 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785389, "decimalLat": -33.705596 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61713, "decimalLat": -34.433773 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941399, "decimalLat": -36.632151 }, "geometry": { "type": "Point", "coordinates": [ 149.941, -36.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82517, "decimalLat": -31.27014 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.27 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516985, "decimalLat": -34.453948 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82517, "decimalLat": -31.27014 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.27 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.934971, "decimalLat": -29.049404 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -29.049 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.964486, "decimalLat": -31.207704 }, "geometry": { "type": "Point", "coordinates": [ 152.964, -31.208 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.970853, "decimalLat": -31.190524 }, "geometry": { "type": "Point", "coordinates": [ 152.971, -31.191 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517375, "decimalLat": -34.441533 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.827612, "decimalLat": -33.459323 }, "geometry": { "type": "Point", "coordinates": [ 150.828, -33.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900937, "decimalLat": -31.442819 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334647, "decimalLat": -28.813771 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.915959, "decimalLat": -33.970174 }, "geometry": { "type": "Point", "coordinates": [ 150.916, -33.97 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.05434, "decimalLat": -30.889174 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -30.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30654, "decimalLat": -29.055661 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -29.056 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.696174, "decimalLat": -30.534748 }, "geometry": { "type": "Point", "coordinates": [ 151.696, -30.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.22771, "decimalLat": -28.8883 }, "geometry": { "type": "Point", "coordinates": [ 153.228, -28.888 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91062, "decimalLat": -31.465447 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.0571, "decimalLat": -30.35799 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -30.358 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104374, "decimalLat": -29.477702 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10416, "decimalLat": -29.484147 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600282, "decimalLat": -34.428585 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637136, "decimalLat": -34.485262 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96634, "decimalLat": -36.680336 }, "geometry": { "type": "Point", "coordinates": [ 149.966, -36.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.282607, "decimalLat": -35.942751 }, "geometry": { "type": "Point", "coordinates": [ 149.283, -35.943 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516293, "decimalLat": -34.447542 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638885, "decimalLat": -34.4912 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640355, "decimalLat": -34.397576 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.0592, "decimalLat": -33.772617 }, "geometry": { "type": "Point", "coordinates": [ 150.059, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518293, "decimalLat": -34.443211 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.934924, "decimalLat": -34.11331 }, "geometry": { "type": "Point", "coordinates": [ 150.935, -34.113 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.961324, "decimalLat": -31.252539 }, "geometry": { "type": "Point", "coordinates": [ 152.961, -31.253 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602906, "decimalLat": -34.435398 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631679, "decimalLat": -34.388194 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613725, "decimalLat": -34.431084 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6376, "decimalLat": -34.488516 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339182, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514141, "decimalLat": -34.446354 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298042, "decimalLat": -28.812146 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.812 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.32289, "decimalLat": -28.5926 }, "geometry": { "type": "Point", "coordinates": [ 152.323, -28.593 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561629, "decimalLat": -28.386672 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604771, "decimalLat": -34.437535 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624438, "decimalLat": -34.388144 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621961, "decimalLat": -34.39804 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.632887, "decimalLat": -32.049839 }, "geometry": { "type": "Point", "coordinates": [ 151.633, -32.05 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.406347, "decimalLat": -31.946897 }, "geometry": { "type": "Point", "coordinates": [ 152.406, -31.947 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10131, "decimalLat": -32.728444 }, "geometry": { "type": "Point", "coordinates": [ 152.101, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632389, "decimalLat": -34.3881 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.385302, "decimalLat": -31.883018 }, "geometry": { "type": "Point", "coordinates": [ 152.385, -31.883 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615323, "decimalLat": -34.43647 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90199, "decimalLat": -31.448084 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37806, "decimalLat": -31.918902 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514103, "decimalLat": -34.454972 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.369052, "decimalLat": -28.953149 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634296, "decimalLat": -34.488677 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10446, "decimalLat": -29.482993 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90244, "decimalLat": -30.56221 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -30.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.0415, "decimalLat": -32.7357 }, "geometry": { "type": "Point", "coordinates": [ 152.042, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.243706, "decimalLat": -28.29284 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -28.293 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.710031, "decimalLat": -31.353062 }, "geometry": { "type": "Point", "coordinates": [ 152.71, -31.353 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909817, "decimalLat": -31.467176 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518281, "decimalLat": -34.446564 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909916, "decimalLat": -30.505388 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -30.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379581, "decimalLat": -31.919584 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659319, "decimalLat": -34.457416 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.106719, "decimalLat": -29.367253 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.367 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400651, "decimalLat": -29.03875 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -29.039 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.029276, "decimalLat": -32.19165 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51639, "decimalLat": -34.447238 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.490152 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108178, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610288, "decimalLat": -34.438283 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525453, "decimalLat": -34.459827 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.172488, "decimalLat": -32.740464 }, "geometry": { "type": "Point", "coordinates": [ 152.172, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.346884, "decimalLat": -33.5028 }, "geometry": { "type": "Point", "coordinates": [ 149.347, -33.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613323, "decimalLat": -34.43259 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604328, "decimalLat": -34.43895 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523011, "decimalLat": -34.452213 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520692, "decimalLat": -34.454105 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786219, "decimalLat": -33.706123 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604932, "decimalLat": -34.422744 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.041621, "decimalLat": -35.148653 }, "geometry": { "type": "Point", "coordinates": [ 150.042, -35.149 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561513, "decimalLat": -28.38924 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524814, "decimalLat": -34.465232 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427458, "decimalLat": -28.623455 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.623 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639511, "decimalLat": -34.392799 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884453, "decimalLat": -31.457285 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.406634, "decimalLat": -28.489589 }, "geometry": { "type": "Point", "coordinates": [ 152.407, -28.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091414, "decimalLat": -29.48777 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628812, "decimalLat": -34.389617 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522369, "decimalLat": -34.465849 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.979244, "decimalLat": -29.779021 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -29.779 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922394, "decimalLat": -31.459862 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79185, "decimalLat": -34.21635 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.216 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607914, "decimalLat": -28.689364 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.855376, "decimalLat": -30.902069 }, "geometry": { "type": "Point", "coordinates": [ 152.855, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622608, "decimalLat": -34.384024 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925587, "decimalLat": -31.447411 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875766, "decimalLat": -31.522625 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.523 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367603, "decimalLat": -28.818638 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642659, "decimalLat": -34.394528 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.053502, "decimalLat": -30.27934 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -30.279 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281384, "decimalLat": -28.826361 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881469, "decimalLat": -31.165052 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.165 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.940819, "decimalLat": -29.136396 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -29.136 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526615, "decimalLat": -34.466523 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782717, "decimalLat": -30.225566 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -30.226 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.985514, "decimalLat": -32.413347 }, "geometry": { "type": "Point", "coordinates": [ 151.986, -32.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.059278, "decimalLat": -32.739099 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.886004, "decimalLat": -34.01043 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.01 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.137472, "decimalLat": -30.223309 }, "geometry": { "type": "Point", "coordinates": [ 153.137, -30.223 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.16197, "decimalLat": -28.535507 }, "geometry": { "type": "Point", "coordinates": [ 153.162, -28.536 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107405, "decimalLat": -29.490096 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6252, "decimalLat": -34.385806 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103854, "decimalLat": -29.484819 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928743, "decimalLat": -31.459097 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.109142, "decimalLat": -35.047975 }, "geometry": { "type": "Point", "coordinates": [ 150.109, -35.048 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.81996, "decimalLat": -34.10918 }, "geometry": { "type": "Point", "coordinates": [ 150.82, -34.109 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.084565, "decimalLat": -29.729673 }, "geometry": { "type": "Point", "coordinates": [ 151.085, -29.73 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989044, "decimalLat": -34.028811 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.156818, "decimalLat": -30.095391 }, "geometry": { "type": "Point", "coordinates": [ 152.157, -30.095 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.139413, "decimalLat": -28.589585 }, "geometry": { "type": "Point", "coordinates": [ 153.139, -28.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.983866, "decimalLat": -34.093843 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.274462, "decimalLat": -28.640611 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.641 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.347296, "decimalLat": -28.817853 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556406, "decimalLat": -28.398552 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.749627, "decimalLat": -30.210364 }, "geometry": { "type": "Point", "coordinates": [ 152.75, -30.21 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.951946, "decimalLat": -32.313717 }, "geometry": { "type": "Point", "coordinates": [ 151.952, -32.314 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605027, "decimalLat": -34.437702 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528272, "decimalLat": -34.467583 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.999302, "decimalLat": -34.042123 }, "geometry": { "type": "Point", "coordinates": [ 150.999, -34.042 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818975, "decimalLat": -31.650563 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608013, "decimalLat": -34.449012 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865132, "decimalLat": -31.284254 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -31.284 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016582, "decimalLat": -36.557254 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.961014, "decimalLat": -32.054737 }, "geometry": { "type": "Point", "coordinates": [ 151.961, -32.055 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640368, "decimalLat": -34.494222 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.805614, "decimalLat": -31.169097 }, "geometry": { "type": "Point", "coordinates": [ 152.806, -31.169 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.450525, "decimalLat": -34.439069 }, "geometry": { "type": "Point", "coordinates": [ 150.451, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870462, "decimalLat": -31.464391 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523944, "decimalLat": -34.463745 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "Victoria", "decimalLon": 144.582084, "decimalLat": -37.496627 }, "geometry": { "type": "Point", "coordinates": [ 144.582, -37.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63957, "decimalLat": -34.399193 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.807228, "decimalLat": -34.068105 }, "geometry": { "type": "Point", "coordinates": [ 150.807, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909438, "decimalLat": -31.447377 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92022, "decimalLat": -30.50456 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -30.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6447, "decimalLat": -34.393134 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519624, "decimalLat": -34.455237 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985078, "decimalLat": -34.021161 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.021 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108199, "decimalLat": -29.490259 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103554, "decimalLat": -29.485482 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293107, "decimalLat": -28.864674 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628112, "decimalLat": -34.389766 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98767, "decimalLat": -34.096709 }, "geometry": { "type": "Point", "coordinates": [ 150.988, -34.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8933, "decimalLat": -31.443058 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624526, "decimalLat": -34.385414 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93786, "decimalLat": -30.40529 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -30.405 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785186, "decimalLat": -33.717297 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51752, "decimalLat": -34.44031 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810398, "decimalLat": -31.13994 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -31.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609264, "decimalLat": -34.420746 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.662782, "decimalLat": -30.515005 }, "geometry": { "type": "Point", "coordinates": [ 151.663, -30.515 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19565, "decimalLat": -32.02353 }, "geometry": { "type": "Point", "coordinates": [ 152.196, -32.024 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516484, "decimalLat": -34.440361 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521276, "decimalLat": -34.465647 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.113549, "decimalLat": -32.770718 }, "geometry": { "type": "Point", "coordinates": [ 152.114, -32.771 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109503, "decimalLat": -29.490404 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314475, "decimalLat": -28.817881 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3114, "decimalLat": -28.822295 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514143, "decimalLat": -34.44593 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924222, "decimalLat": -30.505165 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -30.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.805362, "decimalLat": -31.604609 }, "geometry": { "type": "Point", "coordinates": [ 152.805, -31.605 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784983, "decimalLat": -33.716439 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609415, "decimalLat": -34.451338 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395153, "decimalLat": -28.959978 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.038719, "decimalLat": -33.197974 }, "geometry": { "type": "Point", "coordinates": [ 151.039, -33.198 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633228, "decimalLat": -34.418138 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925728, "decimalLat": -31.453554 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.747238, "decimalLat": -31.419429 }, "geometry": { "type": "Point", "coordinates": [ 152.747, -31.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626048, "decimalLat": -34.387734 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643246, "decimalLat": -34.393403 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.723282, "decimalLat": -34.189691 }, "geometry": { "type": "Point", "coordinates": [ 150.723, -34.19 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631208, "decimalLat": -34.387572 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.717277, "decimalLat": -33.45288 }, "geometry": { "type": "Point", "coordinates": [ 150.717, -33.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632626, "decimalLat": -34.418288 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065459, "decimalLat": -32.713171 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533589, "decimalLat": -34.462975 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108167, "decimalLat": -29.490423 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609921, "decimalLat": -34.432848 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "Queensland", "decimalLon": 152.700219, "decimalLat": -28.336934 }, "geometry": { "type": "Point", "coordinates": [ 152.7, -28.337 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514096, "decimalLat": -34.447867 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608107, "decimalLat": -34.434634 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630511, "decimalLat": -34.388758 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616717, "decimalLat": -34.43528 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793505, "decimalLat": -31.639259 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.908104, "decimalLat": -34.024959 }, "geometry": { "type": "Point", "coordinates": [ 150.908, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809328, "decimalLat": -34.104545 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906953, "decimalLat": -31.225805 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.226 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.882699, "decimalLat": -31.42924 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875707, "decimalLat": -31.453935 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.175164, "decimalLat": -32.663273 }, "geometry": { "type": "Point", "coordinates": [ 152.175, -32.663 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.336317, "decimalLat": -32.302744 }, "geometry": { "type": "Point", "coordinates": [ 152.336, -32.303 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079401, "decimalLat": -32.722866 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6438, "decimalLat": -34.393405 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924589, "decimalLat": -31.440522 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615763, "decimalLat": -34.43592 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607758, "decimalLat": -28.660915 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017126, "decimalLat": -30.374914 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -30.375 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108194, "decimalLat": -29.490259 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103854, "decimalLat": -29.484665 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607059, "decimalLat": -34.43858 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.284708, "decimalLat": -29.02619 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -29.026 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109299, "decimalLat": -29.490469 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615107, "decimalLat": -34.432589 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.1024, "decimalLat": -32.733421 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916192, "decimalLat": -31.485855 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514483, "decimalLat": -34.444729 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.229565, "decimalLat": -28.889215 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.138925, "decimalLat": -30.119255 }, "geometry": { "type": "Point", "coordinates": [ 152.139, -30.119 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518539, "decimalLat": -34.458451 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.428671, "decimalLat": -28.974427 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.974 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604308, "decimalLat": -34.436218 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.137379, "decimalLat": -28.858113 }, "geometry": { "type": "Point", "coordinates": [ 153.137, -28.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659154, "decimalLat": -34.459036 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.362835, "decimalLat": -29.080189 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -29.08 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641942, "decimalLat": -34.39684 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603864, "decimalLat": -34.439554 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1019, "decimalLat": -29.488544 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.975174, "decimalLat": -36.531199 }, "geometry": { "type": "Point", "coordinates": [ 149.975, -36.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520444, "decimalLat": -34.465801 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105398, "decimalLat": -31.43014 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367822, "decimalLat": -28.866277 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9783, "decimalLat": -34.084978 }, "geometry": { "type": "Point", "coordinates": [ 150.978, -34.085 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.620848, "decimalLat": -30.332293 }, "geometry": { "type": "Point", "coordinates": [ 152.621, -30.332 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.083663, "decimalLat": -32.731136 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016582, "decimalLat": -36.557254 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302446, "decimalLat": -28.887405 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.887 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793929, "decimalLat": -31.126833 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.05718, "decimalLat": -30.35819 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -30.358 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.355464, "decimalLat": -28.655528 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.656 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.745287, "decimalLat": -34.329175 }, "geometry": { "type": "Point", "coordinates": [ 150.745, -34.329 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103184, "decimalLat": -29.486911 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891913, "decimalLat": -31.429138 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796982, "decimalLat": -33.473775 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -33.474 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.194346, "decimalLat": -32.03718 }, "geometry": { "type": "Point", "coordinates": [ 152.194, -32.037 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.784679, "decimalLat": -32.488271 }, "geometry": { "type": "Point", "coordinates": [ 151.785, -32.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905478, "decimalLat": -31.467655 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623418, "decimalLat": -34.384212 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517335, "decimalLat": -34.452044 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095837, "decimalLat": -29.38182 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.382 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630873, "decimalLat": -34.420644 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630696, "decimalLat": -34.389915 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522075, "decimalLat": -34.464383 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064607, "decimalLat": -32.70652 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.57015, "decimalLat": -34.755701 }, "geometry": { "type": "Point", "coordinates": [ 146.57, -34.756 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927599, "decimalLat": -31.45948 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.191408, "decimalLat": -29.862543 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -29.863 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.467794, "decimalLat": -33.678452 }, "geometry": { "type": "Point", "coordinates": [ 149.468, -33.678 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623616, "decimalLat": -34.388741 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531223, "decimalLat": -34.457942 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924781, "decimalLat": -31.463925 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.856079, "decimalLat": -31.465698 }, "geometry": { "type": "Point", "coordinates": [ 152.856, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905367, "decimalLat": -31.43684 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528567, "decimalLat": -34.464208 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916219, "decimalLat": -31.467923 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603893, "decimalLat": -34.421416 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.057893, "decimalLat": -32.737661 }, "geometry": { "type": "Point", "coordinates": [ 152.058, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.883896, "decimalLat": -32.747766 }, "geometry": { "type": "Point", "coordinates": [ 151.884, -32.748 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919013, "decimalLat": -31.453816 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.119215, "decimalLat": -35.062511 }, "geometry": { "type": "Point", "coordinates": [ 150.119, -35.063 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520474, "decimalLat": -34.454091 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.036423, "decimalLat": -30.8961 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.2467, "decimalLat": -33.10191 }, "geometry": { "type": "Point", "coordinates": [ 151.247, -33.102 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513792, "decimalLat": -34.446013 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.577506, "decimalLat": -33.419281 }, "geometry": { "type": "Point", "coordinates": [ 149.578, -33.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303922, "decimalLat": -28.908353 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.908 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.738163, "decimalLat": -32.897817 }, "geometry": { "type": "Point", "coordinates": [ 151.738, -32.898 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302428, "decimalLat": -28.819449 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798319, "decimalLat": -31.636955 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10968, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.007806, "decimalLat": -32.733877 }, "geometry": { "type": "Point", "coordinates": [ 152.008, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513134, "decimalLat": -34.44728 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518387, "decimalLat": -34.451444 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.377137, "decimalLat": -28.2538 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640705, "decimalLat": -34.494238 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636235, "decimalLat": -34.421847 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519624, "decimalLat": -34.455237 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639722, "decimalLat": -34.393399 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412515, "decimalLat": -31.932197 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103752, "decimalLat": -29.485578 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367822, "decimalLat": -28.866277 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091916, "decimalLat": -29.487974 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325993, "decimalLat": -28.604299 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.604 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627353, "decimalLat": -34.421233 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6263, "decimalLat": -34.421177 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.839671, "decimalLat": -34.078232 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.078 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521284, "decimalLat": -34.466846 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63956, "decimalLat": -34.399174 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.416729, "decimalLat": -28.735117 }, "geometry": { "type": "Point", "coordinates": [ 153.417, -28.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51738, "decimalLat": -34.452 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28111, "decimalLat": -28.826154 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51302, "decimalLat": -34.447097 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898222, "decimalLat": -31.443448 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605617, "decimalLat": -34.437605 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891412, "decimalLat": -31.447942 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.212482, "decimalLat": -31.92602 }, "geometry": { "type": "Point", "coordinates": [ 152.212, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8933, "decimalLat": -31.443058 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00098, "decimalLat": -32.74141 }, "geometry": { "type": "Point", "coordinates": [ 152.001, -32.741 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521046, "decimalLat": -34.466409 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.802775, "decimalLat": -31.676328 }, "geometry": { "type": "Point", "coordinates": [ 152.803, -31.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606721, "decimalLat": -34.450023 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523924, "decimalLat": -34.466251 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603485, "decimalLat": -34.420074 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62712, "decimalLat": -34.386745 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518117, "decimalLat": -34.456144 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513642, "decimalLat": -34.446326 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.120388, "decimalLat": -33.085576 }, "geometry": { "type": "Point", "coordinates": [ 151.12, -33.086 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785566, "decimalLat": -33.714767 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.623961, "decimalLat": -28.643867 }, "geometry": { "type": "Point", "coordinates": [ 153.624, -28.644 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.415946, "decimalLat": -28.982816 }, "geometry": { "type": "Point", "coordinates": [ 153.416, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.833508, "decimalLat": -32.323583 }, "geometry": { "type": "Point", "coordinates": [ 151.834, -32.324 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640965, "decimalLat": -34.393287 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631548, "decimalLat": -34.38784 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521608, "decimalLat": -34.465825 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.391328, "decimalLat": -33.501001 }, "geometry": { "type": "Point", "coordinates": [ 149.391, -33.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884465, "decimalLat": -28.440333 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -28.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.423562, "decimalLat": -28.727556 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.488711, "decimalLat": -32.032221 }, "geometry": { "type": "Point", "coordinates": [ 152.489, -32.032 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79567, "decimalLat": -34.139848 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785297, "decimalLat": -33.705697 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076629, "decimalLat": -32.722654 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.453198, "decimalLat": -28.646734 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624822, "decimalLat": -34.399565 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865331, "decimalLat": -31.465972 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.602885, "decimalLat": -28.680184 }, "geometry": { "type": "Point", "coordinates": [ 153.603, -28.68 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92489, "decimalLat": -29.733729 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -29.734 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.337868, "decimalLat": -28.814127 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.693914, "decimalLat": -34.240851 }, "geometry": { "type": "Point", "coordinates": [ 150.694, -34.241 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.290107, "decimalLat": -28.972103 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.972 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325686, "decimalLat": -28.894918 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.895 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394017, "decimalLat": -28.998449 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.998 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101161, "decimalLat": -29.490072 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616109, "decimalLat": -34.437937 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.233191, "decimalLat": -33.161187 }, "geometry": { "type": "Point", "coordinates": [ 151.233, -33.161 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613567, "decimalLat": -34.43969 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90348, "decimalLat": -31.491273 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.713472, "decimalLat": -32.721615 }, "geometry": { "type": "Point", "coordinates": [ 150.713, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.115386, "decimalLat": -32.770144 }, "geometry": { "type": "Point", "coordinates": [ 152.115, -32.77 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810627, "decimalLat": -31.652997 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -31.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613969, "decimalLat": -34.433586 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.114595, "decimalLat": -33.749522 }, "geometry": { "type": "Point", "coordinates": [ 150.115, -33.75 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522826, "decimalLat": -34.466571 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093984, "decimalLat": -30.318214 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -30.318 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523879, "decimalLat": -34.463743 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.009829, "decimalLat": -32.727173 }, "geometry": { "type": "Point", "coordinates": [ 152.01, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91001, "decimalLat": -30.1757 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -30.176 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638335, "decimalLat": -34.402117 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.402 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633458, "decimalLat": -34.418476 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920536, "decimalLat": -31.458194 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.01137, "decimalLat": -31.19265 }, "geometry": { "type": "Point", "coordinates": [ 150.011, -31.193 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.808051, "decimalLat": -31.652531 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -31.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10122, "decimalLat": -29.490007 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081165, "decimalLat": -32.721606 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29238, "decimalLat": -28.864021 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293151, "decimalLat": -28.864601 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597554, "decimalLat": -34.418235 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110513, "decimalLat": -29.490082 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103463, "decimalLat": -29.485678 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394509, "decimalLat": -28.960502 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49754, "decimalLat": -28.768431 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.768 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091806, "decimalLat": -29.487981 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898604, "decimalLat": -31.455951 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63083, "decimalLat": -34.420643 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.47285, "decimalLat": -28.647443 }, "geometry": { "type": "Point", "coordinates": [ 153.473, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.628085, "decimalLat": -32.643567 }, "geometry": { "type": "Point", "coordinates": [ 151.628, -32.644 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637009, "decimalLat": -34.488216 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785838, "decimalLat": -33.714843 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.778772, "decimalLat": -32.926388 }, "geometry": { "type": "Point", "coordinates": [ 151.779, -32.926 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624221, "decimalLat": -34.388897 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316265, "decimalLat": -28.82245 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.097288, "decimalLat": -29.491711 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640469, "decimalLat": -34.39509 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604306, "decimalLat": -34.426383 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.535179, "decimalLat": -34.74523 }, "geometry": { "type": "Point", "coordinates": [ 146.535, -34.745 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072098, "decimalLat": -32.710683 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639833, "decimalLat": -34.400307 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632614, "decimalLat": -34.418306 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9065, "decimalLat": -30.503138 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -30.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.274837, "decimalLat": -28.874085 }, "geometry": { "type": "Point", "coordinates": [ 153.275, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.124272, "decimalLat": -35.078534 }, "geometry": { "type": "Point", "coordinates": [ 150.124, -35.079 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8666, "decimalLat": -31.299177 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -31.299 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.54091, "decimalLat": -28.345835 }, "geometry": { "type": "Point", "coordinates": [ 153.541, -28.346 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11049, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.170903, "decimalLat": -32.730846 }, "geometry": { "type": "Point", "coordinates": [ 152.171, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522583, "decimalLat": -34.464862 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.157949, "decimalLat": -28.574595 }, "geometry": { "type": "Point", "coordinates": [ 153.158, -28.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296004, "decimalLat": -28.818579 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614515, "decimalLat": -34.429287 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595536, "decimalLat": -34.426021 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79675, "decimalLat": -31.152305 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.152 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.052792, "decimalLat": -28.446872 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -28.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063349, "decimalLat": -32.70632 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517381, "decimalLat": -34.451991 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108146, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516966, "decimalLat": -34.447259 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104187, "decimalLat": -29.477502 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785371, "decimalLat": -33.710151 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646725, "decimalLat": -34.39576 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519469, "decimalLat": -34.455333 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615525, "decimalLat": -34.432065 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.397897, "decimalLat": -28.259715 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104227, "decimalLat": -30.362586 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -30.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63791, "decimalLat": -34.419941 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10297, "decimalLat": -30.32338 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -30.323 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063684, "decimalLat": -32.706122 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642959, "decimalLat": -34.39896 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912534, "decimalLat": -31.444928 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884823, "decimalLat": -34.017953 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.018 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519857, "decimalLat": -34.452898 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6079, "decimalLat": -34.422053 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89309, "decimalLat": -31.45491 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655, "decimalLat": -33.520759 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -33.521 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519116, "decimalLat": -34.459897 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091242, "decimalLat": -29.487649 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109449, "decimalLat": -29.490488 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108205, "decimalLat": -29.490236 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.695225, "decimalLat": -32.696461 }, "geometry": { "type": "Point", "coordinates": [ 151.695, -32.696 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62407, "decimalLat": -34.388849 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786722, "decimalLat": -31.629178 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520733, "decimalLat": -34.460813 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60884, "decimalLat": -34.455483 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.43339, "decimalLat": -32.54383 }, "geometry": { "type": "Point", "coordinates": [ 151.433, -32.544 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412719, "decimalLat": -31.932131 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514386, "decimalLat": -34.450938 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10416, "decimalLat": -29.489548 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.22254, "decimalLat": -28.885381 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -28.885 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921425, "decimalLat": -31.463343 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.660965, "decimalLat": -32.564169 }, "geometry": { "type": "Point", "coordinates": [ 149.661, -32.564 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403573, "decimalLat": -31.927966 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87764, "decimalLat": -31.453845 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624894, "decimalLat": -34.399702 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630391, "decimalLat": -34.395319 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28464, "decimalLat": -28.825104 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103747, "decimalLat": -29.485538 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616273, "decimalLat": -34.434442 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103913, "decimalLat": -29.485538 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.057972, "decimalLat": -33.775084 }, "geometry": { "type": "Point", "coordinates": [ 150.058, -33.775 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918687, "decimalLat": -30.296694 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -30.297 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554438, "decimalLat": -28.586098 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61585, "decimalLat": -34.436318 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617573, "decimalLat": -34.399758 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786067, "decimalLat": -33.709599 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.647048, "decimalLat": -34.39784 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616522, "decimalLat": -34.439099 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602963, "decimalLat": -34.435678 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633487, "decimalLat": -34.392367 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515883, "decimalLat": -34.447056 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.101252, "decimalLat": -33.776903 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -33.777 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89714, "decimalLat": -31.474811 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.528278, "decimalLat": -28.231176 }, "geometry": { "type": "Point", "coordinates": [ 153.528, -28.231 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899467, "decimalLat": -31.443637 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91782, "decimalLat": -31.438393 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610334, "decimalLat": -34.41909 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437732, "decimalLat": -28.993352 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.993 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520357, "decimalLat": -34.435986 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.06119, "decimalLat": -28.541139 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -28.541 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104267, "decimalLat": -29.480084 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.377799, "decimalLat": -31.926101 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.751422, "decimalLat": -31.450315 }, "geometry": { "type": "Point", "coordinates": [ 152.751, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.815095, "decimalLat": -31.42985 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823969, "decimalLat": -29.810297 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.81 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825076, "decimalLat": -29.507987 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52119, "decimalLat": -34.435778 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.010546, "decimalLat": -34.045544 }, "geometry": { "type": "Point", "coordinates": [ 151.011, -34.046 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904095, "decimalLat": -31.456144 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637557, "decimalLat": -34.419718 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630839, "decimalLat": -34.394074 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913618, "decimalLat": -31.476768 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561808, "decimalLat": -28.330657 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.788792, "decimalLat": -34.202172 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.202 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064574, "decimalLat": -32.699547 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.7 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.496849, "decimalLat": -28.693467 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918504, "decimalLat": -31.470118 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518768, "decimalLat": -34.447403 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782929, "decimalLat": -31.53933 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -31.539 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002877, "decimalLat": -28.622261 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -28.622 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638519, "decimalLat": -34.490652 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1033, "decimalLat": -30.32307 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -30.323 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.641843, "decimalLat": -31.707901 }, "geometry": { "type": "Point", "coordinates": [ 152.642, -31.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630787, "decimalLat": -34.420624 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079896, "decimalLat": -31.845958 }, "geometry": { "type": "Point", "coordinates": [ 152.08, -31.846 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510553, "decimalLat": -28.69241 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.692 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.692046, "decimalLat": -31.869627 }, "geometry": { "type": "Point", "coordinates": [ 152.692, -31.87 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920514, "decimalLat": -29.698519 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -29.699 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868199, "decimalLat": -31.471944 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555979, "decimalLat": -28.398963 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516583, "decimalLat": -34.449874 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522124, "decimalLat": -34.464195 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.982849, "decimalLat": -30.432207 }, "geometry": { "type": "Point", "coordinates": [ 152.983, -30.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530607, "decimalLat": -34.459264 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495167, "decimalLat": -28.69445 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521284, "decimalLat": -34.465719 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.172614, "decimalLat": -29.911288 }, "geometry": { "type": "Point", "coordinates": [ 152.173, -29.911 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071535, "decimalLat": -32.71063 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894649, "decimalLat": -30.46734 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -30.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603557, "decimalLat": -34.427468 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929137, "decimalLat": -31.474405 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631484, "decimalLat": -34.387812 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513018, "decimalLat": -34.44716 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645137, "decimalLat": -34.391492 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926634, "decimalLat": -31.454746 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.308213, "decimalLat": -28.89079 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525483, "decimalLat": -34.459917 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911566, "decimalLat": -31.443198 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524098, "decimalLat": -34.463703 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513791, "decimalLat": -34.446067 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.981507, "decimalLat": -34.0247 }, "geometry": { "type": "Point", "coordinates": [ 150.982, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819927, "decimalLat": -31.305577 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.306 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101317, "decimalLat": -29.489662 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.013478, "decimalLat": -32.73255 }, "geometry": { "type": "Point", "coordinates": [ 152.013, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599207, "decimalLat": -28.716257 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.716 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.186911, "decimalLat": -31.953816 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -31.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077637, "decimalLat": -32.72246 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790539, "decimalLat": -30.251232 }, "geometry": { "type": "Point", "coordinates": [ 152.791, -30.251 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100184, "decimalLat": -30.3065 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -30.306 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785872, "decimalLat": -33.708828 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.00569, "decimalLat": -29.185283 }, "geometry": { "type": "Point", "coordinates": [ 153.006, -29.185 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5128, "decimalLat": -34.446822 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.617112, "decimalLat": -32.600859 }, "geometry": { "type": "Point", "coordinates": [ 151.617, -32.601 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626857, "decimalLat": -34.385667 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.033221, "decimalLat": -30.379586 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -30.38 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.112725, "decimalLat": -30.263392 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -30.263 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4261, "decimalLat": -28.35734 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.357 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.295453, "decimalLat": -28.983835 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.984 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636918, "decimalLat": -34.422708 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637334, "decimalLat": -34.423771 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555987, "decimalLat": -28.398817 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808356, "decimalLat": -34.098074 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520858, "decimalLat": -34.467613 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324831, "decimalLat": -36.294306 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.294 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81527, "decimalLat": -31.42801 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.428 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077211, "decimalLat": -32.722468 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.935139, "decimalLat": -29.709626 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -29.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103468, "decimalLat": -29.485599 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645582, "decimalLat": -34.401626 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.402 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624287, "decimalLat": -34.386185 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.116346, "decimalLat": -32.764542 }, "geometry": { "type": "Point", "coordinates": [ 152.116, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823694, "decimalLat": -29.813401 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.813 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.242595, "decimalLat": -32.387432 }, "geometry": { "type": "Point", "coordinates": [ 152.243, -32.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.975455, "decimalLat": -34.085671 }, "geometry": { "type": "Point", "coordinates": [ 150.975, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609156, "decimalLat": -34.418805 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.653641, "decimalLat": -33.53116 }, "geometry": { "type": "Point", "coordinates": [ 150.654, -33.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303853, "decimalLat": -28.820797 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.588099, "decimalLat": -34.769461 }, "geometry": { "type": "Point", "coordinates": [ 146.588, -34.769 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.984371, "decimalLat": -30.646868 }, "geometry": { "type": "Point", "coordinates": [ 152.984, -30.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6402, "decimalLat": -34.492831 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895568, "decimalLat": -31.461866 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63728, "decimalLat": -34.423779 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.075352, "decimalLat": -32.719816 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78494, "decimalLat": -33.719256 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.684569, "decimalLat": -34.355784 }, "geometry": { "type": "Point", "coordinates": [ 150.685, -34.356 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10813, "decimalLat": -29.490726 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516416, "decimalLat": -34.450024 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.127304, "decimalLat": -29.195909 }, "geometry": { "type": "Point", "coordinates": [ 153.127, -29.196 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108221, "decimalLat": -29.490213 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.132682, "decimalLat": -28.581914 }, "geometry": { "type": "Point", "coordinates": [ 153.133, -28.582 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399764, "decimalLat": -29.03767 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -29.038 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904691, "decimalLat": -31.439395 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.972884, "decimalLat": -34.123039 }, "geometry": { "type": "Point", "coordinates": [ 150.973, -34.123 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300294, "decimalLat": -28.82525 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.16432, "decimalLat": -31.07321 }, "geometry": { "type": "Point", "coordinates": [ 150.164, -31.073 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.500772, "decimalLat": -28.788298 }, "geometry": { "type": "Point", "coordinates": [ 153.501, -28.788 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08747, "decimalLat": -32.74408 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -32.744 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.957118, "decimalLat": -34.105555 }, "geometry": { "type": "Point", "coordinates": [ 150.957, -34.106 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950099, "decimalLat": -36.567944 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.568 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60472, "decimalLat": -34.424822 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637024, "decimalLat": -34.422431 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662766, "decimalLat": -34.458311 }, "geometry": { "type": "Point", "coordinates": [ 150.663, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604696, "decimalLat": -34.431403 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602994, "decimalLat": -34.427358 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.594499, "decimalLat": -34.410584 }, "geometry": { "type": "Point", "coordinates": [ 150.594, -34.411 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615998, "decimalLat": -34.440306 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.855044, "decimalLat": -32.738832 }, "geometry": { "type": "Point", "coordinates": [ 151.855, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615108, "decimalLat": -34.431399 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637324, "decimalLat": -34.423762 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520419, "decimalLat": -34.454117 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630144, "decimalLat": -34.420666 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510401, "decimalLat": -28.809978 }, "geometry": { "type": "Point", "coordinates": [ 153.51, -28.81 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.329229, "decimalLat": -28.830312 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608854, "decimalLat": -34.435144 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103849, "decimalLat": -29.485057 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630633, "decimalLat": -34.420657 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016582, "decimalLat": -36.557254 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524425, "decimalLat": -34.466252 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637028, "decimalLat": -34.488316 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639067, "decimalLat": -34.493223 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.801671, "decimalLat": -34.112369 }, "geometry": { "type": "Point", "coordinates": [ 150.802, -34.112 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.313744, "decimalLat": -32.140794 }, "geometry": { "type": "Point", "coordinates": [ 152.314, -32.141 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798999, "decimalLat": -31.124684 }, "geometry": { "type": "Point", "coordinates": [ 152.799, -31.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519535, "decimalLat": -34.461212 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104224, "decimalLat": -29.479603 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915663, "decimalLat": -31.482664 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280525, "decimalLat": -28.676823 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.677 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.323041, "decimalLat": -32.213007 }, "geometry": { "type": "Point", "coordinates": [ 152.323, -32.213 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.987275, "decimalLat": -32.400924 }, "geometry": { "type": "Point", "coordinates": [ 151.987, -32.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613362, "decimalLat": -34.457987 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522641, "decimalLat": -34.465846 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520414, "decimalLat": -34.465711 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.83066, "decimalLat": -29.640871 }, "geometry": { "type": "Point", "coordinates": [ 152.831, -29.641 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.725457, "decimalLat": -30.221828 }, "geometry": { "type": "Point", "coordinates": [ 152.725, -30.222 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.327772, "decimalLat": -31.87703 }, "geometry": { "type": "Point", "coordinates": [ 152.328, -31.877 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.633936, "decimalLat": -30.081071 }, "geometry": { "type": "Point", "coordinates": [ 152.634, -30.081 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.1067, "decimalLat": -32.728703 }, "geometry": { "type": "Point", "coordinates": [ 152.107, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615785, "decimalLat": -34.435902 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606611, "decimalLat": -34.457684 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.132313, "decimalLat": -31.415267 }, "geometry": { "type": "Point", "coordinates": [ 152.132, -31.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606899, "decimalLat": -34.454462 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523635, "decimalLat": -34.459465 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.661937, "decimalLat": -30.469192 }, "geometry": { "type": "Point", "coordinates": [ 152.662, -30.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.295088, "decimalLat": -30.009664 }, "geometry": { "type": "Point", "coordinates": [ 151.295, -30.01 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.323041, "decimalLat": -32.213007 }, "geometry": { "type": "Point", "coordinates": [ 152.323, -32.213 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560832, "decimalLat": -28.37442 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897126, "decimalLat": -31.474927 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527726, "decimalLat": -34.466526 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524508, "decimalLat": -34.453876 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634891, "decimalLat": -34.487661 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.951303, "decimalLat": -36.599554 }, "geometry": { "type": "Point", "coordinates": [ 149.951, -36.6 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902607, "decimalLat": -31.45439 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.208012, "decimalLat": -31.420297 }, "geometry": { "type": "Point", "coordinates": [ 152.208, -31.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016582, "decimalLat": -36.557254 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.163099, "decimalLat": -31.710087 }, "geometry": { "type": "Point", "coordinates": [ 152.163, -31.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926157, "decimalLat": -31.459104 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.059198, "decimalLat": -28.999361 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -28.999 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797565, "decimalLat": -30.915154 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -30.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.421412, "decimalLat": -36.164086 }, "geometry": { "type": "Point", "coordinates": [ 149.421, -36.164 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618961, "decimalLat": -34.439408 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.432335, "decimalLat": -28.969541 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.97 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645157, "decimalLat": -34.393116 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.600953, "decimalLat": -28.687002 }, "geometry": { "type": "Point", "coordinates": [ 153.601, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918407, "decimalLat": -31.470168 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609402, "decimalLat": -34.418963 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605773, "decimalLat": -34.4375 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885439, "decimalLat": -29.312999 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -29.313 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517208, "decimalLat": -34.447525 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517366, "decimalLat": -34.452099 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124177, "decimalLat": -30.29436 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.294 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786378, "decimalLat": -33.706328 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.797056, "decimalLat": -34.117278 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.117 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517215, "decimalLat": -34.452078 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.526866, "decimalLat": -28.68424 }, "geometry": { "type": "Point", "coordinates": [ 153.527, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.111037, "decimalLat": -29.48707 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.402887, "decimalLat": -31.925334 }, "geometry": { "type": "Point", "coordinates": [ 152.403, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630993, "decimalLat": -34.388226 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43077, "decimalLat": -29.016172 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067434, "decimalLat": -32.708155 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.492705, "decimalLat": -28.677275 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -28.677 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.207817, "decimalLat": -28.830086 }, "geometry": { "type": "Point", "coordinates": [ 153.208, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616485, "decimalLat": -34.398619 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103983, "decimalLat": -29.489549 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521057, "decimalLat": -34.466778 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068252, "decimalLat": -32.710545 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090781, "decimalLat": -29.487588 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108162, "decimalLat": -29.490591 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.289497, "decimalLat": -28.998903 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -28.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604795, "decimalLat": -34.427158 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632894, "decimalLat": -34.418826 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517242, "decimalLat": -34.446381 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921646, "decimalLat": -31.474953 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786427, "decimalLat": -31.634861 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.635 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.385763, "decimalLat": -31.876729 }, "geometry": { "type": "Point", "coordinates": [ 152.386, -31.877 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534404, "decimalLat": -34.426658 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633758, "decimalLat": -34.418247 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.849072, "decimalLat": -34.052919 }, "geometry": { "type": "Point", "coordinates": [ 150.849, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.617483, "decimalLat": -31.828573 }, "geometry": { "type": "Point", "coordinates": [ 152.617, -31.829 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605168, "decimalLat": -34.437732 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631974, "decimalLat": -34.418258 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379287, "decimalLat": -31.918732 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.725171, "decimalLat": -32.224807 }, "geometry": { "type": "Point", "coordinates": [ 151.725, -32.225 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631315, "decimalLat": -34.420021 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601772, "decimalLat": -34.428623 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785225, "decimalLat": -33.70573 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.380233, "decimalLat": -31.920978 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813393, "decimalLat": -33.365499 }, "geometry": { "type": "Point", "coordinates": [ 150.813, -33.365 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604325, "decimalLat": -34.437905 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634188, "decimalLat": -34.488657 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.39132, "decimalLat": -31.203574 }, "geometry": { "type": "Point", "coordinates": [ 152.391, -31.204 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629685, "decimalLat": -34.420711 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615751, "decimalLat": -34.435982 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98601, "decimalLat": -30.326332 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -30.326 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51857, "decimalLat": -34.447472 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29749, "decimalLat": -29.00401 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -29.004 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609146, "decimalLat": -34.418769 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639501, "decimalLat": -34.392745 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.191408, "decimalLat": -29.862543 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -29.863 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519656, "decimalLat": -34.455283 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897998, "decimalLat": -31.436032 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521611, "decimalLat": -34.465717 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.23013, "decimalLat": -34.263818 }, "geometry": { "type": "Point", "coordinates": [ 150.23, -34.264 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.955146, "decimalLat": -30.666958 }, "geometry": { "type": "Point", "coordinates": [ 152.955, -30.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609577, "decimalLat": -34.418552 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.823257, "decimalLat": -34.100528 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.161312, "decimalLat": -32.716024 }, "geometry": { "type": "Point", "coordinates": [ 152.161, -32.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.010861, "decimalLat": -30.417681 }, "geometry": { "type": "Point", "coordinates": [ 153.011, -30.418 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786153, "decimalLat": -33.71321 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851464, "decimalLat": -29.692524 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.011912, "decimalLat": -30.422885 }, "geometry": { "type": "Point", "coordinates": [ 153.012, -30.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627942, "decimalLat": -34.420406 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.962048, "decimalLat": -36.514707 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.515 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.281171, "decimalLat": -32.405773 }, "geometry": { "type": "Point", "coordinates": [ 152.281, -32.406 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824518, "decimalLat": -29.505452 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615158, "decimalLat": -34.435403 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.979071, "decimalLat": -30.420393 }, "geometry": { "type": "Point", "coordinates": [ 152.979, -30.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64204, "decimalLat": -34.395282 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900998, "decimalLat": -31.442765 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 152.967148, "decimalLat": -31.184721 }, "geometry": { "type": "Point", "coordinates": [ 152.967, -31.185 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5569, "decimalLat": -28.400371 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.781736, "decimalLat": -34.196299 }, "geometry": { "type": "Point", "coordinates": [ 150.782, -34.196 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9249, "decimalLat": -31.214814 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.215 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919045, "decimalLat": -31.458791 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400596, "decimalLat": -28.257714 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631511, "decimalLat": -34.388398 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322093, "decimalLat": -28.837715 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.390578, "decimalLat": -28.838594 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.839 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557172, "decimalLat": -28.397528 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636676, "decimalLat": -34.488047 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.998642, "decimalLat": -34.082932 }, "geometry": { "type": "Point", "coordinates": [ 150.999, -34.083 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29336, "decimalLat": -28.864551 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.01615, "decimalLat": -36.226553 }, "geometry": { "type": "Point", "coordinates": [ 150.016, -36.227 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522236, "decimalLat": -34.451567 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908308, "decimalLat": -31.438637 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61147, "decimalLat": -34.419689 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.883942, "decimalLat": -34.063969 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.064 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521241, "decimalLat": -34.454314 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824706, "decimalLat": -29.505434 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.505 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.421792, "decimalLat": -31.750441 }, "geometry": { "type": "Point", "coordinates": [ 151.422, -31.75 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.414856, "decimalLat": -31.933292 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.198292, "decimalLat": -32.220827 }, "geometry": { "type": "Point", "coordinates": [ 152.198, -32.221 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784669, "decimalLat": -33.717881 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.018706, "decimalLat": -28.560007 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -28.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.014607, "decimalLat": -32.666903 }, "geometry": { "type": "Point", "coordinates": [ 152.015, -32.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.193373, "decimalLat": -32.220759 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.221 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518344, "decimalLat": -34.447007 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.152571, "decimalLat": -32.722902 }, "geometry": { "type": "Point", "coordinates": [ 152.153, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428712, "decimalLat": -29.016259 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.774796, "decimalLat": -32.446115 }, "geometry": { "type": "Point", "coordinates": [ 151.775, -32.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522167, "decimalLat": -34.464214 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897944, "decimalLat": -31.442907 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375005, "decimalLat": -28.998794 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.999 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924933, "decimalLat": -31.454184 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9193, "decimalLat": -31.459265 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.187392, "decimalLat": -32.232904 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -32.233 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91757, "decimalLat": -31.477051 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833136, "decimalLat": -34.085987 }, "geometry": { "type": "Point", "coordinates": [ 150.833, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60576, "decimalLat": -34.427646 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.985731, "decimalLat": -32.751428 }, "geometry": { "type": "Point", "coordinates": [ 151.986, -32.751 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.688766, "decimalLat": -32.689812 }, "geometry": { "type": "Point", "coordinates": [ 151.689, -32.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.052346, "decimalLat": -28.468198 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -28.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640362, "decimalLat": -34.494051 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317531, "decimalLat": -28.648876 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.649 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.395436, "decimalLat": -31.966894 }, "geometry": { "type": "Point", "coordinates": [ 152.395, -31.967 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102733, "decimalLat": -29.487686 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528896, "decimalLat": -34.457489 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605009, "decimalLat": -34.432626 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.056469, "decimalLat": -32.737992 }, "geometry": { "type": "Point", "coordinates": [ 152.056, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520127, "decimalLat": -34.449297 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597551, "decimalLat": -34.449501 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623338, "decimalLat": -34.3832 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277646, "decimalLat": -28.939107 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.939 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.556893, "decimalLat": -34.363394 }, "geometry": { "type": "Point", "coordinates": [ 150.557, -34.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64287, "decimalLat": -34.394767 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.107655, "decimalLat": -31.419488 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -31.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60317, "decimalLat": -34.427686 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604214, "decimalLat": -34.437966 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.661161, "decimalLat": -28.610492 }, "geometry": { "type": "Point", "coordinates": [ 152.661, -28.61 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.912959, "decimalLat": -32.494759 }, "geometry": { "type": "Point", "coordinates": [ 149.913, -32.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637311, "decimalLat": -34.423824 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626866, "decimalLat": -34.38536 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615809, "decimalLat": -34.433153 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625852, "decimalLat": -34.386215 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605696, "decimalLat": -34.423417 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304113, "decimalLat": -28.822468 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790835, "decimalLat": -34.157616 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.158 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516697, "decimalLat": -34.448993 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.836892, "decimalLat": -34.056615 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.057 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52312, "decimalLat": -34.466225 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108167, "decimalLat": -29.490227 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.816907, "decimalLat": -34.098443 }, "geometry": { "type": "Point", "coordinates": [ 150.817, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.363197, "decimalLat": -29.377847 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -29.378 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872682, "decimalLat": -31.286978 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.287 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.943613, "decimalLat": -30.389611 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -30.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657531, "decimalLat": -34.455957 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103001, "decimalLat": -29.48778 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518081, "decimalLat": -34.457009 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833136, "decimalLat": -34.085987 }, "geometry": { "type": "Point", "coordinates": [ 150.833, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10158, "decimalLat": -29.489862 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927638, "decimalLat": -30.244629 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -30.245 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.059388, "decimalLat": -32.738106 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607389, "decimalLat": -28.687767 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525494, "decimalLat": -34.4599 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872086, "decimalLat": -31.284893 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.285 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101301, "decimalLat": -29.489974 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639453, "decimalLat": -34.399488 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597636, "decimalLat": -34.418408 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.133157, "decimalLat": -32.720012 }, "geometry": { "type": "Point", "coordinates": [ 152.133, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.031397, "decimalLat": -34.031656 }, "geometry": { "type": "Point", "coordinates": [ 151.031, -34.032 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535233, "decimalLat": -34.462215 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.182861, "decimalLat": -31.960117 }, "geometry": { "type": "Point", "coordinates": [ 152.183, -31.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520185, "decimalLat": -34.465724 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619817, "decimalLat": -34.439154 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785264, "decimalLat": -33.717019 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.836945, "decimalLat": -34.073654 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.074 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637269, "decimalLat": -34.423788 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642413, "decimalLat": -34.395569 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071807, "decimalLat": -30.887407 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.078185, "decimalLat": -32.727389 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108162, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794884, "decimalLat": -31.153665 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -31.154 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919458, "decimalLat": -31.438717 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325851, "decimalLat": -28.672561 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.673 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379321, "decimalLat": -31.919949 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601987, "decimalLat": -34.42604 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315922, "decimalLat": -28.929694 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105024, "decimalLat": -29.48968 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906378, "decimalLat": -31.449505 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.88363, "decimalLat": -34.015498 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.015 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518343, "decimalLat": -34.451461 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915166, "decimalLat": -31.436227 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.487864, "decimalLat": -28.228241 }, "geometry": { "type": "Point", "coordinates": [ 153.488, -28.228 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.09566, "decimalLat": -31.668072 }, "geometry": { "type": "Point", "coordinates": [ 152.096, -31.668 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563882, "decimalLat": -28.380941 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657643, "decimalLat": -34.455842 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.060645, "decimalLat": -29.740244 }, "geometry": { "type": "Point", "coordinates": [ 151.061, -29.74 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.299722, "decimalLat": -31.905384 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518985, "decimalLat": -34.460282 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.195391, "decimalLat": -28.879711 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.732899, "decimalLat": -31.832329 }, "geometry": { "type": "Point", "coordinates": [ 152.733, -31.832 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642043, "decimalLat": -34.39595 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.375866, "decimalLat": -31.953089 }, "geometry": { "type": "Point", "coordinates": [ 152.376, -31.953 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372252, "decimalLat": -31.921251 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656053, "decimalLat": -34.458634 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.111219, "decimalLat": -30.286304 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -30.286 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808286, "decimalLat": -34.098116 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519149, "decimalLat": -34.459888 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604266, "decimalLat": -34.438823 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.701571, "decimalLat": -32.692029 }, "geometry": { "type": "Point", "coordinates": [ 151.702, -32.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.501114, "decimalLat": -28.224592 }, "geometry": { "type": "Point", "coordinates": [ 153.501, -28.225 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792881, "decimalLat": -34.139386 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.139 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638988, "decimalLat": -34.491806 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521884, "decimalLat": -34.464596 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617065, "decimalLat": -34.433754 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.01413, "decimalLat": -31.13273 }, "geometry": { "type": "Point", "coordinates": [ 150.014, -31.133 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916955, "decimalLat": -31.443061 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604655, "decimalLat": -34.438903 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78529, "decimalLat": -31.633797 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.634 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.986961, "decimalLat": -34.043858 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.044 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.284425, "decimalLat": -29.021761 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -29.022 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10975, "decimalLat": -29.490194 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636137, "decimalLat": -34.420331 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.26475, "decimalLat": -28.874133 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928861, "decimalLat": -31.459497 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59462, "decimalLat": -34.427608 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637268, "decimalLat": -34.423824 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888406, "decimalLat": -31.281793 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.282 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624896, "decimalLat": -34.399657 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604299, "decimalLat": -34.438048 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911398, "decimalLat": -31.472546 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630894, "decimalLat": -34.420662 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863782, "decimalLat": -29.682681 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -29.683 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10976, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604725, "decimalLat": -34.42466 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092052, "decimalLat": -29.488018 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.797297, "decimalLat": -34.22351 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.224 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639224, "decimalLat": -34.493091 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.289166, "decimalLat": -28.715757 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -28.716 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98038, "decimalLat": -30.435319 }, "geometry": { "type": "Point", "coordinates": [ 152.98, -30.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990212, "decimalLat": -34.030144 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.03 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517241, "decimalLat": -34.451555 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.21262, "decimalLat": -32.23042 }, "geometry": { "type": "Point", "coordinates": [ 152.213, -32.23 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621126, "decimalLat": -34.398718 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925147, "decimalLat": -31.453371 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629286, "decimalLat": -34.395153 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292768, "decimalLat": -28.864702 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.38381, "decimalLat": -31.914717 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.738755, "decimalLat": -30.484348 }, "geometry": { "type": "Point", "coordinates": [ 151.739, -30.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524107, "decimalLat": -34.471492 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924256, "decimalLat": -31.466746 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924837, "decimalLat": -31.454029 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870552, "decimalLat": -31.461666 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611681, "decimalLat": -34.419531 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.337337, "decimalLat": -28.80993 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -28.81 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925853, "decimalLat": -31.452737 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552143, "decimalLat": -33.491319 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279615, "decimalLat": -28.831045 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19096, "decimalLat": -32.219628 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -32.22 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785249, "decimalLat": -33.705564 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925301, "decimalLat": -31.459125 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528243, "decimalLat": -34.457494 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624949, "decimalLat": -34.399685 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.531038, "decimalLat": -28.36289 }, "geometry": { "type": "Point", "coordinates": [ 153.531, -28.363 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795091, "decimalLat": -31.637937 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -31.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.979238, "decimalLat": -36.570187 }, "geometry": { "type": "Point", "coordinates": [ 149.979, -36.57 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626751, "decimalLat": -34.421375 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615372, "decimalLat": -34.435533 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516943, "decimalLat": -28.555383 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.555 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092229, "decimalLat": -29.488135 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639086, "decimalLat": -34.491421 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604784, "decimalLat": -34.439347 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785889, "decimalLat": -31.631598 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785296, "decimalLat": -33.715649 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.221668, "decimalLat": -34.51311 }, "geometry": { "type": "Point", "coordinates": [ 150.222, -34.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630354, "decimalLat": -34.420904 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868104, "decimalLat": -29.667303 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.859156, "decimalLat": -34.073063 }, "geometry": { "type": "Point", "coordinates": [ 150.859, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096151, "decimalLat": -29.485141 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402686, "decimalLat": -28.960638 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615849, "decimalLat": -34.429836 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927881, "decimalLat": -31.475533 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513078, "decimalLat": -34.447351 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627107, "decimalLat": -34.385672 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513933, "decimalLat": -34.447891 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627354, "decimalLat": -34.421215 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608612, "decimalLat": -34.436005 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.696147, "decimalLat": -33.443484 }, "geometry": { "type": "Point", "coordinates": [ 150.696, -33.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522746, "decimalLat": -34.467444 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403627, "decimalLat": -31.928254 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325204, "decimalLat": -28.82563 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610445, "decimalLat": -34.420156 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616307, "decimalLat": -34.435921 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.8658, "decimalLat": -32.74536 }, "geometry": { "type": "Point", "coordinates": [ 151.866, -32.745 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636399, "decimalLat": -34.485536 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879562, "decimalLat": -29.707344 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -29.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394445, "decimalLat": -28.959546 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524249, "decimalLat": -34.45268 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517436, "decimalLat": -34.453435 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604751, "decimalLat": -34.439743 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634431, "decimalLat": -34.488536 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90386, "decimalLat": -31.493585 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073059, "decimalLat": -32.724707 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630863, "decimalLat": -34.420616 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.198292, "decimalLat": -32.220827 }, "geometry": { "type": "Point", "coordinates": [ 152.198, -32.221 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.652462, "decimalLat": -32.685393 }, "geometry": { "type": "Point", "coordinates": [ 151.652, -32.685 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5451, "decimalLat": -28.596155 }, "geometry": { "type": "Point", "coordinates": [ 153.545, -28.596 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92604, "decimalLat": -31.463023 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.590309, "decimalLat": -34.769934 }, "geometry": { "type": "Point", "coordinates": [ 146.59, -34.77 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619176, "decimalLat": -34.436815 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063517, "decimalLat": -32.706311 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60297, "decimalLat": -34.427429 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607824, "decimalLat": -34.422052 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51405, "decimalLat": -34.446118 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.988518, "decimalLat": -34.028515 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.906449, "decimalLat": -31.832643 }, "geometry": { "type": "Point", "coordinates": [ 151.906, -31.833 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.210284, "decimalLat": -31.560739 }, "geometry": { "type": "Point", "coordinates": [ 152.21, -31.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516481, "decimalLat": -34.450034 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.287241, "decimalLat": -29.164296 }, "geometry": { "type": "Point", "coordinates": [ 153.287, -29.164 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63739, "decimalLat": -34.405634 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.406 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864984, "decimalLat": -31.476451 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.70819, "decimalLat": -31.360285 }, "geometry": { "type": "Point", "coordinates": [ 152.708, -31.36 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.006699, "decimalLat": -32.63318 }, "geometry": { "type": "Point", "coordinates": [ 152.007, -32.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607211, "decimalLat": -34.454586 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63013, "decimalLat": -34.421161 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922345, "decimalLat": -31.444372 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.466843, "decimalLat": -32.401005 }, "geometry": { "type": "Point", "coordinates": [ 152.467, -32.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.866027, "decimalLat": -34.060984 }, "geometry": { "type": "Point", "coordinates": [ 150.866, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318447, "decimalLat": -28.82675 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609071, "decimalLat": -34.455415 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302384, "decimalLat": -28.84663 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.975774, "decimalLat": -34.054438 }, "geometry": { "type": "Point", "coordinates": [ 150.976, -34.054 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636205, "decimalLat": -34.487777 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523423, "decimalLat": -34.459272 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630597, "decimalLat": -34.420783 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631497, "decimalLat": -34.38811 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784006, "decimalLat": -31.630053 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628079, "decimalLat": -34.389747 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656569, "decimalLat": -34.456525 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608688, "decimalLat": -28.683535 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307739, "decimalLat": -28.996723 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.997 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640035, "decimalLat": -34.397759 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109433, "decimalLat": -29.490637 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625011, "decimalLat": -34.389796 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31678, "decimalLat": -28.94975 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109819, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604949, "decimalLat": -34.423294 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82301, "decimalLat": -34.149664 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610334, "decimalLat": -34.41909 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615811, "decimalLat": -34.435019 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930912, "decimalLat": -29.725051 }, "geometry": { "type": "Point", "coordinates": [ 152.931, -29.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615626, "decimalLat": -34.434231 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.204928, "decimalLat": -28.844961 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.715263, "decimalLat": -32.669349 }, "geometry": { "type": "Point", "coordinates": [ 151.715, -32.669 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.387108, "decimalLat": -28.908123 }, "geometry": { "type": "Point", "coordinates": [ 152.387, -28.908 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.01112, "decimalLat": -36.547428 }, "geometry": { "type": "Point", "coordinates": [ 150.011, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300004, "decimalLat": -28.88526 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.885 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521102, "decimalLat": -34.466734 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.45426, "decimalLat": -31.93643 }, "geometry": { "type": "Point", "coordinates": [ 152.454, -31.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01536, "decimalLat": -28.63955 }, "geometry": { "type": "Point", "coordinates": [ 153.015, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82767, "decimalLat": -34.155923 }, "geometry": { "type": "Point", "coordinates": [ 150.828, -34.156 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898896, "decimalLat": -31.437176 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396418, "decimalLat": -29.097349 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -29.097 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.058604, "decimalLat": -29.740281 }, "geometry": { "type": "Point", "coordinates": [ 151.059, -29.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.506959, "decimalLat": -30.511997 }, "geometry": { "type": "Point", "coordinates": [ 151.507, -30.512 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.376234, "decimalLat": -30.750596 }, "geometry": { "type": "Point", "coordinates": [ 151.376, -30.751 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615802, "decimalLat": -34.434171 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.32438, "decimalLat": -36.295538 }, "geometry": { "type": "Point", "coordinates": [ 149.324, -36.296 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891511, "decimalLat": -31.45737 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640884, "decimalLat": -34.397712 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.159104, "decimalLat": -28.924853 }, "geometry": { "type": "Point", "coordinates": [ 153.159, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905758, "decimalLat": -31.489708 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515885, "decimalLat": -34.448102 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03724, "decimalLat": -32.729431 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523967, "decimalLat": -34.452648 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.101687, "decimalLat": -34.971087 }, "geometry": { "type": "Point", "coordinates": [ 150.102, -34.971 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.011377, "decimalLat": -32.727316 }, "geometry": { "type": "Point", "coordinates": [ 152.011, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895521, "decimalLat": -31.44785 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640289, "decimalLat": -34.493166 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.858691, "decimalLat": -31.129566 }, "geometry": { "type": "Point", "coordinates": [ 152.859, -31.13 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616603, "decimalLat": -34.430094 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603836, "decimalLat": -34.43941 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.395775, "decimalLat": -31.943961 }, "geometry": { "type": "Point", "coordinates": [ 152.396, -31.944 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292847, "decimalLat": -28.720511 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.721 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.656167, "decimalLat": -30.17465 }, "geometry": { "type": "Point", "coordinates": [ 152.656, -30.175 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609441, "decimalLat": -34.420668 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639816, "decimalLat": -34.398179 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.178153, "decimalLat": -28.863762 }, "geometry": { "type": "Point", "coordinates": [ 153.178, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.092193, "decimalLat": -32.738862 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.716509, "decimalLat": -31.749083 }, "geometry": { "type": "Point", "coordinates": [ 152.717, -31.749 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.321783, "decimalLat": -36.29805 }, "geometry": { "type": "Point", "coordinates": [ 149.322, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514592, "decimalLat": -34.447292 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597944, "decimalLat": -34.425897 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.586284, "decimalLat": -28.66561 }, "geometry": { "type": "Point", "coordinates": [ 153.586, -28.666 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63306, "decimalLat": -34.417558 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.739603, "decimalLat": -30.477824 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -30.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890607, "decimalLat": -30.245461 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -30.245 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10379, "decimalLat": -29.485473 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108065, "decimalLat": -29.490142 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623691, "decimalLat": -34.388815 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107373, "decimalLat": -29.490091 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373707, "decimalLat": -31.914407 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627228, "decimalLat": -34.420681 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.413708, "decimalLat": -28.889073 }, "geometry": { "type": "Point", "coordinates": [ 153.414, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896993, "decimalLat": -31.47441 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603656, "decimalLat": -34.436548 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028315, "decimalLat": -32.305041 }, "geometry": { "type": "Point", "coordinates": [ 152.028, -32.305 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606639, "decimalLat": -34.437652 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604214, "decimalLat": -34.437993 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562646, "decimalLat": -28.391295 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903765, "decimalLat": -31.326927 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.327 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343646, "decimalLat": -28.866891 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605001, "decimalLat": -34.437864 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.675478, "decimalLat": -32.510486 }, "geometry": { "type": "Point", "coordinates": [ 151.675, -32.51 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.806579, "decimalLat": -31.674782 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -31.675 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099772, "decimalLat": -29.491567 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63735, "decimalLat": -34.423618 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378286, "decimalLat": -31.92017 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898533, "decimalLat": -31.443043 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630709, "decimalLat": -34.420667 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522426, "decimalLat": -34.464291 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.05149, "decimalLat": -29.744032 }, "geometry": { "type": "Point", "coordinates": [ 151.051, -29.744 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.739707, "decimalLat": -30.479329 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -30.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516035, "decimalLat": -34.459203 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.369052, "decimalLat": -28.953149 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.997694, "decimalLat": -34.075588 }, "geometry": { "type": "Point", "coordinates": [ 150.998, -34.076 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.697215, "decimalLat": -33.408392 }, "geometry": { "type": "Point", "coordinates": [ 150.697, -33.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.078142, "decimalLat": -32.727834 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.175292, "decimalLat": -30.083437 }, "geometry": { "type": "Point", "coordinates": [ 152.175, -30.083 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520413, "decimalLat": -34.465747 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926618, "decimalLat": -31.466445 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.114205, "decimalLat": -28.524725 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -28.525 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.282479, "decimalLat": -28.805242 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.805 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.733213, "decimalLat": -31.342321 }, "geometry": { "type": "Point", "coordinates": [ 152.733, -31.342 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916532, "decimalLat": -31.444859 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523884, "decimalLat": -34.463581 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.939246, "decimalLat": -30.230133 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -30.23 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897256, "decimalLat": -31.475115 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623335, "decimalLat": -34.383326 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.798877, "decimalLat": -33.484283 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -33.484 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090341, "decimalLat": -29.480588 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514162, "decimalLat": -34.446399 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637302, "decimalLat": -34.423779 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27327, "decimalLat": -28.889411 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.092381, "decimalLat": -28.784217 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -28.784 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609264, "decimalLat": -34.420746 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630965, "decimalLat": -34.387288 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554571, "decimalLat": -28.58454 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.585 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.074309, "decimalLat": -28.555194 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -28.555 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315573, "decimalLat": -28.951212 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.951 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.874801, "decimalLat": -31.457385 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91584, "decimalLat": -31.482126 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099426, "decimalLat": -30.307389 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -30.307 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297816, "decimalLat": -28.827692 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.496076, "decimalLat": -28.695179 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.695 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786073, "decimalLat": -33.71231 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.780121, "decimalLat": -31.350774 }, "geometry": { "type": "Point", "coordinates": [ 152.78, -31.351 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60724, "decimalLat": -28.664312 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.664 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616609, "decimalLat": -34.43489 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.552129, "decimalLat": -28.585012 }, "geometry": { "type": "Point", "coordinates": [ 153.552, -28.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516918, "decimalLat": -34.442975 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532441, "decimalLat": -34.471255 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791628, "decimalLat": -31.640364 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.368325, "decimalLat": -33.501247 }, "geometry": { "type": "Point", "coordinates": [ 149.368, -33.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629731, "decimalLat": -34.420649 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108119, "decimalLat": -29.491002 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.103132, "decimalLat": -33.775559 }, "geometry": { "type": "Point", "coordinates": [ 150.103, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514619, "decimalLat": -34.446021 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616367, "decimalLat": -34.434588 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.300556, "decimalLat": -30.587778 }, "geometry": { "type": "Point", "coordinates": [ 151.301, -30.588 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610367, "decimalLat": -34.430531 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.047763, "decimalLat": -33.76085 }, "geometry": { "type": "Point", "coordinates": [ 150.048, -33.761 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.857153, "decimalLat": -31.447385 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610347, "decimalLat": -34.419018 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.406107, "decimalLat": -31.932222 }, "geometry": { "type": "Point", "coordinates": [ 152.406, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.469339, "decimalLat": -28.260576 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.217453, "decimalLat": -28.834132 }, "geometry": { "type": "Point", "coordinates": [ 153.217, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528528, "decimalLat": -34.456526 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609226, "decimalLat": -34.420565 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396299, "decimalLat": -29.094796 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -29.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071786, "decimalLat": -32.710657 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627263, "decimalLat": -34.420961 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367603, "decimalLat": -28.818638 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103677, "decimalLat": -29.485552 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602521, "decimalLat": -34.424887 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.229863, "decimalLat": -28.889491 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077144, "decimalLat": -32.722397 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63116, "decimalLat": -34.388094 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659532, "decimalLat": -34.457591 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519454, "decimalLat": -34.456586 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.226191, "decimalLat": -31.619955 }, "geometry": { "type": "Point", "coordinates": [ 152.226, -31.62 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644191, "decimalLat": -34.394215 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784915, "decimalLat": -33.704889 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513072, "decimalLat": -34.44717 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626602, "decimalLat": -34.385445 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520259, "decimalLat": -34.454015 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514452, "decimalLat": -34.447244 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.660167, "decimalLat": -34.458235 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109546, "decimalLat": -29.492795 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517379, "decimalLat": -34.452027 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985794, "decimalLat": -34.090362 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.09 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63922, "decimalLat": -34.392695 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10814, "decimalLat": -29.490255 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600325, "decimalLat": -34.428612 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637356, "decimalLat": -34.423771 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636247, "decimalLat": -34.421802 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825478, "decimalLat": -29.811319 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98509, "decimalLat": -34.096265 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525066, "decimalLat": -34.453409 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109776, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060759, "decimalLat": -32.711087 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.521789, "decimalLat": -28.683592 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884859, "decimalLat": -31.429377 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637831, "decimalLat": -34.488809 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.204506, "decimalLat": -34.622911 }, "geometry": { "type": "Point", "coordinates": [ 150.205, -34.623 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926324, "decimalLat": -31.476079 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809901, "decimalLat": -31.654877 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -31.655 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89266, "decimalLat": -33.991958 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.992 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.081243, "decimalLat": -29.744744 }, "geometry": { "type": "Point", "coordinates": [ 151.081, -29.745 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52205, "decimalLat": -34.465942 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.610351, "decimalLat": -28.658739 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.659 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.026121, "decimalLat": -32.729398 }, "geometry": { "type": "Point", "coordinates": [ 152.026, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313061, "decimalLat": -28.816234 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316807, "decimalLat": -28.817043 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.147631, "decimalLat": -29.067039 }, "geometry": { "type": "Point", "coordinates": [ 153.148, -29.067 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925124, "decimalLat": -31.453367 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890613, "decimalLat": -31.444781 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516759, "decimalLat": -34.448715 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610291, "decimalLat": -34.41908 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.816767, "decimalLat": -31.654173 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -31.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610715, "decimalLat": -34.430565 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632184, "decimalLat": -34.38842 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63083, "decimalLat": -34.420616 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.003682, "decimalLat": -34.006923 }, "geometry": { "type": "Point", "coordinates": [ 151.004, -34.007 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623357, "decimalLat": -34.383291 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412383, "decimalLat": -31.933158 }, "geometry": { "type": "Point", "coordinates": [ 152.412, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109422, "decimalLat": -29.490511 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.724564, "decimalLat": -30.934538 }, "geometry": { "type": "Point", "coordinates": [ 152.725, -30.935 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063752, "decimalLat": -32.706553 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785604, "decimalLat": -31.631781 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.289364, "decimalLat": -29.042938 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -29.043 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.986734, "decimalLat": -29.031105 }, "geometry": { "type": "Point", "coordinates": [ 152.987, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902945, "decimalLat": -31.441249 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.682237, "decimalLat": -31.507705 }, "geometry": { "type": "Point", "coordinates": [ 152.682, -31.508 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.84, "decimalLat": -34.13748 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.137 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516337, "decimalLat": -34.448283 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63588, "decimalLat": -34.419406 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077177, "decimalLat": -32.725789 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.823266, "decimalLat": -34.149678 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103988, "decimalLat": -29.48452 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851078, "decimalLat": -31.55526 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -31.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515048, "decimalLat": -34.459084 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.107655, "decimalLat": -31.419488 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -31.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.298072, "decimalLat": -36.181236 }, "geometry": { "type": "Point", "coordinates": [ 149.298, -36.181 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.553286, "decimalLat": -33.556303 }, "geometry": { "type": "Point", "coordinates": [ 149.553, -33.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604963, "decimalLat": -34.437665 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.837478, "decimalLat": -34.078737 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.079 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.078075, "decimalLat": -32.72797 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904981, "decimalLat": -31.437349 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.986144, "decimalLat": -30.398276 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -30.398 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.49018 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.171924, "decimalLat": -32.662551 }, "geometry": { "type": "Point", "coordinates": [ 152.172, -32.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630376, "decimalLat": -34.420913 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91088, "decimalLat": -31.431803 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896382, "decimalLat": -31.435137 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928901, "decimalLat": -31.447295 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616381, "decimalLat": -34.436004 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628757, "decimalLat": -34.389256 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638304, "decimalLat": -34.485924 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.026376, "decimalLat": -30.410794 }, "geometry": { "type": "Point", "coordinates": [ 153.026, -30.411 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604662, "decimalLat": -34.438678 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399378, "decimalLat": -28.260511 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10114, "decimalLat": -29.489932 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863579, "decimalLat": -31.299381 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637472, "decimalLat": -34.488036 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604081, "decimalLat": -34.438071 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534559, "decimalLat": -34.462183 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.507271, "decimalLat": -28.690609 }, "geometry": { "type": "Point", "coordinates": [ 153.507, -28.691 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.813274, "decimalLat": -31.401097 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -31.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293195, "decimalLat": -28.864615 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514128, "decimalLat": -34.447174 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607389, "decimalLat": -28.687767 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522031, "decimalLat": -34.465482 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.481451, "decimalLat": -31.470887 }, "geometry": { "type": "Point", "coordinates": [ 151.481, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639754, "decimalLat": -34.393426 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.03887, "decimalLat": -28.8445 }, "geometry": { "type": "Point", "coordinates": [ 153.039, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077229, "decimalLat": -32.722465 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.121806, "decimalLat": -35.06333 }, "geometry": { "type": "Point", "coordinates": [ 150.122, -35.063 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108092, "decimalLat": -29.490259 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.45436, "decimalLat": -28.669384 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104197, "decimalLat": -29.483203 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.115767, "decimalLat": -32.724028 }, "geometry": { "type": "Point", "coordinates": [ 152.116, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895436, "decimalLat": -31.447884 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110527, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.96702, "decimalLat": -28.342929 }, "geometry": { "type": "Point", "coordinates": [ 152.967, -28.343 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61029, "decimalLat": -34.419098 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922045, "decimalLat": -31.451678 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.377586, "decimalLat": -31.917085 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.917 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374123, "decimalLat": -31.916245 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92906, "decimalLat": -31.450157 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.747024, "decimalLat": -34.982344 }, "geometry": { "type": "Point", "coordinates": [ 149.747, -34.982 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617274, "decimalLat": -34.439808 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.980514, "decimalLat": -36.435679 }, "geometry": { "type": "Point", "coordinates": [ 149.981, -36.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.772168, "decimalLat": -32.586484 }, "geometry": { "type": "Point", "coordinates": [ 151.772, -32.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513106, "decimalLat": -34.447153 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.394987, "decimalLat": -31.944776 }, "geometry": { "type": "Point", "coordinates": [ 152.395, -31.945 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907862, "decimalLat": -31.48887 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615215, "decimalLat": -34.431104 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.486641, "decimalLat": -34.452853 }, "geometry": { "type": "Point", "coordinates": [ 150.487, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657378, "decimalLat": -34.45599 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103495, "decimalLat": -29.487322 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.545289, "decimalLat": -34.514293 }, "geometry": { "type": "Point", "coordinates": [ 150.545, -34.514 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.981126, "decimalLat": -30.437303 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -30.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.944433, "decimalLat": -29.346563 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -29.347 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60142, "decimalLat": -34.417707 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.723591, "decimalLat": -32.664011 }, "geometry": { "type": "Point", "coordinates": [ 151.724, -32.664 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635209, "decimalLat": -34.487974 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.76081, "decimalLat": -31.713817 }, "geometry": { "type": "Point", "coordinates": [ 152.761, -31.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101354, "decimalLat": -29.489904 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.990735, "decimalLat": -30.180461 }, "geometry": { "type": "Point", "coordinates": [ 152.991, -30.18 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.733337, "decimalLat": -32.246573 }, "geometry": { "type": "Point", "coordinates": [ 151.733, -32.247 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.188489, "decimalLat": -31.575228 }, "geometry": { "type": "Point", "coordinates": [ 152.188, -31.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908066, "decimalLat": -31.470576 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615158, "decimalLat": -34.435385 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655487, "decimalLat": -33.522609 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -33.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514096, "decimalLat": -34.446416 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614812, "decimalLat": -34.450993 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518281, "decimalLat": -34.448791 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.966338, "decimalLat": -31.254088 }, "geometry": { "type": "Point", "coordinates": [ 152.966, -31.254 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.084753, "decimalLat": -32.745927 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.746 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922243, "decimalLat": -31.448166 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.004171, "decimalLat": -28.931463 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -28.931 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.311159, "decimalLat": -36.108498 }, "geometry": { "type": "Point", "coordinates": [ 149.311, -36.108 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.224127, "decimalLat": -28.476852 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -28.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108113, "decimalLat": -29.490241 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61281, "decimalLat": -33.44793 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -33.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103744, "decimalLat": -29.485594 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517305, "decimalLat": -34.451593 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51447, "decimalLat": -34.443331 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926654, "decimalLat": -31.464065 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656179, "decimalLat": -33.58539 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -33.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523527, "decimalLat": -34.447635 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794013, "decimalLat": -31.642007 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.314015, "decimalLat": -32.331635 }, "geometry": { "type": "Point", "coordinates": [ 152.314, -32.332 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07177, "decimalLat": -32.713518 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629741, "decimalLat": -34.394441 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.198215, "decimalLat": -31.412421 }, "geometry": { "type": "Point", "coordinates": [ 152.198, -31.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923301, "decimalLat": -31.445315 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604823, "decimalLat": -34.418919 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605761, "decimalLat": -34.437536 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517351, "decimalLat": -34.446365 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895654, "decimalLat": -31.435753 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39275, "decimalLat": -28.959102 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604138, "decimalLat": -34.437964 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107421, "decimalLat": -29.490068 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630555, "decimalLat": -34.420746 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064158, "decimalLat": -32.709016 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.86688, "decimalLat": -32.488185 }, "geometry": { "type": "Point", "coordinates": [ 151.867, -32.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.360515, "decimalLat": -36.043897 }, "geometry": { "type": "Point", "coordinates": [ 149.361, -36.044 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066029, "decimalLat": -32.71021 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.194095, "decimalLat": -32.224416 }, "geometry": { "type": "Point", "coordinates": [ 152.194, -32.224 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909325, "decimalLat": -31.471614 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64212, "decimalLat": -34.397078 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949397, "decimalLat": -36.554597 }, "geometry": { "type": "Point", "coordinates": [ 149.949, -36.555 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915425, "decimalLat": -31.445894 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.371872, "decimalLat": -31.921004 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632345, "decimalLat": -34.388117 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06137, "decimalLat": -33.776734 }, "geometry": { "type": "Point", "coordinates": [ 150.061, -33.777 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616895, "decimalLat": -34.429396 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617172, "decimalLat": -34.433837 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900097, "decimalLat": -29.631513 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631008, "decimalLat": -34.388488 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888297, "decimalLat": -31.444794 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63089, "decimalLat": -34.387656 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.34886, "decimalLat": -28.809095 }, "geometry": { "type": "Point", "coordinates": [ 153.349, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82369, "decimalLat": -34.141271 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63348, "decimalLat": -34.418467 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51741, "decimalLat": -34.452109 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.443622, "decimalLat": -28.625849 }, "geometry": { "type": "Point", "coordinates": [ 153.444, -28.626 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.721054, "decimalLat": -31.340843 }, "geometry": { "type": "Point", "coordinates": [ 152.721, -31.341 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517927, "decimalLat": -34.437569 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292109, "decimalLat": -28.649467 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625148, "decimalLat": -34.386111 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891395, "decimalLat": -31.477897 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336688, "decimalLat": -28.868027 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -28.868 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63826, "decimalLat": -34.485932 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104171, "decimalLat": -29.481424 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.110282, "decimalLat": -29.762752 }, "geometry": { "type": "Point", "coordinates": [ 151.11, -29.763 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109793, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513794, "decimalLat": -34.446338 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78528, "decimalLat": -31.629699 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637364, "decimalLat": -34.48798 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885087, "decimalLat": -31.428965 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.847722, "decimalLat": -34.056 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.369052, "decimalLat": -28.953149 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.953 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.10822, "decimalLat": -31.15847 }, "geometry": { "type": "Point", "coordinates": [ 150.108, -31.158 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.164587, "decimalLat": -28.660285 }, "geometry": { "type": "Point", "coordinates": [ 153.165, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320408, "decimalLat": -28.845006 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094949, "decimalLat": -29.489003 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303174, "decimalLat": -28.827996 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.992896, "decimalLat": -30.380565 }, "geometry": { "type": "Point", "coordinates": [ 152.993, -30.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.832, "decimalLat": -31.26349 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -31.263 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901577, "decimalLat": -31.441884 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.052931, "decimalLat": -28.4464 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -28.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.609383, "decimalLat": -30.342971 }, "geometry": { "type": "Point", "coordinates": [ 152.609, -30.343 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604726, "decimalLat": -34.427292 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915981, "decimalLat": -30.275567 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -30.276 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.818352, "decimalLat": -32.38639 }, "geometry": { "type": "Point", "coordinates": [ 149.818, -32.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.166228, "decimalLat": -29.430623 }, "geometry": { "type": "Point", "coordinates": [ 153.166, -29.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.482892, "decimalLat": -28.246903 }, "geometry": { "type": "Point", "coordinates": [ 153.483, -28.247 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518612, "decimalLat": -34.454874 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10931, "decimalLat": -29.490735 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61678, "decimalLat": -34.430386 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602021, "decimalLat": -34.412301 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104004, "decimalLat": -29.485123 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.849654, "decimalLat": -32.7884 }, "geometry": { "type": "Point", "coordinates": [ 151.85, -32.788 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60237, "decimalLat": -28.69032 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522414, "decimalLat": -34.465805 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.545455, "decimalLat": -28.731653 }, "geometry": { "type": "Point", "coordinates": [ 153.545, -28.732 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.846008, "decimalLat": -30.598083 }, "geometry": { "type": "Point", "coordinates": [ 152.846, -30.598 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926704, "decimalLat": -31.463091 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601474, "decimalLat": -34.417717 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.187392, "decimalLat": -32.232904 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -32.233 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403946, "decimalLat": -31.996932 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.997 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517458, "decimalLat": -34.44753 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924659, "decimalLat": -31.456239 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524874, "decimalLat": -34.453261 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51917, "decimalLat": -34.459934 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.96116, "decimalLat": -32.01839 }, "geometry": { "type": "Point", "coordinates": [ 151.961, -32.018 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.12038, "decimalLat": -31.1112 }, "geometry": { "type": "Point", "coordinates": [ 150.12, -31.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312357, "decimalLat": -28.815323 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929001, "decimalLat": -31.45017 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617498, "decimalLat": -34.39972 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786166, "decimalLat": -33.705991 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610213, "decimalLat": -34.419124 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.548387, "decimalLat": -28.556838 }, "geometry": { "type": "Point", "coordinates": [ 153.548, -28.557 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928736, "decimalLat": -31.466442 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641688, "decimalLat": -34.394645 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635119, "decimalLat": -34.484222 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.699675, "decimalLat": -30.290301 }, "geometry": { "type": "Point", "coordinates": [ 152.7, -30.29 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911398, "decimalLat": -31.44142 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955028, "decimalLat": -36.650407 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604627, "decimalLat": -34.43837 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60512, "decimalLat": -34.429878 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63528, "decimalLat": -34.420215 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784781, "decimalLat": -33.708275 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.955746, "decimalLat": -29.236904 }, "geometry": { "type": "Point", "coordinates": [ 152.956, -29.237 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101488, "decimalLat": -29.489937 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624482, "decimalLat": -34.388127 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52946, "decimalLat": -34.471204 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518582, "decimalLat": -34.43971 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.217711, "decimalLat": -28.830222 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103645, "decimalLat": -29.485678 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615799, "decimalLat": -34.435028 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.967002, "decimalLat": -28.345422 }, "geometry": { "type": "Point", "coordinates": [ 152.967, -28.345 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635908, "decimalLat": -34.420344 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.414579, "decimalLat": -31.933849 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.15231, "decimalLat": -31.456465 }, "geometry": { "type": "Point", "coordinates": [ 152.152, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52388, "decimalLat": -34.464068 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.79094, "decimalLat": -32.654299 }, "geometry": { "type": "Point", "coordinates": [ 151.791, -32.654 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296004, "decimalLat": -28.818579 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10078, "decimalLat": -29.48996 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903576, "decimalLat": -31.441724 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.42898, "decimalLat": -28.972323 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.972 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.846601, "decimalLat": -34.055784 }, "geometry": { "type": "Point", "coordinates": [ 150.847, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.087296, "decimalLat": -31.101711 }, "geometry": { "type": "Point", "coordinates": [ 150.087, -31.102 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520052, "decimalLat": -34.467624 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517873, "decimalLat": -34.444906 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.191476, "decimalLat": -27.652236 }, "geometry": { "type": "Point", "coordinates": [ 153.191, -27.652 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.878065, "decimalLat": -33.252204 }, "geometry": { "type": "Point", "coordinates": [ 150.878, -33.252 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907416, "decimalLat": -31.44561 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.699633, "decimalLat": -30.290446 }, "geometry": { "type": "Point", "coordinates": [ 152.7, -30.29 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609402, "decimalLat": -34.418963 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914172, "decimalLat": -31.458481 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919133, "decimalLat": -31.471961 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91471, "decimalLat": -31.43089 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.059973, "decimalLat": -32.709087 }, "geometry": { "type": "Point", "coordinates": [ 152.06, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637395, "decimalLat": -34.422771 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605194, "decimalLat": -34.439103 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096204, "decimalLat": -29.485225 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605091, "decimalLat": -34.43316 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603669, "decimalLat": -34.437621 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52627, "decimalLat": -34.427219 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.303667, "decimalLat": -31.148381 }, "geometry": { "type": "Point", "coordinates": [ 149.304, -31.148 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927087, "decimalLat": -31.449715 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523075, "decimalLat": -34.46626 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637279, "decimalLat": -34.423815 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923461, "decimalLat": -31.478974 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.577868, "decimalLat": -32.999699 }, "geometry": { "type": "Point", "coordinates": [ 151.578, -33.0 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.577766, "decimalLat": -28.866595 }, "geometry": { "type": "Point", "coordinates": [ 153.578, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629579, "decimalLat": -28.637434 }, "geometry": { "type": "Point", "coordinates": [ 153.63, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514552, "decimalLat": -34.444992 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.409445, "decimalLat": -28.642979 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.643 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626911, "decimalLat": -34.396459 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.687532, "decimalLat": -32.672298 }, "geometry": { "type": "Point", "coordinates": [ 151.688, -32.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520938, "decimalLat": -34.464189 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.52954, "decimalLat": -28.54593 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -28.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110511, "decimalLat": -29.490203 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.188, "decimalLat": -28.523 }, "geometry": { "type": "Point", "coordinates": [ 153.188, -28.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.522273, "decimalLat": -28.358392 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -28.358 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.52954, "decimalLat": -28.54593 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -28.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.116477, "decimalLat": -28.620707 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -28.621 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10343, "decimalLat": -29.488555 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556747, "decimalLat": -28.400128 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522936, "decimalLat": -34.452564 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.586298, "decimalLat": -33.50023 }, "geometry": { "type": "Point", "coordinates": [ 149.586, -33.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.99372, "decimalLat": -33.98015 }, "geometry": { "type": "Point", "coordinates": [ 150.994, -33.98 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105227, "decimalLat": -29.489741 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927071, "decimalLat": -31.459712 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90373, "decimalLat": -30.239 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -30.239 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514908, "decimalLat": -34.454636 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300422, "decimalLat": -31.948252 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.441107, "decimalLat": -31.816334 }, "geometry": { "type": "Point", "coordinates": [ 152.441, -31.816 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.661159, "decimalLat": -30.178769 }, "geometry": { "type": "Point", "coordinates": [ 152.661, -30.179 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639024, "decimalLat": -34.493205 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.708481, "decimalLat": -30.39916 }, "geometry": { "type": "Point", "coordinates": [ 151.708, -30.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914814, "decimalLat": -31.459637 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514333, "decimalLat": -34.446511 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627455, "decimalLat": -34.421497 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605001, "decimalLat": -34.432518 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875695, "decimalLat": -29.679836 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -29.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52026, "decimalLat": -34.465744 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373959, "decimalLat": -31.915566 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625843, "decimalLat": -34.388451 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533675, "decimalLat": -34.478889 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.479 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91969, "decimalLat": -31.46913 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522157, "decimalLat": -34.464168 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622004, "decimalLat": -34.398059 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615053, "decimalLat": -34.432588 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785139, "decimalLat": -33.703553 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525409, "decimalLat": -34.459835 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914755, "decimalLat": -31.428986 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924873, "decimalLat": -31.44384 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.796696, "decimalLat": -31.645619 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.646 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608699, "decimalLat": -34.45356 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865888, "decimalLat": -30.405003 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -30.405 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908106, "decimalLat": -31.466926 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105266, "decimalLat": -32.761256 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.761 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.461306, "decimalLat": -28.365769 }, "geometry": { "type": "Point", "coordinates": [ 153.461, -28.366 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563952, "decimalLat": -28.38915 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.782221, "decimalLat": -32.611134 }, "geometry": { "type": "Point", "coordinates": [ 151.782, -32.611 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624242, "decimalLat": -34.388916 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293429, "decimalLat": -28.864665 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658308, "decimalLat": -34.455819 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523466, "decimalLat": -34.466304 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.715263, "decimalLat": -32.669349 }, "geometry": { "type": "Point", "coordinates": [ 151.715, -32.669 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914214, "decimalLat": -31.452721 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523943, "decimalLat": -34.46379 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.659955, "decimalLat": -32.659978 }, "geometry": { "type": "Point", "coordinates": [ 151.66, -32.66 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606736, "decimalLat": -34.438051 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625487, "decimalLat": -34.386055 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.444789, "decimalLat": -28.46907 }, "geometry": { "type": "Point", "coordinates": [ 152.445, -28.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901831, "decimalLat": -31.447277 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401541, "decimalLat": -29.040372 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -29.04 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790376, "decimalLat": -34.202477 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.202 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.593426, "decimalLat": -28.711692 }, "geometry": { "type": "Point", "coordinates": [ 153.593, -28.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822341, "decimalLat": -31.562884 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.563 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.018994, "decimalLat": -30.365294 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -30.365 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.209269, "decimalLat": -33.705439 }, "geometry": { "type": "Point", "coordinates": [ 151.209, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.750964, "decimalLat": -28.961088 }, "geometry": { "type": "Point", "coordinates": [ 152.751, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.590336, "decimalLat": -28.660527 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107464, "decimalLat": -29.490114 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520796, "decimalLat": -34.467134 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101306, "decimalLat": -29.489988 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630388, "decimalLat": -34.42086 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616521, "decimalLat": -34.398881 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552103, "decimalLat": -33.491237 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607912, "decimalLat": -34.453671 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517229, "decimalLat": -34.451591 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879347, "decimalLat": -31.458729 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.532263, "decimalLat": -34.744251 }, "geometry": { "type": "Point", "coordinates": [ 146.532, -34.744 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298251, "decimalLat": -28.82038 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.351609, "decimalLat": -32.232731 }, "geometry": { "type": "Point", "coordinates": [ 152.352, -32.233 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640554, "decimalLat": -34.398238 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644174, "decimalLat": -34.548357 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.548 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061841, "decimalLat": -32.293912 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.294 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596096, "decimalLat": -34.428881 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912794, "decimalLat": -31.45463 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101188, "decimalLat": -29.489914 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897335, "decimalLat": -31.474953 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526765, "decimalLat": -34.469599 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.989088, "decimalLat": -36.503585 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.504 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92706, "decimalLat": -31.463296 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103736, "decimalLat": -29.485805 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605876, "decimalLat": -34.454469 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926682, "decimalLat": -31.472034 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.201931, "decimalLat": -33.550659 }, "geometry": { "type": "Point", "coordinates": [ 151.202, -33.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62718, "decimalLat": -34.385799 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.594919, "decimalLat": -34.773396 }, "geometry": { "type": "Point", "coordinates": [ 146.595, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110538, "decimalLat": -29.489965 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938839, "decimalLat": -36.568285 }, "geometry": { "type": "Point", "coordinates": [ 149.939, -36.568 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.111016, "decimalLat": -29.487201 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273816, "decimalLat": -28.931667 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109744, "decimalLat": -29.490184 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.04413, "decimalLat": -30.42899 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -30.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614383, "decimalLat": -34.428978 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524398, "decimalLat": -34.466422 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796544, "decimalLat": -34.119269 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.119 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.47857, "decimalLat": -34.4866 }, "geometry": { "type": "Point", "coordinates": [ 150.479, -34.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.801762, "decimalLat": -30.324995 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -30.325 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637325, "decimalLat": -34.488204 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644372, "decimalLat": -34.314397 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.314 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103929, "decimalLat": -29.489573 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.824721, "decimalLat": -34.151409 }, "geometry": { "type": "Point", "coordinates": [ 150.825, -34.151 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.295, "decimalLat": -36.058 }, "geometry": { "type": "Point", "coordinates": [ 149.295, -36.058 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787865, "decimalLat": -33.703312 }, "geometry": { "type": "Point", "coordinates": [ 150.788, -33.703 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104176, "decimalLat": -29.480915 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.9746, "decimalLat": -32.47224 }, "geometry": { "type": "Point", "coordinates": [ 151.975, -32.472 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521632, "decimalLat": -34.465726 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516485, "decimalLat": -28.239324 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -28.239 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926675, "decimalLat": -31.459654 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.961299, "decimalLat": -34.103425 }, "geometry": { "type": "Point", "coordinates": [ 150.961, -34.103 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.556893, "decimalLat": -34.363394 }, "geometry": { "type": "Point", "coordinates": [ 150.557, -34.363 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.432697, "decimalLat": -28.957716 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519642, "decimalLat": -34.46125 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603032, "decimalLat": -34.437077 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618793, "decimalLat": -34.440721 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864758, "decimalLat": -29.630516 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514861, "decimalLat": -34.441897 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.345233, "decimalLat": -36.160578 }, "geometry": { "type": "Point", "coordinates": [ 149.345, -36.161 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628002, "decimalLat": -34.420994 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791716, "decimalLat": -31.126306 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.21104, "decimalLat": -34.62353 }, "geometry": { "type": "Point", "coordinates": [ 150.211, -34.624 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609511, "decimalLat": -34.418948 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108226, "decimalLat": -29.490311 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91631, "decimalLat": -31.194907 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.195 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.277813, "decimalLat": -28.718685 }, "geometry": { "type": "Point", "coordinates": [ 150.278, -28.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403914, "decimalLat": -28.26064 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.05707, "decimalLat": -30.44826 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -30.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521329, "decimalLat": -34.464936 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658511, "decimalLat": -34.454804 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638759, "decimalLat": -34.491423 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108151, "decimalLat": -29.490605 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096204, "decimalLat": -29.485296 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.112115, "decimalLat": -32.738157 }, "geometry": { "type": "Point", "coordinates": [ 152.112, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092783, "decimalLat": -29.383562 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395229, "decimalLat": -28.275319 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.275 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515574, "decimalLat": -34.439135 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637822, "decimalLat": -34.485662 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.071543, "decimalLat": -29.425825 }, "geometry": { "type": "Point", "coordinates": [ 151.072, -29.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519043, "decimalLat": -34.447292 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786775, "decimalLat": -34.117194 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -34.117 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516337, "decimalLat": -34.447904 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633252, "decimalLat": -34.417697 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103859, "decimalLat": -29.489591 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107416, "decimalLat": -29.49011 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071736, "decimalLat": -30.887326 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.450455, "decimalLat": -31.914194 }, "geometry": { "type": "Point", "coordinates": [ 152.45, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644246, "decimalLat": -34.398066 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867846, "decimalLat": -29.667401 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921976, "decimalLat": -31.454908 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08418, "decimalLat": -32.72557 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605025, "decimalLat": -34.423286 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609157, "decimalLat": -34.434447 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625164, "decimalLat": -34.386707 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.96084, "decimalLat": -34.100415 }, "geometry": { "type": "Point", "coordinates": [ 150.961, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563451, "decimalLat": -28.390181 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60915, "decimalLat": -34.420572 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.20438, "decimalLat": -28.827062 }, "geometry": { "type": "Point", "coordinates": [ 153.204, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076895, "decimalLat": -32.722543 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910679, "decimalLat": -31.475075 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.951303, "decimalLat": -36.599554 }, "geometry": { "type": "Point", "coordinates": [ 149.951, -36.6 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783933, "decimalLat": -33.717563 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630076, "decimalLat": -34.420736 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321914, "decimalLat": -28.823981 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.419288, "decimalLat": -28.872605 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.873 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522448, "decimalLat": -34.454699 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786204, "decimalLat": -31.631915 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.855893, "decimalLat": -29.316805 }, "geometry": { "type": "Point", "coordinates": [ 152.856, -29.317 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.62228, "decimalLat": -33.543308 }, "geometry": { "type": "Point", "coordinates": [ 149.622, -33.543 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.187169, "decimalLat": -32.240856 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -32.241 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605532, "decimalLat": -34.432222 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5255, "decimalLat": -34.458602 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.27087, "decimalLat": -36.29988 }, "geometry": { "type": "Point", "coordinates": [ 149.271, -36.3 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59825, "decimalLat": -34.453229 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600215, "decimalLat": -34.428664 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518763, "decimalLat": -34.447196 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524847, "decimalLat": -34.465251 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334493, "decimalLat": -28.813462 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.813 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607394, "decimalLat": -34.450839 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782809, "decimalLat": -31.484692 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077653, "decimalLat": -32.739136 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.36019, "decimalLat": -28.794203 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -28.794 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.01582, "decimalLat": -32.72376 }, "geometry": { "type": "Point", "coordinates": [ 152.016, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319916, "decimalLat": -28.846402 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468842, "decimalLat": -28.5583 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.558 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.010861, "decimalLat": -30.417681 }, "geometry": { "type": "Point", "coordinates": [ 153.011, -30.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60429, "decimalLat": -34.438382 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277965, "decimalLat": -28.8186 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955028, "decimalLat": -36.650407 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.859396, "decimalLat": -34.051222 }, "geometry": { "type": "Point", "coordinates": [ 150.859, -34.051 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.849049, "decimalLat": -31.453574 }, "geometry": { "type": "Point", "coordinates": [ 152.849, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10939, "decimalLat": -29.490455 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632796, "decimalLat": -34.41959 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639177, "decimalLat": -34.392676 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01413, "decimalLat": -28.421165 }, "geometry": { "type": "Point", "coordinates": [ 153.014, -28.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.3933, "decimalLat": -31.903028 }, "geometry": { "type": "Point", "coordinates": [ 152.393, -31.903 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.021577, "decimalLat": -29.743827 }, "geometry": { "type": "Point", "coordinates": [ 151.022, -29.744 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608342, "decimalLat": -34.456528 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10946, "decimalLat": -29.490465 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609178, "decimalLat": -34.455453 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642152, "decimalLat": -34.396339 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.6062, "decimalLat": -28.66747 }, "geometry": { "type": "Point", "coordinates": [ 153.606, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092347, "decimalLat": -29.488149 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626698, "decimalLat": -34.38936 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301111, "decimalLat": -28.824359 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563931, "decimalLat": -28.388052 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063481, "decimalLat": -32.705566 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427208, "decimalLat": -28.229862 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.23 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615125, "decimalLat": -34.435402 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.972865, "decimalLat": -32.35706 }, "geometry": { "type": "Point", "coordinates": [ 151.973, -32.357 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52559, "decimalLat": -34.465518 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.591776, "decimalLat": -28.734759 }, "geometry": { "type": "Point", "coordinates": [ 153.592, -28.735 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433757, "decimalLat": -28.732156 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.732 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926159, "decimalLat": -31.470586 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907196, "decimalLat": -31.44446 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281772, "decimalLat": -28.830931 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.32312, "decimalLat": -28.59278 }, "geometry": { "type": "Point", "coordinates": [ 152.323, -28.593 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516467, "decimalLat": -34.450124 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52412, "decimalLat": -34.452624 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514777, "decimalLat": -34.456674 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786774, "decimalLat": -33.707842 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616013, "decimalLat": -34.436312 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109594, "decimalLat": -29.490395 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108044, "decimalLat": -29.49039 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516621, "decimalLat": -34.442717 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.384342, "decimalLat": -32.10128 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -32.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.446164, "decimalLat": -28.588399 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.588 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.040115, "decimalLat": -28.54473 }, "geometry": { "type": "Point", "coordinates": [ 153.04, -28.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629856, "decimalLat": -34.390007 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818011, "decimalLat": -31.263827 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.264 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.783572, "decimalLat": -30.191203 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -30.191 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.184802, "decimalLat": -28.88936 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.842163, "decimalLat": -32.029955 }, "geometry": { "type": "Point", "coordinates": [ 151.842, -32.03 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924469, "decimalLat": -31.444037 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27916, "decimalLat": -28.87382 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378429, "decimalLat": -28.850227 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784289, "decimalLat": -33.710679 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109873, "decimalLat": -29.492767 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825149, "decimalLat": -31.649272 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518338, "decimalLat": -34.443176 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633165, "decimalLat": -34.418443 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103774, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513157, "decimalLat": -34.447244 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787075, "decimalLat": -31.629368 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80876, "decimalLat": -34.11556 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.116 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300422, "decimalLat": -31.948252 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101236, "decimalLat": -29.48982 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.363468, "decimalLat": -29.387549 }, "geometry": { "type": "Point", "coordinates": [ 153.363, -29.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.995573, "decimalLat": -36.572611 }, "geometry": { "type": "Point", "coordinates": [ 149.996, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51682, "decimalLat": -34.448509 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896223, "decimalLat": -31.442885 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916037, "decimalLat": -31.481883 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604307, "decimalLat": -34.438923 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.991124, "decimalLat": -32.720894 }, "geometry": { "type": "Point", "coordinates": [ 151.991, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515396, "decimalLat": -34.446992 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378992, "decimalLat": -31.920145 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784153, "decimalLat": -33.717419 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600124, "decimalLat": -34.451228 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562188, "decimalLat": -28.38399 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613753, "decimalLat": -34.430841 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517024, "decimalLat": -34.446773 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.344753, "decimalLat": -28.74829 }, "geometry": { "type": "Point", "coordinates": [ 153.345, -28.748 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412714, "decimalLat": -31.932238 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518431, "decimalLat": -34.451805 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103463, "decimalLat": -29.485599 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.088652, "decimalLat": -30.326988 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -30.327 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60429, "decimalLat": -34.437967 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60437, "decimalLat": -34.438996 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064139, "decimalLat": -32.705776 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091613, "decimalLat": -29.487812 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.778519, "decimalLat": -31.486714 }, "geometry": { "type": "Point", "coordinates": [ 152.779, -31.487 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985108, "decimalLat": -34.093124 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066307, "decimalLat": -32.709746 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.823287, "decimalLat": -34.150217 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.7782, "decimalLat": -32.58805 }, "geometry": { "type": "Point", "coordinates": [ 151.778, -32.588 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.256355, "decimalLat": -33.210524 }, "geometry": { "type": "Point", "coordinates": [ 151.256, -33.211 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51315, "decimalLat": -34.447136 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60468, "decimalLat": -34.424686 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606647, "decimalLat": -34.434687 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634948, "decimalLat": -34.486022 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.0527, "decimalLat": -32.6278 }, "geometry": { "type": "Point", "coordinates": [ 152.053, -32.628 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.534785, "decimalLat": -34.75678 }, "geometry": { "type": "Point", "coordinates": [ 146.535, -34.757 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61551, "decimalLat": -34.437934 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89035, "decimalLat": -34.057941 }, "geometry": { "type": "Point", "coordinates": [ 150.89, -34.058 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.078464, "decimalLat": -32.721216 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926482, "decimalLat": -31.451825 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.196402, "decimalLat": -32.225666 }, "geometry": { "type": "Point", "coordinates": [ 152.196, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632983, "decimalLat": -34.392863 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604435, "decimalLat": -34.428314 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.622262, "decimalLat": -32.570265 }, "geometry": { "type": "Point", "coordinates": [ 151.622, -32.57 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.348488, "decimalLat": -28.873812 }, "geometry": { "type": "Point", "coordinates": [ 153.348, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916034, "decimalLat": -31.446169 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642369, "decimalLat": -34.395586 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108146, "decimalLat": -29.490227 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516055, "decimalLat": -34.448232 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.888867, "decimalLat": -34.017438 }, "geometry": { "type": "Point", "coordinates": [ 150.889, -34.017 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848206, "decimalLat": -34.030191 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.03 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822526, "decimalLat": -31.241046 }, "geometry": { "type": "Point", "coordinates": [ 152.823, -31.241 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400598, "decimalLat": -28.25783 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.756187, "decimalLat": -31.378519 }, "geometry": { "type": "Point", "coordinates": [ 152.756, -31.379 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415901, "decimalLat": -31.933404 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625915, "decimalLat": -34.389759 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101247, "decimalLat": -29.489858 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795197, "decimalLat": -31.644405 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -31.644 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626719, "decimalLat": -34.421347 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556988, "decimalLat": -28.397314 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065276, "decimalLat": -32.701664 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.702 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886512, "decimalLat": -31.439513 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515264, "decimalLat": -34.455834 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09732, "decimalLat": -29.487107 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518386, "decimalLat": -34.451471 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.422166, "decimalLat": -28.982543 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9892, "decimalLat": -34.028785 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302801, "decimalLat": -28.844273 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607824, "decimalLat": -34.422052 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61615, "decimalLat": -34.435711 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784989, "decimalLat": -33.71604 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.824666, "decimalLat": -30.448436 }, "geometry": { "type": "Point", "coordinates": [ 151.825, -30.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.874899, "decimalLat": -31.456848 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.663396, "decimalLat": -34.454853 }, "geometry": { "type": "Point", "coordinates": [ 150.663, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925782, "decimalLat": -31.470069 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61636, "decimalLat": -34.435589 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91439, "decimalLat": -31.473064 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905478, "decimalLat": -31.467655 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110511, "decimalLat": -29.490175 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783426, "decimalLat": -33.717197 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786096, "decimalLat": -33.710617 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516283, "decimalLat": -34.448994 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557323, "decimalLat": -28.387638 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4039, "decimalLat": -28.8605 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.86 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635479, "decimalLat": -34.420489 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870504, "decimalLat": -31.461934 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616322, "decimalLat": -34.434263 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325686, "decimalLat": -28.894918 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.895 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87339, "decimalLat": -31.479873 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605526, "decimalLat": -34.437387 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103755, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.073472, "decimalLat": -30.887528 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915447, "decimalLat": -31.435403 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.389984, "decimalLat": -31.88371 }, "geometry": { "type": "Point", "coordinates": [ 152.39, -31.884 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091693, "decimalLat": -29.488055 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.418498, "decimalLat": -28.592481 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -28.592 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.022335, "decimalLat": -28.489141 }, "geometry": { "type": "Point", "coordinates": [ 153.022, -28.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103626, "decimalLat": -29.485473 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.382218, "decimalLat": -28.785698 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -28.786 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.515119, "decimalLat": -28.571967 }, "geometry": { "type": "Point", "coordinates": [ 153.515, -28.572 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966791, "decimalLat": -36.502277 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604214, "decimalLat": -34.437966 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.85704, "decimalLat": -34.042234 }, "geometry": { "type": "Point", "coordinates": [ 150.857, -34.042 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108215, "decimalLat": -29.490203 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105567, "decimalLat": -32.727829 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095232, "decimalLat": -29.48345 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629288, "decimalLat": -34.388941 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941399, "decimalLat": -36.632151 }, "geometry": { "type": "Point", "coordinates": [ 149.941, -36.632 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909109, "decimalLat": -31.4908 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603337, "decimalLat": -34.426769 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925831, "decimalLat": -31.450573 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522228, "decimalLat": -34.464341 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.983419, "decimalLat": -34.1081 }, "geometry": { "type": "Point", "coordinates": [ 150.983, -34.108 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.438286, "decimalLat": -28.993269 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.993 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103806, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.037077, "decimalLat": -34.036214 }, "geometry": { "type": "Point", "coordinates": [ 151.037, -34.036 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93786, "decimalLat": -30.40529 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -30.405 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533722, "decimalLat": -34.484317 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611578, "decimalLat": -34.420494 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.933658, "decimalLat": -29.681698 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -29.682 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.502349, "decimalLat": -28.67286 }, "geometry": { "type": "Point", "coordinates": [ 153.502, -28.673 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093141, "decimalLat": -29.488639 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.489909 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519593, "decimalLat": -34.446365 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522997, "decimalLat": -34.452321 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919075, "decimalLat": -31.470742 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519879, "decimalLat": -34.452898 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627369, "decimalLat": -34.390635 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563435, "decimalLat": -28.393303 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785676, "decimalLat": -31.631882 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640796, "decimalLat": -34.394267 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520391, "decimalLat": -34.465746 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.804225, "decimalLat": -34.157278 }, "geometry": { "type": "Point", "coordinates": [ 150.804, -34.157 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632945, "decimalLat": -34.418926 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929855, "decimalLat": -31.455771 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.352277, "decimalLat": -31.926624 }, "geometry": { "type": "Point", "coordinates": [ 152.352, -31.927 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40366, "decimalLat": -28.815522 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.059278, "decimalLat": -32.739099 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103307, "decimalLat": -29.486346 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104079, "decimalLat": -29.479556 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630818, "decimalLat": -34.420679 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.432401, "decimalLat": -28.620422 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.62 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631743, "decimalLat": -34.387096 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.456029, "decimalLat": -28.806225 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.820437, "decimalLat": -34.098917 }, "geometry": { "type": "Point", "coordinates": [ 150.82, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323701, "decimalLat": -28.855997 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.856 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517476, "decimalLat": -34.452804 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967562, "decimalLat": -36.436787 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61661, "decimalLat": -34.435224 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629795, "decimalLat": -34.394469 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28829, "decimalLat": -28.80931 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556462, "decimalLat": -28.400123 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49897, "decimalLat": -28.766815 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.841833, "decimalLat": -34.069613 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376871, "decimalLat": -28.286849 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.287 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787493, "decimalLat": -33.705699 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522526, "decimalLat": -34.451681 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630829, "decimalLat": -34.420679 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522906, "decimalLat": -34.450976 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659167, "decimalLat": -34.458955 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.03747, "decimalLat": -30.896555 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -30.897 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.43885, "decimalLat": -28.316831 }, "geometry": { "type": "Point", "coordinates": [ 152.439, -28.317 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616506, "decimalLat": -34.434284 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641479, "decimalLat": -34.394749 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631301, "decimalLat": -34.420147 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.601837, "decimalLat": -34.763847 }, "geometry": { "type": "Point", "coordinates": [ 146.602, -34.764 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434872, "decimalLat": -29.02895 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -29.029 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063473, "decimalLat": -32.706494 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920664, "decimalLat": -31.433425 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798937, "decimalLat": -31.146275 }, "geometry": { "type": "Point", "coordinates": [ 152.799, -31.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514552, "decimalLat": -34.444965 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863253, "decimalLat": -31.144587 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -31.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514176, "decimalLat": -34.445913 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605487, "decimalLat": -34.432248 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.032631, "decimalLat": -30.380497 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -30.38 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525943, "decimalLat": -34.457961 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523815, "decimalLat": -34.452644 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601505, "decimalLat": -34.425029 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519667, "decimalLat": -34.455265 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925939, "decimalLat": -31.458825 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102218, "decimalLat": -29.488368 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60215, "decimalLat": -28.679346 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902329, "decimalLat": -30.53739 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -30.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300219, "decimalLat": -28.825013 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.35486, "decimalLat": -36.18352 }, "geometry": { "type": "Point", "coordinates": [ 149.355, -36.184 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639116, "decimalLat": -34.491511 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.35486, "decimalLat": -36.18352 }, "geometry": { "type": "Point", "coordinates": [ 149.355, -36.184 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624799, "decimalLat": -34.399619 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615788, "decimalLat": -34.430835 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378675, "decimalLat": -32.022615 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -32.023 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822597, "decimalLat": -34.226993 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.227 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302464, "decimalLat": -28.846215 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108135, "decimalLat": -29.490605 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434588, "decimalLat": -28.96827 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.968 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.436829, "decimalLat": -28.992784 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.993 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913432, "decimalLat": -31.460823 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.027288, "decimalLat": -30.803565 }, "geometry": { "type": "Point", "coordinates": [ 150.027, -30.804 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.554112, "decimalLat": -34.498603 }, "geometry": { "type": "Point", "coordinates": [ 150.554, -34.499 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621104, "decimalLat": -34.398754 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921168, "decimalLat": -31.464927 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.00368, "decimalLat": -34.00692 }, "geometry": { "type": "Point", "coordinates": [ 151.004, -34.007 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.267067, "decimalLat": -28.870978 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -28.871 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.044, "decimalLat": -30.382537 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -30.383 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110511, "decimalLat": -29.490142 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409406, "decimalLat": -31.910186 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628834, "decimalLat": -34.389203 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616994, "decimalLat": -34.434348 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525329, "decimalLat": -34.45886 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.986375, "decimalLat": -34.094181 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513017, "decimalLat": -34.446097 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609225, "decimalLat": -34.420601 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103463, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096258, "decimalLat": -29.491459 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.194095, "decimalLat": -32.224416 }, "geometry": { "type": "Point", "coordinates": [ 152.194, -32.224 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068194, "decimalLat": -32.712362 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.21666, "decimalLat": -28.61243 }, "geometry": { "type": "Point", "coordinates": [ 153.217, -28.612 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110195, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611799, "decimalLat": -34.419596 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530443, "decimalLat": -34.46924 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517307, "decimalLat": -34.446382 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.158075, "decimalLat": -28.927498 }, "geometry": { "type": "Point", "coordinates": [ 153.158, -28.927 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316467, "decimalLat": -28.822219 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515918, "decimalLat": -34.440016 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635913, "decimalLat": -34.419389 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.059118, "decimalLat": -33.768071 }, "geometry": { "type": "Point", "coordinates": [ 150.059, -33.768 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646283, "decimalLat": -34.397185 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522206, "decimalLat": -34.451467 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103473, "decimalLat": -29.48565 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637419, "decimalLat": -34.423872 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656031, "decimalLat": -34.458624 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790728, "decimalLat": -34.140954 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60568, "decimalLat": -34.437318 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103935, "decimalLat": -29.489563 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614422, "decimalLat": -34.429519 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.859148, "decimalLat": -34.073291 }, "geometry": { "type": "Point", "coordinates": [ 150.859, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.061116, "decimalLat": -29.741249 }, "geometry": { "type": "Point", "coordinates": [ 151.061, -29.741 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516358, "decimalLat": -34.447949 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927297, "decimalLat": -31.477972 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786056, "decimalLat": -33.709721 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52289, "decimalLat": -34.452274 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65009, "decimalLat": -34.403389 }, "geometry": { "type": "Point", "coordinates": [ 150.65, -34.403 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520358, "decimalLat": -34.465755 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631727, "decimalLat": -34.388448 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108172, "decimalLat": -29.490255 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928861, "decimalLat": -31.459497 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518346, "decimalLat": -34.443266 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.167359, "decimalLat": -29.428979 }, "geometry": { "type": "Point", "coordinates": [ 153.167, -29.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638564, "decimalLat": -34.489463 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.993075, "decimalLat": -34.02005 }, "geometry": { "type": "Point", "coordinates": [ 150.993, -34.02 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.951757, "decimalLat": -31.165077 }, "geometry": { "type": "Point", "coordinates": [ 152.952, -31.165 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516739, "decimalLat": -34.44647 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104117, "decimalLat": -29.483895 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824368, "decimalLat": -29.504677 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063741, "decimalLat": -32.706571 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315144, "decimalLat": -28.890161 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603292, "decimalLat": -34.425299 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645767, "decimalLat": -34.402404 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.402 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.654056, "decimalLat": -32.686273 }, "geometry": { "type": "Point", "coordinates": [ 151.654, -32.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52052, "decimalLat": -34.454029 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627153, "decimalLat": -34.396383 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632871, "decimalLat": -34.418852 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06673, "decimalLat": -32.70916 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92794, "decimalLat": -31.464663 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517293, "decimalLat": -34.44759 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.563856, "decimalLat": -34.500349 }, "geometry": { "type": "Point", "coordinates": [ 150.564, -34.5 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381738, "decimalLat": -31.91479 }, "geometry": { "type": "Point", "coordinates": [ 152.382, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.254209, "decimalLat": -31.973658 }, "geometry": { "type": "Point", "coordinates": [ 152.254, -31.974 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630574, "decimalLat": -34.386902 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.619522, "decimalLat": -30.341575 }, "geometry": { "type": "Point", "coordinates": [ 152.62, -30.342 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107421, "decimalLat": -29.490119 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.699633, "decimalLat": -30.290446 }, "geometry": { "type": "Point", "coordinates": [ 152.7, -30.29 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.843593, "decimalLat": -34.137759 }, "geometry": { "type": "Point", "coordinates": [ 150.844, -34.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899582, "decimalLat": -31.474001 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.988323, "decimalLat": -30.399605 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -30.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302578, "decimalLat": -28.845525 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630688, "decimalLat": -34.420658 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604968, "decimalLat": -34.437863 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78429, "decimalLat": -33.717263 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124797, "decimalLat": -30.296661 }, "geometry": { "type": "Point", "coordinates": [ 153.125, -30.297 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.80718, "decimalLat": -29.81225 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -29.812 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063593, "decimalLat": -32.705336 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.705 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.179389, "decimalLat": -30.08386 }, "geometry": { "type": "Point", "coordinates": [ 152.179, -30.084 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630099, "decimalLat": -34.42071 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808546, "decimalLat": -34.098368 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909507, "decimalLat": -31.466107 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.101463, "decimalLat": -32.73989 }, "geometry": { "type": "Point", "coordinates": [ 152.101, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296745, "decimalLat": -28.871902 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.790756, "decimalLat": -32.653944 }, "geometry": { "type": "Point", "coordinates": [ 151.791, -32.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.470737, "decimalLat": -34.490979 }, "geometry": { "type": "Point", "coordinates": [ 150.471, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532841, "decimalLat": -34.458786 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626004, "decimalLat": -34.390077 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.67482, "decimalLat": -32.67359 }, "geometry": { "type": "Point", "coordinates": [ 151.675, -32.674 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.577567, "decimalLat": -34.476 }, "geometry": { "type": "Point", "coordinates": [ 150.578, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.010064, "decimalLat": -34.045189 }, "geometry": { "type": "Point", "coordinates": [ 151.01, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10387, "decimalLat": -29.489577 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.714462, "decimalLat": -30.579869 }, "geometry": { "type": "Point", "coordinates": [ 151.714, -30.58 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.610215, "decimalLat": -30.345726 }, "geometry": { "type": "Point", "coordinates": [ 152.61, -30.346 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077563, "decimalLat": -32.733212 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.548634, "decimalLat": -33.555788 }, "geometry": { "type": "Point", "coordinates": [ 149.549, -33.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298075, "decimalLat": -28.829574 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908714, "decimalLat": -31.468617 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521502, "decimalLat": -34.465724 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518549, "decimalLat": -34.458461 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103849, "decimalLat": -29.489559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109492, "decimalLat": -29.490479 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523148, "decimalLat": -34.456787 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.933067, "decimalLat": -33.955172 }, "geometry": { "type": "Point", "coordinates": [ 150.933, -33.955 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.392884, "decimalLat": -28.276269 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605392, "decimalLat": -34.423771 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929598, "decimalLat": -31.466199 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.90778, "decimalLat": -32.676634 }, "geometry": { "type": "Point", "coordinates": [ 151.908, -32.677 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520345, "decimalLat": -34.467305 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402426, "decimalLat": -28.260597 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.992714, "decimalLat": -32.721097 }, "geometry": { "type": "Point", "coordinates": [ 151.993, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868447, "decimalLat": -29.666912 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603289, "decimalLat": -34.438759 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604746, "decimalLat": -34.427338 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.775869, "decimalLat": -31.48966 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -31.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523945, "decimalLat": -34.463709 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625277, "decimalLat": -34.386168 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.820537, "decimalLat": -31.125268 }, "geometry": { "type": "Point", "coordinates": [ 152.821, -31.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.0628, "decimalLat": -33.775948 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910158, "decimalLat": -31.472727 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.208268, "decimalLat": -32.229632 }, "geometry": { "type": "Point", "coordinates": [ 152.208, -32.23 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522203, "decimalLat": -34.464845 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.81844, "decimalLat": -34.11073 }, "geometry": { "type": "Point", "coordinates": [ 150.818, -34.111 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.739734, "decimalLat": -31.020056 }, "geometry": { "type": "Point", "coordinates": [ 152.74, -31.02 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9133, "decimalLat": -31.452728 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07814, "decimalLat": -32.2991 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.299 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520781, "decimalLat": -34.454025 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552133, "decimalLat": -33.491228 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103688, "decimalLat": -29.485272 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374722, "decimalLat": -28.2525 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520249, "decimalLat": -34.453997 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.378488, "decimalLat": -28.874261 }, "geometry": { "type": "Point", "coordinates": [ 153.378, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293166, "decimalLat": -28.864637 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783953, "decimalLat": -29.632844 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -29.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.655689, "decimalLat": -30.215789 }, "geometry": { "type": "Point", "coordinates": [ 152.656, -30.216 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628634, "decimalLat": -34.39514 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9025, "decimalLat": -34.012389 }, "geometry": { "type": "Point", "coordinates": [ 150.903, -34.012 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528103, "decimalLat": -34.465569 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400174, "decimalLat": -28.260447 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838978, "decimalLat": -34.053416 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642347, "decimalLat": -34.395577 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614015, "decimalLat": -34.433118 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794025, "decimalLat": -31.638566 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516536, "decimalLat": -34.447791 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518413, "decimalLat": -34.438814 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.58705, "decimalLat": -34.284048 }, "geometry": { "type": "Point", "coordinates": [ 150.587, -34.284 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609226, "decimalLat": -34.420565 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322321, "decimalLat": -28.817057 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.114096, "decimalLat": -32.724199 }, "geometry": { "type": "Point", "coordinates": [ 152.114, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520858, "decimalLat": -34.467613 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793878, "decimalLat": -31.642109 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.565808, "decimalLat": -28.328511 }, "geometry": { "type": "Point", "coordinates": [ 152.566, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.30042, "decimalLat": -31.94825 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313992, "decimalLat": -28.81222 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.812 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.995551, "decimalLat": -34.048247 }, "geometry": { "type": "Point", "coordinates": [ 150.996, -34.048 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.055832, "decimalLat": -33.778621 }, "geometry": { "type": "Point", "coordinates": [ 150.056, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.1559, "decimalLat": -33.6881 }, "geometry": { "type": "Point", "coordinates": [ 151.156, -33.688 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.452211, "decimalLat": -31.937691 }, "geometry": { "type": "Point", "coordinates": [ 152.452, -31.938 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609474, "decimalLat": -28.661336 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924576, "decimalLat": -31.443876 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627959, "decimalLat": -34.420596 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630564, "decimalLat": -34.386856 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090954, "decimalLat": -28.667113 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.511168, "decimalLat": -28.24167 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.242 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40417, "decimalLat": -31.94582 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514816, "decimalLat": -34.44195 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925107, "decimalLat": -31.454077 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617063, "decimalLat": -34.434971 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617065, "decimalLat": -34.433754 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533064, "decimalLat": -34.479679 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972988, "decimalLat": -33.356554 }, "geometry": { "type": "Point", "coordinates": [ 149.973, -33.357 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786859, "decimalLat": -31.629319 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516102, "decimalLat": -34.445546 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.480946, "decimalLat": -28.639176 }, "geometry": { "type": "Point", "coordinates": [ 153.481, -28.639 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615721, "decimalLat": -34.430897 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889825, "decimalLat": -31.444037 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108151, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624468, "decimalLat": -34.388235 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520723, "decimalLat": -34.436111 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59019, "decimalLat": -28.65505 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78512, "decimalLat": -33.7108 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.049424, "decimalLat": -28.877092 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -28.877 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.563734, "decimalLat": -33.689354 }, "geometry": { "type": "Point", "coordinates": [ 149.564, -33.689 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517229, "decimalLat": -34.4516 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.009529, "decimalLat": -32.727935 }, "geometry": { "type": "Point", "coordinates": [ 152.01, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609724, "decimalLat": -34.436324 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.411934, "decimalLat": -28.666495 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -28.666 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.911101, "decimalLat": -32.586257 }, "geometry": { "type": "Point", "coordinates": [ 151.911, -32.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823947, "decimalLat": -29.810965 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.352531, "decimalLat": -32.157782 }, "geometry": { "type": "Point", "coordinates": [ 152.353, -32.158 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626522, "decimalLat": -34.385597 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.986372, "decimalLat": -34.0251 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616514, "decimalLat": -34.429416 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.983828, "decimalLat": -34.094798 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.540692, "decimalLat": -32.06005 }, "geometry": { "type": "Point", "coordinates": [ 152.541, -32.06 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617216, "decimalLat": -34.433811 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.505439, "decimalLat": -31.986332 }, "geometry": { "type": "Point", "coordinates": [ 152.505, -31.986 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524234, "decimalLat": -34.466455 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990029, "decimalLat": -34.020781 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.021 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.177428, "decimalLat": -28.934629 }, "geometry": { "type": "Point", "coordinates": [ 153.177, -28.935 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.829553, "decimalLat": -34.149515 }, "geometry": { "type": "Point", "coordinates": [ 150.83, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514341, "decimalLat": -34.447313 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.08917, "decimalLat": -31.13574 }, "geometry": { "type": "Point", "coordinates": [ 150.089, -31.136 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.549545, "decimalLat": -28.589152 }, "geometry": { "type": "Point", "coordinates": [ 153.55, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.933578, "decimalLat": -31.47209 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598652, "decimalLat": -34.428516 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784274, "decimalLat": -34.207721 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -34.208 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.0686, "decimalLat": -30.911362 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -30.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824652, "decimalLat": -29.506027 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.506 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10342, "decimalLat": -29.48566 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555155, "decimalLat": -28.586525 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619965, "decimalLat": -34.400949 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602711, "decimalLat": -34.42966 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.840769, "decimalLat": -29.674618 }, "geometry": { "type": "Point", "coordinates": [ 152.841, -29.675 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608967, "decimalLat": -34.421633 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393931, "decimalLat": -28.874994 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.875 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516094, "decimalLat": -34.450234 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896484, "decimalLat": -30.517778 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -30.518 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062415, "decimalLat": -32.709429 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629849, "decimalLat": -34.39447 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519075, "decimalLat": -34.459815 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.498, "decimalLat": -34.46885 }, "geometry": { "type": "Point", "coordinates": [ 150.498, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607925, "decimalLat": -34.430727 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605166, "decimalLat": -34.433206 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27553, "decimalLat": -28.81467 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103774, "decimalLat": -29.485688 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395308, "decimalLat": -28.960009 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521135, "decimalLat": -34.466726 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.489945, "decimalLat": -28.626289 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.626 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.828305, "decimalLat": -34.091345 }, "geometry": { "type": "Point", "coordinates": [ 150.828, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.882185, "decimalLat": -31.424843 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520412, "decimalLat": -34.465783 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.389223, "decimalLat": -28.299964 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.635202, "decimalLat": -32.650668 }, "geometry": { "type": "Point", "coordinates": [ 151.635, -32.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400572, "decimalLat": -28.257746 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.913678, "decimalLat": -34.068368 }, "geometry": { "type": "Point", "coordinates": [ 150.914, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.218526, "decimalLat": -31.355661 }, "geometry": { "type": "Point", "coordinates": [ 152.219, -31.356 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631498, "decimalLat": -34.388452 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785233, "decimalLat": -33.712916 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86834, "decimalLat": -31.473725 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51916, "decimalLat": -34.459906 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.601837, "decimalLat": -34.763847 }, "geometry": { "type": "Point", "coordinates": [ 146.602, -34.764 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60972, "decimalLat": -28.662022 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109353, "decimalLat": -29.490437 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90636, "decimalLat": -30.24079 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -30.241 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928616, "decimalLat": -31.466547 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533018, "decimalLat": -34.475711 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.008325, "decimalLat": -34.045661 }, "geometry": { "type": "Point", "coordinates": [ 151.008, -34.046 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.084825, "decimalLat": -28.535791 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -28.536 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394064, "decimalLat": -28.267041 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.267 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977337, "decimalLat": -36.522201 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.522 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.983913, "decimalLat": -34.094834 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785391, "decimalLat": -33.715354 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513766, "decimalLat": -34.447257 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.001329, "decimalLat": -30.407587 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -30.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616214, "decimalLat": -34.435369 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.941816, "decimalLat": -30.493985 }, "geometry": { "type": "Point", "coordinates": [ 152.942, -30.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.72868, "decimalLat": -30.90034 }, "geometry": { "type": "Point", "coordinates": [ 152.729, -30.9 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513779, "decimalLat": -34.446473 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.286418, "decimalLat": -29.025463 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -29.025 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597491, "decimalLat": -34.418153 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524158, "decimalLat": -34.466454 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.781648, "decimalLat": -34.278848 }, "geometry": { "type": "Point", "coordinates": [ 150.782, -34.279 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.608876, "decimalLat": -31.792494 }, "geometry": { "type": "Point", "coordinates": [ 152.609, -31.792 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636953, "decimalLat": -34.421095 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.708733, "decimalLat": -31.534592 }, "geometry": { "type": "Point", "coordinates": [ 152.709, -31.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.090922, "decimalLat": -32.739 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608826, "decimalLat": -34.455582 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63116, "decimalLat": -34.388094 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40555, "decimalLat": -31.933339 }, "geometry": { "type": "Point", "coordinates": [ 152.406, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61887, "decimalLat": -34.440335 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638487, "decimalLat": -34.489462 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.490124 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897379, "decimalLat": -31.451891 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609131, "decimalLat": -34.434961 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077227, "decimalLat": -32.722468 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06372, "decimalLat": -32.706544 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316506, "decimalLat": -28.845967 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.848566, "decimalLat": -32.43791 }, "geometry": { "type": "Point", "coordinates": [ 149.849, -32.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629116, "decimalLat": -34.395808 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.619471, "decimalLat": -30.341503 }, "geometry": { "type": "Point", "coordinates": [ 152.619, -30.342 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301402, "decimalLat": -28.824247 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630677, "decimalLat": -34.420658 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.385639, "decimalLat": -31.875282 }, "geometry": { "type": "Point", "coordinates": [ 152.386, -31.875 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.68562, "decimalLat": -34.26599 }, "geometry": { "type": "Point", "coordinates": [ 150.686, -34.266 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.615807, "decimalLat": -30.331223 }, "geometry": { "type": "Point", "coordinates": [ 152.616, -30.331 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321716, "decimalLat": -28.823033 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61185, "decimalLat": -34.430803 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924847, "decimalLat": -31.463887 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89138, "decimalLat": -30.4613 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -30.461 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.990528, "decimalLat": -32.243349 }, "geometry": { "type": "Point", "coordinates": [ 151.991, -32.243 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.845125, "decimalLat": -29.834745 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.835 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785729, "decimalLat": -33.71013 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.02698, "decimalLat": -34.03451 }, "geometry": { "type": "Point", "coordinates": [ 151.027, -34.035 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.242562, "decimalLat": -29.840897 }, "geometry": { "type": "Point", "coordinates": [ 152.243, -29.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640873, "decimalLat": -34.39618 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.056592, "decimalLat": -33.777864 }, "geometry": { "type": "Point", "coordinates": [ 150.057, -33.778 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063678, "decimalLat": -32.706728 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916661, "decimalLat": -31.456429 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907331, "decimalLat": -31.47046 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785306, "decimalLat": -31.633293 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885379, "decimalLat": -31.429437 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985078, "decimalLat": -34.021161 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.021 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.846984, "decimalLat": -31.961389 }, "geometry": { "type": "Point", "coordinates": [ 151.847, -31.961 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616214, "decimalLat": -34.435369 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313629, "decimalLat": -28.850792 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636333, "decimalLat": -34.485543 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101156, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.933894, "decimalLat": -29.68938 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -29.689 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616254, "decimalLat": -34.438192 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.650573, "decimalLat": -32.693439 }, "geometry": { "type": "Point", "coordinates": [ 151.651, -32.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517094, "decimalLat": -34.446964 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108178, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094048, "decimalLat": -29.488821 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.034822, "decimalLat": -32.765351 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621398, "decimalLat": -34.397948 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095893, "decimalLat": -29.484581 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89337, "decimalLat": -33.97151 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.972 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918972, "decimalLat": -31.460634 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.54409, "decimalLat": -31.877279 }, "geometry": { "type": "Point", "coordinates": [ 148.544, -31.877 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636974, "decimalLat": -34.422646 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516145, "decimalLat": -34.446674 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.541208, "decimalLat": -28.393545 }, "geometry": { "type": "Point", "coordinates": [ 153.541, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521756, "decimalLat": -34.464872 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902386, "decimalLat": -31.441974 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.988323, "decimalLat": -30.399605 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -30.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19096, "decimalLat": -32.219628 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -32.22 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.562101, "decimalLat": -34.763879 }, "geometry": { "type": "Point", "coordinates": [ 146.562, -34.764 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.007009, "decimalLat": -34.046504 }, "geometry": { "type": "Point", "coordinates": [ 151.007, -34.047 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.126308, "decimalLat": -31.413327 }, "geometry": { "type": "Point", "coordinates": [ 152.126, -31.413 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302783, "decimalLat": -28.844246 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094708, "decimalLat": -29.494158 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.163396, "decimalLat": -28.35569 }, "geometry": { "type": "Point", "coordinates": [ 153.163, -28.356 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531498, "decimalLat": -34.482965 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.483 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.0693, "decimalLat": -28.585389 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -28.585 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918296, "decimalLat": -31.446349 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095893, "decimalLat": -29.484656 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618854, "decimalLat": -34.435917 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642959, "decimalLat": -34.395859 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.115157, "decimalLat": -32.769544 }, "geometry": { "type": "Point", "coordinates": [ 152.115, -32.77 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643626, "decimalLat": -34.394583 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622876, "decimalLat": -34.383768 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.70897, "decimalLat": -31.786665 }, "geometry": { "type": "Point", "coordinates": [ 152.709, -31.787 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604765, "decimalLat": -34.427068 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104037, "decimalLat": -29.478029 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.502334, "decimalLat": -28.631954 }, "geometry": { "type": "Point", "coordinates": [ 153.502, -28.632 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.017493, "decimalLat": -33.975565 }, "geometry": { "type": "Point", "coordinates": [ 151.017, -33.976 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628124, "decimalLat": -34.389721 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532126, "decimalLat": -34.408735 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.409 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65918, "decimalLat": -34.455385 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108199, "decimalLat": -29.490595 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.084576, "decimalLat": -29.729649 }, "geometry": { "type": "Point", "coordinates": [ 151.085, -29.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.566447, "decimalLat": -34.460307 }, "geometry": { "type": "Point", "coordinates": [ 150.566, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924026, "decimalLat": -31.459953 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627178, "decimalLat": -34.385853 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.829547, "decimalLat": -29.642903 }, "geometry": { "type": "Point", "coordinates": [ 152.83, -29.643 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630351, "decimalLat": -34.388655 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.483773 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092111, "decimalLat": -29.487976 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296258, "decimalLat": -28.901462 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.901 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518767, "decimalLat": -34.439335 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6375, "decimalLat": -34.421755 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786149, "decimalLat": -33.7063 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311649, "decimalLat": -28.811929 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.812 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.249624, "decimalLat": -28.618525 }, "geometry": { "type": "Point", "coordinates": [ 153.25, -28.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62793, "decimalLat": -34.420857 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110037, "decimalLat": -29.490201 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642121, "decimalLat": -34.395906 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.594557, "decimalLat": -34.427516 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604138, "decimalLat": -34.437973 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521591, "decimalLat": -34.463905 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.937199, "decimalLat": -34.113878 }, "geometry": { "type": "Point", "coordinates": [ 150.937, -34.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612026, "decimalLat": -34.43188 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617007, "decimalLat": -34.439243 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609179, "decimalLat": -34.420681 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637204, "decimalLat": -34.422614 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434162, "decimalLat": -28.949687 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516847, "decimalLat": -34.44649 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427337, "decimalLat": -28.62623 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.626 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526867, "decimalLat": -34.469457 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409406, "decimalLat": -31.910186 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.12381, "decimalLat": -30.300468 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.3 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604905, "decimalLat": -34.437402 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109336, "decimalLat": -30.291368 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.291 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.814484, "decimalLat": -34.16744 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.167 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288381, "decimalLat": -28.827512 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597919, "decimalLat": -34.425996 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399388, "decimalLat": -28.662281 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875432, "decimalLat": -31.424892 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.425 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110527, "decimalLat": -29.49018 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607852, "decimalLat": -34.422981 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.170879, "decimalLat": -34.077914 }, "geometry": { "type": "Point", "coordinates": [ 150.171, -34.078 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108113, "decimalLat": -29.490563 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530838, "decimalLat": -34.483555 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89825, "decimalLat": -31.474203 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633082, "decimalLat": -34.417531 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109294, "decimalLat": -29.490614 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527144, "decimalLat": -34.457833 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.993994, "decimalLat": -32.721947 }, "geometry": { "type": "Point", "coordinates": [ 151.994, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985308, "decimalLat": -34.096581 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.369052, "decimalLat": -28.953149 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.953 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.951075, "decimalLat": -36.595044 }, "geometry": { "type": "Point", "coordinates": [ 149.951, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.37174, "decimalLat": -28.250411 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -28.25 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071468, "decimalLat": -30.885807 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110324, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627172, "decimalLat": -34.396464 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61642, "decimalLat": -34.433471 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.641306, "decimalLat": -30.489236 }, "geometry": { "type": "Point", "coordinates": [ 151.641, -30.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091752, "decimalLat": -29.487882 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104192, "decimalLat": -29.479696 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603956, "decimalLat": -34.426817 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631161, "decimalLat": -34.38731 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527424, "decimalLat": -34.457207 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109793, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103913, "decimalLat": -29.485632 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.938471, "decimalLat": -34.114161 }, "geometry": { "type": "Point", "coordinates": [ 150.938, -34.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608992, "decimalLat": -34.420371 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514385, "decimalLat": -34.446575 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923687, "decimalLat": -31.470478 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560834, "decimalLat": -28.36428 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.364 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615253, "decimalLat": -34.433196 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108215, "decimalLat": -29.490236 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635359, "decimalLat": -34.488049 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.05636, "decimalLat": -32.737 }, "geometry": { "type": "Point", "coordinates": [ 152.056, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376231, "decimalLat": -28.811791 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -28.812 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.97089, "decimalLat": -28.503093 }, "geometry": { "type": "Point", "coordinates": [ 152.971, -28.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124319, "decimalLat": -30.300157 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.3 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9038, "decimalLat": -31.440281 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522154, "decimalLat": -34.464285 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642566, "decimalLat": -34.395536 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787065, "decimalLat": -33.705505 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616435, "decimalLat": -34.436014 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272785, "decimalLat": -28.931395 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.931 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520741, "decimalLat": -34.465321 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.703121, "decimalLat": -33.509987 }, "geometry": { "type": "Point", "coordinates": [ 149.703, -33.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637478, "decimalLat": -34.423701 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071134, "decimalLat": -30.876775 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.877 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926863, "decimalLat": -31.447238 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598462, "decimalLat": -34.428332 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640609, "decimalLat": -34.494173 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603865, "decimalLat": -34.439536 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.173118, "decimalLat": -32.738165 }, "geometry": { "type": "Point", "coordinates": [ 152.173, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63451, "decimalLat": -34.420128 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103822, "decimalLat": -29.485571 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108135, "decimalLat": -29.490493 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91861, "decimalLat": -31.469198 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374087, "decimalLat": -31.915492 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905795, "decimalLat": -31.446475 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52384, "decimalLat": -34.466177 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522078, "decimalLat": -34.466114 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615814, "decimalLat": -34.439121 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884877, "decimalLat": -31.435087 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516453, "decimalLat": -34.446563 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639964, "decimalLat": -34.415374 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.415 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.847998, "decimalLat": -34.057627 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.058 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.602233, "decimalLat": -31.802226 }, "geometry": { "type": "Point", "coordinates": [ 152.602, -31.802 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637906, "decimalLat": -34.485745 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103913, "decimalLat": -29.485333 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516251, "decimalLat": -34.448975 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9152, "decimalLat": -31.458826 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303014, "decimalLat": -28.824059 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.149711, "decimalLat": -33.961723 }, "geometry": { "type": "Point", "coordinates": [ 151.15, -33.962 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103806, "decimalLat": -29.485599 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.12396, "decimalLat": -28.56031 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -28.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644716, "decimalLat": -34.396434 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039969, "decimalLat": -32.731768 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62456, "decimalLat": -34.385388 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303301, "decimalLat": -28.817757 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626269, "decimalLat": -34.395717 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.425634, "decimalLat": -28.630438 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.978821, "decimalLat": -34.08358 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -34.084 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513749, "decimalLat": -34.446382 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395846, "decimalLat": -28.268696 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.269 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.675242, "decimalLat": -33.564904 }, "geometry": { "type": "Point", "coordinates": [ 150.675, -33.565 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306243, "decimalLat": -29.055077 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -29.055 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.022884, "decimalLat": -28.488685 }, "geometry": { "type": "Point", "coordinates": [ 153.023, -28.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626987, "decimalLat": -34.420721 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642016, "decimalLat": -34.398482 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603931, "decimalLat": -34.439502 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.66884, "decimalLat": -30.441575 }, "geometry": { "type": "Point", "coordinates": [ 151.669, -30.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517284, "decimalLat": -34.43981 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.329859, "decimalLat": -28.930457 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.96115, "decimalLat": -34.101493 }, "geometry": { "type": "Point", "coordinates": [ 150.961, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627924, "decimalLat": -34.420659 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293334, "decimalLat": -28.864548 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.62532, "decimalLat": -32.565734 }, "geometry": { "type": "Point", "coordinates": [ 151.625, -32.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634308, "decimalLat": -34.488651 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.369056, "decimalLat": -28.615161 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.615 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811214, "decimalLat": -29.807806 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -29.808 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.036615, "decimalLat": -28.839311 }, "geometry": { "type": "Point", "coordinates": [ 153.037, -28.839 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.361038, "decimalLat": -28.941392 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633746, "decimalLat": -34.392427 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.361038, "decimalLat": -28.941392 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06574, "decimalLat": -32.710698 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646703, "decimalLat": -34.395778 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796332, "decimalLat": -34.117089 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.117 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899826, "decimalLat": -31.467055 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.76611, "decimalLat": -34.23673 }, "geometry": { "type": "Point", "coordinates": [ 150.766, -34.237 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.878723, "decimalLat": -34.01437 }, "geometry": { "type": "Point", "coordinates": [ 150.879, -34.014 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.183852, "decimalLat": -29.177135 }, "geometry": { "type": "Point", "coordinates": [ 150.184, -29.177 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.87045, "decimalLat": -34.408105 }, "geometry": { "type": "Point", "coordinates": [ 150.87, -34.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630732, "decimalLat": -34.420632 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868705, "decimalLat": -29.667322 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924403, "decimalLat": -31.449186 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.588079, "decimalLat": -33.460525 }, "geometry": { "type": "Point", "coordinates": [ 150.588, -33.461 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189959, "decimalLat": -32.223426 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522458, "decimalLat": -34.465049 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787095, "decimalLat": -31.629903 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611799, "decimalLat": -34.419596 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29927, "decimalLat": -28.817999 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3033, "decimalLat": -28.821668 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522581, "decimalLat": -34.464213 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101639, "decimalLat": -29.489825 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.059278, "decimalLat": -32.739099 }, "geometry": { "type": "Point", "coordinates": [ 152.059, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.054871, "decimalLat": -30.240487 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -30.24 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922143, "decimalLat": -31.462295 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877828, "decimalLat": -29.677381 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -29.677 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.718278, "decimalLat": -32.717574 }, "geometry": { "type": "Point", "coordinates": [ 151.718, -32.718 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867975, "decimalLat": -29.666874 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630098, "decimalLat": -34.420737 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.554827, "decimalLat": -32.916872 }, "geometry": { "type": "Point", "coordinates": [ 151.555, -32.917 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102642, "decimalLat": -29.489531 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302389, "decimalLat": -28.821933 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611374, "decimalLat": -34.430713 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596135, "decimalLat": -34.411563 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605394, "decimalLat": -34.432462 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813678, "decimalLat": -34.104761 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615863, "decimalLat": -34.43319 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104128, "decimalLat": -29.483853 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604436, "decimalLat": -34.424501 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60949, "decimalLat": -28.68934 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913159, "decimalLat": -31.460209 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.492294, "decimalLat": -32.381509 }, "geometry": { "type": "Point", "coordinates": [ 152.492, -32.382 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.419273, "decimalLat": -28.26485 }, "geometry": { "type": "Point", "coordinates": [ 153.419, -28.265 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63226, "decimalLat": -34.537916 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.538 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782969, "decimalLat": -33.719615 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.72 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.991787, "decimalLat": -28.454802 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -28.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.97101, "decimalLat": -30.42822 }, "geometry": { "type": "Point", "coordinates": [ 152.971, -30.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.575889, "decimalLat": -34.87874 }, "geometry": { "type": "Point", "coordinates": [ 150.576, -34.879 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.323158, "decimalLat": -33.053353 }, "geometry": { "type": "Point", "coordinates": [ 151.323, -33.053 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645124, "decimalLat": -34.393142 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.664803, "decimalLat": -30.350074 }, "geometry": { "type": "Point", "coordinates": [ 151.665, -30.35 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517317, "decimalLat": -34.451557 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524065, "decimalLat": -34.463324 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627369, "decimalLat": -34.420296 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91618, "decimalLat": -31.483446 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520994, "decimalLat": -34.466696 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60405, "decimalLat": -34.43267 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617573, "decimalLat": -34.438488 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.603422, "decimalLat": -34.763563 }, "geometry": { "type": "Point", "coordinates": [ 146.603, -34.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608948, "decimalLat": -34.434894 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614212, "decimalLat": -34.429642 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6374, "decimalLat": -34.488251 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923393, "decimalLat": -31.475555 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324895, "decimalLat": -36.293679 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.294 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643298, "decimalLat": -34.395424 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611898, "decimalLat": -34.431805 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280642, "decimalLat": -28.861197 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.962004, "decimalLat": -31.251 }, "geometry": { "type": "Point", "coordinates": [ 152.962, -31.251 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43429, "decimalLat": -28.731887 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323595, "decimalLat": -28.881036 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.881 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905944, "decimalLat": -31.479611 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604663, "decimalLat": -34.438632 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.209526, "decimalLat": -28.928931 }, "geometry": { "type": "Point", "coordinates": [ 153.21, -28.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.262595, "decimalLat": -33.687268 }, "geometry": { "type": "Point", "coordinates": [ 150.263, -33.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617128, "decimalLat": -34.441112 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913301, "decimalLat": -31.479918 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400546, "decimalLat": -28.60426 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.604 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.986111, "decimalLat": -34.092132 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517362, "decimalLat": -34.441578 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100743, "decimalLat": -29.490175 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623368, "decimalLat": -34.3833 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913236, "decimalLat": -31.45318 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630479, "decimalLat": -34.395302 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.452197, "decimalLat": -32.848503 }, "geometry": { "type": "Point", "coordinates": [ 151.452, -32.849 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563655, "decimalLat": -28.388033 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640385, "decimalLat": -34.394953 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639575, "decimalLat": -34.392846 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.387305, "decimalLat": -28.648221 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -28.648 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524625, "decimalLat": -34.46429 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.173585, "decimalLat": -32.735538 }, "geometry": { "type": "Point", "coordinates": [ 152.174, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103731, "decimalLat": -29.485646 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60155, "decimalLat": -28.68121 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554897, "decimalLat": -28.643692 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.644 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915361, "decimalLat": -31.194397 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.194 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.596912, "decimalLat": -33.528787 }, "geometry": { "type": "Point", "coordinates": [ 149.597, -33.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302775, "decimalLat": -29.051534 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -29.052 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.062018, "decimalLat": -28.94236 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -28.942 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.062833, "decimalLat": -30.917722 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -30.918 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907318, "decimalLat": -31.444289 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907177, "decimalLat": -31.443855 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51735, "decimalLat": -34.441623 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632739, "decimalLat": -34.418904 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063323, "decimalLat": -32.706418 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901649, "decimalLat": -31.241792 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298166, "decimalLat": -28.818677 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808018, "decimalLat": -34.09361 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403554, "decimalLat": -28.626581 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.784837, "decimalLat": -32.511437 }, "geometry": { "type": "Point", "coordinates": [ 151.785, -32.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519902, "decimalLat": -34.44657 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522114, "decimalLat": -34.464528 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519902, "decimalLat": -34.44657 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597982, "decimalLat": -34.418099 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60155, "decimalLat": -28.68121 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950453, "decimalLat": -36.576974 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.258665, "decimalLat": -32.086565 }, "geometry": { "type": "Point", "coordinates": [ 152.259, -32.087 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865295, "decimalLat": -29.650135 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -29.65 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.540594, "decimalLat": -32.069776 }, "geometry": { "type": "Point", "coordinates": [ 152.541, -32.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614422, "decimalLat": -34.429528 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374444, "decimalLat": -28.252222 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607852, "decimalLat": -34.422981 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.34652, "decimalLat": -28.349908 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.35 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.417403, "decimalLat": -36.248408 }, "geometry": { "type": "Point", "coordinates": [ 149.417, -36.248 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092748, "decimalLat": -28.603203 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -28.603 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304113, "decimalLat": -28.822848 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606618, "decimalLat": -34.438004 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645375, "decimalLat": -34.399305 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.933675, "decimalLat": -36.577361 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.631137, "decimalLat": -31.526558 }, "geometry": { "type": "Point", "coordinates": [ 151.631, -31.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283431, "decimalLat": -28.830728 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105292, "decimalLat": -29.489769 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.165938, "decimalLat": -38.711062 }, "geometry": { "type": "Point", "coordinates": [ 146.166, -38.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093959, "decimalLat": -29.488744 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90455, "decimalLat": -30.23833 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -30.238 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093367, "decimalLat": -29.488471 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342482, "decimalLat": -28.805797 }, "geometry": { "type": "Point", "coordinates": [ 153.342, -28.806 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093978, "decimalLat": -29.488802 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061019, "decimalLat": -32.710742 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.203649, "decimalLat": -33.825788 }, "geometry": { "type": "Point", "coordinates": [ 151.204, -33.826 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562095, "decimalLat": -28.389309 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629512, "decimalLat": -34.389451 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630266, "decimalLat": -34.420956 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.49, "decimalLat": -30.653 }, "geometry": { "type": "Point", "coordinates": [ 151.49, -30.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626742, "decimalLat": -34.421321 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077228, "decimalLat": -32.722451 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514332, "decimalLat": -34.44652 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.72318, "decimalLat": -31.515379 }, "geometry": { "type": "Point", "coordinates": [ 152.723, -31.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908264, "decimalLat": -31.438655 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.78239, "decimalLat": -32.582884 }, "geometry": { "type": "Point", "coordinates": [ 151.782, -32.583 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283805, "decimalLat": -28.666682 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515565, "decimalLat": -34.454496 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793519, "decimalLat": -31.127211 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614699, "decimalLat": -34.430886 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903897, "decimalLat": -31.439976 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302231, "decimalLat": -28.821335 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628402, "decimalLat": -34.391025 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642132, "decimalLat": -34.395888 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92433, "decimalLat": -31.459822 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104053, "decimalLat": -29.477903 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907779, "decimalLat": -31.489287 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524411, "decimalLat": -34.451611 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517391, "decimalLat": -34.452018 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640533, "decimalLat": -34.494135 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521651, "decimalLat": -34.465817 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606342, "decimalLat": -34.438142 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922891, "decimalLat": -31.455164 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80026, "decimalLat": -34.17452 }, "geometry": { "type": "Point", "coordinates": [ 150.8, -34.175 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921496, "decimalLat": -31.45372 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638529, "decimalLat": -34.49068 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.646068, "decimalLat": -32.565707 }, "geometry": { "type": "Point", "coordinates": [ 149.646, -32.566 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912431, "decimalLat": -31.470606 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638522, "decimalLat": -34.491311 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.532728, "decimalLat": -32.973135 }, "geometry": { "type": "Point", "coordinates": [ 151.533, -32.973 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52159, "decimalLat": -34.465698 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101955, "decimalLat": -29.488784 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415176, "decimalLat": -31.933124 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103463, "decimalLat": -29.485692 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644348, "decimalLat": -34.396751 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01713, "decimalLat": -30.37491 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -30.375 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.840035, "decimalLat": -29.320091 }, "geometry": { "type": "Point", "coordinates": [ 152.84, -29.32 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102867, "decimalLat": -29.489479 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.153782, "decimalLat": -32.714128 }, "geometry": { "type": "Point", "coordinates": [ 152.154, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631755, "decimalLat": -34.388214 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.996362, "decimalLat": -34.06232 }, "geometry": { "type": "Point", "coordinates": [ 150.996, -34.062 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598341, "decimalLat": -34.412796 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.802439, "decimalLat": -34.111104 }, "geometry": { "type": "Point", "coordinates": [ 150.802, -34.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627196, "decimalLat": -34.420635 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.361906, "decimalLat": -32.157662 }, "geometry": { "type": "Point", "coordinates": [ 152.362, -32.158 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.478835, "decimalLat": -28.309888 }, "geometry": { "type": "Point", "coordinates": [ 152.479, -28.31 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811536, "decimalLat": -29.51492 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -29.515 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433168, "decimalLat": -28.729078 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525376, "decimalLat": -34.458383 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109728, "decimalLat": -30.266518 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -30.267 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063773, "decimalLat": -32.706517 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610323, "decimalLat": -34.41909 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623915, "decimalLat": -34.384708 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624449, "decimalLat": -34.388144 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.239028, "decimalLat": -28.83787 }, "geometry": { "type": "Point", "coordinates": [ 153.239, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926432, "decimalLat": -31.455656 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520325, "decimalLat": -34.453989 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.831683, "decimalLat": -29.642883 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -29.643 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.040754, "decimalLat": -32.737065 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625184, "decimalLat": -34.386761 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109379, "decimalLat": -29.490535 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600203, "decimalLat": -34.4287 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601542, "decimalLat": -34.42677 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.252967, "decimalLat": -34.577916 }, "geometry": { "type": "Point", "coordinates": [ 150.253, -34.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515819, "decimalLat": -34.446649 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518748, "decimalLat": -34.447701 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29541, "decimalLat": -28.818006 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904809, "decimalLat": -31.439311 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626499, "decimalLat": -34.386038 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644482, "decimalLat": -34.393923 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798162, "decimalLat": -31.374754 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.375 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922993, "decimalLat": -31.481206 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200421, "decimalLat": -29.354409 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616161, "decimalLat": -34.438776 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.107825, "decimalLat": -31.422741 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -31.423 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402111, "decimalLat": -28.259317 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.42921, "decimalLat": -31.83022 }, "geometry": { "type": "Point", "coordinates": [ 152.429, -31.83 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.41537, "decimalLat": -28.982474 }, "geometry": { "type": "Point", "coordinates": [ 153.415, -28.982 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534154, "decimalLat": -34.480007 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61582, "decimalLat": -34.433171 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.384457, "decimalLat": -31.880154 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.88 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55964, "decimalLat": -28.30651 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.307 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513103, "decimalLat": -34.447225 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556688, "decimalLat": -28.400022 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517315, "decimalLat": -34.452747 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.088534, "decimalLat": -33.404535 }, "geometry": { "type": "Point", "coordinates": [ 151.089, -33.405 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916045, "decimalLat": -31.436245 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109755, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.244031, "decimalLat": -30.989232 }, "geometry": { "type": "Point", "coordinates": [ 150.244, -30.989 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315839, "decimalLat": -28.83683 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.203368, "decimalLat": -32.229858 }, "geometry": { "type": "Point", "coordinates": [ 152.203, -32.23 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921471, "decimalLat": -31.480814 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642856, "decimalLat": -34.395659 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604128, "decimalLat": -34.450495 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096666, "decimalLat": -29.491879 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601322, "decimalLat": -34.417354 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.141361, "decimalLat": -32.73087 }, "geometry": { "type": "Point", "coordinates": [ 152.141, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.747633, "decimalLat": -33.501137 }, "geometry": { "type": "Point", "coordinates": [ 150.748, -33.501 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.346548, "decimalLat": -28.910046 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616307, "decimalLat": -34.440907 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.316236, "decimalLat": -36.06671 }, "geometry": { "type": "Point", "coordinates": [ 149.316, -36.067 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394982, "decimalLat": -28.274429 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.274 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104176, "decimalLat": -29.485225 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908978, "decimalLat": -31.435541 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.291111, "decimalLat": -28.360278 }, "geometry": { "type": "Point", "coordinates": [ 153.291, -28.36 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809107, "decimalLat": -31.641968 }, "geometry": { "type": "Point", "coordinates": [ 152.809, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603587, "decimalLat": -34.419156 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631755, "decimalLat": -34.388214 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.213451, "decimalLat": -32.242985 }, "geometry": { "type": "Point", "coordinates": [ 152.213, -32.243 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.316856, "decimalLat": -36.067117 }, "geometry": { "type": "Point", "coordinates": [ 149.317, -36.067 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.282702, "decimalLat": -29.001489 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -29.001 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636062, "decimalLat": -34.48552 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321446, "decimalLat": -28.816748 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10748, "decimalLat": -29.490128 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929425, "decimalLat": -31.456442 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103758, "decimalLat": -29.485571 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.390849, "decimalLat": -28.738895 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.739 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785196, "decimalLat": -33.709666 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609622, "decimalLat": -34.419635 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640027, "decimalLat": -34.415438 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.291892, "decimalLat": -28.867701 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.868 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288143, "decimalLat": -28.98796 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.988 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835933, "decimalLat": -34.072488 }, "geometry": { "type": "Point", "coordinates": [ 150.836, -34.072 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109448, "decimalLat": -29.490524 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609191, "decimalLat": -34.420645 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108178, "decimalLat": -29.490623 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.386019, "decimalLat": -31.914225 }, "geometry": { "type": "Point", "coordinates": [ 152.386, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617282, "decimalLat": -34.438762 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791737, "decimalLat": -31.526396 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607162, "decimalLat": -34.435715 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095233, "decimalLat": -29.483806 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608261, "decimalLat": -34.434962 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064619, "decimalLat": -32.699775 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.7 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632948, "decimalLat": -34.418809 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06353, "decimalLat": -32.706861 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.807228, "decimalLat": -34.068105 }, "geometry": { "type": "Point", "coordinates": [ 150.807, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.856933, "decimalLat": -34.072934 }, "geometry": { "type": "Point", "coordinates": [ 150.857, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630645, "decimalLat": -34.420639 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.817132, "decimalLat": -31.169438 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -31.169 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375432, "decimalLat": -28.999887 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -29.0 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.008744, "decimalLat": -34.045474 }, "geometry": { "type": "Point", "coordinates": [ 151.009, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785124, "decimalLat": -33.713876 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.541045, "decimalLat": -32.058882 }, "geometry": { "type": "Point", "coordinates": [ 152.541, -32.059 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.740357, "decimalLat": -30.480107 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -30.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624882, "decimalLat": -34.399747 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792357, "decimalLat": -34.153305 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.153 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.007718, "decimalLat": -28.625416 }, "geometry": { "type": "Point", "coordinates": [ 153.008, -28.625 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644409, "decimalLat": -34.391866 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427687, "decimalLat": -28.626373 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.626 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522664, "decimalLat": -34.465801 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513957, "decimalLat": -34.446332 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.080328, "decimalLat": -33.77411 }, "geometry": { "type": "Point", "coordinates": [ 150.08, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.913647, "decimalLat": -33.94594 }, "geometry": { "type": "Point", "coordinates": [ 150.914, -33.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923632, "decimalLat": -31.440969 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63069, "decimalLat": -34.388951 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91638, "decimalLat": -31.468126 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.795035, "decimalLat": -34.143542 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525438, "decimalLat": -34.459971 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63747, "decimalLat": -34.488486 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.77068, "decimalLat": -32.59321 }, "geometry": { "type": "Point", "coordinates": [ 151.771, -32.593 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.994495, "decimalLat": -34.142425 }, "geometry": { "type": "Point", "coordinates": [ 150.994, -34.142 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109342, "decimalLat": -29.490385 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630689, "decimalLat": -34.387066 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.421401, "decimalLat": -31.946553 }, "geometry": { "type": "Point", "coordinates": [ 152.421, -31.947 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.17355, "decimalLat": -32.72578 }, "geometry": { "type": "Point", "coordinates": [ 152.174, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909758, "decimalLat": -31.467259 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010499, "decimalLat": -36.556654 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.040714, "decimalLat": -32.736745 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103295, "decimalLat": -32.759137 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -32.759 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818343, "decimalLat": -31.651946 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615115, "decimalLat": -34.435366 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52302, "decimalLat": -34.466268 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103913, "decimalLat": -29.48961 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104096, "decimalLat": -29.480672 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101118, "decimalLat": -29.49004 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.472453, "decimalLat": -28.268646 }, "geometry": { "type": "Point", "coordinates": [ 153.472, -28.269 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273098, "decimalLat": -28.931581 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.932 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793922, "decimalLat": -31.643396 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.643 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.000911, "decimalLat": -32.729651 }, "geometry": { "type": "Point", "coordinates": [ 152.001, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31217, "decimalLat": -28.840513 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.548002, "decimalLat": -33.516421 }, "geometry": { "type": "Point", "coordinates": [ 149.548, -33.516 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104916, "decimalLat": -29.476782 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.979274, "decimalLat": -29.779303 }, "geometry": { "type": "Point", "coordinates": [ 150.979, -29.779 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928887, "decimalLat": -31.459167 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607189, "decimalLat": -34.422562 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925969, "decimalLat": -31.453137 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911256, "decimalLat": -31.465777 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.789189, "decimalLat": -31.64041 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524983, "decimalLat": -34.495616 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879032, "decimalLat": -31.452558 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609249, "decimalLat": -34.420502 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513044, "decimalLat": -34.447774 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63872, "decimalLat": -34.48934 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556187, "decimalLat": -28.398598 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628067, "decimalLat": -34.389792 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49754, "decimalLat": -28.768431 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.768 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914724, "decimalLat": -31.479999 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.965833, "decimalLat": -33.964722 }, "geometry": { "type": "Point", "coordinates": [ 150.966, -33.965 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561793, "decimalLat": -28.383579 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.694853, "decimalLat": -32.24532 }, "geometry": { "type": "Point", "coordinates": [ 151.695, -32.245 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.209893, "decimalLat": -31.560471 }, "geometry": { "type": "Point", "coordinates": [ 152.21, -31.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630108, "decimalLat": -34.420782 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.113547, "decimalLat": -32.763889 }, "geometry": { "type": "Point", "coordinates": [ 152.114, -32.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615789, "decimalLat": -34.438453 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513826, "decimalLat": -34.446329 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515324, "decimalLat": -34.451607 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513811, "decimalLat": -34.446122 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634489, "decimalLat": -34.42011 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904605, "decimalLat": -31.443779 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516308, "decimalLat": -34.447038 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555848, "decimalLat": -28.398928 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604556, "decimalLat": -34.424476 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637324, "decimalLat": -34.423744 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91574, "decimalLat": -31.444719 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.948669, "decimalLat": -30.415963 }, "geometry": { "type": "Point", "coordinates": [ 152.949, -30.416 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913215, "decimalLat": -31.479773 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617603, "decimalLat": -34.438588 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.837478, "decimalLat": -34.078737 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.079 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.983926, "decimalLat": -34.094764 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.932654, "decimalLat": -30.38791 }, "geometry": { "type": "Point", "coordinates": [ 152.933, -30.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.347514, "decimalLat": -33.502354 }, "geometry": { "type": "Point", "coordinates": [ 149.348, -33.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912566, "decimalLat": -31.45219 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.756048, "decimalLat": -31.631096 }, "geometry": { "type": "Point", "coordinates": [ 152.756, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.725647, "decimalLat": -34.20747 }, "geometry": { "type": "Point", "coordinates": [ 150.726, -34.207 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514279, "decimalLat": -34.447592 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556471, "decimalLat": -28.389677 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.313139, "decimalLat": -36.296967 }, "geometry": { "type": "Point", "coordinates": [ 149.313, -36.297 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838978, "decimalLat": -34.053416 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395278, "decimalLat": -28.95995 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060844, "decimalLat": -32.710711 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.985286, "decimalLat": -30.324668 }, "geometry": { "type": "Point", "coordinates": [ 152.985, -30.325 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124549, "decimalLat": -30.298884 }, "geometry": { "type": "Point", "coordinates": [ 153.125, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911128, "decimalLat": -31.441098 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557389, "decimalLat": -28.397143 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.012047, "decimalLat": -30.421973 }, "geometry": { "type": "Point", "coordinates": [ 153.012, -30.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293102, "decimalLat": -28.864616 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609376, "decimalLat": -34.420658 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103532, "decimalLat": -29.485482 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.996577, "decimalLat": -33.995358 }, "geometry": { "type": "Point", "coordinates": [ 150.997, -33.995 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630841, "decimalLat": -34.420634 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90511, "decimalLat": -30.43784 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -30.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607143, "decimalLat": -34.437545 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610052, "decimalLat": -34.419075 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.511437, "decimalLat": -34.545781 }, "geometry": { "type": "Point", "coordinates": [ 150.511, -34.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400684, "decimalLat": -28.257824 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.089722, "decimalLat": -29.485713 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879112, "decimalLat": -29.661971 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534726, "decimalLat": -34.462403 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104197, "decimalLat": -29.477371 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.383637, "decimalLat": -28.692655 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515523, "decimalLat": -34.451872 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61559, "decimalLat": -34.435492 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.738184, "decimalLat": -34.306234 }, "geometry": { "type": "Point", "coordinates": [ 150.738, -34.306 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603271, "decimalLat": -34.439381 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288698, "decimalLat": -28.936406 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -28.936 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.013478, "decimalLat": -32.73255 }, "geometry": { "type": "Point", "coordinates": [ 152.013, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628025, "decimalLat": -34.42094 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49553, "decimalLat": -28.693291 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518162, "decimalLat": -34.446562 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.025245, "decimalLat": -29.778838 }, "geometry": { "type": "Point", "coordinates": [ 151.025, -29.779 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108178, "decimalLat": -29.490507 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.01112, "decimalLat": -36.547428 }, "geometry": { "type": "Point", "coordinates": [ 150.011, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395443, "decimalLat": -28.95972 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790474, "decimalLat": -34.190016 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.19 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785627, "decimalLat": -33.710166 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604101, "decimalLat": -34.438892 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524079, "decimalLat": -34.45256 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.404449, "decimalLat": -28.644927 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.645 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635208, "decimalLat": -34.487992 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.055816, "decimalLat": -33.780027 }, "geometry": { "type": "Point", "coordinates": [ 150.056, -33.78 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.988775, "decimalLat": -34.027732 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.028 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.937727, "decimalLat": -36.656364 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.271235, "decimalLat": -29.012361 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -29.012 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616457, "decimalLat": -34.434473 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925261, "decimalLat": -31.45393 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.704503, "decimalLat": -31.533373 }, "geometry": { "type": "Point", "coordinates": [ 152.705, -31.533 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.799325, "decimalLat": -34.213357 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.213 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615931, "decimalLat": -34.433074 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521502, "decimalLat": -34.465706 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.178153, "decimalLat": -28.863762 }, "geometry": { "type": "Point", "coordinates": [ 153.178, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.053889, "decimalLat": -30.233101 }, "geometry": { "type": "Point", "coordinates": [ 153.054, -30.233 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109755, "decimalLat": -29.490166 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060844, "decimalLat": -32.710711 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785265, "decimalLat": -33.716973 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93177, "decimalLat": -31.474266 }, "geometry": { "type": "Point", "coordinates": [ 152.932, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320345, "decimalLat": -28.824308 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.339182, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601546, "decimalLat": -34.417881 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46202, "decimalLat": -28.650301 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067513, "decimalLat": -32.748356 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.748 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637116, "decimalLat": -34.485216 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786272, "decimalLat": -33.7064 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515895, "decimalLat": -34.44703 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.857337, "decimalLat": -30.314076 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -30.314 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.882485, "decimalLat": -31.425961 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.426 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109755, "decimalLat": -29.490189 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616807, "decimalLat": -34.399535 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.53868, "decimalLat": -28.58252 }, "geometry": { "type": "Point", "coordinates": [ 153.539, -28.583 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.259326, "decimalLat": -30.414646 }, "geometry": { "type": "Point", "coordinates": [ 150.259, -30.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638487, "decimalLat": -34.490643 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.062266, "decimalLat": -28.492487 }, "geometry": { "type": "Point", "coordinates": [ 153.062, -28.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629451, "decimalLat": -34.388557 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.261976, "decimalLat": -28.808246 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -28.808 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523106, "decimalLat": -34.452324 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.007023, "decimalLat": -30.59987 }, "geometry": { "type": "Point", "coordinates": [ 153.007, -30.6 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604282, "decimalLat": -34.426842 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640791, "decimalLat": -34.494257 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521621, "decimalLat": -34.465726 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52171, "decimalLat": -34.465683 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60117, "decimalLat": -28.70899 }, "geometry": { "type": "Point", "coordinates": [ 153.601, -28.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104348, "decimalLat": -29.477628 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522181, "decimalLat": -34.453414 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630338, "decimalLat": -34.395255 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616871, "decimalLat": -34.399582 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192089, "decimalLat": -32.216754 }, "geometry": { "type": "Point", "coordinates": [ 152.192, -32.217 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6292, "decimalLat": -34.395133 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522109, "decimalLat": -34.464348 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785187, "decimalLat": -33.716996 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07276, "decimalLat": -30.884454 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -30.884 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785915, "decimalLat": -31.62955 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067434, "decimalLat": -32.708155 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615033, "decimalLat": -34.429441 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514384, "decimalLat": -34.444772 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060935, "decimalLat": -32.710089 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110554, "decimalLat": -29.490026 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630264, "decimalLat": -34.42101 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.445597, "decimalLat": -28.874167 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984453, "decimalLat": -34.095222 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514217, "decimalLat": -34.445995 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522075, "decimalLat": -34.465853 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631047, "decimalLat": -34.388236 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521498, "decimalLat": -34.465841 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063724, "decimalLat": -32.706574 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522173, "decimalLat": -34.464367 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62706, "decimalLat": -34.389655 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898285, "decimalLat": -31.460223 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.608995, "decimalLat": -30.343746 }, "geometry": { "type": "Point", "coordinates": [ 152.609, -30.344 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630677, "decimalLat": -34.420658 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603381, "decimalLat": -34.427149 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895614, "decimalLat": -31.426997 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922383, "decimalLat": -31.440204 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609467, "decimalLat": -34.418983 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785257, "decimalLat": -33.71912 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900315, "decimalLat": -31.474141 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.72551, "decimalLat": -30.221585 }, "geometry": { "type": "Point", "coordinates": [ 152.726, -30.222 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.895931, "decimalLat": -34.020579 }, "geometry": { "type": "Point", "coordinates": [ 150.896, -34.021 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.774065, "decimalLat": -32.590289 }, "geometry": { "type": "Point", "coordinates": [ 151.774, -32.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609665, "decimalLat": -34.419663 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.229587, "decimalLat": -28.889132 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.823073, "decimalLat": -34.15014 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323016, "decimalLat": -28.829782 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617065, "decimalLat": -34.433754 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636688, "decimalLat": -34.48803 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609997, "decimalLat": -34.432823 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639148, "decimalLat": -34.491909 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911078, "decimalLat": -31.429558 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.463836, "decimalLat": -28.320689 }, "geometry": { "type": "Point", "coordinates": [ 153.464, -28.321 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.982615, "decimalLat": -34.130538 }, "geometry": { "type": "Point", "coordinates": [ 150.983, -34.131 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.018709, "decimalLat": -28.766222 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -28.766 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625076, "decimalLat": -34.386741 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31452, "decimalLat": -28.82599 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610333, "decimalLat": -34.420262 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786172, "decimalLat": -33.706021 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334641, "decimalLat": -28.813914 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80927, "decimalLat": -34.102502 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.103 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614515, "decimalLat": -34.429287 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51414, "decimalLat": -34.44639 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926365, "decimalLat": -31.455648 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.947353, "decimalLat": -30.43151 }, "geometry": { "type": "Point", "coordinates": [ 152.947, -30.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.780214, "decimalLat": -34.199921 }, "geometry": { "type": "Point", "coordinates": [ 150.78, -34.2 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626523, "decimalLat": -34.38557 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604564, "decimalLat": -34.424557 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.385525, "decimalLat": -31.911916 }, "geometry": { "type": "Point", "coordinates": [ 152.386, -31.912 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108237, "decimalLat": -29.490367 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107979, "decimalLat": -29.49039 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.839405, "decimalLat": -34.064692 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.065 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514422, "decimalLat": -34.446053 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521307, "decimalLat": -34.465702 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063819, "decimalLat": -32.706596 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.995108, "decimalLat": -30.408846 }, "geometry": { "type": "Point", "coordinates": [ 152.995, -30.409 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.422883, "decimalLat": -33.709615 }, "geometry": { "type": "Point", "coordinates": [ 149.423, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879669, "decimalLat": -31.449383 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602919, "decimalLat": -34.435704 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30734, "decimalLat": -28.97709 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555267, "decimalLat": -28.408776 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.409 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906909, "decimalLat": -31.444276 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784845, "decimalLat": -33.713508 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.713667, "decimalLat": -31.353747 }, "geometry": { "type": "Point", "coordinates": [ 152.714, -31.354 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924965, "decimalLat": -31.449531 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63084, "decimalLat": -34.42067 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.828654, "decimalLat": -29.65103 }, "geometry": { "type": "Point", "coordinates": [ 150.829, -29.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517229, "decimalLat": -34.446444 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067434, "decimalLat": -32.708155 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515454, "decimalLat": -34.440629 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784721, "decimalLat": -33.71335 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.097706, "decimalLat": -29.491385 }, "geometry": { "type": "Point", "coordinates": [ 153.098, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103838, "decimalLat": -29.489591 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877046, "decimalLat": -31.081341 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -31.081 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518345, "decimalLat": -34.451389 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.594981, "decimalLat": -34.411982 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.995573, "decimalLat": -36.572611 }, "geometry": { "type": "Point", "coordinates": [ 149.996, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.934926, "decimalLat": -30.382351 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -30.382 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615635, "decimalLat": -34.434294 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.995689, "decimalLat": -34.048358 }, "geometry": { "type": "Point", "coordinates": [ 150.996, -34.048 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631625, "decimalLat": -34.388202 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.114218, "decimalLat": -32.094306 }, "geometry": { "type": "Point", "coordinates": [ 152.114, -32.094 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823796, "decimalLat": -31.181156 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -31.181 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.117442, "decimalLat": -28.618439 }, "geometry": { "type": "Point", "coordinates": [ 153.117, -28.618 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526571, "decimalLat": -34.469532 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519139, "decimalLat": -34.447366 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273941, "decimalLat": -28.820088 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.70213, "decimalLat": -33.50371 }, "geometry": { "type": "Point", "coordinates": [ 150.702, -33.504 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659312, "decimalLat": -34.458074 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.511481, "decimalLat": -28.80989 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.81 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597066, "decimalLat": -34.417054 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786446, "decimalLat": -31.629178 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103798, "decimalLat": -29.485158 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810191, "decimalLat": -31.652671 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -31.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989451, "decimalLat": -34.027632 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.028 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644713, "decimalLat": -34.399661 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099809, "decimalLat": -29.491604 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.02308, "decimalLat": -28.428158 }, "geometry": { "type": "Point", "coordinates": [ 153.023, -28.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.110282, "decimalLat": -29.762752 }, "geometry": { "type": "Point", "coordinates": [ 151.11, -29.763 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63969, "decimalLat": -34.399186 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78569, "decimalLat": -33.70596 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10814, "decimalLat": -29.490245 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.238214, "decimalLat": -28.354864 }, "geometry": { "type": "Point", "coordinates": [ 153.238, -28.355 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30184, "decimalLat": -28.822956 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522413, "decimalLat": -34.465823 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604274, "decimalLat": -34.438913 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.02023, "decimalLat": -34.83474 }, "geometry": { "type": "Point", "coordinates": [ 150.02, -34.835 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640965, "decimalLat": -34.393287 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63084, "decimalLat": -34.420652 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415109, "decimalLat": -31.933259 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784129, "decimalLat": -33.719047 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81849, "decimalLat": -31.117549 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.118 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.747599, "decimalLat": -33.50904 }, "geometry": { "type": "Point", "coordinates": [ 150.748, -33.509 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657899, "decimalLat": -34.456036 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.952917, "decimalLat": -36.681355 }, "geometry": { "type": "Point", "coordinates": [ 149.953, -36.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.113797, "decimalLat": -32.718954 }, "geometry": { "type": "Point", "coordinates": [ 152.114, -32.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519407, "decimalLat": -34.488077 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105061, "decimalLat": -29.489708 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092369, "decimalLat": -29.488321 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63727, "decimalLat": -34.423752 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200782, "decimalLat": -29.350259 }, "geometry": { "type": "Point", "coordinates": [ 150.201, -29.35 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555804, "decimalLat": -28.399086 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.846368, "decimalLat": -34.069925 }, "geometry": { "type": "Point", "coordinates": [ 150.846, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.529918, "decimalLat": -28.68447 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.880784, "decimalLat": -36.581514 }, "geometry": { "type": "Point", "coordinates": [ 149.881, -36.582 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926767, "decimalLat": -31.454727 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627122, "decimalLat": -34.42058 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313688, "decimalLat": -28.822469 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.698143, "decimalLat": -31.816765 }, "geometry": { "type": "Point", "coordinates": [ 152.698, -31.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603272, "decimalLat": -34.439326 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.936835, "decimalLat": -30.894257 }, "geometry": { "type": "Point", "coordinates": [ 151.937, -30.894 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.510315, "decimalLat": -32.086594 }, "geometry": { "type": "Point", "coordinates": [ 152.51, -32.087 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.215212, "decimalLat": -28.508764 }, "geometry": { "type": "Point", "coordinates": [ 153.215, -28.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.883972, "decimalLat": -34.040859 }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.041 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60437, "decimalLat": -34.437833 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412593, "decimalLat": -31.93256 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639069, "decimalLat": -34.418963 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.69649, "decimalLat": -30.403711 }, "geometry": { "type": "Point", "coordinates": [ 151.696, -30.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.515432, "decimalLat": -32.062371 }, "geometry": { "type": "Point", "coordinates": [ 152.515, -32.062 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09485, "decimalLat": -29.494295 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624601, "decimalLat": -34.388165 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.056954, "decimalLat": -32.737563 }, "geometry": { "type": "Point", "coordinates": [ 152.057, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.23296, "decimalLat": -33.119088 }, "geometry": { "type": "Point", "coordinates": [ 151.233, -33.119 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.001165, "decimalLat": -29.088072 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -29.088 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.089719, "decimalLat": -29.485716 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101719, "decimalLat": -29.489372 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8081, "decimalLat": -31.547065 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -31.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.451256, "decimalLat": -28.589934 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.453198, "decimalLat": -28.646734 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.735005, "decimalLat": -34.297459 }, "geometry": { "type": "Point", "coordinates": [ 150.735, -34.297 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614887, "decimalLat": -34.43382 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518634, "decimalLat": -34.454856 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520633, "decimalLat": -34.465652 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82929, "decimalLat": -31.26329 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -31.263 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915674, "decimalLat": -31.484398 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.427926, "decimalLat": -34.469881 }, "geometry": { "type": "Point", "coordinates": [ 150.428, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78486, "decimalLat": -33.713636 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603392, "decimalLat": -34.418359 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606597, "decimalLat": -34.455917 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297303, "decimalLat": -28.982788 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637332, "decimalLat": -34.423861 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110511, "decimalLat": -29.49018 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524328, "decimalLat": -34.45297 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109235, "decimalLat": -29.490876 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.860959, "decimalLat": -31.459627 }, "geometry": { "type": "Point", "coordinates": [ 152.861, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615814, "decimalLat": -34.436434 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399729, "decimalLat": -28.260489 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.133308, "decimalLat": -28.613503 }, "geometry": { "type": "Point", "coordinates": [ 153.133, -28.614 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.632467, "decimalLat": -31.34061 }, "geometry": { "type": "Point", "coordinates": [ 152.632, -31.341 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.979762, "decimalLat": -34.126957 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -34.127 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.68428, "decimalLat": -33.540825 }, "geometry": { "type": "Point", "coordinates": [ 149.684, -33.541 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304698, "decimalLat": -28.816233 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514772, "decimalLat": -34.444915 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103929, "decimalLat": -29.485356 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790726, "decimalLat": -34.182683 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.183 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.056471, "decimalLat": -33.776978 }, "geometry": { "type": "Point", "coordinates": [ 150.056, -33.777 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60197, "decimalLat": -28.64736 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299672, "decimalLat": -28.650831 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.968676, "decimalLat": -30.246519 }, "geometry": { "type": "Point", "coordinates": [ 152.969, -30.247 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636242, "decimalLat": -34.485695 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637266, "decimalLat": -34.423869 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640292, "decimalLat": -34.398278 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604839, "decimalLat": -34.425221 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785159, "decimalLat": -33.70518 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.873769, "decimalLat": -34.035121 }, "geometry": { "type": "Point", "coordinates": [ 150.874, -34.035 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521091, "decimalLat": -34.466725 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659193, "decimalLat": -34.45919 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552128, "decimalLat": -33.491219 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521091, "decimalLat": -34.465634 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.385132, "decimalLat": -28.837392 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921528, "decimalLat": -31.473025 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.816037, "decimalLat": -31.449902 }, "geometry": { "type": "Point", "coordinates": [ 152.816, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516513, "decimalLat": -34.450035 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930481, "decimalLat": -31.449625 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.554112, "decimalLat": -34.498 }, "geometry": { "type": "Point", "coordinates": [ 150.554, -34.498 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.558511, "decimalLat": -34.519362 }, "geometry": { "type": "Point", "coordinates": [ 150.559, -34.519 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.804879, "decimalLat": -31.142198 }, "geometry": { "type": "Point", "coordinates": [ 152.805, -31.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.85428, "decimalLat": -31.466441 }, "geometry": { "type": "Point", "coordinates": [ 152.854, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630797, "decimalLat": -34.420651 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.650302, "decimalLat": -33.54771 }, "geometry": { "type": "Point", "coordinates": [ 150.65, -33.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533238, "decimalLat": -34.479691 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.12565, "decimalLat": -30.297388 }, "geometry": { "type": "Point", "coordinates": [ 153.126, -30.297 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.431711, "decimalLat": -28.835793 }, "geometry": { "type": "Point", "coordinates": [ 153.432, -28.836 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520251, "decimalLat": -34.453915 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524075, "decimalLat": -34.471464 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40879, "decimalLat": -28.963196 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.963 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824668, "decimalLat": -29.505196 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.046985, "decimalLat": -34.0268 }, "geometry": { "type": "Point", "coordinates": [ 151.047, -34.027 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.03365, "decimalLat": -30.382752 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -30.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926188, "decimalLat": -31.463721 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927492, "decimalLat": -31.465838 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642608, "decimalLat": -34.397908 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103731, "decimalLat": -29.485697 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921041, "decimalLat": -31.448924 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78933, "decimalLat": -30.918792 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929451, "decimalLat": -31.450749 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640042, "decimalLat": -34.491863 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784515, "decimalLat": -33.717257 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.081155, "decimalLat": -33.138034 }, "geometry": { "type": "Point", "coordinates": [ 151.081, -33.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.203368, "decimalLat": -32.229858 }, "geometry": { "type": "Point", "coordinates": [ 152.203, -32.23 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784015, "decimalLat": -33.719168 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.04158, "decimalLat": -30.874796 }, "geometry": { "type": "Point", "coordinates": [ 149.042, -30.875 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.409947, "decimalLat": -29.007147 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -29.007 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535234, "decimalLat": -34.462179 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908687, "decimalLat": -29.620256 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -29.62 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094654, "decimalLat": -29.488489 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.24139, "decimalLat": -30.027688 }, "geometry": { "type": "Point", "coordinates": [ 152.241, -30.028 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924043, "decimalLat": -31.453973 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894749, "decimalLat": -31.445575 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632603, "decimalLat": -34.418324 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.980949, "decimalLat": -28.617599 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -28.618 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51839, "decimalLat": -34.451335 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.660868, "decimalLat": -32.686028 }, "geometry": { "type": "Point", "coordinates": [ 151.661, -32.686 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.995047, "decimalLat": -30.410423 }, "geometry": { "type": "Point", "coordinates": [ 152.995, -30.41 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613646, "decimalLat": -34.431938 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.547463, "decimalLat": -28.676052 }, "geometry": { "type": "Point", "coordinates": [ 153.547, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110506, "decimalLat": -29.490124 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521257, "decimalLat": -34.466629 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621137, "decimalLat": -34.398727 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811419, "decimalLat": -31.138631 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -31.139 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.216162, "decimalLat": -30.083636 }, "geometry": { "type": "Point", "coordinates": [ 152.216, -30.084 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630839, "decimalLat": -34.390225 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601819, "decimalLat": -34.418202 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644286, "decimalLat": -34.393135 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899825, "decimalLat": -31.474198 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513729, "decimalLat": -34.446327 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616347, "decimalLat": -34.436057 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880313, "decimalLat": -29.683038 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -29.683 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.086403, "decimalLat": -32.728503 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105249, "decimalLat": -29.489699 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.170798, "decimalLat": -32.730557 }, "geometry": { "type": "Point", "coordinates": [ 152.171, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124516, "decimalLat": -30.296554 }, "geometry": { "type": "Point", "coordinates": [ 153.125, -30.297 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637325, "decimalLat": -34.423726 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916352, "decimalLat": -31.445136 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90803, "decimalLat": -30.1761 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -30.176 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374662, "decimalLat": -31.910518 }, "geometry": { "type": "Point", "coordinates": [ 152.375, -31.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630819, "decimalLat": -34.420643 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.793845, "decimalLat": -32.697419 }, "geometry": { "type": "Point", "coordinates": [ 151.794, -32.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.982149, "decimalLat": -30.438 }, "geometry": { "type": "Point", "coordinates": [ 152.982, -30.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630573, "decimalLat": -34.420863 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606579, "decimalLat": -34.457674 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.992487, "decimalLat": -30.401081 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -30.401 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643764, "decimalLat": -34.395099 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522404, "decimalLat": -34.465751 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63133, "decimalLat": -34.393254 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517971, "decimalLat": -34.43757 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.214313, "decimalLat": -32.253276 }, "geometry": { "type": "Point", "coordinates": [ 152.214, -32.253 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.603034, "decimalLat": -30.493343 }, "geometry": { "type": "Point", "coordinates": [ 151.603, -30.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519975, "decimalLat": -34.454784 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523076, "decimalLat": -34.466233 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791592, "decimalLat": -34.195962 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.196 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621137, "decimalLat": -34.398718 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277434, "decimalLat": -28.679647 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614991, "decimalLat": -34.429413 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51868, "decimalLat": -34.437142 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.737532, "decimalLat": -30.892941 }, "geometry": { "type": "Point", "coordinates": [ 152.738, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109315, "decimalLat": -29.49046 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065329, "decimalLat": -32.699763 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.7 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.564568, "decimalLat": -32.005825 }, "geometry": { "type": "Point", "coordinates": [ 152.565, -32.006 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.182759, "decimalLat": -28.721695 }, "geometry": { "type": "Point", "coordinates": [ 153.183, -28.722 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.84661, "decimalLat": -34.03158 }, "geometry": { "type": "Point", "coordinates": [ 150.847, -34.032 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516222, "decimalLat": -34.449227 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52042, "decimalLat": -34.454099 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637877, "decimalLat": -34.485627 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555824, "decimalLat": -28.399102 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.283483, "decimalLat": -32.422788 }, "geometry": { "type": "Point", "coordinates": [ 152.283, -32.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.380487, "decimalLat": -31.924988 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316211, "decimalLat": -28.822511 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.00442, "decimalLat": -34.048601 }, "geometry": { "type": "Point", "coordinates": [ 151.004, -34.049 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.804436, "decimalLat": -31.469642 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094397, "decimalLat": -30.340176 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -30.34 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.766346, "decimalLat": -32.456841 }, "geometry": { "type": "Point", "coordinates": [ 151.766, -32.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922232, "decimalLat": -31.477446 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659334, "decimalLat": -34.45729 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785882, "decimalLat": -33.709225 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879356, "decimalLat": -31.44873 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987969, "decimalLat": -34.028286 }, "geometry": { "type": "Point", "coordinates": [ 150.988, -34.028 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.23157, "decimalLat": -34.26253 }, "geometry": { "type": "Point", "coordinates": [ 150.232, -34.263 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640864, "decimalLat": -34.393781 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.157596, "decimalLat": -28.517053 }, "geometry": { "type": "Point", "coordinates": [ 153.158, -28.517 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10379, "decimalLat": -29.485669 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785581, "decimalLat": -33.712767 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.577506, "decimalLat": -33.419281 }, "geometry": { "type": "Point", "coordinates": [ 149.578, -33.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914709, "decimalLat": -31.455657 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916405, "decimalLat": -31.481811 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875432, "decimalLat": -31.17135 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.171 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642088, "decimalLat": -34.397077 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.490227 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.309176, "decimalLat": -29.065392 }, "geometry": { "type": "Point", "coordinates": [ 150.309, -29.065 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605772, "decimalLat": -34.437536 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896191, "decimalLat": -31.444973 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52161, "decimalLat": -34.465744 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.36338, "decimalLat": -36.00758 }, "geometry": { "type": "Point", "coordinates": [ 149.363, -36.008 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629481, "decimalLat": -28.637406 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.991425, "decimalLat": -34.070244 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.967403, "decimalLat": -28.5216 }, "geometry": { "type": "Point", "coordinates": [ 152.967, -28.522 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.24139, "decimalLat": -30.027688 }, "geometry": { "type": "Point", "coordinates": [ 152.241, -30.028 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.04869, "decimalLat": -30.910394 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -30.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883229, "decimalLat": -31.428791 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.78529, "decimalLat": -32.681213 }, "geometry": { "type": "Point", "coordinates": [ 151.785, -32.681 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915116, "decimalLat": -29.590771 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -29.591 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604038, "decimalLat": -34.427008 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52058, "decimalLat": -34.45385 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52148, "decimalLat": -34.465732 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627027, "decimalLat": -34.389664 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597491, "decimalLat": -34.41662 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.832, "decimalLat": -31.26349 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -31.263 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518802, "decimalLat": -34.44735 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784794, "decimalLat": -33.713614 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903199, "decimalLat": -29.337796 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -29.338 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623638, "decimalLat": -34.38876 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626408, "decimalLat": -34.386154 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52937, "decimalLat": -34.47278 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517776, "decimalLat": -34.44046 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794392, "decimalLat": -31.643891 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.644 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.322894, "decimalLat": -36.299008 }, "geometry": { "type": "Point", "coordinates": [ 149.323, -36.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637772, "decimalLat": -34.488582 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520336, "decimalLat": -34.465763 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60072, "decimalLat": -28.67354 }, "geometry": { "type": "Point", "coordinates": [ 153.601, -28.674 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90797, "decimalLat": -31.435877 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990528, "decimalLat": -34.033164 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.033 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603468, "decimalLat": -34.435517 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606291, "decimalLat": -34.437646 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10944, "decimalLat": -29.490572 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603468, "decimalLat": -34.435517 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900474, "decimalLat": -31.473876 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.344106, "decimalLat": -28.749727 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.75 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608357, "decimalLat": -34.422432 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605564, "decimalLat": -34.433367 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630921, "decimalLat": -34.388486 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86554, "decimalLat": -29.64283 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -29.643 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.973154, "decimalLat": -32.180879 }, "geometry": { "type": "Point", "coordinates": [ 150.973, -32.181 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884625, "decimalLat": -31.430898 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.01112, "decimalLat": -36.547428 }, "geometry": { "type": "Point", "coordinates": [ 150.011, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638973, "decimalLat": -34.491536 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.087037, "decimalLat": -30.339419 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -30.339 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.058854, "decimalLat": -29.742759 }, "geometry": { "type": "Point", "coordinates": [ 151.059, -29.743 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.215502, "decimalLat": -30.082651 }, "geometry": { "type": "Point", "coordinates": [ 152.216, -30.083 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.750475, "decimalLat": -28.894914 }, "geometry": { "type": "Point", "coordinates": [ 152.75, -28.895 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.083321, "decimalLat": -29.074898 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -29.075 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427889, "decimalLat": -28.989853 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.99 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787183, "decimalLat": -31.638302 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921586, "decimalLat": -31.448897 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901105, "decimalLat": -30.500138 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -30.5 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.941743, "decimalLat": -30.494048 }, "geometry": { "type": "Point", "coordinates": [ 152.942, -30.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.058615, "decimalLat": -29.740307 }, "geometry": { "type": "Point", "coordinates": [ 151.059, -29.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645795, "decimalLat": -34.397888 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785963, "decimalLat": -33.708834 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906748, "decimalLat": -31.448736 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604381, "decimalLat": -34.440133 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.401764, "decimalLat": -31.920014 }, "geometry": { "type": "Point", "coordinates": [ 152.402, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10423, "decimalLat": -29.477301 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.309752, "decimalLat": -29.065603 }, "geometry": { "type": "Point", "coordinates": [ 150.31, -29.066 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640247, "decimalLat": -34.41574 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.416 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.492997, "decimalLat": -28.662895 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92086, "decimalLat": -30.50407 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -30.504 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103865, "decimalLat": -29.489615 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.489738, "decimalLat": -30.654909 }, "geometry": { "type": "Point", "coordinates": [ 151.49, -30.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631038, "decimalLat": -34.388191 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109396, "decimalLat": -29.490488 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793255, "decimalLat": -31.642289 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627821, "decimalLat": -34.390815 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103956, "decimalLat": -29.489559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49357, "decimalLat": -28.656766 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.657 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.729513, "decimalLat": -30.898293 }, "geometry": { "type": "Point", "coordinates": [ 152.73, -30.898 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515808, "decimalLat": -34.44481 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924755, "decimalLat": -31.443199 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609158, "decimalLat": -34.418742 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.703538, "decimalLat": -32.692892 }, "geometry": { "type": "Point", "coordinates": [ 151.704, -32.693 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985777, "decimalLat": -34.091422 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108226, "decimalLat": -29.490213 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072576, "decimalLat": -32.722656 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.077654, "decimalLat": -29.779602 }, "geometry": { "type": "Point", "coordinates": [ 151.078, -29.78 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60237, "decimalLat": -28.69032 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.519027, "decimalLat": -28.231036 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.231 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522442, "decimalLat": -34.456024 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513885, "decimalLat": -34.446204 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.063541, "decimalLat": -29.466279 }, "geometry": { "type": "Point", "coordinates": [ 153.064, -29.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104267, "decimalLat": -29.479939 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433, "decimalLat": -28.869424 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.97091, "decimalLat": -32.173952 }, "geometry": { "type": "Point", "coordinates": [ 151.971, -32.174 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063539, "decimalLat": -32.706539 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104149, "decimalLat": -29.478833 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298056, "decimalLat": -28.900407 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931388, "decimalLat": -36.568584 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516648, "decimalLat": -28.689112 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618573, "decimalLat": -34.435848 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091688, "decimalLat": -29.488051 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634877, "decimalLat": -34.485074 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629227, "decimalLat": -28.638043 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395049, "decimalLat": -28.959848 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101687, "decimalLat": -29.489185 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299324, "decimalLat": -28.888717 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632259, "decimalLat": -34.388458 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302529, "decimalLat": -28.848174 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516359, "decimalLat": -34.447526 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09592, "decimalLat": -29.484642 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51718, "decimalLat": -34.451428 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534713, "decimalLat": -34.462132 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926667, "decimalLat": -31.464081 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642165, "decimalLat": -34.396277 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063709, "decimalLat": -32.70658 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103715, "decimalLat": -29.485753 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.979774, "decimalLat": -29.037676 }, "geometry": { "type": "Point", "coordinates": [ 152.98, -29.038 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.800502, "decimalLat": -34.239726 }, "geometry": { "type": "Point", "coordinates": [ 150.801, -34.24 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081806, "decimalLat": -32.734519 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555987, "decimalLat": -28.398817 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.025636, "decimalLat": -32.127955 }, "geometry": { "type": "Point", "coordinates": [ 152.026, -32.128 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.231141, "decimalLat": -28.88938 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557263, "decimalLat": -28.397093 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904395, "decimalLat": -31.446329 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623927, "decimalLat": -33.450024 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -33.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610302, "decimalLat": -34.419071 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104219, "decimalLat": -29.479566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.938501, "decimalLat": -31.782566 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -31.783 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917667, "decimalLat": -31.439834 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627338, "decimalLat": -34.398307 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516839, "decimalLat": -34.447869 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520784, "decimalLat": -34.4657 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602476, "decimalLat": -34.439013 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616835, "decimalLat": -34.430378 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984352, "decimalLat": -34.093936 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.654866, "decimalLat": -32.685958 }, "geometry": { "type": "Point", "coordinates": [ 151.655, -32.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905244, "decimalLat": -31.465732 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37447, "decimalLat": -31.915642 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094826, "decimalLat": -29.488984 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.556893, "decimalLat": -34.363394 }, "geometry": { "type": "Point", "coordinates": [ 150.557, -34.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.520047, "decimalLat": -30.530395 }, "geometry": { "type": "Point", "coordinates": [ 151.52, -30.53 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318297, "decimalLat": -28.82451 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.281556, "decimalLat": -36.060556 }, "geometry": { "type": "Point", "coordinates": [ 149.282, -36.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604184, "decimalLat": -34.437893 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604092, "decimalLat": -34.438044 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.474401, "decimalLat": -31.939329 }, "geometry": { "type": "Point", "coordinates": [ 152.474, -31.939 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916488, "decimalLat": -31.444854 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335403, "decimalLat": -28.87187 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927951, "decimalLat": -31.464704 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785179, "decimalLat": -33.716422 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314617, "decimalLat": -28.83946 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.839 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.849854 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621169, "decimalLat": -34.398764 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90835, "decimalLat": -30.17426 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -30.174 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.101945, "decimalLat": -32.734865 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521455, "decimalLat": -34.452939 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.106794, "decimalLat": -33.777078 }, "geometry": { "type": "Point", "coordinates": [ 150.107, -33.777 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605738, "decimalLat": -34.437563 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.464582, "decimalLat": -28.715046 }, "geometry": { "type": "Point", "coordinates": [ 153.465, -28.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530584, "decimalLat": -34.470019 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609212, "decimalLat": -34.420655 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.8006, "decimalLat": -34.20234 }, "geometry": { "type": "Point", "coordinates": [ 150.801, -34.202 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.999829, "decimalLat": -34.077324 }, "geometry": { "type": "Point", "coordinates": [ 151.0, -34.077 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.42258, "decimalLat": -29.019311 }, "geometry": { "type": "Point", "coordinates": [ 153.423, -29.019 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09172, "decimalLat": -29.487906 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518438, "decimalLat": -34.444936 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518539, "decimalLat": -34.4397 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924805, "decimalLat": -31.453606 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.826093, "decimalLat": -30.286641 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -30.287 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627929, "decimalLat": -34.420496 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808267, "decimalLat": -34.098084 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520401, "decimalLat": -34.465764 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.304081, "decimalLat": -35.926841 }, "geometry": { "type": "Point", "coordinates": [ 149.304, -35.927 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.995573, "decimalLat": -36.572611 }, "geometry": { "type": "Point", "coordinates": [ 149.996, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631488, "decimalLat": -34.388046 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.012955, "decimalLat": -28.651425 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921997, "decimalLat": -31.44624 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.362191, "decimalLat": -28.649451 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -28.649 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.398635, "decimalLat": -33.489267 }, "geometry": { "type": "Point", "coordinates": [ 149.399, -33.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555983, "decimalLat": -28.398753 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615459, "decimalLat": -34.435535 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.298856, "decimalLat": -31.178479 }, "geometry": { "type": "Point", "coordinates": [ 150.299, -31.178 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78265, "decimalLat": -33.71856 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.881683, "decimalLat": -34.068165 }, "geometry": { "type": "Point", "coordinates": [ 150.882, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522325, "decimalLat": -34.465867 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608247, "decimalLat": -34.43506 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108135, "decimalLat": -29.490227 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928754, "decimalLat": -31.459087 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618222, "decimalLat": -34.435165 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528156, "decimalLat": -34.456375 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637279, "decimalLat": -34.423797 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076235, "decimalLat": -32.720775 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.246369, "decimalLat": -29.538473 }, "geometry": { "type": "Point", "coordinates": [ 152.246, -29.538 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889845, "decimalLat": -30.468302 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -30.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396151, "decimalLat": -28.559187 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.559 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555861, "decimalLat": -28.399267 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063352, "decimalLat": -32.706528 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.179784, "decimalLat": -30.098238 }, "geometry": { "type": "Point", "coordinates": [ 152.18, -30.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324884, "decimalLat": -36.293878 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.294 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607343, "decimalLat": -34.509694 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39436, "decimalLat": -28.275818 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5159, "decimalLat": -34.450528 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104348, "decimalLat": -29.477133 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52243, "decimalLat": -34.465247 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824684, "decimalLat": -29.504028 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.504 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624238, "decimalLat": -34.387924 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785651, "decimalLat": -31.630013 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637013, "decimalLat": -34.422448 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.913767, "decimalLat": -29.673881 }, "geometry": { "type": "Point", "coordinates": [ 150.914, -29.674 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628855, "decimalLat": -34.389609 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.986354, "decimalLat": -29.030776 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.075063, "decimalLat": -28.555784 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.660851, "decimalLat": -32.686041 }, "geometry": { "type": "Point", "coordinates": [ 151.661, -32.686 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.852678, "decimalLat": -31.434839 }, "geometry": { "type": "Point", "coordinates": [ 152.853, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922651, "decimalLat": -31.459951 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842938, "decimalLat": -34.081916 }, "geometry": { "type": "Point", "coordinates": [ 150.843, -34.082 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395229, "decimalLat": -29.049606 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.05 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626299, "decimalLat": -34.421195 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.658745, "decimalLat": -32.685932 }, "geometry": { "type": "Point", "coordinates": [ 151.659, -32.686 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823724, "decimalLat": -31.4412 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.739169, "decimalLat": -32.662223 }, "geometry": { "type": "Point", "coordinates": [ 151.739, -32.662 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.21745, "decimalLat": -32.23679 }, "geometry": { "type": "Point", "coordinates": [ 152.217, -32.237 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110619, "decimalLat": -29.489577 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.174797, "decimalLat": -30.099916 }, "geometry": { "type": "Point", "coordinates": [ 152.175, -30.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864165, "decimalLat": -31.291869 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.292 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.54053, "decimalLat": -34.435628 }, "geometry": { "type": "Point", "coordinates": [ 150.541, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.99159, "decimalLat": -32.72107 }, "geometry": { "type": "Point", "coordinates": [ 151.992, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.379478, "decimalLat": -29.087018 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -29.087 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.521268, "decimalLat": -28.656899 }, "geometry": { "type": "Point", "coordinates": [ 153.521, -28.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609379, "decimalLat": -34.418999 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319838, "decimalLat": -28.844336 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784171, "decimalLat": -33.717002 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514552, "decimalLat": -34.444992 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918363, "decimalLat": -31.453534 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921014, "decimalLat": -31.438575 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556633, "decimalLat": -28.390147 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091725, "decimalLat": -29.48785 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643277, "decimalLat": -34.395396 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867632, "decimalLat": -29.668422 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.668 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793715, "decimalLat": -30.223959 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -30.224 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895916, "decimalLat": -31.435778 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615809, "decimalLat": -34.430863 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897939, "decimalLat": -31.435933 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90508, "decimalLat": -31.434908 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610638, "decimalLat": -34.454635 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627928, "decimalLat": -34.420911 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893632, "decimalLat": -31.437597 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.006945, "decimalLat": -30.420972 }, "geometry": { "type": "Point", "coordinates": [ 153.007, -30.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911639, "decimalLat": -31.476786 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.726479, "decimalLat": -34.319081 }, "geometry": { "type": "Point", "coordinates": [ 150.726, -34.319 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917338, "decimalLat": -31.469322 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06994, "decimalLat": -35.09674 }, "geometry": { "type": "Point", "coordinates": [ 150.07, -35.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824631, "decimalLat": -29.505224 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.860305, "decimalLat": -34.038028 }, "geometry": { "type": "Point", "coordinates": [ 150.86, -34.038 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556227, "decimalLat": -28.398625 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378334, "decimalLat": -31.920019 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607014, "decimalLat": -34.437488 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888402, "decimalLat": -31.438679 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878593, "decimalLat": -29.680128 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.68 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517284, "decimalLat": -28.668167 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.668 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917656, "decimalLat": -31.474609 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526591, "decimalLat": -34.448184 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597752, "decimalLat": -34.428409 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.610809, "decimalLat": -33.002863 }, "geometry": { "type": "Point", "coordinates": [ 151.611, -33.003 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.709352, "decimalLat": -31.78743 }, "geometry": { "type": "Point", "coordinates": [ 152.709, -31.787 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864189, "decimalLat": -29.628478 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -29.628 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.101819, "decimalLat": -29.766384 }, "geometry": { "type": "Point", "coordinates": [ 151.102, -29.766 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.937204, "decimalLat": -28.838384 }, "geometry": { "type": "Point", "coordinates": [ 152.937, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602108, "decimalLat": -34.42716 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495239, "decimalLat": -28.694401 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.411871, "decimalLat": -31.90711 }, "geometry": { "type": "Point", "coordinates": [ 152.412, -31.907 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635869, "decimalLat": -34.392747 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627398, "decimalLat": -34.421189 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11013, "decimalLat": -29.490269 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641709, "decimalLat": -34.395844 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609211, "decimalLat": -34.419167 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.353525, "decimalLat": -31.92625 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278132, "decimalLat": -28.831137 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.014036, "decimalLat": -32.296196 }, "geometry": { "type": "Point", "coordinates": [ 152.014, -32.296 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905805, "decimalLat": -31.436768 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793741, "decimalLat": -31.641784 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.96533, "decimalLat": -30.899559 }, "geometry": { "type": "Point", "coordinates": [ 151.965, -30.9 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513747, "decimalLat": -34.446427 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516658, "decimalLat": -34.446982 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881865, "decimalLat": -31.428381 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.428 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 146.578454, "decimalLat": -34.768196 }, "geometry": { "type": "Point", "coordinates": [ 146.578, -34.768 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624799, "decimalLat": -34.399619 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642688, "decimalLat": -34.404356 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.404 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.237072, "decimalLat": -31.734425 }, "geometry": { "type": "Point", "coordinates": [ 152.237, -31.734 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.458698, "decimalLat": -28.951435 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.951 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63315, "decimalLat": -34.418208 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102889, "decimalLat": -29.489391 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.879362, "decimalLat": -33.252758 }, "geometry": { "type": "Point", "coordinates": [ 150.879, -33.253 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061988, "decimalLat": -32.711027 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.953158, "decimalLat": -30.426701 }, "geometry": { "type": "Point", "coordinates": [ 152.953, -30.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.861555, "decimalLat": -31.281234 }, "geometry": { "type": "Point", "coordinates": [ 152.862, -31.281 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.12006, "decimalLat": -29.489671 }, "geometry": { "type": "Point", "coordinates": [ 153.12, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62686, "decimalLat": -34.389408 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630452, "decimalLat": -34.420915 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517521, "decimalLat": -34.446143 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913802, "decimalLat": -31.446445 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19096, "decimalLat": -32.219628 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -32.22 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108038, "decimalLat": -29.490325 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.088434, "decimalLat": -32.728523 }, "geometry": { "type": "Point", "coordinates": [ 152.088, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.732187, "decimalLat": -34.280016 }, "geometry": { "type": "Point", "coordinates": [ 150.732, -34.28 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.94103, "decimalLat": -30.39318 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -30.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.831824, "decimalLat": -29.655536 }, "geometry": { "type": "Point", "coordinates": [ 150.832, -29.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603272, "decimalLat": -34.439335 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646136, "decimalLat": -34.403584 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.404 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631928, "decimalLat": -34.418338 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302183, "decimalLat": -28.88864 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790713, "decimalLat": -34.15774 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.158 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103559, "decimalLat": -29.485482 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01055, "decimalLat": -30.364138 }, "geometry": { "type": "Point", "coordinates": [ 153.011, -30.364 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.196402, "decimalLat": -32.225666 }, "geometry": { "type": "Point", "coordinates": [ 152.196, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60983, "decimalLat": -34.455124 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615895, "decimalLat": -34.43512 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900233, "decimalLat": -31.434776 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.471272, "decimalLat": -28.35123 }, "geometry": { "type": "Point", "coordinates": [ 153.471, -28.351 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919363, "decimalLat": -31.481262 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.812061, "decimalLat": -31.995876 }, "geometry": { "type": "Point", "coordinates": [ 151.812, -31.996 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104128, "decimalLat": -29.485113 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.196402, "decimalLat": -32.225666 }, "geometry": { "type": "Point", "coordinates": [ 152.196, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103736, "decimalLat": -29.485618 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.213217, "decimalLat": -29.930383 }, "geometry": { "type": "Point", "coordinates": [ 152.213, -29.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607486, "decimalLat": -34.42283 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093531, "decimalLat": -29.492883 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.196402, "decimalLat": -32.225666 }, "geometry": { "type": "Point", "coordinates": [ 152.196, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627355, "decimalLat": -34.421188 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824652, "decimalLat": -29.505999 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.506 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077046, "decimalLat": -32.721978 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522413, "decimalLat": -34.464354 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.492978, "decimalLat": -28.764072 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -28.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633208, "decimalLat": -34.41848 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604725, "decimalLat": -34.42731 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.007338, "decimalLat": -36.56122 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.004251, "decimalLat": -34.048655 }, "geometry": { "type": "Point", "coordinates": [ 151.004, -34.049 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868705, "decimalLat": -29.667359 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.482228, "decimalLat": -30.644608 }, "geometry": { "type": "Point", "coordinates": [ 151.482, -30.645 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785099, "decimalLat": -31.629803 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906313, "decimalLat": -30.240447 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -30.24 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.609738, "decimalLat": -30.345472 }, "geometry": { "type": "Point", "coordinates": [ 152.61, -30.345 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.485104 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603029, "decimalLat": -34.435661 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094037, "decimalLat": -29.488788 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605068, "decimalLat": -34.450387 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838978, "decimalLat": -34.053416 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626298, "decimalLat": -34.421222 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379145, "decimalLat": -31.918994 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.079544, "decimalLat": -30.356281 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -30.356 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785123, "decimalLat": -33.709466 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.7936, "decimalLat": -30.219284 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -30.219 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.434831, "decimalLat": -31.778126 }, "geometry": { "type": "Point", "coordinates": [ 152.435, -31.778 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925763, "decimalLat": -31.447517 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107979, "decimalLat": -29.490213 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625292, "decimalLat": -34.384464 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065577, "decimalLat": -32.714028 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.893243, "decimalLat": -33.999472 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62736, "decimalLat": -34.420233 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315409, "decimalLat": -28.82537 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63063, "decimalLat": -34.420783 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313992, "decimalLat": -28.81222 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.812 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785143, "decimalLat": -33.716799 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415619, "decimalLat": -31.933106 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.541578, "decimalLat": -32.931347 }, "geometry": { "type": "Point", "coordinates": [ 151.542, -32.931 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615814, "decimalLat": -34.436416 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927051, "decimalLat": -31.457953 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894005, "decimalLat": -31.448512 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893086, "decimalLat": -31.454902 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524189, "decimalLat": -34.464309 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921825, "decimalLat": -31.469094 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103768, "decimalLat": -29.485702 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556801, "decimalLat": -28.408402 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639002, "decimalLat": -34.491672 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.999987, "decimalLat": -30.422349 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -30.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529286, "decimalLat": -34.458669 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5979, "decimalLat": -34.425923 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786062, "decimalLat": -33.709574 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096064, "decimalLat": -28.435507 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -28.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.997489, "decimalLat": -30.406531 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -30.407 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516497, "decimalLat": -34.440307 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399632, "decimalLat": -28.327546 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910165, "decimalLat": -31.428457 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.038528, "decimalLat": -30.895349 }, "geometry": { "type": "Point", "coordinates": [ 153.039, -30.895 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.856541, "decimalLat": -31.447899 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092189, "decimalLat": -29.48809 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631192, "decimalLat": -34.387355 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637269, "decimalLat": -34.423779 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644252, "decimalLat": -34.393188 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873807, "decimalLat": -29.660332 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -29.66 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.230507, "decimalLat": -28.546386 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -28.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631517, "decimalLat": -34.387795 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321966, "decimalLat": -28.823907 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520951, "decimalLat": -34.435394 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63852, "decimalLat": -34.490634 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895156, "decimalLat": -31.43051 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894671, "decimalLat": -31.448143 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642741, "decimalLat": -34.395098 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334493, "decimalLat": -28.813462 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.813 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51433, "decimalLat": -34.44734 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785067, "decimalLat": -31.634123 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.634 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110468, "decimalLat": -29.490138 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611818, "decimalLat": -34.430388 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617169, "decimalLat": -34.434297 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085862, "decimalLat": -32.728372 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.940231, "decimalLat": -32.772728 }, "geometry": { "type": "Point", "coordinates": [ 151.94, -32.773 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.478858, "decimalLat": -33.003477 }, "geometry": { "type": "Point", "coordinates": [ 151.479, -33.003 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523198, "decimalLat": -34.464298 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.356911, "decimalLat": -36.019159 }, "geometry": { "type": "Point", "coordinates": [ 149.357, -36.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557433, "decimalLat": -28.394633 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902274, "decimalLat": -31.442198 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32363, "decimalLat": -28.880196 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.148227, "decimalLat": -28.666449 }, "geometry": { "type": "Point", "coordinates": [ 153.148, -28.666 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624418, "decimalLat": -34.38809 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394474, "decimalLat": -28.288414 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607389, "decimalLat": -34.422431 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616406, "decimalLat": -34.429369 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520297, "decimalLat": -34.44683 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.075214, "decimalLat": -32.723156 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897243, "decimalLat": -31.451701 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.659873, "decimalLat": -32.659995 }, "geometry": { "type": "Point", "coordinates": [ 151.66, -32.66 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.829754, "decimalLat": -34.726587 }, "geometry": { "type": "Point", "coordinates": [ 149.83, -34.727 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107985, "decimalLat": -29.490483 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635315, "decimalLat": -34.488066 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.162237, "decimalLat": -32.71616 }, "geometry": { "type": "Point", "coordinates": [ 152.162, -32.716 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833865, "decimalLat": -34.083828 }, "geometry": { "type": "Point", "coordinates": [ 150.834, -34.084 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62698, "decimalLat": -34.420983 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637346, "decimalLat": -34.423744 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622486, "decimalLat": -34.384103 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.23152, "decimalLat": -34.263 }, "geometry": { "type": "Point", "coordinates": [ 150.232, -34.263 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10792, "decimalLat": -29.490119 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615857, "decimalLat": -34.436453 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03683, "decimalLat": -32.73177 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920796, "decimalLat": -30.505864 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299324, "decimalLat": -28.888717 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494964, "decimalLat": -28.692221 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516043, "decimalLat": -34.443886 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623947, "decimalLat": -34.388603 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523366, "decimalLat": -34.459379 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063593, "decimalLat": -32.706529 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.454265, "decimalLat": -31.936428 }, "geometry": { "type": "Point", "coordinates": [ 152.454, -31.936 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.499597, "decimalLat": -31.671361 }, "geometry": { "type": "Point", "coordinates": [ 152.5, -31.671 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081731, "decimalLat": -32.730732 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.908678, "decimalLat": -33.997712 }, "geometry": { "type": "Point", "coordinates": [ 150.909, -33.998 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615566, "decimalLat": -34.432905 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615664, "decimalLat": -34.435981 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636173, "decimalLat": -34.485811 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52116, "decimalLat": -34.466249 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.101706, "decimalLat": -32.733449 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911386, "decimalLat": -31.446736 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630154, "decimalLat": -34.420314 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104085, "decimalLat": -29.484259 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.925808, "decimalLat": -29.793058 }, "geometry": { "type": "Point", "coordinates": [ 150.926, -29.793 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616367, "decimalLat": -34.434588 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415704, "decimalLat": -31.933484 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597821, "decimalLat": -33.690824 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -33.691 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374449, "decimalLat": -31.915668 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091484, "decimalLat": -29.487745 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522096, "decimalLat": -34.46588 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.456299, "decimalLat": -31.937163 }, "geometry": { "type": "Point", "coordinates": [ 152.456, -31.937 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517167, "decimalLat": -34.436426 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104171, "decimalLat": -29.482143 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604864, "decimalLat": -34.427034 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600372, "decimalLat": -34.428099 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303135, "decimalLat": -28.824882 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.087187, "decimalLat": -30.340482 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -30.34 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514558, "decimalLat": -34.447354 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513152, "decimalLat": -34.445964 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793337, "decimalLat": -31.642686 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.643 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56563, "decimalLat": -28.38755 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597812, "decimalLat": -34.427851 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925261, "decimalLat": -31.449792 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.358638, "decimalLat": -28.681672 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -28.682 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603328, "decimalLat": -34.436993 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637278, "decimalLat": -34.423824 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.685616, "decimalLat": -34.265974 }, "geometry": { "type": "Point", "coordinates": [ 150.686, -34.266 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818069, "decimalLat": -31.650872 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526019, "decimalLat": -34.464625 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03724, "decimalLat": -32.729459 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.087723, "decimalLat": -30.255061 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -30.255 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.718687, "decimalLat": -32.717229 }, "geometry": { "type": "Point", "coordinates": [ 151.719, -32.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785414, "decimalLat": -31.632782 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616063, "decimalLat": -34.43533 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630932, "decimalLat": -34.481256 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064528, "decimalLat": -32.709669 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6312, "decimalLat": -34.387446 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785204, "decimalLat": -33.70738 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526112, "decimalLat": -34.458154 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614868, "decimalLat": -34.432584 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.551531, "decimalLat": -28.387951 }, "geometry": { "type": "Point", "coordinates": [ 153.552, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.471246, "decimalLat": -34.491282 }, "geometry": { "type": "Point", "coordinates": [ 150.471, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.607443, "decimalLat": -30.34163 }, "geometry": { "type": "Point", "coordinates": [ 152.607, -30.342 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905944, "decimalLat": -31.479611 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.253351, "decimalLat": -36.196045 }, "geometry": { "type": "Point", "coordinates": [ 149.253, -36.196 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62736, "decimalLat": -34.420233 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515457, "decimalLat": -34.447129 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.802933, "decimalLat": -33.487342 }, "geometry": { "type": "Point", "coordinates": [ 150.803, -33.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926628, "decimalLat": -31.456781 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300422, "decimalLat": -31.948252 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.97648, "decimalLat": -29.732652 }, "geometry": { "type": "Point", "coordinates": [ 150.976, -29.733 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903278, "decimalLat": -31.441582 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609144, "decimalLat": -34.418859 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.116051, "decimalLat": -28.561518 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -28.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927198, "decimalLat": -31.458124 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.97014, "decimalLat": -36.652965 }, "geometry": { "type": "Point", "coordinates": [ 149.97, -36.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.568084, "decimalLat": -28.321344 }, "geometry": { "type": "Point", "coordinates": [ 153.568, -28.321 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.965047, "decimalLat": -30.648712 }, "geometry": { "type": "Point", "coordinates": [ 152.965, -30.649 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.647622, "decimalLat": -34.452664 }, "geometry": { "type": "Point", "coordinates": [ 150.648, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315839, "decimalLat": -28.83683 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624012, "decimalLat": -34.388587 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301673, "decimalLat": -28.824943 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619264, "decimalLat": -34.400719 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628057, "decimalLat": -34.420977 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517019, "decimalLat": -34.446205 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786003, "decimalLat": -33.709171 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.84496, "decimalLat": -34.061857 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -34.062 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093313, "decimalLat": -29.488532 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555001, "decimalLat": -28.586223 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78568, "decimalLat": -31.629506 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.757188, "decimalLat": -31.628756 }, "geometry": { "type": "Point", "coordinates": [ 152.757, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065329, "decimalLat": -32.711305 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614549, "decimalLat": -34.436906 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520282, "decimalLat": -34.465744 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.085138, "decimalLat": -29.728742 }, "geometry": { "type": "Point", "coordinates": [ 151.085, -29.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60523, "decimalLat": -34.432504 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605728, "decimalLat": -34.427636 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520644, "decimalLat": -34.465643 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524093, "decimalLat": -34.463135 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.978709, "decimalLat": -36.441024 }, "geometry": { "type": "Point", "coordinates": [ 149.979, -36.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104782, "decimalLat": -29.489652 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.968374, "decimalLat": -28.944071 }, "geometry": { "type": "Point", "coordinates": [ 152.968, -28.944 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108151, "decimalLat": -29.490418 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108194, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523957, "decimalLat": -34.46626 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627316, "decimalLat": -34.42025 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395247, "decimalLat": -28.959919 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786039, "decimalLat": -33.712369 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.422453, "decimalLat": -28.982434 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.982 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645595, "decimalLat": -34.39069 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915236, "decimalLat": -31.451529 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63908, "decimalLat": -34.418954 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.075117, "decimalLat": -29.746371 }, "geometry": { "type": "Point", "coordinates": [ 151.075, -29.746 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900988, "decimalLat": -31.473865 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317762, "decimalLat": -28.823419 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103264, "decimalLat": -29.48657 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521088, "decimalLat": -34.441816 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614437, "decimalLat": -34.42897 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303174, "decimalLat": -28.827996 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529735, "decimalLat": -34.467793 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794266, "decimalLat": -34.225876 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.226 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298636, "decimalLat": -28.609403 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.609 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520475, "decimalLat": -34.454064 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613605, "decimalLat": -34.431072 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516068, "decimalLat": -34.459177 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.660049, "decimalLat": -31.472333 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.764507, "decimalLat": -33.152864 }, "geometry": { "type": "Point", "coordinates": [ 149.765, -33.153 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.323416, "decimalLat": -33.053312 }, "geometry": { "type": "Point", "coordinates": [ 151.323, -33.053 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.958341, "decimalLat": -32.230006 }, "geometry": { "type": "Point", "coordinates": [ 150.958, -32.23 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610246, "decimalLat": -34.419124 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893921, "decimalLat": -31.461626 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867921, "decimalLat": -31.475477 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10181, "decimalLat": -29.489153 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987244, "decimalLat": -34.093731 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785009, "decimalLat": -33.718487 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.566209, "decimalLat": -33.642472 }, "geometry": { "type": "Point", "coordinates": [ 150.566, -33.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.731978, "decimalLat": -31.228903 }, "geometry": { "type": "Point", "coordinates": [ 152.732, -31.229 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.187255, "decimalLat": -31.952332 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -31.952 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06743, "decimalLat": -34.75049 }, "geometry": { "type": "Point", "coordinates": [ 150.067, -34.75 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.512471, "decimalLat": -30.655961 }, "geometry": { "type": "Point", "coordinates": [ 151.512, -30.656 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797612, "decimalLat": -31.125972 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515995, "decimalLat": -34.448808 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52315, "decimalLat": -34.464468 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.085186, "decimalLat": -30.34407 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -30.344 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092484, "decimalLat": -29.38284 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602433, "decimalLat": -34.419963 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614469, "decimalLat": -34.43895 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.613317, "decimalLat": -30.345347 }, "geometry": { "type": "Point", "coordinates": [ 152.613, -30.345 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823003, "decimalLat": -30.152457 }, "geometry": { "type": "Point", "coordinates": [ 152.823, -30.152 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641435, "decimalLat": -34.393585 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615863, "decimalLat": -34.438545 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637279, "decimalLat": -34.423806 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323778, "decimalLat": -28.825083 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910083, "decimalLat": -30.505415 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -30.505 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.777767, "decimalLat": -30.902372 }, "geometry": { "type": "Point", "coordinates": [ 152.778, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915824, "decimalLat": -31.444224 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.0569, "decimalLat": -34.90278 }, "geometry": { "type": "Point", "coordinates": [ 150.057, -34.903 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808578, "decimalLat": -34.098209 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.499517, "decimalLat": -28.673043 }, "geometry": { "type": "Point", "coordinates": [ 153.5, -28.673 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093372, "decimalLat": -29.486257 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637311, "decimalLat": -34.423815 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.186691, "decimalLat": -32.715703 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -32.716 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107899, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092133, "decimalLat": -29.488237 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513049, "decimalLat": -34.447224 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.371779, "decimalLat": -31.922032 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.922 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374985, "decimalLat": -31.922267 }, "geometry": { "type": "Point", "coordinates": [ 152.375, -31.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315839, "decimalLat": -28.83683 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62738, "decimalLat": -34.420278 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515349, "decimalLat": -34.460316 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519657, "decimalLat": -34.455229 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618535, "decimalLat": -34.399208 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.453368, "decimalLat": -28.816083 }, "geometry": { "type": "Point", "coordinates": [ 153.453, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.492103, "decimalLat": -28.682564 }, "geometry": { "type": "Point", "coordinates": [ 153.492, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.776014, "decimalLat": -31.709938 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -31.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522648, "decimalLat": -34.46673 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851474, "decimalLat": -31.554697 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -31.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514942, "decimalLat": -34.446505 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604815, "decimalLat": -34.437121 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104171, "decimalLat": -29.485202 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.880379, "decimalLat": -34.400666 }, "geometry": { "type": "Point", "coordinates": [ 150.88, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616301, "decimalLat": -34.435768 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.490189 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.656159, "decimalLat": -32.683146 }, "geometry": { "type": "Point", "coordinates": [ 151.656, -32.683 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.215295, "decimalLat": -28.849597 }, "geometry": { "type": "Point", "coordinates": [ 153.215, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955028, "decimalLat": -36.650407 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.65 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6887, "decimalLat": -32.06324 }, "geometry": { "type": "Point", "coordinates": [ 151.689, -32.063 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101177, "decimalLat": -29.490044 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514125, "decimalLat": -34.45499 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632109, "decimalLat": -34.394559 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109465, "decimalLat": -29.490488 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521547, "decimalLat": -34.465671 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915625, "decimalLat": -31.45112 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092111, "decimalLat": -29.488027 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.168357, "decimalLat": -29.442125 }, "geometry": { "type": "Point", "coordinates": [ 153.168, -29.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915605, "decimalLat": -31.48443 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87689, "decimalLat": -30.54187 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -30.542 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071899, "decimalLat": -30.88453 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.684291, "decimalLat": -34.357578 }, "geometry": { "type": "Point", "coordinates": [ 150.684, -34.358 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316082, "decimalLat": -28.947668 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.948 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630818, "decimalLat": -34.420661 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.973831, "decimalLat": -34.124253 }, "geometry": { "type": "Point", "coordinates": [ 150.974, -34.124 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.952743, "decimalLat": -29.233564 }, "geometry": { "type": "Point", "coordinates": [ 152.953, -29.234 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107464, "decimalLat": -29.490142 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.282968, "decimalLat": -28.578634 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520387, "decimalLat": -34.465872 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.626, "decimalLat": -30.48 }, "geometry": { "type": "Point", "coordinates": [ 151.626, -30.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609468, "decimalLat": -28.661326 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.940468, "decimalLat": -29.702491 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -29.702 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.055727, "decimalLat": -33.771587 }, "geometry": { "type": "Point", "coordinates": [ 150.056, -33.772 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03975, "decimalLat": -32.73196 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 146.586232, "decimalLat": -34.76658 }, "geometry": { "type": "Point", "coordinates": [ 146.586, -34.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562124, "decimalLat": -28.392174 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.392 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124322, "decimalLat": -30.295796 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518879, "decimalLat": -34.453581 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989923, "decimalLat": -34.018852 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51323, "decimalLat": -34.447724 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.030808, "decimalLat": -28.849862 }, "geometry": { "type": "Point", "coordinates": [ 153.031, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.056884, "decimalLat": -32.739674 }, "geometry": { "type": "Point", "coordinates": [ 152.057, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.74634, "decimalLat": -31.194077 }, "geometry": { "type": "Point", "coordinates": [ 152.746, -31.194 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318614, "decimalLat": -28.912489 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.912 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.599014, "decimalLat": -31.306479 }, "geometry": { "type": "Point", "coordinates": [ 152.599, -31.306 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823508, "decimalLat": -31.131957 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -31.132 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79342, "decimalLat": -31.642547 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.643 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.729939, "decimalLat": -31.627153 }, "geometry": { "type": "Point", "coordinates": [ 150.73, -31.627 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926447, "decimalLat": -31.454452 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520052, "decimalLat": -34.45475 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.293773, "decimalLat": -31.634319 }, "geometry": { "type": "Point", "coordinates": [ 152.294, -31.634 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794428, "decimalLat": -31.128656 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.129 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925048, "decimalLat": -31.476528 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.892923, "decimalLat": -33.969092 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.969 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922476, "decimalLat": -31.481222 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.620511, "decimalLat": -32.557341 }, "geometry": { "type": "Point", "coordinates": [ 151.621, -32.557 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103908, "decimalLat": -29.489596 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515442, "decimalLat": -34.443586 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.384301, "decimalLat": -31.92842 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790596, "decimalLat": -34.196137 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.196 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.17121, "decimalLat": -29.436168 }, "geometry": { "type": "Point", "coordinates": [ 153.171, -29.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374047, "decimalLat": -31.913202 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515855, "decimalLat": -34.441412 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105686, "decimalLat": -32.723234 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.646791, "decimalLat": -28.747562 }, "geometry": { "type": "Point", "coordinates": [ 152.647, -28.748 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.021033, "decimalLat": -30.26074 }, "geometry": { "type": "Point", "coordinates": [ 153.021, -30.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.839737, "decimalLat": -34.093868 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639499, "decimalLat": -34.392808 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079648, "decimalLat": -32.727053 }, "geometry": { "type": "Point", "coordinates": [ 152.08, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610241, "decimalLat": -34.429609 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63151, "decimalLat": -34.388407 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923246, "decimalLat": -31.450735 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610335, "decimalLat": -34.419063 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00169, "decimalLat": -32.231456 }, "geometry": { "type": "Point", "coordinates": [ 152.002, -32.231 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611755, "decimalLat": -34.419631 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272402, "decimalLat": -28.815732 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618937, "decimalLat": -34.439479 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639882, "decimalLat": -34.4001 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513094, "decimalLat": -34.44718 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110334, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104187, "decimalLat": -29.482069 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522611, "decimalLat": -34.459147 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413117, "decimalLat": -31.940196 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06438, "decimalLat": -33.774886 }, "geometry": { "type": "Point", "coordinates": [ 150.064, -33.775 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797815, "decimalLat": -31.124186 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.124 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313836, "decimalLat": -28.838902 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.839 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51628, "decimalLat": -34.449093 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523912, "decimalLat": -34.463735 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402031, "decimalLat": -28.260886 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616185, "decimalLat": -34.434494 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311493, "decimalLat": -28.821398 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529278, "decimalLat": -34.467783 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637361, "decimalLat": -34.420517 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.775979, "decimalLat": -30.199998 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -30.2 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.862191, "decimalLat": -34.044212 }, "geometry": { "type": "Point", "coordinates": [ 150.862, -34.044 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517321, "decimalLat": -34.446292 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893648, "decimalLat": -31.459989 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103768, "decimalLat": -29.485748 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607942, "decimalLat": -34.422108 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.361836, "decimalLat": -36.183858 }, "geometry": { "type": "Point", "coordinates": [ 149.362, -36.184 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925876, "decimalLat": -31.452772 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89608, "decimalLat": -31.440603 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518194, "decimalLat": -34.446571 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596135, "decimalLat": -34.411554 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.567429, "decimalLat": -28.380983 }, "geometry": { "type": "Point", "coordinates": [ 153.567, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949786, "decimalLat": -36.632867 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.633 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.544398, "decimalLat": -32.059088 }, "geometry": { "type": "Point", "coordinates": [ 152.544, -32.059 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553643, "decimalLat": -28.582782 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.583 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.311645, "decimalLat": -29.02257 }, "geometry": { "type": "Point", "coordinates": [ 152.312, -29.023 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627352, "decimalLat": -34.421288 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637421, "decimalLat": -34.421852 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514355, "decimalLat": -34.446493 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63969, "decimalLat": -34.399195 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604701, "decimalLat": -34.427391 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.615722, "decimalLat": -32.881863 }, "geometry": { "type": "Point", "coordinates": [ 151.616, -32.882 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.153574, "decimalLat": -28.579378 }, "geometry": { "type": "Point", "coordinates": [ 153.154, -28.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603789, "decimalLat": -34.436866 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565361, "decimalLat": -28.39093 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891742, "decimalLat": -31.457462 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.781694, "decimalLat": -34.098156 }, "geometry": { "type": "Point", "coordinates": [ 150.782, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.841769, "decimalLat": -34.061656 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.062 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525472, "decimalLat": -34.459908 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454341, "decimalLat": -28.653446 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633788, "decimalLat": -34.39249 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627691, "decimalLat": -34.420834 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521848, "decimalLat": -34.465785 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638644, "decimalLat": -34.490862 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272886, "decimalLat": -28.821934 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627196, "decimalLat": -34.389469 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637375, "decimalLat": -34.423862 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.143651, "decimalLat": -35.966472 }, "geometry": { "type": "Point", "coordinates": [ 149.144, -35.966 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277461, "decimalLat": -28.67595 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395163, "decimalLat": -29.096772 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.097 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.340906, "decimalLat": -28.812375 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -28.812 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532001, "decimalLat": -34.460716 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602718, "decimalLat": -34.435511 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630741, "decimalLat": -34.389862 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.106606, "decimalLat": -29.366879 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.367 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906995, "decimalLat": -31.450079 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637356, "decimalLat": -34.423771 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6342, "decimalLat": -34.488612 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.493069, "decimalLat": -32.987808 }, "geometry": { "type": "Point", "coordinates": [ 151.493, -32.988 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63908, "decimalLat": -34.493179 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61736, "decimalLat": -34.439854 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601801, "decimalLat": -34.45081 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632982, "decimalLat": -34.392926 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302591, "decimalLat": -28.822599 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627106, "decimalLat": -34.389566 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61111, "decimalLat": -34.43234 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519773, "decimalLat": -34.463074 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534744, "decimalLat": -34.462178 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798733, "decimalLat": -31.151316 }, "geometry": { "type": "Point", "coordinates": [ 152.799, -31.151 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916764, "decimalLat": -31.485441 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.58678, "decimalLat": -33.27397 }, "geometry": { "type": "Point", "coordinates": [ 150.587, -33.274 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.380013, "decimalLat": -28.724632 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -28.725 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.775119, "decimalLat": -31.691594 }, "geometry": { "type": "Point", "coordinates": [ 152.775, -31.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605976, "decimalLat": -34.432302 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293151, "decimalLat": -28.864601 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893707, "decimalLat": -31.44455 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104299, "decimalLat": -29.480056 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90421, "decimalLat": -31.439759 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637394, "decimalLat": -34.42049 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.986122, "decimalLat": -34.091028 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.218028, "decimalLat": -28.824122 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.933675, "decimalLat": -36.577361 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643754, "decimalLat": -34.394684 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515287, "decimalLat": -34.451038 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.585861, "decimalLat": -34.759519 }, "geometry": { "type": "Point", "coordinates": [ 146.586, -34.76 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611341, "decimalLat": -34.430712 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522457, "decimalLat": -34.465067 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.096214, "decimalLat": -32.174793 }, "geometry": { "type": "Point", "coordinates": [ 152.096, -32.175 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104074, "decimalLat": -29.489657 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.867777, "decimalLat": -32.806492 }, "geometry": { "type": "Point", "coordinates": [ 151.868, -32.806 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630827, "decimalLat": -34.420733 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.198292, "decimalLat": -32.220827 }, "geometry": { "type": "Point", "coordinates": [ 152.198, -32.221 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.011059, "decimalLat": -29.725567 }, "geometry": { "type": "Point", "coordinates": [ 151.011, -29.726 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077198, "decimalLat": -32.722484 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.933675, "decimalLat": -36.577361 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399891, "decimalLat": -28.960887 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635639, "decimalLat": -34.420628 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899747, "decimalLat": -31.474181 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.076192, "decimalLat": -30.351067 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -30.351 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10821, "decimalLat": -29.490404 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.526673, "decimalLat": -28.233303 }, "geometry": { "type": "Point", "coordinates": [ 153.527, -28.233 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.874709, "decimalLat": -32.490273 }, "geometry": { "type": "Point", "coordinates": [ 151.875, -32.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60416, "decimalLat": -34.43874 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92491, "decimalLat": -30.420295 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -30.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515226, "decimalLat": -34.444997 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608933, "decimalLat": -34.433523 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520478, "decimalLat": -34.453974 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532746, "decimalLat": -34.481232 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614583, "decimalLat": -34.429198 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.510302, "decimalLat": -31.936905 }, "geometry": { "type": "Point", "coordinates": [ 152.51, -31.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.950337, "decimalLat": -31.167719 }, "geometry": { "type": "Point", "coordinates": [ 152.95, -31.168 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085488, "decimalLat": -32.728518 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526622, "decimalLat": -34.469253 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523924, "decimalLat": -34.466269 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.796299, "decimalLat": -28.468821 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -28.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603978, "decimalLat": -34.438637 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.530937, "decimalLat": -28.573128 }, "geometry": { "type": "Point", "coordinates": [ 153.531, -28.573 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.543905, "decimalLat": -28.902327 }, "geometry": { "type": "Point", "coordinates": [ 152.544, -28.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108194, "decimalLat": -29.490259 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514377, "decimalLat": -34.446467 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782675, "decimalLat": -33.718822 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.909046, "decimalLat": -36.609857 }, "geometry": { "type": "Point", "coordinates": [ 149.909, -36.61 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926795, "decimalLat": -31.472414 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.443406, "decimalLat": -28.946967 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.947 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.768733, "decimalLat": -34.070431 }, "geometry": { "type": "Point", "coordinates": [ 150.769, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110136, "decimalLat": -29.488303 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782206, "decimalLat": -29.567572 }, "geometry": { "type": "Point", "coordinates": [ 152.782, -29.568 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.229427, "decimalLat": -28.889129 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.677073, "decimalLat": -32.737892 }, "geometry": { "type": "Point", "coordinates": [ 149.677, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98796, "decimalLat": -34.02523 }, "geometry": { "type": "Point", "coordinates": [ 150.988, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639769, "decimalLat": -34.40026 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9293, "decimalLat": -31.4667 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641374, "decimalLat": -34.396541 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604811, "decimalLat": -34.425076 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619763, "decimalLat": -34.439162 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.94008, "decimalLat": -29.76786 }, "geometry": { "type": "Point", "coordinates": [ 150.94, -29.768 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630644, "decimalLat": -34.420675 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622607, "decimalLat": -34.384051 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.046485, "decimalLat": -32.762311 }, "geometry": { "type": "Point", "coordinates": [ 152.046, -32.762 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.978364, "decimalLat": -34.085006 }, "geometry": { "type": "Point", "coordinates": [ 150.978, -34.085 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522258, "decimalLat": -34.453397 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604282, "decimalLat": -34.437895 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314434, "decimalLat": -28.839794 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640645, "decimalLat": -34.393858 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.63384, "decimalLat": -31.830933 }, "geometry": { "type": "Point", "coordinates": [ 152.634, -31.831 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.789676, "decimalLat": -31.638897 }, "geometry": { "type": "Point", "coordinates": [ 152.79, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902842, "decimalLat": -30.240904 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.241 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61498, "decimalLat": -34.431324 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530263, "decimalLat": -34.470932 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631473, "decimalLat": -34.387785 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794801, "decimalLat": -31.641589 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.060901, "decimalLat": -32.710449 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.537002, "decimalLat": -28.178665 }, "geometry": { "type": "Point", "coordinates": [ 153.537, -28.179 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.159805, "decimalLat": -31.709154 }, "geometry": { "type": "Point", "coordinates": [ 152.16, -31.709 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077155, "decimalLat": -32.722344 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642411, "decimalLat": -34.395632 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514323, "decimalLat": -34.446466 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1038, "decimalLat": -29.485594 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.796484, "decimalLat": -30.221626 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -30.222 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769313, "decimalLat": -31.247409 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -31.247 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523388, "decimalLat": -34.456044 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63731, "decimalLat": -34.423861 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791684, "decimalLat": -31.630803 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.723448, "decimalLat": -29.382377 }, "geometry": { "type": "Point", "coordinates": [ 152.723, -29.382 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87323, "decimalLat": -31.467704 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364452, "decimalLat": -28.811172 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.811 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609073, "decimalLat": -34.494 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415064, "decimalLat": -31.933181 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518957, "decimalLat": -34.462354 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104079, "decimalLat": -29.477474 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.635695, "decimalLat": -28.636488 }, "geometry": { "type": "Point", "coordinates": [ 153.636, -28.636 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914224, "decimalLat": -31.466332 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.031875, "decimalLat": -32.749051 }, "geometry": { "type": "Point", "coordinates": [ 152.032, -32.749 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878849, "decimalLat": -29.678429 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.678 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556565, "decimalLat": -28.37268 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.373 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914976, "decimalLat": -31.445922 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637467, "decimalLat": -34.421781 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606767, "decimalLat": -34.437754 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905444, "decimalLat": -31.43744 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.298857, "decimalLat": -36.102074 }, "geometry": { "type": "Point", "coordinates": [ 149.299, -36.102 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522215, "decimalLat": -34.464783 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27331, "decimalLat": -28.931622 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617513, "decimalLat": -34.45055 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522447, "decimalLat": -34.465779 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293421, "decimalLat": -28.864526 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601152, "decimalLat": -34.417206 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607897, "decimalLat": -34.43206 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.508917, "decimalLat": -28.80952 }, "geometry": { "type": "Point", "coordinates": [ 153.509, -28.81 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786031, "decimalLat": -33.713883 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63536, "decimalLat": -34.419694 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.845128, "decimalLat": -29.834383 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300422, "decimalLat": -31.948252 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833611, "decimalLat": -33.4375 }, "geometry": { "type": "Point", "coordinates": [ 150.834, -33.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627201, "decimalLat": -34.385818 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915167, "decimalLat": -29.590841 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -29.591 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631314, "decimalLat": -34.420048 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.822876, "decimalLat": -34.150171 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609921, "decimalLat": -34.432848 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523325, "decimalLat": -28.669477 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92256, "decimalLat": -31.450165 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906418, "decimalLat": -31.491616 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27955, "decimalLat": -28.940534 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51622, "decimalLat": -34.449299 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101086, "decimalLat": -29.489862 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103538, "decimalLat": -29.485996 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.551646, "decimalLat": -33.56304 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.563 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108108, "decimalLat": -29.490269 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908358, "decimalLat": -31.456755 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.740307, "decimalLat": -30.477386 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -30.477 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375311, "decimalLat": -28.999789 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -29.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374956, "decimalLat": -28.885195 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.885 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.489569, "decimalLat": -28.228915 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617329, "decimalLat": -34.439033 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785147, "decimalLat": -31.633774 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.634 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92669, "decimalLat": -31.454507 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915577, "decimalLat": -31.483677 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791487, "decimalLat": -34.234423 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.234 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101258, "decimalLat": -29.489951 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272654, "decimalLat": -28.822468 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638552, "decimalLat": -34.489499 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640976, "decimalLat": -34.393657 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.363793, "decimalLat": -36.016019 }, "geometry": { "type": "Point", "coordinates": [ 149.364, -36.016 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603909, "decimalLat": -34.439519 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627104, "decimalLat": -34.38578 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498072, "decimalLat": -28.226882 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.227 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415127, "decimalLat": -31.933228 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637096, "decimalLat": -34.485135 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288603, "decimalLat": -28.865643 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894723, "decimalLat": -31.460953 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521122, "decimalLat": -34.466798 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868887, "decimalLat": -29.685291 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -29.685 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868105, "decimalLat": -31.474053 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640916, "decimalLat": -34.397731 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63528, "decimalLat": -34.420215 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.229312, "decimalLat": -32.946454 }, "geometry": { "type": "Point", "coordinates": [ 151.229, -32.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604626, "decimalLat": -34.424685 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521518, "decimalLat": -34.465535 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630688, "decimalLat": -34.420658 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.802324, "decimalLat": -31.124545 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -31.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600446, "decimalLat": -34.428957 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.878876, "decimalLat": -34.014065 }, "geometry": { "type": "Point", "coordinates": [ 150.879, -34.014 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642153, "decimalLat": -34.396285 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.084121, "decimalLat": -32.739915 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627092, "decimalLat": -34.389674 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919651, "decimalLat": -31.448553 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915881, "decimalLat": -31.481678 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.482 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.49018 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109245, "decimalLat": -29.490824 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630772, "decimalLat": -34.420759 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517609, "decimalLat": -34.442791 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627092, "decimalLat": -34.389674 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637379, "decimalLat": -34.423718 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896191, "decimalLat": -31.444973 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602786, "decimalLat": -34.436171 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613224, "decimalLat": -34.430686 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530992, "decimalLat": -34.483874 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.713504, "decimalLat": -30.578976 }, "geometry": { "type": "Point", "coordinates": [ 151.714, -30.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515948, "decimalLat": -34.446715 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.114096, "decimalLat": -32.724199 }, "geometry": { "type": "Point", "coordinates": [ 152.114, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.720089, "decimalLat": -31.244603 }, "geometry": { "type": "Point", "coordinates": [ 152.72, -31.245 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.818832, "decimalLat": -34.109268 }, "geometry": { "type": "Point", "coordinates": [ 150.819, -34.109 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520467, "decimalLat": -34.453974 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303636, "decimalLat": -28.35799 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.358 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108119, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110613, "decimalLat": -29.490133 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518387, "decimalLat": -34.447026 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608647, "decimalLat": -34.434762 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611374, "decimalLat": -34.430731 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.140023, "decimalLat": -34.929469 }, "geometry": { "type": "Point", "coordinates": [ 150.14, -34.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900668, "decimalLat": -31.4433 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922261, "decimalLat": -31.458324 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514277, "decimalLat": -34.446555 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324637, "decimalLat": -36.293378 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.293 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630141, "decimalLat": -34.420756 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06994, "decimalLat": -35.09674 }, "geometry": { "type": "Point", "coordinates": [ 150.07, -35.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618593, "decimalLat": -34.435903 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656033, "decimalLat": -34.455451 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324552, "decimalLat": -28.390324 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639241, "decimalLat": -34.392731 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517029, "decimalLat": -34.446223 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618349, "decimalLat": -34.436808 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.781645, "decimalLat": -31.590521 }, "geometry": { "type": "Point", "coordinates": [ 152.782, -31.591 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.508577, "decimalLat": -28.810307 }, "geometry": { "type": "Point", "coordinates": [ 153.509, -28.81 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515287, "decimalLat": -34.451011 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324647, "decimalLat": -28.8343 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.911111, "decimalLat": -31.150071 }, "geometry": { "type": "Point", "coordinates": [ 149.911, -31.15 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.718217, "decimalLat": -33.442702 }, "geometry": { "type": "Point", "coordinates": [ 150.718, -33.443 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300391, "decimalLat": -31.91313 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.411846, "decimalLat": -28.822412 }, "geometry": { "type": "Point", "coordinates": [ 153.412, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.402667, "decimalLat": -28.947235 }, "geometry": { "type": "Point", "coordinates": [ 150.403, -28.947 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.181732, "decimalLat": -29.872226 }, "geometry": { "type": "Point", "coordinates": [ 152.182, -29.872 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810456, "decimalLat": -31.140009 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -31.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104106, "decimalLat": -29.480827 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292695, "decimalLat": -28.864265 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632861, "decimalLat": -34.418825 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.781654, "decimalLat": -29.580602 }, "geometry": { "type": "Point", "coordinates": [ 152.782, -29.581 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.095687, "decimalLat": -31.079438 }, "geometry": { "type": "Point", "coordinates": [ 150.096, -31.079 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.816719, "decimalLat": -30.258635 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -30.259 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400637, "decimalLat": -28.257818 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608503, "decimalLat": -34.430657 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662495, "decimalLat": -34.236944 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.237 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904751, "decimalLat": -31.44559 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283497, "decimalLat": -28.679423 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784552, "decimalLat": -31.590569 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.591 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518921, "decimalLat": -34.460235 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636689, "decimalLat": -34.487985 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6176, "decimalLat": -34.440959 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10357, "decimalLat": -29.488447 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517502, "decimalLat": -34.447531 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557027, "decimalLat": -28.393638 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785331, "decimalLat": -33.714112 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639145, "decimalLat": -34.493171 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515886, "decimalLat": -34.448814 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521427, "decimalLat": -34.446889 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516083, "decimalLat": -34.444725 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616337, "decimalLat": -34.435633 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521608, "decimalLat": -34.465807 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.480957, "decimalLat": -28.703622 }, "geometry": { "type": "Point", "coordinates": [ 153.481, -28.704 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.176938, "decimalLat": -28.636985 }, "geometry": { "type": "Point", "coordinates": [ 152.177, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.359189, "decimalLat": -36.176369 }, "geometry": { "type": "Point", "coordinates": [ 149.359, -36.176 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103463, "decimalLat": -29.485618 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610005, "decimalLat": -34.455073 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823571, "decimalLat": -29.813031 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.813 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609535, "decimalLat": -28.661319 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.552228, "decimalLat": -28.588985 }, "geometry": { "type": "Point", "coordinates": [ 153.552, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557681, "decimalLat": -28.396704 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.043387, "decimalLat": -28.469182 }, "geometry": { "type": "Point", "coordinates": [ 153.043, -28.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529725, "decimalLat": -34.472561 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.473 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.515143, "decimalLat": -28.667698 }, "geometry": { "type": "Point", "coordinates": [ 153.515, -28.668 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633861, "decimalLat": -34.392582 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.036374, "decimalLat": -30.441321 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -30.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.546639, "decimalLat": -28.331028 }, "geometry": { "type": "Point", "coordinates": [ 153.547, -28.331 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632809, "decimalLat": -34.417976 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655821, "decimalLat": -34.456393 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.424172, "decimalLat": -28.662508 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.480883 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615941, "decimalLat": -34.436157 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910556, "decimalLat": -31.453772 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.159445, "decimalLat": -32.711701 }, "geometry": { "type": "Point", "coordinates": [ 152.159, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.101746, "decimalLat": -32.733374 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898016, "decimalLat": -29.631853 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103731, "decimalLat": -29.485646 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.993522, "decimalLat": -33.976184 }, "geometry": { "type": "Point", "coordinates": [ 150.994, -33.976 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.01181, "decimalLat": -34.83574 }, "geometry": { "type": "Point", "coordinates": [ 150.012, -34.836 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79367, "decimalLat": -34.23387 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.234 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.605312, "decimalLat": -30.341208 }, "geometry": { "type": "Point", "coordinates": [ 152.605, -30.341 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.0409, "decimalLat": -32.737551 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641523, "decimalLat": -34.39548 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071635, "decimalLat": -30.886928 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659029, "decimalLat": -34.457663 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534636, "decimalLat": -34.459562 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879069, "decimalLat": -29.662082 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520784, "decimalLat": -34.465349 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.040573, "decimalLat": -29.072674 }, "geometry": { "type": "Point", "coordinates": [ 153.041, -29.073 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532456, "decimalLat": -34.477404 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786709, "decimalLat": -28.563092 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -28.563 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.952917, "decimalLat": -36.681355 }, "geometry": { "type": "Point", "coordinates": [ 149.953, -36.681 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910626, "decimalLat": -31.441436 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312942, "decimalLat": -28.862631 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101719, "decimalLat": -29.489629 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.94051, "decimalLat": -30.4751 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -30.475 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515525, "decimalLat": -34.465959 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784694, "decimalLat": -33.713358 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.326124, "decimalLat": -31.905232 }, "geometry": { "type": "Point", "coordinates": [ 152.326, -31.905 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630922, "decimalLat": -34.388847 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.136862, "decimalLat": -32.201281 }, "geometry": { "type": "Point", "coordinates": [ 152.137, -32.201 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.501594, "decimalLat": -28.240082 }, "geometry": { "type": "Point", "coordinates": [ 153.502, -28.24 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615986, "decimalLat": -34.433048 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521898, "decimalLat": -34.465587 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789066, "decimalLat": -34.112821 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.113 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19096, "decimalLat": -32.219628 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -32.22 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063401, "decimalLat": -32.706185 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628878, "decimalLat": -34.389204 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516773, "decimalLat": -34.446777 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615556, "decimalLat": -34.435537 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609464, "decimalLat": -34.419064 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608904, "decimalLat": -34.434902 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316233, "decimalLat": -28.846422 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412688, "decimalLat": -31.932308 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10379, "decimalLat": -29.485538 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603679, "decimalLat": -34.436531 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924308, "decimalLat": -31.449908 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.15582, "decimalLat": -28.580872 }, "geometry": { "type": "Point", "coordinates": [ 153.156, -28.581 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517748, "decimalLat": -34.441424 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.988872, "decimalLat": -32.720145 }, "geometry": { "type": "Point", "coordinates": [ 151.989, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632646, "decimalLat": -34.418343 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603368, "decimalLat": -34.436362 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520385, "decimalLat": -34.454189 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915574, "decimalLat": -31.445903 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610277, "decimalLat": -34.455105 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619002, "decimalLat": -34.43949 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642762, "decimalLat": -34.39554 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867825, "decimalLat": -29.66734 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82481, "decimalLat": -34.29377 }, "geometry": { "type": "Point", "coordinates": [ 150.825, -34.294 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.960707, "decimalLat": -29.731778 }, "geometry": { "type": "Point", "coordinates": [ 152.961, -29.732 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922816, "decimalLat": -29.735184 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -29.735 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437446, "decimalLat": -28.981439 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.981 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.970833, "decimalLat": -33.566944 }, "geometry": { "type": "Point", "coordinates": [ 150.971, -33.567 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283326, "decimalLat": -28.830777 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.737845, "decimalLat": -30.877162 }, "geometry": { "type": "Point", "coordinates": [ 152.738, -30.877 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322444, "decimalLat": -28.825855 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315522, "decimalLat": -28.826069 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.503422, "decimalLat": -28.239653 }, "geometry": { "type": "Point", "coordinates": [ 153.503, -28.24 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949575, "decimalLat": -36.554484 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6581, "decimalLat": -34.457014 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101955, "decimalLat": -29.488779 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.793923, "decimalLat": -34.147892 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.148 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.806554, "decimalLat": -31.674712 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -31.675 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61085, "decimalLat": -34.432299 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.667, "decimalLat": -30.455 }, "geometry": { "type": "Point", "coordinates": [ 151.667, -30.455 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374088, "decimalLat": -31.915606 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614365, "decimalLat": -34.42923 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521543, "decimalLat": -34.465797 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915635, "decimalLat": -31.484394 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596068, "decimalLat": -34.411616 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602956, "decimalLat": -34.417629 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.941445, "decimalLat": -30.494909 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -30.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515797, "decimalLat": -34.449597 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.371046, "decimalLat": -31.923541 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.897396, "decimalLat": -30.021503 }, "geometry": { "type": "Point", "coordinates": [ 151.897, -30.022 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493649, "decimalLat": -28.678687 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607343, "decimalLat": -34.509694 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.51 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102577, "decimalLat": -29.488046 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103918, "decimalLat": -29.485286 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51765, "decimalLat": -34.446209 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.690579, "decimalLat": -33.149976 }, "geometry": { "type": "Point", "coordinates": [ 149.691, -33.15 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101322, "decimalLat": -29.489797 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104825, "decimalLat": -29.476932 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.417079, "decimalLat": -31.957715 }, "geometry": { "type": "Point", "coordinates": [ 152.417, -31.958 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063293, "decimalLat": -32.706113 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532929, "decimalLat": -34.475782 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61526, "decimalLat": -34.440994 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189597, "decimalLat": -32.229205 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897027, "decimalLat": -31.451721 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5465, "decimalLat": -28.73469 }, "geometry": { "type": "Point", "coordinates": [ 153.547, -28.735 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.222609, "decimalLat": -28.886375 }, "geometry": { "type": "Point", "coordinates": [ 153.223, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003869, "decimalLat": -32.696024 }, "geometry": { "type": "Point", "coordinates": [ 150.004, -32.696 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787019, "decimalLat": -31.629635 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.231128, "decimalLat": -28.840919 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315553, "decimalLat": -28.815793 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094177, "decimalLat": -29.488765 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.754898, "decimalLat": -34.201092 }, "geometry": { "type": "Point", "coordinates": [ 150.755, -34.201 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297949, "decimalLat": -28.900009 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.097186, "decimalLat": -29.48664 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101161, "decimalLat": -29.490082 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893564, "decimalLat": -30.442547 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -30.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063513, "decimalLat": -32.706257 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512834, "decimalLat": -34.467324 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513106, "decimalLat": -34.446035 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786413, "decimalLat": -33.70598 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.006253, "decimalLat": -32.727471 }, "geometry": { "type": "Point", "coordinates": [ 152.006, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.401042, "decimalLat": -31.913607 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914903, "decimalLat": -31.446468 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528073, "decimalLat": -34.456986 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517213, "decimalLat": -34.445884 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891058, "decimalLat": -31.446229 }, "geometry": { "type": "Point", "coordinates": [ 152.891, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633422, "decimalLat": -34.392339 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.432956, "decimalLat": -28.958311 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893115, "decimalLat": -31.446849 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810715, "decimalLat": -31.653199 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -31.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522207, "decimalLat": -34.451458 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.365149, "decimalLat": -36.053748 }, "geometry": { "type": "Point", "coordinates": [ 149.365, -36.054 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285659, "decimalLat": -28.840728 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.282056, "decimalLat": -36.059639 }, "geometry": { "type": "Point", "coordinates": [ 149.282, -36.06 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639143, "decimalLat": -34.493234 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896919, "decimalLat": -31.432821 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.661316, "decimalLat": -28.610591 }, "geometry": { "type": "Point", "coordinates": [ 152.661, -28.611 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.30799, "decimalLat": -36.064179 }, "geometry": { "type": "Point", "coordinates": [ 149.308, -36.064 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810715, "decimalLat": -31.653199 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -31.653 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.609645, "decimalLat": -30.287438 }, "geometry": { "type": "Point", "coordinates": [ 152.61, -30.287 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.531129, "decimalLat": -32.338554 }, "geometry": { "type": "Point", "coordinates": [ 152.531, -32.339 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10932, "decimalLat": -29.49082 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783627, "decimalLat": -33.713576 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615266, "decimalLat": -34.450362 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063952, "decimalLat": -32.707682 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.489306, "decimalLat": -30.17693 }, "geometry": { "type": "Point", "coordinates": [ 152.489, -30.177 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793435, "decimalLat": -31.641205 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.641 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65996, "decimalLat": -34.457843 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616148, "decimalLat": -34.451497 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.085842, "decimalLat": -30.326985 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -30.327 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783939, "decimalLat": -33.717554 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89787, "decimalLat": -31.456201 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521178, "decimalLat": -34.465618 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894048, "decimalLat": -31.443248 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315905, "decimalLat": -28.849986 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617065, "decimalLat": -34.433772 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102454, "decimalLat": -29.48792 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626589, "decimalLat": -34.387059 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110576, "decimalLat": -29.48947 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.995573, "decimalLat": -36.572611 }, "geometry": { "type": "Point", "coordinates": [ 149.996, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324752, "decimalLat": -28.884244 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.884 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071682, "decimalLat": -28.585441 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -28.585 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10976, "decimalLat": -29.490054 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615386, "decimalLat": -34.435786 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914411, "decimalLat": -31.47932 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520337, "decimalLat": -34.465727 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.999003, "decimalLat": -34.083054 }, "geometry": { "type": "Point", "coordinates": [ 150.999, -34.083 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.352917, "decimalLat": -31.926413 }, "geometry": { "type": "Point", "coordinates": [ 152.353, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630676, "decimalLat": -34.420676 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60028, "decimalLat": -34.428666 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606486, "decimalLat": -34.454454 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659854, "decimalLat": -34.456975 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609409, "decimalLat": -34.430575 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.975253, "decimalLat": -34.085514 }, "geometry": { "type": "Point", "coordinates": [ 150.975, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785781, "decimalLat": -33.706871 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522786, "decimalLat": -34.466462 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400663, "decimalLat": -28.257745 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.466953, "decimalLat": -34.490589 }, "geometry": { "type": "Point", "coordinates": [ 150.467, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394863, "decimalLat": -28.959973 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632786, "decimalLat": -34.4184 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617434, "decimalLat": -34.399692 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515868, "decimalLat": -34.450527 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623523, "decimalLat": -34.389352 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.38007, "decimalLat": -31.914503 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.552742, "decimalLat": -34.754674 }, "geometry": { "type": "Point", "coordinates": [ 146.553, -34.755 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88388, "decimalLat": -31.440823 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.033701, "decimalLat": -29.774336 }, "geometry": { "type": "Point", "coordinates": [ 151.034, -29.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642197, "decimalLat": -34.396268 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900516, "decimalLat": -29.631317 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618128, "decimalLat": -34.429655 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395153, "decimalLat": -28.959978 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096335, "decimalLat": -30.334349 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -30.334 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63196, "decimalLat": -34.418357 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109959, "decimalLat": -29.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534685, "decimalLat": -34.462348 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615935, "decimalLat": -34.436004 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.773657, "decimalLat": -32.590267 }, "geometry": { "type": "Point", "coordinates": [ 151.774, -32.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.946838, "decimalLat": -35.157587 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -35.158 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81802, "decimalLat": -31.27744 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.277 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90517, "decimalLat": -31.449161 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.538333, "decimalLat": -34.511833 }, "geometry": { "type": "Point", "coordinates": [ 150.538, -34.512 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609873, "decimalLat": -34.430305 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316325, "decimalLat": -28.949853 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.837283, "decimalLat": -34.053649 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.054 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608022, "decimalLat": -34.433794 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64213, "decimalLat": -34.39633 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.497089, "decimalLat": -30.643622 }, "geometry": { "type": "Point", "coordinates": [ 151.497, -30.644 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926446, "decimalLat": -31.473012 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642638, "decimalLat": -34.394519 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637862, "decimalLat": -34.488846 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622508, "decimalLat": -34.384491 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646468, "decimalLat": -34.397171 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517971, "decimalLat": -34.437543 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.69277, "decimalLat": -31.355557 }, "geometry": { "type": "Point", "coordinates": [ 152.693, -31.356 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644055, "decimalLat": -34.392851 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.109985, "decimalLat": -32.777513 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -32.778 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293096, "decimalLat": -28.864669 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60918, "decimalLat": -34.418752 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602977, "decimalLat": -34.437085 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609316, "decimalLat": -34.420467 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785908, "decimalLat": -33.708813 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.481287, "decimalLat": -28.626781 }, "geometry": { "type": "Point", "coordinates": [ 153.481, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109417, "decimalLat": -29.490516 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.086206, "decimalLat": -32.728196 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626589, "decimalLat": -34.385517 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.758849, "decimalLat": -32.314012 }, "geometry": { "type": "Point", "coordinates": [ 151.759, -32.314 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521622, "decimalLat": -34.465699 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.094146, "decimalLat": -32.739923 }, "geometry": { "type": "Point", "coordinates": [ 152.094, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.143431, "decimalLat": -29.200397 }, "geometry": { "type": "Point", "coordinates": [ 153.143, -29.2 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520619, "decimalLat": -34.450677 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512995, "decimalLat": -34.447205 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599916, "decimalLat": -34.418183 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627163, "decimalLat": -34.386006 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.415881, "decimalLat": -28.871912 }, "geometry": { "type": "Point", "coordinates": [ 153.416, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604725, "decimalLat": -34.427328 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.660152, "decimalLat": -34.458757 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609422, "decimalLat": -34.419018 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533445, "decimalLat": -34.461927 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.078262, "decimalLat": -30.338406 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.338 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283257, "decimalLat": -28.822308 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393981, "decimalLat": -28.958968 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604403, "decimalLat": -34.43897 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915095, "decimalLat": -29.152018 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -29.152 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655913, "decimalLat": -34.456233 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632871, "decimalLat": -34.418852 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659499, "decimalLat": -34.458375 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.490213 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.041486, "decimalLat": -32.665157 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.665 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929481, "decimalLat": -29.726928 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103752, "decimalLat": -29.485552 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790785, "decimalLat": -34.189017 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.189 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555987, "decimalLat": -28.398817 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.752415, "decimalLat": -32.404663 }, "geometry": { "type": "Point", "coordinates": [ 151.752, -32.405 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595561, "decimalLat": -34.514 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.514 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.963689, "decimalLat": -32.657602 }, "geometry": { "type": "Point", "coordinates": [ 151.964, -32.658 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533186, "decimalLat": -34.479609 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.314588, "decimalLat": -31.924736 }, "geometry": { "type": "Point", "coordinates": [ 152.315, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639164, "decimalLat": -34.49135 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.361058, "decimalLat": -28.83929 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.839 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10394, "decimalLat": -29.489535 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.973842, "decimalLat": -31.189048 }, "geometry": { "type": "Point", "coordinates": [ 152.974, -31.189 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519598, "decimalLat": -34.447312 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525216, "decimalLat": -34.439072 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614425, "decimalLat": -34.432459 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628978, "decimalLat": -34.390288 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104171, "decimalLat": -29.480378 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808549, "decimalLat": -34.098225 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892524, "decimalLat": -31.447485 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095995, "decimalLat": -29.484805 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039104, "decimalLat": -32.737789 }, "geometry": { "type": "Point", "coordinates": [ 152.039, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311174, "decimalLat": -28.838571 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.839 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61147, "decimalLat": -34.419698 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375014, "decimalLat": -28.254046 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.694698, "decimalLat": -33.386849 }, "geometry": { "type": "Point", "coordinates": [ 150.695, -33.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637345, "decimalLat": -34.423798 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.510302, "decimalLat": -31.936905 }, "geometry": { "type": "Point", "coordinates": [ 152.51, -31.937 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880083, "decimalLat": -31.426271 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.586591, "decimalLat": -31.775191 }, "geometry": { "type": "Point", "coordinates": [ 152.587, -31.775 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521701, "decimalLat": -34.464889 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785131, "decimalLat": -33.714524 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063775, "decimalLat": -32.70656 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632582, "decimalLat": -34.418297 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921205, "decimalLat": -31.456759 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640106, "decimalLat": -34.39831 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872205, "decimalLat": -31.464769 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373639, "decimalLat": -31.914535 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.05708, "decimalLat": -34.89993 }, "geometry": { "type": "Point", "coordinates": [ 150.057, -34.9 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91225, "decimalLat": -31.44219 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.529719, "decimalLat": -34.740797 }, "geometry": { "type": "Point", "coordinates": [ 146.53, -34.741 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.086229, "decimalLat": -30.345093 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -30.345 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.075063, "decimalLat": -28.555784 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906556, "decimalLat": -31.454357 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629423, "decimalLat": -28.637369 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103918, "decimalLat": -29.478225 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.141262, "decimalLat": -31.407587 }, "geometry": { "type": "Point", "coordinates": [ 152.141, -31.408 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.577506, "decimalLat": -33.419281 }, "geometry": { "type": "Point", "coordinates": [ 149.578, -33.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518026, "decimalLat": -34.457035 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108183, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064607, "decimalLat": -32.70652 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530443, "decimalLat": -34.46924 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640457, "decimalLat": -34.494152 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641932, "decimalLat": -34.396795 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516414, "decimalLat": -34.447518 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085296, "decimalLat": -32.775837 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.776 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.53323, "decimalLat": -28.506774 }, "geometry": { "type": "Point", "coordinates": [ 153.533, -28.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630717, "decimalLat": -34.389925 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.590888, "decimalLat": -31.558909 }, "geometry": { "type": "Point", "coordinates": [ 152.591, -31.559 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833835, "decimalLat": -34.093819 }, "geometry": { "type": "Point", "coordinates": [ 150.834, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.624706, "decimalLat": -30.402213 }, "geometry": { "type": "Point", "coordinates": [ 151.625, -30.402 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.694188, "decimalLat": -31.621103 }, "geometry": { "type": "Point", "coordinates": [ 152.694, -31.621 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19037, "decimalLat": -31.951998 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -31.952 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10424, "decimalLat": -29.479988 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.118042, "decimalLat": -33.228387 }, "geometry": { "type": "Point", "coordinates": [ 151.118, -33.228 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30734, "decimalLat": -28.97709 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373325, "decimalLat": -31.915639 }, "geometry": { "type": "Point", "coordinates": [ 152.373, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49553, "decimalLat": -28.693291 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785138, "decimalLat": -33.710495 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.489923 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518499, "decimalLat": -34.457594 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909685, "decimalLat": -31.487894 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532346, "decimalLat": -34.477465 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636996, "decimalLat": -34.488288 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639346, "decimalLat": -34.492994 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610347, "decimalLat": -34.419018 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.594424, "decimalLat": -28.712315 }, "geometry": { "type": "Point", "coordinates": [ 153.594, -28.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.149332, "decimalLat": -28.500029 }, "geometry": { "type": "Point", "coordinates": [ 153.149, -28.5 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.590577, "decimalLat": -28.658124 }, "geometry": { "type": "Point", "coordinates": [ 153.591, -28.658 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302486, "decimalLat": -28.848102 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.843566, "decimalLat": -32.518862 }, "geometry": { "type": "Point", "coordinates": [ 151.844, -32.519 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102701, "decimalLat": -29.4875 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91956, "decimalLat": -31.442876 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.980062, "decimalLat": -31.145158 }, "geometry": { "type": "Point", "coordinates": [ 152.98, -31.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.485594 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.877346, "decimalLat": -34.013124 }, "geometry": { "type": "Point", "coordinates": [ 150.877, -34.013 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624211, "decimalLat": -34.388104 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.685616, "decimalLat": -34.265974 }, "geometry": { "type": "Point", "coordinates": [ 150.686, -34.266 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98141, "decimalLat": -34.129716 }, "geometry": { "type": "Point", "coordinates": [ 150.981, -34.13 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063585, "decimalLat": -32.705964 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063312, "decimalLat": -32.706553 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615909, "decimalLat": -34.436166 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.015853, "decimalLat": -28.434815 }, "geometry": { "type": "Point", "coordinates": [ 153.016, -28.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517444, "decimalLat": -34.452055 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.940088, "decimalLat": -33.953175 }, "geometry": { "type": "Point", "coordinates": [ 150.94, -33.953 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926263, "decimalLat": -31.476487 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.838531, "decimalLat": -31.59403 }, "geometry": { "type": "Point", "coordinates": [ 152.839, -31.594 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600292, "decimalLat": -34.428621 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61586, "decimalLat": -28.659488 }, "geometry": { "type": "Point", "coordinates": [ 153.616, -28.659 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10416, "decimalLat": -29.489657 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848132, "decimalLat": -34.066996 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.067 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87057, "decimalLat": -30.40514 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -30.405 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.986371, "decimalLat": -33.976111 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -33.976 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615848, "decimalLat": -34.432919 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.34001, "decimalLat": -28.81439 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.649775, "decimalLat": -30.326207 }, "geometry": { "type": "Point", "coordinates": [ 151.65, -30.326 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303208, "decimalLat": -28.817652 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518267, "decimalLat": -34.451829 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911789, "decimalLat": -31.458665 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603973, "decimalLat": -34.432696 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630688, "decimalLat": -34.420658 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016902, "decimalLat": -36.541583 }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637345, "decimalLat": -34.423798 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515721, "decimalLat": -34.446656 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560235, "decimalLat": -28.37446 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518447, "decimalLat": -34.447586 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303017, "decimalLat": -28.865743 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395546, "decimalLat": -29.018925 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -29.019 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374047, "decimalLat": -31.913202 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604369, "decimalLat": -34.437896 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.4846, "decimalLat": -34.40122 }, "geometry": { "type": "Point", "coordinates": [ 150.485, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103763, "decimalLat": -29.485641 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.121111, "decimalLat": -35.066402 }, "geometry": { "type": "Point", "coordinates": [ 150.121, -35.066 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632751, "decimalLat": -34.418877 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277965, "decimalLat": -28.8186 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.383242, "decimalLat": -28.787324 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -28.787 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316022, "decimalLat": -28.826884 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301256, "decimalLat": -28.81811 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608126, "decimalLat": -34.454189 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922496, "decimalLat": -31.458621 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616092, "decimalLat": -34.434294 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.390213, "decimalLat": -31.207512 }, "geometry": { "type": "Point", "coordinates": [ 152.39, -31.208 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.526366, "decimalLat": -33.561591 }, "geometry": { "type": "Point", "coordinates": [ 149.526, -33.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644328, "decimalLat": -34.393208 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901728, "decimalLat": -31.484888 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8278, "decimalLat": -31.26337 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -31.263 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631521, "decimalLat": -34.388417 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599043, "decimalLat": -34.412973 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514331, "decimalLat": -34.446556 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.741668, "decimalLat": -30.120163 }, "geometry": { "type": "Point", "coordinates": [ 152.742, -30.12 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616838, "decimalLat": -34.429494 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640194, "decimalLat": -34.398682 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096108, "decimalLat": -29.484754 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.501114, "decimalLat": -28.224592 }, "geometry": { "type": "Point", "coordinates": [ 153.501, -28.225 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624446, "decimalLat": -34.387856 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.956507, "decimalLat": -34.103904 }, "geometry": { "type": "Point", "coordinates": [ 150.957, -34.104 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597898, "decimalLat": -34.427889 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611217, "decimalLat": -34.43163 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520487, "decimalLat": -34.454019 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631132, "decimalLat": -34.387553 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381097, "decimalLat": -31.914637 }, "geometry": { "type": "Point", "coordinates": [ 152.381, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604293, "decimalLat": -34.437877 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281139, "decimalLat": -28.826415 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898346, "decimalLat": -31.443521 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.388725, "decimalLat": -28.86626 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.778378, "decimalLat": -34.139613 }, "geometry": { "type": "Point", "coordinates": [ 150.778, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595746, "decimalLat": -34.413746 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322333, "decimalLat": -28.82706 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924358, "decimalLat": -31.453336 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642941, "decimalLat": -34.395724 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.140258, "decimalLat": -28.840098 }, "geometry": { "type": "Point", "coordinates": [ 153.14, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101569, "decimalLat": -29.489956 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901272, "decimalLat": -31.442488 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893647, "decimalLat": -31.446271 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907614, "decimalLat": -31.481437 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293688, "decimalLat": -28.863958 }, "geometry": { "type": "Point", "coordinates": [ 153.294, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60271, "decimalLat": -34.424719 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.976873, "decimalLat": -30.429414 }, "geometry": { "type": "Point", "coordinates": [ 152.977, -30.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.063219, "decimalLat": -33.776012 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562111, "decimalLat": -28.385548 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.511009, "decimalLat": -28.580327 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.58 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615937, "decimalLat": -34.436302 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10519, "decimalLat": -29.489741 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.266992, "decimalLat": -28.92076 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -28.921 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.140035, "decimalLat": -28.643115 }, "geometry": { "type": "Point", "coordinates": [ 153.14, -28.643 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522461, "decimalLat": -34.46531 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641932, "decimalLat": -34.396795 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949786, "decimalLat": -36.632867 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.633 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.48375 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627811, "decimalLat": -34.390004 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.993755, "decimalLat": -30.560076 }, "geometry": { "type": "Point", "coordinates": [ 152.994, -30.56 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786822, "decimalLat": -31.62958 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.866917, "decimalLat": -31.306397 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -31.306 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908333, "decimalLat": -31.438541 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613299, "decimalLat": -34.430751 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336688, "decimalLat": -28.868027 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -28.868 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335614, "decimalLat": -28.833877 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784611, "decimalLat": -33.716655 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.19895, "decimalLat": -29.39242 }, "geometry": { "type": "Point", "coordinates": [ 153.199, -29.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644146, "decimalLat": -34.396982 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5172, "decimalLat": -34.447795 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51384, "decimalLat": -34.446239 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517009, "decimalLat": -34.44762 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791043, "decimalLat": -31.640743 }, "geometry": { "type": "Point", "coordinates": [ 152.791, -31.641 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.160011, "decimalLat": -33.200218 }, "geometry": { "type": "Point", "coordinates": [ 151.16, -33.2 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521917, "decimalLat": -34.466039 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629731, "decimalLat": -34.420649 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868377, "decimalLat": -31.474333 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.484382, "decimalLat": -28.633989 }, "geometry": { "type": "Point", "coordinates": [ 153.484, -28.634 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103947, "decimalLat": -29.485496 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103634, "decimalLat": -29.485347 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9063, "decimalLat": -30.24028 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -30.24 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609192, "decimalLat": -34.420618 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104385, "decimalLat": -29.489615 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924715, "decimalLat": -31.443643 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.844493, "decimalLat": -34.061552 }, "geometry": { "type": "Point", "coordinates": [ 150.844, -34.062 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61626, "decimalLat": -34.42878 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292114, "decimalLat": -28.863526 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.531241, "decimalLat": -34.747799 }, "geometry": { "type": "Point", "coordinates": [ 146.531, -34.748 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603469, "decimalLat": -34.436995 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63286, "decimalLat": -34.418843 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.009484, "decimalLat": -34.045689 }, "geometry": { "type": "Point", "coordinates": [ 151.009, -34.046 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068801, "decimalLat": -32.708604 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.150167, "decimalLat": -36.084545 }, "geometry": { "type": "Point", "coordinates": [ 149.15, -36.085 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625992, "decimalLat": -34.389743 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519854, "decimalLat": -34.452627 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.062479, "decimalLat": -33.775552 }, "geometry": { "type": "Point", "coordinates": [ 150.062, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918472, "decimalLat": -31.442527 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785498, "decimalLat": -33.713395 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.851875, "decimalLat": -32.722818 }, "geometry": { "type": "Point", "coordinates": [ 151.852, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.089601, "decimalLat": -28.596578 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -28.597 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403877, "decimalLat": -31.927966 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517369, "decimalLat": -34.452 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605532, "decimalLat": -34.432194 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063655, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315895, "decimalLat": -28.824581 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533313, "decimalLat": -34.474915 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513091, "decimalLat": -34.447261 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630644, "decimalLat": -34.420657 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10423, "decimalLat": -29.477581 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071977, "decimalLat": -30.880197 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.88 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79862, "decimalLat": -34.19595 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.196 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6674, "decimalLat": -30.5006 }, "geometry": { "type": "Point", "coordinates": [ 151.667, -30.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63628, "decimalLat": -34.421812 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82489, "decimalLat": -31.2829 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.283 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602529, "decimalLat": -34.43905 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865607, "decimalLat": -31.459239 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523745, "decimalLat": -34.46384 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930102, "decimalLat": -31.450157 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513854, "decimalLat": -34.446141 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.089698, "decimalLat": -33.71313 }, "geometry": { "type": "Point", "coordinates": [ 150.09, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60512, "decimalLat": -34.429878 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515589, "decimalLat": -34.448538 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635394, "decimalLat": -34.488356 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104112, "decimalLat": -29.48007 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626185, "decimalLat": -34.546122 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110511, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107438, "decimalLat": -29.490058 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929028, "decimalLat": -31.450178 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533863, "decimalLat": -34.459194 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606811, "decimalLat": -34.429317 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.397319, "decimalLat": -36.220281 }, "geometry": { "type": "Point", "coordinates": [ 149.397, -36.22 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626675, "decimalLat": -34.389026 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79166, "decimalLat": -31.630813 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.543438, "decimalLat": -33.699723 }, "geometry": { "type": "Point", "coordinates": [ 149.543, -33.7 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616455, "decimalLat": -34.434536 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.47178, "decimalLat": -34.49557 }, "geometry": { "type": "Point", "coordinates": [ 150.472, -34.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598073, "decimalLat": -34.42672 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658154, "decimalLat": -34.456258 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518986, "decimalLat": -34.460273 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61079, "decimalLat": -34.430593 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927978, "decimalLat": -31.466515 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109353, "decimalLat": -29.490516 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989327, "decimalLat": -34.027328 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.027 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917254, "decimalLat": -31.471389 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.77, "decimalLat": -34.055833 }, "geometry": { "type": "Point", "coordinates": [ 150.77, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631713, "decimalLat": -34.388159 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104208, "decimalLat": -29.479827 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.681988, "decimalLat": -33.542098 }, "geometry": { "type": "Point", "coordinates": [ 149.682, -33.542 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.569688, "decimalLat": -34.755822 }, "geometry": { "type": "Point", "coordinates": [ 146.57, -34.756 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516798, "decimalLat": -34.445191 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534634, "decimalLat": -34.462212 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631215, "decimalLat": -34.388086 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.384714, "decimalLat": -28.854755 }, "geometry": { "type": "Point", "coordinates": [ 153.385, -28.855 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293124, "decimalLat": -28.864664 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630244, "decimalLat": -34.420956 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.757359, "decimalLat": -31.240123 }, "geometry": { "type": "Point", "coordinates": [ 152.757, -31.24 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103677, "decimalLat": -29.485772 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.97665, "decimalLat": -34.024485 }, "geometry": { "type": "Point", "coordinates": [ 150.977, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638399, "decimalLat": -34.491047 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61623, "decimalLat": -34.435956 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600818, "decimalLat": -34.427739 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.137708, "decimalLat": -30.22644 }, "geometry": { "type": "Point", "coordinates": [ 153.138, -30.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519657, "decimalLat": -34.455229 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519788, "decimalLat": -34.452662 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636228, "decimalLat": -34.42173 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.286486, "decimalLat": -28.848741 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -28.849 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.813889, "decimalLat": -34.360278 }, "geometry": { "type": "Point", "coordinates": [ 150.814, -34.36 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.131573, "decimalLat": -32.729621 }, "geometry": { "type": "Point", "coordinates": [ 152.132, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641575, "decimalLat": -34.395571 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068841, "decimalLat": -32.710719 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657331, "decimalLat": -34.454944 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79459, "decimalLat": -34.13442 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.134 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521169, "decimalLat": -34.451942 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636311, "decimalLat": -34.485579 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517263, "decimalLat": -34.451565 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630525, "decimalLat": -34.420655 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786977, "decimalLat": -34.139758 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096736, "decimalLat": -29.486313 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610575, "decimalLat": -34.43049 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618119, "decimalLat": -34.429601 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637769, "decimalLat": -34.488673 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916639, "decimalLat": -31.444937 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428775, "decimalLat": -28.972314 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.972 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515565, "decimalLat": -34.454505 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.492959, "decimalLat": -32.349837 }, "geometry": { "type": "Point", "coordinates": [ 152.493, -32.35 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.089444, "decimalLat": -32.729167 }, "geometry": { "type": "Point", "coordinates": [ 152.089, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520496, "decimalLat": -34.45411 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.241456, "decimalLat": -31.60035 }, "geometry": { "type": "Point", "coordinates": [ 152.241, -31.6 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454341, "decimalLat": -28.653446 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897069, "decimalLat": -31.475408 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29284, "decimalLat": -28.864652 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.569727, "decimalLat": -30.371294 }, "geometry": { "type": "Point", "coordinates": [ 151.57, -30.371 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785833, "decimalLat": -33.712933 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.73971, "decimalLat": -30.477591 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -30.478 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615467, "decimalLat": -34.432551 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514341, "decimalLat": -34.446583 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103913, "decimalLat": -29.489568 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297349, "decimalLat": -28.983325 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52209, "decimalLat": -34.463869 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.237182, "decimalLat": -28.779615 }, "geometry": { "type": "Point", "coordinates": [ 153.237, -28.78 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631496, "decimalLat": -34.387767 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622098, "decimalLat": -34.397817 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.631725, "decimalLat": -30.22548 }, "geometry": { "type": "Point", "coordinates": [ 152.632, -30.225 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785108, "decimalLat": -33.714179 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639192, "decimalLat": -34.49191 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60845, "decimalLat": -34.454285 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.836838, "decimalLat": -34.138901 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.139 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618411, "decimalLat": -34.449963 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618211, "decimalLat": -34.435183 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615877, "decimalLat": -34.438816 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077824, "decimalLat": -30.3382 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.338 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833867, "decimalLat": -34.113099 }, "geometry": { "type": "Point", "coordinates": [ 150.834, -34.113 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92611, "decimalLat": -30.50624 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635274, "decimalLat": -34.419665 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.295648, "decimalLat": -28.828432 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.969432, "decimalLat": -32.030191 }, "geometry": { "type": "Point", "coordinates": [ 151.969, -32.03 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.44059, "decimalLat": -28.683061 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.766918, "decimalLat": -32.76048 }, "geometry": { "type": "Point", "coordinates": [ 151.767, -32.76 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518406, "decimalLat": -34.457412 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605905, "decimalLat": -34.422186 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.476462, "decimalLat": -31.941297 }, "geometry": { "type": "Point", "coordinates": [ 152.476, -31.941 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.091413, "decimalLat": -28.786007 }, "geometry": { "type": "Point", "coordinates": [ 152.091, -28.786 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063393, "decimalLat": -32.706172 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92343, "decimalLat": -31.465818 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.366858, "decimalLat": -28.851685 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -28.852 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.871273, "decimalLat": -29.678687 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -29.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606976, "decimalLat": -34.455212 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.130165, "decimalLat": -28.615315 }, "geometry": { "type": "Point", "coordinates": [ 153.13, -28.615 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634443, "decimalLat": -34.477691 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517413, "decimalLat": -34.447574 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52061, "decimalLat": -34.468275 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.721419, "decimalLat": -32.222189 }, "geometry": { "type": "Point", "coordinates": [ 151.721, -32.222 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786125, "decimalLat": -33.706053 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631488, "decimalLat": -34.388443 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.720808, "decimalLat": -36.465931 }, "geometry": { "type": "Point", "coordinates": [ 148.721, -36.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646725, "decimalLat": -34.39576 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515261, "decimalLat": -34.451533 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108017, "decimalLat": -29.490301 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319997, "decimalLat": -28.847902 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515798, "decimalLat": -34.448091 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262928, "decimalLat": -28.923326 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -28.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.425778, "decimalLat": -28.62343 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.623 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.507579, "decimalLat": -34.466504 }, "geometry": { "type": "Point", "coordinates": [ 150.508, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06574, "decimalLat": -32.710635 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630885, "decimalLat": -34.388206 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.123835, "decimalLat": -30.295912 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630245, "decimalLat": -34.420911 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400487, "decimalLat": -28.260327 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402932, "decimalLat": -28.260534 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877938, "decimalLat": -31.495912 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606828, "decimalLat": -34.455056 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78516, "decimalLat": -33.714085 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912201, "decimalLat": -31.455426 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639144, "decimalLat": -34.492062 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104031, "decimalLat": -29.485127 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603413, "decimalLat": -34.436291 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706723 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921716, "decimalLat": -31.440734 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.686648, "decimalLat": -33.271332 }, "geometry": { "type": "Point", "coordinates": [ 150.687, -33.271 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03604, "decimalLat": -32.765093 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.201795, "decimalLat": -32.233788 }, "geometry": { "type": "Point", "coordinates": [ 152.202, -32.234 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.275997, "decimalLat": -28.389746 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.098552, "decimalLat": -32.742226 }, "geometry": { "type": "Point", "coordinates": [ 152.099, -32.742 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617141, "decimalLat": -33.51732 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -33.517 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61613, "decimalLat": -34.431049 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.660673, "decimalLat": -32.68599 }, "geometry": { "type": "Point", "coordinates": [ 151.661, -32.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599777, "decimalLat": -34.416963 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.063749, "decimalLat": -30.919434 }, "geometry": { "type": "Point", "coordinates": [ 153.064, -30.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604981, "decimalLat": -34.423303 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642975, "decimalLat": -34.395697 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.41558, "decimalLat": -30.63688 }, "geometry": { "type": "Point", "coordinates": [ 151.416, -30.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611689, "decimalLat": -34.41963 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.773921, "decimalLat": -31.141102 }, "geometry": { "type": "Point", "coordinates": [ 152.774, -31.141 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.428881, "decimalLat": -36.255119 }, "geometry": { "type": "Point", "coordinates": [ 149.429, -36.255 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629795, "decimalLat": -34.394478 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513139, "decimalLat": -34.447136 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.000434, "decimalLat": -34.061266 }, "geometry": { "type": "Point", "coordinates": [ 151.0, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.075664, "decimalLat": -28.55488 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -28.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.035625, "decimalLat": -32.763364 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.763 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603074, "decimalLat": -34.43788 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62795, "decimalLat": -34.42092 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.965237, "decimalLat": -36.459771 }, "geometry": { "type": "Point", "coordinates": [ 149.965, -36.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635438, "decimalLat": -34.420425 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.466987, "decimalLat": -28.326808 }, "geometry": { "type": "Point", "coordinates": [ 153.467, -28.327 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378375, "decimalLat": -31.914418 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633849, "decimalLat": -34.489471 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.015244, "decimalLat": -32.723509 }, "geometry": { "type": "Point", "coordinates": [ 152.015, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524297, "decimalLat": -34.470964 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639297, "decimalLat": -34.493183 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.021287, "decimalLat": -36.554124 }, "geometry": { "type": "Point", "coordinates": [ 150.021, -36.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519865, "decimalLat": -34.452609 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.021283, "decimalLat": -34.800551 }, "geometry": { "type": "Point", "coordinates": [ 150.021, -34.801 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895148, "decimalLat": -31.448193 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.650101, "decimalLat": -34.403398 }, "geometry": { "type": "Point", "coordinates": [ 150.65, -34.403 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519033, "decimalLat": -34.4366 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626033, "decimalLat": -34.390195 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631136, "decimalLat": -34.387417 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.337584, "decimalLat": -36.175444 }, "geometry": { "type": "Point", "coordinates": [ 149.338, -36.175 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523837, "decimalLat": -34.463671 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522128, "decimalLat": -34.465908 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400654, "decimalLat": -28.257735 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900786, "decimalLat": -31.447197 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607838, "decimalLat": -34.430725 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90363, "decimalLat": -31.44127 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90564, "decimalLat": -31.438605 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905377, "decimalLat": -31.436746 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.974623, "decimalLat": -32.472237 }, "geometry": { "type": "Point", "coordinates": [ 151.975, -32.472 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100158, "decimalLat": -29.490866 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.150659, "decimalLat": -32.723591 }, "geometry": { "type": "Point", "coordinates": [ 152.151, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081013, "decimalLat": -32.728562 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110152, "decimalLat": -29.490236 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093045, "decimalLat": -29.48862 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189974, "decimalLat": -32.241755 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627393, "decimalLat": -34.386344 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.467912, "decimalLat": -28.329373 }, "geometry": { "type": "Point", "coordinates": [ 153.468, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603245, "decimalLat": -34.435341 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.168586, "decimalLat": -28.624817 }, "geometry": { "type": "Point", "coordinates": [ 153.169, -28.625 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.30434, "decimalLat": -31.952512 }, "geometry": { "type": "Point", "coordinates": [ 152.304, -31.953 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643282, "decimalLat": -34.393278 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60144, "decimalLat": -28.7273 }, "geometry": { "type": "Point", "coordinates": [ 153.601, -28.727 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108135, "decimalLat": -29.490227 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630997, "decimalLat": -34.395042 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60519, "decimalLat": -34.426283 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513737, "decimalLat": -34.446418 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634248, "decimalLat": -34.420168 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.32518, "decimalLat": -28.82053 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532545, "decimalLat": -34.476096 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55565, "decimalLat": -28.59977 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.6 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.283628, "decimalLat": -35.927903 }, "geometry": { "type": "Point", "coordinates": [ 149.284, -35.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277607, "decimalLat": -28.93805 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.938 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796614, "decimalLat": -34.145033 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607671, "decimalLat": -34.436573 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.273922, "decimalLat": -36.168165 }, "geometry": { "type": "Point", "coordinates": [ 149.274, -36.168 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028844, "decimalLat": -32.132422 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.132 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.362191, "decimalLat": -28.649451 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -28.649 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513762, "decimalLat": -34.446301 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52051, "decimalLat": -34.465785 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603579, "decimalLat": -34.427432 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617335, "decimalLat": -34.438438 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104047, "decimalLat": -29.485291 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101322, "decimalLat": -29.490002 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522472, "decimalLat": -34.451671 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886444, "decimalLat": -30.517172 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -30.517 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103771, "decimalLat": -29.485424 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104128, "decimalLat": -29.478753 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.140216, "decimalLat": -28.837883 }, "geometry": { "type": "Point", "coordinates": [ 153.14, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638965, "decimalLat": -34.491463 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51688, "decimalLat": -34.436186 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.323215, "decimalLat": -36.297419 }, "geometry": { "type": "Point", "coordinates": [ 149.323, -36.297 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.445933, "decimalLat": -28.589257 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.254317, "decimalLat": -29.339869 }, "geometry": { "type": "Point", "coordinates": [ 153.254, -29.34 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61461, "decimalLat": -34.43093 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631007, "decimalLat": -34.388506 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641418, "decimalLat": -34.394964 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521526, "decimalLat": -34.466022 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630266, "decimalLat": -34.420947 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095235, "decimalLat": -29.483447 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637345, "decimalLat": -34.423798 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521213, "decimalLat": -34.435724 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.707755, "decimalLat": -31.550983 }, "geometry": { "type": "Point", "coordinates": [ 152.708, -31.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.725053, "decimalLat": -32.604161 }, "geometry": { "type": "Point", "coordinates": [ 151.725, -32.604 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513105, "decimalLat": -34.447162 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59614, "decimalLat": -28.845689 }, "geometry": { "type": "Point", "coordinates": [ 153.596, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.652747, "decimalLat": -32.686658 }, "geometry": { "type": "Point", "coordinates": [ 151.653, -32.687 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394806, "decimalLat": -29.015237 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.015 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784508, "decimalLat": -33.716466 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.678336, "decimalLat": -32.966096 }, "geometry": { "type": "Point", "coordinates": [ 149.678, -32.966 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.111759, "decimalLat": -32.738641 }, "geometry": { "type": "Point", "coordinates": [ 152.112, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09525, "decimalLat": -29.483481 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600493, "decimalLat": -34.427299 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312937, "decimalLat": -28.858382 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621903, "decimalLat": -34.397795 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601537, "decimalLat": -34.417818 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.218041, "decimalLat": -28.830562 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.34316, "decimalLat": -28.858812 }, "geometry": { "type": "Point", "coordinates": [ 153.343, -28.859 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87346, "decimalLat": -31.457817 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103951, "decimalLat": -29.489531 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907006, "decimalLat": -31.449835 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627491, "decimalLat": -34.421362 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101177, "decimalLat": -29.489979 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785232, "decimalLat": -33.708214 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639144, "decimalLat": -34.392693 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522876, "decimalLat": -34.450913 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637467, "decimalLat": -34.421781 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.587844, "decimalLat": -34.773124 }, "geometry": { "type": "Point", "coordinates": [ 146.588, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628947, "decimalLat": -34.390612 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10748, "decimalLat": -29.490114 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.839908, "decimalLat": -34.079306 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.079 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516225, "decimalLat": -34.445441 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.14144, "decimalLat": -30.278132 }, "geometry": { "type": "Point", "coordinates": [ 153.141, -30.278 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519901, "decimalLat": -34.452881 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302986, "decimalLat": -28.822501 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523877, "decimalLat": -34.512 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878763, "decimalLat": -29.662278 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273151, "decimalLat": -28.816275 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520305, "decimalLat": -34.465708 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514331, "decimalLat": -34.446556 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.844131, "decimalLat": -34.098087 }, "geometry": { "type": "Point", "coordinates": [ 150.844, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617689, "decimalLat": -34.450481 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.267189, "decimalLat": -28.920319 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -28.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.100785, "decimalLat": -33.778902 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883713, "decimalLat": -29.660144 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -29.66 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.394606, "decimalLat": -31.944825 }, "geometry": { "type": "Point", "coordinates": [ 152.395, -31.945 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39463, "decimalLat": -28.288936 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.289 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627315, "decimalLat": -34.420277 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604293, "decimalLat": -34.426815 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905373, "decimalLat": -31.437668 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.299156, "decimalLat": -31.946761 }, "geometry": { "type": "Point", "coordinates": [ 152.299, -31.947 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785221, "decimalLat": -33.716293 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657642, "decimalLat": -34.455887 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374065, "decimalLat": -31.915492 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918745, "decimalLat": -31.453816 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623996, "decimalLat": -34.388794 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.772936, "decimalLat": -31.225616 }, "geometry": { "type": "Point", "coordinates": [ 152.773, -31.226 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.116345, "decimalLat": -28.561525 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -28.562 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86366, "decimalLat": -31.146058 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528958, "decimalLat": -34.471257 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.813158, "decimalLat": -31.65887 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -31.659 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523116, "decimalLat": -34.464503 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.441886, "decimalLat": -34.470055 }, "geometry": { "type": "Point", "coordinates": [ 150.442, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516459, "decimalLat": -34.450043 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.803384, "decimalLat": -34.099778 }, "geometry": { "type": "Point", "coordinates": [ 150.803, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603228, "decimalLat": -34.439344 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616346, "decimalLat": -34.436102 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659664, "decimalLat": -34.458324 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.61099, "decimalLat": -32.90371 }, "geometry": { "type": "Point", "coordinates": [ 151.611, -32.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522508, "decimalLat": -34.466664 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.489942, "decimalLat": -28.631915 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87607, "decimalLat": -29.677883 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -29.678 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.072111, "decimalLat": -30.885806 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785791, "decimalLat": -33.713902 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.350046, "decimalLat": -33.417464 }, "geometry": { "type": "Point", "coordinates": [ 149.35, -33.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616612, "decimalLat": -34.437838 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.573795, "decimalLat": -29.860281 }, "geometry": { "type": "Point", "coordinates": [ 150.574, -29.86 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626035, "decimalLat": -34.390122 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.332101, "decimalLat": -30.643768 }, "geometry": { "type": "Point", "coordinates": [ 151.332, -30.644 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325901, "decimalLat": -28.834659 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.835 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101274, "decimalLat": -29.490114 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403568, "decimalLat": -28.650953 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627398, "decimalLat": -34.421207 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107427, "decimalLat": -29.4901 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.622529, "decimalLat": -30.492423 }, "geometry": { "type": "Point", "coordinates": [ 151.623, -30.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.471384, "decimalLat": -31.943285 }, "geometry": { "type": "Point", "coordinates": [ 152.471, -31.943 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.577567, "decimalLat": -34.476 }, "geometry": { "type": "Point", "coordinates": [ 150.578, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87643, "decimalLat": -31.457964 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.3209, "decimalLat": -28.844482 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867778, "decimalLat": -31.463333 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522174, "decimalLat": -34.451466 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101971, "decimalLat": -29.488812 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657262, "decimalLat": -34.455069 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929581, "decimalLat": -31.458591 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10813, "decimalLat": -29.490264 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624357, "decimalLat": -34.400638 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610366, "decimalLat": -34.419109 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622039, "decimalLat": -34.397591 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109422, "decimalLat": -29.490488 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.679004, "decimalLat": -33.534672 }, "geometry": { "type": "Point", "coordinates": [ 149.679, -33.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.044129, "decimalLat": -30.936905 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -30.937 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302184, "decimalLat": -28.818632 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.980216, "decimalLat": -30.422288 }, "geometry": { "type": "Point", "coordinates": [ 152.98, -30.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.157778, "decimalLat": -31.775333 }, "geometry": { "type": "Point", "coordinates": [ 150.158, -31.775 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608806, "decimalLat": -34.455545 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518463, "decimalLat": -34.452184 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394861, "decimalLat": -28.275582 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.699675, "decimalLat": -30.290401 }, "geometry": { "type": "Point", "coordinates": [ 152.7, -30.29 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881156, "decimalLat": -31.42228 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.422 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.474958, "decimalLat": -28.25361 }, "geometry": { "type": "Point", "coordinates": [ 153.475, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521454, "decimalLat": -34.465867 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926892, "decimalLat": -31.466317 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.943845, "decimalLat": -32.003815 }, "geometry": { "type": "Point", "coordinates": [ 151.944, -32.004 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90469, "decimalLat": -31.444461 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109696, "decimalLat": -29.491529 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610246, "decimalLat": -34.419124 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.103635, "decimalLat": -33.775679 }, "geometry": { "type": "Point", "coordinates": [ 150.104, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.354081, "decimalLat": -31.92614 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.112743, "decimalLat": -30.263237 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -30.263 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104927, "decimalLat": -29.48969 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78605, "decimalLat": -29.187534 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -29.188 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.807831, "decimalLat": -31.140562 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -31.141 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103821, "decimalLat": -29.485494 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101853, "decimalLat": -29.489316 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635788, "decimalLat": -34.419576 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905522, "decimalLat": -31.436985 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529616, "decimalLat": -34.458919 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601772, "decimalLat": -34.428623 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900839, "decimalLat": -31.443161 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640746, "decimalLat": -34.494302 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519474, "decimalLat": -34.467675 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.008361, "decimalLat": -28.653956 }, "geometry": { "type": "Point", "coordinates": [ 153.008, -28.654 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929344, "decimalLat": -29.726819 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313992, "decimalLat": -28.81222 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.812 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523895, "decimalLat": -34.471308 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.417908, "decimalLat": -31.946054 }, "geometry": { "type": "Point", "coordinates": [ 152.418, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.133501, "decimalLat": -28.561971 }, "geometry": { "type": "Point", "coordinates": [ 153.134, -28.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604172, "decimalLat": -34.437929 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.917922, "decimalLat": -36.474664 }, "geometry": { "type": "Point", "coordinates": [ 149.918, -36.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786179, "decimalLat": -33.70615 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639435, "decimalLat": -34.400119 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657024, "decimalLat": -34.454631 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518156, "decimalLat": -34.451538 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918794, "decimalLat": -31.454786 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.555555, "decimalLat": -34.74265 }, "geometry": { "type": "Point", "coordinates": [ 146.556, -34.743 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926415, "decimalLat": -31.454468 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.05735, "decimalLat": -29.739275 }, "geometry": { "type": "Point", "coordinates": [ 151.057, -29.739 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10416, "decimalLat": -29.485069 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918206, "decimalLat": -31.469908 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104514, "decimalLat": -29.476684 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897136, "decimalLat": -31.442702 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640565, "decimalLat": -34.494172 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62631, "decimalLat": -34.421195 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824856, "decimalLat": -29.505303 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.505 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626247, "decimalLat": -34.395698 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786689, "decimalLat": -33.705918 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517346, "decimalLat": -34.452044 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625476, "decimalLat": -34.389904 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607272, "decimalLat": -34.435672 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104761, "decimalLat": -29.48968 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922256, "decimalLat": -31.158259 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.158 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91908, "decimalLat": -31.468845 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.124941, "decimalLat": -33.04652 }, "geometry": { "type": "Point", "coordinates": [ 151.125, -33.047 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00565, "decimalLat": -32.727602 }, "geometry": { "type": "Point", "coordinates": [ 152.006, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793993, "decimalLat": -29.222512 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -29.223 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313501, "decimalLat": -28.855481 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.855 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616256, "decimalLat": -34.440031 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065241, "decimalLat": -32.710393 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616269, "decimalLat": -34.434595 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.832147, "decimalLat": -31.472717 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606913, "decimalLat": -34.439479 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.887227, "decimalLat": -34.066693 }, "geometry": { "type": "Point", "coordinates": [ 150.887, -34.067 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104165, "decimalLat": -29.480789 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.245714, "decimalLat": -33.169384 }, "geometry": { "type": "Point", "coordinates": [ 151.246, -33.169 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925962, "decimalLat": -31.453187 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638773, "decimalLat": -34.489359 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102272, "decimalLat": -29.48834 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516063, "decimalLat": -34.449458 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.796527, "decimalLat": -31.1425 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.142 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.880518, "decimalLat": -34.023695 }, "geometry": { "type": "Point", "coordinates": [ 150.881, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629826, "decimalLat": -34.420741 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61563, "decimalLat": -34.437936 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631055, "decimalLat": -34.389111 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.835862, "decimalLat": -28.482389 }, "geometry": { "type": "Point", "coordinates": [ 152.836, -28.482 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104085, "decimalLat": -29.485361 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877336, "decimalLat": -29.674141 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -29.674 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.973449, "decimalLat": -30.418497 }, "geometry": { "type": "Point", "coordinates": [ 152.973, -30.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609223, "decimalLat": -34.420655 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561464, "decimalLat": -28.388041 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519939, "decimalLat": -34.447175 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534513, "decimalLat": -34.462273 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.965237, "decimalLat": -36.459771 }, "geometry": { "type": "Point", "coordinates": [ 149.965, -36.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639161, "decimalLat": -34.493 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090915, "decimalLat": -29.48743 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.481911, "decimalLat": -28.64025 }, "geometry": { "type": "Point", "coordinates": [ 153.482, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657413, "decimalLat": -34.455919 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898137, "decimalLat": -31.454879 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79285, "decimalLat": -34.145116 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.145 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784251, "decimalLat": -33.717336 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631485, "decimalLat": -34.386973 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789445, "decimalLat": -34.20198 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.202 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.173645, "decimalLat": -32.720258 }, "geometry": { "type": "Point", "coordinates": [ 152.174, -32.72 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.780333, "decimalLat": -32.714185 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517949, "decimalLat": -34.447874 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530348, "decimalLat": -34.471375 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599287, "decimalLat": -34.429142 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.971519, "decimalLat": -32.174066 }, "geometry": { "type": "Point", "coordinates": [ 151.972, -32.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529482, "decimalLat": -34.468247 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609302, "decimalLat": -34.42017 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918134, "decimalLat": -31.485334 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103854, "decimalLat": -29.485571 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.478683 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521045, "decimalLat": -34.464597 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872924, "decimalLat": -31.456647 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628235, "decimalLat": -34.420439 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955133, "decimalLat": -36.57367 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785383, "decimalLat": -33.717047 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662189, "decimalLat": -34.458309 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.759299, "decimalLat": -30.84178 }, "geometry": { "type": "Point", "coordinates": [ 152.759, -30.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468867, "decimalLat": -28.261488 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526657, "decimalLat": -34.469569 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631778, "decimalLat": -34.387015 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603013, "decimalLat": -34.424401 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785282, "decimalLat": -33.705579 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104208, "decimalLat": -29.482214 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.115127, "decimalLat": -32.765951 }, "geometry": { "type": "Point", "coordinates": [ 152.115, -32.766 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.98576, "decimalLat": -32.72811 }, "geometry": { "type": "Point", "coordinates": [ 151.986, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.215, "decimalLat": -32.029833 }, "geometry": { "type": "Point", "coordinates": [ 152.215, -32.03 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.863295, "decimalLat": -34.042768 }, "geometry": { "type": "Point", "coordinates": [ 150.863, -34.043 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.098012, "decimalLat": -29.48919 }, "geometry": { "type": "Point", "coordinates": [ 153.098, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901949, "decimalLat": -31.445989 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609543, "decimalLat": -34.430831 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.03886, "decimalLat": -31.17763 }, "geometry": { "type": "Point", "coordinates": [ 150.039, -31.178 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063687, "decimalLat": -32.706571 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531711, "decimalLat": -34.469437 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640148, "decimalLat": -34.396048 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602981, "decimalLat": -34.42742 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.938179, "decimalLat": -33.296261 }, "geometry": { "type": "Point", "coordinates": [ 150.938, -33.296 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627214, "decimalLat": -34.389595 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622865, "decimalLat": -34.384543 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065122, "decimalLat": -32.742829 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.743 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89258, "decimalLat": -31.449213 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403814, "decimalLat": -28.842314 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.933675, "decimalLat": -36.577361 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099005, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898794, "decimalLat": -31.439508 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626522, "decimalLat": -34.385606 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.248538, "decimalLat": -28.609899 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -28.61 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521451, "decimalLat": -34.464866 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599291, "decimalLat": -34.429764 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.956825, "decimalLat": -28.624194 }, "geometry": { "type": "Point", "coordinates": [ 152.957, -28.624 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513046, "decimalLat": -34.445854 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.759299, "decimalLat": -30.84178 }, "geometry": { "type": "Point", "coordinates": [ 152.759, -30.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.805693, "decimalLat": -31.536568 }, "geometry": { "type": "Point", "coordinates": [ 152.806, -31.537 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.409406, "decimalLat": -31.910186 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317651, "decimalLat": -28.862857 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.863 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.485487 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912339, "decimalLat": -31.466501 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.377728, "decimalLat": -31.876193 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.876 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909674, "decimalLat": -31.43067 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.965822, "decimalLat": -31.200967 }, "geometry": { "type": "Point", "coordinates": [ 152.966, -31.201 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521345, "decimalLat": -34.459248 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62445, "decimalLat": -34.388108 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072216, "decimalLat": -32.711197 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379609, "decimalLat": -31.911449 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.911 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8325, "decimalLat": -29.642636 }, "geometry": { "type": "Point", "coordinates": [ 152.833, -29.643 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.971387, "decimalLat": -34.123519 }, "geometry": { "type": "Point", "coordinates": [ 150.971, -34.124 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.517069, "decimalLat": -28.201099 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.201 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.834763, "decimalLat": -34.073712 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.074 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627179, "decimalLat": -34.385826 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.931549, "decimalLat": -29.723819 }, "geometry": { "type": "Point", "coordinates": [ 152.932, -29.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092267, "decimalLat": -29.488116 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520294, "decimalLat": -34.465708 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.854881, "decimalLat": -32.722194 }, "geometry": { "type": "Point", "coordinates": [ 151.855, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527287, "decimalLat": -34.458178 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60962, "decimalLat": -34.419707 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.840112, "decimalLat": -34.065309 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.065 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625701, "decimalLat": -34.386167 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517031, "decimalLat": -34.44689 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619064, "decimalLat": -34.400878 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516921, "decimalLat": -34.449494 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.146267, "decimalLat": -34.928544 }, "geometry": { "type": "Point", "coordinates": [ 150.146, -34.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.901139, "decimalLat": -34.009056 }, "geometry": { "type": "Point", "coordinates": [ 150.901, -34.009 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632626, "decimalLat": -34.418288 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.450907, "decimalLat": -28.976503 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515934, "decimalLat": -34.45747 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375014, "decimalLat": -28.254046 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520751, "decimalLat": -34.467205 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60281, "decimalLat": -34.435333 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927623, "decimalLat": -31.465638 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.057991, "decimalLat": -29.736994 }, "geometry": { "type": "Point", "coordinates": [ 151.058, -29.737 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.476669, "decimalLat": -28.283096 }, "geometry": { "type": "Point", "coordinates": [ 153.477, -28.283 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883172, "decimalLat": -31.428813 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634502, "decimalLat": -34.420029 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513117, "decimalLat": -34.446017 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.603521, "decimalLat": -28.825541 }, "geometry": { "type": "Point", "coordinates": [ 153.604, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103577, "decimalLat": -32.725825 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.548611, "decimalLat": -28.405 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.405 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.826358, "decimalLat": -29.811157 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601393, "decimalLat": -34.426641 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527581, "decimalLat": -34.455735 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633624, "decimalLat": -34.418389 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637884, "decimalLat": -34.488864 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926937, "decimalLat": -31.454938 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.406634, "decimalLat": -31.910009 }, "geometry": { "type": "Point", "coordinates": [ 152.407, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655888, "decimalLat": -34.456341 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.191129, "decimalLat": -31.594109 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -31.594 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.955853, "decimalLat": -32.305306 }, "geometry": { "type": "Point", "coordinates": [ 151.956, -32.305 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909528, "decimalLat": -31.439921 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.058653, "decimalLat": -29.740224 }, "geometry": { "type": "Point", "coordinates": [ 151.059, -29.74 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383697, "decimalLat": -31.924253 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901028, "decimalLat": -31.473845 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.117247, "decimalLat": -32.764468 }, "geometry": { "type": "Point", "coordinates": [ 152.117, -32.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.063144, "decimalLat": -30.272467 }, "geometry": { "type": "Point", "coordinates": [ 153.063, -30.272 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.710408, "decimalLat": -31.592736 }, "geometry": { "type": "Point", "coordinates": [ 152.71, -31.593 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629932, "decimalLat": -34.395382 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784736, "decimalLat": -33.714038 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895995, "decimalLat": -31.436541 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606626, "decimalLat": -34.434677 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563841, "decimalLat": -28.387941 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78557, "decimalLat": -33.713156 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631268, "decimalLat": -34.387754 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605237, "decimalLat": -34.437959 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498827, "decimalLat": -28.240955 }, "geometry": { "type": "Point", "coordinates": [ 153.499, -28.241 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627215, "decimalLat": -34.420338 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597931, "decimalLat": -34.425969 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924676, "decimalLat": -31.444306 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101671, "decimalLat": -29.489153 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.193373, "decimalLat": -32.220759 }, "geometry": { "type": "Point", "coordinates": [ 152.193, -32.221 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552128, "decimalLat": -33.491219 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625232, "decimalLat": -34.385842 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784642, "decimalLat": -31.630062 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077582, "decimalLat": -30.345268 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.345 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.20513, "decimalLat": -32.22154 }, "geometry": { "type": "Point", "coordinates": [ 152.205, -32.222 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900516, "decimalLat": -29.631317 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618107, "decimalLat": -34.429618 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659544, "decimalLat": -34.458331 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921842, "decimalLat": -31.460665 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930047, "decimalLat": -31.456222 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600388, "decimalLat": -34.428686 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.13522, "decimalLat": -28.8747 }, "geometry": { "type": "Point", "coordinates": [ 153.135, -28.875 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895709, "decimalLat": -31.473214 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922601, "decimalLat": -31.447129 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616092, "decimalLat": -34.434294 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517924, "decimalLat": -34.439498 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920224, "decimalLat": -30.504429 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -30.504 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901675, "decimalLat": -31.446692 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601505, "decimalLat": -34.425029 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.72632, "decimalLat": -30.157302 }, "geometry": { "type": "Point", "coordinates": [ 152.726, -30.157 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.866027, "decimalLat": -34.060984 }, "geometry": { "type": "Point", "coordinates": [ 150.866, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516191, "decimalLat": -34.449515 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.992845, "decimalLat": -32.014552 }, "geometry": { "type": "Point", "coordinates": [ 151.993, -32.015 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.194946, "decimalLat": -28.879476 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -28.879 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.961159, "decimalLat": -32.018393 }, "geometry": { "type": "Point", "coordinates": [ 151.961, -32.018 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520283, "decimalLat": -34.453934 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37985, "decimalLat": -31.920413 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.083346, "decimalLat": -32.739859 }, "geometry": { "type": "Point", "coordinates": [ 152.083, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520315, "decimalLat": -34.465745 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635803, "decimalLat": -34.392755 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.33194, "decimalLat": -32.325771 }, "geometry": { "type": "Point", "coordinates": [ 152.332, -32.326 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.882196, "decimalLat": -34.049376 }, "geometry": { "type": "Point", "coordinates": [ 150.882, -34.049 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514741, "decimalLat": -34.444103 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.756984, "decimalLat": -31.628707 }, "geometry": { "type": "Point", "coordinates": [ 152.757, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600205, "decimalLat": -34.428646 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513807, "decimalLat": -34.447348 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790715, "decimalLat": -34.183338 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.183 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.194868, "decimalLat": -28.885364 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -28.885 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.003562, "decimalLat": -33.9837 }, "geometry": { "type": "Point", "coordinates": [ 151.004, -33.984 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526824, "decimalLat": -34.469429 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785438, "decimalLat": -33.71762 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865916, "decimalLat": -31.304895 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -31.305 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.970434, "decimalLat": -31.163366 }, "geometry": { "type": "Point", "coordinates": [ 152.97, -31.163 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399425, "decimalLat": -28.260392 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557109, "decimalLat": -28.381234 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615742, "decimalLat": -34.437416 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848121, "decimalLat": -34.078074 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.078 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915001, "decimalLat": -31.468209 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616353, "decimalLat": -34.434326 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277469, "decimalLat": -28.937766 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.938 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.601837, "decimalLat": -34.763847 }, "geometry": { "type": "Point", "coordinates": [ 146.602, -34.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637343, "decimalLat": -34.423843 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.030808, "decimalLat": -28.849862 }, "geometry": { "type": "Point", "coordinates": [ 153.031, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513744, "decimalLat": -34.447283 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300422, "decimalLat": -31.948252 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913599, "decimalLat": -31.263661 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.264 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516313, "decimalLat": -34.449093 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562726, "decimalLat": -28.391267 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926242, "decimalLat": -31.459055 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.52855, "decimalLat": -28.556 }, "geometry": { "type": "Point", "coordinates": [ 153.529, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302376, "decimalLat": -28.846727 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515442, "decimalLat": -34.443586 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.591511, "decimalLat": -31.558685 }, "geometry": { "type": "Point", "coordinates": [ 152.592, -31.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523287, "decimalLat": -34.459107 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631288, "decimalLat": -34.38742 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.106937, "decimalLat": -34.991301 }, "geometry": { "type": "Point", "coordinates": [ 150.107, -34.991 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637465, "decimalLat": -34.421456 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.10783, "decimalLat": -31.15855 }, "geometry": { "type": "Point", "coordinates": [ 150.108, -31.159 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103704, "decimalLat": -29.485188 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914707, "decimalLat": -31.448727 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.401182, "decimalLat": -31.914553 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514828, "decimalLat": -34.441923 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.18716, "decimalLat": -31.574191 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -31.574 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.125419, "decimalLat": -34.055382 }, "geometry": { "type": "Point", "coordinates": [ 151.125, -34.055 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904119, "decimalLat": -31.430264 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92476, "decimalLat": -31.453932 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51419, "decimalLat": -34.447265 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400968, "decimalLat": -28.605847 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.606 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783953, "decimalLat": -33.717627 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909403, "decimalLat": -31.443334 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514864, "decimalLat": -34.446585 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.460817, "decimalLat": -28.325659 }, "geometry": { "type": "Point", "coordinates": [ 153.461, -28.326 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.141468, "decimalLat": -31.958711 }, "geometry": { "type": "Point", "coordinates": [ 152.141, -31.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605456, "decimalLat": -34.4238 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.980948, "decimalLat": -34.094371 }, "geometry": { "type": "Point", "coordinates": [ 150.981, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.35131, "decimalLat": -28.899787 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -28.9 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631472, "decimalLat": -34.38783 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.210548, "decimalLat": -28.928152 }, "geometry": { "type": "Point", "coordinates": [ 153.211, -28.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516795, "decimalLat": -34.446417 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.578194, "decimalLat": -28.867451 }, "geometry": { "type": "Point", "coordinates": [ 153.578, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.386481, "decimalLat": -36.212513 }, "geometry": { "type": "Point", "coordinates": [ 149.386, -36.213 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.587255, "decimalLat": -28.865072 }, "geometry": { "type": "Point", "coordinates": [ 153.587, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627508, "decimalLat": -34.421164 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927141, "decimalLat": -31.469157 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52443, "decimalLat": -34.463863 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108183, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093817, "decimalLat": -30.318215 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -30.318 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605022, "decimalLat": -34.437873 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104138, "decimalLat": -29.480107 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.118095, "decimalLat": -32.76419 }, "geometry": { "type": "Point", "coordinates": [ 152.118, -32.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.805509, "decimalLat": -34.099116 }, "geometry": { "type": "Point", "coordinates": [ 150.806, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108054, "decimalLat": -29.490348 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52269, "decimalLat": -34.464206 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334201, "decimalLat": -28.821466 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557464, "decimalLat": -28.394275 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517274, "decimalLat": -34.451547 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637161, "decimalLat": -34.423731 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783711, "decimalLat": -33.718645 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.778378, "decimalLat": -34.139613 }, "geometry": { "type": "Point", "coordinates": [ 150.778, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.080881, "decimalLat": -29.746685 }, "geometry": { "type": "Point", "coordinates": [ 151.081, -29.747 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.18402, "decimalLat": -32.013104 }, "geometry": { "type": "Point", "coordinates": [ 152.184, -32.013 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.490175 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102256, "decimalLat": -29.488298 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.265895, "decimalLat": -36.067862 }, "geometry": { "type": "Point", "coordinates": [ 149.266, -36.068 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072174, "decimalLat": -32.710682 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637603, "decimalLat": -34.488399 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637517, "decimalLat": -34.423837 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87081, "decimalLat": -31.303957 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.304 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071746, "decimalLat": -30.88573 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316233, "decimalLat": -28.846422 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.846 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516189, "decimalLat": -34.449235 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072328, "decimalLat": -32.710748 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103908, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892863, "decimalLat": -31.457386 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104047, "decimalLat": -29.484011 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.017057, "decimalLat": -32.731882 }, "geometry": { "type": "Point", "coordinates": [ 152.017, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623195, "decimalLat": -34.384027 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.796193, "decimalLat": -30.221815 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -30.222 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61169, "decimalLat": -34.432982 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512792, "decimalLat": -34.446705 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825403, "decimalLat": -31.571716 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.572 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908587, "decimalLat": -31.441229 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.351351, "decimalLat": -28.883408 }, "geometry": { "type": "Point", "coordinates": [ 153.351, -28.883 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64012, "decimalLat": -34.492955 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517263, "decimalLat": -34.451565 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520295, "decimalLat": -34.465681 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.292426, "decimalLat": -31.895028 }, "geometry": { "type": "Point", "coordinates": [ 152.292, -31.895 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612101, "decimalLat": -34.432314 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.540559, "decimalLat": -32.059321 }, "geometry": { "type": "Point", "coordinates": [ 152.541, -32.059 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615909, "decimalLat": -34.43576 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109782, "decimalLat": -29.490199 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609542, "decimalLat": -34.419011 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437185, "decimalLat": -29.026499 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -29.026 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101574, "decimalLat": -29.489802 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632757, "decimalLat": -34.419815 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.461934, "decimalLat": -28.650527 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065351, "decimalLat": -32.710965 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514309, "decimalLat": -34.447322 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.962609, "decimalLat": -34.099398 }, "geometry": { "type": "Point", "coordinates": [ 150.963, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635371, "decimalLat": -34.419694 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.328498, "decimalLat": -36.147372 }, "geometry": { "type": "Point", "coordinates": [ 149.328, -36.147 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513153, "decimalLat": -34.445919 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522145, "decimalLat": -34.464213 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908214, "decimalLat": -31.183216 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.183 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.871937, "decimalLat": -31.286282 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.286 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103779, "decimalLat": -29.485534 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786008, "decimalLat": -33.704543 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929126, "decimalLat": -31.459598 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.012943, "decimalLat": -30.423246 }, "geometry": { "type": "Point", "coordinates": [ 153.013, -30.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.289719, "decimalLat": -28.936691 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.937 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103763, "decimalLat": -29.485155 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.797826, "decimalLat": -32.521604 }, "geometry": { "type": "Point", "coordinates": [ 151.798, -32.522 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.992352, "decimalLat": -30.514694 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -30.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523086, "decimalLat": -34.452251 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454341, "decimalLat": -28.653446 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109975, "decimalLat": -29.490259 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.828331, "decimalLat": -31.649833 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -31.65 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784114, "decimalLat": -33.717538 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516361, "decimalLat": -34.450032 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616212, "decimalLat": -34.430095 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603391, "decimalLat": -34.427185 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88479, "decimalLat": -31.440117 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415624, "decimalLat": -31.933448 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520474, "decimalLat": -34.454091 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787074, "decimalLat": -33.703887 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335477, "decimalLat": -28.479923 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897922, "decimalLat": -31.436383 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924453, "decimalLat": -31.444562 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099302, "decimalLat": -29.490877 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.848198, "decimalLat": -31.060477 }, "geometry": { "type": "Point", "coordinates": [ 152.848, -31.06 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095244, "decimalLat": -29.483477 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622371, "decimalLat": -33.440682 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -33.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.903703, "decimalLat": -33.99746 }, "geometry": { "type": "Point", "coordinates": [ 150.904, -33.997 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513082, "decimalLat": -34.447225 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.375627, "decimalLat": -28.999986 }, "geometry": { "type": "Point", "coordinates": [ 153.376, -29.0 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893002, "decimalLat": -31.437476 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.935691, "decimalLat": -33.936341 }, "geometry": { "type": "Point", "coordinates": [ 150.936, -33.936 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103945, "decimalLat": -29.489559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.854058, "decimalLat": -31.548541 }, "geometry": { "type": "Point", "coordinates": [ 152.854, -31.549 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.376481, "decimalLat": -31.926376 }, "geometry": { "type": "Point", "coordinates": [ 152.376, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.939105, "decimalLat": -29.769535 }, "geometry": { "type": "Point", "coordinates": [ 150.939, -29.77 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922796, "decimalLat": -31.460949 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.727323, "decimalLat": -32.245504 }, "geometry": { "type": "Point", "coordinates": [ 151.727, -32.246 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.428937, "decimalLat": -31.945217 }, "geometry": { "type": "Point", "coordinates": [ 152.429, -31.945 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.34022, "decimalLat": -31.980755 }, "geometry": { "type": "Point", "coordinates": [ 152.34, -31.981 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104214, "decimalLat": -29.479566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520467, "decimalLat": -34.465739 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924315, "decimalLat": -31.465233 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.021287, "decimalLat": -36.554124 }, "geometry": { "type": "Point", "coordinates": [ 150.021, -36.554 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110586, "decimalLat": -29.49004 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527253, "decimalLat": -34.472611 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.473 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.704764, "decimalLat": -33.479658 }, "geometry": { "type": "Point", "coordinates": [ 150.705, -33.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102422, "decimalLat": -29.489367 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412625, "decimalLat": -31.932147 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616104, "decimalLat": -34.435791 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.286672, "decimalLat": -28.869331 }, "geometry": { "type": "Point", "coordinates": [ 153.287, -28.869 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102416, "decimalLat": -29.488111 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609376, "decimalLat": -34.420658 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630034, "decimalLat": -34.395267 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895376, "decimalLat": -31.435876 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063712, "decimalLat": -32.70649 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.55109, "decimalLat": -32.85631 }, "geometry": { "type": "Point", "coordinates": [ 151.551, -32.856 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785179, "decimalLat": -33.709559 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092921, "decimalLat": -29.48855 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605534, "decimalLat": -34.43214 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615917, "decimalLat": -34.436265 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786936, "decimalLat": -33.705743 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600389, "decimalLat": -34.42865 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109417, "decimalLat": -29.490633 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628979, "decimalLat": -34.390621 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61412, "decimalLat": -34.432858 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924875, "decimalLat": -31.468579 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78302, "decimalLat": -33.719507 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.72 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.733989, "decimalLat": -34.212033 }, "geometry": { "type": "Point", "coordinates": [ 150.734, -34.212 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.697425, "decimalLat": -32.701559 }, "geometry": { "type": "Point", "coordinates": [ 151.697, -32.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321959, "decimalLat": -28.816413 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60155, "decimalLat": -28.68121 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.288754, "decimalLat": -31.163701 }, "geometry": { "type": "Point", "coordinates": [ 150.289, -31.164 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523866, "decimalLat": -34.463806 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630829, "decimalLat": -34.42067 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79498, "decimalLat": -34.13952 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924506, "decimalLat": -30.506362 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.440205, "decimalLat": -30.881636 }, "geometry": { "type": "Point", "coordinates": [ 152.44, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.606027, "decimalLat": -28.68603 }, "geometry": { "type": "Point", "coordinates": [ 153.606, -28.686 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902377, "decimalLat": -31.442079 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785299, "decimalLat": -33.710818 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63106, "decimalLat": -34.386244 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607807, "decimalLat": -34.441732 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514971, "decimalLat": -34.445541 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638965, "decimalLat": -34.491463 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616802, "decimalLat": -34.434984 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.736498, "decimalLat": -32.551635 }, "geometry": { "type": "Point", "coordinates": [ 151.736, -32.552 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071682, "decimalLat": -28.585441 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -28.585 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.969776, "decimalLat": -36.511423 }, "geometry": { "type": "Point", "coordinates": [ 149.97, -36.511 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526111, "decimalLat": -34.443361 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63063, "decimalLat": -34.420783 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916224, "decimalLat": -31.476707 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51898, "decimalLat": -28.57492 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638552, "decimalLat": -34.490635 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629102, "decimalLat": -34.395122 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918615, "decimalLat": -31.48485 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.110282, "decimalLat": -29.762752 }, "geometry": { "type": "Point", "coordinates": [ 151.11, -29.763 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.007545, "decimalLat": -31.774385 }, "geometry": { "type": "Point", "coordinates": [ 151.008, -31.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637303, "decimalLat": -34.423734 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785149, "decimalLat": -33.709479 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619998, "decimalLat": -34.400932 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611689, "decimalLat": -34.41963 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523834, "decimalLat": -34.46377 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.070842, "decimalLat": -30.893988 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.894 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51749, "decimalLat": -34.446449 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924282, "decimalLat": -31.459941 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879106, "decimalLat": -31.458053 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627365, "decimalLat": -34.421216 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.110282, "decimalLat": -29.762752 }, "geometry": { "type": "Point", "coordinates": [ 151.11, -29.763 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521349, "decimalLat": -34.466847 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.488602, "decimalLat": -28.655722 }, "geometry": { "type": "Point", "coordinates": [ 153.489, -28.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513048, "decimalLat": -34.447251 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.110282, "decimalLat": -29.762752 }, "geometry": { "type": "Point", "coordinates": [ 151.11, -29.763 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.489931, "decimalLat": -30.654341 }, "geometry": { "type": "Point", "coordinates": [ 151.49, -30.654 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.991638, "decimalLat": -34.021692 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -34.022 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.54955, "decimalLat": -28.60141 }, "geometry": { "type": "Point", "coordinates": [ 153.55, -28.601 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428133, "decimalLat": -28.558093 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.558 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277512, "decimalLat": -28.938938 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.939 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.574297, "decimalLat": -34.509 }, "geometry": { "type": "Point", "coordinates": [ 150.574, -34.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.965101, "decimalLat": -34.028381 }, "geometry": { "type": "Point", "coordinates": [ 150.965, -34.028 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912811, "decimalLat": -31.469932 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555846, "decimalLat": -28.604193 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.604 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.173943, "decimalLat": -32.662205 }, "geometry": { "type": "Point", "coordinates": [ 152.174, -32.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595795, "decimalLat": -34.42572 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110586, "decimalLat": -29.489844 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604523, "decimalLat": -34.426396 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.605566, "decimalLat": -28.660932 }, "geometry": { "type": "Point", "coordinates": [ 153.606, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.092919, "decimalLat": -32.730633 }, "geometry": { "type": "Point", "coordinates": [ 152.093, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.057457, "decimalLat": -30.207297 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -30.207 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869656, "decimalLat": -31.393213 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -31.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517637, "decimalLat": -34.44775 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293236, "decimalLat": -28.864525 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.33124, "decimalLat": -28.82175 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10372, "decimalLat": -29.485851 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905986, "decimalLat": -31.448054 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514097, "decimalLat": -34.446389 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52669, "decimalLat": -34.469552 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616367, "decimalLat": -34.434588 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792395, "decimalLat": -31.642103 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607632, "decimalLat": -34.422301 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.426993, "decimalLat": -28.729831 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516079, "decimalLat": -34.459177 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644532, "decimalLat": -34.393284 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515401, "decimalLat": -34.444973 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561767, "decimalLat": -28.386939 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.94486, "decimalLat": -30.38985 }, "geometry": { "type": "Point", "coordinates": [ 152.945, -30.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.284859, "decimalLat": -28.454651 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787432, "decimalLat": -33.705565 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.478655 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03529, "decimalLat": -32.73763 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103779, "decimalLat": -29.485552 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.67902, "decimalLat": -32.508841 }, "geometry": { "type": "Point", "coordinates": [ 151.679, -32.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.216293, "decimalLat": -32.408767 }, "geometry": { "type": "Point", "coordinates": [ 152.216, -32.409 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82929, "decimalLat": -31.26329 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -31.263 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638432, "decimalLat": -34.491444 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.647889, "decimalLat": -34.299808 }, "geometry": { "type": "Point", "coordinates": [ 150.648, -34.3 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888034, "decimalLat": -31.453712 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.33124, "decimalLat": -28.82175 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.546746, "decimalLat": -28.388884 }, "geometry": { "type": "Point", "coordinates": [ 153.547, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.704792, "decimalLat": -32.629403 }, "geometry": { "type": "Point", "coordinates": [ 151.705, -32.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615342, "decimalLat": -34.435803 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367878, "decimalLat": -28.614583 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.615 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631918, "decimalLat": -34.418329 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.988323, "decimalLat": -30.399605 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -30.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616564, "decimalLat": -34.435701 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604918, "decimalLat": -34.427035 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615644, "decimalLat": -34.43745 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.070208, "decimalLat": -30.275033 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -30.275 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.837387, "decimalLat": -30.195134 }, "geometry": { "type": "Point", "coordinates": [ 152.837, -30.195 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785973, "decimalLat": -33.706039 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639013, "decimalLat": -34.419025 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10519, "decimalLat": -29.489741 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110544, "decimalLat": -29.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627558, "decimalLat": -34.420913 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521917, "decimalLat": -34.466039 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.29156, "decimalLat": -36.146266 }, "geometry": { "type": "Point", "coordinates": [ 149.292, -36.146 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88594, "decimalLat": -31.438751 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618107, "decimalLat": -34.429618 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.228626, "decimalLat": -28.890296 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632646, "decimalLat": -34.392865 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.96482, "decimalLat": -32.656066 }, "geometry": { "type": "Point", "coordinates": [ 151.965, -32.656 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.485562 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630108, "decimalLat": -34.420385 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632585, "decimalLat": -34.419721 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630994, "decimalLat": -34.388217 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60376, "decimalLat": -34.439399 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78543, "decimalLat": -33.712832 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1074, "decimalLat": -29.490044 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303174, "decimalLat": -28.827996 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626448, "decimalLat": -34.386272 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.690393, "decimalLat": -32.671713 }, "geometry": { "type": "Point", "coordinates": [ 151.69, -32.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39413, "decimalLat": -28.959081 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655913, "decimalLat": -34.458568 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52063, "decimalLat": -34.436325 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636367, "decimalLat": -34.485508 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637362, "decimalLat": -34.422798 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637335, "decimalLat": -34.423762 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521195, "decimalLat": -34.46505 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61575, "decimalLat": -34.436009 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.12123, "decimalLat": -31.10266 }, "geometry": { "type": "Point", "coordinates": [ 150.121, -31.103 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888228, "decimalLat": -31.434374 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063282, "decimalLat": -32.706359 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.088904, "decimalLat": -32.728298 }, "geometry": { "type": "Point", "coordinates": [ 152.089, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926206, "decimalLat": -31.458871 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.59557, "decimalLat": -34.773113 }, "geometry": { "type": "Point", "coordinates": [ 146.596, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395266, "decimalLat": -28.960002 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.718273, "decimalLat": -32.717568 }, "geometry": { "type": "Point", "coordinates": [ 151.718, -32.718 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.799071, "decimalLat": -30.211983 }, "geometry": { "type": "Point", "coordinates": [ 152.799, -30.212 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428104, "decimalLat": -29.031029 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522877, "decimalLat": -34.460072 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.511573, "decimalLat": -28.688516 }, "geometry": { "type": "Point", "coordinates": [ 153.512, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063978, "decimalLat": -32.706773 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315755, "decimalLat": -28.826573 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.249109, "decimalLat": -32.371169 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -32.371 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08655, "decimalLat": -32.7622 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -32.762 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.112115, "decimalLat": -32.738157 }, "geometry": { "type": "Point", "coordinates": [ 152.112, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604156, "decimalLat": -34.43507 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108156, "decimalLat": -29.49032 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.436171, "decimalLat": -28.793312 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.793 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519866, "decimalLat": -34.4526 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099745, "decimalLat": -29.491557 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517563, "decimalLat": -34.448767 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607615, "decimalLat": -34.432812 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307082, "decimalLat": -28.825034 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.049352, "decimalLat": -30.455002 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -30.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604756, "decimalLat": -34.424705 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.717661, "decimalLat": -32.605633 }, "geometry": { "type": "Point", "coordinates": [ 151.718, -32.606 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.963797, "decimalLat": -30.65074 }, "geometry": { "type": "Point", "coordinates": [ 152.964, -30.651 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374047, "decimalLat": -31.913202 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.425541, "decimalLat": -29.115171 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -29.115 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614451, "decimalLat": -34.454511 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790596, "decimalLat": -34.188134 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322455, "decimalLat": -28.815953 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.901456, "decimalLat": -32.078156 }, "geometry": { "type": "Point", "coordinates": [ 151.901, -32.078 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919264, "decimalLat": -31.470504 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928931, "decimalLat": -31.467319 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.476321, "decimalLat": -28.600018 }, "geometry": { "type": "Point", "coordinates": [ 153.476, -28.6 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.014763, "decimalLat": -33.993574 }, "geometry": { "type": "Point", "coordinates": [ 151.015, -33.994 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292114, "decimalLat": -28.863526 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.491173, "decimalLat": -28.229207 }, "geometry": { "type": "Point", "coordinates": [ 153.491, -28.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.941408, "decimalLat": -31.186837 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -31.187 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622929, "decimalLat": -34.383841 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792385, "decimalLat": -34.144317 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.069699, "decimalLat": -32.71273 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518709, "decimalLat": -34.444968 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.389012, "decimalLat": -31.902724 }, "geometry": { "type": "Point", "coordinates": [ 152.389, -31.903 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604326, "decimalLat": -34.437878 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895013, "decimalLat": -31.448159 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.042596, "decimalLat": -30.385515 }, "geometry": { "type": "Point", "coordinates": [ 153.043, -30.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.77232, "decimalLat": -31.63091 }, "geometry": { "type": "Point", "coordinates": [ 152.772, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60338, "decimalLat": -34.436335 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517346, "decimalLat": -34.452071 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513716, "decimalLat": -34.446381 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613526, "decimalLat": -34.431936 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61617, "decimalLat": -34.434611 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49024, "decimalLat": -28.679852 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.68 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101606, "decimalLat": -29.489181 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.992352, "decimalLat": -30.514694 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -30.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063668, "decimalLat": -32.706539 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.999049, "decimalLat": -34.084108 }, "geometry": { "type": "Point", "coordinates": [ 150.999, -34.084 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30567, "decimalLat": -28.825204 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63306, "decimalLat": -34.41754 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518158, "decimalLat": -34.447427 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.575859, "decimalLat": -34.878667 }, "geometry": { "type": "Point", "coordinates": [ 150.576, -34.879 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315895, "decimalLat": -28.824581 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62195, "decimalLat": -34.39804 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622883, "decimalLat": -34.397373 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523618, "decimalLat": -34.465568 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.910854, "decimalLat": -33.99862 }, "geometry": { "type": "Point", "coordinates": [ 150.911, -33.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611425, "decimalLat": -34.419751 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519733, "decimalLat": -34.455248 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633624, "decimalLat": -34.418389 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.225408, "decimalLat": -28.885814 }, "geometry": { "type": "Point", "coordinates": [ 153.225, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61632, "decimalLat": -34.43584 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629924, "decimalLat": -34.395301 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.271587, "decimalLat": -31.938817 }, "geometry": { "type": "Point", "coordinates": [ 152.272, -31.939 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.775948, "decimalLat": -31.632416 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.079462, "decimalLat": -30.348292 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -30.348 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.837708, "decimalLat": -34.074077 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.074 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62701, "decimalLat": -34.420695 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599515, "decimalLat": -34.42994 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919357, "decimalLat": -31.474529 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.019684, "decimalLat": -28.429706 }, "geometry": { "type": "Point", "coordinates": [ 153.02, -28.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627788, "decimalLat": -34.390066 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637271, "decimalLat": -34.423715 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518711, "decimalLat": -34.443454 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602628, "decimalLat": -34.425331 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.12473, "decimalLat": -35.069514 }, "geometry": { "type": "Point", "coordinates": [ 150.125, -35.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277528, "decimalLat": -28.935421 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.935 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103753, "decimalLat": -29.48555 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.351835, "decimalLat": -36.152378 }, "geometry": { "type": "Point", "coordinates": [ 149.352, -36.152 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628079, "decimalLat": -34.389765 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604297, "decimalLat": -34.438102 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521632, "decimalLat": -34.465744 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109921, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797743, "decimalLat": -31.138343 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61831, "decimalLat": -34.604121 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.604 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631011, "decimalLat": -34.388749 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919755, "decimalLat": -31.438248 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.431211, "decimalLat": -34.474344 }, "geometry": { "type": "Point", "coordinates": [ 150.431, -34.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300422, "decimalLat": -31.948252 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292726, "decimalLat": -28.864525 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.980482, "decimalLat": -34.12769 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -34.128 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.485594 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.215656, "decimalLat": -31.423997 }, "geometry": { "type": "Point", "coordinates": [ 152.216, -31.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615841, "decimalLat": -34.436255 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06103, "decimalLat": -33.773724 }, "geometry": { "type": "Point", "coordinates": [ 150.061, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909438, "decimalLat": -31.447377 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.290224, "decimalLat": -28.987228 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.987 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596187, "decimalLat": -34.424952 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928674, "decimalLat": -31.459109 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600858, "decimalLat": -34.427866 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.961335, "decimalLat": -31.25256 }, "geometry": { "type": "Point", "coordinates": [ 152.961, -31.253 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921844, "decimalLat": -31.447598 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.991491, "decimalLat": -34.030929 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513088, "decimalLat": -34.447748 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.641843, "decimalLat": -31.707847 }, "geometry": { "type": "Point", "coordinates": [ 152.642, -31.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.041744, "decimalLat": -28.590516 }, "geometry": { "type": "Point", "coordinates": [ 153.042, -28.591 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.801045, "decimalLat": -34.225306 }, "geometry": { "type": "Point", "coordinates": [ 150.801, -34.225 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.089415, "decimalLat": -28.597941 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -28.598 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.369052, "decimalLat": -28.953149 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.463733, "decimalLat": -28.69693 }, "geometry": { "type": "Point", "coordinates": [ 153.464, -28.697 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.155406, "decimalLat": -29.918308 }, "geometry": { "type": "Point", "coordinates": [ 152.155, -29.918 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412329, "decimalLat": -31.932983 }, "geometry": { "type": "Point", "coordinates": [ 152.412, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607824, "decimalLat": -34.422052 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637325, "decimalLat": -34.423726 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302376, "decimalLat": -28.846727 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631549, "decimalLat": -34.387795 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619739, "decimalLat": -34.439225 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517303, "decimalLat": -34.452783 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.620296, "decimalLat": -34.400757 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926909, "decimalLat": -31.454812 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905067, "decimalLat": -31.455592 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555297, "decimalLat": -28.711629 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.089051, "decimalLat": -28.783076 }, "geometry": { "type": "Point", "coordinates": [ 152.089, -28.783 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.376948, "decimalLat": -31.910631 }, "geometry": { "type": "Point", "coordinates": [ 152.377, -31.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520497, "decimalLat": -34.454083 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.778714, "decimalLat": -32.574764 }, "geometry": { "type": "Point", "coordinates": [ 151.779, -32.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.886418, "decimalLat": -32.341905 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -32.342 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604174, "decimalLat": -34.422215 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82176, "decimalLat": -34.111 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524265, "decimalLat": -34.462102 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072066, "decimalLat": -32.710696 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915878, "decimalLat": -29.591069 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -29.591 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523945, "decimalLat": -34.466278 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.356775, "decimalLat": -31.981852 }, "geometry": { "type": "Point", "coordinates": [ 152.357, -31.982 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.160787, "decimalLat": -30.094803 }, "geometry": { "type": "Point", "coordinates": [ 152.161, -30.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638302, "decimalLat": -34.486005 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925092, "decimalLat": -31.454151 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104782, "decimalLat": -29.489662 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878684, "decimalLat": -31.425358 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630887, "decimalLat": -34.388918 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562595, "decimalLat": -28.391241 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53461, "decimalLat": -34.459345 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523347, "decimalLat": -34.459261 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070248, "decimalLat": -32.710276 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.300293, "decimalLat": -36.058338 }, "geometry": { "type": "Point", "coordinates": [ 149.3, -36.058 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.69153, "decimalLat": -31.506077 }, "geometry": { "type": "Point", "coordinates": [ 152.692, -31.506 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.713677, "decimalLat": -31.353747 }, "geometry": { "type": "Point", "coordinates": [ 152.714, -31.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518281, "decimalLat": -34.453569 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.719133, "decimalLat": -31.69116 }, "geometry": { "type": "Point", "coordinates": [ 152.719, -31.691 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78696, "decimalLat": -33.705879 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.364666, "decimalLat": -31.91982 }, "geometry": { "type": "Point", "coordinates": [ 152.365, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.372739, "decimalLat": -36.021682 }, "geometry": { "type": "Point", "coordinates": [ 149.373, -36.022 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56316, "decimalLat": -28.374485 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40818, "decimalLat": -31.933947 }, "geometry": { "type": "Point", "coordinates": [ 152.408, -31.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630677, "decimalLat": -34.420649 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.873769, "decimalLat": -34.035121 }, "geometry": { "type": "Point", "coordinates": [ 150.874, -34.035 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.018258, "decimalLat": -32.299527 }, "geometry": { "type": "Point", "coordinates": [ 152.018, -32.3 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602687, "decimalLat": -34.425161 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516971, "decimalLat": -34.447457 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608983, "decimalLat": -34.435192 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402508, "decimalLat": -28.260255 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.921241, "decimalLat": -33.967017 }, "geometry": { "type": "Point", "coordinates": [ 150.921, -33.967 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.35899, "decimalLat": -31.92441 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522293, "decimalLat": -34.465091 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.35899, "decimalLat": -31.92441 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.917922, "decimalLat": -36.474664 }, "geometry": { "type": "Point", "coordinates": [ 149.918, -36.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784169, "decimalLat": -33.717336 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063795, "decimalLat": -32.706607 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10813, "decimalLat": -29.490245 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640621, "decimalLat": -34.494101 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07807, "decimalLat": -32.723578 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794286, "decimalLat": -31.155303 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.155 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527128, "decimalLat": -34.469453 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602918, "decimalLat": -34.435749 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.555562, "decimalLat": -34.742652 }, "geometry": { "type": "Point", "coordinates": [ 146.556, -34.743 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640345, "decimalLat": -34.397549 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922233, "decimalLat": -31.454907 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.021287, "decimalLat": -36.554124 }, "geometry": { "type": "Point", "coordinates": [ 150.021, -36.554 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.766343, "decimalLat": -32.752581 }, "geometry": { "type": "Point", "coordinates": [ 151.766, -32.753 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645741, "decimalLat": -34.397896 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641022, "decimalLat": -34.393586 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929314, "decimalLat": -31.450415 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.36858, "decimalLat": -28.8002 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.8 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524524, "decimalLat": -34.482418 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.482 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.529623, "decimalLat": -34.737958 }, "geometry": { "type": "Point", "coordinates": [ 146.53, -34.738 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657125, "decimalLat": -31.674586 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -31.675 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924006, "decimalLat": -31.470361 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.088083, "decimalLat": -32.729613 }, "geometry": { "type": "Point", "coordinates": [ 152.088, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92899, "decimalLat": -31.459585 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522404, "decimalLat": -34.465778 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640025, "decimalLat": -34.397714 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9215, "decimalLat": -31.47939 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.740925, "decimalLat": -29.402855 }, "geometry": { "type": "Point", "coordinates": [ 152.741, -29.403 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62762, "decimalLat": -34.421816 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603712, "decimalLat": -34.438776 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.900624, "decimalLat": -32.080351 }, "geometry": { "type": "Point", "coordinates": [ 151.901, -32.08 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557309, "decimalLat": -28.397012 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103988, "decimalLat": -29.489591 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625295, "decimalLat": -34.388233 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.486229, "decimalLat": -31.4374 }, "geometry": { "type": "Point", "coordinates": [ 152.486, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101682, "decimalLat": -29.489381 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865621, "decimalLat": -31.501719 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -31.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534516, "decimalLat": -34.462147 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60014, "decimalLat": -34.446126 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633864, "decimalLat": -34.418357 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607772, "decimalLat": -34.430751 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9781, "decimalLat": -30.4187 }, "geometry": { "type": "Point", "coordinates": [ 152.978, -30.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635437, "decimalLat": -34.488357 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.042145, "decimalLat": -30.910708 }, "geometry": { "type": "Point", "coordinates": [ 153.042, -30.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311929, "decimalLat": -28.821687 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645275, "decimalLat": -34.399375 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.386533, "decimalLat": -28.787908 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -28.788 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.532794, "decimalLat": -28.400667 }, "geometry": { "type": "Point", "coordinates": [ 153.533, -28.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516066, "decimalLat": -34.448232 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.828507, "decimalLat": -31.10611 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -31.106 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101365, "decimalLat": -29.489993 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103892, "decimalLat": -29.489545 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.387027, "decimalLat": -28.907933 }, "geometry": { "type": "Point", "coordinates": [ 152.387, -28.908 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616181, "decimalLat": -34.435378 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617098, "decimalLat": -34.433746 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.294848, "decimalLat": -28.633009 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.633 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929415, "decimalLat": -31.456441 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.429322, "decimalLat": -31.765534 }, "geometry": { "type": "Point", "coordinates": [ 152.429, -31.766 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607739, "decimalLat": -34.430759 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520093, "decimalLat": -34.434962 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30287, "decimalLat": -28.82038 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.064839, "decimalLat": -30.902075 }, "geometry": { "type": "Point", "coordinates": [ 153.065, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62737, "decimalLat": -34.42026 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613225, "decimalLat": -34.432588 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627047, "decimalLat": -34.389736 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.175002, "decimalLat": -32.725735 }, "geometry": { "type": "Point", "coordinates": [ 152.175, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6107, "decimalLat": -34.430691 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 143.858798, "decimalLat": -38.670586 }, "geometry": { "type": "Point", "coordinates": [ 143.859, -38.671 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.602142, "decimalLat": -28.715639 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602527, "decimalLat": -34.436084 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.829335, "decimalLat": -29.654339 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -29.654 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521869, "decimalLat": -34.459186 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641987, "decimalLat": -34.396778 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383726, "decimalLat": -31.913596 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633071, "decimalLat": -34.419487 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522472, "decimalLat": -34.46495 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.045499, "decimalLat": -30.239315 }, "geometry": { "type": "Point", "coordinates": [ 153.045, -30.239 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.762313, "decimalLat": -34.066007 }, "geometry": { "type": "Point", "coordinates": [ 150.762, -34.066 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299899, "decimalLat": -28.820915 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754942, "decimalLat": -31.249124 }, "geometry": { "type": "Point", "coordinates": [ 152.755, -31.249 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07339, "decimalLat": -30.36738 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -30.367 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642486, "decimalLat": -34.392586 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604884, "decimalLat": -34.427088 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52716, "decimalLat": -34.469462 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630939, "decimalLat": -34.420609 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.447901, "decimalLat": -28.725986 }, "geometry": { "type": "Point", "coordinates": [ 153.448, -28.726 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.241488, "decimalLat": -28.918802 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -28.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646712, "decimalLat": -34.403207 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -34.403 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633169, "decimalLat": -34.417551 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897361, "decimalLat": -31.474712 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104026, "decimalLat": -29.484268 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895335, "decimalLat": -30.594659 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -30.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785319, "decimalLat": -33.70331 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.703 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564544, "decimalLat": -28.380335 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.38 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.248544, "decimalLat": -30.059088 }, "geometry": { "type": "Point", "coordinates": [ 152.249, -30.059 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604846, "decimalLat": -34.426898 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604081, "decimalLat": -34.435024 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642688, "decimalLat": -34.404383 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609226, "decimalLat": -34.420565 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109363, "decimalLat": -29.490451 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516391, "decimalLat": -34.448284 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972808, "decimalLat": -36.432232 }, "geometry": { "type": "Point", "coordinates": [ 149.973, -36.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627229, "decimalLat": -34.420618 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901822, "decimalLat": -30.865035 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -30.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.396688, "decimalLat": -28.561437 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -28.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632021, "decimalLat": -34.394602 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524825, "decimalLat": -34.465232 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394539, "decimalLat": -28.960122 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626601, "decimalLat": -34.386266 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896777, "decimalLat": -31.44004 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955028, "decimalLat": -36.650407 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617297, "decimalLat": -34.399906 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635118, "decimalLat": -34.483861 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907543, "decimalLat": -31.491606 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521226, "decimalLat": -34.463645 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.84298, "decimalLat": -34.058717 }, "geometry": { "type": "Point", "coordinates": [ 150.843, -34.059 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921919, "decimalLat": -31.457437 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402261, "decimalLat": -28.260126 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.876499, "decimalLat": -29.676668 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -29.677 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785483, "decimalLat": -33.705279 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595723, "decimalLat": -34.413791 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104106, "decimalLat": -29.47986 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.390835, "decimalLat": -31.902059 }, "geometry": { "type": "Point", "coordinates": [ 152.391, -31.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.327996, "decimalLat": -31.911306 }, "geometry": { "type": "Point", "coordinates": [ 152.328, -31.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603985, "decimalLat": -34.438745 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797241, "decimalLat": -31.637224 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.356939, "decimalLat": -28.882972 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -28.883 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.693377, "decimalLat": -32.690902 }, "geometry": { "type": "Point", "coordinates": [ 151.693, -32.691 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925879, "decimalLat": -31.446285 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912478, "decimalLat": -31.451029 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928545, "decimalLat": -31.466794 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55592, "decimalLat": -28.398698 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.233745, "decimalLat": -28.313495 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -28.313 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.377853, "decimalLat": -31.918122 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107985, "decimalLat": -29.490175 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529018, "decimalLat": -34.47142 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109589, "decimalLat": -29.490362 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.845093, "decimalLat": -31.563364 }, "geometry": { "type": "Point", "coordinates": [ 152.845, -31.563 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.179389, "decimalLat": -30.08386 }, "geometry": { "type": "Point", "coordinates": [ 152.179, -30.084 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915556, "decimalLat": -31.444948 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792673, "decimalLat": -31.641771 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413602, "decimalLat": -31.944661 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.945 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987132, "decimalLat": -34.029402 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521983, "decimalLat": -34.464534 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.653568, "decimalLat": -33.53092 }, "geometry": { "type": "Point", "coordinates": [ 150.654, -33.531 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378334, "decimalLat": -31.920019 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278132, "decimalLat": -28.831137 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.052686, "decimalLat": -31.162056 }, "geometry": { "type": "Point", "coordinates": [ 151.053, -31.162 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.767054, "decimalLat": -32.593048 }, "geometry": { "type": "Point", "coordinates": [ 151.767, -32.593 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.851257, "decimalLat": -32.792187 }, "geometry": { "type": "Point", "coordinates": [ 151.851, -32.792 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109304, "decimalLat": -29.490834 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623017, "decimalLat": -34.385727 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615508, "decimalLat": -34.435707 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609379, "decimalLat": -34.42055 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298814, "decimalLat": -28.82595 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523236, "decimalLat": -34.464506 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78724, "decimalLat": -31.636424 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.636 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093327, "decimalLat": -29.492718 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617418, "decimalLat": -34.438557 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10814, "decimalLat": -29.490357 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637019, "decimalLat": -34.488261 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624524, "decimalLat": -34.385892 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.235392, "decimalLat": -28.827819 }, "geometry": { "type": "Point", "coordinates": [ 153.235, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640536, "decimalLat": -34.393856 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635381, "decimalLat": -34.419721 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628005, "decimalLat": -34.420895 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877459, "decimalLat": -31.468116 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929013, "decimalLat": -31.459623 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638535, "decimalLat": -34.491239 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638455, "decimalLat": -34.42299 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607968, "decimalLat": -34.433766 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.074977, "decimalLat": -30.307115 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -30.307 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315107, "decimalLat": -29.028206 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -29.028 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272904, "decimalLat": -28.928842 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.929 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90968, "decimalLat": -30.17336 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -30.173 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604768, "decimalLat": -34.427338 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104085, "decimalLat": -29.479967 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.030246, "decimalLat": -28.839388 }, "geometry": { "type": "Point", "coordinates": [ 153.03, -28.839 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.377711, "decimalLat": -30.622084 }, "geometry": { "type": "Point", "coordinates": [ 151.378, -30.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629625, "decimalLat": -34.389327 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51613, "decimalLat": -34.448648 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62797, "decimalLat": -34.420957 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616363, "decimalLat": -34.434354 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103908, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607913, "decimalLat": -34.433801 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901602, "decimalLat": -28.771137 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -28.771 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.512327, "decimalLat": -28.216269 }, "geometry": { "type": "Point", "coordinates": [ 153.512, -28.216 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063435, "decimalLat": -32.706298 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320897, "decimalLat": -28.84777 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615876, "decimalLat": -34.43502 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.718634, "decimalLat": -32.717413 }, "geometry": { "type": "Point", "coordinates": [ 151.719, -32.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.078206, "decimalLat": -32.727783 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.969776, "decimalLat": -36.511423 }, "geometry": { "type": "Point", "coordinates": [ 149.97, -36.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.12972, "decimalLat": -31.39744 }, "geometry": { "type": "Point", "coordinates": [ 152.13, -31.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077582, "decimalLat": -30.345268 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.345 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79409, "decimalLat": -34.13776 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.138 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103935, "decimalLat": -29.489587 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5811, "decimalLat": -28.78326 }, "geometry": { "type": "Point", "coordinates": [ 153.581, -28.783 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.263825, "decimalLat": -28.836389 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -28.836 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.441464, "decimalLat": -31.943207 }, "geometry": { "type": "Point", "coordinates": [ 152.441, -31.943 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.448885, "decimalLat": -32.222679 }, "geometry": { "type": "Point", "coordinates": [ 152.449, -32.223 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92519, "decimalLat": -31.451147 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638974, "decimalLat": -34.491527 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626912, "decimalLat": -34.421072 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.82212, "decimalLat": -32.50942 }, "geometry": { "type": "Point", "coordinates": [ 151.822, -32.509 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296686, "decimalLat": -28.847235 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.308567, "decimalLat": -36.108252 }, "geometry": { "type": "Point", "coordinates": [ 149.309, -36.108 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824888, "decimalLat": -29.506886 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.507 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629746, "decimalLat": -34.394269 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104243, "decimalLat": -29.480196 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629423, "decimalLat": -28.637369 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602629, "decimalLat": -34.425277 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092058, "decimalLat": -29.488023 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.442773, "decimalLat": -28.274143 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.274 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.795668, "decimalLat": -34.13986 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.233827, "decimalLat": -31.400586 }, "geometry": { "type": "Point", "coordinates": [ 152.234, -31.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.508359, "decimalLat": -28.692405 }, "geometry": { "type": "Point", "coordinates": [ 153.508, -28.692 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104058, "decimalLat": -29.484343 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.187734, "decimalLat": -34.034662 }, "geometry": { "type": "Point", "coordinates": [ 150.188, -34.035 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.17062, "decimalLat": -32.743401 }, "geometry": { "type": "Point", "coordinates": [ 152.171, -32.743 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.098334, "decimalLat": -30.295851 }, "geometry": { "type": "Point", "coordinates": [ 153.098, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786173, "decimalLat": -33.706009 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336241, "decimalLat": -28.813127 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -28.813 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293062, "decimalLat": -28.864644 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.358798, "decimalLat": -31.926849 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.927 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.920916, "decimalLat": -33.967038 }, "geometry": { "type": "Point", "coordinates": [ 150.921, -33.967 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616362, "decimalLat": -34.434381 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93577, "decimalLat": -30.382225 }, "geometry": { "type": "Point", "coordinates": [ 152.936, -30.382 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616389, "decimalLat": -34.429206 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892981, "decimalLat": -31.436748 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.30757, "decimalLat": -31.928854 }, "geometry": { "type": "Point", "coordinates": [ 152.308, -31.929 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108038, "decimalLat": -29.490343 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51833, "decimalLat": -34.447863 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644056, "decimalLat": -34.396304 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605392, "decimalLat": -34.423762 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519333, "decimalLat": -34.448163 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949786, "decimalLat": -36.632867 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630678, "decimalLat": -34.420622 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519054, "decimalLat": -34.436618 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.553176, "decimalLat": -33.549377 }, "geometry": { "type": "Point", "coordinates": [ 149.553, -33.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903127, "decimalLat": -31.44099 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636151, "decimalLat": -34.487758 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62523, "decimalLat": -34.386681 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.579577, "decimalLat": -30.410249 }, "geometry": { "type": "Point", "coordinates": [ 151.58, -30.41 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557439, "decimalLat": -28.397381 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.932029, "decimalLat": -30.426774 }, "geometry": { "type": "Point", "coordinates": [ 152.932, -30.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103827, "decimalLat": -29.485604 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298311, "decimalLat": -28.876449 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.876 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519288, "decimalLat": -34.437533 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103715, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081222, "decimalLat": -32.72313 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605618, "decimalLat": -34.432259 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659617, "decimalLat": -34.455321 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605728, "decimalLat": -34.437544 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525982, "decimalLat": -34.457764 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.0156, "decimalLat": -30.369444 }, "geometry": { "type": "Point", "coordinates": [ 153.016, -30.369 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609731, "decimalLat": -34.419619 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06386, "decimalLat": -32.706746 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607467, "decimalLat": -34.433044 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.451797, "decimalLat": -34.725342 }, "geometry": { "type": "Point", "coordinates": [ 150.452, -34.725 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914177, "decimalLat": -31.466666 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603212, "decimalLat": -34.437252 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.991049, "decimalLat": -34.021426 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.021 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.807846, "decimalLat": -32.35519 }, "geometry": { "type": "Point", "coordinates": [ 149.808, -32.355 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613712, "decimalLat": -34.457913 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.033527, "decimalLat": -30.193444 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -30.193 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925785, "decimalLat": -31.454369 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879033, "decimalLat": -31.457026 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.033527, "decimalLat": -30.193444 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -30.193 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51991, "decimalLat": -34.452556 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103874, "decimalLat": -29.48536 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59019, "decimalLat": -28.65505 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517108, "decimalLat": -34.436209 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626878, "decimalLat": -34.385712 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522095, "decimalLat": -34.465925 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 146.569102, "decimalLat": -34.75621 }, "geometry": { "type": "Point", "coordinates": [ 146.569, -34.756 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.407305, "decimalLat": -31.916034 }, "geometry": { "type": "Point", "coordinates": [ 152.407, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.04933, "decimalLat": -30.34853 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -30.349 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.876367, "decimalLat": -29.677019 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -29.677 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927068, "decimalLat": -31.455175 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630266, "decimalLat": -34.420956 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.649444, "decimalLat": -37.366383 }, "geometry": { "type": "Point", "coordinates": [ 149.649, -37.366 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907543, "decimalLat": -31.491606 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616393, "decimalLat": -34.434444 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52109, "decimalLat": -34.46677 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.370717, "decimalLat": -31.923165 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782841, "decimalLat": -33.719486 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922453, "decimalLat": -31.458616 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515635, "decimalLat": -34.459465 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085547, "decimalLat": -32.727623 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.991483, "decimalLat": -32.72129 }, "geometry": { "type": "Point", "coordinates": [ 151.991, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624371, "decimalLat": -34.387836 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796198, "decimalLat": -34.136158 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.136 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615597, "decimalLat": -34.439459 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522798, "decimalLat": -34.452435 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562904, "decimalLat": -28.384369 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.857486, "decimalLat": -32.367381 }, "geometry": { "type": "Point", "coordinates": [ 149.857, -32.367 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790629, "decimalLat": -34.191199 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.191 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.010861, "decimalLat": -30.417681 }, "geometry": { "type": "Point", "coordinates": [ 153.011, -30.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.981735, "decimalLat": -34.130172 }, "geometry": { "type": "Point", "coordinates": [ 150.982, -34.13 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095191, "decimalLat": -30.337884 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -30.338 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984263, "decimalLat": -34.025872 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.026 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.474069, "decimalLat": -28.258765 }, "geometry": { "type": "Point", "coordinates": [ 153.474, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604962, "decimalLat": -34.438837 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.807374, "decimalLat": -31.653803 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -31.654 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562683, "decimalLat": -28.384544 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334377, "decimalLat": -28.818806 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.968612, "decimalLat": -34.121255 }, "geometry": { "type": "Point", "coordinates": [ 150.969, -34.121 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.593712, "decimalLat": -28.720013 }, "geometry": { "type": "Point", "coordinates": [ 153.594, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.057099, "decimalLat": -33.764309 }, "geometry": { "type": "Point", "coordinates": [ 150.057, -33.764 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.689584, "decimalLat": -31.518379 }, "geometry": { "type": "Point", "coordinates": [ 152.69, -31.518 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.08487, "decimalLat": -30.32947 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -30.329 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108124, "decimalLat": -29.490581 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095491, "decimalLat": -29.489974 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641355, "decimalLat": -34.395666 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101403, "decimalLat": -29.489624 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898859, "decimalLat": -31.474183 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623181, "decimalLat": -34.397604 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.510395, "decimalLat": -32.055361 }, "geometry": { "type": "Point", "coordinates": [ 152.51, -32.055 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028937, "decimalLat": -32.191329 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.191 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615688, "decimalLat": -34.435107 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783598, "decimalLat": -33.717929 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.704792, "decimalLat": -32.629403 }, "geometry": { "type": "Point", "coordinates": [ 151.705, -32.629 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317936, "decimalLat": -28.824228 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.411676, "decimalLat": -31.935759 }, "geometry": { "type": "Point", "coordinates": [ 152.412, -31.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.714337, "decimalLat": -34.184215 }, "geometry": { "type": "Point", "coordinates": [ 149.714, -34.184 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531001, "decimalLat": -34.472118 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.472 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.816689, "decimalLat": -31.652764 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -31.653 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56233, "decimalLat": -28.373466 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.373 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924973, "decimalLat": -31.459272 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609936, "decimalLat": -34.419695 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07096, "decimalLat": -28.59417 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -28.594 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517473, "decimalLat": -34.440039 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.514459, "decimalLat": -28.2398 }, "geometry": { "type": "Point", "coordinates": [ 153.514, -28.24 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.635148, "decimalLat": -32.591463 }, "geometry": { "type": "Point", "coordinates": [ 151.635, -32.591 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320612, "decimalLat": -28.822466 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110586, "decimalLat": -29.490285 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.204264, "decimalLat": -32.226111 }, "geometry": { "type": "Point", "coordinates": [ 152.204, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.541878, "decimalLat": -32.329761 }, "geometry": { "type": "Point", "coordinates": [ 152.542, -32.33 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607671, "decimalLat": -34.436573 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.65725, "decimalLat": -30.541063 }, "geometry": { "type": "Point", "coordinates": [ 152.657, -30.541 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06457, "decimalLat": -31.19451 }, "geometry": { "type": "Point", "coordinates": [ 150.065, -31.195 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635641, "decimalLat": -34.418239 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786985, "decimalLat": -33.70833 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615082, "decimalLat": -34.431164 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517363, "decimalLat": -34.453307 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608876, "decimalLat": -34.435154 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513195, "decimalLat": -34.445974 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108226, "decimalLat": -29.490236 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.126308, "decimalLat": -31.413327 }, "geometry": { "type": "Point", "coordinates": [ 152.126, -31.413 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 14, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.060212, "decimalLat": -38.418359 }, "geometry": { "type": "Point", "coordinates": [ 145.06, -38.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.762497, "decimalLat": -32.452504 }, "geometry": { "type": "Point", "coordinates": [ 149.762, -32.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.939559, "decimalLat": -34.113548 }, "geometry": { "type": "Point", "coordinates": [ 150.94, -34.114 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656179, "decimalLat": -33.58539 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -33.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606233, "decimalLat": -34.45453 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607632, "decimalLat": -34.422301 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.379521, "decimalLat": -34.386531 }, "geometry": { "type": "Point", "coordinates": [ 150.38, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870433, "decimalLat": -31.480432 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.007261, "decimalLat": -28.593268 }, "geometry": { "type": "Point", "coordinates": [ 153.007, -28.593 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.308464, "decimalLat": -28.822719 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.353347, "decimalLat": -28.80854 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.862739, "decimalLat": -34.080406 }, "geometry": { "type": "Point", "coordinates": [ 150.863, -34.08 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909624, "decimalLat": -31.431087 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.780581, "decimalLat": -30.153666 }, "geometry": { "type": "Point", "coordinates": [ 152.781, -30.154 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.462238, "decimalLat": -28.915929 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637312, "decimalLat": -34.423797 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427558, "decimalLat": -29.091442 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -29.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629298, "decimalLat": -34.38896 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613559, "decimalLat": -34.417665 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395214, "decimalLat": -28.959992 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632259, "decimalLat": -34.388458 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514506, "decimalLat": -34.445063 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790244, "decimalLat": -31.12871 }, "geometry": { "type": "Point", "coordinates": [ 152.79, -31.129 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.750915, "decimalLat": -28.957043 }, "geometry": { "type": "Point", "coordinates": [ 152.751, -28.957 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6342, "decimalLat": -34.488612 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.069313, "decimalLat": -30.877808 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -30.878 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103784, "decimalLat": -29.485571 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606319, "decimalLat": -34.438196 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809607, "decimalLat": -34.099913 }, "geometry": { "type": "Point", "coordinates": [ 150.81, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633991, "decimalLat": -34.489835 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.300376, "decimalLat": -30.590548 }, "geometry": { "type": "Point", "coordinates": [ 151.3, -30.591 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065122, "decimalLat": -32.742829 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.743 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61591, "decimalLat": -34.435742 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039401, "decimalLat": -32.730474 }, "geometry": { "type": "Point", "coordinates": [ 152.039, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.837538, "decimalLat": -34.062857 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.063 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.113237, "decimalLat": -32.770773 }, "geometry": { "type": "Point", "coordinates": [ 152.113, -32.771 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525296, "decimalLat": -34.464043 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553614, "decimalLat": -28.582799 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.583 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.448355, "decimalLat": -35.852747 }, "geometry": { "type": "Point", "coordinates": [ 145.448, -35.853 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520541, "decimalLat": -34.465821 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53011, "decimalLat": -34.470947 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102889, "decimalLat": -29.489363 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278132, "decimalLat": -28.831137 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103913, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300422, "decimalLat": -31.948252 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61934, "decimalLat": -34.54504 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.545 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533107, "decimalLat": -34.479689 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.243407, "decimalLat": -28.943114 }, "geometry": { "type": "Point", "coordinates": [ 153.243, -28.943 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.490203 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31683, "decimalLat": -28.94801 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.948 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.176506, "decimalLat": -28.637197 }, "geometry": { "type": "Point", "coordinates": [ 152.177, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604314, "decimalLat": -34.433712 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063838, "decimalLat": -32.706589 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514696, "decimalLat": -34.443417 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109481, "decimalLat": -29.490474 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642089, "decimalLat": -34.395878 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.857194, "decimalLat": -31.139833 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -31.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609376, "decimalLat": -34.420658 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922619, "decimalLat": -31.460812 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784215, "decimalLat": -33.717212 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065229, "decimalLat": -32.703163 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.703 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.665158, "decimalLat": -34.458817 }, "geometry": { "type": "Point", "coordinates": [ 150.665, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632655, "decimalLat": -34.418037 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613692, "decimalLat": -34.431074 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108207, "decimalLat": -29.490121 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91497, "decimalLat": -31.458749 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.859267, "decimalLat": -32.773066 }, "geometry": { "type": "Point", "coordinates": [ 151.859, -32.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635071, "decimalLat": -34.487827 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278171, "decimalLat": -28.932421 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.555434, "decimalLat": -34.742845 }, "geometry": { "type": "Point", "coordinates": [ 146.555, -34.743 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92885, "decimalLat": -31.458001 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.01208, "decimalLat": -31.1337 }, "geometry": { "type": "Point", "coordinates": [ 150.012, -31.134 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626012, "decimalLat": -34.390167 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558512, "decimalLat": -28.672704 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.673 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49619, "decimalLat": -28.693236 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101392, "decimalLat": -29.489638 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517549, "decimalLat": -34.440771 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61986, "decimalLat": -34.439182 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786585, "decimalLat": -31.629234 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644364, "decimalLat": -34.468972 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076732, "decimalLat": -32.723669 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630278, "decimalLat": -34.42093 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.67371, "decimalLat": -33.486625 }, "geometry": { "type": "Point", "coordinates": [ 150.674, -33.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302264, "decimalLat": -28.820298 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899322, "decimalLat": -29.630985 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637771, "decimalLat": -34.486311 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628691, "decimalLat": -34.39506 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51381, "decimalLat": -34.447267 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514193, "decimalLat": -34.445697 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556098, "decimalLat": -28.398509 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521425, "decimalLat": -34.46647 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61704, "decimalLat": -34.433862 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602536, "decimalLat": -34.436139 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.594562, "decimalLat": -34.410649 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.411 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.087252, "decimalLat": -32.732436 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633082, "decimalLat": -34.417531 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631465, "decimalLat": -34.386937 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.974623, "decimalLat": -32.472237 }, "geometry": { "type": "Point", "coordinates": [ 151.975, -32.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.619085, "decimalLat": -30.331064 }, "geometry": { "type": "Point", "coordinates": [ 152.619, -30.331 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919418, "decimalLat": -31.475421 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293115, "decimalLat": -28.864682 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378988, "decimalLat": -31.918115 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610291, "decimalLat": -34.41908 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.677408, "decimalLat": -30.47848 }, "geometry": { "type": "Point", "coordinates": [ 152.677, -30.478 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.736179, "decimalLat": -30.905427 }, "geometry": { "type": "Point", "coordinates": [ 152.736, -30.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520817, "decimalLat": -34.46571 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639254, "decimalLat": -34.493182 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.036748, "decimalLat": -32.737046 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812724, "decimalLat": -29.796934 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -29.797 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104096, "decimalLat": -29.483853 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518096, "decimalLat": -34.453556 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03904, "decimalLat": -32.73749 }, "geometry": { "type": "Point", "coordinates": [ 152.039, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.967384, "decimalLat": -31.185968 }, "geometry": { "type": "Point", "coordinates": [ 152.967, -31.186 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514497, "decimalLat": -34.447208 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519242, "decimalLat": -34.468887 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063529, "decimalLat": -32.706167 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616459, "decimalLat": -34.437862 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634954, "decimalLat": -34.487753 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637512, "decimalLat": -34.488532 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.786914, "decimalLat": -32.313952 }, "geometry": { "type": "Point", "coordinates": [ 151.787, -32.314 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.062932, "decimalLat": -33.144457 }, "geometry": { "type": "Point", "coordinates": [ 151.063, -33.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1038, "decimalLat": -29.485557 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605494, "decimalLat": -34.428191 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.386379, "decimalLat": -32.093467 }, "geometry": { "type": "Point", "coordinates": [ 152.386, -32.093 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517195, "decimalLat": -34.452023 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790496, "decimalLat": -34.199955 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.2 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510503, "decimalLat": -28.241619 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.242 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.173378, "decimalLat": -31.571531 }, "geometry": { "type": "Point", "coordinates": [ 152.173, -31.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615679, "decimalLat": -34.43544 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790568, "decimalLat": -34.188197 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516515, "decimalLat": -34.448863 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.80765, "decimalLat": -31.652842 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -31.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662457, "decimalLat": -34.454555 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101199, "decimalLat": -29.489942 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099745, "decimalLat": -29.491618 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.01786, "decimalLat": -32.733483 }, "geometry": { "type": "Point", "coordinates": [ 152.018, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78526, "decimalLat": -33.715704 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073383, "decimalLat": -32.717002 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.85146, "decimalLat": -29.69253 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632871, "decimalLat": -34.418852 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.204264, "decimalLat": -32.226111 }, "geometry": { "type": "Point", "coordinates": [ 152.204, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514338, "decimalLat": -34.447413 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.228725, "decimalLat": -32.139621 }, "geometry": { "type": "Point", "coordinates": [ 152.229, -32.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520079, "decimalLat": -34.453119 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627487, "decimalLat": -34.421507 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630799, "decimalLat": -34.42057 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373559, "decimalLat": -31.91429 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.914 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.489937 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627398, "decimalLat": -34.42118 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.073117, "decimalLat": -30.888249 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515123, "decimalLat": -34.456913 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527133, "decimalLat": -34.45785 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318421, "decimalLat": -28.822003 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109272, "decimalLat": -29.490876 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.087507, "decimalLat": -32.744631 }, "geometry": { "type": "Point", "coordinates": [ 152.088, -32.745 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631442, "decimalLat": -34.386955 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.56004, "decimalLat": -30.40296 }, "geometry": { "type": "Point", "coordinates": [ 151.56, -30.403 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.00518, "decimalLat": -30.30666 }, "geometry": { "type": "Point", "coordinates": [ 153.005, -30.307 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867922, "decimalLat": -29.667415 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066216, "decimalLat": -32.709638 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521425, "decimalLat": -34.465749 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.038948, "decimalLat": -32.738128 }, "geometry": { "type": "Point", "coordinates": [ 152.039, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.802334, "decimalLat": -30.325339 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -30.325 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607653, "decimalLat": -34.422319 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898315, "decimalLat": -31.443455 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792549, "decimalLat": -34.206528 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.207 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603155, "decimalLat": -34.435069 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624209, "decimalLat": -34.388933 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521242, "decimalLat": -34.465682 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783192, "decimalLat": -33.718625 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.824597, "decimalLat": -30.450682 }, "geometry": { "type": "Point", "coordinates": [ 151.825, -30.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615062, "decimalLat": -34.452945 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.987701, "decimalLat": -32.282319 }, "geometry": { "type": "Point", "coordinates": [ 151.988, -32.282 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.861758, "decimalLat": -31.282976 }, "geometry": { "type": "Point", "coordinates": [ 152.862, -31.283 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.970084, "decimalLat": -31.19271 }, "geometry": { "type": "Point", "coordinates": [ 152.97, -31.193 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378287, "decimalLat": -31.918407 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.918 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.021287, "decimalLat": -36.554124 }, "geometry": { "type": "Point", "coordinates": [ 150.021, -36.554 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.611582, "decimalLat": -30.347463 }, "geometry": { "type": "Point", "coordinates": [ 152.612, -30.347 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364771, "decimalLat": -28.83677 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.458043, "decimalLat": -28.585138 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630691, "decimalLat": -34.388923 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627213, "decimalLat": -34.385773 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07148, "decimalLat": -32.709625 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893895, "decimalLat": -30.177887 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -30.178 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.132821, "decimalLat": -30.11253 }, "geometry": { "type": "Point", "coordinates": [ 152.133, -30.113 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793355, "decimalLat": -31.64263 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.643 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518406, "decimalLat": -34.457412 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518878, "decimalLat": -34.447343 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.344025, "decimalLat": -31.879441 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -31.879 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597273, "decimalLat": -34.410179 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071191, "decimalLat": -32.70933 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556102, "decimalLat": -28.399671 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615799, "decimalLat": -34.435028 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.514342, "decimalLat": -28.687084 }, "geometry": { "type": "Point", "coordinates": [ 153.514, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.402309, "decimalLat": -31.938794 }, "geometry": { "type": "Point", "coordinates": [ 152.402, -31.939 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659466, "decimalLat": -34.455264 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59019, "decimalLat": -28.65505 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.521081, "decimalLat": -28.76994 }, "geometry": { "type": "Point", "coordinates": [ 153.521, -28.77 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.282153, "decimalLat": -28.824698 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960571, "decimalLat": -36.556943 }, "geometry": { "type": "Point", "coordinates": [ 149.961, -36.557 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395547, "decimalLat": -28.264126 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.264 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87922, "decimalLat": -31.425606 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.989306, "decimalLat": -29.042093 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -29.042 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923299, "decimalLat": -31.469665 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.95515, "decimalLat": -36.347022 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.347 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609113, "decimalLat": -34.42031 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93067, "decimalLat": -31.46923 }, "geometry": { "type": "Point", "coordinates": [ 152.931, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514085, "decimalLat": -34.446434 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599778, "decimalLat": -34.418054 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638185, "decimalLat": -34.490907 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.552766, "decimalLat": -34.514912 }, "geometry": { "type": "Point", "coordinates": [ 150.553, -34.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642089, "decimalLat": -34.39431 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103929, "decimalLat": -29.489577 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.820431, "decimalLat": -31.160261 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.16 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603025, "decimalLat": -34.437708 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.271685, "decimalLat": -28.924508 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -28.925 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.932937, "decimalLat": -34.564653 }, "geometry": { "type": "Point", "coordinates": [ 138.933, -34.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.013608, "decimalLat": -30.414124 }, "geometry": { "type": "Point", "coordinates": [ 153.014, -30.414 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896341, "decimalLat": -31.43072 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.476361, "decimalLat": -33.052972 }, "geometry": { "type": "Point", "coordinates": [ 151.476, -33.053 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517748, "decimalLat": -34.441406 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605511, "decimalLat": -34.432176 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557213, "decimalLat": -28.400321 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.992208, "decimalLat": -34.023298 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -34.023 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520788, "decimalLat": -34.465204 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063278, "decimalLat": -32.706371 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101649, "decimalLat": -29.489349 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930223, "decimalLat": -31.466533 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618302, "decimalLat": -34.435401 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.083342, "decimalLat": -29.728616 }, "geometry": { "type": "Point", "coordinates": [ 151.083, -29.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515493, "decimalLat": -34.451799 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787146, "decimalLat": -33.704186 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925329, "decimalLat": -31.452452 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.995573, "decimalLat": -36.572611 }, "geometry": { "type": "Point", "coordinates": [ 149.996, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104026, "decimalLat": -29.479818 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868061, "decimalLat": -29.666949 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523044, "decimalLat": -34.466224 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.343512, "decimalLat": -32.235432 }, "geometry": { "type": "Point", "coordinates": [ 152.344, -32.235 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.860211, "decimalLat": -34.073199 }, "geometry": { "type": "Point", "coordinates": [ 150.86, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107464, "decimalLat": -29.490138 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786822, "decimalLat": -33.705015 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616413, "decimalLat": -34.433354 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283467, "decimalLat": -28.830686 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.04209, "decimalLat": -30.910658 }, "geometry": { "type": "Point", "coordinates": [ 153.042, -30.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415139, "decimalLat": -31.933204 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924868, "decimalLat": -31.454073 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790868, "decimalLat": -34.148284 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.148 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616883, "decimalLat": -34.440927 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523802, "decimalLat": -34.463769 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627288, "decimalLat": -34.421241 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521621, "decimalLat": -34.466105 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.710623, "decimalLat": -31.781941 }, "geometry": { "type": "Point", "coordinates": [ 152.711, -31.782 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629827, "decimalLat": -34.394487 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093077, "decimalLat": -29.488518 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900816, "decimalLat": -29.631326 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602542, "decimalLat": -34.424914 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277348, "decimalLat": -28.939508 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910446, "decimalLat": -31.440563 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51379, "decimalLat": -34.446085 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.72632, "decimalLat": -30.157302 }, "geometry": { "type": "Point", "coordinates": [ 152.726, -30.157 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.839123, "decimalLat": -31.595622 }, "geometry": { "type": "Point", "coordinates": [ 152.839, -31.596 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093514, "decimalLat": -29.492788 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.940088, "decimalLat": -33.953175 }, "geometry": { "type": "Point", "coordinates": [ 150.94, -33.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603423, "decimalLat": -34.427564 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.822325, "decimalLat": -32.386406 }, "geometry": { "type": "Point", "coordinates": [ 149.822, -32.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454664, "decimalLat": -28.61541 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.615 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.019614, "decimalLat": -30.366871 }, "geometry": { "type": "Point", "coordinates": [ 153.02, -30.367 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634767, "decimalLat": -33.573049 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -33.573 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039564, "decimalLat": -32.733082 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927329, "decimalLat": -30.507663 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -30.508 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928317, "decimalLat": -31.45942 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.801269, "decimalLat": -31.147698 }, "geometry": { "type": "Point", "coordinates": [ 152.801, -31.148 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108012, "decimalLat": -29.490409 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919293, "decimalLat": -31.47032 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595653, "decimalLat": -34.413943 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922804, "decimalLat": -31.474914 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636196, "decimalLat": -34.487714 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.789933, "decimalLat": -32.654111 }, "geometry": { "type": "Point", "coordinates": [ 151.79, -32.654 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.715325, "decimalLat": -32.670293 }, "geometry": { "type": "Point", "coordinates": [ 151.715, -32.67 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.961258, "decimalLat": -31.252551 }, "geometry": { "type": "Point", "coordinates": [ 152.961, -31.253 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607892, "decimalLat": -34.422333 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.102708, "decimalLat": -32.733272 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519484, "decimalLat": -34.456668 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63817, "decimalLat": -34.419982 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064412, "decimalLat": -32.711305 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904782, "decimalLat": -29.690996 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -29.691 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51958, "decimalLat": -34.447186 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615997, "decimalLat": -34.449528 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921665, "decimalLat": -31.453753 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.941754, "decimalLat": -30.494066 }, "geometry": { "type": "Point", "coordinates": [ 152.942, -30.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603961, "decimalLat": -34.427025 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.567012, "decimalLat": -34.483871 }, "geometry": { "type": "Point", "coordinates": [ 150.567, -34.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.279242, "decimalLat": -29.876908 }, "geometry": { "type": "Point", "coordinates": [ 152.279, -29.877 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.269131, "decimalLat": -32.487277 }, "geometry": { "type": "Point", "coordinates": [ 152.269, -32.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519776, "decimalLat": -34.462975 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518238, "decimalLat": -34.446545 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924537, "decimalLat": -31.443756 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.182249, "decimalLat": -28.847074 }, "geometry": { "type": "Point", "coordinates": [ 153.182, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.721325, "decimalLat": -31.780022 }, "geometry": { "type": "Point", "coordinates": [ 152.721, -31.78 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.876419, "decimalLat": -34.022804 }, "geometry": { "type": "Point", "coordinates": [ 150.876, -34.023 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374763, "decimalLat": -28.252334 }, "geometry": { "type": "Point", "coordinates": [ 153.375, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616971, "decimalLat": -34.439766 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.957921, "decimalLat": -30.648838 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -30.649 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910747, "decimalLat": -31.446683 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638753, "decimalLat": -34.489296 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61687, "decimalLat": -33.443058 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -33.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62744, "decimalLat": -34.385822 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645156, "decimalLat": -34.393161 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.342755, "decimalLat": -28.823294 }, "geometry": { "type": "Point", "coordinates": [ 153.343, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915685, "decimalLat": -31.453974 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06372, "decimalLat": -32.70657 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78839, "decimalLat": -34.198852 }, "geometry": { "type": "Point", "coordinates": [ 150.788, -34.199 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.13525, "decimalLat": -32.727203 }, "geometry": { "type": "Point", "coordinates": [ 152.135, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559696, "decimalLat": -28.371176 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.371 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557543, "decimalLat": -28.3886 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907065, "decimalLat": -31.449225 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52071, "decimalLat": -34.465645 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495337, "decimalLat": -28.678098 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.678 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.534066, "decimalLat": -28.509896 }, "geometry": { "type": "Point", "coordinates": [ 153.534, -28.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615687, "decimalLat": -34.438587 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521898, "decimalLat": -34.46447 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.397512, "decimalLat": -29.013555 }, "geometry": { "type": "Point", "coordinates": [ 153.398, -29.014 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608645, "decimalLat": -34.435979 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.31054, "decimalLat": -31.21821 }, "geometry": { "type": "Point", "coordinates": [ 150.311, -31.218 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063696, "decimalLat": -32.706633 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.710779, "decimalLat": -32.612534 }, "geometry": { "type": "Point", "coordinates": [ 151.711, -32.613 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.986639, "decimalLat": -30.584828 }, "geometry": { "type": "Point", "coordinates": [ 152.987, -30.585 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.660995, "decimalLat": -30.207726 }, "geometry": { "type": "Point", "coordinates": [ 152.661, -30.208 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.987287, "decimalLat": -30.437247 }, "geometry": { "type": "Point", "coordinates": [ 152.987, -30.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.0348, "decimalLat": -32.76535 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637333, "decimalLat": -34.423834 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.064231, "decimalLat": -33.773548 }, "geometry": { "type": "Point", "coordinates": [ 150.064, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.152022, "decimalLat": -30.143817 }, "geometry": { "type": "Point", "coordinates": [ 153.152, -30.144 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914201, "decimalLat": -31.452842 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.821582, "decimalLat": -31.147624 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.148 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.515926, "decimalLat": -28.238877 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -28.239 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428365, "decimalLat": -28.817995 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103259, "decimalLat": -29.486696 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071682, "decimalLat": -28.585441 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -28.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518245, "decimalLat": -34.45145 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.826585, "decimalLat": -29.625039 }, "geometry": { "type": "Point", "coordinates": [ 152.827, -29.625 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527361, "decimalLat": -34.444556 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103055, "decimalLat": -29.489381 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.489872 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63002, "decimalLat": -34.420789 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063752, "decimalLat": -32.706616 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110023, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925303, "decimalLat": -31.453741 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105233, "decimalLat": -29.489727 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607157, "decimalLat": -34.454566 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520399, "decimalLat": -34.465837 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516481, "decimalLat": -34.445617 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077254, "decimalLat": -32.724577 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.551041, "decimalLat": -28.582477 }, "geometry": { "type": "Point", "coordinates": [ 153.551, -28.582 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071977, "decimalLat": -30.880197 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603399, "decimalLat": -34.442899 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.166938, "decimalLat": -32.00875 }, "geometry": { "type": "Point", "coordinates": [ 152.167, -32.009 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103988, "decimalLat": -29.485282 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334102, "decimalLat": -28.85774 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636368, "decimalLat": -34.421769 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400236, "decimalLat": -28.619978 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.62 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513197, "decimalLat": -34.447732 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.574292, "decimalLat": -33.695661 }, "geometry": { "type": "Point", "coordinates": [ 150.574, -33.696 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.088405, "decimalLat": -32.743606 }, "geometry": { "type": "Point", "coordinates": [ 152.088, -32.744 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.479122, "decimalLat": -28.249424 }, "geometry": { "type": "Point", "coordinates": [ 153.479, -28.249 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091927, "decimalLat": -30.192008 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -30.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605504, "decimalLat": -34.437396 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616626, "decimalLat": -34.437739 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.840231, "decimalLat": -34.060825 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789914, "decimalLat": -34.197915 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.198 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.526792, "decimalLat": -32.045078 }, "geometry": { "type": "Point", "coordinates": [ 152.527, -32.045 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635663, "decimalLat": -34.418221 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519485, "decimalLat": -34.45665 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.826264, "decimalLat": -31.650019 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -31.65 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782506, "decimalLat": -31.483446 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -31.483 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786918, "decimalLat": -33.705762 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095325, "decimalLat": -29.483969 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610378, "decimalLat": -34.420209 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.269552, "decimalLat": -28.889151 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521269, "decimalLat": -34.466233 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640818, "decimalLat": -34.397738 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.761113, "decimalLat": -32.403422 }, "geometry": { "type": "Point", "coordinates": [ 149.761, -32.403 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603106, "decimalLat": -34.41811 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562348, "decimalLat": -28.384052 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913123, "decimalLat": -31.429546 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.71241, "decimalLat": -31.783116 }, "geometry": { "type": "Point", "coordinates": [ 152.712, -31.783 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.970752, "decimalLat": -31.190689 }, "geometry": { "type": "Point", "coordinates": [ 152.971, -31.191 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519839, "decimalLat": -34.447236 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607424, "decimalLat": -34.449812 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925749, "decimalLat": -31.447608 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522828, "decimalLat": -34.465778 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899605, "decimalLat": -31.443736 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.308567, "decimalLat": -36.108252 }, "geometry": { "type": "Point", "coordinates": [ 149.309, -36.108 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881362, "decimalLat": -31.454857 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532626, "decimalLat": -34.481266 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618313, "decimalLat": -34.435041 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109471, "decimalLat": -29.490488 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520551, "decimalLat": -34.454084 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.105233, "decimalLat": -29.489792 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.986522, "decimalLat": -34.095981 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.065764, "decimalLat": -33.773548 }, "geometry": { "type": "Point", "coordinates": [ 150.066, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110055, "decimalLat": -29.490194 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659178, "decimalLat": -34.457413 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003869, "decimalLat": -32.696024 }, "geometry": { "type": "Point", "coordinates": [ 150.004, -32.696 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522779, "decimalLat": -34.448675 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629805, "decimalLat": -34.394514 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.930096, "decimalLat": -36.638123 }, "geometry": { "type": "Point", "coordinates": [ 149.93, -36.638 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.358079, "decimalLat": -28.699705 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -28.7 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633678, "decimalLat": -34.418399 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.976212, "decimalLat": -34.103482 }, "geometry": { "type": "Point", "coordinates": [ 150.976, -34.103 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605572, "decimalLat": -34.427742 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604203, "decimalLat": -34.437992 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30083, "decimalLat": -28.820727 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08227, "decimalLat": -32.776668 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -32.777 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900022, "decimalLat": -29.631247 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.32285, "decimalLat": -28.59266 }, "geometry": { "type": "Point", "coordinates": [ 152.323, -28.593 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625154, "decimalLat": -34.386652 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929155, "decimalLat": -31.456148 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602142, "decimalLat": -34.451466 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.66621, "decimalLat": -30.50157 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077879, "decimalLat": -28.594978 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -28.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.53868, "decimalLat": -28.58252 }, "geometry": { "type": "Point", "coordinates": [ 153.539, -28.583 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.749732, "decimalLat": -31.432993 }, "geometry": { "type": "Point", "coordinates": [ 152.75, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.934864, "decimalLat": -30.381692 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -30.382 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.950092, "decimalLat": -32.03086 }, "geometry": { "type": "Point", "coordinates": [ 151.95, -32.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639858, "decimalLat": -34.40019 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603619, "decimalLat": -34.426063 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200473, "decimalLat": -29.354393 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522061, "decimalLat": -34.465951 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792449, "decimalLat": -30.218407 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -30.218 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.180054, "decimalLat": -31.958599 }, "geometry": { "type": "Point", "coordinates": [ 152.18, -31.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.074068, "decimalLat": -28.555716 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.282657, "decimalLat": -36.188545 }, "geometry": { "type": "Point", "coordinates": [ 149.283, -36.189 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633422, "decimalLat": -34.392339 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104272, "decimalLat": -29.480051 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870041, "decimalLat": -29.679147 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -29.679 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925868, "decimalLat": -31.453019 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.142571, "decimalLat": -32.718621 }, "geometry": { "type": "Point", "coordinates": [ 152.143, -32.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911295, "decimalLat": -31.430412 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103935, "decimalLat": -29.485361 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306627, "decimalLat": -28.837908 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103747, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518391, "decimalLat": -34.447648 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63907, "decimalLat": -34.491601 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902536, "decimalLat": -31.257732 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.706837, "decimalLat": -34.257052 }, "geometry": { "type": "Point", "coordinates": [ 150.707, -34.257 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926952, "decimalLat": -31.454658 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523786, "decimalLat": -34.458792 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.45143, "decimalLat": -34.46226 }, "geometry": { "type": "Point", "coordinates": [ 150.451, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921522, "decimalLat": -31.472926 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635846, "decimalLat": -34.392783 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627324, "decimalLat": -34.42034 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.789011, "decimalLat": -32.654338 }, "geometry": { "type": "Point", "coordinates": [ 151.789, -32.654 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.218171, "decimalLat": -28.863704 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.48834, "decimalLat": -28.238862 }, "geometry": { "type": "Point", "coordinates": [ 153.488, -28.239 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618085, "decimalLat": -34.429636 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10814, "decimalLat": -29.490283 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10446, "decimalLat": -29.477539 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.668216, "decimalLat": -33.555824 }, "geometry": { "type": "Point", "coordinates": [ 150.668, -33.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.609263, "decimalLat": -30.344469 }, "geometry": { "type": "Point", "coordinates": [ 152.609, -30.344 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.589469, "decimalLat": -28.832918 }, "geometry": { "type": "Point", "coordinates": [ 153.589, -28.833 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516645, "decimalLat": -34.448181 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104085, "decimalLat": -29.483741 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302196, "decimalLat": -28.818587 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783507, "decimalLat": -34.195909 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -34.196 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785547, "decimalLat": -33.715746 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.115909, "decimalLat": -33.753483 }, "geometry": { "type": "Point", "coordinates": [ 150.116, -33.753 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914151, "decimalLat": -31.466412 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.844864, "decimalLat": -29.834314 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312778, "decimalLat": -28.850517 }, "geometry": { "type": "Point", "coordinates": [ 153.313, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52391, "decimalLat": -34.463798 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.735456, "decimalLat": -31.344735 }, "geometry": { "type": "Point", "coordinates": [ 152.735, -31.345 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063418, "decimalLat": -32.70614 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51759, "decimalLat": -34.453014 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63307, "decimalLat": -34.419496 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769456, "decimalLat": -30.916275 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -30.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610127, "decimalLat": -34.430166 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514308, "decimalLat": -34.446592 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597882, "decimalLat": -34.425788 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519687, "decimalLat": -34.463036 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091741, "decimalLat": -29.487882 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624471, "decimalLat": -34.388136 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.068091, "decimalLat": -30.889482 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -30.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513075, "decimalLat": -34.447098 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.04505, "decimalLat": -33.194327 }, "geometry": { "type": "Point", "coordinates": [ 151.045, -33.194 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900217, "decimalLat": -31.443763 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925787, "decimalLat": -31.447572 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071733, "decimalLat": -32.707087 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525436, "decimalLat": -34.464821 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.103604, "decimalLat": -33.780771 }, "geometry": { "type": "Point", "coordinates": [ 150.104, -33.781 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.758944, "decimalLat": -34.150024 }, "geometry": { "type": "Point", "coordinates": [ 150.759, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519106, "decimalLat": -34.459869 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.704764, "decimalLat": -33.479658 }, "geometry": { "type": "Point", "coordinates": [ 150.705, -33.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.294852, "decimalLat": -28.875094 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.875 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.857805, "decimalLat": -30.313905 }, "geometry": { "type": "Point", "coordinates": [ 152.858, -30.314 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603167, "decimalLat": -34.435015 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555115, "decimalLat": -28.32982 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.33 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972808, "decimalLat": -36.432232 }, "geometry": { "type": "Point", "coordinates": [ 149.973, -36.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095233, "decimalLat": -29.489685 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609221, "decimalLat": -34.420727 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.2817, "decimalLat": -28.94339 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.943 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522268, "decimalLat": -34.451594 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640382, "decimalLat": -34.494096 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062152, "decimalLat": -32.711264 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.030988, "decimalLat": -32.732986 }, "geometry": { "type": "Point", "coordinates": [ 152.031, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643662, "decimalLat": -34.399876 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.194716, "decimalLat": -32.176503 }, "geometry": { "type": "Point", "coordinates": [ 152.195, -32.177 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61188, "decimalLat": -34.433211 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619243, "decimalLat": -34.400701 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787165, "decimalLat": -31.630112 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627918, "decimalLat": -34.420902 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516788, "decimalLat": -34.446281 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633237, "decimalLat": -34.489549 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630741, "decimalLat": -34.389844 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92876, "decimalLat": -29.72653 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522364, "decimalLat": -34.465272 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.333795, "decimalLat": -28.818515 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.34022, "decimalLat": -31.980755 }, "geometry": { "type": "Point", "coordinates": [ 152.34, -31.981 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618, "decimalLat": -34.449099 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615835, "decimalLat": -34.436462 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.832, "decimalLat": -31.26349 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -31.263 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.006047, "decimalLat": -36.148614 }, "geometry": { "type": "Point", "coordinates": [ 150.006, -36.149 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.100351, "decimalLat": -32.734692 }, "geometry": { "type": "Point", "coordinates": [ 152.1, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641555, "decimalLat": -34.395535 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277461, "decimalLat": -28.67595 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636953, "decimalLat": -34.488278 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520933, "decimalLat": -34.465072 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615831, "decimalLat": -34.438499 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633991, "decimalLat": -34.489835 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.994379, "decimalLat": -32.732002 }, "geometry": { "type": "Point", "coordinates": [ 151.994, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.565248, "decimalLat": -28.330093 }, "geometry": { "type": "Point", "coordinates": [ 152.565, -28.33 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616999, "decimalLat": -34.43378 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.431324, "decimalLat": -29.016415 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.083425, "decimalLat": -32.735591 }, "geometry": { "type": "Point", "coordinates": [ 152.083, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785095, "decimalLat": -33.717469 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63925, "decimalLat": -34.491775 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4962, "decimalLat": -28.693308 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.086374, "decimalLat": -30.921786 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -30.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103784, "decimalLat": -29.485524 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.36858, "decimalLat": -28.8002 }, "geometry": { "type": "Point", "coordinates": [ 153.369, -28.8 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093839, "decimalLat": -29.488623 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104305, "decimalLat": -29.477763 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923461, "decimalLat": -31.478974 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809099, "decimalLat": -34.099907 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.312357, "decimalLat": -28.815323 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60248, "decimalLat": -34.434695 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865058, "decimalLat": -31.284534 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -31.285 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512985, "decimalLat": -34.447169 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101714, "decimalLat": -29.489391 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630055, "decimalLat": -34.388343 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.057723, "decimalLat": -32.736906 }, "geometry": { "type": "Point", "coordinates": [ 152.058, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095893, "decimalLat": -29.484614 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628757, "decimalLat": -34.389229 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.005012, "decimalLat": -28.627092 }, "geometry": { "type": "Point", "coordinates": [ 153.005, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.732467, "decimalLat": -33.39893 }, "geometry": { "type": "Point", "coordinates": [ 150.732, -33.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.798193, "decimalLat": -32.524161 }, "geometry": { "type": "Point", "coordinates": [ 151.798, -32.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324809, "decimalLat": -36.294327 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.294 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630841, "decimalLat": -34.39402 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9258, "decimalLat": -31.447637 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641479, "decimalLat": -34.395515 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.531713, "decimalLat": -28.315525 }, "geometry": { "type": "Point", "coordinates": [ 153.532, -28.316 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.22599, "decimalLat": -28.887585 }, "geometry": { "type": "Point", "coordinates": [ 153.226, -28.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602691, "decimalLat": -34.434916 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064574, "decimalLat": -32.709268 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889761, "decimalLat": -30.468293 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -30.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.639906, "decimalLat": -31.866824 }, "geometry": { "type": "Point", "coordinates": [ 152.64, -31.867 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103956, "decimalLat": -29.478716 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598525, "decimalLat": -34.419291 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.485179, "decimalLat": -28.681463 }, "geometry": { "type": "Point", "coordinates": [ 153.485, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786044, "decimalLat": -33.713315 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07341, "decimalLat": -30.3673 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -30.367 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.260867, "decimalLat": -31.987576 }, "geometry": { "type": "Point", "coordinates": [ 152.261, -31.988 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.570857, "decimalLat": -31.621151 }, "geometry": { "type": "Point", "coordinates": [ 152.571, -31.621 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070546, "decimalLat": -32.713375 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516324, "decimalLat": -34.448336 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639209, "decimalLat": -34.392685 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.006573, "decimalLat": -32.727459 }, "geometry": { "type": "Point", "coordinates": [ 152.007, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925119, "decimalLat": -31.454017 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.831332, "decimalLat": -31.071286 }, "geometry": { "type": "Point", "coordinates": [ 152.831, -31.071 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910301, "decimalLat": -31.453481 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.90159, "decimalLat": -32.481601 }, "geometry": { "type": "Point", "coordinates": [ 151.902, -32.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51515, "decimalLat": -34.442804 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616304, "decimalLat": -34.436787 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78579, "decimalLat": -33.705914 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.011198, "decimalLat": -32.315308 }, "geometry": { "type": "Point", "coordinates": [ 152.011, -32.315 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405062, "decimalLat": -31.908074 }, "geometry": { "type": "Point", "coordinates": [ 152.405, -31.908 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515721, "decimalLat": -34.446674 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104155, "decimalLat": -29.478893 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.685311, "decimalLat": -28.395477 }, "geometry": { "type": "Point", "coordinates": [ 152.685, -28.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604369, "decimalLat": -34.424923 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101574, "decimalLat": -29.48989 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630388, "decimalLat": -34.420878 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887374, "decimalLat": -31.479734 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639266, "decimalLat": -34.392614 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400824, "decimalLat": -28.255296 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.255 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.355949, "decimalLat": -28.661428 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609859, "decimalLat": -34.419712 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627453, "decimalLat": -34.421163 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784628, "decimalLat": -33.713381 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602642, "decimalLat": -34.424826 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513013, "decimalLat": -34.447332 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367822, "decimalLat": -28.866277 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525386, "decimalLat": -34.45841 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615352, "decimalLat": -34.431251 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519626, "decimalLat": -34.452596 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.034208, "decimalLat": -30.354527 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -30.355 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43553, "decimalLat": -28.939407 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604291, "decimalLat": -34.437949 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785634, "decimalLat": -33.709283 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.852497, "decimalLat": -31.550641 }, "geometry": { "type": "Point", "coordinates": [ 152.852, -31.551 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824062, "decimalLat": -29.505429 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613482, "decimalLat": -34.431953 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532893, "decimalLat": -34.482164 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.482 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.031075, "decimalLat": -32.737141 }, "geometry": { "type": "Point", "coordinates": [ 152.031, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.809611, "decimalLat": -28.47123 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -28.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808205, "decimalLat": -34.098195 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40417, "decimalLat": -31.94582 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627993, "decimalLat": -34.42093 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790182, "decimalLat": -31.128698 }, "geometry": { "type": "Point", "coordinates": [ 152.79, -31.129 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791046, "decimalLat": -34.139845 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632829, "decimalLat": -34.419582 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103956, "decimalLat": -29.489535 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.270273, "decimalLat": -31.867951 }, "geometry": { "type": "Point", "coordinates": [ 152.27, -31.868 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59711, "decimalLat": -34.41701 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110554, "decimalLat": -29.490058 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.101055, "decimalLat": -29.767673 }, "geometry": { "type": "Point", "coordinates": [ 151.101, -29.768 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63895, "decimalLat": -34.418925 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625431, "decimalLat": -34.389939 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.003971, "decimalLat": -29.18501 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -29.185 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516051, "decimalLat": -34.450215 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322407, "decimalLat": -28.886135 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.603032, "decimalLat": -28.713649 }, "geometry": { "type": "Point", "coordinates": [ 153.603, -28.714 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103774, "decimalLat": -29.485496 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624937, "decimalLat": -34.385882 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095931, "decimalLat": -29.484567 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395917, "decimalLat": -29.047059 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -29.047 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103881, "decimalLat": -29.489587 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916499, "decimalLat": -31.450527 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.195533, "decimalLat": -32.21526 }, "geometry": { "type": "Point", "coordinates": [ 152.196, -32.215 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525494, "decimalLat": -34.4599 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637355, "decimalLat": -34.423798 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785478, "decimalLat": -33.713476 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103977, "decimalLat": -29.478067 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307108, "decimalLat": -28.823097 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063752, "decimalLat": -32.706571 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.81336, "decimalLat": -32.35301 }, "geometry": { "type": "Point", "coordinates": [ 151.813, -32.353 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633481, "decimalLat": -34.417665 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.831497, "decimalLat": -29.65128 }, "geometry": { "type": "Point", "coordinates": [ 150.831, -29.651 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.472547, "decimalLat": -28.557321 }, "geometry": { "type": "Point", "coordinates": [ 153.473, -28.557 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556977, "decimalLat": -28.397252 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427431, "decimalLat": -28.66904 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518664, "decimalLat": -34.451647 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071988, "decimalLat": -30.88564 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.368307, "decimalLat": -31.872617 }, "geometry": { "type": "Point", "coordinates": [ 152.368, -31.873 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783058, "decimalLat": -33.718275 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.004999, "decimalLat": -32.633078 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -32.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.004553, "decimalLat": -29.182605 }, "geometry": { "type": "Point", "coordinates": [ 153.005, -29.183 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518691, "decimalLat": -34.437134 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520969, "decimalLat": -34.464234 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65126, "decimalLat": -33.52168 }, "geometry": { "type": "Point", "coordinates": [ 150.651, -33.522 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625142, "decimalLat": -34.386715 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108178, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887929, "decimalLat": -31.43899 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520472, "decimalLat": -34.436503 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517152, "decimalLat": -34.44097 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.05406, "decimalLat": -34.89741 }, "geometry": { "type": "Point", "coordinates": [ 150.054, -34.897 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631742, "decimalLat": -34.388277 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527179, "decimalLat": -34.469562 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103731, "decimalLat": -29.485697 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.896614, "decimalLat": -33.999714 }, "geometry": { "type": "Point", "coordinates": [ 150.897, -34.0 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.261976, "decimalLat": -28.808246 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -28.808 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518984, "decimalLat": -34.443766 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60144, "decimalLat": -28.7273 }, "geometry": { "type": "Point", "coordinates": [ 153.601, -28.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615568, "decimalLat": -34.435519 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517461, "decimalLat": -34.439353 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.541298, "decimalLat": -33.570549 }, "geometry": { "type": "Point", "coordinates": [ 149.541, -33.571 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630949, "decimalLat": -34.388252 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.842028, "decimalLat": -31.441729 }, "geometry": { "type": "Point", "coordinates": [ 152.842, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103822, "decimalLat": -29.485594 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.282714, "decimalLat": -28.824306 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.12018, "decimalLat": -31.10635 }, "geometry": { "type": "Point", "coordinates": [ 150.12, -31.106 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926819, "decimalLat": -31.454803 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521574, "decimalLat": -34.465851 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104289, "decimalLat": -29.480061 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095663, "decimalLat": -29.490432 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30336, "decimalLat": -28.81546 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322696, "decimalLat": -28.836553 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91316, "decimalLat": -31.42999 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.271156, "decimalLat": -28.458033 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -28.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644407, "decimalLat": -34.391929 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.310054, "decimalLat": -28.827861 }, "geometry": { "type": "Point", "coordinates": [ 153.31, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602812, "decimalLat": -34.424577 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293264, "decimalLat": -28.864618 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.580918, "decimalLat": -28.866037 }, "geometry": { "type": "Point", "coordinates": [ 153.581, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782552, "decimalLat": -33.719306 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.489058, "decimalLat": -28.473692 }, "geometry": { "type": "Point", "coordinates": [ 152.489, -28.474 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.749371, "decimalLat": -31.559219 }, "geometry": { "type": "Point", "coordinates": [ 152.749, -31.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627319, "decimalLat": -34.421305 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625196, "decimalLat": -34.386707 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914196, "decimalLat": -31.459867 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.397106, "decimalLat": -29.013371 }, "geometry": { "type": "Point", "coordinates": [ 153.397, -29.013 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88495, "decimalLat": -31.440252 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884429, "decimalLat": -31.436114 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103897, "decimalLat": -29.489596 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868031, "decimalLat": -31.474242 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9086, "decimalLat": -31.438625 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.641625, "decimalLat": -29.605435 }, "geometry": { "type": "Point", "coordinates": [ 152.642, -29.605 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616988, "decimalLat": -34.440316 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605093, "decimalLat": -34.433123 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.348122, "decimalLat": -28.908299 }, "geometry": { "type": "Point", "coordinates": [ 153.348, -28.908 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521971, "decimalLat": -34.490714 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924536, "decimalLat": -31.463493 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090894, "decimalLat": -29.487425 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.58838, "decimalLat": -32.875538 }, "geometry": { "type": "Point", "coordinates": [ 151.588, -32.876 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625463, "decimalLat": -34.384972 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.196735, "decimalLat": -33.087519 }, "geometry": { "type": "Point", "coordinates": [ 151.197, -33.088 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518144, "decimalLat": -34.447147 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604736, "decimalLat": -34.427311 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.46736, "decimalLat": -34.48964 }, "geometry": { "type": "Point", "coordinates": [ 150.467, -34.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.66091, "decimalLat": -32.660629 }, "geometry": { "type": "Point", "coordinates": [ 151.661, -32.661 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.656185, "decimalLat": -32.683168 }, "geometry": { "type": "Point", "coordinates": [ 151.656, -32.683 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.718595, "decimalLat": -30.570923 }, "geometry": { "type": "Point", "coordinates": [ 151.719, -30.571 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.925808, "decimalLat": -29.793058 }, "geometry": { "type": "Point", "coordinates": [ 150.926, -29.793 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104514, "decimalLat": -29.477366 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.614383, "decimalLat": -28.662662 }, "geometry": { "type": "Point", "coordinates": [ 153.614, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.586978, "decimalLat": -32.874627 }, "geometry": { "type": "Point", "coordinates": [ 151.587, -32.875 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610442, "decimalLat": -34.419119 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90993, "decimalLat": -30.17285 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -30.173 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374358, "decimalLat": -31.915375 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915878, "decimalLat": -31.485404 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52309, "decimalLat": -34.464638 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.47216, "decimalLat": -34.49208 }, "geometry": { "type": "Point", "coordinates": [ 150.472, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959933, "decimalLat": -36.657162 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642701, "decimalLat": -34.39461 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.7154, "decimalLat": -30.4684 }, "geometry": { "type": "Point", "coordinates": [ 152.715, -30.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616196, "decimalLat": -34.440616 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863317, "decimalLat": -31.143567 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -31.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796414, "decimalLat": -34.187079 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.187 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915355, "decimalLat": -31.484386 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520186, "decimalLat": -34.453554 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914262, "decimalLat": -31.479398 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.765357, "decimalLat": -32.698016 }, "geometry": { "type": "Point", "coordinates": [ 151.765, -32.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525318, "decimalLat": -34.458877 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.54948, "decimalLat": -28.59176 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.592 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638563, "decimalLat": -34.423019 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520633, "decimalLat": -34.453869 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784216, "decimalLat": -33.717003 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07555, "decimalLat": -28.558157 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -28.558 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597962, "decimalLat": -34.418054 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79418, "decimalLat": -34.23443 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.234 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437475, "decimalLat": -28.573115 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.573 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307505, "decimalLat": -28.850479 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.535936, "decimalLat": -32.202337 }, "geometry": { "type": "Point", "coordinates": [ 152.536, -32.202 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535175, "decimalLat": -34.497472 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.261989, "decimalLat": -32.459181 }, "geometry": { "type": "Point", "coordinates": [ 152.262, -32.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.064703, "decimalLat": -28.535245 }, "geometry": { "type": "Point", "coordinates": [ 153.065, -28.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104063, "decimalLat": -29.485109 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610289, "decimalLat": -34.419134 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.036423, "decimalLat": -30.8961 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602965, "decimalLat": -34.437121 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40067, "decimalLat": -28.257744 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.799848, "decimalLat": -34.11751 }, "geometry": { "type": "Point", "coordinates": [ 150.8, -34.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.453035, "decimalLat": -33.791641 }, "geometry": { "type": "Point", "coordinates": [ 149.453, -33.792 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607577, "decimalLat": -34.42193 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298899, "decimalLat": -28.8205 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880655, "decimalLat": -31.453171 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.784804, "decimalLat": -32.653494 }, "geometry": { "type": "Point", "coordinates": [ 151.785, -32.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518313, "decimalLat": -34.451388 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.959252, "decimalLat": -36.447255 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.52954, "decimalLat": -28.54593 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -28.546 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.075269, "decimalLat": -32.722458 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.963543, "decimalLat": -30.895436 }, "geometry": { "type": "Point", "coordinates": [ 151.964, -30.895 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923661, "decimalLat": -31.445282 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.585588, "decimalLat": -28.861642 }, "geometry": { "type": "Point", "coordinates": [ 153.586, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.940088, "decimalLat": -33.953175 }, "geometry": { "type": "Point", "coordinates": [ 150.94, -33.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374278, "decimalLat": -31.915995 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.815095, "decimalLat": -34.085656 }, "geometry": { "type": "Point", "coordinates": [ 150.815, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630325, "decimalLat": -34.395335 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520125, "decimalLat": -34.449333 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104138, "decimalLat": -29.478674 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.979536, "decimalLat": -28.622393 }, "geometry": { "type": "Point", "coordinates": [ 152.98, -28.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521589, "decimalLat": -34.465716 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1077, "decimalLat": -29.489367 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09253, "decimalLat": -29.488424 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.005586, "decimalLat": -34.047038 }, "geometry": { "type": "Point", "coordinates": [ 151.006, -34.047 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104272, "decimalLat": -29.479963 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92376, "decimalLat": -31.44407 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627793, "decimalLat": -34.389868 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.062723, "decimalLat": -33.775973 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104557, "decimalLat": -29.477329 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103717, "decimalLat": -29.485695 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603776, "decimalLat": -34.431231 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782635, "decimalLat": -31.631042 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.445719, "decimalLat": -28.589459 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90614, "decimalLat": -30.23995 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -30.24 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557536, "decimalLat": -28.393661 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527479, "decimalLat": -34.469379 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103849, "decimalLat": -29.48552 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381244, "decimalLat": -31.911866 }, "geometry": { "type": "Point", "coordinates": [ 152.381, -31.912 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792628, "decimalLat": -34.1399 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.556514, "decimalLat": -33.552581 }, "geometry": { "type": "Point", "coordinates": [ 149.557, -33.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402173, "decimalLat": -28.258555 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600743, "decimalLat": -34.42808 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.834868, "decimalLat": -34.069512 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.041401, "decimalLat": -32.734873 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "Queensland", "decimalLon": 151.995057, "decimalLat": -26.274399 }, "geometry": { "type": "Point", "coordinates": [ 151.995, -26.274 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.341408, "decimalLat": -36.313453 }, "geometry": { "type": "Point", "coordinates": [ 149.341, -36.313 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.919596, "decimalLat": -33.969405 }, "geometry": { "type": "Point", "coordinates": [ 150.92, -33.969 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904688, "decimalLat": -31.444457 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611438, "decimalLat": -34.41967 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336244, "decimalLat": -28.8161 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.318031, "decimalLat": -36.298453 }, "geometry": { "type": "Point", "coordinates": [ 149.318, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905493, "decimalLat": -31.436901 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635985, "decimalLat": -34.485528 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603612, "decimalLat": -34.430859 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306193, "decimalLat": -28.653247 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.04662, "decimalLat": -31.0339 }, "geometry": { "type": "Point", "coordinates": [ 150.047, -31.034 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60664, "decimalLat": -34.436859 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.075203, "decimalLat": -30.298352 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -30.298 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.25918, "decimalLat": -29.3406 }, "geometry": { "type": "Point", "coordinates": [ 153.259, -29.341 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610226, "decimalLat": -34.419079 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627424, "decimalLat": -34.42027 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.968497, "decimalLat": -34.121054 }, "geometry": { "type": "Point", "coordinates": [ 150.968, -34.121 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513838, "decimalLat": -34.445942 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.041211, "decimalLat": -33.196786 }, "geometry": { "type": "Point", "coordinates": [ 151.041, -33.197 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515537, "decimalLat": -34.445147 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972808, "decimalLat": -36.432232 }, "geometry": { "type": "Point", "coordinates": [ 149.973, -36.432 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1038, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90279, "decimalLat": -30.24015 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.24 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.294456, "decimalLat": -28.864649 }, "geometry": { "type": "Point", "coordinates": [ 153.294, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627406, "decimalLat": -34.390104 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10077, "decimalLat": -29.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783755, "decimalLat": -33.718759 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627195, "decimalLat": -34.420671 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.545214, "decimalLat": -28.598873 }, "geometry": { "type": "Point", "coordinates": [ 153.545, -28.599 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597077, "decimalLat": -34.417054 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.864107, "decimalLat": -29.608734 }, "geometry": { "type": "Point", "coordinates": [ 150.864, -29.609 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.059214, "decimalLat": -33.774438 }, "geometry": { "type": "Point", "coordinates": [ 150.059, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518238, "decimalLat": -34.446563 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619227, "decimalLat": -34.436943 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513029, "decimalLat": -34.447161 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788781, "decimalLat": -30.895519 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108124, "decimalLat": -29.490245 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327762, "decimalLat": -28.671784 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.498708, "decimalLat": -31.928166 }, "geometry": { "type": "Point", "coordinates": [ 152.499, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908216, "decimalLat": -31.438716 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786758, "decimalLat": -31.145762 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.146 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.082425, "decimalLat": -29.77223 }, "geometry": { "type": "Point", "coordinates": [ 151.082, -29.772 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072216, "decimalLat": -32.711197 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926984, "decimalLat": -31.454913 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659564, "decimalLat": -34.455284 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280413, "decimalLat": -28.819052 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.439389, "decimalLat": -28.572519 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.573 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.485197 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602705, "decimalLat": -34.439009 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10976, "decimalLat": -29.490194 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.073799, "decimalLat": -30.367814 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.368 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868104, "decimalLat": -29.667396 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808197, "decimalLat": -34.098161 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103886, "decimalLat": -29.485346 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63382, "decimalLat": -34.418375 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.973345, "decimalLat": -30.418271 }, "geometry": { "type": "Point", "coordinates": [ 152.973, -30.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.159445, "decimalLat": -32.711701 }, "geometry": { "type": "Point", "coordinates": [ 152.159, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454341, "decimalLat": -28.653446 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642742, "decimalLat": -34.395089 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.214137, "decimalLat": -28.850161 }, "geometry": { "type": "Point", "coordinates": [ 153.214, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625139, "decimalLat": -34.399499 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103822, "decimalLat": -29.484702 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629627, "decimalLat": -34.388849 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520389, "decimalLat": -34.465809 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516175, "decimalLat": -34.459251 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604168, "decimalLat": -34.438064 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604202, "decimalLat": -34.438001 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.223474, "decimalLat": -36.077344 }, "geometry": { "type": "Point", "coordinates": [ 149.223, -36.077 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513918, "decimalLat": -34.447287 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615811, "decimalLat": -34.43501 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40371, "decimalLat": -31.928295 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623291, "decimalLat": -34.383326 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.93656, "decimalLat": -32.527568 }, "geometry": { "type": "Point", "coordinates": [ 151.937, -32.528 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915486, "decimalLat": -31.445932 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82712, "decimalLat": -28.8433 }, "geometry": { "type": "Point", "coordinates": [ 152.827, -28.843 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.094228, "decimalLat": -33.775493 }, "geometry": { "type": "Point", "coordinates": [ 150.094, -33.775 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103859, "decimalLat": -29.489545 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311636, "decimalLat": -28.820316 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6433, "decimalLat": -34.393395 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899674, "decimalLat": -29.630972 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615839, "decimalLat": -34.4363 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793878, "decimalLat": -31.642109 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.34022, "decimalLat": -31.980755 }, "geometry": { "type": "Point", "coordinates": [ 152.34, -31.981 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784543, "decimalLat": -33.71717 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.793837, "decimalLat": -34.137545 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.138 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.40941, "decimalLat": -31.91019 }, "geometry": { "type": "Point", "coordinates": [ 152.409, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.358327, "decimalLat": -34.412696 }, "geometry": { "type": "Point", "coordinates": [ 150.358, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.061285, "decimalLat": -28.540438 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -28.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.179226, "decimalLat": -33.313359 }, "geometry": { "type": "Point", "coordinates": [ 150.179, -33.313 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.382207, "decimalLat": -28.879979 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523869, "decimalLat": -34.463707 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299324, "decimalLat": -28.888717 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531432, "decimalLat": -34.460056 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.549607, "decimalLat": -28.589179 }, "geometry": { "type": "Point", "coordinates": [ 153.55, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635953, "decimalLat": -34.419498 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790423, "decimalLat": -31.643706 }, "geometry": { "type": "Point", "coordinates": [ 152.79, -31.644 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615158, "decimalLat": -34.436557 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.550107, "decimalLat": -28.55679 }, "geometry": { "type": "Point", "coordinates": [ 153.55, -28.557 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.778494, "decimalLat": -30.631123 }, "geometry": { "type": "Point", "coordinates": [ 151.778, -30.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522292, "decimalLat": -34.453344 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.23546, "decimalLat": -34.267639 }, "geometry": { "type": "Point", "coordinates": [ 150.235, -34.268 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315937, "decimalLat": -28.826412 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.978709, "decimalLat": -36.441024 }, "geometry": { "type": "Point", "coordinates": [ 149.979, -36.441 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109369, "decimalLat": -29.490474 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103505, "decimalLat": -29.485473 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640484, "decimalLat": -34.493954 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87324, "decimalLat": -29.683515 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -29.684 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06396, "decimalLat": -32.706636 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520327, "decimalLat": -34.4657 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.106101, "decimalLat": -32.728323 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.333311, "decimalLat": -28.861328 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605413, "decimalLat": -34.423808 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.010167, "decimalLat": -29.080778 }, "geometry": { "type": "Point", "coordinates": [ 153.01, -29.081 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108172, "decimalLat": -29.490446 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09578, "decimalLat": -30.15738 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -30.157 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.630999, "decimalLat": -30.53312 }, "geometry": { "type": "Point", "coordinates": [ 152.631, -30.533 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519959, "decimalLat": -34.44649 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11197, "decimalLat": -30.31747 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -30.317 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523495, "decimalLat": -34.463853 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868144, "decimalLat": -31.465261 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.410062, "decimalLat": -31.939208 }, "geometry": { "type": "Point", "coordinates": [ 152.41, -31.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615712, "decimalLat": -34.438497 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515381, "decimalLat": -34.460353 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.298153, "decimalLat": -32.203408 }, "geometry": { "type": "Point", "coordinates": [ 152.298, -32.203 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.446234, "decimalLat": -28.867527 }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.868 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603145, "decimalLat": -34.435024 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812651, "decimalLat": -29.797394 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -29.797 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617615, "decimalLat": -34.448505 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929032, "decimalLat": -31.459609 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281861, "decimalLat": -28.872929 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.873 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319097, "decimalLat": -28.815739 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514191, "decimalLat": -34.446147 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784667, "decimalLat": -31.632463 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521459, "decimalLat": -34.465714 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601359, "decimalLat": -34.416786 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.965237, "decimalLat": -36.459771 }, "geometry": { "type": "Point", "coordinates": [ 149.965, -36.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626067, "decimalLat": -34.388987 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.823282, "decimalLat": -32.583593 }, "geometry": { "type": "Point", "coordinates": [ 151.823, -32.584 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921143, "decimalLat": -31.45536 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92734, "decimalLat": -31.457655 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.129423, "decimalLat": -29.334619 }, "geometry": { "type": "Point", "coordinates": [ 153.129, -29.335 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.162028, "decimalLat": -28.559749 }, "geometry": { "type": "Point", "coordinates": [ 153.162, -28.56 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.016744, "decimalLat": -32.734454 }, "geometry": { "type": "Point", "coordinates": [ 152.017, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785178, "decimalLat": -33.714129 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.117869, "decimalLat": -35.060622 }, "geometry": { "type": "Point", "coordinates": [ 150.118, -35.061 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.17355, "decimalLat": -32.72578 }, "geometry": { "type": "Point", "coordinates": [ 152.174, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513232, "decimalLat": -34.4462 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.566248, "decimalLat": -30.372589 }, "geometry": { "type": "Point", "coordinates": [ 151.566, -30.373 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637374, "decimalLat": -34.488016 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.10172, "decimalLat": -29.767315 }, "geometry": { "type": "Point", "coordinates": [ 151.102, -29.767 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.316289, "decimalLat": -36.297742 }, "geometry": { "type": "Point", "coordinates": [ 149.316, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51889, "decimalLat": -34.444485 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.870381, "decimalLat": -29.441584 }, "geometry": { "type": "Point", "coordinates": [ 149.87, -29.442 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.835809, "decimalLat": -34.879659 }, "geometry": { "type": "Point", "coordinates": [ 146.836, -34.88 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902432, "decimalLat": -31.431231 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.323447, "decimalLat": -36.298931 }, "geometry": { "type": "Point", "coordinates": [ 149.323, -36.299 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.01549, "decimalLat": -31.12735 }, "geometry": { "type": "Point", "coordinates": [ 150.015, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315798, "decimalLat": -28.850912 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913198, "decimalLat": -31.476644 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798197, "decimalLat": -31.141782 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609192, "decimalLat": -34.420609 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524748, "decimalLat": -34.489211 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.021287, "decimalLat": -36.554124 }, "geometry": { "type": "Point", "coordinates": [ 150.021, -36.554 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.650468, "decimalLat": -31.436745 }, "geometry": { "type": "Point", "coordinates": [ 152.65, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824267, "decimalLat": -29.811407 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930318, "decimalLat": -31.45623 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063508, "decimalLat": -32.706257 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071979, "decimalLat": -30.885996 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78748, "decimalLat": -34.188031 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.20646, "decimalLat": -32.22662 }, "geometry": { "type": "Point", "coordinates": [ 152.206, -32.227 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.993522, "decimalLat": -33.976184 }, "geometry": { "type": "Point", "coordinates": [ 150.994, -33.976 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637422, "decimalLat": -34.423754 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894957, "decimalLat": -31.462332 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.409093, "decimalLat": -28.860794 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -28.861 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915427, "decimalLat": -31.445979 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.573313, "decimalLat": -34.767365 }, "geometry": { "type": "Point", "coordinates": [ 146.573, -34.767 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909381, "decimalLat": -31.441711 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60474, "decimalLat": -34.452707 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609669, "decimalLat": -34.436332 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514789, "decimalLat": -34.44652 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972808, "decimalLat": -36.432232 }, "geometry": { "type": "Point", "coordinates": [ 149.973, -36.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612141, "decimalLat": -34.432053 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607092, "decimalLat": -34.437806 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529756, "decimalLat": -34.467829 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630156, "decimalLat": -34.42063 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.032695, "decimalLat": -30.380447 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -30.38 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.988024, "decimalLat": -30.523033 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -30.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307736, "decimalLat": -28.891385 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608689, "decimalLat": -34.453542 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.361435, "decimalLat": -32.157945 }, "geometry": { "type": "Point", "coordinates": [ 152.361, -32.158 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516522, "decimalLat": -34.450107 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602981, "decimalLat": -34.427447 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627365, "decimalLat": -34.421198 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622833, "decimalLat": -34.384516 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.429199, "decimalLat": -31.921829 }, "geometry": { "type": "Point", "coordinates": [ 152.429, -31.922 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51643, "decimalLat": -34.438521 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552328, "decimalLat": -33.581979 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.582 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93879, "decimalLat": -29.728067 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -29.728 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.797333, "decimalLat": -34.23148 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.231 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.828715, "decimalLat": -31.650173 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -31.65 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.21561, "decimalLat": -32.415167 }, "geometry": { "type": "Point", "coordinates": [ 152.216, -32.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520726, "decimalLat": -34.45333 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947048, "decimalLat": -36.640426 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.64 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79015, "decimalLat": -34.1925 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513148, "decimalLat": -34.447181 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607163, "decimalLat": -34.435688 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10931, "decimalLat": -29.490806 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892054, "decimalLat": -31.447443 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640684, "decimalLat": -34.49421 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516594, "decimalLat": -28.686362 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.686 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.731612, "decimalLat": -30.903477 }, "geometry": { "type": "Point", "coordinates": [ 152.732, -30.903 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627457, "decimalLat": -34.420262 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090835, "decimalLat": -29.480084 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.244711, "decimalLat": -28.878209 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -28.878 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911165, "decimalLat": -31.472917 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081977, "decimalLat": -32.736244 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.765357, "decimalLat": -32.698016 }, "geometry": { "type": "Point", "coordinates": [ 151.765, -32.698 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.994766, "decimalLat": -34.052599 }, "geometry": { "type": "Point", "coordinates": [ 150.995, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786218, "decimalLat": -31.63008 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822273, "decimalLat": -29.166116 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -29.166 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609073, "decimalLat": -34.49498 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631114, "decimalLat": -34.387435 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.590547, "decimalLat": -28.711776 }, "geometry": { "type": "Point", "coordinates": [ 153.591, -28.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51375, "decimalLat": -34.446346 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.519374, "decimalLat": -28.68721 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.138375, "decimalLat": -30.083815 }, "geometry": { "type": "Point", "coordinates": [ 152.138, -30.084 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621991, "decimalLat": -34.397752 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316687, "decimalLat": -28.94445 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.944 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.528655, "decimalLat": -28.567538 }, "geometry": { "type": "Point", "coordinates": [ 153.529, -28.568 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79379, "decimalLat": -34.144381 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516011, "decimalLat": -34.448988 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.088271, "decimalLat": -32.731353 }, "geometry": { "type": "Point", "coordinates": [ 152.088, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101354, "decimalLat": -29.489648 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399568, "decimalLat": -29.03758 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -29.038 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.075187, "decimalLat": -33.761197 }, "geometry": { "type": "Point", "coordinates": [ 150.075, -33.761 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319101, "decimalLat": -28.886056 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.852271, "decimalLat": -31.553047 }, "geometry": { "type": "Point", "coordinates": [ 152.852, -31.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336083, "decimalLat": -28.816629 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003869, "decimalLat": -32.696024 }, "geometry": { "type": "Point", "coordinates": [ 150.004, -32.696 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617909, "decimalLat": -34.435078 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784864, "decimalLat": -33.716463 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.765357, "decimalLat": -32.698016 }, "geometry": { "type": "Point", "coordinates": [ 151.765, -32.698 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.237953, "decimalLat": -33.108598 }, "geometry": { "type": "Point", "coordinates": [ 151.238, -33.109 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.460271, "decimalLat": -32.039901 }, "geometry": { "type": "Point", "coordinates": [ 152.46, -32.04 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109331, "decimalLat": -29.490423 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903792, "decimalLat": -31.484947 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785278, "decimalLat": -33.716967 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.221448, "decimalLat": -28.827533 }, "geometry": { "type": "Point", "coordinates": [ 153.221, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522448, "decimalLat": -34.465031 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.624706, "decimalLat": -30.402213 }, "geometry": { "type": "Point", "coordinates": [ 151.625, -30.402 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104133, "decimalLat": -29.480556 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517285, "decimalLat": -34.446382 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617368, "decimalLat": -34.438412 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.074384, "decimalLat": -30.363455 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.363 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886066, "decimalLat": -31.43944 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.824834, "decimalLat": -34.144495 }, "geometry": { "type": "Point", "coordinates": [ 150.825, -34.144 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924941, "decimalLat": -31.458917 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.981149, "decimalLat": -34.08336 }, "geometry": { "type": "Point", "coordinates": [ 150.981, -34.083 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808226, "decimalLat": -34.098297 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.973761, "decimalLat": -30.418362 }, "geometry": { "type": "Point", "coordinates": [ 152.974, -30.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604504, "decimalLat": -34.438106 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104096, "decimalLat": -29.483853 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.435457, "decimalLat": -28.252442 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603413, "decimalLat": -34.436291 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6376, "decimalLat": -34.486587 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.47492, "decimalLat": -28.308531 }, "geometry": { "type": "Point", "coordinates": [ 153.475, -28.309 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515798, "decimalLat": -34.444801 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.120491, "decimalLat": -35.076943 }, "geometry": { "type": "Point", "coordinates": [ 150.12, -35.077 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.13075, "decimalLat": -34.701028 }, "geometry": { "type": "Point", "coordinates": [ 150.131, -34.701 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.149708, "decimalLat": -35.079356 }, "geometry": { "type": "Point", "coordinates": [ 150.15, -35.079 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104037, "decimalLat": -29.485165 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631484, "decimalLat": -34.387812 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608781, "decimalLat": -34.452218 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.103579, "decimalLat": -29.761499 }, "geometry": { "type": "Point", "coordinates": [ 151.104, -29.761 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.173203, "decimalLat": -31.569933 }, "geometry": { "type": "Point", "coordinates": [ 152.173, -31.57 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616358, "decimalLat": -34.436039 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.026035, "decimalLat": -34.036295 }, "geometry": { "type": "Point", "coordinates": [ 151.026, -34.036 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63269, "decimalLat": -34.418317 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.458702, "decimalLat": -32.240759 }, "geometry": { "type": "Point", "coordinates": [ 152.459, -32.241 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630054, "decimalLat": -34.420754 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092754, "decimalLat": -28.603203 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -28.603 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898086, "decimalLat": -31.443017 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276239, "decimalLat": -28.857815 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -28.858 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.35899, "decimalLat": -31.92441 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616337, "decimalLat": -34.436021 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514431, "decimalLat": -34.447234 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633635, "decimalLat": -34.418389 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897967, "decimalLat": -31.436069 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.059212, "decimalLat": -29.739723 }, "geometry": { "type": "Point", "coordinates": [ 151.059, -29.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517301, "decimalLat": -34.44146 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52425, "decimalLat": -34.433333 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922927, "decimalLat": -31.474359 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62991, "decimalLat": -34.395409 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.148222, "decimalLat": -32.726424 }, "geometry": { "type": "Point", "coordinates": [ 152.148, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109766, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622024, "decimalLat": -34.397744 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103994, "decimalLat": -29.485188 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616116, "decimalLat": -34.434241 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630986, "decimalLat": -34.386946 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552114, "decimalLat": -33.491195 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.547334, "decimalLat": -28.676052 }, "geometry": { "type": "Point", "coordinates": [ 153.547, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104138, "decimalLat": -29.478786 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300206, "decimalLat": -28.886464 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626918, "decimalLat": -34.421631 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615158, "decimalLat": -34.436557 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063862, "decimalLat": -32.706755 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.38998, "decimalLat": -28.873569 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110125, "decimalLat": -29.490278 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.361619, "decimalLat": -31.872896 }, "geometry": { "type": "Point", "coordinates": [ 152.362, -31.873 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.083203, "decimalLat": -29.388848 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -29.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076205, "decimalLat": -32.735558 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898943, "decimalLat": -31.442636 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607772, "decimalLat": -34.441786 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513928, "decimalLat": -34.447296 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514827, "decimalLat": -34.44195 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.615374, "decimalLat": -28.680668 }, "geometry": { "type": "Point", "coordinates": [ 153.615, -28.681 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327926, "decimalLat": -28.817168 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609531, "decimalLat": -34.419002 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07148, "decimalLat": -32.709625 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.087289, "decimalLat": -32.727893 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46202, "decimalLat": -28.650301 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.351709, "decimalLat": -36.151906 }, "geometry": { "type": "Point", "coordinates": [ 149.352, -36.152 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615524, "decimalLat": -34.432859 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623745, "decimalLat": -34.383415 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89298, "decimalLat": -31.43675 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644348, "decimalLat": -34.39676 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825293, "decimalLat": -29.810362 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.81 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608935, "decimalLat": -34.434975 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.374185, "decimalLat": -29.029201 }, "geometry": { "type": "Point", "coordinates": [ 153.374, -29.029 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102508, "decimalLat": -29.488088 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78694, "decimalLat": -33.706489 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908215, "decimalLat": -31.434745 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.056638, "decimalLat": -30.337135 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -30.337 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.738846, "decimalLat": -30.4842 }, "geometry": { "type": "Point", "coordinates": [ 151.739, -30.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.479253, "decimalLat": -32.408237 }, "geometry": { "type": "Point", "coordinates": [ 152.479, -32.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.384261, "decimalLat": -29.089379 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -29.089 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.573313, "decimalLat": -34.767365 }, "geometry": { "type": "Point", "coordinates": [ 146.573, -34.767 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09216, "decimalLat": -29.488209 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.599218, "decimalLat": -28.719867 }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513962, "decimalLat": -34.447261 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.464937, "decimalLat": -31.939308 }, "geometry": { "type": "Point", "coordinates": [ 152.465, -31.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523991, "decimalLat": -34.466225 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59849, "decimalLat": -34.419354 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.574297, "decimalLat": -34.509623 }, "geometry": { "type": "Point", "coordinates": [ 150.574, -34.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639331, "decimalLat": -34.421637 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61147, "decimalLat": -34.41968 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785979, "decimalLat": -33.70879 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616595, "decimalLat": -34.43498 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.763456, "decimalLat": -31.50084 }, "geometry": { "type": "Point", "coordinates": [ 152.763, -31.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.814633, "decimalLat": -31.57399 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.574 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639005, "decimalLat": -34.491563 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527177, "decimalLat": -34.469652 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51843, "decimalLat": -34.452211 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.26075, "decimalLat": -32.20813 }, "geometry": { "type": "Point", "coordinates": [ 152.261, -32.208 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.874926, "decimalLat": -31.465013 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929779, "decimalLat": -29.726674 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624493, "decimalLat": -34.388118 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640524, "decimalLat": -34.494099 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784703, "decimalLat": -33.70803 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103779, "decimalLat": -29.485688 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.074128, "decimalLat": -32.744614 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -32.745 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638874, "decimalLat": -34.41932 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.000276, "decimalLat": -30.408847 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -30.409 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.512624, "decimalLat": -34.730723 }, "geometry": { "type": "Point", "coordinates": [ 146.513, -34.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520389, "decimalLat": -34.454053 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070398, "decimalLat": -32.712818 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88053, "decimalLat": -31.42527 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.425 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.09174, "decimalLat": -28.784917 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -28.785 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521577, "decimalLat": -34.465374 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.234, "decimalLat": -33.118012 }, "geometry": { "type": "Point", "coordinates": [ 151.234, -33.118 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51798, "decimalLat": -34.447559 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522358, "decimalLat": -34.465119 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099793, "decimalLat": -29.491571 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523424, "decimalLat": -34.45297 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.08566, "decimalLat": -34.03444 }, "geometry": { "type": "Point", "coordinates": [ 151.086, -34.034 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522105, "decimalLat": -34.464095 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596834, "decimalLat": -34.450226 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924192, "decimalLat": -31.449788 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109396, "decimalLat": -29.490507 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.813666, "decimalLat": -32.353086 }, "geometry": { "type": "Point", "coordinates": [ 151.814, -32.353 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063687, "decimalLat": -32.70658 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51964, "decimalLat": -34.437414 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.759506, "decimalLat": -30.916546 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.917 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.359451, "decimalLat": -28.796866 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -28.797 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925818, "decimalLat": -31.452744 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603992, "decimalLat": -34.427071 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785443, "decimalLat": -31.632199 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56086, "decimalLat": -28.39009 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.098667, "decimalLat": -29.492599 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374067, "decimalLat": -31.915481 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293195, "decimalLat": -28.864615 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404546, "decimalLat": -31.920432 }, "geometry": { "type": "Point", "coordinates": [ 152.405, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87324, "decimalLat": -31.473236 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.716251, "decimalLat": -32.80101 }, "geometry": { "type": "Point", "coordinates": [ 151.716, -32.801 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109304, "decimalLat": -29.490862 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632736, "decimalLat": -34.418255 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627197, "decimalLat": -34.386719 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811429, "decimalLat": -31.131447 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -31.131 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103693, "decimalLat": -32.720642 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617077, "decimalLat": -34.434854 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603229, "decimalLat": -34.437018 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521305, "decimalLat": -34.466125 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.546218, "decimalLat": -28.388732 }, "geometry": { "type": "Point", "coordinates": [ 153.546, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.59348, "decimalLat": -32.91562 }, "geometry": { "type": "Point", "coordinates": [ 151.593, -32.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401543, "decimalLat": -28.256448 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.01536, "decimalLat": -28.63955 }, "geometry": { "type": "Point", "coordinates": [ 153.015, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.799906, "decimalLat": -31.122511 }, "geometry": { "type": "Point", "coordinates": [ 152.8, -31.123 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62296, "decimalLat": -34.383896 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.09174, "decimalLat": -28.784917 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -28.785 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897066, "decimalLat": -31.475241 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103755, "decimalLat": -29.485573 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.02546, "decimalLat": -34.03636 }, "geometry": { "type": "Point", "coordinates": [ 151.025, -34.036 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413034, "decimalLat": -31.932608 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921557, "decimalLat": -31.46776 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103752, "decimalLat": -29.485559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.215241, "decimalLat": -32.249007 }, "geometry": { "type": "Point", "coordinates": [ 152.215, -32.249 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.685257, "decimalLat": -34.352833 }, "geometry": { "type": "Point", "coordinates": [ 150.685, -34.353 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524099, "decimalLat": -34.452614 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552708, "decimalLat": -33.561748 }, "geometry": { "type": "Point", "coordinates": [ 149.553, -33.562 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.098865, "decimalLat": -29.490203 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.085619, "decimalLat": -30.345313 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -30.345 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400728, "decimalLat": -28.257919 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104004, "decimalLat": -29.485319 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104364, "decimalLat": -29.477646 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.036748, "decimalLat": -32.070691 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.071 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 8, "individual": 1, "stateProvi": "Victoria", "decimalLon": 145.060212, "decimalLat": -38.418359 }, "geometry": { "type": "Point", "coordinates": [ 145.06, -38.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062586, "decimalLat": -32.70933 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528042, "decimalLat": -34.458401 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624285, "decimalLat": -34.386266 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639083, "decimalLat": -34.392548 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.353555, "decimalLat": -32.130634 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -32.131 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606526, "decimalLat": -34.454194 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192249, "decimalLat": -32.23198 }, "geometry": { "type": "Point", "coordinates": [ 152.192, -32.232 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597675, "decimalLat": -34.426947 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.078206, "decimalLat": -32.727783 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.13963, "decimalLat": -31.17914 }, "geometry": { "type": "Point", "coordinates": [ 150.14, -31.179 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.118573, "decimalLat": -33.113355 }, "geometry": { "type": "Point", "coordinates": [ 151.119, -33.113 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905648, "decimalLat": -31.436927 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622982, "decimalLat": -34.385781 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788922, "decimalLat": -30.117272 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -30.117 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51465, "decimalLat": -34.444615 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61581, "decimalLat": -34.438472 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.843329, "decimalLat": -31.526054 }, "geometry": { "type": "Point", "coordinates": [ 152.843, -31.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.073907, "decimalLat": -28.501505 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -28.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79308, "decimalLat": -34.23001 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.23 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.953442, "decimalLat": -34.106742 }, "geometry": { "type": "Point", "coordinates": [ 150.953, -34.107 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640165, "decimalLat": -34.396977 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519668, "decimalLat": -34.45522 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607664, "decimalLat": -34.422319 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604932, "decimalLat": -34.426927 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.606727, "decimalLat": -30.351545 }, "geometry": { "type": "Point", "coordinates": [ 152.607, -30.352 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51942, "decimalLat": -34.446704 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875823, "decimalLat": -31.452844 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606694, "decimalLat": -34.436878 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.007455, "decimalLat": -28.623698 }, "geometry": { "type": "Point", "coordinates": [ 153.007, -28.624 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.069496, "decimalLat": -30.887804 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.310848, "decimalLat": -28.840678 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.349116, "decimalLat": -28.86986 }, "geometry": { "type": "Point", "coordinates": [ 153.349, -28.87 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524281, "decimalLat": -34.461552 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631778, "decimalLat": -34.394336 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640666, "decimalLat": -34.393868 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.982477, "decimalLat": -34.130879 }, "geometry": { "type": "Point", "coordinates": [ 150.982, -34.131 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55232, "decimalLat": -28.586547 }, "geometry": { "type": "Point", "coordinates": [ 153.552, -28.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89266, "decimalLat": -33.991958 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.992 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785758, "decimalLat": -33.713901 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63916, "decimalLat": -34.491494 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617064, "decimalLat": -34.43379 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515914, "decimalLat": -34.448608 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883809, "decimalLat": -31.440852 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642837, "decimalLat": -34.395577 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.00335, "decimalLat": -28.618808 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -28.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608883, "decimalLat": -34.436434 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.111855, "decimalLat": -32.738464 }, "geometry": { "type": "Point", "coordinates": [ 152.112, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521347, "decimalLat": -34.459194 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516308, "decimalLat": -34.447056 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632291, "decimalLat": -34.388107 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400574, "decimalLat": -28.257945 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611712, "decimalLat": -34.432974 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518925, "decimalLat": -34.447253 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.352906, "decimalLat": -28.83385 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611896, "decimalLat": -34.431481 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.359607, "decimalLat": -29.397543 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -29.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.979713, "decimalLat": -34.085499 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -34.085 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.352906, "decimalLat": -28.83385 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906408, "decimalLat": -31.434677 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434144, "decimalLat": -29.029015 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -29.029 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.220622, "decimalLat": -31.626749 }, "geometry": { "type": "Point", "coordinates": [ 152.221, -31.627 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64627, "decimalLat": -34.397266 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521572, "decimalLat": -34.465193 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.162175, "decimalLat": -32.716103 }, "geometry": { "type": "Point", "coordinates": [ 152.162, -32.716 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.466, "decimalLat": -31.94 }, "geometry": { "type": "Point", "coordinates": [ 152.466, -31.94 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911128, "decimalLat": -31.429766 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523849, "decimalLat": -28.7234 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -28.723 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104868, "decimalLat": -29.476838 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.482612, "decimalLat": -28.870802 }, "geometry": { "type": "Point", "coordinates": [ 153.483, -28.871 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918974, "decimalLat": -31.441764 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.620869, "decimalLat": -30.332321 }, "geometry": { "type": "Point", "coordinates": [ 152.621, -30.332 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.097539, "decimalLat": -32.739862 }, "geometry": { "type": "Point", "coordinates": [ 152.098, -32.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524112, "decimalLat": -34.462856 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614455, "decimalLat": -34.429502 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785254, "decimalLat": -33.717055 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077019, "decimalLat": -32.722735 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.638155, "decimalLat": -30.446415 }, "geometry": { "type": "Point", "coordinates": [ 152.638, -30.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895047, "decimalLat": -31.460468 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.408769, "decimalLat": -29.003629 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -29.004 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921754, "decimalLat": -31.446742 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.91364, "decimalLat": -34.0684 }, "geometry": { "type": "Point", "coordinates": [ 150.914, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.160538, "decimalLat": -31.626402 }, "geometry": { "type": "Point", "coordinates": [ 152.161, -31.626 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415091, "decimalLat": -31.933142 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926354, "decimalLat": -31.454584 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930206, "decimalLat": -31.451116 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627787, "decimalLat": -34.390084 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599947, "decimalLat": -34.425098 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.003535, "decimalLat": -28.929895 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927689, "decimalLat": -31.465621 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627941, "decimalLat": -34.420848 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878879, "decimalLat": -31.456741 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607851, "decimalLat": -34.448936 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784442, "decimalLat": -33.718187 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524683, "decimalLat": -34.46119 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.490226, "decimalLat": -28.679923 }, "geometry": { "type": "Point", "coordinates": [ 153.49, -28.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561346, "decimalLat": -28.389209 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319544, "decimalLat": -28.914105 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.914 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.644655, "decimalLat": -31.505865 }, "geometry": { "type": "Point", "coordinates": [ 152.645, -31.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517336, "decimalLat": -34.452035 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618351, "decimalLat": -34.440198 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60259, "decimalLat": -34.436545 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.406411, "decimalLat": -31.909761 }, "geometry": { "type": "Point", "coordinates": [ 152.406, -31.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524998, "decimalLat": -34.463811 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60434, "decimalLat": -34.438897 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513795, "decimalLat": -34.446284 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.363201, "decimalLat": -32.07347 }, "geometry": { "type": "Point", "coordinates": [ 152.363, -32.073 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104181, "decimalLat": -29.483745 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.16856, "decimalLat": -32.748567 }, "geometry": { "type": "Point", "coordinates": [ 152.169, -32.749 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.917922, "decimalLat": -36.474664 }, "geometry": { "type": "Point", "coordinates": [ 149.918, -36.475 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320392, "decimalLat": -28.82415 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.381937, "decimalLat": -28.872186 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786992, "decimalLat": -33.708357 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.834299, "decimalLat": -31.533974 }, "geometry": { "type": "Point", "coordinates": [ 152.834, -31.534 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51997, "decimalLat": -34.453107 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324953, "decimalLat": -28.830313 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.45439, "decimalLat": -28.65348 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.653 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19096, "decimalLat": -32.219628 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -32.22 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514934, "decimalLat": -34.443115 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523866, "decimalLat": -34.467503 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517012, "decimalLat": -34.435783 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.748256, "decimalLat": -31.235504 }, "geometry": { "type": "Point", "coordinates": [ 152.748, -31.236 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.707228, "decimalLat": -32.689634 }, "geometry": { "type": "Point", "coordinates": [ 151.707, -32.69 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102561, "decimalLat": -29.4887 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522236, "decimalLat": -34.464837 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07377, "decimalLat": -30.880745 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.881 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517498, "decimalLat": -34.446918 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109251, "decimalLat": -29.490778 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.886337, "decimalLat": -34.005448 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.005 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.361307, "decimalLat": -36.020013 }, "geometry": { "type": "Point", "coordinates": [ 149.361, -36.02 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.986544, "decimalLat": -29.031264 }, "geometry": { "type": "Point", "coordinates": [ 152.987, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.541106, "decimalLat": -28.33583 }, "geometry": { "type": "Point", "coordinates": [ 153.541, -28.336 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630138, "decimalLat": -34.394268 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636366, "decimalLat": -34.485535 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.74776, "decimalLat": -34.339191 }, "geometry": { "type": "Point", "coordinates": [ 150.748, -34.339 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103618, "decimalLat": -29.48848 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516271, "decimalLat": -34.469963 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522569, "decimalLat": -34.463852 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.157975, "decimalLat": -28.92735 }, "geometry": { "type": "Point", "coordinates": [ 153.158, -28.927 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395298, "decimalLat": -28.960004 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523303, "decimalLat": -28.665755 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.666 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104155, "decimalLat": -29.47887 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897352, "decimalLat": -31.474884 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785921, "decimalLat": -33.703739 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.197758, "decimalLat": -28.843864 }, "geometry": { "type": "Point", "coordinates": [ 153.198, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.157972, "decimalLat": -30.091144 }, "geometry": { "type": "Point", "coordinates": [ 152.158, -30.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103779, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10814, "decimalLat": -29.490269 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637454, "decimalLat": -34.423782 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.291283, "decimalLat": -28.825577 }, "geometry": { "type": "Point", "coordinates": [ 153.291, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610051, "decimalLat": -34.455768 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.542492, "decimalLat": -32.052253 }, "geometry": { "type": "Point", "coordinates": [ 152.542, -32.052 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644423, "decimalLat": -34.393706 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532504, "decimalLat": -34.481705 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.482 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.586628, "decimalLat": -33.464338 }, "geometry": { "type": "Point", "coordinates": [ 150.587, -33.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883013, "decimalLat": -31.426555 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -31.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297006, "decimalLat": -28.847118 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605672, "decimalLat": -34.423497 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899325, "decimalLat": -29.631042 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.104403, "decimalLat": -32.726436 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916594, "decimalLat": -31.475879 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913153, "decimalLat": -31.480571 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281985, "decimalLat": -28.820834 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109417, "decimalLat": -29.490516 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607161, "decimalLat": -34.435751 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513885, "decimalLat": -34.446926 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315192, "decimalLat": -28.94146 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624554, "decimalLat": -34.385956 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528136, "decimalLat": -34.465552 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790998, "decimalLat": -31.640024 }, "geometry": { "type": "Point", "coordinates": [ 152.791, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.334694, "decimalLat": -34.384972 }, "geometry": { "type": "Point", "coordinates": [ 150.335, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927173, "decimalLat": -31.458044 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636126, "decimalLat": -34.420322 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064955, "decimalLat": -32.710907 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895785, "decimalLat": -31.435164 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883023, "decimalLat": -31.449268 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522204, "decimalLat": -34.4659 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.359444, "decimalLat": -30.474167 }, "geometry": { "type": "Point", "coordinates": [ 153.359, -30.474 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903039, "decimalLat": -31.467267 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785493, "decimalLat": -33.7064 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821796, "decimalLat": -34.104746 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889058, "decimalLat": -28.802661 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -28.803 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1085, "decimalLat": -29.489974 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786036, "decimalLat": -33.712308 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783052, "decimalLat": -33.71859 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.75204, "decimalLat": -32.04245 }, "geometry": { "type": "Point", "coordinates": [ 151.752, -32.042 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602813, "decimalLat": -34.424559 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892872, "decimalLat": -31.443977 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518833, "decimalLat": -34.447396 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109739, "decimalLat": -29.490175 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520389, "decimalLat": -34.465827 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602279, "decimalLat": -34.425739 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.65776, "decimalLat": -32.7214 }, "geometry": { "type": "Point", "coordinates": [ 151.658, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604716, "decimalLat": -34.427256 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.057976, "decimalLat": -28.858365 }, "geometry": { "type": "Point", "coordinates": [ 153.058, -28.858 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.732017, "decimalLat": -32.917245 }, "geometry": { "type": "Point", "coordinates": [ 150.732, -32.917 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808597, "decimalLat": -34.098229 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.575576, "decimalLat": -32.895553 }, "geometry": { "type": "Point", "coordinates": [ 151.576, -32.896 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914435, "decimalLat": -31.466553 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522887, "decimalLat": -34.450913 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608216, "decimalLat": -34.456769 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.338752, "decimalLat": -28.817639 }, "geometry": { "type": "Point", "coordinates": [ 153.339, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559233, "decimalLat": -28.393883 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657247, "decimalLat": -34.454843 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625295, "decimalLat": -34.388233 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627166, "decimalLat": -34.420923 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325824, "decimalLat": -28.589252 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.627106, "decimalLat": -30.523005 }, "geometry": { "type": "Point", "coordinates": [ 152.627, -30.523 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104154, "decimalLat": -29.485258 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606659, "decimalLat": -34.454115 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316639, "decimalLat": -28.82576 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189597, "decimalLat": -32.229205 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638304, "decimalLat": -34.485942 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955028, "decimalLat": -36.650407 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623017, "decimalLat": -34.397258 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108017, "decimalLat": -29.490133 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922659, "decimalLat": -31.459878 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9415, "decimalLat": -31.187267 }, "geometry": { "type": "Point", "coordinates": [ 152.942, -31.187 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.08624, "decimalLat": -31.09179 }, "geometry": { "type": "Point", "coordinates": [ 150.086, -31.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.0288, "decimalLat": -34.0252 }, "geometry": { "type": "Point", "coordinates": [ 151.029, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908157, "decimalLat": -31.450157 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017398, "decimalLat": -30.37894 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -30.379 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37414, "decimalLat": -31.915646 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785164, "decimalLat": -31.633853 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.634 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631348, "decimalLat": -34.420013 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070793, "decimalLat": -32.711914 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917848, "decimalLat": -31.473855 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513097, "decimalLat": -34.44672 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.132092, "decimalLat": -29.186193 }, "geometry": { "type": "Point", "coordinates": [ 153.132, -29.186 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516994, "decimalLat": -34.442995 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516034, "decimalLat": -34.448204 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.058724, "decimalLat": -29.736748 }, "geometry": { "type": "Point", "coordinates": [ 151.059, -29.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073064, "decimalLat": -32.724694 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615489, "decimalLat": -34.432173 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603811, "decimalLat": -34.42429 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.404602, "decimalLat": -28.665447 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.665 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513674, "decimalLat": -34.446344 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902664, "decimalLat": -30.462176 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.374883, "decimalLat": -36.013015 }, "geometry": { "type": "Point", "coordinates": [ 149.375, -36.013 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897381, "decimalLat": -31.437304 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915683, "decimalLat": -31.484325 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921463, "decimalLat": -31.452173 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09974, "decimalLat": -29.491562 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915434, "decimalLat": -31.445884 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.218423, "decimalLat": -28.886211 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394044, "decimalLat": -28.85535 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.855 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604314, "decimalLat": -34.432558 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29793, "decimalLat": -28.82455 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.880542, "decimalLat": -34.012784 }, "geometry": { "type": "Point", "coordinates": [ 150.881, -34.013 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.586083, "decimalLat": -28.377985 }, "geometry": { "type": "Point", "coordinates": [ 152.586, -28.378 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640165, "decimalLat": -34.396977 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.554208, "decimalLat": -30.362675 }, "geometry": { "type": "Point", "coordinates": [ 151.554, -30.363 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.961373, "decimalLat": -34.099874 }, "geometry": { "type": "Point", "coordinates": [ 150.961, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103897, "decimalLat": -29.48538 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516862, "decimalLat": -34.446707 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79736, "decimalLat": -31.126116 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.795181, "decimalLat": -34.229227 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.229 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82369, "decimalLat": -34.141271 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.552471, "decimalLat": -28.586411 }, "geometry": { "type": "Point", "coordinates": [ 153.552, -28.586 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943519, "decimalLat": -32.649391 }, "geometry": { "type": "Point", "coordinates": [ 149.944, -32.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.238141, "decimalLat": -29.84096 }, "geometry": { "type": "Point", "coordinates": [ 152.238, -29.841 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.044099, "decimalLat": -30.239463 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -30.239 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658717, "decimalLat": -34.455196 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.263682, "decimalLat": -32.038529 }, "geometry": { "type": "Point", "coordinates": [ 152.264, -32.039 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518246, "decimalLat": -34.451441 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609498, "decimalLat": -34.419046 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88223, "decimalLat": -31.431013 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603561, "decimalLat": -34.434545 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.50578, "decimalLat": -32.92601 }, "geometry": { "type": "Point", "coordinates": [ 151.506, -32.926 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.089051, "decimalLat": -32.737269 }, "geometry": { "type": "Point", "coordinates": [ 152.089, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320987, "decimalLat": -28.834228 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628359, "decimalLat": -34.391033 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639101, "decimalLat": -34.491628 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907014, "decimalLat": -31.444243 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.476288, "decimalLat": -28.871545 }, "geometry": { "type": "Point", "coordinates": [ 153.476, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51437, "decimalLat": -34.445989 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.996146, "decimalLat": -34.06116 }, "geometry": { "type": "Point", "coordinates": [ 150.996, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.917922, "decimalLat": -36.474664 }, "geometry": { "type": "Point", "coordinates": [ 149.918, -36.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604879, "decimalLat": -34.437934 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.004819, "decimalLat": -29.181904 }, "geometry": { "type": "Point", "coordinates": [ 153.005, -29.182 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920647, "decimalLat": -30.505562 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104133, "decimalLat": -29.485151 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.83467, "decimalLat": -31.643094 }, "geometry": { "type": "Point", "coordinates": [ 152.835, -31.643 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602953, "decimalLat": -34.417746 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794959, "decimalLat": -34.2262 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521578, "decimalLat": -34.465734 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.326902, "decimalLat": -31.913066 }, "geometry": { "type": "Point", "coordinates": [ 152.327, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.840231, "decimalLat": -34.060825 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.061 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.102132, "decimalLat": -33.779934 }, "geometry": { "type": "Point", "coordinates": [ 150.102, -33.78 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6292, "decimalLat": -34.395142 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59906, "decimalLat": -34.413108 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926556, "decimalLat": -31.454477 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.060813, "decimalLat": -33.76776 }, "geometry": { "type": "Point", "coordinates": [ 150.061, -33.768 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605685, "decimalLat": -34.434857 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.070141, "decimalLat": -33.78291 }, "geometry": { "type": "Point", "coordinates": [ 150.07, -33.783 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.005398, "decimalLat": -32.727385 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10946, "decimalLat": -29.490479 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303174, "decimalLat": -28.827996 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.925808, "decimalLat": -29.793058 }, "geometry": { "type": "Point", "coordinates": [ 150.926, -29.793 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629926, "decimalLat": -34.388287 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78551, "decimalLat": -31.632409 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103935, "decimalLat": -29.489554 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632008, "decimalLat": -34.418204 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521423, "decimalLat": -34.466542 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.604065, "decimalLat": -32.59069 }, "geometry": { "type": "Point", "coordinates": [ 151.604, -32.591 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394195, "decimalLat": -29.019903 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -29.02 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808623, "decimalLat": -34.098285 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.075, "decimalLat": -32.7213 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728107 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555833, "decimalLat": -28.399167 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077828, "decimalLat": -32.723498 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518216, "decimalLat": -34.443245 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108119, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64133, "decimalLat": -34.393466 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632772, "decimalLat": -34.419671 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63031, "decimalLat": -34.420948 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315556, "decimalLat": -28.827302 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616192, "decimalLat": -34.436153 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.725343, "decimalLat": -30.221882 }, "geometry": { "type": "Point", "coordinates": [ 152.725, -30.222 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104299, "decimalLat": -29.479668 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604765, "decimalLat": -34.427068 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.642997, "decimalLat": -30.496853 }, "geometry": { "type": "Point", "coordinates": [ 151.643, -30.497 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905333, "decimalLat": -31.43676 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636586, "decimalLat": -34.42098 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402846, "decimalLat": -28.963784 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.964 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63138, "decimalLat": -34.420013 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.168357, "decimalLat": -29.442125 }, "geometry": { "type": "Point", "coordinates": [ 153.168, -29.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825231, "decimalLat": -29.810551 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.390708, "decimalLat": -28.838558 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.839 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.20724, "decimalLat": -32.24075 }, "geometry": { "type": "Point", "coordinates": [ 152.207, -32.241 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.716117, "decimalLat": -32.673499 }, "geometry": { "type": "Point", "coordinates": [ 150.716, -32.673 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604765, "decimalLat": -34.427068 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104696, "decimalLat": -29.489634 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.939801, "decimalLat": -30.39464 }, "geometry": { "type": "Point", "coordinates": [ 152.94, -30.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604384, "decimalLat": -34.425546 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.33085, "decimalLat": -33.689191 }, "geometry": { "type": "Point", "coordinates": [ 149.331, -33.689 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525173, "decimalLat": -34.463788 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.979879, "decimalLat": -34.085563 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401177, "decimalLat": -28.258293 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602644, "decimalLat": -34.436546 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513859, "decimalLat": -34.446339 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017038, "decimalLat": -30.367822 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -30.368 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613591, "decimalLat": -34.431955 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189597, "decimalLat": -32.229205 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.48499, "decimalLat": -28.76005 }, "geometry": { "type": "Point", "coordinates": [ 153.485, -28.76 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513076, "decimalLat": -34.447784 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634594, "decimalLat": -34.420265 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.709702, "decimalLat": -33.436422 }, "geometry": { "type": "Point", "coordinates": [ 150.71, -33.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285111, "decimalLat": -28.971807 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.972 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06776, "decimalLat": -34.71343 }, "geometry": { "type": "Point", "coordinates": [ 150.068, -34.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881152, "decimalLat": -31.457636 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909481, "decimalLat": -31.475605 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516175, "decimalLat": -34.446756 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.814797, "decimalLat": -31.396714 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.994505, "decimalLat": -34.071944 }, "geometry": { "type": "Point", "coordinates": [ 150.995, -34.072 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786047, "decimalLat": -33.709604 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522112, "decimalLat": -34.466088 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.913134, "decimalLat": -36.588285 }, "geometry": { "type": "Point", "coordinates": [ 149.913, -36.588 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.269912, "decimalLat": -28.61965 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -28.62 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.228626, "decimalLat": -28.890296 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893449, "decimalLat": -31.448924 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.974031, "decimalLat": -34.124839 }, "geometry": { "type": "Point", "coordinates": [ 150.974, -34.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103377, "decimalLat": -29.486384 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.883218, "decimalLat": -31.458735 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605043, "decimalLat": -34.439055 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79132, "decimalLat": -34.141626 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595746, "decimalLat": -34.413746 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627335, "decimalLat": -34.421486 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78477, "decimalLat": -33.70803 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077238, "decimalLat": -32.722468 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906807, "decimalLat": -31.46699 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604798, "decimalLat": -34.419036 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103041, "decimalLat": -32.733067 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.325146, "decimalLat": -36.330022 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.33 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881609, "decimalLat": -31.450401 }, "geometry": { "type": "Point", "coordinates": [ 152.882, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039641, "decimalLat": -32.731988 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399922, "decimalLat": -28.960764 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630863, "decimalLat": -34.420607 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55716, "decimalLat": -28.644511 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.645 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782684, "decimalLat": -33.719356 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901201, "decimalLat": -31.442724 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10401, "decimalLat": -29.485324 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60855, "decimalLat": -34.456487 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.981376, "decimalLat": -29.03783 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -29.038 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627331, "decimalLat": -34.421242 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522343, "decimalLat": -34.464163 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893081, "decimalLat": -31.447644 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516042, "decimalLat": -34.449043 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631327, "decimalLat": -34.419967 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.443471, "decimalLat": -28.232986 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.233 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637417, "decimalLat": -34.422772 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.133761, "decimalLat": -29.469548 }, "geometry": { "type": "Point", "coordinates": [ 153.134, -29.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.88454, "decimalLat": -33.991232 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -33.991 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523472, "decimalLat": -28.686915 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.687 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.606551, "decimalLat": -30.16019 }, "geometry": { "type": "Point", "coordinates": [ 152.607, -30.16 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608946, "decimalLat": -34.434957 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639158, "decimalLat": -34.491945 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515683, "decimalLat": -34.449784 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51723, "decimalLat": -34.451943 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63925, "decimalLat": -34.392785 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630638, "decimalLat": -34.477518 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924669, "decimalLat": -31.456123 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.863529, "decimalLat": -32.484925 }, "geometry": { "type": "Point", "coordinates": [ 151.864, -32.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613602, "decimalLat": -34.431965 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.324922, "decimalLat": -36.294659 }, "geometry": { "type": "Point", "coordinates": [ 149.325, -36.295 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626576, "decimalLat": -34.385589 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637899, "decimalLat": -34.489108 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297989, "decimalLat": -28.822938 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928242, "decimalLat": -31.474888 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.421332, "decimalLat": -28.982666 }, "geometry": { "type": "Point", "coordinates": [ 153.421, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623379, "decimalLat": -34.383291 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.83195, "decimalLat": -31.2816 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -31.282 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523755, "decimalLat": -34.452472 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.421155, "decimalLat": -34.467647 }, "geometry": { "type": "Point", "coordinates": [ 150.421, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.083408, "decimalLat": -29.759968 }, "geometry": { "type": "Point", "coordinates": [ 151.083, -29.76 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785132, "decimalLat": -33.709463 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108017, "decimalLat": -29.490404 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637268, "decimalLat": -34.423824 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513111, "decimalLat": -34.445873 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921682, "decimalLat": -30.50591 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913531, "decimalLat": -31.478508 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.412883, "decimalLat": -28.228302 }, "geometry": { "type": "Point", "coordinates": [ 153.413, -28.228 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07175, "decimalLat": -30.884921 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.062181, "decimalLat": -33.76782 }, "geometry": { "type": "Point", "coordinates": [ 150.062, -33.768 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60989, "decimalLat": -34.451879 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192089, "decimalLat": -32.216754 }, "geometry": { "type": "Point", "coordinates": [ 152.192, -32.217 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632613, "decimalLat": -34.418342 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.699582, "decimalLat": -30.290202 }, "geometry": { "type": "Point", "coordinates": [ 152.7, -30.29 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.169459, "decimalLat": -28.727142 }, "geometry": { "type": "Point", "coordinates": [ 153.169, -28.727 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104235, "decimalLat": -29.478786 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09592, "decimalLat": -29.484553 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627439, "decimalLat": -34.390078 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317376, "decimalLat": -28.82558 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093131, "decimalLat": -29.485762 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522306, "decimalLat": -34.46428 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607623, "decimalLat": -34.433281 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.589469, "decimalLat": -28.832918 }, "geometry": { "type": "Point", "coordinates": [ 153.589, -28.833 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.016461, "decimalLat": -36.575848 }, "geometry": { "type": "Point", "coordinates": [ 150.016, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.944433, "decimalLat": -29.346563 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -29.347 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520404, "decimalLat": -34.465665 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.612304, "decimalLat": -28.703163 }, "geometry": { "type": "Point", "coordinates": [ 153.612, -28.703 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638249, "decimalLat": -34.490972 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103822, "decimalLat": -29.485545 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.564105, "decimalLat": -31.946291 }, "geometry": { "type": "Point", "coordinates": [ 152.564, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554216, "decimalLat": -28.41521 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.180204, "decimalLat": -33.309974 }, "geometry": { "type": "Point", "coordinates": [ 150.18, -33.31 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.980514, "decimalLat": -36.435679 }, "geometry": { "type": "Point", "coordinates": [ 149.981, -36.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812179, "decimalLat": -31.654857 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -31.655 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.980514, "decimalLat": -36.435679 }, "geometry": { "type": "Point", "coordinates": [ 149.981, -36.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632018, "decimalLat": -34.418232 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104417, "decimalLat": -29.482961 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.754102, "decimalLat": -30.882465 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.882 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.759299, "decimalLat": -30.84178 }, "geometry": { "type": "Point", "coordinates": [ 152.759, -30.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.269325, "decimalLat": -28.629822 }, "geometry": { "type": "Point", "coordinates": [ 153.269, -28.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270371, "decimalLat": -28.88859 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.423585, "decimalLat": -28.727662 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790596, "decimalLat": -34.188134 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924148, "decimalLat": -31.457397 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564733, "decimalLat": -28.386918 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60767, "decimalLat": -34.436591 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919379, "decimalLat": -31.443115 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322384, "decimalLat": -28.953942 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.954 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.73808, "decimalLat": -30.749529 }, "geometry": { "type": "Point", "coordinates": [ 150.738, -30.75 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06371, "decimalLat": -32.706679 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1032, "decimalLat": -29.486626 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889456, "decimalLat": -31.443492 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11547, "decimalLat": -28.632376 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -28.632 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296701, "decimalLat": -28.881133 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.881 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518892, "decimalLat": -34.447253 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630786, "decimalLat": -34.42066 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624211, "decimalLat": -34.388104 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516134, "decimalLat": -34.446683 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063831, "decimalLat": -32.706659 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603755, "decimalLat": -34.436911 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104155, "decimalLat": -29.480869 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103468, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099729, "decimalLat": -29.491525 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616347, "decimalLat": -34.436057 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.972564, "decimalLat": -31.194882 }, "geometry": { "type": "Point", "coordinates": [ 152.973, -31.195 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.143974, "decimalLat": -32.721989 }, "geometry": { "type": "Point", "coordinates": [ 152.144, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51643, "decimalLat": -34.46975 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10468, "decimalLat": -29.489629 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.507589, "decimalLat": -28.809282 }, "geometry": { "type": "Point", "coordinates": [ 153.508, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902281, "decimalLat": -30.522618 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -30.523 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530047, "decimalLat": -34.468295 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.031448, "decimalLat": -30.403932 }, "geometry": { "type": "Point", "coordinates": [ 153.031, -30.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604128, "decimalLat": -34.437946 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635893, "decimalLat": -34.488041 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.60674, "decimalLat": -30.52433 }, "geometry": { "type": "Point", "coordinates": [ 152.607, -30.524 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636885, "decimalLat": -34.422725 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.543732, "decimalLat": -29.560587 }, "geometry": { "type": "Point", "coordinates": [ 150.544, -29.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623181, "decimalLat": -34.397613 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.394754, "decimalLat": -31.965832 }, "geometry": { "type": "Point", "coordinates": [ 152.395, -31.966 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10409, "decimalLat": -29.480028 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071673, "decimalLat": -28.554293 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -28.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520412, "decimalLat": -34.465774 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.085192, "decimalLat": -32.727714 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320382, "decimalLat": -28.647412 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318918, "decimalLat": -28.816928 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.003754, "decimalLat": -29.184329 }, "geometry": { "type": "Point", "coordinates": [ 153.004, -29.184 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631009, "decimalLat": -34.386883 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556638, "decimalLat": -28.381267 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80115, "decimalLat": -34.176 }, "geometry": { "type": "Point", "coordinates": [ 150.801, -34.176 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915719, "decimalLat": -31.469072 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327762, "decimalLat": -28.671784 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791131, "decimalLat": -31.635274 }, "geometry": { "type": "Point", "coordinates": [ 152.791, -31.635 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63832, "decimalLat": -34.420066 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.497743, "decimalLat": -28.765294 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.765 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924406, "decimalLat": -31.460128 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.878928, "decimalLat": -34.034467 }, "geometry": { "type": "Point", "coordinates": [ 150.879, -34.034 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.423967, "decimalLat": -28.662577 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906598, "decimalLat": -31.457791 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081831, "decimalLat": -32.730717 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376638, "decimalLat": -28.577043 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631271, "decimalLat": -34.393433 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609501, "decimalLat": -28.661269 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927676, "decimalLat": -31.466373 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415054, "decimalLat": -31.933312 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.323194, "decimalLat": -36.297497 }, "geometry": { "type": "Point", "coordinates": [ 149.323, -36.297 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78415, "decimalLat": -33.717762 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.491755, "decimalLat": -30.639889 }, "geometry": { "type": "Point", "coordinates": [ 151.492, -30.64 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063619, "decimalLat": -32.706587 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.842695, "decimalLat": -30.311948 }, "geometry": { "type": "Point", "coordinates": [ 152.843, -30.312 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.848953, "decimalLat": -30.582565 }, "geometry": { "type": "Point", "coordinates": [ 152.849, -30.583 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10387, "decimalLat": -29.484646 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916123, "decimalLat": -31.485856 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879021, "decimalLat": -29.707205 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.49556, "decimalLat": -28.23901 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.239 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521451, "decimalLat": -34.464118 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06373, "decimalLat": -32.706607 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783125, "decimalLat": -33.71923 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605343, "decimalLat": -34.438078 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109744, "decimalLat": -29.490175 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.008561, "decimalLat": -28.625024 }, "geometry": { "type": "Point", "coordinates": [ 153.009, -28.625 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6373, "decimalLat": -34.423824 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468392, "decimalLat": -28.261513 }, "geometry": { "type": "Point", "coordinates": [ 153.468, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.380525, "decimalLat": -29.086962 }, "geometry": { "type": "Point", "coordinates": [ 153.381, -29.087 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608658, "decimalLat": -34.453487 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611357, "decimalLat": -34.430911 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949818, "decimalLat": -36.563499 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.563 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.861707, "decimalLat": -31.40352 }, "geometry": { "type": "Point", "coordinates": [ 152.862, -31.404 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905645, "decimalLat": -31.44835 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9096, "decimalLat": -31.4724 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604845, "decimalLat": -34.425005 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101971, "decimalLat": -29.488812 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785348, "decimalLat": -33.715752 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296588, "decimalLat": -28.847202 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520293, "decimalLat": -34.465744 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785426, "decimalLat": -33.706336 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.145644, "decimalLat": -34.932794 }, "geometry": { "type": "Point", "coordinates": [ 150.146, -34.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103162, "decimalLat": -29.48686 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611689, "decimalLat": -34.41963 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90804, "decimalLat": -31.450423 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.808637, "decimalLat": -31.129256 }, "geometry": { "type": "Point", "coordinates": [ 152.809, -31.129 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104197, "decimalLat": -29.479612 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639743, "decimalLat": -34.393435 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297949, "decimalLat": -28.900009 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.9 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642132, "decimalLat": -34.395897 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.990676, "decimalLat": -30.891519 }, "geometry": { "type": "Point", "coordinates": [ 152.991, -30.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628048, "decimalLat": -34.420922 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10814, "decimalLat": -29.490189 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627278, "decimalLat": -34.39002 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798309, "decimalLat": -31.12175 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.122 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.412734, "decimalLat": -28.98306 }, "geometry": { "type": "Point", "coordinates": [ 153.413, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.490184 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.96116, "decimalLat": -32.01839 }, "geometry": { "type": "Point", "coordinates": [ 151.961, -32.018 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30281, "decimalLat": -28.844288 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.962174, "decimalLat": -34.099914 }, "geometry": { "type": "Point", "coordinates": [ 150.962, -34.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604703, "decimalLat": -34.427337 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635051, "decimalLat": -34.48624 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627168, "decimalLat": -34.385808 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.57783, "decimalLat": -34.643015 }, "geometry": { "type": "Point", "coordinates": [ 150.578, -34.643 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317829, "decimalLat": -28.826643 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109626, "decimalLat": -29.490423 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109868, "decimalLat": -28.540297 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -28.54 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.1261, "decimalLat": -32.75346 }, "geometry": { "type": "Point", "coordinates": [ 152.126, -32.753 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787435, "decimalLat": -33.705457 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824534, "decimalLat": -29.506274 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635242, "decimalLat": -34.420431 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78509, "decimalLat": -33.719105 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073162, "decimalLat": -32.724782 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068988, "decimalLat": -32.748807 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.749 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640684, "decimalLat": -34.397095 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.465047, "decimalLat": -36.333231 }, "geometry": { "type": "Point", "coordinates": [ 149.465, -36.333 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285486, "decimalLat": -28.822325 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.081222, "decimalLat": -32.72313 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524443, "decimalLat": -34.451648 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276254, "decimalLat": -28.93121 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -28.931 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07705, "decimalLat": -32.722522 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929009, "decimalLat": -31.458113 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516373, "decimalLat": -34.447057 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.611458, "decimalLat": -28.683598 }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605528, "decimalLat": -34.437315 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659422, "decimalLat": -34.457634 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51881, "decimalLat": -34.472439 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.472 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984599, "decimalLat": -34.096229 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615756, "decimalLat": -34.43848 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916226, "decimalLat": -31.453287 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.647625, "decimalLat": -34.40015 }, "geometry": { "type": "Point", "coordinates": [ 150.648, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.004595, "decimalLat": -34.040911 }, "geometry": { "type": "Point", "coordinates": [ 151.005, -34.041 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645125, "decimalLat": -34.393106 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109412, "decimalLat": -29.490511 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.952899, "decimalLat": -36.601821 }, "geometry": { "type": "Point", "coordinates": [ 149.953, -36.602 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068075, "decimalLat": -32.708207 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90703, "decimalLat": -30.23588 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -30.236 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071738, "decimalLat": -28.585754 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -28.586 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916074, "decimalLat": -30.275648 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -30.276 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61026, "decimalLat": -34.418998 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637914, "decimalLat": -34.488964 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639006, "decimalLat": -34.491527 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632966, "decimalLat": -34.417421 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926277, "decimalLat": -31.458895 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.58246, "decimalLat": -32.8836 }, "geometry": { "type": "Point", "coordinates": [ 151.582, -32.884 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.830784, "decimalLat": -29.6424 }, "geometry": { "type": "Point", "coordinates": [ 152.831, -29.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615294, "decimalLat": -34.434801 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51746, "decimalLat": -34.452236 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62871, "decimalLat": -34.395151 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.877474, "decimalLat": -34.010835 }, "geometry": { "type": "Point", "coordinates": [ 150.877, -34.011 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104063, "decimalLat": -29.479921 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812503, "decimalLat": -34.100666 }, "geometry": { "type": "Point", "coordinates": [ 150.813, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103672, "decimalLat": -29.485501 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642701, "decimalLat": -34.39461 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924902, "decimalLat": -31.468765 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.531976, "decimalLat": -28.638162 }, "geometry": { "type": "Point", "coordinates": [ 153.532, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07458, "decimalLat": -30.35546 }, "geometry": { "type": "Point", "coordinates": [ 153.075, -30.355 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606013, "decimalLat": -34.422972 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928691, "decimalLat": -31.459529 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324244, "decimalLat": -28.876858 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.877 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562711, "decimalLat": -28.33014 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.33 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639968, "decimalLat": -34.397821 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40205, "decimalLat": -28.257021 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786543, "decimalLat": -33.7096 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522814, "decimalLat": -34.467373 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519192, "decimalLat": -34.471329 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7853, "decimalLat": -33.709387 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293136, "decimalLat": -28.864668 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790539, "decimalLat": -34.143183 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.143 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565839, "decimalLat": -28.346767 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.347 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626709, "decimalLat": -34.389378 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.156659, "decimalLat": -29.028709 }, "geometry": { "type": "Point", "coordinates": [ 153.157, -29.029 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104133, "decimalLat": -29.478786 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.542582, "decimalLat": -32.329808 }, "geometry": { "type": "Point", "coordinates": [ 152.543, -32.33 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606659, "decimalLat": -34.435056 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785064, "decimalLat": -33.716468 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604305, "decimalLat": -34.438977 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.409213, "decimalLat": -29.022198 }, "geometry": { "type": "Point", "coordinates": [ 153.409, -29.022 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.249164, "decimalLat": -29.339012 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -29.339 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615832, "decimalLat": -34.435037 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.661161, "decimalLat": -28.610492 }, "geometry": { "type": "Point", "coordinates": [ 152.661, -28.61 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611217, "decimalLat": -34.43163 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 145.70962, "decimalLat": -35.90077 }, "geometry": { "type": "Point", "coordinates": [ 145.71, -35.901 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915385, "decimalLat": -31.445926 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522207, "decimalLat": -34.451449 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78418, "decimalLat": -33.717297 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606643, "decimalLat": -34.457712 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.739332, "decimalLat": -32.067098 }, "geometry": { "type": "Point", "coordinates": [ 151.739, -32.067 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929184, "decimalLat": -31.457254 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642743, "decimalLat": -34.394665 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.404093, "decimalLat": -28.913129 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.913 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.514529, "decimalLat": -28.428023 }, "geometry": { "type": "Point", "coordinates": [ 153.515, -28.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630131, "decimalLat": -34.388354 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.998977, "decimalLat": -36.551144 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09217, "decimalLat": -29.48813 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102003, "decimalLat": -29.488928 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602849, "decimalLat": -34.435469 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.654304, "decimalLat": -33.552733 }, "geometry": { "type": "Point", "coordinates": [ 150.654, -33.553 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07514, "decimalLat": -32.71933 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -32.719 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071009, "decimalLat": -30.309466 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.309 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639109, "decimalLat": -34.491349 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520309, "decimalLat": -34.453799 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.979879, "decimalLat": -34.085563 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.72062, "decimalLat": -32.64584 }, "geometry": { "type": "Point", "coordinates": [ 151.721, -32.646 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517881, "decimalLat": -34.437658 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "Victoria", "decimalLon": 146.216432, "decimalLat": -38.471947 }, "geometry": { "type": "Point", "coordinates": [ 146.216, -38.472 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987879, "decimalLat": -34.023661 }, "geometry": { "type": "Point", "coordinates": [ 150.988, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924397, "decimalLat": -31.440076 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627257, "decimalLat": -34.420402 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555641, "decimalLat": -28.398184 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302276, "decimalLat": -28.820085 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619064, "decimalLat": -34.400878 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00548, "decimalLat": -32.217573 }, "geometry": { "type": "Point", "coordinates": [ 152.005, -32.218 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625606, "decimalLat": -34.386075 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.087946, "decimalLat": -30.355053 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -30.355 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.685167, "decimalLat": -34.352802 }, "geometry": { "type": "Point", "coordinates": [ 150.685, -34.353 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873048, "decimalLat": -31.465976 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.34148, "decimalLat": -36.313333 }, "geometry": { "type": "Point", "coordinates": [ 149.341, -36.313 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60494, "decimalLat": -34.427044 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631521, "decimalLat": -34.388426 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.089504, "decimalLat": -29.4807 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923355, "decimalLat": -31.443899 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293198, "decimalLat": -28.864647 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412624, "decimalLat": -31.932241 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.281302, "decimalLat": -31.94258 }, "geometry": { "type": "Point", "coordinates": [ 152.281, -31.943 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604686, "decimalLat": -34.452688 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639048, "decimalLat": -33.541071 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -33.541 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60397, "decimalLat": -34.427088 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103693, "decimalLat": -29.485776 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.521789, "decimalLat": -28.683592 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603182, "decimalLat": -34.439063 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.991587, "decimalLat": -32.721041 }, "geometry": { "type": "Point", "coordinates": [ 151.992, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.003336, "decimalLat": -34.072952 }, "geometry": { "type": "Point", "coordinates": [ 151.003, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521419, "decimalLat": -34.435765 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632839, "decimalLat": -34.418824 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643634, "decimalLat": -34.395854 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343646, "decimalLat": -28.866891 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437583, "decimalLat": -28.690255 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109272, "decimalLat": -29.490735 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786372, "decimalLat": -31.467894 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.123399, "decimalLat": -30.29885 }, "geometry": { "type": "Point", "coordinates": [ 153.123, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560784, "decimalLat": -28.389253 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.807425, "decimalLat": -31.643227 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -31.643 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336688, "decimalLat": -28.868027 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -28.868 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521816, "decimalLat": -34.45914 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 26, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 150.854974, "decimalLat": -29.561262 }, "geometry": { "type": "Point", "coordinates": [ 150.855, -29.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599791, "decimalLat": -34.429035 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099745, "decimalLat": -29.491571 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609464, "decimalLat": -34.419082 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916966, "decimalLat": -31.431532 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521959, "decimalLat": -34.464615 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402852, "decimalLat": -28.60386 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.604 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914906, "decimalLat": -31.450571 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516801, "decimalLat": -34.44877 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.0282, "decimalLat": -31.13124 }, "geometry": { "type": "Point", "coordinates": [ 150.028, -31.131 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.538997, "decimalLat": -28.25245 }, "geometry": { "type": "Point", "coordinates": [ 153.539, -28.252 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919528, "decimalLat": -31.43421 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519397, "decimalLat": -34.451158 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.719855, "decimalLat": -31.061581 }, "geometry": { "type": "Point", "coordinates": [ 152.72, -31.062 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091275, "decimalLat": -28.599197 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -28.599 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092283, "decimalLat": -29.488149 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.950561, "decimalLat": -31.216978 }, "geometry": { "type": "Point", "coordinates": [ 152.951, -31.217 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628812, "decimalLat": -34.389608 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562079, "decimalLat": -28.384726 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516465, "decimalLat": -34.448736 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317852, "decimalLat": -28.929063 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515844, "decimalLat": -34.450608 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604326, "decimalLat": -34.435597 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.486365, "decimalLat": -28.677452 }, "geometry": { "type": "Point", "coordinates": [ 153.486, -28.677 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642413, "decimalLat": -34.395569 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394297, "decimalLat": -28.959457 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98038, "decimalLat": -30.435319 }, "geometry": { "type": "Point", "coordinates": [ 152.98, -30.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518849, "decimalLat": -34.447243 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108071, "decimalLat": -29.490395 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86752, "decimalLat": -31.482731 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.483 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 22, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 151.68364, "decimalLat": -32.515381 }, "geometry": { "type": "Point", "coordinates": [ 151.684, -32.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524097, "decimalLat": -34.471447 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785264, "decimalLat": -33.715621 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.852429, "decimalLat": -31.552973 }, "geometry": { "type": "Point", "coordinates": [ 152.852, -31.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630387, "decimalLat": -34.420914 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895431, "decimalLat": -31.432954 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916457, "decimalLat": -31.443373 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617478, "decimalLat": -34.434934 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522672, "decimalLat": -34.467388 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.243582, "decimalLat": -28.719692 }, "geometry": { "type": "Point", "coordinates": [ 153.244, -28.72 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607744, "decimalLat": -34.430173 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924807, "decimalLat": -31.442971 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521473, "decimalLat": -34.435766 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.891577, "decimalLat": -31.44651 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277604, "decimalLat": -28.873812 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627406, "decimalLat": -34.421307 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.329651, "decimalLat": -28.435621 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625737, "decimalLat": -34.386447 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919097, "decimalLat": -31.448829 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.440619, "decimalLat": -28.981717 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.982 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.102086, "decimalLat": -29.770695 }, "geometry": { "type": "Point", "coordinates": [ 151.102, -29.771 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.596207, "decimalLat": -28.845386 }, "geometry": { "type": "Point", "coordinates": [ 153.596, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605764, "decimalLat": -34.428665 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.333213, "decimalLat": -28.379277 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -28.379 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927271, "decimalLat": -31.4593 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617341, "decimalLat": -34.399879 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103918, "decimalLat": -29.489596 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.043399, "decimalLat": -28.469101 }, "geometry": { "type": "Point", "coordinates": [ 153.043, -28.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868131, "decimalLat": -31.473803 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101944, "decimalLat": -29.488709 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637239, "decimalLat": -34.422146 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109734, "decimalLat": -29.490203 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.52658, "decimalLat": -28.48505 }, "geometry": { "type": "Point", "coordinates": [ 153.527, -28.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607212, "decimalLat": -34.43779 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784073, "decimalLat": -33.717726 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929553, "decimalLat": -29.726684 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.010861, "decimalLat": -30.417681 }, "geometry": { "type": "Point", "coordinates": [ 153.011, -30.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630266, "decimalLat": -34.420956 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.488892, "decimalLat": -32.938017 }, "geometry": { "type": "Point", "coordinates": [ 151.489, -32.938 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635393, "decimalLat": -34.419685 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597414, "decimalLat": -34.415898 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.416 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.398506, "decimalLat": -28.261084 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51826, "decimalLat": -34.446906 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.078602, "decimalLat": -30.347263 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -30.347 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630998, "decimalLat": -34.386892 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318046, "decimalLat": -28.915045 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.453035, "decimalLat": -33.791641 }, "geometry": { "type": "Point", "coordinates": [ 149.453, -33.792 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631115, "decimalLat": -34.388156 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077254, "decimalLat": -32.724577 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063587, "decimalLat": -32.706144 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604589, "decimalLat": -34.435899 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516831, "decimalLat": -34.454008 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640134, "decimalLat": -34.492063 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899767, "decimalLat": -31.467116 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.266454, "decimalLat": -28.744317 }, "geometry": { "type": "Point", "coordinates": [ 153.266, -28.744 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300827, "decimalLat": -28.883175 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.883 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616548, "decimalLat": -34.437801 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104256, "decimalLat": -29.480107 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.949786, "decimalLat": -36.632867 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.633 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.404167, "decimalLat": -31.945815 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514577, "decimalLat": -34.447426 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.713893, "decimalLat": -30.579557 }, "geometry": { "type": "Point", "coordinates": [ 151.714, -30.58 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.590448, "decimalLat": -33.782392 }, "geometry": { "type": "Point", "coordinates": [ 150.59, -33.782 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919374, "decimalLat": -31.443135 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.504942, "decimalLat": -28.796571 }, "geometry": { "type": "Point", "coordinates": [ 153.505, -28.797 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.968525, "decimalLat": -34.121713 }, "geometry": { "type": "Point", "coordinates": [ 150.969, -34.122 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600607, "decimalLat": -34.427906 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625152, "decimalLat": -34.386355 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917944, "decimalLat": -31.4692 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.890309, "decimalLat": -31.435652 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607472, "decimalLat": -34.442023 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.68312, "decimalLat": -33.51162 }, "geometry": { "type": "Point", "coordinates": [ 150.683, -33.512 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521677, "decimalLat": -34.465673 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299786, "decimalLat": -28.824039 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517422, "decimalLat": -34.442878 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.107545, "decimalLat": -32.767983 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -32.768 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.002026, "decimalLat": -34.052384 }, "geometry": { "type": "Point", "coordinates": [ 151.002, -34.052 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630766, "decimalLat": -34.420596 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.564373, "decimalLat": -28.328355 }, "geometry": { "type": "Point", "coordinates": [ 152.564, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93879, "decimalLat": -29.728067 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -29.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797591, "decimalLat": -31.125864 }, "geometry": { "type": "Point", "coordinates": [ 152.798, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373881, "decimalLat": -31.914629 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.931469, "decimalLat": -32.774514 }, "geometry": { "type": "Point", "coordinates": [ 151.931, -32.775 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.084599, "decimalLat": -32.730646 }, "geometry": { "type": "Point", "coordinates": [ 152.085, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.093798, "decimalLat": -31.403015 }, "geometry": { "type": "Point", "coordinates": [ 152.094, -31.403 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610653, "decimalLat": -34.418979 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107411, "decimalLat": -29.490105 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791633, "decimalLat": -29.500615 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -29.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522435, "decimalLat": -34.465815 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916507, "decimalLat": -31.471984 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609701, "decimalLat": -34.431005 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608963, "decimalLat": -34.435156 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626232, "decimalLat": -34.421248 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625548, "decimalLat": -34.399291 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300166, "decimalLat": -28.863514 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638883, "decimalLat": -34.491669 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325592, "decimalLat": -28.824468 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636997, "decimalLat": -34.48827 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526119, "decimalLat": -34.464564 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.45753, "decimalLat": -34.46689 }, "geometry": { "type": "Point", "coordinates": [ 150.458, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.941884, "decimalLat": -30.42524 }, "geometry": { "type": "Point", "coordinates": [ 152.942, -30.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.727019, "decimalLat": -31.520846 }, "geometry": { "type": "Point", "coordinates": [ 152.727, -31.521 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.187955, "decimalLat": -28.93058 }, "geometry": { "type": "Point", "coordinates": [ 153.188, -28.931 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617141, "decimalLat": -33.51732 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -33.517 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626678, "decimalLat": -34.389296 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.835986, "decimalLat": -31.618433 }, "geometry": { "type": "Point", "coordinates": [ 152.836, -31.618 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613377, "decimalLat": -34.4326 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926492, "decimalLat": -31.463247 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639177, "decimalLat": -34.49318 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631336, "decimalLat": -34.393426 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360617, "decimalLat": -28.840581 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.567012, "decimalLat": -34.483871 }, "geometry": { "type": "Point", "coordinates": [ 150.567, -34.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107438, "decimalLat": -29.490119 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.033707, "decimalLat": -32.736704 }, "geometry": { "type": "Point", "coordinates": [ 152.034, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381646, "decimalLat": -31.929114 }, "geometry": { "type": "Point", "coordinates": [ 152.382, -31.929 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360617, "decimalLat": -28.840581 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636974, "decimalLat": -34.485619 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319519, "decimalLat": -28.833951 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609189, "decimalLat": -34.420708 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.862134, "decimalLat": -29.689336 }, "geometry": { "type": "Point", "coordinates": [ 152.862, -29.689 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604055, "decimalLat": -34.427171 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.789807, "decimalLat": -31.638266 }, "geometry": { "type": "Point", "coordinates": [ 152.79, -31.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.747269, "decimalLat": -32.556735 }, "geometry": { "type": "Point", "coordinates": [ 151.747, -32.557 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.652315, "decimalLat": -32.693871 }, "geometry": { "type": "Point", "coordinates": [ 151.652, -32.694 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104138, "decimalLat": -29.483801 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.0359, "decimalLat": -28.6019 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -28.602 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.498403, "decimalLat": -28.223151 }, "geometry": { "type": "Point", "coordinates": [ 153.498, -28.223 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.562641, "decimalLat": -34.331279 }, "geometry": { "type": "Point", "coordinates": [ 150.563, -34.331 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610416, "decimalLat": -34.429594 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905517, "decimalLat": -31.478707 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.947982, "decimalLat": -31.170273 }, "geometry": { "type": "Point", "coordinates": [ 152.948, -31.17 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293365, "decimalLat": -28.864664 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518398, "decimalLat": -34.451813 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630391, "decimalLat": -34.394147 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617098, "decimalLat": -34.433764 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599349, "decimalLat": -34.450546 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522325, "decimalLat": -34.465127 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.086703, "decimalLat": -29.071399 }, "geometry": { "type": "Point", "coordinates": [ 153.087, -29.071 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627285, "decimalLat": -34.420574 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642016, "decimalLat": -34.39576 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.369982, "decimalLat": -31.197908 }, "geometry": { "type": "Point", "coordinates": [ 149.37, -31.198 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655487, "decimalLat": -33.522609 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -33.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523823, "decimalLat": -34.463778 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51796, "decimalLat": -34.45706 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657896, "decimalLat": -34.455387 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919591, "decimalLat": -31.473441 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.952917, "decimalLat": -36.681355 }, "geometry": { "type": "Point", "coordinates": [ 149.953, -36.681 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615986, "decimalLat": -34.433048 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615802, "decimalLat": -34.436074 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521439, "decimalLat": -34.464893 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.266394, "decimalLat": -28.871059 }, "geometry": { "type": "Point", "coordinates": [ 153.266, -28.871 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314058, "decimalLat": -28.82489 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636279, "decimalLat": -34.421839 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.71087, "decimalLat": -33.00885 }, "geometry": { "type": "Point", "coordinates": [ 151.711, -33.009 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.968919, "decimalLat": -31.179839 }, "geometry": { "type": "Point", "coordinates": [ 152.969, -31.18 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630676, "decimalLat": -34.420685 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.821715, "decimalLat": -31.426435 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596267, "decimalLat": -34.411503 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.571529, "decimalLat": -34.75536 }, "geometry": { "type": "Point", "coordinates": [ 146.572, -34.755 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092058, "decimalLat": -29.488256 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.862176, "decimalLat": -31.280887 }, "geometry": { "type": "Point", "coordinates": [ 152.862, -31.281 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615734, "decimalLat": -34.435811 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.636811, "decimalLat": -32.782264 }, "geometry": { "type": "Point", "coordinates": [ 151.637, -32.782 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924757, "decimalLat": -31.464357 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.849778, "decimalLat": -31.964835 }, "geometry": { "type": "Point", "coordinates": [ 151.85, -31.965 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793516, "decimalLat": -31.642612 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.643 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55943, "decimalLat": -28.30184 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.302 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.008014, "decimalLat": -36.503633 }, "geometry": { "type": "Point", "coordinates": [ 150.008, -36.504 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63531, "decimalLat": -34.488634 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.085764, "decimalLat": -31.100063 }, "geometry": { "type": "Point", "coordinates": [ 150.086, -31.1 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637424, "decimalLat": -34.420599 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110916, "decimalLat": -28.517475 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -28.517 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794945, "decimalLat": -30.901933 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.298898, "decimalLat": -31.950972 }, "geometry": { "type": "Point", "coordinates": [ 152.299, -31.951 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.531976, "decimalLat": -28.638162 }, "geometry": { "type": "Point", "coordinates": [ 153.532, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.45552, "decimalLat": -28.913883 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.914 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.906186, "decimalLat": -33.980919 }, "geometry": { "type": "Point", "coordinates": [ 150.906, -33.981 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606767, "decimalLat": -34.429334 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913498, "decimalLat": -31.48567 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.191536, "decimalLat": -29.862403 }, "geometry": { "type": "Point", "coordinates": [ 152.192, -29.862 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639144, "decimalLat": -34.491278 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513077, "decimalLat": -34.447766 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.485594 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.215164, "decimalLat": -28.584993 }, "geometry": { "type": "Point", "coordinates": [ 153.215, -28.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607212, "decimalLat": -34.432453 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637279, "decimalLat": -34.423797 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785243, "decimalLat": -33.714076 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.861607, "decimalLat": -31.161834 }, "geometry": { "type": "Point", "coordinates": [ 152.862, -31.162 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.186149, "decimalLat": -29.163383 }, "geometry": { "type": "Point", "coordinates": [ 150.186, -29.163 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629146, "decimalLat": -34.395872 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.818061, "decimalLat": -31.652838 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.653 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372698, "decimalLat": -31.923402 }, "geometry": { "type": "Point", "coordinates": [ 152.373, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897761, "decimalLat": -31.437147 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517272, "decimalLat": -34.44795 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103457, "decimalLat": -29.485641 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626101, "decimalLat": -34.390475 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11057, "decimalLat": -29.49004 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526857, "decimalLat": -34.469402 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315696, "decimalLat": -28.818295 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919209, "decimalLat": -31.474481 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513827, "decimalLat": -34.446311 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.964482, "decimalLat": -33.38583 }, "geometry": { "type": "Point", "coordinates": [ 150.964, -33.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103827, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.371865, "decimalLat": -29.000187 }, "geometry": { "type": "Point", "coordinates": [ 153.372, -29.0 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.71087, "decimalLat": -33.00885 }, "geometry": { "type": "Point", "coordinates": [ 151.711, -33.009 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.056219, "decimalLat": -33.775502 }, "geometry": { "type": "Point", "coordinates": [ 150.056, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520488, "decimalLat": -34.465775 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.149029, "decimalLat": -35.020999 }, "geometry": { "type": "Point", "coordinates": [ 150.149, -35.021 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427326, "decimalLat": -28.62639 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.626 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.493398, "decimalLat": -28.313118 }, "geometry": { "type": "Point", "coordinates": [ 152.493, -28.313 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.417646, "decimalLat": -31.939223 }, "geometry": { "type": "Point", "coordinates": [ 152.418, -31.939 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.968181, "decimalLat": -32.447469 }, "geometry": { "type": "Point", "coordinates": [ 151.968, -32.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.335817, "decimalLat": -34.482856 }, "geometry": { "type": "Point", "coordinates": [ 150.336, -34.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604534, "decimalLat": -34.438973 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947316, "decimalLat": -36.607854 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.608 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306657, "decimalLat": -28.837601 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.700655, "decimalLat": -30.289654 }, "geometry": { "type": "Point", "coordinates": [ 152.701, -30.29 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.092834, "decimalLat": -33.775551 }, "geometry": { "type": "Point", "coordinates": [ 150.093, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909776, "decimalLat": -31.433254 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919406, "decimalLat": -31.442995 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637402, "decimalLat": -34.488197 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519374, "decimalLat": -34.464806 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.118279, "decimalLat": -35.061305 }, "geometry": { "type": "Point", "coordinates": [ 150.118, -35.061 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.854101, "decimalLat": -32.27449 }, "geometry": { "type": "Point", "coordinates": [ 151.854, -32.274 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465634, "decimalLat": -28.322836 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.323 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627276, "decimalLat": -34.385837 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637313, "decimalLat": -34.42377 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630397, "decimalLat": -34.420923 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637335, "decimalLat": -34.423762 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515565, "decimalLat": -34.450827 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.353525, "decimalLat": -31.92625 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.799208, "decimalLat": -34.215368 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.215 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89266, "decimalLat": -33.99196 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.992 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519865, "decimalLat": -34.447831 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630464, "decimalLat": -34.395041 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521514, "decimalLat": -34.465697 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07746, "decimalLat": -32.75856 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.759 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922865, "decimalLat": -31.474257 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521632, "decimalLat": -34.465735 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.132205, "decimalLat": -29.470529 }, "geometry": { "type": "Point", "coordinates": [ 153.132, -29.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293262, "decimalLat": -28.864605 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868233, "decimalLat": -29.667173 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096183, "decimalLat": -29.485179 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109278, "decimalLat": -29.490908 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.948669, "decimalLat": -30.415963 }, "geometry": { "type": "Point", "coordinates": [ 152.949, -30.416 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625995, "decimalLat": -34.388868 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885691, "decimalLat": -31.435872 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.971573, "decimalLat": -32.241455 }, "geometry": { "type": "Point", "coordinates": [ 150.972, -32.241 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597774, "decimalLat": -34.45578 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605547, "decimalLat": -34.437388 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605136, "decimalLat": -34.427039 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.869283, "decimalLat": -31.447809 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915398, "decimalLat": -31.445982 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607817, "decimalLat": -34.430689 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.232617, "decimalLat": -33.125134 }, "geometry": { "type": "Point", "coordinates": [ 151.233, -33.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395729, "decimalLat": -28.559995 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.56 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917599, "decimalLat": -31.474412 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606675, "decimalLat": -34.45773 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270972, "decimalLat": -28.888425 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -28.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643612, "decimalLat": -34.395872 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868061, "decimalLat": -29.667023 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513017, "decimalLat": -34.447196 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790927, "decimalLat": -34.18322 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.183 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279241, "decimalLat": -28.839565 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552125, "decimalLat": -33.491209 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.542118, "decimalLat": -32.330457 }, "geometry": { "type": "Point", "coordinates": [ 152.542, -32.33 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516129, "decimalLat": -34.446845 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637288, "decimalLat": -34.423878 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.485608 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427845, "decimalLat": -28.625955 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.626 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521372, "decimalLat": -34.466424 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918506, "decimalLat": -31.470004 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791776, "decimalLat": -31.526235 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.526 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381452, "decimalLat": -31.914618 }, "geometry": { "type": "Point", "coordinates": [ 152.381, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87487, "decimalLat": -31.455595 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063964, "decimalLat": -32.706652 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.524848, "decimalLat": -32.044844 }, "geometry": { "type": "Point", "coordinates": [ 152.525, -32.045 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103774, "decimalLat": -29.485571 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.807412, "decimalLat": -31.65318 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -31.653 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.377895, "decimalLat": -31.91883 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099766, "decimalLat": -29.491595 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867718, "decimalLat": -29.667284 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616408, "decimalLat": -34.438132 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302311, "decimalLat": -28.888631 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.414267, "decimalLat": -31.940863 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868919, "decimalLat": -29.667396 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.942556, "decimalLat": -36.497108 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600936, "decimalLat": -34.427813 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639968, "decimalLat": -34.491798 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108183, "decimalLat": -29.490544 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.871191, "decimalLat": -31.459214 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.47372, "decimalLat": -28.705379 }, "geometry": { "type": "Point", "coordinates": [ 153.474, -28.705 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103779, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103796, "decimalLat": -32.759249 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.759 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.678195, "decimalLat": -32.543445 }, "geometry": { "type": "Point", "coordinates": [ 151.678, -32.543 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.846541, "decimalLat": -31.442787 }, "geometry": { "type": "Point", "coordinates": [ 152.847, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.059275, "decimalLat": -29.740814 }, "geometry": { "type": "Point", "coordinates": [ 151.059, -29.741 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79511, "decimalLat": -34.14022 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.002757, "decimalLat": -33.983885 }, "geometry": { "type": "Point", "coordinates": [ 151.003, -33.984 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630797, "decimalLat": -34.420642 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907156, "decimalLat": -31.489655 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787601, "decimalLat": -31.636597 }, "geometry": { "type": "Point", "coordinates": [ 152.788, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613309, "decimalLat": -34.432671 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.113811, "decimalLat": -33.770977 }, "geometry": { "type": "Point", "coordinates": [ 150.114, -33.771 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520314, "decimalLat": -34.465781 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901928, "decimalLat": -31.442245 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110581, "decimalLat": -29.489606 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627048, "decimalLat": -34.389682 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.013607, "decimalLat": -33.994863 }, "geometry": { "type": "Point", "coordinates": [ 151.014, -33.995 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.073978, "decimalLat": -29.748749 }, "geometry": { "type": "Point", "coordinates": [ 151.074, -29.749 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063845, "decimalLat": -32.706501 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.989374, "decimalLat": -30.187383 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -30.187 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.857126, "decimalLat": -34.0769 }, "geometry": { "type": "Point", "coordinates": [ 150.857, -34.077 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109422, "decimalLat": -29.490581 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063709, "decimalLat": -32.706526 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.967038, "decimalLat": -31.184784 }, "geometry": { "type": "Point", "coordinates": [ 152.967, -31.185 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.166202, "decimalLat": -28.53639 }, "geometry": { "type": "Point", "coordinates": [ 153.166, -28.536 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279241, "decimalLat": -28.839565 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645169, "decimalLat": -34.398129 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784174, "decimalLat": -33.71748 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.709719, "decimalLat": -32.711888 }, "geometry": { "type": "Point", "coordinates": [ 151.71, -32.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603932, "decimalLat": -34.439466 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611469, "decimalLat": -34.419743 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395625, "decimalLat": -28.919949 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515544, "decimalLat": -34.442335 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334983, "decimalLat": -28.822021 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784226, "decimalLat": -33.717252 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.410656, "decimalLat": -36.270292 }, "geometry": { "type": "Point", "coordinates": [ 149.411, -36.27 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924926, "decimalLat": -31.453745 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925285, "decimalLat": -31.453909 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.097197, "decimalLat": -29.486846 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922152, "decimalLat": -31.452292 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641355, "decimalLat": -34.395684 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394466, "decimalLat": -28.96049 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885288, "decimalLat": -31.439912 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.371874, "decimalLat": -31.92387 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.97267, "decimalLat": -28.552811 }, "geometry": { "type": "Point", "coordinates": [ 152.973, -28.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641811, "decimalLat": -34.395684 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848922, "decimalLat": -33.85909 }, "geometry": { "type": "Point", "coordinates": [ 150.849, -33.859 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110989, "decimalLat": -29.487448 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513182, "decimalLat": -34.447155 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630542, "decimalLat": -34.386874 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609914, "decimalLat": -34.419695 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.595395, "decimalLat": -34.773157 }, "geometry": { "type": "Point", "coordinates": [ 146.595, -34.773 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989165, "decimalLat": -34.089471 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.089 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.099132, "decimalLat": -29.27299 }, "geometry": { "type": "Point", "coordinates": [ 150.099, -29.273 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.161898, "decimalLat": -34.798013 }, "geometry": { "type": "Point", "coordinates": [ 150.162, -34.798 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.645579, "decimalLat": -32.65525 }, "geometry": { "type": "Point", "coordinates": [ 151.646, -32.655 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.969019, "decimalLat": -32.448985 }, "geometry": { "type": "Point", "coordinates": [ 151.969, -32.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.667897, "decimalLat": -32.674863 }, "geometry": { "type": "Point", "coordinates": [ 151.668, -32.675 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529449, "decimalLat": -34.468274 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622805, "decimalLat": -34.397434 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.451554, "decimalLat": -28.629535 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.839671, "decimalLat": -34.078232 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.078 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627348, "decimalLat": -34.420269 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626742, "decimalLat": -34.420915 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.349116, "decimalLat": -28.86986 }, "geometry": { "type": "Point", "coordinates": [ 153.349, -28.87 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60863, "decimalLat": -28.66111 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.030417, "decimalLat": -32.735006 }, "geometry": { "type": "Point", "coordinates": [ 152.03, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516125, "decimalLat": -34.447359 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.13752, "decimalLat": -28.524358 }, "geometry": { "type": "Point", "coordinates": [ 153.138, -28.524 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.319923, "decimalLat": -36.139338 }, "geometry": { "type": "Point", "coordinates": [ 149.32, -36.139 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877653, "decimalLat": -31.427316 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30294, "decimalLat": -28.820474 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.295272, "decimalLat": -28.820337 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627994, "decimalLat": -34.389683 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92705, "decimalLat": -31.455105 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104777, "decimalLat": -29.48968 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631912, "decimalLat": -34.418139 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.429342, "decimalLat": -28.573115 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.573 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.802375, "decimalLat": -30.325375 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -30.325 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630672, "decimalLat": -34.389969 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521536, "decimalLat": -34.465688 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092219, "decimalLat": -28.599348 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -28.599 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109363, "decimalLat": -29.490511 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595785, "decimalLat": -34.425701 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.559202, "decimalLat": -28.396866 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.234259, "decimalLat": -33.581329 }, "geometry": { "type": "Point", "coordinates": [ 150.234, -33.581 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.078569, "decimalLat": -28.59438 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -28.594 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916371, "decimalLat": -31.450779 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896953, "decimalLat": -30.17771 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -30.178 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63871, "decimalLat": -33.433675 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -33.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627376, "decimalLat": -34.38656 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522463, "decimalLat": -34.464878 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867632, "decimalLat": -29.667173 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630178, "decimalLat": -34.420991 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640323, "decimalLat": -34.397548 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103827, "decimalLat": -29.485548 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.797018, "decimalLat": -34.14156 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513087, "decimalLat": -34.447054 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.961367, "decimalLat": -34.096961 }, "geometry": { "type": "Point", "coordinates": [ 150.961, -34.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.682, "decimalLat": -30.417 }, "geometry": { "type": "Point", "coordinates": [ 151.682, -30.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518979, "decimalLat": -34.447254 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.00717, "decimalLat": -30.42243 }, "geometry": { "type": "Point", "coordinates": [ 153.007, -30.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315616, "decimalLat": -28.648182 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.648 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299523, "decimalLat": -28.824986 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622465, "decimalLat": -34.384094 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.84519, "decimalLat": -31.12222 }, "geometry": { "type": "Point", "coordinates": [ 152.845, -31.122 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317534, "decimalLat": -28.827945 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.349809, "decimalLat": -28.30883 }, "geometry": { "type": "Point", "coordinates": [ 153.35, -28.309 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630054, "decimalLat": -34.42116 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604429, "decimalLat": -34.438069 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921957, "decimalLat": -31.473474 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.882528, "decimalLat": -31.440818 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615125, "decimalLat": -34.429272 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378769, "decimalLat": -31.915169 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.206215, "decimalLat": -28.61307 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -28.613 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88433, "decimalLat": -30.40789 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -30.408 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302271, "decimalLat": -28.888838 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919118, "decimalLat": -31.460651 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.448947, "decimalLat": -30.887 }, "geometry": { "type": "Point", "coordinates": [ 152.449, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.287916, "decimalLat": -28.903027 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.903 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.108169, "decimalLat": -32.774209 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -32.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.552936, "decimalLat": -28.571221 }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.571 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.921393, "decimalLat": -31.977374 }, "geometry": { "type": "Point", "coordinates": [ 151.921, -31.977 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063358, "decimalLat": -32.700914 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.701 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783468, "decimalLat": -33.717921 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.837451, "decimalLat": -34.06577 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.066 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.050209, "decimalLat": -34.024194 }, "geometry": { "type": "Point", "coordinates": [ 151.05, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.01688, "decimalLat": -32.72502 }, "geometry": { "type": "Point", "coordinates": [ 152.017, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81167, "decimalLat": -29.633215 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -29.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.547784, "decimalLat": -33.623333 }, "geometry": { "type": "Point", "coordinates": [ 149.548, -33.623 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915174, "decimalLat": -31.456952 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.072998, "decimalLat": -33.757953 }, "geometry": { "type": "Point", "coordinates": [ 150.073, -33.758 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10821, "decimalLat": -29.490241 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.959382, "decimalLat": -34.106531 }, "geometry": { "type": "Point", "coordinates": [ 150.959, -34.107 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.841009, "decimalLat": -31.89953 }, "geometry": { "type": "Point", "coordinates": [ 151.841, -31.9 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909439, "decimalLat": -31.46524 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631963, "decimalLat": -34.388155 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522435, "decimalLat": -34.465806 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603989, "decimalLat": -34.456154 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523868, "decimalLat": -34.463743 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521223, "decimalLat": -34.435382 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604125, "decimalLat": -34.439181 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090234, "decimalLat": -29.480266 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510553, "decimalLat": -28.69241 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103994, "decimalLat": -29.485324 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616112, "decimalLat": -33.435406 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -33.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039709, "decimalLat": -32.728908 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902495, "decimalLat": -31.441793 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.311988, "decimalLat": -28.813011 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.813 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627301, "decimalLat": -34.389985 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628916, "decimalLat": -34.390539 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104152, "decimalLat": -29.485057 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.59067, "decimalLat": -28.56179 }, "geometry": { "type": "Point", "coordinates": [ 152.591, -28.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.957635, "decimalLat": -30.510492 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -30.51 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901603, "decimalLat": -31.442563 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632613, "decimalLat": -34.418342 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615749, "decimalLat": -33.434912 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -33.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.470537, "decimalLat": -28.678877 }, "geometry": { "type": "Point", "coordinates": [ 153.471, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93054, "decimalLat": -29.726679 }, "geometry": { "type": "Point", "coordinates": [ 152.931, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433721, "decimalLat": -28.98674 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.987 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922261, "decimalLat": -31.450234 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.372129, "decimalLat": -35.991521 }, "geometry": { "type": "Point", "coordinates": [ 149.372, -35.992 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109465, "decimalLat": -29.49046 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522381, "decimalLat": -34.465823 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925739, "decimalLat": -29.598835 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -29.599 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520659, "decimalLat": -34.436074 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302211, "decimalLat": -28.819553 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644383, "decimalLat": -34.39164 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785486, "decimalLat": -33.709272 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534633, "decimalLat": -34.462257 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640046, "decimalLat": -34.39775 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.35354, "decimalLat": -28.896665 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -28.897 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324023, "decimalLat": -28.879696 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.104474, "decimalLat": -33.779295 }, "geometry": { "type": "Point", "coordinates": [ 150.104, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555909, "decimalLat": -28.399153 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063401, "decimalLat": -32.706176 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103908, "decimalLat": -29.489596 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313985, "decimalLat": -28.826297 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600615, "decimalLat": -34.427987 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637346, "decimalLat": -34.48861 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596081, "decimalLat": -34.411562 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604297, "decimalLat": -34.438102 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323323, "decimalLat": -28.855702 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.856 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.543966, "decimalLat": -28.388928 }, "geometry": { "type": "Point", "coordinates": [ 153.544, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924747, "decimalLat": -29.700507 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -29.701 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609242, "decimalLat": -34.434512 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643615, "decimalLat": -34.394592 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.035932, "decimalLat": -32.764664 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627024, "decimalLat": -34.420948 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560523, "decimalLat": -28.373989 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359545, "decimalLat": -32.156684 }, "geometry": { "type": "Point", "coordinates": [ 152.36, -32.157 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10424, "decimalLat": -29.482167 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518978, "decimalLat": -34.436626 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300206, "decimalLat": -28.886464 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.78254, "decimalLat": -32.570557 }, "geometry": { "type": "Point", "coordinates": [ 151.783, -32.571 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919603, "decimalLat": -31.443535 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325705, "decimalLat": -28.824948 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617519, "decimalLat": -34.399739 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604373, "decimalLat": -34.424418 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29594, "decimalLat": -28.870658 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.871 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.997861, "decimalLat": -34.082153 }, "geometry": { "type": "Point", "coordinates": [ 150.998, -34.082 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785438, "decimalLat": -33.713489 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639219, "decimalLat": -34.392731 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063698, "decimalLat": -32.706607 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516594, "decimalLat": -28.686362 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.686 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063582, "decimalLat": -32.706475 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104074, "decimalLat": -29.485127 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630863, "decimalLat": -34.394021 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.365248, "decimalLat": -28.827927 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618954, "decimalLat": -34.440039 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516597, "decimalLat": -34.449054 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908769, "decimalLat": -31.445426 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.46594, "decimalLat": -34.49028 }, "geometry": { "type": "Point", "coordinates": [ 150.466, -34.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316596, "decimalLat": -28.826874 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071952, "decimalLat": -30.317046 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.317 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893872, "decimalLat": -31.438517 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635317, "decimalLat": -34.419702 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878118, "decimalLat": -31.426368 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -31.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103846, "decimalLat": -29.48548 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514736, "decimalLat": -34.445762 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.943845, "decimalLat": -32.003815 }, "geometry": { "type": "Point", "coordinates": [ 151.944, -32.004 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.769111, "decimalLat": -31.252885 }, "geometry": { "type": "Point", "coordinates": [ 152.769, -31.253 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921777, "decimalLat": -31.458666 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.836568, "decimalLat": -34.066218 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.066 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640927, "decimalLat": -34.396199 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632717, "decimalLat": -34.418912 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790406, "decimalLat": -34.190111 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.19 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.283995, "decimalLat": -31.633895 }, "geometry": { "type": "Point", "coordinates": [ 152.284, -31.634 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.106292, "decimalLat": -32.72845 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90672, "decimalLat": -31.471275 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071009, "decimalLat": -30.309466 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.309 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556199, "decimalLat": -28.398854 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659333, "decimalLat": -34.457317 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39463, "decimalLat": -28.288936 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.289 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.106292, "decimalLat": -32.72845 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524092, "decimalLat": -34.462792 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521743, "decimalLat": -34.467144 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523085, "decimalLat": -34.466297 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300422, "decimalLat": -31.948252 }, "geometry": { "type": "Point", "coordinates": [ 152.3, -31.948 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625959, "decimalLat": -34.389724 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110538, "decimalLat": -29.490012 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.550911, "decimalLat": -33.563133 }, "geometry": { "type": "Point", "coordinates": [ 149.551, -33.563 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603514, "decimalLat": -34.427449 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.287996, "decimalLat": -28.836062 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.836 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601412, "decimalLat": -34.426741 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60144, "decimalLat": -28.7273 }, "geometry": { "type": "Point", "coordinates": [ 153.601, -28.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.079647, "decimalLat": -30.351336 }, "geometry": { "type": "Point", "coordinates": [ 153.08, -30.351 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60567, "decimalLat": -34.437291 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.876765, "decimalLat": -31.491562 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -31.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522326, "decimalLat": -34.465091 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79435, "decimalLat": -34.20284 }, "geometry": { "type": "Point", "coordinates": [ 150.794, -34.203 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520613, "decimalLat": -34.436145 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786188, "decimalLat": -33.705995 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.657979, "decimalLat": -28.39705 }, "geometry": { "type": "Point", "coordinates": [ 152.658, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604306, "decimalLat": -34.438959 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516918, "decimalLat": -34.448862 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908723, "decimalLat": -31.454815 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611755, "decimalLat": -34.419631 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784226, "decimalLat": -33.716817 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603941, "decimalLat": -34.42697 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900846, "decimalLat": -31.47374 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.309018, "decimalLat": -29.123301 }, "geometry": { "type": "Point", "coordinates": [ 150.309, -29.123 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787182, "decimalLat": -31.631189 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.871849, "decimalLat": -31.479051 }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514086, "decimalLat": -34.44638 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.941547, "decimalLat": -34.110018 }, "geometry": { "type": "Point", "coordinates": [ 150.942, -34.11 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791409, "decimalLat": -34.197825 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.198 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.470868, "decimalLat": -28.650297 }, "geometry": { "type": "Point", "coordinates": [ 153.471, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637302, "decimalLat": -34.488645 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615783, "decimalLat": -34.438291 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557114, "decimalLat": -28.400283 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61571, "decimalLat": -34.438542 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110603, "decimalLat": -29.489746 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522358, "decimalLat": -34.46584 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.759299, "decimalLat": -30.84178 }, "geometry": { "type": "Point", "coordinates": [ 152.759, -30.842 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.337649, "decimalLat": -28.264271 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -28.264 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.999236, "decimalLat": -34.083644 }, "geometry": { "type": "Point", "coordinates": [ 150.999, -34.084 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095813, "decimalLat": -29.484777 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.664149, "decimalLat": -34.458671 }, "geometry": { "type": "Point", "coordinates": [ 150.664, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64061, "decimalLat": -34.398176 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514576, "decimalLat": -34.443802 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513133, "decimalLat": -34.445855 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615387, "decimalLat": -34.451464 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6091, "decimalLat": -34.418885 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556542, "decimalLat": -28.397522 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630918, "decimalLat": -34.388216 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.871039, "decimalLat": -34.023785 }, "geometry": { "type": "Point", "coordinates": [ 150.871, -34.024 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110297, "decimalLat": -29.490194 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613526, "decimalLat": -34.431927 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630863, "decimalLat": -34.394003 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.547409, "decimalLat": -28.38442 }, "geometry": { "type": "Point", "coordinates": [ 153.547, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107679, "decimalLat": -29.472733 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522189, "decimalLat": -34.464944 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604201, "decimalLat": -34.434999 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915607, "decimalLat": -31.437744 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627347, "decimalLat": -34.420296 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.382207, "decimalLat": -28.879979 }, "geometry": { "type": "Point", "coordinates": [ 153.382, -28.88 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63098, "decimalLat": -34.388325 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603817, "decimalLat": -34.426716 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.576557 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300206, "decimalLat": -28.886464 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.74435, "decimalLat": -34.28401 }, "geometry": { "type": "Point", "coordinates": [ 150.744, -34.284 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101354, "decimalLat": -29.489984 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.289662, "decimalLat": -28.865871 }, "geometry": { "type": "Point", "coordinates": [ 153.29, -28.866 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.60191, "decimalLat": -31.651384 }, "geometry": { "type": "Point", "coordinates": [ 152.602, -31.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516164, "decimalLat": -34.447864 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637334, "decimalLat": -34.42378 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833136, "decimalLat": -34.085987 }, "geometry": { "type": "Point", "coordinates": [ 150.833, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626112, "decimalLat": -34.384724 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401988, "decimalLat": -28.260476 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518636, "decimalLat": -34.447446 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625776, "decimalLat": -34.395455 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.083495, "decimalLat": -32.73076 }, "geometry": { "type": "Point", "coordinates": [ 152.083, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604248, "decimalLat": -34.426481 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605098, "decimalLat": -34.432177 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.23422, "decimalLat": -33.118462 }, "geometry": { "type": "Point", "coordinates": [ 151.234, -33.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893154, "decimalLat": -29.743427 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -29.743 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51826, "decimalLat": -34.448745 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610401, "decimalLat": -34.419037 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.092763, "decimalLat": -32.738697 }, "geometry": { "type": "Point", "coordinates": [ 152.093, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633731, "decimalLat": -34.418463 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517759, "decimalLat": -34.441424 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104289, "decimalLat": -29.479963 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.151184, "decimalLat": -28.530563 }, "geometry": { "type": "Point", "coordinates": [ 153.151, -28.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631257, "decimalLat": -34.387348 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515086, "decimalLat": -34.447897 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634414, "decimalLat": -34.42009 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79338, "decimalLat": -31.642346 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.841021, "decimalLat": -34.064689 }, "geometry": { "type": "Point", "coordinates": [ 150.841, -34.065 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.384554, "decimalLat": -34.618598 }, "geometry": { "type": "Point", "coordinates": [ 150.385, -34.619 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518979, "decimalLat": -34.447245 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864165, "decimalLat": -31.291869 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.292 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091757, "decimalLat": -29.487901 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520415, "decimalLat": -34.465675 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7854, "decimalLat": -33.715285 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624221, "decimalLat": -34.388915 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515338, "decimalLat": -34.460307 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6216, "decimalLat": -34.397745 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640048, "decimalLat": -34.398463 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.468886, "decimalLat": -34.491005 }, "geometry": { "type": "Point", "coordinates": [ 150.469, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427967, "decimalLat": -28.626458 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.626 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630641, "decimalLat": -34.420765 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300206, "decimalLat": -28.886464 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637376, "decimalLat": -34.423826 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.822192, "decimalLat": -31.42428 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 24, "individual": 1, "stateProvi": "Queensland", "decimalLon": 153.356959, "decimalLat": -27.969639 }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.97 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924007, "decimalLat": -31.452858 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924885, "decimalLat": -31.459228 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302393, "decimalLat": -28.846635 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.941787, "decimalLat": -30.493961 }, "geometry": { "type": "Point", "coordinates": [ 152.942, -30.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.230665, "decimalLat": -28.873965 }, "geometry": { "type": "Point", "coordinates": [ 153.231, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.451495, "decimalLat": -28.933402 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.933 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901, "decimalLat": -31.442828 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.061084, "decimalLat": -29.741085 }, "geometry": { "type": "Point", "coordinates": [ 151.061, -29.741 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.934694, "decimalLat": -29.612254 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -29.612 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518345, "decimalLat": -34.437036 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331243, "decimalLat": -28.821749 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527487, "decimalLat": -34.457299 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627284, "decimalLat": -34.42024 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92031, "decimalLat": -31.475472 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527478, "decimalLat": -34.469397 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60437, "decimalLat": -34.438978 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.817463, "decimalLat": -32.34057 }, "geometry": { "type": "Point", "coordinates": [ 151.817, -32.341 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1046, "decimalLat": -29.477287 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82369, "decimalLat": -34.14127 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627422, "decimalLat": -34.420333 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.55107, "decimalLat": -33.562852 }, "geometry": { "type": "Point", "coordinates": [ 149.551, -33.563 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.345917, "decimalLat": -28.689903 }, "geometry": { "type": "Point", "coordinates": [ 153.346, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82489, "decimalLat": -31.2829 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.283 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.170845, "decimalLat": -31.074172 }, "geometry": { "type": "Point", "coordinates": [ 150.171, -31.074 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615446, "decimalLat": -34.43558 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929367, "decimalLat": -31.459677 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622652, "decimalLat": -34.383998 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639177, "decimalLat": -34.491269 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797166, "decimalLat": -30.213731 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -30.214 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614398, "decimalLat": -34.429591 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877594, "decimalLat": -29.676411 }, "geometry": { "type": "Point", "coordinates": [ 152.878, -29.676 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108242, "decimalLat": -29.49043 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605071, "decimalLat": -34.433105 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.01912, "decimalLat": -34.83704 }, "geometry": { "type": "Point", "coordinates": [ 150.019, -34.837 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93879, "decimalLat": -29.728067 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -29.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923405, "decimalLat": -31.46972 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925636, "decimalLat": -31.472366 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617356, "decimalLat": -34.399726 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.003336, "decimalLat": -34.072952 }, "geometry": { "type": "Point", "coordinates": [ 151.003, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790845, "decimalLat": -34.157547 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.158 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.975774, "decimalLat": -34.054438 }, "geometry": { "type": "Point", "coordinates": [ 150.976, -34.054 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920728, "decimalLat": -31.455822 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643859, "decimalLat": -34.393235 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.799222, "decimalLat": -34.215361 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.215 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985076, "decimalLat": -34.096306 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928723, "decimalLat": -31.459132 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793529, "decimalLat": -31.12713 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401668, "decimalLat": -28.25571 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639614, "decimalLat": -34.400356 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.243297, "decimalLat": -31.810661 }, "geometry": { "type": "Point", "coordinates": [ 152.243, -31.811 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615511, "decimalLat": -34.43522 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109304, "decimalLat": -29.490698 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.473468, "decimalLat": -28.268362 }, "geometry": { "type": "Point", "coordinates": [ 153.473, -28.268 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616378, "decimalLat": -34.433416 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278134, "decimalLat": -28.679301 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613778, "decimalLat": -34.298488 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597905, "decimalLat": -34.418152 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637395, "decimalLat": -34.488034 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605993, "decimalLat": -34.437802 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515171, "decimalLat": -34.44761 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627058, "decimalLat": -34.420903 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604676, "decimalLat": -34.424451 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638936, "decimalLat": -34.491715 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984322, "decimalLat": -36.659369 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.659 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524444, "decimalLat": -34.451593 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640241, "decimalLat": -34.494076 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103999, "decimalLat": -29.484642 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.640482, "decimalLat": -30.33086 }, "geometry": { "type": "Point", "coordinates": [ 151.64, -30.331 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.194689, "decimalLat": -32.216116 }, "geometry": { "type": "Point", "coordinates": [ 152.195, -32.216 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531386, "decimalLat": -34.457927 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.865796, "decimalLat": -31.270924 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -31.271 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.106618, "decimalLat": -32.728997 }, "geometry": { "type": "Point", "coordinates": [ 152.107, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522247, "decimalLat": -34.46408 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514299, "decimalLat": -34.446546 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.485499 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.775507, "decimalLat": -31.491536 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -31.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.955462, "decimalLat": -30.66667 }, "geometry": { "type": "Point", "coordinates": [ 152.955, -30.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.8046, "decimalLat": -34.157201 }, "geometry": { "type": "Point", "coordinates": [ 150.805, -34.157 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786303, "decimalLat": -33.704417 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524961, "decimalLat": -34.495625 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.496 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941399, "decimalLat": -36.632151 }, "geometry": { "type": "Point", "coordinates": [ 149.941, -36.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379463, "decimalLat": -31.919231 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.563224, "decimalLat": -34.745648 }, "geometry": { "type": "Point", "coordinates": [ 146.563, -34.746 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564056, "decimalLat": -28.387975 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002388, "decimalLat": -29.182013 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -29.182 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921575, "decimalLat": -30.509627 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -30.51 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930176, "decimalLat": -31.467513 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615999, "decimalLat": -34.434905 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784419, "decimalLat": -31.726571 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617138, "decimalLat": -34.433855 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898068, "decimalLat": -31.442926 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622518, "decimalLat": -34.38451 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301846, "decimalLat": -28.818794 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102508, "decimalLat": -29.487784 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.974638, "decimalLat": -34.100506 }, "geometry": { "type": "Point", "coordinates": [ 150.975, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914421, "decimalLat": -31.451443 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.844858, "decimalLat": -29.834309 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.834 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634429, "decimalLat": -34.488599 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927351, "decimalLat": -31.444902 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833136, "decimalLat": -34.085987 }, "geometry": { "type": "Point", "coordinates": [ 150.833, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108199, "decimalLat": -29.490269 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524335, "decimalLat": -34.459362 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.327246, "decimalLat": -31.90123 }, "geometry": { "type": "Point", "coordinates": [ 152.327, -31.901 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395987, "decimalLat": -28.919066 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.919 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82484, "decimalLat": -29.505641 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071977, "decimalLat": -30.880197 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659283, "decimalLat": -34.458317 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.078969, "decimalLat": -33.770274 }, "geometry": { "type": "Point", "coordinates": [ 150.079, -33.77 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.821574, "decimalLat": -30.91474 }, "geometry": { "type": "Point", "coordinates": [ 152.822, -30.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515894, "decimalLat": -34.444478 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812262, "decimalLat": -31.519199 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -31.519 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61378, "decimalLat": -34.431049 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926032, "decimalLat": -31.453009 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.06119, "decimalLat": -30.36468 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -30.365 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.798085, "decimalLat": -34.189423 }, "geometry": { "type": "Point", "coordinates": [ 150.798, -34.189 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095142, "decimalLat": -29.483334 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915571, "decimalLat": -31.435911 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292753, "decimalLat": -28.863674 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.796697, "decimalLat": -31.1269 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.052862, "decimalLat": -34.072982 }, "geometry": { "type": "Point", "coordinates": [ 151.053, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.620433, "decimalLat": -28.649832 }, "geometry": { "type": "Point", "coordinates": [ 153.62, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529024, "decimalLat": -34.471979 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60144, "decimalLat": -28.7273 }, "geometry": { "type": "Point", "coordinates": [ 153.601, -28.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61708, "decimalLat": -34.434395 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.624706, "decimalLat": -30.402213 }, "geometry": { "type": "Point", "coordinates": [ 151.625, -30.402 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.915309, "decimalLat": -36.574566 }, "geometry": { "type": "Point", "coordinates": [ 149.915, -36.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659722, "decimalLat": -33.527069 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808259, "decimalLat": -34.098127 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864853, "decimalLat": -31.467655 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110216, "decimalLat": -29.490241 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60516, "decimalLat": -34.437984 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616306, "decimalLat": -34.435957 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.711906, "decimalLat": -33.512784 }, "geometry": { "type": "Point", "coordinates": [ 150.712, -33.513 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636877, "decimalLat": -34.422644 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.098152, "decimalLat": -29.489199 }, "geometry": { "type": "Point", "coordinates": [ 153.098, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.745717, "decimalLat": -31.246426 }, "geometry": { "type": "Point", "coordinates": [ 152.746, -31.246 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785778, "decimalLat": -33.714032 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659165, "decimalLat": -34.459054 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.863584, "decimalLat": -31.299396 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517392, "decimalLat": -34.453443 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.477993, "decimalLat": -28.248694 }, "geometry": { "type": "Point", "coordinates": [ 153.478, -28.249 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902947, "decimalLat": -30.241077 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.241 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.308892, "decimalLat": -29.058961 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -29.059 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109728, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914772, "decimalLat": -31.485275 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.355574, "decimalLat": -28.388147 }, "geometry": { "type": "Point", "coordinates": [ 153.356, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.894781, "decimalLat": -34.005673 }, "geometry": { "type": "Point", "coordinates": [ 150.895, -34.006 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515867, "decimalLat": -34.448715 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929906, "decimalLat": -31.461057 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607145, "decimalLat": -34.435174 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516543, "decimalLat": -34.447214 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517308, "decimalLat": -34.446346 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100764, "decimalLat": -29.490133 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630366, "decimalLat": -34.420877 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515988, "decimalLat": -34.44942 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630244, "decimalLat": -34.420956 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.458959, "decimalLat": -28.651389 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099761, "decimalLat": -29.491492 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91021, "decimalLat": -31.465813 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077509, "decimalLat": -32.72228 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638444, "decimalLat": -34.491021 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317932, "decimalLat": -28.826223 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596135, "decimalLat": -34.411572 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.922668, "decimalLat": -29.796463 }, "geometry": { "type": "Point", "coordinates": [ 150.923, -29.796 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522059, "decimalLat": -34.464915 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605236, "decimalLat": -34.423913 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.320608, "decimalLat": -36.298419 }, "geometry": { "type": "Point", "coordinates": [ 149.321, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.407839, "decimalLat": -33.458223 }, "geometry": { "type": "Point", "coordinates": [ 149.408, -33.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868353, "decimalLat": -31.473137 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.473 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063674, "decimalLat": -32.705575 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.087946, "decimalLat": -30.355053 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -30.355 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.992766, "decimalLat": -32.721062 }, "geometry": { "type": "Point", "coordinates": [ 151.993, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923069, "decimalLat": -31.475748 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628039, "decimalLat": -34.420471 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277104, "decimalLat": -28.829011 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.829 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.098775, "decimalLat": -30.301964 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -30.302 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637881, "decimalLat": -34.490135 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615372, "decimalLat": -34.434361 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.660859, "decimalLat": -32.660683 }, "geometry": { "type": "Point", "coordinates": [ 151.661, -32.661 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521741, "decimalLat": -34.467198 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.037485, "decimalLat": -32.307678 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.308 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624593, "decimalLat": -34.386119 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.008807, "decimalLat": -32.727125 }, "geometry": { "type": "Point", "coordinates": [ 152.009, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615788, "decimalLat": -34.436208 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200496, "decimalLat": -29.353924 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881414, "decimalLat": -31.422518 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.423 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927818, "decimalLat": -31.464685 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517382, "decimalLat": -34.447529 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.595526, "decimalLat": -34.771816 }, "geometry": { "type": "Point", "coordinates": [ 146.596, -34.772 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787125, "decimalLat": -33.705345 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926066, "decimalLat": -31.454469 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.089284, "decimalLat": -32.729391 }, "geometry": { "type": "Point", "coordinates": [ 152.089, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870582, "decimalLat": -29.679946 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -29.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.01625, "decimalLat": -33.993331 }, "geometry": { "type": "Point", "coordinates": [ 151.016, -33.993 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616055, "decimalLat": -34.434852 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108081, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637103, "decimalLat": -34.422333 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520187, "decimalLat": -34.453517 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523906, "decimalLat": -34.452511 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109412, "decimalLat": -29.490479 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610213, "decimalLat": -34.419899 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630022, "decimalLat": -34.388352 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.340451, "decimalLat": -28.977061 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -28.977 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103795, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10394, "decimalLat": -29.48961 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601183, "decimalLat": -34.417252 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659652, "decimalLat": -34.45836 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.721847, "decimalLat": -31.513788 }, "geometry": { "type": "Point", "coordinates": [ 152.722, -31.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608324, "decimalLat": -28.663223 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.663 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316254, "decimalLat": -28.823717 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52236, "decimalLat": -34.465795 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03473, "decimalLat": -32.76541 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104117, "decimalLat": -29.483741 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625244, "decimalLat": -34.386185 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53462, "decimalLat": -34.459354 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879717, "decimalLat": -31.42403 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603317, "decimalLat": -34.439661 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783956, "decimalLat": -33.717673 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277131, "decimalLat": -28.738801 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.739 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.896544, "decimalLat": -33.96711 }, "geometry": { "type": "Point", "coordinates": [ 150.897, -33.967 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315723, "decimalLat": -28.824561 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.776514, "decimalLat": -32.373929 }, "geometry": { "type": "Point", "coordinates": [ 149.777, -32.374 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063384, "decimalLat": -32.706502 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519868, "decimalLat": -34.452871 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561535, "decimalLat": -28.388682 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301675, "decimalLat": -28.823407 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915395, "decimalLat": -31.47699 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.696939, "decimalLat": -30.425791 }, "geometry": { "type": "Point", "coordinates": [ 152.697, -30.426 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.801207, "decimalLat": -31.675199 }, "geometry": { "type": "Point", "coordinates": [ 152.801, -31.675 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914421, "decimalLat": -31.451443 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639111, "decimalLat": -34.491304 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.113242, "decimalLat": -32.741594 }, "geometry": { "type": "Point", "coordinates": [ 152.113, -32.742 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609889, "decimalLat": -34.429755 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603973, "decimalLat": -34.452494 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.832, "decimalLat": -31.26349 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -31.263 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.801488, "decimalLat": -34.18588 }, "geometry": { "type": "Point", "coordinates": [ 150.801, -34.186 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293158, "decimalLat": -28.864686 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.430836, "decimalLat": -29.017366 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -29.017 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104804, "decimalLat": -29.476932 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522857, "decimalLat": -34.452643 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374119, "decimalLat": -31.915496 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64372, "decimalLat": -34.394702 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.853861, "decimalLat": -34.077418 }, "geometry": { "type": "Point", "coordinates": [ 150.854, -34.077 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517487, "decimalLat": -34.453544 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52268, "decimalLat": -34.464161 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619716, "decimalLat": -34.439648 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604495, "decimalLat": -34.425485 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276967, "decimalLat": -28.874019 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.375607, "decimalLat": -33.493056 }, "geometry": { "type": "Point", "coordinates": [ 149.376, -33.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.383072, "decimalLat": -28.652487 }, "geometry": { "type": "Point", "coordinates": [ 153.383, -28.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6067, "decimalLat": -34.437789 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.223558, "decimalLat": -28.94558 }, "geometry": { "type": "Point", "coordinates": [ 153.224, -28.946 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06373, "decimalLat": -32.706589 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277104, "decimalLat": -28.829011 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.829 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.164385, "decimalLat": -31.602724 }, "geometry": { "type": "Point", "coordinates": [ 152.164, -31.603 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.650594, "decimalLat": -31.535114 }, "geometry": { "type": "Point", "coordinates": [ 152.651, -31.535 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629866, "decimalLat": -34.395408 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604747, "decimalLat": -34.427311 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925254, "decimalLat": -31.454049 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921875, "decimalLat": -31.449865 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630294, "decimalLat": -34.394523 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785428, "decimalLat": -29.577133 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -29.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897336, "decimalLat": -31.474783 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514098, "decimalLat": -34.446362 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615268, "decimalLat": -34.441085 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888398, "decimalLat": -31.453626 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.690396, "decimalLat": -31.485999 }, "geometry": { "type": "Point", "coordinates": [ 152.69, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526776, "decimalLat": -34.469581 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.747171, "decimalLat": -34.185522 }, "geometry": { "type": "Point", "coordinates": [ 150.747, -34.186 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51923, "decimalLat": -34.445033 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635652, "decimalLat": -34.41823 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.432977, "decimalLat": -28.968203 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.968 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.587159, "decimalLat": -32.967069 }, "geometry": { "type": "Point", "coordinates": [ 151.587, -32.967 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619747, "decimalLat": -34.439694 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604702, "decimalLat": -34.438029 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.106712, "decimalLat": -29.768492 }, "geometry": { "type": "Point", "coordinates": [ 151.107, -29.768 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.080757, "decimalLat": -32.7224 }, "geometry": { "type": "Point", "coordinates": [ 152.081, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941399, "decimalLat": -36.632151 }, "geometry": { "type": "Point", "coordinates": [ 149.941, -36.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878917, "decimalLat": -31.44848 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599119, "decimalLat": -34.412974 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616001, "decimalLat": -34.434815 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.69922, "decimalLat": -34.27546 }, "geometry": { "type": "Point", "coordinates": [ 150.699, -34.275 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514373, "decimalLat": -34.440724 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104353, "decimalLat": -29.477604 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514217, "decimalLat": -34.445995 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.019133, "decimalLat": -34.03974 }, "geometry": { "type": "Point", "coordinates": [ 151.019, -34.04 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605426, "decimalLat": -34.423727 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621136, "decimalLat": -34.398754 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104141, "decimalLat": -29.485092 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610959, "decimalLat": -34.457499 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317852, "decimalLat": -28.929063 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.929 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515109, "decimalLat": -34.447473 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632751, "decimalLat": -34.418877 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609668, "decimalLat": -34.436377 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.525697, "decimalLat": -28.230931 }, "geometry": { "type": "Point", "coordinates": [ 153.526, -28.231 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515778, "decimalLat": -34.448794 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070568, "decimalLat": -32.713292 }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.618043, "decimalLat": -28.660191 }, "geometry": { "type": "Point", "coordinates": [ 153.618, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108124, "decimalLat": -29.490203 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.021572, "decimalLat": -32.737707 }, "geometry": { "type": "Point", "coordinates": [ 152.022, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.948245, "decimalLat": -32.769662 }, "geometry": { "type": "Point", "coordinates": [ 151.948, -32.77 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096049, "decimalLat": -29.484899 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.432341, "decimalLat": -32.089861 }, "geometry": { "type": "Point", "coordinates": [ 152.432, -32.09 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928543, "decimalLat": -31.464292 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4018, "decimalLat": -28.257095 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517262, "decimalLat": -34.451601 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79293, "decimalLat": -34.13792 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.138 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632702, "decimalLat": -34.418272 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.52522, "decimalLat": -28.221806 }, "geometry": { "type": "Point", "coordinates": [ 153.525, -28.222 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108119, "decimalLat": -29.490292 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.406039, "decimalLat": -31.386864 }, "geometry": { "type": "Point", "coordinates": [ 150.406, -31.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631103, "decimalLat": -34.387417 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104358, "decimalLat": -29.477674 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522435, "decimalLat": -34.465806 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343996, "decimalLat": -28.749883 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.75 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.847824, "decimalLat": -34.05187 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.052 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873603, "decimalLat": -31.457792 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639177, "decimalLat": -34.392685 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64014, "decimalLat": -34.395931 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608613, "decimalLat": -34.435951 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39503, "decimalLat": -29.014516 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.015 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784754, "decimalLat": -31.634448 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.634 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.834423, "decimalLat": -34.111288 }, "geometry": { "type": "Point", "coordinates": [ 150.834, -34.111 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.810123, "decimalLat": -34.103174 }, "geometry": { "type": "Point", "coordinates": [ 150.81, -34.103 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62282, "decimalLat": -34.383839 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.275124, "decimalLat": -33.278915 }, "geometry": { "type": "Point", "coordinates": [ 150.275, -33.279 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616107, "decimalLat": -34.437991 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101274, "decimalLat": -29.489736 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926698, "decimalLat": -31.46408 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604747, "decimalLat": -34.42732 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630369, "decimalLat": -34.420778 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631267, "decimalLat": -34.420173 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.718753, "decimalLat": -32.717776 }, "geometry": { "type": "Point", "coordinates": [ 151.719, -32.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607954, "decimalLat": -28.664639 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.665 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605927, "decimalLat": -34.437431 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.942564, "decimalLat": -30.68719 }, "geometry": { "type": "Point", "coordinates": [ 152.943, -30.687 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.464393, "decimalLat": -28.502506 }, "geometry": { "type": "Point", "coordinates": [ 153.464, -28.503 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.915309, "decimalLat": -36.574566 }, "geometry": { "type": "Point", "coordinates": [ 149.915, -36.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657628, "decimalLat": -34.455626 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64212, "decimalLat": -34.397087 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627486, "decimalLat": -34.421552 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627202, "decimalLat": -34.385782 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103768, "decimalLat": -29.48565 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617538, "decimalLat": -34.438551 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306858, "decimalLat": -28.820578 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.539311, "decimalLat": -32.065087 }, "geometry": { "type": "Point", "coordinates": [ 152.539, -32.065 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.229565, "decimalLat": -28.889215 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.802726, "decimalLat": -34.111403 }, "geometry": { "type": "Point", "coordinates": [ 150.803, -34.111 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063365, "decimalLat": -32.706209 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.665991, "decimalLat": -33.570942 }, "geometry": { "type": "Point", "coordinates": [ 150.666, -33.571 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.854757, "decimalLat": -31.05168 }, "geometry": { "type": "Point", "coordinates": [ 152.855, -31.052 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917743, "decimalLat": -31.479438 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.089896, "decimalLat": -32.728381 }, "geometry": { "type": "Point", "coordinates": [ 152.09, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063966, "decimalLat": -32.706586 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60918, "decimalLat": -34.420654 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.245128, "decimalLat": -28.891406 }, "geometry": { "type": "Point", "coordinates": [ 153.245, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604298, "decimalLat": -34.438851 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616839, "decimalLat": -34.42944 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300206, "decimalLat": -28.886464 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910638, "decimalLat": -31.465376 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519909, "decimalLat": -34.452619 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518573, "decimalLat": -34.435599 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521168, "decimalLat": -34.4656 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640933, "decimalLat": -34.393278 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.03915, "decimalLat": -34.91121 }, "geometry": { "type": "Point", "coordinates": [ 150.039, -34.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.146989, "decimalLat": -32.120969 }, "geometry": { "type": "Point", "coordinates": [ 152.147, -32.121 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787249, "decimalLat": -31.636669 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639788, "decimalLat": -34.39917 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51605, "decimalLat": -34.449521 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615886, "decimalLat": -34.436192 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784467, "decimalLat": -34.192201 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -34.192 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335449, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360098, "decimalLat": -28.677843 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -28.678 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626112, "decimalLat": -34.390467 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637372, "decimalLat": -34.420517 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.996446, "decimalLat": -30.413154 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -30.413 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.164217, "decimalLat": -31.602615 }, "geometry": { "type": "Point", "coordinates": [ 152.164, -31.603 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103688, "decimalLat": -29.485702 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636333, "decimalLat": -34.485562 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604997, "decimalLat": -34.43762 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.901403, "decimalLat": -33.998514 }, "geometry": { "type": "Point", "coordinates": [ 150.901, -33.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619075, "decimalLat": -34.400869 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785137, "decimalLat": -33.713066 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.298885, "decimalLat": -31.945394 }, "geometry": { "type": "Point", "coordinates": [ 152.299, -31.945 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791721, "decimalLat": -34.155007 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.155 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.426741, "decimalLat": -31.944525 }, "geometry": { "type": "Point", "coordinates": [ 152.427, -31.945 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300206, "decimalLat": -28.886464 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063821, "decimalLat": -32.706659 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.467894, "decimalLat": -31.950763 }, "geometry": { "type": "Point", "coordinates": [ 152.468, -31.951 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877483, "decimalLat": -31.489975 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -31.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630267, "decimalLat": -34.42092 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785632, "decimalLat": -33.714005 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103633, "decimalLat": -29.485488 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.19568, "decimalLat": -29.78683 }, "geometry": { "type": "Point", "coordinates": [ 151.196, -29.787 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31159, "decimalLat": -28.822311 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520295, "decimalLat": -34.46569 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516298, "decimalLat": -34.449607 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603633, "decimalLat": -34.427469 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60661, "decimalLat": -34.457738 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519877, "decimalLat": -34.466556 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600422, "decimalLat": -34.419121 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641012, "decimalLat": -34.397048 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103859, "decimalLat": -29.485417 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.326455, "decimalLat": -28.835219 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.835 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627749, "decimalLat": -34.386414 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98111, "decimalLat": -30.437334 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -30.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.792436, "decimalLat": -34.207368 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.207 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101403, "decimalLat": -29.48962 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519408, "decimalLat": -34.451149 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905808, "decimalLat": -31.437226 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103897, "decimalLat": -29.485384 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.387873, "decimalLat": -28.646862 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281771, "decimalLat": -28.82399 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.44189, "decimalLat": -34.47006 }, "geometry": { "type": "Point", "coordinates": [ 150.442, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886663, "decimalLat": -30.409617 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -30.41 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.801751, "decimalLat": -31.127639 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -31.128 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.435912, "decimalLat": -28.968157 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.968 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103865, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625746, "decimalLat": -34.38844 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.80457, "decimalLat": -31.49933 }, "geometry": { "type": "Point", "coordinates": [ 152.805, -31.499 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.496317, "decimalLat": -28.331738 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.332 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639112, "decimalLat": -34.491629 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627292, "decimalLat": -34.42034 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626468, "decimalLat": -34.390582 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.832902, "decimalLat": -31.474812 }, "geometry": { "type": "Point", "coordinates": [ 152.833, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.690045, "decimalLat": -31.579407 }, "geometry": { "type": "Point", "coordinates": [ 152.69, -31.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316272, "decimalLat": -28.823818 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189597, "decimalLat": -32.229205 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622025, "decimalLat": -34.397717 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.616032, "decimalLat": -30.332117 }, "geometry": { "type": "Point", "coordinates": [ 152.616, -30.332 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784208, "decimalLat": -33.717267 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62901, "decimalLat": -34.390306 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611363, "decimalLat": -34.430722 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.418397, "decimalLat": -29.028181 }, "geometry": { "type": "Point", "coordinates": [ 153.418, -29.028 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603328, "decimalLat": -34.436605 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.695777, "decimalLat": -31.869252 }, "geometry": { "type": "Point", "coordinates": [ 152.696, -31.869 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.356052, "decimalLat": -31.879896 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.88 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624317, "decimalLat": -34.389728 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897748, "decimalLat": -31.456388 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.04927, "decimalLat": -31.13545 }, "geometry": { "type": "Point", "coordinates": [ 150.049, -31.135 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630876, "decimalLat": -34.388143 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516863, "decimalLat": -34.446301 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905478, "decimalLat": -31.467655 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.620547, "decimalLat": -28.656619 }, "geometry": { "type": "Point", "coordinates": [ 153.621, -28.657 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552134, "decimalLat": -33.49123 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103007, "decimalLat": -29.487117 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629023, "decimalLat": -34.395229 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.083923, "decimalLat": -29.728212 }, "geometry": { "type": "Point", "coordinates": [ 151.084, -29.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522153, "decimalLat": -34.451421 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615025, "decimalLat": -34.432813 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094026, "decimalLat": -29.488779 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619592, "decimalLat": -31.520218 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -31.52 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.044047, "decimalLat": -32.206285 }, "geometry": { "type": "Point", "coordinates": [ 152.044, -32.206 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.876721, "decimalLat": -31.448261 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924528, "decimalLat": -31.444529 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534663, "decimalLat": -34.459003 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516314, "decimalLat": -34.448318 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518629, "decimalLat": -34.435555 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627776, "decimalLat": -34.420917 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906513, "decimalLat": -31.397361 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.210153, "decimalLat": -31.56082 }, "geometry": { "type": "Point", "coordinates": [ 152.21, -31.561 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109369, "decimalLat": -29.49046 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616534, "decimalLat": -34.435222 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.092594, "decimalLat": -32.738241 }, "geometry": { "type": "Point", "coordinates": [ 152.093, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.282038, "decimalLat": -28.659861 }, "geometry": { "type": "Point", "coordinates": [ 153.282, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789028, "decimalLat": -33.508886 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -33.509 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06384, "decimalLat": -32.706596 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11056, "decimalLat": -29.489848 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.381397, "decimalLat": -31.916008 }, "geometry": { "type": "Point", "coordinates": [ 152.381, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614888, "decimalLat": -34.429574 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927336, "decimalLat": -31.469229 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795899, "decimalLat": -30.884771 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78523, "decimalLat": -33.711613 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.738044, "decimalLat": -34.304895 }, "geometry": { "type": "Point", "coordinates": [ 150.738, -34.305 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.003085, "decimalLat": -29.184661 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -29.185 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634571, "decimalLat": -34.4203 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099352, "decimalLat": -29.482872 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62314, "decimalLat": -34.38289 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90074, "decimalLat": -31.443074 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617053, "decimalLat": -34.434962 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.257182, "decimalLat": -33.543126 }, "geometry": { "type": "Point", "coordinates": [ 149.257, -33.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.378253, "decimalLat": -31.91099 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.486263, "decimalLat": -32.909303 }, "geometry": { "type": "Point", "coordinates": [ 151.486, -32.909 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923303, "decimalLat": -31.476638 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558471, "decimalLat": -28.394095 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520605, "decimalLat": -34.453742 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597627, "decimalLat": -34.45025 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.780333, "decimalLat": -32.714185 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103366, "decimalLat": -29.486379 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.488445, "decimalLat": -32.353443 }, "geometry": { "type": "Point", "coordinates": [ 152.488, -32.353 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.005752, "decimalLat": -34.00339 }, "geometry": { "type": "Point", "coordinates": [ 151.006, -34.003 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627427, "decimalLat": -34.389735 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072872, "decimalLat": -32.711199 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639071, "decimalLat": -34.493097 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.874232, "decimalLat": -29.673432 }, "geometry": { "type": "Point", "coordinates": [ 152.874, -29.673 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109267, "decimalLat": -29.490778 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632061, "decimalLat": -34.41825 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912313, "decimalLat": -31.455401 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91386, "decimalLat": -31.429887 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.242726, "decimalLat": -36.072073 }, "geometry": { "type": "Point", "coordinates": [ 149.243, -36.072 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61447, "decimalLat": -34.42934 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.917922, "decimalLat": -36.474664 }, "geometry": { "type": "Point", "coordinates": [ 149.918, -36.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639698, "decimalLat": -34.39347 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513759, "decimalLat": -34.4464 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.075776, "decimalLat": -30.355259 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -30.355 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276362, "decimalLat": -28.932217 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -28.932 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88605, "decimalLat": -30.51724 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -30.517 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.8506, "decimalLat": -34.082903 }, "geometry": { "type": "Point", "coordinates": [ 150.851, -34.083 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091087, "decimalLat": -29.48756 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.617704, "decimalLat": -30.522436 }, "geometry": { "type": "Point", "coordinates": [ 152.618, -30.522 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520215, "decimalLat": -34.452932 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601376, "decimalLat": -34.451604 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908634, "decimalLat": -31.441157 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.458172, "decimalLat": -28.804602 }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.805 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518452, "decimalLat": -34.43748 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.059872, "decimalLat": -28.951966 }, "geometry": { "type": "Point", "coordinates": [ 153.06, -28.952 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630961, "decimalLat": -34.388216 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.796381, "decimalLat": -32.524306 }, "geometry": { "type": "Point", "coordinates": [ 151.796, -32.524 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.967234, "decimalLat": -30.662627 }, "geometry": { "type": "Point", "coordinates": [ 152.967, -30.663 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525051, "decimalLat": -34.460549 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638869, "decimalLat": -34.421817 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915465, "decimalLat": -31.445873 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639226, "decimalLat": -34.491838 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.898037, "decimalLat": -36.89271 }, "geometry": { "type": "Point", "coordinates": [ 149.898, -36.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517439, "decimalLat": -34.44853 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.418213, "decimalLat": -31.905008 }, "geometry": { "type": "Point", "coordinates": [ 152.418, -31.905 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915061, "decimalLat": -31.446455 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03798, "decimalLat": -32.732784 }, "geometry": { "type": "Point", "coordinates": [ 152.038, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819394, "decimalLat": -31.44913 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915099, "decimalLat": -31.45338 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920421, "decimalLat": -30.505548 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.744978, "decimalLat": -30.091962 }, "geometry": { "type": "Point", "coordinates": [ 152.745, -30.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.966961, "decimalLat": -36.56748 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.567 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316908, "decimalLat": -28.834402 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.0837, "decimalLat": -32.7312 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637345, "decimalLat": -34.423789 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.464903, "decimalLat": -28.649564 }, "geometry": { "type": "Point", "coordinates": [ 153.465, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632768, "decimalLat": -34.419806 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637345, "decimalLat": -34.423789 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.488933, "decimalLat": -28.671975 }, "geometry": { "type": "Point", "coordinates": [ 153.489, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063411, "decimalLat": -32.706203 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899808, "decimalLat": -29.631666 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.725103, "decimalLat": -30.221909 }, "geometry": { "type": "Point", "coordinates": [ 152.725, -30.222 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919406, "decimalLat": -31.442995 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.549897, "decimalLat": -34.462307 }, "geometry": { "type": "Point", "coordinates": [ 150.55, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795725, "decimalLat": -30.217086 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -30.217 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063684, "decimalLat": -32.706189 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.036607, "decimalLat": -34.036891 }, "geometry": { "type": "Point", "coordinates": [ 151.037, -34.037 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.341526, "decimalLat": -36.313317 }, "geometry": { "type": "Point", "coordinates": [ 149.342, -36.313 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617141, "decimalLat": -33.51732 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -33.517 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101274, "decimalLat": -29.4899 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10387, "decimalLat": -29.484665 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919726, "decimalLat": -31.469085 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880069, "decimalLat": -31.484988 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522447, "decimalLat": -34.465797 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602955, "decimalLat": -34.45196 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611756, "decimalLat": -34.430657 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60478, "decimalLat": -34.427284 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360186, "decimalLat": -28.794375 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -28.794 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603459, "decimalLat": -34.435453 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628081, "decimalLat": -34.389684 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413734, "decimalLat": -31.937692 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.938 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108146, "decimalLat": -29.490525 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62421, "decimalLat": -34.386219 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.042306, "decimalLat": -30.910858 }, "geometry": { "type": "Point", "coordinates": [ 153.042, -30.911 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55592, "decimalLat": -28.399181 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91449, "decimalLat": -31.486174 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.699686, "decimalLat": -30.290401 }, "geometry": { "type": "Point", "coordinates": [ 152.7, -30.29 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622023, "decimalLat": -34.398176 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.275632, "decimalLat": -28.819715 }, "geometry": { "type": "Point", "coordinates": [ 153.276, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611425, "decimalLat": -34.419751 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.21815, "decimalLat": -28.830303 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619828, "decimalLat": -34.439145 }, "geometry": { "type": "Point", "coordinates": [ 150.62, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644626, "decimalLat": -34.402355 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.402 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077083, "decimalLat": -32.722708 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89747, "decimalLat": -34.01117 }, "geometry": { "type": "Point", "coordinates": [ 150.897, -34.011 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63168, "decimalLat": -34.387022 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.328561, "decimalLat": -28.81698 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55577, "decimalLat": -28.37847 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.378 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.806572, "decimalLat": -32.697232 }, "geometry": { "type": "Point", "coordinates": [ 151.807, -32.697 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51921, "decimalLat": -34.447899 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629818, "decimalLat": -34.421038 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.671419, "decimalLat": -29.54529 }, "geometry": { "type": "Point", "coordinates": [ 152.671, -29.545 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782168, "decimalLat": -31.483888 }, "geometry": { "type": "Point", "coordinates": [ 152.782, -31.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784826, "decimalLat": -33.718702 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627888, "decimalLat": -34.390753 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927141, "decimalLat": -31.469153 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.805444, "decimalLat": -34.102731 }, "geometry": { "type": "Point", "coordinates": [ 150.805, -34.103 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516402, "decimalLat": -34.459688 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103028, "decimalLat": -29.489414 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784496, "decimalLat": -33.717233 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783983, "decimalLat": -33.717623 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615313, "decimalLat": -34.434531 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277501, "decimalLat": -28.939088 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.939 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28271, "decimalLat": -28.82428 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104278, "decimalLat": -29.480187 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.418213, "decimalLat": -31.905008 }, "geometry": { "type": "Point", "coordinates": [ 152.418, -31.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519963, "decimalLat": -34.45482 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.173157, "decimalLat": -32.666898 }, "geometry": { "type": "Point", "coordinates": [ 152.173, -32.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.137668, "decimalLat": -36.299472 }, "geometry": { "type": "Point", "coordinates": [ 149.138, -36.299 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.78529, "decimalLat": -32.681213 }, "geometry": { "type": "Point", "coordinates": [ 151.785, -32.681 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.771907, "decimalLat": -31.706394 }, "geometry": { "type": "Point", "coordinates": [ 152.772, -31.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.667847, "decimalLat": -32.674746 }, "geometry": { "type": "Point", "coordinates": [ 151.668, -32.675 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785541, "decimalLat": -33.712811 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875654, "decimalLat": -29.666331 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -29.666 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637455, "decimalLat": -34.423728 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901675, "decimalLat": -31.446692 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.994716, "decimalLat": -34.002266 }, "geometry": { "type": "Point", "coordinates": [ 150.995, -34.002 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613887, "decimalLat": -34.433016 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514341, "decimalLat": -34.447331 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.474066, "decimalLat": -32.971581 }, "geometry": { "type": "Point", "coordinates": [ 151.474, -32.972 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.074259, "decimalLat": -30.886804 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606199, "decimalLat": -34.432108 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51413, "decimalLat": -34.446363 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.469132, "decimalLat": -28.26224 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.262 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.002122, "decimalLat": -32.74226 }, "geometry": { "type": "Point", "coordinates": [ 152.002, -32.742 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.412732, "decimalLat": -31.932251 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.932 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.145612, "decimalLat": -28.558684 }, "geometry": { "type": "Point", "coordinates": [ 153.146, -28.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633071, "decimalLat": -34.41754 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374593, "decimalLat": -31.910703 }, "geometry": { "type": "Point", "coordinates": [ 152.375, -31.911 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063431, "decimalLat": -32.706215 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5282, "decimalLat": -28.232026 }, "geometry": { "type": "Point", "coordinates": [ 153.528, -28.232 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.782574, "decimalLat": -32.582152 }, "geometry": { "type": "Point", "coordinates": [ 151.783, -32.582 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.176881, "decimalLat": -32.531752 }, "geometry": { "type": "Point", "coordinates": [ 152.177, -32.532 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516829, "decimalLat": -34.446724 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520293, "decimalLat": -34.465744 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.070046, "decimalLat": -33.801208 }, "geometry": { "type": "Point", "coordinates": [ 150.07, -33.801 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598007, "decimalLat": -34.425979 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103774, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.310615, "decimalLat": -28.822731 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.05798, "decimalLat": -29.737008 }, "geometry": { "type": "Point", "coordinates": [ 151.058, -29.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596896, "decimalLat": -34.414256 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493728, "decimalLat": -28.254048 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905478, "decimalLat": -31.467655 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923246, "decimalLat": -31.459207 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.850938, "decimalLat": -31.554761 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -31.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52266, "decimalLat": -34.464837 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60596, "decimalLat": -34.437819 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915715, "decimalLat": -31.444778 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105653, "decimalLat": -32.761248 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.761 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520403, "decimalLat": -34.468649 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104122, "decimalLat": -29.478805 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.686046, "decimalLat": -30.481497 }, "geometry": { "type": "Point", "coordinates": [ 152.686, -30.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.531976, "decimalLat": -28.638162 }, "geometry": { "type": "Point", "coordinates": [ 153.532, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632735, "decimalLat": -34.418291 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607418, "decimalLat": -34.450794 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109331, "decimalLat": -29.490539 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.376608, "decimalLat": -36.018932 }, "geometry": { "type": "Point", "coordinates": [ 149.377, -36.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639201, "decimalLat": -34.489259 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103838, "decimalLat": -29.485604 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51642, "decimalLat": -34.437385 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395743, "decimalLat": -28.959387 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.194794, "decimalLat": -28.885311 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -28.885 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028079, "decimalLat": -32.738066 }, "geometry": { "type": "Point", "coordinates": [ 152.028, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.011902, "decimalLat": -30.42247 }, "geometry": { "type": "Point", "coordinates": [ 153.012, -30.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520004, "decimalLat": -34.435781 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.694366, "decimalLat": -30.48135 }, "geometry": { "type": "Point", "coordinates": [ 151.694, -30.481 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.867059, "decimalLat": -34.062302 }, "geometry": { "type": "Point", "coordinates": [ 150.867, -34.062 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109739, "decimalLat": -29.490227 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636241, "decimalLat": -34.485713 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638455, "decimalLat": -34.42299 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355335, "decimalLat": -31.911765 }, "geometry": { "type": "Point", "coordinates": [ 152.355, -31.912 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910468, "decimalLat": -31.458212 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.018715, "decimalLat": -30.364785 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -30.365 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518859, "decimalLat": -34.447252 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077015, "decimalLat": -32.722568 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6309, "decimalLat": -34.388837 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.828654, "decimalLat": -34.077477 }, "geometry": { "type": "Point", "coordinates": [ 150.829, -34.077 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86849, "decimalLat": -29.667322 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.693995, "decimalLat": -30.326721 }, "geometry": { "type": "Point", "coordinates": [ 152.694, -30.327 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625487, "decimalLat": -34.386055 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60397, "decimalLat": -34.427088 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624221, "decimalLat": -34.388915 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322187, "decimalLat": -28.886532 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.887 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630343, "decimalLat": -34.42094 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627438, "decimalLat": -34.420162 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636732, "decimalLat": -34.487994 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.408399, "decimalLat": -28.866843 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.537335, "decimalLat": -34.380735 }, "geometry": { "type": "Point", "coordinates": [ 150.537, -34.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894609, "decimalLat": -31.446164 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.735887, "decimalLat": -32.515004 }, "geometry": { "type": "Point", "coordinates": [ 151.736, -32.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793992, "decimalLat": -31.64233 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5271, "decimalLat": -34.469281 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909504, "decimalLat": -31.439905 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10813, "decimalLat": -29.490306 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.989443, "decimalLat": -36.496862 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.985131, "decimalLat": -32.391899 }, "geometry": { "type": "Point", "coordinates": [ 151.985, -32.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627941, "decimalLat": -34.420452 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315723, "decimalLat": -28.824561 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523218, "decimalLat": -28.21894 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.219 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395088, "decimalLat": -28.96002 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913372, "decimalLat": -31.485897 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659147, "decimalLat": -34.455024 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277604, "decimalLat": -28.873812 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990757, "decimalLat": -34.029434 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.029 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301928, "decimalLat": -28.818314 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521618, "decimalLat": -34.466952 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270841, "decimalLat": -29.010748 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -29.011 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641887, "decimalLat": -34.396857 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791517, "decimalLat": -34.203451 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.203 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.995484, "decimalLat": -30.409118 }, "geometry": { "type": "Point", "coordinates": [ 152.995, -30.409 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400942, "decimalLat": -28.257815 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63083, "decimalLat": -34.420625 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293096, "decimalLat": -28.864686 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634365, "decimalLat": -34.485469 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.793243, "decimalLat": -34.144616 }, "geometry": { "type": "Point", "coordinates": [ 150.793, -34.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607652, "decimalLat": -34.429973 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89266, "decimalLat": -33.991958 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.992 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919209, "decimalLat": -31.474481 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.618565, "decimalLat": -30.338947 }, "geometry": { "type": "Point", "coordinates": [ 152.619, -30.339 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.771379, "decimalLat": -31.631608 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835102, "decimalLat": -34.069648 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617064, "decimalLat": -34.433781 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518771, "decimalLat": -34.447313 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785077, "decimalLat": -33.714063 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563517, "decimalLat": -28.38096 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068748, "decimalLat": -32.754666 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.755 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.794214, "decimalLat": -32.589817 }, "geometry": { "type": "Point", "coordinates": [ 151.794, -32.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109396, "decimalLat": -29.490511 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555155, "decimalLat": -28.389895 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889483, "decimalLat": -30.238007 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -30.238 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.432716, "decimalLat": -33.423971 }, "geometry": { "type": "Point", "coordinates": [ 149.433, -33.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323644, "decimalLat": -28.830821 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063717, "decimalLat": -32.706585 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607267, "decimalLat": -28.677151 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.677 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626384, "decimalLat": -34.421269 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637356, "decimalLat": -34.423789 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.484642 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071949, "decimalLat": -30.888135 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.888 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520421, "decimalLat": -34.454072 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62714, "decimalLat": -34.396437 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063459, "decimalLat": -32.705915 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103522, "decimalLat": -29.485543 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334102, "decimalLat": -28.85774 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604169, "decimalLat": -34.438028 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898943, "decimalLat": -31.442636 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784718, "decimalLat": -34.198212 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -34.198 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104181, "decimalLat": -29.48198 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639118, "decimalLat": -34.492972 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811019, "decimalLat": -31.653907 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -31.654 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616437, "decimalLat": -34.434418 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89337, "decimalLat": -33.971509 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.972 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615067, "decimalLat": -34.440873 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.260919, "decimalLat": -36.890859 }, "geometry": { "type": "Point", "coordinates": [ 149.261, -36.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.497445, "decimalLat": -28.636812 }, "geometry": { "type": "Point", "coordinates": [ 153.497, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.749135, "decimalLat": -31.634804 }, "geometry": { "type": "Point", "coordinates": [ 152.749, -31.635 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.118039, "decimalLat": -32.965917 }, "geometry": { "type": "Point", "coordinates": [ 151.118, -32.966 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.403864, "decimalLat": -31.928253 }, "geometry": { "type": "Point", "coordinates": [ 152.404, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.023516, "decimalLat": -30.902802 }, "geometry": { "type": "Point", "coordinates": [ 153.024, -30.903 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.506293, "decimalLat": -28.238698 }, "geometry": { "type": "Point", "coordinates": [ 153.506, -28.239 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520677, "decimalLat": -34.436552 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787035, "decimalLat": -31.629488 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92208, "decimalLat": -31.4738 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300206, "decimalLat": -28.886464 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914879, "decimalLat": -31.444905 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520633, "decimalLat": -34.44764 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637295, "decimalLat": -34.423608 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.605373, "decimalLat": -31.662153 }, "geometry": { "type": "Point", "coordinates": [ 152.605, -31.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617217, "decimalLat": -34.433775 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.46202, "decimalLat": -28.650301 }, "geometry": { "type": "Point", "coordinates": [ 153.462, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631292, "decimalLat": -34.420075 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513857, "decimalLat": -34.446402 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1094, "decimalLat": -30.29861 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603913, "decimalLat": -34.426808 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523238, "decimalLat": -34.464443 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605228, "decimalLat": -34.437904 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794735, "decimalLat": -34.142422 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604243, "decimalLat": -34.42438 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596135, "decimalLat": -34.411572 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615392, "decimalLat": -34.430981 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784451, "decimalLat": -33.71731 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31231, "decimalLat": -28.815314 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103822, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.370439, "decimalLat": -31.922726 }, "geometry": { "type": "Point", "coordinates": [ 152.37, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643892, "decimalLat": -34.393245 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627333, "decimalLat": -34.421188 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924861, "decimalLat": -31.216171 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.216 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522415, "decimalLat": -34.465778 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784877, "decimalLat": -33.717429 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798993, "decimalLat": -31.649815 }, "geometry": { "type": "Point", "coordinates": [ 152.799, -31.65 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.458938, "decimalLat": -28.726034 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108199, "decimalLat": -29.490577 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.70394, "decimalLat": -31.713471 }, "geometry": { "type": "Point", "coordinates": [ 152.704, -31.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514973, "decimalLat": -34.446569 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607663, "decimalLat": -34.432642 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.24897, "decimalLat": -28.764765 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -28.765 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.009987, "decimalLat": -34.042369 }, "geometry": { "type": "Point", "coordinates": [ 151.01, -34.042 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520528, "decimalLat": -34.45411 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064594, "decimalLat": -32.701714 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.702 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.46988, "decimalLat": -31.986035 }, "geometry": { "type": "Point", "coordinates": [ 152.47, -31.986 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614304, "decimalLat": -34.429851 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784491, "decimalLat": -33.717236 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200434, "decimalLat": -29.353937 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640931, "decimalLat": -34.393341 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.161481, "decimalLat": -32.714874 }, "geometry": { "type": "Point", "coordinates": [ 152.161, -32.715 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301525, "decimalLat": -28.298507 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.299 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108022, "decimalLat": -29.490334 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.308195, "decimalLat": -28.849992 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627323, "decimalLat": -34.42117 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616838, "decimalLat": -34.429494 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.198472, "decimalLat": -32.23465 }, "geometry": { "type": "Point", "coordinates": [ 152.198, -32.235 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.76992, "decimalLat": -32.593843 }, "geometry": { "type": "Point", "coordinates": [ 151.77, -32.594 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.74321, "decimalLat": -31.25723 }, "geometry": { "type": "Point", "coordinates": [ 152.743, -31.257 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604398, "decimalLat": -34.438014 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.310688, "decimalLat": -28.826871 }, "geometry": { "type": "Point", "coordinates": [ 153.311, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597476, "decimalLat": -34.412987 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302241, "decimalLat": -28.819555 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.255785, "decimalLat": -28.436217 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -28.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888665, "decimalLat": -31.248575 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -31.249 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.400639, "decimalLat": -31.930495 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -31.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.481572, "decimalLat": -28.542002 }, "geometry": { "type": "Point", "coordinates": [ 153.482, -28.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.860256, "decimalLat": -29.627572 }, "geometry": { "type": "Point", "coordinates": [ 152.86, -29.628 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.554112, "decimalLat": -34.498 }, "geometry": { "type": "Point", "coordinates": [ 150.554, -34.498 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533009, "decimalLat": -34.475648 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984272, "decimalLat": -34.09283 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.093 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555071, "decimalLat": -28.674695 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.675 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78925, "decimalLat": -34.21475 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.215 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627675, "decimalLat": -34.38635 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614824, "decimalLat": -34.439093 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.958078, "decimalLat": -30.667929 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -30.668 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109771, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.834223, "decimalLat": -34.072827 }, "geometry": { "type": "Point", "coordinates": [ 150.834, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401753, "decimalLat": -28.257328 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.971157, "decimalLat": -32.180821 }, "geometry": { "type": "Point", "coordinates": [ 151.971, -32.181 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82796, "decimalLat": -31.26849 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -31.268 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62796, "decimalLat": -34.420939 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094155, "decimalLat": -29.488686 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637302, "decimalLat": -34.423752 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912551, "decimalLat": -31.445133 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631381, "decimalLat": -34.419995 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520452, "decimalLat": -34.466252 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064019, "decimalLat": -32.706714 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82369, "decimalLat": -34.141271 }, "geometry": { "type": "Point", "coordinates": [ 150.824, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641735, "decimalLat": -34.395691 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.334665, "decimalLat": -31.921232 }, "geometry": { "type": "Point", "coordinates": [ 152.335, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104213, "decimalLat": -29.489568 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842026, "decimalLat": -34.110287 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.11 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637456, "decimalLat": -34.42371 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104616, "decimalLat": -29.477207 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514541, "decimalLat": -34.443883 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632677, "decimalLat": -34.41801 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.92085, "decimalLat": -33.96665 }, "geometry": { "type": "Point", "coordinates": [ 150.921, -33.967 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530443, "decimalLat": -34.46924 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364986, "decimalLat": -28.810921 }, "geometry": { "type": "Point", "coordinates": [ 153.365, -28.811 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627046, "decimalLat": -34.421318 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603298, "decimalLat": -34.436911 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521621, "decimalLat": -34.465735 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314782, "decimalLat": -28.819965 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785413, "decimalLat": -33.716522 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618854, "decimalLat": -34.436286 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.521789, "decimalLat": -28.683592 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627559, "decimalLat": -34.421274 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637548, "decimalLat": -34.488804 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610346, "decimalLat": -34.419036 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602574, "decimalLat": -34.425312 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895895, "decimalLat": -31.442418 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299458, "decimalLat": -28.823816 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89847, "decimalLat": -31.443451 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.986797, "decimalLat": -29.044391 }, "geometry": { "type": "Point", "coordinates": [ 152.987, -29.044 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879434, "decimalLat": -31.448811 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.092193, "decimalLat": -32.738862 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.826145, "decimalLat": -31.250034 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -31.25 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103854, "decimalLat": -29.484992 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78603, "decimalLat": -33.712254 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293325, "decimalLat": -28.864636 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615819, "decimalLat": -34.439301 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639477, "decimalLat": -34.392817 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630793, "decimalLat": -34.386455 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513974, "decimalLat": -34.447216 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597718, "decimalLat": -34.426956 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870848, "decimalLat": -31.47441 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.308396, "decimalLat": -28.850597 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.851 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10379, "decimalLat": -32.759253 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.759 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.018574, "decimalLat": -28.432565 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -28.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103066, "decimalLat": -30.289977 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -30.29 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.96953, "decimalLat": -34.028303 }, "geometry": { "type": "Point", "coordinates": [ 150.97, -34.028 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.602132, "decimalLat": -30.492845 }, "geometry": { "type": "Point", "coordinates": [ 151.602, -30.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923391, "decimalLat": -31.460822 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915266, "decimalLat": -29.590842 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -29.591 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108049, "decimalLat": -29.490213 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103881, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609134, "decimalLat": -34.418841 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.1514, "decimalLat": -32.714675 }, "geometry": { "type": "Point", "coordinates": [ 152.151, -32.715 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.542586, "decimalLat": -29.041653 }, "geometry": { "type": "Point", "coordinates": [ 152.543, -29.042 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607686, "decimalLat": -34.422302 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925549, "decimalLat": -28.725578 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -28.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.888206, "decimalLat": -33.997473 }, "geometry": { "type": "Point", "coordinates": [ 150.888, -33.997 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.518472, "decimalLat": -32.960134 }, "geometry": { "type": "Point", "coordinates": [ 151.518, -32.96 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514574, "decimalLat": -34.443883 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109996, "decimalLat": -29.490259 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784958, "decimalLat": -33.716472 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65936, "decimalLat": -34.457119 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603609, "decimalLat": -34.419139 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53165, "decimalLat": -34.414835 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.415 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.284708, "decimalLat": -29.026186 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -29.026 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.071494, "decimalLat": -33.776777 }, "geometry": { "type": "Point", "coordinates": [ 150.071, -33.777 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.294555, "decimalLat": -28.865479 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.832363, "decimalLat": -31.558796 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -31.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.899368, "decimalLat": -34.014965 }, "geometry": { "type": "Point", "coordinates": [ 150.899, -34.015 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615726, "decimalLat": -34.439904 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628596, "decimalLat": -34.396113 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.645757, "decimalLat": -32.679556 }, "geometry": { "type": "Point", "coordinates": [ 151.646, -32.68 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78679, "decimalLat": -31.629741 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926912, "decimalLat": -31.454846 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.833588, "decimalLat": -30.434864 }, "geometry": { "type": "Point", "coordinates": [ 152.834, -30.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637346, "decimalLat": -34.423762 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306138, "decimalLat": -29.055285 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -29.055 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914761, "decimalLat": -31.479137 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640656, "decimalLat": -34.494417 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.713031, "decimalLat": -31.505069 }, "geometry": { "type": "Point", "coordinates": [ 152.713, -31.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790424, "decimalLat": -30.251439 }, "geometry": { "type": "Point", "coordinates": [ 152.79, -30.251 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519574, "decimalLat": -34.463187 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607389, "decimalLat": -28.687767 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395089, "decimalLat": -29.029064 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.029 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905868, "decimalLat": -31.436671 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103591, "decimalLat": -29.485487 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989933, "decimalLat": -34.03052 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.031 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.345799, "decimalLat": -28.748383 }, "geometry": { "type": "Point", "coordinates": [ 153.346, -28.748 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60919, "decimalLat": -34.420681 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630961, "decimalLat": -34.388226 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.775569, "decimalLat": -31.650778 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -31.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.679185, "decimalLat": -30.083862 }, "geometry": { "type": "Point", "coordinates": [ 152.679, -30.084 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104079, "decimalLat": -29.47746 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.54433, "decimalLat": -28.732361 }, "geometry": { "type": "Point", "coordinates": [ 153.544, -28.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635867, "decimalLat": -34.419487 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394085, "decimalLat": -29.020072 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -29.02 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784486, "decimalLat": -33.717237 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518862, "decimalLat": -34.451931 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.266927, "decimalLat": -28.92056 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -28.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513899, "decimalLat": -34.446457 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604337, "decimalLat": -34.43786 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.493241, "decimalLat": -33.011246 }, "geometry": { "type": "Point", "coordinates": [ 151.493, -33.011 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.089129, "decimalLat": -28.597294 }, "geometry": { "type": "Point", "coordinates": [ 153.089, -28.597 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604751, "decimalLat": -34.431359 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520503, "decimalLat": -34.465649 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516949, "decimalLat": -34.454056 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626772, "decimalLat": -34.421393 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.186675, "decimalLat": -31.615373 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -31.615 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.96222, "decimalLat": -34.099374 }, "geometry": { "type": "Point", "coordinates": [ 150.962, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.971709, "decimalLat": -34.121387 }, "geometry": { "type": "Point", "coordinates": [ 150.972, -34.121 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374055, "decimalLat": -31.915468 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.091092, "decimalLat": -33.145366 }, "geometry": { "type": "Point", "coordinates": [ 151.091, -33.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612062, "decimalLat": -34.432142 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.424423, "decimalLat": -32.999328 }, "geometry": { "type": "Point", "coordinates": [ 149.424, -32.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.99167, "decimalLat": -30.3972 }, "geometry": { "type": "Point", "coordinates": [ 152.992, -30.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631472, "decimalLat": -34.387821 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104906, "decimalLat": -29.489694 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.028282, "decimalLat": -28.532328 }, "geometry": { "type": "Point", "coordinates": [ 153.028, -28.532 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625166, "decimalLat": -34.386635 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109964, "decimalLat": -29.490189 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917727, "decimalLat": -31.45762 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821644, "decimalLat": -34.101844 }, "geometry": { "type": "Point", "coordinates": [ 150.822, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563734, "decimalLat": -28.381087 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.800457, "decimalLat": -31.134522 }, "geometry": { "type": "Point", "coordinates": [ 152.8, -31.135 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785303, "decimalLat": -33.717006 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791719, "decimalLat": -34.218769 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.219 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98868, "decimalLat": -34.025293 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.025 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104165, "decimalLat": -29.485169 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630022, "decimalLat": -34.388334 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109374, "decimalLat": -29.490577 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.983802, "decimalLat": -34.094779 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.352895, "decimalLat": -31.923722 }, "geometry": { "type": "Point", "coordinates": [ 152.353, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.621365, "decimalLat": -34.397983 }, "geometry": { "type": "Point", "coordinates": [ 150.621, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517323, "decimalLat": -34.452846 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28341, "decimalLat": -28.830718 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.983255, "decimalLat": -34.094439 }, "geometry": { "type": "Point", "coordinates": [ 150.983, -34.094 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521224, "decimalLat": -34.435355 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.407882, "decimalLat": -28.984155 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.984 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.116328, "decimalLat": -32.764528 }, "geometry": { "type": "Point", "coordinates": [ 152.116, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.847064, "decimalLat": -31.545763 }, "geometry": { "type": "Point", "coordinates": [ 152.847, -31.546 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.18648, "decimalLat": -31.66596 }, "geometry": { "type": "Point", "coordinates": [ 152.186, -31.666 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.009287, "decimalLat": -33.986634 }, "geometry": { "type": "Point", "coordinates": [ 151.009, -33.987 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065469, "decimalLat": -32.710929 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10409, "decimalLat": -29.484343 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.409719, "decimalLat": -28.913154 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630115, "decimalLat": -34.394322 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898805, "decimalLat": -31.465629 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.260014, "decimalLat": -28.857637 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -28.858 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.967252, "decimalLat": -29.232738 }, "geometry": { "type": "Point", "coordinates": [ 152.967, -29.233 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622895, "decimalLat": -34.397328 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516177, "decimalLat": -34.459188 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.774585, "decimalLat": -30.200925 }, "geometry": { "type": "Point", "coordinates": [ 152.775, -30.201 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925276, "decimalLat": -31.454171 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110527, "decimalLat": -29.490133 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.423741, "decimalLat": -28.727618 }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.158526, "decimalLat": -32.714317 }, "geometry": { "type": "Point", "coordinates": [ 152.159, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.765176, "decimalLat": -34.185203 }, "geometry": { "type": "Point", "coordinates": [ 150.765, -34.185 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915172, "decimalLat": -31.4464 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.204264, "decimalLat": -32.226111 }, "geometry": { "type": "Point", "coordinates": [ 152.204, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517425, "decimalLat": -34.44313 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62733, "decimalLat": -34.421278 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.975187, "decimalLat": -28.539857 }, "geometry": { "type": "Point", "coordinates": [ 152.975, -28.54 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335449, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615076, "decimalLat": -34.431371 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.949871, "decimalLat": -30.433824 }, "geometry": { "type": "Point", "coordinates": [ 152.95, -30.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283391, "decimalLat": -28.830774 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614409, "decimalLat": -34.429222 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518871, "decimalLat": -34.443195 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930363, "decimalLat": -29.726791 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928917, "decimalLat": -31.450071 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616075, "decimalLat": -34.435304 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616424, "decimalLat": -34.429126 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604234, "decimalLat": -34.438813 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656984, "decimalLat": -34.458029 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604267, "decimalLat": -34.438012 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092235, "decimalLat": -29.488279 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532762, "decimalLat": -34.482188 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.482 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10621, "decimalLat": -32.72869 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603118, "decimalLat": -34.417686 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637028, "decimalLat": -34.488316 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.52954, "decimalLat": -28.54593 }, "geometry": { "type": "Point", "coordinates": [ 153.53, -28.546 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10813, "decimalLat": -29.490222 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597524, "decimalLat": -34.416639 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604127, "decimalLat": -34.426929 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623045, "decimalLat": -34.399341 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528919, "decimalLat": -34.471463 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.36115, "decimalLat": -28.79653 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.797 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607059, "decimalLat": -34.454583 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633579, "decimalLat": -34.418442 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632969, "decimalLat": -34.392989 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298632, "decimalLat": -28.889791 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520401, "decimalLat": -34.465764 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520345, "decimalLat": -34.435662 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785863, "decimalLat": -33.707426 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.521789, "decimalLat": -28.683592 }, "geometry": { "type": "Point", "coordinates": [ 153.522, -28.684 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.58818, "decimalLat": -34.771778 }, "geometry": { "type": "Point", "coordinates": [ 146.588, -34.772 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.450445, "decimalLat": -31.954578 }, "geometry": { "type": "Point", "coordinates": [ 152.45, -31.955 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794343, "decimalLat": -31.643859 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.644 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437123, "decimalLat": -28.992695 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.993 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521444, "decimalLat": -34.460331 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.354955, "decimalLat": -28.669614 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.67 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601794, "decimalLat": -34.428623 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.120508, "decimalLat": -35.076865 }, "geometry": { "type": "Point", "coordinates": [ 150.121, -35.077 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630765, "decimalLat": -34.420614 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915937, "decimalLat": -31.485524 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292287, "decimalLat": -28.796818 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.797 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639024, "decimalLat": -34.49169 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.335305, "decimalLat": -36.100988 }, "geometry": { "type": "Point", "coordinates": [ 149.335, -36.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642506, "decimalLat": -34.394967 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78656, "decimalLat": -33.706849 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.531111, "decimalLat": -28.508293 }, "geometry": { "type": "Point", "coordinates": [ 153.531, -28.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615421, "decimalLat": -34.435714 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.942556, "decimalLat": -36.497108 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626149, "decimalLat": -34.397247 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.104075, "decimalLat": -33.775761 }, "geometry": { "type": "Point", "coordinates": [ 150.104, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643657, "decimalLat": -34.395791 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945227, "decimalLat": -36.57753 }, "geometry": { "type": "Point", "coordinates": [ 149.945, -36.578 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638919, "decimalLat": -34.399532 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784725, "decimalLat": -33.713341 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108215, "decimalLat": -29.490231 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636579, "decimalLat": -34.488018 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80839, "decimalLat": -34.098569 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.029118, "decimalLat": -32.192347 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615022, "decimalLat": -34.431379 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522289, "decimalLat": -34.464126 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296856, "decimalLat": -28.453356 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.776852, "decimalLat": -34.198742 }, "geometry": { "type": "Point", "coordinates": [ 150.777, -34.199 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895216, "decimalLat": -31.414401 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.414 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78487, "decimalLat": -33.709957 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103165, "decimalLat": -32.759425 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -32.759 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.958067, "decimalLat": -30.648789 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -30.649 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.812171, "decimalLat": -34.125489 }, "geometry": { "type": "Point", "coordinates": [ 150.812, -34.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51607, "decimalLat": -34.447385 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.965698, "decimalLat": -31.200948 }, "geometry": { "type": "Point", "coordinates": [ 152.966, -31.201 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610213, "decimalLat": -34.419151 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.061116, "decimalLat": -29.741249 }, "geometry": { "type": "Point", "coordinates": [ 151.061, -29.741 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79471, "decimalLat": -34.21642 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.216 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636505, "decimalLat": -33.753572 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -33.754 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636265, "decimalLat": -34.48758 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103473, "decimalLat": -29.485608 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517117, "decimalLat": -34.452076 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613714, "decimalLat": -34.431074 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899693, "decimalLat": -31.160035 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.16 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519474, "decimalLat": -34.451114 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608097, "decimalLat": -34.434616 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512877, "decimalLat": -34.446779 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640213, "decimalLat": -34.492768 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604266, "decimalLat": -34.438823 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905944, "decimalLat": -31.479611 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885839, "decimalLat": -30.517524 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -30.518 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521344, "decimalLat": -34.435727 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633733, "decimalLat": -34.418373 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.654056, "decimalLat": -32.686273 }, "geometry": { "type": "Point", "coordinates": [ 151.654, -32.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521122, "decimalLat": -34.466789 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.50645, "decimalLat": -34.47169 }, "geometry": { "type": "Point", "coordinates": [ 150.506, -34.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518114, "decimalLat": -34.451844 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109701, "decimalLat": -29.490175 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639178, "decimalLat": -34.493171 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110603, "decimalLat": -29.48976 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.176126, "decimalLat": -31.577756 }, "geometry": { "type": "Point", "coordinates": [ 152.176, -31.578 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104053, "decimalLat": -29.479314 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518087, "decimalLat": -34.453493 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322062, "decimalLat": -28.823804 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.848879, "decimalLat": -29.339319 }, "geometry": { "type": "Point", "coordinates": [ 152.849, -29.339 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609523, "decimalLat": -34.41893 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08322, "decimalLat": -32.728084 }, "geometry": { "type": "Point", "coordinates": [ 152.083, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615402, "decimalLat": -34.435218 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285323, "decimalLat": -29.040946 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -29.041 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03968, "decimalLat": -32.730551 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515168, "decimalLat": -34.449151 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60336, "decimalLat": -34.42713 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.400453, "decimalLat": -31.914779 }, "geometry": { "type": "Point", "coordinates": [ 152.4, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640089, "decimalLat": -34.397003 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615446, "decimalLat": -34.432929 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564642, "decimalLat": -28.327767 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.000849, "decimalLat": -29.185764 }, "geometry": { "type": "Point", "coordinates": [ 153.001, -29.186 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.7332, "decimalLat": -32.599663 }, "geometry": { "type": "Point", "coordinates": [ 151.733, -32.6 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925183, "decimalLat": -31.454102 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900344, "decimalLat": -31.474012 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.806605, "decimalLat": -34.152923 }, "geometry": { "type": "Point", "coordinates": [ 150.807, -34.153 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.05427, "decimalLat": -33.774428 }, "geometry": { "type": "Point", "coordinates": [ 150.054, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.066161, "decimalLat": -30.288526 }, "geometry": { "type": "Point", "coordinates": [ 153.066, -30.289 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103344, "decimalLat": -29.486374 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.468674, "decimalLat": -28.26145 }, "geometry": { "type": "Point", "coordinates": [ 153.469, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627201, "decimalLat": -34.3858 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602279, "decimalLat": -34.425739 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.478405, "decimalLat": -28.697302 }, "geometry": { "type": "Point", "coordinates": [ 153.478, -28.697 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.856734, "decimalLat": -30.313976 }, "geometry": { "type": "Point", "coordinates": [ 152.857, -30.314 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.806737, "decimalLat": -31.641577 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56441, "decimalLat": -28.380461 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.38 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.178816, "decimalLat": -32.569474 }, "geometry": { "type": "Point", "coordinates": [ 151.179, -32.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631014, "decimalLat": -34.388254 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790068, "decimalLat": -34.206047 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.206 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611404, "decimalLat": -34.419715 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630949, "decimalLat": -34.388252 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.115459, "decimalLat": -28.63227 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -28.632 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78769, "decimalLat": -31.636638 }, "geometry": { "type": "Point", "coordinates": [ 152.788, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.913134, "decimalLat": -36.588285 }, "geometry": { "type": "Point", "coordinates": [ 149.913, -36.588 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.291586, "decimalLat": -28.864043 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925231, "decimalLat": -31.454151 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911149, "decimalLat": -31.429792 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.791122, "decimalLat": -30.117962 }, "geometry": { "type": "Point", "coordinates": [ 152.791, -30.118 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.982103, "decimalLat": -32.640912 }, "geometry": { "type": "Point", "coordinates": [ 151.982, -32.641 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626006, "decimalLat": -34.388472 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602443, "decimalLat": -34.419981 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101231, "decimalLat": -29.48997 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.018876, "decimalLat": -30.367325 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -30.367 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.874984, "decimalLat": -31.46849 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.806799, "decimalLat": -32.465571 }, "geometry": { "type": "Point", "coordinates": [ 151.807, -32.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.395098, "decimalLat": -31.904573 }, "geometry": { "type": "Point", "coordinates": [ 152.395, -31.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615512, "decimalLat": -34.435581 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556968, "decimalLat": -28.397401 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633197, "decimalLat": -34.41848 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782613, "decimalLat": -34.200241 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -34.2 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062517, "decimalLat": -32.709353 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.947907, "decimalLat": -32.402038 }, "geometry": { "type": "Point", "coordinates": [ 151.948, -32.402 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633197, "decimalLat": -34.41848 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.724948, "decimalLat": -34.287934 }, "geometry": { "type": "Point", "coordinates": [ 150.725, -34.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89266, "decimalLat": -33.991958 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.992 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.020266, "decimalLat": -31.020669 }, "geometry": { "type": "Point", "coordinates": [ 153.02, -31.021 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910488, "decimalLat": -31.474331 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516491, "decimalLat": -34.450062 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534915, "decimalLat": -34.459324 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516265, "decimalLat": -34.469431 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.253264, "decimalLat": -36.196034 }, "geometry": { "type": "Point", "coordinates": [ 149.253, -36.196 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.777302, "decimalLat": -30.885013 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.428902, "decimalLat": -31.879092 }, "geometry": { "type": "Point", "coordinates": [ 152.429, -31.879 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90011, "decimalLat": -31.449139 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.078159, "decimalLat": -30.340486 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.34 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.17047, "decimalLat": -28.936208 }, "geometry": { "type": "Point", "coordinates": [ 153.17, -28.936 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519898, "decimalLat": -34.452619 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.971987, "decimalLat": -33.965656 }, "geometry": { "type": "Point", "coordinates": [ 150.972, -33.966 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637324, "decimalLat": -34.423753 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641492, "decimalLat": -34.395443 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641964, "decimalLat": -34.396832 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517544, "decimalLat": -34.453094 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790746, "decimalLat": -34.185745 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.186 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984303, "decimalLat": -36.560469 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607041, "decimalLat": -34.455222 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556714, "decimalLat": -28.400278 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556935, "decimalLat": -28.400944 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.401 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782826, "decimalLat": -33.719204 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.955006, "decimalLat": -33.503652 }, "geometry": { "type": "Point", "coordinates": [ 150.955, -33.504 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.567422, "decimalLat": -28.378508 }, "geometry": { "type": "Point", "coordinates": [ 153.567, -28.379 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.14142, "decimalLat": -28.639233 }, "geometry": { "type": "Point", "coordinates": [ 153.141, -28.639 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785598, "decimalLat": -33.713164 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785123, "decimalLat": -33.715803 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900289, "decimalLat": -31.473925 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607803, "decimalLat": -34.4304 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393631, "decimalLat": -28.95921 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.744263, "decimalLat": -28.949079 }, "geometry": { "type": "Point", "coordinates": [ 152.744, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611491, "decimalLat": -34.420474 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630752, "decimalLat": -34.389862 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104031, "decimalLat": -29.485342 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627048, "decimalLat": -34.389682 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.58548, "decimalLat": -34.766625 }, "geometry": { "type": "Point", "coordinates": [ 146.585, -34.767 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.915309, "decimalLat": -36.574566 }, "geometry": { "type": "Point", "coordinates": [ 149.915, -36.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002416, "decimalLat": -30.410201 }, "geometry": { "type": "Point", "coordinates": [ 153.002, -30.41 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927079, "decimalLat": -31.45501 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.33619, "decimalLat": -28.90155 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -28.902 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.181661, "decimalLat": -33.184202 }, "geometry": { "type": "Point", "coordinates": [ 149.182, -33.184 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.997221, "decimalLat": -30.384921 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -30.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923828, "decimalLat": -31.444287 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283326, "decimalLat": -28.830761 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61147, "decimalLat": -34.419689 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609166, "decimalLat": -34.418842 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616391, "decimalLat": -34.434489 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784147, "decimalLat": -33.716736 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600521, "decimalLat": -34.424812 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605684, "decimalLat": -34.423434 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107454, "decimalLat": -29.490119 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.765529, "decimalLat": -34.203045 }, "geometry": { "type": "Point", "coordinates": [ 150.766, -34.203 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798744, "decimalLat": -31.131496 }, "geometry": { "type": "Point", "coordinates": [ 152.799, -31.131 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628069, "decimalLat": -34.38972 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615956, "decimalLat": -34.436401 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.980225, "decimalLat": -32.270482 }, "geometry": { "type": "Point", "coordinates": [ 151.98, -32.27 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637019, "decimalLat": -34.488252 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073009, "decimalLat": -32.725859 }, "geometry": { "type": "Point", "coordinates": [ 152.073, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.845422, "decimalLat": -34.148999 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -34.149 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.414163, "decimalLat": -31.940544 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.941 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.11845, "decimalLat": -31.09328 }, "geometry": { "type": "Point", "coordinates": [ 150.118, -31.093 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785288, "decimalLat": -33.716256 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616411, "decimalLat": -34.436103 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516159, "decimalLat": -34.439579 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604802, "decimalLat": -34.431107 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615832, "decimalLat": -34.435028 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.739717, "decimalLat": -32.188789 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -32.189 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200465, "decimalLat": -29.353959 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522933, "decimalLat": -34.466276 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524965, "decimalLat": -34.453497 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077408, "decimalLat": -28.555969 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -28.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104455, "decimalLat": -29.482251 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.277709, "decimalLat": -33.851764 }, "geometry": { "type": "Point", "coordinates": [ 151.278, -33.852 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30216, "decimalLat": -28.819412 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515987, "decimalLat": -34.450178 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625369, "decimalLat": -34.385602 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624745, "decimalLat": -34.388069 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104096, "decimalLat": -29.479944 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.33619, "decimalLat": -28.90155 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -28.902 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.114674, "decimalLat": -29.490035 }, "geometry": { "type": "Point", "coordinates": [ 153.115, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.839666, "decimalLat": -31.593889 }, "geometry": { "type": "Point", "coordinates": [ 152.84, -31.594 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.743252, "decimalLat": -34.229781 }, "geometry": { "type": "Point", "coordinates": [ 150.743, -34.23 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644743, "decimalLat": -34.393153 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595747, "decimalLat": -34.413719 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.717271, "decimalLat": -30.144527 }, "geometry": { "type": "Point", "coordinates": [ 152.717, -30.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627304, "decimalLat": -34.420295 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922579, "decimalLat": -31.475525 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634458, "decimalLat": -34.420064 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.777302, "decimalLat": -30.885013 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823752, "decimalLat": -31.45116 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625476, "decimalLat": -34.389904 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517726, "decimalLat": -34.440305 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.086133, "decimalLat": -30.326065 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -30.326 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628025, "decimalLat": -34.389746 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520284, "decimalLat": -34.465672 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.592527, "decimalLat": -28.637352 }, "geometry": { "type": "Point", "coordinates": [ 153.593, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.196338, "decimalLat": -32.230264 }, "geometry": { "type": "Point", "coordinates": [ 152.196, -32.23 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.390551, "decimalLat": -33.42782 }, "geometry": { "type": "Point", "coordinates": [ 149.391, -33.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532644, "decimalLat": -34.461415 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.307001, "decimalLat": -31.934482 }, "geometry": { "type": "Point", "coordinates": [ 152.307, -31.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630377, "decimalLat": -34.420886 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108226, "decimalLat": -29.490339 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.319877, "decimalLat": -36.298719 }, "geometry": { "type": "Point", "coordinates": [ 149.32, -36.299 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108162, "decimalLat": -29.490698 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785439, "decimalLat": -33.705613 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615833, "decimalLat": -34.435001 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104074, "decimalLat": -29.479813 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521235, "decimalLat": -34.435364 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.846668, "decimalLat": -34.071206 }, "geometry": { "type": "Point", "coordinates": [ 150.847, -34.071 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914116, "decimalLat": -31.467966 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521558, "decimalLat": -34.465671 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616366, "decimalLat": -34.436139 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064607, "decimalLat": -32.70652 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277934, "decimalLat": -28.873716 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325226, "decimalLat": -28.824854 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522233, "decimalLat": -34.465297 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.069361, "decimalLat": -30.881095 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -30.881 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.859334, "decimalLat": -32.720824 }, "geometry": { "type": "Point", "coordinates": [ 151.859, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.574261, "decimalLat": -28.358917 }, "geometry": { "type": "Point", "coordinates": [ 153.574, -28.359 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811972, "decimalLat": -31.399769 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -31.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10642, "decimalLat": -32.72846 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5204, "decimalLat": -34.465791 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.994844, "decimalLat": -33.99893 }, "geometry": { "type": "Point", "coordinates": [ 150.995, -33.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616378, "decimalLat": -34.434201 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603164, "decimalLat": -34.417579 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104058, "decimalLat": -29.484063 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602036, "decimalLat": -34.435741 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.85068, "decimalLat": -31.554753 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -31.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639033, "decimalLat": -34.491726 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912645, "decimalLat": -31.446555 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.803223, "decimalLat": -34.110095 }, "geometry": { "type": "Point", "coordinates": [ 150.803, -34.11 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.834423, "decimalLat": -34.111288 }, "geometry": { "type": "Point", "coordinates": [ 150.834, -34.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.184845, "decimalLat": -28.889381 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.81506, "decimalLat": -34.11588 }, "geometry": { "type": "Point", "coordinates": [ 150.815, -34.116 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637361, "decimalLat": -34.420517 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076793, "decimalLat": -32.725873 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103908, "decimalLat": -29.485356 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092748, "decimalLat": -28.603208 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -28.603 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.114043, "decimalLat": -28.56045 }, "geometry": { "type": "Point", "coordinates": [ 153.114, -28.56 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.493177, "decimalLat": -28.680363 }, "geometry": { "type": "Point", "coordinates": [ 153.493, -28.68 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.592409, "decimalLat": -28.635669 }, "geometry": { "type": "Point", "coordinates": [ 153.592, -28.636 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.470759, "decimalLat": -28.583396 }, "geometry": { "type": "Point", "coordinates": [ 153.471, -28.583 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616378, "decimalLat": -34.434201 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518937, "decimalLat": -34.436544 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614596, "decimalLat": -34.435257 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092079, "decimalLat": -29.488142 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554518, "decimalLat": -28.583053 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.583 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520764, "decimalLat": -34.465294 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627347, "decimalLat": -34.420296 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.542723, "decimalLat": -34.510838 }, "geometry": { "type": "Point", "coordinates": [ 150.543, -34.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516531, "decimalLat": -34.44725 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640075, "decimalLat": -34.491873 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.0872, "decimalLat": -32.762229 }, "geometry": { "type": "Point", "coordinates": [ 152.087, -32.762 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915415, "decimalLat": -31.477453 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604937, "decimalLat": -34.427125 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.998977, "decimalLat": -36.551144 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.551 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.784617, "decimalLat": -31.632483 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.009572, "decimalLat": -32.727358 }, "geometry": { "type": "Point", "coordinates": [ 152.01, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519938, "decimalLat": -34.435798 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599353, "decimalLat": -34.450429 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.05728, "decimalLat": -30.35826 }, "geometry": { "type": "Point", "coordinates": [ 153.057, -30.358 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630936, "decimalLat": -34.388315 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640141, "decimalLat": -34.493001 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608997, "decimalLat": -34.434318 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.777302, "decimalLat": -30.885013 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92242, "decimalLat": -31.436019 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635509, "decimalLat": -34.393552 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523711, "decimalLat": -34.43847 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.02698, "decimalLat": -34.03451 }, "geometry": { "type": "Point", "coordinates": [ 151.027, -34.035 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517314, "decimalLat": -34.452765 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.985769, "decimalLat": -32.273526 }, "geometry": { "type": "Point", "coordinates": [ 151.986, -32.274 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640276, "decimalLat": -34.492823 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104192, "decimalLat": -29.479393 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.841313, "decimalLat": -34.06491 }, "geometry": { "type": "Point", "coordinates": [ 150.841, -34.065 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521578, "decimalLat": -34.46019 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60417, "decimalLat": -34.438767 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630954, "decimalLat": -34.386918 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.286418, "decimalLat": -29.025463 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -29.025 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415236, "decimalLat": -31.933206 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103894, "decimalLat": -29.485545 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524782, "decimalLat": -34.465222 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606159, "decimalLat": -33.449686 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -33.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639476, "decimalLat": -34.392862 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92927, "decimalLat": -31.460528 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605114, "decimalLat": -34.437695 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30668, "decimalLat": -28.816067 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625179, "decimalLat": -34.385787 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.834442, "decimalLat": -32.422781 }, "geometry": { "type": "Point", "coordinates": [ 149.834, -32.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523728, "decimalLat": -34.464056 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925003, "decimalLat": -31.459272 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.387724, "decimalLat": -31.900655 }, "geometry": { "type": "Point", "coordinates": [ 152.388, -31.901 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.897175, "decimalLat": -34.015787 }, "geometry": { "type": "Point", "coordinates": [ 150.897, -34.016 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.986384, "decimalLat": -36.655712 }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637737, "decimalLat": -34.486355 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.74449, "decimalLat": -30.87473 }, "geometry": { "type": "Point", "coordinates": [ 152.744, -30.875 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.407496, "decimalLat": -28.622151 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616777, "decimalLat": -34.399436 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.032147, "decimalLat": -30.428617 }, "geometry": { "type": "Point", "coordinates": [ 153.032, -30.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522137, "decimalLat": -34.465971 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784977, "decimalLat": -33.714285 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909369, "decimalLat": -31.471613 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605939, "decimalLat": -34.435854 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.003064, "decimalLat": -34.047964 }, "geometry": { "type": "Point", "coordinates": [ 151.003, -34.048 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109739, "decimalLat": -29.490203 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.250843, "decimalLat": -28.764372 }, "geometry": { "type": "Point", "coordinates": [ 153.251, -28.764 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.875183, "decimalLat": -34.022401 }, "geometry": { "type": "Point", "coordinates": [ 150.875, -34.022 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.848732, "decimalLat": -31.56023 }, "geometry": { "type": "Point", "coordinates": [ 152.849, -31.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628429, "decimalLat": -34.420515 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517239, "decimalLat": -34.451988 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.10055, "decimalLat": -33.780096 }, "geometry": { "type": "Point", "coordinates": [ 150.101, -33.78 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604107, "decimalLat": -34.433735 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519683, "decimalLat": -34.455085 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.04565, "decimalLat": -33.765793 }, "geometry": { "type": "Point", "coordinates": [ 150.046, -33.766 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.863276, "decimalLat": -34.004553 }, "geometry": { "type": "Point", "coordinates": [ 150.863, -34.005 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.876391, "decimalLat": -29.661626 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -29.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631312, "decimalLat": -34.387718 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.641643, "decimalLat": -31.710553 }, "geometry": { "type": "Point", "coordinates": [ 152.642, -31.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.70976, "decimalLat": -32.692155 }, "geometry": { "type": "Point", "coordinates": [ 151.71, -32.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888201, "decimalLat": -31.443198 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.541045, "decimalLat": -34.440678 }, "geometry": { "type": "Point", "coordinates": [ 150.541, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103886, "decimalLat": -29.485336 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.961734, "decimalLat": -36.432507 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91931, "decimalLat": -31.474677 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601794, "decimalLat": -34.428605 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.087507, "decimalLat": -32.773077 }, "geometry": { "type": "Point", "coordinates": [ 152.088, -32.773 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.962989, "decimalLat": -30.653566 }, "geometry": { "type": "Point", "coordinates": [ 152.963, -30.654 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632718, "decimalLat": -34.418876 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03706, "decimalLat": -32.73271 }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622863, "decimalLat": -34.397309 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.718647, "decimalLat": -32.717235 }, "geometry": { "type": "Point", "coordinates": [ 151.719, -32.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.508848, "decimalLat": -28.809504 }, "geometry": { "type": "Point", "coordinates": [ 153.509, -28.81 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.976081, "decimalLat": -32.18986 }, "geometry": { "type": "Point", "coordinates": [ 151.976, -32.19 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530391, "decimalLat": -34.471394 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899486, "decimalLat": -29.63106 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.198472, "decimalLat": -32.23465 }, "geometry": { "type": "Point", "coordinates": [ 152.198, -32.235 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39522, "decimalLat": -28.959976 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928881, "decimalLat": -31.462547 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516165, "decimalLat": -34.459242 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.263215, "decimalLat": -28.881904 }, "geometry": { "type": "Point", "coordinates": [ 153.263, -28.882 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513836, "decimalLat": -34.446375 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62414, "decimalLat": -34.388679 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659275, "decimalLat": -33.52702 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10748, "decimalLat": -29.490119 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604344, "decimalLat": -34.426933 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.431324, "decimalLat": -29.016415 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51898, "decimalLat": -28.57492 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.575 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520401, "decimalLat": -34.465764 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655487, "decimalLat": -33.522609 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -33.523 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.966919, "decimalLat": -32.170783 }, "geometry": { "type": "Point", "coordinates": [ 151.967, -32.171 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.776629, "decimalLat": -31.488777 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -31.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616928, "decimalLat": -34.440874 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641972, "decimalLat": -34.399257 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614855, "decimalLat": -34.431124 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495269, "decimalLat": -28.693791 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.87916, "decimalLat": -34.037466 }, "geometry": { "type": "Point", "coordinates": [ 150.879, -34.037 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.39132, "decimalLat": -31.203574 }, "geometry": { "type": "Point", "coordinates": [ 152.391, -31.204 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10376, "decimalLat": -29.485597 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516224, "decimalLat": -34.449515 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.438729, "decimalLat": -28.861571 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926477, "decimalLat": -31.454567 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78431, "decimalLat": -31.63001 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521458, "decimalLat": -34.465732 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631115, "decimalLat": -34.387381 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655487, "decimalLat": -33.522609 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -33.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607667, "decimalLat": -34.422211 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299582, "decimalLat": -28.904951 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.091222, "decimalLat": -33.144625 }, "geometry": { "type": "Point", "coordinates": [ 151.091, -33.145 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636632, "decimalLat": -34.488083 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.774246, "decimalLat": -32.584927 }, "geometry": { "type": "Point", "coordinates": [ 151.774, -32.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627059, "decimalLat": -34.389682 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6589, "decimalLat": -34.457624 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905425, "decimalLat": -31.437646 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609235, "decimalLat": -34.420628 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.123824, "decimalLat": -30.29583 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65772, "decimalLat": -34.455826 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78318, "decimalLat": -33.718585 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615459, "decimalLat": -34.432848 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.240592, "decimalLat": -29.349618 }, "geometry": { "type": "Point", "coordinates": [ 153.241, -29.35 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921038, "decimalLat": -31.464724 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.392813, "decimalLat": -31.903003 }, "geometry": { "type": "Point", "coordinates": [ 152.393, -31.903 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104037, "decimalLat": -29.484324 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454401, "decimalLat": -28.615864 }, "geometry": { "type": "Point", "coordinates": [ 153.454, -28.616 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101703, "decimalLat": -29.489162 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643006, "decimalLat": -34.395355 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104337, "decimalLat": -29.489666 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.233739, "decimalLat": -28.888824 }, "geometry": { "type": "Point", "coordinates": [ 153.234, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.977379, "decimalLat": -34.105016 }, "geometry": { "type": "Point", "coordinates": [ 150.977, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517969, "decimalLat": -34.457097 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835307, "decimalLat": -34.068218 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637302, "decimalLat": -34.423752 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.799111, "decimalLat": -34.226306 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.226 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.993791, "decimalLat": -34.070793 }, "geometry": { "type": "Point", "coordinates": [ 150.994, -34.071 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335449, "decimalLat": -28.872021 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787013, "decimalLat": -33.705818 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7278, "decimalLat": -34.211747 }, "geometry": { "type": "Point", "coordinates": [ 150.728, -34.212 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063555, "decimalLat": -32.709447 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921031, "decimalLat": -31.448115 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.999917, "decimalLat": -30.408961 }, "geometry": { "type": "Point", "coordinates": [ 153.0, -30.409 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063722, "decimalLat": -32.707398 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532746, "decimalLat": -34.481232 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516863, "decimalLat": -34.446301 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785263, "decimalLat": -33.716972 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.545289, "decimalLat": -34.514293 }, "geometry": { "type": "Point", "coordinates": [ 150.545, -34.514 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521023, "decimalLat": -34.454319 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517155, "decimalLat": -34.453717 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.95404, "decimalLat": -33.958414 }, "geometry": { "type": "Point", "coordinates": [ 150.954, -33.958 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401196, "decimalLat": -28.260298 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919153, "decimalLat": -31.481022 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637774, "decimalLat": -34.488907 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30734, "decimalLat": -28.97709 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.977 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.291586, "decimalLat": -28.864043 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.410861, "decimalLat": -28.660666 }, "geometry": { "type": "Point", "coordinates": [ 153.411, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615994, "decimalLat": -34.434698 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516446, "decimalLat": -34.450106 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522978, "decimalLat": -34.46624 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920964, "decimalLat": -31.445923 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110554, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515272, "decimalLat": -34.451533 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516204, "decimalLat": -34.4491 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.232915, "decimalLat": -28.946419 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -28.946 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93253, "decimalLat": -29.706438 }, "geometry": { "type": "Point", "coordinates": [ 152.933, -29.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842911, "decimalLat": -34.139954 }, "geometry": { "type": "Point", "coordinates": [ 150.843, -34.14 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.452495, "decimalLat": -28.667369 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912768, "decimalLat": -31.476134 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607899, "decimalLat": -34.422089 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884408, "decimalLat": -31.444314 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630984, "decimalLat": -34.39011 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833896, "decimalLat": -34.084454 }, "geometry": { "type": "Point", "coordinates": [ 150.834, -34.084 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.938891, "decimalLat": -29.736253 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -29.736 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635802, "decimalLat": -34.41945 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.09174, "decimalLat": -28.784917 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -28.785 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.190359, "decimalLat": -31.594177 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -31.594 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787145, "decimalLat": -31.630182 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630906, "decimalLat": -34.394012 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655491, "decimalLat": -34.455738 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514987, "decimalLat": -34.444992 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.815095, "decimalLat": -34.085656 }, "geometry": { "type": "Point", "coordinates": [ 150.815, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.776469, "decimalLat": -31.632853 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627412, "decimalLat": -34.421451 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31357, "decimalLat": -28.98159 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.982 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.19874, "decimalLat": -32.187837 }, "geometry": { "type": "Point", "coordinates": [ 152.199, -32.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640792, "decimalLat": -34.494248 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522447, "decimalLat": -34.465797 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.282726, "decimalLat": -28.824357 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518036, "decimalLat": -34.457062 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.847475, "decimalLat": -34.072256 }, "geometry": { "type": "Point", "coordinates": [ 150.847, -34.072 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.092834, "decimalLat": -33.775551 }, "geometry": { "type": "Point", "coordinates": [ 150.093, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302778, "decimalLat": -29.051482 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -29.051 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517367, "decimalLat": -34.456859 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.913134, "decimalLat": -36.588285 }, "geometry": { "type": "Point", "coordinates": [ 149.913, -36.588 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.815095, "decimalLat": -34.085656 }, "geometry": { "type": "Point", "coordinates": [ 150.815, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.617496, "decimalLat": -31.53719 }, "geometry": { "type": "Point", "coordinates": [ 152.617, -31.537 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627446, "decimalLat": -34.386381 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604598, "decimalLat": -34.438622 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784554, "decimalLat": -33.717284 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632732, "decimalLat": -34.392894 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.902558, "decimalLat": -30.537219 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331243, "decimalLat": -28.821749 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782191, "decimalLat": -31.630722 }, "geometry": { "type": "Point", "coordinates": [ 152.782, -31.631 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109787, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070405, "decimalLat": -32.747786 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.748 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110479, "decimalLat": -29.489914 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624471, "decimalLat": -34.388127 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630666, "decimalLat": -34.420667 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.62673, "decimalLat": -30.631686 }, "geometry": { "type": "Point", "coordinates": [ 152.627, -30.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606936, "decimalLat": -34.439452 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960189, "decimalLat": -36.280531 }, "geometry": { "type": "Point", "coordinates": [ 149.96, -36.281 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437804, "decimalLat": -29.026272 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -29.026 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.309351, "decimalLat": -28.823238 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063773, "decimalLat": -32.706571 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.050291, "decimalLat": -28.467992 }, "geometry": { "type": "Point", "coordinates": [ 153.05, -28.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103924, "decimalLat": -29.485492 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603901, "decimalLat": -34.440186 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064957, "decimalLat": -32.709452 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614854, "decimalLat": -34.429618 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520295, "decimalLat": -34.46569 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812714, "decimalLat": -29.797015 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -29.797 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108135, "decimalLat": -29.490605 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530227, "decimalLat": -34.46993 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301997, "decimalLat": -28.847748 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62792, "decimalLat": -34.420821 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.133691, "decimalLat": -32.200255 }, "geometry": { "type": "Point", "coordinates": [ 152.134, -32.2 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.510331, "decimalLat": -34.470229 }, "geometry": { "type": "Point", "coordinates": [ 150.51, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792499, "decimalLat": -31.641276 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.641 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604127, "decimalLat": -34.438748 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.45645, "decimalLat": -34.44059 }, "geometry": { "type": "Point", "coordinates": [ 150.456, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606647, "decimalLat": -34.435074 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615599, "decimalLat": -34.435195 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51303, "decimalLat": -34.447125 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90778, "decimalLat": -31.48926 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879852, "decimalLat": -29.70686 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -29.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.362242, "decimalLat": -29.423647 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -29.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928994, "decimalLat": -31.459596 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785908, "decimalLat": -31.491433 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 146.558609, "decimalLat": -34.753899 }, "geometry": { "type": "Point", "coordinates": [ 146.559, -34.754 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59863, "decimalLat": -34.428543 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606826, "decimalLat": -34.438738 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61514, "decimalLat": -34.436421 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091248, "decimalLat": -29.487859 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921564, "decimalLat": -31.457986 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659535, "decimalLat": -34.458268 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64375, "decimalLat": -34.390943 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.817769, "decimalLat": -31.650394 }, "geometry": { "type": "Point", "coordinates": [ 152.818, -31.65 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.153868, "decimalLat": -28.856957 }, "geometry": { "type": "Point", "coordinates": [ 152.154, -28.857 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.711088, "decimalLat": -31.782598 }, "geometry": { "type": "Point", "coordinates": [ 152.711, -31.783 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626082, "decimalLat": -34.390403 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.273577, "decimalLat": -28.939638 }, "geometry": { "type": "Point", "coordinates": [ 153.274, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.123233, "decimalLat": -35.076012 }, "geometry": { "type": "Point", "coordinates": [ 150.123, -35.076 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.66009, "decimalLat": -32.6864 }, "geometry": { "type": "Point", "coordinates": [ 151.66, -32.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316454, "decimalLat": -28.823424 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597654, "decimalLat": -34.412846 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602677, "decimalLat": -34.436538 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632778, "decimalLat": -34.418661 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607914, "decimalLat": -34.422333 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618209, "decimalLat": -34.435246 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063657, "decimalLat": -32.705653 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28558, "decimalLat": -28.987266 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -28.987 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.012056, "decimalLat": -34.046795 }, "geometry": { "type": "Point", "coordinates": [ 151.012, -34.047 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.677718, "decimalLat": -33.561189 }, "geometry": { "type": "Point", "coordinates": [ 150.678, -33.561 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.068542, "decimalLat": -33.785162 }, "geometry": { "type": "Point", "coordinates": [ 150.069, -33.785 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624452, "decimalLat": -34.388036 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60152, "decimalLat": -34.426779 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103752, "decimalLat": -29.485594 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.116861, "decimalLat": -32.764989 }, "geometry": { "type": "Point", "coordinates": [ 152.117, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520428, "decimalLat": -34.467442 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516507, "decimalLat": -34.447682 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.995175, "decimalLat": -31.33606 }, "geometry": { "type": "Point", "coordinates": [ 148.995, -31.336 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103884, "decimalLat": -29.485426 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.245736, "decimalLat": -28.878085 }, "geometry": { "type": "Point", "coordinates": [ 153.246, -28.878 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51885, "decimalLat": -34.447216 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06372, "decimalLat": -32.706562 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514478, "decimalLat": -34.443818 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642858, "decimalLat": -34.394045 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108119, "decimalLat": -29.490236 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635358, "decimalLat": -34.488085 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.18377, "decimalLat": -29.44215 }, "geometry": { "type": "Point", "coordinates": [ 153.184, -29.442 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109401, "decimalLat": -29.490507 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068413, "decimalLat": -32.707662 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824738, "decimalLat": -29.507082 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.507 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324182, "decimalLat": -28.61064 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.611 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.352906, "decimalLat": -28.83385 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -28.834 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315869, "decimalLat": -28.845102 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785159, "decimalLat": -33.709552 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615237, "decimalLat": -34.432601 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513169, "decimalLat": -34.447227 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.097251, "decimalLat": -29.48685 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887759, "decimalLat": -30.461154 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -30.461 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103602, "decimalLat": -29.485758 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527663, "decimalLat": -34.469383 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104149, "decimalLat": -29.478828 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.600403, "decimalLat": -28.675077 }, "geometry": { "type": "Point", "coordinates": [ 153.6, -28.675 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607851, "decimalLat": -34.430626 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61028, "decimalLat": -34.41908 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.055536, "decimalLat": -33.779389 }, "geometry": { "type": "Point", "coordinates": [ 150.056, -33.779 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786279, "decimalLat": -33.70395 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525523, "decimalLat": -34.465553 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7917, "decimalLat": -34.21627 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.216 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784674, "decimalLat": -33.713293 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644212, "decimalLat": -34.399282 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521404, "decimalLat": -34.465722 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600773, "decimalLat": -34.420949 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.986678, "decimalLat": -30.41857 }, "geometry": { "type": "Point", "coordinates": [ 152.987, -30.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643072, "decimalLat": -34.395347 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306937, "decimalLat": -28.848828 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.849 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603131, "decimalLat": -34.417606 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640852, "decimalLat": -34.49443 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.921522, "decimalLat": -31.973444 }, "geometry": { "type": "Point", "coordinates": [ 151.922, -31.973 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535081, "decimalLat": -34.462924 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53014, "decimalLat": -34.471055 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608415, "decimalLat": -34.454357 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10181, "decimalLat": -32.734228 }, "geometry": { "type": "Point", "coordinates": [ 152.102, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061507, "decimalLat": -32.70951 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785617, "decimalLat": -31.632364 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.783415, "decimalLat": -32.587629 }, "geometry": { "type": "Point", "coordinates": [ 151.783, -32.588 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926058, "decimalLat": -31.454741 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92176, "decimalLat": -31.46353 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.980514, "decimalLat": -36.435679 }, "geometry": { "type": "Point", "coordinates": [ 149.981, -36.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.527242, "decimalLat": -28.233314 }, "geometry": { "type": "Point", "coordinates": [ 153.527, -28.233 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642656, "decimalLat": -34.404355 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.404 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91043, "decimalLat": -30.17363 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -30.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601719, "decimalLat": -34.451025 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913585, "decimalLat": -31.486201 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923989, "decimalLat": -31.470412 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520854, "decimalLat": -34.467009 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103291, "decimalLat": -29.486407 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631367, "decimalLat": -34.420094 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.990128, "decimalLat": -36.434481 }, "geometry": { "type": "Point", "coordinates": [ 149.99, -36.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520328, "decimalLat": -34.465673 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360617, "decimalLat": -28.840581 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602724, "decimalLat": -34.431103 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558143, "decimalLat": -28.393943 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.019272, "decimalLat": -32.194431 }, "geometry": { "type": "Point", "coordinates": [ 152.019, -32.194 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.067411, "decimalLat": -33.79772 }, "geometry": { "type": "Point", "coordinates": [ 150.067, -33.798 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517346, "decimalLat": -34.453144 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.149391, "decimalLat": -28.499969 }, "geometry": { "type": "Point", "coordinates": [ 153.149, -28.5 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78495, "decimalLat": -33.716124 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604354, "decimalLat": -34.440312 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.92265, "decimalLat": -36.572354 }, "geometry": { "type": "Point", "coordinates": [ 149.923, -36.572 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617141, "decimalLat": -33.51732 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -33.517 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.479024, "decimalLat": -28.746795 }, "geometry": { "type": "Point", "coordinates": [ 153.479, -28.747 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604138, "decimalLat": -34.440263 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51697, "decimalLat": -34.442706 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.452423, "decimalLat": -28.518972 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.519 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515717, "decimalLat": -34.44681 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517486, "decimalLat": -34.445854 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927637, "decimalLat": -31.454111 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91583, "decimalLat": -29.592678 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -29.593 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.266675, "decimalLat": -28.920605 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -28.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608281, "decimalLat": -34.450288 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605423, "decimalLat": -34.437953 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611851, "decimalLat": -34.433057 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279241, "decimalLat": -28.839565 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599156, "decimalLat": -34.413966 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293124, "decimalLat": -28.864604 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925077, "decimalLat": -31.461177 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.83952, "decimalLat": -34.07639 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.076 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093501, "decimalLat": -29.492595 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.555519, "decimalLat": -34.742669 }, "geometry": { "type": "Point", "coordinates": [ 146.556, -34.743 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633122, "decimalLat": -34.417676 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.270235, "decimalLat": -33.285633 }, "geometry": { "type": "Point", "coordinates": [ 150.27, -33.286 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630721, "decimalLat": -34.420623 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868748, "decimalLat": -29.667023 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522395, "decimalLat": -34.465706 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929122, "decimalLat": -31.454682 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790619, "decimalLat": -34.210895 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.211 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.116968, "decimalLat": -32.765142 }, "geometry": { "type": "Point", "coordinates": [ 152.117, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099713, "decimalLat": -29.491543 }, "geometry": { "type": "Point", "coordinates": [ 153.1, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103908, "decimalLat": -29.489577 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63275, "decimalLat": -34.418904 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785121, "decimalLat": -33.714082 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52389, "decimalLat": -34.464086 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107995, "decimalLat": -29.490432 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.71928, "decimalLat": -31.346857 }, "geometry": { "type": "Point", "coordinates": [ 152.719, -31.347 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077096, "decimalLat": -32.722402 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.21773, "decimalLat": -28.824419 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90872, "decimalLat": -31.468605 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516942, "decimalLat": -34.44623 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.064905, "decimalLat": -30.88906 }, "geometry": { "type": "Point", "coordinates": [ 153.065, -30.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629796, "decimalLat": -34.420641 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909406, "decimalLat": -31.48899 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189597, "decimalLat": -32.229205 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.815095, "decimalLat": -34.085656 }, "geometry": { "type": "Point", "coordinates": [ 150.815, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515597, "decimalLat": -34.454515 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808667, "decimalLat": -34.097321 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910016, "decimalLat": -31.457931 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925678, "decimalLat": -31.452896 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.204264, "decimalLat": -32.226111 }, "geometry": { "type": "Point", "coordinates": [ 152.204, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.043818, "decimalLat": -32.763831 }, "geometry": { "type": "Point", "coordinates": [ 152.044, -32.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104289, "decimalLat": -29.477777 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104155, "decimalLat": -29.478847 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795014, "decimalLat": -31.514706 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -31.515 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.54045, "decimalLat": -32.059637 }, "geometry": { "type": "Point", "coordinates": [ 152.54, -32.06 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.971082, "decimalLat": -32.178556 }, "geometry": { "type": "Point", "coordinates": [ 151.971, -32.179 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103822, "decimalLat": -29.485552 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597402, "decimalLat": -34.416691 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514469, "decimalLat": -34.443376 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40518, "decimalLat": -28.260772 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604159, "decimalLat": -34.43801 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293095, "decimalLat": -28.864561 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599181, "decimalLat": -34.413832 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.414 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517533, "decimalLat": -34.452003 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.481911, "decimalLat": -28.64025 }, "geometry": { "type": "Point", "coordinates": [ 153.482, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323947, "decimalLat": -28.826803 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.827 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604611, "decimalLat": -34.424441 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624254, "decimalLat": -34.386202 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641865, "decimalLat": -34.395694 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092259, "decimalLat": -29.488247 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092748, "decimalLat": -28.603208 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -28.603 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784752, "decimalLat": -33.714065 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526567, "decimalLat": -34.469288 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.532565, "decimalLat": -28.692958 }, "geometry": { "type": "Point", "coordinates": [ 153.533, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.48559 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.92949, "decimalLat": -33.11436 }, "geometry": { "type": "Point", "coordinates": [ 150.929, -33.114 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598849, "decimalLat": -34.423165 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5583, "decimalLat": -28.394235 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.29526, "decimalLat": -28.693539 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065216, "decimalLat": -32.713192 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.713 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606418, "decimalLat": -34.438144 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.410281, "decimalLat": -28.247811 }, "geometry": { "type": "Point", "coordinates": [ 153.41, -28.248 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.347323, "decimalLat": -28.255767 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.256 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924992, "decimalLat": -31.453285 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639883, "decimalLat": -34.400073 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639604, "decimalLat": -34.399139 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521851, "decimalLat": -34.464577 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104138, "decimalLat": -29.477805 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919406, "decimalLat": -31.442995 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600542, "decimalLat": -34.420665 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.994404, "decimalLat": -34.141154 }, "geometry": { "type": "Point", "coordinates": [ 150.994, -34.141 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892785, "decimalLat": -31.45681 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103245, "decimalLat": -32.759502 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -32.76 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.072733, "decimalLat": -28.585111 }, "geometry": { "type": "Point", "coordinates": [ 153.073, -28.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.654592, "decimalLat": -34.455594 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60049, "decimalLat": -28.71866 }, "geometry": { "type": "Point", "coordinates": [ 153.6, -28.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631443, "decimalLat": -34.386946 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.095618, "decimalLat": -29.756559 }, "geometry": { "type": "Point", "coordinates": [ 151.096, -29.757 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.116803, "decimalLat": -30.24956 }, "geometry": { "type": "Point", "coordinates": [ 153.117, -30.25 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.83687, "decimalLat": -34.055816 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.743474, "decimalLat": -32.722521 }, "geometry": { "type": "Point", "coordinates": [ 151.743, -32.723 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31674, "decimalLat": -28.844954 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51534, "decimalLat": -34.460244 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609147, "decimalLat": -34.420653 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904805, "decimalLat": -31.43932 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525494, "decimalLat": -34.459918 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.003336, "decimalLat": -34.072952 }, "geometry": { "type": "Point", "coordinates": [ 151.003, -34.073 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.082218, "decimalLat": -32.736244 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600148, "decimalLat": -34.428726 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610092, "decimalLat": -34.419951 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068578, "decimalLat": -32.708268 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.086104, "decimalLat": -32.727959 }, "geometry": { "type": "Point", "coordinates": [ 152.086, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520339, "decimalLat": -34.465655 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622101, "decimalLat": -34.3977 }, "geometry": { "type": "Point", "coordinates": [ 150.622, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.049386, "decimalLat": -28.558324 }, "geometry": { "type": "Point", "coordinates": [ 153.049, -28.558 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071682, "decimalLat": -28.585441 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -28.585 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642075, "decimalLat": -34.395968 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.42825, "decimalLat": -32.870404 }, "geometry": { "type": "Point", "coordinates": [ 151.428, -32.87 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785367, "decimalLat": -33.716969 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631121, "decimalLat": -34.387552 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521559, "decimalLat": -34.465626 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521621, "decimalLat": -34.465735 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091698, "decimalLat": -29.487901 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785349, "decimalLat": -33.70667 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640422, "decimalLat": -34.398289 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923288, "decimalLat": -31.477024 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.191717, "decimalLat": -29.358322 }, "geometry": { "type": "Point", "coordinates": [ 152.192, -29.358 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104026, "decimalLat": -29.485366 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627362, "decimalLat": -34.390121 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317172, "decimalLat": -28.817326 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.426, "decimalLat": -28.998 }, "geometry": { "type": "Point", "coordinates": [ 152.426, -28.998 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921263, "decimalLat": -31.480127 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066739, "decimalLat": -32.707593 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.83185, "decimalLat": -34.073964 }, "geometry": { "type": "Point", "coordinates": [ 150.832, -34.074 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812804, "decimalLat": -30.908854 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -30.909 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1038, "decimalLat": -29.485604 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519551, "decimalLat": -34.456606 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513109, "decimalLat": -34.447775 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.484154, "decimalLat": -33.046796 }, "geometry": { "type": "Point", "coordinates": [ 151.484, -33.047 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325257, "decimalLat": -28.597513 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.598 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.193401, "decimalLat": -28.876839 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -28.877 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108178, "decimalLat": -29.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525654, "decimalLat": -34.465537 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947048, "decimalLat": -36.640426 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.64 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277461, "decimalLat": -28.67595 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.764422, "decimalLat": -30.891124 }, "geometry": { "type": "Point", "coordinates": [ 152.764, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514862, "decimalLat": -34.441879 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627088, "decimalLat": -34.420985 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.540994, "decimalLat": -34.374065 }, "geometry": { "type": "Point", "coordinates": [ 150.541, -34.374 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065272, "decimalLat": -32.704382 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.704 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907152, "decimalLat": -31.444076 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616024, "decimalLat": -34.43478 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.044401, "decimalLat": -30.379245 }, "geometry": { "type": "Point", "coordinates": [ 153.044, -30.379 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.265486, "decimalLat": -28.870908 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -28.871 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927995, "decimalLat": -31.457568 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785964, "decimalLat": -33.704865 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.705 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913063, "decimalLat": -31.443309 }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525372, "decimalLat": -34.464044 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297705, "decimalLat": -28.823778 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.682517, "decimalLat": -32.51543 }, "geometry": { "type": "Point", "coordinates": [ 151.683, -32.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.362241, "decimalLat": -28.873593 }, "geometry": { "type": "Point", "coordinates": [ 153.362, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109251, "decimalLat": -29.490567 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03997, "decimalLat": -32.73044 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.144057, "decimalLat": -33.108131 }, "geometry": { "type": "Point", "coordinates": [ 151.144, -33.108 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628133, "decimalLat": -34.389793 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.472299, "decimalLat": -32.971677 }, "geometry": { "type": "Point", "coordinates": [ 151.472, -32.972 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.647854, "decimalLat": -30.538299 }, "geometry": { "type": "Point", "coordinates": [ 152.648, -30.538 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641949, "decimalLat": -34.396579 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189573, "decimalLat": -32.226267 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516173, "decimalLat": -34.445376 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595348, "decimalLat": -34.413224 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.158512, "decimalLat": -31.624332 }, "geometry": { "type": "Point", "coordinates": [ 152.159, -31.624 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909098, "decimalLat": -31.466639 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641071, "decimalLat": -34.494777 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.495 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639796, "decimalLat": -34.399269 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331243, "decimalLat": -28.821749 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.01527, "decimalLat": -33.838363 }, "geometry": { "type": "Point", "coordinates": [ 150.015, -33.838 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926157, "decimalLat": -31.450695 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517261, "decimalLat": -34.451628 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611785, "decimalLat": -34.430018 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.410574, "decimalLat": -31.667452 }, "geometry": { "type": "Point", "coordinates": [ 152.411, -31.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609853, "decimalLat": -34.455061 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095025, "decimalLat": -30.37234 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -30.372 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.018925, "decimalLat": -29.430725 }, "geometry": { "type": "Point", "coordinates": [ 153.019, -29.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520325, "decimalLat": -34.465763 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520432, "decimalLat": -34.454054 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063797, "decimalLat": -32.70646 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.364178, "decimalLat": -28.673126 }, "geometry": { "type": "Point", "coordinates": [ 153.364, -28.673 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556312, "decimalLat": -28.398603 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.942556, "decimalLat": -36.497108 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.309732, "decimalLat": -28.82109 }, "geometry": { "type": "Point", "coordinates": [ 153.31, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616071, "decimalLat": -34.436205 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523942, "decimalLat": -34.463456 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.753775, "decimalLat": -30.408702 }, "geometry": { "type": "Point", "coordinates": [ 152.754, -30.409 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64459, "decimalLat": -34.393556 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300206, "decimalLat": -28.886464 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628155, "decimalLat": -34.389758 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.234752, "decimalLat": -33.118401 }, "geometry": { "type": "Point", "coordinates": [ 151.235, -33.118 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523833, "decimalLat": -34.452401 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.953689, "decimalLat": -29.234079 }, "geometry": { "type": "Point", "coordinates": [ 152.954, -29.234 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895754, "decimalLat": -31.166194 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.166 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.553646, "decimalLat": -28.641838 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.642 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.47087, "decimalLat": -34.50172 }, "geometry": { "type": "Point", "coordinates": [ 150.471, -34.502 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.551019, "decimalLat": -33.563071 }, "geometry": { "type": "Point", "coordinates": [ 149.551, -33.563 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.459485, "decimalLat": -28.327038 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.327 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782438, "decimalLat": -33.719314 }, "geometry": { "type": "Point", "coordinates": [ 150.782, -33.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608341, "decimalLat": -34.432132 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627766, "decimalLat": -34.390066 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867804, "decimalLat": -29.667471 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.395118, "decimalLat": -31.944491 }, "geometry": { "type": "Point", "coordinates": [ 152.395, -31.944 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930667, "decimalLat": -29.733745 }, "geometry": { "type": "Point", "coordinates": [ 152.931, -29.734 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.418213, "decimalLat": -31.905008 }, "geometry": { "type": "Point", "coordinates": [ 152.418, -31.905 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.083542, "decimalLat": -28.596042 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -28.596 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630033, "decimalLat": -34.388334 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.322291, "decimalLat": -28.886922 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.887 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.1038, "decimalLat": -29.485585 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.519027, "decimalLat": -28.231036 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.231 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52139, "decimalLat": -34.452938 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.467866, "decimalLat": -33.676706 }, "geometry": { "type": "Point", "coordinates": [ 149.468, -33.677 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630857, "decimalLat": -34.388828 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604308, "decimalLat": -34.436218 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640545, "decimalLat": -34.494099 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628255, "decimalLat": -34.389291 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607389, "decimalLat": -28.687767 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.061116, "decimalLat": -29.741249 }, "geometry": { "type": "Point", "coordinates": [ 151.061, -29.741 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603956, "decimalLat": -34.43293 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.116863, "decimalLat": -29.370713 }, "geometry": { "type": "Point", "coordinates": [ 153.117, -29.371 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.915309, "decimalLat": -36.574566 }, "geometry": { "type": "Point", "coordinates": [ 149.915, -36.575 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279241, "decimalLat": -28.839565 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110297, "decimalLat": -29.490208 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627232, "decimalLat": -34.385872 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374485, "decimalLat": -31.915683 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513061, "decimalLat": -34.446079 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522476, "decimalLat": -34.465906 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627306, "decimalLat": -34.389804 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.533367, "decimalLat": -28.196788 }, "geometry": { "type": "Point", "coordinates": [ 153.533, -28.197 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783465, "decimalLat": -33.717843 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638957, "decimalLat": -34.491725 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.376957, "decimalLat": -31.925235 }, "geometry": { "type": "Point", "coordinates": [ 152.377, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.091682, "decimalLat": -32.762061 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -32.762 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394133, "decimalLat": -28.275644 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.276 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792285, "decimalLat": -31.525827 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.526 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638457, "decimalLat": -34.491327 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.941899, "decimalLat": -31.175289 }, "geometry": { "type": "Point", "coordinates": [ 152.942, -31.175 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317259, "decimalLat": -28.82624 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.565768, "decimalLat": -28.387078 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519214, "decimalLat": -34.459908 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630815, "decimalLat": -34.386465 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514797, "decimalLat": -34.445898 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563269, "decimalLat": -28.361556 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.362 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56601, "decimalLat": -28.38884 }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921731, "decimalLat": -31.438699 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896169, "decimalLat": -31.433627 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.328489, "decimalLat": -28.817088 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.56106, "decimalLat": -28.389187 }, "geometry": { "type": "Point", "coordinates": [ 153.561, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630796, "decimalLat": -34.420687 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631444, "decimalLat": -34.388073 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535509, "decimalLat": -34.462437 }, "geometry": { "type": "Point", "coordinates": [ 150.536, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278327, "decimalLat": -28.938825 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.939 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374605, "decimalLat": -31.915487 }, "geometry": { "type": "Point", "coordinates": [ 152.375, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630431, "decimalLat": -34.420887 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514332, "decimalLat": -34.446529 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304787, "decimalLat": -28.817358 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985236, "decimalLat": -34.090734 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636138, "decimalLat": -34.486279 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.511348, "decimalLat": -28.704764 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.705 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878742, "decimalLat": -29.707293 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.707 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372712, "decimalLat": -31.941776 }, "geometry": { "type": "Point", "coordinates": [ 152.373, -31.942 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.418213, "decimalLat": -31.905008 }, "geometry": { "type": "Point", "coordinates": [ 152.418, -31.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618163, "decimalLat": -34.429592 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629817, "decimalLat": -34.39446 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868469, "decimalLat": -29.689451 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.689 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.876061, "decimalLat": -31.522499 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.522 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.590193, "decimalLat": -31.558798 }, "geometry": { "type": "Point", "coordinates": [ 152.59, -31.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604909, "decimalLat": -34.437646 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923643, "decimalLat": -36.618562 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.619 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.815697, "decimalLat": -31.436396 }, "geometry": { "type": "Point", "coordinates": [ 152.816, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.078226, "decimalLat": -30.338429 }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.338 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925051, "decimalLat": -31.454206 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987906, "decimalLat": -34.021387 }, "geometry": { "type": "Point", "coordinates": [ 150.988, -34.021 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625384, "decimalLat": -34.386242 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.263732, "decimalLat": -28.880992 }, "geometry": { "type": "Point", "coordinates": [ 153.264, -28.881 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597382, "decimalLat": -34.415897 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.416 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.94415, "decimalLat": -30.38912 }, "geometry": { "type": "Point", "coordinates": [ 152.944, -30.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.000872, "decimalLat": -29.74789 }, "geometry": { "type": "Point", "coordinates": [ 151.001, -29.748 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628416, "decimalLat": -34.420605 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624739, "decimalLat": -34.383651 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613254, "decimalLat": -34.432724 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.836505, "decimalLat": -31.591819 }, "geometry": { "type": "Point", "coordinates": [ 152.837, -31.592 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640368, "decimalLat": -34.494601 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.495 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.116477, "decimalLat": -28.620707 }, "geometry": { "type": "Point", "coordinates": [ 153.116, -28.621 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.628329, "decimalLat": -32.643018 }, "geometry": { "type": "Point", "coordinates": [ 151.628, -32.643 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924926, "decimalLat": -31.453953 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.352303, "decimalLat": -28.28417 }, "geometry": { "type": "Point", "coordinates": [ 153.352, -28.284 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094748, "decimalLat": -29.49424 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.5539, "decimalLat": -28.7043 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640545, "decimalLat": -34.494099 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.901057, "decimalLat": -33.999426 }, "geometry": { "type": "Point", "coordinates": [ 150.901, -33.999 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.537072, "decimalLat": -28.222185 }, "geometry": { "type": "Point", "coordinates": [ 153.537, -28.222 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601423, "decimalLat": -34.426741 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.620599, "decimalLat": -30.332194 }, "geometry": { "type": "Point", "coordinates": [ 152.621, -30.332 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557587, "decimalLat": -28.396913 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55035, "decimalLat": -28.586214 }, "geometry": { "type": "Point", "coordinates": [ 153.55, -28.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607106, "decimalLat": -34.422426 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873469, "decimalLat": -31.403876 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.404 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835758, "decimalLat": -34.05684 }, "geometry": { "type": "Point", "coordinates": [ 150.836, -34.057 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.390022, "decimalLat": -28.68643 }, "geometry": { "type": "Point", "coordinates": [ 153.39, -28.686 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519874, "decimalLat": -34.461508 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.123949, "decimalLat": -30.295939 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885071, "decimalLat": -31.429989 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629168, "decimalLat": -34.39589 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797402, "decimalLat": -31.1259 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64131, "decimalLat": -33.446501 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -33.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.671834, "decimalLat": -33.564213 }, "geometry": { "type": "Point", "coordinates": [ 150.672, -33.564 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.626586, "decimalLat": -33.633171 }, "geometry": { "type": "Point", "coordinates": [ 149.627, -33.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522615, "decimalLat": -34.454585 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.840011, "decimalLat": -34.056032 }, "geometry": { "type": "Point", "coordinates": [ 150.84, -34.056 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.308256, "decimalLat": -28.82321 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91598, "decimalLat": -31.444957 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.084002, "decimalLat": -32.729581 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.73 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395538, "decimalLat": -28.27506 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.275 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618367, "decimalLat": -34.449989 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.989088, "decimalLat": -36.503585 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.504 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.09174, "decimalLat": -28.784917 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -28.785 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640872, "decimalLat": -34.394295 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434547, "decimalLat": -28.980401 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.98 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.727135, "decimalLat": -32.917517 }, "geometry": { "type": "Point", "coordinates": [ 150.727, -32.918 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605911, "decimalLat": -34.432653 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.723177, "decimalLat": -31.449552 }, "geometry": { "type": "Point", "coordinates": [ 152.723, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622651, "decimalLat": -34.384025 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.421871, "decimalLat": -28.660403 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615799, "decimalLat": -34.433143 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51801, "decimalLat": -34.453149 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.550207, "decimalLat": -32.929694 }, "geometry": { "type": "Point", "coordinates": [ 151.55, -32.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093522, "decimalLat": -29.488564 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.7311, "decimalLat": -30.895644 }, "geometry": { "type": "Point", "coordinates": [ 152.731, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104804, "decimalLat": -29.489666 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605879, "decimalLat": -34.423096 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108146, "decimalLat": -29.490255 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.860653, "decimalLat": -29.627656 }, "geometry": { "type": "Point", "coordinates": [ 152.861, -29.628 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.099058, "decimalLat": -29.490161 }, "geometry": { "type": "Point", "coordinates": [ 153.099, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.734899, "decimalLat": -30.443292 }, "geometry": { "type": "Point", "coordinates": [ 151.735, -30.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.651081, "decimalLat": -29.568082 }, "geometry": { "type": "Point", "coordinates": [ 152.651, -29.568 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60908, "decimalLat": -28.68957 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.084698, "decimalLat": -33.77608 }, "geometry": { "type": "Point", "coordinates": [ 150.085, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063696, "decimalLat": -32.706609 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520922, "decimalLat": -34.454055 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519531, "decimalLat": -34.456569 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.852262, "decimalLat": -31.554086 }, "geometry": { "type": "Point", "coordinates": [ 152.852, -31.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602754, "decimalLat": -34.434998 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555254, "decimalLat": -28.403401 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.403 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402284, "decimalLat": -28.961764 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.962 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603535, "decimalLat": -34.427476 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786275, "decimalLat": -33.709463 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.661845, "decimalLat": -34.458159 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517893, "decimalLat": -34.4479 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318393, "decimalLat": -28.818789 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633274, "decimalLat": -34.418076 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517238, "decimalLat": -34.452015 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629535, "decimalLat": -34.389433 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522466, "decimalLat": -34.465157 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607, "decimalLat": -34.454365 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633208, "decimalLat": -34.418471 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796806, "decimalLat": -34.118722 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.119 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.388415, "decimalLat": -28.676611 }, "geometry": { "type": "Point", "coordinates": [ 153.388, -28.677 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379527, "decimalLat": -31.92004 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.884876, "decimalLat": -34.003626 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.004 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.547784, "decimalLat": -33.623333 }, "geometry": { "type": "Point", "coordinates": [ 149.548, -33.623 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658357, "decimalLat": -34.458353 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92613, "decimalLat": -31.45931 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.938221, "decimalLat": -31.199869 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -31.2 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.986009, "decimalLat": -29.030742 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101504, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604457, "decimalLat": -34.42451 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.921153, "decimalLat": -33.967078 }, "geometry": { "type": "Point", "coordinates": [ 150.921, -33.967 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.357586, "decimalLat": -28.808956 }, "geometry": { "type": "Point", "coordinates": [ 153.358, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631089, "decimalLat": -34.3883 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514165, "decimalLat": -34.445931 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786167, "decimalLat": -33.706972 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783748, "decimalLat": -33.717624 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635201, "decimalLat": -33.53986 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -33.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.293351, "decimalLat": -33.275076 }, "geometry": { "type": "Point", "coordinates": [ 150.293, -33.275 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520733, "decimalLat": -34.460813 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604855, "decimalLat": -34.425041 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.924786, "decimalLat": -31.436629 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.08858, "decimalLat": -33.710805 }, "geometry": { "type": "Point", "coordinates": [ 150.089, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597005, "decimalLat": -34.412725 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616393, "decimalLat": -34.429062 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786821, "decimalLat": -33.709968 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.387898, "decimalLat": -31.946043 }, "geometry": { "type": "Point", "coordinates": [ 152.388, -31.946 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.43273, "decimalLat": -28.870543 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.871 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.934733, "decimalLat": -30.376233 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -30.376 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867, "decimalLat": -31.306301 }, "geometry": { "type": "Point", "coordinates": [ 152.867, -31.306 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626499, "decimalLat": -34.385633 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784148, "decimalLat": -33.716732 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63084, "decimalLat": -34.420661 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.310116, "decimalLat": -28.815309 }, "geometry": { "type": "Point", "coordinates": [ 153.31, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.271304, "decimalLat": -28.873585 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606953, "decimalLat": -34.429707 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615833, "decimalLat": -34.434992 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5183, "decimalLat": -34.451442 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609294, "decimalLat": -34.420097 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785424, "decimalLat": -33.705548 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784707, "decimalLat": -33.713332 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79607, "decimalLat": -34.1302 }, "geometry": { "type": "Point", "coordinates": [ 150.796, -34.13 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.977585, "decimalLat": -34.041189 }, "geometry": { "type": "Point", "coordinates": [ 150.978, -34.041 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629529, "decimalLat": -28.637563 }, "geometry": { "type": "Point", "coordinates": [ 153.63, -28.638 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093886, "decimalLat": -30.339641 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -30.34 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605473, "decimalLat": -34.437332 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.451646, "decimalLat": -31.270036 }, "geometry": { "type": "Point", "coordinates": [ 150.452, -31.27 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101381, "decimalLat": -29.489657 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605749, "decimalLat": -34.427664 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304964, "decimalLat": -28.82294 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605315, "decimalLat": -34.423815 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628955, "decimalLat": -34.420769 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519084, "decimalLat": -34.459878 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.734614, "decimalLat": -34.348582 }, "geometry": { "type": "Point", "coordinates": [ 150.735, -34.349 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307082, "decimalLat": -28.825034 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608958, "decimalLat": -34.434921 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659423, "decimalLat": -34.454858 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517269, "decimalLat": -34.452079 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838019, "decimalLat": -34.06966 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631183, "decimalLat": -34.393468 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522718, "decimalLat": -34.465829 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923702, "decimalLat": -31.44389 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.887913, "decimalLat": -32.459938 }, "geometry": { "type": "Point", "coordinates": [ 151.888, -32.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.32222, "decimalLat": -31.87965 }, "geometry": { "type": "Point", "coordinates": [ 152.322, -31.88 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104171, "decimalLat": -29.48516 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.05798, "decimalLat": -29.736999 }, "geometry": { "type": "Point", "coordinates": [ 151.058, -29.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519335, "decimalLat": -34.448109 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528997, "decimalLat": -34.471411 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.716768, "decimalLat": -32.667623 }, "geometry": { "type": "Point", "coordinates": [ 151.717, -32.668 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610291, "decimalLat": -34.41908 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518753, "decimalLat": -34.467029 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604234, "decimalLat": -34.438813 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9874, "decimalLat": -34.029523 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.03 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104165, "decimalLat": -29.480897 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189573, "decimalLat": -32.226267 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519545, "decimalLat": -34.46123 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.825751, "decimalLat": -34.091632 }, "geometry": { "type": "Point", "coordinates": [ 150.826, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.377925, "decimalLat": -31.918899 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.662334, "decimalLat": -34.458195 }, "geometry": { "type": "Point", "coordinates": [ 150.662, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.54434, "decimalLat": -34.746257 }, "geometry": { "type": "Point", "coordinates": [ 146.544, -34.746 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611461, "decimalLat": -34.419635 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634843, "decimalLat": -34.423777 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319686, "decimalLat": -28.843832 }, "geometry": { "type": "Point", "coordinates": [ 153.32, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867675, "decimalLat": -29.667098 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517332, "decimalLat": -34.446283 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279615, "decimalLat": -28.831045 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51639, "decimalLat": -34.459706 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315455, "decimalLat": -28.825094 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514419, "decimalLat": -34.446522 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403072, "decimalLat": -28.963946 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.964 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.968509, "decimalLat": -34.019382 }, "geometry": { "type": "Point", "coordinates": [ 150.969, -34.019 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785779, "decimalLat": -33.705927 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558112, "decimalLat": -28.354205 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.354 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065275, "decimalLat": -32.71098 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.02021, "decimalLat": -36.569074 }, "geometry": { "type": "Point", "coordinates": [ 150.02, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639103, "decimalLat": -34.491944 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06256, "decimalLat": -34.90732 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -34.907 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.537737, "decimalLat": -28.317513 }, "geometry": { "type": "Point", "coordinates": [ 153.538, -28.318 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608601, "decimalLat": -34.436014 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516232, "decimalLat": -34.449236 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655487, "decimalLat": -33.522609 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -33.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.41503, "decimalLat": -31.93333 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927123, "decimalLat": -31.465806 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897949, "decimalLat": -31.455951 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064607, "decimalLat": -32.70652 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109648, "decimalLat": -29.492767 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.004563, "decimalLat": -36.508695 }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.509 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109739, "decimalLat": -29.490189 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634429, "decimalLat": -34.488599 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.046985, "decimalLat": -34.0268 }, "geometry": { "type": "Point", "coordinates": [ 151.047, -34.027 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513836, "decimalLat": -34.446375 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.175455, "decimalLat": -31.271006 }, "geometry": { "type": "Point", "coordinates": [ 149.175, -31.271 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524082, "decimalLat": -34.462756 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795899, "decimalLat": -30.884771 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.700897, "decimalLat": -32.50267 }, "geometry": { "type": "Point", "coordinates": [ 151.701, -32.503 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610091, "decimalLat": -34.419978 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530198, "decimalLat": -34.470921 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.47704, "decimalLat": -31.43583 }, "geometry": { "type": "Point", "coordinates": [ 151.477, -31.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331678, "decimalLat": -28.818342 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.950898, "decimalLat": -29.261037 }, "geometry": { "type": "Point", "coordinates": [ 152.951, -29.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.934198, "decimalLat": -30.382089 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -30.382 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6887, "decimalLat": -32.06324 }, "geometry": { "type": "Point", "coordinates": [ 151.689, -32.063 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.653638, "decimalLat": -34.45545 }, "geometry": { "type": "Point", "coordinates": [ 150.654, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90984, "decimalLat": -31.438862 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622909, "decimalLat": -34.383778 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395284, "decimalLat": -28.959532 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092246, "decimalLat": -29.488125 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51962, "decimalLat": -34.447276 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302047, "decimalLat": -28.847893 }, "geometry": { "type": "Point", "coordinates": [ 153.302, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.388879, "decimalLat": -28.559864 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603176, "decimalLat": -34.436999 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519652, "decimalLat": -34.437398 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597567, "decimalLat": -34.41664 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.417 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.036423, "decimalLat": -30.8961 }, "geometry": { "type": "Point", "coordinates": [ 153.036, -30.896 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929202, "decimalLat": -31.459315 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515887, "decimalLat": -34.448778 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530196, "decimalLat": -34.470984 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517216, "decimalLat": -34.452033 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80606, "decimalLat": -34.17403 }, "geometry": { "type": "Point", "coordinates": [ 150.806, -34.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604281, "decimalLat": -34.437931 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30074, "decimalLat": -28.821725 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614941, "decimalLat": -34.433848 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372509, "decimalLat": -31.921242 }, "geometry": { "type": "Point", "coordinates": [ 152.373, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515271, "decimalLat": -34.451551 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.361315, "decimalLat": -33.671649 }, "geometry": { "type": "Point", "coordinates": [ 149.361, -33.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517534, "decimalLat": -34.447162 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794928, "decimalLat": -31.64291 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -31.643 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.405012, "decimalLat": -29.027211 }, "geometry": { "type": "Point", "coordinates": [ 153.405, -29.027 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609136, "decimalLat": -34.42068 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519898, "decimalLat": -34.452619 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63306, "decimalLat": -34.41754 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.104295, "decimalLat": -32.724039 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299386, "decimalLat": -28.811981 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.812 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558008, "decimalLat": -28.388596 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.376753, "decimalLat": -28.875831 }, "geometry": { "type": "Point", "coordinates": [ 153.377, -28.876 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101247, "decimalLat": -29.490096 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.134986, "decimalLat": -28.836547 }, "geometry": { "type": "Point", "coordinates": [ 153.135, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.432169, "decimalLat": -31.938608 }, "geometry": { "type": "Point", "coordinates": [ 152.432, -31.939 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64033, "decimalLat": -34.493996 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.50487, "decimalLat": -32.06978 }, "geometry": { "type": "Point", "coordinates": [ 152.505, -32.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626697, "decimalLat": -34.389396 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.333259, "decimalLat": -28.818643 }, "geometry": { "type": "Point", "coordinates": [ 153.333, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.566447, "decimalLat": -34.460307 }, "geometry": { "type": "Point", "coordinates": [ 150.566, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108156, "decimalLat": -29.49018 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529061, "decimalLat": -34.444076 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.805829, "decimalLat": -31.598137 }, "geometry": { "type": "Point", "coordinates": [ 152.806, -31.598 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521291, "decimalLat": -34.466585 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394814, "decimalLat": -29.020599 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.021 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912037, "decimalLat": -31.470515 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926849, "decimalLat": -30.50806 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -30.508 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65105, "decimalLat": -34.400946 }, "geometry": { "type": "Point", "coordinates": [ 150.651, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884303, "decimalLat": -31.453067 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636203, "decimalLat": -34.48592 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59668, "decimalLat": -34.413061 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.073561, "decimalLat": -32.74222 }, "geometry": { "type": "Point", "coordinates": [ 152.074, -32.742 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.5795, "decimalLat": -34.768497 }, "geometry": { "type": "Point", "coordinates": [ 146.58, -34.768 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.438545, "decimalLat": -28.61119 }, "geometry": { "type": "Point", "coordinates": [ 153.439, -28.611 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637354, "decimalLat": -34.423834 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919646, "decimalLat": -31.443444 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514552, "decimalLat": -34.444992 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91106, "decimalLat": -30.17518 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -30.175 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.261395, "decimalLat": -32.039046 }, "geometry": { "type": "Point", "coordinates": [ 152.261, -32.039 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916226, "decimalLat": -31.453288 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516998, "decimalLat": -34.449468 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.955259, "decimalLat": -33.95812 }, "geometry": { "type": "Point", "coordinates": [ 150.955, -33.958 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104208, "decimalLat": -29.483666 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64076, "decimalLat": -34.494221 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.607952, "decimalLat": -30.349753 }, "geometry": { "type": "Point", "coordinates": [ 152.608, -30.35 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.026369, "decimalLat": -33.666194 }, "geometry": { "type": "Point", "coordinates": [ 150.026, -33.666 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.047805, "decimalLat": -32.36741 }, "geometry": { "type": "Point", "coordinates": [ 152.048, -32.367 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624407, "decimalLat": -34.388089 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11679, "decimalLat": -28.547985 }, "geometry": { "type": "Point", "coordinates": [ 153.117, -28.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626049, "decimalLat": -34.38887 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617434, "decimalLat": -34.399683 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790329, "decimalLat": -34.190878 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.191 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.282988, "decimalLat": -28.87245 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093245, "decimalLat": -29.492707 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.540183, "decimalLat": -32.059803 }, "geometry": { "type": "Point", "coordinates": [ 152.54, -32.06 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604902, "decimalLat": -34.427602 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10416, "decimalLat": -29.483797 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632417, "decimalLat": -34.392879 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.22673, "decimalLat": -28.887362 }, "geometry": { "type": "Point", "coordinates": [ 153.227, -28.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925751, "decimalLat": -31.447669 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611689, "decimalLat": -34.41963 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.252709, "decimalLat": -28.84 }, "geometry": { "type": "Point", "coordinates": [ 153.253, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.975589, "decimalLat": -34.103733 }, "geometry": { "type": "Point", "coordinates": [ 150.976, -34.104 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068849, "decimalLat": -32.74901 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.749 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950035, "decimalLat": -36.601015 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.601 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355001, "decimalLat": -31.913331 }, "geometry": { "type": "Point", "coordinates": [ 152.355, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518064, "decimalLat": -34.447642 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.780333, "decimalLat": -32.714185 }, "geometry": { "type": "Point", "coordinates": [ 151.78, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637354, "decimalLat": -34.423834 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.216591, "decimalLat": -32.408741 }, "geometry": { "type": "Point", "coordinates": [ 152.217, -32.409 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31216, "decimalLat": -28.815442 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.880491, "decimalLat": -31.44818 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610279, "decimalLat": -34.419098 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607788, "decimalLat": -34.430165 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104015, "decimalLat": -29.48523 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.487886, "decimalLat": -28.682671 }, "geometry": { "type": "Point", "coordinates": [ 153.488, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.101709, "decimalLat": -34.83565 }, "geometry": { "type": "Point", "coordinates": [ 150.102, -34.836 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.986053, "decimalLat": -34.090639 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.091 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093109, "decimalLat": -30.334954 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -30.335 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.666458, "decimalLat": -31.863221 }, "geometry": { "type": "Point", "coordinates": [ 152.666, -31.863 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786051, "decimalLat": -33.711434 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884086, "decimalLat": -31.44008 }, "geometry": { "type": "Point", "coordinates": [ 152.884, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823916, "decimalLat": -29.810956 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.131198, "decimalLat": -28.553368 }, "geometry": { "type": "Point", "coordinates": [ 153.131, -28.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640975, "decimalLat": -34.394081 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609969, "decimalLat": -34.429631 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63796, "decimalLat": -34.488866 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.485796, "decimalLat": -28.580514 }, "geometry": { "type": "Point", "coordinates": [ 153.486, -28.581 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.866, "decimalLat": -29.631 }, "geometry": { "type": "Point", "coordinates": [ 152.866, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094616, "decimalLat": -30.299634 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -30.3 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812797, "decimalLat": -29.796735 }, "geometry": { "type": "Point", "coordinates": [ 152.813, -29.797 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632509, "decimalLat": -34.418205 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.108376, "decimalLat": -32.738114 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797479, "decimalLat": -31.124537 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.064656, "decimalLat": -30.890844 }, "geometry": { "type": "Point", "coordinates": [ 153.065, -30.891 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.254042, "decimalLat": -36.156686 }, "geometry": { "type": "Point", "coordinates": [ 149.254, -36.157 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.563882, "decimalLat": -28.380941 }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.381 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077187, "decimalLat": -32.722485 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065686, "decimalLat": -32.710337 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103779, "decimalLat": -29.485594 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.033156, "decimalLat": -30.386055 }, "geometry": { "type": "Point", "coordinates": [ 153.033, -30.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905842, "decimalLat": -31.43736 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063315, "decimalLat": -32.706203 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383572, "decimalLat": -31.924484 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.468964, "decimalLat": -32.40033 }, "geometry": { "type": "Point", "coordinates": [ 152.469, -32.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616363, "decimalLat": -34.434354 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.724963, "decimalLat": -30.86688 }, "geometry": { "type": "Point", "coordinates": [ 152.725, -30.867 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109379, "decimalLat": -29.490488 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556044, "decimalLat": -28.399308 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.93461, "decimalLat": -32.240807 }, "geometry": { "type": "Point", "coordinates": [ 151.935, -32.241 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415169, "decimalLat": -31.933272 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907767, "decimalLat": -31.428247 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791979, "decimalLat": -34.195962 }, "geometry": { "type": "Point", "coordinates": [ 150.792, -34.196 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634475, "decimalLat": -34.420227 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.782295, "decimalLat": -34.200209 }, "geometry": { "type": "Point", "coordinates": [ 150.782, -34.2 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525482, "decimalLat": -34.459935 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094955, "decimalLat": -29.48353 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189573, "decimalLat": -32.226267 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063347, "decimalLat": -32.70617 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.876305, "decimalLat": -31.460008 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604275, "decimalLat": -34.43812 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104053, "decimalLat": -29.483969 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.853559, "decimalLat": -31.553705 }, "geometry": { "type": "Point", "coordinates": [ 152.854, -31.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631498, "decimalLat": -34.388461 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103956, "decimalLat": -29.485183 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597952, "decimalLat": -34.426014 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.745333, "decimalLat": -28.967792 }, "geometry": { "type": "Point", "coordinates": [ 152.745, -28.968 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894775, "decimalLat": -31.448258 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.367836, "decimalLat": -34.370469 }, "geometry": { "type": "Point", "coordinates": [ 150.368, -34.37 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605058, "decimalLat": -34.426343 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527068, "decimalLat": -34.469632 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531125, "decimalLat": -34.457931 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925137, "decimalLat": -31.45415 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642549, "decimalLat": -34.394977 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927106, "decimalLat": -31.458022 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.799356, "decimalLat": -31.13969 }, "geometry": { "type": "Point", "coordinates": [ 152.799, -31.14 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905125, "decimalLat": -31.437548 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597385, "decimalLat": -34.415032 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.415 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640074, "decimalLat": -34.397129 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626469, "decimalLat": -34.390555 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.329261, "decimalLat": -28.902871 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -28.903 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879411, "decimalLat": -31.453379 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785253, "decimalLat": -33.71698 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.36734, "decimalLat": -28.811145 }, "geometry": { "type": "Point", "coordinates": [ 153.367, -28.811 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644482, "decimalLat": -34.393905 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889825, "decimalLat": -31.444037 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613439, "decimalLat": -34.431952 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.899879, "decimalLat": -34.001835 }, "geometry": { "type": "Point", "coordinates": [ 150.9, -34.002 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639248, "decimalLat": -34.397104 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.06654, "decimalLat": -30.327333 }, "geometry": { "type": "Point", "coordinates": [ 153.067, -30.327 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608884, "decimalLat": -34.436398 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516285, "decimalLat": -34.447461 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.938758, "decimalLat": -30.230178 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -30.23 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.188677, "decimalLat": -31.596406 }, "geometry": { "type": "Point", "coordinates": [ 152.189, -31.596 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.07405, "decimalLat": -30.34293 }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.343 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 6, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 153.428062, "decimalLat": -28.626972 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615313, "decimalLat": -34.436443 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.427304, "decimalLat": -28.628296 }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.628 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293257, "decimalLat": -28.86462 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790116, "decimalLat": -34.207222 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.207 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.515921, "decimalLat": -28.686437 }, "geometry": { "type": "Point", "coordinates": [ 153.516, -28.686 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110501, "decimalLat": -29.490175 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.759299, "decimalLat": -30.84178 }, "geometry": { "type": "Point", "coordinates": [ 152.759, -30.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928516, "decimalLat": -31.464277 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.269778, "decimalLat": -28.827734 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530302, "decimalLat": -34.471437 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561749, "decimalLat": -28.388894 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907064, "decimalLat": -31.454546 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63767, "decimalLat": -34.488328 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110259, "decimalLat": -29.490227 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622631, "decimalLat": -34.383989 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103854, "decimalLat": -29.489517 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.797475, "decimalLat": -31.126098 }, "geometry": { "type": "Point", "coordinates": [ 152.797, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270841, "decimalLat": -29.010748 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -29.011 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.429195, "decimalLat": -28.627478 }, "geometry": { "type": "Point", "coordinates": [ 153.429, -28.627 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927584, "decimalLat": -30.203921 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -30.204 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918307, "decimalLat": -31.469852 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103747, "decimalLat": -29.485664 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517136, "decimalLat": -34.435984 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104176, "decimalLat": -29.482157 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.537072, "decimalLat": -28.222185 }, "geometry": { "type": "Point", "coordinates": [ 153.537, -28.222 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627284, "decimalLat": -34.390561 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.805621, "decimalLat": -31.675845 }, "geometry": { "type": "Point", "coordinates": [ 152.806, -31.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630675, "decimalLat": -34.420712 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78413, "decimalLat": -33.717699 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.566447, "decimalLat": -34.460307 }, "geometry": { "type": "Point", "coordinates": [ 150.566, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624418, "decimalLat": -34.388099 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523845, "decimalLat": -34.46377 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495583, "decimalLat": -28.693297 }, "geometry": { "type": "Point", "coordinates": [ 153.496, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639084, "decimalLat": -34.491484 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641864, "decimalLat": -34.39692 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522249, "decimalLat": -34.465847 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.112878, "decimalLat": -32.718122 }, "geometry": { "type": "Point", "coordinates": [ 152.113, -32.718 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552114, "decimalLat": -33.491201 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.093798, "decimalLat": -31.403015 }, "geometry": { "type": "Point", "coordinates": [ 152.094, -31.403 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39279, "decimalLat": -28.958804 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405625, "decimalLat": -31.930397 }, "geometry": { "type": "Point", "coordinates": [ 152.406, -31.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.03041, "decimalLat": -30.39202 }, "geometry": { "type": "Point", "coordinates": [ 153.03, -30.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62444, "decimalLat": -34.385367 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.385 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516284, "decimalLat": -34.448967 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.742556, "decimalLat": -31.257297 }, "geometry": { "type": "Point", "coordinates": [ 152.743, -31.257 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.51539, "decimalLat": -30.531204 }, "geometry": { "type": "Point", "coordinates": [ 151.515, -30.531 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517303, "decimalLat": -34.451656 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.494089, "decimalLat": -28.328909 }, "geometry": { "type": "Point", "coordinates": [ 153.494, -28.329 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109422, "decimalLat": -29.490516 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.284674, "decimalLat": -28.312341 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.312 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.072088, "decimalLat": -30.887331 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516239, "decimalLat": -34.44902 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.020038, "decimalLat": -28.434186 }, "geometry": { "type": "Point", "coordinates": [ 153.02, -28.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.155062, "decimalLat": -29.109894 }, "geometry": { "type": "Point", "coordinates": [ 153.155, -29.11 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.332291, "decimalLat": -31.919639 }, "geometry": { "type": "Point", "coordinates": [ 152.332, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.351835, "decimalLat": -36.152417 }, "geometry": { "type": "Point", "coordinates": [ 149.352, -36.152 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786976, "decimalLat": -33.705763 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.694363, "decimalLat": -30.481336 }, "geometry": { "type": "Point", "coordinates": [ 151.694, -30.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.606178, "decimalLat": -28.692805 }, "geometry": { "type": "Point", "coordinates": [ 153.606, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784194, "decimalLat": -33.717428 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109551, "decimalLat": -29.490423 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967708, "decimalLat": -36.441911 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632795, "decimalLat": -34.418842 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52561, "decimalLat": -34.465573 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302682, "decimalLat": -28.847991 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.038819, "decimalLat": -30.887087 }, "geometry": { "type": "Point", "coordinates": [ 153.039, -30.887 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318703, "decimalLat": -28.819754 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520175, "decimalLat": -34.453535 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793571, "decimalLat": -31.127346 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.711613, "decimalLat": -32.631105 }, "geometry": { "type": "Point", "coordinates": [ 151.712, -32.631 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.86181, "decimalLat": -31.46378 }, "geometry": { "type": "Point", "coordinates": [ 152.862, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630248, "decimalLat": -34.420424 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355785, "decimalLat": -31.85809 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315879, "decimalLat": -28.849897 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.009547, "decimalLat": -34.038865 }, "geometry": { "type": "Point", "coordinates": [ 151.01, -34.039 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355785, "decimalLat": -31.85809 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603328, "decimalLat": -34.436605 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065607, "decimalLat": -32.713712 }, "geometry": { "type": "Point", "coordinates": [ 152.066, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.176932, "decimalLat": -28.919248 }, "geometry": { "type": "Point", "coordinates": [ 153.177, -28.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520796, "decimalLat": -34.43659 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614896, "decimalLat": -34.429294 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300584, "decimalLat": -29.051477 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -29.051 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.53207, "decimalLat": -28.72968 }, "geometry": { "type": "Point", "coordinates": [ 153.532, -28.73 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521426, "decimalLat": -34.465695 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.229218, "decimalLat": -31.441925 }, "geometry": { "type": "Point", "coordinates": [ 152.229, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909421, "decimalLat": -31.434794 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.53868, "decimalLat": -28.58252 }, "geometry": { "type": "Point", "coordinates": [ 153.539, -28.583 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.647613, "decimalLat": -34.400186 }, "geometry": { "type": "Point", "coordinates": [ 150.648, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103758, "decimalLat": -29.485669 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635312, "decimalLat": -34.420252 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.406757, "decimalLat": -28.629921 }, "geometry": { "type": "Point", "coordinates": [ 153.407, -28.63 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103489, "decimalLat": -29.485604 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609135, "decimalLat": -34.420716 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53, "decimalLat": -34.470998 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.366876, "decimalLat": -31.933059 }, "geometry": { "type": "Point", "coordinates": [ 152.367, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639089, "decimalLat": -34.491313 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.974108, "decimalLat": -32.186459 }, "geometry": { "type": "Point", "coordinates": [ 151.974, -32.186 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514278, "decimalLat": -34.446888 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917724, "decimalLat": -31.439042 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.491627, "decimalLat": -32.348816 }, "geometry": { "type": "Point", "coordinates": [ 152.492, -32.349 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.957721, "decimalLat": -30.648882 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -30.649 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528881, "decimalLat": -34.470173 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.550909, "decimalLat": -33.563141 }, "geometry": { "type": "Point", "coordinates": [ 149.551, -33.563 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809461, "decimalLat": -34.101023 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.179027, "decimalLat": -28.633952 }, "geometry": { "type": "Point", "coordinates": [ 152.179, -28.634 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61575, "decimalLat": -34.43408 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.590737, "decimalLat": -28.73488 }, "geometry": { "type": "Point", "coordinates": [ 153.591, -28.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.206273, "decimalLat": -28.839441 }, "geometry": { "type": "Point", "coordinates": [ 153.206, -28.839 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.372239, "decimalLat": -31.875459 }, "geometry": { "type": "Point", "coordinates": [ 152.372, -31.875 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617065, "decimalLat": -34.433754 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.193102, "decimalLat": -29.436865 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -29.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92795, "decimalLat": -31.463876 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641419, "decimalLat": -34.394558 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927806, "decimalLat": -31.464679 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.484849, "decimalLat": -32.352271 }, "geometry": { "type": "Point", "coordinates": [ 152.485, -32.352 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077686, "decimalLat": -32.721476 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787223, "decimalLat": -34.189948 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -34.19 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.834051, "decimalLat": -30.195951 }, "geometry": { "type": "Point", "coordinates": [ 152.834, -30.196 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90651, "decimalLat": -30.2403 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -30.24 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607954, "decimalLat": -34.430069 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.330332, "decimalLat": -28.816675 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517225, "decimalLat": -34.436244 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.861571, "decimalLat": -29.609219 }, "geometry": { "type": "Point", "coordinates": [ 150.862, -29.609 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637268, "decimalLat": -34.488302 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.664804, "decimalLat": -30.350067 }, "geometry": { "type": "Point", "coordinates": [ 151.665, -30.35 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786688, "decimalLat": -31.629177 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.329323, "decimalLat": -29.207445 }, "geometry": { "type": "Point", "coordinates": [ 153.329, -29.207 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52171, "decimalLat": -34.465692 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.294842, "decimalLat": -28.802962 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.803 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809079, "decimalLat": -34.098097 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.972176, "decimalLat": -32.173677 }, "geometry": { "type": "Point", "coordinates": [ 151.972, -32.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61041, "decimalLat": -28.66927 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.089896, "decimalLat": -32.728381 }, "geometry": { "type": "Point", "coordinates": [ 152.09, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513042, "decimalLat": -34.44598 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.091914, "decimalLat": -33.772112 }, "geometry": { "type": "Point", "coordinates": [ 150.092, -33.772 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.607591, "decimalLat": -29.787327 }, "geometry": { "type": "Point", "coordinates": [ 152.608, -29.787 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51765, "decimalLat": -34.446182 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.384261, "decimalLat": -29.089379 }, "geometry": { "type": "Point", "coordinates": [ 153.384, -29.089 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517583, "decimalLat": -34.453609 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.024645, "decimalLat": -30.997344 }, "geometry": { "type": "Point", "coordinates": [ 153.025, -30.997 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.913134, "decimalLat": -36.588285 }, "geometry": { "type": "Point", "coordinates": [ 149.913, -36.588 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.494341, "decimalLat": -31.554223 }, "geometry": { "type": "Point", "coordinates": [ 152.494, -31.554 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.52339, "decimalLat": -28.669583 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.67 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.016741, "decimalLat": -29.014104 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -29.014 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.774679, "decimalLat": -30.200744 }, "geometry": { "type": "Point", "coordinates": [ 152.775, -30.201 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641998, "decimalLat": -34.396796 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934793, "decimalLat": -36.648169 }, "geometry": { "type": "Point", "coordinates": [ 149.935, -36.648 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517213, "decimalLat": -34.452132 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.815095, "decimalLat": -34.085656 }, "geometry": { "type": "Point", "coordinates": [ 150.815, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521146, "decimalLat": -34.435407 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609212, "decimalLat": -34.420664 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104031, "decimalLat": -29.484362 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631303, "decimalLat": -34.420075 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515764, "decimalLat": -34.449632 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107448, "decimalLat": -29.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100775, "decimalLat": -29.490114 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.803863, "decimalLat": -31.501105 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -31.501 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09261, "decimalLat": -29.493252 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.135662, "decimalLat": -29.910913 }, "geometry": { "type": "Point", "coordinates": [ 152.136, -29.911 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53378, "decimalLat": -34.498995 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.499 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783354, "decimalLat": -33.713475 }, "geometry": { "type": "Point", "coordinates": [ 150.783, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.347093, "decimalLat": -28.907257 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.907 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270921, "decimalLat": -28.630745 }, "geometry": { "type": "Point", "coordinates": [ 153.271, -28.631 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.289282, "decimalLat": -29.042336 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -29.042 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809175, "decimalLat": -34.09468 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.248239, "decimalLat": -28.878411 }, "geometry": { "type": "Point", "coordinates": [ 153.248, -28.878 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.432717, "decimalLat": -28.661786 }, "geometry": { "type": "Point", "coordinates": [ 153.433, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.247001, "decimalLat": -28.69937 }, "geometry": { "type": "Point", "coordinates": [ 153.247, -28.699 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108178, "decimalLat": -29.490264 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.377904, "decimalLat": -31.920975 }, "geometry": { "type": "Point", "coordinates": [ 152.378, -31.921 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.873769, "decimalLat": -34.035121 }, "geometry": { "type": "Point", "coordinates": [ 150.874, -34.035 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.309383, "decimalLat": -28.823219 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.433935, "decimalLat": -29.028213 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -29.028 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947183, "decimalLat": -36.617465 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.617 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.379335, "decimalLat": -28.724041 }, "geometry": { "type": "Point", "coordinates": [ 153.379, -28.724 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60467, "decimalLat": -34.427336 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60758, "decimalLat": -34.43328 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639025, "decimalLat": -34.493187 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519286, "decimalLat": -34.466292 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525181, "decimalLat": -34.465708 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.760211, "decimalLat": -32.647301 }, "geometry": { "type": "Point", "coordinates": [ 151.76, -32.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630688, "decimalLat": -34.389798 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379698, "decimalLat": -31.928032 }, "geometry": { "type": "Point", "coordinates": [ 152.38, -31.928 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091934, "decimalLat": -29.487938 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610355, "decimalLat": -34.419117 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.097025, "decimalLat": -29.486454 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.94202, "decimalLat": -31.979847 }, "geometry": { "type": "Point", "coordinates": [ 151.942, -31.98 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627045, "decimalLat": -34.420966 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077365, "decimalLat": -32.725422 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.725 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298939, "decimalLat": -28.889728 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906604, "decimalLat": -31.46675 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.190269, "decimalLat": -32.218476 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.218 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.810365, "decimalLat": -31.988722 }, "geometry": { "type": "Point", "coordinates": [ 151.81, -31.989 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.284965, "decimalLat": -28.967906 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.968 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.054728, "decimalLat": -28.551841 }, "geometry": { "type": "Point", "coordinates": [ 153.055, -28.552 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.770676, "decimalLat": -30.853416 }, "geometry": { "type": "Point", "coordinates": [ 152.771, -30.853 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.54979, "decimalLat": -33.496074 }, "geometry": { "type": "Point", "coordinates": [ 149.55, -33.496 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642914, "decimalLat": -34.394767 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523891, "decimalLat": -34.464077 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.801531, "decimalLat": -34.185899 }, "geometry": { "type": "Point", "coordinates": [ 150.802, -34.186 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562606, "decimalLat": -28.384396 }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562317, "decimalLat": -28.383844 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519102, "decimalLat": -34.460004 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.078532, "decimalLat": -30.338589 }, "geometry": { "type": "Point", "coordinates": [ 153.079, -30.339 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262056, "decimalLat": -28.925911 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -28.926 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605686, "decimalLat": -34.43712 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893286, "decimalLat": -31.445481 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061765, "decimalLat": -32.708925 }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520846, "decimalLat": -34.454775 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.82316, "decimalLat": -34.149605 }, "geometry": { "type": "Point", "coordinates": [ 150.823, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.397925, "decimalLat": -36.225488 }, "geometry": { "type": "Point", "coordinates": [ 149.398, -36.225 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.322825, "decimalLat": -36.299138 }, "geometry": { "type": "Point", "coordinates": [ 149.323, -36.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609166, "decimalLat": -34.418842 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.501298, "decimalLat": -28.695962 }, "geometry": { "type": "Point", "coordinates": [ 153.501, -28.696 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.716625, "decimalLat": -32.665067 }, "geometry": { "type": "Point", "coordinates": [ 151.717, -32.665 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634412, "decimalLat": -34.420135 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925812, "decimalLat": -31.45885 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516951, "decimalLat": -34.447403 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557985, "decimalLat": -28.39508 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90512, "decimalLat": -31.456093 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.998395, "decimalLat": -30.344322 }, "geometry": { "type": "Point", "coordinates": [ 152.998, -30.344 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51962, "decimalLat": -34.447276 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615468, "decimalLat": -34.435598 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.739648, "decimalLat": -30.483519 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -30.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626634, "decimalLat": -34.387006 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.725898, "decimalLat": -30.403504 }, "geometry": { "type": "Point", "coordinates": [ 151.726, -30.404 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631862, "decimalLat": -34.394455 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630553, "decimalLat": -34.386874 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.872785, "decimalLat": -31.476247 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104165, "decimalLat": -29.478823 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.842748, "decimalLat": -31.426598 }, "geometry": { "type": "Point", "coordinates": [ 152.843, -31.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609593, "decimalLat": -28.66131 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921601, "decimalLat": -31.457676 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107464, "decimalLat": -29.490119 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335296, "decimalLat": -28.817522 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.827659, "decimalLat": -29.813117 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -29.813 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606639, "decimalLat": -34.437652 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.266992, "decimalLat": -28.92076 }, "geometry": { "type": "Point", "coordinates": [ 153.267, -28.921 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.666127, "decimalLat": -33.570947 }, "geometry": { "type": "Point", "coordinates": [ 150.666, -33.571 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611436, "decimalLat": -34.419724 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.951303, "decimalLat": -36.599554 }, "geometry": { "type": "Point", "coordinates": [ 149.951, -36.6 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.435756, "decimalLat": -28.987356 }, "geometry": { "type": "Point", "coordinates": [ 153.436, -28.987 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92438, "decimalLat": -31.466101 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628157, "decimalLat": -34.420915 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278539, "decimalLat": -28.819149 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925254, "decimalLat": -31.454544 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104659, "decimalLat": -29.489657 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613359, "decimalLat": -33.432242 }, "geometry": { "type": "Point", "coordinates": [ 150.613, -33.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.137356, "decimalLat": -34.382602 }, "geometry": { "type": "Point", "coordinates": [ 150.137, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98423, "decimalLat": -33.969982 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -33.97 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101521, "decimalLat": -29.489349 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.076587, "decimalLat": -30.35499 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -30.355 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98111, "decimalLat": -30.437334 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -30.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.510594, "decimalLat": -28.808559 }, "geometry": { "type": "Point", "coordinates": [ 153.511, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602597, "decimalLat": -34.42488 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610225, "decimalLat": -34.419097 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10405, "decimalLat": -29.485172 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785103, "decimalLat": -33.718443 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.307001, "decimalLat": -31.934482 }, "geometry": { "type": "Point", "coordinates": [ 152.307, -31.934 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522447, "decimalLat": -34.464318 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89266, "decimalLat": -33.991958 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.992 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.333564, "decimalLat": -28.300791 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.301 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918987, "decimalLat": -31.469715 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626511, "decimalLat": -34.421019 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655487, "decimalLat": -33.522609 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -33.523 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.030221, "decimalLat": -34.034399 }, "geometry": { "type": "Point", "coordinates": [ 151.03, -34.034 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.759299, "decimalLat": -30.84178 }, "geometry": { "type": "Point", "coordinates": [ 152.759, -30.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611192, "decimalLat": -34.420297 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523955, "decimalLat": -34.463727 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640672, "decimalLat": -34.494246 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79722, "decimalLat": -34.17389 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.174 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785452, "decimalLat": -31.632466 }, "geometry": { "type": "Point", "coordinates": [ 152.785, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785248, "decimalLat": -33.716987 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92715, "decimalLat": -31.459453 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908191, "decimalLat": -31.455909 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632001, "decimalLat": -34.387975 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604616, "decimalLat": -34.424649 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520305, "decimalLat": -34.465717 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523645, "decimalLat": -28.668579 }, "geometry": { "type": "Point", "coordinates": [ 153.524, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926496, "decimalLat": -31.451833 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514086, "decimalLat": -34.446389 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.070202, "decimalLat": -32.747913 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.748 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107411, "decimalLat": -29.490082 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632571, "decimalLat": -34.418314 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521633, "decimalLat": -34.465717 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.53282, "decimalLat": -34.461337 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525486, "decimalLat": -34.4587 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.600538, "decimalLat": -32.535193 }, "geometry": { "type": "Point", "coordinates": [ 151.601, -32.535 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516578, "decimalLat": -28.692812 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.970363, "decimalLat": -34.105006 }, "geometry": { "type": "Point", "coordinates": [ 150.97, -34.105 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918338, "decimalLat": -31.47019 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071009, "decimalLat": -30.309466 }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.309 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62628, "decimalLat": -34.395708 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812379, "decimalLat": -29.798973 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -29.799 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628754, "decimalLat": -34.395134 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.612582, "decimalLat": -28.659154 }, "geometry": { "type": "Point", "coordinates": [ 153.613, -28.659 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.194794, "decimalLat": -28.885311 }, "geometry": { "type": "Point", "coordinates": [ 153.195, -28.885 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.744837, "decimalLat": -34.226418 }, "geometry": { "type": "Point", "coordinates": [ 150.745, -34.226 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063762, "decimalLat": -32.706526 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.810237, "decimalLat": -31.127444 }, "geometry": { "type": "Point", "coordinates": [ 152.81, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628079, "decimalLat": -34.389774 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401038, "decimalLat": -28.260092 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.379025, "decimalLat": -31.919508 }, "geometry": { "type": "Point", "coordinates": [ 152.379, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622972, "decimalLat": -34.385772 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.682858, "decimalLat": -33.541594 }, "geometry": { "type": "Point", "coordinates": [ 149.683, -33.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610379, "decimalLat": -34.420191 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515842, "decimalLat": -34.447001 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631349, "decimalLat": -34.419977 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.05768, "decimalLat": -29.738292 }, "geometry": { "type": "Point", "coordinates": [ 151.058, -29.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606626, "decimalLat": -34.434677 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.106633, "decimalLat": -29.366865 }, "geometry": { "type": "Point", "coordinates": [ 153.107, -29.367 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630022, "decimalLat": -34.388352 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520421, "decimalLat": -34.465828 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104117, "decimalLat": -29.484002 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.066477, "decimalLat": -30.272301 }, "geometry": { "type": "Point", "coordinates": [ 153.066, -30.272 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617097, "decimalLat": -34.4338 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892232, "decimalLat": -31.445349 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786458, "decimalLat": -31.635235 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.635 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.253234, "decimalLat": -32.207858 }, "geometry": { "type": "Point", "coordinates": [ 152.253, -32.208 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.755461, "decimalLat": -32.482259 }, "geometry": { "type": "Point", "coordinates": [ 151.755, -32.482 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315236, "decimalLat": -28.860167 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.86 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300889, "decimalLat": -28.821034 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639799, "decimalLat": -34.39917 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910199, "decimalLat": -31.459827 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519865, "decimalLat": -34.452618 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.051156, "decimalLat": -29.770209 }, "geometry": { "type": "Point", "coordinates": [ 151.051, -29.77 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.79389, "decimalLat": -32.5899 }, "geometry": { "type": "Point", "coordinates": [ 151.794, -32.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.319311, "decimalLat": -31.891787 }, "geometry": { "type": "Point", "coordinates": [ 152.319, -31.892 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64043, "decimalLat": -34.493538 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630597, "decimalLat": -34.420792 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.748662, "decimalLat": -28.979207 }, "geometry": { "type": "Point", "coordinates": [ 152.749, -28.979 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627058, "decimalLat": -34.420921 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.353127, "decimalLat": -36.156195 }, "geometry": { "type": "Point", "coordinates": [ 149.353, -36.156 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646596, "decimalLat": -34.395695 }, "geometry": { "type": "Point", "coordinates": [ 150.647, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870713, "decimalLat": -31.460329 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.980514, "decimalLat": -36.435679 }, "geometry": { "type": "Point", "coordinates": [ 149.981, -36.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28717, "decimalLat": -29.02612 }, "geometry": { "type": "Point", "coordinates": [ 153.287, -29.026 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639789, "decimalLat": -34.399161 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514547, "decimalLat": -34.447363 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606692, "decimalLat": -34.435021 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.45613, "decimalLat": -28.648927 }, "geometry": { "type": "Point", "coordinates": [ 153.456, -28.649 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.607377, "decimalLat": -28.690807 }, "geometry": { "type": "Point", "coordinates": [ 153.607, -28.691 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515834, "decimalLat": -34.450571 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314609, "decimalLat": -28.846843 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.847 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515889, "decimalLat": -34.450527 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092706, "decimalLat": -28.602022 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -28.602 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303635, "decimalLat": -28.839872 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521655, "decimalLat": -34.46606 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96778, "decimalLat": -32.625001 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -32.625 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303635, "decimalLat": -28.839872 }, "geometry": { "type": "Point", "coordinates": [ 153.304, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607956, "decimalLat": -34.433829 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.462986, "decimalLat": -28.870048 }, "geometry": { "type": "Point", "coordinates": [ 153.463, -28.87 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297711, "decimalLat": -28.882774 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.883 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.429771, "decimalLat": -29.016576 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -29.017 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.152244, "decimalLat": -31.737459 }, "geometry": { "type": "Point", "coordinates": [ 152.152, -31.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899818, "decimalLat": -29.631769 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.81925, "decimalLat": -34.10747 }, "geometry": { "type": "Point", "coordinates": [ 150.819, -34.107 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.801027, "decimalLat": -31.648275 }, "geometry": { "type": "Point", "coordinates": [ 152.801, -31.648 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.192812, "decimalLat": -29.437147 }, "geometry": { "type": "Point", "coordinates": [ 153.193, -29.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823365, "decimalLat": -31.141314 }, "geometry": { "type": "Point", "coordinates": [ 152.823, -31.141 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.98521, "decimalLat": -34.09151 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637326, "decimalLat": -34.420606 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51291, "decimalLat": -34.446761 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10806, "decimalLat": -29.490595 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609511, "decimalLat": -34.418948 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.562142, "decimalLat": -28.38361 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643298, "decimalLat": -34.395406 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.03802, "decimalLat": -32.736456 }, "geometry": { "type": "Point", "coordinates": [ 152.038, -32.736 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628034, "decimalLat": -34.389801 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10821, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064075, "decimalLat": -32.698717 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.699 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513234, "decimalLat": -34.44611 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.663144, "decimalLat": -36.434771 }, "geometry": { "type": "Point", "coordinates": [ 148.663, -36.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.042484, "decimalLat": -30.894342 }, "geometry": { "type": "Point", "coordinates": [ 150.042, -30.894 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627248, "decimalLat": -34.396457 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608017, "decimalLat": -34.436652 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.783757, "decimalLat": -31.712723 }, "geometry": { "type": "Point", "coordinates": [ 152.784, -31.713 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103275, "decimalLat": -29.486575 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.421401, "decimalLat": -31.946553 }, "geometry": { "type": "Point", "coordinates": [ 152.421, -31.947 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529324, "decimalLat": -34.472869 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.473 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611354, "decimalLat": -34.420336 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900289, "decimalLat": -31.473925 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60759, "decimalLat": -34.433308 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627412, "decimalLat": -34.420324 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521113, "decimalLat": -34.466716 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.804028, "decimalLat": -30.20617 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -30.206 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630721, "decimalLat": -34.420641 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.373197, "decimalLat": -28.251337 }, "geometry": { "type": "Point", "coordinates": [ 153.373, -28.251 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897301, "decimalLat": -31.475036 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.847761, "decimalLat": -32.545692 }, "geometry": { "type": "Point", "coordinates": [ 149.848, -32.546 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.10976, "decimalLat": -32.739275 }, "geometry": { "type": "Point", "coordinates": [ 152.11, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.359888, "decimalLat": -28.688428 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.362893, "decimalLat": -36.155483 }, "geometry": { "type": "Point", "coordinates": [ 149.363, -36.155 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.475908, "decimalLat": -33.144443 }, "geometry": { "type": "Point", "coordinates": [ 151.476, -33.144 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.146708, "decimalLat": -32.725849 }, "geometry": { "type": "Point", "coordinates": [ 152.147, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.2405, "decimalLat": -30.043804 }, "geometry": { "type": "Point", "coordinates": [ 152.241, -30.044 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.760068, "decimalLat": -30.904021 }, "geometry": { "type": "Point", "coordinates": [ 152.76, -30.904 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.59937, "decimalLat": -33.203515 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -33.204 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.12083, "decimalLat": -31.09508 }, "geometry": { "type": "Point", "coordinates": [ 150.121, -31.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108226, "decimalLat": -29.490339 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5188, "decimalLat": -34.447404 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.391205, "decimalLat": -28.271399 }, "geometry": { "type": "Point", "coordinates": [ 153.391, -28.271 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.534374, "decimalLat": -28.719438 }, "geometry": { "type": "Point", "coordinates": [ 153.534, -28.719 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624438, "decimalLat": -34.388135 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516448, "decimalLat": -34.450025 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.478559, "decimalLat": -28.847843 }, "geometry": { "type": "Point", "coordinates": [ 153.479, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.612529, "decimalLat": -28.668812 }, "geometry": { "type": "Point", "coordinates": [ 153.613, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189014, "decimalLat": -32.014774 }, "geometry": { "type": "Point", "coordinates": [ 152.189, -32.015 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522083, "decimalLat": -34.465961 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017957, "decimalLat": -30.380924 }, "geometry": { "type": "Point", "coordinates": [ 153.018, -30.381 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606189, "decimalLat": -34.432081 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.185974, "decimalLat": -31.959337 }, "geometry": { "type": "Point", "coordinates": [ 152.186, -31.959 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189573, "decimalLat": -32.226267 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616118, "decimalLat": -34.435313 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517241, "decimalLat": -34.451564 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.429792, "decimalLat": -29.01649 }, "geometry": { "type": "Point", "coordinates": [ 153.43, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517625, "decimalLat": -34.447398 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.603662, "decimalLat": -28.730654 }, "geometry": { "type": "Point", "coordinates": [ 153.604, -28.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878903, "decimalLat": -29.661957 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635602, "decimalLat": -34.485241 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87081, "decimalLat": -31.303957 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.304 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605725, "decimalLat": -34.423534 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11683, "decimalLat": -29.157111 }, "geometry": { "type": "Point", "coordinates": [ 153.117, -29.157 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.610029, "decimalLat": -28.660702 }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.062723, "decimalLat": -33.775973 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608022, "decimalLat": -34.433794 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516644, "decimalLat": -34.44819 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657262, "decimalLat": -34.455069 }, "geometry": { "type": "Point", "coordinates": [ 150.657, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525982, "decimalLat": -34.464039 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.161161, "decimalLat": -32.715996 }, "geometry": { "type": "Point", "coordinates": [ 152.161, -32.716 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.877456, "decimalLat": -34.015833 }, "geometry": { "type": "Point", "coordinates": [ 150.877, -34.016 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.312594, "decimalLat": -31.899045 }, "geometry": { "type": "Point", "coordinates": [ 152.313, -31.899 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520487, "decimalLat": -34.465802 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851312, "decimalLat": -31.554898 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -31.555 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514377, "decimalLat": -34.447206 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9924, "decimalLat": -34.020842 }, "geometry": { "type": "Point", "coordinates": [ 150.992, -34.021 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.847077, "decimalLat": -32.532721 }, "geometry": { "type": "Point", "coordinates": [ 151.847, -32.533 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603648, "decimalLat": -34.438739 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06373, "decimalLat": -32.706589 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922864, "decimalLat": -31.448497 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.79931, "decimalLat": -32.569232 }, "geometry": { "type": "Point", "coordinates": [ 151.799, -32.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627428, "decimalLat": -34.386615 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.886154, "decimalLat": -34.043934 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.044 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.699384, "decimalLat": -34.245426 }, "geometry": { "type": "Point", "coordinates": [ 150.699, -34.245 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919374, "decimalLat": -31.443135 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631084, "decimalLat": -34.387335 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632614, "decimalLat": -34.418712 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.083923, "decimalLat": -29.728212 }, "geometry": { "type": "Point", "coordinates": [ 151.084, -29.728 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867846, "decimalLat": -29.667331 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.095153, "decimalLat": -29.483344 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913609, "decimalLat": -31.476491 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.113969, "decimalLat": -32.768807 }, "geometry": { "type": "Point", "coordinates": [ 152.114, -32.769 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437123, "decimalLat": -28.992713 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.993 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.262056, "decimalLat": -28.925911 }, "geometry": { "type": "Point", "coordinates": [ 153.262, -28.926 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.762086, "decimalLat": -31.539863 }, "geometry": { "type": "Point", "coordinates": [ 152.762, -31.54 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615857, "decimalLat": -34.435299 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.541229, "decimalLat": -34.372728 }, "geometry": { "type": "Point", "coordinates": [ 150.541, -34.373 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523926, "decimalLat": -34.466206 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867718, "decimalLat": -29.667284 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077265, "decimalLat": -32.722468 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616664, "decimalLat": -34.435234 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907266, "decimalLat": -31.434781 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926703, "decimalLat": -31.455103 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914442, "decimalLat": -31.469307 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607693, "decimalLat": -34.430082 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.547463, "decimalLat": -28.676052 }, "geometry": { "type": "Point", "coordinates": [ 153.547, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.150385, "decimalLat": -32.716856 }, "geometry": { "type": "Point", "coordinates": [ 152.15, -32.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632613, "decimalLat": -34.418369 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.586516, "decimalLat": -34.759792 }, "geometry": { "type": "Point", "coordinates": [ 146.587, -34.76 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617611, "decimalLat": -34.437146 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109331, "decimalLat": -29.490796 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.913689, "decimalLat": -31.442607 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926214, "decimalLat": -31.449078 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608329, "decimalLat": -28.683073 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101864, "decimalLat": -29.489526 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617086, "decimalLat": -34.433782 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608357, "decimalLat": -34.422432 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.162957, "decimalLat": -32.715495 }, "geometry": { "type": "Point", "coordinates": [ 152.163, -32.715 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633208, "decimalLat": -34.41848 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915476, "decimalLat": -31.446007 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.085856, "decimalLat": -30.34688 }, "geometry": { "type": "Point", "coordinates": [ 153.086, -30.347 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.537833, "decimalLat": -33.122487 }, "geometry": { "type": "Point", "coordinates": [ 151.538, -33.122 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.831905, "decimalLat": -29.642185 }, "geometry": { "type": "Point", "coordinates": [ 152.832, -29.642 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.309927, "decimalLat": -28.845355 }, "geometry": { "type": "Point", "coordinates": [ 153.31, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848541, "decimalLat": -34.079536 }, "geometry": { "type": "Point", "coordinates": [ 150.849, -34.08 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958956, "decimalLat": -36.469037 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.469 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925612, "decimalLat": -31.447477 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.309927, "decimalLat": -28.845355 }, "geometry": { "type": "Point", "coordinates": [ 153.31, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522538, "decimalLat": -34.453484 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519269, "decimalLat": -34.451804 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607914, "decimalLat": -34.422333 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.375604, "decimalLat": -31.925461 }, "geometry": { "type": "Point", "coordinates": [ 152.376, -31.925 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643694, "decimalLat": -34.390978 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.823729, "decimalLat": -29.811425 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.811 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331782, "decimalLat": -28.659677 }, "geometry": { "type": "Point", "coordinates": [ 153.332, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.516761, "decimalLat": -33.679454 }, "geometry": { "type": "Point", "coordinates": [ 149.517, -33.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630861, "decimalLat": -34.420697 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626049, "decimalLat": -34.388879 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.803705, "decimalLat": -31.676499 }, "geometry": { "type": "Point", "coordinates": [ 152.804, -31.676 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.742343, "decimalLat": -32.548846 }, "geometry": { "type": "Point", "coordinates": [ 151.742, -32.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908897, "decimalLat": -31.443777 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395107, "decimalLat": -28.287731 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.288 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521258, "decimalLat": -34.466611 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914417, "decimalLat": -31.48518 }, "geometry": { "type": "Point", "coordinates": [ 152.914, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522289, "decimalLat": -34.464126 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640118, "decimalLat": -34.395958 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189597, "decimalLat": -32.229205 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.671558, "decimalLat": -36.504827 }, "geometry": { "type": "Point", "coordinates": [ 148.672, -36.505 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103672, "decimalLat": -29.485692 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616411, "decimalLat": -34.436103 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.59019, "decimalLat": -28.65505 }, "geometry": { "type": "Point", "coordinates": [ 153.59, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103291, "decimalLat": -29.486472 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609645, "decimalLat": -34.436395 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919729, "decimalLat": -31.469103 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.035856, "decimalLat": -32.763707 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.764 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522507, "decimalLat": -34.4667 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.962107, "decimalLat": -32.299385 }, "geometry": { "type": "Point", "coordinates": [ 151.962, -32.299 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.815095, "decimalLat": -34.085656 }, "geometry": { "type": "Point", "coordinates": [ 150.815, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.282717, "decimalLat": -28.981981 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.982 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104224, "decimalLat": -29.483624 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.151324, "decimalLat": -32.714849 }, "geometry": { "type": "Point", "coordinates": [ 152.151, -32.715 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.941747, "decimalLat": -30.494062 }, "geometry": { "type": "Point", "coordinates": [ 152.942, -30.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517412, "decimalLat": -34.452037 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641377, "decimalLat": -34.395666 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517961, "decimalLat": -34.437903 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637314, "decimalLat": -34.423734 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557679, "decimalLat": -28.394606 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063508, "decimalLat": -32.706176 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.95646, "decimalLat": -30.797902 }, "geometry": { "type": "Point", "coordinates": [ 152.956, -30.798 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.32349, "decimalLat": -36.2989 }, "geometry": { "type": "Point", "coordinates": [ 149.323, -36.299 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.424541, "decimalLat": -28.890555 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909512, "decimalLat": -31.465997 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794721, "decimalLat": -33.505479 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -33.505 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.449654, "decimalLat": -33.735054 }, "geometry": { "type": "Point", "coordinates": [ 150.45, -33.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521666, "decimalLat": -34.465691 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879193, "decimalLat": -31.456072 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786534, "decimalLat": -31.629166 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374899, "decimalLat": -31.915764 }, "geometry": { "type": "Point", "coordinates": [ 152.375, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61711, "decimalLat": -34.433719 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367878, "decimalLat": -28.614583 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.615 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520264, "decimalLat": -34.465626 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790883, "decimalLat": -31.530519 }, "geometry": { "type": "Point", "coordinates": [ 152.791, -31.531 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920139, "decimalLat": -31.434206 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615718, "decimalLat": -34.435973 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.037675, "decimalLat": -34.038649 }, "geometry": { "type": "Point", "coordinates": [ 151.038, -34.039 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519911, "decimalLat": -34.452529 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523089, "decimalLat": -34.466144 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899947, "decimalLat": -29.63155 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104203, "decimalLat": -29.479281 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320904, "decimalLat": -28.823939 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110527, "decimalLat": -29.490184 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516738, "decimalLat": -34.443558 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632656, "decimalLat": -34.41837 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063582, "decimalLat": -32.705766 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 148.71958, "decimalLat": -36.45878 }, "geometry": { "type": "Point", "coordinates": [ 148.72, -36.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785087, "decimalLat": -33.707063 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.913134, "decimalLat": -36.588285 }, "geometry": { "type": "Point", "coordinates": [ 149.913, -36.588 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616515, "decimalLat": -34.3987 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.078194, "decimalLat": -32.721137 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.721 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623358, "decimalLat": -34.383282 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373554, "decimalLat": -31.914513 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639055, "decimalLat": -34.491736 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600987, "decimalLat": -34.533564 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.534 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.146333, "decimalLat": -34.925982 }, "geometry": { "type": "Point", "coordinates": [ 150.146, -34.926 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513842, "decimalLat": -34.447285 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.320914, "decimalLat": -28.840576 }, "geometry": { "type": "Point", "coordinates": [ 153.321, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786125, "decimalLat": -33.710446 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.540876, "decimalLat": -32.059193 }, "geometry": { "type": "Point", "coordinates": [ 152.541, -32.059 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895057, "decimalLat": -31.436938 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614727, "decimalLat": -34.431022 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10975, "decimalLat": -29.490213 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103902, "decimalLat": -29.489549 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632324, "decimalLat": -34.388099 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.871984, "decimalLat": -33.250383 }, "geometry": { "type": "Point", "coordinates": [ 150.872, -33.25 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790671, "decimalLat": -34.14182 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.142 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437117, "decimalLat": -28.993182 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.993 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.306361, "decimalLat": -31.952617 }, "geometry": { "type": "Point", "coordinates": [ 152.306, -31.953 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102706, "decimalLat": -29.487556 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189597, "decimalLat": -32.229205 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.229 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603536, "decimalLat": -34.427431 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.839196, "decimalLat": -34.057238 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.057 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521236, "decimalLat": -34.452637 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916411, "decimalLat": -31.443386 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.518851, "decimalLat": -28.232736 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.233 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103849, "decimalLat": -29.485496 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.997296, "decimalLat": -28.965181 }, "geometry": { "type": "Point", "coordinates": [ 152.997, -28.965 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.919967, "decimalLat": -36.589766 }, "geometry": { "type": "Point", "coordinates": [ 149.92, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.646452, "decimalLat": -34.395809 }, "geometry": { "type": "Point", "coordinates": [ 150.646, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911609, "decimalLat": -31.458122 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603458, "decimalLat": -34.435481 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911609, "decimalLat": -31.458122 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6085, "decimalLat": -34.454431 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.532959, "decimalLat": -34.481759 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.482 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.004081, "decimalLat": -34.034102 }, "geometry": { "type": "Point", "coordinates": [ 151.004, -34.034 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927495, "decimalLat": -31.468932 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516544, "decimalLat": -34.44899 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529216, "decimalLat": -34.464726 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331243, "decimalLat": -28.821749 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.830913, "decimalLat": -31.524694 }, "geometry": { "type": "Point", "coordinates": [ 152.831, -31.525 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314107, "decimalLat": -28.820206 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517424, "decimalLat": -34.438379 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51395, "decimalLat": -34.445845 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.399208, "decimalLat": -31.965613 }, "geometry": { "type": "Point", "coordinates": [ 152.399, -31.966 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31172, "decimalLat": -28.84073 }, "geometry": { "type": "Point", "coordinates": [ 153.312, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523879, "decimalLat": -34.463752 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.515179, "decimalLat": -28.6352 }, "geometry": { "type": "Point", "coordinates": [ 153.515, -28.635 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.87102, "decimalLat": -30.40517 }, "geometry": { "type": "Point", "coordinates": [ 152.871, -30.405 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923643, "decimalLat": -36.618562 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.619 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.418213, "decimalLat": -31.905008 }, "geometry": { "type": "Point", "coordinates": [ 152.418, -31.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614866, "decimalLat": -34.4296 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886224, "decimalLat": -31.443481 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336688, "decimalLat": -28.868027 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -28.868 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63762, "decimalLat": -34.489733 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597612, "decimalLat": -34.41848 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.522857, "decimalLat": -28.683177 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606426, "decimalLat": -34.435187 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808142, "decimalLat": -34.098028 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925213, "decimalLat": -31.454124 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402924, "decimalLat": -28.260549 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886221, "decimalLat": -31.44337 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642034, "decimalLat": -34.395886 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955028, "decimalLat": -36.650407 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.65 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104144, "decimalLat": -29.485137 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955028, "decimalLat": -36.650407 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627426, "decimalLat": -34.386327 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104337, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632572, "decimalLat": -34.418269 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.088534, "decimalLat": -33.404535 }, "geometry": { "type": "Point", "coordinates": [ 151.089, -33.405 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630948, "decimalLat": -34.388279 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785336, "decimalLat": -33.71695 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79099, "decimalLat": -34.180313 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.18 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784234, "decimalLat": -33.717186 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89337, "decimalLat": -33.971509 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.972 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.961734, "decimalLat": -36.432507 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028851, "decimalLat": -32.191181 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.191 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605259, "decimalLat": -34.437977 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.995573, "decimalLat": -36.572611 }, "geometry": { "type": "Point", "coordinates": [ 149.996, -36.573 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.010861, "decimalLat": -30.417681 }, "geometry": { "type": "Point", "coordinates": [ 153.011, -30.418 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.355934, "decimalLat": -37.177314 }, "geometry": { "type": "Point", "coordinates": [ 149.356, -37.177 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063459, "decimalLat": -32.706026 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609159, "decimalLat": -34.420636 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.709206, "decimalLat": -32.617164 }, "geometry": { "type": "Point", "coordinates": [ 151.709, -32.617 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101124, "decimalLat": -29.490096 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786404, "decimalLat": -33.704355 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.05285, "decimalLat": -30.2796 }, "geometry": { "type": "Point", "coordinates": [ 153.053, -30.28 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92797, "decimalLat": -31.451682 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60927, "decimalLat": -34.420548 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626112, "decimalLat": -34.390494 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524563, "decimalLat": -34.452002 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101183, "decimalLat": -29.490007 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785607, "decimalLat": -33.716996 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78678, "decimalLat": -31.629768 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610442, "decimalLat": -34.419119 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.637189, "decimalLat": -31.337231 }, "geometry": { "type": "Point", "coordinates": [ 152.637, -31.337 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632403, "decimalLat": -34.392996 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079275, "decimalLat": -32.761922 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.762 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918987, "decimalLat": -31.469715 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597851, "decimalLat": -34.412796 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065376, "decimalLat": -32.709829 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607041, "decimalLat": -34.455222 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.961734, "decimalLat": -36.432507 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.799701, "decimalLat": -34.214486 }, "geometry": { "type": "Point", "coordinates": [ 150.8, -34.214 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645219, "decimalLat": -34.399437 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607363, "decimalLat": -34.430202 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.756531, "decimalLat": -31.418737 }, "geometry": { "type": "Point", "coordinates": [ 152.757, -31.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.955017, "decimalLat": -36.576791 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279241, "decimalLat": -28.839565 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.593114, "decimalLat": -33.459334 }, "geometry": { "type": "Point", "coordinates": [ 150.593, -33.459 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06372, "decimalLat": -32.706445 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039732, "decimalLat": -32.732186 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.037517, "decimalLat": -32.731591 }, "geometry": { "type": "Point", "coordinates": [ 152.038, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521192, "decimalLat": -34.435354 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10423, "decimalLat": -29.47986 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.300166, "decimalLat": -28.863514 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.864 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.15428, "decimalLat": -32.713792 }, "geometry": { "type": "Point", "coordinates": [ 152.154, -32.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92365, "decimalLat": -31.470627 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52496, "decimalLat": -34.495661 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.496 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096081, "decimalLat": -29.484773 }, "geometry": { "type": "Point", "coordinates": [ 153.096, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.058987, "decimalLat": -29.740595 }, "geometry": { "type": "Point", "coordinates": [ 151.059, -29.741 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.77598, "decimalLat": -31.487179 }, "geometry": { "type": "Point", "coordinates": [ 152.776, -31.487 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55852, "decimalLat": -28.394929 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.89362, "decimalLat": -31.460002 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604326, "decimalLat": -34.425671 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279162, "decimalLat": -28.873768 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.368864, "decimalLat": -31.874683 }, "geometry": { "type": "Point", "coordinates": [ 152.369, -31.875 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.368127, "decimalLat": -28.876433 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.876 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.78563, "decimalLat": -31.629768 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.913134, "decimalLat": -36.588285 }, "geometry": { "type": "Point", "coordinates": [ 149.913, -36.588 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.424541, "decimalLat": -28.890555 }, "geometry": { "type": "Point", "coordinates": [ 153.425, -28.891 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921537, "decimalLat": -31.486137 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639173, "decimalLat": -34.492937 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520465, "decimalLat": -34.454028 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.81106, "decimalLat": -31.162751 }, "geometry": { "type": "Point", "coordinates": [ 152.811, -31.163 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864165, "decimalLat": -31.291869 }, "geometry": { "type": "Point", "coordinates": [ 152.864, -31.292 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926417, "decimalLat": -31.452399 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.798759, "decimalLat": -34.2116 }, "geometry": { "type": "Point", "coordinates": [ 150.799, -34.212 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785319, "decimalLat": -33.717064 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.99265, "decimalLat": -34.12069 }, "geometry": { "type": "Point", "coordinates": [ 150.993, -34.121 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.477293, "decimalLat": -28.279523 }, "geometry": { "type": "Point", "coordinates": [ 152.477, -28.28 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616224, "decimalLat": -34.435802 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631072, "decimalLat": -34.388147 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090146, "decimalLat": -28.598099 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -28.598 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555985, "decimalLat": -28.37413 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.308195, "decimalLat": -28.849992 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.787066, "decimalLat": -31.629899 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523374, "decimalLat": -34.464626 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910417, "decimalLat": -31.439414 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90236, "decimalLat": -30.56177 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -30.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.511063, "decimalLat": -34.471245 }, "geometry": { "type": "Point", "coordinates": [ 150.511, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627391, "decimalLat": -34.386407 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.660978, "decimalLat": -32.660645 }, "geometry": { "type": "Point", "coordinates": [ 151.661, -32.661 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.08002, "decimalLat": -32.761129 }, "geometry": { "type": "Point", "coordinates": [ 152.08, -32.761 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912452, "decimalLat": -31.470422 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523452, "decimalLat": -34.458668 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.909158, "decimalLat": -31.440917 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.986203, "decimalLat": -34.040549 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.041 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655901, "decimalLat": -34.456287 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98375, "decimalLat": -30.421151 }, "geometry": { "type": "Point", "coordinates": [ 152.984, -30.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103473, "decimalLat": -29.486276 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516141, "decimalLat": -34.446827 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.947048, "decimalLat": -36.640426 }, "geometry": { "type": "Point", "coordinates": [ 149.947, -36.64 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.151316, "decimalLat": -32.714885 }, "geometry": { "type": "Point", "coordinates": [ 152.151, -32.715 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785705, "decimalLat": -33.705969 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603956, "decimalLat": -34.43293 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887029, "decimalLat": -31.430659 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.285591, "decimalLat": -28.82869 }, "geometry": { "type": "Point", "coordinates": [ 153.286, -28.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.97978, "decimalLat": -36.468114 }, "geometry": { "type": "Point", "coordinates": [ 149.98, -36.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.104747, "decimalLat": -32.72697 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110506, "decimalLat": -29.490032 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518344, "decimalLat": -34.451425 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.951652, "decimalLat": -31.165147 }, "geometry": { "type": "Point", "coordinates": [ 152.952, -31.165 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.807198, "decimalLat": -29.813252 }, "geometry": { "type": "Point", "coordinates": [ 152.807, -29.813 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.833527, "decimalLat": -30.434874 }, "geometry": { "type": "Point", "coordinates": [ 152.834, -30.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627437, "decimalLat": -34.386688 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039015, "decimalLat": -32.733802 }, "geometry": { "type": "Point", "coordinates": [ 152.039, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.998977, "decimalLat": -36.551144 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.353423, "decimalLat": -28.760793 }, "geometry": { "type": "Point", "coordinates": [ 153.353, -28.761 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51898, "decimalLat": -28.57492 }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.575 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531175, "decimalLat": -34.472122 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.472 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522351, "decimalLat": -34.465732 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.79517, "decimalLat": -34.116065 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.116 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103602, "decimalLat": -29.488424 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60237, "decimalLat": -28.69032 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.69 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645018, "decimalLat": -34.396521 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.067583, "decimalLat": -30.913667 }, "geometry": { "type": "Point", "coordinates": [ 153.068, -30.914 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521626, "decimalLat": -34.465564 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639804, "decimalLat": -34.398241 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519886, "decimalLat": -34.452637 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.423196, "decimalLat": -28.727155 }, "geometry": { "type": "Point", "coordinates": [ 153.423, -28.727 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795532, "decimalLat": -29.517651 }, "geometry": { "type": "Point", "coordinates": [ 152.796, -29.518 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.205378, "decimalLat": -28.841394 }, "geometry": { "type": "Point", "coordinates": [ 153.205, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.130464, "decimalLat": -32.726405 }, "geometry": { "type": "Point", "coordinates": [ 152.13, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51691, "decimalLat": -34.448781 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104042, "decimalLat": -29.484334 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.392954, "decimalLat": -28.958813 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.926933, "decimalLat": -32.652496 }, "geometry": { "type": "Point", "coordinates": [ 149.927, -32.652 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608536, "decimalLat": -34.434083 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110565, "decimalLat": -29.490072 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.245688, "decimalLat": -30.051427 }, "geometry": { "type": "Point", "coordinates": [ 152.246, -30.051 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784586, "decimalLat": -33.716573 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627608, "decimalLat": -34.39027 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520336, "decimalLat": -34.465763 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065437, "decimalLat": -32.710938 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784861, "decimalLat": -34.191884 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -34.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52125, "decimalLat": -34.435202 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.746584, "decimalLat": -31.442371 }, "geometry": { "type": "Point", "coordinates": [ 152.747, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278017, "decimalLat": -28.678941 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.886108, "decimalLat": -34.001972 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.002 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.727184, "decimalLat": -30.5682 }, "geometry": { "type": "Point", "coordinates": [ 151.727, -30.568 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602724, "decimalLat": -34.439081 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.451098, "decimalLat": -28.590421 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600987, "decimalLat": -34.533564 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.534 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920355, "decimalLat": -31.430501 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.431 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.091725, "decimalLat": -28.784249 }, "geometry": { "type": "Point", "coordinates": [ 152.092, -28.784 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.260835, "decimalLat": -28.871731 }, "geometry": { "type": "Point", "coordinates": [ 153.261, -28.872 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637192, "decimalLat": -34.422641 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528977, "decimalLat": -34.471347 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.47468, "decimalLat": -28.324609 }, "geometry": { "type": "Point", "coordinates": [ 153.475, -28.325 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.009898, "decimalLat": -30.364091 }, "geometry": { "type": "Point", "coordinates": [ 153.01, -30.364 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636943, "decimalLat": -34.422609 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906887, "decimalLat": -31.45017 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867988, "decimalLat": -31.282665 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.283 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51746, "decimalLat": -34.452236 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630559, "decimalLat": -33.541858 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -33.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.530842, "decimalLat": -34.470871 }, "geometry": { "type": "Point", "coordinates": [ 150.531, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617603, "decimalLat": -34.438588 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556075, "decimalLat": -28.641229 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.641 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527511, "decimalLat": -34.469388 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616576, "decimalLat": -34.434511 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.991189, "decimalLat": -34.025559 }, "geometry": { "type": "Point", "coordinates": [ 150.991, -34.026 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.596661, "decimalLat": -31.693918 }, "geometry": { "type": "Point", "coordinates": [ 152.597, -31.694 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.189573, "decimalLat": -32.226267 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297033, "decimalLat": -28.717308 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.717 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516575, "decimalLat": -34.447206 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.667757, "decimalLat": -31.202384 }, "geometry": { "type": "Point", "coordinates": [ 152.668, -31.202 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786625, "decimalLat": -31.629267 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626997, "decimalLat": -34.385723 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62422, "decimalLat": -34.388942 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.123963, "decimalLat": -32.738074 }, "geometry": { "type": "Point", "coordinates": [ 152.124, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.37097, "decimalLat": -31.918887 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604488, "decimalLat": -34.424565 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.187319, "decimalLat": -31.950415 }, "geometry": { "type": "Point", "coordinates": [ 152.187, -31.95 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103859, "decimalLat": -29.489596 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.346548, "decimalLat": -28.910046 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.91 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.576557 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517344, "decimalLat": -34.440352 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639203, "decimalLat": -34.397157 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.02201, "decimalLat": -32.659322 }, "geometry": { "type": "Point", "coordinates": [ 152.022, -32.659 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522703, "decimalLat": -34.452351 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.576557 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.577 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103849, "decimalLat": -29.489591 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.815152, "decimalLat": -31.42944 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.429 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659053, "decimalLat": -34.457591 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.655308, "decimalLat": -34.459187 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.388749, "decimalLat": -28.586387 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -28.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.988655, "decimalLat": -36.56931 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521303, "decimalLat": -34.466197 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10409, "decimalLat": -29.480542 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525408, "decimalLat": -34.459889 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636052, "decimalLat": -34.420645 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51463, "decimalLat": -28.607207 }, "geometry": { "type": "Point", "coordinates": [ 153.515, -28.607 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06373, "decimalLat": -32.706535 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.346548, "decimalLat": -28.910046 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.64471, "decimalLat": -34.39161 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104042, "decimalLat": -29.484301 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905871, "decimalLat": -31.44807 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632825, "decimalLat": -34.41895 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.388882, "decimalLat": -31.902443 }, "geometry": { "type": "Point", "coordinates": [ 152.389, -31.902 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88986, "decimalLat": -31.440548 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60461, "decimalLat": -34.424477 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071519, "decimalLat": -32.707448 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.522315, "decimalLat": -33.679751 }, "geometry": { "type": "Point", "coordinates": [ 149.522, -33.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.325587, "decimalLat": -29.033495 }, "geometry": { "type": "Point", "coordinates": [ 150.326, -29.033 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603908, "decimalLat": -34.439537 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.91465, "decimalLat": -33.970921 }, "geometry": { "type": "Point", "coordinates": [ 150.915, -33.971 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630269, "decimalLat": -34.389628 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521601, "decimalLat": -34.465672 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.074804, "decimalLat": -32.722224 }, "geometry": { "type": "Point", "coordinates": [ 152.075, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.7848, "decimalLat": -33.713272 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.88575, "decimalLat": -30.517494 }, "geometry": { "type": "Point", "coordinates": [ 152.886, -30.517 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868404, "decimalLat": -29.666874 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.406132, "decimalLat": -28.977706 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.978 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616484, "decimalLat": -34.398655 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.488028, "decimalLat": -32.98809 }, "geometry": { "type": "Point", "coordinates": [ 151.488, -32.988 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.914958, "decimalLat": -31.468189 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314713, "decimalLat": -28.818692 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.380005, "decimalLat": -28.694311 }, "geometry": { "type": "Point", "coordinates": [ 153.38, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516314, "decimalLat": -34.447967 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604139, "decimalLat": -34.437946 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629255, "decimalLat": -34.395098 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786796, "decimalLat": -33.703852 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.603603, "decimalLat": -28.688501 }, "geometry": { "type": "Point", "coordinates": [ 153.604, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938155, "decimalLat": -36.621708 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.622 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784886, "decimalLat": -33.716458 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525329, "decimalLat": -34.464025 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.829438, "decimalLat": -29.645186 }, "geometry": { "type": "Point", "coordinates": [ 152.829, -29.645 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299547, "decimalLat": -28.817186 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785676, "decimalLat": -33.706783 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103693, "decimalLat": -29.485646 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898194, "decimalLat": -31.443104 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634603, "decimalLat": -34.389831 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517028, "decimalLat": -34.446998 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518737, "decimalLat": -34.447358 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.953868, "decimalLat": -33.958383 }, "geometry": { "type": "Point", "coordinates": [ 150.954, -33.958 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640727, "decimalLat": -34.49422 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784384, "decimalLat": -33.717215 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.78984, "decimalLat": -32.655321 }, "geometry": { "type": "Point", "coordinates": [ 151.79, -32.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62739, "decimalLat": -34.390663 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103956, "decimalLat": -29.478856 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52377, "decimalLat": -34.463732 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.460499, "decimalLat": -28.650517 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.651 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637588, "decimalLat": -34.488525 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523273, "decimalLat": -34.464344 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103784, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640136, "decimalLat": -34.397238 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614788, "decimalLat": -34.455284 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627139, "decimalLat": -34.420742 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.827489, "decimalLat": -32.386521 }, "geometry": { "type": "Point", "coordinates": [ 149.827, -32.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643071, "decimalLat": -34.395744 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523351, "decimalLat": -34.464661 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603893, "decimalLat": -34.452636 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618887, "decimalLat": -34.436287 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.481576, "decimalLat": -28.705151 }, "geometry": { "type": "Point", "coordinates": [ 153.482, -28.705 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.341092, "decimalLat": -28.909308 }, "geometry": { "type": "Point", "coordinates": [ 153.341, -28.909 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513836, "decimalLat": -34.446023 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063556, "decimalLat": -32.706513 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.012156, "decimalLat": -28.625677 }, "geometry": { "type": "Point", "coordinates": [ 153.012, -28.626 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656053, "decimalLat": -34.458634 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519027, "decimalLat": -34.459967 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513124, "decimalLat": -34.447262 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604214, "decimalLat": -34.437966 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104063, "decimalLat": -29.48432 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.02021, "decimalLat": -36.569074 }, "geometry": { "type": "Point", "coordinates": [ 150.02, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413602, "decimalLat": -31.944661 }, "geometry": { "type": "Point", "coordinates": [ 152.414, -31.945 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.58639, "decimalLat": -34.769223 }, "geometry": { "type": "Point", "coordinates": [ 146.586, -34.769 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.855557, "decimalLat": -31.544762 }, "geometry": { "type": "Point", "coordinates": [ 152.856, -31.545 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.815379, "decimalLat": -31.164121 }, "geometry": { "type": "Point", "coordinates": [ 152.815, -31.164 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642155, "decimalLat": -34.395844 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063772, "decimalLat": -32.70634 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395866, "decimalLat": -28.870934 }, "geometry": { "type": "Point", "coordinates": [ 153.396, -28.871 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626979, "decimalLat": -34.421019 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923886, "decimalLat": -31.444286 }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11049, "decimalLat": -29.49018 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791111, "decimalLat": -34.197877 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.198 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809822, "decimalLat": -34.101266 }, "geometry": { "type": "Point", "coordinates": [ 150.81, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104138, "decimalLat": -29.483764 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278132, "decimalLat": -28.831137 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615567, "decimalLat": -34.435537 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.780659, "decimalLat": -30.225716 }, "geometry": { "type": "Point", "coordinates": [ 152.781, -30.226 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641963, "decimalLat": -34.396859 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630931, "decimalLat": -34.390046 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513128, "decimalLat": -34.447145 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63267, "decimalLat": -34.418262 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520323, "decimalLat": -34.465465 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514521, "decimalLat": -34.44381 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.410466, "decimalLat": -32.968488 }, "geometry": { "type": "Point", "coordinates": [ 151.41, -32.968 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604297, "decimalLat": -34.438102 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522294, "decimalLat": -34.465082 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934245, "decimalLat": -36.578531 }, "geometry": { "type": "Point", "coordinates": [ 149.934, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.835045, "decimalLat": -29.657054 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -29.657 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908306, "decimalLat": -31.451168 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879669, "decimalLat": -31.449383 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.452422, "decimalLat": -28.518968 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.519 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889538, "decimalLat": -31.443597 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.483796, "decimalLat": -31.894047 }, "geometry": { "type": "Point", "coordinates": [ 152.484, -31.894 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625765, "decimalLat": -34.386222 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611998, "decimalLat": -34.432096 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.807504, "decimalLat": -31.135543 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -31.136 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.995981, "decimalLat": -36.454235 }, "geometry": { "type": "Point", "coordinates": [ 149.996, -36.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557091, "decimalLat": -28.397364 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.956571, "decimalLat": -36.590303 }, "geometry": { "type": "Point", "coordinates": [ 149.957, -36.59 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607635, "decimalLat": -34.430198 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.19536, "decimalLat": -29.7867 }, "geometry": { "type": "Point", "coordinates": [ 151.195, -29.787 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103811, "decimalLat": -29.484913 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.076205, "decimalLat": -32.735173 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.353525, "decimalLat": -31.92625 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -31.926 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915352, "decimalLat": -31.445944 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.88723, "decimalLat": -33.251643 }, "geometry": { "type": "Point", "coordinates": [ 150.887, -33.252 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627347, "decimalLat": -34.420296 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90257, "decimalLat": -30.56148 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.561 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.229584, "decimalLat": -28.889165 }, "geometry": { "type": "Point", "coordinates": [ 153.23, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520521, "decimalLat": -34.465758 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529404, "decimalLat": -34.471266 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108248, "decimalLat": -29.49017 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.707644, "decimalLat": -32.661828 }, "geometry": { "type": "Point", "coordinates": [ 151.708, -32.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627886, "decimalLat": -34.390825 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51395, "decimalLat": -34.445845 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.693056, "decimalLat": -33.384167 }, "geometry": { "type": "Point", "coordinates": [ 150.693, -33.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644456, "decimalLat": -34.396393 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.884757, "decimalLat": -31.443649 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.460145, "decimalLat": -28.649638 }, "geometry": { "type": "Point", "coordinates": [ 153.46, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.625632, "decimalLat": -32.633443 }, "geometry": { "type": "Point", "coordinates": [ 151.626, -32.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618013, "decimalLat": -34.438686 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360215, "decimalLat": -28.889489 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -28.889 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517285, "decimalLat": -34.451538 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789744, "decimalLat": -34.201999 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.202 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.419762, "decimalLat": -28.982508 }, "geometry": { "type": "Point", "coordinates": [ 153.42, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518034, "decimalLat": -34.457116 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604937, "decimalLat": -34.426747 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.00587, "decimalLat": -31.12848 }, "geometry": { "type": "Point", "coordinates": [ 150.006, -31.128 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.430836, "decimalLat": -29.017366 }, "geometry": { "type": "Point", "coordinates": [ 153.431, -29.017 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833136, "decimalLat": -34.085987 }, "geometry": { "type": "Point", "coordinates": [ 150.833, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.28465, "decimalLat": -28.841163 }, "geometry": { "type": "Point", "coordinates": [ 153.285, -28.841 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.47285, "decimalLat": -28.647443 }, "geometry": { "type": "Point", "coordinates": [ 153.473, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.989443, "decimalLat": -36.496862 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617329, "decimalLat": -34.437095 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.043163, "decimalLat": -32.767494 }, "geometry": { "type": "Point", "coordinates": [ 152.043, -32.767 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808987, "decimalLat": -34.208693 }, "geometry": { "type": "Point", "coordinates": [ 150.809, -34.209 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635406, "decimalLat": -34.419622 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.5139, "decimalLat": -34.447872 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.802364, "decimalLat": -30.325465 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -30.325 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.753388, "decimalLat": -33.382353 }, "geometry": { "type": "Point", "coordinates": [ 150.753, -33.382 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608871, "decimalLat": -34.434946 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609634, "decimalLat": -34.436413 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615479, "decimalLat": -34.435589 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926257, "decimalLat": -31.454742 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984681, "decimalLat": -34.096518 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.097 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.663891, "decimalLat": -34.458558 }, "geometry": { "type": "Point", "coordinates": [ 150.664, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101478, "decimalLat": -29.489573 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950099, "decimalLat": -36.567944 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.568 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607909, "decimalLat": -34.422117 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.985567, "decimalLat": -30.325627 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -30.326 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.032271, "decimalLat": -32.737456 }, "geometry": { "type": "Point", "coordinates": [ 152.032, -32.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630564, "decimalLat": -34.386856 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.56183, "decimalLat": -32.878254 }, "geometry": { "type": "Point", "coordinates": [ 151.562, -32.878 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.084819, "decimalLat": -33.773468 }, "geometry": { "type": "Point", "coordinates": [ 150.085, -33.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63083, "decimalLat": -34.420634 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600248, "decimalLat": -34.428656 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104273, "decimalLat": -29.480005 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.052402, "decimalLat": -31.050913 }, "geometry": { "type": "Point", "coordinates": [ 151.052, -31.051 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064857, "decimalLat": -32.709513 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518205, "decimalLat": -34.446572 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63672, "decimalLat": -34.488039 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103945, "decimalLat": -29.485403 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637386, "decimalLat": -34.487998 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899325, "decimalLat": -29.631042 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631149, "decimalLat": -34.388103 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616485, "decimalLat": -34.433121 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633497, "decimalLat": -34.41826 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298252, "decimalLat": -28.818425 }, "geometry": { "type": "Point", "coordinates": [ 153.298, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063956, "decimalLat": -32.706625 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.573283, "decimalLat": -34.235075 }, "geometry": { "type": "Point", "coordinates": [ 150.573, -34.235 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.521988, "decimalLat": -32.320798 }, "geometry": { "type": "Point", "coordinates": [ 152.522, -32.321 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606051, "decimalLat": -34.437659 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640684, "decimalLat": -34.49421 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103755, "decimalLat": -29.485564 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.315929, "decimalLat": -36.297209 }, "geometry": { "type": "Point", "coordinates": [ 149.316, -36.297 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520556, "decimalLat": -34.466038 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.943147, "decimalLat": -36.549371 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.549 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.603034, "decimalLat": -30.493343 }, "geometry": { "type": "Point", "coordinates": [ 151.603, -30.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064978, "decimalLat": -32.711152 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794076, "decimalLat": -31.641862 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.642 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109256, "decimalLat": -29.490862 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51961, "decimalLat": -34.463089 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627809, "decimalLat": -34.397396 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.777302, "decimalLat": -30.885013 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 145.554672, "decimalLat": -35.813324 }, "geometry": { "type": "Point", "coordinates": [ 145.555, -35.813 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833136, "decimalLat": -34.085987 }, "geometry": { "type": "Point", "coordinates": [ 150.833, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90564, "decimalLat": -31.438605 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604245, "decimalLat": -34.438047 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.350394, "decimalLat": -36.154546 }, "geometry": { "type": "Point", "coordinates": [ 149.35, -36.155 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.11033, "decimalLat": -30.301338 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -30.301 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616622, "decimalLat": -34.435179 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627106, "decimalLat": -34.389566 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.247952, "decimalLat": -36.197052 }, "geometry": { "type": "Point", "coordinates": [ 149.248, -36.197 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606838, "decimalLat": -34.45584 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527682, "decimalLat": -34.466552 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.601811, "decimalLat": -31.652219 }, "geometry": { "type": "Point", "coordinates": [ 152.602, -31.652 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272501, "decimalLat": -28.931682 }, "geometry": { "type": "Point", "coordinates": [ 153.273, -28.932 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.36138, "decimalLat": -28.6829 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.816657, "decimalLat": -30.258572 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -30.259 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.058609, "decimalLat": -29.740233 }, "geometry": { "type": "Point", "coordinates": [ 151.059, -29.74 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608341, "decimalLat": -34.432132 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624392, "decimalLat": -34.387846 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.660062, "decimalLat": -32.659944 }, "geometry": { "type": "Point", "coordinates": [ 151.66, -32.66 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.091706, "decimalLat": -33.140339 }, "geometry": { "type": "Point", "coordinates": [ 151.092, -33.14 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299386, "decimalLat": -28.811981 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.812 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.795181, "decimalLat": -34.229227 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.229 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.94186, "decimalLat": -30.493998 }, "geometry": { "type": "Point", "coordinates": [ 152.942, -30.494 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.010074, "decimalLat": -36.579686 }, "geometry": { "type": "Point", "coordinates": [ 150.01, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.117983, "decimalLat": -32.71853 }, "geometry": { "type": "Point", "coordinates": [ 152.118, -32.719 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.204264, "decimalLat": -32.226111 }, "geometry": { "type": "Point", "coordinates": [ 152.204, -32.226 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.041198, "decimalLat": -30.42329 }, "geometry": { "type": "Point", "coordinates": [ 153.041, -30.423 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875153, "decimalLat": -29.679916 }, "geometry": { "type": "Point", "coordinates": [ 152.875, -29.68 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.873157, "decimalLat": -28.473865 }, "geometry": { "type": "Point", "coordinates": [ 152.873, -28.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.071672, "decimalLat": -32.708486 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.555833, "decimalLat": -28.399167 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645115, "decimalLat": -34.398091 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893032, "decimalLat": -31.432924 }, "geometry": { "type": "Point", "coordinates": [ 152.893, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.353561, "decimalLat": -28.854374 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -28.854 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.984468, "decimalLat": -29.037243 }, "geometry": { "type": "Point", "coordinates": [ 152.984, -29.037 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786074, "decimalLat": -33.713879 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108162, "decimalLat": -29.490563 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104132, "decimalLat": -29.480026 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631208, "decimalLat": -34.387572 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613949, "decimalLat": -34.433125 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556036, "decimalLat": -28.399676 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610031, "decimalLat": -34.419787 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.862909, "decimalLat": -28.963657 }, "geometry": { "type": "Point", "coordinates": [ 152.863, -28.964 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101757, "decimalLat": -29.489638 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.18008, "decimalLat": -28.731193 }, "geometry": { "type": "Point", "coordinates": [ 153.18, -28.731 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103806, "decimalLat": -29.485599 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.93214, "decimalLat": -31.474821 }, "geometry": { "type": "Point", "coordinates": [ 152.932, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495239, "decimalLat": -28.694401 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.694 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.50506, "decimalLat": -28.79448 }, "geometry": { "type": "Point", "coordinates": [ 153.505, -28.794 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103779, "decimalLat": -29.485566 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637589, "decimalLat": -34.488498 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.490082 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.360264, "decimalLat": -28.647291 }, "geometry": { "type": "Point", "coordinates": [ 153.36, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644559, "decimalLat": -34.393104 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639832, "decimalLat": -34.400334 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929452, "decimalLat": -29.726558 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -29.727 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.192249, "decimalLat": -32.23198 }, "geometry": { "type": "Point", "coordinates": [ 152.192, -32.232 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.401925, "decimalLat": -28.258683 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.405888, "decimalLat": -28.260697 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522568, "decimalLat": -34.463897 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.988175, "decimalLat": -29.030741 }, "geometry": { "type": "Point", "coordinates": [ 152.988, -29.031 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523417, "decimalLat": -34.464627 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.439474, "decimalLat": -33.65595 }, "geometry": { "type": "Point", "coordinates": [ 149.439, -33.656 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.318201, "decimalLat": -36.298561 }, "geometry": { "type": "Point", "coordinates": [ 149.318, -36.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516521, "decimalLat": -34.447223 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519856, "decimalLat": -34.452916 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094928, "decimalLat": -29.483465 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.483 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.217687, "decimalLat": -28.873864 }, "geometry": { "type": "Point", "coordinates": [ 153.218, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615948, "decimalLat": -34.430947 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512869, "decimalLat": -34.445967 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61028, "decimalLat": -34.419089 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631041, "decimalLat": -34.388858 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921877, "decimalLat": -31.480608 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659902, "decimalLat": -34.455263 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.837478, "decimalLat": -34.078738 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.079 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519668, "decimalLat": -34.447142 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644497, "decimalLat": -34.393761 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.209798, "decimalLat": -31.560491 }, "geometry": { "type": "Point", "coordinates": [ 152.21, -31.56 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630734, "decimalLat": -34.42056 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520919, "decimalLat": -34.432797 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.077239, "decimalLat": -32.725515 }, "geometry": { "type": "Point", "coordinates": [ 152.077, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889071, "decimalLat": -31.263642 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -31.264 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637466, "decimalLat": -34.423728 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606793, "decimalLat": -34.434527 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.177441, "decimalLat": -30.099383 }, "geometry": { "type": "Point", "coordinates": [ 152.177, -30.099 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.514233, "decimalLat": -28.782321 }, "geometry": { "type": "Point", "coordinates": [ 153.514, -28.782 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604809, "decimalLat": -34.427033 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786474, "decimalLat": -31.629845 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617261, "decimalLat": -34.440276 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.014627, "decimalLat": -32.732744 }, "geometry": { "type": "Point", "coordinates": [ 152.015, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842335, "decimalLat": -34.068546 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901709, "decimalLat": -31.468197 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.298615, "decimalLat": -28.994479 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.994 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785544, "decimalLat": -33.715627 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516066, "decimalLat": -34.443815 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611393, "decimalLat": -34.419733 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.353992, "decimalLat": -31.904265 }, "geometry": { "type": "Point", "coordinates": [ 152.354, -31.904 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.543334, "decimalLat": -32.059492 }, "geometry": { "type": "Point", "coordinates": [ 152.543, -32.059 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513934, "decimalLat": -34.447107 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517016, "decimalLat": -34.447395 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617353, "decimalLat": -34.399853 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103269, "decimalLat": -29.489157 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609828, "decimalLat": -34.419296 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627532, "decimalLat": -34.389872 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639757, "decimalLat": -34.399142 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625326, "decimalLat": -34.384447 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513857, "decimalLat": -34.445672 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091028, "decimalLat": -29.487528 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523113, "decimalLat": -34.465351 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613835, "decimalLat": -34.431023 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.661013, "decimalLat": -34.458747 }, "geometry": { "type": "Point", "coordinates": [ 150.661, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60997, "decimalLat": -34.429595 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.735521, "decimalLat": -34.298171 }, "geometry": { "type": "Point", "coordinates": [ 150.736, -34.298 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.124429, "decimalLat": -30.294545 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.295 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833136, "decimalLat": -34.085987 }, "geometry": { "type": "Point", "coordinates": [ 150.833, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639187, "decimalLat": -34.3931 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.777302, "decimalLat": -30.885013 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -30.885 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616546, "decimalLat": -34.437855 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606984, "decimalLat": -34.45532 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.437824, "decimalLat": -28.990842 }, "geometry": { "type": "Point", "coordinates": [ 153.438, -28.991 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630031, "decimalLat": -34.395375 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065376, "decimalLat": -32.71109 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519531, "decimalLat": -34.456551 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556043, "decimalLat": -28.399617 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870156, "decimalLat": -31.303312 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -31.303 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316666, "decimalLat": -28.842289 }, "geometry": { "type": "Point", "coordinates": [ 153.317, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.465827, "decimalLat": -28.326579 }, "geometry": { "type": "Point", "coordinates": [ 153.466, -28.327 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867852, "decimalLat": -31.475231 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618929, "decimalLat": -34.439398 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926025, "decimalLat": -31.449309 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.361038, "decimalLat": -28.941392 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359068, "decimalLat": -31.912724 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.913 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603285, "decimalLat": -34.436974 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.008633, "decimalLat": -34.045432 }, "geometry": { "type": "Point", "coordinates": [ 151.009, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110608, "decimalLat": -29.49028 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.088396, "decimalLat": -32.737588 }, "geometry": { "type": "Point", "coordinates": [ 152.088, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941793, "decimalLat": -36.651646 }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.652 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00351, "decimalLat": -32.728513 }, "geometry": { "type": "Point", "coordinates": [ 152.004, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.633033, "decimalLat": -30.22867 }, "geometry": { "type": "Point", "coordinates": [ 152.633, -30.229 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78601, "decimalLat": -33.709233 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.629182, "decimalLat": -28.637454 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.472157, "decimalLat": -34.492082 }, "geometry": { "type": "Point", "coordinates": [ 150.472, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609468, "decimalLat": -34.42047 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.111016, "decimalLat": -29.487579 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.765357, "decimalLat": -32.698016 }, "geometry": { "type": "Point", "coordinates": [ 151.765, -32.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395134, "decimalLat": -28.959978 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343646, "decimalLat": -28.866891 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.343492, "decimalLat": -36.309402 }, "geometry": { "type": "Point", "coordinates": [ 149.343, -36.309 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343041, "decimalLat": -28.650293 }, "geometry": { "type": "Point", "coordinates": [ 153.343, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.359003, "decimalLat": -31.924406 }, "geometry": { "type": "Point", "coordinates": [ 152.359, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925913, "decimalLat": -31.452603 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616424, "decimalLat": -34.434481 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434097, "decimalLat": -28.843092 }, "geometry": { "type": "Point", "coordinates": [ 153.434, -28.843 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.81033, "decimalLat": -34.100569 }, "geometry": { "type": "Point", "coordinates": [ 150.81, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633885, "decimalLat": -34.39251 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787261, "decimalLat": -33.703676 }, "geometry": { "type": "Point", "coordinates": [ 150.787, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302753, "decimalLat": -28.844532 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610394, "decimalLat": -34.449825 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.549036, "decimalLat": -28.635342 }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.635 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523879, "decimalLat": -34.463743 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.035894, "decimalLat": -32.764968 }, "geometry": { "type": "Point", "coordinates": [ 152.036, -32.765 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104205, "decimalLat": -29.479743 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785008, "decimalLat": -33.71601 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523822, "decimalLat": -34.463814 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603727, "decimalLat": -34.439407 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108156, "decimalLat": -29.490591 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868147, "decimalLat": -29.667173 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104197, "decimalLat": -29.47971 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90886, "decimalLat": -31.440613 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513046, "decimalLat": -34.447332 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.338339, "decimalLat": -28.813729 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.028485, "decimalLat": -32.732632 }, "geometry": { "type": "Point", "coordinates": [ 152.028, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.089026, "decimalLat": -28.784836 }, "geometry": { "type": "Point", "coordinates": [ 152.089, -28.785 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.935083, "decimalLat": -30.382081 }, "geometry": { "type": "Point", "coordinates": [ 152.935, -30.382 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.619405, "decimalLat": -34.439479 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888231, "decimalLat": -31.434633 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.531628, "decimalLat": -28.217436 }, "geometry": { "type": "Point", "coordinates": [ 153.532, -28.217 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.828321, "decimalLat": -29.492989 }, "geometry": { "type": "Point", "coordinates": [ 152.828, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609897, "decimalLat": -34.455053 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513094, "decimalLat": -34.447171 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637987, "decimalLat": -34.419907 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628415, "decimalLat": -34.420623 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610522, "decimalLat": -34.420527 }, "geometry": { "type": "Point", "coordinates": [ 150.611, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627193, "decimalLat": -34.389577 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644947, "decimalLat": -34.391281 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637532, "decimalLat": -34.420214 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602978, "decimalLat": -34.437076 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905423, "decimalLat": -31.489423 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642211, "decimalLat": -34.403923 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.404 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109363, "decimalLat": -29.490479 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394095, "decimalLat": -29.019628 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -29.02 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.60109, "decimalLat": -30.46038 }, "geometry": { "type": "Point", "coordinates": [ 151.601, -30.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534558, "decimalLat": -34.459263 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.200143, "decimalLat": -32.231881 }, "geometry": { "type": "Point", "coordinates": [ 152.2, -32.232 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604001, "decimalLat": -34.451539 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603979, "decimalLat": -34.427169 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613973, "decimalLat": -34.433054 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.781251, "decimalLat": -32.611168 }, "geometry": { "type": "Point", "coordinates": [ 151.781, -32.611 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597347, "decimalLat": -34.450542 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.168685, "decimalLat": -33.565048 }, "geometry": { "type": "Point", "coordinates": [ 151.169, -33.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.609158, "decimalLat": -28.687821 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.688 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516994, "decimalLat": -34.447403 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.270147, "decimalLat": -29.010897 }, "geometry": { "type": "Point", "coordinates": [ 153.27, -29.011 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103956, "decimalLat": -29.485314 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603044, "decimalLat": -34.417622 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528988, "decimalLat": -34.471357 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919486, "decimalLat": -31.474602 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9197, "decimalLat": -31.469108 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.297436, "decimalLat": -28.824085 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101767, "decimalLat": -29.489788 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604385, "decimalLat": -34.438483 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.282528, "decimalLat": -28.665174 }, "geometry": { "type": "Point", "coordinates": [ 153.283, -28.665 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.509243, "decimalLat": -28.666544 }, "geometry": { "type": "Point", "coordinates": [ 153.509, -28.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51642, "decimalLat": -34.44878 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.910145, "decimalLat": -31.444809 }, "geometry": { "type": "Point", "coordinates": [ 152.91, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.837726, "decimalLat": -34.092213 }, "geometry": { "type": "Point", "coordinates": [ 150.838, -34.092 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.803232, "decimalLat": -34.175957 }, "geometry": { "type": "Point", "coordinates": [ 150.803, -34.176 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618043, "decimalLat": -34.429599 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307137, "decimalLat": -28.963487 }, "geometry": { "type": "Point", "coordinates": [ 153.307, -28.963 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645156, "decimalLat": -34.393143 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533401, "decimalLat": -34.478946 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609757, "decimalLat": -34.455014 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552127, "decimalLat": -33.491212 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.39393, "decimalLat": -28.959084 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629025, "decimalLat": -34.395148 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522292, "decimalLat": -34.465127 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616314, "decimalLat": -34.435669 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558056, "decimalLat": -28.373982 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626278, "decimalLat": -34.421177 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614855, "decimalLat": -34.4296 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520246, "decimalLat": -34.465491 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103736, "decimalLat": -29.485716 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10431, "decimalLat": -29.477866 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.95424, "decimalLat": -32.65304 }, "geometry": { "type": "Point", "coordinates": [ 151.954, -32.653 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638887, "decimalLat": -34.492661 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.100896, "decimalLat": -29.490089 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104015, "decimalLat": -29.479402 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.031304, "decimalLat": -30.379066 }, "geometry": { "type": "Point", "coordinates": [ 153.031, -30.379 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958935, "decimalLat": -36.568735 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.569 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657881, "decimalLat": -34.458236 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.794683, "decimalLat": -32.561276 }, "geometry": { "type": "Point", "coordinates": [ 151.795, -32.561 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599119, "decimalLat": -34.41182 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.886664, "decimalLat": -31.439524 }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517385, "decimalLat": -34.446321 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6412, "decimalLat": -34.395005 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.584803, "decimalLat": -28.853089 }, "geometry": { "type": "Point", "coordinates": [ 153.585, -28.853 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.343432, "decimalLat": -31.989129 }, "geometry": { "type": "Point", "coordinates": [ 152.343, -31.989 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.961734, "decimalLat": -36.432507 }, "geometry": { "type": "Point", "coordinates": [ 149.962, -36.433 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894957, "decimalLat": -31.448241 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615392, "decimalLat": -34.430981 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630093, "decimalLat": -34.394303 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.308724, "decimalLat": -29.053097 }, "geometry": { "type": "Point", "coordinates": [ 153.309, -29.053 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.254457, "decimalLat": -32.378769 }, "geometry": { "type": "Point", "coordinates": [ 152.254, -32.379 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60451, "decimalLat": -34.424565 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627106, "decimalLat": -34.389566 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.024681, "decimalLat": -30.389392 }, "geometry": { "type": "Point", "coordinates": [ 153.025, -30.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808191, "decimalLat": -34.099195 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.099 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604938, "decimalLat": -34.426719 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334391, "decimalLat": -28.81335 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.813 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808265, "decimalLat": -34.098144 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632795, "decimalLat": -34.418842 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109315, "decimalLat": -29.490661 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.716871, "decimalLat": -30.193844 }, "geometry": { "type": "Point", "coordinates": [ 152.717, -30.194 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602551, "decimalLat": -34.43677 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.523414, "decimalLat": -28.670068 }, "geometry": { "type": "Point", "coordinates": [ 153.523, -28.67 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634954, "decimalLat": -34.487753 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.425848, "decimalLat": -28.808432 }, "geometry": { "type": "Point", "coordinates": [ 153.426, -28.808 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.939011, "decimalLat": -29.336773 }, "geometry": { "type": "Point", "coordinates": [ 152.939, -29.337 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515834, "decimalLat": -34.448723 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523148, "decimalLat": -34.463783 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925913, "decimalLat": -31.476299 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.476 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523178, "decimalLat": -34.452109 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.994744, "decimalLat": -36.560944 }, "geometry": { "type": "Point", "coordinates": [ 149.995, -36.561 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063362, "decimalLat": -32.706031 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868083, "decimalLat": -29.667378 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.367836, "decimalLat": -34.370469 }, "geometry": { "type": "Point", "coordinates": [ 150.368, -34.37 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.940685, "decimalLat": -29.736919 }, "geometry": { "type": "Point", "coordinates": [ 152.941, -29.737 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515992, "decimalLat": -34.437881 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898147, "decimalLat": -31.443412 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625809, "decimalLat": -34.386196 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.056193, "decimalLat": -33.771553 }, "geometry": { "type": "Point", "coordinates": [ 150.056, -33.772 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786211, "decimalLat": -33.710408 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.658632, "decimalLat": -34.455113 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.787828, "decimalLat": -33.703382 }, "geometry": { "type": "Point", "coordinates": [ 150.788, -33.703 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.82411, "decimalLat": -29.505069 }, "geometry": { "type": "Point", "coordinates": [ 152.824, -29.505 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.119262, "decimalLat": -30.312989 }, "geometry": { "type": "Point", "coordinates": [ 153.119, -30.313 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.06338, "decimalLat": -32.70637 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788816, "decimalLat": -31.151319 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -31.151 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.942556, "decimalLat": -36.497108 }, "geometry": { "type": "Point", "coordinates": [ 149.943, -36.497 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.528025, "decimalLat": -28.809405 }, "geometry": { "type": "Point", "coordinates": [ 153.528, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603321, "decimalLat": -34.438777 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624252, "decimalLat": -34.386274 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.601286, "decimalLat": -34.425061 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521894, "decimalLat": -34.459466 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61585, "decimalLat": -34.436318 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928694, "decimalLat": -31.459099 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885263, "decimalLat": -34.019362 }, "geometry": { "type": "Point", "coordinates": [ 150.885, -34.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383625, "decimalLat": -31.923917 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -31.924 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522695, "decimalLat": -34.465865 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.331243, "decimalLat": -28.821749 }, "geometry": { "type": "Point", "coordinates": [ 153.331, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.112711, "decimalLat": -29.488433 }, "geometry": { "type": "Point", "coordinates": [ 153.113, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.450547, "decimalLat": -28.728134 }, "geometry": { "type": "Point", "coordinates": [ 153.451, -28.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.699196, "decimalLat": -34.245314 }, "geometry": { "type": "Point", "coordinates": [ 150.699, -34.245 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281192, "decimalLat": -28.822624 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.823 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.408399, "decimalLat": -28.866843 }, "geometry": { "type": "Point", "coordinates": [ 153.408, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.788914, "decimalLat": -34.202078 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.202 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077049, "decimalLat": -29.450991 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.985867, "decimalLat": -29.032133 }, "geometry": { "type": "Point", "coordinates": [ 152.986, -29.032 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615886, "decimalLat": -34.436192 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63605, "decimalLat": -34.485556 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104176, "decimalLat": -29.482101 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.9259, "decimalLat": -31.44678 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101247, "decimalLat": -29.489867 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610322, "decimalLat": -34.419117 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615886, "decimalLat": -34.436192 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.848222, "decimalLat": -34.046584 }, "geometry": { "type": "Point", "coordinates": [ 150.848, -34.047 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.682102, "decimalLat": -31.859414 }, "geometry": { "type": "Point", "coordinates": [ 152.682, -31.859 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.958138, "decimalLat": -32.00729 }, "geometry": { "type": "Point", "coordinates": [ 151.958, -32.007 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930138, "decimalLat": -31.470377 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.6989, "decimalLat": -32.3727 }, "geometry": { "type": "Point", "coordinates": [ 150.699, -32.373 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907682, "decimalLat": -31.442396 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103627, "decimalLat": -29.485481 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104085, "decimalLat": -29.485328 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524339, "decimalLat": -34.459948 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.080376, "decimalLat": -29.46089 }, "geometry": { "type": "Point", "coordinates": [ 150.08, -29.461 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277965, "decimalLat": -28.8186 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878917, "decimalLat": -31.44848 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896427, "decimalLat": -29.320973 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -29.321 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.968131, "decimalLat": -36.578885 }, "geometry": { "type": "Point", "coordinates": [ 149.968, -36.579 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.78609, "decimalLat": -32.515486 }, "geometry": { "type": "Point", "coordinates": [ 151.786, -32.515 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630056, "decimalLat": -34.388316 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919618, "decimalLat": -30.505908 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -30.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104042, "decimalLat": -29.485235 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.887816, "decimalLat": -31.438946 }, "geometry": { "type": "Point", "coordinates": [ 152.888, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513904, "decimalLat": -34.446286 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519487, "decimalLat": -34.456559 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279241, "decimalLat": -28.839565 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090199, "decimalLat": -28.598288 }, "geometry": { "type": "Point", "coordinates": [ 153.09, -28.598 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.316085, "decimalLat": -36.297668 }, "geometry": { "type": "Point", "coordinates": [ 149.316, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521069, "decimalLat": -34.466752 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.721327, "decimalLat": -31.344344 }, "geometry": { "type": "Point", "coordinates": [ 152.721, -31.344 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907539, "decimalLat": -31.481143 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.782861, "decimalLat": -31.484926 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -31.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.917368, "decimalLat": -31.457371 }, "geometry": { "type": "Point", "coordinates": [ 152.917, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631159, "decimalLat": -34.38813 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610212, "decimalLat": -34.419178 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.115652, "decimalLat": -33.753414 }, "geometry": { "type": "Point", "coordinates": [ 150.116, -33.753 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51724, "decimalLat": -34.451592 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929026, "decimalLat": -31.450143 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517362, "decimalLat": -34.446356 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632618, "decimalLat": -34.41974 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630406, "decimalLat": -34.388629 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.436993, "decimalLat": -28.606017 }, "geometry": { "type": "Point", "coordinates": [ 153.437, -28.606 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630387, "decimalLat": -34.420914 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926095, "decimalLat": -31.476858 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.477 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.334325, "decimalLat": -28.814419 }, "geometry": { "type": "Point", "coordinates": [ 153.334, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624249, "decimalLat": -34.400618 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063111, "decimalLat": -32.706584 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91134, "decimalLat": -31.443011 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604095, "decimalLat": -34.43873 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.979238, "decimalLat": -36.570187 }, "geometry": { "type": "Point", "coordinates": [ 149.979, -36.57 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039783, "decimalLat": -32.731611 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638503, "decimalLat": -34.49122 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635814, "decimalLat": -34.48813 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.413379, "decimalLat": -29.602081 }, "geometry": { "type": "Point", "coordinates": [ 151.413, -29.602 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630939, "decimalLat": -34.394022 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608902, "decimalLat": -34.435001 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605001, "decimalLat": -34.437846 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513473, "decimalLat": -34.446493 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519924, "decimalLat": -34.436645 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915406, "decimalLat": -31.47889 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.479 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513128, "decimalLat": -34.447145 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556042, "decimalLat": -28.398675 }, "geometry": { "type": "Point", "coordinates": [ 153.556, -28.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604031, "decimalLat": -34.424962 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51592, "decimalLat": -34.444713 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.229425, "decimalLat": -28.830976 }, "geometry": { "type": "Point", "coordinates": [ 153.229, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627606, "decimalLat": -34.421915 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785888, "decimalLat": -33.706893 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103854, "decimalLat": -29.48558 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.031397, "decimalLat": -34.031656 }, "geometry": { "type": "Point", "coordinates": [ 151.031, -34.032 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.063479, "decimalLat": -33.774089 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514346, "decimalLat": -34.447169 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.257472, "decimalLat": -30.075486 }, "geometry": { "type": "Point", "coordinates": [ 152.257, -30.075 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.970947, "decimalLat": -29.492994 }, "geometry": { "type": "Point", "coordinates": [ 151.971, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600398, "decimalLat": -34.454975 }, "geometry": { "type": "Point", "coordinates": [ 150.6, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622895, "decimalLat": -34.397319 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784784, "decimalLat": -33.713683 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634242, "decimalLat": -34.420006 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355785, "decimalLat": -31.85809 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557802, "decimalLat": -28.396817 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603885, "decimalLat": -34.452537 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517443, "decimalLat": -34.440309 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.355934, "decimalLat": -37.177314 }, "geometry": { "type": "Point", "coordinates": [ 149.356, -37.177 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104256, "decimalLat": -29.47753 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103457, "decimalLat": -29.485716 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.814073, "decimalLat": -31.121882 }, "geometry": { "type": "Point", "coordinates": [ 152.814, -31.122 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609645, "decimalLat": -34.436395 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519346, "decimalLat": -34.448082 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552086, "decimalLat": -33.491096 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524932, "decimalLat": -34.447979 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.62828, "decimalLat": -28.63718 }, "geometry": { "type": "Point", "coordinates": [ 153.628, -28.637 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.732487, "decimalLat": -31.230772 }, "geometry": { "type": "Point", "coordinates": [ 152.732, -31.231 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.361038, "decimalLat": -28.941392 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62739, "decimalLat": -34.420306 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101671, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518438, "decimalLat": -34.457449 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639256, "decimalLat": -34.397203 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103248, "decimalLat": -29.486724 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52788, "decimalLat": -34.456513 }, "geometry": { "type": "Point", "coordinates": [ 150.528, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626878, "decimalLat": -34.385685 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.511551, "decimalLat": -28.575997 }, "geometry": { "type": "Point", "coordinates": [ 153.512, -28.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916246, "decimalLat": -31.454545 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.691331, "decimalLat": -32.67215 }, "geometry": { "type": "Point", "coordinates": [ 151.691, -32.672 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.636113, "decimalLat": -32.569722 }, "geometry": { "type": "Point", "coordinates": [ 149.636, -32.57 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.134042, "decimalLat": -32.200299 }, "geometry": { "type": "Point", "coordinates": [ 152.134, -32.2 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.858631, "decimalLat": -30.908334 }, "geometry": { "type": "Point", "coordinates": [ 152.859, -30.908 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521607, "decimalLat": -34.45296 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603313, "decimalLat": -34.427229 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.80354, "decimalLat": -34.1207 }, "geometry": { "type": "Point", "coordinates": [ 150.804, -34.121 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108156, "decimalLat": -29.490227 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626331, "decimalLat": -34.421223 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659947, "decimalLat": -33.528552 }, "geometry": { "type": "Point", "coordinates": [ 150.66, -33.529 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927654, "decimalLat": -31.454996 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104112, "decimalLat": -29.478487 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784861, "decimalLat": -34.191884 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -34.192 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631313, "decimalLat": -34.420102 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62608, "decimalLat": -34.390466 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636196, "decimalLat": -34.487723 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632706, "decimalLat": -34.418903 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904658, "decimalLat": -31.444491 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52545, "decimalLat": -34.459917 }, "geometry": { "type": "Point", "coordinates": [ 150.525, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915031, "decimalLat": -31.450542 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793722, "decimalLat": -30.215801 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -30.216 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.839469, "decimalLat": -29.580973 }, "geometry": { "type": "Point", "coordinates": [ 152.839, -29.581 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519942, "decimalLat": -34.452593 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520277, "decimalLat": -34.447903 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.324544, "decimalLat": -28.825256 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556825, "decimalLat": -28.400103 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.294555, "decimalLat": -28.865479 }, "geometry": { "type": "Point", "coordinates": [ 153.295, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930176, "decimalLat": -31.467513 }, "geometry": { "type": "Point", "coordinates": [ 152.93, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335602, "decimalLat": -28.818247 }, "geometry": { "type": "Point", "coordinates": [ 153.336, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618673, "decimalLat": -34.4396 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103468, "decimalLat": -29.485613 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 15, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 151.059914, "decimalLat": -29.773032 }, "geometry": { "type": "Point", "coordinates": [ 151.06, -29.773 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.61722, "decimalLat": -34.449769 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52559, "decimalLat": -34.465518 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927752, "decimalLat": -31.465781 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603908, "decimalLat": -34.45059 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516481, "decimalLat": -34.450043 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.355785, "decimalLat": -31.85809 }, "geometry": { "type": "Point", "coordinates": [ 152.356, -31.858 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.626468, "decimalLat": -34.390582 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.471685, "decimalLat": -28.261421 }, "geometry": { "type": "Point", "coordinates": [ 153.472, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.647073, "decimalLat": -32.055032 }, "geometry": { "type": "Point", "coordinates": [ 151.647, -32.055 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632646, "decimalLat": -34.392883 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.808172, "decimalLat": -32.664396 }, "geometry": { "type": "Point", "coordinates": [ 151.808, -32.664 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.062901, "decimalLat": -32.739393 }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103945, "decimalLat": -29.489582 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.995718, "decimalLat": -30.40733 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -30.407 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925167, "decimalLat": -31.454381 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10409, "decimalLat": -29.483708 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.346548, "decimalLat": -28.910046 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.91 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.723198, "decimalLat": -30.163734 }, "geometry": { "type": "Point", "coordinates": [ 152.723, -30.164 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.184716, "decimalLat": -28.889524 }, "geometry": { "type": "Point", "coordinates": [ 153.185, -28.89 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400663, "decimalLat": -28.257777 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.256332, "decimalLat": -28.88355 }, "geometry": { "type": "Point", "coordinates": [ 153.256, -28.884 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.093798, "decimalLat": -31.403015 }, "geometry": { "type": "Point", "coordinates": [ 152.094, -31.403 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.192626, "decimalLat": -34.625558 }, "geometry": { "type": "Point", "coordinates": [ 150.193, -34.626 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625461, "decimalLat": -34.386199 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.346548, "decimalLat": -28.910046 }, "geometry": { "type": "Point", "coordinates": [ 153.347, -28.91 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637191, "decimalLat": -34.42384 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615752, "decimalLat": -34.430952 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.960569, "decimalLat": -36.271187 }, "geometry": { "type": "Point", "coordinates": [ 149.961, -36.271 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.280877, "decimalLat": -28.676101 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616792, "decimalLat": -34.43035 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62672, "decimalLat": -34.38936 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.193671, "decimalLat": -29.424245 }, "geometry": { "type": "Point", "coordinates": [ 153.194, -29.424 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905563, "decimalLat": -31.437056 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624462, "decimalLat": -34.388063 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98111, "decimalLat": -30.437334 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -30.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.57961, "decimalLat": -32.64281 }, "geometry": { "type": "Point", "coordinates": [ 151.58, -32.643 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110522, "decimalLat": -29.490119 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903766, "decimalLat": -31.470255 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533263, "decimalLat": -34.479575 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640566, "decimalLat": -34.494136 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925045, "decimalLat": -31.468337 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608333, "decimalLat": -34.430888 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.102481, "decimalLat": -29.48791 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.887989, "decimalLat": -36.587028 }, "geometry": { "type": "Point", "coordinates": [ 149.888, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517195, "decimalLat": -34.452014 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624407, "decimalLat": -34.388089 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627396, "decimalLat": -34.386624 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.970025, "decimalLat": -31.192666 }, "geometry": { "type": "Point", "coordinates": [ 152.97, -31.193 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523646, "decimalLat": -34.464253 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52004, "decimalLat": -34.454786 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929108, "decimalLat": -31.459146 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604618, "decimalLat": -34.438695 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091532, "decimalLat": -29.488079 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514386, "decimalLat": -34.444691 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063686, "decimalLat": -32.705979 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104026, "decimalLat": -29.485155 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296004, "decimalLat": -28.818579 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.318536, "decimalLat": -28.820603 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.035146, "decimalLat": -32.655936 }, "geometry": { "type": "Point", "coordinates": [ 152.035, -32.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603853, "decimalLat": -34.440726 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629781, "decimalLat": -34.420803 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784933, "decimalLat": -33.710825 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.801061, "decimalLat": -34.186864 }, "geometry": { "type": "Point", "coordinates": [ 150.801, -34.187 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.491353, "decimalLat": -28.672094 }, "geometry": { "type": "Point", "coordinates": [ 153.491, -28.672 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629168, "decimalLat": -34.395872 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640334, "decimalLat": -34.397548 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.612163, "decimalLat": -34.432045 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607956, "decimalLat": -34.43382 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927676, "decimalLat": -31.466373 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904658, "decimalLat": -31.445977 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.328001, "decimalLat": -36.151214 }, "geometry": { "type": "Point", "coordinates": [ 149.328, -36.151 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516989, "decimalLat": -34.460344 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637404, "decimalLat": -34.420509 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925178, "decimalLat": -31.454161 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520295, "decimalLat": -34.465672 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639142, "decimalLat": -34.491341 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.011428, "decimalLat": -31.12504 }, "geometry": { "type": "Point", "coordinates": [ 150.011, -31.125 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.283518, "decimalLat": -28.830771 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.475189, "decimalLat": -28.612152 }, "geometry": { "type": "Point", "coordinates": [ 153.475, -28.612 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.941789, "decimalLat": -30.493965 }, "geometry": { "type": "Point", "coordinates": [ 152.942, -30.494 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.798126, "decimalLat": -34.11278 }, "geometry": { "type": "Point", "coordinates": [ 150.798, -34.113 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627338, "decimalLat": -34.386343 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604396, "decimalLat": -34.438095 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.025304, "decimalLat": -32.738539 }, "geometry": { "type": "Point", "coordinates": [ 152.025, -32.739 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607272, "decimalLat": -34.437602 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.900994, "decimalLat": -33.998837 }, "geometry": { "type": "Point", "coordinates": [ 150.901, -33.999 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919189, "decimalLat": -31.474508 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514498, "decimalLat": -34.443882 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784028, "decimalLat": -33.717367 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.65549, "decimalLat": -33.52261 }, "geometry": { "type": "Point", "coordinates": [ 150.655, -33.523 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513074, "decimalLat": -34.447107 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.600987, "decimalLat": -34.533564 }, "geometry": { "type": "Point", "coordinates": [ 150.601, -34.534 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918296, "decimalLat": -31.470536 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60798, "decimalLat": -28.675791 }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10394, "decimalLat": -29.489554 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785269, "decimalLat": -33.708241 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.304941, "decimalLat": -28.849375 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -28.849 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.987591, "decimalLat": -36.656844 }, "geometry": { "type": "Point", "coordinates": [ 149.988, -36.657 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785737, "decimalLat": -31.629485 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.629 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.790133, "decimalLat": -31.637733 }, "geometry": { "type": "Point", "coordinates": [ 152.79, -31.638 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.490133 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090974, "decimalLat": -29.487677 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535003, "decimalLat": -34.463355 }, "geometry": { "type": "Point", "coordinates": [ 150.535, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.809884, "decimalLat": -32.115553 }, "geometry": { "type": "Point", "coordinates": [ 151.81, -32.116 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.875764, "decimalLat": -29.679799 }, "geometry": { "type": "Point", "coordinates": [ 152.876, -29.68 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526643, "decimalLat": -34.469281 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10932, "decimalLat": -29.490675 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643718, "decimalLat": -34.390924 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867632, "decimalLat": -29.667173 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.139095, "decimalLat": -32.735486 }, "geometry": { "type": "Point", "coordinates": [ 152.139, -32.735 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851464, "decimalLat": -29.692524 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523788, "decimalLat": -34.452446 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.930509, "decimalLat": -29.735054 }, "geometry": { "type": "Point", "coordinates": [ 152.931, -29.735 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603648, "decimalLat": -34.436476 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516095, "decimalLat": -34.450207 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522282, "decimalLat": -34.451496 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609027, "decimalLat": -34.435184 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454566, "decimalLat": -28.644521 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.645 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607682, "decimalLat": -34.436573 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.961718, "decimalLat": -34.094974 }, "geometry": { "type": "Point", "coordinates": [ 150.962, -34.095 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.598251, "decimalLat": -34.412885 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.413 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.300601, "decimalLat": -32.070198 }, "geometry": { "type": "Point", "coordinates": [ 152.301, -32.07 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.794729, "decimalLat": -34.142436 }, "geometry": { "type": "Point", "coordinates": [ 150.795, -34.142 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630139, "decimalLat": -34.420837 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514515, "decimalLat": -34.445857 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103913, "decimalLat": -29.485548 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.451033, "decimalLat": -34.729131 }, "geometry": { "type": "Point", "coordinates": [ 150.451, -34.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605071, "decimalLat": -34.433105 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.111005, "decimalLat": -29.487238 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.996814, "decimalLat": -32.721854 }, "geometry": { "type": "Point", "coordinates": [ 151.997, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.47153, "decimalLat": -34.49254 }, "geometry": { "type": "Point", "coordinates": [ 150.472, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.801965, "decimalLat": -31.125745 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -31.126 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325401, "decimalLat": -28.669044 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.669 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.515052, "decimalLat": -28.237636 }, "geometry": { "type": "Point", "coordinates": [ 153.515, -28.238 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632771, "decimalLat": -34.418922 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.525805, "decimalLat": -28.285188 }, "geometry": { "type": "Point", "coordinates": [ 152.526, -28.285 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897218, "decimalLat": -31.415256 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.415 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30459, "decimalLat": -28.817112 }, "geometry": { "type": "Point", "coordinates": [ 153.305, -28.817 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784436, "decimalLat": -33.716387 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.716 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.315879, "decimalLat": -28.849906 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.85 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609512, "decimalLat": -34.418911 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110738, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.371305, "decimalLat": -31.923096 }, "geometry": { "type": "Point", "coordinates": [ 152.371, -31.923 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642044, "decimalLat": -34.397068 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632099, "decimalLat": -34.394531 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523373, "decimalLat": -34.464653 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.53454, "decimalLat": -34.745121 }, "geometry": { "type": "Point", "coordinates": [ 146.535, -34.745 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518916, "decimalLat": -34.447181 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516767, "decimalLat": -34.448445 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.587159, "decimalLat": -32.967069 }, "geometry": { "type": "Point", "coordinates": [ 151.587, -32.967 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786202, "decimalLat": -33.706526 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.601971, "decimalLat": -28.647359 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.647 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.999247, "decimalLat": -36.565645 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.566 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615207, "decimalLat": -34.434809 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373789, "decimalLat": -31.914598 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.915 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642659, "decimalLat": -34.394537 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092347, "decimalLat": -29.488181 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921693, "decimalLat": -31.457184 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00028, "decimalLat": -32.632576 }, "geometry": { "type": "Point", "coordinates": [ 152.0, -32.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325549, "decimalLat": -28.387771 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842133, "decimalLat": -34.070234 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.07 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.948551, "decimalLat": -30.435307 }, "geometry": { "type": "Point", "coordinates": [ 152.949, -30.435 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.821368, "decimalLat": -34.101855 }, "geometry": { "type": "Point", "coordinates": [ 150.821, -34.102 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560115, "decimalLat": -28.393996 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.062851, "decimalLat": -33.77383 }, "geometry": { "type": "Point", "coordinates": [ 150.063, -33.774 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.171587, "decimalLat": -32.662336 }, "geometry": { "type": "Point", "coordinates": [ 152.172, -32.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103731, "decimalLat": -29.485627 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616589, "decimalLat": -34.429445 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938213, "decimalLat": -36.559404 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925478, "decimalLat": -31.453571 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52035, "decimalLat": -34.465655 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.204711, "decimalLat": -34.500838 }, "geometry": { "type": "Point", "coordinates": [ 150.205, -34.501 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519655, "decimalLat": -34.463036 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104106, "decimalLat": -29.484203 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.92622, "decimalLat": -31.459061 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624588, "decimalLat": -34.385911 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.99975, "decimalLat": -34.059901 }, "geometry": { "type": "Point", "coordinates": [ 151.0, -34.06 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637431, "decimalLat": -34.423809 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.21157, "decimalLat": -32.23314 }, "geometry": { "type": "Point", "coordinates": [ 152.212, -32.233 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607775, "decimalLat": -34.455435 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093479, "decimalLat": -29.488564 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630201, "decimalLat": -34.420946 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557721, "decimalLat": -28.396494 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.396 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928613, "decimalLat": -31.464152 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.945905, "decimalLat": -32.649084 }, "geometry": { "type": "Point", "coordinates": [ 149.946, -32.649 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785071, "decimalLat": -33.714067 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513866, "decimalLat": -34.445726 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.138047, "decimalLat": -31.402485 }, "geometry": { "type": "Point", "coordinates": [ 152.138, -31.402 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.284425, "decimalLat": -29.021761 }, "geometry": { "type": "Point", "coordinates": [ 153.284, -29.022 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899282, "decimalLat": -29.631042 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516417, "decimalLat": -34.449979 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524124, "decimalLat": -34.46282 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.02908, "decimalLat": -32.768873 }, "geometry": { "type": "Point", "coordinates": [ 152.029, -32.769 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.466275, "decimalLat": -33.383311 }, "geometry": { "type": "Point", "coordinates": [ 151.466, -33.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.4627, "decimalLat": -28.655143 }, "geometry": { "type": "Point", "coordinates": [ 153.463, -28.655 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523053, "decimalLat": -34.466269 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926202, "decimalLat": -31.459148 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519573, "decimalLat": -34.437485 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.003238, "decimalLat": -36.547042 }, "geometry": { "type": "Point", "coordinates": [ 150.003, -36.547 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.901678, "decimalLat": -31.241898 }, "geometry": { "type": "Point", "coordinates": [ 152.902, -31.242 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842335, "decimalLat": -34.068546 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560036, "decimalLat": -28.841696 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103581, "decimalLat": -29.488695 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.987654, "decimalLat": -34.021287 }, "geometry": { "type": "Point", "coordinates": [ 150.988, -34.021 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.488066, "decimalLat": -28.241573 }, "geometry": { "type": "Point", "coordinates": [ 153.488, -28.242 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.872102, "decimalLat": -34.040711 }, "geometry": { "type": "Point", "coordinates": [ 150.872, -34.041 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10379, "decimalLat": -29.485562 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.8833, "decimalLat": -31.44103 }, "geometry": { "type": "Point", "coordinates": [ 152.883, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922074, "decimalLat": -31.480891 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916379, "decimalLat": -31.439121 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.797684, "decimalLat": -34.188363 }, "geometry": { "type": "Point", "coordinates": [ 150.798, -34.188 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604704, "decimalLat": -34.427292 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519093, "decimalLat": -34.447446 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.106467, "decimalLat": -32.73257 }, "geometry": { "type": "Point", "coordinates": [ 152.106, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522401, "decimalLat": -34.465859 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.160391, "decimalLat": -32.711371 }, "geometry": { "type": "Point", "coordinates": [ 152.16, -32.711 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513767, "decimalLat": -34.447239 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.938154, "decimalLat": -31.200174 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -31.2 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.056169, "decimalLat": -33.771309 }, "geometry": { "type": "Point", "coordinates": [ 150.056, -33.771 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.120587, "decimalLat": -30.298635 }, "geometry": { "type": "Point", "coordinates": [ 153.121, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622576, "decimalLat": -34.400162 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.743428, "decimalLat": -28.837264 }, "geometry": { "type": "Point", "coordinates": [ 152.743, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110538, "decimalLat": -29.490105 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104262, "decimalLat": -29.482204 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.482 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632646, "decimalLat": -34.392883 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.554112, "decimalLat": -34.498603 }, "geometry": { "type": "Point", "coordinates": [ 150.554, -34.499 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402091, "decimalLat": -28.258526 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.259 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.19597, "decimalLat": -29.78653 }, "geometry": { "type": "Point", "coordinates": [ 151.196, -29.787 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633418, "decimalLat": -34.417574 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.640543, "decimalLat": -30.229746 }, "geometry": { "type": "Point", "coordinates": [ 152.641, -30.23 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.151906, "decimalLat": -28.570486 }, "geometry": { "type": "Point", "coordinates": [ 153.152, -28.57 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627093, "decimalLat": -34.42121 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.242835, "decimalLat": -33.127055 }, "geometry": { "type": "Point", "coordinates": [ 151.243, -33.127 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104444, "decimalLat": -29.477502 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405107, "decimalLat": -31.920313 }, "geometry": { "type": "Point", "coordinates": [ 152.405, -31.92 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629781, "decimalLat": -34.420803 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603222, "decimalLat": -34.449846 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.870436, "decimalLat": -31.462423 }, "geometry": { "type": "Point", "coordinates": [ 152.87, -31.462 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.373971, "decimalLat": -31.915653 }, "geometry": { "type": "Point", "coordinates": [ 152.374, -31.916 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109428, "decimalLat": -29.490507 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.05172, "decimalLat": -34.90812 }, "geometry": { "type": "Point", "coordinates": [ 150.052, -34.908 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879645, "decimalLat": -31.519661 }, "geometry": { "type": "Point", "coordinates": [ 152.88, -31.52 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.956718, "decimalLat": -34.106856 }, "geometry": { "type": "Point", "coordinates": [ 150.957, -34.107 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.068796, "decimalLat": -32.748535 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.749 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.941399, "decimalLat": -36.632151 }, "geometry": { "type": "Point", "coordinates": [ 149.941, -36.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521298, "decimalLat": -34.466738 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.107655, "decimalLat": -31.419488 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -31.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.878736, "decimalLat": -29.662087 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.662 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522092, "decimalLat": -34.464176 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616781, "decimalLat": -34.430359 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.403951, "decimalLat": -28.842379 }, "geometry": { "type": "Point", "coordinates": [ 153.404, -28.842 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.002523, "decimalLat": -29.182812 }, "geometry": { "type": "Point", "coordinates": [ 153.003, -29.183 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.48781, "decimalLat": -28.68266 }, "geometry": { "type": "Point", "coordinates": [ 153.488, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.811916, "decimalLat": -29.803991 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -29.804 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.055997, "decimalLat": -30.333952 }, "geometry": { "type": "Point", "coordinates": [ 153.056, -30.334 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659001, "decimalLat": -33.526603 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -33.527 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528944, "decimalLat": -34.458798 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518735, "decimalLat": -34.447763 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.008583, "decimalLat": -34.045428 }, "geometry": { "type": "Point", "coordinates": [ 151.009, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627867, "decimalLat": -34.389942 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.127675, "decimalLat": -28.835621 }, "geometry": { "type": "Point", "coordinates": [ 153.128, -28.836 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63274, "decimalLat": -34.418868 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.317596, "decimalLat": -28.844797 }, "geometry": { "type": "Point", "coordinates": [ 153.318, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514969, "decimalLat": -34.447804 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293124, "decimalLat": -28.864604 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.088534, "decimalLat": -33.404535 }, "geometry": { "type": "Point", "coordinates": [ 151.089, -33.405 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.84928, "decimalLat": -32.612569 }, "geometry": { "type": "Point", "coordinates": [ 151.849, -32.613 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.824717, "decimalLat": -29.505522 }, "geometry": { "type": "Point", "coordinates": [ 152.825, -29.506 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616072, "decimalLat": -34.435763 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.791382, "decimalLat": -34.184731 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.185 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.281838, "decimalLat": -31.63346 }, "geometry": { "type": "Point", "coordinates": [ 152.282, -31.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.696001, "decimalLat": -32.697701 }, "geometry": { "type": "Point", "coordinates": [ 151.696, -32.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512928, "decimalLat": -34.447267 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.467083, "decimalLat": -28.237356 }, "geometry": { "type": "Point", "coordinates": [ 153.467, -28.237 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.392503, "decimalLat": -28.665765 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -28.666 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.984095, "decimalLat": -36.575978 }, "geometry": { "type": "Point", "coordinates": [ 149.984, -36.576 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.104709, "decimalLat": -32.732497 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.732 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.726552, "decimalLat": -34.319304 }, "geometry": { "type": "Point", "coordinates": [ 150.727, -34.319 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.733297, "decimalLat": -33.511111 }, "geometry": { "type": "Point", "coordinates": [ 150.733, -33.511 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610432, "decimalLat": -34.420228 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.12104, "decimalLat": -30.298281 }, "geometry": { "type": "Point", "coordinates": [ 153.121, -30.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637059, "decimalLat": -34.42235 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794854, "decimalLat": -30.893434 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.893 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605215, "decimalLat": -34.439139 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.111704, "decimalLat": -30.264717 }, "geometry": { "type": "Point", "coordinates": [ 153.112, -30.265 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520588, "decimalLat": -34.453922 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52722, "decimalLat": -34.472592 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.473 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896262, "decimalLat": -31.437331 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103528, "decimalLat": -32.732791 }, "geometry": { "type": "Point", "coordinates": [ 152.104, -32.733 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867965, "decimalLat": -29.667406 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325439, "decimalLat": -28.816394 }, "geometry": { "type": "Point", "coordinates": [ 153.325, -28.816 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63562, "decimalLat": -34.486503 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.487 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.089896, "decimalLat": -32.728381 }, "geometry": { "type": "Point", "coordinates": [ 152.09, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609454, "decimalLat": -34.419046 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519145, "decimalLat": -34.459681 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622908, "decimalLat": -34.383796 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293266, "decimalLat": -28.864588 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110511, "decimalLat": -29.490161 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.826246, "decimalLat": -31.536677 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -31.537 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.40565, "decimalLat": -29.027561 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -29.028 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819337, "decimalLat": -31.262756 }, "geometry": { "type": "Point", "coordinates": [ 152.819, -31.263 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638563, "decimalLat": -34.490635 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279661, "decimalLat": -28.831073 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.018253, "decimalLat": -32.299531 }, "geometry": { "type": "Point", "coordinates": [ 152.018, -32.3 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.090904, "decimalLat": -29.487668 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520396, "decimalLat": -34.435023 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606705, "decimalLat": -34.43686 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 0, "month": 0, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.440619, "decimalLat": -28.981717 }, "geometry": { "type": "Point", "coordinates": [ 153.441, -28.982 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.605004, "decimalLat": -28.690975 }, "geometry": { "type": "Point", "coordinates": [ 153.605, -28.691 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915623, "decimalLat": -31.48619 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.663695, "decimalLat": -34.458564 }, "geometry": { "type": "Point", "coordinates": [ 150.664, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950099, "decimalLat": -36.567944 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.568 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103886, "decimalLat": -29.489577 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616517, "decimalLat": -34.438125 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.389441, "decimalLat": -29.016289 }, "geometry": { "type": "Point", "coordinates": [ 153.389, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.980224, "decimalLat": -34.110735 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -34.111 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.885988, "decimalLat": -34.017372 }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.017 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630768, "decimalLat": -34.387338 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522124, "decimalLat": -34.464925 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.998977, "decimalLat": -36.551144 }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.551 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.104419, "decimalLat": -33.780935 }, "geometry": { "type": "Point", "coordinates": [ 150.104, -33.781 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103956, "decimalLat": -29.485552 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520417, "decimalLat": -34.435059 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.998516, "decimalLat": -34.011466 }, "geometry": { "type": "Point", "coordinates": [ 150.999, -34.011 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630839, "decimalLat": -34.420706 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624209, "decimalLat": -34.388924 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522326, "decimalLat": -34.465091 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896049, "decimalLat": -31.432268 }, "geometry": { "type": "Point", "coordinates": [ 152.896, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394348, "decimalLat": -28.960255 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.96 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.361279, "decimalLat": -36.040933 }, "geometry": { "type": "Point", "coordinates": [ 149.361, -36.041 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637355, "decimalLat": -34.423807 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.352221, "decimalLat": -28.883548 }, "geometry": { "type": "Point", "coordinates": [ 153.352, -28.884 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314524, "decimalLat": -28.82599 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.826 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521556, "decimalLat": -34.465716 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.406134, "decimalLat": -29.027939 }, "geometry": { "type": "Point", "coordinates": [ 153.406, -29.028 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103999, "decimalLat": -29.485286 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605053, "decimalLat": -34.437558 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629912, "decimalLat": -34.420778 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.27933, "decimalLat": -28.679386 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630161, "decimalLat": -34.420422 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104203, "decimalLat": -29.489685 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415189, "decimalLat": -31.933379 }, "geometry": { "type": "Point", "coordinates": [ 152.415, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606647, "decimalLat": -34.434687 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017126, "decimalLat": -30.374914 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -30.375 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.794032, "decimalLat": -31.63871 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.639 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516255, "decimalLat": -34.449191 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.744978, "decimalLat": -30.091962 }, "geometry": { "type": "Point", "coordinates": [ 152.745, -30.092 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897294, "decimalLat": -31.415267 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.415 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.628991, "decimalLat": -28.639579 }, "geometry": { "type": "Point", "coordinates": [ 153.629, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525724, "decimalLat": -34.466125 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524446, "decimalLat": -34.466297 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.794214, "decimalLat": -32.589817 }, "geometry": { "type": "Point", "coordinates": [ 151.794, -32.59 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522404, "decimalLat": -34.465751 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.04942, "decimalLat": -34.9049 }, "geometry": { "type": "Point", "coordinates": [ 150.049, -34.905 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.033864, "decimalLat": -29.074833 }, "geometry": { "type": "Point", "coordinates": [ 153.034, -29.075 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.62456, "decimalLat": -34.386127 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.370721, "decimalLat": -28.29826 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.809757, "decimalLat": -34.101185 }, "geometry": { "type": "Point", "coordinates": [ 150.81, -34.101 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.309858, "decimalLat": -33.301671 }, "geometry": { "type": "Point", "coordinates": [ 150.31, -33.302 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919119, "decimalLat": -31.443585 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.879037, "decimalLat": -29.707279 }, "geometry": { "type": "Point", "coordinates": [ 152.879, -29.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.666534, "decimalLat": -33.572779 }, "geometry": { "type": "Point", "coordinates": [ 150.667, -33.573 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.196338, "decimalLat": -32.230264 }, "geometry": { "type": "Point", "coordinates": [ 152.196, -32.23 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558181, "decimalLat": -28.373789 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.374 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10363, "decimalLat": -30.32537 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -30.325 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524418, "decimalLat": -34.465035 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.989877, "decimalLat": -32.729205 }, "geometry": { "type": "Point", "coordinates": [ 151.99, -32.729 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984288, "decimalLat": -34.103453 }, "geometry": { "type": "Point", "coordinates": [ 150.984, -34.103 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.019889, "decimalLat": -30.428515 }, "geometry": { "type": "Point", "coordinates": [ 153.02, -30.429 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.335182, "decimalLat": -28.862228 }, "geometry": { "type": "Point", "coordinates": [ 153.335, -28.862 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108092, "decimalLat": -29.490142 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.807594, "decimalLat": -29.812061 }, "geometry": { "type": "Point", "coordinates": [ 152.808, -29.812 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523989, "decimalLat": -34.466261 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.216162, "decimalLat": -30.083636 }, "geometry": { "type": "Point", "coordinates": [ 152.216, -30.084 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.807693, "decimalLat": -34.097435 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103878, "decimalLat": -29.485424 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785537, "decimalLat": -33.712214 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.712 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921954, "decimalLat": -31.457529 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.91109, "decimalLat": -31.441551 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278038, "decimalLat": -28.937203 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.937 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63274, "decimalLat": -34.418886 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.927266, "decimalLat": -36.638926 }, "geometry": { "type": "Point", "coordinates": [ 149.927, -36.639 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.289168, "decimalLat": -34.528125 }, "geometry": { "type": "Point", "coordinates": [ 150.289, -34.528 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896755, "decimalLat": -31.440177 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609264, "decimalLat": -34.420746 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400746, "decimalLat": -28.260135 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.085277, "decimalLat": -30.321822 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -30.322 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904459, "decimalLat": -30.52251 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -30.523 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313931, "decimalLat": -28.814468 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.814 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065095, "decimalLat": -32.706601 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.272477, "decimalLat": -28.821061 }, "geometry": { "type": "Point", "coordinates": [ 153.272, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.069135, "decimalLat": -30.879092 }, "geometry": { "type": "Point", "coordinates": [ 153.069, -30.879 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327831, "decimalLat": -28.726205 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.726 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.642881, "decimalLat": -34.394776 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515369, "decimalLat": -34.444963 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903497, "decimalLat": -31.441098 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066519, "decimalLat": -32.70769 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.722319, "decimalLat": -31.346927 }, "geometry": { "type": "Point", "coordinates": [ 152.722, -31.347 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.087946, "decimalLat": -30.355053 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -30.355 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.79327, "decimalLat": -31.642661 }, "geometry": { "type": "Point", "coordinates": [ 152.793, -31.643 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786017, "decimalLat": -31.631545 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519489, "decimalLat": -34.456505 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.415606, "decimalLat": -31.933492 }, "geometry": { "type": "Point", "coordinates": [ 152.416, -31.933 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.634977, "decimalLat": -34.418613 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.706193, "decimalLat": -32.691092 }, "geometry": { "type": "Point", "coordinates": [ 151.706, -32.691 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103672, "decimalLat": -29.485473 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893814, "decimalLat": -31.431842 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.853644, "decimalLat": -31.553745 }, "geometry": { "type": "Point", "coordinates": [ 152.854, -31.554 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.842335, "decimalLat": -34.068546 }, "geometry": { "type": "Point", "coordinates": [ 150.842, -34.069 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079108, "decimalLat": -32.727319 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.727 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608081, "decimalLat": -34.422562 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.191234, "decimalLat": -31.580685 }, "geometry": { "type": "Point", "coordinates": [ 152.191, -31.581 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640245, "decimalLat": -34.415821 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.416 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.98112, "decimalLat": -30.437417 }, "geometry": { "type": "Point", "coordinates": [ 152.981, -30.437 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.904957, "decimalLat": -31.43963 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.394104, "decimalLat": -28.958945 }, "geometry": { "type": "Point", "coordinates": [ 153.394, -28.959 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.848879, "decimalLat": -29.339319 }, "geometry": { "type": "Point", "coordinates": [ 152.849, -29.339 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900965, "decimalLat": -31.442585 }, "geometry": { "type": "Point", "coordinates": [ 152.901, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.877346, "decimalLat": -31.490236 }, "geometry": { "type": "Point", "coordinates": [ 152.877, -31.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518772, "decimalLat": -34.447647 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613673, "decimalLat": -34.434049 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.54979, "decimalLat": -33.496074 }, "geometry": { "type": "Point", "coordinates": [ 149.55, -33.496 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063604, "decimalLat": -32.706239 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.706 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 3, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989642, "decimalLat": -34.022255 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.022 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.524599, "decimalLat": -28.681838 }, "geometry": { "type": "Point", "coordinates": [ 153.525, -28.682 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607287, "decimalLat": -34.457643 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627376, "decimalLat": -34.38656 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920787, "decimalLat": -31.449737 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.45 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641941, "decimalLat": -34.396885 }, "geometry": { "type": "Point", "coordinates": [ 150.642, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.065095, "decimalLat": -32.706601 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.739759, "decimalLat": -30.477605 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -30.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.643306, "decimalLat": -34.395523 }, "geometry": { "type": "Point", "coordinates": [ 150.643, -34.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.78402, "decimalLat": -33.711263 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.711 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.481003, "decimalLat": -33.047215 }, "geometry": { "type": "Point", "coordinates": [ 151.481, -33.047 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.9803, "decimalLat": -34.08429 }, "geometry": { "type": "Point", "coordinates": [ 150.98, -34.084 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.509709, "decimalLat": -28.603818 }, "geometry": { "type": "Point", "coordinates": [ 153.51, -28.604 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.937582, "decimalLat": -30.231856 }, "geometry": { "type": "Point", "coordinates": [ 152.938, -30.232 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785038, "decimalLat": -33.707986 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.708 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639145, "decimalLat": -34.491638 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094752, "decimalLat": -30.338571 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -30.339 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279515, "decimalLat": -28.678443 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.678 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521609, "decimalLat": -34.465771 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.397651, "decimalLat": -31.930394 }, "geometry": { "type": "Point", "coordinates": [ 152.398, -31.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400099, "decimalLat": -28.96082 }, "geometry": { "type": "Point", "coordinates": [ 153.4, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.967242, "decimalLat": -36.561675 }, "geometry": { "type": "Point", "coordinates": [ 149.967, -36.562 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635848, "decimalLat": -34.419379 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103967, "decimalLat": -29.485576 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921164, "decimalLat": -31.465214 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659267, "decimalLat": -34.457343 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603608, "decimalLat": -34.419184 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.069656, "decimalLat": -30.274954 }, "geometry": { "type": "Point", "coordinates": [ 153.07, -30.275 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.599072, "decimalLat": -34.426036 }, "geometry": { "type": "Point", "coordinates": [ 150.599, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639723, "decimalLat": -34.491965 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.490788, "decimalLat": -28.244494 }, "geometry": { "type": "Point", "coordinates": [ 153.491, -28.244 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.626846, "decimalLat": -30.415917 }, "geometry": { "type": "Point", "coordinates": [ 151.627, -30.416 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093447, "decimalLat": -29.488751 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402592, "decimalLat": -28.257873 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.258 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316234, "decimalLat": -28.84526 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.845 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108237, "decimalLat": -29.490231 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63271, "decimalLat": -34.418002 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629988, "decimalLat": -34.395329 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627963, "decimalLat": -34.420452 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522843, "decimalLat": -34.452381 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922295, "decimalLat": -31.456648 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630397, "decimalLat": -34.395111 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517275, "decimalLat": -34.451529 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60497, "decimalLat": -34.423294 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523179, "decimalLat": -34.463486 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.463 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515285, "decimalLat": -34.46026 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.395386, "decimalLat": -29.028882 }, "geometry": { "type": "Point", "coordinates": [ 153.395, -29.029 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632717, "decimalLat": -34.418912 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51437, "decimalLat": -34.445998 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091157, "decimalLat": -29.487425 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899255, "decimalLat": -31.443559 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.774796, "decimalLat": -32.446115 }, "geometry": { "type": "Point", "coordinates": [ 151.775, -32.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641072, "decimalLat": -34.494732 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.495 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091741, "decimalLat": -29.48791 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104079, "decimalLat": -29.479813 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.48 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51888, "decimalLat": -34.447289 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.336879, "decimalLat": -28.836044 }, "geometry": { "type": "Point", "coordinates": [ 153.337, -28.836 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.685193, "decimalLat": -34.352835 }, "geometry": { "type": "Point", "coordinates": [ 150.685, -34.353 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.436372, "decimalLat": -31.818443 }, "geometry": { "type": "Point", "coordinates": [ 152.436, -31.818 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103817, "decimalLat": -29.485557 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.454566, "decimalLat": -28.644521 }, "geometry": { "type": "Point", "coordinates": [ 153.455, -28.645 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523148, "decimalLat": -34.463783 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402945, "decimalLat": -28.260556 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.261 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919654, "decimalLat": -31.469155 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630555, "decimalLat": -34.388741 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513119, "decimalLat": -34.445981 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.559996, "decimalLat": -32.628889 }, "geometry": { "type": "Point", "coordinates": [ 149.56, -32.629 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.276579, "decimalLat": -28.814585 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.815 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624576, "decimalLat": -34.400561 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.401 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.399379, "decimalLat": -28.260407 }, "geometry": { "type": "Point", "coordinates": [ 153.399, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.777417, "decimalLat": -31.57459 }, "geometry": { "type": "Point", "coordinates": [ 152.777, -31.575 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790322, "decimalLat": -34.158907 }, "geometry": { "type": "Point", "coordinates": [ 150.79, -34.159 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.831738, "decimalLat": -34.072422 }, "geometry": { "type": "Point", "coordinates": [ 150.832, -34.072 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.594238, "decimalLat": -34.42348 }, "geometry": { "type": "Point", "coordinates": [ 150.594, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.783506, "decimalLat": -33.717885 }, "geometry": { "type": "Point", "coordinates": [ 150.784, -33.718 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.61512, "decimalLat": -28.660528 }, "geometry": { "type": "Point", "coordinates": [ 153.615, -28.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.535553, "decimalLat": -34.462411 }, "geometry": { "type": "Point", "coordinates": [ 150.536, -34.462 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627501, "decimalLat": -34.421408 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.642129, "decimalLat": -32.657717 }, "geometry": { "type": "Point", "coordinates": [ 151.642, -32.658 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299268, "decimalLat": -28.818114 }, "geometry": { "type": "Point", "coordinates": [ 153.299, -28.818 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296004, "decimalLat": -28.818579 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513106, "decimalLat": -34.447144 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523298, "decimalLat": -34.466076 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.240647, "decimalLat": -36.019081 }, "geometry": { "type": "Point", "coordinates": [ 149.241, -36.019 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516055, "decimalLat": -34.448232 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522555, "decimalLat": -34.459173 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.844763, "decimalLat": -32.7096 }, "geometry": { "type": "Point", "coordinates": [ 151.845, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.041196, "decimalLat": -32.737733 }, "geometry": { "type": "Point", "coordinates": [ 152.041, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926358, "decimalLat": -31.454517 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615794, "decimalLat": -34.435974 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104466, "decimalLat": -29.477525 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.478 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.084414, "decimalLat": -32.727892 }, "geometry": { "type": "Point", "coordinates": [ 152.084, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630033, "decimalLat": -34.388334 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.659427, "decimalLat": -34.458248 }, "geometry": { "type": "Point", "coordinates": [ 150.659, -34.458 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.071526, "decimalLat": -30.885737 }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.886 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608261, "decimalLat": -34.434962 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.354921, "decimalLat": -28.974028 }, "geometry": { "type": "Point", "coordinates": [ 153.355, -28.974 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.958519, "decimalLat": -36.587122 }, "geometry": { "type": "Point", "coordinates": [ 149.959, -36.587 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.996398, "decimalLat": -30.411253 }, "geometry": { "type": "Point", "coordinates": [ 152.996, -30.411 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.921722, "decimalLat": -31.481081 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.481 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608547, "decimalLat": -34.434093 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610429, "decimalLat": -34.430271 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633787, "decimalLat": -34.418392 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.60195, "decimalLat": -28.829111 }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.829 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.788977, "decimalLat": -31.637029 }, "geometry": { "type": "Point", "coordinates": [ 152.789, -31.637 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064469, "decimalLat": -32.708766 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.709 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.6662, "decimalLat": -30.501562 }, "geometry": { "type": "Point", "coordinates": [ 151.666, -30.502 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.107985, "decimalLat": -29.490283 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110291, "decimalLat": -29.49025 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.278971, "decimalLat": -33.281893 }, "geometry": { "type": "Point", "coordinates": [ 150.279, -33.282 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520687, "decimalLat": -34.465689 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.005938, "decimalLat": -29.185113 }, "geometry": { "type": "Point", "coordinates": [ 153.006, -29.185 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.864942, "decimalLat": -31.384504 }, "geometry": { "type": "Point", "coordinates": [ 152.865, -31.385 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.056661, "decimalLat": -29.739273 }, "geometry": { "type": "Point", "coordinates": [ 151.057, -29.739 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.337677, "decimalLat": -28.818946 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.893861, "decimalLat": -31.431853 }, "geometry": { "type": "Point", "coordinates": [ 152.894, -31.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.740463, "decimalLat": -32.560405 }, "geometry": { "type": "Point", "coordinates": [ 151.74, -32.56 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108087, "decimalLat": -29.490609 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.560285, "decimalLat": -28.389285 }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.389 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.966522, "decimalLat": -28.625029 }, "geometry": { "type": "Point", "coordinates": [ 152.967, -28.625 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.102191, "decimalLat": -33.777547 }, "geometry": { "type": "Point", "coordinates": [ 150.102, -33.778 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923384, "decimalLat": -31.441071 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.441 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.915479, "decimalLat": -31.445972 }, "geometry": { "type": "Point", "coordinates": [ 152.915, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.989365, "decimalLat": -34.027733 }, "geometry": { "type": "Point", "coordinates": [ 150.989, -34.028 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.986715, "decimalLat": -34.044729 }, "geometry": { "type": "Point", "coordinates": [ 150.987, -34.045 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101676, "decimalLat": -29.489764 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293229, "decimalLat": -28.864629 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.865 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916003, "decimalLat": -31.446036 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926234, "decimalLat": -31.452645 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.453 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.176173, "decimalLat": -28.85243 }, "geometry": { "type": "Point", "coordinates": [ 153.176, -28.852 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636258, "decimalLat": -34.42183 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630656, "decimalLat": -34.420612 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819594, "decimalLat": -31.245942 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.246 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925635, "decimalLat": -31.470263 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.47 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.421509, "decimalLat": -28.982564 }, "geometry": { "type": "Point", "coordinates": [ 153.422, -28.983 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.418213, "decimalLat": -31.905008 }, "geometry": { "type": "Point", "coordinates": [ 152.418, -31.905 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.881447, "decimalLat": -31.441744 }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.442 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.017126, "decimalLat": -30.374914 }, "geometry": { "type": "Point", "coordinates": [ 153.017, -30.375 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091602, "decimalLat": -29.488093 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615157, "decimalLat": -34.435412 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918309, "decimalLat": -31.446308 }, "geometry": { "type": "Point", "coordinates": [ 152.918, -31.446 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.058167, "decimalLat": -29.737514 }, "geometry": { "type": "Point", "coordinates": [ 151.058, -29.738 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638972, "decimalLat": -34.418925 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639096, "decimalLat": -34.492981 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597644, "decimalLat": -34.428397 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628065, "decimalLat": -34.391018 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604809, "decimalLat": -34.427033 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513106, "decimalLat": -34.447144 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526653, "decimalLat": -34.469326 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.881531, "decimalLat": -34.067524 }, "geometry": { "type": "Point", "coordinates": [ 150.882, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635287, "decimalLat": -34.420377 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103988, "decimalLat": -29.489657 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10932, "decimalLat": -29.490656 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.371368, "decimalLat": -28.799393 }, "geometry": { "type": "Point", "coordinates": [ 153.371, -28.799 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.301454, "decimalLat": -28.824921 }, "geometry": { "type": "Point", "coordinates": [ 153.301, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.123642, "decimalLat": -30.295589 }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.296 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624133, "decimalLat": -34.388922 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.001792, "decimalLat": -32.660788 }, "geometry": { "type": "Point", "coordinates": [ 150.002, -32.661 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104149, "decimalLat": -29.485277 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.446568, "decimalLat": -34.716479 }, "geometry": { "type": "Point", "coordinates": [ 146.447, -34.716 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.694667, "decimalLat": -32.697502 }, "geometry": { "type": "Point", "coordinates": [ 151.695, -32.698 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527054, "decimalLat": -34.469749 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522968, "decimalLat": -34.452222 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.597656, "decimalLat": -34.418472 }, "geometry": { "type": "Point", "coordinates": [ 150.598, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.51719, "decimalLat": -28.691492 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.691 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631207, "decimalLat": -34.419983 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.927017, "decimalLat": -31.457248 }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.457 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.953593, "decimalLat": -30.426799 }, "geometry": { "type": "Point", "coordinates": [ 152.954, -30.427 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.309119, "decimalLat": -36.108532 }, "geometry": { "type": "Point", "coordinates": [ 149.309, -36.109 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630552, "decimalLat": -34.394997 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514364, "decimalLat": -34.446566 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916421, "decimalLat": -31.450866 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609044, "decimalLat": -34.434959 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785944, "decimalLat": -33.712845 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51724, "decimalLat": -34.451582 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614439, "decimalLat": -34.428925 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.429 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790633, "decimalLat": -34.185835 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.186 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605607, "decimalLat": -34.449776 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.384515, "decimalLat": -36.169502 }, "geometry": { "type": "Point", "coordinates": [ 149.385, -36.17 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064528, "decimalLat": -32.709669 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522404, "decimalLat": -34.465751 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606616, "decimalLat": -34.435029 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627384, "decimalLat": -34.390113 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.39 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.307678, "decimalLat": -28.823714 }, "geometry": { "type": "Point", "coordinates": [ 153.308, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889542, "decimalLat": -30.467965 }, "geometry": { "type": "Point", "coordinates": [ 152.89, -30.468 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103232, "decimalLat": -29.486734 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604275, "decimalLat": -34.438886 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.893093, "decimalLat": -34.07132 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -34.071 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.820659, "decimalLat": -30.173815 }, "geometry": { "type": "Point", "coordinates": [ 152.821, -30.174 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.51599, "decimalLat": -34.446761 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.582378, "decimalLat": -28.788736 }, "geometry": { "type": "Point", "coordinates": [ 153.582, -28.789 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110206, "decimalLat": -29.490273 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.631792, "decimalLat": -34.388431 }, "geometry": { "type": "Point", "coordinates": [ 150.632, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.652116, "decimalLat": -34.399407 }, "geometry": { "type": "Point", "coordinates": [ 150.652, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518804, "decimalLat": -34.447666 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911113, "decimalLat": -31.429994 }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928454, "decimalLat": -29.70213 }, "geometry": { "type": "Point", "coordinates": [ 152.928, -29.702 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.085359, "decimalLat": -30.346169 }, "geometry": { "type": "Point", "coordinates": [ 153.085, -30.346 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.889054, "decimalLat": -31.44288 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.066861, "decimalLat": -31.843749 }, "geometry": { "type": "Point", "coordinates": [ 152.067, -31.844 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.911995, "decimalLat": -31.470533 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.471 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.061389, "decimalLat": -32.709635 }, "geometry": { "type": "Point", "coordinates": [ 152.061, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.247202, "decimalLat": -30.053999 }, "geometry": { "type": "Point", "coordinates": [ 152.247, -30.054 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.528944, "decimalLat": -34.458798 }, "geometry": { "type": "Point", "coordinates": [ 150.529, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303494, "decimalLat": -28.649639 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.353705, "decimalLat": -28.755891 }, "geometry": { "type": "Point", "coordinates": [ 153.354, -28.756 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.592018, "decimalLat": -33.458501 }, "geometry": { "type": "Point", "coordinates": [ 150.592, -33.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604207, "decimalLat": -34.422233 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.830617, "decimalLat": -29.640911 }, "geometry": { "type": "Point", "coordinates": [ 152.831, -29.641 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.807228, "decimalLat": -34.068105 }, "geometry": { "type": "Point", "coordinates": [ 150.807, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635331, "decimalLat": -34.420351 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.817172, "decimalLat": -31.134302 }, "geometry": { "type": "Point", "coordinates": [ 152.817, -31.134 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.337971, "decimalLat": -31.578847 }, "geometry": { "type": "Point", "coordinates": [ 149.338, -31.579 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.020236, "decimalLat": -28.430318 }, "geometry": { "type": "Point", "coordinates": [ 153.02, -28.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.061476, "decimalLat": -30.271872 }, "geometry": { "type": "Point", "coordinates": [ 153.061, -30.272 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922003, "decimalLat": -31.452398 }, "geometry": { "type": "Point", "coordinates": [ 152.922, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616603, "decimalLat": -34.430094 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.210172, "decimalLat": -33.379674 }, "geometry": { "type": "Point", "coordinates": [ 150.21, -33.38 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603329, "decimalLat": -34.438859 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.095687, "decimalLat": -31.079438 }, "geometry": { "type": "Point", "coordinates": [ 150.096, -31.079 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.028587, "decimalLat": -35.085334 }, "geometry": { "type": "Point", "coordinates": [ 150.029, -35.085 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624968, "decimalLat": -34.385928 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630222, "decimalLat": -34.420965 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103736, "decimalLat": -29.485562 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296899, "decimalLat": -28.820794 }, "geometry": { "type": "Point", "coordinates": [ 153.297, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.088396, "decimalLat": -32.737588 }, "geometry": { "type": "Point", "coordinates": [ 152.088, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.670854, "decimalLat": -34.246887 }, "geometry": { "type": "Point", "coordinates": [ 150.671, -34.247 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.303255, "decimalLat": -28.825066 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108135, "decimalLat": -29.490619 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514394, "decimalLat": -34.444799 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.534773, "decimalLat": -28.334234 }, "geometry": { "type": "Point", "coordinates": [ 153.535, -28.334 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.966363, "decimalLat": -31.253756 }, "geometry": { "type": "Point", "coordinates": [ 152.966, -31.254 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.400553, "decimalLat": -28.257425 }, "geometry": { "type": "Point", "coordinates": [ 153.401, -28.257 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.958311, "decimalLat": -32.76229 }, "geometry": { "type": "Point", "coordinates": [ 151.958, -32.762 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616733, "decimalLat": -34.434721 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639163, "decimalLat": -34.392775 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.845011, "decimalLat": -29.834546 }, "geometry": { "type": "Point", "coordinates": [ 150.845, -29.835 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.541578, "decimalLat": -32.931347 }, "geometry": { "type": "Point", "coordinates": [ 151.542, -32.931 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.825905, "decimalLat": -31.249312 }, "geometry": { "type": "Point", "coordinates": [ 152.826, -31.249 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625459, "decimalLat": -34.385874 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.984889, "decimalLat": -34.096828 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091156, "decimalLat": -29.487938 }, "geometry": { "type": "Point", "coordinates": [ 153.091, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.233289, "decimalLat": -28.829497 }, "geometry": { "type": "Point", "coordinates": [ 153.233, -28.829 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.343646, "decimalLat": -28.866891 }, "geometry": { "type": "Point", "coordinates": [ 153.344, -28.867 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288292, "decimalLat": -28.809314 }, "geometry": { "type": "Point", "coordinates": [ 153.288, -28.809 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.554509, "decimalLat": -28.583824 }, "geometry": { "type": "Point", "coordinates": [ 153.555, -28.584 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.539714, "decimalLat": -29.367536 }, "geometry": { "type": "Point", "coordinates": [ 151.54, -29.368 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.908564, "decimalLat": -31.455029 }, "geometry": { "type": "Point", "coordinates": [ 152.909, -31.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.293121, "decimalLat": -28.824165 }, "geometry": { "type": "Point", "coordinates": [ 153.293, -28.824 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109857, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520083, "decimalLat": -34.454805 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101569, "decimalLat": -29.489848 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10321, "decimalLat": -29.48671 }, "geometry": { "type": "Point", "coordinates": [ 153.103, -29.487 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.630025, "decimalLat": -30.424567 }, "geometry": { "type": "Point", "coordinates": [ 151.63, -30.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605083, "decimalLat": -34.437649 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.811161, "decimalLat": -32.349456 }, "geometry": { "type": "Point", "coordinates": [ 151.811, -32.349 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.775279, "decimalLat": -30.197461 }, "geometry": { "type": "Point", "coordinates": [ 152.775, -30.197 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517578, "decimalLat": -34.447163 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.55439, "decimalLat": -28.385238 }, "geometry": { "type": "Point", "coordinates": [ 153.554, -28.385 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.056907, "decimalLat": -33.775591 }, "geometry": { "type": "Point", "coordinates": [ 150.057, -33.776 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.00028, "decimalLat": -32.632576 }, "geometry": { "type": "Point", "coordinates": [ 152.0, -32.633 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625143, "decimalLat": -34.386688 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.387 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639435, "decimalLat": -34.392789 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630232, "decimalLat": -34.420992 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625304, "decimalLat": -34.384428 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521532, "decimalLat": -34.466896 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614253, "decimalLat": -34.429714 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603285, "decimalLat": -34.436974 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629806, "decimalLat": -34.421056 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.951303, "decimalLat": -36.599554 }, "geometry": { "type": "Point", "coordinates": [ 149.951, -36.6 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604945, "decimalLat": -34.437908 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519879, "decimalLat": -34.452871 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.006515, "decimalLat": -36.579991 }, "geometry": { "type": "Point", "coordinates": [ 150.007, -36.58 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.088131, "decimalLat": -32.176412 }, "geometry": { "type": "Point", "coordinates": [ 152.088, -32.176 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.524428, "decimalLat": -34.465053 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.979442, "decimalLat": -28.620871 }, "geometry": { "type": "Point", "coordinates": [ 152.979, -28.621 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.103489, "decimalLat": -32.726404 }, "geometry": { "type": "Point", "coordinates": [ 152.103, -32.726 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.489096, "decimalLat": -28.695632 }, "geometry": { "type": "Point", "coordinates": [ 153.489, -28.696 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277455, "decimalLat": -28.93797 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.938 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.801768, "decimalLat": -31.139712 }, "geometry": { "type": "Point", "coordinates": [ 152.802, -31.14 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637364, "decimalLat": -34.487989 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.819577, "decimalLat": -31.542417 }, "geometry": { "type": "Point", "coordinates": [ 152.82, -31.542 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520718, "decimalLat": -34.454691 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.338118, "decimalLat": -28.821377 }, "geometry": { "type": "Point", "coordinates": [ 153.338, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596715, "decimalLat": -34.409916 }, "geometry": { "type": "Point", "coordinates": [ 150.597, -34.41 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.543061, "decimalLat": -32.059776 }, "geometry": { "type": "Point", "coordinates": [ 152.543, -32.06 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516831, "decimalLat": -34.454008 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.985075, "decimalLat": -34.096352 }, "geometry": { "type": "Point", "coordinates": [ 150.985, -34.096 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277364, "decimalLat": -28.939532 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.069601, "decimalLat": -32.748165 }, "geometry": { "type": "Point", "coordinates": [ 152.07, -32.748 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.103377, "decimalLat": -29.761888 }, "geometry": { "type": "Point", "coordinates": [ 151.103, -29.762 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.63001, "decimalLat": -34.388378 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520218, "decimalLat": -34.465698 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.961667, "decimalLat": -32.655674 }, "geometry": { "type": "Point", "coordinates": [ 151.962, -32.656 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.808237, "decimalLat": -34.098102 }, "geometry": { "type": "Point", "coordinates": [ 150.808, -34.098 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630432, "decimalLat": -34.420851 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.912063, "decimalLat": -31.474984 }, "geometry": { "type": "Point", "coordinates": [ 152.912, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.387185, "decimalLat": -28.657932 }, "geometry": { "type": "Point", "coordinates": [ 153.387, -28.658 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.894669, "decimalLat": -31.434572 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.786186, "decimalLat": -33.706065 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.706 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.954748, "decimalLat": -36.297726 }, "geometry": { "type": "Point", "coordinates": [ 149.955, -36.298 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.721029, "decimalLat": -29.542712 }, "geometry": { "type": "Point", "coordinates": [ 152.721, -29.543 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632582, "decimalLat": -34.418297 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.357369, "decimalLat": -34.348037 }, "geometry": { "type": "Point", "coordinates": [ 150.357, -34.348 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519101, "decimalLat": -34.467036 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.467 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628768, "decimalLat": -34.389247 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603313, "decimalLat": -34.43637 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.067952, "decimalLat": -32.723551 }, "geometry": { "type": "Point", "coordinates": [ 152.068, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624377, "decimalLat": -34.188884 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -34.189 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.084263, "decimalLat": -30.343686 }, "geometry": { "type": "Point", "coordinates": [ 153.084, -30.344 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639004, "decimalLat": -34.491626 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607677, "decimalLat": -34.430244 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.784881, "decimalLat": -33.714346 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.841272, "decimalLat": -34.063928 }, "geometry": { "type": "Point", "coordinates": [ 150.841, -34.064 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639114, "decimalLat": -34.491962 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519961, "decimalLat": -34.435753 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.812369, "decimalLat": -29.798458 }, "geometry": { "type": "Point", "coordinates": [ 152.812, -29.798 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.561956, "decimalLat": -28.383121 }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110254, "decimalLat": -29.488415 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110147, "decimalLat": -29.490269 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.725053, "decimalLat": -32.604163 }, "geometry": { "type": "Point", "coordinates": [ 151.725, -32.604 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.989088, "decimalLat": -36.503585 }, "geometry": { "type": "Point", "coordinates": [ 149.989, -36.504 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513798, "decimalLat": -34.447293 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.076265, "decimalLat": -28.553447 }, "geometry": { "type": "Point", "coordinates": [ 153.076, -28.553 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.527498, "decimalLat": -34.469469 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.469 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517961, "decimalLat": -34.437885 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101671, "decimalLat": -29.489377 }, "geometry": { "type": "Point", "coordinates": [ 153.102, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.861404, "decimalLat": -31.281716 }, "geometry": { "type": "Point", "coordinates": [ 152.861, -31.282 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.495002, "decimalLat": -28.692216 }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.692 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616414, "decimalLat": -34.434472 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.383656, "decimalLat": -32.101206 }, "geometry": { "type": "Point", "coordinates": [ 152.384, -32.101 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.361038, "decimalLat": -28.941392 }, "geometry": { "type": "Point", "coordinates": [ 153.361, -28.941 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302728, "decimalLat": -28.848151 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.421401, "decimalLat": -31.946553 }, "geometry": { "type": "Point", "coordinates": [ 152.421, -31.947 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.072388, "decimalLat": -32.710493 }, "geometry": { "type": "Point", "coordinates": [ 152.072, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.479693, "decimalLat": -28.640224 }, "geometry": { "type": "Point", "coordinates": [ 153.48, -28.64 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367578, "decimalLat": -28.614394 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.614 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630688, "decimalLat": -34.420649 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602374, "decimalLat": -34.424704 }, "geometry": { "type": "Point", "coordinates": [ 150.602, -34.425 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615656, "decimalLat": -34.432401 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.538195, "decimalLat": -28.572182 }, "geometry": { "type": "Point", "coordinates": [ 153.538, -28.572 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516953, "decimalLat": -34.446204 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516445, "decimalLat": -34.448663 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522997, "decimalLat": -34.463744 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.610051, "decimalLat": -34.430182 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604159, "decimalLat": -34.426578 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609889, "decimalLat": -34.429755 }, "geometry": { "type": "Point", "coordinates": [ 150.61, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520618, "decimalLat": -34.450714 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.06795, "decimalLat": -34.90815 }, "geometry": { "type": "Point", "coordinates": [ 150.068, -34.908 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516467, "decimalLat": -34.438729 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110517, "decimalLat": -29.490007 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.789152, "decimalLat": -34.197582 }, "geometry": { "type": "Point", "coordinates": [ 150.789, -34.198 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.645184, "decimalLat": -34.390998 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.391 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516292, "decimalLat": -34.449066 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.367603, "decimalLat": -28.818638 }, "geometry": { "type": "Point", "coordinates": [ 153.368, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.929092, "decimalLat": -31.459656 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.641178, "decimalLat": -34.494815 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.495 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.972032, "decimalLat": -36.288695 }, "geometry": { "type": "Point", "coordinates": [ 149.972, -36.289 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.523844, "decimalLat": -34.463806 }, "geometry": { "type": "Point", "coordinates": [ 150.524, -34.464 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.795484, "decimalLat": -30.218024 }, "geometry": { "type": "Point", "coordinates": [ 152.795, -30.218 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.920725, "decimalLat": -31.448905 }, "geometry": { "type": "Point", "coordinates": [ 152.921, -31.449 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632603, "decimalLat": -34.418324 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.556904, "decimalLat": -28.400365 }, "geometry": { "type": "Point", "coordinates": [ 153.557, -28.4 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603556, "decimalLat": -34.427486 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.531972, "decimalLat": -34.460211 }, "geometry": { "type": "Point", "coordinates": [ 150.532, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.288541, "decimalLat": -28.692644 }, "geometry": { "type": "Point", "coordinates": [ 153.289, -28.693 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609165, "decimalLat": -34.434555 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905321, "decimalLat": -31.442867 }, "geometry": { "type": "Point", "coordinates": [ 152.905, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.277461, "decimalLat": -28.67595 }, "geometry": { "type": "Point", "coordinates": [ 153.277, -28.676 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10917, "decimalLat": -29.49183 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.492 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639284, "decimalLat": -34.392741 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.393 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.30288, "decimalLat": -28.820261 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604127, "decimalLat": -34.434926 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627321, "decimalLat": -34.421224 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.807228, "decimalLat": -34.068105 }, "geometry": { "type": "Point", "coordinates": [ 150.807, -34.068 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595807, "decimalLat": -34.425693 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.426 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529944, "decimalLat": -34.430389 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.792197, "decimalLat": -31.640496 }, "geometry": { "type": "Point", "coordinates": [ 152.792, -31.64 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925723, "decimalLat": -31.447944 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615468, "decimalLat": -34.435598 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.958021, "decimalLat": -31.217454 }, "geometry": { "type": "Point", "coordinates": [ 152.958, -31.217 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.885273, "decimalLat": -28.981516 }, "geometry": { "type": "Point", "coordinates": [ 152.885, -28.982 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.190362, "decimalLat": -32.237057 }, "geometry": { "type": "Point", "coordinates": [ 152.19, -32.237 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279241, "decimalLat": -28.839565 }, "geometry": { "type": "Point", "coordinates": [ 153.279, -28.84 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.07769, "decimalLat": -32.722008 }, "geometry": { "type": "Point", "coordinates": [ 152.078, -32.722 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.413455, "decimalLat": -31.944127 }, "geometry": { "type": "Point", "coordinates": [ 152.413, -31.944 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.873203, "decimalLat": -36.92043 }, "geometry": { "type": "Point", "coordinates": [ 149.873, -36.92 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.256859, "decimalLat": -36.296979 }, "geometry": { "type": "Point", "coordinates": [ 149.257, -36.297 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.870732, "decimalLat": -34.038268 }, "geometry": { "type": "Point", "coordinates": [ 150.871, -34.038 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520432, "decimalLat": -34.465846 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.079448, "decimalLat": -32.738495 }, "geometry": { "type": "Point", "coordinates": [ 152.079, -32.738 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.382372, "decimalLat": -31.929248 }, "geometry": { "type": "Point", "coordinates": [ 152.382, -31.929 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.302906, "decimalLat": -28.843546 }, "geometry": { "type": "Point", "coordinates": [ 153.303, -28.844 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.974091, "decimalLat": -33.961565 }, "geometry": { "type": "Point", "coordinates": [ 150.974, -33.962 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109433, "decimalLat": -29.490465 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625792, "decimalLat": -34.386403 }, "geometry": { "type": "Point", "coordinates": [ 150.626, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.096521, "decimalLat": -29.485697 }, "geometry": { "type": "Point", "coordinates": [ 153.097, -29.486 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616543, "decimalLat": -34.436061 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.625324, "decimalLat": -34.384492 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637344, "decimalLat": -34.423807 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.424 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.89337, "decimalLat": -33.971509 }, "geometry": { "type": "Point", "coordinates": [ 150.893, -33.972 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639176, "decimalLat": -34.493244 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785683, "decimalLat": -33.709295 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.709 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.96897, "decimalLat": -36.58553 }, "geometry": { "type": "Point", "coordinates": [ 149.969, -36.586 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.577621, "decimalLat": -28.868258 }, "geometry": { "type": "Point", "coordinates": [ 153.578, -28.868 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.990319, "decimalLat": -34.089316 }, "geometry": { "type": "Point", "coordinates": [ 150.99, -34.089 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.793613, "decimalLat": -31.127013 }, "geometry": { "type": "Point", "coordinates": [ 152.794, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.349322, "decimalLat": -31.685488 }, "geometry": { "type": "Point", "coordinates": [ 152.349, -31.685 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.923452, "decimalLat": -31.460803 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.461 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520048, "decimalLat": -34.446438 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518388, "decimalLat": -34.451786 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.785634, "decimalLat": -31.631922 }, "geometry": { "type": "Point", "coordinates": [ 152.786, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.895212, "decimalLat": -31.437077 }, "geometry": { "type": "Point", "coordinates": [ 152.895, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607591, "decimalLat": -34.433254 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617687, "decimalLat": -34.438689 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604946, "decimalLat": -34.43789 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513906, "decimalLat": -34.447314 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638883, "decimalLat": -34.491651 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.672045, "decimalLat": -33.56482 }, "geometry": { "type": "Point", "coordinates": [ 150.672, -33.565 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 6, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.905944, "decimalLat": -31.479611 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.48 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.255014, "decimalLat": -28.665633 }, "geometry": { "type": "Point", "coordinates": [ 153.255, -28.666 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629763, "decimalLat": -34.420649 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.564642, "decimalLat": -28.327767 }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.328 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.487886, "decimalLat": -28.682671 }, "geometry": { "type": "Point", "coordinates": [ 153.488, -28.683 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.783319, "decimalLat": -30.193052 }, "geometry": { "type": "Point", "coordinates": [ 152.783, -30.193 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.007764, "decimalLat": -34.046026 }, "geometry": { "type": "Point", "coordinates": [ 151.008, -34.046 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.200379, "decimalLat": -29.354295 }, "geometry": { "type": "Point", "coordinates": [ 150.2, -29.354 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607304, "decimalLat": -34.432644 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644918, "decimalLat": -34.391551 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.392 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622905, "decimalLat": -34.397346 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.397 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 11, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.105332, "decimalLat": -32.72777 }, "geometry": { "type": "Point", "coordinates": [ 152.105, -32.728 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.522268, "decimalLat": -34.743479 }, "geometry": { "type": "Point", "coordinates": [ 146.522, -34.743 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607576, "decimalLat": -34.421975 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.928993, "decimalLat": -31.45961 }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623386, "decimalLat": -34.383418 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.383 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.624926, "decimalLat": -34.399747 }, "geometry": { "type": "Point", "coordinates": [ 150.625, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.45941, "decimalLat": -28.952499 }, "geometry": { "type": "Point", "coordinates": [ 153.459, -28.952 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614849, "decimalLat": -34.456195 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786681, "decimalLat": -31.62973 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.63 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522538, "decimalLat": -34.451672 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.101322, "decimalLat": -29.489974 }, "geometry": { "type": "Point", "coordinates": [ 153.101, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926156, "decimalLat": -31.459137 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.459 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521306, "decimalLat": -34.466098 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518189, "decimalLat": -34.437529 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.330136, "decimalLat": -28.818573 }, "geometry": { "type": "Point", "coordinates": [ 153.33, -28.819 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.640641, "decimalLat": -30.330868 }, "geometry": { "type": "Point", "coordinates": [ 151.641, -30.331 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323817, "decimalLat": -28.828069 }, "geometry": { "type": "Point", "coordinates": [ 153.324, -28.828 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.088099, "decimalLat": -29.485071 }, "geometry": { "type": "Point", "coordinates": [ 153.088, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785909, "decimalLat": -33.70395 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.704 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064437, "decimalLat": -32.707572 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.708 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.945342, "decimalLat": -29.770486 }, "geometry": { "type": "Point", "coordinates": [ 150.945, -29.77 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.092321, "decimalLat": -29.488125 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627992, "decimalLat": -34.420966 }, "geometry": { "type": "Point", "coordinates": [ 150.628, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.918867, "decimalLat": -31.466294 }, "geometry": { "type": "Point", "coordinates": [ 152.919, -31.466 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926003, "decimalLat": -31.452395 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.556893, "decimalLat": -34.363394 }, "geometry": { "type": "Point", "coordinates": [ 150.557, -34.363 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.896627, "decimalLat": -29.632874 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -29.633 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.67874, "decimalLat": -30.214467 }, "geometry": { "type": "Point", "coordinates": [ 152.679, -30.214 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604983, "decimalLat": -34.427054 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.934362, "decimalLat": -33.964095 }, "geometry": { "type": "Point", "coordinates": [ 150.934, -33.964 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644964, "decimalLat": -34.400009 }, "geometry": { "type": "Point", "coordinates": [ 150.645, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785208, "decimalLat": -33.71692 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.717 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.248515, "decimalLat": -28.600723 }, "geometry": { "type": "Point", "coordinates": [ 153.249, -28.601 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.077179, "decimalLat": -29.446779 }, "geometry": { "type": "Point", "coordinates": [ 153.077, -29.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103988, "decimalLat": -29.484338 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094043, "decimalLat": -29.488732 }, "geometry": { "type": "Point", "coordinates": [ 153.094, -29.489 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.047043, "decimalLat": -32.650658 }, "geometry": { "type": "Point", "coordinates": [ 152.047, -32.651 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109964, "decimalLat": -29.490217 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514221, "decimalLat": -34.451728 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644243, "decimalLat": -34.398165 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605001, "decimalLat": -34.437864 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.107959, "decimalLat": -32.762954 }, "geometry": { "type": "Point", "coordinates": [ 152.108, -32.763 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627223, "decimalLat": -34.385791 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.386 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.616323, "decimalLat": -28.65996 }, "geometry": { "type": "Point", "coordinates": [ 153.616, -28.66 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.839142, "decimalLat": -31.447957 }, "geometry": { "type": "Point", "coordinates": [ 152.839, -31.448 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517943, "decimalLat": -34.446584 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520234, "decimalLat": -34.446775 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623874, "decimalLat": -33.569558 }, "geometry": { "type": "Point", "coordinates": [ 150.624, -33.57 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518893, "decimalLat": -34.447965 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.923567, "decimalLat": -36.592569 }, "geometry": { "type": "Point", "coordinates": [ 149.924, -36.593 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513874, "decimalLat": -34.447295 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608341, "decimalLat": -34.432132 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520263, "decimalLat": -34.446893 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.517794, "decimalLat": -34.445013 }, "geometry": { "type": "Point", "coordinates": [ 150.518, -34.445 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.069221, "decimalLat": -32.748434 }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.748 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.516953, "decimalLat": -34.446204 }, "geometry": { "type": "Point", "coordinates": [ 150.517, -34.446 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.557953, "decimalLat": -28.396392 }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.396 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.340091, "decimalLat": -28.645326 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -28.645 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521296, "decimalLat": -34.465683 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.749523, "decimalLat": -30.210309 }, "geometry": { "type": "Point", "coordinates": [ 152.75, -30.21 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104771, "decimalLat": -29.489634 }, "geometry": { "type": "Point", "coordinates": [ 153.105, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.471004, "decimalLat": -34.491777 }, "geometry": { "type": "Point", "coordinates": [ 150.471, -34.492 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900332, "decimalLat": -31.474059 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.474 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638904, "decimalLat": -34.421746 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.602987, "decimalLat": -34.417702 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063612, "decimalLat": -32.70658 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.591754, "decimalLat": -31.558461 }, "geometry": { "type": "Point", "coordinates": [ 152.592, -31.558 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623233, "decimalLat": -34.383838 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519878, "decimalLat": -34.452916 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.888523, "decimalLat": -31.432827 }, "geometry": { "type": "Point", "coordinates": [ 152.889, -31.433 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.638487, "decimalLat": -34.423009 }, "geometry": { "type": "Point", "coordinates": [ 150.638, -34.423 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.09347, "decimalLat": -29.492599 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 1, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785903, "decimalLat": -33.712954 }, "geometry": { "type": "Point", "coordinates": [ 150.786, -33.713 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.977333, "decimalLat": -36.564828 }, "geometry": { "type": "Point", "coordinates": [ 149.977, -36.565 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.428317, "decimalLat": -29.051666 }, "geometry": { "type": "Point", "coordinates": [ 153.428, -29.052 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.296131, "decimalLat": -28.829843 }, "geometry": { "type": "Point", "coordinates": [ 153.296, -28.83 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785212, "decimalLat": -33.715178 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.715 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.327635, "decimalLat": -28.940376 }, "geometry": { "type": "Point", "coordinates": [ 153.328, -28.94 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635243, "decimalLat": -34.420377 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103865, "decimalLat": -29.489601 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607106, "decimalLat": -34.422426 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.26475, "decimalLat": -28.874133 }, "geometry": { "type": "Point", "coordinates": [ 153.265, -28.874 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.093231, "decimalLat": -29.492626 }, "geometry": { "type": "Point", "coordinates": [ 153.093, -29.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.007423, "decimalLat": -28.623614 }, "geometry": { "type": "Point", "coordinates": [ 153.007, -28.624 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.60547, "decimalLat": -34.450792 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104112, "decimalLat": -29.477464 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.477 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617114, "decimalLat": -34.434341 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.637499, "decimalLat": -34.421394 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907338, "decimalLat": -31.451291 }, "geometry": { "type": "Point", "coordinates": [ 152.907, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521621, "decimalLat": -34.465726 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.632839, "decimalLat": -34.4196 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.063752, "decimalLat": -32.706589 }, "geometry": { "type": "Point", "coordinates": [ 152.064, -32.707 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.790809, "decimalLat": -34.183434 }, "geometry": { "type": "Point", "coordinates": [ 150.791, -34.183 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.323091, "decimalLat": -28.847774 }, "geometry": { "type": "Point", "coordinates": [ 153.323, -28.848 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 146.587402, "decimalLat": -34.770422 }, "geometry": { "type": "Point", "coordinates": [ 146.587, -34.77 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.657619, "decimalLat": -34.455535 }, "geometry": { "type": "Point", "coordinates": [ 150.658, -34.456 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.405625, "decimalLat": -31.930397 }, "geometry": { "type": "Point", "coordinates": [ 152.406, -31.93 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402692, "decimalLat": -28.260219 }, "geometry": { "type": "Point", "coordinates": [ 153.403, -28.26 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.15231, "decimalLat": -31.445045 }, "geometry": { "type": "Point", "coordinates": [ 152.152, -31.445 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.648892, "decimalLat": -34.454304 }, "geometry": { "type": "Point", "coordinates": [ 150.649, -34.454 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898649, "decimalLat": -29.631806 }, "geometry": { "type": "Point", "coordinates": [ 152.899, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.075641, "decimalLat": -32.724126 }, "geometry": { "type": "Point", "coordinates": [ 152.076, -32.724 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.10394, "decimalLat": -29.489573 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52145, "decimalLat": -34.446872 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.898241, "decimalLat": -29.631834 }, "geometry": { "type": "Point", "coordinates": [ 152.898, -29.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529752, "decimalLat": -34.467964 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.468 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 12, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.260484, "decimalLat": -28.838291 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -28.838 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.672445, "decimalLat": -32.060634 }, "geometry": { "type": "Point", "coordinates": [ 151.672, -32.061 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.082659, "decimalLat": -29.071088 }, "geometry": { "type": "Point", "coordinates": [ 153.083, -29.071 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.100663, "decimalLat": -32.734408 }, "geometry": { "type": "Point", "coordinates": [ 152.101, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.030692, "decimalLat": -34.027296 }, "geometry": { "type": "Point", "coordinates": [ 151.031, -34.027 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.635251, "decimalLat": -34.48802 }, "geometry": { "type": "Point", "coordinates": [ 150.635, -34.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.916477, "decimalLat": -31.450537 }, "geometry": { "type": "Point", "coordinates": [ 152.916, -31.451 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.834831, "decimalLat": -34.073874 }, "geometry": { "type": "Point", "coordinates": [ 150.835, -34.074 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.922697, "decimalLat": -31.459632 }, "geometry": { "type": "Point", "coordinates": [ 152.923, -31.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622844, "decimalLat": -34.383759 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.314983, "decimalLat": -28.949201 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.949 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617032, "decimalLat": -34.434917 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.797339, "decimalLat": -34.184103 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.184 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 10, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.519407, "decimalLat": -34.451167 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639861, "decimalLat": -34.400082 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.4 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.674671, "decimalLat": -31.165117 }, "geometry": { "type": "Point", "coordinates": [ 152.675, -31.165 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 7, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.816178, "decimalLat": -31.134713 }, "geometry": { "type": "Point", "coordinates": [ 152.816, -31.135 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.774091, "decimalLat": -30.865145 }, "geometry": { "type": "Point", "coordinates": [ 152.774, -30.865 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.616947, "decimalLat": -34.433689 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.402459, "decimalLat": -28.960685 }, "geometry": { "type": "Point", "coordinates": [ 153.402, -28.961 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.926317, "decimalLat": -31.458323 }, "geometry": { "type": "Point", "coordinates": [ 152.926, -31.458 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.082183, "decimalLat": -32.775808 }, "geometry": { "type": "Point", "coordinates": [ 152.082, -32.776 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.040474, "decimalLat": -32.734103 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.734 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.938213, "decimalLat": -36.559404 }, "geometry": { "type": "Point", "coordinates": [ 149.938, -36.559 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.595174, "decimalLat": -34.412067 }, "geometry": { "type": "Point", "coordinates": [ 150.595, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.552181, "decimalLat": -33.491314 }, "geometry": { "type": "Point", "coordinates": [ 149.552, -33.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.398428, "decimalLat": -31.96603 }, "geometry": { "type": "Point", "coordinates": [ 152.398, -31.966 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640675, "decimalLat": -34.493732 }, "geometry": { "type": "Point", "coordinates": [ 150.641, -34.494 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640392, "decimalLat": -34.398217 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.398 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.899582, "decimalLat": -29.631335 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -29.631 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.627271, "decimalLat": -34.420294 }, "geometry": { "type": "Point", "coordinates": [ 150.627, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.513029, "decimalLat": -34.447161 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.062355, "decimalLat": -35.020574 }, "geometry": { "type": "Point", "coordinates": [ 150.062, -35.021 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.506402, "decimalLat": -28.650072 }, "geometry": { "type": "Point", "coordinates": [ 153.506, -28.65 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.434589, "decimalLat": -28.620426 }, "geometry": { "type": "Point", "coordinates": [ 153.435, -28.62 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515301, "decimalLat": -34.451669 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.452 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.138047, "decimalLat": -31.402485 }, "geometry": { "type": "Point", "coordinates": [ 152.138, -31.402 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103865, "decimalLat": -29.489573 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615494, "decimalLat": -34.449591 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.45 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.558923, "decimalLat": -28.394389 }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.138047, "decimalLat": -31.402485 }, "geometry": { "type": "Point", "coordinates": [ 152.138, -31.402 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.534211, "decimalLat": -34.478449 }, "geometry": { "type": "Point", "coordinates": [ 150.534, -34.478 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.549848, "decimalLat": -28.589077 }, "geometry": { "type": "Point", "coordinates": [ 153.55, -28.589 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.699792, "decimalLat": -31.783392 }, "geometry": { "type": "Point", "coordinates": [ 152.7, -31.783 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633744, "decimalLat": -34.418373 }, "geometry": { "type": "Point", "coordinates": [ 150.634, -34.418 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.656041, "decimalLat": -34.458642 }, "geometry": { "type": "Point", "coordinates": [ 150.656, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.608513, "decimalLat": -28.688847 }, "geometry": { "type": "Point", "coordinates": [ 153.609, -28.689 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.907547, "decimalLat": -31.456006 }, "geometry": { "type": "Point", "coordinates": [ 152.908, -31.456 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.529787, "decimalLat": -34.471192 }, "geometry": { "type": "Point", "coordinates": [ 150.53, -34.471 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.989328, "decimalLat": -29.042091 }, "geometry": { "type": "Point", "coordinates": [ 152.989, -29.042 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617459, "decimalLat": -34.436755 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.629071, "decimalLat": -34.395077 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.395 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521611, "decimalLat": -34.465699 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605135, "decimalLat": -34.437749 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.438 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.986412, "decimalLat": -34.097116 }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.097 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.306488, "decimalLat": -28.930398 }, "geometry": { "type": "Point", "coordinates": [ 153.306, -28.93 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.109392, "decimalLat": -30.298612 }, "geometry": { "type": "Point", "coordinates": [ 153.109, -30.299 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.103865, "decimalLat": -29.489573 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.281346, "decimalLat": -28.821683 }, "geometry": { "type": "Point", "coordinates": [ 153.281, -28.822 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.919813, "decimalLat": -31.442736 }, "geometry": { "type": "Point", "coordinates": [ 152.92, -31.443 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.393231, "decimalLat": -29.016276 }, "geometry": { "type": "Point", "coordinates": [ 153.393, -29.016 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.051789, "decimalLat": -28.556666 }, "geometry": { "type": "Point", "coordinates": [ 153.052, -28.557 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.615875, "decimalLat": -34.435047 }, "geometry": { "type": "Point", "coordinates": [ 150.616, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.522509, "decimalLat": -34.464798 }, "geometry": { "type": "Point", "coordinates": [ 150.523, -34.465 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.533095, "decimalLat": -34.475677 }, "geometry": { "type": "Point", "coordinates": [ 150.533, -34.476 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605771, "decimalLat": -34.427655 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.512696, "decimalLat": -34.470133 }, "geometry": { "type": "Point", "coordinates": [ 150.513, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.442632, "decimalLat": -28.943423 }, "geometry": { "type": "Point", "coordinates": [ 153.443, -28.943 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639118, "decimalLat": -34.491412 }, "geometry": { "type": "Point", "coordinates": [ 150.639, -34.491 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630296, "decimalLat": -34.394442 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 1, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.867804, "decimalLat": -29.667471 }, "geometry": { "type": "Point", "coordinates": [ 152.868, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.90337, "decimalLat": -30.238283 }, "geometry": { "type": "Point", "coordinates": [ 152.903, -30.238 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 11, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.785479, "decimalLat": -33.713653 }, "geometry": { "type": "Point", "coordinates": [ 150.785, -33.714 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 2, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.525427, "decimalLat": -28.677947 }, "geometry": { "type": "Point", "coordinates": [ 153.525, -28.678 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.798511, "decimalLat": -31.127228 }, "geometry": { "type": "Point", "coordinates": [ 152.799, -31.127 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 9, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.514421, "decimalLat": -34.447549 }, "geometry": { "type": "Point", "coordinates": [ 150.514, -34.448 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.518874, "decimalLat": -34.438679 }, "geometry": { "type": "Point", "coordinates": [ 150.519, -34.439 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.851464, "decimalLat": -29.692524 }, "geometry": { "type": "Point", "coordinates": [ 152.851, -29.693 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 9, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.900272, "decimalLat": -31.443731 }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.444 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617014, "decimalLat": -34.430562 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.431 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515973, "decimalLat": -34.446968 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.259836, "decimalLat": -28.858963 }, "geometry": { "type": "Point", "coordinates": [ 153.26, -28.859 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.292106, "decimalLat": -28.821456 }, "geometry": { "type": "Point", "coordinates": [ 153.292, -28.821 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.039945, "decimalLat": -32.730618 }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.731 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630932, "decimalLat": -34.388486 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.471326, "decimalLat": -28.681525 }, "geometry": { "type": "Point", "coordinates": [ 153.471, -28.682 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636996, "decimalLat": -34.485592 }, "geometry": { "type": "Point", "coordinates": [ 150.637, -34.486 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.804727, "decimalLat": -31.498791 }, "geometry": { "type": "Point", "coordinates": [ 152.805, -31.499 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520329, "decimalLat": -34.446858 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.313773, "decimalLat": -28.949866 }, "geometry": { "type": "Point", "coordinates": [ 153.314, -28.95 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607747, "decimalLat": -34.436556 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.606928, "decimalLat": -34.454589 }, "geometry": { "type": "Point", "coordinates": [ 150.607, -34.455 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.596114, "decimalLat": -34.411554 }, "geometry": { "type": "Point", "coordinates": [ 150.596, -34.412 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.897333, "decimalLat": -31.474879 }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.475 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064528, "decimalLat": -32.709669 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 1, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.639635, "decimalLat": -34.399212 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.399 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.319168, "decimalLat": -28.886026 }, "geometry": { "type": "Point", "coordinates": [ 153.319, -28.886 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 11, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.644174, "decimalLat": -34.548357 }, "geometry": { "type": "Point", "coordinates": [ 150.644, -34.548 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618177, "decimalLat": -34.4352 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.435 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.786516, "decimalLat": -31.631701 }, "geometry": { "type": "Point", "coordinates": [ 152.787, -31.632 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 2, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.613921, "decimalLat": -34.437173 }, "geometry": { "type": "Point", "coordinates": [ 150.614, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630757, "decimalLat": -34.388889 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.609242, "decimalLat": -34.420772 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603947, "decimalLat": -34.427124 }, "geometry": { "type": "Point", "coordinates": [ 150.604, -34.427 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.950099, "decimalLat": -36.567944 }, "geometry": { "type": "Point", "coordinates": [ 149.95, -36.568 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.934793, "decimalLat": -36.648169 }, "geometry": { "type": "Point", "coordinates": [ 149.935, -36.648 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630656, "decimalLat": -34.420639 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.007423, "decimalLat": -28.623614 }, "geometry": { "type": "Point", "coordinates": [ 153.007, -28.624 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.622542, "decimalLat": -34.384438 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.526614, "decimalLat": -34.469533 }, "geometry": { "type": "Point", "coordinates": [ 150.527, -34.47 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.903968, "decimalLat": -31.439965 }, "geometry": { "type": "Point", "coordinates": [ 152.904, -31.44 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 9, "day": 30, "individual": 2, "stateProvi": "New South Wales", "decimalLon": 150.836753, "decimalLat": -34.072062 }, "geometry": { "type": "Point", "coordinates": [ 150.837, -34.072 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618361, "decimalLat": -34.440234 }, "geometry": { "type": "Point", "coordinates": [ 150.618, -34.44 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.880784, "decimalLat": -36.581514 }, "geometry": { "type": "Point", "coordinates": [ 149.881, -36.582 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 2, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104244, "decimalLat": -29.485101 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.485 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607973, "decimalLat": -34.436669 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 8, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.321568, "decimalLat": -28.824581 }, "geometry": { "type": "Point", "coordinates": [ 153.322, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630354, "decimalLat": -34.420931 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.421 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.640277, "decimalLat": -34.492814 }, "geometry": { "type": "Point", "coordinates": [ 150.64, -34.493 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520812, "decimalLat": -34.453359 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.453 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.525516, "decimalLat": -34.459918 }, "geometry": { "type": "Point", "coordinates": [ 150.526, -34.46 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 11, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.868576, "decimalLat": -29.666762 }, "geometry": { "type": "Point", "coordinates": [ 152.869, -29.667 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630527, "decimalLat": -34.394366 }, "geometry": { "type": "Point", "coordinates": [ 150.631, -34.394 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 8, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520305, "decimalLat": -34.447299 }, "geometry": { "type": "Point", "coordinates": [ 150.52, -34.447 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 30, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.636258, "decimalLat": -34.421812 }, "geometry": { "type": "Point", "coordinates": [ 150.636, -34.422 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.607715, "decimalLat": -34.436565 }, "geometry": { "type": "Point", "coordinates": [ 150.608, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.061116, "decimalLat": -29.741249 }, "geometry": { "type": "Point", "coordinates": [ 151.061, -29.741 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.043528, "decimalLat": -32.767142 }, "geometry": { "type": "Point", "coordinates": [ 152.044, -32.767 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.608517, "decimalLat": -34.456504 }, "geometry": { "type": "Point", "coordinates": [ 150.609, -34.457 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.838978, "decimalLat": -34.053416 }, "geometry": { "type": "Point", "coordinates": [ 150.839, -34.053 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.452014, "decimalLat": -28.661518 }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.662 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 4, "day": 21, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110216, "decimalLat": -29.490231 }, "geometry": { "type": "Point", "coordinates": [ 153.11, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.52194, "decimalLat": -34.450533 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.880784, "decimalLat": -36.581514 }, "geometry": { "type": "Point", "coordinates": [ 149.881, -36.582 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 1, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.516787, "decimalLat": -28.635764 }, "geometry": { "type": "Point", "coordinates": [ 153.517, -28.636 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.104192, "decimalLat": -29.479005 }, "geometry": { "type": "Point", "coordinates": [ 153.104, -29.479 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.934134, "decimalLat": -29.049587 }, "geometry": { "type": "Point", "coordinates": [ 152.934, -29.05 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 10, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.108113, "decimalLat": -29.490535 }, "geometry": { "type": "Point", "coordinates": [ 153.108, -29.491 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.395857, "decimalLat": -31.944145 }, "geometry": { "type": "Point", "coordinates": [ 152.396, -31.944 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.890303, "decimalLat": -34.018423 }, "geometry": { "type": "Point", "coordinates": [ 150.89, -34.018 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.325913, "decimalLat": -28.825226 }, "geometry": { "type": "Point", "coordinates": [ 153.326, -28.825 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 15, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515737, "decimalLat": -34.443537 }, "geometry": { "type": "Point", "coordinates": [ 150.516, -34.444 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.094981, "decimalLat": -29.483509 }, "geometry": { "type": "Point", "coordinates": [ 153.095, -29.484 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 24, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.521653, "decimalLat": -34.465772 }, "geometry": { "type": "Point", "coordinates": [ 150.522, -34.466 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 8, "day": 19, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.401176, "decimalLat": -31.951997 }, "geometry": { "type": "Point", "coordinates": [ 152.401, -31.952 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 12, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.091763, "decimalLat": -29.488018 }, "geometry": { "type": "Point", "coordinates": [ 153.092, -29.488 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.604811, "decimalLat": -34.418964 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.419 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611941, "decimalLat": -34.43259 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.433 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 17, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 151.929076, "decimalLat": -32.062306 }, "geometry": { "type": "Point", "coordinates": [ 151.929, -32.062 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 5, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.906301, "decimalLat": -31.436601 }, "geometry": { "type": "Point", "coordinates": [ 152.906, -31.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 29, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.614854, "decimalLat": -34.429609 }, "geometry": { "type": "Point", "coordinates": [ 150.615, -34.43 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 25, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.630033, "decimalLat": -34.388352 }, "geometry": { "type": "Point", "coordinates": [ 150.63, -34.388 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 10, "day": 31, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.037501, "decimalLat": -32.658052 }, "geometry": { "type": "Point", "coordinates": [ 150.038, -32.658 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.549056, "decimalLat": -34.511389 }, "geometry": { "type": "Point", "coordinates": [ 150.549, -34.511 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 7, "day": 22, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.299729, "decimalLat": -28.810669 }, "geometry": { "type": "Point", "coordinates": [ 153.3, -28.811 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.633344, "decimalLat": -34.489606 }, "geometry": { "type": "Point", "coordinates": [ 150.633, -34.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.617137, "decimalLat": -34.434287 }, "geometry": { "type": "Point", "coordinates": [ 150.617, -34.434 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 9, "day": 17, "individual": 1, "stateProvi": "South Australia", "decimalLon": 138.697401, "decimalLat": -34.956972 }, "geometry": { "type": "Point", "coordinates": [ 138.697, -34.957 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 10, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.925096, "decimalLat": -31.434891 }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.435 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.931009, "decimalLat": -36.595007 }, "geometry": { "type": "Point", "coordinates": [ 149.931, -36.595 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.110533, "decimalLat": -29.490147 }, "geometry": { "type": "Point", "coordinates": [ 153.111, -29.49 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 4, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.520618, "decimalLat": -34.450714 }, "geometry": { "type": "Point", "coordinates": [ 150.521, -34.451 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.623185, "decimalLat": -34.383991 }, "geometry": { "type": "Point", "coordinates": [ 150.623, -34.384 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.603275, "decimalLat": -34.436964 }, "geometry": { "type": "Point", "coordinates": [ 150.603, -34.437 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 6, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618876, "decimalLat": -34.436278 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.436 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 12, "day": 9, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.064528, "decimalLat": -32.709669 }, "geometry": { "type": "Point", "coordinates": [ 152.065, -32.71 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 8, "day": 4, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.796891, "decimalLat": -34.216551 }, "geometry": { "type": "Point", "coordinates": [ 150.797, -34.217 ] } }, +{ "type": "Feature", "properties": { "year": 2022, "month": 1, "day": 27, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.618861, "decimalLat": -34.440641 }, "geometry": { "type": "Point", "coordinates": [ 150.619, -34.441 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833136, "decimalLat": -34.085987 }, "geometry": { "type": "Point", "coordinates": [ 150.833, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 7, "day": 13, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.31535, "decimalLat": -28.819753 }, "geometry": { "type": "Point", "coordinates": [ 153.315, -28.82 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 3, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.33967, "decimalLat": -28.984392 }, "geometry": { "type": "Point", "coordinates": [ 153.34, -28.984 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 1, "day": 20, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.833136, "decimalLat": -34.085987 }, "geometry": { "type": "Point", "coordinates": [ 150.833, -34.086 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 28, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 149.976368, "decimalLat": -36.555504 }, "geometry": { "type": "Point", "coordinates": [ 149.976, -36.556 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 5, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.611882, "decimalLat": -34.420499 }, "geometry": { "type": "Point", "coordinates": [ 150.612, -34.42 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 23, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605543, "decimalLat": -34.432204 }, "geometry": { "type": "Point", "coordinates": [ 150.606, -34.432 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 12, "day": 18, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.374672, "decimalLat": -31.918745 }, "geometry": { "type": "Point", "coordinates": [ 152.375, -31.919 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 8, "day": 26, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.278134, "decimalLat": -28.679301 }, "geometry": { "type": "Point", "coordinates": [ 153.278, -28.679 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 7, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.316219, "decimalLat": -28.837037 }, "geometry": { "type": "Point", "coordinates": [ 153.316, -28.837 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 12, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.605437, "decimalLat": -34.427532 }, "geometry": { "type": "Point", "coordinates": [ 150.605, -34.428 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 5, "day": 16, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.628812, "decimalLat": -34.389221 }, "geometry": { "type": "Point", "coordinates": [ 150.629, -34.389 ] } }, +{ "type": "Feature", "properties": { "year": 2020, "month": 10, "day": 0, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 152.892385, "decimalLat": -31.477808 }, "geometry": { "type": "Point", "coordinates": [ 152.892, -31.478 ] } }, +{ "type": "Feature", "properties": { "year": 2024, "month": 2, "day": 11, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.825434, "decimalLat": -34.149997 }, "geometry": { "type": "Point", "coordinates": [ 150.825, -34.15 ] } }, +{ "type": "Feature", "properties": { "year": 2021, "month": 3, "day": 6, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 150.515048, "decimalLat": -34.459084 }, "geometry": { "type": "Point", "coordinates": [ 150.515, -34.459 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 5, "day": 14, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279661, "decimalLat": -28.831073 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.831 ] } }, +{ "type": "Feature", "properties": { "year": 2023, "month": 6, "day": 7, "individual": 1, "stateProvi": "New South Wales", "decimalLon": 153.279661, "decimalLat": -28.831073 }, "geometry": { "type": "Point", "coordinates": [ 153.28, -28.831 ] } } +] +} diff --git a/Jingmiao Fei_Koala observation/data/koalaRecords.prj b/Jingmiao Fei_Koala observation/data/koalaRecords.prj new file mode 100644 index 0000000..f45cbad --- /dev/null +++ b/Jingmiao Fei_Koala observation/data/koalaRecords.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] \ No newline at end of file diff --git a/Jingmiao Fei_Koala observation/data/koalaRecords.qmd b/Jingmiao Fei_Koala observation/data/koalaRecords.qmd new file mode 100644 index 0000000..4f8ade4 --- /dev/null +++ b/Jingmiao Fei_Koala observation/data/koalaRecords.qmd @@ -0,0 +1,27 @@ + + + koalaRecords + + ZHO + dataset + koalaRecords + + + + + + + + GEOGCRS["WGS 84",ENSEMBLE["World Geodetic System 1984 ensemble",MEMBER["World Geodetic System 1984 (Transit)"],MEMBER["World Geodetic System 1984 (G730)"],MEMBER["World Geodetic System 1984 (G873)"],MEMBER["World Geodetic System 1984 (G1150)"],MEMBER["World Geodetic System 1984 (G1674)"],MEMBER["World Geodetic System 1984 (G1762)"],MEMBER["World Geodetic System 1984 (G2139)"],ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ENSEMBLEACCURACY[2.0]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433]],CS[ellipsoidal,2],AXIS["geodetic latitude (Lat)",north,ORDER[1],ANGLEUNIT["degree",0.0174532925199433]],AXIS["geodetic longitude (Lon)",east,ORDER[2],ANGLEUNIT["degree",0.0174532925199433]],USAGE[SCOPE["Horizontal component of 3D system."],AREA["World."],BBOX[-90,-180,90,180]],ID["EPSG",4326]] + +proj=longlat +datum=WGS84 +no_defs + 3452 + 4326 + EPSG:4326 + WGS 84 + longlat + EPSG:7030 + true + + + + diff --git a/Jingmiao Fei_Koala observation/data/koalaRecords.sbn b/Jingmiao Fei_Koala observation/data/koalaRecords.sbn new file mode 100644 index 0000000000000000000000000000000000000000..cf668f46316a08c182d05f631b072518a3eefd9e GIT binary patch literal 746324 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 z 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 VH zRIRwWo}SqXq3uwiM?;}HT^KZ87}`V_mLk+1D6Uqb93Mel)NqN%{7_+r{w&(C87t~!J~2=gSaS(ndnQxIegwZchUERbLpSC{9Naim-sx+J8!e-`Sihj`gDE`;_@x5;%cD;2%m5;lV!;Sk98u$(?y5h?K%v5@OqF&%waxRUv@@+kVOa25T%>bB@L zF|aN?AzZ72%)_<4(D}l3_;1|@(d+q~>xr-LN1S=QeifSeut8tGhYeik2Ks3O*T3N| zdDh=pOOD@&k2V&I-ed*4!Yy*#=2X#}GhhSA^=xS+bz7J_Tlt(@m3J5A=9KlxwsKOp ztrHvq@yE8CvhKDQ!tDnkzT6QedPfWRw;aEN`Lkm&alZE*{9JZ&Jv(1Xepfl+?on{G zth4)__L2xX5ExdM9cwGl4!dvjY z@J2X{kn6s&0nL5t20prpZ*Epr`ebfdpWOUI>TmLMyvcRnoJM?seE&B$z#|gB)trx^!0rQS@%BQ+kJd>zo*na;OF$fSM)=F_&@pl5C4RJ5og_p_~#+l^QeO4 zAK|-4%(X|%hesXAcZ9u#kM9egWXp9vbrJm(zdmDbKBLc{@%=x$EOpO!L41@~TXbGi z*ba7unPy+DwsC+aTay2|=B4*xfxfFLCzEdn-ncVUbW;x3#gvVc_z;y&qluU zQpzc(G{tTBQNHClza2{EJ^S{d@_WYT`v$s>)M(XHr)!+1a$O&oU;lF5AGyv?rPcpa zBlZ7upUm_B?4$jD=6-&OR{nBV{l2hXetD<-mG$u}>&RE0K#qTns?w6HOhG2$-DgS~e z`(Um+c$3<*Kb1Kgk>iD)R}Nc+&tR@?kt_?&mynKc_vb`#kOU z4y)x*ho^O)nLMn3^2k=ovq~s0nJicI!1r?9M7iP5=XGD0?RVr=-hU6@$|JSp3168s zLf#%M@9vk6Q{0=Pe&w(2)3t1~(zml5!j&DWr1!Hj z%u;rCz=oXH_S5%;a=#A9ar?9X{hkQt{V#~E;6d7zK> zH!zyK2lvTAb>!e6qzrYHpWr-Nk)ZZHC(6tMQu_Z z-a~nKvK)~EW7Iw>BhEmc&uI2Lx}xf%TVi|UJVq~99y1UZ%CX*fM8_Lf6@OKI++bWm zeH(eF9REd5;JHuWd?#F`eos!!fF+UpFtG-?IgY^_m@1=dBI7LjAM$QFiR+y7KzZ_U zo$ut^a!Pg8r?kc>Ikg0qLB`Y6x5_a^%sh$xZ=S@I(f(q3(f&|*S~lfrzmYk=X?>^< zz-4lJRxBWAxS_AMpYgx?pVS#gGnqHD7O6h#BtFHDa&|fGXAb+FlSlPA#qoDsiK{VD z&gD3B!^l1GGBV%hc`DE2KF%wp27$Ii%oSoDkbyQmXRQ2Qe8?;^(i;-;!EJ|>rV zssEBga%mIQmvXSc|GH7J?sAl#@B|CYTqy#IqpX8_eQqc$a!tz`EHu1^V!5W-^9AR>4f&Pnd{ly zf_z498H(KZEv$E2|5AM`<7F%3Yb)oqm2t4GkNR!^$bH?Hq`bcvHq!a-r(ax2)#JGTajchd7uD}TyxI?z$0n*D zWE>xSuKFSF=b;8_Kh%l(Vtl1~Jl7dNQT4-FusQPl53}ALzNGCAU&9yl`z(*t$Fq1& z{f_2SK3d+)lZF4iPmXq>zFPf`g<+)X$F7oJD<5ZlJkEVP&b&CjLH$nTSHBYx$hvdl zBKey}tQx`|vvB^?IV(Zyb;}b0PQTR)F#?*7;la$f?@jZJz7x zzf`}=d;DHYwcleMz4t`z_j}_>ye1!%RsRQ!vj;rihm6yQ#ntcOC;71Xs_vxtmedc;UFC(9pUpW4k4rJ!hmjrG9h4cS%pZ2G! ze~nW9dI_(}Z;bbEtPkHNQh$kGwf*--%HJEOYuPGb6=`YQS=LIjzP~KH0?Kv;QR|Im zUrpIw??KD{v9iMlnV}y3Br`fpfsOw;*pvjW;XP!SwrMxrC|i(u%D6ZMkTkSuS@}chx+xTs0mo zS3Q5rRqMLt8l(NVaz3tFKP}g{)IZ~Q?JskPa%Rpiv&M^+Ie|LcWlmLgttBC_8+GArxo@W^&Z# z)ce57RaEs{WzBgmHRsv>VckdO_l~})GHkva9VVwdc~tkYX1DOA_@unHD~{Fn8(PSX-{mHo-0UoO-;;aaYd`zE zl@G+qgQ4=!D4ef;hYrZ2XH-w{RZdu|d^V@@wnz2P@xrqkQwA@~toOc4pP@ zavgV{s{Wvd_V+MU?N2w#XF25ait6_~iab&MU)NCmbvM=DOjS;L4`%kA;|NLHlACX?StRK>|W&g9XeYCP;Rq4D>x-XDf@~WTrLz(T046Ua2 zP~8_REME2S-_1B%p7uVxANjzHr{1&h_PxmaCimN;-0!07|3(fzA%_IZp)PX75jkeP z9P6z8j9aTbF!Fb10`WzCPqr{d$*WBEz18-1JDbhth4kGg^UafmAIhpT zt;tv0UNhTe{(8Ob4Wma_|x@j*Jt$Mj;%H@7md+(3< zMfRDe_5n`H1KhOTfWN7KQ6AD&?L(53hc!_iHcbvcBuD%tM-{=w+RvzXmx#@T9 zXR`->QhiIT+~tU+Fj4#4^r$at>%NJaHK@|U(dGFTo< zQvF0p^*?b|o}8?DLYO>VNuK38&)c;9g*vKV`BnMK3gxR#_yfLB`}N1lH-hBNSMpX{ z9rw;KwFNQ?H~4%kLJk7OXRb1>i>*!_}oMF=Zuf%FVz0RQNAp$_Lq!q^xB$1OZ*MtNPT!y9FrA!;ck!Wg z(zviPg(^RqH*JXmh+)b4&??VfI!U3%%dtt@(OmUm0lv-(M&f3>~e z8D;;UbiV#`l>^GlpkB!N1aqA18C4G%C__uj@F6%?`_EZQ`^|Y%^;|p5b6jhlqf=tr zB(siX`At^xHuZI;?vc>p)Zga6Ls39R_D}fxl=guhOi`uRO4{yJ$al_-0al@orJtIgl3wA*0z<9hq&JLd0>?Ybxv{*o8X zzu~kq|7O$XdaKE8^Y3f6F1+37j`{a8r>ER(c+31dnW;HV`=+$>z1H-4GnYi_eG-*&yx4b%Tpr0KWW^z*&k@QT@PTld6i2x!BZZ1>`Y#Yg)ct|4sv&EjhyEZE5*xg^_lu-8D>)@JZ@7d^6sl{#kiMcjXa7$UL_ZtCUA( zz#i&1av}L4zL%p)seM!#tU!GWc^i3;^5`Jt(KGO!9J2#2s^8dL%3~+XakW(+*BCFW zKHd>as6M_Kay{dx(7qT?sC_~R*2hNpD{`F^vunHPrm9DC-=h0aKS2GPoaCkYr0nFv ziN%x5IG$9Ty7_Nt*&Y6Go=iHXev^w}WvqrZwcX@~%2QS=Pi36Ocqqrzz9Dn94)n{(S?Q&LszuujI{jv!Q=Y?p zo%1(&ing1}eVO}%>T|nMzoI-ZQqHfBf2w`{a2eZP_1MA63%2S!7BXHIPEh;88_087 zR7rVp2f1XXwqLScE^UqHF;V@NF}{~|R$k8hS}|RD14 zg2;Z>T~%K9TCTsP?KT{d8|SFLX*C|gn`+;3T5c_cmvle2F`l;dR(;zUxt(=v2lH)b z4)x!;Q2X7+>IZyO zKVZH^?T)0)6Y8`dr2Sx3^*h)Jncs&hC?8_p9O_A4uKmQbp2lBLJ{+v}!=sgtgexCe zjHgsT%KCZqzUoJxs(#E9nJ>q={^M+ag7Z1CQvFVFzfa~$uU3#IMm>0Y0`6l*NdlK)*%RHy6g;c*b zK>e?MSH7MF=c;~V3-TVj$#}X|K=oUH$=mI;-EG=$A6ES?$KgM#>!utD1SYt{B4)=xAPjm-}9;d zy`}2k52a_z=98W+o4z+K+b8OJZkA=IY~?_$2bR^09E+MimVLPPXRmo>*(a;rAwYG9 z9m*Npl{5TJ*7uv0LC@WCtfRW4#*O7Tl6+g+Ik}-1YJInyG(RjSy=N?Etw)x#o|EMq zqy0Er> zS9~i&G+(TcQtB5HC3DnOdyW+{G^gsJn!i?94%Nf-9<#z5Du>6(oci9da^=-_xvJqE zd~KeK`Ptp(aIyHM5;iO3XOmBu?2#04xq$h-#L=WemkZl$PbwwmPcpw-Id(_hZD;zK zf8%5Gy-?8nuHJIYAw&0HEO4oy&GxT%x>knq7Ykh~Y_r_G&KJ61^h*1^M1t8aFrmV! ziZ)y7+=Mcx%%8DOs37OQmzy)oqyL;Jd$OF(7IRwO8)LRVWwv)XUHpvsuAiG|@@bRb z9Vvg*{9N3psO(!y_WJ`9<-ktZO%8q`hq=k9qjJRGa%36&D95~!(K+Ol%5u(0Id`&L zI8`o7lADLg?V07iUu9e}zLy8b$-`CTk!|v5FL^vjp6o17m6K;mVpDmZ`*AT*IjNYu zHeFtSEpI=QcV5cJ?C0qfD^2QHkUy*nWK>mb(Z1ObD7_b*_|=ZyHUTPc%z2!ht$b-P#>>RjGRae3P1W`{J}BS#CU1Jk+ZpAZyYl{@^3hQF zDLf{k%3)h z&{P?mh;Lmy$g}b6_W^TFAlIx1gUE|ZWtXnc@mkb_g_LpS#=d{CT zXErlmTFJEk?K!*4rru<;_ZD;AwxxI%pGzy_7VoX5-L8(Z-5P1%PIaf<_(=NyECVj9 zU+7@v(DgF+AQ|ye7WJ0J2Fenyvf?^frI7YhbDKGbE9N{MHn?qcH~&5J{3c&b`}t*! z>)Oob-<{r+8C&BQ>F9v%q|-I&d|GDeEM1!79_d;JYhr&KiU*`yKk4CtF*rwhR>Gaq zD*{i+tXVMtpW#>OQxQ2{wkpcm8e(_pTM%nWzh7{f^e-y|Iw9KyoK+5Ni&6N$`U~aY zzL+etyI?ikif8Z<@*F}+D(CRREqGXl1|!cel=BJYeuufMJ**{iePKM;uraFV^ugZ9 zbIUnaIhUi%&2!1UOF7R3+$i(9VmPMCd_0eQ^~jfH1ot zMkp6;gKS@v=TP*5>Lsuw{YxgOUXpQKn(Hh*QS~z2aGaSZ*UY^6U!JFW*+N)SmgByc z=ed?|ta|wwvf=_+$xc?@B&*nC+tsdX%si~pgM1qq2UY!*tImRDE zheghdO}2VSyCu>-?ay^@n*JfN1s4=De_mZkPRb!?&t6bqq51j1`LHauL-t-EpJhqc za!I@2x6;mIVtBOqv&50+&ob?9o9q!AxWKIE*3@eRUHiP;9)Bb$^zR3}D9OjyAOU4vw9h7$M<~qzv>px!E-U+ke@7QOy!yMDk zK1TiRmzZrHnEi%Ncb#FLhpprc*O_TH!bz%I^Odcg(r&>_*IA~Y-Ey_tosssXP3@uC zJ}}00nrXLwlXgvUHeQkTm2tUrb2HmNO201-Gt7BrC^KFDfWOF$nXoZN;}PlTgRP}g zAXdQ+cna@JXA9l1AQqFEoUkaamoAwxLAv_lK$)5SX8x}1#`(JyA~(ct_B8ITprVZ03F zz6Wxj0>@FGgxvq2%F02t@gH1-+|Qsh%E2>mpUm!~`=334oDZu~Ka7makfCZ1S&VDZ z{M`pT^LH!E`jI|Aa@a6Ca({BnRSvDK{f075!Wc(kY#;uk`h^e1&*~rkMLB1ja;_>G zZ@FHno+k@3Px90yx0iWKV^3|Lcbam(P|Sslzx@8n5u9HH^RmE4)eDxzUy$=Jcuwb4 zsJ!Zhcs_-B-i6t3;h)uB_zyfSi+Eum4wOZkBICO#}P5?9L#+>eS~lq+(7D?TK1os}4em7b|yiFsT(vvTF!dY+Ye z-jy3rpNCIn6;He;tMc5da-6E~%shEw-bWE?ug3nWF^{XwQazG&J+hdN8~H``>YPvY zUS#fb^`W|NJ-?X!KQ;UJh;f)^*5RB-r#i$K3qDaUnJi01nSReqKkrF?ll{&ApLbHg zIJzX@i) znKGK~UYPBiCVEGkp9izOo#Z{)n5Vv}zch7+@!k_muF%coS0;yy_8w!ht(LSZj`kU2 zzDsOHMrR%4WBO#2PQOaGCbGmmS*e=oV}8eL^Bv|LW%g70_3$hs%r{Gc!m{XzVO~+@ z`^M2W%rnZ%e3uPZb~necdt zjKES@QT^@OlmEdf(w_6NU#fl{e$unSMAv9@9PfW*k$$R2ntN!MY|ek+M2Bee-0h1^ za+qv%{6}W`A~WyDcons)vT)TbavO=Kfjc zzb_-c$^yU1A{k{-NA$r4vg9CH%1xH3sN+_6qg-p!)ni15?4#dH3M7+ zn*NSE)z3ML%yeGuZt=?Q&dTn0m9r#B?>tyc`|%#3oVA;B)+qe0y3Yq05TgABMyNfc zyy~I;%Awt5p2|2#?Rh53{O@JN3|X)pK9Ggp$Rbm;eTja`C3fhzC61|H(p9-+Tjf$0 zWSJoKFMnQE7_NGS8R}oDfO4gBYOfNBH&w4XMY-x)HZGIvIq_eYtp9DbJh z7a-3e|3~sC8IcVS$pRJzW4J7MUl!u{g_|oEZh_N~;}quk7EVyT2gpUhbj%tJV`b4 zBSQVE^~F^(lIIh7gv|Y^9;jTM>#80}-X+g@rfX%aXZHWW?BBP$Lyxq1m{nTedN}kn z+54MvxtGf2+sGE?cQ0wbbFjH~_U>Zd->%cTcy~4WER*4B-yt7OyF*8>PHDfV2r>DS z(W8q)SF>NcPSUHF3`vw>BTU=p^z9rvnSQ~)m~6h4Y$0tN|8TO|T%2U78nR{OKOEbd zy4ynO9wY@VKPUKRj??Kk*Vg9!k|9Mp&z4>ucnF`!EIp+6VwtTDZk2w^Wl)R^{Z)pA z%J5#;N9Nuk^E=9dezM3oS*)Tg^P4RH6Lydlr{PywEtjmm!Cc>WbA3*&Tz@v#m*xIX zuC0va_nL1QQ?@xZb!}#{eO(!5e%`dVOg+4@YZFtq-H>*Rqbf39d%&lb4IKmmB_u?U3vD zT1dW%JU6e`&nXg%*u1{$*Fdq2rP`h zVlRwF?wb$y*XIm%&O2M2a<(JVH>a5=W0G@wfCiM?2h}EzWGR^`YlE26xUmS>> zN6=I<&oPL36wLe#4pn<_2`qzM@V3le3A^KF84`p%$B+W#PB;V^$019}hhz>1%!gce z4#rF9BGp5=-q82TVZm4#TOsEi#&N=!f8iO`9?ty@uR&%Ugr8H+>5OHOahQ{Fos;v) zd9_ePVYBY$e5`)CSm$z$Co`{eJ1Xb?4LjmU94+&(e&-oR9)~M%E$&3dWnP|pUhYTU z!D`RT_2@Pp#F8@~Ax8qA0 z!TTtJ^Ne7;M66VM0on^NehP4Y1z6V$B&c6Odkn-skmpm7`B5;D`oFSJ81mc;{YmC| z6k4ZTI6tlzVdR&ZgTijjs;{Lb{ zSK~(9hg^U0o603P{}P;k3AQV-SM4RUA@`@`05bEtH^P?4^R37{ugLhS#Clk%j`~$AV@TdVvL5ozD+-(<#rrDG|qu6|C#l$|c%N7bF1DLZ$=-nd?7>Vzw# zYfJpB?cI(`_sgn#dP}b>GD|KzfDfg20hyKKXZ?lzT>1oIL;P80D}h{JwyVm%opC4* z$5`oC4m;_5{YxtcER%sVW$-MS-Cu@`z?U*dW*N3g`w2Uw93C!na-F#fD(B9IoAIT# z%Tri65BEL7T{(i|Mie7g!cDkM+ehq?h5k^z5cj)qh;rc`I9?WU#FDaTW85W+{Ub|o z-%CtZF1bUNs)k#1+|t3yrE}vbS>}r@Ylq3|U(QRpTz>3|18E;jjv=qXBX~pY75tFv zs8E|cPgedUt5z`c#L>);w&b43bya<;T#fq{$@N8!R6TOEj$6GUHd4L$N7*6(izDNy z1@p1R@6_XDOU}Dx0qw6P-9|Sz1}GIt|1qgpY`p{?_+EsLE*vXXAsw> z(zCuSloeBC@%ge!P1zz)woluSv)Rwj0pWpWKaRiph5H*bT~l^jfH$Rk9KMlWf5|Mx zaE1)*faDy9lykh4c^b)xOR`{uER-sX?$mjduB}{dovc^_KgjCK%=w$Yhh%fe7M}LA zn7{cuLiXnGC)u1b6v$Z6{CUxRp=D#m-Nml(+cHSzx1gKwE^XGT==J)uvzz@UzHGf9w^oMkLE!~RCpw%+} zG+Cm<`{AkPcYOJ#ne9Ez_TDKY-v|fTsWO zw`Ti{)n!2Gl&H7E&CerMl&hu4$c?6d+V34J-ary?~o6K3Ql^xB0k=Q)9pzX47Gg&O{ zxtiav+5%sVd~NPW<_j{g@2k6>NA2Y+%L+EtE6kEr zIBu2K%GLf>zv`XM^_o8?x3zsV>an?>jI;)UVWiZebV&=>7Bb$zzdWT#%6c^!P_4~WG*^l}A2sYP4 zTjI_3?HkKZ9nkz4w|!7rdu-Bz%jUj)ioLwxiuv=~y|SfQ!|cu9Q?U8&kBd8Cw%>yf z_nZI69KV}#hYzw-1vGy*+&;V6&T0RiIP<&b4z1+hX}^aKG4%<%_wCtl_V){}!z;3b z1NvhyMq)?oj4SY&{G0xN=Ox#{x)_7YaE8MAf8syb6Z_&&jKUc>6X)Y1T!ve5A0Ecjcp2Z| zJ4}@w>@Wis!O~bBt6){EjdidQ{(`NM>+H~*+#d(wRGfqJa5b()uCv1_@)f*?5Accn zJ0p6b4+dcfhGH1z#9WvM3t}ZX@r) zeaQ87yhKjKJ7%7QnstQd-SIJXo?pjjj%BTxX|I zWUj9hYLdw^QRN%)9E?w|H{scug(GF9LRI(%y{WsfjZBlb0oP2GJZNYC;x=4 zur;>9w&wnsZ#J9j{%vvF%{p^W{_PyM{lE^Jtz(jD4>#=|aa#_gy*IkczwNOq4m17C z_p>cz`~Dr~ec;ks7JR>b-;T8Py{Y^=S$6W>5x4Vz8Mlc$_U$z79gA$+zuj!tIqiGJ ztbI18?YnlQjqB{&ckeLkU+0RZp4-$NJ`egb*k)_~z~nq>>*J>Zp9k7(UPGndewo`r zR+;;$-)Hj;UDE@7umBFi7xIUq_+8e{f z{@55#%ZB!{QAwQ#tRQ~oWPDI*&TTecSmt|{5iVH|#yZ6mPcr~aP@n9uZDuZ;b%=2l-^KRFlI_KB!4f%uo(-}RnHa5nea4@dJTk@}_ z_y_jE<;Z>bE1rBxc0P+QWEY-Kmm=gQ$n)ybk30Yw$6cn9=OX*>>ZIKDw(QmryCM7O zHb(g$o9tz8#!Wu6-tPU@<9kn=tzr#XBUyHf$8++ZV61}8a10*DC-_cwH-CXCZU5cb zzWX-vWxOJLbjM+M0+VFVy4Vgo$N}~;Dn*XmBqywr6D!KeE#%xk<;vx9!vMKGr`)+( z?(vj~>*Uo)dHXkcr=|SzU49M6Z|Pd@tz@=;@T&CJbz1&?%>B=w{(kH8+5Fk3ORG=m zX5K8_-^wgM$gBf#oAkRR{X5{MPrW~zeFm&i4qPjPhp8SiQ#r>@8Tz*j8zys2lSLe4 z>C)P+!aL=P!)4_mvZ}9)v}E-V^{?rtT+<%|KlS=-em1QcL@tgk>Hib?Px4>n?&Kci zp5!QuX1_DYvGiL(=04QiPyIOF#5?qRPW~=yas9O%)n3aJv(nCesa1nqllE@pgX9yK zK>Zx1;J>tg!q2Mz;DM3&quPJyO74TBaIEgb4>9D$xRdRUBiH-GE4A0ota|NwfGNt8C0+1f{cqgdDX8D_p?r2?YB-VGfyJ^ znb0Xji~j4V z@5Lj?e5rSiew<&uhiv~%_4>c7fBoSYhv(I=KHJs5Or3FF|GTztkO|$@zX9{CL3Zk$ zwOxbWI3G9QHe{SPIL&qsRR7Ug`~A@qOJW`M`|($Dd+d(maUc6Ri>x0FGpW5H^R;29 z+8gGAZ&-FH%K%RljmqyIvMvTWsPt@MnS?AZ-g`AaKkj!x!SD;=Me?ivw#=N&0 z_o6<6?O9(MuOjolYJ5TG-}n-B##7_lY|nW%eoK3*`ZozyZo>PeNe?pPsR`?76P|aI zXxeA7{Q+b>Z^Ch!Fut0wjx@E?c1<00K1~^SO+%Y--q4Sf9n3Z zhw-xVKQ)!R*H`YoO7{37dxl^^_3J-KjtP=;Cds9H)Nk)Q<@iK-X)MlA`%P#0?=N^u z=l6A;@^=fp(zml5M#>B>(*1UNyXF2!dJb0I=ecs=A2Rg5x&A_F@3Yh)ABLJ=cg#y2 z{9%asbDJqLV>zsf$?E5LRN3iI9H6=r+c}4+?i{1K^Cjg>S(IITQwM!8zgKaop}NaT zyeM63t6$~=(#=P8w-Oks?cKW5K8pHO@-*@}>F$mJ7=g2q>+$eX_TaiaPAYraVQ=l< zD_F<(`c?HTp{i$zAuq*5>D?TE*LL0q$;Xj?S#8Q$E8;Zm*QdX-&kg({vpM6>I0jeX zQ60~>y|V8I>BoKdYpwnJ4N*V;GHUnVCj-a z`URgro>TTcI*;sk)h~qm7P3G&M<{aMp*yvGXuRrS!!beTbVN^Vg@57y`n^%kwGp|$ zxicx}PW!#2`L`?9&pKZ2J2KCFwdYB}cQS8#wddu0^3GK~UtwI1_htT^SQ}g51sM^9 z<79#Q*a$nzf|YP2?vRD5V64uounjX}6C9*|g@Wieo8dbaZ2t{dns?6r1nxgw^A>ZOZQQGnM25UEOSS> ztcNT|z5Frlzd{q$D|N#0xK~ytS9Q>Fs+Ll{Y8f)~p=w*|+>dJPw^}P5r&^TyM>3wO zvz}DHsP+~kw0(;yxI+EA^j7ZrM*Vu;Q||dx_6kwGR}Xxm?Pl>j<8mm+6*uFzh>#zcV+e7vPCu7<%IfoZ7zG6-^JS(HP_>iGUTm! zZ{;-qX5QZXT?Sj*lzwl`b!6%$Jujv7e`~JS%aYz6s%J}8_WvVgz*}=4!saUHIiU6e z?wCjQ0;81+x?o9dS7?!P;mX)b7RjmYid>b&+R0L*)LtgDEZbOCsE+5=uSG3$J?5F& zTvPjeFu#u}h{cjqdw(#$SE;|$w3~mQX4Ojl=Y#of@tB#~{e$^l@jR*Q=O-(4kkwq( z-glUC-+jvc#w!oXtsM1HdH64KRFoX^MD1fw$nnoqkLiyazx1*4au>NWyIh@Dt}leI$YaJ}0qX!~syaR~C9w{zSbl~v!t z{n+_fdDj4(|E=@)F6MvVY>AGy>z?Yn%b0m${_lVDWH;k_kGh} z4)Px3L;`QoK~HCetMFW=P11ex4P zrsR@uIj^@nb$#zLs{W2~^DbHWJ@esTSLJ_szW*|gKQf;_hpPQE>*Ti#>DjU^m)0U_ zS2q3rS#}+z{j&7qTMqfLfciP;zFH2tUslHY>YwqN+8y;gEaxh!JL@@GnRH!NrpDS| zrjDrbW4UPEuw2V(KdxF=EjP^%%T4pja?hjvx<61qFBeQT^Q5eK&ooiaI#~K>{j>Zu zjx9fpZ_B@>+Wqg!Ks^U5aK3WTEPO75IsfcGC}-FDVC5*M^U2Xc^-#7C8?AbHcRa1@ z&ADFvaDf%2{hj{~W3Z z?UUIT%N*ro?jbUwxGcHxQ`gVt{agC6wy(NK^=ge&uQ5c{^i+HE!)kASMY%-{<=)Xa z2bbYiJczgOIljiv_)Yum3+aU-6m{R;h4@VnakW>)U&izV>~ zY>F-MH*Af6-~b%Len*peu6^Uk$M6#UxbD86l>3FKyh0>z_dTU9}Hz#7e3U zXsYuXFrT~-8LtC&ssBI^Gf&E=&y)1|Fffby4Xj8z&uL(D>Yb?%#+lUF@4#);&r)X` z4*a6}pa9heg<>8oM|)i|<9*N)>YJ&b&~**EO@4(b>NnT}y;L9UO=cVp&Pgtem9U2P zJGc(pO{C8C4W31v^BH`B_UqI?X!{|~st?JGVQL?e3z-K)%91-H<9f(+wwp_R1^GNa zP<^N)`d|bW!ANAh4Q)aG9b<3?Uce+BXXsV(YjU#kFvjt)dgPzfKCAMs`ES}MSFVcZ<*dg7-b}wn?`H%Zo_3_Mu@os7#&v(#x z*3a>U=*RhuZ%#knSL1n)j{k#tJN(Pc6Z3a}%{)o}?iv3#_2KMqHhDho$FFjNg%0S0 z+^-3&V-qH5e-l`bC-8oraD+PZePR}EKhYPN-xFDnC-VN8SXA3hY=gXqC-R=3c%SXx z(Ed$1n)w^eyo%1R_GsQC(VghmpZY-Ly%N2j%=nDvxkW#s&iWhuhW#*ZCuLKf6o?Jf ze-ig~67zM^3hLXC<4wBAc9-!U?QfMQ^B$YbdNi4FJvoy0R_Z^Q=Q?>jb>{WtL*z&J zjQ)(nDcrXytiw~n)IOyYmcc6cC$g?i>974xnN6MRox*xDG`z%^qGsoZ)OMT%-@-;2Q$Y}=euGi*ERD4^?&88 ztmvoX%qmId__OL#Z;IWK@3C3D-)3i4eKzah>~QU8Hs2?+8`I8uJe%=3`!DK~=syiv zXJ)6+{$9@U#;)o&Ckh#_a~W@Qd7sVY`(bWT^_yD@xvsfU+TUE>_jC7<&m-&2T&{DT zgX;6Lpbw_~``F6={d_WyaW{|kW!@3`ozd~74BkL7vBvL3}YrvA73$96=%_hKiLx$m*e$5__m*wwVJ!R@${{W6YY`Cg9YdSdU< z&UaVr3o_$xK_2A=tal3vkqcunWSw15huj+fLFV%U)`bbbqVBKLj4J*_Mb(=x{Qvis_{ z+*SKo9zkZ@F0VoU6&Y8{`T1gbZ|cmm<*Ug2Jh7bj&~ny?<*Yx;dH*cuJ7Gl`9e+h1 zZNFj~vcDB^w4bET_ABj_S7t)KD_7kJ7{MeT*W%E>LB%7$op&6M{T#7b$T`PV>Q>Y`bXLu zVcPq|{2TrM{T#n~p!T&@qBD3DCJwg2ieo^~62jz7<=XD;`J(25M zSBQR;Hx#3t_xJ{$(+1Y94QpvXguF*K z@;$n-sOlTb;P1Fx=d*F8nJ3l$d!KA%e;e7~M!q{XG7dK~4>$6>Ho0g&o7}bEO^mxu zdC6SICcZm1wWZzxJK_Kwjw6uueA5Hv&AfLu=hOPQneV#IjN{F<>BoC-GsoS`b#LZ) zn>*8Qq0WCZ-(j2glTXPl<***|+_&(4+rrNYTgKDARr}qtgS-ci;BnedkQ0z~U<>nq z3qLCe+xRZnHix{G z{`-*k;kJXc^S<47OwVB(@272vv@>qD`zUWOru}ShNnVK?sPo;iouBizbKkbd(eDDX zE^p`e@H_Z@#g0(5@AyUg+tHQGbJ@ZAvxD!k9fxV>yJQFVXQ!j;JDs$jovg1r&7U!* z{cqs??|rhf3;nonJNuHk-#gcnH{nV4$2zd{Dw+4kuFUGUtBmTqSl4zjj(7b*``@&) z?(7;#{-E~VUdp>!M|QI=?jAvXH2oIiI^0A%@8R8y)7`xHc5|M)Ss(YXzU<*Rdst`o zl+*t9Fu(Tj-rK`>!5-dwdl>I~IPbmw+HNn;ac^NV-%ESBzk8?XJoj?md%3@RSts@~ zKK9;W`-k{h?&E#3FG%~@my>#4GS{=O74_B_jhz3!rQ{WCx1G#5-N*Z8ANOs)i`w^l zU^Q*GzZSNo{wH?F9<=u)PeiVJKkL^1m+BXnQS&j5c^Aihjmxg>;&^Yyv0lWn-?$;P zN8x1TJ1&m*SRCtG+-{D?@#C)1|Av_-)&H9(aoqp7r?m4N4g@J5V4NRdoF8DFJfI>)@eA)CW@My?1C8^)twyJI7~Kj%R+vmmpWf#>hO0@2CC751>9D zS5ar3is!u)f0z0b`hAm!T~t5Jyf|Ey%sPI!HMtj#VY^wl755`Q2Oqvlet_@UJ{3R6 zBU#mcB!rwB^CRC`M_AX6OrrmETuHx&$b0n&-$_Ru)$gb)=2E|-^~lV>qkPvLWgR`b zlz!`RGyQpg9X(3^g51wz{M>uY&CHV;|IL$Q%-3Vg(_?wG-LVMm{}|)Hh@(Rr?8l zY1CtJ4+9f6$Nj*y%Xxd?%e|zh~T3 zKNEpfk#+eD>&ux1)OYBALeP| zIr`tCAMcAq-WQ2)sDG46tfNWH-=reci(_T&KZ$vobW-)pm9dVFcbWNjneVO3tbdo8 zCs#75{}pd6i~O8>rGfTyrKy=G=HJ4YpHI^Ne%FBsZAGMM^2+)q2}#TCZ)Ri4w; z7HYrxm-=7rM;?Og=jsvKU#ou29kV0*yOvM=uJQeFttRcf53V(*o%Qq@JyOn z`?bB~1myW$J5PSj{!{fFuJd!zbzjx5=Rwwq>vhSz_pfg!-$mX(*WW4M;J)8zq~qOa ziXE^Y4#1&o$MxNqL7q)}EH1$nv~Q3%LoiJ3H<|x8n^EUG<>q4Ams8(~*Qh_0w*oN+ zXCcSG#qn?L(e}4kuWmghe?{i|ZRX=`=Edzoy6?BSzqeU8Zr9Rww^^rdH>clx>b#F{ z^FF%cr1~A6-<@DG--CC;$gGQZO6xlAFhA}z(Ejf%b4?@<< zJ7>uk@S?oS`gqrY%(%b%e?;ANKvh}W1@L>gba!{Dpkg;F=BT5Njx{_a-VCENMlp2yDzc|7m$<#)%cyZ-k)dC&Rxz9!c9 zzA=`6-;(yA1KG~^pZ7CZUxV}Vp6}W353*kd+e?x2`Mk^bW9D-szaDdA%6XR0`JNxl zI-f839H;qzvp$hd#`f~3Fi&OXb;;-bFF&5`36%H0{48dEPR;+s<-gOxynz8@40!}bbCQI4m=IqWx&@^f2Z7&E{ATX>wA^S|%~*TeVS z!fa-~=M?ffeBk@Shpkxt1MedrIDS6FVYwn(%5hlKg1HZtE8_F1h|jqquBYe(`<3r_D8+A0drT{ll5LSf_2`Hiw`h!{1qQ&Ki;2;`T4K7n)R>f zU(yk|WD@1PDp@V_q}zYbladYWzaRZdJ&;R%nK?g7$Fn{Ogy{(+*znu5wa=!nR?_&Qwl=H6q9+&5MEq}wzaZt|pkP36u zD>!c|hGIPxSLs9gjB?yp5c-%1RTE@J;sSjG3LDl=w2|Ev6%`8ld;2=j0{6YH(w`K{tSs=CYe zhirdE(^%){fGUprYF)Hf2cW&WJLUPU9?3k8&ZFlk-*2j4Fz3iT`T4)+Nj0BupK4({ zpLn19#OL^@$*fPq@}K6@b*!(ar&#Ct|HS*)r##j#U{@j&vy`TB>m|ysu`BE3_ z{qh(67yZ9*o_yi_{<4+z9hC3gU-(|}TyI4O<4V!Fg7xa$p*#+qN@TS&wy(zfyP~T`U6=c9iuIEf!(*6|pDMfD_mea$1Rnc3)c04Z>y)(>-6!SpQ$Nf~%Z-u%( z?$e6?FU*(+ivA#G%riwF?-7cAHtSW`zJ4_{utD9RAN`AB-YW*YP6iiQ&*X9y$c6#* zcN$LDP<+l)jP#L>I3A3KF!MSZVLm8ExX&p@TiJe;KEQU3Ya$yrp*&t=o?qh;tmAW) zVmyY+;k{8Y=J+?h#QID2&qp>Z=eV@c zK|c#q%5iGp$y@`=S@6DM(Vv;~)dKIEip3x7AIf%)FN@vGcpp|Q4m0C^uUO#yL9zIX zx+TZ2r4w^qtk<$W?aVsQt0m{TCEjZl%W$@HK3U>EuUKy9@~7F3_XoxD19LI7Qqa#T zh`A}{{I}wL#%cij@jhq8d1bYn{lnP4pI&7B1~c!UR`*#?X8k4eYi2x86>HxAtvjOK z`X@RG{j8_adD`cqV$JPar?6is+HE{&AIkA)GZOu5{-Fo39-G_j_l|Ww|7`huvX#FP zrtbOQJh8=dTCw#(f7_b0Hr8Xy>uDRpe3oWW-tX)jv7G#WdCmX3SM2&S|HeF+c@&*O zc^>5VVr!qzcKF(h0=e-lJi&F#rYZgbDlZBVZS2Q zzaYDC9J>TE*F(Dt-w#|kE?s)Cy${=YA9R_@Jd^F3zmxLIfAhp8lJ!`+i~Zx7Q;}VH z9$g!u?#kz&>lEhM^bkG8UCN6CN?l8|fyxmE!Z3;<1P8w4SIXi`e^s&b@Oh_ z+=cdLzsZ#2%$xU5Z$4MOquHP1#GB7oZ@wpaKVUn@pZ9y_544O{(r?g5^Y`@Z~qQ?yC4LWL}K(;kTUqA}GhdADKD6|IW=om$Oy6#bjpeu|k1mESR~?j!sCqH=7NoQG+<;QZEb(Qj~Z zDqL{^hOdWFQ{WnV7-LJl;o2a$@d1qe1#af@2ZkXZenLOPBQEe%9y}cm&rF6F`oOp^ z@a}4u&<`fE-=k3Erzhd_i|}PHm^ucg{|z%NVOCk?xGEW^?^MWnTwmTX=Ikyz~ zOEayC!whX*@sYn_pzbI8;aNGVN`5!Qv=eZ}N4Tm89{vU|c81UHR*tUvOQrfUOsnFo z`TZ;XWj(r;BdX+g&c}F49-vuo*~oJFU6*q|l#MEv^{>k)8(l8TZTE(!98rJa1;0;% zKm4>Rewx46`kSoBuxxnw2sux0%7&E>SE+W%?}Am!&jhF%70oS{IiPD)G_P2Gue+fW zvbhDcc7YCe(eCDq91sBO?1l~NqJ4l0c|a8Xg!)vOW9mV&J=dby#q#@f^(=~J70d74 zwfT-5a0$8IN!TV9hM1wfqvrRW{VvP@ls~^aNY7TOj+dHv!rBII_t|Wb3)m z?oj@`0y#dr5@h#ZkUgf-<*3)RL~h`U+{78{YcUnJdWU+O=CGaSbEf>CJNY}vGYjPR z3hNo?&n}STt5F0S{S7<1NWUS{Pq%1VvHX7CN%FIO>OUmcE1Fz9MWtGHy6B%``TeHR z9?09Pi~cQ^YjkoN^3&tU&vTJqK0vPMhWzm=tlpumE5;MFS+P7U+Zig`S(!68S96|X z=s{>;1`Rjm%*)kW{};$cJ#*&gE|6a@Y=yd+H?(+%cAF|_e;jp(e#nlV$j%PXWd-W) z9?&b2o`8Nn=;zlNIdBuK%l)ml4DAi0V58QsaV^-y9X8#My`ViYD4DCEV)1Ej)eL#(CE+1Sy?jfjQb*+dLmm- zfp%vzXJ^THbeM>CCqw!R+FdM=J@+DeRzj~_)ctls|6!=t4n?jLj$GFTx$b=!bQsnz zMSJ5P*nX2Us5cFw@iYzX%_7mi*(cas4O?)3TXaVMR;|##)g-hB8^HFiu;X1gRo<1= z@*GrI7ELUc=X3HWmS=;?v}kOxyuUr3Ts*Es-dp18zzhp% zm*=NSH-AEby#G1rN|xuS$~Avvfz)#x3q}@-v-iREqv7uM1)~b3-~PMs?rZo(b3Ntx ztE!hjyg;t&+-dnE3S>Wb^rr(+znTXNyihN0iCoeGxm1n(bvW`54{cWT60}*d43q7Q zk?r_qj?a?gHgkqnzd=`jSnD25hk>JDT?5$U8*G~=>l>>%4{yh0iqX#`%lT3n=8n#j z<2m+1tK#)p>T>>6t~tYUWj;iVhkKgAqh2uSHT-cncX*zhhhs-_hviBC82*WSJNF(%L z6^y)k9z6h~Pr)^QbOZXwaQiX$QD1u$t`Ee1te=Fup(EUQ5X)^mi5%MwZhio_EJyn` zW8`fw;r0)x@4SKa?!1lqt`fM{3GI8mkoWUC9MD5PUibkkk>iUN9Kvl zYndn7ah%BIAF0sq$x76pc13=+3iu!=|QJqKXZ;F=i0)&KJa}t8If{OT`L1aH!0}KN zf?Tu#?Zvzg6m$C}zoA~r@lgEm<_YK9O9NB6HwEh6?8q!u+ zuS0EQhc0vhT>>4|v=)tq&ba?5E}yU-S00}$#J6_cz6NJ=%S9WIgg8p{iLqs7gLZ+Jr-wvC!=T z^uG-Qir{Y!l>@5=$>;6@~fogOq6?%M{Bje%#G&rL5IQZCQMOJh;L;Z7UETP5(} zb@;>-CeMK>o9P~yz6xfHfZ3HWuM_+b2#fsaR?6cqIg0$z0Dek_-^#Qq>NIGG{a4I> zAlqX96#KQ>^QkyDL*4Z@^r(hjv!HiZ=x0acpud4!ANgD@e+Ot#xm@=gJ<0O9S~aw? zf0cZFC1M0zy%t8R;jXdpZ~{Db9iEs=b6}De%xDaAeueLM!0Jx$i-}f62kTdKo*?Tt zpy;O47~&+ za^UJ|=(lM-^3KMz1r3IK+~^y4a2`BdAD(Oo&ozM;_Q0#wFu@x>{F82liTd;rOd15A z7}6~Gd?!ri`jfeTDWRyRT!%0GXgipy3tzpa-2Yb@%z5y&2hPK5E}yXl^|xj)GZJRy z!|V;P>s2nFv1WP0xhKkc zm;WmFt?$T-b|5c$443ReeW?vx_5z08MtejYT-y_Fa4q|_ypKw?Wk33D3!_I--#!<4 z=N$S0^*wcwkIun*PCSRFhr)9K@M0|bT^$Oq*KkI5$^oq50#mHXUUoq-}y3qpE zO$S5ErqKE(wCN3P-$VP3&~Yf1cZ$UNoD)%Zw?lTXM)oj3_F#Xn`>1<8#PU9x=d%1A zDEYf=J<5B^_lp{r^(_BIp0_b&-OGE(mrbr9$A+POvx2;B8QkwlpTHBl;KfE*{xa8h zdjpn_FGTy3M3{0CzS)5OrR&hI?03}5d%|x~@Ox9Oie9Oj2l^ws_>U54U!w;%zJ;eg!3&|Xo*A+p$D)D7^8RsnUh%*ZagPbS zva5Jdi9FBl4FB+3k$fG0X$(BML6(~-%jp*PEs^g_EYf^^Q@-vbUw7_Z{HuKbtA=Fx zdXq}`ecya(KdbqDaq{&gRqg!V1v39P=H&M(ko&^!d&qlw=l@zD^LX!J=&$H`JfZg3onPe|Ht;rNj3Xu;2`=@I?QL zBd|IS^{`~{1bX!l3af1}Nc zNg=YSHL}fF*>Cw-Cso`0o&|D$Sy+|dqd>0j>cPk{6Z5+l$aUQ54fmfz{m?Xc_yIh! z0iJjQ&!%BLx3Z9*KZPYX;rEqV75nAdeu~>(*^fn<&;9w`3gmpb-^lM;Am^_`kNhqL zaz1DL4rk7WvzF7#aP|u3e!@I`QC zE4b=0`mg>8IXaxag=;3jm?rc+TzdkpKL$5&xs7{}H=d(UXeQiR0kxHzYOcU$m?-wD(aVbyqArUuRMcSQ{goO%JFb*GxGJ8v>h#iH`>#=G!n)&qw$pI z^(N~#C!>CIJG{ewcS?}s-6{7wp6ie2b&O9z`#r8Nf!8&G*Xdy>+8;U4PVnh9%H@+e zK2tuUp861G2FN^Fta(pG&bk5Lt%TXU?zxu8d4}{Xe18V!^L!RqAs6(Ah0KMaxNb$S zU~yfvm;TQN%$x_M*O@t9%XE;-XVa^&;x_!)mU5m}jzq5F`l?v3euR28uhXaV$e;I7 zp0BT+k-u`>e*J@)>;2vp`NuSRL96_?9jMbldz^}TFtYj{O@ankPBC=Tj$g%SH|oaq zp$W#LVv6&tnAJkvEDD;NP$xPGT3^EYY`!4dVjL@WiOBYtCyE2Ev*Oqj{T-Q|)}fyh zx9{wN?9vgsa=WgdaC~m*sJmrDcbpf+o$K+Kg}Uc5x(9kSg5KYu53Z-;r+KehBF~T7 zMV*U(lJ5u3flW@prtjhQyYS#Cc;y&O7yxs|z%nPTifMP~@=eyiRMy`ozhgls`8@9i zXIbQTE|Bfb@?}ndD>uT3BXG^W{7wa(RjO^V$h#)OgS+7Aaqw&iyqE~%+F<>+Sx+uN z{as5~ZlhJvE!D1Hv9m_@E|C3QCj0A{(>+(7nc(k}1b@;=xtOZKlw z-U-!Vk|*VK%9Zmw^A9-p2b}jQr*p1cpA8$3H}^r_+5~y)e&qc*IURH5x*kbK{d^?d z1Fw96H_g%irVny_FD#eH?LMzS&MH8A_ILEpuYiT@_n{2!9H(ne``ixlb4;ml$0c~84t#0=pFe=FR>SXd4%91U`PZ2pv*b8^>ce?f zaKU(b9)`x#N*I1Vvs0Fw-v}S%$Xm#(jNv+4xM2X=V@=^EYdQ?=TdyJSw1K;I;NEBO zWEc7?`k(TFr*q(iY_wlo3NIDG%P-J=r3%K`qki)syqyW}a{umDqF>S+)E{j@e$3;0 z9*lZgG)!kbBNn;v0xUiYOZvl)?P28`tgk8^etV#;D+ZIHSqZf244rpr`zdZikv;vO z_Ymm&n_RyLxqd%qw#$-te6P=$AzAHIs;NWa{4CU?JdqCvWVX+eadLJ5>S+O69o0=|PFYwqZIZBh$ zM`nytDPFmfS4p-_8<8&GkAJc$ZCJW|Kf2`nn-OV}eK)-so;E_I3QvDCEKTY=?@0gE z(%&_8Z{jL>ttKZ;d^Ab6 zqj~PElkAu{HffxEzqFIhNR2q==G(rpo7$9ohsk7 zLFsaDyX^(;KKb>je4Svi zJj2wnl1)>4yprdEZHQJyH~D3cRLQ3_*Kw1ke_E$>neS^KOWrKmGd(0j#+%-}^mZ9C z{%(}Or(?7#PTAUa#Z&brBu)Bl=?-t!g5R@cJzHcwmZ>4HqMUF4t6L zniibiTE_DmxHB5Q(|o;Xzh=2N&C^=QbMyO~7HKV2s;!FD4@iAdYMWQG4ud_=a00Y< zqGzFF6Idf1)*4BZV4bC~)l1m6Ih_Hg4}gn)g3H6;ib1KtuVlY>a`{uYP(QO1CS<~g z=U{ROOmCms`c)g1>ceK_qCBmNp%FBSfX1KYI1kEkI=*WDT8=;B%c~Zz<@ncTylkE- zIiUy4zx}dhYAcoM#~Q7QgUn_1As+`~ zht|XPcP>HRT@DYlg$KXFBa>+w&4x$M!xP-ziEym%)J)XR@pvyBM!v-Ty*vW>${Tn+ z2i_cquSb5c0X`fHlYWJdx!+GtBR}l~pIgF|2DB-B z@d&==_R}MfGg`n*BU%ZwQsBGmFgF#x-v;x4gC(x8bSnH91uMBfl?BLEPL$WPsu%Jn zUboMiv{_L?pxz{CisMmCwVkyt_qBqQ0aIrpZM<-IA z-^J^gd3~2ONN$lLV_-=H>Pz;)rMi^sTk6EzfbN3JT2r3?W#!1r)s)v`xjWA9@_MYd zfGb>R9omR?p*`qGx|VW0t>Eh#Yr=d8hC5SkKRl3`+YRUW4bMe= zWo?-!$NrlqE4#5ih)$*ZDX;%ZjcMa$B8qSwBJJG&|$G?W> zFNWtirY72B8q-#k+lvWfK2Fck>+}WXyjsiiu$Jd05=)Yrt}}UndfUW z$J^!+taJIzipS#XP~}?=V8kV<}+|B&-d0F%p3>XEReUk(FK&pxt;CXd0w~k zx^CZ!e%s|;UVZ$(d9s7^Z^s3+@5qNcxnDbZzuUQ)^=EJw=kqQe_b!g_UH91jfmXxa zztfTQZ#t85|8{eH?k+@qPd_@5avtwl&dhnVXASd3dK2yqrM!Rc<#Fug_}zP#?a$#p zj)Q&8nE$0*Zr^L<{S9d_olN;0I>7UDfX8{TIoc2QrwiesU+Fl?d4Gua|3kdb9jTA@ zBi!B*?$;5Hvm>Y39#5aZqb4+fa@-!XK|Yp8E8%gD*W)~|$FHD%!i)~4$LLdga7Zn>nz9fIUn>p&vAKvH1iI4p*H1px-f?M8s&Ap=!|@E zHsyG@7{|=nd9a%?|YZ?(SC*7zv6*>mDk}a=lfNT zZsnchS={2i`KG^=Jdym~uSa;`VRxK5**|+HYIJ zJAcw;cuwBg#LRgc&+`&*h<9YO!s&iQ(u$9@BVOlhTf;S^ecQ|MF&!z*9W{# z4>%4VaNay9N56-GbR3;6^W@}z^WlHAO_nAaq-^3xPCvp2plbDy$weXP}bU9{`>46`aes8&pBV8a~wbCaVGOQot%n($=t6L9%sr-)KhpJQuu!Lg4h4W z612bIIDNt8Uv@?P72*u!?0Y24(0P8V;1uQ%KK9W?^hX| zuNjZn&hwv9i2T-%{zW-Y-*SK7az8RvXwR%kd3`evGoPcmGEYwZH&3!SKC^g#%;Nlf z$NTZSj#%y;&)++auXoc}KSFO)j=OgpciB9D*?*%wo6BYIN6z7S&3V9F3UfUvuX8T1 zb1uhE-XOH+mB9D?=qk$j_5LO^?+5QcBIkR<0?vm59#;Y9dBJ10=fT1Tv>ELSKXCaE z98VuO4~keXT8Mr{$&}-}nB$_D_nYGLXfNixDA7YM;dLpQ&iss4!csFDM7iElj*rqT z)XR3z1X#}daXGhFQ6Ke+Mf5V|Jp9P*eDp&7BcC@P$1snj9A}m6U)cop$~`ob^14+y zB3BKg`(U*do}bm+zv=?iKdC9t>!%pz&GZuGdHR%({F%#r=6-#y&3bce=W|Qu(R8uQ zlhgmrlh54$&m6a(E7*_c=L?VHO9<*;wo{J3FQ1XWE}#)~3;f3C(6>6w9q6C%JJ0j? z6UaXrQO>I$yskfZet+P&6%~$KQQe$F*I!XyvtA5!CeV45 z>(Rk=S9HFjuC}CYDDFp!`Zs3W#})MrW{hV=7xP}xZH>C_Bszy;ekr<#n7O~YXPI%n z72Oxedbr+-9*iiIQU z7B2Kx+K&#WJbsJE%%#wB4YaC7>(MC6ab}fa@^VsMz-ZRvbAUK zti5k2wmd(!Q(5P{vn^rfe%kUp+wnZwaopOSM?X7`CwpF3dmGg4gJ^#`o!+6zG>aBN zhl!Ne%V7$07>%X(pkpANO(W?#%Jc5T{c&oEx)bMz6R)>ZIP0fq4#oXjaprk+?u5GY zUzF`GddMz@)QUP#yq730p3DR2JLt;s>)L~v^V*f;$Cc;HjpNj<7y7x+rJ;9Da zEqxC?IDR}hPdx^*ew<#W*Xb>pCuimRFEg0&zN2`qLiS9cU!fPzlb0=X6kSa#=r`!i z^?LJqd2eI=K23!_`WUx9W0;emuPNpE_U*%b3HtGT`SHB^9cKL%&4d2jUw@t-fB6}5 z^*K3i!zaz3%J+@-#c5UCM@jv>+&9`LH%^i7@76AXGeY64hHz1Hx)(0l4VSZDXb5uH z4;bwLV+O*tduTaamkT#$z*uf)lT&h&6!|{#P6hSdk@Pg&Qvmn*z!S^qTX=Q}JQo2k zZh}|1{1tBZYAw{SzJu3zT(<`x-${k>YIyG&ynh2e7)9^F#Afi(9QqMHSw#2Kc=)Uv zOtz$N;A__3yg<&VOL>0ZZbZ&L3G>F&Vwit|@;VlHAQwD@r8{87K3J&-zgy4=@W&Lb ziVD|LQD!15TcEl%)NKRxrb2yOZ^hUR**G1V*M}CrL7R)v?l0&rKa-@sAmj6La>EpP zmQ5c5XTO7Uqmvt?G?f3>vI%)f3S7FBR-iq!3Wgb>zS0dw)Pk$_!{|J?u07lx0Qc^J z2W!C7VepI{)_WlhUi%&1TZ#6B-tfT-)Sq;v<57S5Gkn<%W-w<=LC(}i|LireusJNM zjrL;hU*%`yPh9TvP~@*>w3~K0#jLe9E7qN$?KJ4n2kkCF$ewA?M}9U;eNpZMmQU(G zZJ<(3==!9=Q#s!=79-E>h&;y-dG1=eiEe}Q2BY8n1mp!xX*}wSJ&;2m!>}3jD2&(+ zSHDI7)m6yRW^nB|xFH2@424@x!aYC3gEQgbWO(8Xy#P|}+POxG&tPG(^@SB}hMWwG@ zkD|i3&5B7!ZC1>eBKy9V{+Fe{ZesH!dG0)vpZ!u_ z(L9F|8z;&0rfPm-lcc8d|NF|NepS2P`bjeW)|VtUNRsh);2Zpqlc=qizSF9BYx-Z4 z{-*J5?zWYm&vTA%eOLCQuom(U`5L79y0m-VX&Em+C$Qb`PK$W?zWK!t@Z~1dGmKz` zBfSNy+iUwN&azMH8?qkXxaK!y|4nAkc8cb}vIFo_Z|!o5 zxs|q`;-b0F#cB2{v2Ie3{5<8d#Gs^l^8epE!S~sy7oJ8g%Y+p%iFK0dsuU~qQ@nqX z_1x5~C!x;$y7F^b>*0bBxbDUMIuE2ia~It04-O_cS>JCVvVA>e+X z%=aXiFd04@e?QOTXKiesO*`{pJ0k32u^`NnzO z^p>CdOofZK!}VqG@E~}u1l~9W-(P|SY4D3Y6V&mV&ov3o_g&=YT{7SdPwGW|=}HSNrE~4+?ydiWFodxGVr!V0G z?$5$l#xzxVAS%-p=;zJTKc*u>AH+wC^}bIbU{gT<=_f`c5AA&aYT**Amos z?WDWmZqEPRJkH&$?=eLC9#iT|m(e}65bouDWgqWX`*`2jcO32ec|X}7iv2mj@pYgk z+7A`M!$#B(9vMnGeveckADst}alRk(VD^H?c^yw&L_Rr5=E=SP=E=#`tn;`}@_usa zJ?f_i!*j0K-*XF*&j-=^l;i$9$J6<9tlxweR?(~U9lYpGf1;fC7uo;fG1fW0FL@$g z;<&tA8~HNtw^x3_eqQrI{Tk>0wLZ*~D97uyeasxE*RC+%g4a2ZZ}2{SVCo->K-obpA{(yJYl;`VS z59E8CNB1rvKVZKHJe~(bSf2|Y^87uV#?1Xq?1r4k?I-d%kjQbC$m^WM?Iv*^BwfdH zNqO**7mnl6WaP&@-pAF*PdHzm@P6}T0qaXB@1IY2Uwk?T>wDG(?ay1$zLeK5nd2_G z8S2SwPv&+~ucQ{1FX8j6!U(y7$5FAA`4g;khE;WGXIRbS__PA~Qz`sxK#eK; ze;JJYWehz*Iq$#ned=o`)W3G2VU*+ZTYcnjJpON^nK|CST|oZM`|kI)%-!j4l;`CK z_vgn{)PH=}s;C?(j$cs)F=Ku!DvSd~)q?dA^gd0Z&nfPgieiGSxY3VLr#HnoR&+4F z6dgQw6rB&+>#yj1K|i%VHKgO|0eYAop^3Bz>SBH>dh!`ZeP8AY=A)vw72DC*K|g&v zitD53cV+HRN7AVj=U>q;MmE6nOfkTHNHG}7I=5%=oH+#=x>KH4LvGg)<3TYzgLWgH zf1}@-@mx@hPa&IN94aOj%((uF3Ab;8@vfK-M7t^GpJMtJ$8Y9^x>+o}#rjj`OlV${ zVmvD5%aJWG?iGuFnP*TurxZ)fKgAOFRmCy^?UuRF3iDsF!n{$e_M&c$d8yd^jckK) zuh_i7{@JcY-NBl+rlaXR`iMS*jvTj6xc@0m?C*s6p*V9toL8g2OAU(oskjs(yWXJj z(2e8Ko!fQCdy3+Y`?2DV`>x`if&L!6ULMzwJ#jx%JkycA7E+EM?@>5zZ;m$~9*^&3 z^z-|McK;s8{yXVG%JJ&Y?fGl|pX3A0b0g0EriV)9XBy{m(^LMgKqEM-6wW>t=XO)R zrZ9I5`YmuoUN9Q%3w@Cn4uXq@&;xL>Kl&~H8+l1NT-E~hWzXR9K+5*8@yKCw(Lbz^ zR>256v`4%^j?$xMs7L()S1p69FToh@e@ry`ubqtJS~n1R-5&H?m(N@Y*KdLwKBIl( zW*D16OVA$s32wdyx9XyOTVv#H zJ?et`V^4Y+%RQTb{Jb9WbJmleBB$0y`>PqquP$MKUiXrD@=)f93iUUfA8&Ym(_f*U zkpSO5fbT+KHjghS203Rxwv)^CAzjBWI ziq*&;lPTv(HRtQ60a)&f2YrTq-#C7M@P6>4wYIM4cx(G9Iv5X%?pW0I4nX}JXjBvZ zj8dU-4lRHtxNeHcO7u5vi@JGpiu;ISo`P(F<4~;nBHLj9727*l-u@Zt4)MsYW02h} zklmta66)^5pyzPZJ^x`o483q4QM~S<-5c{!@s;mItL1C3^8cT$<89>oTfy)|TljDy z%#G5j7&MpuNz&i&hC`hEU+7g|v?_KnQhy|M-HUFQ*`2nRarY7Gw3GT%P5q?JDO=HzhD!aJrhdrcuzYRF_1OW7gQAZ7P7(EUsoNeh zIczFlzwUm(_@Ig81@t^r=0P1E%#aMm*rI+^dG1sKplBjs8h84jQ7j>lq>tR z>ioOMXs@ws_YUm*S^B+@ezrReb{R^)**o=j8HlmSI^B_V%3$l`(qEoQsZStHCxIU#dD=^|#6RQiaelTlKc-OD;xMhN7R27hQz9&O_!m%pd7jsJ279 z+LzX4J%qU{J%+mBPtbBK^c)BqFNV#x$bM(ae%Z$AZPM&tOQ>TRtG`M1UuR*g!6rE# z^&w=F5czkO^z&S2v|cm6YCyHldZP`Jm9X_D8|3^cg~&R8tT)~u=SL?QS>1H4(K_kp zYa#1-r`c|_*&1{4-5QG+%{*_l#wrq-)>|X{+5dyI z%l9}{meD$EWO==J(aIVf`F`ArX!ROd&wvx~H~HR`I$!$Li?oZ9`>!gMrbpUG$^21{ zBkRnD>Sd@K`68SA3tgK;Iz-8Q^cjone*o6$hyEemWjh73e%navD4AD^0kx)^p-xw* z`5S`jLh0Wp%pqLXs~${OhS`P7e(E<2vk#a3GyZ^VatK&Q*?KR^f7AP&PpI324zR z+-jxNb$*2nkAzxh%}FqG45N1 zdf*-8hGStPL)2Ty_eRylvVPA<<0zRY-qDdJQ8K<;>qMADimL5UnMos{ItE(LfB}tV zJtf-XGYi+upT%KX69u77Chf`fDSvSlmT;^r_p_0oa+eR8h$-HWk z6Q#dO#_yDZD7{rOZl_*}(2EoUts?XzrC#r%^e>nGlfn$brN62HJxtHgBB&gshiD1Z zF`#W}Z@Pgd&^-E{7DKf$wWPtcJDpFDLi3i;p#yYX1HHGw2C1<5SQvarjSUr!{EMEUVeFeN}VjznI6;Np$Kgo7u8`)ok`# zPmj|J?017Xj^1Sb33DO+fV!d}E6%hz>%p`m>wRcH)<-Z$GVh?r=xw$?rvKYsHL{Kh z{d62@6V_WW|HM3y4yMECcsha3rCaEBdX%2$dT%n{Wlm$xMpoM(tNYX6=wFoEQ7>d( zOrz;WdIWk`VZF7R;`%ju2d6~Kc=#mOv-UiT`I_gk#XR%*GR`fIK&#HEJ2yd=KS!wT z=QRVlMi6q%ImmT?L2f+{x$SaUzr2g9=FBpiE%QkK9yD$UOnYf7y;;chx!(HIksC~e4gaD~VB=@7nHiREz6-g<7TD6B z{tSb;pRN0#e;WhT+p1xRKix*l(J$mHayx(I_C1l?C(3yHCgaU?y73Hozc5LKjxS*i z8GGvQ(*EZ(z3K8?R}H7Dpb|ohp-vsziE=reJi%|w zz7+cWfqKny#u}uOi=Iq2Tgzjn$vdhH_hjhADa0!O+8)n9xeAXK|VkKt3O%x zM|nh_L$%SrdXwe2-Mye^Ke_@=SwNT2P%58CbQM`|#=q*xnhmI-p+9X+E1~H`Xwey3 z#z3oBXgz{vL7SX^btcQ_0-FkC`vuT(9CWs&bLcVX5=4KYh0xWIHm66S+f!`ET_4$# z`{#L|IT?C!dtO_achWo1yA!R3e*aKz$Nvd(ZEslj3#`ZO)$fN~KL<9r2%9v<{xxlY z-0~Z2TU`yMIQm=>r2|VeNUaZlEkL%c%^zHtE(> z-uu6IY23AmJWn1<-AJ>YKTL+o^UGzE{8K(Rs0;^M43g)Ua%Q0UAbIW#=qz=)->CWw zG#(`CJJS)+AQPHILaUL`rUW|t30*Eg*RBJN2FZ46n!tc+)a$o`P3pp?zOZ>IZ21lb z`@pt~V7p$hJ=;6VXH{Lz=PlFzW&`BCr2fBs&H9Nh&-$A8lj8}NW7aj3_GbNz`pbSO zas5pCOMfMWIScA^KwT%2`6{y71sbpGXWU=ThwBBjd+$T8Zwfn1N5283$O9^5yRsiD z*WMPt%K4p={Hs|X$%cv0+zUFh?$QuBP^XtgZ|UFRj4UtvuQKgz^sDT*O)jkA2-Hj&7-&gf^`3p%!iZllreb`II249j`mMfP%{6QK7>^!M?h zKT!AeK(6@*a=pP=PyIaPMjeownxS8?4(h=}klSscuhFmlW90rxaOyJjpBhEEztiR* zPn%1Zz^yrQJ~j6x-@3Je0_1b(jJknAwIvR!8xRyI^Jy090oKS<7o&Y@D2;*B+R!1g zK08^TYe1bqxefy|0_)Tk^`1kEZ_uwVZ0`jJ45ZIwdAYx;UIYXL%JxhQvtOC zW&cc0qi(7T&9|a%F#*{!71=T$%h}dIwjG0Z+hxdhPtk5yhU{pKcE{hDlaQTqke$t` z8|u!zkX?HryZ#M54N>>J2)%mJerWeoL;tqezW+M3`(H<{X^-}rF0j@~7@(rV&_5u8 zxg5*Y=>vlnp&oP#{puZn4YvT;1=_uLI-N(aM=J8`VP3Ekwlcw(C=PLa?LY@4a#Q-;{ zJ4@Zu+1tfOzC1q8#m7~a3-E)r+rzqsF5a%v-f$suo3=1yypxZ!^mpkg>yfXCs!SdH z9A&)@kD>Py*iODKtm`W6uJ+yzvYuMo?Y$hl<=Z$O4qlF;zKMgkqtrd8+IiVawryhP zV=wEqorB!Ghb%Aqs`|y+%SPJuqM?2>Xz>@_18uuQ`~B8FHnJXfUu5@r&~rQVvVy+( z(61WS=s{=GTd+ki3?57qV8?rKKttJ2`F@@1Pn|kynSW;G(BdhyZ$vxOAJC}^dh~<- zA7RZHdJooS|9TO~^(Vqs#xVF9Y&`|GiH7aXb%N9~2HIyKckDq6;BRWQPrXl5P@m>0 z$0Og%Q@MT&tqhab>DTl-)E)FOtTJ5g>)FUQ^N~HrBe!fX%gZ`czU846n&qpYNm6-O zg)C?KwLH9HrQH8IK-Vc~4_JoWbO8DVPk?PTpBubneV(PEWt#OpD-A1?_2|xmHr-JV zT!S3+9ya{~Cv>5I$ucsIRHju+tCz|50X(72$ExMkD^#j(@=m2I<5A`Lae1X=U46O+ z>K}kcn?5eBl;y`yMV{~(d1^Q0sfT4*8GkCv(uHM<*x&qUc(M; zrM;%KH+#Q0U)pVtzF(BTSoUisbp0K=9YDK#91M7ddf;wY=V#O#9EUA+P;d1Lw&8l) zd_WGVlDb8=fcQ!1xc;O-rF!M`+G=^Fs8q=m)L; zqLZ*5+eyfdF<8#=B=Zwwr|z@|`n!6d-8G(8q204C^a(>hzt(6E_z4C!M?LT&toIZ8 z*W>;)3PZm}*I|=4Xm92XTiC&t17WMP=og#;Tkn7&&9MGIoX^7S z@EkdBdYz#DE@*NFnjV4X3+RUIupBx6mP0ACbp+aNW3oeYZpG`- zsuH<%Alln3r=>7tHeHB*?du_Tj0+o2WSc*seG}+#p0dAVGP08gbUqDT8qrAT9tb^eL+_uVFZZj~7vw;$r}k*% zI&QFDZ|qkSf8=K0Ve?1yJKEdi$??~g<2QU8o~gMn^m!YaDdW;g^EsuC)PKrdmbYBq z8xhY6#s#-#~jG=yWo7X`bB2UFt#qNm!5nF|_+%fVKXF zjUr(1R`lyA_hwyr-m4yDFVE5J&sAs`NsnhQ%aQ#xyatVWLz7-;H&sE4TBuvMMz%4c zjZnAYdhD(s+nYisfAn*%gY3Kw+2vPcFFjw6LBZS@5p0<;W%g1$91JI z;CRjFUwMC0R&7h(o+9({2Gm~w4NPclx`N)LdC)MB{zXTXLv=@rbURm>1Abur0UO_9y0FV8{%*p6;TBupO^YJ8rif$8|gI zPkZL}Vd&pJ0d}yYTu;Yg$Q`+V9eLe4vj1NWX#XpSHk0uq&v;esYuBz{m!HQfzIOHc zHMvhOyLRRJRq-UfKoi)W564`9V|T#6-=g36Cdd;tU$>Rd=&D9nu3puw_bnW={)+rV zr5baIzC?Yj-4$6-r5fvs`u`Di)^SyBTN`F8D7GSYcXx|*Ou9pliA^eHW1`qyVArv` zySux)TWJvSTlzlt^N)L<-#f;bbImp97-Oxy1&)7r?8~JCO35FvNcO-6@TwSOT*|!u z@Bce`@Yo?Uvq0l#P|O?rx&FZ;hVI|vusHYdfg=YEeE|JR^gAxQ|7dCd`RG*X05|vu zCdwc9S`6|su4jCfHT6Dt_|WhDbB0}@FARgjVI&*{=fN0w1fGPyM8E7XH!J~5K}YBU z-Jloj10&#kxCAbR8{uR4TJ-1o{<+X)V0qXG{sY^=AUFUHgsj7#eej=*oqh0MgkA?v zzzgsed?W_2j)3~;CU6MkIsuc=Tj6PV4qk;1A@?7UE*+Q!=7WV`X;=d`gDnppJ!Is0 zAo~)?z69Fi?+VG2z!~T{kaG&$kG=@s!T0c!7({*qksm=7u(KaQHfZuC$OY|g){5tk?~vMZtQy?=h*)c`Y1dOPcZI0`VzbXufrS4gZ{VBci;oYKSDo&FX0>bmbiE5 z_ssVR{TY6N-(eg~gvl@!roo@0UuKvE=FoNha-ws=d@w&O0Eza8#?J0W%8cZhNHE5Bp-Pr?iEGNcatuA;9)>cHiQi^^n*8@p$#egXX!6{jJooR4 zoqYH2f$jszcYi-L`R*T#4uPRC98w4VLs{nt?2&LR9FL#;_b31TCt{yO9Qp4*9s4Zo z`SmOgDc@G_#a#g*TW5Plj_2MGkPoB2Dif}6?SXL^CrOfSpsvLzjYE&1b;Ec6-SqZ zJeLA0pn3iTR7clfTun4}98eG42!9LM8hZz{E!q(}V|RhB*gc>Rq%H$Gp{dUR>NB7l zcIq;~m-%{P?+dBZfc|LeHNYPo00S965Ka9CP`?3T_#^NShSYJuFf`AzfHCN?a2({h z7BB%l8BT|@;T*UC#zN{hUspA0N>jJiOA3O0=rvZDhQ=b6`&_{?n z0Z+m+@GLwJFTrc@I=l(*!v~Oh4S0%v4qrj)FW?LMEBwa#zN4wffOzaF*i+Fw=K_AB zGmJWE_P0&~O|l2_oC~zj_`s~#bD;CW{IDRTo&qZpUkQ6Zi#$K0s z>Z2ROrmzKUMI3b&=zyl)0-cl>fiA?mLJ!D$Um$fCNZkegi=TQ6q^<&cVebuj9tQT~ zx`EjFTogC}J9QLD{R9pnZW!b_7#N8j1*xAv>LhRq_E~T)q)q}CqGMnz<{2W_ykgKfiKW6A@vpbjs1u->ZG~xxu55AU=neuFbz^) zff?vuVo)ZSS?dilM_XwApsZ+1NSy`cB%XQ;qTYgd&IJ`BzA!8Ti!!bxx)dx6%i%AN zraptJVyFIs8sKjP8^flsC2R#-Lq2Z>bwE>>L3U_+=m4q5AWw8h*3k(~{RMS1&Y^{I z4#oE#*k^oi;$LL%{(Z*xC;^$F4Gf2C#K56qkgqYmr7=F|?gM*_@d1@~@84sL58NOf zWc-`Ac`KtIj`$gwG1B;VwsbLzo0#8A?8dGbH$2z*NWEGVgXCBpc&jQ777!K zUK5Kui6uUWCH=)R-NcG3#mc9|s*A*G&EP*`^_gN_)?s5IZNogx1ErfU5PdGdw_>Nx zko9%qzB(Pj{uOfH|HeuG%YJnpB;7d%W{6!X!cK4}JOi(bUE9Il@Fx5$b_;>)Ap6z5 zsdRVd@7@P}03L*|#U9O}m*`s+Hi0gX{q$u&eUHoD(;U`^1K}mHS6*lZE5WXCJmfxl zZI$jl3@#V@l!G&1yx6y(*sl?Eh5O+#G5Ci#prtslHS8}&karQkzppobSH|q#kD=+q zjGv1-A{MzVR=6Wpyeig+6`KtgJ2ZiPMBB@vU0=w2b~mK$1K>l^!3Yun;T*E5J&y4r~IO!e-DN zdce+*`}=n|dNSm`{^h>@{SW&VxCQBOv?HITAe@M!{$}1F}z@SE1LzO>i@0 z|2l6)vwxkBp)bQbkUZ)92F*Tp{(w#vyRd&<%+dLwHDv#~ltb5p4PhhL0ZQvL^l5kz-hdC`d-z4{Y6iK#u36DJA@|j_Jh~#R1?xiY zud6-U3HrhS$o+I3hvvMy&P8*sUALq6z`gJw5PdxY6YbZJzPK1--dbkCigO?!r*y}m^GmL{tV(%=Fy6esQ zdl$oA29|}jVF$>$_3nc12K`_N91f|w-rP^`sn}=0d2j(-1^ z_I`|}Klgr#eg)sbZ!j6AihbChK9=a5kn`JRa5vl!Pr>u>61)np!P}5L?@K@K%lY@MDSzK4uo-L%9bqR( zKJ?|j`jQWQxxc=_#L=hv4n}kSeL4TWOR(>N+-KjtXzr`;Mf5%R6msr;Ip@AVWbenh z_M>n0%Y{8Zw1!0>b=;4SM2sQqm!xgdVEZN(| zO1BSyV_-Dg2d~0A@QKE^{|LXqxSydJVPXf%hu#1;V&9D3irx-)V&4t-VBZV( zV?TgC2oGUD43A(xhCTsL!!!8L!gKIE{tNIT_Dkr?@H)H!Z^B#fHoODx!-wz@e9Zh$ z;8X0+;7j-#zJc!``7`hn`ZMz+pi^Nw{0TF}5EIO#aUm8)o!I}alaMUfvl3?sv%&26 zbD(p=JlONXeAum^H7o!N5my9V99;rUU51oFmxUE!C0GSkgVkY8SO?aF^^obB#?Do(BIzlJt%s3acD|Ck*&=Y#Wj<5^t3cJG|&=>aPI=#^JyO4g^ z`$K>H0Wc5-!vVyFpd;WAI28XdI2?|^9|=cdAB7$b$H1|09E>7>_>-+z0m)e+YdT(icOHqUnzz$IutYV!sFPGmd^4@(BB5$n!IVJ{j^H z`wPa=H$z^bUqkw5$XoP#_>u9S(4Wy?&|e|X>5%XEd0vOaqmy7VOl4de`Ug54(uYIM zq(d_)E;KVVhxFZ0`fg};>^T^h6XwRA57KW#^P{baD*y|^!uX4#i=#`SOT#kQ>A#`n z&=ny4IFx=IYW&W>x#QnD39ZFEwTZ8XrVocU#NG(fk3*ZFn?m|?DE&FK750B%YvyeO z+hV70huUJd!%n{rrC*2ApF`b;}8z?}7G( zJz+1{o47u(FYJ%s9~}UL;XwSMFbsy{r>}<&!af2)Cd5eu+xu2AD|x+_YD0U{Q~_GzJ~POQ2K7@JM8q` zQ2K5t@2{cs+fe##D1A0Go^c5<5hlSD){%z(2{W+&k`ANahM8m!%Z%Lu&3kWHR_yfO zuBC{AvD1gc=)+;7z9Iz3q#X~!|20dgYXZALx>xS9u6bnNc_AvhtY?_=)+<3;joFs z(TBq(Gkyy8sc8Ce*mN{~IBX_yv#`^T!{%V02j}BofTkaZ#bT%LhAl-egUg9u0aw8_ z_<2tbqaTN@$G-t?B5n)Zj(rE*3HQST#2rK*Mjt_+fG4q^g1i@pox@L`4ZDcG0T*x$kTMx7Xc|K<9WM^JJiZNr#)H!!w~R(Dc>ttk^9f@3Y}Kh|7tc{u-VKO+O8{CawT1 zh@bBf!V6sy4X=y8KK=&i zhG_a{IDIp`IsO)q{uxgH45xpF(?7#`uMMYvhPPv0`e!)(Gu)Q>?4c8MhV;*HceDre zg!IjD`ek@0?Ek{funVMbhId2LH^Y0fKKf*MZ~T3+_k;bh`=jZf;elxSXLvAi1K>ay zMjZV#JOcY5cneYo;mJmwxc>co62W^x1o<05{zhceyb<{z`4&+IO}<3%{Eeuu>kOi= z3`*4Zv4hF`!MWrg+*;#@)PeNfA$#Q?S{#mq^z)(I$FTooAI@`mIOjjyS@R8#l79r} zHDVt6nEWFyNJsuF9m)Ac(vKpaV}GN#k$i75@~G@1`CfbE3v|5ha};$xio6`fIgWZQ z|LER|A3YMT(fp&oNsp;6J*JQ1$AqCd$1#&-ADdV9vCA}W>>hX+`)l}J_HkpSqbkD2 za5|))N6}Bm^ZXmXO#bmlG|vRy|0c|meZq3=@5N~PRCE*hqyK^7aJbeV%{fP(VjTT= zVv6D>(I2LilAbaNvYsh#G;Yd!*{9Mcr}mM3>M&hrD$kv%4;449to+lW(F-BZv1#|E zrx(`v>C=olar;{*(|MlGp#RKRs`weKe@2q@O!jr=WArQdQP-cfSbBD_^qf&}zU*_W zOV9NY=W)Gx{p6od-j9OmOrK?n&)IJ z*NNr(z1U6i$9@qP(T5fdLr3d+i*};Vii_uH{v|x$mhfC!azgf{1r@in5}Y6|s|M-c z%gDQB>9Q|3*Y%e3yjxxZT@ltIj(--bD>#R(ZeHHzDHT`2X&#Bc%BR`r!}0ey(qun;>AjtPUyQ9$yG;TL_ zvBz6_&uek-cE# zVfN`T?-hr~V4nhyYo5b*rH}BQbi^BdTRdt3c}^eYz3dqM^7sV#PZZXCC#csGvDh!m zev&#mIaT^pb@@-VkUq`4XWPkswxjH4=b|^D`8;v1l=L~?N6!T+?%Y|~&zFQVWWSIZ zvc3z{&4tO>Z-^J!$BWOUFAaw5+vNz&d!-sAudnd_c!mAE@>AokI_kWya-FNj-v~AL z_**B}s%V~T=OOPm*LbhEK2`Hv-w(-)>rc@i#2Y*xZ_uZ2Y}9-=7u_=(0mWV^Y5dDZ@Ur--uKcg;U@y26zEs?6 z-X~uVk^OZf+$aB=TGDU)(Oab7^M3xmg7k+f+Mf^fw-3a9c%*S3J}B-Z{p4dX`i1<1)O9NHsm*kqR9nTR(r;3`%bsR}ZQ*zYjYq%${A zT;{dtV^HrkCiCnXZ?5-0lerC=c`ULi-a`GsWTE$ZlZEQjl%>4p&(ctFSpv{=#H@K` z&)NZc!65waL`zQ?A-|>iwaN0H)?=x>GG!|ze>OeGOxd1jT=r&)%dY)5Wq&B0!v*Sn z-;^_2<8v+$bLEG6Z!_hZp!srff4QUN&#mX3DfcPqJg$n%69Fe;Uk^_jbz=N3qNymM-E8_lrgAYW|{w;Bf3);XB!j zb%N?QrecfG?0<2Sbn#|l33F(nc}l2%m`d!BF4;{iWvRGQrM1pds#{a(-13*60_Q-kHjpX?)oNiYu$%xou}*;U%&leFbCFW=^-{WC8?iw>u_5becuu;}39&_1vHdSyr-Pa1>5v(Xze6F#btnu= z5?2bA#$Fj#fmLBmSPM2_{)VtQYyn%sw#0XU_Rs-366cI|fo`nJ9qozsLU&|rVJKPC(!M*Sh`nT#gyY^M`H1N&^a z7(4lAyBxg|u7c#F?Rv(MkGABW?GEgF;6X_K*&b$HN3frSXPN&Jyovn*`Vr$EV<*pS zKcVCCCo0~~Om@3WFb6CEi$VI6U3tb;z)oJ-)x=I-+0ifUjK7_1-tq7A#E$&3Yr^=Z z(1!6X(d3n#6Lx2<+m60tM?Tqg#NL^4T_Aa7=gatB*!w}A6L!JqaONSO>_#$f6#j9L zJhCH??8qCt>5QMtxP`>W!e#i^;$Me-1Ka}14?FV1Za3o&;6I2y%sj`ipTSN(*ge8d z|FL_H|0VWUkp5%$5&ac@gWtJM96BD-r|i^1dPrlgOFpmCY{||BPu+yLH?a?mKjd?xMFt%b_{r+u(P`&-PyeZ%1m@n2yY<9Qk1SOdH9-+(dy_wVz>u_5+G#I=EKvA2gExSkz!fb;`Lo*$0XyJJtr^&`$7 z9fS@=hrywcb9dzV;mGsDaSZ;kFbYP)$#5o|2j_FWMQ|B*^2Cw+a9o9*{@}P4y_Io1 zCmc_q&%%quU4ysaZTxrH&->Wv2ab=>Pa)3{N1h*!JTDxRm?xRIR5bbGltp%@tdRE) zr(BA2%8k7Mn)g|!QfT^vQzdj|t=EaXajK4;e&N&@e=Fww2eu=Q_YEiBQ=RAsPX7|u z8wS7uj2pNnR9mL zoSk!F&kN}X&P5qlT=(r<8bAHOndg9WCG4E5GtU9%`i!S9I5$SyK%NWEEf~+|V`ut= za|f<#3+;$=gye^_3)%yEGC%JV&g6+R&kN_i#Q75!!2E$|-Y1;t3(gaWr!P29N7Emi z$p_~J*m>V{rcXHYzUfR~a9+!Gcwcbd&h>Y|z07lfxMS$!@FYBqpZ85?`iAo@=D7pu z6V8u`f64e)@Ev@QpZ5yq&)De~&Z+2h#kp8YyX4k&T=Jodz+#a12p96jg?w?ThQB&A z{#$hBUH(2#TpDqmCit78TcTS*-ZNcz&vYR_T<8}rof*gbq)T_k^}z0n?g#y_2Sc7O zF64#FaN48%iwC_*24AJH#2S*_CxS2HO`-00u z#=V3*7hFCuPdxTSn1r2kcKN})>5%X1TzIc^HOcNuUvV|pcvlN(sd-&_j=1vtaJ9l- z7#3$9`ipB>bb00>Ph80p*LsX=Ok4}%+M>w=S3B%{AL8ncpZ81G?)ZCS=e@#}@5Njr zxXyU|d_UnzA8_S!gX;p~sCU=p#IJ-r2VALpSNgvz?}@HQS;sL*UAvxTUh3NQI`iEy z>ZI%6=ZWi0;&@+hy@Td?;Yz)`@;>1Doq1BY9_Q-DdAenh-z|^)ZuvByn-z9zSO8Mz zZspOHi09ngcwcm*|GU}XZw}jX9iIDc?a|b+8=n*0ct3Qb&%1dup1OAH#`XFB%8he% z>w~>7@zl9nf9yO5+yc?OKe!D=4}*N3a2v%uGqBG>&w;!zx>4V55G zV5eVrbimI0p$F&d!RJa37p}v3dT^c|U9j^$;6b18=+FH01CMZYB-a_sIG*nwe2?I< z0Q)N9Rx@rLdLyLnJ+`BFz@3nD_t?vPN15js{!{QAybQ?)kDH9+IpFb-@sEfjA3Q!{ z|76rj_rG=G!F!*_cl^}7M+)OpA@6}6Ke=9p;yuX^Pjkh2T0ovFo>>*|nH_sh$mdMY z+{{Bi@hpg+{@_Xdd)8qdK1X^sCyqMzY>jRM$q!FwH2)sr*%RFh`oVBG4o1U?a5C%U zIp8@H`y4nAE`Tv`5$j&Uc;5Rwc}{rpobcrR!Sg@j*TQvh1M`tLo(IqeA@7HtC(yiC zcwR)4H=b9}S6L6w5l`~R^DcJ!izoTy`IvFf@xMXy`N5O-OwX^_zY&*&CXc+#bU$8v zPW7@-oEOg(FH6OHWhajO@Z!1RRR}+yQ@tvpE5jeH( z3H9jx0{dqe$GBuPeZV_i+K11^*?!)&@K3>?n6W0s&!`>hIX`g*KZy)O3htC;4!x_i9 z`-~wzit*ID&phH{uyf8n%g~&&5APv9JV$)i;@=AS+~LFX!{?Z;*OC0`&;ImhAA&Y% zT+ne{KZv{uI<0X*SFqnD?ko0q>EI&L!R$|PvUEhrKYo*y@i)fId;adTse{vupL@!@ zP_(!zTCNeZM~QhdiB{!A>qn`B(u|*zvVJTUsw#Wov0~A$Vu{>hsdHkv%3}FrsS#<$ z&s9|#AYHusJw*43@u1ob*3K#nzX__8DS_Jg^wF zfo)(r*cA?k%i#uiP1oyi6MY9hgwNq;_#Gy~AEK=pECK7mme3yh>b`A5(UEWxT!23Y zy##K8`{4oj0)Eha*qNm5ETARK4+}%qX~((Sbzr9Jmh$Pwd@cfA}BV3Xj2a@D^lU z4sX$4lvfU{%YpoLNWq^jI+DkZ?6YG5?5xYNBbs$N2BN7iN7m=K6Z<}R3EqRx;T!l- zbfT`EtkImWQ(bgZXa`-O7xaakuaiG|B%BJD!Yy#S_Q#3!IvvK&xjV6br|a0sSErX~ z^45v|;KcqqvyaZ)k8?4_JC}r&VHIc(ogww-9EuKuQ{W89zB{i&Z-f^i{nPm&n*4C4 ze>i_J>ZJFdI{DMroxds0rJ(l3r8t^(y3pTTT448v-C$2R9kNcB`REOh{@`*2O@6rC zN3+i^tkdN+_W!Mqe0I$xyK4#f4|IdnlPmk_+8KKQ4AOnN4nhxs!yx(XIsrWi&VsYy zLP-B`U5s7=IUm=(=p*n9JP$c1*Jo(%-doX$+429uv3}k)oi_j||=j47A{rmS6`uu&KxZlN2|9Ai2 zy3=L%Fo#)Sc1XT@MxLM~{ivr(vhwJm#XwM~}5=_TS?Q z`W~e2JiefRiJqCDCA5aNkoxyz-#tfQXMa68ch6JUZ@@>Q7yIE=3GD~z7hcql*K+Ku zAot<53C(lI>j3&Jq>j8kqq#rt%+lVRk2m+{ofkXx;$0kF3YLeQleY)j6H*u6UC_R; zCya)illKDj9!OnyA4DIAH&plDoRjw}ox3-6AA>;ej7v>BirI4#^EW!IM8i(~ZwYAwQ+VszN*17tR&KGedL8bt8Oq zozd51AJ(>T2Ew86u;vLfPYp>k@+Hhc_OP+oH=-Y-U%*d_kF}Ft{}8@V{Kj?Co0(^SVcCyY z6z{heAC(h7o>qK(59zd8nm^4&OxHS0rk{WOrYv*+#GA7B5ewWl_QlWGmxSa|DWlEI zvJ4Tk4i+spiP`<&Q!z&lm{ZIdA?B(g=3Xr3@r0K}t8rrf|8a)2HSvW~qzhMq;bM`S zVu>WNQ%0JZ`CO9j zXaP$kk4zb5W){&|I>N|#bN}D(3yGtWjPuTXBynVt;WsZRZ9V`_gvUh-dl;a2OLw?f z_H0$e>=ocUF-IZA<@hX}vyYgo6Fe(_t}D{Ht>7y$k4s`?l5t;owkR%d9x-20`SZ<0 zzmT@FleU^HTIZ6zz$vld3fT*;(!7PDV6yy0oyB6y6juy;@gUiYXNV;_!meV;oUoVX zD^*J4OO=D;1Zn)I@QWyx=8xMXX#J zu7>P?s(D&GgkNQEwNml_#7MU(0nu&A zqqeJMZ+k~<*BdT_>6*uBp6HVVe~KNOL-N04D0(TRemY)9lLwuwHGij)vUe)0^#>h- z&*Tp#FM`>};P#3S?ttGJ&ANjFv5&$&25yHpA$=k^UV1=lI7inXSW9}K4VwLqxG(#V zX2v-M{_bbV!%~d@E~j}w^3W9HzawffDS3E`@!uh}SSWjz_tIH2M9VNSds#8ZW_Vr9 znMd>F$|aqvhUUq&7+#Y-_k6fo%u`LwH(KNKJ(RYpsd4#hNar6U7V=YEp|A26E+Tu8 zys)h7MfNGK=vnEaui+Q5*d@gmeC&DWUphs)EcaEm9J-DC<$N`++*6n! zd-+V#mz@)DEX`1ldkRq{S{w*7W$RqYSfpm zSzrE|j__{XIb(cxkYoz%4=VWhCSZtVI_C~{{8$~O=u@f91 zf0NPhisG7D$=`IWv`s!~8}`MfmEvvoiOt+$C&e{)(YO}t#a7)R`Pqtm{l`k<{#mJU zt^F0(CQxkmTz1>OqGz(`HBaL@t~6>R$mnOqWe=Jr2Iq$4;Q+25QAqZPBJlUmWd;9v zZy1{NyS`>7ieJU7G4Qx(3A2?=9G+y3n^XafUa7~CM{JSygT zBjz@TrNunc;2gL~%=Z936Rnnr`3phTlmDT#bqm-Uu7&suU@x#*_JSkeWUE>Ub!9I;Ub;jBxD%ceOJ+(OmSptH zlJU}|a*Czji)9AE(_&dWv78gUB$huZR1xi9^Qs;$UBe7oLO(cPtjYRoK9;VP7kWbGsWk-6dTQsEu61Lm$ zn>$Lk;ySJNqi=|*4CuU7FR6O7Lb+17|T zT;fM1j5agN+e@_a5)1T}zwlb=BFn^*gJm!CQY;%Hd$|DVn!aM4gJR>kVpG`ep0SRQ z-+k~*nxF|kVU_mOeNI$Nbk4|Io~#(3lNx>?@%p$SGG%e_)8(M7Cy zS!`u)#2MccnC1OGJkID}nV)?h7We!8;{NxcamKikH^uOahRyg)WoDTikz)M&bCq(* zgHw!u|MoE%_6Wlso*0p2*t0ZB9F%1I`*zmH(%D8Q4o))SaukrxktXJ93HOV6SBqBG zqV+3{E7DK%6}cl_{ET$zJYxB6@Q%ine<@v|rgX&=u~HS;YZa2NAEfyjI?LXunsk!{ z`E9bmrDC%xV$|=yzh>O0sd#coim|_z(~`qdjC~3BmL9ZM9I{&WVZ)_|FA_&}635gN zql3kXCBZntufeF%H`)tbQE}b2F z&STQK4~u!U@20%k2U9*z*$b_PpT%M)q0Ylp!T8;6bE7`Y7AA%y{m!4r#IPhIe{!D^ z%T`JZO)~a<&>iWa9TYe8nCxR_$v$qj^sMXh&km4YFkd?6hxDR}(n|`6OIL{N_K8~u zDQ?>a={-}V_bwOD9?|u#dCGrxw|Kv<{P*WcKTZ&z6_NeLI`K_3JS=`3rupI^ieFF zODvAR_%i7dU&WH)V(HEC5eY`!m&q$#_8;l;=F$}>iN?F9$lkoP*rJTsl6hLbK&NQjKjWp_92eWxg%jj&n=0MT z1ZRlh3C4LE&tbFj@nH!@pU80_J~YAT57Xy}OTEPPVdDMFVn)ySkOZT@{ObKjn=;oD zvllkzGoJ5e<-do;8S@qJ7iWwYj}-bI8fVOZe5v%=W#Y5t;+Ld9ep9w|(JH?&pYh&c z{N3IG8OD24rls(?*fi{CaE9@o*fxiB`xejv`oK=GI}C?|AoI7Mjh+V=z*x8hE{EIT zPIwR=gD2s6coANL*WgWfA3lX|;b#~R6Ghu9us@szH^VnD6{d@WCW?bwYX62F5r>tQ zeOOa;iuCZykn2V+mp}4_>?7-lqZ+_n;#kfp>ZA1dda$j=kDnqvp)!mXqn+Rg#YHbe zZx<)$5T}^KI*OZGUwSJ0Ijy$zjE(Zo*otOfXC9HBc}1Mfb>|(Go&FbuqaJ>d3nXHBF|PAlznxixTd$b)&>6lJ^RSN zb+WF4?CXY#>;K1B(i`T(E#jsu@T|DGvaY|G{oBEQ@A@MDF7j!&qvH0gmwm4VB!2H~ z`S-Kl0|n$i#PtqQS4XJB<9QT+{JP>!_JR9lKRr|WOn2$CoY$o|*)L~;f%0GLD}96O z+&Ch2Ne`Gk3&9#`Dcm*TUDn(x_n>F4an z3;NQF2-#n99xu7im)B%}wMl#(CB7*N_rtH6|7~wLSp2{_eCUQ||3A#oxQ``e|F}l_ z6X*B&j`ZhL`M++H{#G8=f{o?>HUZKnzulETj=YU~EFE6~9uO1fYFy$jF_m*j9V(qh zA4+Sl__V#^4}US8^`t+N{y9?PGPa4o3d#OU{n%u-Be)t?m_7WBcyF>ii2**KIohD;A_%@bUxWfJHhqXKZ#@di(^NNQJFP=RDN`G zcu5?eL-UNU4%>(mY&0&qt@OmMum@bN@e?1QAHw&tPnseMGm$j0A*)VarFFd3874zUyaphEvTNxv+a)(PaZq+q$bs5>$ z=7sk(eq9Oq*R_&;-7v_!>$#8hhZVQ}K70(>j}6PDH+uu(| zHjh*MmQsq}`bpeYRB_v!<=^Iw-XZ^v1aVhU`FE4IyRXW=$42(O!^M5%-+}qk2OBBw z&;seh&Bdeh;CA_sxl12A3*TuSC&<4O=M{I_0`3#fSSkKYH^rYVB7K(nIX6;q=Oba1 z;?7S*FID_S)_W0?eJxt?*AB^l zEnU2B34`Rn;V9nBF8j^*n&;L<*>9zbxBJL{dkH)z-sSx76;j;260oiO_dL<;@BK9C z2f5{c&;wqD^xKCuq#rg>{6kmi$K7CeNF6`nzMk||{F5p2KkX&`^qKUtGt$pX>OP;_ z$^QJO_##O5SLLN&HI#mxS^9NHjemUw{YZSfTXFBw#P=3Pos9WgC+~eU?tOsbKa_+A z;1~HnR*?Qk9(>%d`97YK{ZnDZeIg$|x0n7xUVSa2xUb~tSN7w3Y1!if6d!k3I^mdf z0?)C;oU$j9ABp63BIlPBDt{7nlDtAX`4xPl^`?9fQwM7Pv`NxGdCp`slszL><1#Kt z|0?lEo6KzgXp>n__!xVJv}r8Vx=on_rL*LR4HTb6&v8@MS+ZNU|FaHLHuVcrHuV8h zcICe*M|+LSq5CrBtfO%`xn9oq=+BDFRZcpW`j{y<^W+JaJ+JD~l((JY^C_=Q`Lyq* ze6MAp;Cfn2IJT zu9)5zOvM&U7q6hW;_8Q{63TB=sa&#`Y6D&1KCQRZSFv;@*-Ps=V=6rzdz@J2Ke22s zU9X&jSpN6tLgU@bET_ho=bS6}%3s0wF3)`2?>b5iN;BTe3SJh=JBd|xii1|boA9gVgxq)32I=vQ6hD5X<{ke+dO|}u0L~VpO|TRsE}Hd6Z_&KbTjif$h*QhMjatvtXVTNEi_=Z8y5^bQ4fcSk;*5dt0Q|0TGwr2k28pv?i?bOw zhxN^K*7fK0mVbU`m<`5?3pmFGEu|M$hU8UDN$HsRVr;P15qk#x7;>JAY~)}3uk4Gt zuf?-vUup>p8Fdo%w@#L_ze~qx+|p>pE$a)p-{ltaFV7BJ!+DBZVJW@hr0##kY4lHV z6?wJ#tn`|e8n?zDE|dMgIB{()+1E~m+{fC_@~>N|>#XCP*0+;=y&nvQdo+GSE=WCZ zI4ixewBj~0exn!qsr;MrLp#|waUYwj$-bGo+RV9bA3(za9lI!e8PIGuTP-H+rDyvp25GezS$_x4MeAsq5Q= z&{0~??fcSqGQqZxes^cP=DWkX@A4eEnVji=v8qnMvbbvhJ6wjXIg|w@zNB$^UA(#=j=7Uh^LDx~b-QJqG_1={M}> zn-UuT#t9C?e@A?qTjSnVlK(Bw^SAVax8%>;mBgQdJa^vJm43HLlL3;N%j=_Luy6oRQ#zA zrPDa4G~Ppgkmu<&1Ww8E?n_ADWLyG^UJT{p<`lC%| zKmPblrUKF?-M`87O7=``WzRGS&cHrbG*>?{nO8yUIb*V@BW*#Ph4$Z+rI+T(vJ$FK zo3gO3EZP@SR_s}o2d1o7G@qsMnZ!KWs1xOt$x_cZQ#RF=DO=#5{V`=@T(+mWPIfmj zM`5V^G3C&6&y?ev=FeG3%(Y$2T@B6@^OV#4d6WmHJddUGTF9T*AL@O>lvjCf%BS}Q zlhqK#TPgoc`Smon$`|b?f2kzt z(&S0$q3CV$mstZy#s}%iX}vy34aJ<8$-x&%>q) z>`w*qsX_yduP_;ZjIL8recn{D5qh%XDw0PP^*PE^G0v!iiN@#nO+NzCjo;I-8YK2h z7yH|YL%ND1XNVKwd{60xf#OOZan%Fyzp>)_x#G^O;(kZ*V3K&Krg(UXc%-U$GD3hJ;V>b;>T6urzzssqGDW2ctHH|0kZCl z5`VNQdkrzCvzYs%Sp0~wzmtspwM-32Gxpc#bgF-v@q0@zg}5wQTz*Wv+BPvL$=HX-?WEtE5`&YB{Yft)`_JFM=P=cnr){!- zim{JFrX&ZX82dWOS9;+D>E-35S5=qZu}j?jPCVFA{zL1fPZkxQEtUP-aOodS{%BLK z6@RoTZ)fQe-=!-yG1fE9SdU|(Uy|{An}c_WqfUyWlk>&qD* zlwj=Z)-mzH3C4b2toMhe91RWs48w2vJt)rbpDOWvK%8+tKY#z;@l3;BKHfjUSofp? z;;Mh*{Su7(+~Og9Y?<_jSz^kQMb&S{8d1*aEhO&d?41 z3p>L>a4=j9IoF{F(1+n^coxRNba9v&WIe-bp!>n4a2ebMnQz!t^gZ|hzJ?j%a1&%d zhFhb_pW&6!%^`U+JPdsZUW8A?5$3QcED0;ZhOn7YC$s<7$p}a6?Dq)vbp-o5Vi^80 za1P|YN1Q|7gty=w_zHf2iDG17$bClIqdDKm0CWVL1gF7Ga1UfZBCnx8iX+LtkrwD2 zuo~o?N3uU7ZLvGSUXcACNj;35f}Ok@xe?9zj68x)6GxF>qv#`}IQLPt@z;S|ca$sI z19A?dxc;ap>~rA)xDc*^8{mF;8GeS}#L=Z8`7*i^x-o1AS=VURHQF0{4@ka_4n?zX zqqm~BL;Bt5V`$bj`jPY)&S^|ObWPX4v9F@`=c<|y_Pkh~nj{f|k&PF{|s zj>cLWbu#B~os8xBV{0jXY(2<+jO~e@56OqIxv>DqB#Gk-i!-` zoO=}K9<>eoPRMyg(MO`LVE-kKw}xDQd{eXyq+g8Z`s2yB@zlY1@@o7o;yL&6_t6>R z1T#q8PjE(i!j7;9YC)yv)^`axu zoO?9ajoy!)e2cz`z6ZJ9MCy7X{bnNPIFbCF$aN=j-HC%Ve&S@f4sL+Ej5?Y7w@xNr z#C{2Kt`o_(iC?j&i<2y1E?5K>hjn3n*d97S);Wpi#3asR67?`?A#rOV>z}k2{Q|y$ z?9(LbbP{(&S>;D?`>bnY^6b6+8WVGWj`q6?WD$nZ7ugel__Se%3dc zbxr;*`xNqaN_KR9XblU(LXiEOQW9McQcqJlqx-_)Z~~kNr^0!Vx}L(hPt7L#)EqD` zEDG7DsWs8$;ndb>J4oJ59fh6&XG5+(bp@L9oyz`AJ%Rl;d=KMbJp2LaJJT$sr?LKN zWza1l^)ijVKaKO9HW>dDxCqh*rv3gst$BazWEy>O+D_uA+iB;~)XOyb!*tGjI`uN0 z{F`1v@zZO;hLHW7Zj1JSk#I5m51xi+;RX0qoWZ`#Am3)>#?JL;R76*UobQY#=w{Fh z`oaJ>8q(KhEJq)NtY^k8^h5XrzJ~AMN0=_oB>!i!KQleCcZYtE{h2uu9Shl~nVj3q zeb^sCu0JygodVO~PjOaOSQ=J_RUrLt7VDhV7(4qns|}iU&+3OB0>{9akUX44KFy*I zW_^)=HhD9f{yMu6_70Hqn%x!6b!Ug6qak%UI|jWG?uG2vZ1Q|I&xhGp@Lz`?jXIhC zw@zk%!%p4K;k{%|R@vtifSm7~8fY762dURN|DwCVZqOeF!GUlFq|eM*hvvTK97U6t zbLiJ|$iF%C>p6+UWr%aRkGVO~6<}@1xzA<)=k~|WI_GlUbBAFc4`)KoVJ^>^xp%Si zT$@))dLI3EULQ2`&zpy4o_W;4Jm#Bs06%p&?>U+}nD+rqp3N^SJ-<98&*#&p=5r47 z+0Xgsh$BztlPB}<%f5j9TVRDQ3fZ>>P0`G|pci@=j7jdBV*I_w1uM}T;1+lpvTqBx zp9P%b0_uDreR-jU;un&a3rnKQz)G+x-i2+k{|o!UD7X~T7Z+|Y>SV#+I$5|0 z|9(h4Exdug4e!7w@EIguV=_y}6oQ2z`x{dZP2Y-XfVPG9&=Jx%V(3dT^rIN=Cx(2A z*-kv`j$wTxkvK7fXJ}4kj)dPJ~n8bV&Zk?m!=dtS^>* zT*NspY9jw4@@^6NwutL4V%|lZ(<1VG(J97}Z;P&?-@^YR>aOFmJlimiKey7Lgs31T z0(MQEvz;|{E{wHP*K?hAch2qxJ3%nOP83_P#h|1+M6CCg$~H;uIG-c9yVj8 z_)@N7ovmU%R`I>Nsy*#*Bj?_#Pssg|^KI2%OS89;e`ZT#M_Faaqm#ujX7?okM#8vJO^1S6g)L2x`AZY+qyr<%=5ZY&8 zJi)w2@RziIgRGZe)=ThA>a%boG9ST_-oN1pQ3&nobU_eIXCcp z8yM#ep|o?|4b1a~m#S}MUu|T5H`b-z0GZc~thbF{Q|Epg*-sm}-^NX}N8llRhA-qM z=53Q7nfq;egWM81e>QRcZ0bY(BV>JT;^*c~tg}tyXlFleT1(!5tfx(k%ci5$`M%h6 zn_MI}S40nFyf!mln_E!-7+Dva*$ z?{j3GZsGfA3+r$T_uaCcemjwMw}o-oa*ld3reYQr%dM=NtvuIOU+T=)R@Tkd52$lK zZ5>J;jnmNly$n_>Uhk8w^QbdUTNjf#54N(-wqB(khwP87kCnH%qaXSs`*a)E-NriE z#`U)a)9*Omz&n^Ow{!jNf#l}MIBf4s=KS9N37KutD&54p{$co^S=pOt$e*t zLfHqQtdmgAlhAOk7lF)UDElS!I`w-pjCl)Ve}n~4=Q+bzH(|_M*Z|t6;A~ui?5D6W zGS3ype1&oUFxF8R>ozP;{de>8-0lYC#@GwlN4q)qb`PXJ7#YXibI9zc-Mh$#@Fd3L zeJqyY%xgIF8ty>7GJ2vHat?$yBsalk$asc#A#*N-^Zeo8Q)fShPb4o!#y6aO5x$B# z^B>MQhx2n%_#@i$k#!sXR5_v=vR@4#HO02D>5qcJF*L+d z#(y90zmIjiZzJtd7>#G}g51ye@2^g-i#-2+*3W*{$^L${^K-}kA>_HZ5;x%vI3z3ynkF1Xkka3S}PJRp9A?rSpbrad0dT$(t6L2!}K9P)TBsb2^gok7Qj&X6bWLoQqNRWZplD{Tx-5dQA*K)?pOm z5XJh6>O^~I?2ljKKe!BepD6Zk)N$(9uoR!l0~Yi`*71Qq$^YV5Elhx&AS(dyI8@YzFPDi(`z#v2f}Kk$F1C`Z&gU zc`T9kbmV*OSP}V|JkB^B=X>oq^LgBlcJ|qE&X41Lseg)}sJ!JkN=?WXAJEKQjCO1kZPZbM3?++Ih|sKarW&6T`?0aVN6>P9%|8 z_a`~$PV$^5oz#BPA6Zu?JCWbP_mSs1$@z40D0R-olQYQkaW|gF8|FS)`+A?8yhZ&! zvJOu2yr-;GKgIl>szGjq&9N1}ivy7Ldg>SQU&uZ?`OI1*#PRzuor%bUm@2&%g>o-hftr4oKI($kk{e{+<_6e7bEcivd_+5 zBXfS8%^)*wF`VZyZ>S#gCUPFcbRoZs@0t5#-Rpf4^D}kUQOpQ3`z>ZBc`@=HG2!GR z$UcjCK+clqY|$BAk#RrQg#010e$V|!UVzJS6NVw{`yA)#Iri7N%e3D_&VzID+gJT>VM#$xDL1BE)2yzcmg^9&!>?~d^o26jFWMvL&qYr%?|qT`T;x2s$a!#aEd914 z>;00Q@}(N+i}kPtzJ+h&d-y(ni0s2lqsg2zm)I|tSdW)ps{OJbwnomm%Ut*JH`E8? ztN-2={Cb~UX1p#lf0y^uFB19r<1+JjIg5G@<|EH@g>ksTKDg3M?N=DrD+9>PS?5<7m#eJnt3T5I3$nhiE+cb(UA;iQh4(NO3$Ykk zXR#j2vHYA68%Snd#Ig=z`%>q7FP7(t<#}RP)6Ra2jUn?~v5ZeF>pd<=?QyK9IL1AW z^&H3gisSv`{-rq@?6)}kXcXH*r(S*sfQu!=Nj{OEuA{+`PyT0nYmBQ-wXNwKc{u=sp{8l zuoAN0uh%8B&aQt>9)SPg2poy)k>|b6d3rs9`bEr;H!33Q>IUol2J8F=>*vN0`Y~QN zhLfk_O5BN2cnVJ=>-z@l`X=*uvx?epR>f+_d35tV@~8L{vaWCbP39c9$$Z|NMtwRi z#kI(|+&n_QjY*h-PvkAe>lX8Li|4z=e!Nwme(jKPy2bq58c%%!@?5ugo?9EKGmf|7 zlyCF%z-`9mHs|5(rnI+2_T_EX_w9+)nWx)~$L(3vS6~Qk!Eii}moOeVA8sd*8L!){ ztJ{p%?H6jl!@j*^OJ;rF`G7nS2bue1{p)>lhxxt3xpIf~cZYGk!#v-a!{<3q?y&Cf z9H!1WcjpHAnY_z$-DMx%b)a4yndiIgkGr*~zlEH;ci$oR#IKQkbC-F)JCXVn{15ja z`{wQ~GW#UnP>#1kJ7hh?*CaPWo+tiyGUF3JkIa6J-$Z7d;u)uS<}p53?e}=^dqHI8 z?_OhaEBp~hAn$vRdAc{9dN3Zuqxf9jw_pWyL{F@N9q|MF4F5sa&Hd5jamak!Uqar3 zTk#BD!({oOGIDM`a3M1f4}8e1n+LVY_3%Ud5?S{Tz9DmtJz$+b;5i>~K0Me>zesbR zn13hD|G!TjFpdwHuZNsd53SYzA^Ywj=j=mw>YQ5--zI;I1MqwN9sj_;kbU@&b^MTd zeHcdjAv}T)Fb@l{SSGN}6Ku#lcY-&$3ARO^H{okC`d@l5JT?u(xz>okdVn#BAkjisG+nlza_1sU(85b{<$iKj3I`Mya? zAQvI)BZ>D(c2GUp89A?$IhT{WQ2)r>CmUbyljPs1Pe9J4WS=}@d>%1Aj~JgviS%RMQdxhgoa3pSkE!+5FZE4i z9#eafIge6@lUY}(8_36Gngv~v@lX4h%=wkZ`b=9%ou7BoBFP7l_e*0xrQN5_`b^{f z(w?fG?ue|*bPuvG)1x=3f=rGG}huklahd`llqUWTi2C+fhoo$j`Z%!^rIC%*Ev6cwJ^$qZ4w!EcQ)Sb?S^u7Wc_we`HOho$<~( zOg@iSk?*;zV)8SYZ6NC-`)xAsoBbh~anBw~9)Y}9_BJx>Hv0hi5c1yHjC1xi>Wp_b z>ote{lEeGwbXLC{&d;2|WX3mVIC&;A-#N^84)dFHnRdn@r${;19vzT*&-EcUzcdsN8Y1= z`7L0a3%Gv45&E&73K-9VyVT2Mp)I;$O>BlO@Gb0ty^-^-kbPb_g!(dMTnic3!f@*Q z@D3&*^IFLMD{@i2i1{q?B7cIPA>&c>EBSBy7l-0Fc#Z74Mj-1=Yyhrh1>O6PxNHXiRnCC8@LVXT$&J^=L#ha*a z##rP$DP|uP=Tm?6_n&Qfy-$iuR4?KDD`B0K@Lna%LrG)$@jfN2ixS?eQhshK<#|e%(=QA!BI8-gIxS^f zOPS|V=DC#fvb0p6d&2sBQi~jbfynv(8co-)37$|9+s#sp;Eo*K$eS%*)%k>ADl z&3&@<^*(vZI)C~(?cd;!$ap>djr z>sb%-M>r6_!taphdNz#AdGn0@@r?EVY$NS_Up>1_zKK~_fXw&vCd$v-BkTV;&-tA3 zef}ZsjNkKdWcI;xp65B^^PJ~;zKVWpF$8zuMNGyNN9^^pbIT$+~~ZdGV6*dAXYYp~$*<89`>86+R_1UKRc#Yrh#4^!;R1m_q#s zYTk?rG2{z)1$n*-kH{IADJxnb<5!XKtEly6RIEdLQ*49p;rsXn4nm!?Mn%T2;%w?V zuMDfI%2tez74u}(ih5`4g51YS>)o)@Ib~Qee^!6c?_V5&(~-yvt$aq=nd&sb6e5@zYz6Dv|*89oKm(8pH&(ikS`@|+l z?KX9h^=!j^Yz9+j{n*SPFTrKF3AwLL82JRUo^04>HtE!}ko9hBQMPqM=GC?lxhL}e zwgbqFgY6LV1YD2d$Ud`;A|J(bsP8?)_PMg116D)MCp*T?t^sv@?;3Wj6FcU^j`d=< zoPMkeJJy3;9`#}@!6*1s+FPRsHpIrry0`zB%>J=weC!z?d)Bo*^Jzbn{>-brzTXV{ zXzFK?`LpL7u#cmD8&&#@YsGzz-74$>S0|(Z(1MlO&`#5mkIlM{#9>{)m;Qbuf zw+>&^&igowC(lOKr33TqaFO~YlOkzf5itUF%s6Nh`$c`rxa%dxWRjy2F5Yhqn& zj+{r1%#-6M)R`Yg#@&(Ub4;K;8}qS9I7 z9EM|%_2D#^ycXGCPFu))zdG$8KbDo4_e$Kq(p%I!VmEvjdm-~(iFI6wbz5mT?aXhb zh2&5?fHyG}v#?ZFX8bBMkChu!?~EVdkN7VRL7t=XMDi?Lfg5lma!yued@3KJ{s4K- z%A5n0pQ-N5b2{6QnQ!N+WX9FG3z_kB9!Ta~avn)ugzR@`p38YR^<&67bWSHTe$F|{ zE_UWV+4*{(xYVZ3__;8CF8@%UgWT6;4ViIrxkQe|I4nTU7Z>)StF7v;jEAc?IRINA z>&&%3`CI%Omm=r0E9=^o_3XNj_S1L`lQ37hF+XnXd$&f^S?_Lb$=#9Xar>S;6`3Em zt>h>?fw%A>{{Q~Zm8(=hCuE&e@glQ6s`Ml?PgU4&RX(N8yj2MyZ^m%ki${^?tHQih zNmSk44y$7=tb+}Z`Euv}?(BPa&L#Ih>Bo9@pF*CEtSk4kwQu+lX?+8met%a5P7a@JWsV=)cfIY z$hlaJ{atM|^_jR7dA@3qWWKknJyWjkj8%|zQ=N5Oy$AJC$a`1cNZyV+F&deV>gUO< z+vhKudK{zu2C|<#Sg#&w)H!E7 zYbblxM9w+SdgNxv`t@u{W`BE*C9_^UXOI~`PtHNlwbVI(Jee;~&L7WHv}Yje*^~9- z$^Nh5uJ#&za1d_7>&Sc8xJ$l|FQpgn=hc?n6$c~x(rX-fH8Rd#hseyo7xVAMeY{H5 z?rlK_bDxC1-Y4Fy2XFR;H~Z1MBmFxe=c#v3@;CT9&cZo(0WafK_>2$ zhuj$%hnjuKU*k_W9~a;n$Onva$J4di+JJ;vAIr2QU{~~Wk)=BN-WY%?U#-sLm>UYd_zT5o&p|mLep~U=q zDMzOle_!&0#j>G^^2Sce5&LA!B^euzd*#jH>VIp2@@*ekyih)_Tdv_Y+Pq)*tM8w} zABxQTIrJ?2zR0{^r$chsE;;6`s*gUUJSI!+6MR&kz;z~^ zqW(<%CJ&ZVYN$SSqnzd_r{~KVUh4Osukw6HU3cMA)t78meaRNpm-9R;?| zzF~}KxR2VyXX92G(Nv$0=%u_rNJiGg+PYq39o(t@hh5cvxU1@iKT|&Tqw=u>^0>A7 zNB=6%8|rre^$TLTQb8{X0})V9AD); z=09(zK9^rv?fF%(fh_UH6Y5uTMn3*R*C`EAF5RhqWh>;7%+$s~})#{(-na?X?=Kz1A+(0|qDuK9sdz{rb-y^LbqIe<(2b?U{M`-xvH~F&sveXTv>B z)_7?4+iULcz`}2fzOz`yT$U3*!iREFnVh~B56Btq@vNNvx%`jM%~_B zuYMzA`F!j=~pS%1Ix{G@du(edWv+SR}I&Wu7PgA`5QG zl2*7=KBoUm-QTFVrMzy~>irDI-<2JgN~dnJvc2?3m0pi9SNhb&AEdA5+wkk49H93x z0yO_dP+xOB?K9WiXSrkZ##t;CtfbYB+;Ms1Ef&Wj>71*&{~qOfU2@0djkQ=B1MaM!R@t&`3$=INEW5Un?>v#8KEM?9|LoP@C%)f&?hDyt za?Izjs*3}&$K{yMZS@;DOIrI%n+dp6{cL9_+r5oTvd89_<6yT;*3ljIQt1NZG5u^y7Jg=BqtukLtDge0>Mi>;I&BgT=C;6?T@5c%G&~%FTSR zn{3fZzIjo$?k(G_lx>&F4pp!Rej+vi)*_;FO z&u~~=vPa~Mv{))8N~IqtS$(*Cq``C58UmOlSV z-?OsTC|Nr})*CGw?w8G;WRA-+*F*F3%B>d2P6_6H5198&OCOtI-q-r2vx^|rFR8{U^y$yKY9kI8BeWc3cx!vXKf8WW{&fb{!T z_wgG_-Y09iq>srk_d(60%C)&)-5JVtdC&TFmFvgJhMjOAj+2e(-`H2VsXH#k1ljC! z*`l+2bBb(v1YgLvVq~jXvdsj&M+e5CLyqbld&{@Kk)1Egu2$;bjpyk0Q1#EEk#Yas z{BE>5XwGZR%u!jdein8_U+I}Fy`rVJiwv^DC$jac-?wz=)z8uCBQwl(TJZp$#tV2i zeN={dpNa*_Ru$1pbt`XjJ#qtb6MPff;>Y+Iet`q{{220V@@n#az%NcuO$?{KNC zMZW+aT_=F&45EL~o9b7a_o>rTxent|cfWGoo3b9yTW^-GSAPJ`S9^n=vQe^ZdR*;q z^jCgk4(_F1BAX3Wy~R)R%_FL}v{i0-hny-~v2I(jPFwL_t*N(ReYZKO&$oZ|=kyMn z`>mlq-(j%o9l37D0_C?S<0hBRMYm8OB?jP#kXtnB%VwKxYQhU4Uct^JX zRCb7$e@--?=jf~V%^sFxK1byz*+X;8=W;zE-2-LSCu*ie;~v}u?+Ce8ewu~{o^ zuS&ZhX&=Ul+6RYf7L)kZ2`c=SoI9}FlBK>(^ z|2XAZyLFwwN6NLw$U41nncC}SD%bZ^uKzA3%LXlQoBB1}fY)UsN3}PqiEXI=rQCR< za+5={X+zcD;Q5=~QoXqs{)6k0=V-B1xy4EO=C8WWo0qUqw){x#Z+$3RFHpVhUgfsj zuiXyS+dWpj{S@U6jAw^6s&~GodY7)sU8X8`WB$AOlDTiUztpeWV)<{px!zBj`zA1D z%p-GsTYs4{?$LOQrTS%MuNyKbLpFIUW$Yt!Uo^QW+l-TMzf^mtSAX8@lzF{9sUy=~ z{rs>ebyV7`pA%xpFQt_$HdMRS8|2>P@9;eJSaP9syeOS)uoqsJmFw$s?zzg<)?&Ey zzJ&LrZ)NHKPzG+4^+(8tPS_fs$i_TJlm5D2lMvOLa^E+8P`!0M)!QAHor+}VcKEUE z>M6U;!t?U8ee!dj^N(QV<(19xK5dS-UCO9O<~VzQDw~^QZx#J&UX#Wpk2k+3;*-WE zoAc(`SJ}T>(wJm(zWu+Ewb#k|iE3}!786zftgU&yGv@WI62>N)*YV3X|M9GuBa=oY zoA#QFvO{bHAxv^%q$^Q1$A=$%l14 zPdDtYcF(_M4M+8>@iCrLzZ$8^UKV99?(5x3*}FGBRX^|N%04NWDt%pbAKxHyXY7I_ zafPnqo2l&Qi_LMB+WmrcJ->&l`xnSsk5mshgr`&wc&;4Cx(QrDUZd*;rmJ6IHaS-Y zMX6ra;b=#<3_a9uK`_${HTrW=j>#-i{6;Ush^=GTS{vO$&qv{QQ zRc_P(JE-1xkaFV*7>V)bJ~?NePZ!89Ws_yHX@EZ8l=e4VRDUB+^*0KYo9)KOsy8=e zi#Dpatf2R6$#cI|U-h>Zsoz@%m0Nv+)A6=!Jr=jCe;eMjO^oX8+>!BaH;l~twwp*k zug|xyf{a`H#pGf=XNQXTk3QFd=jpg!{W|8V{`MT?bDiE(?zBaAu7#cSxz3DN7gyE0 z^wWL1ELD4#&D2jRcl*YipY!JYxa9tp_q+M)gE?|@OPNmnh52iERu{~E9@)R;nEhsT zlM8Fh^?T&0LRrwVT*Kzo_ti!7b04Muo?-r-^po$&8KH97K)Gfnu9lnPWkel$#7UkR zCa*O}|0Cm1i{;@dvR(42L%D{{ujTEA-3eLgxavN!((iK_c*lJ2 z%jSDqrGJz0t;O)ZX8z-qSKn`s2bK;p|GVf(>9|>%zhAh#UfJXEfYO2HzuyHZR|&;v zS+$<5R#DankzT>lpZXh7%FXu4<|*>c`Lbm#oFUtk$hI|Pho5Ap!Lo~=?CL8&vwu9O z^egk18P@7~KRYi!ucrEt&gwUm_Z`OlhW)PkuoU$lmMe!-AHGxVBU|AXwU0b3M=e!- zv^9RK`j|N7F*oGcZuqy_$6iw&w^dFUgu!Z`SV4K>Z*o$ioSdZgDFMn;mf;pT^&jLt zr@mC4_NP8KZ7E(ebyd1yQBPXyT>stSc%b@j;<5Nb$7e!bG!3ogrnLco~r+zTgd*|%YNCLr25_`azE=W zlIM#2R`sarx?a>`GW#{^s_F-7tA3y%Hq&z)>M4)ZRQ(9^c;tvacdVbd_FOI>P z>UW9zTnbUX!uq&!fz0)<<|$wMM4!K2S>Bu_Z|_k1ogb9%Hp6i;o^_k(q@3t0lNjHm z@0F7|2a;`-Q$EmjQwGUL?DJF)jZ^9;s;80Dn1?jRGp#_^$>j5y?8hwDTh<1(XE9FM zj8pbT)w5sdJ~``^bJys8xvzc>j5YVkZ0h%AUIS!b<$Xbplld!U0png=U%BKh`FIEp zL+)G3^E?@#dKv4fjCn5O`JcY2_Gh2zIiE59&&pJP?x6Z}&WY#ylwb5w`^)rl4U0Rz zU*2w5wC@e$xAO5YcyGhd`Zf$cS3%z^Mn#>shE;Q2$2v&Yv0fo<^d5$dzE=#Jo9bs% zENwr){<@!iC4J6b=b_=CbK7wAQM=>U>hJiy`Z<)Ytm)f1jlIM{1{bo38d<<9Z zN5l20`nhSn8g5$OMirg^MwP~Dch~okQB^-j7}flA-Re4TjOvG#J$!J4p4aoTK3_xg zZ`4?*_8K~W46i_CFMSUhUODRT-BfiSTVTnn z=St@uvU(TkF-Us;g%4z%*~NoO%%6LjFH&wlPI<(1yr}xfmvWRRJ}MqqV*cDW_B-VX zAIORC;fHccW4xs6O&zQ}%>gUP=@aD4ckpjH>p%J5965IsPL~VX$fXVCvL?v;uXw7w zYNPJIrkV1ZVRBuZ4CZseca=9BlN&qW7`Zu0Zk?*@ZTC>#(M#@pQ-+qRJ&gC{_?RGyiO=VgpLR>uMI++eMTbHD33&JCxYEibTsF7kYr>!^Ok9$8nh6_jJw-~$~?mm$4tp z7{{`!YJb)Nbv?t-`x+IlmDi1my1!wqePLMFRNba2>OO|8tFryO(ymWR$Nw;V)0OF8;ja3yUS1d}fyFXBNu~ljNl`c{M@Cb(S~k%3DM5 zw!A%C-d!Y+6g%d=tqgS5L){+@lk(|lfF zyUmyGC(EDDsMbO4)!tFvdyDirt9HMRYOmP_N2$G5BN?c1G=j#N>*A)xVi}x2u)tgo z`K$8cC-Sbf+8?x4eh{pj_@{DeoGkcM^}?%IqL7-%u7{HW}HTUPC?{z0$)T<$INz1$1GC^FBV z(0mztx3GVac@D;}lZ6M%H7egT``i=abFZ@-m zc_}yER{Pct`Ck;gx?ia3Va}@WO;+AFNM2YcuPl+bX-^-l&u7P#*A3edvWBPmeCB@( zwKRPEY3XO?uj5{jHJ{7L1Lc$la(YdA@}9T>@Bk7c)5nX`D?^hcg^efF8;XW z6Z3mwmYkR_7ao*L{*(I>M~}c&s*kCMOXawOa=fqljSnRMj5}1HutrWi zs`{i_%9Gw!o?HWY-^tu>a-{lAsiyWR-z!gDET?guX&o=FZS-<7j`RG;+=4#6nAf+=$L4E#@@pYxuaJ5cqxJpbHbbH6)^1iE+mDjxbeQM^J_WymdW+n9q zxwe+Bw>Ah@QGX)W)l@y0^&b3>atPxU!a5I`p#C98@vi!<_riL`{YpME|6HGq@`h2k z4G-vZ8!jtvWWQ`={cns{`zFR~6YF6U^Rj8UKDTK+{U#}I9*PC3ZwbIFax3q#b)EWc zJtMc*QTz5L*aKOgJ6Oj%?yLWf2Xbd+_1o!BW_)+{B(tt}&eVA9>a6~|xc;ta_1l$3 zy-bGIQ9aBiYO30!7SK-r1KjUGXSE;Lf)Ca2Am`!1Hlymdwb@e;uq582tLC!CP| zdSbZp$xn2jQ=FI44V0t5RQs7J@+{vYXIqguXU;NzXSb>zQy;tHT3nC0@*Ml*Tu1UR z@_akw^XE6}dCp%@{Q~F51wMD7tJ*KTL;F8CS6;lN_Dg(kT=r7^^2f;jy)sYv$|?1~ z%6r6ej>a}ndo1fR&R;ohtop|-R=(C6d#HYm_qz6{>eu7t4bJVJ>-xX1Z%?`!JGm?iJC9`184-;dLE zAF%Eo+*iMcjxvFBAYl=i_e$7B-i-yiP9p0&iT#nZR`n#l50dyENqV8rC3_%0Hzfb8 zoWl3&qu$ydsWVkiJu1`qc_6)-xlbOH@00SMx6%iwJ^dSes{3bDRnGVwCu0gSj+vF! zKeL+ZnXJFeIn)nQPnTK$sGhZ)yqSDcW>--?dydT6B6HiwybkJ@$G*rrrF#A@)$=ct zGi8A_PDj4?3#+StAwLfm{-E~4L)6cb**8Uoa*;Q(o{JctBCcOlsLvO7#1Qo_zA8&N ze@b}I627NOKB4^xrt9;Md9Tv#s+Xq8CymtpqzQR3neT}*_FWm@cV(;9uZ(lHjC1HI z-~Uh7s{Lt}QwHJ)T3%)O2Tq^&ZVbS-SVL4FV-!KN?k7_rD z$O`B2p4ux`z#!Et>UoWdVbt~Wn_=asb}PNVVfB}?^#`bVF|3d1bJp6ohK-xrZS-D- zjeZU{Y;^7!HVbHvH229vbD#XG&)dGGy6qKd_dSk8{TyW2cTs=)Pw_kHFi<*bpBRoh z2Mx#3)R)OhwrHp8R?>PgDt%8qLG{Xm@Vaznyqw#S83$*^#W_`V7oDeu>leyyb5QHS zaMREAh8y$YrgPA!;;MdC+UPl|=;sBa%6{t1i@Uye4EHSctH%ARF+SBNsJ}-I?4y1j zI>!u;$I6}`;$JvL{cAWW*9as(lU~e+*ED5s=GR-_Lx#8Zq2awj?LK{V9iPvnuMcWJ z8ov5@#_-j7Vfa;3d(Dpee9e_){dLtE`u(Ruc==U>!)@vbA6kCM%4U!G(Igd|2xDm zUpc&Q;m1Yhe>WJONiJ3%@g63~k@GNA{YK4_qdTiUrh@XAd&*e%etbmx3pu?PeyH~8f0IL% zXI4?3)fzisC+v)0ssF4s7@_*?cl7+Thm*(REcN>@4bxSh(;s8;uADnp{pKzspT{KC z=UL?Z_Nvbxqr8CkTkr|_3q8+*rOFHcQU8V4l^3}xFJe6`@~8e5b*{7Mvhreg{1kcq zC56gM>A&=$uCvTdF1Nx|xq|sv`JFzuYNYC`&&f6SRA1XudF@fTZkX!9LCPUqH)I@{ zb+);i`fcu^`sPx(r4J5P`<4Xdt#9HibDt!>-X~l6+}1L+Z)<^v@RHoly4+D)c_;53 zc3=0|O}}u)H)6T^MeN247%TT=VUgU=zKmR|>qW6%4^&e7!M*Yj`}2sG`W^8@e+*E+ zqrGsYJm!EKT{QDl`p>`uQEPY2a$QdtGUW?PIv~B<+aao zm9BgJ59RBpYgmub^?bI)EoJ?wtt<;{>S|)R@B@a_hy@tGZ8snSBd7rUR?U_$?y{w*S{vKwl zBy*pw5P2$`0P@@1S$RaIB)b;{xgQ zf3=^DN{3Xh{8BpG>GLi+mkgJhU+=#YN#9(CTn-c zN#^=Ae=W)4l>c#o`SVTiGPy0TT%-0oW_wEcIp3$q{B?+-=L^dn{-+$-qOfm~`Rf!T zrz?+IB}d!iOtp{BBfpem`{LfhensYgKOI*hCvd$9N&4KxR_ZrtzMSl*ev@00Q`B#A zj`Eb>)IMc`^3($5X}>B@|3m$!^Ze5{sy@>hd#iosES#tMtf9C__1Uqy?tky9{@-2I z=TudmTSe^)>MAelqP%F8Ts&U&#n1G)B~Hpqc;4lgR9~@O^%Z-SSJuE2s;?}RtLkGr zU4QjGxpsu=Ye(yI>)w~^ZRCbV>bGIK^5zP1%N~7hYg^^*&D3uP^BCG)_1*2&FTAzf z$9kxK>}TrRluz`OC+n);$*J;GYt>I}P(Hm?Mt`i&M;}l=YpZ%$`Gl4- ziE&6;toEdPs;7JCypyA$8{oJ)~jA~lP zM)fGwtKU(7k5cKWaW`uGruG^ORQHZm_6bn-)&4bncc|_+NA-X)GN`fYL0Tt9?Rn-t zNHxDtrswx5FuyN`Wy_J@$T7n(KfiB*`MojOH@{zjdH&BXRefGF<@ug+)t9QTKCJ#5 z_RFn*sUEsbMs!mDJ?`@G0@aV(Dxc*3XTDLs^hE9V{FKu!%bee2fxFrZ4O#MBKABzK zZdjU@XTv&2+I~^~T!!NkVZjUC#5Yh){jyXv~$X|CMVU z<+{6albhTUD7Q9}+n356pCIF~bEk4xq}*L5!&~8H8F51Hsf4ueX|25PBe|dJAM{l| z_@g}ZjXeCWJX$D^b-_*Y#CCbcMV@6mWBMq^^u>?m1w&q}g}m40MCB`MW$aiPw;9vq z^?jHxZ!lgrcPZamhap%b?{vcf$o$@8KJNdm`h)M}!;Uh6@kvNlPC6^oSdZzfr;HY= zXPlCm9#|h)r&$M;v+u~9D4EOsb61cV--2Pv1>C=&K)L8mbDyM}=f@u9VrOK$OQtG6 z@xwZ@EJ!|OzMp=e{Oq}WZi^@7OXlO{b@KgkjSAW)hSf-A>x$A=>&meGRoTuRbsxjN zsC##2%WxT??6M4>Nw=>sPF5K#t8%}pbIBTKquM!TPoCFnk+L_> z;j>NI=ZN&}ECb9l$tuGf?_2pF6ntp@G2bu7(@9U@b zeI=^zAFmv_Odjelk91dibg{hho9b7ND#y9XYc4oM?bjkOTK7wNsr;x!rq5RY%qMEk zYp9&ZI6Zz}{mOdDXFlcq4C_N=#MYtU<+EI9XerU^gutXiH)%tzLncA&-{K~U?rE;%k7hAey=CJ z`u&Gl=Kbxm`{kJJb8TgsIpJ5*9uR| z`Q(KslvfqXkgw$iFS-4x+%-oYXovIV@m}(DmGnLt=6hWIS^4TZ8OwEUg)85lBojZ9 zNxS8vhWdOe*H7!9disyJU1r{vxiw|p9+}@;7COks9cAgUat+HgX>&u`PLwWz()%-6 z>jN2JhuvlE{%HOlTB}@heBVnNkZk@t&#<{k1C!0#usg~V+>}G?_$0thn#auE*hbJOD-xeUntj1kz1?F&|G=AOdfwJuWc^ZFm_41#?o=Jtn}*F zOY_a=2~6srZ2o@RZX@NW_@pnAU;RGXbIJ#r%9tdX(?OQ>kT0H=Yq&U>*DElu*COGI zMDz3hAInMeq?ncXJ=C2u86}|d7IQ#t^ z^K-V|(yN0U_AW-@F*)2Bm*I7c$5c7ON{(!YPvxi^a!e=eC&wO_<7}}pZjs|FVJ$q3 zC2~R!IeAd_2RY_@Po7M^ET_!IO>$~4IqerYy)yE=(>s&9;}9H!`{az#7%XT0htYbD zS&fuuMawx^a;`77!nShWbUB~#pZ`R80pq=37n%DnxU0O7_g&2MEgq-(;uw6a=ULKR zdC3yoiD6hQm+qF!TH{84$U9R@WHpqQe z4<*l$YnYF6u;gl!Qr&OkRj}ckblV! zG|uZkQr=KcZe;y!{#1EO9l7;@+{QlK?xnn)_ubw_c}Jn#$-3P+MLEl2U#Zv7pnbGZLE*n=g@fadU@DW*F8L3`3ToP@>2OI`{@|__gIAL#|_+|&!4QR ze3J9xGo^8>z?KBd5r7Es=G3ZVUN_ zJkL3B{%7Tjtc#0$?&6o!*>4wr*Lz+(t@?-T$>hI=0DS5q5uJZh`-uiqj>pYfoFzyG{udxrVdn(^>K=$no&flATRlhk* z-fE4kk6W9_XE0gD$IJW8ezQXU2`{iXS z=du3tCoAW(ehLOF7mSpJ%u8WA<)ZrdP!`w35tt!M==YfO@-gS-W5%U4TK!6kKE`ehiEH8ouHCJ}xeop#cGAh+jz0ykQqI1S@c}#vTU9~<8H_eMt zWr*tTT2F>M@)$8T@~^87Wp zzE@Axz1K>gKcw%^I1zOY8Gft-Kk9yrcg;fetHrnlv{4S|C7vnn;`aanG! zy!Xssk6kRM+>-k5vx6AftxK(*ZL2wmj1h(_~D#Jl{fI zUn=i)lnLi$$sSqyxqMhSfl6`>nKhD}PSIVViQL-qNK^R!Nbb!P4vh z#wh#Flr=BOpl0T{Ju%1a%j{k`=C}=;ll^Xv`Fs6F9ao;bT}~&@8=}0lo%(HQtGsJ` zcF!Dh{C5AU9Pze1c2)JWPU?Twl9Hth5{!*P#tCExOP!!=Gh z=qvO2&A;=?(lGPGEc54@h1>B=<_B5kzjrK4lOc;T-_J7ty=q5ywePs9d^B1)Wr=*& zs=RJE)GYs;;kMbl{!{b%HPb)HFt0Z*G5!4v^Ez8P$(@a5j3xcU4D^`uyQQ)sJ~8A77$;{IWdxv+8%+$>i0lr=}~HeyaR5ul%}(UCr`rIDLy7%KI6W zPD`)-s{4#H-|xBke&40{%rM_;Y-Ks_=k#|o%;%d>U3uCtIe&=iiwCCn$}q=co3HAj z!K&~7QbyUx1O3&0BuM#UYkAqCdTgq^)?C+n;HvfvADOvH^)e6T7w@S5%RkFCJhEgh z&+>L7sJ8h&FUo3jvmzmwO%=)l-a`=y#?__m1e;@2tIliZy zFi_6;RQ+a@%DE@xCL0+!SRVL99v&vouhQoe|5kpKE%Sbr`EIf-qg=zfN_l_7?xeEA z4(WJIdYOOL+1h-3i%WX94DvA@d6KguaB<euPw>0S!E0s60l9vt+%O(b%Pom=*HanJ^F;V6@8R=% zXDjdfPwsyrqnzZS1@ds1Jo3Igkt|Q{lcyQyn1RaYTVo%2;jp~qFRxCJvGj}UtsKYv zT)U%uoq4;-eQ#Y?{qB7k?=9~|$orqj2Uq07g)(87Ozb6-AIeAH$Ta3RtFCg^G>nxw z+%I>Ta^BCfi06OI{5)ZNpS)e(ZdjV*d|9zSMoBBJH^cgKW!oLnzJqk}!t>JA5ogJ& z0kWD8PBHgM1#>?&CFjZNS_g(lS7lGG>#6rNJY!U^@r(3z!yM^XPX-mp+U6N)UD3SH zqSRh#=0Cee$>E#i_kBX1v5`-74CTtY?Fa}LYGQ)+))P3=#=SAKrKyxlNj%IikO9?BIHFsZzsVb@XF zzL#`%RR5}JYOlUfdQ?)~<2@WCJww#)T|wD;ieEqa!6#!6XiU*6wvIaJgd}X@ldRp!yswRUU#o;( ziROI{H#M`Zna`$nPczT$`g2perJ3jWsQRhzq?zA8qt~fECq&M#t@Z_fDKGv?{g$^^ zUj9sZg_m+jlH62JpWE~YE|%N>mZ5{yZ(ntNe*abE?Piyyq6Hey&9I z^X}?@HCj1tr1G`i_=D;R-zX>irkvbfruwR$vsUJ9l|_@w+YQUW@@!OSplsb-**35I zISj`Z$}XYOwTGGRkBQvD{+f7?^_JKw5)XM;>RjoC7_mMlz@C2yC1&aiBg zRzsvsQhB>!7cT98QQiKQvg1f)_l?R`hm}8{QN7pyh`R6ip3eS{<2fWGR)&!fk(jqC zYPMCos4i`Fpi5gyRi{?%y%IYS1R-K1Vn&F>h!JFv$li+(1hGj7;dkWy^7Gg8@xHF} z{pMWf`h2bv+Pk;1i-+c$RK@BVcRi=v^k?Pf-{F3z)lP>qa zE{~0ru@>^;2>JAArG{NISvOR+F#qgkRm1$=E|>dVF~4`=X1VFV%kN(4Xa3&WQSQ4W z4}GZlm|ilczsygR1>NM80rGx$rAD;?Sv}tTc{N|u`K19xW}R2>cj>(%v(B9lC^s*W z(+9{Iv*oO5x^C7X({ff+boN?n) z-=cTTUt4@Dvr%hVWj5^oz-{LBwax3t6!yDlUf@H(Y==&2!$@E_OzPw-L#R^?_tB-j^-RKMPycG1p~%e&U5m=6|=Toordp9Je*c`{Yk3F#jxBBTCk+ zCLP^m<5;{eU0O-EGqTwT*_`}ZjB=X+cvN=!98+c2!TJ9cOt7$c%lvPITiKcSVVOHB zZ?uJlkF%NW&0H&cRF0YFU&|hy^NWSWnISSE$eedD=O<;3$};DxWy)4hWE&s(_CK=! z>vA@E@#o4blH|%1y(fgFL%TruCB<2{QkHESM~>d?>H?!Tz$` zT0R|AsZrw{S<^ambk;8xhHbENSdf^PU`!fvqdEQRT4teU2~o ztC6TD%E7Q)8_Y?{|z?tKdSU?f%)%^OiM6xBQv`t4^A=vy`}{r$)BfuVPUbQQ0}cJ z_ubO`HHC8HO?m9&><@Fy zKWCg7DW7!Ec*XEa4ZBS9`x~3zZ=wPV&?A>hb9fPu&`N{I3#JP`Ty$}qHNzr+39cjT1VOUBiZj0T{pA4^75{U zUnQCU`>8c?(zm+C{kAHHy`g;2Q^s7B34`@LDcnbTiLO7tO5>Nt%3|`Pgvxp2#sAl> zm8*IGd(VB9VE){Rw&#WxRbfZ^9_NB}*f8-SbwJ*|4l9tv-}BzL&LEOS>7;ajkSoul&5x;)eO0-OT6Q zA?~Yq^Evx%lv})HKpT1bD;d*F#!bdMaYN$GeMu=+PX9(;`Cp}m+Z(c(hxv1wnm?yr z+<^G^%)h5>RjE`n_I~iJI(8xnb&`LX5d-#&mRja&b)Wl{QcB@^qB!?&Cf3x zsPQEaq|X?QuN$PizM-z)=B&KysNBPR=vd`bPjp>$KjoM(d9%N~zgw2osMN6DDxF*_ zKWDhaE4#k<``G5@{aVJn7i-?xf>lfN`{(8NF6d*v$GghvNz(R+Y@8vR{Db$T+hEz|P1$yg?9g8J z`C2YGCKq3nYiCKn?Q-i;8L(Uij+Z-rkWn{e%xL82C!A2u_z_pi!b!5YOqN`dw`}BX zu6wBU8daNDjvLM2HlIf;^LhB^_Rce(hxJ?1K3z7NE1mbrX1isZZL)oPoFqGcDBt{B z_Q;dHEpvP3^|G+&y-2zLsN7z8z0Kc`t1Hhcle6EGb81TW5A-?jAc3YEv>f2)-zev313yRM%!TzS%6Ie8e~ z()^T8I8WnKlE}A}r&d#*+7|!7>6)L`QcfR>e`BxAg9?g|KI+MSX3!CA5TqGB@#NPVcq7TT_)1qbMc)9p5UALIJS{$MACCxOx zg#B6KOHS1M(yGc!>ycOC_UyNE%rj?c2sw`YNY^jpbIa~2FMmzfEoXhpxi8OZn)jTH z?z+y?+w7AzulmF@MdMz4-fOt>in{vTinho;tO!*0cGY#>U6AMHJ%;%W8eeInymACy zkgNW~XL9vyUGLLE*=LYk!}qTFL3wRcY=v*&@A~{Y_QAJ`#(k*|-(NNFyBGtQrythW z()jvvx#1_xZ`iKvH%i$rT5hb3O*Ox9EK*M!c}^SixbB(e{poxEqsp6XHNWXS{2bFY zznOm7yn}p9^PB0#zD`Z=}XU*q;#gJLF$| zK4cPJ)ph$u;&_ekizBDX{p`zr&WZgybzSH}&4(tFb1|QB-XEc58b8oL;|Iu|hKIKF&FDe2d19U(wGw(MtKmcQTUqLnP-= zWRk{D4%hW3|H2%NpK7ao>b!DP7rdkK=(=dvKK++JNY5kxspbp5(ENGo{QLrqUx?NCMc$tmzt#9f`m~7i zyoht?GIes9{kigiuD|jl`sn+vvj0~i^Mt<;M;5b02pnQ}2&|X55|e zC@j)=IiD-%TrB53RL*+JOLhGdYhC}O1$h{H;vUUEr5-9qYP@2H#w$4Ip7m0G_OIrj zaZWuSs{FjXQp2JO?yKw3-}QOM82b+xN%+P<3h8>-P=AL49vHwAH+WuRiavfz0!8P`?@V*q{1U zbX|R&!$$oAX8JzoemGR0cRr%)os+Rp^Db{IyNtly8gIgSn{3m# ztKN5pYdg)mPSW?f>V0dt_0e_B!cl+jFq$_~Zr%@<>GREX&Ku43=V_xw70tJ(qxlvK zagoMb>i27-Wf%S2mRlGPmaYCYpYt2$b9T$@nPvVx%(@~O{DX|`CX;PtN)LH$fh<`f z?>sWU$NU|@qD6Yo4D)-obV=`>(Z|9f<3pMIqsH?N%Im2bzvWVy4U2!$du5n^?_-oH zyP1ENYt_;GzFL{xvwB!qZ1>CTmSz6CGg1FkW~0d{bKd-S(hbk_?iuEM`$KYQEaqYf z-j%~_vAvw&EhlZ3lW)o?=kR*^I~m>0zh9lGJkLkEca)2Q<&u$d`7r4<5T8o#!*ca8 zxn`kU$Itg2tL!^LZs2;qdCHrAmRlNNvJC8si*SeBRv*8WK{j#+&nftUa&Wl};W_Oe zu6&@X4EtRka>uRmup73NN8<4cK9do9<*^I$cv}oZp2vx+$|v_A*Pp7P95qSCu%5I0 z+_TR$9!DL-pHe=TE)zeJ$vm&D|0!qvBD2ZayUD@n-7?HN%PUaMx59z4V3jOn-!G;q zU)m+FekQN|haR$ox+w8ezFAY==6T)uOZol~X!O`Zio%S9a0!Fq$=0Zl=C4nrr<= zb3WHH!uF0G?(A$? zyh&D!s+>1$%zvlJs;l|^*2&#c%~=tpUD;jk?UHHRc^)eZIwj6E?d`;ueCyN*`}X-y`gM3NVe}J-&ldUvcr1W z=_uZkoe$tO*`*tvkzHAD_hHK2x$hp$lzVhU*3pam=|vs(=DGGhrR#dLzCJd}?^2Kb z?3DXaxBa4&`$x!umU6;Y+>bo>Ndd}}``{O+EHpOr}1k@cAk9!IY=E zeri{I6BpunIjttT;77=POe-f>$m#Wv=QyLW@{IO48t0)ers8cm^EI4^v$f8d>&Tns zEGu--{H%A#^yw`2clIwDpFJ5DV+dZ8bC{pAfV>1(VUCE8NdGKxRbKKszN7nF!nwC(EaTMsl5p}Bxzs?;#if18KVq`JZ|OZUb-JvB^0M!c zb7a{BGUwnj_Hp^o8eg7{H<9zn)BI=eR^~sCdD$nPe6J_>;mP-V&e!KWS4ywOx<9W? zS0AEr+*6?4r#=~me%mA}6P@LmYC*5?9$N6zDI ztChEL4sBz-LG?5q#Pbj8L1uq~GL^S~h+p6(-Nz2la%-JeD=nY@5&H9 zA99xbRPL*boFDsZ>*wv~{Mdg<^Px6KpN94%bN+_TCG(yOWj_wk_XqZCKI}cDzrvm? zhjZWIX=L^(Jd4cz9;A*Bvd;%Oe-7sAxH7tJ4`PL9wIN8V>XfcZQb!S_Ur)qKP>^uqw$g~$0E=lxO6g=2lqJ~98i^74Ih zoIW_tdQPw}Cm27$b3AcR-y7+SZLkv##(!|HJZYdceu!To&*S7l-S0{2`;@)rPYp!A z|I|uyzOFx2rhM8Lse`B{%2E8hD1QHp;yFcIX+GKwssCvDFglU(3K>%kKSs`@m~Fa` zm^{V{W$ajdqWLq_)tS~BKhq7_?=wTmKjQ*qy=Qikd9G(aQa-yKsl&L5%5n5XJo^|K8wbpJZ}QXO7Y5GufX^_9L@^@hdW`6aIv!kvhr#O*wl$dgCLR^9J%fbDrt` za-ETV$Q?}{uj_Ls<7SQLby3dqK%P%tJoEg#eEKb)y3C)U>+`*JUH)M*zenb?Px%)a zr+x~YlnWkUnLdBMhVuD(NS&SkmQ4ShpGr>WbJxhX`vC#OHe~{mou2xgN>VUhE zbLMI?`8M9s&o3T^ziPbrnY>1QT5Dt`&mGR8 zJJiJ;>ftW+aJQE}cbEIV%jfQnVVt_UyPkYi-mik(-~D0aMYs`pF84Wq9!$~rg9JU7 z2RX_Q>nlI}2r3(hlSv_=`SQ%J-LMYrO0@(hrZUl^?MWkNn7Ykmvg7 znet=m?(wJk{>NW4UV@Kg`2fwA(+5vDH=h)1{HZ-sS5H&)xr+A4Ia$GcMW(K=xUczV zcF6nbxnJeHVbQX3+_2EOXjtgHH!MzQ+))1+h7VcK!!V+hs|-MQT!Fjv{Z&;LM%9HH zuj++*PKM=M%9hjdn6&c6d|6HVX;jN1s}7Co>O-SCKeu{-=Bw+yZCJnf=kGoLzfTMs zJqN>v_1MJe`Wg*U&)ujIL%t+yx?)f4iv?JYtgDuXa_zrx7P7wDtgH4tjoY#gJJqFO zZ>w>8og0SzAhOO^!`_pu^WJdK??;A%`peWtUK;h(e@6X2x~~48$aAiLnXLDbQU9TGgMK(3`Thpnx8pgDJMwwQE97G7WT*Re z>PDuHoOGTUP9cmRLH5llUb*2=R9_ek+4qKP8CM?}4b#ZncccBvjp&0$j5{~gxN}#0 zUp8Kcp?C<7;u*}9Epx&E?>p*2!o|jukWjCI`8};hOy4?yj-?S!vgyWI@ zZ_0CP)af{i#*2`BYhGWuIqPdq|1@XcTYRqh7Tib6?#eAcMe4Ry zFXdKxe;TdWzg8C+fARO!=Kl`DqH$*DEc2fyb^l1t4$thAW&ZQ6mB-|nLzx}3%zrL? zshQ@VFRdIm3@`KZeO~l^ddCcNeqxlIG#1yUcg`@sck+1U$tN+9@qFbee_*kk_LH1m z75m8HQjhffMD*FY%&W zWra@2=T_}iUTw&A({QQu<#WEX$m`{XA8Q5`9yA=i|kiGfu75@4l;=S54xf2f}YFm?B|YS$~$7^&J{>K?tDakDtGa@UCqfn zr(Ipho8|6acvSBBK5Sh|4hxe9>6b$Tl@EQ5?Bk)0%17p6rhZ<;LgixvMNdljo+;G$I}<_ z)YrM)y8he&yd@JI^!L+!SawEHa@8ZV$u3+VrXKN)8~3lf#j zH^x0$$N32T{0n0>e&G2^$^w#(T>g?f2<%bcn)KWjU zjB}%m{VR9Xe0dLCfcJHMMK#@L#WsyU=kw18k%uEc_xaVzY*<*J-am$g`p&TUs`7gc z3-z;M=(!liYF%GtBL?GHRDBv%b)QC6zOU*&%~#d_8diD^M)igouO1_<>!Z#m!={t& z!$!}^sOea_PNPdXpcIFjJj6JbqDL`)b%G9$ok*N z1|5*~I!#b^nu4lhqan|;q0VEYQHkaoss0S-PRhWpfXsqYdg70ZDhMcVHTinz2 zt=gjb--fX2|Dx|wJEobx$GJ6;EyCo4g}4M);(83i9k?5h;c+~HC-D@%9_C{q z7ULtVkQ42&K02Wrw!+u38}`Ni_yK-|f8!infZphjN0D_;WZe^4=ftzjXJan1o{6ku zlA-ZQ)vzWyAnTjtLT-s~AnTgcll(Cb!lC#L{)9g0iyLq!hTw6!v9GAI9HB>TSyRVslO@zkyjw~H--9}vYqigxDS)@ z3SPw$yoC?&p`1#+O?4%^VKZc3rm`Jf4@p21AKjyI9@Pc2oRRvVjQd+dmvuq*aP)<10k`F;EjhvSd< zGqT^)#*zQQnaH^_Z7z8pdf@WZPHE@A~^e>sGFQ-%2(^=>A@yyew(`Su^18!p%sXOy5nWkEc@?)2WN;@yt^f)9L3K78;+?1zFz=&eIw6?F{yN#z3wcg2V7z zq|RrszcVH<&i>6%jj%Jao|%7=dG0f(k!K)vHgh4F z=Rb2Tndd%}`kLv-_(t4^oSQR`l9Mn83z73^W|{IV1F6GV)?{0B#Fj`s&SHJD`Y_Hu z&H9{7|IHdn{tKt$ETsNsaSqM$WZVZ?_pCkSFbu~6d@g6#LOXQA#%7-keAOqjn=t-A zd>!A$?#THv`vdZ)I2ixHzjZFmrtW4>WPA?NPqPEboD;Lpk`pim*|*v3+w5Y-Z_7EH zn{#Z*_WJpA9LNo@6}G{*@FN_AtY;4A#vJ--4*NIf7q0soS?8R8$^YR}T!Fqwea?v_ z$6+d_V+Q6T`#a}6xd^Y|9jw4-a&8smInAw0=DEymPNuHswj;lRovD*Ohp2J*!@+PDn<_3|2k>@q{FgXT!zs}`6oy+r^%k!Iif$MlqbFYyfBF|@@ zqw>7Y*cD&=dp+iVPwM6SWZuV&e}P}(k2o5shj|mooL}?Sky-aV);%wT@d%7Y_IV!n zJ?|#t?DM<_jm4%-2Z}DauRZ`El4L{MfP>UBQp2z z&N=2@U*qo1*aLeb`{vF*xwAg^Z<(i0-A9nwC-*KO-|czX zC+<84cR%Jg<2DS!9k>(s;(lbG-Q&o-7uaM&`Wppg%m? zGR}GD@g|w~ga_xJ$A^q_4tQ`5cKgS<%1X9Nfxu1m-7@vatzO~SuOg%5;z89`wocmwMzAOx7oW5Jg{w$1VJQcI> z5^@eNELUD+g{*s#HJLhJ#6B(JJ+!DJ^PQ3BzKA+s#JRNS8|FEe7X42C8)qZu&mz{n zi1jX_eiu={i&*!fa6U&}E;>a%hpc;18kzMjx~#m|{F_lL^S}G~vQHM*X50bYumko) z`g`&BWcqk9=hkA*)y3TZV)|?``?ENa&vAc?bI4ERlB!q-o$-Iz72ijm_Y%&HCF2>Sw79xdl=;OX=UG-5KY(E*(f_ zT}wY8(??6GkEN_cH?)Wven zo#oRQpN=bWEwca1Pn&&W{&#L)_Q~=y%+qJfx$ouY8NY+PHqU>z%1$BG7wJ0bhMf__`UdRBB~zBl$m_HD%o@-N7F zx8g7IRGf}8kms<1=di+yar$%x>s*n~cnLnhhtj(W)sh&wyc>ft1WzIBS(!nme^%Zjm&sKY$of`U zlI@Xmaus#8it}UD+syO)R}Cb8h^%MT2(l0Q<2KxmoC~Ws4_47Xt0I_>#5r@FEa{qIBn`!r_U{BNCG4SLllKCXPUk~eUdz6(?aw^t&RW*L_DjZx;n(;V{*B|2`d>Sf z%(~aEAs@v!q(9eYliBaJm&rHqCep8K>4SAn8ehl$u4_tehHdc;?1VjWoY^Ozyy}y6 zlNjgz*DW9~Mn9y!*9DTdA^W$E{abgOar%5+6gdrZk@{Z8ey)42abE+gVl}LRtl!s} z+yqU{>t9d3tfx-aA7q~MaD5z^x>(P9YW)?)uOjPR&-yl0)A)uuSP!X( z4KDiU0vlR0P91EZ|2Onv`~&fCP*^K;Pym*Hyk!F9L~Pa^y6mq^aW3s{JpgMRG4-)+Y4V};ykiB8xM zS^viG$RlwS{(}>6F)l@a48o&$49{T_vacJd+l}1!M*4Lled^CX`?J6PoZtS9^*#R7 zssHQb_DFyFbAI{1&-fSkGtNf#$DjT2U&DAfvLF7Z$nnU!{8^8GKI80<|2;DMu&IXf zrlw|}eD3jJm1aK&F0bi{N{ggD+XXF@|-vGd^g83eirG2%{=eTnT%&4 z_q~~Z*nEv~>S^<1MN51hPMY)Keh)6BxyHXOMjgq|X9V^xh0)zXEf(j{XXy zuL9Yxz`M+IJ_J5h-e!$FuWhzu>TsI_nR9&`{kW|S2IL|j|2ze-ekG~@I z8}vK*FQhMnW|DcI1uZA@T!U7Ssq3KCWMABbA$SsFFdg&oJo5a4o+xjxkFNL*Qdipt zlc}Ta-;!D1_TR{V<9M8k)X{e8Vmo!QeJ}I-@C3$U26Erq3(54~_M7C}ct`HAz$$2o z)sb^-M_sZbw!n_~CccZ*!4CRt2hU~42{@h9rVqPVCKW{ zFdjk9s~wzEJCYc`fb_=>_IJlE#>?@U*(YDT>XV%g8sEvey|XR(E$oe-;1BpGvfn$Y z=bfI6d*LedNA`aw`@J)ian`r<6gf`k@6L1NWK6|N$iDAneY@!UT{Sen%MJgB9k3I! z&Rz8TuKtXFj^E)Zq~3RpBmaxk`>si3_IDTW*QSgNo1Tl+>=JWh}ZBAKE$V3A%m&QU^_DX7fhW7cVV3U3I3G)6|yhE^T-Qv zDbjzztS^{zC3rjYtS|T&`80B#1arOyvz}nq6HI*tvyQzy|Gh5y{9adVgYB>*_QenJ zBOHuF@kiu+xtBiM`yb;|(H*^UC2m6Ma4+lLOP}rC&wMx@!4t?n@8$Qty*!V-x0z>O z_j2Cs<++5g{t(WUkhgVxNO$awgYZjaUqk4-5cW5O^Co08*ZqRyaSkp(>L6qlc_VJa z5Mce>QnOvakE;>;0^6zd!TT`+nB7|1jf`ScrG=5wb6#7RsSj zk@bbLAEBJDq4aeq=W8f+9@>x3y@&L7DCce{bskEchknC#zv90*3F+@p53(0>o`tfn zp`6>HJD8`BLnFw?u?SgrDC<7Jx(`@t{(v1ip(}R8x3CZP#UVHh+0O$%k?G?DznOh9 z_>1{*NM9eAMP7u( zG8W@CydlG@p)In{;jAZ|eGcdS8$N*RSXVgjt?*wN=l;XT>G##}8H~?F?mK)Qc?oj= z;Va2L=!dK;oc#?y#CQUxBl{J8k<5ODUnSqhQhY8CTA+bd&;~j04myw+5bbF zbB8h+&qdx_hf2t|ko`aGsC?KJdtpDM&JTY|{tVfl!<)$ak>`K-D4Fx+a5S0s>ERqQ z`*8RQnfg4;eICBUICXl2x;$c~@gueIZS0ACkmr2lYw}O{D^5k$bHtsz8-p}px<5+a9}QrBJ03*(;pjPXHWuPFr0$nwF}A~Z zk#!#Xj{F1uj(^~v_&3hLS;)Q~TR~oryYVE_XUFKXV=;`!Vmz|1$1=#Q_qd^ayo%me z$8E?Bk@xuV4rKQC_-Ewd$U2XYBhSTo=z(i+6S9BDS=VvSljH2;an^A>f$O>dpSrtnf09*M*aqWMfUFm>pk%==e)_adpYNbWl_k9qnl@*?>b(r1xRluue<9dtm>&y%j?X4nd;!;|dON#3s~dobSz zd4HY!nEWIDggmE{W68haRGf~pk$OGpN8X0Jkn{9p82JcBU>Z`NC$E!vE+-!-pRz=2 zv_b0k6#IYbEyjD|Q2ZO&=TnQw)ZZyj@@iyVr`Z2f?EfkD{nP=oPriB8C#Mecxg4Zk zPu(WJTt_LnT%N9t?CWXPae5HrU*LDh{+yUB6BIm{FGvq`}Li+FY z6*7MgIL-Z^=Dwqf94|D)EDsk

      96P$WY!a%PUiljFOW-+`ithgiLudmOjCRvx$hY6JLXNs z+0U5X}p6`Sw+x#4Kfg1+K=;$huN3{Qd@S`C z+ltJ(V%w5CV;>xdAL7^e4N|AE)M@OWj88|-lUUXjyNdA*$hi^Ax?&G8&i=)+&RFU( zmUYHbkFl4z{<%C;6*(8r)F-pL@yJPE0@Gtqj>KU16*5UiC@bmyEOixNphBaSXDr zahw}*%NSpYoRe`o$*e!_AUPW8uQ=8nm(6$%-oR%vo^{7_{>L|A{59-|tUJCh`6v7x zx&QddWa=}X^CNyM0y5`~g0~C-_vJv%uEA@2Pa@AH(VzKExE(py5|5EN&l01^(fV_1Vl4R#W+DBZNdF{W zXZ$ukmPtIvB>EwVeovzAlc@WoE?iIFC%r}PkDuY^$hnsE7x^EYfirOtQa?!n-VypQS-n%Jo zWcDwmHJNier8~J7vi_9!$n<~8r{ph?=a4d-JQ7FYMD#`<+>8OL*OW-|IZQ+9HsvCj zdQB-IbDpId%BeQUx>M_tU9l~8!Y=p@j=*uq{iiMqrStsL8)!VeF;aKwEy>(}dRKC9?2G-7`b+ew*N?)nI3B6j%=u*cEt9&;r2jM7m&^yc zF3T3}(FwWVtj=WmCyV>eqW-eJW&Q{J8M(i#ab(_GS<}cfk^ai!zO&fBEb20A5!Wro zrML`NBkRrbBeSnr2gqlT=aEI7X5}+pfY*`dl|}t#SJQZQE##ccZbI&C_Q{X0`Xrlu z&hEy1ckF}IbvAvP&HiTd{IYp|*?)2U6r603V zBQXYZkp0dnBy&FJu-`fKLk|0$TV2=X+9Ca%+lI_KbKfDeu3Yvl_czAbzg*UtOa13^ z9_6xcxzuSc@4;O5FE@_wNyZFhUAf$U?hVG-&)nzAdF*2z`Nl@H^Y7!wNdMn>=XvDu9P(cL?|y%J)hBuLxQ_nMTS{JqAxK^4(XV+o zHJ;D<@;S%y8!^uM@>y4YJI3F{9?1JYpZ&|9!1zk^!S%QYk0JY%e~L`M<-feY`;4<6 z1%`4#Riw@eY{)gRHgdicG$nKY1=L-^yNthwpCRv!f{|qQq2O;a>nxZ^o{BSYHhSPL z+>Pu@0d-rz?`Z{Rna{>6@_ZGvLf$XuJCa$~dCtZ2)XVv~%)8?fT!+566@!p-@%#=l z_kTW&%>JD}N4|*nuoQXUpXXdS&puwLulWnq+l7{7&WQ_c$@I?!>g~cH#;LmtockAk zVf+uAWA@32SABAU=Wv03x!}oloRb$={{_~4VITAC&jtGD0`+>~6!TFSgJ+O)=R$)1 zym29m@d9LDFBFrnAtJjcR7@^Q?;%XkOr??US1qNTtB6V_c81ti%^5q%$ z%9m=R1GdJF*ahFj5Aj=MUoVXz|B3(LWSogF{{O~CzUq@pfsAj%{m4FEqW&+%GhQK! zIG2mqzal%v?UDT}YDVsW>|4WJwnF;zGUwRk4;cRlKgOZ>EB=Aw zkbb1R~nPsA^UWtJGm!v-&ejOe}kMWSAHjR z|5v7w>9;Ej$g6M@?#56&h^KX)UP&RJ$3oukBX^_;*+VJ)6D9xU( zv)*e{$?muq*P|b@-`7r%Pa^wyEuEZ!c}RU_#KYGiAa53 zXCJQ9kJnc-zgPWsJ%yZwSFsqmzw39+J{k3@Pp+41{zf&lMF*^hj`%v#hc~Fd8$B53 zeRtziGW~hu5Ap=0{%%YodmwdnV=Z|dhT$1Zz%a2uwrG#~ruwNzgRSD}VS;pt+mlEo&WIyA_F%tPbrG)jC z#a`YxA1+W|89Ln z9)*9IeKPu0pWI@9Z?V6(W^&yuoR2(@TkFZ;$b0`*JehjEl}FCUi+CT)vk{3-^CAb5VFqOL&)FY&-e@eitPXG@#Kj}9o%O9w>L1(zTZAePQ`T0#!JXK zb({XYO?}^~q4_&?(HVIk+@T-ubY-0N-|0r~gYO~xeTV09hxOkX!94qVXBC|}fwhG7IAMe6lV3ONHgm+lmkOYph8%lq#x=g?i&dAAMo?DJjLd3PY=AFBWFenS2p ze?a#0?w{ld$o}1>Uhl4CoOR!2-FJ^O9*gYbUGD$xEwfL4dDSO(*}uC_xc;fUR}1OO zdv4@+@FS#7?+ququK0gRzJ`&mA2kh^Ic*a@pgEI0XEJvQhLp$Y%oHq{}kzJAXKV-ijzRCFe$T}Z> zP5uoRqnFtyV_x;iLm$T1;5yuhdyx8lc!V5_oUae5Do!zAV};Z0=!AF}?3j~S;w zOD&X3YhoSbxs>wWDQ(DjGvs-cQWvGvf9U|`KS6#UEd88341dJY_y^JtrIW~<1En*` z^Kdot{7N~$N~xF9Am+o7=UB?~E9JSBW-_0PMR*Y0cz4~8Y^~s~tj8pfI*tf^j>El|Oe_R)v zBInU#em{6jT|Vx|e1GJedOUdU-8QeRKQ$;Zt;8T+bFp3)aj^O@)QJ}oBS$A|dxzBvCYtTkT2^R8$_Zi}3674ML{ zV_*CXzd-t_Vi@^%r2Z_zbbeh&#Gzs8Fl!qKG_xNvuEt*GtQT11DGF*-{7}MT|WDXJO*c?JMtW!Q4h~} z4$rnTzYFQNXBWuy(KFWbtekPy_1r@Fxh2-Xdgz4hk@Y=i|DV6jcsHaDo)09`f6rOp zbIzUTzcK$WPR6;&x}Wo2c+NVXhcM56KaVAIZaz;WCn4v}bN2W7W3x}p|CR**9;9KR zbsH91w_%~aG%T7{e%`Rqx($myWc8@rhM|2j4ArG! z%;LJGxD40eIt)bZpJD7LhhaQsVK!bs^{Y{(rg9b4qfy0~?265?1@^+e$hxZxB7cGE zN23bst-`)l8OuEDtit|PSy)hYt;$lIk?p9liy$UN!8_yd!x=FqbmDcbv@%-k#$$i zA+w)Vi^#=Tf_G5olwqm!*08kExMdx*L+Zd%e;zd~n=#%7JD|=b!?FkYBm5HCe@mUm zh9&!N`5W`U<3!Y-I}A&mQ-&pVVCl>JMvTB{Ou$^!d)ctONand%-XuSfRu*U=&&A4` z+zzR8tM|#Q&x(Gw`jK(gVZ}PE=x3`%%(Kr{E67`LH=e>|q;IVX$c1tR>v#x6Yko6uhs?8?*Ap25nCz*Yz&U3BKbFE%O z^VPYZ>dxf0_y%^w9%i5X@v2X%_hI}!q>ieOBlFy=&m!wRZdB*_R^Q8b2!`V^@E?i>}xdIajP-BX`2?_$hvdqw!bdJh7(Etf?<+{eEXyujIPb z=!XZ9zOjxZpT;QUJh3hy-@^x3fvn$#`m$j^ZP-tn=DN@Ia&`&m97-zjU)S1mF z#{a_^$hm2=fb4-w&We>nSHI%fc!sX|7!Fi z_eb6nH9jPNguEwed`{+lQR4^lbexC04{C7!*I->WHZxDZ)i`GM$)B(Kq{bQM<1r7Z z-x^PqYtoN3YmwQfny-`T$C?AlAK+l*e6RU4nR=}`mOLJL|J9sJX8&rkUp0dm--QS8 z2vV;#sn?pEi#5+PPo36eA8T1@yjCM@g0A>Bc0=}~)|cd=NL|(%LH-Nr!&=m7E!J0S z67y4#bEwv8av*XJ)jCRMUA5xKDVU3wun3Ehb=P7)YujtQwjcV{P`gc3Z~V zV`qF5`(R(>In}0KYx7)c|HeG$QtioP_Pe$}nYyjLg-n0eW}j%2#%ZtIx;%~UJ%pEbVx^GThrm>-G1BKKd1^QVp<SA&he#*o`3bTT(X(oy|;I7&wAf7 zPM_4{{_FkB_#E^>Kcr9UZ6ou(tap-3zt_7$rZ4JopY<&@UZ4G_&py;=AL?_z^;>Y= z8`uSVR{s61QU4<{byxof@;IE2^m%=Mav*L;>Z(5HSAFWKejfArcpG1?BrJeQ0o< zOdm9;PydhKq`nmzc%18~ zZ%6LiF_G~M%)@&~A2_lfj*m6&#C|x{AlE|9Hz)es$&K+gNPRiIMedD*kiK!E@14G9 zob@{WPWC|d&uJBzK5|+^UW+^*C!UWJ_31=^IUVLYo{v*B`7F|BPMmj6HyOV#8@eF- z*RUCx{%Xj1-moj$z{|zGTiL z=fPywF?yjlQvc3d$<(=X5Si!WOuaj^?~QFV z-`EKoBKy?1JDECd{3)6BHD+Cn>DR_TGS9v>9!LHUXX66&MEbcgb=!Cshc5g?4!$M@_bx{ zYt26S_f?;`@cwl1V?G#JuS+C32D6a!+J$~~xytx;ubU~TvUy(uI#JpZ_HEAuB^{>0^`%r1L;#&Z}MtneXfVd z?5`_z?0SarBuvFzWWQaD$ee4gPsq=Z=j2AcyE$vztueY`Yix_`zuRYI&SAH)$eGV61rZ`}?u9)WR~h^*5slbnOs%sv_as!y8QYrJU#WF1Y}@1~s@?}41hO+O&B zo~B=sspF>9Z_`A9+v3d`RYcV_K0v$FGs= zkKy`bcy7gvqkT5AZev)dG2HK%<+O9ZW4Qhp?r+Qq+PUtSyUMZ7=#C!9b;tUWS?96w zjj<^*uVcCH*l(zJMBcx#Bgm}Z*a_t6$h?nTN@g5l`J5HIg*xjx z_7eF|WWB}(D95EC_c5*tnfV=8om_Ajcv1FP`}u&vnN09EvZYUqdWK)^GefWae=^ z@1giFskg>9*a5p@9~^;Gk$D`?eT-+l$8(+W%RDJNLy zh)(E@37C!C|Ab=lTgZ4Ma9=6S*qGV>wfmYJvRY&Ki*p{&DIY_#zZC?Cs}rv}KY1JwSgMY)!Jd3oJ(9;EEmTsbUIM)x=8)83p<)Pb4@i)^;8hvmpg za#U0Kw^zBA-yvD4rwnzIah=S5I+*>09mqSFZ}ww5P;k)vndYcg2l5XV*lbJo%Uv(4 z{k*SykY3);@-crW#@^9vKW$&ZezRT5xqW&2&3?M9klpLxM%nj~9P+CiUWy~-=*e>2 zKXQCmIqefUtCgG=habxYo^sE!-kc-gJxd!%{fr@ zp!xffL;A}J^W^3y^4dfBkF$LAuY7X6T+7}3e|g$FoBjFktFqthulrRw=D@zJ{bv47 zc_OzjF0WhRIi`OX(?4-%!7g(jdq>LQ_vF|~a{hX`)LZ_$Kt5_)u4Q$R4u@p8`R&Qx z)jZ#$w&(3I^TMmu_JSQ||Nc?3=A7;MJIp-m@Rr&;HdVcggY4E`cCWAYo|ABz>iq_5 z`+-N5hrWnS)o;Yh%A?n--`I_+j}K6N(mvHEPf(tGM|tK1^_z89_1PPgXJ1pEA0wA9 zQhoUjxpJ0VT^skP-}+R!f$ev5U3*um-@eWAczqrJ_z3ksbw~9x5z1$_DxYnre&@ET z{##pl@jcbA*p#nal2`Yr{zs_tpDpEI4e^4!<00=i&~fh1QGS>#pKUMKvRx@}x2!Lf zo!zBd6V(1J_jSr1y3dx+C}m$~>@P!#%g@gWd8iyVUOA#jM$R$wsGFIe#ar{XnR(<} zONPW^ldT2Y%)E;HQaS#ytelGt@uEzsEz|aDyDk&A=5I6eaLNj~I$iZ6t>n#~>i_U* zdAk+0z?@Hab3QJc3$~c!_I+NiVr;e^ z=jB+Rt+Ct8|98cPZ_2afQ}*`=%)dQu^WPl1#nfAd$sz0IrPG_Ex0vm3)GOC=sB8Lv zU-tcNPx#&lo2_G>?EVR^mc6RU?^ns*BW0fpvfqbt;Lmt(PsH9xn{DVI<)NeHuvMxL z`$rCMtorc&a>PZ|M{Q9a6C%eo$6IoInw)q>PM$BP#L8J+l`ye+pJmfJVTojc{8_jFx*HY)Gir@X&~@}X?Zm4`Fb zet5b(QV|*7lfmkDvZd-LPsmGOsebh>`PTyc5tqrougE*e@_w9r5{6O8cs@zc{-2DL zPn*i;d&{+K+od&8I!=>Lm86Tt-*WkQPvqVxo8`Jfb+^yUk7Id0lwLhh_u2BUqJG|* zFP5*)$MVy>u>97m-CyHq1ufS0K}&J1+Jnz3hfJ5DPIyd4^g)fc74xQY>^T`<+pLq` zW?fYvcQLt7`ML?&8)~z;I_?SG8)mZ=?UJ>Q%63Qhl()CLj5qK;K2pE-)s)-6f+KJO zvV8}CtJskZCf0$Zuxxf}MPJ`TrIpFo~MKBD7x zKCOC}MAf^bU@G-C*a6vZmmlf(i|SpS(M$ENZ(%d)|092kovzr*2$lH^#HuH2TlRD|k(IXFhc=HtVGC z|E-hm+@J2B)9)J{zk5F%qT_czOTI%tuBV5e>OJ1XUdX)ZFethzde0d0n>vr4&B>q9&UyFjK>Y_~oO{(!zh1SF_1CK>`8%9}Kj=8UHfcZKF(1C` zL8jk#2i5O;*5~&*+Wz~x_%(LHzBoYp`Fy zy~mKp({C1;=V9+ts`m*}y${ciK5=B82Ys57uhajr?3=B6-$HDS%*Vb%$itBJ*q3?Q z_ZRAa%YGHm7lSk|{UXUt$lULK%%^_ysBfX)c042de~vxXum3SQfOR&Y6}cmFzXr@R z>!e@#Iw^mT3^=dr9&lCt1_t0u+W){a%7g66gLuvk`i?vnnLmTpD-U)=rB&+`r?$?n2QRlfkpG9& z4Rv0_-=_W!b=JY~!L%=+eHpHx&iD`COr7x^zK8uVe}+F+`v?mY)INgaj95#39UexW zXCofapU)K|)73t*4%Wj4_>uaLUC{5s+;yZsymr^J8C3(1@2})m*{`rtP}H_p!vR1{<&&&48~#sGA~DeN&ZUP zkN!sc8{H9kevIx-Ki2tZ?%x=$YYg*rOtJcn;q%IvZ?&H>jNcf}d(3Y79mTV9Ec+W9 zMNZfDW7+Rm?$6jpI^VHh(2w`;Sk8AW<2H67+cU4mF&^W%-{W|`jGL_eOo%|nZvxNl z2}`K&Lgv-P+R77)b)1PabY2r@Q|Gvo81G5VRG-BAVp4PRC>*2xOqxWVf{So5?LX-_ zlQvP`N}X|>#QdA|RPB@9)IQmlT%G(HxgnWxn>>Kb{wMPsnNmshDSRHE!t;Mh2kmDH z_j$@0^_yx(SA1XnrZVrQwx>Qu*E4k~?OSj!?Tq(Su50RT+IgN$^H!e5=bvf*%{zjB>%TgrrlTn>AWYVyOVidPv?G4U#R*F#&5=ZWImtGV13NsbKi_P zI^K-`wp*g}_`y}%{lN3;2gdn_KUAL?g|X^Cvlf}p!83c2dG60-oM!U*ZB~xjXR+NZ zwwu*i=QE4@JB#Da;yE&l_r@&VW3&EbKaBHiXKg?Gb=7AN(fQ4uL*{yBA6LIQrTCTl z%~^!>o5Oo$F7Kha+{d{uso&h@_=)yEm-RZA=h587)LEbNqSb$1CbDkk@i}(hU+O>K zMeXy0$u-DD$hw~Y8u=aijlcu=KrZ0C7YtBd7>&G_7Op0+_=g|_*e<|PdmNM>3ng2^;G(VPRY5S#Pk@v*X?PPv0SbBoY_s^yO zknbb!_hpRFGQOWLOVf2NE5h&8e;M<4*>UpUa`{{MF}Bcl%fCXtmo0Bgdpqj$$gHas zjQ6qAwX>`J~Lt(;DMw#IEG&x=*Ts;_#8Pjo)3SyyXb zR$jyVeNA67&(k%G+fUir{wLmNKfOR^p8fQJw)=_CS3mu!_O(3c*D{aRzDj+X`mg<6 z`Dd>0=T}w#`Ag~p$@i4kIVi8=d+fT_s;_s@b+6|=vYzMK`eSO}!24+fpBFatQU47* zpEuT1zm0Ec{~OyP_iN);#peX@z?!=~%> ze=awNYrD{tMsJez~pwyZtdp{debJZMlbawI@r*+0&mo&$m5% zuG+)zv5}y zFOd1%@hk6{6RxVC@KV1MycbS1pw4sp1kcYCXJ&&jj2Us3&3Rm@ZU)Z65C8mCk9$n%lUx2JgSoaVlqcGvc&na`&y zs{d)u?=;W1(|iv&J&68e=rmlpm{BGq7JTER}lXI{XKi7UQtTyXp zNclP`|Gn!sceVf406CxECX=UVyWg0fzpd7I{Pvi3J`Y@URKJTnmoM_U^B8FVOw_o#*iHr&Ryr1MUA0 z?#mxzsV_v{V}JHjzdr}5{^xw>-n#p+U`2*=enED=Q`{7I=^FG zf0=%bwEgw=WR7=zH``rM{qN@L_cz}M|87HlBr;ELFrRMl{=UKc^+rSWyYZp+b7Qnw zCqw`5eR5;6>Ng{h^>nMYw!6jsxy5tm7VGmC_w^Rf*MFEl|L{Dx&HB5Yt^M9+-QLdA zes6zC{l2`z`{T|Lwciav*4bU=%iUt?T;E;3Z{Gck`p??mUFN}E&gUMVbMK|9{a!m{ z9^dPs?eF!az7{vh`^(jSpZDqg8_NGO4iETz{Gf;WKj1z0V72nYFzl-B9?m2)e;@ux zeTjVJhtcZyD4kqI^W#yW>W{rtf1E|GO6K$B5Qws4F=%^S-$gskVPWmQtP;xXB*lVSgVomiHh zJC>#An`Qk>ztgDev8>1BC*{{;Ipiukyo5S$%b^3g7xuw^xDwB!?vv%{s_dxyZaGGk zU$^C$MqTUHa@4xF9Q9tX95wGON8Jz0@hbiG`NMM5bHu7pLFZlJO|@6(j6-ys3j4@x zUxD+gz<%r=YPSa><7!VKYdu@`I%KVD%dT~8+56}?_62Hp3PR4`>3i}b+>b}JozpS$ zIlLg99np@?=z^TD^LOO&I7Q>(yp7Dfa;c!>xxA;k3*+R%{d5^dyVi&0s`r@Xs`tI+ z`i{19{T11-8{_WwuIg@|X+LfQbslb`$untRgZGj7=l+qh`!uA#`xf#p>EWdPdPI@+ z9J4%_j~?{%3{bmgGBV#h&3~I`H~%Ix-%l*hYP2`S7O2l9mgjKt4PA#9}4S?^P;Vtev(>CO7`Zl-bZ*5@6|oBQj{ z{P3Pdf9|jMf7>&@-khKJMO~*)1@-swM#j@8SjX|&O&-^CoJpC3T+xzV!|E=x(^?BIxk057a z9_H&j{JDSrHL0`C{a+xzsr~xDjV-AULp|3m|CQv`cwYv@XuE($uZpWY%H8 zN%~!-&N>OSsUE1$8&+UGxemUH>^JaR@<1GdoNwR+@?>QF1(yAHuOt3%odj~90=MXV z0y)1xo?C%D_X97mpDTD1ndgCbl!I7DK|b1FP!e^XyFt9ag1G-d+>f9V`ssHND~RV! z5c4mnJNx6l1dSm-(|rz()AqsjRS#~A3#oIR!RyG|k@raOBjrjJF$~{E#=8>lgGvXf zKi6?WQn0G(A+@kReu-mn9sTur-3sCP8_N42^mX+MeNX*DS!bcV_d|K!h8|JBFh}IM z5XSk1ouRJJTUOXL<#3*x;Z?Q&aDCpg!u!(Bd6Uim`R%VG1IlbnBBM^kJ6w0#&8}nPt+dkr}o%DWc|hJdzKaZ z0reI*fbB+-H{o7n9mQTyj&s9cZ5J1hiPYah-h=Tm%JKAzZ$jqy@r#rbcwZ%O-3eFC zeHvx%)55Kh+oEhXr^nJeQf6+G?XSrW4Yo#XGynZ|$9U!LLCW11$nSnveQ>cH=CAtr zsmhZY;%zy(soJMR%b5|X&)OpwB&xo+i}H$b%4_<`wO(?=5V^6V`tA8a9^!b1J=K0R zSoKr2lut(~pPit5AzAs#5_$a_d26TIA2ci1vObdzuChX^^vROpUgg_aahuKfn(yki zuQx|-G2@$+Cu{y9Yujb_bF%-m%@JG7_>PK{<0`8DLu=)k-z(2wpuBL5T(nX3pC8HH z4s!o9dFm^9rJ20rzBzo0`S1Gg?$Y*8gH?Yvw_MAip0uY+*T&`jte|(4L+>g_wJqO| z6+hWr=NNOHE<1g8`Pys_LDKDjsgE^vkL|uY{A{-EN!$H)_}gszKa&T_K6j2Y?ai0_ zt}yMk4mbzzE%#et`djZQTf3AUa+Mt#l1Gxak&oa>>6oW>#}e{r=`mS``N)WMGODjk zydm=+%UacOqbwdF>&MBVW&ggm`8OhL6_)xfD?9HrlP8$$@`LkC7n1|i*N6 zXOz`jNe3_ND;=X{^|I&bB-3x$#PmsJV>U%PC16MCJREUx@Ti4 z{wh5_#FNtVOB^G;YGMamgu7+Md(t~r`ur<>KgE7{R{9OV3DSSI45%Ul-@&6YnClCP zQx2(to$x2TE<^KW82!VRDu*Xxx{P=U*UCs|^q0|$OY}zNm{1w}ri_cmg}6f|1Y#O~ zfFot))-usoCRxb&B)zSi+*GD?lc~LBdIr{&8SE#c5&3hdu0{IrOM0X z`?Bim$oN*>tenmDWG^HCjt^wDPw*R=^9s^0cb{^eH%^fGGw~1P{A(;$uEG9m7MitT zo<;wylbZjiy@>f(D@(an1KcEQKb3X9#U-*X<5`#E7PEbEZM7FO?~B=gNi)^!#ZOF| zly0*%IjmedUbb{XuCHY^tuK4QFqo;ckW*wFSYk| zmHp<(!S5pTa!5brQLE&b^>Q4?oorK{`j?#63OV2DT+hris?WS7XHAoH>LBxG?g8a_ zH{^opa#5IEQUMppWeLdq-ZoHq`{#1UWx1=r+}}u^Y%NbUmuFa?=jth+C!e3Be1Y+~ zI7s;t*LCTl@@4MpHxJ9P_w6gv~qlcOQHY?CYW>ms{vUeE#u3zoEMw^ zX6$Sp{bL4{^?zA9&5*w49c`akw!f(n)6C~M&&N|Er$w3L=S~fuW^g=AjR>~c9Ak$EjtDY;Kix;Up7~5>H-G2Y_VrY!Y0kzlEW|JH+o{ge%;y(d zR~$}#9v;F!Xn&||MJihhl^tT09h#9_kiR8&B+nr)!X>z#_6yR{!XkVXKT&_jUb4Qs zxz4%f{9Pv7r#KlmO?IAQuE)V{>gMlW*!(BjCzaJdp6E2GY#b&_hilSjuM98iKi|A} zdW?6TP&OWeq?L*-r9=97rwL|14n^bb6U=@c#*!DS-O;YPeZR6(5GJYa#D1JsQa>V{ zA4)e548>;nF>)NYOXSIW+ zw{WeDaF>zk_??VuB%}W)V`z^l)c#|7sUABHkI6VsnGlXmW#wpWFB4O6DE=Um`r&1n z!gZ%{ytMVIr*DuMJ7wk<_*7;!lvO6ms*F=L#-mzm)vLSWVVV1x%r8dfSN>7u0=6&U zyb3O;Uc*5aR>fhmrW^WWUmS=(;x>(I(LUwc0k}}s`BT>QmBpNQ$zHP#%x|Q&+_Cm? zW$UJBtkbx%b<=UI^SH8g@uRXeQtb|#q+>ViFTF0Pf8@K$$w@M2x9T;2l67v#67w#z zFEsm49PK=&>^QZs6@HKNrImvXaL{P`7<0ak&dQGYGVhMruX*>_QpZ~39L!_F8>>q9 zJ2G&KjA|^?`{Bf~4&xkcwkq3|tI}Tdn{r+AZ;{x4EI)6DF{YpQJEP0>J1K+5jCLGT z!Db6yt6Zs#4B0DV9b{Ut%t%-N2cMYzns=2gYNUOXxh|*m(zTj&J2%pKlo=N)pi-XE&hDlz+6V)o-Q+-Zclk2PK#?mWV5S8tE0FE#ZyMmmf#=k4l)HKo^=Bdt+p zyuAKW_J1gYX33B*WYqhzatMAP6ANV0XEL=DPL-K1GOLx$SuFD&$)ZWJ_B~nWHFLhp z%=uOr?l{7XXHGSfmzQ1F(4b-F{TG)g>$WuY6{cQ)aKMm2Gj6*E2M#gsMbARziffdE z7s=4tGGc+OJPe$>_?zblKL$+~%JF9}iql4s_;%)jAa zt2Nkfi1}T?)&$=k>@&pt-eUWTd{SD8*c_KhhdwwLf5GR{F#%iPES#(3)H`F&W0g7H zsDXil%(%Esm!7{23>svv$LE`Y0fWrA`E(&KlD_X|~jzp>Ik9Ouix3F;rx6^F_2 zCoJ^NeLt94bq+CiCDMfLm|vY=4) zLNDx~df`o3v{Tkvq4v5_+JC*9X1rFL@$&B2@GW4>Hy&)4T$vTJ4_5D;f9)mrHnCpwGDU~G=HF0psY`xK zy1t87q}w9AF5NrgDs5kJi?a7^ysx^CyRuKd^lvQ#>!>|&kaEy;S?MJi@=S(toUqB{ zU+|F(-z1~!$=Dt^R>pbbw|H4r{!%6t;bfgpGW$>QS3T8Prfm+N62c7PqoqHdALee55`RFhLdFO8+c0QrO5pMJf>XWq4O!| zsa$iHEMlCCmXWusU+q-ox<$&x%%|eA-za4l}YC(`o6C``xt zI0t{iZPFnDGq4*@#GSZDIws@0I1Q&umsey?fVqx!W?c>I?>wOFI;!C(xE$BvPCOzl z8+v0P24NjMAsw=DD2~9((y_UCbE&^7U25P8>B@Dwy`${C zvcJ;+^SQ?7MP;8B()SJIy!<{=_WvJFz*Try1~5KBTz3%X8=SB9V73qboIF>@55A-v z;(-k&cX4#ANcn_*_O0$9=e8#&EotJ?{7U^ZIez9r_0RlEW;MaB_?KBH>&^NYq+Dg5tXdnn-&IFzzuB&; zXLFv}e<)YGA*-k0N%hZdAZxs(dSL@(-W4_{Gk*#>ej(>w^Lw?|^oWr@Go{~joQ=z*|2r}u7k`jJ4l-n`3=PBj__GWPz)xf}+r>^%j=d=3 z9MKD}%lHqmxlFLj$}443f0@elrOi>!xF@r2$lP5r?=P9Z0C&nlwySwTxmF8Vr>?B~ zKo$?jzh#N}GgSLVGyd=Pb?#@L=T3i0*I*nj-Li3>^jIK$Ka+l8GWZo)sfUbYe=(bt zEB{X>I>@9Avc~(eC`Hz8f~#bme`MW`viOlKId9H?lR5vm-p+l@`FlU;?bN62`Rpx2 z{8W!vs+_S(IjfP(Et2`)tG%SL*`N6{cw2FI-yUXcoQ_ME0o{FinD0%V&dQ!|OTWE% zL`JrfQ5R)=B;J)7ZDr0pSvXhLT%rBfiB+!ix~yxybK19<^YQQM)2-}#n_W6Kl)hJF zNL5*{ujyjemKD|6r%PG?_|AS^%D(^AB^P)0?P9LW)|h%zatmxtzeVI-c#ZnM(u&dc zRu;LM`dPVHM7rOS{Q85%7kD&VI$TgDaQX1v(BVi$9t;#(_M zUM`crm#MvEW@DK(S?8U#Nx52eV#YO5@+>E?JmfV!} zKEnZM{u_AvE_0tUJ9>61`~AfU-O&?+q-(15{6r?Lm({#vL5?h{Bx}`>btwduUAA3Ew@zj|-`z64Nk`XC=5ts4a^-3dI=Xi< z^FJq27MnlgwC^$7b!lI*L)q_0q0+5Fd#?^=UV6MBy>q3H4cn`qUjt?Tfimzl88ll4 zzl^J7=wxjdWhqD9k+IG)Zncc}m6aXw6?{$GCvlv#bk#FP$;=}%XNS!FuDxdmbHDO_ zQ?5Nimh{$sn*3(2-~8ExHLR^yyRvoofwUS*hgYRzzqS?Inenkt$63tjn~e-+)8D@I~Gw!n4L+Xd^~N7$N=^quu(a14qlZ(`(!Zt3-)g7+0NXb;5^kUxgq&oO{WIiOfCU?W$_>WAXU+R0xsk3o`Ov{lOxi}HG;8vN*{m=Ya zxk?o?_xG9gv4q@LR;`3d*bq5x_6y3{oL4pObG2HkS7ZKH|3JBVA3QH}m`6Fsm2*R| zgUqXdjBnmr<$Tsb{u<>1uCL$#`5NBS{i|V9uEBU0y`@}qS=M6S)q0c6xYdqPu3d=C z+d7PY-T!1fi@#C7k^&vKO&9Eq<}-?YzZvH@+Bh<78`IBWp|bNo(#=PD9Fm?haJH;CN(S`A zQ!?T^8S{xurC#+5ugspSuWdjRlQ9g9D}pWeh-`ddVlNK#{9XW*G}nuR)+Y<P1DE1Kd?u~x(y_6$H~q%3wb{Rm4Xdf{8l>!=sqFWvazL1Ja5nZ+J+!5a_*?au zPRg-G%CTLQN15Rzvm&%z)@tSKe#+S^$Y*5U zeAV;UD;G4ujqEu`Riia&EY+{jut8%D&$pGsmg$h4YtYU6-2w2F-rlWdE-mzc%;J zbB7GrC!G-o&Ix>dUEmpQ`pJ=Fi4$6`FdzZT6d+XYyH-{oiqY*L*H_pCG;bWO%BK@s+tBnf~WYe~+f_Z=28U zHvgt>Z=28ewz*AR-!|Jj7nyeR+nB9>6W3Cc9qvlUNln~JO+SyR(rdi*e%!>p)a)mq zrE**ro{{MVvdROQ?JcWympO0Z7dlSO&9ZbR{;mBtjWp+V!JJp>o9=Iwo%d_f`p;hE zDR@CTgyThNpDF!D$)F6Gf646Me0H}5H+Fr)T(|W^I?QkE_J+A`#{tTr!OG$8vZ!pk zi)K6ThVG5Z&MUW}Tcfh^oFt3x%F=w(&-AryZ#uta=7+6BT0Nvg4SY>Hel4B9kSDsy|l7A7y4JK9O1XWR=sh zI=N_!a_vdDNfvW`O)e^z-j_`iWSj0d2#4S>9FC)KERIKx*JcWNDo)3lI0xt90$hlT zkn3)4XhZ}Gsn%|V{m(BgJ^_u(ZW%H#w&cbDQ{57}N%jVGuX-&ja zYIg|3IMtn9rO$TNQ%1UKZ1*ZQl$~5n|KCmj?2Pox z4D)>XJtHGC)BH|RB*UAi9uXun-DPz*ne$ZU-IFz6%1FyhH~%?cm~z{V%I!Rq+qE*s z`@>xCu(Y&v)6ZTTzr)421g}abf1HJEo_Dy z$Kyvb*XMCm*^}||wlO0NCs5E5_|{yAmbBoLpd-EU%*eX zpA2e+V`Z=t24FB&!(!}@=Dz{7|M`FGB>0T#m2$8F_C@YnrG?5N%+ru`@=#EGS&k_kn4@zN4|-yuUO_`T&n7E+>f|AWae8O`-$5_ z{f><1eB&d?FC)*7_|@b!cts|pAkTvYo<9j6QU4Yv;7(-TB%CE*MCN^Ecjd~SSQ%^J zWxOgAc}^#;ATuu#S$B!di$umL$x;21I8GAlCW&>Q#JW#9u71frn1+mN@)+_W+>Yiq z3Hx9Fw@y-cZlttRdkW97ROWZ;eAQET%QWU+8snMv8ud1K61flQJpa;pZ>0}bd-|`) zxMpx38LY1i=1T_8t&9To&v+^`nMav5$qkTsojH?y3Ym{tvC3JDXBOv^HH`Wsb zD_40Hn_&y&{#MzjT$OoRmF=o#Q0F?T7Lj=lRXs>PgctC4yf3r;k@=j>xM#C&v-hgK zT0P``RA+uvPgK1+<5oSN+z9gPQnRk z$>}NP_mUOLuDzt&QR$wFKS-~lw50T8^Ly7kWuIW_8;Mn<-vJrCRaVNx7x6b8H>8bn z=rtJ@fiKJODKg@ojI56@$tcb<`mS<3$B$>bg}AdqU!Cu$-d}MJrIMj5{8&{a?`A{4)l+w zo=8r^4C+;}I(6?WNX;B4t~PP(!m*G)@c2foH-D@G<#pi0TI8M3Z z57IjTbFfWHQmT30`Fy4RJ`3?jwfiha_Ujw1cHdIf{aRux>0gMGak~2ZuT&0j#|Rxa zppn`G*)FiF+Jgddz6_33zu+e1Z)7FfE3H)yiN}|5f(+%jp%G+`6WT}T5z6?4wNQH) z;}+glIsBH6AAUzUVieB7-_;)R2l=Ut{807Cnaa`Ck?W1gRE{Z8znCuM@#M40u`ejc za^0~5$zy1zUmW8a7o~b!5;FerAavrHK=(mX+H1_kqj*96YcT$WCsnUCRQ1}sWF4NPbvSO_ zbk*xJpXyH1cE#DM7mvcps+Vy7CBv1Q?7&0n*W_0+^RLM*GV`j*UGigD8jFe80ADfd z+%^3w zM8-zNnLqxhX7W9ggTrGZOs=#*)(n(wN8l-Z7#u)qSFUO+S|jvf5))e_-nVj%gLlwr-bY!~@6l3g-9qj3>%@16kt z>5~$Yl2VeQavT*$IF1!-Oj$8w#u{tnSdl|#M#c=47Bf7bi|hVxXaBrk*ZsZk>&N|l zU?X7FC-fCR79#_>u# z7vnJ;Gw`f&+!PGLOk9nfdOkqnWyT3;K^NO`HufX?1BUJT2>Uk}XIh!Y(<4YXo4hA6rGq?2jq|N)jlUg%i;a_3sPSzw2m9`*Q}2vn zKc9;`$t!c*S&H;^r(d7nMZdB?qg`E`u6}1w{cf>(k4Md_SC_`B-|JGppQSE4MgDx_ z+?Rv#K*uSdN#@$GsRei`DtEeOQ|6sZLP_SCad08(? zQh(U1K9Z}JjH#u}EBn?&s6S~{A5BvqlY3>}a?Tm{m2*z!{b>sBMVXV&c|`!ycLnvQ zl>4X8if9|hYQF#KQh%1EuC@JF(Z9TpszyCmC3A-mvtPcxpJ>Omw8A`+cRl?{o%I>W z{jATyB4o~~^?vIh%6{pSeCsE0o^hUx(dSRbV>q$R^CWqkWyY!QV4b|xJ-V;D&&qws z{7=bTD78%W1QE5^?7HL`g)T3>t3E0 z8K)~*%6Z+)R(WD!&0C4F!kg;9hUyM$HQ`-`#wCN=YLzMzQMhj^Tv5| zT;t#Q)wd$m-gfn9y88B@`iElmj~=z3{^g$DjaC2LrM{P?9y_HD%Du4feLLp|cFqs& zoX6=?o)71$C+xlcow;QFqX_kMt2&aVeq!hP)Xp`^T(bXcojMkyp6gUEWUAxC$b0%{ z9{0fK{hy_{7P$}k`uM{3IU#+980TLdtaHErVm|pf>!R)FOX(-UIFsa)Jd^Y-`z9xl zd%qNbd|of5A$cxk<94+BF6lmxk$tZ580vD)W5_=hM`H+a5(Z&9&c*^P!U2?XLn!+s zubk%|WZjXx3sKIo?qtz#t?_tH5wqVzeTm%~HGp~&U&g%RZ~rbwQJwoTT2`t9~DtJSm!^|n^^jx;rW zKwVU*-ZiP-U8jC0M$PP0mt?B<46FB+sox7!vm4cAiRyhl>is$D@=-OnN?jSI%Fhup z=MPfU{C>5dKz(pReW*r#I9e_0P>VCvM~2iNm8w4uP}el5W%25x-Rk4nYWav-QK?pj zsy}O1*Cne}ed_u=^~rJdDZjcgQuVj1o6^K2b$SFdi3RkwAi&t<9GPx1MW zGM*iQ$k)jZ`kFFApEtA;&oG{b9$jysKfdlg&y!ESj-F3qA776z(1)CRArns;&ra6m z`OY-t{LUPGzLUA6-p*>f-iWJ>r_t7Ll=}0CQ;>X(l9xP<^gFd)X=6Wzv)*j&M%mws zd|zlB!S%-TVyUjbSdJmYHJE_1e~Izz3PbAcl0H*W`XbLR*~k7}O&Ev$xY&4hN9*(5 zu}ELL?VP*iJo$FlBj{9Ns6#%dYoY z2axyMcFH~h2v0dtLu3hFMUwb^#M|+wz8@a!B?p5YFDEsN-U=p(bpzLFggE>f^ zgVLW^h_cU~>)@Q6|7ENC8s{YLq(AX>_KUxsRDV;a9*$AFJJmNb)i;OL-<7Fv1**M` z>d{2??H=_H^e6e>VScf{N_{s>{d0@@UW$6mzTd$DjsH5Keo&)+7_A=fP=_r*c%+&5yzzWu`~B4RJ8JtqYy17o_Iu9ud%^ZQPQT`TFSq*>ZRf-y^crq)T?f+>g!T3%TlMEQUlA?pkVciCiTiBHKbP!%~hw5 zsWYq9SrKY@s~VA}UNxZ3DO4jT)u=i(I!3*=Q@t)zjTu(wm8r3T>J5$RjfrY}kD8F9 z-ZZM-T&3O;rY5zh3sTf?^sBcPs0%05lo~ZPTK#s1dRvBi`;eMmsxAsp?`lx*j#n3V ztC`vAcSqEFDsi##X7%x2w;J!g)aUEUdoSyJ-}2teI-e)+_wv;2adnwr&52~+BIC^| z!~@2Azr<0P#`6&4T~0l|uD#3U`5GM7bGc>2)LRjZ3o#SJQTCPK5Y98+m4Qex~57k3sWC$ zQ6EoH%lkRE#CU%igR7DL9r~>3(dU)q*!PRt{b;bs#O8V`>2XU_Eja@^)$OK^~hUQXk+G- zyjAsfy&37JsvXH+)oJZU?&}FT$N4AdQ||Z4V70nQ-H@biW!Ks3Sk$ zNMHUwhmpO)_8rsMe@fP?-qG))ZHR= zm}g6?)_FEf-8!KAw#j=T-?j*(-nK;K9=2s7{cg)a`q`F;^s%klK5xR6##=AvD^S*{ zQ{Rm581HlC$oc13m-%)`e)`&xf#ly&fZWrLG9>?wN~Dh+bvAB5>g|yE6L1WRjJHAh zAa6slRq8Nj1N}&y7non%*{i;oi_B$z|KOG1Kk$1JgJyI1BX&)!_5-d@SG28WQo z_DO!u?JGp?XP?X``jLM2H6wZUwc{q^ZBElU|9gP=1>@achV0)jeNkt>y~q7s#GKpT zi`3oUujg8*&+j$7@_QEZy79hj^SweoxyS#Z4`+$-9+2}D#@m*n>+N!Wx$z#9d!g@x zQir?;n>7AKAkxP#BG|Xccsr;g_tQ~{^wGgQlK<66^);DisquDlPS$_bsQ#M#5_k2e zhjP@zqv~(zTb{oeruMX`M{J*ONuNCbz08S6C)B+eH@R) z`Iv{~J6?s{+i^J;f|8$e$44;1c>gBnc>jN+j$@2>xSe<&(l@{7@SZ3~&Yh@1-ouGT zxHSQ}UdUKIR(l$!L9kQu?5ulS#EBee^kjjeSg%1)cZ*KJ8HbA zZT{1ef2Hw$9LRn?S0gcayYYTf%z8c!Am=}kx;#GqYS%k( zlkt9}N`NX1jy-#?gJ>YeRoo%3hqzWH2zmVwm!tN<5cGX|mLqyA@ISYo_miOAez zS@^#3o|BmR^7E|hJLk97A)n`SEy(_Jy*3_3?(f_v%KmZdBvSu;gg!qXgL8>9_4)a1 zq@VNBALq^&BlmP(>hK=VOTV%%_aL#%C;5hudgn*1Qja_r0yMr5iu8FQ*2YQpdAg0W zkhw4PAo(uPzr5$q%ZRBXKd;MtpSS4x7b)sQzk0Di{gU@7=PuPu={nJ>r$co!$n%(S zU8yq-<$S7f1Hy=3#{uFH<6bsGJj1xtJm_Me?w=<6WIY~(kUqE{cUm6KMZb;Zeq^2e z^zX{Q3#OFM8~ZM|eFfUSg6NCB-7C09@yb$MZ`=@_#|@Qv=wx~w=czxv1?hh}=cT{t zT~<5Sbg3)P$v5Q)a&CsqLq9WQ4l&lQr(r5_HO|9!yWWekPx8bWcV@7z&x}FlpP7Wr zIWq^Bq4YzYnSFMBOyjUXq|dNWT!>l7`LH}|DN-j)>L*|)k|(Smml}7L^cjxnNFTGx zkh-%P?7Gw?|17x&&dnOY661zvAbG=ck@Ml@I2-M`aLzfL`>LEH?^j2$!nhH|$a(~I z9MYNu17~8`J>a2bI}FJx#%(*%e>4T z-HPOo?nLe*TI$L^nUlG$l{$N|2hSLHuFO?o-0PB%bJt1!MOcGJjT@7T^c7Rd`>8eV zyig?mS|aOln1}OG>NDrpnruACKKj2w^3lf)IeI>hdyzcxRcb<*dQ*#fv&?_UxbrB>Iy)3wSPmgE_=od4J-sIf`R?~Su@_dnXJP5o^cE}?!9*ZQoBFf?*G2sFMki0 z{5i58m;2S+NOeWK`arsxH>l?v{K_W%)!4a-8IA}6}$EMnqdqfmhPuXD<(9qlzcp28?CPE z;5qZHBaf^ITWX*0>uR*#EL|{n7`0`m>Qfr~dsHg=56G8~5pCT#SAs z|I>1g{ZI2ArO&7PG_U*}R_fG@tF`QxxGqwC*1o@O_Wjil>iYI#wZWr4U$5?rRU5n1 zU0LexQ|g{_bziXB+@$VLQh(m7zLcxJ%skRhYqfeHLTzhR|2IuNIG}bEs=u66U#nAp z6{Ei1i6zGEisv5YV}Y*!W`dY|J48PD930AKoqIZ5NxTdP@u+dTTl9H1^U3$2ZaH__ zxW8pS`F{3BpyqqCkvPt{Z}uU1d%`sCNk=|UJ=B%`J%0A{{*G{u@?MU_;z1ln-q(>) zU4Ki?yT*Mh68Sv6ML%*czb_`HucIkQ-$%J``Twn>vc431@G;}QEpu`H?F>EFH>AE( zikpnvPkqVvr+Qpu+;^$(aN^I*<WM@o-^nWS1Yw=7pNhe?#{H;;^$o^7ouum@_Y!kYBeMUP zaX*p179#oN-ae825|7}^#yvw_>GzDpybt+3u-x~jIXEAwHx+kk{(oeuXXPH~e@x~* zZrpRSe>=*&%Z)qr^KTqh6Gx%cEi&$f2+T+6kA5!HAp0+jVu*3aJ(~CPdg27*e%^~) zjXU-CW%~N3pLhYv{kqtPM~wSL1LuN_J0W%E;Q-SAzk+rBVkGel<6ca{)!2m8zu1bY zIELiAIDzE(G7$NEd@21)Ed4A+>65&Z+`rt*WTrl!lzWy~_LFC_2BWYY<8T<6Z*tr| zpG4-qBr1f%UF^a*l=|z9&nd%Q#^;gyWWOiTnlW{MKJSp~D^)KG zP^ZZ~)f!)5Jo~8|D1Aj4-&c4}|GuxtdJv}QzMy{Mg~oS<^hfhoaEOTG~L z5kt8*aeAXVlfEPl>rumV)Ty5jZ#TY(B=XJ1Y+b)*{2Uqx#h7JoVaf z^*XW#(f*F9=Ny_y)S-rS|$lBFh{QWun~$-(NaP3kx4U-GB) zs;Rl^x5w1ms?|Fp)bv($QJQ+!fO>bKx_DB}tW%f7sP}ZL_hza~ht=#dby=W#U!!_| zqPo0C&CO9)jH(Y*sXqu)^IOz{6!pP=^`Qc_a6&Dr!6nA`L+bPW!dD!Ne13}QOWtE~ zG4i>5BoujXk0c|X&quOw9#(Rm{UuGroG%$cK2Ig%$i5#1;|th|A=qu#2etl>CBJKY zKeltr&n0sIWp?hz?A(vrxqoWst{ByQm3Hp6cJ6g{?kDWr>+RgtcJ8N`o1dS28~X5N zs z+X{(SVxP|aTpsZz<9kl-?~w6r@4)58w<8SaVhY}l)kxkQjhv&uhHhf=JRgJ1E&tts z?0a77ziWIiWMcyQF&vw%a<0Po3eh z@`yk0L!Q4Bz`ofSqw6nAp2v*ul_ZT@d({KEtRFYNwlt)Vwrr$co2=8H{P%fsZ*A39 InPWtu^yeDC!kg6!m9OV_c3}p->8DWv24a_0h(K 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͜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

      -ezJ^Do~nZ?pW`%HUJ<|r@^q)<#OXBs43 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

      uSk#Eu$Fk1A z-Y~Dp{?`H6_JIG`+>S#XV2-H+JsPqv(Roa?$_#2gRy%>BV^%--RPT5vrv zoLDT|-+�K4!S5G>jnTSaANhTv+(cU$TBo=+L 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%0D|t0aggz6%u@A4Y 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 z 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 z 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 S|YSj=LD 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

      Pc>+i<(U;#1JD#tvQ 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 E<^Q{O9Eu+&7J#h{-`M_yXUe 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�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 >I7WHI^e)pq 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 literal 0 HcmV?d00001 diff --git a/Jingmiao Fei_Koala observation/data/koalaRecords.shp.xml b/Jingmiao Fei_Koala observation/data/koalaRecords.shp.xml new file mode 100644 index 0000000..739c727 --- /dev/null +++ b/Jingmiao Fei_Koala observation/data/koalaRecords.shp.xml @@ -0,0 +1 @@ +20241201024109001.0FALSECreateFeatureclass C:\Users\EchoFF\AppData\Local\Temp\ArcGISProTemp38552\Untitled\Default.gdb koalaRecords_XYTableToPoint Point in_memory\intermediate_csvtable No No "GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]];-400 -400 1000000000;-100000 10000;-100000 10000;8.98315284119521E-09;0.001;0.001;IsHighPrecision" # 0 0 0 # "Same as template"XYTableToPoint D:\MUSA\Courses\Javascript\hw3_engagementProject\data\koalaRecords.csv C:\Users\EchoFF\AppData\Local\Temp\ArcGISProTemp38552\Untitled\Default.gdb\koalaRecords_XYTableToPoint decimalLongitude decimalLatitude # "GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]];-400 -400 1000000000;-100000 10000;-100000 10000;8.98315284119521E-09;0.001;0.001;IsHighPrecision"ExportFeatures koalaRecords_XYTableToPoint C:\Users\EchoFF\AppData\Local\Temp\ArcGISProTemp38552\Untitled\Default.gdb\koalaRecords_XYTableToPoint_ExportFeatures # NOT_USE_ALIAS "year "year" true true false 4 Long 0 0,First,#,koalaRecords_XYTableToPoint,year,-1,-1;month "month" true true false 4 Long 0 0,First,#,koalaRecords_XYTableToPoint,month,-1,-1;day "day" true true false 4 Long 0 0,First,#,koalaRecords_XYTableToPoint,day,-1,-1;individualCount "individualCount" true true false 4 Long 0 0,First,#,koalaRecords_XYTableToPoint,individualCount,-1,-1;stateProvince "stateProvince" true true false 8000 Text 0 0,First,#,koalaRecords_XYTableToPoint,stateProvince,0,7999;decimalLongitude "decimalLongitude" true true false 8 Double 0 0,First,#,koalaRecords_XYTableToPoint,decimalLongitude,-1,-1;decimalLatitude "decimalLatitude" true true false 8 Double 0 0,First,#,koalaRecords_XYTableToPoint,decimalLatitude,-1,-1" #ExportFeatures koalaRecords_XYTableToPoint_ExportFeatures D:\MUSA\Courses\Javascript\hw3_engagementProject\data\koalaRecords.shp # NOT_USE_ALIAS "year "year" true true false 4 Long 0 0,First,#,koalaRecords_XYTableToPoint_ExportFeatures,year,-1,-1;month "month" true true false 4 Long 0 0,First,#,koalaRecords_XYTableToPoint_ExportFeatures,month,-1,-1;day "day" true true false 4 Long 0 0,First,#,koalaRecords_XYTableToPoint_ExportFeatures,day,-1,-1;individualCount "individualCount" true true false 4 Long 0 0,First,#,koalaRecords_XYTableToPoint_ExportFeatures,individualCount,-1,-1;stateProvince "stateProvince" true true false 8000 Text 0 0,First,#,koalaRecords_XYTableToPoint_ExportFeatures,stateProvince,0,7999;decimalLongitude "decimalLongitude" true true false 8 Double 0 0,First,#,koalaRecords_XYTableToPoint_ExportFeatures,decimalLongitude,-1,-1;decimalLatitude "decimalLatitude" true true false 8 Double 0 0,First,#,koalaRecords_XYTableToPoint_ExportFeatures,decimalLatitude,-1,-1" #koalaRecords002file://\\ECHO\D$\MUSA\Courses\Javascript\hw3_engagementProject\data\koalaRecords.shpLocal Area Network0.000GeographicGCS_WGS_1984Angular Unit: Degree (0.017453)<GeographicCoordinateSystem xsi:type='typens:GeographicCoordinateSystem' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xs='http://www.w3.org/2001/XMLSchema' xmlns:typens='http://www.esri.com/schemas/ArcGIS/3.3.0'><WKT>GEOGCS[&quot;GCS_WGS_1984&quot;,DATUM[&quot;D_WGS_1984&quot;,SPHEROID[&quot;WGS_1984&quot;,6378137.0,298.257223563]],PRIMEM[&quot;Greenwich&quot;,0.0],UNIT[&quot;Degree&quot;,0.0174532925199433],AUTHORITY[&quot;EPSG&quot;,4326]]</WKT><XOrigin>-400</XOrigin><YOrigin>-400</YOrigin><XYScale>11258999068426.238</XYScale><ZOrigin>-100000</ZOrigin><ZScale>10000</ZScale><MOrigin>-100000</MOrigin><MScale>10000</MScale><XYTolerance>8.983152841195215e-09</XYTolerance><ZTolerance>0.001</ZTolerance><MTolerance>0.001</MTolerance><HighPrecision>true</HighPrecision><LeftLongitude>-180</LeftLongitude><WKID>4326</WKID><LatestWKID>4326</LatestWKID></GeographicCoordinateSystem>20241201031039002024120103103900Microsoft Windows 10 Version 10.0 (Build 22631) ; Esri ArcGIS 13.3.2.52636koalaRecordsShapefile0.000datasetEPSG6.2(3.0.1)0SimpleFALSE0FALSEFALSEkoalaRecordsFeature Class0FIDFIDOID400Internal feature number.EsriSequential unique whole numbers that are automatically generated.ShapeShapeGeometry000Feature geometry.EsriCoordinates defining the features.yearyearInteger10100monthmonthInteger10100daydayInteger10100individualindividualInteger10100stateProvistateProviString25400decimalLondecimalLonDouble1900decimalLatdecimalLatDouble190020241201 diff --git a/Jingmiao Fei_Koala observation/data/koalaRecords.shx b/Jingmiao Fei_Koala observation/data/koalaRecords.shx new file mode 100644 index 0000000000000000000000000000000000000000..45ca67bb07eeed14bc89dfdf71cf0390c9edd4a5 GIT binary patch literal 604148 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

      C#Pr@-(?CNP~Z`Hml1$uDeV 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 z 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

      *Yd&X7%;< z0u82AtJkqD>yE#gO$Z|xHXGxfsjCN?do9Z+kDQE_vf($Br3k{XmCc=6E91H?f^jzp ztiYsMK6m{1+1CAa{4+Z7^e;}$4^Mr?ax|Xr-xU*5vg@C#Rag>Be31RuS5F){^=kY6 zD(xSA`f@|D6$~NH(pBZ<0W>!r<{gZF4 z&ibALXyQvhJ+yg*^*=5ry`NNx>UE7P-86$S22U&zNY5lXov(`Og-Jd2wU@v7+W6hr Z{V#cxyYflSF}?r*002ovPDHLkV1nUgmc0M~ literal 0 HcmV?d00001 diff --git a/Jingmiao Fei_Koala observation/data/records-2024-11-27.csv b/Jingmiao Fei_Koala observation/data/records-2024-11-27.csv new file mode 100644 index 0000000..830c6a7 --- /dev/null +++ b/Jingmiao Fei_Koala observation/data/records-2024-11-27.csv @@ -0,0 +1,75507 @@ +basisOfRecord,recordedBy,individualCount,sex,occurrenceRemarks,year,month,day,country,countryCode,stateProvince,decimalLatitude,decimalLongitude,geodeticDatum +HUMAN_OBSERVATION,Trevor Pescott,1,,Sleeping at the top of a spindly Blue Gum directly above the Bambra-Aireys Inlet Road.,2020,6,27,Australia,AU,Victoria,-38.39723,144.00772,EPSG:4326 +HUMAN_OBSERVATION,"Ross Auchettl, Bridget Inder",1,,A koala sighted high in a eucalypt expertly hidden in thick foliage. Almost impossible to photograph. 13:16. ,2020,10,30,Australia,AU,Victoria,-37.65856,144.33779,EPSG:4326 +HUMAN_OBSERVATION,Lorraine Phelan,1,,"One, calling loudly at 3 pm.",2021,1,30,Australia,AU,Victoria,-38.78802,143.61883,EPSG:4326 +HUMAN_OBSERVATION,"Chrissy Freestone, George Appleby",1,,Sitting low down partially dead tree stump just to the side of the track.,2021,8,21,Australia,AU,Victoria,-37.86565,144.19096,EPSG:4326 +HUMAN_OBSERVATION,"Ross Auchettl, Bridget Inder",1,,"At 12:14, while walking up Saltwater Road, a Koala was spotted high in a Blue Gum. Looking at the photo zoomed in cannot determine sex. ",2020,3,18,Australia,AU,Victoria,-37.4573,144.44272,EPSG:4326 +HUMAN_OBSERVATION,Wendy Cook,1,,On roadside with indigenous trees next to paddock. Awake in fork near top of tree,2020,11,25,Australia,AU,Victoria,-37.80499,144.14492,EPSG:4326 +HUMAN_OBSERVATION,Ross Auchettl,1,,Put the recorder on and left it for a little while-- A male koala can be heard calling at 19:06 and again at 19:47. ,2020,7,9,Australia,AU,Victoria,-37.76743,144.27966,EPSG:4326 +HUMAN_OBSERVATION,Brad Ferrier ,1,,Adult male firmly wedged between three arterial branches.,2021,5,17,Australia,AU,Victoria,-37.8908,144.16742,EPSG:4326 +HUMAN_OBSERVATION,Lachlan Butson,37,,,2022,5,9,Australia,AU,Victoria,-38.08213,141.79763,EPSG:4326 +HUMAN_OBSERVATION,SPEIGHT K.N. Katherine,36,,Monthly opportunistic collection of urine (collection tray) and faeces of captive koalas. AEC S2021-081,2022,10,31,Australia,AU,South Australia,-34.96562,138.6954,EPSG:4326 +HUMAN_OBSERVATION,Wendy Cook,1,,"Male, grunting at night.",2021,10,26,Australia,AU,Victoria,-37.80807,144.1492,EPSG:4326 +HUMAN_OBSERVATION,COLOMBELLI-NEGREL D. Dr Diane,35,,Survey period = May 2021-2022. Captive koalas at Cleland Wildlife Park,2021,5,1,Australia,AU,South Australia,-34.967,138.696,EPSG:4326 +HUMAN_OBSERVATION,Wendy Cook,1,,Heard grunting during the night,2020,11,26,Australia,AU,Victoria,-37.80501,144.14492,EPSG:4326 +HUMAN_OBSERVATION,"Craig Morley, Grace Lewis",1,,Heard calling. 22:32,2021,12,13,Australia,AU,Victoria,-38.67222,143.85199,EPSG:4326 +HUMAN_OBSERVATION,Marilyn Hewish,1,,Grunting loudly for a few seconds from grove of eucalypts. We couldn't find it for a photo. First time I've recorded Koala in Long Forest for many years. I really did want a photo!,2021,9,23,Australia,AU,Victoria,-37.66679,144.50081,EPSG:4326 +HUMAN_OBSERVATION,Lorraine Phelan,1,,"One crossing the Great Ocean Rd, 4 pm.",2021,1,29,Australia,AU,Victoria,-38.78152,143.53771,EPSG:4326 +HUMAN_OBSERVATION,Patrick Flanagan,33,,,2020,6,20,Australia,AU,Victoria,-38.6724,143.85212,EPSG:4326 +HUMAN_OBSERVATION,Lachlan Butson,32,,,2022,5,9,Australia,AU,Victoria,-38.19541,141.76754,EPSG:4326 +HUMAN_OBSERVATION,Owen Cook,1,,In roadside eucalypt,2021,9,23,Australia,AU,Victoria,-37.71956,144.36999,EPSG:4326 +HUMAN_OBSERVATION,Lachlan Butson,29,,,2022,5,9,Australia,AU,Victoria,-38.02968,141.85227,EPSG:4326 +HUMAN_OBSERVATION,"Chrissy Freestone, George Appleby",1,,Active individual seen climbing around in a Mountain Ash.,2020,3,22,Australia,AU,Victoria,-38.61583,143.629,EPSG:4326 +HUMAN_OBSERVATION,Ross Auchettl Bridget Inder,1,,"A koala, male, feeding high in a eucalypt, about 12:40. He would pull small bunches of leaves towards him, sniff them and then eat a few. ",2021,9,26,Australia,AU,Victoria,-37.6034,144.41144,EPSG:4326 +HUMAN_OBSERVATION,Kristen Cook,1,,Male heard grunting at 9 PM.,2021,10,30,Australia,AU,Victoria,-37.80807,144.1492,EPSG:4326 +HUMAN_OBSERVATION,Rachael Bartlett,1,,,2021,2,2,Australia,AU,Victoria,-37.2582,148.20167,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,6,4,Australia,AU,Victoria,-38.2312,146.91217,EPSG:4326 +HUMAN_OBSERVATION,Brett Goodman,1,,,2023,12,5,Australia,AU,Victoria,-37.07769,143.25562,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,7,Australia,AU,Victoria,-37.92797,141.48599,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2022,5,16,Australia,AU,Victoria,-38.42491,146.88433,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,5,Australia,AU,Victoria,-38.3209,145.32423,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,3,15,Australia,AU,Victoria,-38.48723,146.32812,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,6,6,Australia,AU,Victoria,-37.64368,147.45244,EPSG:4326 +HUMAN_OBSERVATION,Samantha Strong,1,,,2020,2,20,Australia,AU,Victoria,-37.35669,143.15287,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2020,9,29,Australia,AU,Victoria,-36.9013,145.90368,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,3,29,Australia,AU,Victoria,-37.89051,145.71474,EPSG:4326 +HUMAN_OBSERVATION,Timon van Asten,1,,,2023,11,14,Australia,AU,Victoria,-38.21827,141.54876,EPSG:4326 +HUMAN_OBSERVATION,i Naturalist,1,,,2020,3,5,Australia,AU,Victoria,-38.31444,142.36597,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2022,11,28,Australia,AU,Victoria,-37.39978,144.27902,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,3,9,Australia,AU,Victoria,-38.02849,146.40261,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,8,Australia,AU,Victoria,-37.37201,144.21973,EPSG:4326 +HUMAN_OBSERVATION,Trevor Speirs,1,,,2020,7,16,Australia,AU,Victoria,-37.5016,144.3504,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,7,6,Australia,AU,Victoria,-38.42812,146.88559,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,2,7,Australia,AU,Victoria,-37.4181,144.16489,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,14,Australia,AU,Victoria,-38.0195,141.09528,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,12,23,Australia,AU,Victoria,-38.27617,147.18135,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,11,16,Australia,AU,Victoria,-38.32552,146.78338,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2022,1,16,Australia,AU,Victoria,-37.29629,143.24579,EPSG:4326 +HUMAN_OBSERVATION,Trevor Speirs,1,,,2021,3,9,Australia,AU,Victoria,-37.3445,144.2265,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,12,8,Australia,AU,Victoria,-38.31278,145.4419,EPSG:4326 +HUMAN_OBSERVATION,Peter Mitchell,1,,,2020,7,15,Australia,AU,Victoria,-37.02036,145.14652,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,14,Australia,AU,Victoria,-38.39979,145.32867,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2022,1,17,Australia,AU,Victoria,-37.05844,143.24908,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2022,6,27,Australia,AU,Victoria,-36.86843,146.25012,EPSG:4326 +HUMAN_OBSERVATION,i Naturalist,1,,,2020,3,15,Australia,AU,Victoria,-38.38066,145.27834,EPSG:4326 +HUMAN_OBSERVATION,Kylie Singleton,1,,Found dead,2023,4,6,Australia,AU,Victoria,-37.86258,146.1276,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2021,10,25,Australia,AU,Victoria,-37.94998,145.79577,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,12,Australia,AU,Victoria,-38.04037,141.27128,EPSG:4326 +HUMAN_OBSERVATION,Joab Wilson,1,,,2022,12,7,Australia,AU,Victoria,-37.44615,144.24504,EPSG:4326 +HUMAN_OBSERVATION,i Naturalist,1,,,2020,11,1,Australia,AU,Victoria,-38.6735,143.84634,EPSG:4326 +HUMAN_OBSERVATION,Jonathan Sordello,1,,,2020,12,9,Australia,AU,Victoria,-38.59787,146.50133,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2022,5,11,Australia,AU,Victoria,-37.58447,145.99515,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,8,2,Australia,AU,Victoria,-38.42991,146.87857,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,3,23,Australia,AU,Victoria,-38.02788,146.39789,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,5,17,Australia,AU,Victoria,-38.51018,146.31372,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,1,17,Australia,AU,Victoria,-38.35647,146.16711,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,4,6,Australia,AU,Victoria,-38.4835,146.75887,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2021,10,25,Australia,AU,Victoria,-37.94998,145.79577,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,5,12,Australia,AU,Victoria,-37.26785,144.26568,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,1,25,Australia,AU,Victoria,-37.4562,144.26118,EPSG:4326 +HUMAN_OBSERVATION,Stephen Sims,1,,,2023,2,1,Australia,AU,Victoria,-38.36032,141.61346,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,12,23,Australia,AU,Victoria,-38.27831,147.19769,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,30,Australia,AU,Victoria,-38.28588,145.29319,EPSG:4326 +HUMAN_OBSERVATION,Ecology Australia,1,,,2022,11,23,Australia,AU,Victoria,-37.16288,145.15654,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,28,Australia,AU,Victoria,-38.33311,145.43045,EPSG:4326 +HUMAN_OBSERVATION,Mahalia Booth-Remmers,1,,,2020,2,6,Australia,AU,Victoria,-37.6687,147.48777,EPSG:4326 +HUMAN_OBSERVATION,Bertram Lobert,1,,,2021,7,11,Australia,AU,Victoria,-36.63986,146.10638,EPSG:4326 +HUMAN_OBSERVATION,i Naturalist,1,,,2020,3,5,Australia,AU,Victoria,-38.31803,142.36358,EPSG:4326 +HUMAN_OBSERVATION,Daniel Terrington,1,,,2020,11,4,Australia,AU,Victoria,-37.67591,147.48638,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,7,Australia,AU,Victoria,-38.31077,145.34197,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,5,Australia,AU,Victoria,-37.99623,141.62143,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,2,3,Australia,AU,Victoria,-38.29828,146.25237,EPSG:4326 +HUMAN_OBSERVATION,Bertram Lobert,1,,,2020,12,18,Australia,AU,Victoria,-36.89139,145.93833,EPSG:4326 +HUMAN_OBSERVATION,Timon van Asten,1,,,2021,9,28,Australia,AU,Victoria,-37.93009,146.21394,EPSG:4326 +HUMAN_OBSERVATION,Catalina Mardones Martnez,1,,,2022,12,3,Australia,AU,Victoria,-37.34507,144.28214,EPSG:4326 +HUMAN_OBSERVATION,Phoebe Burns,1,,,2021,1,21,Australia,AU,Victoria,-38.8308,143.5655,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2021,6,22,Australia,AU,Victoria,-37.57717,145.68789,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2022,4,11,Australia,AU,Victoria,-37.8339,145.68756,EPSG:4326 +HUMAN_OBSERVATION,Gemma Snowball,1,,,2023,5,4,Australia,AU,Victoria,-37.26916,145.58903,EPSG:4326 +HUMAN_OBSERVATION,Nina Page,1,,,2023,9,19,Australia,AU,Victoria,-38.47386,143.44217,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,6,30,Australia,AU,Victoria,-37.293,144.30918,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,6,6,Australia,AU,Victoria,-37.30282,145.57925,EPSG:4326 +HUMAN_OBSERVATION,SPEIGHT K.N. Katherine,27,,Post mortem examination at Adelaide Koala and Wildlife Centre of dead wild koala (euthanased or died),2022,10,3,Australia,AU,South Australia,-34.96383,138.5556,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,12,23,Australia,AU,Victoria,-38.24594,147.26898,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,9,4,Australia,AU,Victoria,-38.31301,145.29438,EPSG:4326 +HUMAN_OBSERVATION,Patrick Flanagan,14,,,2021,6,19,Australia,AU,Victoria,-38.6724,143.85212,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2022,5,10,Australia,AU,Victoria,-38.46076,146.89711,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2023,4,21,Australia,AU,Victoria,-37.72449,143.8374,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,7,12,Australia,AU,Victoria,-38.4225,146.91461,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,1,,,2020,2,6,Australia,AU,Victoria,-38.5566,143.94836,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,10,31,Australia,AU,Victoria,-38.54256,146.58284,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,6,23,Australia,AU,Victoria,-37.8679,145.71134,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,14,Australia,AU,Victoria,-38.31191,145.4231,EPSG:4326 +HUMAN_OBSERVATION,Bradley Jenner,1,,,2022,3,29,Australia,AU,Victoria,-37.38223,144.28174,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,30,Australia,AU,Victoria,-38.35076,145.27715,EPSG:4326 +HUMAN_OBSERVATION,Thomas Burns,1,,,2022,12,21,Australia,AU,Victoria,-37.3919,144.22718,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,4,19,Australia,AU,Victoria,-38.46091,146.7463,EPSG:4326 +HUMAN_OBSERVATION,Kristen Agosta,1,,,2022,12,8,Australia,AU,Victoria,-37.41036,144.19476,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,1,17,Australia,AU,Victoria,-38.36371,146.15509,EPSG:4326 +HUMAN_OBSERVATION,Phoebe Burns,1,,,2021,1,22,Australia,AU,Victoria,-38.8424,143.5432,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,7,6,Australia,AU,Victoria,-38.43203,146.87326,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,3,9,Australia,AU,Victoria,-38.28755,146.24455,EPSG:4326 +HUMAN_OBSERVATION,Jemma Cripps,1,,,2020,1,21,Australia,AU,Victoria,-37.44489,145.53876,EPSG:4326 +HUMAN_OBSERVATION,Gayle Osborne,1,,,2023,2,4,Australia,AU,Victoria,-37.4071,144.1853,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,6,6,Australia,AU,Victoria,-37.65338,147.45221,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2022,1,20,Australia,AU,Victoria,-37.3286,144.30122,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2022,7,4,Australia,AU,Victoria,-38.45668,146.8391,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2020,9,15,Australia,AU,Victoria,-36.88223,145.89508,EPSG:4326 +HUMAN_OBSERVATION,Kristen Agosta,1,,,2022,12,7,Australia,AU,Victoria,-37.41219,144.1939,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,25,Australia,AU,Victoria,-38.33789,145.48335,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2021,6,28,Australia,AU,Victoria,-37.57693,145.69024,EPSG:4326 +HUMAN_OBSERVATION,Luke Woodford,1,,,2022,5,12,Australia,AU,Victoria,-37.30606,148.2903,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,5,24,Australia,AU,Victoria,-38.48286,146.31051,EPSG:4326 +HUMAN_OBSERVATION,Bradley Jenner,1,,,2023,4,17,Australia,AU,Victoria,-37.43326,144.10436,EPSG:4326 +HUMAN_OBSERVATION,Trust For Nature,1,,,2020,4,15,Australia,AU,Victoria,-37.281,144.218,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2020,8,11,Australia,AU,Victoria,-36.89708,145.89355,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,7,12,Australia,AU,Victoria,-38.41,146.84478,EPSG:4326 +HUMAN_OBSERVATION,Brett Goodman,1,,,2023,12,6,Australia,AU,Victoria,-37.07861,143.25575,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,12,Australia,AU,Victoria,-38.02435,141.13881,EPSG:4326 +HUMAN_OBSERVATION,Luke Smith,1,,,2020,3,16,Australia,AU,Victoria,-38.06695,147.54845,EPSG:4326 +HUMAN_OBSERVATION,Emma Birnbaum,1,,,2022,10,11,Australia,AU,Victoria,-38.53968,143.51334,EPSG:4326 +HUMAN_OBSERVATION,Bertram Lobert,1,,,2020,12,14,Australia,AU,Victoria,-36.68889,145.80694,EPSG:4326 +HUMAN_OBSERVATION,Alex Maisey,1,,,2021,1,22,Australia,AU,Victoria,-37.83943,145.39027,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,1,17,Australia,AU,Victoria,-38.36166,146.15796,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,1,,,2020,7,21,Australia,AU,Victoria,-38.54215,143.97198,EPSG:4326 +HUMAN_OBSERVATION,SPEIGHT K.N. Katherine,11,,Urine collection from captive koalas by Cleland keepers/vet under University of Adelaide AEC permit S2016-169,2021,4,8,Australia,AU,South Australia,-34.9676,138.7011,EPSG:4326 +HUMAN_OBSERVATION,i Naturalist,1,,,2020,5,3,Australia,AU,Victoria,-37.35468,144.13419,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,11,8,Australia,AU,Victoria,-37.89757,145.69513,EPSG:4326 +HUMAN_OBSERVATION,Rachael Bartlett,1,,,2021,2,2,Australia,AU,Victoria,-37.2582,148.20167,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,9,20,Australia,AU,Victoria,-37.94524,146.37466,EPSG:4326 +HUMAN_OBSERVATION,Nina Kerr,1,,,2023,2,21,Australia,AU,Victoria,-37.81755,145.39259,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,1,19,Australia,AU,Victoria,-38.33708,146.44279,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,9,,,2020,7,24,Australia,AU,Victoria,-38.53928,143.97174,EPSG:4326 +HUMAN_OBSERVATION,Jemma Cripps,1,,,2020,12,16,Australia,AU,Victoria,-37.87672,145.68206,EPSG:4326 +HUMAN_OBSERVATION,Phoebe Burns,1,,,2020,2,23,Australia,AU,Victoria,-37.90366,146.22584,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,1,,,2021,2,21,Australia,AU,Victoria,-38.55382,143.94433,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,8,2,Australia,AU,Victoria,-38.39678,146.82872,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,5,18,Australia,AU,Victoria,-38.45919,146.8936,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,11,Australia,AU,Victoria,-38.29359,145.31951,EPSG:4326 +HUMAN_OBSERVATION,Brett Goodman,1,,,2023,6,6,Australia,AU,Victoria,-35.77322,144.27336,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102508,8,,occurrenceRemarks withheld,2024,9,25,Australia,AU,New South Wales,-28.654424,153.31611,EPSG:4326 +HUMAN_OBSERVATION,Dylan Lees,1,,,2023,6,8,Australia,AU,Victoria,-37.39753,144.08979,EPSG:4326 +HUMAN_OBSERVATION,Kristen Agosta,1,,,2022,12,20,Australia,AU,Victoria,-37.38709,144.22404,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,11,21,Australia,AU,Victoria,-38.32122,146.77624,EPSG:4326 +HUMAN_OBSERVATION,Brett Goodman,1,,,2020,12,3,Australia,AU,Victoria,-37.36517,146.16385,EPSG:4326 +HUMAN_OBSERVATION,Bertram Lobert,1,,,2023,1,20,Australia,AU,Victoria,-36.93238,145.91459,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,3,9,Australia,AU,Victoria,-38.23838,146.21972,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,13,Australia,AU,Victoria,-38.0728,141.28463,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,2,27,Australia,AU,Victoria,-38.46015,146.59898,EPSG:4326 +HUMAN_OBSERVATION,Nina Page,1,,,2023,9,20,Australia,AU,Victoria,-38.48833,143.41678,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,5,30,Australia,AU,Victoria,-37.44273,144.3598,EPSG:4326 +HUMAN_OBSERVATION,Luke Woodford,1,,,2020,4,17,Australia,AU,Victoria,-37.95795,145.59794,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2022,3,20,Australia,AU,Victoria,-37.44482,144.32581,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,9,16,Australia,AU,Victoria,-38.36688,145.43921,EPSG:4326 +HUMAN_OBSERVATION,Bev Yen,1,,,2021,6,7,Australia,AU,Victoria,-35.70607,144.1434,EPSG:4326 +HUMAN_OBSERVATION,Daniel Terrington,1,,,2020,9,29,Australia,AU,Victoria,-37.17522,148.21851,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,12,Australia,AU,Victoria,-38.03621,141.1572,EPSG:4326 +HUMAN_OBSERVATION,i Naturalist,1,,,2020,8,4,Australia,AU,Victoria,-37.49796,144.37935,EPSG:4326 +HUMAN_OBSERVATION,Greg Fyfe,1,,,2021,12,16,Australia,AU,Victoria,-37.30833,148.28934,EPSG:4326 +HUMAN_OBSERVATION,Lachlan Butson,7,,,2022,11,7,Australia,AU,Victoria,-38.06589,141.84869,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,8,2,Australia,AU,Victoria,-38.45538,146.84543,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,1,17,Australia,AU,Victoria,-38.36341,146.16708,EPSG:4326 +HUMAN_OBSERVATION,Nina Page,1,,,2023,10,4,Australia,AU,Victoria,-38.45977,143.48188,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,9,Australia,AU,Victoria,-38.32534,145.33125,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2022,11,16,Australia,AU,Victoria,-37.44989,144.26241,EPSG:4326 +HUMAN_OBSERVATION,Nicholas Carter,1,,,2022,8,8,Australia,AU,Victoria,-38.32847,146.25623,EPSG:4326 +HUMAN_OBSERVATION,Jose Ramos,1,,,2023,6,27,Australia,AU,Victoria,-37.43644,143.94153,EPSG:4326 +HUMAN_OBSERVATION,Kristen Agosta,1,,,2022,12,15,Australia,AU,Victoria,-37.37063,144.23568,EPSG:4326 +HUMAN_OBSERVATION,Phoebe Burns,1,,,2021,1,21,Australia,AU,Victoria,-38.8134,143.5548,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,12,Australia,AU,Victoria,-38.0393,141.19349,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,8,12,Australia,AU,Victoria,-38.36571,145.27591,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,11,8,Australia,AU,Victoria,-37.89757,145.69513,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,8,29,Australia,AU,Victoria,-38.37124,145.37118,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,6,28,Australia,AU,Victoria,-37.86817,145.71302,EPSG:4326 +HUMAN_OBSERVATION,Nina Page,1,,,2023,9,19,Australia,AU,Victoria,-38.46077,143.44535,EPSG:4326 +HUMAN_OBSERVATION,Luke Smith,1,,,2021,3,9,Australia,AU,Victoria,-38.0749,147.54437,EPSG:4326 +HUMAN_OBSERVATION,Dylan Lees,1,,,2022,12,14,Australia,AU,Victoria,-37.36974,144.23301,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,12,6,Australia,AU,Victoria,-38.32681,145.41868,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2020,11,20,Australia,AU,Victoria,-37.14057,145.2018,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,8,23,Australia,AU,Victoria,-38.32996,145.30369,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,11,13,Australia,AU,Victoria,-38.30498,146.27662,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,9,15,Australia,AU,Victoria,-38.32719,145.42206,EPSG:4326 +HUMAN_OBSERVATION,Alberto Neto,1,,,2023,2,16,Australia,AU,Victoria,-37.45254,144.07199,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,4,30,Australia,AU,Victoria,-38.54398,146.71612,EPSG:4326 +HUMAN_OBSERVATION,Thomas Burns,1,,,2023,1,7,Australia,AU,Victoria,-37.46706,144.18475,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,8,Australia,AU,Victoria,-37.37201,144.21973,EPSG:4326 +HUMAN_OBSERVATION,Kristen Agosta,1,,,2022,12,21,Australia,AU,Victoria,-37.38736,144.21933,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2021,10,25,Australia,AU,Victoria,-37.94998,145.79577,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,3,15,Australia,AU,Victoria,-38.4982,146.32943,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,26,Australia,AU,Victoria,-38.33793,145.48336,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,21,Australia,AU,Victoria,-38.36259,145.31097,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2022,12,2,Australia,AU,Victoria,-37.34633,144.28188,EPSG:4326 +HUMAN_OBSERVATION,SPEIGHT K.N. Katherine,7,,Monthly opportunistic collection of urine (collection tray) and faeces of captive koalas. AEC S2021-081,2022,10,8,Australia,AU,South Australia,-35.13817,138.55022,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,3,Australia,AU,Victoria,-37.97577,141.53068,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,4,28,Australia,AU,Victoria,-37.42164,144.17928,EPSG:4326 +HUMAN_OBSERVATION,Timon van Asten,1,,,2023,11,14,Australia,AU,Victoria,-38.21786,141.55041,EPSG:4326 +HUMAN_OBSERVATION,Bertram Lobert,1,,,2020,12,15,Australia,AU,Victoria,-36.84861,145.91333,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,4,19,Australia,AU,Victoria,-38.44012,146.6298,EPSG:4326 +HUMAN_OBSERVATION,Brett Goodman,1,,,2023,12,6,Australia,AU,Victoria,-37.0749,143.25249,EPSG:4326 +HUMAN_OBSERVATION,Phoebe Burns,1,,,2021,1,21,Australia,AU,Victoria,-38.7978,143.567,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,8,2,Australia,AU,Victoria,-38.46329,146.84147,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2023,1,3,Australia,AU,Victoria,-37.46688,144.18428,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,6,Australia,AU,Victoria,-38.37979,145.27885,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,11,8,Australia,AU,Victoria,-37.89669,145.69553,EPSG:4326 +HUMAN_OBSERVATION,Timon van Asten,1,,,2021,9,7,Australia,AU,Victoria,-37.82902,145.69368,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,12,Australia,AU,Victoria,-38.02785,141.18714,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102508,7,,occurrenceRemarks withheld,2024,9,25,Australia,AU,New South Wales,-28.59695,153.277428,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,13,Australia,AU,Victoria,-38.06282,141.15061,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,5,22,Australia,AU,Victoria,-37.26762,145.58754,EPSG:4326 +HUMAN_OBSERVATION,Bertram Lobert,1,,,2021,10,11,Australia,AU,Victoria,-37.02633,145.65177,EPSG:4326 +HUMAN_OBSERVATION,Nina Page,1,,,2023,9,20,Australia,AU,Victoria,-38.48752,143.42276,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,6,Australia,AU,Victoria,-37.90486,141.4202,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,6,9,Australia,AU,Victoria,-38.23789,146.87202,EPSG:4326 +HUMAN_OBSERVATION,Nina Page,1,,,2023,9,19,Australia,AU,Victoria,-38.47441,143.44126,EPSG:4326 +HUMAN_OBSERVATION,Bertram Lobert,1,,,2021,10,11,Australia,AU,Victoria,-37.02633,145.65177,EPSG:4326 +HUMAN_OBSERVATION,Emma-Kate Campbell,1,,,2021,1,29,Australia,AU,Victoria,-36.85402,146.25943,EPSG:4326 +HUMAN_OBSERVATION,Greg Fyfe,1,,,2020,9,29,Australia,AU,Victoria,-37.17522,148.21851,EPSG:4326 +HUMAN_OBSERVATION,Aiden Turner,1,,,2020,6,28,Australia,AU,Victoria,-37.54623,144.72303,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2020,10,13,Australia,AU,Victoria,-37.17228,145.20643,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2021,4,28,Australia,AU,Victoria,-37.85138,145.94397,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,12,23,Australia,AU,Victoria,-38.26018,147.18912,EPSG:4326 +HUMAN_OBSERVATION,i Naturalist,1,,,2020,3,2,Australia,AU,Victoria,-38.6677,143.86094,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,6,29,Australia,AU,Victoria,-37.34098,144.26018,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,6,,,2020,6,30,Australia,AU,Victoria,-38.55382,143.9799,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2022,7,11,Australia,AU,Victoria,-38.43857,146.86793,EPSG:4326 +HUMAN_OBSERVATION,i Naturalist,1,,,2020,9,16,Australia,AU,Victoria,-38.17606,145.13171,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2021,9,15,Australia,AU,Victoria,-37.19951,148.19497,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,8,Australia,AU,Victoria,-37.37434,144.2252,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,8,Australia,AU,Victoria,-37.36495,144.22764,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,11,Australia,AU,Victoria,-38.36474,145.34986,EPSG:4326 +HUMAN_OBSERVATION,Louise Romanin,1,,,2023,5,1,Australia,AU,Victoria,-38.51573,146.74341,EPSG:4326 +HUMAN_OBSERVATION,Oriana Licul-Milevoj,1,,,2023,6,2,Australia,AU,Victoria,-37.46642,144.34115,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,28,Australia,AU,Victoria,-38.6047,146.51205,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,24,Australia,AU,Victoria,-38.60687,146.51162,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2022,2,16,Australia,AU,Victoria,-37.71441,147.47768,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2020,6,13,Australia,AU,Victoria,-37.29633,143.27997,EPSG:4326 +HUMAN_OBSERVATION,Luke Woodford,1,,,2022,3,28,Australia,AU,Victoria,-37.30606,148.2903,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2022,9,7,Australia,AU,Victoria,-37.85996,146.02373,EPSG:4326 +HUMAN_OBSERVATION,Dylan Lees,1,,,2022,12,20,Australia,AU,Victoria,-37.42904,144.3066,EPSG:4326 +HUMAN_OBSERVATION,Timon van Asten,1,,,2021,5,12,Australia,AU,Victoria,-37.34302,145.94406,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,8,2,Australia,AU,Victoria,-38.39855,146.83918,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,5,29,Australia,AU,Victoria,-38.23836,146.90121,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,11,8,Australia,AU,Victoria,-37.89669,145.69553,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,8,14,Australia,AU,Victoria,-38.32683,145.41869,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,12,15,Australia,AU,Victoria,-37.57843,145.70187,EPSG:4326 +HUMAN_OBSERVATION,william terry,5,,,2021,1,7,Australia,AU,Victoria,-38.831,143.56109,EPSG:4326 +HUMAN_OBSERVATION,Mary Thorpe,1,,,2023,4,14,Australia,AU,Victoria,-38.24458,146.9889,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,9,20,Australia,AU,Victoria,-38.32518,145.28754,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2023,1,3,Australia,AU,Victoria,-37.46263,144.18854,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,12,23,Australia,AU,Victoria,-38.25438,147.09167,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,9,20,Australia,AU,Victoria,-37.94524,146.37466,EPSG:4326 +HUMAN_OBSERVATION,Trust For Nature,1,,,2020,3,12,Australia,AU,Victoria,-36.216,145.222,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,13,Australia,AU,Victoria,-38.00094,141.04627,EPSG:4326 +HUMAN_OBSERVATION,Daniel Terrington,1,,,2020,11,2,Australia,AU,Victoria,-37.17589,148.21921,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,5,2,Australia,AU,Victoria,-37.33524,145.64015,EPSG:4326 +HUMAN_OBSERVATION,Olivia Lay,1,,,2023,2,27,Australia,AU,Victoria,-37.96712,146.34608,EPSG:4326 +HUMAN_OBSERVATION,Rachael Bartlett,1,,,2021,6,3,Australia,AU,Victoria,-36.99493,148.63834,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,9,Australia,AU,Victoria,-37.47272,144.09159,EPSG:4326 +HUMAN_OBSERVATION,Brett Goodman,1,,,2023,12,5,Australia,AU,Victoria,-37.0749,143.25249,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,9,8,Australia,AU,Victoria,-38.31046,145.29346,EPSG:4326 +HUMAN_OBSERVATION,Nicholas Carter,5,,,2022,7,18,Australia,AU,Victoria,-38.31881,142.36193,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2020,10,1,Australia,AU,Victoria,-37.17389,145.19469,EPSG:4326 +HUMAN_OBSERVATION,i Naturalist,1,,,2020,3,1,Australia,AU,Victoria,-38.67086,143.85998,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,6,11,Australia,AU,Victoria,-38.37964,145.2788,EPSG:4326 +HUMAN_OBSERVATION,Timothy Garvey,1,,,2023,4,22,Australia,AU,Victoria,-37.72815,149.83276,EPSG:4326 +HUMAN_OBSERVATION,Timon van Asten,1,,Herbivore bait,2021,8,25,Australia,AU,Victoria,-37.33545,145.65335,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,11,Australia,AU,Victoria,-38.32672,145.41848,EPSG:4326 +HUMAN_OBSERVATION,Eloise Welsh,1,,,2023,7,4,Australia,AU,Victoria,-37.43413,144.36892,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,6,30,Australia,AU,Victoria,-38.33619,147.11062,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,12,11,Australia,AU,Victoria,-38.39398,145.31413,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,1,31,Australia,AU,Victoria,-38.36793,145.27667,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,6,5,Australia,AU,Victoria,-37.65299,147.45651,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,9,Australia,AU,Victoria,-38.31203,145.42314,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,3,17,Australia,AU,Victoria,-37.36987,144.24602,EPSG:4326 +HUMAN_OBSERVATION,Stephanie Rosestone,1,,,2020,12,4,Australia,AU,Victoria,-37.6681,144.00599,EPSG:4326 +HUMAN_OBSERVATION,Trevor Speirs,1,,,2020,11,27,Australia,AU,Victoria,-37.4893,144.3002,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,2,22,Australia,AU,Victoria,-37.66862,146.48932,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,15,Australia,AU,Victoria,-37.5743,145.70337,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,7,6,Australia,AU,Victoria,-38.44579,146.87943,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,1,31,Australia,AU,Victoria,-38.3635,145.43549,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,14,Australia,AU,Victoria,-38.37467,146.04177,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2022,11,16,Australia,AU,Victoria,-37.44946,144.26208,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,9,28,Australia,AU,Victoria,-37.94445,146.3735,EPSG:4326 +HUMAN_OBSERVATION,Meghan Lindsay,1,,,2020,12,3,Australia,AU,Victoria,-37.83669,145.38605,EPSG:4326 +HUMAN_OBSERVATION,Eloise Welsh,1,,,2023,7,5,Australia,AU,Victoria,-37.39506,144.18024,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,2,22,Australia,AU,Victoria,-37.66862,146.48932,EPSG:4326 +HUMAN_OBSERVATION,Gayle Osborne,1,,,2023,2,11,Australia,AU,Victoria,-37.4357,144.1763,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,5,22,Australia,AU,Victoria,-37.26716,145.58763,EPSG:4326 +HUMAN_OBSERVATION,Nina Page,1,,,2023,9,20,Australia,AU,Victoria,-38.49181,143.41833,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2020,12,16,Australia,AU,Victoria,-37.59647,145.68365,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,28,Australia,AU,Victoria,-38.31207,145.42314,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,1,19,Australia,AU,Victoria,-38.33452,146.44831,EPSG:4326 +HUMAN_OBSERVATION,Rachael Bartlett,1,,,2021,1,14,Australia,AU,Victoria,-37.26588,148.12427,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,12,8,Australia,AU,Victoria,-38.32671,145.41847,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,21,Australia,AU,Victoria,-38.61984,146.33921,EPSG:4326 +HUMAN_OBSERVATION,Samantha Strong,1,,,2023,1,21,Australia,AU,Victoria,-37.24717,143.72057,EPSG:4326 +HUMAN_OBSERVATION,Jose Ramos,1,,,2023,7,17,Australia,AU,Victoria,-37.26566,144.26847,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,5,10,Australia,AU,Victoria,-38.31324,145.29438,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,12,23,Australia,AU,Victoria,-38.24381,147.26946,EPSG:4326 +HUMAN_OBSERVATION,Bertram Lobert,1,,,2020,12,18,Australia,AU,Victoria,-36.90028,145.93472,EPSG:4326 +HUMAN_OBSERVATION,Alberto Neto,1,,,2023,1,6,Australia,AU,Victoria,-37.44579,144.28335,EPSG:4326 +HUMAN_OBSERVATION,Phoebe Burns,1,,,2021,1,20,Australia,AU,Victoria,-38.8459,143.5582,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,1,11,Australia,AU,Victoria,-38.36314,146.13925,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2022,1,20,Australia,AU,Victoria,-37.32623,144.29949,EPSG:4326 +HUMAN_OBSERVATION,Thomas Burns,1,,,2022,12,21,Australia,AU,Victoria,-37.39083,144.22895,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,11,13,Australia,AU,Victoria,-38.29712,146.26048,EPSG:4326 +HUMAN_OBSERVATION,Timon van Asten,1,,,2021,9,7,Australia,AU,Victoria,-37.8312,145.69582,EPSG:4326 +HUMAN_OBSERVATION,Natalie Cursio,1,,,2022,4,13,Australia,AU,Victoria,-37.39889,144.32917,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2022,12,7,Australia,AU,Victoria,-37.44235,144.24607,EPSG:4326 +HUMAN_OBSERVATION,Ecology Australia,1,,,2022,11,23,Australia,AU,Victoria,-37.16198,145.16406,EPSG:4326 +HUMAN_OBSERVATION,Alice Ewing,1,,,2022,4,6,Australia,AU,Victoria,-37.37651,144.27898,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,5,11,Australia,AU,Victoria,-38.31331,145.29437,EPSG:4326 +HUMAN_OBSERVATION,i Naturalist,1,,,2020,9,29,Australia,AU,Victoria,-38.57641,143.93952,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,18,Australia,AU,Victoria,-38.33545,145.29337,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2022,1,16,Australia,AU,Victoria,-37.29108,143.25645,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2021,9,11,Australia,AU,Victoria,-38.10298,147.47051,EPSG:4326 +HUMAN_OBSERVATION,Catalina Mardones Martnez,1,,,2023,1,6,Australia,AU,Victoria,-37.46319,144.18716,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,6,20,Australia,AU,Victoria,-38.31192,145.42313,EPSG:4326 +HUMAN_OBSERVATION,Emma Birnbaum,1,,,2023,2,13,Australia,AU,Victoria,-38.54308,143.47901,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,12,3,Australia,AU,Victoria,-38.32681,145.41868,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,3,9,Australia,AU,Victoria,-38.29993,146.28181,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2022,11,23,Australia,AU,Victoria,-37.42414,144.17753,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,1,5,Australia,AU,Victoria,-38.35869,146.13137,EPSG:4326 +HUMAN_OBSERVATION,Jackson Clerke,1,,,2020,3,27,Australia,AU,Victoria,-38.44596,146.94349,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2022,4,12,Australia,AU,Victoria,-38.42054,146.92597,EPSG:4326 +HUMAN_OBSERVATION,Emma Birnbaum,1,,,2023,3,8,Australia,AU,Victoria,-38.56708,143.48071,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,5,Australia,AU,Victoria,-38.01084,141.62142,EPSG:4326 +HUMAN_OBSERVATION,Jennifer Murrell,1,,,2023,3,7,Australia,AU,Victoria,-37.85886,145.75434,EPSG:4326 +HUMAN_OBSERVATION,Nina Page,1,,,2023,6,9,Australia,AU,Victoria,-37.73034,143.82973,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2022,11,28,Australia,AU,Victoria,-37.46698,144.27251,EPSG:4326 +HUMAN_OBSERVATION,Cassey Briggs,1,,,2022,11,23,Australia,AU,Victoria,-37.42323,144.17656,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2022,12,13,Australia,AU,Victoria,-37.38251,144.21249,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2023,2,10,Australia,AU,Victoria,-37.47616,144.09181,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,3,17,Australia,AU,Victoria,-37.36987,144.24602,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,6,18,Australia,AU,Victoria,-38.41888,146.64296,EPSG:4326 +HUMAN_OBSERVATION,Thomas Burns,1,,,2022,12,1,Australia,AU,Victoria,-37.32371,144.3064,EPSG:4326 +HUMAN_OBSERVATION,MatthewFrawley,5,,Inside enclosure at Tidbinbilla,2022,1,20,Australia,AU,Australian Capital Territory,-35.46,148.91,EPSG:4326 +HUMAN_OBSERVATION,Terry Coates,1,,,2020,6,21,Australia,AU,Victoria,-38.1374,145.27641,EPSG:4326 +HUMAN_OBSERVATION,Thomas Burley,1,,,2021,6,30,Australia,AU,Victoria,-36.9945,148.57185,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2022,1,15,Australia,AU,Victoria,-37.33101,143.27946,EPSG:4326 +HUMAN_OBSERVATION,Luke Woodford,1,,,2022,5,2,Australia,AU,Victoria,-37.27575,148.30312,EPSG:4326 +HUMAN_OBSERVATION,Clint Schipper,1,,,2021,9,13,Australia,AU,Victoria,-37.88052,145.65933,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,2,13,Australia,AU,Victoria,-37.8833,145.98441,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,4,6,Australia,AU,Victoria,-38.48008,146.77528,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,26,Australia,AU,Victoria,-38.33792,145.48333,EPSG:4326 +HUMAN_OBSERVATION,Daniel Terrington,1,,,2020,11,4,Australia,AU,Victoria,-37.67591,147.48638,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2022,11,16,Australia,AU,Victoria,-37.44074,144.21155,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2020,5,12,Australia,AU,Victoria,-37.29951,145.58181,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,3,23,Australia,AU,Victoria,-38.02788,146.39789,EPSG:4326 +HUMAN_OBSERVATION,Dylan Lees,1,,,2022,4,13,Australia,AU,Victoria,-37.83417,145.68926,EPSG:4326 +HUMAN_OBSERVATION,Nicholas Carter,1,,Herbivore bait,2020,9,2,Australia,AU,Victoria,-37.58257,145.68993,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,1,19,Australia,AU,Victoria,-38.3267,146.44841,EPSG:4326 +HUMAN_OBSERVATION,Jasper Foley,1,,,2023,8,15,Australia,AU,Victoria,-37.6642,147.49538,EPSG:4326 +HUMAN_OBSERVATION,John Newman,4,,at least 4 individuals calling loudly in various parts of forest around Lake Elizabeth,2020,12,5,Australia,AU,Victoria,-38.55212,143.75752,EPSG:4326 +HUMAN_OBSERVATION,Jackson Clerke,1,,,2020,3,27,Australia,AU,Victoria,-38.33125,146.98235,EPSG:4326 +HUMAN_OBSERVATION,Emma Birnbaum,1,,,2023,3,8,Australia,AU,Victoria,-38.5637,143.48848,EPSG:4326 +HUMAN_OBSERVATION,Terry Coates,1,,,2020,6,13,Australia,AU,Victoria,-38.1367,145.27092,EPSG:4326 +HUMAN_OBSERVATION,Cassey Briggs,1,,,2023,2,9,Australia,AU,Victoria,-37.44695,144.11426,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,7,9,Australia,AU,Victoria,-38.34938,145.49707,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,9,1,Australia,AU,Victoria,-38.31301,145.29438,EPSG:4326 +HUMAN_OBSERVATION,Alberto Neto,1,,,2023,2,10,Australia,AU,Victoria,-37.47477,144.08447,EPSG:4326 +HUMAN_OBSERVATION,Emma Birnbaum,1,,,2021,11,10,Australia,AU,Victoria,-38.55454,143.72115,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,11,26,Australia,AU,Victoria,-38.20261,146.99047,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,1,17,Australia,AU,Victoria,-38.36192,146.17625,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,4,,,2022,11,25,Australia,AU,Queensland,-27.93914,153.35641,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,8,18,Australia,AU,Victoria,-38.2963,145.30954,EPSG:4326 +HUMAN_OBSERVATION,Rachael Bartlett,1,,,2021,6,6,Australia,AU,Victoria,-37.07237,148.33573,EPSG:4326 +HUMAN_OBSERVATION,Trevor Speirs,1,,,2020,10,22,Australia,AU,Victoria,-37.4885,144.3006,EPSG:4326 +HUMAN_OBSERVATION,Luke Woodford,1,,,2020,5,22,Australia,AU,Victoria,-37.95795,145.59794,EPSG:4326 +HUMAN_OBSERVATION,Matthew Looby,1,,,2020,11,26,Australia,AU,Victoria,-37.78672,145.70708,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,6,24,Australia,AU,Victoria,-38.39186,147.03468,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,13,Australia,AU,Victoria,-38.05193,141.20415,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,7,2,Australia,AU,Victoria,-38.32102,145.28764,EPSG:4326 +HUMAN_OBSERVATION,Luke Smith,1,,,2021,3,9,Australia,AU,Victoria,-38.0749,147.54437,EPSG:4326 +HUMAN_OBSERVATION,Geelong FNC,1,,,2021,5,6,Australia,AU,Victoria,-37.9007,144.12263,EPSG:4326 +HUMAN_OBSERVATION,Stephen Sims,1,,,2023,4,2,Australia,AU,Victoria,-38.33997,141.60459,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,13,Australia,AU,Victoria,-38.02716,141.01048,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,4,Australia,AU,Victoria,-37.98443,141.55467,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,6,25,Australia,AU,Victoria,-38.31328,145.29437,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,28,Australia,AU,Victoria,-38.31357,145.436,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,11,8,Australia,AU,Victoria,-37.89757,145.69513,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,3,1,Australia,AU,Victoria,-37.81151,145.67996,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,5,17,Australia,AU,Victoria,-38.51399,146.31758,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,6,Australia,AU,Victoria,-37.92349,141.51689,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,6,30,Australia,AU,Victoria,-38.43487,146.95334,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,3,30,Australia,AU,Victoria,-38.23097,146.24733,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,4,,,2023,2,19,Australia,AU,Queensland,-28.0986,153.37666,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,1,5,Australia,AU,Victoria,-38.36862,146.14166,EPSG:4326 +HUMAN_OBSERVATION,Luke Woodford,1,,,2020,4,27,Australia,AU,Victoria,-37.95795,145.59794,EPSG:4326 +HUMAN_OBSERVATION,Dylan Lees,1,,,2022,12,8,Australia,AU,Victoria,-37.3657,144.24095,EPSG:4326 +HUMAN_OBSERVATION,Alice Ewing,1,,,2023,12,5,Australia,AU,Victoria,-37.07956,143.26147,EPSG:4326 +HUMAN_OBSERVATION,Brett Goodman,1,,,2020,12,9,Australia,AU,Victoria,-36.95386,146.28518,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,17,Australia,AU,Victoria,-38.56586,146.22835,EPSG:4326 +HUMAN_OBSERVATION,Jemma Cripps,1,,,2021,1,18,Australia,AU,Victoria,-37.83508,145.68932,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,5,17,Australia,AU,Victoria,-38.50914,146.31212,EPSG:4326 +HUMAN_OBSERVATION,Greg Fyfe,1,,,2021,12,16,Australia,AU,Victoria,-37.29356,148.32553,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,12,23,Australia,AU,Victoria,-38.24438,147.15509,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2022,4,13,Australia,AU,Victoria,-37.83423,145.68916,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,1,Australia,AU,Victoria,-38.28592,145.29321,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,6,17,Australia,AU,Victoria,-37.48291,145.38333,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,12,23,Australia,AU,Victoria,-38.28339,147.21514,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,12,8,Australia,AU,Victoria,-38.48475,147.04023,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,13,Australia,AU,Victoria,-38.0534,141.15797,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,5,2,Australia,AU,Victoria,-37.33524,145.64015,EPSG:4326 +HUMAN_OBSERVATION,Nicholas Carter,1,,,2022,8,23,Australia,AU,Victoria,-37.91635,146.14842,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,4,Australia,AU,Victoria,-38.00952,141.58379,EPSG:4326 +HUMAN_OBSERVATION,Bertram Lobert,1,,,2023,2,22,Australia,AU,Victoria,-36.91677,145.94126,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2020,10,13,Australia,AU,Victoria,-37.17146,145.20429,EPSG:4326 +HUMAN_OBSERVATION,Joab Wilson,1,,,2023,1,4,Australia,AU,Victoria,-37.43318,144.1931,EPSG:4326 +HUMAN_OBSERVATION,Eh partners,1,,,2021,5,4,Australia,AU,Victoria,-38.31517,145.6163,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2022,9,7,Australia,AU,Victoria,-37.8599,146.02382,EPSG:4326 +HUMAN_OBSERVATION,Gemma Snowball,1,,,2023,11,15,Australia,AU,Victoria,-37.07781,143.25557,EPSG:4326 +HUMAN_OBSERVATION,Jemma Cripps,1,,,2021,1,18,Australia,AU,Victoria,-37.83524,145.68961,EPSG:4326 +HUMAN_OBSERVATION,Alberto Neto,1,,,2023,2,22,Australia,AU,Victoria,-37.50187,144.10302,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,3,Australia,AU,Victoria,-38.32678,145.41869,EPSG:4326 +HUMAN_OBSERVATION,Daniel Pendavingh,1,,,2020,7,3,Australia,AU,Victoria,-36.1626,146.65196,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,2,27,Australia,AU,Victoria,-38.36137,146.6222,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,9,1,Australia,AU,Victoria,-38.3712,145.37108,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,9,10,Australia,AU,Victoria,-38.37124,145.37115,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,7,12,Australia,AU,Victoria,-38.40657,146.85066,EPSG:4326 +HUMAN_OBSERVATION,Gayle Osborne,1,,,2022,11,24,Australia,AU,Victoria,-37.4433,144.259,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,7,8,Australia,AU,Victoria,-38.34938,145.49707,EPSG:4326 +HUMAN_OBSERVATION,Oriana Licul-Milevoj,1,,,2022,12,6,Australia,AU,Victoria,-37.44482,144.24854,EPSG:4326 +HUMAN_OBSERVATION,Bertram Lobert,1,,,2022,8,26,Australia,AU,Victoria,-37.02372,145.64963,EPSG:4326 +HUMAN_OBSERVATION,Gayle Osborne,1,,,2020,2,28,Australia,AU,Victoria,-37.4594,144.342,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,5,23,Australia,AU,Victoria,-37.26648,145.58712,EPSG:4326 +HUMAN_OBSERVATION,Emma Birnbaum,1,,,2022,11,8,Australia,AU,Victoria,-38.55454,143.72115,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,13,Australia,AU,Victoria,-38.01045,141.08213,EPSG:4326 +HUMAN_OBSERVATION,Georgina Zacks,1,,,2022,1,17,Australia,AU,Victoria,-37.64806,141.96235,EPSG:4326 +HUMAN_OBSERVATION,Brett Goodman,1,,Herbivore bait,2023,2,3,Australia,AU,Victoria,-38.45906,146.89382,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2021,6,28,Australia,AU,Victoria,-37.57712,145.69033,EPSG:4326 +HUMAN_OBSERVATION,Timon van Asten,1,,,2021,9,27,Australia,AU,Victoria,-37.9298,146.21782,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,1,31,Australia,AU,Victoria,-38.3636,145.43545,EPSG:4326 +HUMAN_OBSERVATION,Joab Wilson,1,,,2023,1,29,Australia,AU,Victoria,-37.42964,144.17537,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,5,12,Australia,AU,Victoria,-38.51672,146.36721,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,2,14,Australia,AU,Victoria,-37.40403,144.1001,EPSG:4326 +HUMAN_OBSERVATION,Luke Woodford,1,,,2021,11,17,Australia,AU,Victoria,-38.138,147.44619,EPSG:4326 +HUMAN_OBSERVATION,Trevor Speirs,1,,,2021,2,3,Australia,AU,Victoria,-37.5162,144.2603,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,6,Australia,AU,Victoria,-37.91606,141.52091,EPSG:4326 +HUMAN_OBSERVATION,Emma Birnbaum,1,,,2021,7,13,Australia,AU,Victoria,-38.80639,143.52018,EPSG:4326 +HUMAN_OBSERVATION,Phoebe Burns,1,,,2020,1,17,Australia,AU,Victoria,-38.60378,146.50995,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,6,Australia,AU,Victoria,-38.19674,141.64146,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,4,,,2022,11,26,Australia,AU,Queensland,-27.93914,153.35641,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,22,Australia,AU,Victoria,-38.36352,145.43563,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2022,1,30,Australia,AU,Victoria,-37.44621,144.25093,EPSG:4326 +HUMAN_OBSERVATION,Amber Button,1,,,2023,2,16,Australia,AU,Victoria,-37.45255,144.07233,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2022,1,16,Australia,AU,Victoria,-37.0892,143.29312,EPSG:4326 +HUMAN_OBSERVATION,Greg Fyfe,1,,,2021,12,16,Australia,AU,Victoria,-37.30715,148.27004,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,3,23,Australia,AU,Victoria,-38.34151,146.09509,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,6,6,Australia,AU,Victoria,-37.65338,147.45221,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,1,,Found dead,2022,2,14,Australia,AU,Victoria,-38.21222,146.32333,EPSG:4326 +HUMAN_OBSERVATION,Lalli Kirby,1,,,2023,2,15,Australia,AU,Victoria,-37.45264,144.07216,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,8,25,Australia,AU,Victoria,-37.33807,145.91366,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,19,Australia,AU,Victoria,-38.31301,145.29435,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2022,6,20,Australia,AU,Victoria,-37.47416,144.10159,EPSG:4326 +HUMAN_OBSERVATION,Emma Birnbaum,1,,,2021,5,26,Australia,AU,Victoria,-38.49269,143.64474,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,8,Australia,AU,Victoria,-37.37042,144.22681,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2022,4,26,Australia,AU,Victoria,-38.46983,146.89119,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,7,11,Australia,AU,Victoria,-37.29521,144.30712,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2022,1,16,Australia,AU,Victoria,-37.30084,143.25948,EPSG:4326 +HUMAN_OBSERVATION,Emma Birnbaum,1,,,2022,7,22,Australia,AU,Victoria,-38.49269,143.64474,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,12,23,Australia,AU,Victoria,-38.2614,147.13624,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,5,Australia,AU,Victoria,-38.00846,141.67013,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,7,Australia,AU,Victoria,-38.38817,145.28152,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,7,15,Australia,AU,Victoria,-38.31039,145.29349,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,1,1,Australia,AU,Victoria,-38.06022,141.1863,EPSG:4326 +HUMAN_OBSERVATION,Cassey Briggs,1,,,2023,2,14,Australia,AU,Victoria,-37.4013,144.09966,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,6,20,Australia,AU,Victoria,-37.45559,144.35612,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,5,30,Australia,AU,Victoria,-37.43864,144.35343,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2021,9,13,Australia,AU,Victoria,-36.89344,145.88974,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,6,23,Australia,AU,Victoria,-37.83244,145.71135,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,3,Australia,AU,Victoria,-38.01573,141.59923,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2022,1,16,Australia,AU,Victoria,-37.06148,143.25006,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2022,11,9,Australia,AU,Victoria,-37.47023,144.27705,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,7,Australia,AU,Victoria,-38.19882,141.68226,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,12,23,Australia,AU,Victoria,-38.28659,147.2378,EPSG:4326 +HUMAN_OBSERVATION,Brett Goodman,1,,,2023,12,5,Australia,AU,Victoria,-37.08221,143.25678,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,9,Australia,AU,Victoria,-37.47272,144.09159,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,3,Australia,AU,Victoria,-37.98239,141.53206,EPSG:4326 +HUMAN_OBSERVATION,Luke Smith,1,,,2021,3,11,Australia,AU,Victoria,-38.07614,147.49357,EPSG:4326 +HUMAN_OBSERVATION,David Bryant,1,,,2021,2,9,Australia,AU,Victoria,-36.45154,146.78885,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,5,17,Australia,AU,Victoria,-38.51776,146.32614,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,6,30,Australia,AU,Victoria,-38.34345,147.12098,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2020,7,23,Australia,AU,Victoria,-37.96022,146.256,EPSG:4326 +HUMAN_OBSERVATION,Ryan Barnaby,1,,,2023,6,2,Australia,AU,Victoria,-37.37812,144.24387,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,12,15,Australia,AU,Victoria,-37.57843,145.70187,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,1,,,2021,2,20,Australia,AU,Victoria,-38.54241,143.96303,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,9,16,Australia,AU,Victoria,-38.37124,145.37112,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,3,23,Australia,AU,Victoria,-38.02788,146.39789,EPSG:4326 +HUMAN_OBSERVATION,Phoebe Burns,1,,,2020,3,12,Australia,AU,Victoria,-37.59273,145.66921,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,2,14,Australia,AU,Victoria,-37.41146,144.09968,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,3,1,Australia,AU,Victoria,-37.81151,145.67996,EPSG:4326 +HUMAN_OBSERVATION,Rachael Bartlett,1,,,2021,6,2,Australia,AU,Victoria,-37.10019,148.2969,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,2,22,Australia,AU,Victoria,-37.66862,146.48932,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2021,2,2,Australia,AU,Victoria,-37.36129,145.91978,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2023,1,3,Australia,AU,Victoria,-37.46525,144.18589,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,7,8,Australia,AU,Victoria,-38.50598,146.926,EPSG:4326 +HUMAN_OBSERVATION,Jim Reside,1,,,2022,6,2,Australia,AU,Victoria,-37.72599,147.48029,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,17,Australia,AU,Victoria,-38.5619,146.23523,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,5,Australia,AU,Victoria,-38.17134,141.43276,EPSG:4326 +HUMAN_OBSERVATION,Luke Smith,1,,,2021,3,19,Australia,AU,Victoria,-38.09544,147.49084,EPSG:4326 +HUMAN_OBSERVATION,Chrissy Freestone,1,,,2020,3,22,Australia,AU,Victoria,-38.6188,143.62788,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,3,23,Australia,AU,Victoria,-38.28063,145.93548,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,8,Australia,AU,Victoria,-37.37434,144.2252,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2022,11,16,Australia,AU,Victoria,-37.44962,144.2624,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2022,1,17,Australia,AU,Victoria,-37.0881,143.28509,EPSG:4326 +HUMAN_OBSERVATION,Terry Coates,1,,,2020,6,28,Australia,AU,Victoria,-38.1347,145.27574,EPSG:4326 +HUMAN_OBSERVATION,Kaitlin Frost,4,,,2022,12,11,Australia,AU,Queensland,-27.350309,152.544945,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,3,29,Australia,AU,Victoria,-38.37856,146.67365,EPSG:4326 +HUMAN_OBSERVATION,Guillermo Mayor,1,,,2021,6,29,Australia,AU,Victoria,-37.04285,145.17242,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,8,20,Australia,AU,Victoria,-38.37121,145.37107,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,2,14,Australia,AU,Victoria,-37.41134,144.09834,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,1,25,Australia,AU,Victoria,-37.45483,144.26138,EPSG:4326 +HUMAN_OBSERVATION,Liz Clarke,4,,"This koala was crossing the road. It ended up climbing up a paper bark tree when we tried to move it along, because it was scared.",2021,7,19,Australia,AU,Queensland,-27.527925,153.269271,EPSG:4326 +HUMAN_OBSERVATION,Bertram Lobert,1,,,2023,2,24,Australia,AU,Victoria,-36.79873,145.92524,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,12,Australia,AU,Victoria,-38.04568,141.20535,EPSG:4326 +HUMAN_OBSERVATION,Bradley Jenner,1,,,2022,3,18,Australia,AU,Victoria,-37.44482,144.32581,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,6,24,Australia,AU,Victoria,-38.38098,147.01121,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,14,Australia,AU,Victoria,-38.01393,141.06541,EPSG:4326 +HUMAN_OBSERVATION,Jonathan Sordello,1,,,2020,12,9,Australia,AU,Victoria,-38.59823,146.50082,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,12,6,Australia,AU,Victoria,-38.35004,145.49804,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,12,15,Australia,AU,Victoria,-37.57843,145.70187,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,12,8,Australia,AU,Victoria,-38.34995,145.49803,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,4,27,Australia,AU,Victoria,-38.65962,146.68182,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,3,30,Australia,AU,Victoria,-38.2425,146.27649,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,4,,TIME = 4:05 PM; 2 males fighting on road and 2 in Eucalytus obliqua female with semi dependent joey.,2023,2,12,Australia,AU,South Australia,-34.99039,138.70654,EPSG:4326 +HUMAN_OBSERVATION,Jenny Lawrence,1,,,2022,11,8,Australia,AU,Victoria,-37.47884,149.67873,EPSG:4326 +HUMAN_OBSERVATION,Gayle Osborne,1,,,2020,9,15,Australia,AU,Victoria,-37.427,144.1924,EPSG:4326 +HUMAN_OBSERVATION,Ross Auchettl,3,,"While walking 8km around Kangaroo track and the gully below it, heard two male koalas bellow, and spotlit a third 20:40 til 22:30",2020,10,3,Australia,AU,Victoria,-37.78976,144.27217,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,6,28,Australia,AU,Victoria,-37.8679,145.71117,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,6,5,Australia,AU,Victoria,-37.65299,147.45651,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,12,Australia,AU,Victoria,-38.01607,141.14034,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,5,Australia,AU,Victoria,-38.03115,141.60643,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,9,Australia,AU,Victoria,-37.47272,144.09159,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,6,6,Australia,AU,Victoria,-37.64368,147.45244,EPSG:4326 +HUMAN_OBSERVATION,Joab Wilson,1,,,2023,2,9,Australia,AU,Victoria,-37.44746,144.10213,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,4,30,Australia,AU,Victoria,-38.39513,146.7773,EPSG:4326 +HUMAN_OBSERVATION,Emma Birnbaum,1,,,2022,8,9,Australia,AU,Victoria,-38.55414,143.50873,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2022,4,26,Australia,AU,Victoria,-38.47536,146.86214,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,12,Australia,AU,Victoria,-38.02017,141.17144,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2022,1,20,Australia,AU,Victoria,-37.32881,144.29962,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,9,1,Australia,AU,Victoria,-38.33339,145.43077,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,3,9,Australia,AU,Victoria,-38.22155,146.23035,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,8,Australia,AU,Victoria,-37.34417,144.2707,EPSG:4326 +HUMAN_OBSERVATION,Bertram Lobert,1,,,2021,5,12,Australia,AU,Victoria,-36.72648,145.73497,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,14,Australia,AU,Victoria,-38.3739,146.04162,EPSG:4326 +HUMAN_OBSERVATION,Cassey Briggs,1,,,2022,11,23,Australia,AU,Victoria,-37.42545,144.17699,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,6,28,Australia,AU,Victoria,-37.8679,145.71117,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,3,,,2021,2,21,Australia,AU,Victoria,-38.55382,143.94433,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,1,19,Australia,AU,Victoria,-38.3337,146.45029,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,28,Australia,AU,Victoria,-38.36663,145.43752,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2020,9,15,Australia,AU,Victoria,-36.88223,145.89508,EPSG:4326 +HUMAN_OBSERVATION,Nicholas Carter,1,,Herbivore bait,2020,9,1,Australia,AU,Victoria,-37.50058,145.61177,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2020,11,20,Australia,AU,Victoria,-37.13766,145.20042,EPSG:4326 +HUMAN_OBSERVATION,Grace Waller,1,,,2020,3,20,Australia,AU,Victoria,-37.44594,147.5269,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,1,31,Australia,AU,Victoria,-38.36793,145.27667,EPSG:4326 +HUMAN_OBSERVATION,Stephen Sims,1,,,2020,1,28,Australia,AU,Victoria,-38.25278,141.6323,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2022,12,7,Australia,AU,Victoria,-37.44493,144.24586,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,6,23,Australia,AU,Victoria,-37.8679,145.71134,EPSG:4326 +HUMAN_OBSERVATION,Luke Woodford,1,,,2022,4,15,Australia,AU,Victoria,-37.30284,148.26513,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2022,1,15,Australia,AU,Victoria,-37.31903,143.27741,EPSG:4326 +HUMAN_OBSERVATION,Kristen Agosta,1,,,2022,12,22,Australia,AU,Victoria,-37.38928,144.22566,EPSG:4326 +HUMAN_OBSERVATION,Alistair Leach,1,,,2022,1,26,Australia,AU,Victoria,-37.83637,145.37954,EPSG:4326 +HUMAN_OBSERVATION,Stephen Sims,1,,,2020,1,22,Australia,AU,Victoria,-38.36668,141.61666,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,2,9,Australia,AU,Victoria,-37.43981,144.09135,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,6,28,Australia,AU,Victoria,-37.86817,145.71302,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,3,15,Australia,AU,Victoria,-38.48123,146.42549,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,8,19,Australia,AU,Victoria,-38.37122,145.37107,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2021,2,3,Australia,AU,Victoria,-37.16918,145.19156,EPSG:4326 +HUMAN_OBSERVATION,Rachael Bartlett,1,,,2021,6,2,Australia,AU,Victoria,-37.11337,148.29162,EPSG:4326 +HUMAN_OBSERVATION,Bradley Jenner,1,,Sub fossil,2023,4,17,Australia,AU,Victoria,-37.44063,144.11136,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,6,Australia,AU,Victoria,-38.17715,141.65222,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2022,4,12,Australia,AU,Victoria,-38.42514,146.93596,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,3,,,2020,7,8,Australia,AU,Victoria,-38.5395,143.96959,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,3,,,2020,6,30,Australia,AU,Victoria,-38.54325,143.97029,EPSG:4326 +HUMAN_OBSERVATION,Nina Page,1,,,2022,12,9,Australia,AU,Victoria,-37.41014,144.19437,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,17,Australia,AU,Victoria,-38.51634,146.17788,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2021,6,11,Australia,AU,Victoria,-37.32466,145.64234,EPSG:4326 +HUMAN_OBSERVATION,Claire McCall,1,,,2021,6,2,Australia,AU,Victoria,-37.14578,148.29235,EPSG:4326 +HUMAN_OBSERVATION,Maggie Haines,1,,,2020,8,9,Australia,AU,Victoria,-35.87985,145.2753,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,6,30,Australia,AU,Victoria,-38.33562,147.03439,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2023,4,20,Australia,AU,Victoria,-37.72557,143.83243,EPSG:4326 +HUMAN_OBSERVATION,Stephen Sims,1,,,2023,1,25,Australia,AU,Victoria,-38.36674,141.61682,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,1,25,Australia,AU,Victoria,-37.46026,144.25722,EPSG:4326 +HUMAN_OBSERVATION,Rachael Bartlett,1,,,2020,5,21,Australia,AU,Victoria,-37.3075,148.26948,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,9,23,Australia,AU,Victoria,-38.34936,145.36848,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2020,10,14,Australia,AU,Victoria,-37.48231,145.45953,EPSG:4326 +HUMAN_OBSERVATION,Timon van Asten,1,,,2022,8,31,Australia,AU,Victoria,-37.33648,145.92927,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,2,13,Australia,AU,Victoria,-37.8833,145.98441,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2020,11,24,Australia,AU,Victoria,-37.16903,145.20003,EPSG:4326 +HUMAN_OBSERVATION,Joab Wilson,1,,,2023,1,29,Australia,AU,Victoria,-37.42848,144.17848,EPSG:4326 +HUMAN_OBSERVATION,Nicholas Carter,1,,,2020,8,24,Australia,AU,Victoria,-37.58375,145.69032,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2020,10,13,Australia,AU,Victoria,-37.17004,145.20143,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,3,17,Australia,AU,Victoria,-37.36987,144.24602,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2020,11,21,Australia,AU,Victoria,-37.14551,145.20574,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2020,11,24,Australia,AU,Victoria,-37.17126,145.2032,EPSG:4326 +HUMAN_OBSERVATION,Kristen Agosta,1,,,2022,12,22,Australia,AU,Victoria,-37.3904,144.22572,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,7,30,Australia,AU,Victoria,-38.39233,146.84251,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,1,,,2022,2,21,Australia,AU,Victoria,-38.22102,146.30726,EPSG:4326 +HUMAN_OBSERVATION,Trevor Speirs,1,,,2021,12,8,Australia,AU,Victoria,-37.2678,144.0541,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,8,Australia,AU,Victoria,-37.37042,144.22681,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,6,27,Australia,AU,Victoria,-38.31329,145.29435,EPSG:4326 +HUMAN_OBSERVATION,Lachlan King,1,,,2023,1,25,Australia,AU,Victoria,-37.13964,145.18823,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,1,,,2020,8,11,Australia,AU,Victoria,-38.5442,143.96091,EPSG:4326 +HUMAN_OBSERVATION,Jonathan Sordello,1,,,2020,12,10,Australia,AU,Victoria,-38.60641,146.50553,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2022,5,10,Australia,AU,Victoria,-38.44293,146.85035,EPSG:4326 +HUMAN_OBSERVATION,Trevor Speirs,1,,,2020,12,11,Australia,AU,Victoria,-37.4937,144.3002,EPSG:4326 +HUMAN_OBSERVATION,Jemma Cripps,1,,,2021,1,20,Australia,AU,Victoria,-37.89597,145.67073,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,3,9,Australia,AU,Victoria,-38.02849,146.40261,EPSG:4326 +HUMAN_OBSERVATION,Bertram Lobert,3,,,2020,5,5,Australia,AU,Victoria,-36.8559,145.9223,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2021,3,4,Australia,AU,Victoria,-37.83541,145.70922,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2023,12,11,Australia,AU,Victoria,-38.67168,143.39599,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,3,17,Australia,AU,Victoria,-37.36987,144.24602,EPSG:4326 +HUMAN_OBSERVATION,Nina Page,1,,,2022,12,5,Australia,AU,Victoria,-37.39299,144.1867,EPSG:4326 +HUMAN_OBSERVATION,Emily Richardson,3,,,2020,11,24,Australia,AU,Victoria,-37.8558,145.7186,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,4,Australia,AU,Victoria,-37.96258,141.54254,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,6,28,Australia,AU,Victoria,-37.86817,145.71302,EPSG:4326 +HUMAN_OBSERVATION,Luke Smith,1,,,2020,4,3,Australia,AU,Victoria,-38.12826,147.4501,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,7,12,Australia,AU,Victoria,-38.41084,146.84507,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,7,11,Australia,AU,Victoria,-37.30115,144.30436,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2020,10,13,Australia,AU,Victoria,-37.17073,145.20231,EPSG:4326 +HUMAN_OBSERVATION,Luke Woodford,1,,,2023,2,2,Australia,AU,Victoria,-36.94633,148.5213,EPSG:4326 +HUMAN_OBSERVATION,Maggie Haines,1,,,2020,8,5,Australia,AU,Victoria,-35.85559,145.44287,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,9,28,Australia,AU,Victoria,-37.94445,146.3735,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,8,2,Australia,AU,Victoria,-38.45749,146.84472,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,11,21,Australia,AU,Victoria,-38.3238,146.78281,EPSG:4326 +HUMAN_OBSERVATION,Bertram Lobert,1,,,2021,10,11,Australia,AU,Victoria,-37.02652,145.64975,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,3,Australia,AU,Victoria,-37.98235,141.51572,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,8,Australia,AU,Victoria,-37.37201,144.21973,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,12,Australia,AU,Victoria,-38.36342,145.4355,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,8,Australia,AU,Victoria,-37.34417,144.2707,EPSG:4326 +HUMAN_OBSERVATION,Gayle Osborne,1,,,2020,3,16,Australia,AU,Victoria,-37.4851,144.2987,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,2,20,Australia,AU,Victoria,-38.4419,146.49149,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,11,16,Australia,AU,Victoria,-38.35727,146.78787,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,5,18,Australia,AU,Victoria,-38.46006,146.89176,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2022,5,16,Australia,AU,Victoria,-38.42048,146.88475,EPSG:4326 +HUMAN_OBSERVATION,Daniel Terrington,1,,,2020,11,4,Australia,AU,Victoria,-37.66895,147.48832,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,5,23,Australia,AU,Victoria,-37.2656,145.58869,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,6,30,Australia,AU,Victoria,-38.38917,147.023,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2022,1,20,Australia,AU,Victoria,-37.32497,144.30172,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,13,Australia,AU,Victoria,-38.05006,141.11464,EPSG:4326 +HUMAN_OBSERVATION,Jemma Cripps,1,,,2020,4,28,Australia,AU,Victoria,-37.65955,147.56105,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,5,6,Australia,AU,Victoria,-38.64518,146.56232,EPSG:4326 +HUMAN_OBSERVATION,Greg Fyfe,1,,,2021,12,16,Australia,AU,Victoria,-37.34702,148.34568,EPSG:4326 +HUMAN_OBSERVATION,Catalina Mardones Martnez,1,,,2023,6,8,Australia,AU,Victoria,-37.42297,144.143,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,5,Australia,AU,Victoria,-37.99474,141.64628,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,9,5,Australia,AU,Victoria,-38.36284,145.31299,EPSG:4326 +HUMAN_OBSERVATION,N Perry,3,,,2021,12,6,Australia,AU,Victoria,-37.06926,143.35138,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,6,23,Australia,AU,Victoria,-37.8679,145.71134,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,27,Australia,AU,Victoria,-38.32709,145.28372,EPSG:4326 +HUMAN_OBSERVATION,Greg Fyfe,1,,,2021,12,17,Australia,AU,Victoria,-37.29684,148.26723,EPSG:4326 +HUMAN_OBSERVATION,Gemma Snowball,1,,,2023,12,16,Australia,AU,Victoria,-38.2184,141.55171,EPSG:4326 +HUMAN_OBSERVATION,Jye Andersen,1,,,2020,6,30,Australia,AU,Victoria,-39.01515,146.31799,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2022,4,12,Australia,AU,Victoria,-38.42528,146.91953,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,5,12,Australia,AU,Victoria,-38.5593,146.43774,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,28,Australia,AU,Victoria,-38.35849,145.32298,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,2,13,Australia,AU,Victoria,-37.88608,145.98763,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,4,Australia,AU,Victoria,-38.15037,141.51011,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,30,Australia,AU,Victoria,-38.33317,145.43033,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,1,10,Australia,AU,Victoria,-37.4588,144.26982,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2022,12,13,Australia,AU,Victoria,-37.38005,144.2118,EPSG:4326 +HUMAN_OBSERVATION,Milton Carter,3,,,2020,11,7,Australia,AU,New South Wales,-28.711473,153.523046,EPSG:4326 +HUMAN_OBSERVATION,Timon van Asten,1,,,2021,9,27,Australia,AU,Victoria,-37.93215,146.21294,EPSG:4326 +HUMAN_OBSERVATION,Thomas Burns,1,,,2022,12,21,Australia,AU,Victoria,-37.38754,144.22045,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,6,Australia,AU,Victoria,-37.93063,141.4666,EPSG:4326 +HUMAN_OBSERVATION,Jose Ramos,1,,,2023,6,28,Australia,AU,Victoria,-37.26995,144.26551,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,11,26,Australia,AU,Victoria,-38.18889,146.97145,EPSG:4326 +HUMAN_OBSERVATION,Daniel Terrington,1,,,2020,11,4,Australia,AU,Victoria,-37.66895,147.48832,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,1,,,2020,9,1,Australia,AU,Victoria,-38.53028,143.96756,EPSG:4326 +HUMAN_OBSERVATION,Brittney Gill,1,,,2020,6,29,Australia,AU,Victoria,-37.92095,146.27451,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,8,2,Australia,AU,Victoria,-38.39951,146.83247,EPSG:4326 +HUMAN_OBSERVATION,Ecology Australia,1,,,2021,2,16,Australia,AU,Victoria,-37.30191,145.58285,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,24,Australia,AU,Victoria,-38.33947,145.4856,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,6,Australia,AU,Victoria,-38.15916,141.44907,EPSG:4326 +HUMAN_OBSERVATION,Jonathan Sordello,1,,,2021,8,18,Australia,AU,Victoria,-37.19441,148.19546,EPSG:4326 +HUMAN_OBSERVATION,Club Geelong Field Naturalists,1,,,2022,2,25,Australia,AU,Victoria,-38.48108,143.71482,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2022,6,20,Australia,AU,Victoria,-38.42053,146.83416,EPSG:4326 +HUMAN_OBSERVATION,Kristen Agosta,1,,,2022,12,7,Australia,AU,Victoria,-37.38147,144.21141,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,5,13,Australia,AU,Victoria,-38.48691,146.43632,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2022,7,11,Australia,AU,Victoria,-38.43447,146.8734,EPSG:4326 +HUMAN_OBSERVATION,Matt Sleeth,1,,,2022,11,28,Australia,AU,Victoria,-36.79809,146.1831,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,21,Australia,AU,Victoria,-38.61755,146.36245,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2021,11,1,Australia,AU,Victoria,-37.71714,147.47756,EPSG:4326 +HUMAN_OBSERVATION,Trust For Nature,1,,,2020,3,12,Australia,AU,Victoria,-37.364,144.4724,EPSG:4326 +HUMAN_OBSERVATION,Kristen Agosta,1,,,2023,3,22,Australia,AU,Victoria,-37.44251,144.10507,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,7,11,Australia,AU,Victoria,-37.295,144.30847,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,12,23,Australia,AU,Victoria,-38.25951,147.16983,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,3,17,Australia,AU,Victoria,-37.36987,144.24602,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,9,20,Australia,AU,Victoria,-37.94524,146.37466,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,3,9,Australia,AU,Victoria,-38.02849,146.40261,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,2,11,Australia,AU,Victoria,-37.48693,144.08662,EPSG:4326 +HUMAN_OBSERVATION,Kristen Agosta,1,,,2022,12,3,Australia,AU,Victoria,-37.343,144.28322,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2022,6,20,Australia,AU,Victoria,-38.43892,146.83919,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,6,Australia,AU,Victoria,-38.19931,141.69413,EPSG:4326 +HUMAN_OBSERVATION,Jennifer Murrell,1,,,2023,3,7,Australia,AU,Victoria,-37.85886,145.75434,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,5,11,Australia,AU,Victoria,-38.59371,146.259,EPSG:4326 +HUMAN_OBSERVATION,Jemma Cripps,1,,,2023,1,23,Australia,AU,Victoria,-38.56711,143.43692,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2021,9,27,Australia,AU,Victoria,-38.07479,147.47626,EPSG:4326 +HUMAN_OBSERVATION,Catalina Mardones Martnez,1,,,2023,1,6,Australia,AU,Victoria,-37.46216,144.18836,EPSG:4326 +HUMAN_OBSERVATION,Luke Woodford,1,,,2022,3,25,Australia,AU,Victoria,-37.30606,148.2903,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,13,Australia,AU,Victoria,-38.0331,141.046,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,1,,,2021,11,16,Australia,AU,Victoria,-38.2297,147.2581,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,1,31,Australia,AU,Victoria,-38.3635,145.43549,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2022,12,14,Australia,AU,Victoria,-37.37739,144.212,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,5,23,Australia,AU,Victoria,-37.26635,145.58888,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,7,29,Australia,AU,Victoria,-38.3693,145.3699,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,12,7,Australia,AU,Victoria,-38.32671,145.41847,EPSG:4326 +HUMAN_OBSERVATION,Jackson Clerke,1,,,2020,3,27,Australia,AU,Victoria,-38.28437,146.90203,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,5,13,Australia,AU,Victoria,-38.4784,146.80239,EPSG:4326 +HUMAN_OBSERVATION,Kylie Singleton,1,,,2022,12,8,Australia,AU,Victoria,-37.93103,146.11253,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2022,12,9,Australia,AU,Victoria,-37.46236,144.26341,EPSG:4326 +HUMAN_OBSERVATION,Darren Herpich,1,,,2020,5,31,Australia,AU,Victoria,-38.31832,142.36253,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,1,,,2022,10,2,Australia,AU,Victoria,-38.55382,143.94433,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,14,Australia,AU,Victoria,-37.99937,140.98819,EPSG:4326 +HUMAN_OBSERVATION,Timon van Asten,1,,Herbivore bait,2021,10,6,Australia,AU,Victoria,-37.2685,148.27713,EPSG:4326 +HUMAN_OBSERVATION,Luke Smith,1,,,2020,3,16,Australia,AU,Victoria,-38.07489,147.54438,EPSG:4326 +HUMAN_OBSERVATION,Trevor Speirs,1,,,2020,12,3,Australia,AU,Victoria,-37.5129,144.2601,EPSG:4326 +HUMAN_OBSERVATION,Luke Woodford,1,,,2021,10,27,Australia,AU,Victoria,-38.04672,146.24853,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,3,Australia,AU,Victoria,-37.98465,141.52483,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,2,13,Australia,AU,Victoria,-37.88608,145.98763,EPSG:4326 +HUMAN_OBSERVATION,Timon van Asten,1,,Herbivore bait,2021,10,6,Australia,AU,Victoria,-37.27684,148.27894,EPSG:4326 +HUMAN_OBSERVATION,Nina Page,1,,,2022,5,20,Australia,AU,Victoria,-37.83509,145.69237,EPSG:4326 +HUMAN_OBSERVATION,David Bryant,1,,,2021,2,3,Australia,AU,Victoria,-36.94494,146.48826,EPSG:4326 +HUMAN_OBSERVATION,Mahalia Booth-Remmers,1,,,2020,2,6,Australia,AU,Victoria,-37.6687,147.48777,EPSG:4326 +HUMAN_OBSERVATION,Louise Romanin,1,,,2023,5,17,Australia,AU,Victoria,-38.38077,146.80808,EPSG:4326 +HUMAN_OBSERVATION,Nina Page,1,,,2022,12,7,Australia,AU,Victoria,-37.41174,144.19919,EPSG:4326 +HUMAN_OBSERVATION,Louise Durkin,1,,,2020,7,12,Australia,AU,Victoria,-37.48662,144.29777,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,6,17,Australia,AU,Victoria,-38.3441,146.81767,EPSG:4326 +HUMAN_OBSERVATION,Katrina,3,,,2020,7,26,Australia,AU,New South Wales,-28.685,153.497,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,4,Australia,AU,Victoria,-38.02692,141.59391,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,24,Australia,AU,Victoria,-38.33854,145.48245,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,6,1,Australia,AU,Victoria,-38.38078,145.31342,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,3,17,Australia,AU,Victoria,-37.36987,144.24602,EPSG:4326 +HUMAN_OBSERVATION,Terry Coates,1,,,2020,5,11,Australia,AU,Victoria,-38.1367,145.27092,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,2,27,Australia,AU,Victoria,-38.45087,146.58162,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,8,26,Australia,AU,Victoria,-38.37118,145.37122,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,9,3,Australia,AU,Victoria,-38.37121,145.37113,EPSG:4326 +HUMAN_OBSERVATION,Luke Smith,1,,,2021,3,11,Australia,AU,Victoria,-38.07614,147.49357,EPSG:4326 +HUMAN_OBSERVATION,william terry,1,,,2021,11,5,Australia,AU,Victoria,-37.37203,144.61355,EPSG:4326 +HUMAN_OBSERVATION,Bayley Winter-Farnham,1,,,2022,10,19,Australia,AU,Victoria,-38.3135,146.72176,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2021,9,13,Australia,AU,Victoria,-38.08896,147.47845,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2023,3,22,Australia,AU,Victoria,-37.46575,144.08732,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,21,Australia,AU,Victoria,-38.37522,145.33852,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,6,6,Australia,AU,Victoria,-37.64819,147.453,EPSG:4326 +HUMAN_OBSERVATION,Trevor Speirs,1,,,2022,2,4,Australia,AU,Victoria,-37.4992,144.4006,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,6,30,Australia,AU,Victoria,-38.47905,147.0394,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,12,23,Australia,AU,Victoria,-38.27732,147.19053,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,6,Australia,AU,Victoria,-38.20272,141.70009,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,5,13,Australia,AU,Victoria,-38.44815,146.79504,EPSG:4326 +HUMAN_OBSERVATION,Eloise Welsh,1,,,2023,7,4,Australia,AU,Victoria,-37.43754,144.37039,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,3,,,2020,1,13,Australia,AU,Queensland,-27.8927,153.33447,EPSG:4326 +HUMAN_OBSERVATION,Brett Goodman,1,,,2020,12,3,Australia,AU,Victoria,-37.36519,146.16403,EPSG:4326 +HUMAN_OBSERVATION,Cassey Briggs,1,,,2023,2,9,Australia,AU,Victoria,-37.43933,144.09216,EPSG:4326 +HUMAN_OBSERVATION,Kristen Agosta,1,,,2023,2,20,Australia,AU,Victoria,-37.50069,144.10323,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,6,6,Australia,AU,Victoria,-37.64819,147.453,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,4,6,Australia,AU,Victoria,-38.45241,146.74612,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,3,,,2020,8,28,Australia,AU,Queensland,-28.14514,153.44433,EPSG:4326 +HUMAN_OBSERVATION,Emma Birnbaum,1,,,2022,8,31,Australia,AU,Victoria,-38.80639,143.52018,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,5,23,Australia,AU,Victoria,-37.2656,145.58869,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,5,18,Australia,AU,Victoria,-38.46519,146.89162,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,7,30,Australia,AU,Victoria,-38.38489,146.86527,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,3,30,Australia,AU,Victoria,-38.21041,146.20766,EPSG:4326 +HUMAN_OBSERVATION,David Bryant,1,,,2021,2,3,Australia,AU,Victoria,-36.93344,146.47705,EPSG:4326 +HUMAN_OBSERVATION,Luke Woodford,1,,,2022,9,13,Australia,AU,Victoria,-37.61261,144.40487,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,1,19,Australia,AU,Victoria,-38.33809,146.44267,EPSG:4326 +HUMAN_OBSERVATION,Dylan Lees,1,,,2022,11,28,Australia,AU,Victoria,-37.40037,144.28101,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,17,Australia,AU,Victoria,-38.59369,146.13229,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,21,Australia,AU,Victoria,-38.68411,146.47278,EPSG:4326 +HUMAN_OBSERVATION,Jessica Ellis,1,,,2022,1,21,Australia,AU,Victoria,-38.4695,143.6197,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,8,28,Australia,AU,Victoria,-38.37116,145.37109,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,13,Australia,AU,Victoria,-38.04098,141.11707,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,3,23,Australia,AU,Victoria,-38.31205,146.04246,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,3,30,Australia,AU,Victoria,-38.2558,146.26787,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,14,Australia,AU,Victoria,-38.37919,146.05186,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,2,26,Australia,AU,Victoria,-38.41969,146.36946,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,8,31,Australia,AU,Victoria,-38.36938,145.3695,EPSG:4326 +HUMAN_OBSERVATION,Leila Brook,1,,,2021,6,5,Australia,AU,Victoria,-37.28735,144.27868,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,7,9,Australia,AU,Victoria,-38.31104,145.29425,EPSG:4326 +HUMAN_OBSERVATION,Joab Wilson,1,,,2022,12,7,Australia,AU,Victoria,-37.44593,144.24702,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,8,Australia,AU,Victoria,-38.29376,145.31947,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,4,12,Australia,AU,Victoria,-38.50142,146.74229,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,4,28,Australia,AU,Victoria,-37.42164,144.17928,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,24,Australia,AU,Victoria,-38.68304,146.48262,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,7,8,Australia,AU,Victoria,-38.4672,146.94879,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,3,1,Australia,AU,Victoria,-37.81151,145.67996,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2022,1,17,Australia,AU,Victoria,-37.08084,143.25558,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,5,Australia,AU,Victoria,-38.02177,141.63781,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2022,4,11,Australia,AU,Victoria,-37.83522,145.69282,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,3,,,2021,10,22,Australia,AU,Queensland,-28.1009,153.45014,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,6,5,Australia,AU,Victoria,-37.65504,147.45613,EPSG:4326 +HUMAN_OBSERVATION,Maggie Haines,1,,,2020,8,23,Australia,AU,Victoria,-35.87259,145.10485,EPSG:4326 +HUMAN_OBSERVATION,Eh partners,1,,,2021,5,3,Australia,AU,Victoria,-38.59676,145.52845,EPSG:4326 +HUMAN_OBSERVATION,Eamon O'Meara,1,,,2020,6,9,Australia,AU,Victoria,-38.32955,147.0125,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,6,Australia,AU,Victoria,-37.93183,141.51301,EPSG:4326 +HUMAN_OBSERVATION,Bertram Lobert,1,,,2023,2,3,Australia,AU,Victoria,-36.92737,145.83058,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,4,30,Australia,AU,Victoria,-38.397,146.78049,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,15,Australia,AU,Victoria,-37.5743,145.70337,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,5,22,Australia,AU,Victoria,-37.26716,145.58763,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,8,Australia,AU,Victoria,-37.34417,144.2707,EPSG:4326 +HUMAN_OBSERVATION,Jemma Cripps,1,,,2021,3,10,Australia,AU,Victoria,-37.5618,149.7493,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,14,Australia,AU,Victoria,-38.02388,140.99564,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,1,31,Australia,AU,Victoria,-38.3636,145.43545,EPSG:4326 +HUMAN_OBSERVATION,Brad Blake,1,,,2020,6,18,Australia,AU,Victoria,-37.7101,147.95715,EPSG:4326 +HUMAN_OBSERVATION,Charlie Pascoe,1,,Found dead,2021,1,15,Australia,AU,Victoria,-36.24222,146.26,EPSG:4326 +HUMAN_OBSERVATION,Samantha Strong,1,,Roost site,2023,1,21,Australia,AU,Victoria,-37.24717,143.72057,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,12,4,Australia,AU,Victoria,-38.32815,146.79123,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,21,Australia,AU,Victoria,-38.61929,146.34445,EPSG:4326 +HUMAN_OBSERVATION,Luke Woodford,1,,,2022,5,6,Australia,AU,Victoria,-37.29361,148.31403,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,12,23,Australia,AU,Victoria,-38.27476,147.17065,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,1,,,2022,11,14,Australia,AU,Victoria,-38.23237,147.29991,EPSG:4326 +HUMAN_OBSERVATION,Eh partners,1,,,2021,5,3,Australia,AU,Victoria,-38.64616,145.56683,EPSG:4326 +HUMAN_OBSERVATION,Claire McCall,1,,,2023,2,27,Australia,AU,Victoria,-37.96683,146.35205,EPSG:4326 +HUMAN_OBSERVATION,i Naturalist,1,,,2020,11,1,Australia,AU,Victoria,-38.67093,143.83986,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,12,11,Australia,AU,Victoria,-38.31353,145.43599,EPSG:4326 +HUMAN_OBSERVATION,Bev Yen,1,,,2021,2,3,Australia,AU,Victoria,-38.22037,146.28862,EPSG:4326 +HUMAN_OBSERVATION,Dylan Lees,1,,,2021,3,31,Australia,AU,Victoria,-37.91373,146.17252,EPSG:4326 +HUMAN_OBSERVATION,Greg Fyfe,1,,,2021,12,15,Australia,AU,Victoria,-37.27999,148.3029,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,1,17,Australia,AU,Victoria,-38.36779,146.1638,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,15,Australia,AU,Victoria,-37.5743,145.70337,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2020,11,24,Australia,AU,Victoria,-37.17126,145.20323,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,8,22,Australia,AU,Victoria,-38.37125,145.37111,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,4,Australia,AU,Victoria,-37.96252,141.55233,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,7,30,Australia,AU,Victoria,-38.39351,146.84539,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,2,13,Australia,AU,Victoria,-37.88608,145.98763,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,4,6,Australia,AU,Victoria,-38.48415,146.75929,EPSG:4326 +HUMAN_OBSERVATION,Dylan Lees,1,,,2022,12,20,Australia,AU,Victoria,-37.42909,144.30648,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,5,17,Australia,AU,Victoria,-38.57223,146.23231,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,11,26,Australia,AU,Victoria,-38.19976,146.98947,EPSG:4326 +HUMAN_OBSERVATION,Luke Woodford,1,,,2022,5,10,Australia,AU,Victoria,-37.31806,148.27339,EPSG:4326 +HUMAN_OBSERVATION,Nina Page,1,,,2023,9,18,Australia,AU,Victoria,-38.49166,143.41095,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2020,6,18,Australia,AU,Victoria,-37.31139,143.26639,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2022,1,15,Australia,AU,Victoria,-37.33008,143.27838,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,3,,,2023,4,6,Australia,AU,Queensland,-28.11533,153.3717,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,4,30,Australia,AU,Victoria,-38.39458,146.79088,EPSG:4326 +HUMAN_OBSERVATION,Brett Goodman,1,,Herbivore bait,2023,2,3,Australia,AU,Victoria,-38.45906,146.89382,EPSG:4326 +HUMAN_OBSERVATION,Jodie Honan,1,,,2021,9,12,Australia,AU,Victoria,-37.93425,141.55695,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,9,9,Australia,AU,Victoria,-38.37135,145.37125,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,7,12,Australia,AU,Victoria,-38.41497,146.85087,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,2,3,Australia,AU,Victoria,-38.33978,146.22834,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,3,,,2021,1,9,Australia,AU,Queensland,-27.94998,153.35717,EPSG:4326 +HUMAN_OBSERVATION,Trevor Speirs,1,,,2022,3,10,Australia,AU,Victoria,-37.4105,144.4234,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,27,Australia,AU,Victoria,-38.34471,145.30266,EPSG:4326 +HUMAN_OBSERVATION,Phoebe Burns,1,,,2021,1,21,Australia,AU,Victoria,-38.8307,143.5599,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,5,2,Australia,AU,Victoria,-37.33524,145.64015,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,30,Australia,AU,Victoria,-38.23437,146.30199,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,5,27,Australia,AU,Victoria,-38.30506,145.31631,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,8,Australia,AU,Victoria,-37.37434,144.2252,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2023,2,15,Australia,AU,Victoria,-37.45297,144.07224,EPSG:4326 +HUMAN_OBSERVATION,Kristen Agosta,1,,,2022,12,14,Australia,AU,Victoria,-37.36501,144.23203,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2022,1,16,Australia,AU,Victoria,-37.06065,143.24861,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2023,1,6,Australia,AU,Victoria,-37.44201,144.28582,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,10,15,Australia,AU,Victoria,-38.36354,145.43551,EPSG:4326 +HUMAN_OBSERVATION,Nic McCaffrey,1,,Found dead,2020,12,10,Australia,AU,Victoria,-36.83966,145.36719,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,5,17,Australia,AU,Victoria,-38.51334,146.32919,EPSG:4326 +HUMAN_OBSERVATION,Bradley Jenner,1,,,2022,3,10,Australia,AU,Victoria,-37.32759,144.29328,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,6,28,Australia,AU,Victoria,-37.8679,145.71117,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,24,Australia,AU,Victoria,-38.67751,146.5084,EPSG:4326 +HUMAN_OBSERVATION,Owen Lishmund,1,,,2023,5,18,Australia,AU,Victoria,-37.46733,144.07526,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,3,Australia,AU,Victoria,-37.9823,141.50522,EPSG:4326 +HUMAN_OBSERVATION,Matt Sleeth,1,,,2022,11,29,Australia,AU,Victoria,-36.80919,146.18151,EPSG:4326 +HUMAN_OBSERVATION,Susannah Hale,1,,,2021,8,19,Australia,AU,Victoria,-37.19261,148.18617,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,5,23,Australia,AU,Victoria,-37.26648,145.58712,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2022,5,16,Australia,AU,Victoria,-38.41602,146.85612,EPSG:4326 +HUMAN_OBSERVATION,Nina Page,1,,,2022,12,13,Australia,AU,Victoria,-37.37895,144.21195,EPSG:4326 +HUMAN_OBSERVATION,Nicholas Carter,1,,,2020,8,24,Australia,AU,Victoria,-37.57732,145.69048,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,3,,,2020,8,28,Australia,AU,Queensland,-28.14517,153.44458,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2021,9,28,Australia,AU,Victoria,-38.07252,147.48777,EPSG:4326 +HUMAN_OBSERVATION,i Naturalist,1,,,2020,11,4,Australia,AU,Victoria,-38.17613,145.13611,EPSG:4326 +HUMAN_OBSERVATION,Stephanie Rosestone,1,,,2020,3,9,Australia,AU,Victoria,-37.45369,143.93016,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2021,7,22,Australia,AU,Victoria,-38.08994,146.46128,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,3,9,Australia,AU,Victoria,-38.27292,146.2171,EPSG:4326 +HUMAN_OBSERVATION,Stephen Sims,1,,,2023,2,8,Australia,AU,Victoria,-38.36718,141.6177,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,26,Australia,AU,Victoria,-38.33796,145.48336,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,5,9,Australia,AU,Victoria,-38.33553,145.29333,EPSG:4326 +HUMAN_OBSERVATION,Darcy Watchorn,1,,,2020,3,30,Australia,AU,Victoria,-37.3618,145.80399,EPSG:4326 +HUMAN_OBSERVATION,Rachael Bartlett,1,,,2021,6,6,Australia,AU,Victoria,-37.06807,148.32462,EPSG:4326 +HUMAN_OBSERVATION,Emma Birnbaum,1,,,2022,8,8,Australia,AU,Victoria,-38.55123,143.42613,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,12,23,Australia,AU,Victoria,-38.23759,147.27083,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,21,Australia,AU,Victoria,-38.68386,146.46893,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,9,28,Australia,AU,Victoria,-37.94445,146.3735,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,3,15,Australia,AU,Victoria,-38.48367,146.32469,EPSG:4326 +HUMAN_OBSERVATION,Nina Page,1,,,2023,9,18,Australia,AU,Victoria,-38.49197,143.41214,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,2,27,Australia,AU,Victoria,-38.46123,146.62743,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,12,Australia,AU,Victoria,-38.03486,141.26562,EPSG:4326 +HUMAN_OBSERVATION,Kristen Agosta,1,,,2022,12,8,Australia,AU,Victoria,-37.3927,144.18515,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,2,19,Australia,AU,Victoria,-38.52203,146.27795,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,9,2,Australia,AU,Victoria,-38.36948,145.36989,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,11,13,Australia,AU,Victoria,-38.28099,146.26058,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,8,Australia,AU,Victoria,-37.36495,144.22764,EPSG:4326 +HUMAN_OBSERVATION,Daniel Terrington,1,,,2022,8,17,Australia,AU,Victoria,-38.46531,146.84668,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,8,Australia,AU,Victoria,-37.36495,144.22764,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,13,Australia,AU,Victoria,-38.04784,141.25155,EPSG:4326 +HUMAN_OBSERVATION,Timon van Asten,1,,,2021,9,14,Australia,AU,Victoria,-37.82821,145.6981,EPSG:4326 +HUMAN_OBSERVATION,Bertram Lobert,1,,,2022,2,4,Australia,AU,Victoria,-37.02649,145.64755,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2022,7,2,Australia,AU,Victoria,-38.34772,145.28496,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2023,4,19,Australia,AU,Victoria,-37.72521,143.83595,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,2,19,Australia,AU,Victoria,-38.5315,146.28803,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,6,Australia,AU,Victoria,-38.13507,141.45833,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,1,,,2020,8,31,Australia,AU,Victoria,-38.54658,143.96636,EPSG:4326 +HUMAN_OBSERVATION,Nic McCaffrey,1,,Found dead,2020,12,10,Australia,AU,Victoria,-36.84388,145.35388,EPSG:4326 +HUMAN_OBSERVATION,Brittney Gill,1,,,2021,1,17,Australia,AU,Victoria,-37.78796,145.83093,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,5,Australia,AU,Victoria,-37.87548,141.44225,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2021,6,22,Australia,AU,Victoria,-37.57705,145.68794,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,4,Australia,AU,Victoria,-37.96648,141.53067,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2022,12,5,Australia,AU,Victoria,-37.34419,144.28536,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2022,12,7,Australia,AU,Victoria,-37.36747,144.23898,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,4,24,Australia,AU,Victoria,-38.6265,146.40158,EPSG:4326 +HUMAN_OBSERVATION,Luke Woodford,1,,,2020,4,9,Australia,AU,Victoria,-37.95795,145.59794,EPSG:4326 +HUMAN_OBSERVATION,Luke Woodford,1,,,2022,5,23,Australia,AU,Victoria,-37.30262,148.29031,EPSG:4326 +HUMAN_OBSERVATION,Joab Wilson,1,,,2023,1,29,Australia,AU,Victoria,-37.43032,144.17528,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,2,3,Australia,AU,Victoria,-38.31546,146.23444,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,3,,,2021,6,15,Australia,AU,Queensland,-27.978,153.27776,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,3,8,Australia,AU,Victoria,-37.37042,144.22681,EPSG:4326 +HUMAN_OBSERVATION,Brett Goodman,1,,,2023,6,6,Australia,AU,Victoria,-35.74597,144.25205,EPSG:4326 +HUMAN_OBSERVATION,i Naturalist,1,,,2020,8,24,Australia,AU,Victoria,-38.30507,143.25426,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,6,Australia,AU,Victoria,-38.20905,141.73755,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,6,5,Australia,AU,Victoria,-37.65504,147.45613,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,13,Australia,AU,Victoria,-38.04566,141.11381,EPSG:4326 +HUMAN_OBSERVATION,Luke Smith,1,,,2021,3,19,Australia,AU,Victoria,-38.09544,147.49084,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,2,Australia,AU,Victoria,-38.3634,145.43549,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,11,6,Australia,AU,Victoria,-38.36183,145.40994,EPSG:4326 +HUMAN_OBSERVATION,Tom Schneider,1,,,2022,10,8,Australia,AU,Victoria,-37.95098,141.45636,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,5,6,Australia,AU,Victoria,-38.64966,146.54511,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2022,11,8,Australia,AU,Victoria,-37.89669,145.69553,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,5,23,Australia,AU,Victoria,-37.26635,145.58888,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,2,13,Australia,AU,Victoria,-37.8833,145.98441,EPSG:4326 +HUMAN_OBSERVATION,Sera Blair,1,,,2022,1,16,Australia,AU,Victoria,-37.08782,143.29235,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,5,22,Australia,AU,Victoria,-37.26762,145.58754,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,1,17,Australia,AU,Victoria,-38.36072,146.17408,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2020,9,30,Australia,AU,Victoria,-38.29999,146.28231,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,1,19,Australia,AU,Victoria,-38.34318,146.46824,EPSG:4326 +HUMAN_OBSERVATION,Joanne Isaac,1,,,2023,2,14,Australia,AU,Victoria,-37.40039,144.09971,EPSG:4326 +HUMAN_OBSERVATION,Kelly McDonald,1,,,2022,11,29,Australia,AU,Victoria,-37.34915,144.25305,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,9,27,Australia,AU,Victoria,-38.32961,145.36895,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,1,,,2021,11,21,Australia,AU,Victoria,-38.3257,146.77975,EPSG:4326 +HUMAN_OBSERVATION,Nina Kerr,1,,,2023,2,21,Australia,AU,Victoria,-37.81755,145.39259,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,1,,,2023,6,17,Australia,AU,Victoria,-37.48291,145.38333,EPSG:4326 +HUMAN_OBSERVATION,Mike Johnston,1,,,2021,8,20,Australia,AU,Victoria,-38.36573,145.27579,EPSG:4326 +OBSERVATION,Martin Butterfield,1,,,2020,4,7,Australia,AU,Victoria,-37.5501,149.7373,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,7,10,Australia,AU,Queensland,-27.6617,151.996658,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83211,152.34149,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.82761,152.346775,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.83218,152.34396,EPSG:4326 +OCCURRENCE,,1,,,2020,6,21,Australia,AU,Queensland,-27.38155,152.91544,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.834955,152.346094,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,8,25,Australia,AU,Queensland,-27.695383,152.08715,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.832323,152.34387,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,5,Australia,AU,Queensland,-28.048,151.652,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.832568,152.344792,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,11,30,Australia,AU,Queensland,-27.27645,152.9614,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,8,29,Australia,AU,Queensland,-25.368472,152.906334,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.833216,152.343517,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.828226,152.345279,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,28,Australia,AU,Queensland,-27.691474,152.067754,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.835358,152.342691,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83294,152.34258,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,8,25,Australia,AU,Queensland,-27.70093,152.08237,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82643,152.345763,EPSG:4326 +OCCURRENCE,,1,,,2020,5,24,Australia,AU,Queensland,-26.3822,153.0416,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83329,152.34555,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,7,11,Australia,AU,Queensland,-27.636392,151.986113,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,11,6,Australia,AU,Queensland,-27.547967,152.40304,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.83185,152.3446,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,7,Australia,AU,Queensland,-27.67891,152.09119,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,14,Australia,AU,Queensland,-27.495892,152.247423,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,1,26,Australia,AU,Queensland,-27.262091,152.19263,EPSG:4326 +OCCURRENCE,,1,,,2021,3,29,Australia,AU,Queensland,-26.4256,152.8084,EPSG:4326 +OCCURRENCE,,1,,,2020,9,30,Australia,AU,Queensland,-26.4256,152.8054,EPSG:4326 +OCCURRENCE,,1,,,2020,9,7,Australia,AU,Queensland,-26.432,152.9856,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83319,152.34073,EPSG:4326 +OCCURRENCE,,1,,,2020,7,1,Australia,AU,Queensland,-26.3777,152.8641,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,1,8,Australia,AU,Queensland,-26.320189,152.6734,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,8,Australia,AU,Queensland,-27.54013,153.05286,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,1,13,Australia,AU,Queensland,-27.516389,152.288056,EPSG:4326 +OCCURRENCE,,1,,,2020,9,1,Australia,AU,Queensland,-26.3785,153.0295,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.8336,152.34291,EPSG:4326 +OCCURRENCE,,1,,,2020,11,10,Australia,AU,Queensland,-26.4302,152.8823,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82537,152.34761,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,7,Australia,AU,Queensland,-27.67781,152.09126,EPSG:4326 +OCCURRENCE,,1,,,2021,2,20,Australia,AU,Queensland,-26.314,152.9803,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.83231,152.3441,EPSG:4326 +OCCURRENCE,,1,,,2020,9,6,Australia,AU,Queensland,-26.3497,153.0127,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.82655,152.34599,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,9,24,Australia,AU,Queensland,-27.61103,152.64671,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.8294,152.34473,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2021,4,24,Australia,AU,Queensland,-27.784097,152.386078,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,1,20,Australia,AU,Queensland,-27.496634,152.249513,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.825054,152.347435,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.831982,152.344089,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.830468,152.344607,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82642,152.34756,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.83225,152.34422,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.829882,152.344573,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82574,152.34666,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,1,25,Australia,AU,Queensland,-26.37824,153.019726,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.833397,152.343842,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,1,11,Australia,AU,Queensland,-27.495256,152.250014,EPSG:4326 +OCCURRENCE,,1,,,2020,7,18,Australia,AU,Queensland,-26.3983,152.9842,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.83026,152.34465,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.83196,152.34401,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82438,152.3476,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,14,Australia,AU,Queensland,-27.572391,152.139254,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.832925,152.341037,EPSG:4326 +OCCURRENCE,,1,,,2020,8,1,Australia,AU,Queensland,-26.3666,152.9297,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.830204,152.341864,EPSG:4326 +OCCURRENCE,,1,,,2021,5,19,Australia,AU,Queensland,-26.4474,152.9148,EPSG:4326 +OCCURRENCE,,1,,,2021,9,13,Australia,AU,Queensland,-26.3474,152.8152,EPSG:4326 +OCCURRENCE,,1,,,2020,6,27,Australia,AU,Queensland,-26.3612,152.8151,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,1,5,Australia,AU,Queensland,-27.488974,152.243087,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.546171,152.082855,EPSG:4326 +OCCURRENCE,,1,,,2021,2,22,Australia,AU,Queensland,-26.33,153.0335,EPSG:4326 +OCCURRENCE,,1,,,2020,10,18,Australia,AU,Queensland,-26.274,152.9055,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.829369,152.34476,EPSG:4326 +OCCURRENCE,,1,,,2021,7,19,Australia,AU,Queensland,-26.3482,152.9875,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,7,10,Australia,AU,Queensland,-27.65965,151.992367,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.83216,152.34442,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83242,152.33936,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82582,152.34749,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,7,Australia,AU,Queensland,-27.6776,152.09187,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.82658,152.34605,EPSG:4326 +OCCURRENCE,,1,,,2020,8,25,Australia,AU,Queensland,-26.46924,153.04677,EPSG:4326 +OCCURRENCE,,1,,,2020,9,3,Australia,AU,Queensland,-26.479631,152.944802,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83535,152.34586,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,1,3,Australia,AU,Queensland,-27.533879,152.183727,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,3,29,Australia,AU,Queensland,-27.41488,152.44037,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,7,Australia,AU,Queensland,-27.722035,152.053136,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,9,27,Australia,AU,Queensland,-27.580246,152.260841,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,28,Australia,AU,Queensland,-27.690957,152.068253,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.832238,152.339441,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.832166,152.343817,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,9,27,Australia,AU,Queensland,-27.496009,152.247495,EPSG:4326 +OCCURRENCE,,1,,,2020,10,28,Australia,AU,Queensland,-26.4441,153.0098,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,1,13,Australia,AU,Queensland,-27.6613,151.9891,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,11,6,Australia,AU,Queensland,-27.547,153.058,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.824575,152.34738,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.826645,152.346207,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,19,Australia,AU,Queensland,-27.831947,152.343993,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,12,27,Australia,AU,Queensland,-27.2841,152.9265,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,1,16,Australia,AU,Queensland,-26.219686,152.714081,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,2,3,Australia,AU,Queensland,-26.072733,152.256567,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.826623,152.346031,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.830645,152.344586,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,10,8,Australia,AU,Queensland,-27.703844,152.089933,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.571699,152.139444,EPSG:4326 +OCCURRENCE,,1,,,2020,6,,Australia,AU,Queensland,-26.4344,153.0055,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,11,5,Australia,AU,Queensland,-27.572691,152.264254,EPSG:4326 +OCCURRENCE,,1,,,2020,1,6,Australia,AU,Queensland,-26.4347,153.0052,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,7,16,Australia,AU,Queensland,-25.3435,152.8244,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.8308,152.34453,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82682,152.34695,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.829095,152.344905,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.8266,152.34593,EPSG:4326 +OCCURRENCE,,1,,,2021,7,1,Australia,AU,Queensland,-26.4216,153.0028,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83441,152.34625,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83342,152.33946,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,31,Australia,AU,Queensland,-27.456986,152.40141,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,7,Australia,AU,Queensland,-27.67764,152.09142,EPSG:4326 +OCCURRENCE,,1,,,2020,9,9,Australia,AU,Queensland,-26.4035,152.9838,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,10,10,Australia,AU,Queensland,-27.572007,152.138528,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,7,10,Australia,AU,Queensland,-27.659452,151.99214,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,3,Australia,AU,Queensland,-27.54013,153.05286,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,1,31,Australia,AU,Queensland,-26.040383,152.782317,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,10,8,Australia,AU,Queensland,-27.704376,152.090698,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,14,Australia,AU,Queensland,-27.495829,152.247305,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,8,28,Australia,AU,Queensland,-27.595212,151.988682,EPSG:4326 +OCCURRENCE,,1,,,2020,7,1,Australia,AU,Queensland,-26.3772,152.8645,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.83191,152.34451,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.83235,152.34427,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,8,25,Australia,AU,Queensland,-27.695017,152.08675,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.83245,152.34407,EPSG:4326 +OCCURRENCE,,1,,,2020,1,17,Australia,AU,Queensland,-26.3875,152.8739,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.82932,152.34482,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,5,2,Australia,AU,Queensland,-27.648624,152.043198,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.827648,152.345834,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,8,25,Australia,AU,Queensland,-27.70095,152.08235,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,29,Australia,AU,Queensland,-27.833432,152.339462,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.833903,152.345211,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.833231,152.345412,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.82656,152.34596,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.829213,152.344716,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.833104,152.339143,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82652,152.34637,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.82644,152.34578,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.83147,152.34448,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,1,25,Australia,AU,Queensland,-26.379671,153.105672,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,7,22,Australia,AU,Queensland,-27.643611,152.055,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.83197,152.34409,EPSG:4326 +OCCURRENCE,,1,,,2020,1,5,Australia,AU,Queensland,-26.3695,152.9407,EPSG:4326 +OCCURRENCE,,1,,,2020,1,3,Australia,AU,Queensland,-26.3696,152.9406,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,3,29,Australia,AU,Queensland,-27.4694,152.59024,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,5,8,Australia,AU,Queensland,-27.649093,152.04334,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82929,152.34491,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.829193,152.344645,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,3,8,Australia,AU,Queensland,-27.5525,152.4751,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.82941,152.34464,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,7,10,Australia,AU,Queensland,-27.658951,151.995221,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.826346,152.345907,EPSG:4326 +OCCURRENCE,,1,,,2020,7,29,Australia,AU,Queensland,-26.47856,153.05929,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.83179,152.34492,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.826345,152.345847,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,8,25,Australia,AU,Queensland,-27.695367,152.086983,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.82639,152.34616,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.83109,152.34544,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,8,25,Australia,AU,Queensland,-27.700785,152.082205,EPSG:4326 +OCCURRENCE,,1,,,2020,6,15,Australia,AU,Queensland,-26.4258,152.8044,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,5,30,Australia,AU,Queensland,-27.718983,152.086861,EPSG:4326 +OCCURRENCE,,1,,,2020,8,31,Australia,AU,Queensland,-26.3002,152.9449,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2021,9,15,Australia,AU,Queensland,-27.781212,152.383653,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,8,25,Australia,AU,Queensland,-27.69505,152.0869,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,1,8,Australia,AU,Queensland,-27.451318,152.368532,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,1,10,Australia,AU,Queensland,-27.530585,152.087415,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.826654,152.345943,EPSG:4326 +OCCURRENCE,,1,,,2020,8,30,Australia,AU,Queensland,-26.4264,152.8074,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2021,8,25,Australia,AU,Queensland,-27.474217,152.400742,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,3,28,Australia,AU,Queensland,-27.12888,152.9043,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,1,18,Australia,AU,Queensland,-27.6495,151.9564,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,30,Australia,AU,Queensland,-27.823225,151.576014,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.82916,152.34473,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82943,152.344572,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,1,2,Australia,AU,Queensland,-26.35855,152.677894,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.82937,152.34464,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,1,20,Australia,AU,Queensland,-26.204831,152.440975,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,10,9,Australia,AU,Queensland,-27.7008,153.083,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82593,152.34732,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2021,5,29,Australia,AU,Queensland,-27.24317,152.420284,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,14,Australia,AU,Queensland,-27.494927,152.246571,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,1,4,Australia,AU,Queensland,-27.26691,152.95805,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,5,8,Australia,AU,Queensland,-27.64864,152.04343,EPSG:4326 +OCCURRENCE,,1,,,2020,4,29,Australia,AU,Queensland,-26.369,152.9457,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2021,9,23,Australia,AU,Queensland,-27.469653,152.538969,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,3,31,Australia,AU,Queensland,-25.219035,149.032883,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.826472,152.345813,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,1,9,Australia,AU,Queensland,-28.225833,152.426806,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.83173,152.34445,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.832327,152.344678,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,7,Australia,AU,Queensland,-27.722206,152.053524,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83434,152.3436,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,1,18,Australia,AU,Queensland,-26.242361,152.662969,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,9,26,Australia,AU,Queensland,-27.496345,152.248252,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82594,152.34746,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,5,14,Australia,AU,Queensland,-27.572391,152.139254,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.835484,152.344879,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,1,16,Australia,AU,Queensland,-26.219686,152.714081,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.829295,152.344449,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,12,20,Australia,AU,Queensland,-27.54156,153.04891,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,1,25,Australia,AU,Queensland,-26.38778,153.027582,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,11,6,Australia,AU,Queensland,-27.547,153.058,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,7,13,Australia,AU,Queensland,-17.535123,145.452496,EPSG:4326 +OCCURRENCE,,1,,,2020,7,1,Australia,AU,Queensland,-26.38,152.8638,EPSG:4326 +OCCURRENCE,,1,,,2021,4,23,Australia,AU,Queensland,-26.3632,152.7818,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.83216,152.34445,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,4,24,Australia,AU,Queensland,-27.26712,152.95778,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,7,Australia,AU,Queensland,-27.6737,152.01619,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.832173,152.344414,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.83232,152.34425,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,4,26,Australia,AU,Queensland,-27.666437,152.076107,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.831286,152.344575,EPSG:4326 +OCCURRENCE,,1,,,2020,10,17,Australia,AU,Queensland,-26.3696,152.9406,EPSG:4326 +OCCURRENCE,,1,,,2021,6,25,Australia,AU,Queensland,-26.4291,152.8059,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,9,20,Australia,AU,Queensland,-27.651667,152.020556,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,5,2,Australia,AU,Queensland,-27.64895,152.0469,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82558,152.34689,EPSG:4326 +OCCURRENCE,,1,,,2020,8,6,Australia,AU,Queensland,-26.470192,152.983389,EPSG:4326 +OCCURRENCE,,1,,,2020,9,6,Australia,AU,Queensland,-26.3713,152.8384,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,1,26,Australia,AU,Queensland,-27.262304,152.192894,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,6,19,Australia,AU,Queensland,-27.36513,151.63063,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.834383,152.342732,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,9,22,Australia,AU,Queensland,-27.67385,152.01529,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,11,5,Australia,AU,Queensland,-27.85068,150.38849,EPSG:4326 +OCCURRENCE,,1,,,2021,8,16,Australia,AU,Queensland,-26.3613,152.815,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,29,Australia,AU,Queensland,-27.833192,152.339471,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,7,9,Australia,AU,Queensland,-27.215553,153.06665,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.571699,152.139444,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.830304,152.342157,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,1,20,Australia,AU,Queensland,-26.363159,152.827689,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,1,24,Australia,AU,Queensland,-26.37968,153.105644,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.829335,152.34457,EPSG:4326 +OCCURRENCE,,1,,,2020,4,23,Australia,AU,Queensland,-26.3696,152.9406,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.83231,152.34418,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.826681,152.346173,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,6,30,Australia,AU,Queensland,-25.59219,152.669935,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82643,152.3463,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,14,Australia,AU,Queensland,-27.495039,152.246644,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.82929,152.34467,EPSG:4326 +OCCURRENCE,,1,,,2020,6,18,Australia,AU,Queensland,-26.3988,153.1105,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.828931,152.344942,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,5,8,Australia,AU,Queensland,-27.6488,152.04329,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,8,29,Australia,AU,Queensland,-27.37071,152.52467,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,8,4,Australia,AU,Queensland,-27.53118,152.1833,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.832768,152.339007,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,8,14,Australia,AU,Queensland,-28.760322,151.843413,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82633,152.3459,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,1,26,Australia,AU,Queensland,-26.379675,153.105796,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83249,152.34277,EPSG:4326 +OCCURRENCE,,1,,,2020,6,1,Australia,AU,Queensland,-26.4258,152.8044,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,2,15,Australia,AU,Queensland,-27.5506,152.4739,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,1,25,Australia,AU,Queensland,-26.37824,153.019726,EPSG:4326 +OCCURRENCE,,1,,,2020,8,20,Australia,AU,Queensland,-26.40096,152.88143,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,8,25,Australia,AU,Queensland,-27.695033,152.086983,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.82939,152.34459,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,11,16,Australia,AU,Queensland,-27.51508,152.49315,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,8,25,Australia,AU,Queensland,-27.6953,152.086983,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,1,11,Australia,AU,Queensland,-27.495132,152.250185,EPSG:4326 +OCCURRENCE,,1,,,2020,8,16,Australia,AU,Queensland,-26.4264,152.8074,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,2,2,Australia,AU,Queensland,-26.37806,153.03792,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,7,Australia,AU,Queensland,-27.722131,152.052974,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,10,18,Australia,AU,Queensland,-27.503392,151.993864,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.83197,152.34418,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,24,Australia,AU,Queensland,-27.26702,152.95805,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.82925,152.3447,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,1,29,Australia,AU,Queensland,-27.65907,152.10828,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.8285,152.345019,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.82657,152.34615,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,11,1,Australia,AU,Queensland,-27.675122,152.012908,EPSG:4326 +OCCURRENCE,,1,,,2020,7,11,Australia,AU,Queensland,-26.3979,153.1096,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,25,Australia,AU,Queensland,-27.554031,152.18343,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.825701,152.346584,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,1,5,Australia,AU,Queensland,-27.531389,153.059722,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,10,11,Australia,AU,Queensland,-27.645184,151.986684,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.825935,152.346339,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.833652,152.343204,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,7,Australia,AU,Queensland,-27.67454,152.01173,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.83006,152.34456,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.83205,152.3441,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,13,Australia,AU,Queensland,-27.50661,153.0862,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,7,10,Australia,AU,Queensland,-27.661707,151.9967,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.83114,152.34454,EPSG:4326 +OCCURRENCE,,1,,,2021,9,25,Australia,AU,Queensland,-26.4291,152.8059,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.828916,152.344909,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,2,5,Australia,AU,Queensland,-26.410239,152.665842,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83425,152.3427,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82548,152.3472,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2021,9,17,Australia,AU,Queensland,-27.681513,152.68843,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83372,152.34308,EPSG:4326 +OCCURRENCE,,1,,,2020,7,3,Australia,AU,Queensland,-26.3741,153.0388,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.830722,152.34427,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.83009,152.34453,EPSG:4326 +OCCURRENCE,,1,,,2020,8,12,Australia,AU,Queensland,-26.3617,152.7812,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.8264,152.34576,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,,Australia,AU,Queensland,-18.189889,145.335111,EPSG:4326 +OCCURRENCE,,1,,,2020,12,16,Australia,AU,Queensland,-26.3822,153.0284,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.826347,152.345943,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82996,152.3445,EPSG:4326 +OCCURRENCE,,1,,,2020,8,28,Australia,AU,Queensland,-26.39,152.7925,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,7,Australia,AU,Queensland,-27.674797,152.012803,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,28,Australia,AU,Queensland,-27.691852,152.067839,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.835246,152.343767,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2021,9,5,Australia,AU,Queensland,-27.38561,152.92256,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.831923,152.344161,EPSG:4326 +OCCURRENCE,,1,,,2020,1,25,Australia,AU,Queensland,-26.4181,153.0532,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.83169,152.34464,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,4,17,Australia,AU,Queensland,-27.457201,152.401805,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.834168,152.34628,EPSG:4326 +OCCURRENCE,,1,,,2020,11,30,Australia,AU,Queensland,-26.4548,152.8597,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.832102,152.34396,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.82662,152.3459,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,4,10,Australia,AU,Queensland,-27.714831,152.060257,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,7,14,Australia,AU,Queensland,-27.532045,152.311113,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,9,24,Australia,AU,Queensland,-27.628364,151.947427,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83239,152.34419,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,1,7,Australia,AU,Queensland,-26.395531,152.666044,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.83224,152.34438,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.825871,152.346549,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.825213,152.347591,EPSG:4326 +OCCURRENCE,,1,,,2020,8,22,Australia,AU,Queensland,-26.3971,152.8502,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.824243,152.347927,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,28,Australia,AU,Queensland,-27.690883,152.068275,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,12,Australia,AU,Queensland,-27.710759,151.891891,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83502,152.34294,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,10,8,Australia,AU,Queensland,-27.837638,153.27689,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,27,Australia,AU,Queensland,-27.379184,152.017505,EPSG:4326 +OCCURRENCE,,1,,,2021,9,16,Australia,AU,Queensland,-26.3613,152.815,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,5,8,Australia,AU,Queensland,-27.648861,152.043255,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,12,23,Australia,AU,Queensland,-27.725696,152.075671,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,1,24,Australia,AU,Queensland,-26.38779,153.027662,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.83237,152.34431,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,4,19,Australia,AU,Queensland,-27.687196,152.075121,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,5,30,Australia,AU,Queensland,-27.719116,152.086803,EPSG:4326 +OCCURRENCE,,1,,,2020,1,21,Australia,AU,Queensland,-26.058706,152.788997,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,11,17,Australia,AU,Queensland,-27.5289,152.4743,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2021,9,27,Australia,AU,Queensland,-27.566148,152.11112,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,3,Australia,AU,Queensland,-27.8329,152.1924,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,5,4,Australia,AU,Queensland,-27.55123,153.04533,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.832329,152.34518,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.825779,152.347614,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2021,6,29,Australia,AU,Queensland,-27.167539,151.278411,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,16,Australia,AU,Queensland,-27.635562,152.469768,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,5,30,Australia,AU,Queensland,-27.718067,152.086921,EPSG:4326 +OCCURRENCE,,1,,,2021,8,7,Australia,AU,Queensland,-26.3613,152.815,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,11,19,Australia,AU,Queensland,-27.531945,152.439167,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82775,152.34595,EPSG:4326 +OCCURRENCE,,1,,,2021,9,2,Australia,AU,Queensland,-26.4216,153.0028,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.82675,152.34641,EPSG:4326 +OCCURRENCE,,1,,,2021,9,27,Australia,AU,Queensland,-26.4046,152.9603,EPSG:4326 +OCCURRENCE,,1,,,2020,10,15,Australia,AU,Queensland,-26.4297,152.807,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83215,152.34131,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.835493,152.345877,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.832662,152.342843,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.82926,152.34459,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,3,Australia,AU,Queensland,-27.361137,151.58032,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83319,152.34265,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,1,8,Australia,AU,Queensland,-27.455387,152.369909,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83376,152.34375,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.83204,152.34402,EPSG:4326 +OCCURRENCE,,1,,,2020,10,18,Australia,AU,Queensland,-26.4242,152.811,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,14,Australia,AU,Queensland,-27.495756,152.247373,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2021,3,10,Australia,AU,Queensland,-27.535116,152.084073,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.83223,152.34399,EPSG:4326 +OCCURRENCE,,1,,,2021,5,16,Australia,AU,Queensland,-26.4261,152.8072,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,30,Australia,AU,Queensland,-27.830067,152.344683,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,2,7,Australia,AU,Queensland,-27.54,153.053,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,3,7,Australia,AU,Queensland,-27.67452,152.01167,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,1,22,Australia,AU,Queensland,-26.202875,152.575753,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83401,152.346171,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2021,8,25,Australia,AU,Queensland,-27.695155,152.087003,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,1,22,Australia,AU,Queensland,-26.202875,152.575753,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2021,8,29,Australia,AU,Queensland,-27.535329,152.251552,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,11,7,Australia,AU,Queensland,-27.531528,152.09124,EPSG:4326 +MACHINE_OBSERVATION,,1,,,2020,4,10,Australia,AU,Queensland,-26.814289,150.4838,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.833115,152.340548,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,11,24,Australia,AU,Queensland,-25.060133,148.23574,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,12,23,Australia,AU,Queensland,-27.72605,152.07098,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,9,15,Australia,AU,Queensland,-27.832249,152.344121,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,8,16,Australia,AU,Queensland,-27.83207,152.34447,EPSG:4326 +HUMAN_OBSERVATION,Charley Hesse,1,,,2022,10,8,Australia,AU,Queensland,-27.510022,153.08099,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In triangle of trees near cafeteria,2024,4,1,Australia,AU,Queensland,-27.527056,153.092078,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland near house with white fence,2023,10,1,Australia,AU,Queensland,-27.524683,153.093543,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,5,6,Australia,AU,Queensland,-27.39632,152.60907,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,7,24,Australia,AU,Victoria,-38.671253,146.16382,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Healthy koala. PHOTO: B. Newman,2020,2,5,Australia,AU,New South Wales,-28.259,153.367526,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3143,2023,2,18,Australia,AU,Queensland,-27.49628,152.24933,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"In a Grey Gum,",2020,4,13,Australia,AU,Queensland,-27.5124,153.08429,EPSG:4326 +HUMAN_OBSERVATION,Helen Witting,1,,,2024,9,18,Australia,AU,Queensland,-27.53711,153.042423,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,9,10,Australia,AU,Queensland,-27.917746,153.378882,EPSG:4326 +HUMAN_OBSERVATION,Dylan Wishart,1,,,2023,3,30,Australia,AU,Victoria,-36.36651,146.71514,EPSG:4326 +HUMAN_OBSERVATION,killercd,1,,,2023,12,31,Australia,AU,Queensland,-27.541165,153.07542,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,8,Australia,AU,South Australia,-34.89008,138.732753,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2022,4,27,Australia,AU,Queensland,-28.091609,152.842855,EPSG:4326 +HUMAN_OBSERVATION,Naughtiehorti,1,,,2024,9,7,Australia,AU,Queensland,-28.10129,153.448252,EPSG:4326 +HUMAN_OBSERVATION,lcgraham,1,,Dead 🙁,2022,10,29,Australia,AU,Victoria,-37.43513,144.664262,EPSG:4326 +HUMAN_OBSERVATION,gingercheatah,1,,,2022,7,2,Australia,AU,New South Wales,-28.578853,153.485,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unhealthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2024,8,26,Australia,AU,Queensland,-26.156575,151.80221,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2024,4,15,Australia,AU,Queensland,-27.32545,151.935317,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi & joey,2024,11,23,Australia,AU,Queensland,-27.529252,153.10334,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,"Strzelecki Koala, male in Eucalyptus nicholi",2024,1,28,Australia,AU,Victoria,-38.6713,146.164214,EPSG:4326 +HUMAN_OBSERVATION,krob0661,1,,,2021,2,26,Australia,AU,Queensland,-27.241873,152.992858,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,"Koala in Euc tereticornis, in area we have been doing lantana control. Bad photo, family member who spotted thought it looked ok.",2023,12,18,Australia,AU,Queensland,-28.167314,152.598212,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,2,26,Australia,AU,Queensland,-27.597174,151.889374,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,12,25,Australia,AU,Queensland,-27.527332,153.091443,EPSG:4326 +HUMAN_OBSERVATION,isabeldavidoff,1,,,2023,10,30,Australia,AU,Queensland,-28.195481,153.18715,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,This is one of two related iNaturalist records of a koala group comprising an adult and a juvenile koala. This record concerns the ADULT KOALA. Links to the relevant records are as follows: - Adult koala https://inaturalist.ala.org.au/observations/194698510 - Juvenile koala https://inaturalist.ala.org.au/observations/194698649,2023,12,23,Australia,AU,Queensland,-27.511247,153.087697,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via FB (South Burnett Koala Watch),2023,11,24,Australia,AU,Queensland,-26.155061,151.749848,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2024,4,22,Australia,AU,Victoria,-38.83362,143.512725,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,12,10,Australia,AU,Queensland,-27.525904,153.068944,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,12,4,Australia,AU,Queensland,-27.537782,153.055679,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Paperbark,2020,11,3,Australia,AU,Queensland,-27.551409,153.058527,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. lots of koalas observed in the area travelling through corridor from old trainline to showgrounds. Observed by Cynthia Radford submitted via text.,2022,4,30,Australia,AU,Queensland,-26.17879,151.698213,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block picnic area,2024,11,17,Australia,AU,Queensland,-27.526046,153.090545,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,,2023,8,20,Australia,AU,Queensland,-27.648108,152.03325,EPSG:4326 +HUMAN_OBSERVATION,Olivia Kemp,1,,,2020,2,9,Australia,AU,Victoria,-36.385547,146.672032,EPSG:4326 +HUMAN_OBSERVATION,linger,1,,,2021,11,16,Australia,AU,Victoria,-38.827487,143.582405,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,,2021,4,20,Australia,AU,Queensland,-28.094746,153.456543,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,16,Australia,AU,Queensland,-27.79596,151.566135,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Koala observed climbing up veranda post of property. Property owners moved it to large gum tree on property and reported after the fact to TKWR. Observation by J Timperley,2023,10,27,Australia,AU,Queensland,-27.428351,151.851777,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,7,22,Australia,AU,Victoria,-38.671263,146.16382,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,6,1,Australia,AU,Queensland,-27.546837,153.074671,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,5,11,Australia,AU,Queensland,-27.526781,153.090386,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,9,18,Australia,AU,Queensland,-27.529179,153.111638,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park,2024,2,11,Australia,AU,Queensland,-27.525152,153.092369,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,MALE,,2023,11,8,Australia,AU,Queensland,-27.703054,153.192573,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland Make,2024,11,17,Australia,AU,Queensland,-27.52813,153.092777,EPSG:4326 +HUMAN_OBSERVATION,Irene,1,,,2020,1,2,Australia,AU,New South Wales,-28.371821,153.555985,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,10,5,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2022,10,8,Australia,AU,South Australia,-35.00565,138.65507,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2023,10,22,Australia,AU,South Australia,-34.692015,138.826933,EPSG:4326 +HUMAN_OBSERVATION,lil_1,1,,,2022,1,9,Australia,AU,Victoria,-37.630375,144.087006,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,2,21,Australia,AU,Queensland,-28.106754,152.656845,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Upper wisteria car park,2024,9,19,Australia,AU,Queensland,-27.524688,153.092014,EPSG:4326 +HUMAN_OBSERVATION,aussie_lisa,1,,Helped move these two away from the road on my morning walk. 🐨,2021,8,5,Australia,AU,Queensland,-27.279713,152.95375,EPSG:4326 +HUMAN_OBSERVATION,khewison,1,,,2024,10,29,Australia,AU,South Australia,-35.004945,138.637498,EPSG:4326 +HUMAN_OBSERVATION,Owen Gale,1,,,2023,2,4,Australia,AU,South Australia,-34.912955,138.72697,EPSG:4326 +HUMAN_OBSERVATION,Gordon Claridge,1,MALE,In Blue Gum (E.tereticornis),2022,7,10,Australia,AU,Queensland,-27.456754,152.18901,EPSG:4326 +HUMAN_OBSERVATION,David Charles Paull,1,,Unknown sex or age. Land owner (Donaldsons) have reported several observations of Koalas on their property over the last two years).,2020,7,29,Australia,AU,New South Wales,-30.829557,149.79567,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2024,11,5,Australia,AU,Victoria,-38.382837,145.296083,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,2,25,Australia,AU,Queensland,-27.527132,153.091695,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2024,8,31,Australia,AU,Queensland,-27.532599,153.03847,EPSG:4326 +HUMAN_OBSERVATION,sharynbartlem,1,MALE,,2023,6,14,Australia,AU,Queensland,-27.506812,153.07515,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,,2021,5,8,Australia,AU,New South Wales,-28.259903,153.401718,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Next to student administrative bldg,2024,6,23,Australia,AU,Queensland,-27.526898,153.09109,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,Very faint recording unfortunately.,2024,9,29,Australia,AU,South Australia,-35.46043,138.601196,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,13,Australia,AU,Queensland,-27.510502,153.082947,EPSG:4326 +HUMAN_OBSERVATION,Michael A. Alcorn,1,,,2023,10,19,Australia,AU,Queensland,-27.393467,153.440789,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Scribbly Gum (#00002),2021,2,10,Australia,AU,Queensland,-27.550408,153.059824,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,7,14,Australia,AU,Queensland,-27.5271,153.091355,EPSG:4326 +HUMAN_OBSERVATION,JohnNewman,1,,,2024,3,17,Australia,AU,Victoria,-38.48199,143.915059,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Chloe - unfortunately showing signs of chlamydia. She has been rescued & taken to RSPCA Brisbane,2022,12,9,Australia,AU,Queensland,-27.527927,153.11256,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland,2024,3,9,Australia,AU,Queensland,-27.527552,153.092595,EPSG:4326 +HUMAN_OBSERVATION,kerrbrad,1,,,2024,8,23,Australia,AU,New South Wales,-32.973207,151.407319,EPSG:4326 +HUMAN_OBSERVATION,iggy_leaf,1,,"Terrible photo but grey fur, noticeable claws.",2024,11,4,Australia,AU,New South Wales,-34.002369,150.900923,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,22,Australia,AU,Queensland,-27.545735,153.07314,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2023,10,14,Australia,AU,South Australia,-34.692015,138.826933,EPSG:4326 +HUMAN_OBSERVATION,Graham Armstrong,1,,,2024,9,13,Australia,AU,South Australia,-34.93271,138.708286,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,10,4,Australia,AU,South Australia,-34.88983,138.72231,EPSG:4326 +HUMAN_OBSERVATION,kdoust,1,,Juvenile male,2024,6,18,Australia,AU,Queensland,-27.338633,152.612644,EPSG:4326 +HUMAN_OBSERVATION,rossivdb,1,,,2021,3,15,Australia,AU,South Australia,-34.990545,138.636708,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Rear entrance to nursery Mother and joey Joey on seperate branch,2023,10,29,Australia,AU,Queensland,-27.527168,153.092045,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,No eartag seen,2022,1,10,Australia,AU,Queensland,-27.509237,153.086488,EPSG:4326 +HUMAN_OBSERVATION,Kate Leslie,1,,,2020,1,11,Australia,AU,Victoria,-38.498491,142.97785,EPSG:4326 +HUMAN_OBSERVATION,miracletree,1,,,2023,10,12,Australia,AU,Queensland,-27.781462,153.1221,EPSG:4326 +HUMAN_OBSERVATION,Marianne Broug,1,,,2023,3,15,Australia,AU,South Australia,-35.015931,138.67047,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2023,10,15,Australia,AU,Queensland,-27.535159,153.03605,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,9,15,Australia,AU,Queensland,-27.550899,153.057987,EPSG:4326 +HUMAN_OBSERVATION,andrew_bird,1,,High up in eucalypt by the side of the road,2024,4,8,Australia,AU,New South Wales,-28.816045,153.306642,EPSG:4326 +HUMAN_OBSERVATION,Paulaed,1,,Koala,2022,10,29,Australia,AU,South Australia,-35.01417,138.604668,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,12,Australia,AU,Queensland,-27.548953,153.059553,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,16,Australia,AU,Queensland,-27.823506,152.993576,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2023,4,30,Australia,AU,Queensland,-27.284697,153.00101,EPSG:4326 +HUMAN_OBSERVATION,venus5026,1,,,2023,12,30,Australia,AU,South Australia,-35.960526,136.808184,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,18,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Injured koala- road trauma. Rescued by J Gray- Toowoomba Koala & Wildlife Rescue. Koala taken for immediate veterinary assistance.,2022,11,23,Australia,AU,Queensland,-27.459393,151.906508,EPSG:4326 +HUMAN_OBSERVATION,Linda Rogan EntSocVic,1,,,2022,10,1,Australia,AU,Victoria,-37.90878,147.754464,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Still in the same tree for over 4 weeks. A young male.,2024,1,13,Australia,AU,Queensland,-27.257145,152.046465,EPSG:4326 +HUMAN_OBSERVATION,peterterry,1,,,2024,11,6,Australia,AU,Queensland,-27.557308,151.99382,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2023,1,11,Australia,AU,Queensland,-27.56598,153.0992,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2024,10,7,Australia,AU,Queensland,-27.527937,153.103072,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,5,20,Australia,AU,Queensland,-27.901418,153.368468,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,25,Australia,AU,Queensland,-27.528921,153.10668,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2023,3,24,Australia,AU,New South Wales,-31.44325,152.90535,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,14,Australia,AU,Queensland,-27.526908,153.090482,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,12,30,Australia,AU,New South Wales,-34.773438,146.595397,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,,2024,1,4,Australia,AU,Queensland,-27.26722,152.051147,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,6,23,Australia,AU,New South Wales,-29.870286,150.6015,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,1,12,Australia,AU,Victoria,-37.585154,143.884406,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Mother and joey,2024,9,14,Australia,AU,Queensland,-27.526752,153.090767,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In grassy area next to cafeteria,2023,7,9,Australia,AU,Queensland,-27.527035,153.092036,EPSG:4326 +HUMAN_OBSERVATION,Reiner Richter,1,,,2020,12,23,Australia,AU,Victoria,-38.01889,141.582362,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Koala scat,2022,8,7,Australia,AU,Victoria,-37.58597,143.882689,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Had moved lower when I returned later,2023,12,16,Australia,AU,Queensland,-27.52723,153.108202,EPSG:4326 +HUMAN_OBSERVATION,SBERRY,1,,Approx location to protect the resident Settlers Run koala.,2023,12,18,Australia,AU,Victoria,-38.135703,145.25327,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,,2023,9,21,Australia,AU,New South Wales,-28.260205,153.401521,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,12,Australia,AU,Queensland,-27.529213,153.105216,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,FEMALE,Healthy mother and back rider joey baby koala at Lilyvale Oval Meringandan. Observation by L Burrows for TKWR,2023,11,2,Australia,AU,Queensland,-27.425042,151.880686,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Male - scent gland visible Scratch markings on right rear - fighting? White spot behind nose - slightly to the right,2023,1,28,Australia,AU,Queensland,-27.524947,153.09227,EPSG:4326 +HUMAN_OBSERVATION,spacelargo,1,,,2021,3,24,Australia,AU,Victoria,-38.386628,143.97476,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,27,Australia,AU,Queensland,-27.527279,153.10923,EPSG:4326 +HUMAN_OBSERVATION,joenviro,1,,Active healthy koala eating new growth from small planted tree on roadside,2022,5,21,Australia,AU,New South Wales,-32.722253,152.073595,EPSG:4326 +HUMAN_OBSERVATION,Owen Gale,1,,,2020,9,26,Australia,AU,South Australia,-34.804894,138.736844,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2021,8,28,Australia,AU,South Australia,-34.878983,138.773711,EPSG:4326 +HUMAN_OBSERVATION,philip-roetman,1,,,2024,9,20,Australia,AU,South Australia,-35.022412,138.671264,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,Photo brett neylan,2021,12,25,Australia,AU,Victoria,-37.563085,149.757913,EPSG:4326 +HUMAN_OBSERVATION,Taylor,1,,,2020,11,29,Australia,AU,South Australia,-34.902456,138.706249,EPSG:4326 +HUMAN_OBSERVATION,lisastevo,1,,,2024,9,20,Australia,AU,Queensland,-27.506664,153.082727,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,10,27,Australia,AU,New South Wales,-28.25408,153.377476,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block picnic area Yellow tag right ear #1075 Jaye Mallet,2023,10,14,Australia,AU,Queensland,-27.525877,153.090716,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2022,7,27,Australia,AU,Queensland,-27.539385,153.065602,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,3,2,Australia,AU,Queensland,-27.524531,153.093556,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,7,19,Australia,AU,Queensland,-27.568828,152.102433,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery gates,2023,7,1,Australia,AU,Queensland,-27.527362,153.091466,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2022,10,30,Australia,AU,Queensland,-27.51025,153.085728,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,6,5,Australia,AU,South Australia,-34.903257,138.70685,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2022,4,15,Australia,AU,South Australia,-34.692015,138.826933,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,10,30,Australia,AU,Queensland,-27.552137,153.05467,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,13,Australia,AU,Queensland,-27.527049,153.090512,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In unknown tree not far from other koala in Grey gum,2020,2,3,Australia,AU,Queensland,-27.548209,153.058617,EPSG:4326 +HUMAN_OBSERVATION,kaiamjhr1,1,,"Grey dorsal side, white ventral side, sleeping during the day mostly although it did stretch and readjust position with slow and methodical leg and arm movements, approximate 30 inch height",2022,10,15,Australia,AU,Queensland,-19.123466,146.871548,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,4,1,Australia,AU,South Australia,-34.957443,138.695029,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near sport n rec shed Jacob Jnr? Male - testicles and scent gland visible,2023,10,2,Australia,AU,Queensland,-27.52549,153.092166,EPSG:4326 +HUMAN_OBSERVATION,Lorraine Phelan,1,MALE,,2023,9,3,Australia,AU,Victoria,-37.866714,144.165694,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - yellow tag RIGHT ear,2023,6,2,Australia,AU,Queensland,-27.529281,153.108208,EPSG:4326 +HUMAN_OBSERVATION,Tim Mares,1,,,2022,11,29,Australia,AU,South Australia,-34.884838,138.64363,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,14,Australia,AU,Queensland,-27.524393,153.111768,EPSG:4326 +HUMAN_OBSERVATION,katiepie60,1,MALE,Male Koala has been around for the last 2 weeks. We hear him in the night clearly looking for a partner.,2023,10,2,Australia,AU,Queensland,-27.725513,153.188853,EPSG:4326 +HUMAN_OBSERVATION,heloisehoff,1,,,2024,11,8,Australia,AU,Queensland,-27.497734,153.39958,EPSG:4326 +HUMAN_OBSERVATION,Jenny West,1,,Picked up on fauna camera. I've heard it grunting fir a few days.,2024,10,17,Australia,AU,Victoria,-37.570955,144.105005,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,"short record as by the time I got the recorder going it had nearly finished. Male sound, which I did not record, came 2 minutes later,",2024,8,16,Australia,AU,Queensland,-27.510652,153.070087,EPSG:4326 +HUMAN_OBSERVATION,sarayoung,1,,,2022,5,2,Australia,AU,Queensland,-27.533451,153.282573,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In gully near Aldi gates In tree next to Chonky Boys tree,2023,11,4,Australia,AU,Queensland,-27.526012,153.093282,EPSG:4326 +HUMAN_OBSERVATION,Russell Botten,1,,,2024,3,23,Australia,AU,Victoria,-38.517594,146.400422,EPSG:4326 +HUMAN_OBSERVATION,regan_scheuber,1,,,2024,6,11,Australia,AU,Queensland,-28.007401,153.268527,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,MALE,Male,2023,4,24,Australia,AU,New South Wales,-36.056717,149.287553,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,13,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to cleaners donga,2024,10,21,Australia,AU,Queensland,-27.527047,153.091666,EPSG:4326 +HUMAN_OBSERVATION,Anneke Logan,1,,,2024,11,16,Australia,AU,Queensland,-27.260263,152.048553,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,1,Australia,AU,Queensland,-27.528802,153.106752,EPSG:4326 +HUMAN_OBSERVATION,Asaph Whelan,1,,"Very strange location, no natural bush land in area",2024,5,2,Australia,AU,South Australia,-34.858712,138.623428,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,12,21,Australia,AU,Queensland,-27.50543,153.083922,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,10,5,Australia,AU,Queensland,-26.240115,151.967182,EPSG:4326 +HUMAN_OBSERVATION,cicadaexplorermore,1,,,2024,4,2,Australia,AU,Victoria,-38.410426,141.543066,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,4,19,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,Jamie Wood,1,,,2023,5,25,Australia,AU,South Australia,-34.996417,138.620556,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Green tag LEFT ear - known as Bozo,2023,4,8,Australia,AU,Queensland,-27.526978,153.107807,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,,Third time spotted in the same tree. Right next to main road.,2022,3,31,Australia,AU,South Australia,-35.058652,138.579818,EPSG:4326 +HUMAN_OBSERVATION,ecdyonurus,1,,,2023,3,2,Australia,AU,Victoria,-37.924429,147.730451,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,,Mum and koala joey 🐨,2022,9,30,Australia,AU,Queensland,-27.401123,153.43834,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,9,16,Australia,AU,Queensland,-27.25609,152.046022,EPSG:4326 +HUMAN_OBSERVATION,Brendan Casey,1,,,2024,7,29,Australia,AU,Victoria,-38.635187,145.754962,EPSG:4326 +HUMAN_OBSERVATION,James Ruming,1,,,2021,9,29,Australia,AU,New South Wales,-30.442998,152.897763,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,"Image captured whilst on a spotlighting circuit, varying between 1.5 km to 3 km depending on track conditions, through a 20 ha block of predominantly Sedgy Riparian Woodland (EVC 198) in the Wombat State Forest, Lyonville.",2022,6,10,Australia,AU,Victoria,-37.390828,144.26795,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block picnic area,2023,12,31,Australia,AU,Queensland,-27.52575,153.090381,EPSG:4326 +HUMAN_OBSERVATION,george_seagull,1,,Walkerville.,2023,1,25,Australia,AU,Victoria,-38.827605,145.958556,EPSG:4326 +HUMAN_OBSERVATION,lia_molina,1,,Sick little darlin. Red bottom & shriveled scat,2024,4,12,Australia,AU,Queensland,-27.359061,152.869565,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,9,Australia,AU,South Australia,-34.888734,138.733453,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In gully near Aldi gates,2024,2,18,Australia,AU,Queensland,-27.526424,153.092929,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,3,2,Australia,AU,Queensland,-27.551875,153.057486,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On a Eucalyptus racemosa.,2021,2,20,Australia,AU,Queensland,-27.653652,153.008383,EPSG:4326 +HUMAN_OBSERVATION,Graham Armstrong,1,,,2024,9,12,Australia,AU,South Australia,-34.936974,138.705617,EPSG:4326 +HUMAN_OBSERVATION,Nick Lambert,1,MALE,,2023,12,1,Australia,AU,New South Wales,-30.43198,152.972143,EPSG:4326 +HUMAN_OBSERVATION,nicola987,1,,,2024,8,27,Australia,AU,Queensland,-28.116107,153.391949,EPSG:4326 +HUMAN_OBSERVATION,theherbfam,1,,,2024,9,21,Australia,AU,Queensland,-27.122257,152.916185,EPSG:4326 +HUMAN_OBSERVATION,martinbutterfield,1,,,2023,8,22,Australia,AU,Victoria,-37.526319,149.73732,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,13,Australia,AU,Queensland,-27.823275,152.991752,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,5,28,Australia,AU,Queensland,-27.528775,153.10332,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2024,1,1,Australia,AU,South Australia,-35.004059,138.6667,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"Same lady and her bub from yesterday. This morning they were in a Buddleia tree. But I think they've moved on to one of the big gums now, although I can't see where. https://www.inaturalist.org/observations/249857457",2024,11,1,Australia,AU,Victoria,-37.874433,142.291129,EPSG:4326 +HUMAN_OBSERVATION,Peter Zika,1,,,2023,8,2,Australia,AU,Queensland,-27.920713,153.3785,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,,2022,10,25,Australia,AU,South Australia,-34.935061,138.672856,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,2,Australia,AU,Queensland,-27.527946,153.112483,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Dead. Hit by car about 50m from koala road sign. Observed by Wendy Taylor. Submitted via msg.,2024,8,16,Australia,AU,Queensland,-26.220979,151.92208,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,4,12,Australia,AU,New South Wales,-33.076389,151.095245,EPSG:4326 +HUMAN_OBSERVATION,Anneke Logan,1,,Mother and joey,2024,11,16,Australia,AU,Queensland,-27.260975,152.043257,EPSG:4326 +HUMAN_OBSERVATION,Graham Possingham,1,MALE,,2024,4,15,Australia,AU,Victoria,-38.0052,141.062911,EPSG:4326 +HUMAN_OBSERVATION,Dominique Appay,1,,Observed changing trees,2024,4,6,Australia,AU,Queensland,-27.51395,153.251968,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Bozo,2022,12,30,Australia,AU,Queensland,-27.526909,153.107866,EPSG:4326 +HUMAN_OBSERVATION,zeked,1,,,2023,8,26,Australia,AU,Queensland,-27.423217,153.513747,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2023,2,27,Australia,AU,Queensland,-27.551526,153.057831,EPSG:4326 +HUMAN_OBSERVATION,whittie,1,,,2023,6,4,Australia,AU,South Australia,-34.903793,138.616925,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2023,9,9,Australia,AU,Queensland,-27.358603,152.074617,EPSG:4326 +HUMAN_OBSERVATION,tstayns,1,,,2023,5,29,Australia,AU,Victoria,-37.792225,145.667175,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Red gum,2023,11,12,Australia,AU,Queensland,-27.53259,153.037417,EPSG:4326 +HUMAN_OBSERVATION,karin taylor,1,,,2024,4,18,Australia,AU,Queensland,-27.915327,153.352718,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,3,4,Australia,AU,Victoria,-37.541326,143.92803,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2024,1,27,Australia,AU,South Australia,-35.013391,138.732312,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,14,Australia,AU,Queensland,-27.52989,153.104628,EPSG:4326 +HUMAN_OBSERVATION,pierce_clark,1,,,2024,9,21,Australia,AU,Queensland,-27.916603,153.374011,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum with joey,2023,11,15,Australia,AU,Queensland,-27.530193,153.103428,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In a Eucalyptus micocorys,2023,1,23,Australia,AU,Queensland,-27.54457,153.065583,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,2,24,Australia,AU,New South Wales,-28.259602,153.40077,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,12,18,Australia,AU,Victoria,-38.671301,146.16431,EPSG:4326 +HUMAN_OBSERVATION,jwagner1960,1,,,2024,4,18,Australia,AU,South Australia,-35.951654,137.216421,EPSG:4326 +HUMAN_OBSERVATION,David,1,,Have it a drink then it walked off,2022,3,31,Australia,AU,South Australia,-34.877289,138.709492,EPSG:4326 +HUMAN_OBSERVATION,louise03,1,,,2021,10,24,Australia,AU,South Australia,-35.053775,138.650458,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Young koala. Just recently separated from mum,2024,10,23,Australia,AU,Queensland,-27.545928,153.073177,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,4,19,Australia,AU,Queensland,-27.54904,153.051209,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,4,3,Australia,AU,New South Wales,-28.259866,153.402074,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,10,21,Australia,AU,New South Wales,-28.261887,153.397734,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,10,5,Australia,AU,Queensland,-27.551533,153.058961,EPSG:4326 +HUMAN_OBSERVATION,finnbell1,1,,,2024,7,13,Australia,AU,Queensland,-28.123148,152.605286,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,10,25,Australia,AU,South Australia,-34.889784,138.729421,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Ironbark,2021,6,16,Australia,AU,Queensland,-27.550959,153.054533,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted by Denise Shaw via text.,2023,9,12,Australia,AU,Queensland,-26.1772,151.691356,EPSG:4326 +HUMAN_OBSERVATION,Sharon Dodd,1,,,2024,1,28,Australia,AU,Victoria,-38.35779,146.388712,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,3,16,Australia,AU,Queensland,-27.551108,153.05744,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,tagged,2022,12,8,Australia,AU,Queensland,-27.545825,153.073292,EPSG:4326 +HUMAN_OBSERVATION,Bethany McLeod,1,,,2021,12,23,Australia,AU,Victoria,-38.056665,141.921525,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland gully area Male Scent gland visible and yellow tag left ear no number visible,2024,3,10,Australia,AU,Queensland,-27.527615,153.092632,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,2,7,Australia,AU,Queensland,-27.591878,151.731676,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Female with joey. Healthy. Observed by Wendy Taylor. Submitted via email.,2022,9,30,Australia,AU,Queensland,-26.182073,151.775294,EPSG:4326 +HUMAN_OBSERVATION,Sylvia Akers,1,,,2020,9,27,Australia,AU,Victoria,-37.90878,147.754464,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,6,Australia,AU,Queensland,-27.52873,153.107383,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,1,Australia,AU,Queensland,-27.527531,153.090979,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank Muma and water tank baby say hello to each other again.,2022,12,2,Australia,AU,Queensland,-27.545829,153.073278,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,12,12,Australia,AU,Queensland,-27.510422,153.088106,EPSG:4326 +HUMAN_OBSERVATION,blrussell62,1,,"One of two observed, growling at each other",2023,2,17,Australia,AU,Victoria,-36.943878,145.532853,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Front of tafe cavendish road near bamboo Frank Rooney,2023,12,3,Australia,AU,Queensland,-27.527499,153.090992,EPSG:4326 +HUMAN_OBSERVATION,joaquinsc,1,,,2022,9,29,Australia,AU,Queensland,-27.550597,153.058333,EPSG:4326 +HUMAN_OBSERVATION,schoey,1,,,2022,4,17,Australia,AU,New South Wales,-34.764473,146.58541,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Paperbark,2020,5,8,Australia,AU,Queensland,-27.551201,153.05773,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - pale blue tag RIGHT ear with handwritten number - Edith,2023,7,19,Australia,AU,Queensland,-27.528536,153.113416,EPSG:4326 +HUMAN_OBSERVATION,lehockamarcela,1,,,2023,10,7,Australia,AU,Victoria,-38.35779,146.388712,EPSG:4326 +HUMAN_OBSERVATION,Doran Goldman,1,,,2022,11,16,Australia,AU,Queensland,-27.400738,153.437575,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,29,Australia,AU,Queensland,-27.527941,153.110562,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2023,6,25,Australia,AU,Queensland,-27.325276,151.933828,EPSG:4326 +HUMAN_OBSERVATION,Ash,1,,*I have passed on this koala's information to Wildcare Australia for assessment as I believe it's left eye is showing signs of early conjunctivitis. It moved lower in the trees after getting swooped by birds after being near the top for hours. Observed it moving well and reaching for leaves to eat well.,2024,9,15,Australia,AU,Queensland,-27.712197,153.150069,EPSG:4326 +HUMAN_OBSERVATION,larahen,1,,General location only,2023,12,4,Australia,AU,New South Wales,-34.61656,150.060182,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland,2024,11,3,Australia,AU,Queensland,-27.527976,153.09307,EPSG:4326 +HUMAN_OBSERVATION,lisaw1012,1,,,2022,4,4,Australia,AU,Queensland,-27.65262,152.898758,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2020,10,9,Australia,AU,Queensland,-27.912075,153.373869,EPSG:4326 +HUMAN_OBSERVATION,larivera,1,,,2022,11,18,Australia,AU,Victoria,-38.315058,142.366438,EPSG:4326 +HUMAN_OBSERVATION,suevb,1,,2 koalas making a big racket,2023,11,18,Australia,AU,Victoria,-37.061378,145.361145,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear,2023,6,7,Australia,AU,Queensland,-27.530277,153.104622,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,FEMALE,Koala had visited this tree three times in the past week. Never comes down the same way. Must jump to other trees once up here. Lots of scat underneath,2024,6,12,Australia,AU,New South Wales,-33.127514,151.243575,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,,Seen by Ally,2023,4,29,Australia,AU,Victoria,-37.89159,144.206075,EPSG:4326 +HUMAN_OBSERVATION,jcadermann,1,,Sighted from our verandah in Eucalyptus tree (38yro) straight in front of house,2022,2,11,Australia,AU,Queensland,-28.12513,152.94542,EPSG:4326 +HUMAN_OBSERVATION,Huey,1,,,2023,7,15,Australia,AU,South Australia,-35.96043,136.81007,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - red tag A5 RIGHT ear - Cindy,2023,10,11,Australia,AU,Queensland,-27.527092,153.108104,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via FB (South Burnett Koala Watch),2023,11,29,Australia,AU,Queensland,-26.155011,151.749845,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,2 koalas in tree.,2023,10,15,Australia,AU,Queensland,-27.284151,153.000331,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2023,9,27,Australia,AU,Queensland,-27.628967,151.651066,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds,2023,12,31,Australia,AU,Queensland,-27.52817,153.092391,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In E.microcorys.,2021,11,14,Australia,AU,Queensland,-27.54708,153.037868,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,,2021,3,4,Australia,AU,South Australia,-35.04677,138.581082,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2023,5,11,Australia,AU,Victoria,-38.363904,145.31643,EPSG:4326 +HUMAN_OBSERVATION,Karen Weaving,1,,"Wild sitting high in Eucalyptus tree, near Morialta Cottage. Near Yurrebilla Trail entry of morialta CP.",2020,7,23,Australia,AU,South Australia,-34.902573,138.708208,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Female koala - looked to have quite the pouch.,2023,10,4,Australia,AU,Queensland,-27.284983,153.001203,EPSG:4326 +HUMAN_OBSERVATION,masonvisser7,1,,,2024,9,22,Australia,AU,Queensland,-27.493894,153.40288,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Adult male,2023,10,9,Australia,AU,Queensland,-27.903879,153.372665,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,10,30,Australia,AU,Queensland,-26.829613,152.714507,EPSG:4326 +HUMAN_OBSERVATION,kittsw,1,,"One of three koalas in close proximity. See also obs 147059346 and 147059403. (Poor pictures, low light)",2023,1,21,Australia,AU,South Australia,-34.876741,138.64805,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2023,10,20,Australia,AU,New South Wales,-31.441192,152.90663,EPSG:4326 +HUMAN_OBSERVATION,Wil,1,,,2022,6,30,Australia,AU,Queensland,-18.619416,143.864217,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,Koala "Robin" identified today in southern tree corridor of property,2023,6,8,Australia,AU,Queensland,-27.414713,152.004472,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Juvenile. Unknown sex. Healthy. Observed by Robyn Zackreson. Submitted via FB.,2024,7,7,Australia,AU,Queensland,-26.309065,151.780329,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,5,26,Australia,AU,Queensland,-27.551021,153.057524,EPSG:4326 +HUMAN_OBSERVATION,nathankearnes,1,,In a grey gum Euc punctata Possible male.,2023,6,10,Australia,AU,New South Wales,-34.126959,150.979683,EPSG:4326 +HUMAN_OBSERVATION,jhagenx6,1,,First Koala photographed at icthus by Kat Brooks,2023,11,28,Australia,AU,Victoria,-37.953847,147.66874,EPSG:4326 +HUMAN_OBSERVATION,orchy,1,,Has been sighted and heard numerous times at night in the last 2 months,2021,10,12,Australia,AU,Queensland,-27.8742,153.078103,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"Single animal, Boonah Rail Trail.",2024,10,4,Australia,AU,Queensland,-27.986042,152.67645,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Campo - red tag A18 RIGHT ear,2023,1,26,Australia,AU,Queensland,-27.529416,153.109439,EPSG:4326 +HUMAN_OBSERVATION,Anne Love,1,,,2021,12,1,Australia,AU,Queensland,-27.433038,153.541946,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,,,2022,1,2,Australia,AU,Queensland,-27.602008,152.012617,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Female in Eucalyptus nicholii,2021,10,25,Australia,AU,Victoria,-38.671325,146.1642,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,FEMALE,Possible ocular chlamydia affecting L eye,2024,10,25,Australia,AU,New South Wales,-29.558637,150.76361,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,11,30,Australia,AU,South Australia,-34.864482,138.65916,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,MALE,Male koala sleeping in stringybark spp.,2023,5,11,Australia,AU,Queensland,-27.551659,153.058179,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,9,15,Australia,AU,New South Wales,-29.869591,150.600457,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,9,Australia,AU,Queensland,-27.543928,153.072177,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,1,26,Australia,AU,Queensland,-27.524677,153.093563,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds Mother with joey,2024,10,6,Australia,AU,Queensland,-27.528066,153.092144,EPSG:4326 +HUMAN_OBSERVATION,Tim Bawden,1,,,2021,12,4,Australia,AU,Victoria,-38.360881,146.91445,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear,2023,9,15,Australia,AU,Queensland,-27.531565,153.10517,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,,2023,8,5,Australia,AU,Queensland,-27.529847,153.11207,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,13,Australia,AU,Queensland,-27.413513,152.003267,EPSG:4326 +HUMAN_OBSERVATION,ilovewongapigeons314,1,,,2023,12,29,Australia,AU,Victoria,-38.857295,146.243484,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2021,1,6,Australia,AU,Victoria,-37.922982,147.731623,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2020,11,10,Australia,AU,Queensland,-27.837717,153.080567,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of cavendish road Mother and joey,2023,10,8,Australia,AU,Queensland,-27.527149,153.090756,EPSG:4326 +HUMAN_OBSERVATION,Hamsees,1,,,2024,4,4,Australia,AU,Victoria,-38.056322,141.92336,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,11,11,Australia,AU,South Australia,-34.866713,138.6628,EPSG:4326 +HUMAN_OBSERVATION,fatbeardiving,1,,,2024,4,2,Australia,AU,Queensland,-27.497294,153.399319,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - green tag LEFT ear - Joe, known as Bozo",2024,4,25,Australia,AU,Queensland,-27.527234,153.10913,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Known as Jacko - Mum of Charlie who was in a nearby tree,2024,4,1,Australia,AU,Queensland,-27.528285,153.103278,EPSG:4326 +HUMAN_OBSERVATION,robdogwoof,1,,,2024,3,23,Australia,AU,Victoria,-38.527329,146.386957,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,,Female with joey on back was observed moving between trees on the ground just before midday. Photographed climbing a tallowwood tree.,2021,9,24,Australia,AU,Queensland,-28.173889,152.906692,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to Woodland,2024,3,29,Australia,AU,Queensland,-27.527254,153.092247,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Scott Carey. Submitted by Wendy Taylor via msg,2024,10,13,Australia,AU,Queensland,-26.161068,152.06042,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2023,8,9,Australia,AU,Queensland,-27.531082,153.105259,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,,This dependent juvenile koala is now climbing independent of it's mother in the tree.,2021,10,24,Australia,AU,Queensland,-28.174429,152.907282,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2021,9,8,Australia,AU,Queensland,-27.551382,153.057396,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,6,16,Australia,AU,Queensland,-27.527065,153.090822,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"No visible ear tags. A cold day, cold westerly winds, could see ears flapping in the wind gusts.",2024,7,16,Australia,AU,Queensland,-27.509539,153.070528,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,,2024,2,5,Australia,AU,Queensland,-27.550138,153.054912,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2022,10,29,Australia,AU,Queensland,-27.54235,153.077764,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2024,1,22,Australia,AU,Queensland,-27.54977,153.048947,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2023,12,25,Australia,AU,Queensland,-27.526827,153.09044,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,2,10,Australia,AU,South Australia,-34.953827,138.68209,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Very high up on a hot day so hard to get a photo Lemon scented gum,2023,2,19,Australia,AU,Queensland,-27.526791,153.09159,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi & joey,2023,11,30,Australia,AU,Queensland,-27.529297,153.102701,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2022,6,4,Australia,AU,Queensland,-27.226381,153.072275,EPSG:4326 +HUMAN_OBSERVATION,Melissa Abdallah,1,,,2022,10,1,Australia,AU,New South Wales,-34.758572,146.568113,EPSG:4326 +HUMAN_OBSERVATION,jkalvas,1,,Found in mallee scrub between lion and wild dog enclosure,2023,5,21,Australia,AU,South Australia,-35.091427,139.16564,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,5,18,Australia,AU,Queensland,-27.52736,153.091588,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,3,28,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,Scott Rolph,1,,,2022,10,29,Australia,AU,Victoria,-38.668577,143.860713,EPSG:4326 +HUMAN_OBSERVATION,Laura,1,,,2020,6,8,Australia,AU,South Australia,-35.005263,138.637635,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,2,Australia,AU,Queensland,-27.527012,153.093208,EPSG:4326 +HUMAN_OBSERVATION,JohnNewman,1,,,2024,8,5,Australia,AU,Queensland,-19.131458,146.870648,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Scats under a Eucalyptus tereticornis, Blue gum",2024,10,14,Australia,AU,Queensland,-27.455511,152.365508,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2022,11,8,Australia,AU,Queensland,-27.510947,153.083946,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,27,Australia,AU,Queensland,-27.527048,153.09205,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Unknown sex. Healthy. Observed by Denise Bettany. Submitted by Denise Shaw via email.,2023,6,24,Australia,AU,Queensland,-26.623809,151.990056,EPSG:4326 +HUMAN_OBSERVATION,sallywattle,1,,,2024,11,23,Australia,AU,Queensland,-28.029503,152.55403,EPSG:4326 +HUMAN_OBSERVATION,vinci1000,1,,,2024,4,19,Australia,AU,New South Wales,-34.782122,150.170662,EPSG:4326 +HUMAN_OBSERVATION,Judebirder,1,,,2022,3,12,Australia,AU,New South Wales,-28.192267,153.466556,EPSG:4326 +HUMAN_OBSERVATION,Echidna Walkabout,1,FEMALE,"On a hot day, these two unrelated mammals were sitting together in contact. Later they moved apart slightly. Observed and photographed by Wildlife Guide Hayley Forster. The koala is mature female. The tree is a Melaleuca armillaris. Observation duplicated for Ringtail.",2022,10,1,Australia,AU,Victoria,-37.932778,144.431944,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree near front lower car parks along cavendish road Female with Joey in pouch?,2024,3,30,Australia,AU,Queensland,-27.525545,153.090343,EPSG:4326 +HUMAN_OBSERVATION,Liz,1,,,2021,3,8,Australia,AU,South Australia,-34.902658,138.70194,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Monkey Rope vines,2020,11,7,Australia,AU,Queensland,-27.548291,153.052024,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2023,11,6,Australia,AU,Queensland,-27.529219,153.106688,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,13,Australia,AU,Queensland,-27.52833,153.112693,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,9,29,Australia,AU,Victoria,-38.671463,146.164092,EPSG:4326 +HUMAN_OBSERVATION,mary-a-crawf,1,,,2024,1,4,Australia,AU,South Australia,-35.023007,138.679277,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road,2024,7,20,Australia,AU,Queensland,-27.526587,153.090445,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,MALE,"""Bald Ear"" male showing significant infection in both eyes for the first time. Previously, largely only in right eye. Infection first seen in Oct 2020, with failed attempt to catch for treatment in Nov 2020. Apart from eyes, is still looking physically fit and able to jump between trees. On checking records he was perhaps first photographed in October 2012.",2022,5,7,Australia,AU,New South Wales,-30.520949,151.517939,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Male koala,2020,7,12,Australia,AU,New South Wales,-28.254084,153.377566,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2022,6,12,Australia,AU,Queensland,-27.575218,153.17213,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,3,Australia,AU,Queensland,-27.800382,151.594096,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"Very wet koala, very high up in a yellow box, so difficult to identify. Suspect it is Fluffy Eared Mum (due to size) but it could be the baby.",2020,2,3,Australia,AU,New South Wales,-30.51972,151.521444,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,In scribbly gum,2022,12,3,Australia,AU,Queensland,-27.527392,153.112929,EPSG:4326 +HUMAN_OBSERVATION,Jon Marnock,1,,,2023,11,18,Australia,AU,Queensland,-27.542185,153.072803,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,5,11,Australia,AU,Queensland,-27.527163,153.092126,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Beautiful mum& joey,2022,10,30,Australia,AU,Queensland,-27.510515,153.084817,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road - near two bus stops,2023,8,4,Australia,AU,Queensland,-27.526994,153.090602,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Not a great photo but seen very clearly when "Bald Ear" was climbing to reach fresh leaves very high in one of the tallest stringybarks in 48's gully. Proceeded to feed.,2020,8,1,Australia,AU,New South Wales,-30.51972,151.521444,EPSG:4326 +HUMAN_OBSERVATION,mrsssquiz,1,,,2020,12,25,Australia,AU,Queensland,-28.152156,153.457606,EPSG:4326 +HUMAN_OBSERVATION,nhaass,1,FEMALE,,2023,12,25,Australia,AU,Queensland,-27.510381,153.094654,EPSG:4326 +HUMAN_OBSERVATION,Aalbert Rebergen,1,,,2023,8,25,Australia,AU,Victoria,-38.073746,141.774777,EPSG:4326 +HUMAN_OBSERVATION,Greg Spearritt,1,,,2023,9,11,Australia,AU,Queensland,-27.423847,151.947633,EPSG:4326 +HUMAN_OBSERVATION,sandragall,1,,,2022,11,9,Australia,AU,Queensland,-27.848546,153.196389,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Between E block and library Male Grunting and bellowing!,2023,11,19,Australia,AU,Queensland,-27.526523,153.090926,EPSG:4326 +HUMAN_OBSERVATION,kymelen,1,,,2020,10,6,Australia,AU,Victoria,-35.871053,145.31662,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2024,7,2,Australia,AU,Queensland,-26.139886,151.808305,EPSG:4326 +HUMAN_OBSERVATION,George Lynch,1,,,2024,10,4,Australia,AU,Victoria,-38.670637,143.856187,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,27,Australia,AU,South Australia,-34.881999,138.732281,EPSG:4326 +HUMAN_OBSERVATION,madisonaslide,1,,,2024,7,9,Australia,AU,Queensland,-27.560116,153.062642,EPSG:4326 +HUMAN_OBSERVATION,pamwhetnall,1,,,2022,1,24,Australia,AU,South Australia,-34.84302,138.679817,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,1,Australia,AU,Queensland,-27.525634,153.092364,EPSG:4326 +HUMAN_OBSERVATION,tommy4562,1,,,2022,10,13,Australia,AU,Queensland,-26.452669,152.985611,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,"Older male found ""asleep"" on ground near front fence on busy road, not a good sign. Drank water from a bowl for more than half hour and ate leaves on way to Werribee Zoo vet. Found to be blind and euthanized. RIP old fella. He has not been identified in this area previously, another dominant male has been seen several times",2023,1,27,Australia,AU,Victoria,-37.871198,144.25027,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,Male tagged koala Allegro sleeping in a tree,2020,1,25,Australia,AU,Queensland,-26.379567,153.103795,EPSG:4326 +HUMAN_OBSERVATION,Dominic Chaplin,1,,20m from the Bruce Highway with non stop noisy trucks!,2022,4,4,Australia,AU,Queensland,-21.745417,149.365217,EPSG:4326 +HUMAN_OBSERVATION,cinnamonsalami,1,,,2024,10,22,Australia,AU,Queensland,-27.414947,152.394333,EPSG:4326 +HUMAN_OBSERVATION,codyhochen,1,,,2022,8,16,Australia,AU,Queensland,-27.482163,152.899813,EPSG:4326 +HUMAN_OBSERVATION,pablo_fuentes,1,,,2024,11,2,Australia,AU,Victoria,-38.66705,143.860662,EPSG:4326 +HUMAN_OBSERVATION,scorpio83,1,,Phascolarctos cinereus cinereus.,2023,6,30,Australia,AU,New South Wales,-31.459893,152.921827,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Forest Red Gum,2022,1,17,Australia,AU,Queensland,-27.543084,153.073262,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Two koalas same tree,2024,8,10,Australia,AU,Queensland,-27.526868,153.090364,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,First time we have seen a koala in this favourite little tree this season.,2021,8,21,Australia,AU,New South Wales,-28.253886,153.376935,EPSG:4326 +HUMAN_OBSERVATION,bundalafarm,1,,,2022,8,7,Australia,AU,New South Wales,-28.644547,153.108917,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,1,22,Australia,AU,Victoria,-38.354877,146.388194,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Cindy - red tag A5 RIGHT ear,2023,6,9,Australia,AU,Queensland,-27.52721,153.108969,EPSG:4326 +HUMAN_OBSERVATION,Max Tibby,1,,,2023,4,3,Australia,AU,New South Wales,-30.488699,151.64095,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,15,Australia,AU,Queensland,-27.527833,153.093204,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland Mother and joey,2024,10,29,Australia,AU,Queensland,-27.527242,153.092234,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,27,Australia,AU,Queensland,-27.529637,153.103749,EPSG:4326 +HUMAN_OBSERVATION,pdw181,1,,,2023,11,25,Australia,AU,Victoria,-37.515152,144.556541,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,2,6,Australia,AU,Queensland,-27.528718,153.108924,EPSG:4326 +HUMAN_OBSERVATION,robertbruhn,1,,,2021,12,23,Australia,AU,Victoria,-38.578383,146.011543,EPSG:4326 +HUMAN_OBSERVATION,jasew,1,,Road kill unfortunately.,2022,8,9,Australia,AU,Victoria,-38.2272,145.235947,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,4,22,Australia,AU,New South Wales,-28.260484,153.403897,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,12,5,Australia,AU,New South Wales,-28.260553,153.399521,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree near mowing shed K block,2024,5,6,Australia,AU,Queensland,-27.525837,153.090831,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,3,24,Australia,AU,Queensland,-27.525928,153.092999,EPSG:4326 +HUMAN_OBSERVATION,Ray Turnbull,1,,,2022,3,19,Australia,AU,Victoria,-38.791788,143.535193,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2023,11,4,Australia,AU,Queensland,-27.527015,153.091586,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,2,12,Australia,AU,Victoria,-38.671337,146.1642,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3123 Confirmed as Koala scat by OWAD Environment,2022,11,12,Australia,AU,Queensland,-27.50254,152.16144,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2022,8,23,Australia,AU,New South Wales,-34.10168,150.823212,EPSG:4326 +HUMAN_OBSERVATION,tallangalook,1,,,2023,11,18,Australia,AU,Victoria,-37.048094,145.555908,EPSG:4326 +HUMAN_OBSERVATION,mclandcare,1,FEMALE,,2024,2,15,Australia,AU,Victoria,-37.802867,144.222472,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Maisie and joey Outside nursery,2023,11,13,Australia,AU,Queensland,-27.527125,153.091622,EPSG:4326 +HUMAN_OBSERVATION,Marie Tarrant,1,,-27.25493 152.85947 along Red Trail at 12.14pm,2022,10,24,Australia,AU,Queensland,-27.254807,152.857453,EPSG:4326 +HUMAN_OBSERVATION,magpies_friends,1,,,2023,11,29,Australia,AU,Queensland,-27.498347,153.403016,EPSG:4326 +HUMAN_OBSERVATION,Alex,1,,Hunter Camera,2024,7,14,Australia,AU,Queensland,-26.14881,152.86575,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,10,27,Australia,AU,South Australia,-34.877295,138.78649,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,4,23,Australia,AU,Queensland,-27.509328,153.086782,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Two koalas same tree,2024,8,10,Australia,AU,Queensland,-27.526862,153.090306,EPSG:4326 +HUMAN_OBSERVATION,michikomarty,1,,mother with juvenile,2021,11,28,Australia,AU,Queensland,-27.714922,151.522174,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,MALE,Male,2020,10,15,Australia,AU,Victoria,-38.175467,145.132179,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2024,8,19,Australia,AU,Victoria,-38.345214,146.403998,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,6,23,Australia,AU,Queensland,-27.526976,153.090679,EPSG:4326 +HUMAN_OBSERVATION,dominiquelar,1,,,2023,5,11,Australia,AU,Victoria,-36.16508,146.890197,EPSG:4326 +HUMAN_OBSERVATION,Tansnaturediary,1,,During Macedon ta he’s koala count. Manna gum sex unknown,2022,11,7,Australia,AU,Victoria,-37.331108,144.594668,EPSG:4326 +HUMAN_OBSERVATION,Nick Lambert,1,,Was in the middle of the road. Made it safely across and I managed to get some pics. Pics to come,2020,9,14,Australia,AU,New South Wales,-29.661518,150.842873,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Seen from across Bulimba Creek,2023,11,10,Australia,AU,Queensland,-27.527111,153.109994,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Cheese Tree,2020,2,3,Australia,AU,Queensland,-27.545076,153.059213,EPSG:4326 +HUMAN_OBSERVATION,cintajac,1,,"Bellowing 3-4 times, very alert",2020,10,4,Australia,AU,South Australia,-34.830529,138.741556,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,10,25,Australia,AU,Queensland,-27.530098,153.10572,EPSG:4326 +HUMAN_OBSERVATION,chad05,1,,,2023,8,24,Australia,AU,Victoria,-38.835812,143.51477,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,Two koalas in same tree,2023,11,15,Australia,AU,Queensland,-27.567963,151.716203,EPSG:4326 +HUMAN_OBSERVATION,Vanessa Mota,1,,,2020,2,8,Australia,AU,Queensland,-27.919485,153.377058,EPSG:4326 +HUMAN_OBSERVATION,graceabraham,1,,,2022,11,16,Australia,AU,Queensland,-27.400742,153.437622,EPSG:4326 +HUMAN_OBSERVATION,amychasingbushstars,1,,,2023,5,2,Australia,AU,New South Wales,-31.362261,152.865706,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male,2024,2,20,Australia,AU,Queensland,-27.529741,153.103737,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,This fella is diseased,2024,6,25,Australia,AU,Queensland,-28.14209,152.923498,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,13,Australia,AU,Queensland,-27.5273,153.091532,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,15,Australia,AU,Queensland,-27.547089,153.058884,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. lots of koalas observed in the area travelling through corridor from old trainline to showgrounds. Observed by Cynthia Radford submitted via text.,2022,4,30,Australia,AU,Queensland,-26.179022,151.698513,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,Scats,2021,6,10,Australia,AU,Victoria,-38.127245,145.273369,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,9,16,Australia,AU,Queensland,-27.549902,153.054153,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,9,Australia,AU,Queensland,-27.526865,153.090499,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,Same koala as the last few days. Moving around to different eucalyptus trees during the night.,2024,1,4,Australia,AU,Queensland,-27.734033,153.101767,EPSG:4326 +HUMAN_OBSERVATION,trudileigh,1,,,2021,10,3,Australia,AU,Victoria,-38.387325,145.134322,EPSG:4326 +HUMAN_OBSERVATION,montyrod,1,,,2021,7,12,Australia,AU,Victoria,-38.26085,145.166371,EPSG:4326 +HUMAN_OBSERVATION,maymay33,1,,,2024,3,1,Australia,AU,Queensland,-26.895113,152.591541,EPSG:4326 +HUMAN_OBSERVATION,David C. Simon,1,,Female with joey,2023,10,3,Australia,AU,New South Wales,-33.568807,150.625466,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,23,Australia,AU,Queensland,-27.546305,153.074492,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,10,4,Australia,AU,South Australia,-34.890807,138.709987,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,21,Australia,AU,South Australia,-34.894163,138.717193,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2023,11,19,Australia,AU,Queensland,-27.284041,152.999675,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2023,10,11,Australia,AU,Queensland,-27.527192,153.091307,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,27,Australia,AU,Queensland,-27.52907,153.103072,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,15,Australia,AU,Queensland,-27.530116,153.105307,EPSG:4326 +HUMAN_OBSERVATION,johjesse,1,,,2024,3,25,Australia,AU,Queensland,-27.297474,152.04235,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,2,10,Australia,AU,Queensland,-27.528536,153.106664,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,22,Australia,AU,Queensland,-27.529805,153.103478,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,5,20,Australia,AU,South Australia,-34.894608,138.620254,EPSG:4326 +HUMAN_OBSERVATION,caitlinr1403,1,,Female koala bitten by something required capture and vet treatment,2024,2,1,Australia,AU,Queensland,-27.509836,153.095865,EPSG:4326 +HUMAN_OBSERVATION,Gordon Claridge,1,,LCA3049,2020,1,9,Australia,AU,Queensland,-27.495734,152.249657,EPSG:4326 +HUMAN_OBSERVATION,alisonswain,1,,Injured - had to be euthanised,2021,10,1,Australia,AU,New South Wales,-36.17004,149.383101,EPSG:4326 +HUMAN_OBSERVATION,ALFAMAX,1,,,2022,11,9,Australia,AU,Victoria,-37.923295,147.713625,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,6,1,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear Near seton college fence,2023,11,5,Australia,AU,Queensland,-27.528601,153.092948,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,1,16,Australia,AU,Queensland,-27.527238,153.091637,EPSG:4326 +HUMAN_OBSERVATION,Jarno Coone,1,,,2024,11,11,Australia,AU,Victoria,-37.370542,144.684233,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2024,5,26,Australia,AU,New South Wales,-33.076853,151.095427,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,3,Australia,AU,South Australia,-34.891344,138.719245,EPSG:4326 +HUMAN_OBSERVATION,Leah Burns,1,,,2023,9,17,Australia,AU,Queensland,-27.548335,153.074897,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.923077,147.729647,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,4,17,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,scorpio83,1,,,2020,10,2,Australia,AU,Queensland,-27.313872,152.618937,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Second night straight this juvenile koala is in this tree.,2024,3,12,Australia,AU,Queensland,-27.558189,153.054109,EPSG:4326 +HUMAN_OBSERVATION,Deb,1,,,2024,4,21,Australia,AU,South Australia,-35.003945,138.645821,EPSG:4326 +HUMAN_OBSERVATION,zebsphotography,1,,,2022,9,22,Australia,AU,Victoria,-38.04846,141.178706,EPSG:4326 +HUMAN_OBSERVATION,Graham Possingham,1,,Near town lake,2023,3,11,Australia,AU,Victoria,-37.736661,142.035413,EPSG:4326 +HUMAN_OBSERVATION,Karen,1,,,2022,5,20,Australia,AU,Queensland,-19.117437,146.868549,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,10,9,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,FEMALE,Healthy Koala Mother and back rider Joey - Sighting by M Gabriele for TKWR,2023,11,22,Australia,AU,Queensland,-27.424793,151.880834,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear - known as Buster,2024,11,15,Australia,AU,Queensland,-27.530306,153.105678,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - white tag LEFT ear - Bandit,2024,6,15,Australia,AU,Queensland,-27.529464,153.109385,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2021,11,20,Australia,AU,Victoria,-38.38475,145.307915,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2022,10,9,Australia,AU,Queensland,-28.220394,152.867654,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2023,9,4,Australia,AU,Queensland,-27.527077,153.109069,EPSG:4326 +HUMAN_OBSERVATION,Nick Lambert,1,,,2020,9,22,Australia,AU,New South Wales,-30.422281,152.946944,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,4,5,Australia,AU,Queensland,-27.526762,153.090539,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,11,15,Australia,AU,Queensland,-27.659889,153.160433,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,11,13,Australia,AU,Victoria,-38.671037,146.163789,EPSG:4326 +HUMAN_OBSERVATION,danowbridge,1,,,2020,6,17,Australia,AU,Queensland,-27.451769,152.6224,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2023,5,11,Australia,AU,Victoria,-37.018593,145.533369,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,10,26,Australia,AU,Queensland,-27.542113,153.053192,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,MALE,,2021,2,16,Australia,AU,Victoria,-38.175528,145.13221,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,1,9,Australia,AU,South Australia,-34.670924,138.824677,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Scat - numerous under a mature grey gum,2024,6,6,Australia,AU,New South Wales,-31.910405,152.378538,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,2,10,Australia,AU,Queensland,-27.372908,152.58525,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother up high eating and joey sleeping in fork,2023,11,26,Australia,AU,Queensland,-27.527028,153.091811,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Red tag RIGHT ear - probably Cindy,2023,3,31,Australia,AU,Queensland,-27.527341,153.107265,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,6,6,Australia,AU,New South Wales,-28.254282,153.377294,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,10,20,Australia,AU,Queensland,-27.549837,153.060462,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Jennifer Lockhart. Submitted via FB.,2024,6,12,Australia,AU,Queensland,-26.104681,151.446139,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,20,Australia,AU,South Australia,-34.875738,138.725773,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,8,25,Australia,AU,Queensland,-27.528557,153.09331,EPSG:4326 +HUMAN_OBSERVATION,smestan,1,,mom and baby!,2022,11,11,Australia,AU,Queensland,-27.496558,153.399601,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"2 koala in one Eucalyptus propinqua,. Did have 3, one departed fro another tree",2024,11,14,Australia,AU,Queensland,-27.510492,153.069897,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,7,11,Australia,AU,Queensland,-27.515279,153.082225,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,Possible koala scratching on tree near path,2023,12,5,Australia,AU,Queensland,-27.544065,153.060776,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2020,10,28,Australia,AU,South Australia,-35.016551,138.767908,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland rear Mother and joey,2023,12,8,Australia,AU,Queensland,-27.528462,153.092621,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,11,11,Australia,AU,Queensland,-27.529013,153.103981,EPSG:4326 +HUMAN_OBSERVATION,lilyanzai,1,,,2022,6,10,Australia,AU,Queensland,-19.12283,146.873362,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2024,4,7,Australia,AU,Victoria,-37.639799,143.900685,EPSG:4326 +HUMAN_OBSERVATION,g_crosby,1,,,2023,1,13,Australia,AU,Queensland,-27.910376,152.368591,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - yellow tag RIGHT ear C1?possibly Charly (C14),2023,3,15,Australia,AU,Queensland,-27.527942,153.111602,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Gavin sent photo of small female (brown one?) in the tree in their front yard,2020,8,26,Australia,AU,New South Wales,-28.25321,153.376603,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2022,10,9,Australia,AU,Queensland,-28.214114,152.864903,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,15,Australia,AU,Queensland,-27.547393,153.058707,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,8,Australia,AU,Queensland,-27.527187,153.111357,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,From video probably Mum & Bub,2023,11,25,Australia,AU,Queensland,-27.263097,152.046386,EPSG:4326 +HUMAN_OBSERVATION,clayt_,1,,,2023,10,29,Australia,AU,Victoria,-38.362566,145.27565,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2023,7,20,Australia,AU,Queensland,-28.105789,153.445392,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2022,1,14,Australia,AU,South Australia,-34.905347,138.614851,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.374504,145.314484,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood mum and Joey,2021,9,21,Australia,AU,Queensland,-27.550665,153.058142,EPSG:4326 +HUMAN_OBSERVATION,george_seagull,1,,"Highly obscured by leaves, but just above the koala in the second pic (observation at https://inaturalist.ala.org.au/observations/104136358). It appeared smaller, so perhaps the young one of the visible koala. Location slightly obscured so they can be left in peace. Old Cape Schanck Road Bushland Reserve, Rosebud.",2022,1,1,Australia,AU,Victoria,-38.376073,144.910225,EPSG:4326 +HUMAN_OBSERVATION,richmondjg,1,,,2020,11,6,Australia,AU,Victoria,-38.133642,145.271615,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Stringybark,2020,1,31,Australia,AU,Queensland,-27.544357,153.056383,EPSG:4326 +HUMAN_OBSERVATION,Richard Fuller,1,,,2023,10,1,Australia,AU,Queensland,-27.523019,153.119495,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland Male- testicles visible,2024,4,14,Australia,AU,Queensland,-27.524718,153.093629,EPSG:4326 +HUMAN_OBSERVATION,Joachim Bertrands,1,,,2024,9,14,Australia,AU,Victoria,-38.152033,141.864492,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In Eucalyptus tereticornis.,2021,9,18,Australia,AU,Queensland,-27.736553,153.053782,EPSG:4326 +HUMAN_OBSERVATION,kaikww,1,,,2024,8,25,Australia,AU,Queensland,-27.536284,153.040324,EPSG:4326 +HUMAN_OBSERVATION,mags-charter,1,,,2023,11,9,Australia,AU,Victoria,-38.518822,143.538467,EPSG:4326 +HUMAN_OBSERVATION,carrierisley,1,,Koala was active and well,2020,5,4,Australia,AU,New South Wales,-32.66296,151.717494,EPSG:4326 +HUMAN_OBSERVATION,scotia70,1,,,2024,9,5,Australia,AU,Victoria,-37.640953,144.434617,EPSG:4326 +HUMAN_OBSERVATION,thewildfoodhuntress,1,,,2022,12,20,Australia,AU,South Australia,-34.961021,138.601756,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,10,23,Australia,AU,Queensland,-27.551534,153.058949,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,11,7,Australia,AU,Queensland,-27.547938,153.058963,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,27,Australia,AU,Queensland,-27.527072,153.090956,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Single male. Could not see clear nose view.,2020,11,26,Australia,AU,New South Wales,-28.253991,153.377456,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,21,Australia,AU,South Australia,-34.890079,138.729981,EPSG:4326 +HUMAN_OBSERVATION,aresroberts,1,,little man hanging out on the road,2023,11,7,Australia,AU,South Australia,-35.012289,138.608394,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Rear entrance to nursery Mother and joey,2024,10,5,Australia,AU,Queensland,-27.527392,153.092179,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,5,3,Australia,AU,Queensland,-27.524369,153.093052,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2021,11,22,Australia,AU,Victoria,-38.384727,145.307883,EPSG:4326 +HUMAN_OBSERVATION,Sylvia Felicity Ann Haworth,1,,One of seven different koalas that I saw on Mt Gravatt this morning.,2024,11,9,Australia,AU,Queensland,-27.546099,153.074966,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Millie - not tagged,2023,5,26,Australia,AU,Queensland,-27.52719,153.111265,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,24,Australia,AU,South Australia,-34.860384,138.719531,EPSG:4326 +HUMAN_OBSERVATION,paulhales,1,MALE,,2020,10,8,Australia,AU,Queensland,-17.961042,145.456847,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - white tag LEFT ear - Bandit,2024,5,1,Australia,AU,Queensland,-27.527601,153.110403,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery entrance gates,2023,6,25,Australia,AU,Queensland,-27.527341,153.091468,EPSG:4326 +HUMAN_OBSERVATION,Ian Clark,1,,,2023,12,17,Australia,AU,Victoria,-38.137799,145.256445,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,5,Australia,AU,Queensland,-27.527308,153.102847,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2024,7,12,Australia,AU,Queensland,-27.530854,153.104591,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,"On a Grey Gum, Eucalyptus propinqua",2023,10,7,Australia,AU,Queensland,-27.509411,153.070433,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Mum and joey. seems to like this cluster of trees.,2021,7,30,Australia,AU,New South Wales,-28.254203,153.377382,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,23,Australia,AU,Queensland,-27.542685,153.073379,EPSG:4326 +HUMAN_OBSERVATION,Nature_Lover,1,,Found on private property,2023,5,29,Australia,AU,New South Wales,-28.709547,153.489962,EPSG:4326 +HUMAN_OBSERVATION,lynsh,1,,,2023,9,9,Australia,AU,Queensland,-28.094804,153.450049,EPSG:4326 +HUMAN_OBSERVATION,Anne Love,1,,,2023,4,27,Australia,AU,Queensland,-27.493706,152.86022,EPSG:4326 +HUMAN_OBSERVATION,venus5026,1,,,2024,1,1,Australia,AU,South Australia,-35.706851,137.494587,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,5,26,Australia,AU,Queensland,-27.524889,153.093727,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,1,18,Australia,AU,Victoria,-38.670976,146.163589,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,With Joey in Tallowwood,2021,9,8,Australia,AU,Queensland,-27.551011,153.057524,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. 17 July 2021 south burnett rail trail Murgon - wondai. Murgon end. Observed by Rachel Kiesling. Forwarded by msg,2021,7,17,Australia,AU,Queensland,-26.250646,151.93139,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,19,Australia,AU,Queensland,-27.526989,153.093685,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,9,15,Australia,AU,Queensland,-27.525543,153.091784,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.923255,147.731292,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,6,23,Australia,AU,Queensland,-27.527101,153.091068,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,1,28,Australia,AU,Queensland,-27.428708,151.724992,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,11,6,Australia,AU,Queensland,-27.659889,153.160433,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,10,26,Australia,AU,Victoria,-37.65313,143.915468,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey Charlie,2024,4,12,Australia,AU,Queensland,-27.528525,153.103276,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,With Joey in Tallowwood,2021,11,9,Australia,AU,Queensland,-27.538663,153.054832,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,7,15,Australia,AU,Queensland,-27.550325,153.054602,EPSG:4326 +HUMAN_OBSERVATION,Scott Baker,1,,,2021,4,18,Australia,AU,Victoria,-38.329333,141.603419,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2020,8,9,Australia,AU,Queensland,-27.544028,153.072832,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,18,Australia,AU,South Australia,-34.892572,138.720998,EPSG:4326 +HUMAN_OBSERVATION,Stephen Cox,1,,,2024,1,5,Australia,AU,Victoria,-38.313615,142.365659,EPSG:4326 +HUMAN_OBSERVATION,Torbjorn von Strokirch,1,,Nice to see these are still here. Haven't seen one in the streets for a couple of years,2024,4,12,Australia,AU,Victoria,-38.62932,145.731837,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,9,8,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,15,Australia,AU,Queensland,-27.529613,153.105189,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,,Koala scat under a E. melliodora.,2024,7,29,Australia,AU,Queensland,-27.649418,151.912203,EPSG:4326 +HUMAN_OBSERVATION,Eathan Douglas,1,,,2024,11,4,Australia,AU,Victoria,-38.319278,142.363592,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,5,18,Australia,AU,South Australia,-34.904707,138.711531,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,9,24,Australia,AU,Queensland,-27.225155,153.069915,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2024,7,16,Australia,AU,Queensland,-27.526872,153.107724,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,12,Australia,AU,Queensland,-27.530159,153.104084,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,4,19,Australia,AU,Queensland,-27.551715,153.057593,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,14,Australia,AU,Queensland,-27.528114,153.112433,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area middle,2023,11,4,Australia,AU,Queensland,-27.527648,153.092413,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,11,Australia,AU,Queensland,-27.524929,153.092335,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,10,25,Australia,AU,Queensland,-27.527673,153.112769,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,High up,2024,11,22,Australia,AU,New South Wales,-34.080524,150.849399,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi & joey,2024,1,19,Australia,AU,Queensland,-27.530424,153.103744,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,14,Australia,AU,Queensland,-27.526661,153.090281,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to cleaners donga,2024,8,25,Australia,AU,Queensland,-27.526815,153.091755,EPSG:4326 +HUMAN_OBSERVATION,einadia,1,,,2020,3,3,Australia,AU,South Australia,-34.924553,138.687637,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2024,7,21,Australia,AU,South Australia,-34.96265,138.698849,EPSG:4326 +HUMAN_OBSERVATION,Rachel Burkett,1,,,2021,10,14,Australia,AU,Victoria,-38.131041,145.268323,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. No obvious signs of injury or illness but a misadventure stuck in a tree on an intersection. Rescued and health check before re-release. Observed by Mike. Rescued and submitted by Wendy Taylor via msg & FB. Release 15th October 2024. Third photo is the day of release.,2024,10,1,Australia,AU,Queensland,-26.671719,152.007203,EPSG:4326 +HUMAN_OBSERVATION,neotrigonia,1,,,2020,1,30,Australia,AU,South Australia,-34.929553,138.689912,EPSG:4326 +HUMAN_OBSERVATION,Konrad Szylar,1,,,2022,3,7,Australia,AU,Queensland,-19.142892,146.867247,EPSG:4326 +HUMAN_OBSERVATION,Selim,1,,,2024,8,2,Australia,AU,Queensland,-27.240016,152.424423,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Bloodwood,2020,11,7,Australia,AU,Queensland,-27.551014,153.057031,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,16,Australia,AU,Queensland,-27.716108,151.549728,EPSG:4326 +HUMAN_OBSERVATION,nhaass,1,,adult male same individual as this one: https://www.inaturalist.org/observations/180427768,2023,8,31,Australia,AU,Queensland,-27.510381,153.094654,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,14,Australia,AU,Queensland,-27.527607,153.110696,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,2,9,Australia,AU,Queensland,-27.543404,153.073027,EPSG:4326 +HUMAN_OBSERVATION,bertbohosouth,1,,,2021,2,27,Australia,AU,Victoria,-36.793808,145.794091,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,16,Australia,AU,South Australia,-34.887151,138.720566,EPSG:4326 +HUMAN_OBSERVATION,spookpadda,1,,,2020,12,31,Australia,AU,New South Wales,-34.768947,146.573013,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,7,17,Australia,AU,Queensland,-27.544315,153.067814,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,7,29,Australia,AU,South Australia,-34.890867,138.733292,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,30,Australia,AU,South Australia,-34.831308,138.744166,EPSG:4326 +HUMAN_OBSERVATION,Geoffrey Cox,1,,,2024,3,23,Australia,AU,South Australia,-35.130765,138.686004,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,9,17,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,smoothcatfish,1,,,2023,12,7,Australia,AU,Victoria,-37.913235,147.753818,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,24,Australia,AU,Queensland,-27.545896,153.073892,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,16,Australia,AU,Queensland,-27.822698,152.992373,EPSG:4326 +HUMAN_OBSERVATION,dawnborchardt,1,,,2023,3,14,Australia,AU,South Australia,-34.986404,138.719293,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,2,8,Australia,AU,South Australia,-34.899727,138.691347,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,19,Australia,AU,South Australia,-34.892659,138.720914,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy but wet from rain. Observed by Leen Rhetto Antro. Submitted via FB.,2024,11,12,Australia,AU,Queensland,-26.515852,151.954645,EPSG:4326 +HUMAN_OBSERVATION,David Flack,1,,,2023,8,30,Australia,AU,Queensland,-26.589626,151.905242,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2024,7,1,Australia,AU,Queensland,-28.09199,152.858401,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag - & joey,2023,2,15,Australia,AU,Queensland,-27.530675,153.103673,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,9,Australia,AU,South Australia,-34.868979,138.730717,EPSG:4326 +HUMAN_OBSERVATION,Elspeth Swan,1,,,2023,11,2,Australia,AU,Victoria,-37.633621,144.088528,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,2,24,Australia,AU,New South Wales,-28.256991,153.402001,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Baby Wilemina. The saliva from ferocious eating!,2024,7,23,Australia,AU,South Australia,-34.890074,138.732236,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Numerous truck Koala scratches on grey gums in the area.,2022,9,11,Australia,AU,New South Wales,-33.144183,151.073639,EPSG:4326 +HUMAN_OBSERVATION,Dee Nolan,1,,,2024,8,27,Australia,AU,South Australia,-35.007928,138.633604,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - red tag RIGHT ear - Cindy,2023,8,19,Australia,AU,Queensland,-27.52732,153.107273,EPSG:4326 +HUMAN_OBSERVATION,kaikww,1,,,2024,8,25,Australia,AU,Queensland,-27.536294,153.040418,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,8,16,Australia,AU,Victoria,-37.641822,143.901148,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,7,27,Australia,AU,Queensland,-27.528509,153.092515,EPSG:4326 +HUMAN_OBSERVATION,parrwang,1,,,2024,6,8,Australia,AU,Victoria,-37.882561,144.183644,EPSG:4326 +HUMAN_OBSERVATION,codyhochen,1,,,2020,11,22,Australia,AU,Queensland,-27.527298,152.865477,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,1,Australia,AU,Queensland,-27.527099,153.091692,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,4,2,Australia,AU,New South Wales,-34.766962,146.57408,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,1,9,Australia,AU,Queensland,-27.506961,153.085239,EPSG:4326 +HUMAN_OBSERVATION,Neil Huth,1,,,2020,1,4,Australia,AU,Queensland,-27.314778,152.267369,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,2,29,Australia,AU,Queensland,-28.255358,153.103327,EPSG:4326 +HUMAN_OBSERVATION,insiderelic,1,,,2020,11,4,Australia,AU,South Australia,-34.793435,138.675034,EPSG:4326 +HUMAN_OBSERVATION,valsan,1,,,2022,12,5,Australia,AU,South Australia,-35.032867,138.559433,EPSG:4326 +HUMAN_OBSERVATION,dumakey,1,,,2022,8,21,Australia,AU,South Australia,-35.146771,138.739585,EPSG:4326 +HUMAN_OBSERVATION,Victoria,1,,,2024,9,27,Australia,AU,South Australia,-35.001122,138.656193,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,8,Australia,AU,Queensland,-27.53006,153.103643,EPSG:4326 +HUMAN_OBSERVATION,alexnash,1,,,2021,1,10,Australia,AU,Queensland,-27.513113,153.078383,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male koala high in redgum. He is the younger of 2 males seen near here.,2023,2,14,Australia,AU,Victoria,-37.873175,144.273393,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area between a block and lower woodland car park,2024,8,10,Australia,AU,Queensland,-27.526832,153.092492,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,2 koalas in same tree,2024,11,6,Australia,AU,Queensland,-27.527412,153.110188,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,13,Australia,AU,Queensland,-27.526453,153.090677,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2023,12,27,Australia,AU,Queensland,-27.524277,153.092997,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,10,29,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Rachael Cooper. Submitted via email.,2023,8,20,Australia,AU,Queensland,-26.492269,151.851394,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Mum and baby,2022,9,12,Australia,AU,Queensland,-27.545172,153.068085,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,Sleeping then migrated up to eat,2024,11,19,Australia,AU,New South Wales,-34.070002,150.852496,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"Eucalyptus tereticornis. Koala count 60 minutes x 3 :1 koala observed by 3 (AJT, TAT,JPT)",2023,10,15,Australia,AU,Queensland,-27.823476,152.994244,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,26,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,mossymossmoss,1,,,2024,1,16,Australia,AU,New South Wales,-30.263303,153.112961,EPSG:4326 +HUMAN_OBSERVATION,J. Addesi,1,,,2024,3,24,Australia,AU,South Australia,-34.904197,138.709142,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2020,5,9,Australia,AU,Queensland,-27.51045,153.082525,EPSG:4326 +HUMAN_OBSERVATION,R. Kabakoff,1,,,2024,5,25,Australia,AU,Queensland,-27.274817,153.046574,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Observed in a Tallowwood tree.,2021,5,13,Australia,AU,New South Wales,-28.260433,153.401372,EPSG:4326 +HUMAN_OBSERVATION,Stephen Cox,1,,Baby,2024,1,5,Australia,AU,Victoria,-38.318505,142.363203,EPSG:4326 +HUMAN_OBSERVATION,Enot Poluskuns,1,,,2023,9,17,Australia,AU,Queensland,-19.125673,146.868441,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,10,30,Australia,AU,Queensland,-27.539681,153.066312,EPSG:4326 +HUMAN_OBSERVATION,Casual Observer,1,,,2022,7,3,Australia,AU,Queensland,-27.140473,152.944093,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - presumably Cindy,2023,9,23,Australia,AU,Queensland,-27.527255,153.108179,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,10,18,Australia,AU,Queensland,-27.527196,153.108178,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,11,5,Australia,AU,Queensland,-27.437048,152.632479,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Maisie and joey,2023,10,14,Australia,AU,Queensland,-27.527043,153.090661,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Scat under narrow leaf stringy bark,2023,8,5,Australia,AU,New South Wales,-33.171947,151.245163,EPSG:4326 +HUMAN_OBSERVATION,Dan Bishop,1,,,2022,9,25,Australia,AU,Queensland,-27.394846,151.94325,EPSG:4326 +HUMAN_OBSERVATION,dianapascoe,1,,"Found in tree bordering back yard, Suncroft Street. Koala is tagged 1264",2023,2,17,Australia,AU,Queensland,-27.540054,153.071747,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,11,5,Australia,AU,Queensland,-27.258725,152.045485,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,6,28,Australia,AU,Queensland,-27.551125,153.057799,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,Koala eating/lazing in spotted gum. 1 of 4 seen this morning.,2024,9,19,Australia,AU,Queensland,-27.506808,153.085483,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,2 males sharing a tree. White tag LEFT ear - Bandit,2024,4,13,Australia,AU,Queensland,-27.529731,153.109717,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,5,11,Australia,AU,New South Wales,-33.076233,151.094986,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Yvonne Grace. Submitted via Msg. (Notes: over the past few years 2 males &1 female have been seen frequently at the property. They are believed to be the same individuals based on markings).,2020,1,1,Australia,AU,Queensland,-26.556562,151.870885,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,9,17,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,9,22,Australia,AU,Queensland,-27.527148,153.108289,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,10,6,Australia,AU,Queensland,-27.528335,153.092342,EPSG:4326 +HUMAN_OBSERVATION,lizgould,1,,,2022,6,25,Australia,AU,Queensland,-27.425988,153.522063,EPSG:4326 +HUMAN_OBSERVATION,errolcraig,1,,,2021,8,28,Australia,AU,Queensland,-28.069569,152.966278,EPSG:4326 +HUMAN_OBSERVATION,Kathryn Lineberger,1,,,2022,12,21,Australia,AU,Victoria,-38.826513,143.524481,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,11,23,Australia,AU,Queensland,-27.527466,153.10413,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,10,6,Australia,AU,Queensland,-27.523891,153.093098,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,9,18,Australia,AU,Queensland,-27.527194,153.109003,EPSG:4326 +HUMAN_OBSERVATION,kaneq,1,,,2022,11,3,Australia,AU,Victoria,-38.059011,141.922078,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,8,31,Australia,AU,South Australia,-34.893147,138.712419,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,FEMALE,Mum and bub (hiding on front of mum). In Leptospermum on Nowendoc River.,2022,11,18,Australia,AU,New South Wales,-31.540287,151.734587,EPSG:4326 +HUMAN_OBSERVATION,janlmcdougall,1,,,2023,2,3,Australia,AU,Queensland,-27.523801,153.084469,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In picnic area next to woodland entrance,2024,2,17,Australia,AU,Queensland,-27.527228,153.092174,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,14,Australia,AU,Queensland,-27.525945,153.092041,EPSG:4326 +HUMAN_OBSERVATION,shaunplumtree,1,,,2023,8,19,Australia,AU,Queensland,-19.125314,146.870498,EPSG:4326 +HUMAN_OBSERVATION,Louise O'Hare,1,,Male(?) Koala feeding in small tree in small stretch of Bush between Hilliards Creek and Francis Street Ormiston 4160. First sighting we have had in 2 years.,2020,5,27,Australia,AU,Queensland,-27.517772,153.244503,EPSG:4326 +HUMAN_OBSERVATION,Jack Beau Devlin,1,,,2024,5,19,Australia,AU,Queensland,-27.555762,153.076105,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,9,21,Australia,AU,Queensland,-27.527145,153.091636,EPSG:4326 +HUMAN_OBSERVATION,raggedyjack,1,,,2023,1,28,Australia,AU,Queensland,-27.431817,153.538495,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2021,1,22,Australia,AU,Victoria,-38.132196,145.269738,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy Koala Sighting by M Turner. TKWR attended to do health check.,2023,11,8,Australia,AU,Queensland,-27.358838,152.03444,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Male feeding in Tallowwood,2021,6,21,Australia,AU,Queensland,-27.548436,153.059465,EPSG:4326 +HUMAN_OBSERVATION,hasinta,1,,,2023,4,8,Australia,AU,Queensland,-27.592569,151.896046,EPSG:4326 +HUMAN_OBSERVATION,Francesco Martoni,1,,,2022,1,27,Australia,AU,Victoria,-38.552103,143.750632,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey,2024,4,25,Australia,AU,Queensland,-27.529951,153.103378,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,4,Australia,AU,Queensland,-27.529122,153.111818,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,8,Australia,AU,Queensland,-27.529102,153.106533,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Tallowwood tree,2024,8,22,Australia,AU,New South Wales,-28.260205,153.401969,EPSG:4326 +HUMAN_OBSERVATION,Hiroya Kidoguchi,1,,,2024,9,11,Australia,AU,Queensland,-27.53927,153.046545,EPSG:4326 +HUMAN_OBSERVATION,dinosaurfanatic,1,,,2024,1,2,Australia,AU,Queensland,-27.506238,153.082703,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,3,7,Australia,AU,Queensland,-27.545612,153.068401,EPSG:4326 +HUMAN_OBSERVATION,Sharon Dodd,1,,,2021,12,12,Australia,AU,Victoria,-38.358244,146.388004,EPSG:4326 +HUMAN_OBSERVATION,mbp349,1,,"West Point, Magnetic Island",2023,8,24,Australia,AU,Queensland,-19.133877,146.783352,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,5,11,Australia,AU,Queensland,-27.549462,153.06012,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Healthy decent sized adult,2024,8,31,Australia,AU,Queensland,-27.479947,153.085997,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,11,14,Australia,AU,Queensland,-27.527131,153.091761,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,1,1,Australia,AU,Queensland,-27.61558,153.088167,EPSG:4326 +HUMAN_OBSERVATION,Nils Schumacher,1,,,2023,9,30,Australia,AU,Queensland,-27.545368,153.072326,EPSG:4326 +HUMAN_OBSERVATION,sam_21,1,,,2024,6,26,Australia,AU,Victoria,-38.752798,143.553567,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,7,11,Australia,AU,Queensland,-27.583787,153.151142,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,FEMALE,LCA3139 Breeding - carrying young (Photo: Lisette Schulz),2022,10,12,Australia,AU,Queensland,-27.546956,152.160717,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,10,7,Australia,AU,Victoria,-37.657298,143.896224,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Forest red gum,2024,8,31,Australia,AU,Queensland,-27.533028,153.036536,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Top of wisteria carpark,2024,10,4,Australia,AU,Queensland,-27.525372,153.092272,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"In the context image the Koala is in the centre, above the thick branch in the middle (just a blob, see DSLR imagery for further id). In a Messmate Stringybark (E. obliqua).",2024,5,27,Australia,AU,Victoria,-38.497294,142.978078,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,7,14,Australia,AU,Queensland,-27.525595,153.092273,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,16,Australia,AU,Queensland,-27.670569,151.652312,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,1,14,Australia,AU,Queensland,-27.527192,153.092044,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds,2023,12,31,Australia,AU,Queensland,-27.528164,153.092491,EPSG:4326 +HUMAN_OBSERVATION,Queensland Trust for Nature,1,,,2022,5,26,Australia,AU,Queensland,-27.828676,152.412003,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,10,6,Australia,AU,South Australia,-34.89316,138.716692,EPSG:4326 +HUMAN_OBSERVATION,michikomarty,1,,,2021,11,28,Australia,AU,Queensland,-27.708539,151.506725,EPSG:4326 +HUMAN_OBSERVATION,cbarrie,1,,2 koalas. Initially they were trotting down the road. The larger was chasing the other before going up separate trees,2023,11,2,Australia,AU,Victoria,-37.718722,144.072861,EPSG:4326 +HUMAN_OBSERVATION,kaitlyncav,1,,,2022,11,11,Australia,AU,Queensland,-27.267634,152.058333,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2022,4,6,Australia,AU,Victoria,-38.952397,146.302196,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,9,Australia,AU,Queensland,-27.528992,153.106816,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of Tristania & Wisteria Woodland Male koala - testicles visible,2023,11,19,Australia,AU,Queensland,-27.524063,153.093208,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,3,Australia,AU,South Australia,-34.892223,138.720097,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2024,1,6,Australia,AU,Queensland,-27.54367,153.072222,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Next to e block Maisie and joey,2024,8,3,Australia,AU,Queensland,-27.526603,153.090878,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - white/pale blue tag RIGHT ear - possibly Edith,2023,6,7,Australia,AU,Queensland,-27.528551,153.113472,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,10,28,Australia,AU,Queensland,-27.552235,153.054403,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"believed to be fable, on her own.",2021,10,27,Australia,AU,New South Wales,-28.253572,153.377204,EPSG:4326 +HUMAN_OBSERVATION,kimblyh,1,,Female and joey,2024,11,23,Australia,AU,Queensland,-27.355949,152.462802,EPSG:4326 +HUMAN_OBSERVATION,Dennis,1,,,2021,10,26,Australia,AU,Queensland,-27.528813,153.111206,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,"Ear Tag #1356, Left Side, Yellow",2024,2,4,Australia,AU,Queensland,-27.541203,153.077052,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,3,8,Australia,AU,Victoria,-38.671036,146.163716,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,10,6,Australia,AU,Queensland,-27.548372,153.058366,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,3,4,Australia,AU,New South Wales,-33.076242,151.095061,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,4,10,Australia,AU,Queensland,-27.507638,153.082748,EPSG:4326 +HUMAN_OBSERVATION,jraus,1,,,2024,10,30,Australia,AU,South Australia,-34.961348,138.668343,EPSG:4326 +HUMAN_OBSERVATION,Dominique Appay,1,,In low acacia tree in street edge,2023,8,28,Australia,AU,Queensland,-27.500264,153.234329,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland gully in mating tree,2024,5,26,Australia,AU,Queensland,-27.52742,153.092521,EPSG:4326 +HUMAN_OBSERVATION,seleeny,1,,,2020,10,11,Australia,AU,Queensland,-27.509067,153.076661,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,MALE,,2024,9,4,Australia,AU,Queensland,-27.358627,152.074647,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,"-27.583788, 151.989868",2021,11,26,Australia,AU,Queensland,-27.445983,151.955021,EPSG:4326 +HUMAN_OBSERVATION,kat_but,1,,,2022,10,30,Australia,AU,Victoria,-38.764328,143.668092,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2022,5,29,Australia,AU,South Australia,-34.903183,138.703766,EPSG:4326 +HUMAN_OBSERVATION,tere_c,1,,,2022,4,28,Australia,AU,Victoria,-38.134977,145.274952,EPSG:4326 +HUMAN_OBSERVATION,Adam Taylor,1,,"Mum and baby, also spotted 2 other adults in same area",2020,11,10,Australia,AU,Queensland,-27.52979,153.083719,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,8,13,Australia,AU,Queensland,-27.550942,153.057538,EPSG:4326 +HUMAN_OBSERVATION,Lionel Gobert,1,,,2024,8,2,Australia,AU,Queensland,-19.125104,146.870403,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Two koalas in the same tree. Spotted having a little tussle.,2024,3,15,Australia,AU,Queensland,-27.547353,153.073251,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,13,Australia,AU,Queensland,-27.507881,153.082428,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,24,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,1,28,Australia,AU,Queensland,-27.597528,151.892013,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,11,15,Australia,AU,Victoria,-37.590772,143.886829,EPSG:4326 +HUMAN_OBSERVATION,Ben Travaglini,1,,,2024,9,13,Australia,AU,Victoria,-38.266128,145.047639,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,4,Australia,AU,South Australia,-34.889829,138.722302,EPSG:4326 +HUMAN_OBSERVATION,rubywicks,1,,,2022,2,4,Australia,AU,Victoria,-38.941543,146.280124,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - lime green tag RIGHT ear,2023,5,26,Australia,AU,Queensland,-27.529866,153.110196,EPSG:4326 +HUMAN_OBSERVATION,Elias Aristides Elias,1,,,2023,1,9,Australia,AU,Victoria,-38.772445,143.607637,EPSG:4326 +HUMAN_OBSERVATION,meta4,1,,,2021,10,9,Australia,AU,Victoria,-38.35018,141.429756,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,MALE,,2024,10,2,Australia,AU,New South Wales,-33.129579,151.106658,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in a Eucalyptus tereticornis,2024,6,29,Australia,AU,Queensland,-27.942439,152.526271,EPSG:4326 +HUMAN_OBSERVATION,Janice Hipperson,1,,Koala sitting high in a gumtree behind a construction zone fence for the coomera connector.,2023,7,5,Australia,AU,Queensland,-27.909062,153.341528,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,8,26,Australia,AU,Queensland,-27.50948,153.084601,EPSG:4326 +HUMAN_OBSERVATION,Oscar,1,,,2022,8,26,Australia,AU,Queensland,-27.330048,152.867128,EPSG:4326 +HUMAN_OBSERVATION,Gawain,1,,Two in the same tree,2024,7,1,Australia,AU,Victoria,-38.376773,145.314079,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,11,8,Australia,AU,Queensland,-27.545966,153.058264,EPSG:4326 +HUMAN_OBSERVATION,mitchbagz,1,,,2020,1,11,Australia,AU,Victoria,-38.75553,143.635453,EPSG:4326 +HUMAN_OBSERVATION,docsharpe,1,,,2024,4,7,Australia,AU,Victoria,-38.670725,143.852782,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,MALE,,2024,7,25,Australia,AU,Queensland,-27.456952,152.401765,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,10,22,Australia,AU,Victoria,-38.671445,146.164122,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,4,5,Australia,AU,Queensland,-26.36489,151.813862,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2020,2,12,Australia,AU,Victoria,-38.139088,145.284191,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,5,Australia,AU,Queensland,-27.526308,153.090706,EPSG:4326 +HUMAN_OBSERVATION,G. L. Grammer,1,,,2024,10,7,Australia,AU,South Australia,-34.876642,138.79029,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,10,23,Australia,AU,Queensland,-27.531293,153.105117,EPSG:4326 +HUMAN_OBSERVATION,Jo Burrows,1,,,2020,5,4,Australia,AU,Queensland,-27.507198,153.084031,EPSG:4326 +HUMAN_OBSERVATION,kg1962,1,,Koala,2024,6,5,Australia,AU,Victoria,-38.479095,146.769792,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,"Individual displayed no fear and did not seem to want to climb a tree no matter how I tried to persuade it (it seemed more keen to climb me instead), curled up into a ball when I wasn’t disturbing it. Animal obviously wasn’t well, so I called the park rangers to come take a look and they took it away for care. Hope it’s doing well now!",2021,4,14,Australia,AU,South Australia,-34.953705,138.689025,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,14,Australia,AU,South Australia,-34.889719,138.722808,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,Mum with baby in Tallowwood trees.,2024,9,1,Australia,AU,New South Wales,-28.261821,153.39738,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2023,12,27,Australia,AU,Queensland,-27.525503,153.092117,EPSG:4326 +HUMAN_OBSERVATION,tafty,1,,,2024,10,28,Australia,AU,Victoria,-38.392214,145.391888,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,15,Australia,AU,Queensland,-27.529924,153.103656,EPSG:4326 +HUMAN_OBSERVATION,India,1,,,2023,11,15,Australia,AU,New South Wales,-28.8198,153.30223,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,5,Australia,AU,Queensland,-27.526902,153.09216,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,21,Australia,AU,Queensland,-27.527627,153.111427,EPSG:4326 +HUMAN_OBSERVATION,krob0661,1,,,2024,6,8,Australia,AU,Queensland,-27.295025,152.987788,EPSG:4326 +HUMAN_OBSERVATION,porkytama,1,,,2024,7,31,Australia,AU,Victoria,-38.31859,142.362917,EPSG:4326 +HUMAN_OBSERVATION,cunningly,1,,,2024,5,15,Australia,AU,Victoria,-38.467549,144.065428,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In trees near A block - customer parking sign Maisie yellow TAFE right ear,2023,7,16,Australia,AU,Queensland,-27.526411,153.091039,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2024,5,13,Australia,AU,Victoria,-38.13149,145.26736,EPSG:4326 +HUMAN_OBSERVATION,travisblack,1,,,2023,11,27,Australia,AU,Queensland,-27.810184,153.063241,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,10,7,Australia,AU,Queensland,-27.52389,153.093384,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Forest red gum,2023,10,15,Australia,AU,Queensland,-27.532079,153.037539,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,28,Australia,AU,South Australia,-34.879648,138.777265,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,4,19,Australia,AU,South Australia,-35.008749,138.652791,EPSG:4326 +HUMAN_OBSERVATION,howardk_ecp,1,,Mum and joey both observed in healthy condition.,2024,9,25,Australia,AU,Queensland,-27.728117,153.198106,EPSG:4326 +HUMAN_OBSERVATION,csimpson03,1,,,2023,7,4,Australia,AU,New South Wales,-28.822499,153.305625,EPSG:4326 +HUMAN_OBSERVATION,petermitchellseymour,1,,Koala in Grey Box,2021,11,21,Australia,AU,Victoria,-37.0514,145.168306,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,12,17,Australia,AU,Queensland,-27.529358,153.083603,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,K block mowing shed,2024,8,24,Australia,AU,Queensland,-27.52589,153.090822,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,4,21,Australia,AU,Queensland,-27.550534,153.059902,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,30,Australia,AU,Queensland,-27.527266,153.091436,EPSG:4326 +HUMAN_OBSERVATION,Dezmond Wells,1,,,2023,9,2,Australia,AU,Queensland,-27.033573,153.090683,EPSG:4326 +HUMAN_OBSERVATION,David Lowry,1,,,2022,9,25,Australia,AU,Queensland,-19.126733,146.868408,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,3,3,Australia,AU,Queensland,-27.527738,153.092335,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,"Koala in tree on Lawnton Pocket Road, Lawnton.",2024,5,19,Australia,AU,Queensland,-27.284095,152.999609,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,11,19,Australia,AU,Queensland,-27.649212,151.710755,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,,2024,8,1,Australia,AU,Queensland,-27.543584,152.473001,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,3,6,Australia,AU,Victoria,-38.671361,146.164143,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania and Woodland woodland Top of woodland near townhouses Cindy Crawford and Joey,2023,8,5,Australia,AU,Queensland,-27.524877,153.093726,EPSG:4326 +HUMAN_OBSERVATION,bridgetkay,1,,,2022,12,22,Australia,AU,Queensland,-27.834183,153.053131,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - notch RIGHT ear from previous tag - known as Niki,2024,6,8,Australia,AU,Queensland,-27.529066,153.104691,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,12,6,Australia,AU,Queensland,-27.567305,151.716338,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,High use grey gum,2022,10,16,Australia,AU,New South Wales,-33.147258,151.077147,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland- in nursery grounds,2024,1,27,Australia,AU,Queensland,-27.528272,153.092361,EPSG:4326 +HUMAN_OBSERVATION,LFW-ScenicRim,1,,,2024,2,22,Australia,AU,Queensland,-28.138653,152.584507,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,2,11,Australia,AU,South Australia,-34.866243,138.663547,EPSG:4326 +HUMAN_OBSERVATION,David,1,,,2024,10,31,Australia,AU,South Australia,-34.871288,138.716767,EPSG:4326 +HUMAN_OBSERVATION,Lucas Christofides,1,,,2023,10,11,Australia,AU,Queensland,-27.579547,153.074464,EPSG:4326 +HUMAN_OBSERVATION,chris_barnesoz,1,,,2022,5,28,Australia,AU,Queensland,-27.253597,152.108111,EPSG:4326 +HUMAN_OBSERVATION,awkastrait,1,,2 individuals in same location,2023,4,9,Australia,AU,Victoria,-38.318565,142.36363,EPSG:4326 +HUMAN_OBSERVATION,trishagrogers,1,,,2020,10,13,Australia,AU,Queensland,-27.808844,153.158998,EPSG:4326 +HUMAN_OBSERVATION,Pete Petinatos,1,,,2023,3,7,Australia,AU,Victoria,-38.552937,143.758595,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"In Euc. tereticornis, Boonah Rail Trail. Probably same animal seen in this tree on 16 June.",2023,7,30,Australia,AU,Queensland,-27.98616,152.677142,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2024,9,27,Australia,AU,New South Wales,-34.773363,146.595337,EPSG:4326 +HUMAN_OBSERVATION,Elaine,1,,,2024,9,28,Australia,AU,Victoria,-38.265321,145.039801,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,MALE,Local koala male who lives in the area.,2023,7,8,Australia,AU,Queensland,-27.284735,153.001166,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,,2021,4,13,Australia,AU,Queensland,-28.106414,153.429956,EPSG:4326 +HUMAN_OBSERVATION,boodacious,1,,,2023,2,22,Australia,AU,New South Wales,-28.524387,152.996658,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,6,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,22,Australia,AU,South Australia,-34.864404,138.726864,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2024,10,26,Australia,AU,New South Wales,-34.757417,146.563675,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2023,4,8,Australia,AU,South Australia,-34.917817,138.542074,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2024,4,26,Australia,AU,South Australia,-34.692015,138.826933,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Sydney Blue Gum. Same koala and tree as yesterday,2020,2,18,Australia,AU,Queensland,-27.550076,153.062155,EPSG:4326 +HUMAN_OBSERVATION,David Cunningham,1,,,2022,10,14,Australia,AU,Australian Capital Territory,-35.46,148.91,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,29,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Mommy and her joey resting on a gum tree branch over the road..,2021,10,2,Australia,AU,Queensland,-27.397679,153.439133,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,Robin with RJ resting in a white stringybark in the gully forest.,2023,11,8,Australia,AU,Queensland,-27.413832,152.003633,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,Slow sleeping,2024,1,15,Australia,AU,New South Wales,-34.08205,150.849273,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,4,30,Australia,AU,Queensland,-27.978598,152.552032,EPSG:4326 +HUMAN_OBSERVATION,Tansnaturediary,1,,,2023,11,10,Australia,AU,Victoria,-37.331252,144.594386,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Maisie female koala yellow tag right ear Front of tafe cavendish road,2023,5,25,Australia,AU,Queensland,-27.526974,153.09093,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,29,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,mikefitz668,1,,,2022,6,12,Australia,AU,New South Wales,-28.542246,153.110895,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Healthy. Relocated to Down Gwen St Kingaroy. Observed by Wendy Taylor. Submitted via msg.,2024,7,10,Australia,AU,Queensland,-26.534694,151.837421,EPSG:4326 +HUMAN_OBSERVATION,Michael Ryan,1,,,2024,6,10,Australia,AU,Queensland,-27.482701,153.081027,EPSG:4326 +HUMAN_OBSERVATION,Steven Chong,1,,,2023,9,4,Australia,AU,Victoria,-38.318353,142.361754,EPSG:4326 +HUMAN_OBSERVATION,Amy Thomas,1,,,2024,7,7,Australia,AU,Queensland,-27.250419,153.066816,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,16,Australia,AU,Queensland,-27.814342,151.550031,EPSG:4326 +HUMAN_OBSERVATION,Daniel Townend,1,,,2021,8,11,Australia,AU,Queensland,-27.624766,153.16885,EPSG:4326 +HUMAN_OBSERVATION,joenviro,1,,,2024,4,17,Australia,AU,New South Wales,-32.737187,152.172683,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,24,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,FEMALE,Has pouch young. Conjunctivitis in right eye. In a blue gum (Eucalyptus tereticornis) with DBH of approx 45cm. Carer called to catch and treat conjunctivitus.,2023,8,15,Australia,AU,Queensland,-27.457305,152.401146,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,4,6,Australia,AU,Queensland,-27.526937,153.090933,EPSG:4326 +HUMAN_OBSERVATION,curiousbeggs,1,,Female with Joey,2021,9,22,Australia,AU,Queensland,-27.288935,152.393143,EPSG:4326 +HUMAN_OBSERVATION,jobrierley,1,,Sub adult male,2024,8,24,Australia,AU,Queensland,-28.094664,153.448638,EPSG:4326 +HUMAN_OBSERVATION,Pete Woodall,1,,2155,2022,11,23,Australia,AU,South Australia,-35.952031,136.73737,EPSG:4326 +HUMAN_OBSERVATION,jenjell,1,,,2023,11,27,Australia,AU,Queensland,-27.419547,151.929397,EPSG:4326 +HUMAN_OBSERVATION,Jason Ramsay,1,,,2022,12,7,Australia,AU,Queensland,-27.283925,152.993392,EPSG:4326 +HUMAN_OBSERVATION,cosanostre,1,,,2024,6,9,Australia,AU,Queensland,-19.128711,146.868225,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,9,12,Australia,AU,Queensland,-27.527264,153.109031,EPSG:4326 +HUMAN_OBSERVATION,Ash,1,,,2023,10,11,Australia,AU,Queensland,-27.507982,153.081476,EPSG:4326 +HUMAN_OBSERVATION,parwanfarm,1,,Good to spot a koala in the northern Brisbane Ranges,2023,3,25,Australia,AU,Victoria,-37.746433,144.274812,EPSG:4326 +HUMAN_OBSERVATION,frangipani94,1,,,2022,8,7,Australia,AU,New South Wales,-30.440675,152.89493,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2024,2,5,Australia,AU,Queensland,-27.544785,153.072487,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A5 RIGHT ear - Cindy,2023,9,25,Australia,AU,Queensland,-27.527235,153.108169,EPSG:4326 +HUMAN_OBSERVATION,flashmcstanley,1,,,2023,11,21,Australia,AU,Queensland,-27.624803,153.142778,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,,2021,11,7,Australia,AU,Queensland,-27.939345,153.233411,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,5,20,Australia,AU,Queensland,-27.901511,153.376424,EPSG:4326 +HUMAN_OBSERVATION,Heath Hunter,1,,,2022,10,17,Australia,AU,South Australia,-34.944089,138.670916,EPSG:4326 +HUMAN_OBSERVATION,Adrian Tritschler,1,,Koala at Kennett River,2022,1,17,Australia,AU,Victoria,-38.667992,143.86078,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,9,Australia,AU,Queensland,-27.529452,153.104553,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2023,11,18,Australia,AU,Queensland,-27.528335,153.092969,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,12,10,Australia,AU,Queensland,-27.566475,152.111283,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2024,6,26,Australia,AU,Queensland,-27.225178,153.068692,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,29,Australia,AU,Queensland,-27.531409,153.105219,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Robyn Zackreson. Submitted via FB,2024,2,2,Australia,AU,Queensland,-26.356027,151.738701,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,3,1,Australia,AU,Queensland,-27.52689,153.09089,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Hit by vehicle. Dead. Observed by Wendy Taylor. Submitted via msg.,2023,9,7,Australia,AU,Queensland,-26.513626,151.840879,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Cheese tree,2020,8,19,Australia,AU,Queensland,-27.547268,153.058327,EPSG:4326 +HUMAN_OBSERVATION,cd01,1,,Climbed in to tree and vocalised,2021,4,26,Australia,AU,South Australia,-34.831007,138.736198,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,23,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.382971,145.296158,EPSG:4326 +HUMAN_OBSERVATION,bimbimbi,1,,,2024,10,10,Australia,AU,Victoria,-38.406519,142.767686,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2023,11,19,Australia,AU,Queensland,-27.528381,153.09354,EPSG:4326 +HUMAN_OBSERVATION,Hiroya Kidoguchi,1,,,2024,9,11,Australia,AU,Queensland,-27.537769,153.043725,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,5,18,Australia,AU,Queensland,-27.526504,153.090639,EPSG:4326 +HUMAN_OBSERVATION,Noam Markus,1,,,2024,2,15,Australia,AU,South Australia,-34.902589,138.701665,EPSG:4326 +HUMAN_OBSERVATION,sheeprustler,1,,,2021,12,5,Australia,AU,Victoria,-37.208679,148.269577,EPSG:4326 +HUMAN_OBSERVATION,bevmullan,1,,,2024,9,16,Australia,AU,Queensland,-19.125169,146.869233,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,seen in Tallowwood tree.,2021,5,18,Australia,AU,New South Wales,-28.260501,153.400582,EPSG:4326 +HUMAN_OBSERVATION,terra7855,1,,Large gum on road verge,2024,2,24,Australia,AU,Queensland,-28.259195,152.746035,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,22,Australia,AU,South Australia,-34.86719,138.729627,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Brad Bowden. Forwarded by email.,2022,1,26,Australia,AU,Queensland,-26.582475,151.818252,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Stringybark,2020,2,17,Australia,AU,Queensland,-27.551941,153.058107,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,17,Australia,AU,Queensland,-27.822928,152.992632,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2022,10,30,Australia,AU,Queensland,-27.505998,153.086628,EPSG:4326 +HUMAN_OBSERVATION,wgilson,1,,,2022,4,18,Australia,AU,Queensland,-27.508325,153.082261,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"for location, he is located in the trees in the distance to the right of the sign, and the picture following it gives a bit closer. Again it was a cool overcast day and it was eating. I used the opportunity to take a range of photos to try and get an opportunity for future identification. I also walked around the area for different angles. This koala was also here the day before.",2020,5,21,Australia,AU,New South Wales,-28.252245,153.375181,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,2,Australia,AU,Queensland,-27.526257,153.09072,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,11,3,Australia,AU,Queensland,-27.809713,151.559508,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,8,3,Australia,AU,Queensland,-27.43797,152.631775,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,2,Australia,AU,South Australia,-34.866131,138.672869,EPSG:4326 +HUMAN_OBSERVATION,Boyd Rose,1,,,2021,5,9,Australia,AU,Queensland,-27.533495,153.233063,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In gully near Aldi gates,2024,2,11,Australia,AU,Queensland,-27.526508,153.093105,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Three koalas seen in trees that night.,2020,9,24,Australia,AU,New South Wales,-28.257714,153.400596,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,11,2,Australia,AU,Victoria,-38.671263,146.164306,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear - Bozo,2023,7,24,Australia,AU,Queensland,-27.526601,153.10897,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,,2023,1,5,Australia,AU,Victoria,-37.794699,141.476649,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,10,28,Australia,AU,Queensland,-26.154991,151.749938,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In a Lophostemon confertus.,2020,9,23,Australia,AU,Queensland,-27.543777,153.072385,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"In a Yellow box (Eucalyptus melliodora) on basalt, RE 12.8.14, 495m elevation.",2021,4,10,Australia,AU,Queensland,-27.715061,152.060928,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2024,3,7,Australia,AU,South Australia,-34.901251,138.617461,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In gully near Aldi gates,2024,1,26,Australia,AU,Queensland,-27.52634,153.093139,EPSG:4326 +HUMAN_OBSERVATION,shanahoehub,1,,,2023,1,28,Australia,AU,South Australia,-34.722653,139.156417,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag 1317 LEFT ear - Thor,2024,5,20,Australia,AU,Queensland,-27.527947,153.11278,EPSG:4326 +HUMAN_OBSERVATION,Maddy,1,,,2023,11,6,Australia,AU,Queensland,-27.507885,152.489583,EPSG:4326 +HUMAN_OBSERVATION,lynsh,1,,,2024,9,18,Australia,AU,Queensland,-27.915002,153.37402,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2024,8,28,Australia,AU,Queensland,-27.324788,151.930405,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Release of LJ In tree next to tennis courts,2023,11,18,Australia,AU,Queensland,-27.525347,153.092803,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.923613,147.731383,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,MALE,large male,2022,1,7,Australia,AU,New South Wales,-28.253987,153.376944,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2020,10,20,Australia,AU,Queensland,-27.527138,153.107345,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Forest RedGum,2021,5,24,Australia,AU,Queensland,-27.534614,153.061419,EPSG:4326 +HUMAN_OBSERVATION,Dee Nolan,1,,"Meduim to small koala, sleeping at 10.55am.",2023,12,3,Australia,AU,South Australia,-35.005672,138.637767,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear (?Q) Known as Bozo,2023,4,18,Australia,AU,Queensland,-27.527144,153.107473,EPSG:4326 +HUMAN_OBSERVATION,aspiringnaturewizard,1,,,2022,7,17,Australia,AU,Queensland,-27.955166,153.381149,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,,2024,9,20,Australia,AU,New South Wales,-29.862266,150.574512,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,30,Australia,AU,Queensland,-27.526801,153.090438,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Two koalas in same tree - see previous observation,2021,10,30,Australia,AU,Victoria,-38.671188,146.163711,EPSG:4326 +HUMAN_OBSERVATION,Helen,1,,,2023,7,27,Australia,AU,Queensland,-19.119282,146.869978,EPSG:4326 +HUMAN_OBSERVATION,dancg,1,,,2020,10,13,Australia,AU,Victoria,-38.348275,141.601592,EPSG:4326 +HUMAN_OBSERVATION,joshpuglisi,1,,,2024,5,23,Australia,AU,Victoria,-37.204342,148.269272,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,Robin in Eu.tereticornis with RJ,2023,11,6,Australia,AU,Queensland,-27.412727,152.003193,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,8,Australia,AU,Queensland,-27.543345,153.072682,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear,2023,6,10,Australia,AU,Queensland,-27.529943,153.103615,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2023,4,2,Australia,AU,South Australia,-34.905362,138.707114,EPSG:4326 +HUMAN_OBSERVATION,Thomas Mesaglio,1,,,2023,7,5,Australia,AU,New South Wales,-34.150154,150.799637,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland Wisteria & Tristania - front near cnr of street junction Koala on the move,2023,6,25,Australia,AU,Queensland,-27.52408,153.093202,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,Female koala "Robin" in a Eucalyptus Microcorys,2022,12,17,Australia,AU,Queensland,-27.413092,152.003068,EPSG:4326 +HUMAN_OBSERVATION,Albert Ross,1,,,2023,5,28,Australia,AU,New South Wales,-28.67688,153.448373,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,First 3 photos - mum Mum & joey in one tree Joey up high,2024,10,25,Australia,AU,Queensland,-27.529811,153.110994,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,27,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,Liv_Tamandua,1,,,2023,8,12,Australia,AU,Queensland,-27.507213,153.082656,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,1,14,Australia,AU,Queensland,-27.528263,153.092748,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland middle,2023,12,14,Australia,AU,Queensland,-27.528043,153.092811,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,11,Australia,AU,Queensland,-27.629057,151.651094,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2024,4,14,Australia,AU,Victoria,-37.641822,143.901148,EPSG:4326 +HUMAN_OBSERVATION,sirkendizzle,1,,,2023,7,21,Australia,AU,Victoria,-38.774255,143.653566,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,Has moved to a different tree,2023,1,23,Australia,AU,Queensland,-28.211604,152.866004,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Joey eating mums pap,2024,10,23,Australia,AU,Queensland,-27.545573,153.072261,EPSG:4326 +HUMAN_OBSERVATION,whittie,1,,,2023,5,13,Australia,AU,South Australia,-34.903883,138.617204,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,Crusoe in a Eucalyptus propinqua on our property in the southern tree corridor.,2023,3,17,Australia,AU,Queensland,-27.414775,152.004442,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Stringybark,2020,2,4,Australia,AU,Queensland,-27.551222,153.057878,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2022,12,25,Australia,AU,Queensland,-27.603,151.892651,EPSG:4326 +HUMAN_OBSERVATION,flashmcstanley,1,,,2023,9,24,Australia,AU,Queensland,-27.700883,153.192658,EPSG:4326 +HUMAN_OBSERVATION,maddz2508,1,,Male koala (based off scent glands on chest),2022,1,11,Australia,AU,South Australia,-34.582303,135.512208,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,15,Australia,AU,Queensland,-27.527456,153.110236,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"No ear tags visible. In the same tree as this obs, https://www.inaturalist.org/observations/16509780 , possibly same animal. Neighbour reported that no Koalas have been seen in this park for many years prior to these 2 sightings.",2023,6,11,Australia,AU,Queensland,-27.510848,153.071645,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,10,21,Australia,AU,Victoria,-38.671453,146.164036,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,10,Australia,AU,Queensland,-27.52967,153.10439,EPSG:4326 +HUMAN_OBSERVATION,Jess Bettanin,1,,,2022,12,8,Australia,AU,New South Wales,-36.571112,149.987808,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery entrance gates,2023,12,31,Australia,AU,Queensland,-27.527456,153.091308,EPSG:4326 +HUMAN_OBSERVATION,Nick Lambert,1,,,2022,10,28,Australia,AU,New South Wales,-30.428338,152.972171,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,6,Australia,AU,Queensland,-27.527147,153.107641,EPSG:4326 +HUMAN_OBSERVATION,Sue Brabender,1,,"Smaller Koala, likely a female. Located by discarded branch ends and scats below the tree.",2021,5,28,Australia,AU,Victoria,-38.265063,145.047056,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2023,5,20,Australia,AU,South Australia,-34.971413,138.691662,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"The second shot gives location and the koala is in the middle in the brightest area. I have now called this koala No 2 as I have continued to see it. I believe it may be a male as I became aware of it being there as it was growling, and I saw it throw its head up and growl. None of the photos were very good as it was a distance away, through trees.",2020,5,18,Australia,AU,New South Wales,-28.252755,153.376056,EPSG:4326 +HUMAN_OBSERVATION,kdoust,1,,Big male,2024,6,18,Australia,AU,Queensland,-27.332844,152.611274,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,,2024,9,17,Australia,AU,New South Wales,-34.764713,146.585663,EPSG:4326 +HUMAN_OBSERVATION,petarutherford,1,,,2021,12,5,Australia,AU,Queensland,-27.70065,153.190944,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,Resident male in Euc.tereticornis,2021,2,3,Australia,AU,Queensland,-27.169883,152.989503,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,6,17,Australia,AU,Victoria,-38.671192,146.163942,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,11,14,Australia,AU,South Australia,-34.892675,138.721086,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,1,29,Australia,AU,Queensland,-27.549888,153.059846,EPSG:4326 +HUMAN_OBSERVATION,dieselfraser,1,MALE,Javier Beardem is back and shelter at the back of the property from the storms. He arrived late last night.,2022,11,21,Australia,AU,Victoria,-38.825202,145.999307,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Chahpingah area, near the Boyne river on the 12/8/2021. Observed by Barry Christie. Forwarded by email (Trish Christie)",2021,8,12,Australia,AU,Queensland,-26.455694,151.387619,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,MALE,"Grey-headed Flying-foxes can also be heard. Recorded on Audiomoth recorder in River Red Gum E. camaldulensis riparian woodland beside the Moorabool River, with farmland nearby.",2023,11,15,Australia,AU,Victoria,-37.899015,144.127413,EPSG:4326 +HUMAN_OBSERVATION,Zoë Davis,1,,,2023,8,1,Australia,AU,Victoria,-38.832387,143.515025,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,8,23,Australia,AU,Queensland,-27.548431,153.061019,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,12,24,Australia,AU,South Australia,-34.887417,138.733157,EPSG:4326 +HUMAN_OBSERVATION,light-up-gold,1,,,2023,2,18,Australia,AU,Victoria,-38.791767,143.613666,EPSG:4326 +HUMAN_OBSERVATION,balnarringcubs,1,,,2022,11,25,Australia,AU,Victoria,-38.388434,145.174374,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - white tag LEFT ear - Bandit,2024,6,4,Australia,AU,Queensland,-27.529661,153.109389,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,"Mum koala, & mum with joey.",2021,10,2,Australia,AU,New South Wales,-28.257909,153.400765,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2021,1,2,Australia,AU,Queensland,-27.544339,153.071156,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Koala observed asleep high in a tree along way off. Photo taken by Arnold, with a Pentax camera on maximum digital zoom.",2022,6,12,Australia,AU,New South Wales,-28.258419,153.400148,EPSG:4326 +HUMAN_OBSERVATION,Hanna Clupea,1,,,2020,2,28,Australia,AU,Queensland,-27.422333,153.51327,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block,2024,3,6,Australia,AU,Queensland,-27.526653,153.091109,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Male bellowing,2024,9,29,Australia,AU,Queensland,-27.526431,153.090598,EPSG:4326 +HUMAN_OBSERVATION,grattonld,1,,,2024,10,12,Australia,AU,Victoria,-38.809662,143.536147,EPSG:4326 +HUMAN_OBSERVATION,SBERRY,1,,Alerted to their presence by their growling at us.,2021,11,1,Australia,AU,Victoria,-38.136794,145.218781,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,Alana Nikon D5600,2022,4,16,Australia,AU,Queensland,-27.823715,152.99373,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Female koala in trees on Lawnton Pocket Road. Has a beautiful white belly!,2024,7,20,Australia,AU,Queensland,-27.284138,152.999904,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2024,4,13,Australia,AU,Victoria,-36.941383,145.610206,EPSG:4326 +HUMAN_OBSERVATION,Charles Dove,1,,,2020,9,5,Australia,AU,Queensland,-27.597987,151.894935,EPSG:4326 +HUMAN_OBSERVATION,thenobla,1,,,2023,4,1,Australia,AU,Queensland,-27.941617,153.357987,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A... RIGHT ear,2023,4,25,Australia,AU,Queensland,-27.527006,153.108892,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,6,13,Australia,AU,Queensland,-27.515392,153.08284,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Tagged female, congested right eye, rescue organised",2023,9,15,Australia,AU,Queensland,-27.258808,152.952805,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2021,1,13,Australia,AU,New South Wales,-28.258996,153.398496,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Female koala rescued by J Gray- Toowoomba Koala & Wildlife Rescue. Koala was chased by dogs and climbed patio pole for safety 1.30am. Koala taken for full veterinary assessment.,2022,11,30,Australia,AU,Queensland,-27.469832,151.948256,EPSG:4326 +HUMAN_OBSERVATION,Colin and Wendy Cook,1,FEMALE,Climbing in a messmate (Eucalyptus obliqua).,2022,1,19,Australia,AU,Victoria,-37.806893,144.151477,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Large healthy looking male, very alert. Last of four koalas seen on walk.",2022,12,6,Australia,AU,Queensland,-27.702277,153.189153,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Hunkered down in gale-force winds,2021,10,29,Australia,AU,Victoria,-38.671038,146.163772,EPSG:4326 +HUMAN_OBSERVATION,Doug Wilson,1,,,2021,10,17,Australia,AU,Victoria,-37.587033,143.888202,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2023,3,18,Australia,AU,New South Wales,-31.443092,152.901213,EPSG:4326 +HUMAN_OBSERVATION,mooseamara,1,,,2023,6,17,Australia,AU,Victoria,-38.834988,143.51323,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,12,17,Australia,AU,Queensland,-27.509378,153.08432,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Way up high in Eucalyptus globulus,2020,5,17,Australia,AU,Victoria,-38.671167,146.164003,EPSG:4326 +HUMAN_OBSERVATION,amycarmichael,1,,Baby koala and two adults were seen high up in the trees.,2022,10,8,Australia,AU,Queensland,-27.491395,153.19873,EPSG:4326 +HUMAN_OBSERVATION,rachael_p,1,,,2023,7,1,Australia,AU,Victoria,-38.577737,146.014677,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Near e block,2024,6,23,Australia,AU,Queensland,-27.526893,153.090743,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,17,Australia,AU,South Australia,-34.892413,138.722375,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,11,18,Australia,AU,Queensland,-27.258265,152.045229,EPSG:4326 +HUMAN_OBSERVATION,Graham Tupper,1,,Image not the best as using a telephoto at night with torch light. Part of the annual NPWS Koala Survey in this area.,2021,10,25,Australia,AU,New South Wales,-30.416829,153.01339,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,23,Australia,AU,Queensland,-27.527048,153.10818,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Cindy - red tag A5 RIGHT ear with a tick on her chin,2023,5,31,Australia,AU,Queensland,-27.527315,153.108185,EPSG:4326 +HUMAN_OBSERVATION,Ed Parker,1,,"A rescued female individual (named Lady Jane by carers) released into Pooh Corner Bushland Reserve on 15-Dec-2022. This is the first observation of her joey outside of her pouch, and estimated to be 7 months old. In late January, during a health check, her pouch young (then estimated to be 2 months old) was observed to be a male. Update: joey now found to be a female, named Glenda.",2023,6,20,Australia,AU,Queensland,-27.572242,152.934309,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,3,Australia,AU,South Australia,-34.890928,138.731423,EPSG:4326 +HUMAN_OBSERVATION,dieselfraser,1,,,2023,5,15,Australia,AU,Victoria,-38.825171,145.999339,EPSG:4326 +HUMAN_OBSERVATION,hellybelly,1,,,2022,9,21,Australia,AU,Queensland,-26.397543,153.012348,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,11,4,Australia,AU,Queensland,-27.560887,152.106501,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Female with Joey. Healthy. Observed by Stephen Fretwell. Forwarded by email.,2021,8,8,Australia,AU,Queensland,-26.103565,151.44957,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,"note this observation is in the same location as this mum and joey, https://inaturalist.ala.org.au/observations/90371005. 2 Mums and joeys in same small park.",2021,8,8,Australia,AU,Queensland,-27.509388,153.070002,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,6,14,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,fraserj09,1,,,2024,9,13,Australia,AU,Victoria,-38.201218,141.773719,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2024,3,16,Australia,AU,Queensland,-27.543282,153.053732,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2024,9,26,Australia,AU,South Australia,-35.083928,138.674667,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala. Scat collected.,2024,6,9,Australia,AU,Queensland,-27.987469,152.677936,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,10,Australia,AU,South Australia,-34.86476,138.727231,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Koala scat under a grey gum. Recent sightings in the area. No koala observed,2022,7,17,Australia,AU,New South Wales,-34.093661,150.983305,EPSG:4326 +HUMAN_OBSERVATION,Jason A,1,MALE,"Male, moving through an urban street, possibly feeding on callistemon leaves.",2023,9,23,Australia,AU,Queensland,-28.09669,153.451179,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Two koalas seen.,2021,5,16,Australia,AU,New South Wales,-28.260659,153.403431,EPSG:4326 +HUMAN_OBSERVATION,jenn,1,MALE,Locally known as Kevin the Koala XOXO,2021,9,16,Australia,AU,Victoria,-38.175227,145.131453,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,,2024,7,12,Australia,AU,Queensland,-27.529139,153.111963,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2021,5,20,Australia,AU,New South Wales,-28.260447,153.400174,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Koala crossing the road went up feed tree. Observation by J Paris for TKWR,2023,10,27,Australia,AU,Queensland,-27.462985,151.92735,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Tristania & Wisteria Woodland Two koalas same tree,2024,10,12,Australia,AU,Queensland,-27.52372,153.093032,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Healthy. Observed by Eileen Walker. Submitted by Wendy Taylor via msg.,2024,11,1,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female. Unhealthy. Picked up from Kingaroy vets and placed in care. Observed by Wendy Taylor. Submitted via msg. Later Euthanised.,2024,1,12,Australia,AU,Queensland,-26.544369,151.835785,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,13,Australia,AU,Queensland,-27.823785,152.993145,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Pink blood wood,2020,10,12,Australia,AU,Queensland,-27.549667,153.06288,EPSG:4326 +HUMAN_OBSERVATION,bushwalkingmama,1,,,2022,8,19,Australia,AU,New South Wales,-33.428038,150.729492,EPSG:4326 +HUMAN_OBSERVATION,Dave Kuchel,1,,,2024,9,6,Australia,AU,South Australia,-34.9273,138.521101,EPSG:4326 +HUMAN_OBSERVATION,Oscar Dove,1,,,2023,10,5,Australia,AU,Queensland,-27.91063,153.373367,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey gum,2024,2,17,Australia,AU,Queensland,-27.548453,153.059277,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,25,Australia,AU,Queensland,-27.527428,153.110137,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,3,Australia,AU,South Australia,-34.889837,138.731544,EPSG:4326 +HUMAN_OBSERVATION,yorachi,1,,,2023,6,11,Australia,AU,South Australia,-34.961231,138.680094,EPSG:4326 +HUMAN_OBSERVATION,tere_c,1,,,2024,4,11,Australia,AU,Victoria,-38.133308,145.274963,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - white tag LEFT ear - Bandit,2024,5,24,Australia,AU,Queensland,-27.529247,153.109952,EPSG:4326 +HUMAN_OBSERVATION,Ashley Woods,1,,In an iron bark tree.,2024,11,14,Australia,AU,Queensland,-27.374888,151.773637,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,21,Australia,AU,Queensland,-27.542575,153.068535,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2024,3,18,Australia,AU,Queensland,-28.082343,152.854125,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,,,2022,9,27,Australia,AU,Queensland,-27.497102,153.399225,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Female and young in a Yellow box Eucalyptus melliodora,2022,10,1,Australia,AU,Queensland,-27.678639,152.091003,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Healthy koala at Brown Lake in Straddie island Minjerribah.,2022,2,6,Australia,AU,Queensland,-27.492664,153.430007,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,2,20,Australia,AU,Queensland,-27.792154,151.63821,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,20,Australia,AU,Queensland,-26.134773,151.780555,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,7,29,Australia,AU,Queensland,-27.547368,153.058147,EPSG:4326 +HUMAN_OBSERVATION,Rachel Devlin,1,,,2023,9,16,Australia,AU,Victoria,-38.26762,145.047271,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male,2023,12,12,Australia,AU,Queensland,-27.528463,153.103868,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,MALE,,2024,4,18,Australia,AU,South Australia,-34.89054,138.722243,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,4,10,Australia,AU,Queensland,-27.506684,153.079497,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Mother and joey,2024,9,14,Australia,AU,Queensland,-27.52682,153.09089,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,,2024,10,26,Australia,AU,Victoria,-38.05549,141.544962,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Red Mahogany and then moved to Cheese Tree later in the day. Very hot day,2024,1,22,Australia,AU,Queensland,-27.552732,153.05731,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,8,Australia,AU,South Australia,-34.885956,138.733402,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - dirty bum - needs rescue but not in a suitable tree at present,2024,1,9,Australia,AU,Queensland,-27.527254,153.1083,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,8,31,Australia,AU,South Australia,-34.891957,138.627875,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,MALE,This male with a reddish back has been a regular visitor to this property over the last 6 months.,2022,10,3,Australia,AU,Queensland,-28.173591,152.905077,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,18,Australia,AU,South Australia,-34.892425,138.713826,EPSG:4326 +HUMAN_OBSERVATION,Heath Hunter,1,,,2023,3,22,Australia,AU,South Australia,-34.936612,138.672027,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,MALE,,2024,4,20,Australia,AU,Queensland,-27.551178,153.05737,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,6,Australia,AU,Queensland,-27.527715,153.11053,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,8,3,Australia,AU,South Australia,-34.893541,138.624905,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2024,11,2,Australia,AU,Queensland,-27.546883,153.05341,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male,2024,2,6,Australia,AU,Queensland,-27.528438,153.106629,EPSG:4326 +HUMAN_OBSERVATION,kkrbv,1,,2 koalas at Majestic Park. One small one big,2022,9,26,Australia,AU,Queensland,-27.508754,153.06782,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,,2022,11,19,Australia,AU,Queensland,-27.711563,151.538422,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2023,5,7,Australia,AU,South Australia,-35.008662,138.647505,EPSG:4326 +HUMAN_OBSERVATION,Gordon Claridge,1,,,2020,11,22,Australia,AU,Queensland,-27.666545,152.108697,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,9,13,Australia,AU,New South Wales,-28.254198,153.377617,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2022,12,30,Australia,AU,Queensland,-27.597909,151.890309,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,10,Australia,AU,Queensland,-27.527644,153.093568,EPSG:4326 +HUMAN_OBSERVATION,jcadermann,1,,Sighted mid morning coming down a gum tree then crawled a few metres to another gum & climbed up to higher branch where it remained. Moved on overnight,2022,8,15,Australia,AU,Queensland,-28.125097,152.945495,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On Eucalyptus Microcorys.,2021,8,8,Australia,AU,Queensland,-27.546268,153.058953,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2022,1,10,Australia,AU,South Australia,-35.01928,138.742078,EPSG:4326 +HUMAN_OBSERVATION,Gerard Healey,1,,,2024,9,15,Australia,AU,Victoria,-37.415403,144.690383,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,6,29,Australia,AU,New South Wales,-28.259897,153.402146,EPSG:4326 +HUMAN_OBSERVATION,emcost,1,,Koala was safely moved by trained persons out of car park.,2023,2,9,Australia,AU,South Australia,-35.02537,138.570212,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,3,17,Australia,AU,Queensland,-27.553539,153.052266,EPSG:4326 +HUMAN_OBSERVATION,kimblyh,1,,Sitting in E. tereticornius,2024,9,28,Australia,AU,Queensland,-27.504203,153.07638,EPSG:4326 +HUMAN_OBSERVATION,taopina,1,,,2024,5,23,Australia,AU,South Australia,-34.854982,135.914236,EPSG:4326 +HUMAN_OBSERVATION,kentpip,1,,"Koala calling at night several times in November, one eye closed (Chlamydia?)",2021,11,18,Australia,AU,Queensland,-27.760059,153.152482,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Unhealthy. Signs of Chlamydia. Died a few hours after being rescued. Observed & rescued by Wendy Taylor. Submitted via msg.,2024,9,24,Australia,AU,Queensland,-26.037292,151.830723,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,,2024,9,13,Australia,AU,Queensland,-27.550387,153.169656,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Wisteria car park Behind our back fence Jacob Jnr,2024,9,14,Australia,AU,Queensland,-27.524309,153.091966,EPSG:4326 +HUMAN_OBSERVATION,Isis Khalil,1,,,2023,12,24,Australia,AU,Queensland,-19.128405,146.86798,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Koala sighted by Geoff Dawson and photo by Jacinta Stanley.,2022,5,26,Australia,AU,New South Wales,-30.99214,150.24059,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In vacant block of land - next to tafe nursery on Cavendish Road,2023,6,10,Australia,AU,Queensland,-27.527844,153.091174,EPSG:4326 +HUMAN_OBSERVATION,jgcroydon,1,,,2023,11,18,Australia,AU,Victoria,-38.38495,145.310578,EPSG:4326 +HUMAN_OBSERVATION,roxym,1,,Big male koala sleeping in tree in Coolart wetlands,2021,8,11,Australia,AU,Victoria,-38.384855,145.128281,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,3,12,Australia,AU,Queensland,-27.544873,153.069846,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Koala dangling to keep cool.,2023,3,19,Australia,AU,Queensland,-27.284639,153.00092,EPSG:4326 +HUMAN_OBSERVATION,saulesvejas,1,,,2024,7,1,Australia,AU,Queensland,-19.128481,146.868057,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male koala high in manna gum nervous with large group of people,2023,2,18,Australia,AU,Victoria,-37.816977,144.26823,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"In Manna Gum (E. viminalis). Appears to be the same Koala (in the same tree, but has moved) as yesterday in observation https://inaturalist.ala.org.au/observations/214938183. It seems this Koala has been here: Tues (https://inaturalist.ala.org.au/observations/214358712), Wed (https://inaturalist.ala.org.au/observations/214359669), Thurs (https://inaturalist.ala.org.au/observations/214555655), Fri (https://inaturalist.ala.org.au/observations/214938183) and today (Sat) this week.",2024,5,11,Australia,AU,Victoria,-38.4971,142.978219,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank muma and baby,2022,9,28,Australia,AU,Queensland,-27.545696,153.073406,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2023,9,25,Australia,AU,Queensland,-27.82388,152.992589,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,This is a male (brown chest stripe no visible in photos). He has been moving around a bit this morning. He's in a Kurrajong tree in the main photo. The others show him moving over to a blackwood and then studiously ignoring a large raven. The ravens are nesting just over the road and three of them and a magpie tried to make the koala move. To no avail.,2022,8,26,Australia,AU,Victoria,-37.874171,142.290727,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,6,9,Australia,AU,New South Wales,-28.260297,153.400733,EPSG:4326 +HUMAN_OBSERVATION,kathy061,1,,,2020,9,20,Australia,AU,Queensland,-26.490952,152.987174,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,5,7,Australia,AU,Queensland,-27.530435,153.103508,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi & joey,2024,11,5,Australia,AU,Queensland,-27.529047,153.1031,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2024,4,9,Australia,AU,Victoria,-37.638581,143.903333,EPSG:4326 +HUMAN_OBSERVATION,J's H'way,1,FEMALE,,2022,2,11,Australia,AU,Queensland,-27.491583,153.18009,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,9,1,Australia,AU,Queensland,-27.547397,153.073691,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2021,8,5,Australia,AU,South Australia,-34.865317,138.656747,EPSG:4326 +HUMAN_OBSERVATION,philip-roetman,1,,,2023,5,1,Australia,AU,South Australia,-34.972889,138.680925,EPSG:4326 +HUMAN_OBSERVATION,jusarm,1,,In Eucalyptus crebra,2023,4,17,Australia,AU,Queensland,-27.614747,152.61505,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,10,Australia,AU,South Australia,-34.8922,138.72229,EPSG:4326 +HUMAN_OBSERVATION,allambiretreat,1,,,2022,7,3,Australia,AU,Queensland,-27.33973,152.84552,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2020,6,19,Australia,AU,Queensland,-27.549479,153.049481,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park Cindy Crawford and joey,2023,10,20,Australia,AU,Queensland,-27.524945,153.092239,EPSG:4326 +HUMAN_OBSERVATION,adiehace,1,,,2024,10,6,Australia,AU,New South Wales,-32.303904,152.336808,EPSG:4326 +HUMAN_OBSERVATION,Carsten Meyer,1,,,2023,10,17,Australia,AU,Victoria,-38.666747,143.857335,EPSG:4326 +HUMAN_OBSERVATION,Richard Fuller,1,,,2021,12,21,Australia,AU,Queensland,-27.527232,153.109134,EPSG:4326 +HUMAN_OBSERVATION,Colin Trainor,1,,Mobbed/attacked by nesting torresian crows,2024,10,21,Australia,AU,Queensland,-27.526647,153.276567,EPSG:4326 +HUMAN_OBSERVATION,Emma H.,1,,,2023,8,19,Australia,AU,Queensland,-19.13856,146.85685,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Female koala - yellow tag right ear - RSPCA,2023,4,2,Australia,AU,Queensland,-27.527066,153.09092,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,5,26,Australia,AU,South Australia,-34.893601,138.625042,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Healthy. Observed by Evelyn Verschaeren. Forwarded by email.,2020,11,30,Australia,AU,Queensland,-26.304521,151.994675,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park,2024,8,17,Australia,AU,Queensland,-27.5251,153.092368,EPSG:4326 +HUMAN_OBSERVATION,jhall_ecp,1,,,2022,8,3,Australia,AU,Queensland,-27.658355,153.14377,EPSG:4326 +HUMAN_OBSERVATION,laurineoz,1,,,2023,5,28,Australia,AU,Queensland,-19.123105,146.870438,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2023,9,11,Australia,AU,New South Wales,-31.4424,152.90187,EPSG:4326 +HUMAN_OBSERVATION,bkcw8,1,,Bellow can be heard at 02:46 - 03:05,2024,11,14,Australia,AU,South Australia,-37.183293,140.862477,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown tree,2020,2,14,Australia,AU,Queensland,-27.551504,153.056842,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2022,11,17,Australia,AU,Queensland,-28.106086,152.868877,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,,2024,5,29,Australia,AU,Queensland,-27.529041,153.110435,EPSG:4326 +HUMAN_OBSERVATION,a_hooper,1,,,2024,10,26,Australia,AU,Victoria,-36.175592,146.640275,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,"Female koala high in Ironbark tree next to a water point, great spot after a few hot days.",2024,3,7,Australia,AU,Victoria,-37.84194,144.268345,EPSG:4326 +HUMAN_OBSERVATION,jjungfels,1,,Healthy,2024,9,18,Australia,AU,Queensland,-27.701285,153.192314,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,3,6,Australia,AU,New South Wales,-29.857315,150.586201,EPSG:4326 +HUMAN_OBSERVATION,Zac Holt,1,,,2022,1,21,Australia,AU,Queensland,-27.922822,153.364933,EPSG:4326 +HUMAN_OBSERVATION,Bill,1,,,2020,10,14,Australia,AU,South Australia,-34.878631,138.755377,EPSG:4326 +HUMAN_OBSERVATION,ljker2,1,,,2023,2,22,Australia,AU,Queensland,-27.83293,153.370712,EPSG:4326 +HUMAN_OBSERVATION,avocat,1,FEMALE,,2024,10,6,Australia,AU,Victoria,-38.004395,144.409866,EPSG:4326 +HUMAN_OBSERVATION,Rusty,1,,,2021,2,28,Australia,AU,South Australia,-35.045074,138.587897,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,He had a bit of a grunt,2020,1,18,Australia,AU,Queensland,-27.546851,153.066835,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Photo Diane Guthrie Lockyer Upplands Catchment Inc.,2021,10,16,Australia,AU,Queensland,-27.650609,152.027209,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,,2024,2,14,Australia,AU,Victoria,-37.746425,142.013961,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,a good 33km south of Narrandera .. the koala is thriving on the Murrumbidgee river,2024,3,1,Australia,AU,New South Wales,-34.879411,146.835717,EPSG:4326 +HUMAN_OBSERVATION,Anneke Logan,1,,,2023,11,26,Australia,AU,Queensland,-27.316438,152.237762,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,MALE,Koala injured by dog attack. Rescued by Toowoomba Koala and Wildlife Rescue and taken to Wacol RSPCA Wildlife Hospital,2023,11,2,Australia,AU,Queensland,-27.42837,151.970421,EPSG:4326 +HUMAN_OBSERVATION,Richard Fuller,1,,,2020,1,4,Australia,AU,Queensland,-27.546843,153.1682,EPSG:4326 +HUMAN_OBSERVATION,peter_oz,1,,,2024,10,18,Australia,AU,Queensland,-27.541217,152.801957,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,FEMALE,Muma with a baby having a nap and a poo breakfast,2022,12,12,Australia,AU,Queensland,-27.545961,153.074736,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,8,Australia,AU,Queensland,-27.545944,153.074155,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Opposite side of tennis courts koala 1 Male scent gland viable,2023,12,10,Australia,AU,Queensland,-27.525266,153.093478,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,26,Australia,AU,Queensland,-27.545558,153.073122,EPSG:4326 +HUMAN_OBSERVATION,bushluver,1,,,2024,8,23,Australia,AU,Victoria,-37.9222,147.73468,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near lower car parks - next to stairs,2024,3,29,Australia,AU,Queensland,-27.527,153.092461,EPSG:4326 +HUMAN_OBSERVATION,jeremyhegge,1,,,2021,12,25,Australia,AU,Queensland,-27.916936,153.375597,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"resting on a large branch of a large Spotted Gum, Corymbia sp.",2021,2,11,Australia,AU,Queensland,-27.510651,153.069977,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Looks like a small hand or foot in pouch area,2024,6,22,Australia,AU,Queensland,-27.527798,153.112202,EPSG:4326 +HUMAN_OBSERVATION,Sylvia Felicity Ann Haworth,1,,"Today on Mt Gravatt was the very first time in my whole life (and I have just turned 61, and spent my childhood and teen years in the bush - Blackall Range and Condamine River) that I have ever seen a koala 'in the wild'. Something for the 'life list'.",2024,11,9,Australia,AU,Queensland,-27.542176,153.072982,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,8,7,Australia,AU,Queensland,-27.5485,153.06455,EPSG:4326 +HUMAN_OBSERVATION,Amanda Clissold,1,,,2023,2,25,Australia,AU,Queensland,-27.26029,153.03832,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,7,13,Australia,AU,Queensland,-27.51002,153.08653,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,Camera no. 5 Sclerophyll notes:,2021,9,1,Australia,AU,Queensland,-27.69515,152.08695,EPSG:4326 +HUMAN_OBSERVATION,fish,1,,,2024,11,9,Australia,AU,Queensland,-27.542722,153.092558,EPSG:4326 +HUMAN_OBSERVATION,miracletree,1,,,2024,11,14,Australia,AU,Queensland,-27.736797,153.197708,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,At the pub door!,2024,10,10,Australia,AU,Victoria,-37.552429,143.899463,EPSG:4326 +HUMAN_OBSERVATION,kenty_8881,1,,,2021,4,9,Australia,AU,South Australia,-34.932707,138.734126,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,,2023,8,25,Australia,AU,Queensland,-27.1395,152.004319,EPSG:4326 +HUMAN_OBSERVATION,kiyahsmith,1,,,2021,12,11,Australia,AU,Australian Capital Territory,-35.42,149.11,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,6,18,Australia,AU,New South Wales,-28.252994,153.376623,EPSG:4326 +HUMAN_OBSERVATION,Ron,1,,,2023,7,31,Australia,AU,Australian Capital Territory,-35.46,148.91,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree near Assembly Point E - different tree than yesterday Maisie - yellow tag right ear - possible Joey paw showing???,2023,7,23,Australia,AU,Queensland,-27.526711,153.090673,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland Frank Rooney,2024,2,18,Australia,AU,Queensland,-27.527671,153.09283,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,A very small koala. Second sighting in 2 days.,2023,10,2,Australia,AU,Queensland,-27.329225,151.933625,EPSG:4326 +HUMAN_OBSERVATION,kaharris03,1,,,2024,6,3,Australia,AU,New South Wales,-29.052694,153.307817,EPSG:4326 +HUMAN_OBSERVATION,Marie Tarrant,1,,,2024,10,5,Australia,AU,Queensland,-26.6029,152.31733,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,18,Australia,AU,South Australia,-34.890668,138.722264,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2023,7,21,Australia,AU,Victoria,-38.12652,145.270252,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,15,Australia,AU,South Australia,-34.890109,138.733576,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,27,Australia,AU,South Australia,-34.836901,138.740447,EPSG:4326 +HUMAN_OBSERVATION,Daniel Kurek,1,,,2020,1,6,Australia,AU,Victoria,-38.388238,141.550735,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,possibly a mum????,2022,11,30,Australia,AU,Queensland,-27.543574,153.072673,EPSG:4326 +HUMAN_OBSERVATION,looker62,1,,,2023,7,12,Australia,AU,Queensland,-27.542065,153.074966,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2024,2,5,Australia,AU,Queensland,-27.528026,153.093099,EPSG:4326 +HUMAN_OBSERVATION,julesmorgano,1,,,2023,10,3,Australia,AU,Queensland,-27.395798,151.975418,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - green tag LEFT ear - Joe, but known as Bozo",2024,10,14,Australia,AU,Queensland,-27.526983,153.108247,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Beneath Monkey Rope Vine,2020,2,21,Australia,AU,Queensland,-27.551068,153.057486,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - olive green tag E18 RIGHT ear - Becky. Dirty bum - rescue attempted but failed,2024,2,6,Australia,AU,Queensland,-27.529699,153.109648,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2023,12,14,Australia,AU,Queensland,-27.527188,153.091692,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Juvenile. Healthy. Unknown sex. Observed by Desley Tratt. Forwarded by email.,2022,1,24,Australia,AU,Queensland,-26.52166,151.868462,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,4,24,Australia,AU,New South Wales,-28.258198,153.40069,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,14,Australia,AU,Queensland,-27.527262,153.108964,EPSG:4326 +HUMAN_OBSERVATION,gigi133,1,FEMALE,In Eucalyptus tereticornis. Red ear tag in right ear. Asleep.,2022,2,26,Australia,AU,New South Wales,-28.959215,153.393979,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,2 koalas in same tree - koala 2,2023,2,1,Australia,AU,Victoria,-37.613486,143.897335,EPSG:4326 +HUMAN_OBSERVATION,Steven Chong,1,,,2023,9,4,Australia,AU,Victoria,-38.318533,142.363321,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,,2020,6,13,Australia,AU,New South Wales,-28.257764,153.40065,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood. This is the very “brown?koala that has a very different colour to other koalas,2020,2,19,Australia,AU,Queensland,-27.551571,153.058009,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Koala scratches seen on several different trees.,2020,7,29,Australia,AU,New South Wales,-28.260564,153.402412,EPSG:4326 +HUMAN_OBSERVATION,Diana,1,,,2021,11,27,Australia,AU,South Australia,-34.856346,138.682799,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Two koalas same tree Front of nursery,2023,5,27,Australia,AU,Queensland,-27.527075,153.091612,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2022,11,27,Australia,AU,Queensland,-27.567187,151.716308,EPSG:4326 +HUMAN_OBSERVATION,Tony Wood,1,,,2023,7,21,Australia,AU,Queensland,-27.909001,153.353509,EPSG:4326 +HUMAN_OBSERVATION,iesha,1,,"Koala seen at kennett river, Great Ocean Road",2023,9,24,Australia,AU,Victoria,-38.66855,143.860674,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,"Photo Credit: Andrew , Karana Downs and Mt Crosby Residents",2022,2,28,Australia,AU,Queensland,-27.527999,152.807466,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,24,Australia,AU,South Australia,-34.89104,138.722418,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Bald Ear in large stringy bark. Very hot afternoon and doesn't look happy. Eye bad. But guarding tree as "Spectacle Eyes" is high up in neighbouring tree.,2020,11,28,Australia,AU,New South Wales,-30.520446,151.519282,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi & joey,2023,1,2,Australia,AU,Queensland,-27.529661,153.103469,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,Female koala very high in large red stringybark,2023,8,22,Australia,AU,Victoria,-37.858163,144.109915,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,7,1,Australia,AU,Victoria,-37.656941,144.037416,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - mum was keeping a close eye on her adventurous joey in a nearby tree,2024,11,6,Australia,AU,Queensland,-27.528933,153.110894,EPSG:4326 +HUMAN_OBSERVATION,Lava,1,,There is a young Koala to the left of the adult's head. Blue >> pointing to the young.,2020,11,10,Australia,AU,Victoria,-36.744916,145.408328,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery very high up,2023,8,5,Australia,AU,Queensland,-27.527229,153.091705,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,2,26,Australia,AU,Victoria,-38.671237,146.163766,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Under Corymbia trachyphloia. 12.12.9 Eucalyptus dura woodland usually on rocky peaks on Mesozoic to Proterozoic igneous rocks,2023,5,14,Australia,AU,Queensland,-27.257769,152.076692,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Stringybark,2020,6,2,Australia,AU,Queensland,-27.552259,153.047898,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - Niki & joey,2024,11,23,Australia,AU,Queensland,-27.528483,153.103744,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2024,8,24,Australia,AU,Victoria,-38.354832,146.387771,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,17,Australia,AU,Queensland,-27.545513,153.073156,EPSG:4326 +HUMAN_OBSERVATION,meltierney,1,,,2022,8,24,Australia,AU,Queensland,-27.701139,152.082083,EPSG:4326 +HUMAN_OBSERVATION,Nicholas John Fisher,1,,,2023,12,22,Australia,AU,New South Wales,-28.864571,153.294467,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - white tag LEFT ear - Bandit,2024,7,12,Australia,AU,Queensland,-27.529481,153.109827,EPSG:4326 +HUMAN_OBSERVATION,Craig Morley,1,,One of two Kalas in a Box tree.,2023,1,12,Australia,AU,Victoria,-38.521329,143.71452,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,2,28,Australia,AU,Queensland,-26.155079,151.749888,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2024,1,6,Australia,AU,Queensland,-27.283743,152.999035,EPSG:4326 +HUMAN_OBSERVATION,katenap,1,,,2022,1,21,Australia,AU,Victoria,-37.455383,144.051406,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Very clear nose markings on brown female and joey in the last photo,",2020,10,4,Australia,AU,New South Wales,-28.253961,153.377504,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,10,20,Australia,AU,Queensland,-27.792013,151.562513,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Gully near Aldi gates,2024,1,7,Australia,AU,Queensland,-27.526246,153.093067,EPSG:4326 +HUMAN_OBSERVATION,Rusty,1,,,2020,11,3,Australia,AU,South Australia,-35.065804,138.572548,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,5,24,Australia,AU,Queensland,-27.529334,153.103799,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,2,1,Australia,AU,Queensland,-27.552159,153.055987,EPSG:4326 +HUMAN_OBSERVATION,Mike and Cathy Beamish,1,FEMALE,,2023,8,20,Australia,AU,Victoria,-38.358506,146.40423,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,8,24,Australia,AU,Queensland,-27.528434,153.093184,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,21,Australia,AU,South Australia,-34.889588,138.722603,EPSG:4326 +HUMAN_OBSERVATION,Mia Hosken,1,,,2022,5,19,Australia,AU,Victoria,-38.318239,142.365829,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,2nd of 2 koalas seen on this walk in glindemann park,2024,6,13,Australia,AU,Queensland,-27.525372,153.069,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,11,3,Australia,AU,South Australia,-34.890204,138.721309,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,11,30,Australia,AU,Queensland,-27.551544,153.058611,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,,2023,6,17,Australia,AU,Queensland,-27.565408,153.134139,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Make koala - testicles visible Entrance to the woodland - very high,2023,8,21,Australia,AU,Queensland,-27.52748,153.092238,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. 2 separate individuals observed at Wondai Racecourse. Observed by Anne-Marie Gibbs. Submitted via msg.,2022,3,31,Australia,AU,Queensland,-26.313279,151.882563,EPSG:4326 +HUMAN_OBSERVATION,kiah11,1,,,2022,11,5,Australia,AU,Queensland,-27.241846,152.976972,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Monkey rope vine,2021,3,2,Australia,AU,Queensland,-27.551085,153.057149,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,10,18,Australia,AU,South Australia,-34.891368,138.719476,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,31,Australia,AU,Queensland,-27.400175,153.437718,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Strong eucalyptus smell. Fresh,2023,7,22,Australia,AU,New South Wales,-32.737903,152.05922,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,17,Australia,AU,Queensland,-27.54711,153.073556,EPSG:4326 +HUMAN_OBSERVATION,elitheastronaut,1,,,2024,4,27,Australia,AU,New South Wales,-35.921689,145.674899,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - not tagged - known as Millie,2023,7,26,Australia,AU,Queensland,-27.527133,153.111008,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,17,Australia,AU,South Australia,-34.889683,138.722575,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear of woodland In last house backyard closest to gully,2023,11,5,Australia,AU,Queensland,-27.527761,153.093061,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - yellow tag LEFT ear, # unknown - known as Buster",2024,4,2,Australia,AU,Queensland,-27.531528,153.105295,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,25,Australia,AU,Queensland,-27.528481,153.092423,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,15,Australia,AU,Queensland,-27.54879,153.059537,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,11,15,Australia,AU,Victoria,-38.671345,146.164183,EPSG:4326 +HUMAN_OBSERVATION,Zoë Davis,1,,,2024,3,17,Australia,AU,Victoria,-37.859714,144.189692,EPSG:4326 +HUMAN_OBSERVATION,nsgwilliams,1,,,2020,9,28,Australia,AU,Victoria,-38.390728,145.124891,EPSG:4326 +HUMAN_OBSERVATION,kaharris03,1,,,2024,6,3,Australia,AU,New South Wales,-29.029327,153.283212,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2021,10,23,Australia,AU,South Australia,-34.933036,138.697867,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2023,11,6,Australia,AU,Queensland,-27.52952,153.10258,EPSG:4326 +HUMAN_OBSERVATION,Reiner Richter,1,,a very photographed and talked-about koala,2022,1,26,Australia,AU,Victoria,-37.76548,145.70177,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Unhealthy. Possible chlamydia. Observed by community and forward to wildlife rescuer Wendy Taylor but was unable to locate. Submitted via msg.,2024,9,16,Australia,AU,Queensland,-26.463545,151.743591,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,3,10,Australia,AU,Queensland,-27.527104,153.091816,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2024,3,13,Australia,AU,Queensland,-27.530609,153.104465,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Rear entrance to nursery,2024,8,18,Australia,AU,Queensland,-27.527196,153.091964,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2021,10,23,Australia,AU,South Australia,-34.932917,138.698228,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2021,9,19,Australia,AU,South Australia,-35.005057,138.645938,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In vacant block between Seton college and TAFE Being annoyed by three galahs,2023,7,9,Australia,AU,Queensland,-27.528292,153.091871,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,3,16,Australia,AU,Queensland,-27.52705,153.09162,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2024,7,28,Australia,AU,Queensland,-27.528258,153.092412,EPSG:4326 +HUMAN_OBSERVATION,ajanegray,1,,,2023,6,2,Australia,AU,Queensland,-25.355972,152.896045,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,Male koala in big tree outside our bedroom. He is looking for the female.,2023,12,26,Australia,AU,Queensland,-27.358394,152.074634,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,3,1,Australia,AU,Queensland,-27.529803,153.104926,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,18,Australia,AU,South Australia,-34.893435,138.716882,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2023,2,6,Australia,AU,South Australia,-34.866092,138.665253,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,9,8,Australia,AU,Queensland,-27.528623,153.115112,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,10,14,Australia,AU,Queensland,-26.389495,151.777039,EPSG:4326 +HUMAN_OBSERVATION,ISTARI,1,,,2024,9,11,Australia,AU,New South Wales,-29.507805,152.825246,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,11,7,Australia,AU,Queensland,-27.569922,152.102753,EPSG:4326 +HUMAN_OBSERVATION,leithallb,1,,5423,2022,11,19,Australia,AU,South Australia,-35.016328,138.671642,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,11,Australia,AU,Queensland,-27.546799,153.073083,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,9,12,Australia,AU,Queensland,-27.414663,152.004272,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,12,8,Australia,AU,Queensland,-27.546663,153.056453,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,,Found under E. melliodora.,2024,7,29,Australia,AU,Queensland,-27.648875,151.913641,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,healthy and friendly,2021,6,23,Australia,AU,Victoria,-37.661268,143.886309,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,13,Australia,AU,South Australia,-34.889746,138.727334,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park,2024,5,11,Australia,AU,Queensland,-27.525062,153.092243,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,In a Manna Gum (E. viminalis). Appears to be same Koala (in same tree) as yesterday (https://inaturalist.ala.org.au/observations/214555655) and the day before.,2024,5,10,Australia,AU,Victoria,-38.497075,142.978194,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Koala rescue. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,9,20,Australia,AU,Queensland,-26.084729,151.546988,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,9,17,Australia,AU,Queensland,-27.696388,151.595567,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey Ironbark,2021,5,25,Australia,AU,Queensland,-27.526113,153.048732,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,4,5,Australia,AU,South Australia,-35.013922,138.673287,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey in bloodwood,2021,1,20,Australia,AU,Queensland,-27.55219,153.055379,EPSG:4326 +HUMAN_OBSERVATION,Andrew Humpage,1,,,2022,8,9,Australia,AU,South Australia,-34.883873,138.648531,EPSG:4326 +HUMAN_OBSERVATION,rordale,1,,,2024,11,1,Australia,AU,Queensland,-27.260042,152.058822,EPSG:4326 +HUMAN_OBSERVATION,Annabelle Watts; Justin Watts,1,,,2024,2,8,Australia,AU,Victoria,-38.38399,145.302428,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,,2024,10,13,Australia,AU,Queensland,-27.507786,153.085556,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,2,17,Australia,AU,Queensland,-26.401998,152.654799,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,4,16,Australia,AU,Victoria,-38.354801,146.387718,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Juvenile. Unknown sex. Healthy. Observed by Leanne Zischke. Submitted via project event and email.,2023,1,2,Australia,AU,Queensland,-26.165098,151.972461,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,11,14,Australia,AU,Queensland,-27.823732,152.993582,EPSG:4326 +HUMAN_OBSERVATION,sunshineazza,1,,,2022,6,4,Australia,AU,Queensland,-27.444467,152.310088,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"Isolated koala found crossing busy road in unsafe habitat rescued by Ballarat Wildlife Park and the local fire brigade, relocated sucessfully.",2024,3,9,Australia,AU,Victoria,-37.59851,143.841094,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,11,24,Australia,AU,Victoria,-38.354645,146.387584,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo. Dirty bum - for rescue",2024,2,2,Australia,AU,Queensland,-27.527231,153.107625,EPSG:4326 +HUMAN_OBSERVATION,mtcrosbymagic,1,,,2022,5,23,Australia,AU,Queensland,-27.510273,152.789137,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Male koala. High up in a red river gum on the Murrumbidgee river. Was bellowing and eating ( audio unfortunately picks up the cockatoos too.,2022,9,3,Australia,AU,New South Wales,-34.746659,146.518702,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,,2023,8,30,Australia,AU,Queensland,-27.543567,153.075571,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,,"Healthy (clean rump and eyes). Pale mark (scratch?) on nose, between nostrils.",2021,9,5,Australia,AU,Queensland,-27.462439,152.402932,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2024,6,26,Australia,AU,Queensland,-27.225178,153.068692,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of Tristania and Wisteria Woodland Very high up,2023,7,28,Australia,AU,Queensland,-27.524157,153.093352,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,6,Australia,AU,Queensland,-27.507298,153.085412,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,7,10,Australia,AU,South Australia,-34.891675,138.627002,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.923154,147.731057,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Hear it and went looking and it was quite low and easy to see. Quite a large koala. Close by one seen a few days ago, which was slightly further down the hill (A saw it first and let me know to photograph it).",2020,5,10,Australia,AU,New South Wales,-28.255031,153.376891,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,And Joey in Grey Ironbark,2020,7,8,Australia,AU,Queensland,-27.538842,153.054282,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Looks healthy, resting in the heat",2024,2,21,Australia,AU,Queensland,-27.779587,152.732162,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,10,13,Australia,AU,Queensland,-27.544696,153.056505,EPSG:4326 +HUMAN_OBSERVATION,insiderelic,1,,,2021,8,14,Australia,AU,South Australia,-34.997014,138.700231,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"In context image Koala is in centre tree near top of tree, in top half of image. In Messmate Stringybark (E. obliqua).",2024,5,27,Australia,AU,Victoria,-38.497639,142.977633,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,24,Australia,AU,South Australia,-34.893805,138.714842,EPSG:4326 +HUMAN_OBSERVATION,Nathaniel Xggum,1,,,2022,11,10,Australia,AU,Queensland,-27.428314,151.991822,EPSG:4326 +HUMAN_OBSERVATION,julie,1,,,2024,5,22,Australia,AU,Queensland,-27.861501,153.067255,EPSG:4326 +HUMAN_OBSERVATION,tcoull,1,,,2024,3,13,Australia,AU,Victoria,-38.835617,143.514542,EPSG:4326 +HUMAN_OBSERVATION,regan_scheuber,1,,,2023,1,5,Australia,AU,Queensland,-27.533461,151.991554,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,Mum and Bub,2021,10,24,Australia,AU,Queensland,-27.508355,153.081671,EPSG:4326 +HUMAN_OBSERVATION,roxym,1,,,2020,4,24,Australia,AU,Victoria,-38.433031,145.046182,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,12,6,Australia,AU,Queensland,-27.547299,153.058422,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"2 males sharing a tree. Yellow tag 1317 LEFT ear - Thor, released in this tree 13/03/2024",2024,4,13,Australia,AU,Queensland,-27.529857,153.109328,EPSG:4326 +HUMAN_OBSERVATION,seamus-doherty,1,,,2020,2,14,Australia,AU,South Australia,-34.874546,138.733277,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,No visible ear tags.,2023,10,2,Australia,AU,Queensland,-27.507984,153.086574,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,3,23,Australia,AU,New South Wales,-28.26038,153.40089,EPSG:4326 +HUMAN_OBSERVATION,bernwhiss,1,,"Mt Peel, south west of Toowoomba, on lower eastern protected side. In Ironbark tree.",2024,3,17,Australia,AU,Queensland,-27.601408,151.892277,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Large tick on RIGHT cheek,2023,11,3,Australia,AU,Queensland,-27.527502,153.110731,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,"Three koalas found in adjacent trees, same day/time, appeared to be mother and 2 joeys (one Joey was slightly bigger, older?)",2021,1,26,Australia,AU,New South Wales,-34.101897,150.822328,EPSG:4326 +HUMAN_OBSERVATION,StreetMorrisArt,1,,3 of 4 we spotted,2023,3,27,Australia,AU,Queensland,-27.552009,153.059141,EPSG:4326 +HUMAN_OBSERVATION,Kelana Arraiza,1,,,2023,4,17,Australia,AU,Queensland,-27.971311,153.234727,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2023,9,6,Australia,AU,Queensland,-27.529091,153.103348,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,14,Australia,AU,Queensland,-27.528847,153.112319,EPSG:4326 +HUMAN_OBSERVATION,jobrierley,1,,,2023,5,22,Australia,AU,Queensland,-28.157351,153.429529,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2024,8,12,Australia,AU,South Australia,-34.954297,138.690077,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Young adult or subadult male. Healthy.,2023,10,17,Australia,AU,Queensland,-27.906278,153.371203,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,5,26,Australia,AU,Queensland,-27.527129,153.092064,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Wilemina,2024,8,13,Australia,AU,South Australia,-34.890411,138.732117,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,9,30,Australia,AU,Queensland,-26.155079,151.749888,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala scat under spotted gum in Zingelmann Road road reserve.,2024,5,14,Australia,AU,Queensland,-27.881453,152.743106,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,,2024,7,15,Australia,AU,Queensland,-27.528653,153.112687,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Maisie B and joey,2024,11,5,Australia,AU,Queensland,-27.526987,153.090439,EPSG:4326 +HUMAN_OBSERVATION,philip-roetman,1,,,2024,4,28,Australia,AU,South Australia,-34.930914,138.673436,EPSG:4326 +HUMAN_OBSERVATION,Rin,1,,first koala I've seen in this park in 10 years. a celebrity koala for sure,2020,9,7,Australia,AU,Victoria,-37.741667,145.124444,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown tree,2020,3,11,Australia,AU,Queensland,-27.546283,153.060283,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,10,6,Australia,AU,Queensland,-27.524635,153.092976,EPSG:4326 +HUMAN_OBSERVATION,basilsdonna,1,,,2023,11,2,Australia,AU,Victoria,-37.720503,141.549657,EPSG:4326 +HUMAN_OBSERVATION,lynsh,1,,,2024,9,18,Australia,AU,Queensland,-27.906045,153.378563,EPSG:4326 +HUMAN_OBSERVATION,Lorraine Phelan,1,,,2024,10,17,Australia,AU,Victoria,-38.037138,141.668921,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,On cavendish road - rescued by John Knight RACQ tag left ear #1048 male,2023,10,8,Australia,AU,Queensland,-27.527835,153.090871,EPSG:4326 +HUMAN_OBSERVATION,Attila Lengyel,1,,,2023,9,2,Australia,AU,New South Wales,-28.980069,153.406817,EPSG:4326 +HUMAN_OBSERVATION,gubana,1,,Male koala resting in Angophora costata tree,2020,12,6,Australia,AU,Queensland,-28.051814,151.496007,EPSG:4326 +HUMAN_OBSERVATION,Graham Armstrong,1,,,2024,10,2,Australia,AU,South Australia,-34.932539,138.718701,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,12,Australia,AU,Queensland,-27.527213,153.108665,EPSG:4326 +HUMAN_OBSERVATION,John Walter,1,,,2020,2,16,Australia,AU,Victoria,-37.312829,144.310002,EPSG:4326 +HUMAN_OBSERVATION,luckychii,1,,,2022,11,19,Australia,AU,South Australia,-34.900618,138.702408,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2022,5,17,Australia,AU,Victoria,-38.315479,142.367001,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,,2022,8,6,Australia,AU,New South Wales,-34.759306,146.565181,EPSG:4326 +HUMAN_OBSERVATION,Konrad Szylar,1,FEMALE,,2023,3,26,Australia,AU,New South Wales,-34.098762,150.825642,EPSG:4326 +HUMAN_OBSERVATION,Sam S,1,,Heard grunting at midnight for an hour. In planted euc.rubida approx 13 years old,2023,2,25,Australia,AU,Victoria,-37.018442,145.452419,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2024,3,8,Australia,AU,South Australia,-34.865275,138.656862,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,4,4,Australia,AU,Queensland,-26.155079,151.749888,EPSG:4326 +HUMAN_OBSERVATION,mbrcenvironmentcentres,1,,,2020,11,20,Australia,AU,Queensland,-27.162881,152.938737,EPSG:4326 +HUMAN_OBSERVATION,Casual Observer,1,,,2022,9,10,Australia,AU,Queensland,-27.140329,152.942869,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,12,Australia,AU,Queensland,-27.527891,153.111126,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,8,16,Australia,AU,South Australia,-34.89154,138.626807,EPSG:4326 +HUMAN_OBSERVATION,Albert Ross,1,,,2023,5,28,Australia,AU,New South Wales,-28.944287,153.316871,EPSG:4326 +HUMAN_OBSERVATION,scottyw,1,,Male. Heard him grunting,2022,11,24,Australia,AU,Victoria,-38.398323,145.108237,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Large male koala out on the top of the spur.,2020,7,1,Australia,AU,New South Wales,-28.254178,153.377041,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,27,Australia,AU,Queensland,-27.527201,153.092497,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,,2020,1,23,Australia,AU,New South Wales,-29.872848,150.551952,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2022,11,1,Australia,AU,Victoria,-38.138377,145.275077,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,10,10,Australia,AU,Victoria,-38.671622,146.164078,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,8,15,Australia,AU,Victoria,-38.354735,146.387721,EPSG:4326 +HUMAN_OBSERVATION,August Lambrecht,1,,,2022,7,16,Australia,AU,Queensland,-27.260483,152.187968,EPSG:4326 +HUMAN_OBSERVATION,Libby Woodward,1,,Koala at the Small Dam,2020,6,17,Australia,AU,Victoria,-36.523711,145.726143,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Started to climb a small tree, too small so came down and climbed the next one. Believed to be a male.",2020,11,6,Australia,AU,New South Wales,-28.253919,153.3774,EPSG:4326 +HUMAN_OBSERVATION,serialist,1,,,2022,10,6,Australia,AU,Victoria,-38.668089,143.860876,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,4,21,Australia,AU,Queensland,-27.527277,153.092334,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,5,31,Australia,AU,Queensland,-27.530055,153.105013,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,26,Australia,AU,Queensland,-27.792798,151.544977,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,12,Australia,AU,Queensland,-27.529794,153.110719,EPSG:4326 +HUMAN_OBSERVATION,Kymberley,1,MALE,,2021,10,28,Australia,AU,Queensland,-21.687433,148.687907,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,2 koalas in the same tree,2024,7,5,Australia,AU,Queensland,-27.529705,153.103774,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,With front bub.,2023,9,8,Australia,AU,Queensland,-27.25722,152.04642,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,1,2,Australia,AU,Queensland,-27.529989,153.103302,EPSG:4326 +HUMAN_OBSERVATION,Ian Becker,1,,,2024,7,2,Australia,AU,Queensland,-27.919485,153.377058,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,mother koala with young in pouch,2023,10,23,Australia,AU,Queensland,-27.671925,151.660845,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside admin block next to cleaners donga Mother and joey - possibly Lucy Lou and joey,2023,10,2,Australia,AU,Queensland,-27.526922,153.091693,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,5,21,Australia,AU,Queensland,-27.528867,153.109042,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy looking mother and Joey, both alert. Two of four koalas seen on one walk.",2022,12,6,Australia,AU,Queensland,-27.701955,153.190467,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2021,3,12,Australia,AU,New South Wales,-34.762416,146.570708,EPSG:4326 +HUMAN_OBSERVATION,Albert Kang,1,,,2024,11,17,Australia,AU,New South Wales,-32.7208,152.141436,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,4,25,Australia,AU,Queensland,-27.735642,151.5177,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,4,Australia,AU,Queensland,-27.527204,153.111174,EPSG:4326 +HUMAN_OBSERVATION,Peter Hayes,1,,,2022,8,6,Australia,AU,Queensland,-28.102751,151.261058,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,7,26,Australia,AU,Queensland,-27.525534,153.092153,EPSG:4326 +HUMAN_OBSERVATION,leithallb,1,,8521,2020,6,1,Australia,AU,Queensland,-27.539547,153.033124,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,10,Australia,AU,Queensland,-27.530648,153.104584,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,21,Australia,AU,Queensland,-27.526827,153.090942,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,6,16,Australia,AU,Queensland,-27.528658,153.092609,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,1,Australia,AU,South Australia,-34.891881,138.722565,EPSG:4326 +HUMAN_OBSERVATION,Antonio,1,,,2023,10,25,Australia,AU,New South Wales,-34.109422,150.803556,EPSG:4326 +HUMAN_OBSERVATION,Mel,1,,,2023,3,4,Australia,AU,South Australia,-34.967168,138.650735,EPSG:4326 +HUMAN_OBSERVATION,quollsskinks,1,,,2021,7,23,Australia,AU,Victoria,-37.752195,142.023619,EPSG:4326 +HUMAN_OBSERVATION,Francesco Martoni,1,,,2021,12,27,Australia,AU,Victoria,-37.478538,149.67778,EPSG:4326 +HUMAN_OBSERVATION,Rosanna Dedecius,1,,,2024,10,21,Australia,AU,Victoria,-38.6665,143.859057,EPSG:4326 +HUMAN_OBSERVATION,JohnNewman,1,,,2024,4,13,Australia,AU,Victoria,-37.864367,144.17603,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,15,Australia,AU,Queensland,-27.548933,153.059605,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,10,5,Australia,AU,Queensland,-27.529487,153.104993,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,,2023,4,3,Australia,AU,South Australia,-34.9935,138.722725,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,12,26,Australia,AU,Victoria,-37.616585,143.899032,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,8,Australia,AU,Queensland,-27.542563,153.072254,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,7,Australia,AU,South Australia,-34.88744,138.733956,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,10,20,Australia,AU,South Australia,-34.781419,138.82888,EPSG:4326 +HUMAN_OBSERVATION,Francesco Martoni,1,,,2022,2,4,Australia,AU,Victoria,-38.66886,143.860741,EPSG:4326 +HUMAN_OBSERVATION,ronavery,1,,,2024,7,6,Australia,AU,South Australia,-35.722198,137.337522,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2020,2,17,Australia,AU,Queensland,-27.551062,153.057839,EPSG:4326 +HUMAN_OBSERVATION,paniel,1,,,2023,1,1,Australia,AU,Victoria,-38.80042,143.481767,EPSG:4326 +HUMAN_OBSERVATION,J. Addesi,1,,,2024,3,23,Australia,AU,South Australia,-34.902398,138.702174,EPSG:4326 +HUMAN_OBSERVATION,hugheskc,1,,,2023,12,27,Australia,AU,Victoria,-38.530922,145.979095,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,Poor thing stuck in the middle of some roads Young female,2023,12,27,Australia,AU,Queensland,-27.246129,153.081957,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,2,10,Australia,AU,Queensland,-27.510225,153.085135,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,20,Australia,AU,Queensland,-27.52778,153.11176,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - yellow tag RIGHT ear,2024,6,4,Australia,AU,Queensland,-27.527644,153.110183,EPSG:4326 +HUMAN_OBSERVATION,Mike and Cathy Beamish,1,,5 individuals photographed of 13 sighted during annual count. Part of the remnant population known as the Strzelecki Koala.,2022,10,16,Australia,AU,Victoria,-38.362113,146.388213,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,Two in the area. One recorded as a call.,2023,9,28,Australia,AU,South Australia,-34.810775,135.780687,EPSG:4326 +HUMAN_OBSERVATION,ferngullyisme,1,,Scat,2023,7,23,Australia,AU,Queensland,-26.251336,152.973936,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2024,11,11,Australia,AU,Queensland,-27.529027,153.106914,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,29,Australia,AU,Queensland,-27.52709,153.091054,EPSG:4326 +HUMAN_OBSERVATION,rhett_dodd,1,,,2024,5,28,Australia,AU,Queensland,-27.270859,152.991342,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,14,Australia,AU,Queensland,-27.544685,153.056978,EPSG:4326 +HUMAN_OBSERVATION,andymc737,1,,,2022,11,25,Australia,AU,Queensland,-27.939195,153.356672,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,6,23,Australia,AU,Queensland,-27.524955,153.092998,EPSG:4326 +HUMAN_OBSERVATION,Beck Ripley,1,,,2021,11,4,Australia,AU,Victoria,-38.133232,145.27145,EPSG:4326 +HUMAN_OBSERVATION,jisterjo,1,,,2022,4,11,Australia,AU,Victoria,-36.946751,145.32942,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2023,4,24,Australia,AU,Queensland,-27.726645,151.503403,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,5,Australia,AU,Queensland,-27.536928,153.055622,EPSG:4326 +HUMAN_OBSERVATION,Simon Tonge,1,,,2024,7,28,Australia,AU,Victoria,-38.669776,143.857365,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,10,17,Australia,AU,Queensland,-27.546483,153.058232,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2022,1,22,Australia,AU,Victoria,-38.356617,146.389805,EPSG:4326 +HUMAN_OBSERVATION,Kelly Smith,1,,,2021,9,26,Australia,AU,Victoria,-38.372963,145.216828,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,5,17,Australia,AU,South Australia,-35.004093,138.649917,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Female yellow tag right ear #1075 Released in TAFE yesterday 13 October after August dog attack. Has been in Moggill Rehabilitation Centre Jaye Mallet E block picnic area,2023,10,14,Australia,AU,Queensland,-27.526042,153.09072,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,6,8,Australia,AU,Queensland,-27.527804,153.092745,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Male. Signs of chlamydia. Observed and Rescued by Wendy Taylor & Robyn White. Submitted via FB,2024,3,7,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,kushlag,1,,,2023,2,25,Australia,AU,Queensland,-27.597925,151.895508,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,16,Australia,AU,Queensland,-27.525213,153.092333,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2022,11,11,Australia,AU,Queensland,-27.711387,151.536121,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2021,11,30,Australia,AU,Queensland,-27.823168,152.994055,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2023,10,29,Australia,AU,Victoria,-38.62808,145.72792,EPSG:4326 +HUMAN_OBSERVATION,David Clarke,1,,,2022,11,6,Australia,AU,Victoria,-37.286578,143.239242,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,5,24,Australia,AU,Queensland,-27.534504,153.062168,EPSG:4326 +HUMAN_OBSERVATION,delanyd,1,,,2023,10,4,Australia,AU,Queensland,-22.348814,149.103205,EPSG:4326 +HUMAN_OBSERVATION,hellybelly,1,,Young koala.,2022,5,8,Australia,AU,Queensland,-26.395997,153.014105,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In triangle area near cafeteria Mother and joey,2024,8,17,Australia,AU,Queensland,-27.526892,153.091952,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Unhealthy. Adult. Male. Euthanised. Observed by Wendy Taylor. Submitted via msg.,2024,7,6,Australia,AU,Queensland,-26.490041,151.863155,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2024,8,17,Australia,AU,Victoria,-38.35818,146.387107,EPSG:4326 +HUMAN_OBSERVATION,cexynature,1,,,2023,11,13,Australia,AU,Queensland,-27.963622,153.381713,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Joy - green tag Q11 RIGHT ear,2023,2,7,Australia,AU,Queensland,-27.526869,153.108759,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,“Karra from the Garra? Adult female. Quite old. Condition had deteriorated over the last few months.,2022,11,7,Australia,AU,Queensland,-28.101319,151.259858,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Spotted Gum,2020,4,1,Australia,AU,Queensland,-27.550321,153.052842,EPSG:4326 +HUMAN_OBSERVATION,duffelbag,1,,,2023,3,30,Australia,AU,Victoria,-38.392824,142.536412,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Maisie and joey,2024,7,13,Australia,AU,Queensland,-27.526541,153.090242,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,MALE,,2024,11,15,Australia,AU,South Australia,-34.92867,138.683747,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2022,6,4,Australia,AU,Queensland,-27.226229,153.072234,EPSG:4326 +HUMAN_OBSERVATION,Jo Burrows,1,,,2020,6,7,Australia,AU,Queensland,-27.225187,153.070429,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,"Female, in same tree as male (previous sighting)",2021,11,20,Australia,AU,Victoria,-38.671712,146.164139,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,10,12,Australia,AU,Queensland,-27.526814,153.091335,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2024,5,23,Australia,AU,Victoria,-37.641822,143.901148,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,3,1,Australia,AU,Queensland,-27.554485,153.074673,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,,"#roadkill Female, previously seen with Joe. No koala area road signs",2022,1,20,Australia,AU,South Australia,-35.048885,138.572564,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,10,20,Australia,AU,Queensland,-27.528045,153.092283,EPSG:4326 +HUMAN_OBSERVATION,dibbling,1,,Juvenille male,2024,7,1,Australia,AU,Queensland,-27.898047,153.367564,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Directly outside cleaners donga,2023,8,19,Australia,AU,Queensland,-27.526877,153.091745,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,Moving across access road to scenic rim council waste disposal depot east into open paddock,2022,8,1,Australia,AU,Queensland,-27.975989,152.932674,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Female. Injured. Dog attack. Rescued and later released 23.09.2024. Photos of both the rescue and release. Observed and rescued by Wendy Taylor. Submitted via msg.,2024,8,29,Australia,AU,Queensland,-26.384822,151.808855,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2020,5,22,Australia,AU,Queensland,-27.258379,152.991771,EPSG:4326 +HUMAN_OBSERVATION,granitekiwi,1,,,2021,3,10,Australia,AU,Queensland,-27.232858,153.007796,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,"Possibly a juvenile female. Moving head, eyes slightly closed, clean fur. Observed in a different part of the tree roughly 2.5 hours later. RE: 12.9-10.26",2023,3,22,Australia,AU,Queensland,-27.551072,153.060108,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Male. Healthy. Observed by Wendy Taylor. Submitted via email.,2023,4,23,Australia,AU,Queensland,-26.182073,151.775294,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,10,19,Australia,AU,Queensland,-27.526276,153.090156,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,15,Australia,AU,Queensland,-27.822701,152.992687,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,2,6,Australia,AU,Queensland,-27.544278,153.071358,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,5,19,Australia,AU,Queensland,-27.55112,153.057811,EPSG:4326 +HUMAN_OBSERVATION,csimpson03,1,,,2023,6,27,Australia,AU,New South Wales,-28.839674,153.324319,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,7,22,Australia,AU,New South Wales,-28.258199,153.400736,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - white tag LEFT ear - Bandit,2023,10,23,Australia,AU,Queensland,-27.529801,153.110729,EPSG:4326 +HUMAN_OBSERVATION,warren cameron,1,,,2021,3,17,Australia,AU,Victoria,-37.914052,147.748591,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2020,3,21,Australia,AU,Victoria,-38.799642,143.481888,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,28,Australia,AU,Queensland,-27.547203,153.073301,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Eucalyptus fibrosa,2021,10,5,Australia,AU,Queensland,-27.546467,153.05895,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near e block Barbara Dart,2024,7,7,Australia,AU,Queensland,-27.526672,153.090794,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2024,2,11,Australia,AU,Queensland,-27.528434,153.092249,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near E block - next to driveway Male koala scent gland visible,2023,8,20,Australia,AU,Queensland,-27.526329,153.090749,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,17,Australia,AU,Queensland,-27.545575,153.073837,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Campo - female red tag A18 RIGHT ear,2023,2,13,Australia,AU,Queensland,-27.529297,153.109066,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,28,Australia,AU,Queensland,-27.544613,153.072463,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2020,11,18,Australia,AU,South Australia,-35.015793,138.715646,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,20,Australia,AU,Queensland,-27.52895,153.108338,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,fresh koala scat,2022,4,8,Australia,AU,Victoria,-37.584267,143.890733,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2022,6,21,Australia,AU,Queensland,-27.562496,152.106528,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.768083,143.607096,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2023,9,5,Australia,AU,Queensland,-27.529067,153.103047,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,26,Australia,AU,South Australia,-34.88719,138.720555,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2022,10,22,Australia,AU,South Australia,-34.958634,138.691324,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,,2022,8,6,Australia,AU,New South Wales,-34.756983,146.566833,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"No visible ear tags. High up a Spotted Gum, Corymbia sp.",2021,3,29,Australia,AU,Queensland,-27.514486,153.078469,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"In a Messmate Stringybark (E. obliqua). Locate Koala in branch above the dense foliage in the middle of the image (first image rough from phone, to set up observation, later images detail from DSLR). This appears to be one of the Koalas from the Manna Gum stick nest tree located across the road and behind another Messmate (as noted in yesterdays observation https://inaturalist.ala.org.au/observations/214939352). The Manna Gum has been vacated and another Koala is in the other Messmate across the road.",2024,5,11,Australia,AU,Victoria,-38.499803,142.974914,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,9,11,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2020,9,9,Australia,AU,Queensland,-27.507099,153.085319,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2023,7,1,Australia,AU,New South Wales,-31.584591,149.301124,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,2,25,Australia,AU,Queensland,-27.548399,153.052046,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"Interesting to have 2 females with last years young in close proximity. Consistent with Ellis et al. 2015 who found that while males rarely interact with other males during the mating season, females seem to become a lot more sociable with each other. https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0130657",2024,9,12,Australia,AU,Queensland,-27.82343,152.993755,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2024,4,2,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,Alex,1,,Hunter Camera,2024,7,14,Australia,AU,Queensland,-26.15117,152.86915,EPSG:4326 +HUMAN_OBSERVATION,StreetMorrisArt,1,,1 of 4 we spotted,2023,3,27,Australia,AU,Queensland,-27.551618,153.05919,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,Arabanoo TSR,2024,10,31,Australia,AU,New South Wales,-29.793324,150.63993,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Red Ash,2021,7,15,Australia,AU,Queensland,-27.550233,153.060487,EPSG:4326 +HUMAN_OBSERVATION,David Akers,1,,,2022,2,5,Australia,AU,Victoria,-38.432183,146.526342,EPSG:4326 +HUMAN_OBSERVATION,Cobi Calyx,1,,,2021,5,23,Australia,AU,South Australia,-35.0057,138.637617,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,2,23,Australia,AU,New South Wales,-28.25823,153.40112,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to e block Possibly Barbara Dart,2024,8,3,Australia,AU,Queensland,-27.526541,153.09095,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,2,27,Australia,AU,Queensland,-27.52905,153.112067,EPSG:4326 +HUMAN_OBSERVATION,Matteo Grilli,1,,,2021,8,15,Australia,AU,Queensland,-27.434525,152.997736,EPSG:4326 +HUMAN_OBSERVATION,Mia Whittaker,1,,,2024,1,17,Australia,AU,South Australia,-34.90442,138.707262,EPSG:4326 +HUMAN_OBSERVATION,vhart30,1,MALE,"Male healthy koala, could be Slarki",2024,4,27,Australia,AU,New South Wales,-34.096899,150.983907,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2023,12,26,Australia,AU,Queensland,-27.527226,153.092019,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,5,Australia,AU,South Australia,-34.889365,138.72477,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside customer service centre - in squared garden area Male who was injured last weekend,2023,11,18,Australia,AU,Queensland,-27.526775,153.091516,EPSG:4326 +HUMAN_OBSERVATION,Carsten Meyer,1,,,2023,10,17,Australia,AU,Victoria,-38.666747,143.857335,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,1,9,Australia,AU,Queensland,-27.505854,153.083708,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of woodland tristania and wisteria - in bush a bit back from tristania way Cindy Crawford and Joey,2023,7,8,Australia,AU,Queensland,-27.524164,153.093342,EPSG:4326 +HUMAN_OBSERVATION,allambiretreat,1,,,2022,6,5,Australia,AU,Queensland,-27.344663,152.845353,EPSG:4326 +HUMAN_OBSERVATION,cintajac,1,,Two Koalas (one feeding),2021,4,11,Australia,AU,South Australia,-34.838304,138.740905,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Ushered off the round about near Houston Ford. Observed by Chris Hutchinson. Submitted via email.,2023,11,4,Australia,AU,Queensland,-26.561671,151.841054,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,1 of 2 Koalas in the same tree observed courtship behaviour,2024,10,1,Australia,AU,New South Wales,-34.721703,146.495972,EPSG:4326 +HUMAN_OBSERVATION,actesion,1,,,2024,2,29,Australia,AU,Queensland,-27.539272,153.066228,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear,2023,3,18,Australia,AU,Queensland,-27.527098,153.10904,EPSG:4326 +HUMAN_OBSERVATION,juniorjupp,1,,,2024,2,10,Australia,AU,Victoria,-37.923633,147.731445,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,11,15,Australia,AU,Queensland,-27.528787,153.10711,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,24,Australia,AU,Queensland,-27.541726,153.068729,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2024,9,21,Australia,AU,New South Wales,-34.76995,146.589888,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" male showing increased eye infection. Looking otherwise fit. Remains dominant male in area.",2021,9,19,Australia,AU,New South Wales,-30.520863,151.518403,EPSG:4326 +HUMAN_OBSERVATION,Alistair D. Dove,1,,,2023,12,9,Australia,AU,Queensland,-27.496178,153.399322,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2024,8,1,Australia,AU,Queensland,-27.982947,153.290158,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2023,10,11,Australia,AU,Queensland,-27.870082,152.627861,EPSG:4326 +HUMAN_OBSERVATION,owen_brown,1,,,2024,10,29,Australia,AU,Queensland,-28.194692,153.187287,EPSG:4326 +HUMAN_OBSERVATION,highseamutiny,1,,,2024,1,23,Australia,AU,Victoria,-38.17307,145.171067,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female. Unhealthy. Observed sitting in a paddock surrounded by curious cattle. Observed by Michelle Colbran. Submitted by Wendy Taylor via msg. Released after treatment and care for conjunctivitis 02.11.2024. Release record: https://www.inaturalist.org/observations/250509196,2024,9,20,Australia,AU,Queensland,-26.293881,152.021535,EPSG:4326 +HUMAN_OBSERVATION,Kymberley,1,,,2022,11,15,Australia,AU,Queensland,-21.410485,148.474418,EPSG:4326 +HUMAN_OBSERVATION,StreetMorrisArt,1,,2 of 4 we spotted,2023,3,27,Australia,AU,Queensland,-27.551578,153.059176,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2022,1,6,Australia,AU,New South Wales,-28.254076,153.376817,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"koala seen high in tree, we have video.",2020,8,9,Australia,AU,New South Wales,-28.268988,153.392799,EPSG:4326 +HUMAN_OBSERVATION,danmarkos,1,,,2023,3,4,Australia,AU,Victoria,-37.998279,141.046859,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3095,2022,7,12,Australia,AU,Queensland,-27.456754,152.18901,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,,2023,2,17,Australia,AU,Queensland,-27.495775,152.249519,EPSG:4326 +HUMAN_OBSERVATION,Benjamin Schwartz,1,,,2023,9,17,Australia,AU,South Australia,-35.007958,138.662024,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,5,Australia,AU,South Australia,-34.890269,138.730168,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Female with Joey in Grey Ironbark,2021,12,30,Australia,AU,Queensland,-27.533424,153.037797,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near K block mowing shed,2024,6,8,Australia,AU,Queensland,-27.525875,153.090763,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"Mother and joey. 25/7 spotlight count 18:00-19:00 1 hour, 1 observer JoT: 3 koalas (2 sightings: mother and joey, 1 other), 1 bandicoot, 3 gliders, 3 egk, 3 btp. Koala male heard on 26/7 3:15am",2024,7,25,Australia,AU,Queensland,-27.82352,152.993242,EPSG:4326 +HUMAN_OBSERVATION,Sam,1,,,2024,7,27,Australia,AU,Queensland,-19.127443,146.869378,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,10,30,Australia,AU,Queensland,-27.551945,153.054341,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,19,Australia,AU,Queensland,-27.529713,153.104372,EPSG:4326 +HUMAN_OBSERVATION,Joanne,1,,,2022,12,18,Australia,AU,Queensland,-27.919485,153.377058,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in Eucalyptus tereticornis. Confirmed via binoculars.,2024,5,13,Australia,AU,Queensland,-27.949121,152.589021,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2022,2,9,Australia,AU,Queensland,-27.534128,153.058601,EPSG:4326 +HUMAN_OBSERVATION,Rosemary and Mark Breyley,1,,,2024,10,31,Australia,AU,Victoria,-37.025778,145.650477,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,13,Australia,AU,Queensland,-27.82374,152.993049,EPSG:4326 +HUMAN_OBSERVATION,ruthealexander,1,,"This koala was first spotted on the ground before it climbed up a eucalyptus tree and was quite active climbing to the top of the tree and eating leaves. It eventually climbed down the tree to a larger, more stable branch and fell asleep.",2024,7,18,Australia,AU,New South Wales,-30.486581,151.640253,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Hit by vehicle. Dead. Observed by Wendy Taylor. Submitted via msg,2023,11,15,Australia,AU,Queensland,-26.71854,150.674545,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,28,Australia,AU,Queensland,-27.527153,153.091957,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,2,15,Australia,AU,Queensland,-27.551691,153.057943,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey in a giant scribbly gum,2023,8,7,Australia,AU,Queensland,-27.528541,153.113758,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2021,3,11,Australia,AU,Victoria,-38.128005,145.281429,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,21,Australia,AU,Queensland,-27.526994,153.091562,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Female adult koala with cystitis,2020,4,23,Australia,AU,Queensland,-27.926284,153.37139,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Hit by car and members of public rang koala rescuer John Knights. Very busy road near motorway. Young male koala. Rescued at 9pm at night and then taken to Wildlife Hospital at Wacol.,2024,7,25,Australia,AU,Queensland,-27.524077,153.054073,EPSG:4326 +HUMAN_OBSERVATION,Jake Batters,1,,,2024,4,23,Australia,AU,Queensland,-27.908931,153.372151,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,14,Australia,AU,Queensland,-27.529141,153.104837,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Canon 650D,2023,3,2,Australia,AU,Queensland,-27.531002,152.183432,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2024,2,14,Australia,AU,Victoria,-37.587485,143.883587,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Jaye Mallet #1075 Lower carpark Cav road,2023,10,17,Australia,AU,Queensland,-27.525557,153.090198,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,29,Australia,AU,Queensland,-27.529569,153.103784,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,10,22,Australia,AU,New South Wales,-28.28456,153.389714,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,10,12,Australia,AU,Queensland,-27.549552,153.060528,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Black She Oak,2021,2,11,Australia,AU,Queensland,-27.550725,153.059374,EPSG:4326 +HUMAN_OBSERVATION,Alan Dahl,1,FEMALE,,2020,3,2,Australia,AU,Victoria,-38.797562,143.541468,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2024,7,13,Australia,AU,South Australia,-34.921878,138.694288,EPSG:4326 +HUMAN_OBSERVATION,ella_nico,1,,Koala with a joey on her back,2021,9,9,Australia,AU,New South Wales,-30.461312,152.899511,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,,2024,7,5,Australia,AU,Queensland,-27.453128,152.365814,EPSG:4326 +HUMAN_OBSERVATION,kdoust,1,,Adult male,2024,6,18,Australia,AU,Queensland,-27.339773,152.614414,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside of nursery,2023,6,3,Australia,AU,Queensland,-27.527032,153.091777,EPSG:4326 +HUMAN_OBSERVATION,laksharatnasuriya,1,,,2023,5,9,Australia,AU,South Australia,-35.028938,138.573822,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,4,12,Australia,AU,New South Wales,-29.870236,150.601369,EPSG:4326 +HUMAN_OBSERVATION,Cameron Rodda,1,,,2024,4,3,Australia,AU,Victoria,-38.057382,141.921794,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,1,19,Australia,AU,Queensland,-27.530347,153.104006,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near Aldi gates near red box,2023,10,29,Australia,AU,Queensland,-27.526263,153.093076,EPSG:4326 +HUMAN_OBSERVATION,jo_t,1,,,2024,4,18,Australia,AU,Victoria,-38.552616,143.97522,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Female, clean rear and eyes in a Eucalyptus tereticornis, Blue gum",2024,10,14,Australia,AU,Queensland,-27.530272,152.455122,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2022,5,24,Australia,AU,Victoria,-38.354151,146.387677,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,10,31,Australia,AU,Queensland,-26.166315,151.706573,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey - known as Jacko & Charlie,2024,3,30,Australia,AU,Queensland,-27.528452,153.103362,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,8,14,Australia,AU,South Australia,-34.903119,138.702499,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,MALE,2 males - video = https://www.facebook.com/groups/1791069551216596,2022,10,27,Australia,AU,New South Wales,-31.191682,150.302367,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Campo,2023,10,13,Australia,AU,Queensland,-27.528077,153.111416,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to road near Aldi gates gully,2023,12,29,Australia,AU,Queensland,-27.525995,153.092954,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,,2024,8,10,Australia,AU,Victoria,-38.183723,142.010213,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"Boonah Rail Trail, in Euc. tereticornis",2023,11,4,Australia,AU,Queensland,-27.986118,152.67747,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,14,Australia,AU,Queensland,-27.527511,153.110132,EPSG:4326 +HUMAN_OBSERVATION,qldkoalagirl,1,,,2024,10,21,Australia,AU,Queensland,-27.444395,151.957428,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and young Joey in Tallowwood,2020,10,19,Australia,AU,Queensland,-27.550934,153.058166,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,13,Australia,AU,Queensland,-27.526836,153.102968,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey in Tallowwood,2021,7,29,Australia,AU,Queensland,-27.551379,153.058905,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Very old Eucalyptus teriticornis. 1.5-2m d h,2022,5,4,Australia,AU,Queensland,-27.534003,153.061067,EPSG:4326 +HUMAN_OBSERVATION,Kometvest,1,,,2023,10,18,Australia,AU,Victoria,-38.667964,143.860733,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2020,5,24,Australia,AU,South Australia,-34.997629,138.750341,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi & joey,2023,12,8,Australia,AU,Queensland,-27.530734,153.104436,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank muma,2022,10,12,Australia,AU,Queensland,-27.545864,153.073411,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,7,11,Australia,AU,Queensland,-27.506259,153.082691,EPSG:4326 +HUMAN_OBSERVATION,April,1,,,2022,9,21,Australia,AU,New South Wales,-30.29535,153.126071,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Mum and joey keeping cool on grey gum.,2023,12,3,Australia,AU,Queensland,-27.284776,153.000519,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2024,6,15,Australia,AU,Queensland,-27.52833,153.092274,EPSG:4326 +HUMAN_OBSERVATION,jotrack2,1,,,2021,11,30,Australia,AU,Queensland,-27.823161,152.994186,EPSG:4326 +HUMAN_OBSERVATION,shanderson110,1,,,2021,11,20,Australia,AU,Victoria,-37.097564,145.384688,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,4,9,Australia,AU,New South Wales,-28.260126,153.402261,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,passing our townhouse up bulimba creek,2021,4,1,Australia,AU,Queensland,-27.566908,153.095967,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,'Crusty eyes' - not able to be rescued today,2024,2,28,Australia,AU,Queensland,-27.529753,153.105451,EPSG:4326 +HUMAN_OBSERVATION,mcmars,1,,"My eagle eyed partner spotted this koala in a native gum tree at the side of the dirt coast road which we were driving along, very slowly, on our way back from Boxing Bay.",2022,10,21,Australia,AU,South Australia,-35.595972,137.595543,EPSG:4326 +HUMAN_OBSERVATION,Alba Fulmo,1,,,2023,4,12,Australia,AU,Queensland,-27.515603,153.079117,EPSG:4326 +HUMAN_OBSERVATION,markinstall,1,,,2022,3,15,Australia,AU,Queensland,-28.213276,152.872747,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,Recent fire,2023,11,5,Australia,AU,Queensland,-27.722595,151.530455,EPSG:4326 +HUMAN_OBSERVATION,stevemcbride,1,,,2022,7,23,Australia,AU,New South Wales,-28.601786,153.035984,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2023,12,30,Australia,AU,South Australia,-35.26028,138.56021,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Unhealthy. To be rescued. Observed by community. Submitted by Wendy Taylor via msg.,2024,9,19,Australia,AU,Queensland,-26.13111,151.813065,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,Second photo with leg hanging down,2020,12,3,Australia,AU,Victoria,-38.131072,145.267139,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,,2022,6,15,Australia,AU,Queensland,-19.126572,146.868438,EPSG:4326 +HUMAN_OBSERVATION,pritchard3747,1,,,2023,4,20,Australia,AU,Victoria,-37.034825,145.501603,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Submitted by Cate Geary. Alive, healthy, adult, sex unknown.",2021,10,21,Australia,AU,Queensland,-26.103964,151.448752,EPSG:4326 +HUMAN_OBSERVATION,christian-k,1,,,2024,8,25,Australia,AU,Queensland,-28.303959,152.853424,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.923962,147.731338,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Female sitting on fence for hours. Was brought in for assessment cleared by vets and released successfully later that day.,2023,8,5,Australia,AU,Queensland,-27.53713,153.062103,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,10,3,Australia,AU,Victoria,-37.620158,143.893816,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,MALE,,2024,7,12,Australia,AU,Queensland,-27.456833,152.401375,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In sport n rec picnic area,2023,12,19,Australia,AU,Queensland,-27.525905,153.092039,EPSG:4326 +HUMAN_OBSERVATION,ahowse,1,,Koala seen on ground moving well ?on a mission”along side of road,2022,9,25,Australia,AU,Victoria,-37.564119,144.101143,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,4th of 4 seen today,2021,6,20,Australia,AU,Queensland,-27.552005,153.050648,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,Mother and baby in planted Tallowood.,2024,1,27,Australia,AU,Queensland,-27.569652,152.102695,EPSG:4326 +HUMAN_OBSERVATION,Natasha,1,,,2024,10,5,Australia,AU,Queensland,-28.194553,152.524017,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Angophora woodsiana with distended pouch,2021,6,3,Australia,AU,Queensland,-27.548216,153.05221,EPSG:4326 +HUMAN_OBSERVATION,stargazerben,1,,,2023,3,9,Australia,AU,South Australia,-34.959642,138.656527,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,13,Australia,AU,South Australia,-34.888776,138.734752,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,10,10,Australia,AU,Queensland,-27.508123,153.081298,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2024,1,14,Australia,AU,South Australia,-34.869105,138.656585,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,2,3,Australia,AU,Queensland,-27.545078,153.068125,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,,2020,9,5,Australia,AU,New South Wales,-29.624528,150.868999,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Male in Eucalyptus globulus,2021,10,19,Australia,AU,Victoria,-38.671158,146.16385,EPSG:4326 +HUMAN_OBSERVATION,biancacar,1,,,2024,4,26,Australia,AU,Victoria,-38.753597,143.29335,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Photo taken by Barb Lingergs Lockyer Uplands Catchment Inc.,2021,10,15,Australia,AU,Queensland,-27.645043,151.973062,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,18,Australia,AU,South Australia,-34.892671,138.721339,EPSG:4326 +HUMAN_OBSERVATION,Friends of Parks Queensland,1,,,2024,9,24,Australia,AU,Queensland,-26.277538,152.835693,EPSG:4326 +HUMAN_OBSERVATION,Karen Weaving,1,,"Wild, relaxing in a eucalyptus Tree, in Morialta Conservation Park near Norton Summit section, Yurrebilla Trail",2020,7,23,Australia,AU,South Australia,-34.909476,138.710407,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,,2023,6,17,Australia,AU,Queensland,-27.565422,153.134186,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,9,26,Australia,AU,Queensland,-27.5068,153.078726,EPSG:4326 +HUMAN_OBSERVATION,Peta Jansma-Reid,1,,"Koala with ear tag, slightly red eyes, ear might be damaged close to tag.",2024,9,7,Australia,AU,Queensland,-27.287914,152.997475,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2022,12,30,Australia,AU,Queensland,-27.599273,151.895057,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - Bozo,2024,10,5,Australia,AU,Queensland,-27.526925,153.108764,EPSG:4326 +HUMAN_OBSERVATION,anniesn,1,,,2021,11,15,Australia,AU,Queensland,-27.504505,153.069245,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Super high up in bushy thick river gum .. found from the scat around the base of the tree and looked up,2022,4,1,Australia,AU,New South Wales,-34.755897,146.535095,EPSG:4326 +HUMAN_OBSERVATION,mclandcare,1,,,2023,3,28,Australia,AU,Victoria,-37.76158,144.068681,EPSG:4326 +HUMAN_OBSERVATION,Radar,1,MALE,,2023,9,15,Australia,AU,Queensland,-27.656227,153.158674,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"vehicle strike, rescue",2021,11,10,Australia,AU,Victoria,-38.068643,144.03315,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,7,29,Australia,AU,South Australia,-34.890466,138.733291,EPSG:4326 +HUMAN_OBSERVATION,jaymeewicks,1,FEMALE,Female Koala with Joey,2022,11,23,Australia,AU,Queensland,-27.261001,151.713519,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,2,11,Australia,AU,Queensland,-27.548746,153.059424,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2024,2,11,Australia,AU,Queensland,-27.569017,152.102906,EPSG:4326 +HUMAN_OBSERVATION,julie,1,,,2023,3,14,Australia,AU,Queensland,-27.897685,153.368384,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,4,13,Australia,AU,Queensland,-27.54916,153.072702,EPSG:4326 +HUMAN_OBSERVATION,Rob Shepherd,1,MALE,,2020,3,3,Australia,AU,Victoria,-38.202791,141.77501,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,6,Australia,AU,Queensland,-27.530431,153.104444,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,This area was burnt in the 2019 bushfires. LCA3154.,2021,12,5,Australia,AU,Queensland,-27.831775,152.344529,EPSG:4326 +HUMAN_OBSERVATION,brooks70,1,MALE,,2023,12,12,Australia,AU,Queensland,-26.745014,152.920596,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,,2024,3,21,Australia,AU,South Australia,-35.095342,138.568958,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block,2023,9,9,Australia,AU,Queensland,-27.526446,153.091078,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,7,3,Australia,AU,Queensland,-27.525538,153.091929,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,8,Australia,AU,Queensland,-27.545112,153.072229,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,22,Australia,AU,Queensland,-27.530529,153.103448,EPSG:4326 +HUMAN_OBSERVATION,rordale,1,,,2021,11,16,Australia,AU,Queensland,-27.261908,152.063781,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,3,16,Australia,AU,Queensland,-27.546316,153.058405,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Scat - collection for research on genetic diversity amongst local koala populations,2023,4,28,Australia,AU,Victoria,-37.849117,144.286,EPSG:4326 +HUMAN_OBSERVATION,krob0661,1,,,2021,10,13,Australia,AU,Queensland,-27.288737,152.971309,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,29,Australia,AU,South Australia,-34.891817,138.72259,EPSG:4326 +HUMAN_OBSERVATION,joshua-wilson,1,,,2022,8,3,Australia,AU,Queensland,-27.034114,153.086808,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road- near double bus stop Male? Yellow tag left ear?,2023,10,15,Australia,AU,Queensland,-27.527195,153.090428,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Across the creek,2023,10,10,Australia,AU,Queensland,-27.527023,153.110401,EPSG:4326 +HUMAN_OBSERVATION,Brad,1,,,2020,9,27,Australia,AU,South Australia,-34.936362,138.72184,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2023,12,12,Australia,AU,Victoria,-38.952295,146.304017,EPSG:4326 +HUMAN_OBSERVATION,scorpio83,1,,,2020,9,20,Australia,AU,Queensland,-27.243756,152.569872,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2022,4,15,Australia,AU,South Australia,-34.874458,138.713339,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,FEMALE,Looked like a smaller female. She moved from ground onto short tree.,2024,1,21,Australia,AU,New South Wales,-34.07774,150.854341,EPSG:4326 +HUMAN_OBSERVATION,briancasatelli,1,,,2023,12,27,Australia,AU,Queensland,-27.911913,153.375406,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Clem Male koala in grey box,2022,2,23,Australia,AU,Victoria,-37.842258,144.281852,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2023,5,14,Australia,AU,Queensland,-27.257798,152.07677,EPSG:4326 +HUMAN_OBSERVATION,jcadermann,1,,Appears to be a second young koala along branch.,2022,2,11,Australia,AU,Queensland,-28.125314,152.945617,EPSG:4326 +HUMAN_OBSERVATION,South Australian Museum Discovery Centre,1,,Seen resting on a stump.,2020,11,19,Australia,AU,South Australia,-34.893372,138.735106,EPSG:4326 +HUMAN_OBSERVATION,jryan198,1,,,2022,12,27,Australia,AU,Queensland,-27.262487,152.047303,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,17,Australia,AU,South Australia,-34.891584,138.722604,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,10,2,Australia,AU,Queensland,-27.452792,152.6409,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,11,Australia,AU,Queensland,-27.529883,153.10471,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Webster. Forwarded by email.,2020,1,9,Australia,AU,Queensland,-26.506533,151.854125,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,,2024,4,18,Australia,AU,Queensland,-27.548758,153.051611,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2022,12,25,Australia,AU,Queensland,-27.600747,151.889159,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,18,Australia,AU,Queensland,-27.529644,153.10553,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2024,11,8,Australia,AU,South Australia,-35.132078,138.514136,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Joey - same tree as mum - different branch Maisie’s joey,2024,11,9,Australia,AU,Queensland,-27.527013,153.090346,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2023,7,31,Australia,AU,Queensland,-27.622184,151.9368,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On Eucalyptus microcrorys.,2021,4,9,Australia,AU,Queensland,-27.544172,153.056747,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,7,23,Australia,AU,Queensland,-27.528801,153.11116,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,5,20,Australia,AU,Queensland,-27.917318,153.375028,EPSG:4326 +HUMAN_OBSERVATION,michikomarty,1,,Thanks Vicki and neighbours,2021,11,28,Australia,AU,Queensland,-27.594649,151.734673,EPSG:4326 +HUMAN_OBSERVATION,pplans,1,,,2023,8,6,Australia,AU,Queensland,-27.917407,153.373203,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,23,Australia,AU,Queensland,-27.526422,153.090697,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,Thanks Tracey from Yarran Farming,2021,11,28,Australia,AU,Queensland,-27.715401,151.520442,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,I think female - looks like a red tag RIGHT ear,2023,5,29,Australia,AU,Queensland,-27.528938,153.10937,EPSG:4326 +HUMAN_OBSERVATION,killercd,1,,,2024,3,1,Australia,AU,Queensland,-27.609306,153.084285,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,12,Australia,AU,South Australia,-34.891963,138.7227,EPSG:4326 +HUMAN_OBSERVATION,case002,1,,,2022,11,12,Australia,AU,Queensland,-27.193142,151.865226,EPSG:4326 +HUMAN_OBSERVATION,David Tattersall,1,,,2020,8,7,Australia,AU,Victoria,-38.58811,146.040574,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2021,1,23,Australia,AU,Queensland,-27.54761,153.058479,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Female with Joey of unknown sex. Observed by Julie Keeffe. Submitted by email.,2022,9,28,Australia,AU,Queensland,-25.947737,151.946912,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2023,12,16,Australia,AU,Queensland,-27.527377,153.107263,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,One of 8 adult koalas spotted during this spotlight walk. 2 adults were observed with Joey's,2024,10,10,Australia,AU,Queensland,-27.506236,153.08625,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Rear entrance to nursery,2024,10,26,Australia,AU,Queensland,-27.527035,153.091948,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,4,12,Australia,AU,Victoria,-38.67128,146.163742,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,FEMALE,,2022,9,22,Australia,AU,Queensland,-27.525343,153.068361,EPSG:4326 +HUMAN_OBSERVATION,sophpid,1,,,2022,11,19,Australia,AU,Queensland,-27.713907,151.525547,EPSG:4326 +HUMAN_OBSERVATION,Glenda Walter,1,,"Seen yesterday in a tall Eucalypt in the park, just a few metres from my side fence. A mother and baby.",2022,11,24,Australia,AU,Queensland,-27.264912,152.057976,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,,2023,3,9,Australia,AU,New South Wales,-28.266486,153.450764,EPSG:4326 +HUMAN_OBSERVATION,ninjajuju,1,,Mum and joey on Forts Walk walking track,2021,6,28,Australia,AU,Queensland,-19.135861,146.842355,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,10,31,Australia,AU,Queensland,-27.703321,153.192545,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,1,18,Australia,AU,Queensland,-27.54523,153.068704,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,Tummaville Road,2021,11,29,Australia,AU,Queensland,-27.80776,151.576001,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,1,9,Australia,AU,Queensland,-27.709575,151.523012,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,,2020,9,16,Australia,AU,Victoria,-38.175466,145.132204,EPSG:4326 +HUMAN_OBSERVATION,Chi-Hsuan Shao,1,,,2020,1,22,Australia,AU,Victoria,-38.667657,143.86159,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Scat,2022,10,29,Australia,AU,Victoria,-37.603695,143.871709,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,1,27,Australia,AU,Queensland,-27.527196,153.091661,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3162,2023,5,18,Australia,AU,Queensland,-27.496763,152.249435,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,10,20,Australia,AU,Queensland,-27.691839,151.568023,EPSG:4326 +HUMAN_OBSERVATION,Sarah Grady,1,,,2023,3,30,Australia,AU,Queensland,-27.54869,152.860815,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,FEMALE,,2023,8,28,Australia,AU,New South Wales,-33.118283,151.235197,EPSG:4326 +HUMAN_OBSERVATION,blissinature,1,,,2024,3,27,Australia,AU,Victoria,-38.803422,143.49568,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In Bella’s tree,2024,8,17,Australia,AU,Queensland,-27.52693,153.091416,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2024,3,10,Australia,AU,Queensland,-27.527129,153.092982,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,10,7,Australia,AU,Queensland,-27.527873,153.093599,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,2,27,Australia,AU,Queensland,-27.535191,153.038582,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2022,3,12,Australia,AU,Queensland,-27.510404,153.085421,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear,2024,7,29,Australia,AU,Queensland,-27.529889,153.103787,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2021,10,23,Australia,AU,South Australia,-34.933097,138.698322,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,9,24,Australia,AU,Queensland,-27.397143,153.438747,EPSG:4326 +HUMAN_OBSERVATION,Pete Woodall,1,,"8427 second in our garden, 7 years apart",2020,6,1,Australia,AU,Queensland,-27.539771,153.033118,EPSG:4326 +HUMAN_OBSERVATION,danicalockett,1,,,2021,3,6,Australia,AU,Victoria,-35.815829,145.497195,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,large male observed by voluntary rescuer,2022,10,30,Australia,AU,Victoria,-37.653072,143.925668,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.012661,138.671331,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Male koala, which I know from the nose markings.",2020,11,21,Australia,AU,New South Wales,-28.25432,153.377107,EPSG:4326 +HUMAN_OBSERVATION,ritchie0801,1,,,2023,10,1,Australia,AU,Queensland,-27.92274,152.39267,EPSG:4326 +HUMAN_OBSERVATION,Michelle Khuu,1,,Good day for a nap,2022,6,11,Australia,AU,Victoria,-37.923603,147.731387,EPSG:4326 +HUMAN_OBSERVATION,missganoush,1,,,2020,10,31,Australia,AU,South Australia,-34.988505,138.874388,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,Female koala with small Joey in lap high in narrow leaved peppermint,2022,8,31,Australia,AU,Victoria,-37.833687,144.219118,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,4,6,Australia,AU,South Australia,-34.956986,138.694021,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,3,Australia,AU,South Australia,-34.889628,138.727439,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male,2023,11,10,Australia,AU,Queensland,-27.529332,153.105688,EPSG:4326 +HUMAN_OBSERVATION,magpies_friends,1,,,2023,12,5,Australia,AU,Queensland,-27.496583,153.401723,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,Same animal as https://inaturalist.ala.org.au/observations/163786458. LCA3150,2023,5,3,Australia,AU,Queensland,-27.496771,152.249514,EPSG:4326 +HUMAN_OBSERVATION,EcoPete,1,,Wombat carcase near Sheoak Rd. Possible roadkill,2024,6,1,Australia,AU,South Australia,-35.002263,138.662988,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Very hard to see - way up high,2023,1,30,Australia,AU,Queensland,-27.525991,153.090633,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,Female koala v high in large redgum,2023,11,26,Australia,AU,Victoria,-37.836923,144.28475,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe Cavendish Road - next to vacant block,2023,7,6,Australia,AU,Queensland,-27.527611,153.090976,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,11,1,Australia,AU,Queensland,-27.5292,153.112064,EPSG:4326 +HUMAN_OBSERVATION,Vireya Jacquard,1,,,2022,11,6,Australia,AU,Victoria,-37.688518,143.996806,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.92017,147.727005,EPSG:4326 +HUMAN_OBSERVATION,jasons04,1,,,2023,10,6,Australia,AU,South Australia,-35.09938,138.583281,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,MALE,,2024,4,16,Australia,AU,South Australia,-34.890129,138.733943,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Local mum and bub,2023,8,27,Australia,AU,Queensland,-27.284444,153.00078,EPSG:4326 +HUMAN_OBSERVATION,johnmphighes,1,,Female in appearance,2024,11,11,Australia,AU,Queensland,-27.643708,151.940737,EPSG:4326 +HUMAN_OBSERVATION,ttsquid,1,,,2023,12,14,Australia,AU,Victoria,-38.322317,143.341228,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey,2024,4,24,Australia,AU,Queensland,-27.530036,153.10347,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,High in tree eating Tristania and Wisteria woodland near front Male - scent gland visible,2023,8,15,Australia,AU,Queensland,-27.524214,153.093602,EPSG:4326 +HUMAN_OBSERVATION,rachinspace,1,,,2024,2,14,Australia,AU,New South Wales,-33.689112,149.330733,EPSG:4326 +HUMAN_OBSERVATION,emwinter,1,,,2024,4,28,Australia,AU,South Australia,-34.889307,138.832124,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - female orange tag RIGHT ear & a second koala in the same tree,2023,7,25,Australia,AU,Queensland,-27.528921,153.103401,EPSG:4326 +HUMAN_OBSERVATION,martinbutterfield,1,,It was sitting in a Melaleuca not a euc. Seemed to be watching the fishing boats going up and down the Narrows,2022,12,10,Australia,AU,Victoria,-37.526319,149.73732,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,3,2,Australia,AU,Queensland,-27.550804,153.054742,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,9,9,Australia,AU,South Australia,-35.011955,138.657846,EPSG:4326 +HUMAN_OBSERVATION,jennii07,1,,,2021,7,12,Australia,AU,South Australia,-35.647675,137.639878,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,27,Australia,AU,South Australia,-34.889826,138.729243,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,8,24,Australia,AU,Queensland,-27.527111,153.091418,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland Male yellow tag left ear,2024,6,16,Australia,AU,Queensland,-27.527496,153.092476,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2020,7,11,Australia,AU,South Australia,-34.903278,138.613816,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Sawpit Gully,2021,4,28,Australia,AU,Victoria,-37.584539,143.890604,EPSG:4326 +HUMAN_OBSERVATION,Andrew Scanlan,1,,"Koala in mowed council easement with mature trees. No ear tags, young male",2021,12,4,Australia,AU,Queensland,-27.90447,153.324167,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,,2024,9,3,Australia,AU,New South Wales,-29.857121,150.585771,EPSG:4326 +HUMAN_OBSERVATION,graceabraham,1,,,2022,11,8,Australia,AU,Queensland,-27.496128,153.399338,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,6,Australia,AU,South Australia,-34.827229,138.73686,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe cavendish road - right at front next to red Welcome sign,2023,6,10,Australia,AU,Queensland,-27.527586,153.090816,EPSG:4326 +HUMAN_OBSERVATION,marinalouter,1,,,2020,12,15,Australia,AU,South Australia,-35.01953,138.650422,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2023,10,30,Australia,AU,New South Wales,-34.745395,146.535538,EPSG:4326 +HUMAN_OBSERVATION,colbs24,1,,,2022,1,5,Australia,AU,Queensland,-27.623044,153.139232,EPSG:4326 +HUMAN_OBSERVATION,ronavery,1,,,2024,7,6,Australia,AU,South Australia,-35.69921,137.262462,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2024,3,21,Australia,AU,Queensland,-27.557072,153.065108,EPSG:4326 +HUMAN_OBSERVATION,W. Hodgson,1,MALE,,2023,9,2,Australia,AU,Queensland,-27.26616,152.958816,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,16,Australia,AU,Queensland,-27.528264,153.092387,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2024,3,23,Australia,AU,Queensland,-27.555612,153.060641,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,7,Australia,AU,Queensland,-27.414463,152.003281,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,9,21,Australia,AU,Queensland,-27.339457,152.61325,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,10,23,Australia,AU,Queensland,-27.527254,153.091507,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,29,Australia,AU,Queensland,-27.529418,153.10934,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,9,21,Australia,AU,Queensland,-27.527454,153.090906,EPSG:4326 +HUMAN_OBSERVATION,Paula Peeters,1,,,2022,8,22,Australia,AU,Queensland,-28.173391,153.190233,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Cooby Dam - Loveday Cove. Two koalas seen and photographed by Kim Shoesmith for Toowoomba Koala & Wildlife Rescue.,2022,11,5,Australia,AU,Queensland,-27.390965,151.943705,EPSG:4326 +HUMAN_OBSERVATION,miriamrose123,1,,,2023,9,26,Australia,AU,Victoria,-38.755128,143.667585,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,8,19,Australia,AU,Queensland,-27.392103,151.774812,EPSG:4326 +HUMAN_OBSERVATION,Ken Waterfall,1,,,2023,12,27,Australia,AU,Victoria,-38.246999,143.157648,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear next to seton college fence,2024,2,11,Australia,AU,Queensland,-27.528522,153.092455,EPSG:4326 +HUMAN_OBSERVATION,Ash,1,,,2023,10,30,Australia,AU,Queensland,-27.701275,153.190179,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,10,20,Australia,AU,Queensland,-27.719775,151.521133,EPSG:4326 +HUMAN_OBSERVATION,ametcalf,1,,"Sienna (Right ear tag red: 6263 or 8263) sighted in a gum tree at the Redcliffe PCYC soccer fields, she was being harassed by a male magpie as she was near their nest.",2024,10,12,Australia,AU,Queensland,-27.220534,153.090126,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,23,Australia,AU,Queensland,-27.527175,153.091641,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,3,24,Australia,AU,New South Wales,-29.8624,150.57722,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Skull found by owners, appears to have fallen with a dead branch and that has killed the young Koala 15cm long x 8.5cm deep x 6.5cm wide",2023,6,8,Australia,AU,Queensland,-27.742261,152.391076,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" male with notch in right ear clear. In large E. melliodora. Also another koala seen, but not photographed, moving in a large E. caliginosa on 22 Baker Road.",2020,10,3,Australia,AU,New South Wales,-30.520347,151.520217,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.924247,147.726745,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,4,Australia,AU,Queensland,-27.528248,153.110512,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,12,13,Australia,AU,Victoria,-38.671197,146.163925,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,1,Australia,AU,South Australia,-34.890007,138.72968,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,7,5,Australia,AU,South Australia,-34.865118,138.657088,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On Eucalyptus major/propinqua.,2021,4,9,Australia,AU,Queensland,-27.547217,153.05865,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.921937,147.72722,EPSG:4326 +HUMAN_OBSERVATION,Nathan Cook,1,,,2023,1,3,Australia,AU,Queensland,-19.120763,146.877392,EPSG:4326 +HUMAN_OBSERVATION,larivera,1,,,2022,11,18,Australia,AU,Victoria,-38.320294,142.364328,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near e block
Jaye Mallet?1075,2023,10,31,Australia,AU,Queensland,-27.526311,153.090604,EPSG:4326 +HUMAN_OBSERVATION,David Flack,1,FEMALE,,2022,9,7,Australia,AU,Queensland,-28.339709,152.373271,EPSG:4326 +HUMAN_OBSERVATION,Alba Fulmo,1,,,2023,1,17,Australia,AU,Queensland,-27.51039,153.085905,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree next to tennis court Possibly Cindy Crawford,2024,3,31,Australia,AU,Queensland,-27.525392,153.092819,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,Large male by the swimming pool complex,2023,10,13,Australia,AU,Queensland,-27.53281,153.094538,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male, walking across the oval, then heading off into the bush",2023,10,3,Australia,AU,Queensland,-27.527419,153.102843,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - dirty bum - trying to arrange rescue,2024,2,7,Australia,AU,Queensland,-27.528002,153.111378,EPSG:4326 +HUMAN_OBSERVATION,rachelduckherd,1,,,2023,9,24,Australia,AU,Queensland,-27.508042,153.081858,EPSG:4326 +HUMAN_OBSERVATION,Paulaed,1,,,2023,1,22,Australia,AU,South Australia,-35.006602,138.654347,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,2,12,Australia,AU,Queensland,-27.597401,151.889206,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,9,21,Australia,AU,Queensland,-27.437973,152.63176,EPSG:4326 +HUMAN_OBSERVATION,ss66,1,,Female Koala with joey nearby. Video taken also.,2024,11,5,Australia,AU,New South Wales,-28.872411,153.421618,EPSG:4326 +HUMAN_OBSERVATION,allisonskalnik,1,,,2024,11,5,Australia,AU,Queensland,-27.496633,153.40013,EPSG:4326 +HUMAN_OBSERVATION,Jon Marnock,1,,Baby Koala hangin out with Mum snoozin above :),2021,1,24,Australia,AU,Queensland,-27.081683,152.377092,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2024,4,13,Australia,AU,Queensland,-27.528248,153.093342,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,12,23,Australia,AU,Queensland,-27.506393,153.078522,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area,2023,10,7,Australia,AU,Queensland,-27.528161,153.092913,EPSG:4326 +HUMAN_OBSERVATION,livethebug,1,,,2024,11,8,Australia,AU,Victoria,-37.19048,143.290947,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank muma,2022,9,29,Australia,AU,Queensland,-27.545671,153.073433,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,FEMALE,Mum and joey feeding.,2022,11,12,Australia,AU,Queensland,-27.401021,153.438316,EPSG:4326 +HUMAN_OBSERVATION,DillAnt,1,,,2023,9,30,Australia,AU,Victoria,-38.318677,142.363542,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,18,Australia,AU,Queensland,-27.527112,153.092781,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,10,7,Australia,AU,Queensland,-27.529206,153.103024,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2024,8,20,Australia,AU,Victoria,-38.356988,146.387408,EPSG:4326 +HUMAN_OBSERVATION,brasskitten,1,,,2022,8,20,Australia,AU,South Australia,-35.017497,138.65763,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,27,Australia,AU,Queensland,-27.546333,153.073253,EPSG:4326 +HUMAN_OBSERVATION,Stefan Fischer,1,,,2024,2,19,Australia,AU,Victoria,-37.232683,148.259828,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,9,1,Australia,AU,Queensland,-27.510708,153.087231,EPSG:4326 +HUMAN_OBSERVATION,quollsskinks,1,,Crossed the road.,2022,3,6,Australia,AU,Victoria,-38.090515,141.753931,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,,2023,11,25,Australia,AU,South Australia,-35.144981,138.580984,EPSG:4326 +HUMAN_OBSERVATION,carolynavaisabel,1,,,2022,10,29,Australia,AU,South Australia,-35.006358,138.637074,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum - olive green tag RIGHT ear - & very active joey,2023,10,4,Australia,AU,Queensland,-27.529732,153.111412,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,25,Australia,AU,Queensland,-27.529353,153.103582,EPSG:4326 +HUMAN_OBSERVATION,maxicole,1,,,2024,10,10,Australia,AU,Queensland,-27.525228,153.034542,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,6,6,Australia,AU,Queensland,-27.546087,153.071608,EPSG:4326 +HUMAN_OBSERVATION,ianianianh2001,1,,,2024,3,31,Australia,AU,New South Wales,-31.455321,152.887791,EPSG:4326 +HUMAN_OBSERVATION,Graham Armstrong,1,,,2024,9,30,Australia,AU,South Australia,-34.932817,138.725094,EPSG:4326 +HUMAN_OBSERVATION,fobhm,1,,,2020,10,28,Australia,AU,South Australia,-34.859099,138.710404,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,24,Australia,AU,South Australia,-34.89242,138.720366,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,At entrance of lower carpark on cavendish road Yellow tag right ear?,2023,11,5,Australia,AU,Queensland,-27.52544,153.090354,EPSG:4326 +HUMAN_OBSERVATION,nraye,1,,Seen sleeping in a tree at Coolart Wetlands,2020,5,29,Australia,AU,Victoria,-38.388959,145.136471,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,,2023,9,19,Australia,AU,Queensland,-27.91718,153.379657,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult female with joey. Healthy. Observed by Cindy Ireland. Submitted by Denise Shaw via email.,2023,7,8,Australia,AU,Queensland,-26.136584,151.791652,EPSG:4326 +HUMAN_OBSERVATION,Tim Oestmann,1,,,2023,2,12,Australia,AU,South Australia,-34.881538,138.725191,EPSG:4326 +HUMAN_OBSERVATION,okaywhatonearthisthatthing,1,,,2023,1,28,Australia,AU,Queensland,-27.400168,153.437901,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,3,Australia,AU,Queensland,-27.529907,153.10524,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Cheese tree and MRV,2020,12,1,Australia,AU,Queensland,-27.545748,153.058361,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,19,Australia,AU,South Australia,-34.8856,138.730446,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,"Horan Road, roadside Eucalyptus tereticornis. Scat to be collected.",2024,5,22,Australia,AU,Queensland,-27.918109,152.587746,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland,2024,7,7,Australia,AU,Queensland,-27.527706,153.092528,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,"In mum’s trees Not Maisie, no tag, male?",2023,10,25,Australia,AU,Queensland,-27.526459,153.090919,EPSG:4326 +HUMAN_OBSERVATION,tomi_gunn,1,,,2020,11,5,Australia,AU,Queensland,-27.515025,153.079042,EPSG:4326 +HUMAN_OBSERVATION,bilyanacottages,1,,,2023,10,18,Australia,AU,Queensland,-28.14367,152.642531,EPSG:4326 +HUMAN_OBSERVATION,Kelana Arraiza,1,,,2023,2,16,Australia,AU,Queensland,-27.956848,153.37608,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,30,Australia,AU,South Australia,-34.8924,138.721831,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,5,2,Australia,AU,Queensland,-27.52692,153.09105,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,8,15,Australia,AU,Queensland,-27.527283,153.091195,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,16,Australia,AU,Queensland,-27.525846,153.090749,EPSG:4326 +HUMAN_OBSERVATION,brachy23,1,,,2023,8,29,Australia,AU,Queensland,-27.413135,151.958775,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2020,5,31,Australia,AU,South Australia,-34.989361,138.6367,EPSG:4326 +HUMAN_OBSERVATION,jotrack2,1,,Koala (mum and Joey) in grey box (E.moluccana),2023,9,25,Australia,AU,Queensland,-27.82382,152.993867,EPSG:4326 +HUMAN_OBSERVATION,lrathbone,1,,,2022,9,22,Australia,AU,Victoria,-37.921139,147.725722,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2022,12,6,Australia,AU,New South Wales,-34.101467,150.820165,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery Audrey and Matteo,2024,10,22,Australia,AU,Queensland,-27.527117,153.092071,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"2 koalas in 1 tree - one is male, yellow tag LEFT ear",2024,7,16,Australia,AU,Queensland,-27.530245,153.104095,EPSG:4326 +HUMAN_OBSERVATION,Brad,1,,,2021,5,2,Australia,AU,South Australia,-35.013319,138.674434,EPSG:4326 +HUMAN_OBSERVATION,firepac,1,,,2024,5,4,Australia,AU,Queensland,-19.12457,146.864461,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,9,9,Australia,AU,Queensland,-27.414605,152.00435,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Hiding in MRV,2020,12,1,Australia,AU,Queensland,-27.548121,153.058446,EPSG:4326 +HUMAN_OBSERVATION,Larissa Braz Sousa,1,,,2020,4,26,Australia,AU,South Australia,-34.89787,138.696033,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,E block in mum’s trees Mother and joey,2024,11,17,Australia,AU,Queensland,-27.526492,153.090971,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,5,6,Australia,AU,Queensland,-27.527603,153.103304,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2022,11,10,Australia,AU,Queensland,-27.325453,151.935487,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi & joey,2023,12,1,Australia,AU,Queensland,-27.529464,153.102606,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2022,10,8,Australia,AU,South Australia,-35.00438,138.659132,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Eucalytpus microcorys.,2021,2,20,Australia,AU,Queensland,-27.54929,153.059472,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,FEMALE,"""Fluffy Eared Mum"" today in a E. blakelyii. Previously last seen in April 2020 when she had a, almost independent, young koala.",2022,11,25,Australia,AU,New South Wales,-30.520513,151.519445,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,4,5,Australia,AU,Queensland,-27.544048,153.069479,EPSG:4326 +HUMAN_OBSERVATION,Isaac Clarey,1,,,2020,9,19,Australia,AU,Victoria,-38.535378,143.729413,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,18,Australia,AU,Queensland,-27.527071,153.090782,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Adult male,2023,9,19,Australia,AU,Queensland,-27.918578,153.381796,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,24,Australia,AU,South Australia,-34.873063,138.733111,EPSG:4326 +HUMAN_OBSERVATION,sapeters61,1,,,2024,11,6,Australia,AU,Queensland,-27.577639,151.987991,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,4,5,Australia,AU,South Australia,-35.016054,138.67259,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,10,6,Australia,AU,Victoria,-37.653524,143.925212,EPSG:4326 +HUMAN_OBSERVATION,Oscar Dove,1,,,2022,9,6,Australia,AU,New South Wales,-31.461336,152.882065,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,Male and female,2024,9,21,Australia,AU,New South Wales,-34.772026,146.595376,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2022,7,2,Australia,AU,Victoria,-38.321162,142.630491,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear = possibly the koala known as Buster,2024,4,29,Australia,AU,Queensland,-27.530012,153.105174,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,10,11,Australia,AU,Queensland,-27.527524,153.110715,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,"Image captured whilst on a spotlighting circuit, varying between 1.5 km to 3 km depending on track conditions, through a 20 ha block of predominantly Sedgy Riparian Woodland (EVC 198) in the Wombat State Forest, Lyonville.",2020,4,10,Australia,AU,Victoria,-37.393305,144.262877,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,11,Australia,AU,Queensland,-27.525119,153.092112,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy looking, decent size, spotted a hundred metres away from another smaller one",2023,9,14,Australia,AU,Queensland,-27.54997,153.033967,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,8,23,Australia,AU,Queensland,-27.613522,151.556488,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2023,10,28,Australia,AU,Queensland,-27.529469,153.102516,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,Mum and baby,2021,10,10,Australia,AU,Queensland,-27.508171,153.081672,EPSG:4326 +HUMAN_OBSERVATION,jackfegan,1,,,2022,1,19,Australia,AU,New South Wales,-30.897186,153.075091,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,"This is the smallest backrider I have ever seen, so it is likely that it has only recently come out of the pouch for short periods. This would make it around 6 months old.",2023,6,18,Australia,AU,Queensland,-27.496763,152.249435,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Went back 1 hour later and had moved a few trees over,2023,4,1,Australia,AU,Queensland,-27.525711,153.092614,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2024,7,29,Australia,AU,Queensland,-27.28068,152.597595,EPSG:4326 +HUMAN_OBSERVATION,Anita Reilly,1,,Spotted in a gum tree from our balcony. Hard to get a good close-up shot.,2023,5,2,Australia,AU,Queensland,-27.890857,153.262767,EPSG:4326 +HUMAN_OBSERVATION,mindfulkoala,1,,,2022,4,16,Australia,AU,South Australia,-34.730324,138.912175,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,7,30,Australia,AU,Queensland,-27.583787,153.151142,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2023,1,29,Australia,AU,Queensland,-27.550945,153.05779,EPSG:4326 +HUMAN_OBSERVATION,Jim Della,1,,,2022,8,17,Australia,AU,New South Wales,-32.765455,152.117693,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,11,12,Australia,AU,Queensland,-27.545105,153.073311,EPSG:4326 +HUMAN_OBSERVATION,Leah Burns,1,,,2023,9,15,Australia,AU,Queensland,-27.548607,153.074881,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2024,7,1,Australia,AU,Queensland,-27.527869,153.092507,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"Seen, but not good photo",2021,12,1,Australia,AU,Victoria,-37.602342,143.874222,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2022,11,17,Australia,AU,Queensland,-27.550942,153.057545,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Amanda Francis. Submitted via email.,2023,8,3,Australia,AU,Queensland,-26.174661,151.937758,EPSG:4326 +HUMAN_OBSERVATION,jenjell,1,,,2023,11,28,Australia,AU,Queensland,-27.407762,151.931275,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of Tristania & Wisteria Woodland Cindy and joey Joey on seperate branch,2023,10,29,Australia,AU,Queensland,-27.52441,153.093557,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,9,14,Australia,AU,Queensland,-27.526778,153.090318,EPSG:4326 +HUMAN_OBSERVATION,Victoria,1,,,2023,5,31,Australia,AU,South Australia,-35.022502,138.65636,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In unknown Eucalyptus,2020,2,4,Australia,AU,Queensland,-27.548401,153.058974,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,,2024,3,16,Australia,AU,Queensland,-27.529657,153.10516,EPSG:4326 +HUMAN_OBSERVATION,peta86,1,,,2023,9,13,Australia,AU,Queensland,-27.429375,153.537522,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,19,Australia,AU,Queensland,-27.525789,153.090779,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,9,14,Australia,AU,Queensland,-27.550249,153.059974,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,8,23,Australia,AU,South Australia,-34.893141,138.62631,EPSG:4326 +HUMAN_OBSERVATION,Friends of Parks Queensland,1,,,2023,9,2,Australia,AU,Queensland,-26.256118,152.826697,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,17,Australia,AU,South Australia,-34.893195,138.71553,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,11,8,Australia,AU,Queensland,-27.798703,151.568313,EPSG:4326 +HUMAN_OBSERVATION,J. Addesi,1,,,2024,3,23,Australia,AU,South Australia,-34.90339,138.700161,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,7,6,Australia,AU,Victoria,-37.656657,143.900151,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,12,16,Australia,AU,Victoria,-38.670928,146.163667,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,11,2,Australia,AU,Queensland,-27.567313,151.716338,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,Female with pouch young. The bulge is visible in front of the RH back leg and between the front legs. LCA3149,2023,5,2,Australia,AU,Queensland,-27.496771,152.249514,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female. With joey. Healthy. Observed by Marisa Young. Submitted via msg.,2024,11,2,Australia,AU,Queensland,-26.705455,151.079358,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,22,Australia,AU,Queensland,-27.529719,153.110267,EPSG:4326 +HUMAN_OBSERVATION,Jakob De Zwart,1,,edged only backyard and was heading in a eastern direction.,2020,3,15,Australia,AU,New South Wales,-28.662362,153.609972,EPSG:4326 +HUMAN_OBSERVATION,kenny1243,1,,Found in during meta gum tree,2024,7,24,Australia,AU,Victoria,-37.427823,144.562952,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland Jacob Jnr,2024,9,8,Australia,AU,Queensland,-27.525059,153.092883,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside cleaners donga,2023,11,19,Australia,AU,Queensland,-27.527013,153.091635,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,6,25,Australia,AU,Queensland,-27.527199,153.09167,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,20,Australia,AU,Queensland,-27.530151,153.103656,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,6,Australia,AU,Queensland,-27.546118,153.074085,EPSG:4326 +HUMAN_OBSERVATION,summerfell,1,,"Two Koalas, presumably a female (white chest, has been in the same tree for 5 weeks) and a male who arrived last night.",2024,10,7,Australia,AU,Queensland,-27.817442,153.076425,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A5 in RIGHT ear - Cindy,2023,4,19,Australia,AU,Queensland,-27.526664,153.109249,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,"Yellow left ear tag, couldn't see/read number. Reportedly spent day in a Brachychiton acerifolius, photos were taken as he was crossing across to a Grey gum and quickly moved to the highest branches.",2024,7,13,Australia,AU,Queensland,-27.510502,153.069741,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,2 koalas in one tree,2020,10,26,Australia,AU,Victoria,-37.613657,143.883627,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,11,1,Australia,AU,Queensland,-27.546361,153.074808,EPSG:4326 +HUMAN_OBSERVATION,jimboaussie,1,,,2023,10,20,Australia,AU,Queensland,-27.411426,151.938911,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,MALE,Same koala as record from yesterday. Male.,2024,10,10,Australia,AU,Queensland,-27.996854,152.684072,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,24,Australia,AU,Queensland,-27.412605,152.004928,EPSG:4326 +HUMAN_OBSERVATION,kdoust,1,,Mum and Bub,2024,6,18,Australia,AU,Queensland,-27.340392,152.615331,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,,Male koala high in manna gum. Well known in this area and 50m from his favourite tree,2024,1,3,Australia,AU,Victoria,-37.810927,144.248659,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,5,31,Australia,AU,Queensland,-27.544227,153.055514,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area,2023,5,20,Australia,AU,Queensland,-27.527735,153.09225,EPSG:4326 +HUMAN_OBSERVATION,kdoust,1,,Healthy adult female,2024,6,18,Australia,AU,Queensland,-27.338364,152.611805,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2024,8,12,Australia,AU,Queensland,-28.917259,151.585515,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,5,30,Australia,AU,Queensland,-27.318847,152.617217,EPSG:4326 +HUMAN_OBSERVATION,Mia Hosken,1,,,2023,3,31,Australia,AU,South Australia,-34.903253,138.705658,EPSG:4326 +HUMAN_OBSERVATION,dingo-dave,1,,Baby and it's Mum in a tree.,2023,9,10,Australia,AU,Queensland,-27.510384,153.085797,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,17,Australia,AU,South Australia,-34.89145,138.717848,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,,Recent Koala scratches on River Red Gum Eucalyptus camaldulensis. Identified by size and depth.,2024,11,4,Australia,AU,Victoria,-37.845322,144.354161,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,7,30,Australia,AU,Queensland,-27.545502,153.058568,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.019345,138.656587,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2023,2,15,Australia,AU,Queensland,-27.33488,151.928863,EPSG:4326 +HUMAN_OBSERVATION,andreaac,1,,,2023,7,9,Australia,AU,Victoria,-38.318753,142.363663,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2021,10,23,Australia,AU,South Australia,-34.936472,138.698986,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi with a new joey,2024,10,5,Australia,AU,Queensland,-27.529504,153.10371,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" male in tallest stringybark, late afternoon",2021,5,11,Australia,AU,New South Wales,-30.520765,151.520479,EPSG:4326 +HUMAN_OBSERVATION,perzikvrucht,1,,,2022,6,16,Australia,AU,Victoria,-38.832769,143.512475,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - pale blue tag RIGHT ear - ? Edith,2023,8,19,Australia,AU,Queensland,-27.528474,153.113644,EPSG:4326 +HUMAN_OBSERVATION,tinametcalf,1,,Koala running on ground being harrased by crows and magpies. Went up tree. YELLOW TAG LEFT EAR,2024,10,15,Australia,AU,Queensland,-27.220697,153.089139,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear,2023,10,10,Australia,AU,Queensland,-27.519586,153.102387,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,Snoozy little joey koala sleeping in the bough of a Eucalyptus microcorys.,2023,11,17,Australia,AU,Queensland,-27.413915,152.003087,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unhealthy. Unknown sex. Koala Rescue Qld contacted. Observed by Wendy Taylor. Submitted via msg,2024,5,21,Australia,AU,Queensland,-26.309719,151.782954,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,3,24,Australia,AU,Queensland,-27.633533,153.090535,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Thought she looked to have a suspicious bulge - confirmed by a friend who saw her later, she has a joey",2024,10,7,Australia,AU,Queensland,-27.524331,153.111572,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male koala SVCW mid in red box,2022,2,15,Australia,AU,Victoria,-37.843945,144.271943,EPSG:4326 +HUMAN_OBSERVATION,Graham Armstrong,1,,,2024,9,22,Australia,AU,South Australia,-34.937517,138.706313,EPSG:4326 +HUMAN_OBSERVATION,nicholascroft,1,,Koala Joey with mother. Long term residents within Cavendish Rd High School,2021,10,23,Australia,AU,Queensland,-27.519145,153.073583,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum with Joey inside Cemetary fence in MRV coveredTallowwood,2020,11,20,Australia,AU,Queensland,-27.551888,153.060288,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,8,16,Australia,AU,Queensland,-27.545679,153.072232,EPSG:4326 +HUMAN_OBSERVATION,Rosanna Dedecius,1,,,2024,10,23,Australia,AU,Victoria,-38.830852,143.519212,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,1,3,Australia,AU,Queensland,-27.52977,153.104224,EPSG:4326 +HUMAN_OBSERVATION,wyliecath,1,,,2023,11,4,Australia,AU,Queensland,-27.50515,153.075745,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2023,7,27,Australia,AU,Victoria,-37.034861,145.501405,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2020,5,26,Australia,AU,Queensland,-27.550162,153.063319,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,Young koala. First time seen on property.,2022,12,16,Australia,AU,Queensland,-27.413598,152.003263,EPSG:4326 +HUMAN_OBSERVATION,Graham Armstrong,1,,Road Kill,2023,5,8,Australia,AU,Queensland,-22.778533,149.79825,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,11,17,Australia,AU,Queensland,-27.525254,153.092404,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,,2023,11,4,Australia,AU,Queensland,-27.413917,152.003478,EPSG:4326 +HUMAN_OBSERVATION,teripschool,1,,,2024,3,5,Australia,AU,Victoria,-37.015219,145.553938,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,,,2022,9,27,Australia,AU,Queensland,-27.498852,153.400347,EPSG:4326 +HUMAN_OBSERVATION,jcadermann,1,,,2022,8,18,Australia,AU,Queensland,-28.125262,152.945341,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2020,9,28,Australia,AU,South Australia,-34.936431,138.705586,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,in top of Acacia. Seem A koala in these Acacias previously,2020,4,5,Australia,AU,Queensland,-27.512353,153.080406,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,Third koala within 800m,2024,11,19,Australia,AU,Queensland,-27.64875,151.709167,EPSG:4326 +HUMAN_OBSERVATION,codyhochen,1,,,2021,7,25,Australia,AU,Queensland,-27.456337,152.904896,EPSG:4326 +HUMAN_OBSERVATION,Jarah Marginata,1,,,2023,2,17,Australia,AU,Victoria,-38.235242,142.072189,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknow sex. Healthy. Observed by Amanda Francis. Submitted via email,2023,7,12,Australia,AU,Queensland,-26.175366,151.937525,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,new baby on the block,2022,11,17,Australia,AU,Queensland,-27.545712,153.073835,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,1,6,Australia,AU,Queensland,-27.527154,153.090658,EPSG:4326 +HUMAN_OBSERVATION,Mel,1,,,2020,9,28,Australia,AU,South Australia,-34.963136,138.653357,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,6,19,Australia,AU,New South Wales,-28.258193,153.401014,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,10,Australia,AU,Queensland,-27.52673,153.102762,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,16,Australia,AU,Queensland,-27.527168,153.090941,EPSG:4326 +HUMAN_OBSERVATION,danicalockett,1,,I found this skull but I’m really not sure what it belongs to.,2021,3,6,Australia,AU,Victoria,-35.828945,145.456038,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2021,4,14,Australia,AU,South Australia,-34.991033,138.631239,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2023,10,15,Australia,AU,Queensland,-27.394409,153.439356,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area 2 male koalas same tree,2023,12,31,Australia,AU,Queensland,-27.525794,153.092686,EPSG:4326 +HUMAN_OBSERVATION,nicomollon,1,,,2024,10,23,Australia,AU,Queensland,-19.142339,146.865722,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Front of TAFE Cavendish Road,2024,7,28,Australia,AU,Queensland,-27.526742,153.090216,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2023,11,19,Australia,AU,Queensland,-27.528167,153.092372,EPSG:4326 +HUMAN_OBSERVATION,michikomarty,1,,Thanks Vicki & neighbours,2021,11,28,Australia,AU,Queensland,-27.594316,151.734689,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,2,26,Australia,AU,Queensland,-27.551936,153.057918,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear - known as Buster,2024,6,15,Australia,AU,Queensland,-27.529347,153.106734,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Young koala in Tallowwood,2020,2,28,Australia,AU,Queensland,-27.552045,153.056305,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,16,Australia,AU,Queensland,-27.789645,151.560484,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,2,10,Australia,AU,Queensland,-27.510284,153.085423,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2022,1,22,Australia,AU,Queensland,-27.27475,152.928122,EPSG:4326 +HUMAN_OBSERVATION,Andrew Dilley,1,,,2024,11,18,Australia,AU,Victoria,-37.330909,144.594864,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,10,27,Australia,AU,South Australia,-34.864996,138.657613,EPSG:4326 +HUMAN_OBSERVATION,jeremyhegge,1,,,2024,8,4,Australia,AU,Queensland,-27.903888,153.380781,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,1,Australia,AU,Queensland,-27.525835,153.090824,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,9,Australia,AU,Queensland,-27.527731,153.102888,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear - Bozo,2023,6,28,Australia,AU,Queensland,-27.527224,153.107605,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2024,7,7,Australia,AU,Victoria,-37.641822,143.901148,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to Woodland,2024,5,2,Australia,AU,Queensland,-27.527295,153.092288,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" Male in Stringy Bark.",2021,4,11,Australia,AU,New South Wales,-30.520949,151.517939,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2021,9,20,Australia,AU,Queensland,-27.516969,153.083343,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe cavendish road,2023,5,19,Australia,AU,Queensland,-27.527313,153.091139,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland Mother and joey,2024,10,26,Australia,AU,Queensland,-27.527295,153.092374,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Tara Irvine. Submitted by Wendy Taylor via msg.,2024,11,14,Australia,AU,Queensland,-26.176948,151.692123,EPSG:4326 +HUMAN_OBSERVATION,Colin and Wendy Cook,1,,"Dense regrowth post 2006 bushfire. Sitting on fork in small tree, hanging on to dead tree. Small koala. Looks healthy.",2021,6,25,Australia,AU,Victoria,-37.840237,144.182072,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2024,4,22,Australia,AU,Queensland,-27.508314,153.080561,EPSG:4326 +HUMAN_OBSERVATION,cooleigh,1,,,2023,11,20,Australia,AU,Queensland,-27.632733,151.526367,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,With baby?,2021,9,26,Australia,AU,Queensland,-27.508148,153.081361,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,5,4,Australia,AU,Queensland,-27.332808,152.611328,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear,2023,5,29,Australia,AU,Queensland,-27.529953,153.103528,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Spotted by Darryl,2024,6,7,Australia,AU,Queensland,-27.621192,152.901914,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2024,9,21,Australia,AU,New South Wales,-34.773142,146.595462,EPSG:4326 +HUMAN_OBSERVATION,Isaac Clarey,1,,,2020,10,6,Australia,AU,Victoria,-38.560083,143.934322,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Next to e block,2024,6,23,Australia,AU,Queensland,-27.52685,153.090936,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Pink Bloodwood,2020,7,8,Australia,AU,Queensland,-27.541804,153.059481,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,3,31,Australia,AU,Queensland,-27.528192,153.092669,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Mother and baby (possibly "Fluffy Eared Mum") interacting with unidentified male in previous observation. Not possible to get a better photo as mum kept moving to opposite side of stringy bark to me.,2020,10,16,Australia,AU,New South Wales,-30.522595,151.519431,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,6,8,Australia,AU,Queensland,-27.527059,153.091593,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2022,8,6,Australia,AU,Queensland,-27.53996,153.050215,EPSG:4326 +HUMAN_OBSERVATION,krisl53,1,,,2023,12,8,Australia,AU,Victoria,-36.406769,146.541815,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,8,Australia,AU,South Australia,-34.890676,138.722213,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,17,Australia,AU,Queensland,-27.529885,153.104014,EPSG:4326 +HUMAN_OBSERVATION,jessrob73,1,,,2024,1,4,Australia,AU,Victoria,-37.554052,149.741172,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"I think a young female, no tags that I could see. Looked very healthy and was active/alert. She climbed down from a small tree after ten minutes of silence on my part and made her way up a larger one near by to eat. Seemed to be a good weight.",2022,9,18,Australia,AU,Queensland,-27.532359,153.036828,EPSG:4326 +HUMAN_OBSERVATION,MattyD,1,,,2022,6,16,Australia,AU,Victoria,-37.726937,143.951522,EPSG:4326 +HUMAN_OBSERVATION,Jon Marnock,1,,,2023,9,10,Australia,AU,Queensland,-27.081761,152.377006,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear - Thor,2024,5,22,Australia,AU,Queensland,-27.527973,153.112544,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,8,22,Australia,AU,Queensland,-27.505904,153.083637,EPSG:4326 +HUMAN_OBSERVATION,Pete Ockenden,1,,4 in total seen along track high in red gums close to Ovens River in Warby ovens National Park,2024,5,11,Australia,AU,Victoria,-36.223362,146.262878,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,9,22,Australia,AU,Queensland,-27.52491,153.0934,EPSG:4326 +HUMAN_OBSERVATION,oliverfamily,1,,,2023,7,13,Australia,AU,Queensland,-27.416758,151.937892,EPSG:4326 +HUMAN_OBSERVATION,Martin Rady,1,,,2021,7,17,Australia,AU,Queensland,-27.549617,153.060057,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Koala markings. FoN survey Tarkeeth1,2023,10,8,Australia,AU,New South Wales,-30.496679,152.91425,EPSG:4326 +HUMAN_OBSERVATION,pookies,1,,,2023,8,8,Australia,AU,Victoria,-37.484424,144.526567,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,Crop from video frame. Scats on ground under large Ironbark (trunk top right) LCA2106.,2020,8,26,Australia,AU,Queensland,-27.496345,152.248252,EPSG:4326 +HUMAN_OBSERVATION,Marianne Broug,1,,,2024,9,26,Australia,AU,South Australia,-35.024745,138.610272,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree between woodland and Aldi gates,2024,4,2,Australia,AU,Queensland,-27.527098,153.092606,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,1,Australia,AU,Queensland,-27.52598,153.090547,EPSG:4326 +HUMAN_OBSERVATION,kgwhill,1,,,2020,6,8,Australia,AU,South Australia,-35.015539,138.649798,EPSG:4326 +HUMAN_OBSERVATION,pookies,1,,,2023,11,21,Australia,AU,Victoria,-37.521808,144.589645,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2023,1,5,Australia,AU,Queensland,-27.549327,153.072842,EPSG:4326 +HUMAN_OBSERVATION,Benjamin Schwartz,1,,,2024,1,9,Australia,AU,South Australia,-35.022687,138.59709,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,5,22,Australia,AU,Queensland,-27.528243,153.109872,EPSG:4326 +HUMAN_OBSERVATION,Karen Weaving,1,,"Wild, Sitting high up Eucalyptus Tree just past footbridge going to Falls1, morialta Conservation Park,",2020,7,12,Australia,AU,South Australia,-34.903158,138.70249,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"In a Forest Red Gum, Euc tereticornis. Neighbour phone photo.",2022,3,6,Australia,AU,Queensland,-27.509598,153.070399,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,10,15,Australia,AU,New South Wales,-33.076428,151.095047,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2020,3,13,Australia,AU,Queensland,-27.549755,153.06135,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,FEMALE,second female with joey out of the pouch - you can just make out its foot as she cuddles it!,2020,8,12,Australia,AU,New South Wales,-28.253745,153.376871,EPSG:4326 +HUMAN_OBSERVATION,kazhutcho,1,FEMALE,Female. Good health.,2023,11,3,Australia,AU,New South Wales,-30.294154,153.124126,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,14,Australia,AU,South Australia,-34.889926,138.722822,EPSG:4326 +HUMAN_OBSERVATION,Adriana Labate,1,,,2024,9,21,Australia,AU,Queensland,-19.151424,146.862431,EPSG:4326 +HUMAN_OBSERVATION,m_green,1,,,2021,3,14,Australia,AU,New South Wales,-34.76224,146.567342,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,1,26,Australia,AU,Queensland,-27.527441,153.090959,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3159,2023,5,17,Australia,AU,Queensland,-27.496763,152.249435,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2023,3,3,Australia,AU,South Australia,-34.926405,138.71445,EPSG:4326 +HUMAN_OBSERVATION,jessieskein,1,,,2024,9,25,Australia,AU,Queensland,-27.422308,153.514085,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,,2023,12,5,Australia,AU,Queensland,-27.545193,153.079773,EPSG:4326 +HUMAN_OBSERVATION,lindacf,1,,s4770,2021,11,29,Australia,AU,Queensland,-27.736192,153.078086,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,MALE,"Is that his teeth?? same male, same tree",2022,9,20,Australia,AU,New South Wales,-28.254111,153.377051,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In E.microcorys.,2021,1,3,Australia,AU,Queensland,-27.541525,153.0547,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear of Woodland - seton college fence,2023,9,10,Australia,AU,Queensland,-27.528607,153.092893,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2023,11,5,Australia,AU,Queensland,-27.527314,153.091416,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Young male. dead. Hit by car. Observed by Wendy Taylor. Submitted via msg.,2024,8,8,Australia,AU,Queensland,-26.362934,151.746928,EPSG:4326 +HUMAN_OBSERVATION,Nicole Andrews,1,,,2024,5,5,Australia,AU,Victoria,-38.551862,143.748432,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside rear entrance to the nursery - down from cleaners donga,2023,7,22,Australia,AU,Queensland,-27.527188,153.092012,EPSG:4326 +HUMAN_OBSERVATION,Victor W Fazio III,1,,Kate's,2020,9,13,Australia,AU,New South Wales,-31.931904,152.414489,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"In context image Koala is blob just above centre of image. In a Blackwood (A. melanoxylon). Same tree as observation 12 May https://inaturalist.ala.org.au/observations/214361359, possibly the same Koala? Leafy debris was noisily raining down from the tree, I wondered if it might have been munching on Blackwood leaves?",2024,5,27,Australia,AU,Victoria,-38.498061,142.977653,EPSG:4326 +HUMAN_OBSERVATION,light-up-gold,1,,Spotted struggling to cross through road barrier. Shepherded safely and took off into bush,2023,4,24,Australia,AU,Victoria,-38.537581,143.709437,EPSG:4326 +HUMAN_OBSERVATION,paulhaynesemail,1,,,2024,2,2,Australia,AU,Victoria,-38.672289,143.851209,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,2,20,Australia,AU,Queensland,-27.530318,153.103973,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds Male koala yellow tag 0976,2024,4,13,Australia,AU,Queensland,-27.528233,153.092186,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,9,9,Australia,AU,Queensland,-27.25702,152.045235,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,4,2,Australia,AU,Queensland,-27.546569,153.067655,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania and Wisteria woodland Mid section Very high in tree Overcast cool morning,2023,8,6,Australia,AU,Queensland,-27.524414,153.093136,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Female koala - yellow tag right ear #768,2023,4,11,Australia,AU,Queensland,-27.526802,153.090703,EPSG:4326 +HUMAN_OBSERVATION,xariahb,1,,,2024,4,1,Australia,AU,South Australia,-35.080038,138.574131,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,5,Australia,AU,South Australia,-34.826169,138.738058,EPSG:4326 +HUMAN_OBSERVATION,Elspeth Swan,1,,dead koala,2023,3,22,Australia,AU,Victoria,-37.633227,144.086152,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,11,14,Australia,AU,South Australia,-34.891005,138.722746,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2023,7,10,Australia,AU,Queensland,-27.984705,153.335698,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,7,Australia,AU,South Australia,-34.890986,138.730675,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Top of nursery,2023,6,11,Australia,AU,Queensland,-27.527196,153.091653,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"Female & Joey, both looking healthy - 4 photos",2023,12,24,Australia,AU,Victoria,-37.587216,143.883756,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,9,20,Australia,AU,Queensland,-27.257202,152.046526,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,21,Australia,AU,Queensland,-27.529441,153.109707,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Amongst Monkey Rope,2020,10,15,Australia,AU,Queensland,-27.547288,153.058236,EPSG:4326 +HUMAN_OBSERVATION,tcaderperson,1,,Grunting and calling out,2024,1,2,Australia,AU,Queensland,-28.1258,152.9458,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,4,5,Australia,AU,South Australia,-35.015947,138.670721,EPSG:4326 +HUMAN_OBSERVATION,Ryan Leys,1,,,2023,10,21,Australia,AU,Victoria,-38.812525,143.537054,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,10,Australia,AU,Queensland,-27.530076,153.104965,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Maisie,2024,11,10,Australia,AU,Queensland,-27.526741,153.090533,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2021,3,11,Australia,AU,Victoria,-38.637893,145.715505,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2022,10,8,Australia,AU,South Australia,-35.003297,138.652636,EPSG:4326 +HUMAN_OBSERVATION,Chrissie van Leent,1,,,2023,10,7,Australia,AU,Queensland,-27.240945,153.000516,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,6,Australia,AU,Queensland,-27.527778,153.111831,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,"Red tagged female, she wouldn’t show me her tag number",2022,12,16,Australia,AU,Queensland,-27.545149,153.07224,EPSG:4326 +HUMAN_OBSERVATION,Brendan Casey,1,,Sleeping in a street tree Manna Gum.,2022,11,15,Australia,AU,Victoria,-38.63134,145.737442,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2022,9,3,Australia,AU,South Australia,-35.086972,138.682065,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,"Orphaned joey, female, head injury. Karana Downs, Brisbane West. Attribution: Alyssa",2020,8,29,Australia,AU,Queensland,-27.530525,152.807309,EPSG:4326 +HUMAN_OBSERVATION,elliotcondous,1,,,2024,11,23,Australia,AU,Victoria,-38.773424,143.404576,EPSG:4326 +HUMAN_OBSERVATION,cattewell,1,,,2023,5,18,Australia,AU,Queensland,-27.277909,152.989605,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank Mum and baby,2022,9,12,Australia,AU,Queensland,-27.54565,153.073299,EPSG:4326 +HUMAN_OBSERVATION,Sam S,1,,Second of 2 male koalas heard grunting. Observed in broad leaf peppermint near creek that has manna gums.,2023,2,1,Australia,AU,Victoria,-37.018788,145.44588,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,,This male koala seems to visit the property infrequently. It appears that when he turns up the female with a joey seems to leave.,2021,9,27,Australia,AU,Queensland,-28.174202,152.907639,EPSG:4326 +HUMAN_OBSERVATION,yarrab,1,,Fresh koala prints? Should I log animal tracks? Or no?,2024,8,18,Australia,AU,Queensland,-27.828987,153.143111,EPSG:4326 +HUMAN_OBSERVATION,rosewise,1,,,2024,9,21,Australia,AU,New South Wales,-28.874607,153.161926,EPSG:4326 +HUMAN_OBSERVATION,sophie_hoffmann,1,,,2023,8,8,Australia,AU,South Australia,-34.074764,140.749772,EPSG:4326 +HUMAN_OBSERVATION,Jason Ramsay,1,,Scats found under Eucalyptus tereticornis. Strong eucalyptus smell.,2023,6,22,Australia,AU,Queensland,-27.292184,152.987097,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In gully near Aldi gates,2023,11,18,Australia,AU,Queensland,-27.526383,153.093124,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2024,9,3,Australia,AU,Queensland,-27.734401,153.101661,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,23,Australia,AU,Queensland,-27.527134,153.111199,EPSG:4326 +HUMAN_OBSERVATION,Marie Tarrant,1,,crossing the road,2020,6,7,Australia,AU,Queensland,-26.640237,152.432806,EPSG:4326 +HUMAN_OBSERVATION,awmccutcheon,1,,Two koalas sharing the same tree.,2021,11,5,Australia,AU,Victoria,-38.339655,142.737455,EPSG:4326 +HUMAN_OBSERVATION,Yarram Scouts,1,,,2021,11,28,Australia,AU,Victoria,-38.521989,146.605389,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Soap Tree/Red Ash covered in Monkey Rope,2020,2,8,Australia,AU,Queensland,-27.543949,153.060597,EPSG:4326 +HUMAN_OBSERVATION,zaneymg,1,,,2024,2,10,Australia,AU,South Australia,-35.080743,138.569421,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,8,21,Australia,AU,Queensland,-27.551863,153.057848,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Maisie and joey In mum’s trees near e block,2023,9,10,Australia,AU,Queensland,-27.526469,153.090966,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,"the day was spent in this Grey Gum, E propinqua. 1st photo huddled over from hail storm, 2nd photo he had dropped down to a much lower height. Note opaque left eye.",2024,11,1,Australia,AU,Queensland,-27.510482,153.069678,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey again in Tallowood,2021,6,21,Australia,AU,Queensland,-27.551375,153.057358,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,1,7,Australia,AU,Queensland,-27.516703,153.084343,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,25,Australia,AU,South Australia,-34.903214,138.706546,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"Koala, different to koala lately seen on 45 Baker: possibly ""Spectacle Eyes"". In small stringybark.",2024,3,1,Australia,AU,New South Wales,-30.520654,151.519203,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,default,2024,8,9,Australia,AU,New South Wales,-34.101551,150.826844,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,13,Australia,AU,South Australia,-34.889788,138.721874,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Brush box,2023,4,3,Australia,AU,Queensland,-27.533822,153.036916,EPSG:4326 +HUMAN_OBSERVATION,e-young,1,,,2023,2,19,Australia,AU,Queensland,-27.549905,153.036833,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,10,25,Australia,AU,Queensland,-27.524725,153.111662,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,10,20,Australia,AU,Queensland,-27.799242,151.561447,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey,2024,3,30,Australia,AU,Queensland,-27.529082,153.103624,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,4,7,Australia,AU,Queensland,-27.527161,153.091596,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,12,Australia,AU,Queensland,-27.823584,152.993267,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,12,9,Australia,AU,Queensland,-27.257246,152.046503,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,3,Australia,AU,South Australia,-34.892425,138.720798,EPSG:4326 +HUMAN_OBSERVATION,Dafne,1,,,2024,11,4,Australia,AU,Queensland,-27.552781,153.054339,EPSG:4326 +HUMAN_OBSERVATION,Chris,1,MALE,"Tree previously with cats claw vine, now controlled, being accessed by Koala.",2023,10,28,Australia,AU,Queensland,-27.892616,152.61802,EPSG:4326 +HUMAN_OBSERVATION,Daniel J. Aguirre Howes,1,,Adult and joey (the joey was a couple meters above the adult),2024,8,29,Australia,AU,Queensland,-19.125043,146.870019,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - scent gland on chest visible,2023,9,4,Australia,AU,Queensland,-27.529074,153.106872,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania and Wisteria woodland middle Cindy Crawford and Joey - paw just visible,2023,8,19,Australia,AU,Queensland,-27.524499,153.093578,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Hayley Maudsley. Submitted to Wendy Taylor via FB.,2024,11,8,Australia,AU,Queensland,-26.040694,152.048643,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Between Aldi gates and tennis courts,2024,3,23,Australia,AU,Queensland,-27.526131,153.092938,EPSG:4326 +HUMAN_OBSERVATION,graeme lunt,1,,,2024,1,13,Australia,AU,Victoria,-38.318845,142.364288,EPSG:4326 +HUMAN_OBSERVATION,Claudia Schipp,1,,,2021,12,30,Australia,AU,Victoria,-38.318722,142.361567,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,5,18,Australia,AU,Queensland,-27.50807,153.117461,EPSG:4326 +HUMAN_OBSERVATION,mikew65,1,,,2024,2,15,Australia,AU,South Australia,-34.825556,135.684722,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Believe this is a large male, affectionally known by the neighbours as ""Big Boy"". Believe he has a tick on its chest. Right up on top of the tree.",2020,10,5,Australia,AU,New South Wales,-28.253559,153.377198,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Triangle area near cafeteria,2024,10,20,Australia,AU,Queensland,-27.526914,153.092094,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,1,4,Australia,AU,South Australia,-34.887121,138.732551,EPSG:4326 +HUMAN_OBSERVATION,mjjardine,1,,,2023,12,16,Australia,AU,Victoria,-38.318795,142.363678,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland gully,2024,5,12,Australia,AU,Queensland,-27.527629,153.092571,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,2 koalas approx 1m apart (presumably mum and joey).,2024,11,23,Australia,AU,Queensland,-27.392905,151.78183,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2021,9,30,Australia,AU,South Australia,-34.869197,138.653738,EPSG:4326 +HUMAN_OBSERVATION,sbrennan2023,1,,,2023,6,1,Australia,AU,Victoria,-36.235355,146.834288,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,29,Australia,AU,Queensland,-27.528887,153.103916,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,FEMALE,,2023,7,31,Australia,AU,New South Wales,-29.778998,150.978678,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,"Very high in big yellow gum,",2022,2,18,Australia,AU,Victoria,-37.849112,144.284803,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,In Eucalyptus globulus subsp globulus; last image taken at 5pm and she’s (?) now feeding way up high.,2020,5,27,Australia,AU,Victoria,-38.671628,146.164231,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,2,Australia,AU,Queensland,-27.545697,153.07369,EPSG:4326 +HUMAN_OBSERVATION,naomimurton,1,FEMALE,Wild. Calm. With young Joey in pouch - felt moving,2023,3,26,Australia,AU,South Australia,-35.589197,137.503883,EPSG:4326 +HUMAN_OBSERVATION,Daniel Townend,1,,,2022,8,9,Australia,AU,Queensland,-27.546775,153.056867,EPSG:4326 +HUMAN_OBSERVATION,cv173,1,,,2024,4,24,Australia,AU,Queensland,-28.000436,152.681337,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,MALE,,2024,7,28,Australia,AU,Queensland,-27.823214,152.993298,EPSG:4326 +HUMAN_OBSERVATION,Heath Hunter,1,,,2022,11,17,Australia,AU,South Australia,-34.938511,138.667106,EPSG:4326 +HUMAN_OBSERVATION,joanna8aker,1,,,2023,11,19,Australia,AU,Queensland,-27.496605,153.400453,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Amongst Monkey Rope Vine,2020,5,22,Australia,AU,Queensland,-27.550635,153.05393,EPSG:4326 +HUMAN_OBSERVATION,pelicanfan,1,,Single animal high in tree. Alert.,2022,9,26,Australia,AU,Queensland,-27.256754,152.054546,EPSG:4326 +HUMAN_OBSERVATION,tmcroydon2002,1,,,2023,12,4,Australia,AU,Victoria,-38.835695,143.524903,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,7,11,Australia,AU,Victoria,-38.671355,146.163789,EPSG:4326 +HUMAN_OBSERVATION,kittsw,1,,"Three koalas in close proximity. This one climbed up, vocalising and bit the ears of obs 147059346 as well as acting very aggressively, before climbing down and going to another tree. In the pictures with two koalas, this individual is the one on top of the other. The third Koala was obs 147059179. (Poor pictures, low light)",2023,1,21,Australia,AU,South Australia,-34.876943,138.648317,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,10,10,Australia,AU,Queensland,-27.552049,153.054722,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,1,6,Australia,AU,Queensland,-27.529401,153.105349,EPSG:4326 +HUMAN_OBSERVATION,jeffmarriott,1,,,2022,3,11,Australia,AU,Victoria,-37.88441,145.966773,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2021,10,31,Australia,AU,Queensland,-27.417534,152.438501,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"With Joey _12.3.7 Eucalyptus tereticornis, Casuarina cunninghamiana subsp. cunninghamiana +/- Melaleuca spp. fringing woodland",2024,10,12,Australia,AU,Queensland,-27.566467,152.110322,EPSG:4326 +HUMAN_OBSERVATION,rhiannonquigley,1,,,2023,2,10,Australia,AU,Victoria,-36.954012,145.861604,EPSG:4326 +HUMAN_OBSERVATION,Avecy Tan,1,,,2023,8,14,Australia,AU,Queensland,-27.274184,152.933734,EPSG:4326 +HUMAN_OBSERVATION,Kevin Sparrow,1,,,2024,8,15,Australia,AU,Victoria,-38.201375,142.035418,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,7,27,Australia,AU,Queensland,-27.523957,153.093135,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,9,Australia,AU,Queensland,-27.530029,153.103657,EPSG:4326 +HUMAN_OBSERVATION,Stu Easton,1,,,2021,1,25,Australia,AU,Queensland,-27.251352,153.027701,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,4,4,Australia,AU,Victoria,-37.595429,143.874892,EPSG:4326 +HUMAN_OBSERVATION,Graham Tupper,1,MALE,Male resting in a shady location in a small Turpentine tree at 10m (Syncarpia) - not feeding.,2022,10,27,Australia,AU,New South Wales,-30.296092,153.126129,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Male. Healthy. 50m from homestead. Observed by Daphne Cartwright. Submitted via email. Scat collected for test via Burnett Catchment Care Association 'Burnett Koala Program'.,2023,5,7,Australia,AU,Queensland,-26.401586,151.338279,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Wisteria carpark Jacob Jnr,2024,9,7,Australia,AU,Queensland,-27.525016,153.092561,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Christabelle - yellow 1032 R ear,2022,12,31,Australia,AU,Queensland,-27.530377,153.105384,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey in Tallowwood,2021,7,19,Australia,AU,Queensland,-27.550802,153.057936,EPSG:4326 +HUMAN_OBSERVATION,felixkern,1,,,2023,3,1,Australia,AU,Victoria,-38.34318,143.222367,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,,2024,10,28,Australia,AU,Queensland,-27.507249,153.082824,EPSG:4326 +HUMAN_OBSERVATION,Courtney,1,,,2021,3,27,Australia,AU,South Australia,-34.794916,138.749252,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,11,Australia,AU,Queensland,-27.823743,152.993413,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,The photo doesn't tell you he's a grunty male.,2024,11,4,Australia,AU,Victoria,-37.793464,141.476152,EPSG:4326 +HUMAN_OBSERVATION,daphnemona1925,1,,,2022,4,28,Australia,AU,Queensland,-27.724522,151.531447,EPSG:4326 +HUMAN_OBSERVATION,Alan Dandie,1,,,2023,10,27,Australia,AU,South Australia,-35.085522,138.649356,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,MALE,"Male bellowing and climbing tree. Assume female at top, looked old.",2024,9,18,Australia,AU,New South Wales,-34.100276,150.831788,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2023,5,7,Australia,AU,South Australia,-35.009181,138.6526,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"large adult, heard and found",2023,8,8,Australia,AU,Victoria,-37.712899,143.895874,EPSG:4326 +HUMAN_OBSERVATION,Adrian Tritschler,1,,,2023,9,24,Australia,AU,Victoria,-38.53252,143.969303,EPSG:4326 +HUMAN_OBSERVATION,bengbwilliams,1,,,2023,8,21,Australia,AU,Victoria,-38.834462,143.512322,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Sorry photos are out of focus, the tree was swaying in the wind.",2022,3,26,Australia,AU,New South Wales,-28.259845,153.401909,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy Koala (Possibly same one from previous day) Picnic Point Walking Track. Observer Nancy F for Toowoomba Koala and Wildlife Rescue.,2022,11,6,Australia,AU,Queensland,-27.579304,151.989616,EPSG:4326 +HUMAN_OBSERVATION,bimbimbi,1,,,2023,10,2,Australia,AU,Victoria,-38.392216,142.834636,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,1,2,Australia,AU,Queensland,-27.542484,153.112716,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2022,5,22,Australia,AU,Queensland,-28.07537,152.853808,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,With Joey on Paperbark,2020,8,17,Australia,AU,Queensland,-27.551377,153.058406,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Beautiful male in Eucalyptus nicholii,2024,11,2,Australia,AU,Victoria,-38.671045,146.164628,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,Reported by resident via email with pin drop,2021,11,17,Australia,AU,Queensland,-27.324325,151.944664,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Mrs Bill,2023,12,21,Australia,AU,South Australia,-34.887307,138.734087,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,1,28,Australia,AU,Queensland,-27.527238,153.091661,EPSG:4326 +HUMAN_OBSERVATION,donnamareetomkinson,1,,Just beside the road in what I think is/was a apiary site. (Last photo is of the ground but the photo has the location metadata in it).,2023,8,26,Australia,AU,Queensland,-26.608275,152.380343,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2024,3,6,Australia,AU,Queensland,-27.0397,153.094514,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Older female koala who calls this strip of tree's home. First photo shows possibly her joey this season sitting in a nearby branch.,2024,9,29,Australia,AU,Queensland,-27.284482,153.000639,EPSG:4326 +HUMAN_OBSERVATION,Anneke Logan,1,,,2023,9,4,Australia,AU,Queensland,-27.267988,152.054183,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,12,Australia,AU,Queensland,-27.530563,153.104672,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,yellow left ear tag 0479,2021,10,3,Australia,AU,Queensland,-27.50255,153.070634,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,9,17,Australia,AU,Victoria,-38.351539,146.405785,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2022,6,5,Australia,AU,Queensland,-27.509592,153.070394,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2021,11,20,Australia,AU,Victoria,-38.37826,145.351498,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,In the upper and outer branches of a Stringybark tree. In strong Westerly winds a lot of swaying was happening. Has a Joey attached between stomach and branch. Zooming in you can see a small paw attaching to the side of the adult.,2020,8,23,Australia,AU,Queensland,-27.513686,153.073624,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor and submitted via msg.,2024,10,2,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Male- high scent,2022,4,2,Australia,AU,New South Wales,-34.766842,146.577055,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2022,12,17,Australia,AU,South Australia,-34.995311,138.753766,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,8,28,Australia,AU,Queensland,-27.918712,153.375978,EPSG:4326 +HUMAN_OBSERVATION,ninjajuju,1,,,2021,6,28,Australia,AU,Queensland,-19.123665,146.871368,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,11,15,Australia,AU,Queensland,-27.528269,153.10505,EPSG:4326 +HUMAN_OBSERVATION,gigi133,1,,,2022,8,27,Australia,AU,New South Wales,-28.959144,153.394057,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2023,8,6,Australia,AU,Queensland,-27.284989,153.000818,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,"Image captured whilst on a spotlighting circuit, varying between 1.5 km to 3 km depending on track conditions, through a 20 ha block of predominantly Sedgy Riparian Woodland (EVC 198) in the Wombat State Forest, Lyonville.",2021,5,8,Australia,AU,Victoria,-37.39149,144.266669,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Female and Joey in Spotted gum,2020,10,13,Australia,AU,Queensland,-27.550436,153.055217,EPSG:4326 +HUMAN_OBSERVATION,larivera,1,,,2022,11,18,Australia,AU,Victoria,-38.31819,142.363649,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2024,4,24,Australia,AU,Victoria,-37.643061,143.895827,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey,2024,10,26,Australia,AU,Queensland,-27.527161,153.091632,EPSG:4326 +HUMAN_OBSERVATION,SBERRY,1,,Lots of these scats under old Eucalyptus tree,2024,9,21,Australia,AU,Victoria,-38.263569,145.234817,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,24,Australia,AU,South Australia,-34.892265,138.72226,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,6,19,Australia,AU,New South Wales,-33.076681,151.095387,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2020,10,18,Australia,AU,Queensland,-27.54923,153.07245,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2024,3,29,Australia,AU,Victoria,-38.628158,145.727797,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block picnic area,2024,11,9,Australia,AU,Queensland,-27.525926,153.090492,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2022,4,15,Australia,AU,Queensland,-27.561218,152.106514,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,8,16,Australia,AU,Victoria,-38.671178,146.163799,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy and alert, 3rd of 6 seen",2023,1,26,Australia,AU,Queensland,-27.340154,152.613458,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,1,22,Australia,AU,Victoria,-38.354696,146.3884,EPSG:4326 +HUMAN_OBSERVATION,Lava,1,,Along Telegraph Rd.,2023,1,19,Australia,AU,Victoria,-37.061222,145.169662,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,2,6,Australia,AU,Queensland,-27.413176,152.003108,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,23,Australia,AU,Queensland,-27.527764,153.110315,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,In mum’s tree,2024,7,20,Australia,AU,Queensland,-27.526468,153.090894,EPSG:4326 +HUMAN_OBSERVATION,aburnell,1,,,2020,12,19,Australia,AU,South Australia,-35.964313,137.221026,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,9,15,Australia,AU,Queensland,-27.41465,152.004394,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,1,26,Australia,AU,Queensland,-27.527094,153.091715,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,,2023,8,16,Australia,AU,Queensland,-27.529762,153.103494,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"In a Mana Gum (E. viminalis). Unable to determine sex, overall impression was of a larger, older animal. Might have a funny right eye (could have been lighting, but possibly appears to damaged). Scats directly underneath, on road, some old and some fresh.",2024,5,6,Australia,AU,Victoria,-38.497775,142.9777,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In picnic area next to woodland entrance,2024,2,17,Australia,AU,Queensland,-27.52724,153.092217,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,Sitting high in a Flooded Gum tree.,2022,1,24,Australia,AU,New South Wales,-28.256241,153.401309,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria carpark - bushy tree Cindy Crawford and joey,2023,10,1,Australia,AU,Queensland,-27.525111,153.092384,EPSG:4326 +HUMAN_OBSERVATION,markbrookvale,1,,,2024,2,23,Australia,AU,Queensland,-27.43987,151.625852,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,16,Australia,AU,Queensland,-27.529061,153.11238,EPSG:4326 +HUMAN_OBSERVATION,mickshelton,1,,Male calling,2024,10,2,Australia,AU,New South Wales,-28.380797,153.564058,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,"Three koalas found in adjacent trees, same day/time, appeared to be mother and 2 joeys (one Joey was slightly bigger, older?)",2021,1,26,Australia,AU,New South Wales,-34.101853,150.82193,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2024,6,15,Australia,AU,Queensland,-27.529763,153.103109,EPSG:4326 +HUMAN_OBSERVATION,ainslielangdon,1,,,2023,4,23,Australia,AU,Queensland,-21.456596,149.169646,EPSG:4326 +HUMAN_OBSERVATION,Steve Dew,1,,,2022,3,15,Australia,AU,Victoria,-38.038579,141.246167,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,6,14,Australia,AU,Queensland,-27.510464,153.086728,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Seen crossing road.,2024,2,12,Australia,AU,Victoria,-37.616457,143.881249,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,MALE,,2024,10,6,Australia,AU,Queensland,-27.358581,152.074666,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Alert, healthy looking.",2022,11,5,Australia,AU,Queensland,-27.536895,153.039689,EPSG:4326 +HUMAN_OBSERVATION,rockleyboys,1,,,2020,11,16,Australia,AU,New South Wales,-33.689449,149.559821,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,5,19,Australia,AU,Queensland,-27.527616,153.092707,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank baby,2022,9,27,Australia,AU,Queensland,-27.545648,153.073467,EPSG:4326 +HUMAN_OBSERVATION,dieselfraser,1,,,2021,10,4,Australia,AU,Victoria,-38.825259,145.999199,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,11,19,Australia,AU,Queensland,-27.536917,153.055263,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,7,14,Australia,AU,Victoria,-38.671367,146.163697,EPSG:4326 +HUMAN_OBSERVATION,Tommi Mason,1,,Ooo had a strong eucalyptus smell. Also heard his deep guttural grunts.,2023,3,9,Australia,AU,Queensland,-26.393662,153.001963,EPSG:4326 +HUMAN_OBSERVATION,ferg_lex,1,,,2023,6,8,Australia,AU,Queensland,-27.433067,152.998116,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,21,Australia,AU,South Australia,-34.893588,138.72537,EPSG:4326 +HUMAN_OBSERVATION,ainsliem,1,,,2021,3,24,Australia,AU,Queensland,-27.552317,153.054597,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2024,6,2,Australia,AU,Queensland,-28.092026,152.828215,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,"Hard to see, hiding way up high",2022,10,25,Australia,AU,Queensland,-27.509225,153.0834,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,17,Australia,AU,Queensland,-27.525921,153.091616,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2024,3,1,Australia,AU,New South Wales,-34.773328,146.594803,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.92437,147.729492,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,Mum and baby,2022,3,27,Australia,AU,Queensland,-27.509704,153.084005,EPSG:4326 +HUMAN_OBSERVATION,Christian Perrin,1,,,2022,11,5,Australia,AU,Queensland,-27.571135,153.164317,EPSG:4326 +HUMAN_OBSERVATION,Mike Letnic,1,,,2023,1,18,Australia,AU,New South Wales,-32.397595,152.483021,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,9,21,Australia,AU,Queensland,-27.527214,153.091634,EPSG:4326 +HUMAN_OBSERVATION,Annette,1,MALE,,2023,9,5,Australia,AU,Queensland,-19.135861,146.842355,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,,2023,1,25,Australia,AU,Queensland,-27.413456,152.002992,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Cindy Ireland. Submitted by Denise Shaw via email.,2023,7,22,Australia,AU,Queensland,-26.13385,151.792799,EPSG:4326 +HUMAN_OBSERVATION,Cameron Edwards,1,,,2021,12,11,Australia,AU,South Australia,-35.079787,138.575217,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near mowing shed - K block,2024,5,19,Australia,AU,Queensland,-27.525838,153.090889,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,6,23,Australia,AU,Queensland,-27.527886,153.092388,EPSG:4326 +HUMAN_OBSERVATION,si29dh43,1,,,2023,12,1,Australia,AU,Queensland,-27.529812,153.253041,EPSG:4326 +HUMAN_OBSERVATION,ainsley_isme,1,,,2023,11,30,Australia,AU,Queensland,-27.748031,153.151408,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,Mother,2024,9,24,Australia,AU,Queensland,-27.221882,153.062165,EPSG:4326 +HUMAN_OBSERVATION,kdoust,1,,2nd boy today,2024,6,18,Australia,AU,Queensland,-27.339374,152.61328,EPSG:4326 +HUMAN_OBSERVATION,Hanneke Nooren,1,,,2023,10,6,Australia,AU,Queensland,-27.498205,152.246472,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Sharon Patterson. Submitted by Wendy Taylor via msg.,2023,12,12,Australia,AU,Queensland,-26.505493,152.010728,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,23,Australia,AU,Queensland,-27.528038,153.092241,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2022,3,9,Australia,AU,Queensland,-27.548476,153.059747,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,10,12,Australia,AU,New South Wales,-33.076453,151.095031,EPSG:4326 +HUMAN_OBSERVATION,peterbos,1,,,2024,5,19,Australia,AU,South Australia,-35.003886,138.647215,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male Koala high in big yellow gum. Too dark for nose ID but mostly dark colour little colour top right nostril Checked length of road next day but no koala sighted,2023,4,27,Australia,AU,Victoria,-37.849138,144.286182,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,15,Australia,AU,South Australia,-34.891793,138.715655,EPSG:4326 +HUMAN_OBSERVATION,Louise O'Hare,1,,,2020,8,3,Australia,AU,Queensland,-27.502371,153.26003,EPSG:4326 +HUMAN_OBSERVATION,degilbo,1,MALE,,2023,12,3,Australia,AU,Victoria,-37.296708,144.314562,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Possibly a young female koala. As I was taking photos koala climbed further up the tree.,2024,7,7,Australia,AU,Queensland,-27.284465,152.999933,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,red tag 3143 right ear female,2022,12,13,Australia,AU,Queensland,-27.545801,153.073258,EPSG:4326 +HUMAN_OBSERVATION,angusm8,1,,,2024,10,3,Australia,AU,Queensland,-27.245398,153.030718,EPSG:4326 +HUMAN_OBSERVATION,enekoazkue,1,,,2024,9,11,Australia,AU,South Australia,-36.782363,140.057401,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,Koala at a primary school,2020,2,22,Australia,AU,Queensland,-27.591767,153.130158,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland gully - in mating tree Male yellow tag left ear 0976,2024,3,17,Australia,AU,Queensland,-27.527253,153.092459,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,4,27,Australia,AU,Queensland,-26.152405,151.799133,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,TC22,2024,8,8,Australia,AU,Victoria,-38.080116,141.726499,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2024,10,25,Australia,AU,Queensland,-28.0676,152.853588,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,9,10,Australia,AU,Queensland,-27.526539,153.09071,EPSG:4326 +HUMAN_OBSERVATION,kgdc,1,,,2023,4,9,Australia,AU,Queensland,-27.232143,153.076641,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"This was in the area we found the body of the brown female on Sunday 13th. But it is not her - wrong nose markings. We had believed this was a male at the time as I found it by its calling and went and looked for it. There had been two for several night - on in this area and one below our house, towards the spur. I did photograph this other one on one occasion.",2020,12,8,Australia,AU,New South Wales,-28.253634,153.377271,EPSG:4326 +HUMAN_OBSERVATION,nyxaero,1,,,2023,6,12,Australia,AU,South Australia,-35.13305,138.516089,EPSG:4326 +HUMAN_OBSERVATION,Sarah Foote,1,,,2022,9,12,Australia,AU,South Australia,-35.707269,137.49411,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,"Exact location obscured for privacy, on private land.",2023,2,13,Australia,AU,Victoria,-38.329841,142.578783,EPSG:4326 +HUMAN_OBSERVATION,galaxias,1,,,2022,9,27,Australia,AU,Victoria,-38.395529,144.93554,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,27,Australia,AU,Queensland,-27.820985,152.80818,EPSG:4326 +HUMAN_OBSERVATION,Michael Tervo,1,,Scat found post-bushfire. Scat smelt of Eucalyptus and lacking in other traits found in possum scat.,2020,9,24,Australia,AU,Queensland,-28.17353,153.157272,EPSG:4326 +HUMAN_OBSERVATION,fflurlfw,1,,"Fresh scats from koala found in bushland area waterway corridor around base of mature Eucalyptus fibrosa. Other species present include Eucalyptus propinqua, E siderophloia, C henryi, L suaveolens.",2020,11,4,Australia,AU,Queensland,-27.563622,153.132151,EPSG:4326 +HUMAN_OBSERVATION,taopina,1,,,2024,5,23,Australia,AU,South Australia,-34.890488,138.715703,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2023,12,23,Australia,AU,Queensland,-27.5254,153.092279,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,Mum and baby,2024,10,4,Australia,AU,Queensland,-27.55498,153.058504,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,FEMALE,"Mother and Baby Koala - Healthy, Silverleigh Qld.",2023,11,3,Australia,AU,Queensland,-27.376052,151.772557,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,9,25,Australia,AU,Queensland,-27.52906,153.115062,EPSG:4326 +HUMAN_OBSERVATION,Gordon Claridge,1,,LCA3164,2023,5,6,Australia,AU,Queensland,-27.496763,152.249435,EPSG:4326 +HUMAN_OBSERVATION,Wyn Russell,1,,,2024,10,3,Australia,AU,Victoria,-38.08901,141.49707,EPSG:4326 +HUMAN_OBSERVATION,Alan Dandie,1,,,2022,11,25,Australia,AU,South Australia,-34.991022,138.617938,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,,2024,9,17,Australia,AU,New South Wales,-34.757499,146.592326,EPSG:4326 +HUMAN_OBSERVATION,Graham Armstrong,1,,,2024,9,30,Australia,AU,South Australia,-34.932733,138.724786,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Injured. Koala rescue contacted. Later euthanised due to injuries. Observed by Benjamin Crowther. Submitted via phone and msg.,2023,11,1,Australia,AU,Queensland,-26.237975,151.95723,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Spotted Gum,2024,1,22,Australia,AU,Queensland,-27.550794,153.057925,EPSG:4326 +HUMAN_OBSERVATION,geotrum8670,1,,has been a while since I've had one at home - used to see quite a few. looked like a young male,2023,8,29,Australia,AU,New South Wales,-31.066162,150.28079,EPSG:4326 +HUMAN_OBSERVATION,Isaac Clarey,1,,,2023,7,16,Australia,AU,New South Wales,-31.45951,152.921133,EPSG:4326 +HUMAN_OBSERVATION,emwinter,1,,,2023,12,29,Australia,AU,South Australia,-34.788313,138.713578,EPSG:4326 +HUMAN_OBSERVATION,philip-roetman,1,,,2022,10,28,Australia,AU,South Australia,-35.020845,138.655826,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey,2024,11,2,Australia,AU,Queensland,-27.527228,153.091522,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Picnic area near e block,2024,7,20,Australia,AU,Queensland,-27.525791,153.090363,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,3,Australia,AU,Queensland,-27.527638,153.110338,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. 2 individuals in the same tree. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,8,27,Australia,AU,Queensland,-26.362977,151.811754,EPSG:4326 +HUMAN_OBSERVATION,dd17,1,,,2024,4,1,Australia,AU,Victoria,-37.512786,144.284172,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,13,Australia,AU,South Australia,-34.891302,138.730564,EPSG:4326 +HUMAN_OBSERVATION,oranamr,1,,1?a bird was removing rump fur from koala who swatted at the bird!,2021,8,17,Australia,AU,Victoria,-38.421938,144.948028,EPSG:4326 +HUMAN_OBSERVATION,sealmonkey,1,,,2021,9,23,Australia,AU,Victoria,-38.649586,145.68964,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,1,8,Australia,AU,Victoria,-37.617771,143.89099,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,22,Australia,AU,South Australia,-34.891641,138.721659,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,11,Australia,AU,Queensland,-27.527128,153.09176,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Young male 4 yrs old.,2024,4,17,Australia,AU,Queensland,-27.257102,152.046351,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,17,Australia,AU,South Australia,-34.891909,138.721822,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2024,3,16,Australia,AU,Queensland,-27.32542,151.934997,EPSG:4326 +HUMAN_OBSERVATION,Chris Lindorff,1,,"Resting in a Red Stringybark beside Clarkes Road, Anakie.",2023,12,22,Australia,AU,Victoria,-37.898393,144.218413,EPSG:4326 +HUMAN_OBSERVATION,logankoalaproject,1,,,2022,3,31,Australia,AU,Queensland,-28.32328,152.972635,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,koala scratches seen on several different trees in the area. Trees seem to be the same species?,2020,7,29,Australia,AU,New South Wales,-28.26064,153.403914,EPSG:4326 +HUMAN_OBSERVATION,Tue Secher Jensen,1,,,2023,5,11,Australia,AU,Victoria,-38.671542,143.859458,EPSG:4326 +HUMAN_OBSERVATION,Josh,1,MALE,,2024,9,28,Australia,AU,Victoria,-38.721949,143.715492,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2021,9,5,Australia,AU,South Australia,-34.913063,138.554007,EPSG:4326 +HUMAN_OBSERVATION,agosper,1,,,2023,1,29,Australia,AU,Queensland,-27.181111,152.799422,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Hard to see with the dull light from the cloud. Lots of scat about so possibly a 2nd close by,2022,5,10,Australia,AU,New South Wales,-34.774272,146.58525,EPSG:4326 +HUMAN_OBSERVATION,Mon,1,,,2024,10,5,Australia,AU,Victoria,-38.82515,143.528533,EPSG:4326 +HUMAN_OBSERVATION,Keith,1,,,2023,8,4,Australia,AU,Queensland,-27.48798,153.134981,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,21,Australia,AU,Queensland,-27.529145,153.103056,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,High up a E.micricorys.,2020,7,8,Australia,AU,Queensland,-27.54954,153.060133,EPSG:4326 +HUMAN_OBSERVATION,ambrosia1,1,,,2024,5,22,Australia,AU,New South Wales,-28.998398,153.289897,EPSG:4326 +HUMAN_OBSERVATION,codyhochen,1,,,2023,4,13,Australia,AU,Queensland,-27.310919,153.001266,EPSG:4326 +HUMAN_OBSERVATION,ws28,1,FEMALE,Female with mature baby nearby,2022,12,19,Australia,AU,Victoria,-38.337187,141.605587,EPSG:4326 +HUMAN_OBSERVATION,joanneling,1,,,2022,12,16,Australia,AU,New South Wales,-31.4445,152.924117,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,16,Australia,AU,Queensland,-27.295192,152.044603,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Triangle area near cafeteria Mother and joey,2024,8,25,Australia,AU,Queensland,-27.527104,153.092203,EPSG:4326 +HUMAN_OBSERVATION,insiderelic,1,,,2022,1,9,Australia,AU,South Australia,-34.990486,138.697119,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,In mum’s tree Mother and joey Barbara Dart?,2024,9,8,Australia,AU,Queensland,-27.526447,153.091004,EPSG:4326 +HUMAN_OBSERVATION,sprev,1,,,2021,12,24,Australia,AU,Queensland,-26.407442,152.989502,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,10,16,Australia,AU,Victoria,-37.64101,143.90464,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,5,29,Australia,AU,New South Wales,-28.253646,153.376673,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,4,1,Australia,AU,Queensland,-26.183208,151.692215,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,2,12,Australia,AU,Queensland,-27.599764,151.888809,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,11,4,Australia,AU,Queensland,-27.526978,153.109294,EPSG:4326 +HUMAN_OBSERVATION,janemckellar,1,,,2024,10,12,Australia,AU,South Australia,-35.715422,137.468583,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In triangle area near cafeteria and cleaner’s donga,2023,11,11,Australia,AU,Queensland,-27.527123,153.092035,EPSG:4326 +HUMAN_OBSERVATION,Enot Poluskuns,1,,,2020,7,13,Australia,AU,New South Wales,-31.43877,152.90652,EPSG:4326 +HUMAN_OBSERVATION,Diana Droog,1,,This little guy was out for a stroll down Toora-Gunyah Road,2020,2,20,Australia,AU,Victoria,-38.597649,146.307246,EPSG:4326 +HUMAN_OBSERVATION,Hanneke Nooren,1,,,2023,10,6,Australia,AU,Queensland,-27.503235,152.246541,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,18,Australia,AU,South Australia,-34.887886,138.734915,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2023,10,11,Australia,AU,Queensland,-27.529551,153.115462,EPSG:4326 +HUMAN_OBSERVATION,Todd Deininger,1,,,2024,5,8,Australia,AU,Queensland,-27.275519,152.936588,EPSG:4326 +HUMAN_OBSERVATION,Matt Endacott,1,,,2020,5,16,Australia,AU,South Australia,-35.160124,138.497355,EPSG:4326 +HUMAN_OBSERVATION,corinne_devine,1,,,2021,8,14,Australia,AU,Queensland,-27.54004,153.03281,EPSG:4326 +HUMAN_OBSERVATION,oliverfamily,1,,,2022,3,15,Australia,AU,Queensland,-27.416831,151.937714,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,11,Australia,AU,Queensland,-27.544929,153.072481,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near mowing shed,2024,6,8,Australia,AU,Queensland,-27.52574,153.090595,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Scat collected. Observed by Malcolm Spry. Submitted via email.,2023,11,12,Australia,AU,Queensland,-25.629632,151.621022,EPSG:4326 +HUMAN_OBSERVATION,dtawse,1,MALE,,2022,10,2,Australia,AU,Victoria,-38.888404,145.986142,EPSG:4326 +HUMAN_OBSERVATION,edtonks,1,,,2023,9,3,Australia,AU,Queensland,-26.161042,151.974655,EPSG:4326 +HUMAN_OBSERVATION,Simon Tonge,1,,,2024,7,28,Australia,AU,Victoria,-38.668824,143.860809,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"In a Swamp Gum (E. ovata). Unable to sex, overall impression of a smaller animal.",2024,5,6,Australia,AU,Victoria,-38.496233,142.981531,EPSG:4326 +HUMAN_OBSERVATION,Nick Lambert,1,,,2023,1,27,Australia,AU,New South Wales,-30.43224,152.972154,EPSG:4326 +HUMAN_OBSERVATION,itara,1,,,2024,4,11,Australia,AU,Victoria,-38.317801,142.360924,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,Back joey "CeeJay" in Eucalyptus tereticornis,2022,12,17,Australia,AU,Queensland,-27.41318,152.003187,EPSG:4326 +HUMAN_OBSERVATION,rebecr,1,,,2021,10,21,Australia,AU,South Australia,-34.928711,138.671369,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,10,11,Australia,AU,Queensland,-27.545627,153.073819,EPSG:4326 +HUMAN_OBSERVATION,Gen C,1,,,2024,5,3,Australia,AU,South Australia,-35.036344,138.572424,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Up high,2021,2,14,Australia,AU,Victoria,-38.671272,146.163728,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In Lophostemon confertus. Juvenile,2021,1,8,Australia,AU,Queensland,-27.544998,153.053098,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2022,11,12,Australia,AU,Victoria,-38.327049,142.64183,EPSG:4326 +HUMAN_OBSERVATION,Oscar Dove,1,,,2022,9,5,Australia,AU,New South Wales,-31.460705,152.921661,EPSG:4326 +HUMAN_OBSERVATION,deruy21,1,,,2023,8,27,Australia,AU,Queensland,-28.000969,152.424606,EPSG:4326 +HUMAN_OBSERVATION,cherylcruff,1,,,2023,3,2,Australia,AU,Queensland,-27.166782,152.398626,EPSG:4326 +HUMAN_OBSERVATION,Angus Smith,1,,,2024,6,7,Australia,AU,South Australia,-35.763209,137.793641,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland middle near gully,2023,11,4,Australia,AU,Queensland,-27.527985,153.093756,EPSG:4326 +HUMAN_OBSERVATION,chawkins12,1,,,2020,4,11,Australia,AU,South Australia,-35.00397,138.648467,EPSG:4326 +HUMAN_OBSERVATION,David,1,,First time seeing a koala in Thorndon Park,2022,6,4,Australia,AU,South Australia,-34.875439,138.688478,EPSG:4326 +HUMAN_OBSERVATION,bluebee20,1,,In grey box near road.,2022,9,5,Australia,AU,South Australia,-35.016862,138.616416,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,15,Australia,AU,Queensland,-27.528292,153.112802,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,10,20,Australia,AU,Queensland,-27.544065,153.055423,EPSG:4326 +HUMAN_OBSERVATION,Kelana Arraiza,1,,,2022,7,27,Australia,AU,Queensland,-27.971895,153.234212,EPSG:4326 +HUMAN_OBSERVATION,candyda,1,,Looks like a healthy female no observed collar or tags,2020,6,10,Australia,AU,Queensland,-27.502342,153.260697,EPSG:4326 +HUMAN_OBSERVATION,Hannah Brown,1,,,2023,2,5,Australia,AU,Victoria,-38.254414,145.23971,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,27,Australia,AU,South Australia,-34.890878,138.730458,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Aldi gates gully,2024,10,12,Australia,AU,Queensland,-27.526377,153.093128,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2023,10,11,Australia,AU,Victoria,-36.348055,146.681245,EPSG:4326 +HUMAN_OBSERVATION,deejayr,1,,,2023,10,23,Australia,AU,Queensland,-26.873778,152.587561,EPSG:4326 +HUMAN_OBSERVATION,davidmck,1,FEMALE,,2022,8,19,Australia,AU,Victoria,-37.913747,144.182153,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,11,2,Australia,AU,Queensland,-27.568742,152.102372,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,7,10,Australia,AU,Victoria,-37.586559,143.883209,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Injured. Dog attack. Observed by Gina Macri. Submitted and rescued by Wendy Taylor via msg Released from care 22.10.2024 https://www.inaturalist.org/observations/248675392,2024,9,19,Australia,AU,Queensland,-26.573273,151.972994,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,6,22,Australia,AU,Queensland,-27.527528,153.049583,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,1,27,Australia,AU,Queensland,-27.52681,153.090322,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Koala gave themselves a scratch as I was photographing.,2023,9,3,Australia,AU,Queensland,-27.285092,153.000912,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,3,7,Australia,AU,Queensland,-27.530334,153.103311,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Bloodwood,2023,5,27,Australia,AU,Queensland,-27.551008,153.057916,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Healthy Koala seen this morning, possibly a female.",2021,2,24,Australia,AU,New South Wales,-28.259983,153.399568,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,with Joey,2022,9,13,Australia,AU,Queensland,-27.509552,153.070378,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,12,Australia,AU,Queensland,-27.544272,153.072174,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,5,4,Australia,AU,Queensland,-27.338663,152.612612,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland middle,2023,12,14,Australia,AU,Queensland,-27.527776,153.09271,EPSG:4326 +HUMAN_OBSERVATION,Julie,1,,,2024,6,10,Australia,AU,Victoria,-37.376519,144.733647,EPSG:4326 +HUMAN_OBSERVATION,Alan Dahl,1,MALE,,2020,3,1,Australia,AU,Victoria,-38.811596,143.53332,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2024,8,3,Australia,AU,Victoria,-38.341387,142.636682,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - tag LEFT ear sighted but not shown in pics,2023,4,15,Australia,AU,Queensland,-27.519395,153.102443,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2023,4,30,Australia,AU,Queensland,-27.284458,153.000854,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Tree koalas seen in tree that night.,2020,9,24,Australia,AU,New South Wales,-28.257678,153.40056,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,"Exact location obscured for privacy, on private land. One of two individuals in same tree.",2023,2,13,Australia,AU,Victoria,-38.330081,142.578556,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In Eucalyptus microcorys.,2021,8,15,Australia,AU,Queensland,-27.556102,153.05912,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,5,8,Australia,AU,Victoria,-37.596103,143.870252,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,FEMALE,Young female,2021,12,5,Australia,AU,Queensland,-27.529129,153.103632,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2021,5,2,Australia,AU,South Australia,-34.884307,138.645198,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Soap Tree,2023,11,26,Australia,AU,Queensland,-27.52863,153.034648,EPSG:4326 +HUMAN_OBSERVATION,juliecameron,1,,,2022,3,4,Australia,AU,Victoria,-37.707711,144.183612,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,29,Australia,AU,Queensland,-27.400379,153.437857,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,10,19,Australia,AU,Victoria,-37.63409,143.886444,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,Female koala mid in young ironbark,2024,4,27,Australia,AU,Victoria,-37.849108,144.286022,EPSG:4326 +HUMAN_OBSERVATION,Liv_Tamandua,1,,nearly missed this guy,2023,8,12,Australia,AU,Queensland,-27.51202,153.08287,EPSG:4326 +HUMAN_OBSERVATION,Brodie McMayhem,1,FEMALE,🐨 Koala,2022,9,15,Australia,AU,Queensland,-27.724136,153.186391,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female. Unhealthy. Severely underweight. Can not climb. Deep ear infestation from maggots. Rescued and later euthanised. Observed by Wendy Taylor. Submitted via msg.,2024,11,17,Australia,AU,Queensland,-26.458113,151.821299,EPSG:4326 +HUMAN_OBSERVATION,leito19,1,,,2024,6,11,Australia,AU,Queensland,-19.13079,146.868914,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2022,7,15,Australia,AU,Queensland,-27.565309,153.092239,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,I was just able to make out a koala sitting in this tree. Best photo I could take because it was quite in from the road.,2023,9,17,Australia,AU,Queensland,-27.285261,153.000426,EPSG:4326 +HUMAN_OBSERVATION,prossington,1,,,2020,6,5,Australia,AU,New South Wales,-29.281753,149.987428,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2023,12,22,Australia,AU,Queensland,-26.128011,151.756112,EPSG:4326 +HUMAN_OBSERVATION,glennc,1,,,2023,12,5,Australia,AU,New South Wales,-34.78906,146.789319,EPSG:4326 +HUMAN_OBSERVATION,Daniel Townend,1,,Suspected to have chlamydia.,2021,10,24,Australia,AU,Queensland,-27.624886,153.158058,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,,2024,4,15,Australia,AU,Queensland,-27.512075,153.082678,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,26,Australia,AU,Queensland,-27.529477,153.10589,EPSG:4326 +HUMAN_OBSERVATION,SJM McFish,1,,,2022,2,26,Australia,AU,Victoria,-38.302322,142.368242,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear,2024,6,7,Australia,AU,Queensland,-27.530496,153.103624,EPSG:4326 +HUMAN_OBSERVATION,siroberts17,1,,,2021,3,27,Australia,AU,Queensland,-27.718697,153.161309,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,7,18,Australia,AU,Queensland,-27.537293,153.054916,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,In very spindly gum near eastern fence. Not certain of identification but looks small. Possibly last year's "Fluffy Eared Baby".,2021,1,19,Australia,AU,New South Wales,-30.52073,151.520196,EPSG:4326 +HUMAN_OBSERVATION,grahamcorbin,1,,,2020,12,27,Australia,AU,Queensland,-27.542664,153.072916,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,12,8,Australia,AU,Queensland,-27.507578,153.082575,EPSG:4326 +HUMAN_OBSERVATION,robinssci,1,,,2020,10,24,Australia,AU,Victoria,-38.296532,145.002793,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,Resting in a small Acacia.,2020,3,4,Australia,AU,Queensland,-27.512263,153.080475,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,MALE,"same koala, but one photo later in the day. male, bellowing. Same male that has been here last few days I believe.",2021,11,1,Australia,AU,New South Wales,-28.253998,153.377422,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland- in nursery grounds,2024,1,25,Australia,AU,Queensland,-27.528245,153.092355,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,10,12,Australia,AU,Queensland,-27.550864,153.063446,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In gully near Aldi gates - - along back fence,2023,11,2,Australia,AU,Queensland,-27.526359,153.093137,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Mum and a new baby,2022,12,24,Australia,AU,Queensland,-27.544834,153.071986,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Unidentified koala (perhaps "Spectacle Eyes" in E. caliginosa.,2020,9,2,Australia,AU,New South Wales,-30.520808,151.519082,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,22,Australia,AU,Queensland,-27.53,153.103644,EPSG:4326 +HUMAN_OBSERVATION,joheals,1,,,2024,6,22,Australia,AU,Queensland,-27.510462,153.086381,EPSG:4326 +HUMAN_OBSERVATION,aleckarcz,1,,ZZzZzzzZZzzZzzzzzZZzZZzzZzzZ,2022,5,1,Australia,AU,Queensland,-19.126275,146.868508,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,1,24,Australia,AU,Victoria,-37.733624,143.801744,EPSG:4326 +HUMAN_OBSERVATION,hugepossum,1,MALE,,2023,3,11,Australia,AU,South Australia,-37.182075,140.868605,EPSG:4326 +HUMAN_OBSERVATION,Jay VanderGaast,1,FEMALE,,2024,11,7,Australia,AU,Victoria,-38.78545,143.61855,EPSG:4326 +HUMAN_OBSERVATION,Nick Lambert,1,,,2023,2,2,Australia,AU,New South Wales,-30.433085,152.971828,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,In a Messmate Stringybark (E. obliqua). Seems to be same Koala (in same tree) as yesterday https://inaturalist.ala.org.au/observations/214942244,2024,5,12,Australia,AU,Victoria,-38.500061,142.974992,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Unknown sex. Healthy. Observed by Margie Williams. Forwarded by Messenger,2021,12,10,Australia,AU,Queensland,-26.52471,151.866114,EPSG:4326 +HUMAN_OBSERVATION,thammbamm,1,,,2023,12,18,Australia,AU,Victoria,-37.483008,145.383238,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag Q... LEFT ear - known as Bozo,2023,7,12,Australia,AU,Queensland,-27.527096,153.107595,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,,2022,6,8,Australia,AU,Queensland,-27.545947,153.072831,EPSG:4326 +HUMAN_OBSERVATION,melomysbris,1,,Feeding in Eucalyptus microcorys (tallowood). Sighting by Lorna Ngugi,2023,5,12,Australia,AU,Queensland,-27.484933,152.957374,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,4,22,Australia,AU,Queensland,-27.275333,152.93695,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - green tag LEFT ear - Joe, known as Bozo",2024,5,1,Australia,AU,Queensland,-27.527055,153.109021,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,"Female koala low in yellow gum alert to start then curled up looking relaxed in fork on main trunk 30 minutes later found 3 m higher eating leaves, having a good scratch then moving higher to resume eating Same koala has been found several times in the area including this same tree on 16/1/22 She stayed in this tree for 3 days and could not be found near here on fourth day",2022,8,13,Australia,AU,Victoria,-37.838992,144.286383,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,MALE,"Approached us on track, stopped and looked at us, then walked past and straight down to a creek culvert. It then sat there drinking for 34 minutes. Several times between sips of water she made a sound like a cough or a sneeze. She then walked up about 5 m away and curled up in a crouch to nap on the ground. A passer by said they saw a koala sleeping on the ground about 10 m away from this spot 3 days ago, he wondered if it was the same animal.",2024,6,25,Australia,AU,Victoria,-38.476358,142.971256,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - known as Niki - & joey,2024,11,15,Australia,AU,Queensland,-27.529231,153.104427,EPSG:4326 +HUMAN_OBSERVATION,crafty14,1,,seen a koala at me ole local park 👹,2023,8,13,Australia,AU,Queensland,-27.248705,153.080781,EPSG:4326 +HUMAN_OBSERVATION,nicholascroft,1,,Resident population in Cavendish road high school grounds.,2023,1,19,Australia,AU,Queensland,-27.519561,153.073164,EPSG:4326 +HUMAN_OBSERVATION,donnamareetomkinson,1,FEMALE,,2023,9,9,Australia,AU,Queensland,-26.155908,151.97653,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,17,Australia,AU,Queensland,-27.53055,153.104504,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2022,8,17,Australia,AU,Queensland,-28.075276,152.867166,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,10,22,Australia,AU,Queensland,-27.547348,153.058284,EPSG:4326 +HUMAN_OBSERVATION,Lauren Easey,1,,,2022,4,7,Australia,AU,Queensland,-27.40104,153.438277,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Amongst Cheese trees,2020,10,15,Australia,AU,Queensland,-27.548118,153.058509,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"New male to me interacting with mother and baby initially in same stringy bark. Mother caused male to move to adjacent tree, then 5 minutes later he had returned to mother's tree, but lower than her. Bellowing and squealing. Mother and joey shown in next photo.",2020,10,16,Australia,AU,New South Wales,-30.522595,151.519431,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,"Fairly recent scats, after last rains as still shiny and black Grey gum most likely E.propinqua",2022,11,13,Australia,AU,Queensland,-27.5281,153.034286,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,16,Australia,AU,South Australia,-34.88968,138.729628,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,Linthorpe Environmental Park,2024,11,11,Australia,AU,Queensland,-27.628963,151.65097,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lower car park near woodland - near black fencing over drainage,2024,7,7,Australia,AU,Queensland,-27.526981,153.09277,EPSG:4326 +HUMAN_OBSERVATION,andreamvee,1,,,2020,9,7,Australia,AU,Queensland,-27.176591,152.991915,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Monty,2024,2,13,Australia,AU,South Australia,-34.889559,138.722467,EPSG:4326 +HUMAN_OBSERVATION,magpies_friends,1,,,2023,12,1,Australia,AU,Queensland,-27.499171,153.403783,EPSG:4326 +HUMAN_OBSERVATION,Steve Sorrell,1,,,2021,4,16,Australia,AU,Victoria,-38.323316,142.365485,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Reconyx HF2,2023,1,17,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,11,9,Australia,AU,Victoria,-37.63409,143.886444,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,11,25,Australia,AU,Queensland,-27.507087,153.085532,EPSG:4326 +HUMAN_OBSERVATION,Di Luscombe,1,,,2022,12,1,Australia,AU,South Australia,-35.960385,136.80942,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,Sighted this male koala again this morning in a Eucalyptus microcorys near our old yards. I have a good photo of the definitive nose markings so I can identify him in the future. We have named him Theo.,2023,9,29,Australia,AU,Queensland,-27.41132,152.003703,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In trees next to K block mowing shed,2024,4,2,Australia,AU,Queensland,-27.525649,153.090654,EPSG:4326 +HUMAN_OBSERVATION,ash_tamayo,1,,,2023,5,15,Australia,AU,New South Wales,-34.0506,150.892848,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"Male ""Black Lip"". First sighting since Feb 2021: so pleased to see him again after 14 months gap. Up till Feb 2021 dominant male on 45 Baker Road. First photographed 2015. Seen again on 45 Baker on 1 May, with this observation recorded on iSpy Koala.",2022,4,15,Australia,AU,New South Wales,-30.520863,151.518403,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Stringybark,2020,5,29,Australia,AU,Queensland,-27.545325,153.058136,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2023,12,8,Australia,AU,South Australia,-35.25993,138.558512,EPSG:4326 +HUMAN_OBSERVATION,paulinecranny,1,,,2020,9,4,Australia,AU,Victoria,-38.135009,145.237185,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - green tag LEFT ear - Joe, known as Bozo",2024,7,10,Australia,AU,Queensland,-27.527068,153.107694,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,3,20,Australia,AU,Queensland,-27.528242,153.103228,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,No ear tag visible,2022,10,26,Australia,AU,Queensland,-27.502529,153.071607,EPSG:4326 +HUMAN_OBSERVATION,meltierney,1,,,2022,8,24,Australia,AU,Queensland,-27.70157,152.08258,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,27,Australia,AU,Queensland,-27.401607,153.437941,EPSG:4326 +HUMAN_OBSERVATION,Lana Waller,1,,,2024,6,23,Australia,AU,Queensland,-27.400131,153.437802,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,5,29,Australia,AU,Queensland,-27.544655,153.054004,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,4,24,Australia,AU,Queensland,-27.528894,153.103452,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In gully near Aldi gates Behind chonky boys tree,2024,1,26,Australia,AU,Queensland,-27.525852,153.093244,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,FEMALE,Ear Tagged Koala released to home range from previous nearby location after treatment at RSPCA Wildlife Hospital wacol. Not previously mapped.,2023,11,3,Australia,AU,Queensland,-27.512056,151.93648,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,9,14,Australia,AU,Queensland,-27.528517,153.092799,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,9,29,Australia,AU,Queensland,-27.525537,153.093303,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,3,24,Australia,AU,Queensland,-27.526844,153.09083,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In picnic area near E block Frank Rooney,2023,8,5,Australia,AU,Queensland,-27.526015,153.090698,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,9,13,Australia,AU,Queensland,-27.549843,153.059686,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,6,10,Australia,AU,Queensland,-27.566543,152.11185,EPSG:4326 +HUMAN_OBSERVATION,julietandbrian,1,,,2022,12,28,Australia,AU,Queensland,-27.348402,152.062673,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Approx. 15 metres up. Observed by Amanda Dunstan. Submitted via FB.,2024,11,17,Australia,AU,Queensland,-26.674952,151.779764,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,8,14,Australia,AU,Queensland,-27.527269,153.107388,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,12,9,Australia,AU,Queensland,-27.506252,153.078909,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Presumably Cindy,2023,7,12,Australia,AU,Queensland,-27.527083,153.109003,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to cleaners donga,2024,6,23,Australia,AU,Queensland,-27.526905,153.091789,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,1,20,Australia,AU,Queensland,-27.525811,153.092673,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Female & Joey,2021,9,22,Australia,AU,Victoria,-37.641822,143.901148,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult female with joey. Healthy. Observed by Rebecca Pohle in trees above powered campsite #10. Submitted via email.,2023,10,1,Australia,AU,Queensland,-26.102688,151.45221,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,MALE,,2023,11,6,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,12,18,Australia,AU,Queensland,-27.532734,153.038505,EPSG:4326 +HUMAN_OBSERVATION,wwendy,1,,Observed sleeping in a tree on the eastern side of our home. We have seen koalas in this tree in the past.,2022,9,26,Australia,AU,Queensland,-27.267989,152.048961,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2024,10,5,Australia,AU,Queensland,-27.509773,153.088975,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,8,1,Australia,AU,Queensland,-27.82383,152.991812,EPSG:4326 +HUMAN_OBSERVATION,fish,1,,,2024,11,9,Australia,AU,Queensland,-27.543189,153.076945,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,"Female koala high in young manna gum, alert and watching me. Found by Janine yesterday near here",2024,4,9,Australia,AU,Victoria,-37.859328,144.252565,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,6,20,Australia,AU,New South Wales,-28.25403,153.377444,EPSG:4326 +HUMAN_OBSERVATION,genslattery,1,,,2021,12,22,Australia,AU,Victoria,-38.65152,146.202117,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,Female call from same locality as previous recording,2024,8,16,Australia,AU,Queensland,-27.510634,153.070057,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,FEMALE,"Mum nervously looking up at her young one and the same E.tereticornis a few branches above her. Spotlight counts: 26/7 18:00-18:45 1 observer JoT, 2 koalas. Male koala heard 26/7 19:05, 27/7 2:05, 3:35, towards river WSouthWest corner of property. Minimum number of koalas known to be on the property 5.",2024,7,26,Australia,AU,Queensland,-27.823414,152.993061,EPSG:4326 +HUMAN_OBSERVATION,Isaac Clarey,1,,,2022,10,1,Australia,AU,Victoria,-38.545853,143.732692,EPSG:4326 +HUMAN_OBSERVATION,fobhm,1,,,2023,3,1,Australia,AU,South Australia,-34.87396,138.712012,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,14,Australia,AU,Queensland,-27.527953,153.11145,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy Koala Observation by J Miller for TKWR,2023,9,16,Australia,AU,Queensland,-27.483677,151.874817,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,,2023,3,21,Australia,AU,South Australia,-35.096675,138.584569,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Local wild koala in tree.,2023,7,23,Australia,AU,Queensland,-27.284595,153.000952,EPSG:4326 +HUMAN_OBSERVATION,tstayns,1,,,2022,2,7,Australia,AU,Victoria,-38.398875,142.991272,EPSG:4326 +HUMAN_OBSERVATION,Lorraine Phelan,1,,,2022,5,5,Australia,AU,Victoria,-38.268262,141.417437,EPSG:4326 +HUMAN_OBSERVATION,Gary,1,,,2024,7,24,Australia,AU,New South Wales,-28.891611,153.17408,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Underneath thick Minkey rope Vine,2020,3,4,Australia,AU,Queensland,-27.551184,153.057898,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,29,Australia,AU,Queensland,-27.527797,153.103361,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lower car park on Cavendish Road - at entrance of car park Male,2023,10,15,Australia,AU,Queensland,-27.525449,153.090282,EPSG:4326 +HUMAN_OBSERVATION,Max,1,MALE,,2023,7,23,Australia,AU,Queensland,-26.894525,152.29367,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,4,19,Australia,AU,South Australia,-35.007917,138.651757,EPSG:4326 +HUMAN_OBSERVATION,insiderelic,1,,,2022,1,14,Australia,AU,South Australia,-34.865683,138.683931,EPSG:4326 +HUMAN_OBSERVATION,Peter Crowcroft,1,,,2024,10,12,Australia,AU,South Australia,-35.005276,138.637482,EPSG:4326 +HUMAN_OBSERVATION,Richard Moore,1,,,2023,11,10,Australia,AU,Queensland,-19.126917,146.868083,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,2,12,Australia,AU,South Australia,-35.96032,136.809402,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,TAFE Aldi entrance - just outside gate,2023,5,30,Australia,AU,Queensland,-27.526754,153.093342,EPSG:4326 +HUMAN_OBSERVATION,Greg Spearritt,1,,,2020,11,28,Australia,AU,Queensland,-28.254267,151.664842,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,4,23,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,,"#roadkill found dead. Male Koala on side of the road hit by car, obvious head trauma.",2021,11,10,Australia,AU,South Australia,-35.176127,138.721252,EPSG:4326 +HUMAN_OBSERVATION,markguthrie,1,,,2020,11,9,Australia,AU,Victoria,-38.627043,146.181779,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,3,2,Australia,AU,Queensland,-27.550633,153.06051,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,Koala scratches in a E. tereticornis,2024,4,6,Australia,AU,Queensland,-27.822378,152.991133,EPSG:4326 +HUMAN_OBSERVATION,joanneianson,1,,,2023,1,27,Australia,AU,Victoria,-37.685101,144.474713,EPSG:4326 +HUMAN_OBSERVATION,drdoug4065,1,,,2024,10,30,Australia,AU,Queensland,-27.465413,152.960102,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,9,Australia,AU,Queensland,-27.528054,153.092336,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey in same tree. Mum's bum is stained but not wet,2023,11,14,Australia,AU,Queensland,-27.527248,153.107727,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,22,Australia,AU,Queensland,-27.529251,153.10609,EPSG:4326 +HUMAN_OBSERVATION,Torbjorn von Strokirch,1,,,2021,10,31,Australia,AU,Victoria,-38.631333,145.736417,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,Male. Grunting in late afternoon. In Forest Redgum.,2021,11,24,Australia,AU,Queensland,-27.329022,151.935013,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree car park CFO20 Jaye Mallet?Yellow tag right ear 1075,2023,11,14,Australia,AU,Queensland,-27.52699,153.091497,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,2,Australia,AU,Queensland,-27.527201,153.092147,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male,2023,12,16,Australia,AU,Queensland,-27.5275,153.1104,EPSG:4326 +HUMAN_OBSERVATION,ladymichele,1,,,2021,2,13,Australia,AU,South Australia,-35.013932,138.652906,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2022,2,11,Australia,AU,Victoria,-37.061315,145.559476,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2024,4,22,Australia,AU,Queensland,-27.508314,153.080561,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - white tag LEFT ear - Bandit,2024,7,10,Australia,AU,Queensland,-27.529527,153.111295,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2023,8,5,Australia,AU,New South Wales,-33.169853,151.246095,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,9,23,Australia,AU,Victoria,-37.599598,143.877408,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2023,10,2,Australia,AU,New South Wales,-31.442307,152.901543,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Wilemina,2024,1,30,Australia,AU,South Australia,-34.890452,138.732072,EPSG:4326 +HUMAN_OBSERVATION,Mel Mitchell,1,,"Duck Lagoon Camping Reserve, Kangaroo Island SA",2022,12,30,Australia,AU,South Australia,-35.707286,137.494975,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2023,7,28,Australia,AU,Queensland,-27.528877,153.104093,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,In the first photo this male is scent-marking the tree with his chest gland. In fact the whole purpose of his short climb about 2m up this tree was to scent mark it. LCA3145 (koala presence record No.3145 by Lockyer Community Action Inc.),2023,2,28,Australia,AU,Queensland,-27.49628,152.24933,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,With a baby,2022,1,8,Australia,AU,Victoria,-38.139051,145.282539,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,6,29,Australia,AU,Queensland,-27.583787,153.151142,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,6,14,Australia,AU,Queensland,-26.393532,152.662787,EPSG:4326 +HUMAN_OBSERVATION,porkytama,1,,,2024,7,31,Australia,AU,Victoria,-38.318662,142.36361,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Mum and joey.,2023,9,2,Australia,AU,Queensland,-27.284485,153.000851,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,MALE,"Old one-eye. Male, missing right eye. Left eye healthy looking. Rump dirty but not wet. Urine staining on tree. In Eucalyptus tereticornis (blue gum) ~35cm DBH.",2021,11,14,Australia,AU,Queensland,-27.457563,152.401655,EPSG:4326 +HUMAN_OBSERVATION,rosewise,1,,,2024,9,21,Australia,AU,New South Wales,-28.875798,153.162292,EPSG:4326 +HUMAN_OBSERVATION,Sharon Dodd,1,,,2022,10,30,Australia,AU,Victoria,-38.358693,146.387667,EPSG:4326 +HUMAN_OBSERVATION,Sharon Dodd,1,,,2024,9,15,Australia,AU,Victoria,-38.360263,146.387489,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3127 (From video by Bob Brown),2022,5,29,Australia,AU,Queensland,-27.53118,152.1833,EPSG:4326 +HUMAN_OBSERVATION,victoria2000,1,,"Third koala we spotted in Coombabah, in a tree nearby from the second one we saw. This one was scratching and moving",2023,4,25,Australia,AU,Queensland,-27.911922,153.372697,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,Top koala,2024,9,24,Australia,AU,Queensland,-27.224047,153.06955,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2023,10,3,Australia,AU,New South Wales,-31.442345,152.901505,EPSG:4326 +HUMAN_OBSERVATION,lisastevo,1,,,2024,9,20,Australia,AU,Queensland,-27.508776,153.085294,EPSG:4326 +HUMAN_OBSERVATION,Pete Woodall,1,,"Phone photo so poor but the blob is definitely a koala, seen thru my binos.",2022,6,29,Australia,AU,Queensland,-27.505109,153.105524,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,6,Australia,AU,Queensland,-27.543561,153.072707,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Sharon Pattinson. Submitted by Denise Shaw via email.,2023,10,6,Australia,AU,Queensland,-26.509306,151.980172,EPSG:4326 +HUMAN_OBSERVATION,lunch33,1,,,2020,3,17,Australia,AU,South Australia,-34.825,135.682525,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,6,4,Australia,AU,Queensland,-27.550926,153.05401,EPSG:4326 +HUMAN_OBSERVATION,Allison Wall,1,,,2022,2,23,Australia,AU,Victoria,-37.679616,144.377039,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds Female,2024,4,27,Australia,AU,Queensland,-27.527921,153.092286,EPSG:4326 +HUMAN_OBSERVATION,Dave Kuchel,1,,,2021,7,23,Australia,AU,South Australia,-34.933675,138.511244,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,FEMALE,Reported by K Mazaraki,2023,7,3,Australia,AU,Victoria,-37.772496,144.304401,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2021,2,15,Australia,AU,Queensland,-27.516782,153.090909,EPSG:4326 +HUMAN_OBSERVATION,Andrew Rock,1,,Toohey Forest,2021,6,19,Australia,AU,Queensland,-27.543777,153.054849,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,24,Australia,AU,South Australia,-34.891691,138.718884,EPSG:4326 +HUMAN_OBSERVATION,Zoë Davis,1,,,2024,1,28,Australia,AU,Victoria,-38.833038,143.516073,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Female - olive green tag RIGHT ear - either Becky or Mary, with joey",2023,9,18,Australia,AU,Queensland,-27.52942,153.109417,EPSG:4326 +HUMAN_OBSERVATION,Colin Trainor,1,,,2022,8,5,Australia,AU,Queensland,-27.526185,153.282641,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,8,23,Australia,AU,Victoria,-37.650408,143.919774,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,1,21,Australia,AU,Queensland,-27.527683,153.092488,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,"Female koala sitting on mistletoe mid in yellow gum Anakie VIC Note GPS is incorrect, should be -37.8781140, 144.2665930",2023,12,8,Australia,AU,Victoria,-37.864889,144.245493,EPSG:4326 +HUMAN_OBSERVATION,Hiroya Kidoguchi,1,,,2023,4,8,Australia,AU,Queensland,-27.922134,153.38145,EPSG:4326 +HUMAN_OBSERVATION,Federico,1,,,2024,7,27,Australia,AU,Queensland,-28.127324,153.443218,EPSG:4326 +HUMAN_OBSERVATION,Charles Dove,1,,,2023,7,25,Australia,AU,Queensland,-27.323957,151.86171,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear Mother and joey,2023,11,11,Australia,AU,Queensland,-27.527867,153.093018,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey Maisie,2023,11,18,Australia,AU,Queensland,-27.527278,153.09161,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey gum,2021,12,26,Australia,AU,Queensland,-27.5364,153.036656,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2023,2,26,Australia,AU,New South Wales,-31.44227,152.9021,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2023,4,5,Australia,AU,Victoria,-37.051797,145.387534,EPSG:4326 +HUMAN_OBSERVATION,maxicole,1,MALE,"male koala 'Bandit' (metal tag in right ear, white tag in left ear, triangluar pink marking on nose) Koala spotting walk with Jo, Alison and friends from UK",2024,7,21,Australia,AU,Queensland,-27.529659,153.10967,EPSG:4326 +HUMAN_OBSERVATION,Anneke Logan,1,,Male?,2022,11,27,Australia,AU,Queensland,-27.265864,152.049101,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" Male very high in top E. blakelyi. Within his usual territory.",2020,5,26,Australia,AU,New South Wales,-30.520765,151.520479,EPSG:4326 +HUMAN_OBSERVATION,rachelduckherd,1,,,2023,9,24,Australia,AU,Queensland,-27.507569,153.082786,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,In mum’s tree,2024,9,15,Australia,AU,Queensland,-27.526484,153.09102,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,,2023,11,10,Australia,AU,Queensland,-27.18757,152.555437,EPSG:4326 +HUMAN_OBSERVATION,trevinbne,1,,,2023,11,25,Australia,AU,South Australia,-35.706873,137.493442,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Mum & Joey asleep in Flooded Gum.,2021,10,10,Australia,AU,New South Wales,-28.25848,153.401823,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,2,6,Australia,AU,Queensland,-27.413336,152.003178,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2023,8,20,Australia,AU,Queensland,-27.96093,153.302391,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road 2 koalas same tree,2024,6,9,Australia,AU,Queensland,-27.527493,153.090942,EPSG:4326 +HUMAN_OBSERVATION,kb2700,1,,,2024,9,21,Australia,AU,New South Wales,-34.76584,146.587803,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,No ear tags visible. Was also in same tree previous day.,2023,6,2,Australia,AU,Queensland,-27.510886,153.071645,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,5,26,Australia,AU,Queensland,-27.527534,153.102999,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy Koala- Toowoomba Showgrounds. Checked and observed by Bernice - Rspca & J Gray - Toowoomba Koala & Wildlife Rescue,2022,11,24,Australia,AU,Queensland,-27.559855,151.88333,EPSG:4326 +HUMAN_OBSERVATION,Elysa Hazzard,1,,,2023,7,2,Australia,AU,Queensland,-27.914843,153.373963,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,K block mowing shed,2024,11,3,Australia,AU,Queensland,-27.525953,153.091028,EPSG:4326 +HUMAN_OBSERVATION,cauzsa,1,,Heard some Calling out this morning of a male Koala behind us and this one in front of our property. Enjoying the rain,2023,12,1,Australia,AU,Victoria,-37.653024,143.932051,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,12,12,Australia,AU,Queensland,-27.509074,153.085319,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2023,5,18,Australia,AU,South Australia,-34.887824,138.634411,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,24,Australia,AU,South Australia,-34.890106,138.723081,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,,2021,12,13,Australia,AU,Queensland,-27.540147,153.076706,EPSG:4326 +HUMAN_OBSERVATION,Anneke Logan,1,,This koala is unwell and will be attended to.,2024,11,21,Australia,AU,Queensland,-27.28358,152.108311,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,11,7,Australia,AU,South Australia,-34.951234,138.67187,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2024,3,24,Australia,AU,Queensland,-27.528465,153.092867,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland Mother and joey,2024,9,29,Australia,AU,Queensland,-27.527853,153.093743,EPSG:4326 +HUMAN_OBSERVATION,nim2999,1,,Koala,2022,10,27,Australia,AU,Victoria,-37.563316,149.760391,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag 1317 LEFT ear - Thor,2024,6,22,Australia,AU,Queensland,-27.528385,153.112807,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Young male. Healthy. Observed by Kerry O'Brien. Submitted by Wendy Taylor via msg.,2023,12,11,Australia,AU,Queensland,-26.544575,151.949888,EPSG:4326 +HUMAN_OBSERVATION,battagv,1,,,2021,11,28,Australia,AU,Queensland,-27.598737,151.737356,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Quite brown colouring,2020,3,31,Australia,AU,Victoria,-37.595255,143.874747,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,3,Australia,AU,South Australia,-34.890375,138.721374,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - white tag LEFT ear - Bandit,2023,9,23,Australia,AU,Queensland,-27.529866,153.110703,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Woowookarung Park,2020,10,20,Australia,AU,Victoria,-37.593995,143.893367,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,11,21,Australia,AU,Queensland,-27.540722,153.06237,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Reconyx HF2,2023,2,25,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,Scott Warner,1,,,2023,8,20,Australia,AU,Queensland,-27.264707,152.059333,EPSG:4326 +HUMAN_OBSERVATION,Jason Ramsay,1,,,2023,1,20,Australia,AU,Queensland,-27.284646,152.993598,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.922488,147.729263,EPSG:4326 +HUMAN_OBSERVATION,janlmcdougall,1,,Neighbours yard,2023,6,10,Australia,AU,Queensland,-27.52376,153.084563,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Koala mum and her joey. Have also provided photo which shows mum and joey sitting in tree which has another koala (male) in near by branch.,2023,8,13,Australia,AU,Queensland,-27.284347,153.000797,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,5,26,Australia,AU,Queensland,-27.527339,153.091235,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,FEMALE,Mother and joey,2023,1,16,Australia,AU,Queensland,-27.529713,153.104808,EPSG:4326 +HUMAN_OBSERVATION,Cobi Calyx,1,,,2021,2,11,Australia,AU,South Australia,-35.02011,138.574746,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,,2023,3,17,Australia,AU,Queensland,-27.550959,153.057571,EPSG:4326 +HUMAN_OBSERVATION,Tom Wilson,1,,,2021,12,20,Australia,AU,South Australia,-34.903008,138.703553,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,11,1,Australia,AU,Queensland,-27.16358,152.58853,EPSG:4326 +HUMAN_OBSERVATION,pawprintz,1,MALE,,2024,10,4,Australia,AU,Victoria,-37.94035,145.638222,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,19,Australia,AU,Queensland,-27.529388,153.105381,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2023,11,26,Australia,AU,South Australia,-34.922337,138.693772,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Tracked koala,2023,12,5,Australia,AU,Queensland,-27.985017,153.35501,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,2,9,Australia,AU,New South Wales,-33.076503,151.095122,EPSG:4326 +HUMAN_OBSERVATION,natduck,1,,,2021,2,7,Australia,AU,Victoria,-38.316153,142.367258,EPSG:4326 +HUMAN_OBSERVATION,alisonswain,1,,,2020,10,22,Australia,AU,New South Wales,-36.168217,149.384275,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Back of woodland area near blue bin,2023,6,18,Australia,AU,Queensland,-27.52842,153.09241,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult male. Healthy. Observed by Andrew Hohl. Submitted by Denise Shaw via email,2022,8,28,Australia,AU,Queensland,-26.399767,151.820923,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag - & joey,2023,2,24,Australia,AU,Queensland,-27.528763,153.103406,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Spotted by Sameera Bashir behind lake Talbot,2023,9,26,Australia,AU,New South Wales,-34.753796,146.586999,EPSG:4326 +HUMAN_OBSERVATION,msmsms,1,,Photo credit: Tina Hooper,2022,5,2,Australia,AU,South Australia,-34.8593,138.656896,EPSG:4326 +HUMAN_OBSERVATION,Michael Tervo,1,,,2024,8,24,Australia,AU,Queensland,-27.510928,153.084458,EPSG:4326 +HUMAN_OBSERVATION,parwanfarm,1,,,2023,4,6,Australia,AU,Victoria,-37.75238,144.272522,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2020,7,4,Australia,AU,Queensland,-27.454285,152.641229,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2024,3,21,Australia,AU,Queensland,-27.547835,153.058549,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,6,Australia,AU,Queensland,-27.529845,153.110464,EPSG:4326 +HUMAN_OBSERVATION,kirstlebut,1,,,2023,10,29,Australia,AU,Queensland,-27.552138,151.512847,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2023,7,10,Australia,AU,Queensland,-27.529448,153.10482,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,1,24,Australia,AU,Queensland,-27.587939,151.732557,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,11,6,Australia,AU,Queensland,-27.521063,153.104801,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2023,2,20,Australia,AU,South Australia,-34.953798,138.688876,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,4,6,Australia,AU,South Australia,-34.931865,138.705905,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,12,30,Australia,AU,Victoria,-38.671105,146.163772,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A5 RIGHT ear - Cindy,2023,10,10,Australia,AU,Queensland,-27.527118,153.108266,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2023,10,22,Australia,AU,Queensland,-27.526855,153.090541,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,this is in a tree used by koalas 2 but I am not sure of the identification as could just not see sufficient markings or face.,2020,6,25,Australia,AU,New South Wales,-28.252995,153.376666,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2023,10,18,Australia,AU,Queensland,-27.527247,153.107267,EPSG:4326 +HUMAN_OBSERVATION,Graham Possingham,1,,Same individual as https://inaturalist.ala.org.au/observations/202775337,2024,3,17,Australia,AU,Victoria,-38.481553,143.915367,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,11,4,Australia,AU,Queensland,-27.529707,153.104488,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2022,10,16,Australia,AU,South Australia,-35.035222,138.570949,EPSG:4326 +HUMAN_OBSERVATION,melcm,1,,,2023,7,26,Australia,AU,Victoria,-37.691048,144.031142,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,8,9,Australia,AU,Queensland,-27.256998,152.044708,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,3,31,Australia,AU,Queensland,-27.524978,153.093706,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,6,18,Australia,AU,Queensland,-27.551863,153.057848,EPSG:4326 +HUMAN_OBSERVATION,everlastingdaisy,1,,,2024,7,20,Australia,AU,Queensland,-28.236213,152.747787,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in a Eucalyptus tereticornis,2024,6,20,Australia,AU,Queensland,-27.850113,152.514944,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2021,8,21,Australia,AU,South Australia,-35.015767,138.650375,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2023,8,22,Australia,AU,Queensland,-27.553274,153.052864,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear,2024,10,16,Australia,AU,Queensland,-27.529773,153.103727,EPSG:4326 +HUMAN_OBSERVATION,Tommi Mason,1,,,2023,3,10,Australia,AU,Queensland,-26.394889,153.000985,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,11,Australia,AU,Queensland,-27.527038,153.090761,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,5,8,Australia,AU,Queensland,-27.538031,153.061049,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,4,10,Australia,AU,Queensland,-27.506273,153.082812,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,22,Australia,AU,South Australia,-34.892726,138.713728,EPSG:4326 +HUMAN_OBSERVATION,tara_lynch,1,,,2021,8,28,Australia,AU,New South Wales,-30.465162,152.898072,EPSG:4326 +HUMAN_OBSERVATION,mad_exotics_and_reptile_care,1,,"Kayaking along Cooby Dam, QLD, Wildlife Observations; sited multiple Koala (phascolarctos) in 3 trees along bank. Koala site 3",2023,1,22,Australia,AU,Queensland,-27.385276,151.944917,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,7,Australia,AU,Queensland,-27.527541,153.102756,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,8,26,Australia,AU,New South Wales,-28.253838,153.376614,EPSG:4326 +HUMAN_OBSERVATION,emilyhoskin,1,,,2024,9,7,Australia,AU,South Australia,-34.844521,138.714506,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,8,Australia,AU,Queensland,-26.314643,151.737979,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,20,Australia,AU,Queensland,-27.529699,153.104834,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear - known as Buster,2024,2,21,Australia,AU,Queensland,-27.529205,153.105822,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,9,21,Australia,AU,Queensland,-27.180677,152.562943,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,10,Australia,AU,Queensland,-27.649204,151.710785,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,"Heard koala & took video, this is the sound taken off the video of the koalas. Think this is the female koala. Video: L. Clere",2020,1,14,Australia,AU,New South Wales,-28.275582,153.394861,EPSG:4326 +HUMAN_OBSERVATION,Eric Knight,1,,,2024,1,6,Australia,AU,Victoria,-38.668088,143.854296,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,13,Australia,AU,Queensland,-26.112093,151.779174,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2023,11,14,Australia,AU,New South Wales,-34.101905,150.822845,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,12,Australia,AU,Queensland,-27.530555,153.104042,EPSG:4326 +HUMAN_OBSERVATION,Ciaran,1,,,2022,3,3,Australia,AU,South Australia,-34.205486,140.702896,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,5,Australia,AU,Queensland,-27.527938,153.109566,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,6,15,Australia,AU,Queensland,-27.527089,153.09078,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Yellow tag just visible right ear Likely Mara,2024,3,10,Australia,AU,Queensland,-27.526669,153.090349,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,12,20,Australia,AU,Victoria,-38.671178,146.163803,EPSG:4326 +HUMAN_OBSERVATION,Romain SOUCHAUD,1,,,2024,5,5,Australia,AU,Queensland,-19.12525,146.869694,EPSG:4326 +HUMAN_OBSERVATION,emma,1,,In tree in the front garden of a house in Sandy Point next to street.,2024,2,16,Australia,AU,Victoria,-38.826817,146.118402,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to cleaners donga,2024,2,11,Australia,AU,Queensland,-27.526878,153.091611,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,31,Australia,AU,South Australia,-34.890237,138.730258,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood mum with independent Joey,2021,10,13,Australia,AU,Queensland,-27.551619,153.057551,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,5,3,Australia,AU,Queensland,-27.547945,153.058017,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female with Joey. Possible conjunctivitis. Observed by Teneal Watson. Submitted by Wendy Taylor via msg.,2024,10,25,Australia,AU,Queensland,-26.22482,151.846364,EPSG:4326 +HUMAN_OBSERVATION,Neil Huth,1,,,2021,1,22,Australia,AU,Queensland,-27.311774,152.267375,EPSG:4326 +HUMAN_OBSERVATION,Roxanne Lazarus,1,FEMALE,"""Athena""",2023,1,13,Australia,AU,New South Wales,-33.447762,150.646973,EPSG:4326 +HUMAN_OBSERVATION,Marie Tarrant,1,,Koala breeding season. Believe this one is a male. Became active and vocal around 5pm this evening around the property,2022,1,10,Australia,AU,Queensland,-27.249316,152.824358,EPSG:4326 +HUMAN_OBSERVATION,sarah macdonald,1,,,2020,5,29,Australia,AU,South Australia,-34.902689,138.701717,EPSG:4326 +HUMAN_OBSERVATION,maudieo,1,,,2021,11,10,Australia,AU,Queensland,-27.273434,152.055269,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2023,9,24,Australia,AU,Queensland,-27.283681,152.999062,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,9,29,Australia,AU,Queensland,-27.527196,153.09169,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,MALE,,2022,10,23,Australia,AU,Queensland,-27.524008,153.084462,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland entrance,2024,1,20,Australia,AU,Queensland,-27.527674,153.092532,EPSG:4326 +HUMAN_OBSERVATION,duke_n,1,,2,2023,1,28,Australia,AU,Victoria,-38.481041,146.773733,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" Male high in large E. blakelyi at top of path",2020,5,16,Australia,AU,New South Wales,-30.520908,151.520666,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Koala scat under Eucalyptus mannifera,2023,4,22,Australia,AU,New South Wales,-36.093794,149.229492,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Very healthy looking with beautiful coat.,2020,5,21,Australia,AU,New South Wales,-28.257928,153.400813,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,8,22,Australia,AU,Queensland,-27.549144,153.059191,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,1,20,Australia,AU,New South Wales,-29.73011,151.084863,EPSG:4326 +HUMAN_OBSERVATION,SBERRY,1,,Lots of these scats under Eucalyptus tree.,2024,9,21,Australia,AU,Victoria,-38.264253,145.232925,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,7,Australia,AU,Queensland,-27.527283,153.092405,EPSG:4326 +HUMAN_OBSERVATION,shazza2022,1,,,2023,9,10,Australia,AU,Queensland,-27.709042,152.917929,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Webster. Forwarded by email.,2020,1,5,Australia,AU,Queensland,-26.409729,151.8156,EPSG:4326 +HUMAN_OBSERVATION,mtarca,1,,,2020,4,27,Australia,AU,South Australia,-35.002042,138.602495,EPSG:4326 +HUMAN_OBSERVATION,joel_ellis,1,,,2024,7,30,Australia,AU,Victoria,-37.653061,143.919083,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2024,2,17,Australia,AU,Queensland,-27.545424,153.059574,EPSG:4326 +HUMAN_OBSERVATION,benmoore,1,,"scratches on trunk of grey gum, E. punctata No koala observed by me, but koala was sighted by others in the vicinity the previous week, including suggestion of pellets of a size consistent with a mother and joey. At least 5 E. punctata within 50m radius with scratches. Alongside trail on ridge-top",2021,8,22,Australia,AU,New South Wales,-33.635833,150.567222,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,5,21,Australia,AU,Queensland,-27.529251,153.103818,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringy bark with a male calling bottom left of water tank as you look down the hill to east,2023,1,22,Australia,AU,Queensland,-27.536211,153.037102,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,17,Australia,AU,Queensland,-27.529454,153.111487,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,29,Australia,AU,South Australia,-34.892709,138.721331,EPSG:4326 +HUMAN_OBSERVATION,joenviro,1,,,2023,2,19,Australia,AU,New South Wales,-32.706138,152.063203,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"no indication of illhealth at rear end, resting in a large Forest red Gum.",2024,9,8,Australia,AU,Queensland,-27.510098,153.068808,EPSG:4326 +HUMAN_OBSERVATION,ainslielangdon,1,,'The Falls' on Waterlot,2023,4,15,Australia,AU,Queensland,-21.453861,149.169603,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,11,1,Australia,AU,Queensland,-27.525846,153.092034,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,11,5,Australia,AU,Queensland,-27.570475,152.102858,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2024,8,15,Australia,AU,Queensland,-26.154302,151.749065,EPSG:4326 +HUMAN_OBSERVATION,Pete Woodall,1,,Jun-75,2020,8,4,Australia,AU,Queensland,-27.539771,153.033118,EPSG:4326 +HUMAN_OBSERVATION,Sharon Pearson,1,,,2022,7,6,Australia,AU,Queensland,-27.393478,153.442232,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,31,Australia,AU,Queensland,-27.528908,153.103774,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Koala is very hard to hear, sorry. Every time I got closer he stopped calling. Turn the volume right up!",2021,8,30,Australia,AU,New South Wales,-28.258863,153.4021,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,MALE,"In a Manna Gum (E.viminalis). A male, we heard it bellow, as it moved position, now seems to be settling into a nap.",2024,7,17,Australia,AU,Victoria,-38.502644,142.983536,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,MALE,"Male, visible testes. In tree by council access road",2023,8,20,Australia,AU,Queensland,-27.531856,153.099674,EPSG:4326 +HUMAN_OBSERVATION,chrisbarclay,1,,Young male,2023,2,19,Australia,AU,Queensland,-26.721647,152.921655,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,8,25,Australia,AU,Queensland,-27.62997,151.572997,EPSG:4326 +HUMAN_OBSERVATION,Rachel Wade,1,,"Sighted on acreage property at 1481 Currumbin Creek Road, Currumbin Valley",2021,7,3,Australia,AU,Queensland,-28.219027,153.379641,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey gum,2023,3,5,Australia,AU,Queensland,-27.544911,153.059086,EPSG:4326 +HUMAN_OBSERVATION,Enya Hermsen,1,,,2023,7,15,Australia,AU,Queensland,-27.539354,153.044471,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery,2024,10,27,Australia,AU,Queensland,-27.527287,153.0914,EPSG:4326 +HUMAN_OBSERVATION,Steve Dew,1,,,2023,9,13,Australia,AU,Queensland,-21.7566,148.836585,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,4,8,Australia,AU,New South Wales,-33.076467,151.095139,EPSG:4326 +HUMAN_OBSERVATION,Dr. Jessa Thurman,1,,,2023,10,30,Australia,AU,Queensland,-28.19339,153.187791,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,10,6,Australia,AU,Queensland,-27.524037,153.09329,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2024,4,9,Australia,AU,Victoria,-37.6435,143.896463,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.924183,147.730562,EPSG:4326 +HUMAN_OBSERVATION,juliasides-anniebuden,1,,Apollo Bay Eco YHA,2022,1,3,Australia,AU,Victoria,-38.75853,143.66835,EPSG:4326 +HUMAN_OBSERVATION,Tansnaturediary,1,,,2022,6,5,Australia,AU,Victoria,-37.336988,144.11989,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,10,23,Australia,AU,Queensland,-27.583787,153.151142,EPSG:4326 +HUMAN_OBSERVATION,simonhughes65,1,,,2021,9,10,Australia,AU,New South Wales,-28.525812,153.000275,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Young female. Injured. Vehicle collision. Rescued by Wendy Taylor. Submitted via msg.,2024,9,18,Australia,AU,Queensland,-26.256383,151.83715,EPSG:4326 +HUMAN_OBSERVATION,seamus-doherty,1,,,2021,5,2,Australia,AU,South Australia,-35.08766,138.689223,EPSG:4326 +HUMAN_OBSERVATION,A,1,,,2022,10,1,Australia,AU,Victoria,-37.91057,147.73359,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2024,3,23,Australia,AU,Queensland,-27.55629,153.059291,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,22,Australia,AU,South Australia,-34.890591,138.722209,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Plenty of evidence of koala use in tree on edge of paddock.,2024,10,28,Australia,AU,Queensland,-27.851109,152.680448,EPSG:4326 +HUMAN_OBSERVATION,Pete Petinatos,1,,,2022,12,5,Australia,AU,Victoria,-38.318633,142.363197,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,7,6,Australia,AU,New South Wales,-28.25287,153.376691,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,12,12,Australia,AU,Victoria,-37.579232,143.89601,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Female - red tag A... RIGHT ear, probably Cindy",2023,6,2,Australia,AU,Queensland,-27.527049,153.109002,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,4,29,Australia,AU,Queensland,-27.539173,153.05394,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,7,Australia,AU,South Australia,-34.887707,138.727714,EPSG:4326 +HUMAN_OBSERVATION,jcadermann,1,,Koala moved after 2hr feeding in younger gum (planted on property approximately 35yrs ago) to a big blue gum in neighbouring property.,2022,10,9,Australia,AU,Queensland,-28.125575,152.945922,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,11,4,Australia,AU,Victoria,-38.671492,146.164159,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2024,6,19,Australia,AU,Queensland,-27.529018,153.103312,EPSG:4326 +HUMAN_OBSERVATION,allisonskalnik,1,,,2024,11,16,Australia,AU,Queensland,-27.429829,153.535508,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,? red tag RIGHT ear - possibly Cindy,2023,12,16,Australia,AU,Queensland,-27.527507,153.11048,EPSG:4326 +HUMAN_OBSERVATION,Mel,1,,,2020,4,24,Australia,AU,South Australia,-34.965054,138.654496,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey inTallowwood,2021,7,17,Australia,AU,Queensland,-27.551297,153.057439,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,"Healthy Koala- crossed the road and climbed tree on road verge of Wirraglen Road, Highfields. Checked by Toowoomba Koala and Wildlife Rescue",2022,10,27,Australia,AU,Queensland,-27.444527,151.954588,EPSG:4326 +HUMAN_OBSERVATION,Liz,1,,,2021,7,10,Australia,AU,South Australia,-34.903078,138.702963,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,This was a large koala. it was also doing a lot of bellowing.,2020,8,23,Australia,AU,New South Wales,-28.25385,153.377304,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. observed 50m from another male and female by Wendy Taylor. Submitted by Denise Shaw via email.,2023,8,27,Australia,AU,Queensland,-26.15951,151.753515,EPSG:4326 +HUMAN_OBSERVATION,lynsh,1,,,2024,9,18,Australia,AU,Queensland,-27.916619,153.373631,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,12,7,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,fflurlfw,1,,,2020,12,1,Australia,AU,Queensland,-27.499442,153.181864,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,Photo sue adams,2020,12,22,Australia,AU,Victoria,-37.540278,149.744307,EPSG:4326 +HUMAN_OBSERVATION,anniesn,1,,,2022,3,16,Australia,AU,Queensland,-27.493922,153.403251,EPSG:4326 +HUMAN_OBSERVATION,elfian,1,,,2022,2,22,Australia,AU,Victoria,-38.687915,146.304703,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.376148,145.314194,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,https://www.facebook.com/photo?fbid=7176406882392868&set=gm.1501549567301782&idorvanity=1381174509339289,2023,8,26,Australia,AU,New South Wales,-33.207552,151.004525,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear Male yellow tag left ear #0976?,2024,2,11,Australia,AU,Queensland,-27.528424,153.092315,EPSG:4326 +HUMAN_OBSERVATION,alibob,1,,,2021,11,28,Australia,AU,Queensland,-27.3194,152.862672,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area - rest near houses Mother abs joey,2023,8,20,Australia,AU,Queensland,-27.528025,153.093074,EPSG:4326 +HUMAN_OBSERVATION,kvdpl,1,MALE,Hit by car or truck around dawn - deceased male,2023,9,20,Australia,AU,Queensland,-27.406219,152.624412,EPSG:4326 +HUMAN_OBSERVATION,abbiejane,1,,,2020,12,29,Australia,AU,Victoria,-38.3141,142.366175,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,8,18,Australia,AU,Queensland,-27.525483,153.092112,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,This one was near where I saw 22nd June (2 days ago) and is the same one. it seemed a smaller koala and we commented on this on the 22nd January sighting too. Koala 3.,2020,6,24,Australia,AU,New South Wales,-28.25425,153.377458,EPSG:4326 +HUMAN_OBSERVATION,Alasdair McAlpine,1,,,2024,4,25,Australia,AU,Queensland,-27.545911,153.073383,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,5,Australia,AU,Queensland,-27.52824,153.10417,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Female,2021,10,20,Australia,AU,Victoria,-38.671167,146.16362,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Grey Ironbark,2020,4,23,Australia,AU,Queensland,-27.558239,153.050963,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - tag RIGHT ear,2023,2,10,Australia,AU,Queensland,-27.529816,153.110737,EPSG:4326 +HUMAN_OBSERVATION,Mitchell Hodgson,1,,,2023,6,18,Australia,AU,Queensland,-19.124135,146.871082,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Reconyx Hyperfire 2 Camera,2023,1,10,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Hunter Camera,2023,4,4,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,weibyeman,1,,,2024,1,27,Australia,AU,Victoria,-36.9682,145.509888,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Somewhere along Wondai Chinchilla Road. Observed by Wendy Taylor. Submitted via FB (South Burnett Koala Watch),2023,11,24,Australia,AU,Queensland,-26.674371,150.920364,EPSG:4326 +HUMAN_OBSERVATION,Anthony Katon,1,,,2020,2,6,Australia,AU,New South Wales,-34.062977,150.840979,EPSG:4326 +HUMAN_OBSERVATION,lynsh,1,,,2024,9,18,Australia,AU,Queensland,-27.917027,153.373463,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Koala in tree. Was climbing further up the tree when I took this photo.,2023,6,18,Australia,AU,Queensland,-27.284601,153.000312,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,12,27,Australia,AU,Queensland,-27.527109,153.091462,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,10,Australia,AU,Queensland,-27.544489,153.072342,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,"Image captured whilst on a spotlighting circuit, varying between 1.5 km to 3 km depending on track conditions, through a 20 ha block of predominantly Sedgy Riparian Woodland (EVC 198) in the Wombat State Forest, Lyonville.",2023,7,15,Australia,AU,Victoria,-37.3939,144.264732,EPSG:4326 +HUMAN_OBSERVATION,Kymberley,1,,,2024,1,15,Australia,AU,Queensland,-21.687472,148.688128,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Mum and joey. Have video.,2021,10,14,Australia,AU,New South Wales,-28.254182,153.377263,EPSG:4326 +HUMAN_OBSERVATION,pelicanfan,1,MALE,Clamydia - carers attempted to locate but unsuccessful.,2022,11,17,Australia,AU,Queensland,-27.371389,152.111389,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,9,20,Australia,AU,Queensland,-27.546516,153.074816,EPSG:4326 +HUMAN_OBSERVATION,giulias_lens,1,,,2023,3,6,Australia,AU,Queensland,-19.125463,146.868729,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2023,10,16,Australia,AU,Queensland,-27.529229,153.115413,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,8,6,Australia,AU,Queensland,-27.54971,153.046925,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,16,Australia,AU,Queensland,-27.526662,153.107863,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,8,11,Australia,AU,Queensland,-27.551766,153.057757,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On a Eucalyptus microcorys.,2020,10,2,Australia,AU,Queensland,-27.54663,153.057497,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland Possibly Cindy,2023,9,8,Australia,AU,Queensland,-27.524147,153.093132,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,6,4,Australia,AU,Queensland,-27.550931,153.054011,EPSG:4326 +HUMAN_OBSERVATION,naturehoodz,1,,,2021,4,6,Australia,AU,South Australia,-35.120678,138.50617,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Skeletal koala at base of big Eucalyptus tereticornis.,2024,4,17,Australia,AU,Queensland,-27.971665,152.544756,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,,2024,10,19,Australia,AU,Queensland,-27.493645,153.402988,EPSG:4326 +HUMAN_OBSERVATION,mxwalker,1,,,2022,3,23,Australia,AU,Victoria,-38.722582,143.718189,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,8,18,Australia,AU,Queensland,-27.527353,153.092122,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Female and Joey,2020,7,23,Australia,AU,Queensland,-27.551685,153.057505,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Beautiful koala in good health resting on a she oak near Flinders Beach.,2021,10,1,Australia,AU,Queensland,-27.38986,153.454542,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,17,Australia,AU,Queensland,-27.549098,153.07262,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,small koala behind grey gum,2020,4,16,Australia,AU,New South Wales,-28.254041,153.376912,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,10,13,Australia,AU,New South Wales,-33.076325,151.095091,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2023,12,26,Australia,AU,Queensland,-27.524162,153.093318,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Black Lip"" male in stringy bark",2021,2,18,Australia,AU,New South Wales,-30.521032,151.518633,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,FEMALE,,2024,4,18,Australia,AU,South Australia,-34.891742,138.715482,EPSG:4326 +HUMAN_OBSERVATION,Post Office Hill Reserve,1,,Asleep in gum.,2023,4,17,Australia,AU,Victoria,-37.079684,144.291167,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,3,Australia,AU,South Australia,-34.896258,138.724218,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,FEMALE,Mother with baby in Eucalyptus melanophloia,2021,9,26,Australia,AU,Queensland,-27.562821,152.10716,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2024,4,28,Australia,AU,South Australia,-35.209918,138.542938,EPSG:4326 +HUMAN_OBSERVATION,Shannon,1,,,2024,1,17,Australia,AU,Victoria,-36.358478,146.692853,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2023,11,19,Australia,AU,Queensland,-27.545951,153.055099,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in regenerating Euc. tereticornis,2024,11,17,Australia,AU,Queensland,-28.164285,152.606868,EPSG:4326 +HUMAN_OBSERVATION,maudieo,1,,,2024,11,16,Australia,AU,Queensland,-27.259925,152.060822,EPSG:4326 +HUMAN_OBSERVATION,maddz2508,1,,Mother koala with Joey eating next to road,2022,1,9,Australia,AU,South Australia,-34.898546,135.671606,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland off Tristania Way and Wisteria Cres,2023,6,17,Australia,AU,Queensland,-27.524418,153.09356,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Female on Eucalyptus tereticornis blue gum,2024,9,19,Australia,AU,Queensland,-27.513976,152.252604,EPSG:4326 +HUMAN_OBSERVATION,tere_c,1,,,2022,12,8,Australia,AU,Victoria,-38.127628,145.273378,EPSG:4326 +HUMAN_OBSERVATION,ibushy,1,,,2024,11,23,Australia,AU,Victoria,-38.269242,147.038396,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,6,6,Australia,AU,South Australia,-34.865227,138.657117,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,8,Australia,AU,Queensland,-27.551692,153.057378,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2020,3,22,Australia,AU,Victoria,-38.133389,145.267586,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2021,1,25,Australia,AU,New South Wales,-34.101683,150.822036,EPSG:4326 +HUMAN_OBSERVATION,juliasides-anniebuden,1,,Poo Hand for scale Found under an old gum tree,2024,5,27,Australia,AU,Victoria,-38.366608,144.991468,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,19,Australia,AU,Queensland,-27.529002,153.109526,EPSG:4326 +HUMAN_OBSERVATION,asanoth,1,,,2023,9,22,Australia,AU,Queensland,-27.509204,153.08498,EPSG:4326 +HUMAN_OBSERVATION,Michelle Casanova,1,,,2023,3,15,Australia,AU,Victoria,-38.061806,141.760635,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,5,2,Australia,AU,Queensland,-27.551268,153.057596,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Cindy Crawford and Joey in rear tristania and wisteria woodland In tree near townhouses,2023,8,13,Australia,AU,Queensland,-27.524917,153.093703,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,8,3,Australia,AU,Queensland,-27.548248,153.05941,EPSG:4326 +HUMAN_OBSERVATION,charlievella,1,,,2020,10,21,Australia,AU,Queensland,-27.314492,152.925522,EPSG:4326 +HUMAN_OBSERVATION,Vireya Jacquard,1,,Is it an adult and a juvenile? Hard to see so far up in the tree. Observation of the tree: https://www.inaturalist.org/observations/93825837,2021,9,6,Australia,AU,Victoria,-37.692515,143.998651,EPSG:4326 +HUMAN_OBSERVATION,Helen Witting,1,,,2021,6,27,Australia,AU,Queensland,-27.545104,153.068525,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Mum and joey,2023,11,19,Australia,AU,Queensland,-27.284035,152.999718,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near k block mowing shed,2023,11,5,Australia,AU,Queensland,-27.525814,153.090703,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.917736,153.378855,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Heard it bellowing, so may be a male.",2021,9,27,Australia,AU,New South Wales,-28.253958,153.377676,EPSG:4326 +HUMAN_OBSERVATION,Owen Gale,1,,,2020,7,12,Australia,AU,South Australia,-34.903108,138.70516,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,MALE,Male.,2023,8,20,Australia,AU,Queensland,-27.456932,152.401214,EPSG:4326 +HUMAN_OBSERVATION,Karl Vernes,1,,Sighting and photos (c) karlvernes. Field Notes - In Eucalyptus viminallis on UNE campus,2022,8,12,Australia,AU,New South Wales,-30.437579,151.644072,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2023,6,17,Australia,AU,Queensland,-28.093447,152.828224,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,3,11,Australia,AU,South Australia,-35.008294,138.673106,EPSG:4326 +HUMAN_OBSERVATION,SBERRY,1,,When you are driving home in suburban Melbourne and you spot a Koala out of the corner of your eye. Did I just see that ??? Phascolarctoscinereus victor.,2021,6,11,Australia,AU,Victoria,-38.139133,145.255067,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,3,9,Australia,AU,Queensland,-27.526484,153.090632,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey Ironbark,2024,2,17,Australia,AU,Queensland,-27.550729,153.055467,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2022,10,9,Australia,AU,Queensland,-28.220302,152.860105,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,5,26,Australia,AU,Queensland,-27.528253,153.109699,EPSG:4326 +HUMAN_OBSERVATION,tpabg,1,,,2022,12,21,Australia,AU,Victoria,-38.470653,145.017867,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe near student admin block and library Mother and joey Possibly Maisie,2023,12,8,Australia,AU,Queensland,-27.526973,153.091107,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2023,3,10,Australia,AU,Queensland,-28.013943,151.0701,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,7,12,Australia,AU,Queensland,-27.529913,153.105295,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,8,17,Australia,AU,South Australia,-34.893256,138.625991,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,10,12,Australia,AU,Queensland,-27.527221,153.091655,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2022,10,9,Australia,AU,Queensland,-28.220302,152.860105,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,6,Australia,AU,South Australia,-34.889984,138.722912,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2024,2,2,Australia,AU,South Australia,-34.995017,138.727266,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Trees near K block mowing shed,2024,4,1,Australia,AU,Queensland,-27.525827,153.090914,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,Juvenile,2023,11,22,Australia,AU,Queensland,-27.304636,152.996781,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside cleaners donga,2024,3,3,Australia,AU,Queensland,-27.526947,153.091679,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Young Tallowwood covered in Monkey Rope Vine,2020,6,9,Australia,AU,Queensland,-27.550838,153.057958,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,4,20,Australia,AU,Queensland,-27.5295,153.103365,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2023,9,9,Australia,AU,Queensland,-27.527217,153.109197,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,believe a male. In tallowwood trees.,2020,10,14,Australia,AU,New South Wales,-28.254076,153.377492,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,7,Australia,AU,South Australia,-34.890294,138.732485,EPSG:4326 +HUMAN_OBSERVATION,KDendle,1,,In eucalypt in private urban garden,2022,11,4,Australia,AU,South Australia,-35.44546,138.326222,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On a Eucalyptus microcorys.,2021,8,3,Australia,AU,Queensland,-27.604868,153.247138,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Male,2021,10,20,Australia,AU,Victoria,-38.671092,146.163758,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,10,Australia,AU,Queensland,-27.546001,153.074041,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2023,9,22,Australia,AU,South Australia,-34.905984,138.708075,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania and Wisteria woodland - front next to first house on Wisteria Cres 2 koalas same tree - male and female,2023,8,13,Australia,AU,Queensland,-27.524039,153.093216,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,,2022,3,16,Australia,AU,Queensland,-27.493791,153.40342,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,1,14,Australia,AU,New South Wales,-29.87032,150.601537,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,7,24,Australia,AU,South Australia,-34.957707,138.695144,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,https://www.facebook.com/groups/Project.Koala.Gunnedah/permalink/3025719181084954/,2021,6,30,Australia,AU,New South Wales,-30.988959,150.248415,EPSG:4326 +HUMAN_OBSERVATION,sharononeil,1,,,2021,9,6,Australia,AU,Victoria,-38.265833,145.047778,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2023,10,10,Australia,AU,Victoria,-37.031379,145.484362,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood. Young,2020,2,28,Australia,AU,Queensland,-27.547867,153.058676,EPSG:4326 +HUMAN_OBSERVATION,Brendan Casey,1,,,2023,12,27,Australia,AU,Victoria,-38.630977,145.724328,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,5,Australia,AU,South Australia,-34.89067,138.72806,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Outside k block mowing shed Male,2024,5,18,Australia,AU,Queensland,-27.525961,153.09106,EPSG:4326 +HUMAN_OBSERVATION,Charles Dove,1,,,2022,6,22,Australia,AU,Queensland,-27.392485,151.943741,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unhealthy. Unknown sex. Observed and rescued by Wendy Taylor. Submitted via msg.,2024,3,14,Australia,AU,Queensland,-26.349158,151.527296,EPSG:4326 +HUMAN_OBSERVATION,Heath Hunter,1,,,2024,2,11,Australia,AU,South Australia,-34.946247,138.690407,EPSG:4326 +HUMAN_OBSERVATION,J. Addesi,1,,,2024,3,24,Australia,AU,South Australia,-34.903719,138.703766,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,5,4,Australia,AU,Queensland,-27.583787,153.151142,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Juvenile koala Swamp mahogany,2023,2,21,Australia,AU,Queensland,-27.525429,153.092478,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,Mum and baby,2021,9,26,Australia,AU,Queensland,-27.506185,153.086402,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,18,Australia,AU,South Australia,-34.892227,138.713772,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,21,Australia,AU,Queensland,-27.526704,153.091462,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2023,2,16,Australia,AU,Victoria,-38.131094,145.268364,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2023,8,12,Australia,AU,Queensland,-28.088218,152.849975,EPSG:4326 +HUMAN_OBSERVATION,Todd Burrows,1,,,2024,11,15,Australia,AU,Queensland,-27.917234,153.358506,EPSG:4326 +HUMAN_OBSERVATION,lilcadybug,1,,,2024,2,15,Australia,AU,Victoria,-38.833162,143.513495,EPSG:4326 +HUMAN_OBSERVATION,Chris,1,,,2023,9,5,Australia,AU,Queensland,-27.896005,152.618109,EPSG:4326 +HUMAN_OBSERVATION,Michael Burns,1,,,2023,10,30,Australia,AU,Victoria,-37.920153,147.733166,EPSG:4326 +HUMAN_OBSERVATION,Geoff Shuetrim,1,,,2024,6,9,Australia,AU,New South Wales,-33.025855,151.095322,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2020,10,5,Australia,AU,Queensland,-27.540728,153.049177,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,"Some overbrowsing of plantation trees obvious, including trees that have died.",2022,3,21,Australia,AU,Victoria,-38.321222,142.630498,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,"Koala in Kulmaren Grove. Reported to RSPCA for a check-up, slightly dirty bum.",2021,9,13,Australia,AU,Queensland,-27.531846,152.807541,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,Same koala with baby that I saw climbing the tree last night is there in the same tree this morning. Tree with bowl of water at base,2022,8,24,Australia,AU,Queensland,-28.211501,152.866174,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,22,Australia,AU,Queensland,-27.529123,153.11127,EPSG:4326 +HUMAN_OBSERVATION,Ash,1,,,2023,10,11,Australia,AU,Queensland,-27.510903,153.084375,EPSG:4326 +HUMAN_OBSERVATION,jollygiraffe,1,MALE,Koala,2020,11,16,Australia,AU,Victoria,-37.707034,144.492393,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2023,10,22,Australia,AU,Queensland,-28.076926,152.8552,EPSG:4326 +HUMAN_OBSERVATION,Gayle Marien,1,,,2023,2,10,Australia,AU,Victoria,-38.487214,145.263096,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania and wisteria woodland - tree at front of woodland on Tristania Way Very high at top of tree,2023,7,22,Australia,AU,Queensland,-27.524086,153.093517,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Adult, healthy, unknown sex. Observed by Wendy Taylor. Submitted by Denise Shaw via email",2023,6,14,Australia,AU,Queensland,-26.17259,151.766354,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,12,Australia,AU,Queensland,-27.52797,153.103276,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,10,3,Australia,AU,Queensland,-27.528764,153.112405,EPSG:4326 +HUMAN_OBSERVATION,Jeffrey H. Skevington,1,,,2023,1,14,Australia,AU,South Australia,-35.645478,137.641037,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2021,11,27,Australia,AU,Victoria,-37.94456,145.671423,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,3,Australia,AU,South Australia,-34.889737,138.722703,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,7,23,Australia,AU,Queensland,-26.25944,151.883976,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - tag RIGHT ear,2023,11,15,Australia,AU,Queensland,-27.527492,153.110216,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,24,Australia,AU,Queensland,-27.52793,153.112025,EPSG:4326 +HUMAN_OBSERVATION,pierce_clark,1,,,2024,10,5,Australia,AU,Queensland,-27.920167,153.376199,EPSG:4326 +HUMAN_OBSERVATION,rordale,1,,,2024,11,1,Australia,AU,Queensland,-27.262258,152.063356,EPSG:4326 +HUMAN_OBSERVATION,oranamr,1,,,2020,9,17,Australia,AU,Victoria,-38.424107,144.948741,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,5,20,Australia,AU,Queensland,-27.547097,153.068282,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland middle,2023,12,16,Australia,AU,Queensland,-27.528157,153.09256,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2021,10,9,Australia,AU,Queensland,-28.915196,151.584571,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,3,15,Australia,AU,Queensland,-27.528153,153.103444,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2021,8,22,Australia,AU,Queensland,-27.51227,153.082961,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,11,9,Australia,AU,Queensland,-27.258335,152.045052,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Scat,2023,12,4,Australia,AU,Queensland,-27.529244,152.454483,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Unknown sex. Adult. Healthy. Observed by Naomi Bishop. Submitted via msg,2023,6,30,Australia,AU,Queensland,-26.538368,151.985004,EPSG:4326 +HUMAN_OBSERVATION,Louis O'Neill,1,,The last two pics are through a thermal camera,2022,5,5,Australia,AU,Victoria,-37.906588,147.765913,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,4,5,Australia,AU,Victoria,-38.671213,146.163728,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2023,12,23,Australia,AU,Queensland,-27.527667,153.09218,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,11,8,Australia,AU,Queensland,-27.55184,153.057679,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,2,16,Australia,AU,Queensland,-27.54547,153.069528,EPSG:4326 +HUMAN_OBSERVATION,Albert Ross,1,,,2023,5,28,Australia,AU,New South Wales,-28.949206,153.317177,EPSG:4326 +HUMAN_OBSERVATION,michaelp28,1,,Walking and climbing a new tree with baby on back. Jumped more than 1m from small to larger tree.,2023,11,6,Australia,AU,Victoria,-38.061049,141.929175,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2020,3,16,Australia,AU,Victoria,-38.384707,145.308462,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,2,20,Australia,AU,Queensland,-27.551889,153.057608,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,6,18,Australia,AU,Queensland,-27.551254,153.059187,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Believe this Koala to be last year's "Fluffy Eared Baby": she has less white near her ears than her mother. High in Stringy Bark.,2020,7,31,Australia,AU,New South Wales,-30.51972,151.521444,EPSG:4326 +HUMAN_OBSERVATION,candyda,1,,,2020,8,31,Australia,AU,Queensland,-27.501873,153.259788,EPSG:4326 +HUMAN_OBSERVATION,aleckarcz,1,,they remind me of my grandpa,2022,5,1,Australia,AU,Queensland,-19.124823,146.870348,EPSG:4326 +HUMAN_OBSERVATION,jaoily,1,,,2022,9,3,Australia,AU,Queensland,-27.164136,152.937487,EPSG:4326 +HUMAN_OBSERVATION,sharp_observation,1,,,2020,11,23,Australia,AU,New South Wales,-31.458007,152.897466,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2024,4,22,Australia,AU,Victoria,-38.83305,143.51207,EPSG:4326 +HUMAN_OBSERVATION,dumakey,1,,,2022,2,13,Australia,AU,South Australia,-35.172197,138.589766,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2022,3,19,Australia,AU,Queensland,-27.564025,152.108095,EPSG:4326 +HUMAN_OBSERVATION,Ken McLennan,1,,,2022,11,18,Australia,AU,Victoria,-36.868725,145.403563,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,7,8,Australia,AU,Queensland,-27.703164,153.192195,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Submitted by Susan Rayner. Alive, healthy, adult, sex unknown.",2020,8,5,Australia,AU,Queensland,-25.066874,151.098859,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,7,24,Australia,AU,South Australia,-34.957256,138.694258,EPSG:4326 +HUMAN_OBSERVATION,baileyhikes,1,,,2023,8,14,Australia,AU,Queensland,-19.124286,146.870848,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2023,9,10,Australia,AU,Queensland,-27.284005,152.999813,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,MALE,,2023,1,15,Australia,AU,Victoria,-37.693694,144.011724,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Rear entrance to nursery,2024,2,25,Australia,AU,Queensland,-27.527264,153.092227,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2022,2,10,Australia,AU,Victoria,-39.066967,146.375013,EPSG:4326 +HUMAN_OBSERVATION,valemoscos06,1,,,2024,8,11,Australia,AU,Queensland,-27.541332,153.072528,EPSG:4326 +HUMAN_OBSERVATION,lil_1,1,,,2022,5,8,Australia,AU,Victoria,-37.623917,144.094986,EPSG:4326 +HUMAN_OBSERVATION,rhlingard,1,,,2023,3,2,Australia,AU,Victoria,-37.089589,145.406158,EPSG:4326 +HUMAN_OBSERVATION,jofish,1,,,2023,6,16,Australia,AU,Victoria,-38.355067,146.017171,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,9,30,Australia,AU,South Australia,-34.951585,138.679042,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,29,Australia,AU,Queensland,-27.527716,153.111596,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,17,Australia,AU,Queensland,-27.63701,153.08996,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,13,Australia,AU,Queensland,-27.504993,153.081879,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,10,25,Australia,AU,Queensland,-27.509703,153.084822,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,8,14,Australia,AU,South Australia,-34.908923,138.712128,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2022,3,5,Australia,AU,South Australia,-34.975477,138.646824,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.016996,138.668747,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Another koala higher up in same tree - see next observation,2021,10,30,Australia,AU,Victoria,-38.671122,146.163758,EPSG:4326 +HUMAN_OBSERVATION,funjijumanji,1,,,2022,9,30,Australia,AU,Victoria,-38.310517,145.293658,EPSG:4326 +HUMAN_OBSERVATION,dieselfraser,1,,Was called by Wildlife Vic to rescue a very unwell male koala. Appears to have mange and possibly chlamydia. Was transported to Foster vet. Update- he unfortunately had to be euthanised,2022,11,8,Australia,AU,Victoria,-38.881561,145.950352,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2022,12,22,Australia,AU,Victoria,-38.670698,146.162261,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In large Tallowood next to road.,2024,3,12,Australia,AU,Queensland,-27.55951,153.057373,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In Scribbly gum,2024,3,12,Australia,AU,Queensland,-27.559479,153.057874,EPSG:4326 +HUMAN_OBSERVATION,Joep de Ligt,1,,,2023,7,11,Australia,AU,Queensland,-27.505228,153.084452,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2024,11,15,Australia,AU,Queensland,-27.549314,153.058163,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Elissa Blacke. Submitted via email.,2023,10,28,Australia,AU,Queensland,-26.557753,151.917461,EPSG:4326 +HUMAN_OBSERVATION,robmezz,1,,,2020,12,25,Australia,AU,Victoria,-38.651249,146.202337,EPSG:4326 +HUMAN_OBSERVATION,tashramsey,1,MALE,,2024,5,27,Australia,AU,Queensland,-27.275222,152.961442,EPSG:4326 +HUMAN_OBSERVATION,Kate Leslie,1,,,2024,2,18,Australia,AU,Victoria,-38.50085,142.978531,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,12,Australia,AU,Queensland,-27.529238,153.105362,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,,"Male koala in red stringybark and female on nearby dead tree. They were both seen on the same tree as the male yesterday, female above I suspect the female has jumped across to the dead tree",2023,12,2,Australia,AU,Victoria,-37.854002,144.207868,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,1,9,Australia,AU,Queensland,-27.795938,151.565963,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,4,27,Australia,AU,Queensland,-27.529443,153.102629,EPSG:4326 +HUMAN_OBSERVATION,beegandy,1,,,2022,7,9,Australia,AU,Victoria,-37.385688,144.314838,EPSG:4326 +HUMAN_OBSERVATION,benstephenson5,1,,Koala in a tree at night,2023,12,23,Australia,AU,New South Wales,-34.819998,149.893453,EPSG:4326 +HUMAN_OBSERVATION,Ian Wheatland,1,,,2023,2,26,Australia,AU,Queensland,-27.586456,153.169944,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg,2024,1,15,Australia,AU,Queensland,-26.175532,151.769051,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.756445,143.66951,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Deceased. Vehicle incident. Report by community. Observed by Wendy Taylor. Submitted via msg.,2024,10,19,Australia,AU,Queensland,-26.630161,151.937203,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Injured. Vehicle collision. Later died on way to Wacol hospital. Observed and rescued by Wendy Taylor. Submitted via msg.,2024,9,9,Australia,AU,Queensland,-26.137203,151.787977,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,MALE,Male. Was growling while on the log in the background (trail camera),2024,1,30,Australia,AU,New South Wales,-33.107509,151.318989,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,5,Australia,AU,South Australia,-34.892008,138.722886,EPSG:4326 +HUMAN_OBSERVATION,sarah macdonald,1,,,2022,9,28,Australia,AU,South Australia,-34.902006,138.701118,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,6,2,Australia,AU,Queensland,-27.527182,153.091271,EPSG:4326 +HUMAN_OBSERVATION,Mel,1,,,2021,11,17,Australia,AU,South Australia,-34.962859,138.644459,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Hunter Camera,2023,3,23,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,19,Australia,AU,South Australia,-34.890991,138.721954,EPSG:4326 +HUMAN_OBSERVATION,chloejay,1,,Koala on boundary track at Lawsons Reserve.,2021,9,11,Australia,AU,Victoria,-38.178211,145.125832,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,10,11,Australia,AU,Queensland,-27.153244,152.610458,EPSG:4326 +HUMAN_OBSERVATION,Benjamin Schwartz,1,,,2023,9,17,Australia,AU,South Australia,-35.001638,138.656613,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,19,Australia,AU,Queensland,-27.526816,153.090881,EPSG:4326 +HUMAN_OBSERVATION,Chris Munson,1,,Seen moving up tree,2023,2,4,Australia,AU,New South Wales,-34.107528,150.810679,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2023,1,5,Australia,AU,South Australia,-34.921792,138.694047,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,24,Australia,AU,South Australia,-34.891149,138.715872,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,In nursery grounds,2024,7,28,Australia,AU,Queensland,-27.528328,153.092201,EPSG:4326 +HUMAN_OBSERVATION,kittsw,1,,"Found dead by walking path at the reservoir. No obvious cause of death, may have been scavenged slightly.",2024,9,1,Australia,AU,South Australia,-35.080441,138.575741,EPSG:4326 +HUMAN_OBSERVATION,noddyblue,1,,"Noticed scat, then found koala",2023,6,18,Australia,AU,Victoria,-36.890655,145.4283,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,,2024,8,2,Australia,AU,South Australia,-35.095906,138.569006,EPSG:4326 +HUMAN_OBSERVATION,Rusty,1,,,2023,9,10,Australia,AU,South Australia,-35.057518,138.57781,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Gail Connell. Forwarded by email.,2020,12,8,Australia,AU,Queensland,-24.985621,151.987165,EPSG:4326 +HUMAN_OBSERVATION,Lynn Harper,1,,,2023,10,12,Australia,AU,Victoria,-36.391503,146.667158,EPSG:4326 +HUMAN_OBSERVATION,lidijaveljanovski,1,,"First noticed on the road after being hit by vehicle infront, then climbed into trees and was attended to by Wildlife carers",2024,6,7,Australia,AU,Victoria,-37.62742,144.200333,EPSG:4326 +HUMAN_OBSERVATION,Nicholas Spackman,1,,,2021,9,28,Australia,AU,Victoria,-38.245862,146.142945,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Observed by Peter.,2022,10,19,Australia,AU,New South Wales,-28.266887,153.395427,EPSG:4326 +HUMAN_OBSERVATION,ann_garden,1,,,2022,9,11,Australia,AU,Victoria,-38.318672,142.363145,EPSG:4326 +HUMAN_OBSERVATION,Dave Flumm,1,,Adult with (presumed) joey near top of tallest Eucalypt in the suburb.,2023,12,3,Australia,AU,New South Wales,-28.821972,153.333569,EPSG:4326 +HUMAN_OBSERVATION,BushLook,1,,,2023,10,24,Australia,AU,Victoria,-37.644514,143.894158,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.922255,147.727463,EPSG:4326 +HUMAN_OBSERVATION,Lukas Clews,1,,Observed by Timothy Clark. Two Koalas seen.,2020,3,15,Australia,AU,New South Wales,-32.038488,151.932569,EPSG:4326 +HUMAN_OBSERVATION,Lisette Mill,1,,Tree on the boundary between Rowensville Stud and St Helens Flora Reserve.,2024,8,1,Australia,AU,Victoria,-38.2353,142.072356,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2023,12,29,Australia,AU,Queensland,-27.525499,153.092021,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tafe nursery grounds Mother and Joey - paw just visible,2023,8,19,Australia,AU,Queensland,-27.527899,153.092362,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Believe this is a male possibly, form white spot on its thigh.",2020,8,20,Australia,AU,New South Wales,-28.252556,153.375272,EPSG:4326 +HUMAN_OBSERVATION,Graham Armstrong,1,,Very Decomposed Road Kill,2021,10,4,Australia,AU,Queensland,-25.61977,149.77069,EPSG:4326 +HUMAN_OBSERVATION,sealmonkey,1,MALE,,2022,9,6,Australia,AU,Victoria,-38.631832,145.750176,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2024,9,11,Australia,AU,Queensland,-27.255535,152.046151,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,19,Australia,AU,Queensland,-27.527766,153.111683,EPSG:4326 +HUMAN_OBSERVATION,Gary,1,,,2023,2,20,Australia,AU,Queensland,-28.055634,152.398579,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2023,12,26,Australia,AU,Queensland,-27.524749,153.092979,EPSG:4326 +HUMAN_OBSERVATION,quollsskinks,1,,Mum and baby.,2021,9,9,Australia,AU,Victoria,-37.736232,142.025013,EPSG:4326 +HUMAN_OBSERVATION,Sarah Foote,1,,"Unsure of location, somewhere along the highway between Mt. Gambier and Portland.",2022,9,16,Australia,AU,Victoria,-38.06523,141.131418,EPSG:4326 +HUMAN_OBSERVATION,Kevin,1,MALE,,2024,1,18,Australia,AU,Queensland,-27.396767,153.439466,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland gully,2024,11,9,Australia,AU,Queensland,-27.527569,153.093922,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland middle,2024,1,7,Australia,AU,Queensland,-27.528254,153.093673,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"In Manna Gum (E. viminalis). This Koala is in the same tree with the ""stick nest"" Koala of observation https://inaturalist.ala.org.au/observations/214938655. The second image gives context with the stick nest in relation to this Koala (this koala top left, stick nest koala middle right). Do I sound like I'm having fun?",2024,5,10,Australia,AU,Victoria,-38.499858,142.974903,EPSG:4326 +HUMAN_OBSERVATION,kathywalter,1,MALE,,2024,1,27,Australia,AU,New South Wales,-28.412442,153.022178,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Bloodwood,2021,2,9,Australia,AU,Queensland,-27.55038,153.058676,EPSG:4326 +HUMAN_OBSERVATION,hilob,1,,,2024,1,22,Australia,AU,Victoria,-38.473891,146.577197,EPSG:4326 +HUMAN_OBSERVATION,Belinda Copland,1,,,2023,10,15,Australia,AU,South Australia,-34.581891,138.914611,EPSG:4326 +HUMAN_OBSERVATION,Leah Burns,1,,,2023,10,14,Australia,AU,Queensland,-27.545966,153.077269,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear,2023,10,28,Australia,AU,Queensland,-27.529389,153.103457,EPSG:4326 +HUMAN_OBSERVATION,Liz Snow,1,,"Located blue gum, suburban area",2022,7,15,Australia,AU,Queensland,-27.544534,153.104021,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,7,27,Australia,AU,Queensland,-27.549638,153.060127,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - red tag A18 - Campo,2023,10,16,Australia,AU,Queensland,-27.527253,153.1108,EPSG:4326 +HUMAN_OBSERVATION,ilovekoalas,1,,,2021,3,3,Australia,AU,Queensland,-26.429063,151.793747,EPSG:4326 +HUMAN_OBSERVATION,Queensland Trust for Nature,1,,,2023,11,13,Australia,AU,Queensland,-27.773621,152.764962,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Shared by compact_camping (Instagram) Tree appears to be Eucalyptus Crebra,2022,5,14,Australia,AU,New South Wales,-33.144967,151.091626,EPSG:4326 +HUMAN_OBSERVATION,Thor-Rune Hansen,1,FEMALE,,2022,11,13,Australia,AU,Queensland,-19.125223,146.869293,EPSG:4326 +HUMAN_OBSERVATION,Liz Snow,1,,,2024,11,17,Australia,AU,Queensland,-27.543939,153.071032,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,In Engadine but obviously not at maccas. Not sharing exact location,2022,8,13,Australia,AU,New South Wales,-34.066761,151.014811,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,11,4,Australia,AU,Queensland,-27.229763,152.116608,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,7,Australia,AU,Queensland,-27.8235,152.992215,EPSG:4326 +HUMAN_OBSERVATION,kyjp,1,,,2023,1,22,Australia,AU,Queensland,-27.822383,153.089287,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Stringybark,2020,7,17,Australia,AU,Queensland,-27.543505,153.060636,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Kerry O'Brien. Submitted by Wendy Taylor via msg.,2023,12,28,Australia,AU,Queensland,-26.545036,151.944566,EPSG:4326 +HUMAN_OBSERVATION,HR Nature,1,,"Two animals were identified during spotlighting in this location, this animal is believed to be one of those found the morning after.",2024,6,25,Australia,AU,Queensland,-28.784186,151.913233,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,5,19,Australia,AU,Queensland,-27.527124,153.091754,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"Also heard koala calling: 10/4/2024 12:15am, 11/4/2024 2:35am",2024,4,9,Australia,AU,Queensland,-27.822584,152.992192,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,Mother and baby,2022,8,30,Australia,AU,Queensland,-28.211518,152.865975,EPSG:4326 +HUMAN_OBSERVATION,raumer,1,,,2020,10,10,Australia,AU,Queensland,-27.288502,152.970833,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,2,5,Australia,AU,Queensland,-27.526835,153.090817,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,5,21,Australia,AU,Queensland,-27.429497,151.724153,EPSG:4326 +HUMAN_OBSERVATION,Konrad Szylar,1,FEMALE,,2022,12,31,Australia,AU,New South Wales,-34.100478,150.831853,EPSG:4326 +HUMAN_OBSERVATION,Steph,1,FEMALE,Discovered this Mum and her baby in a tree near the house a few weeks ago! What a treat!,2022,7,23,Australia,AU,New South Wales,-28.236275,153.479472,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,9,6,Australia,AU,Queensland,-27.546788,153.074512,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,,2024,4,25,Australia,AU,Queensland,-27.529282,153.110101,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tennis court lone tree,2024,9,19,Australia,AU,Queensland,-27.525312,153.09274,EPSG:4326 +HUMAN_OBSERVATION,Bilby Blooms,1,,,2023,8,27,Australia,AU,New South Wales,-31.5848,149.338137,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Crossing the road to safety, photographer Darryl Simpson",2024,3,7,Australia,AU,Queensland,-27.449595,152.382853,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2023,12,26,Australia,AU,Queensland,-27.525423,153.092336,EPSG:4326 +HUMAN_OBSERVATION,buddstar,1,,,2020,9,12,Australia,AU,Queensland,-27.532064,153.281531,EPSG:4326 +HUMAN_OBSERVATION,pilotpossum,1,,,2023,5,11,Australia,AU,South Australia,-34.976401,138.754268,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,10,Australia,AU,Queensland,-27.529037,153.103248,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,25,Australia,AU,Queensland,-27.529179,153.105502,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery entrance,2024,1,6,Australia,AU,Queensland,-27.527333,153.09133,EPSG:4326 +HUMAN_OBSERVATION,bennofn,1,,,2022,7,19,Australia,AU,Victoria,-38.316203,142.367295,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2022,1,4,Australia,AU,Victoria,-38.635506,145.755892,EPSG:4326 +HUMAN_OBSERVATION,samwillett,1,,,2021,10,22,Australia,AU,South Australia,-35.018528,138.576145,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,Male Koala calling 2 minutes after female call. Same time delay as earlier call which I did not record,2024,8,16,Australia,AU,Queensland,-27.510642,153.070066,EPSG:4326 +HUMAN_OBSERVATION,Liheng Ma,1,,,2020,7,2,Australia,AU,Queensland,-27.397251,153.45376,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,5,10,Australia,AU,New South Wales,-34.766158,146.570512,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside admin building,2024,6,8,Australia,AU,Queensland,-27.527016,153.091933,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,23,Australia,AU,South Australia,-34.882199,138.732351,EPSG:4326 +HUMAN_OBSERVATION,HR Nature,1,,,2024,9,18,Australia,AU,Queensland,-28.810538,151.992916,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,23,Australia,AU,South Australia,-34.887033,138.735142,EPSG:4326 +HUMAN_OBSERVATION,jkmalkoha,1,,,2024,10,13,Australia,AU,Victoria,-38.281103,141.635876,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Between E block and library,2023,11,19,Australia,AU,Queensland,-27.526559,153.09081,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2024,10,30,Australia,AU,Queensland,-27.521807,153.091727,EPSG:4326 +HUMAN_OBSERVATION,Marie Tarrant,1,,,2024,10,5,Australia,AU,Queensland,-26.6029,152.31733,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Mum and Bub. Saw last night on the opposite side of the driveway down the hill.,2021,10,3,Australia,AU,New South Wales,-28.254229,153.376856,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Mum and bub, dad is in the same tree.",2024,1,25,Australia,AU,Queensland,-27.711487,152.727097,EPSG:4326 +HUMAN_OBSERVATION,Mel,1,,,2020,3,21,Australia,AU,South Australia,-34.963309,138.650985,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,2,8,Australia,AU,Queensland,-27.550304,153.062669,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,,2024,10,13,Australia,AU,Queensland,-27.508525,153.0862,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,4,6,Australia,AU,Victoria,-37.63247,143.878536,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,2,Australia,AU,Queensland,-27.52732,153.108328,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2024,11,5,Australia,AU,Victoria,-38.330011,142.639415,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,13,Australia,AU,Queensland,-26.139709,151.761921,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Koala photos taken out of a video filmed on mobile phone. Sorry about the poor quality of photos. Video filmed by Selina.,2020,9,15,Australia,AU,New South Wales,-28.275076,153.395157,EPSG:4326 +HUMAN_OBSERVATION,rubbery,1,,Beneath Eucalyptus camaldulensis,2021,6,15,Australia,AU,South Australia,-34.913422,138.669972,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,24,Australia,AU,South Australia,-34.89244,138.721311,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Sitting in a small E.microcorys.,2024,3,13,Australia,AU,Queensland,-27.55173,153.057684,EPSG:4326 +HUMAN_OBSERVATION,beardedvulture,1,,,2022,9,17,Australia,AU,South Australia,-35.30874,138.55542,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,21,Australia,AU,South Australia,-34.890531,138.730333,EPSG:4326 +HUMAN_OBSERVATION,cbarrie,1,,,2023,12,11,Australia,AU,Victoria,-37.725398,144.047769,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"I think this is the same one from a few days ago. I'm pretty sure it's a she. She was fiddling around her belly, not sure if scratching or if she has a joey. Will keep observing if she stays. She got bored with the woman with the camera quite quickly and went to sleep.",2022,2,4,Australia,AU,Victoria,-37.874695,142.291003,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,,2023,9,14,Australia,AU,New South Wales,-29.868639,150.598731,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,10,2,Australia,AU,Queensland,-27.411858,152.0047,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,12,3,Australia,AU,Queensland,-27.54998,153.063619,EPSG:4326 +HUMAN_OBSERVATION,jcadermann,1,,,2021,7,26,Australia,AU,Queensland,-28.123653,152.946687,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,"note this observation is in the same location as this mum and joey, https://inaturalist.ala.org.au/observations/90371175. 2 Mums and joeys in same small park.",2021,8,8,Australia,AU,Queensland,-27.509598,153.070788,EPSG:4326 +HUMAN_OBSERVATION,maudieo,1,,,2024,11,16,Australia,AU,Queensland,-27.259925,152.060822,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,2,14,Australia,AU,Queensland,-27.534287,153.060379,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,20,Australia,AU,Queensland,-27.52971,153.103756,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,MALE,Koala rescued by M Butlin TKWR for treatment at RSPCA Wildlife Hospital Wacol for conjunctivitis.,2023,10,29,Australia,AU,Queensland,-27.395296,151.995698,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear of tennis courts,2023,12,14,Australia,AU,Queensland,-27.525025,153.09314,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Very sick female, was rescued and euthanised",2023,1,17,Australia,AU,Queensland,-27.420513,152.451688,EPSG:4326 +HUMAN_OBSERVATION,michikomarty,1,,,2021,11,28,Australia,AU,Queensland,-27.714466,151.522174,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear,2023,8,15,Australia,AU,Queensland,-27.533476,153.095091,EPSG:4326 +HUMAN_OBSERVATION,woma87,1,,,2024,11,1,Australia,AU,Queensland,-27.220592,153.06482,EPSG:4326 +HUMAN_OBSERVATION,littlellama,1,,,2020,7,12,Australia,AU,South Australia,-34.98688,138.719209,EPSG:4326 +HUMAN_OBSERVATION,australian_wildlife_encounters,1,,Foote Sanctuary,2022,10,6,Australia,AU,Queensland,-26.675805,153.071051,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2020,5,31,Australia,AU,South Australia,-34.989361,138.6367,EPSG:4326 +HUMAN_OBSERVATION,Louise O'Hare,1,,,2021,9,8,Australia,AU,Queensland,-27.514573,153.242197,EPSG:4326 +HUMAN_OBSERVATION,sandragall,1,,,2023,10,24,Australia,AU,Queensland,-27.954955,153.276394,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,9,1,Australia,AU,Victoria,-37.590119,143.895432,EPSG:4326 +HUMAN_OBSERVATION,dootcam,1,,,2021,10,21,Australia,AU,Victoria,-38.493134,145.952349,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,8,17,Australia,AU,Queensland,-27.527388,153.091405,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi & joey,2023,12,15,Australia,AU,Queensland,-27.530186,153.1034,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,20,Australia,AU,Queensland,-27.528981,153.110382,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Yellow tag left ear,2023,3,6,Australia,AU,Queensland,-27.527033,153.092211,EPSG:4326 +HUMAN_OBSERVATION,parigi,1,,,2022,12,16,Australia,AU,Queensland,-27.396839,153.439467,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Male. Healthy. Observed by Wendy Taylor. Submitted via email.,2020,12,7,Australia,AU,Queensland,-26.17693,151.691557,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.92388,147.731537,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear - Bozo,2023,7,28,Australia,AU,Queensland,-27.527236,153.109141,EPSG:4326 +HUMAN_OBSERVATION,mintyturtle,1,FEMALE,Female koala with Joey in pouch that is a resident at the local school. She was in a tree just outside the school fence on Wendron Street - she them climbed down and made her way back into the school grounds.,2020,7,14,Australia,AU,Queensland,-27.591124,153.130275,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,? joey present,2023,8,9,Australia,AU,Queensland,-27.529475,153.1155,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Mrs Bill,2024,6,12,Australia,AU,South Australia,-34.887652,138.734277,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear,2024,3,19,Australia,AU,Queensland,-27.529452,153.103895,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2023,1,12,Australia,AU,South Australia,-35.019951,138.742033,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2023,9,12,Australia,AU,Queensland,-27.527155,153.107669,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,23,Australia,AU,Queensland,-27.527829,153.11143,EPSG:4326 +HUMAN_OBSERVATION,donnamareetomkinson,1,,Lots of Koala scat under the tree with a koala in it.,2023,8,24,Australia,AU,Queensland,-26.503862,152.6291,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,14,Australia,AU,Queensland,-27.528529,153.104256,EPSG:4326 +HUMAN_OBSERVATION,clayt_,1,,,2024,8,23,Australia,AU,Victoria,-38.240855,145.256292,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,5,Australia,AU,Queensland,-27.529738,153.110405,EPSG:4326 +HUMAN_OBSERVATION,Thor-Rune Hansen,1,,,2022,11,25,Australia,AU,Victoria,-38.83152,143.519882,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2024,7,28,Australia,AU,South Australia,-34.933842,138.698528,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2023,11,19,Australia,AU,Queensland,-27.545951,153.055099,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,3,9,Australia,AU,Queensland,-27.528486,153.103306,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.022564,138.672614,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Male. Was ushered up a tree as the road is frequented by trucks and semis. The GPS on the photo is slightly out but is on nearby road Clark and Swendson Road in Kingaroy. Observed by Debra Lyne. Submitted via email.,2022,11,1,Australia,AU,Queensland,-26.554167,151.847222,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3122 Confirmed as Koala scat by OWAD Environment,2022,11,12,Australia,AU,Queensland,-27.50071,152.16219,EPSG:4326 +HUMAN_OBSERVATION,Anne-Marie Griffin,1,,,2024,2,17,Australia,AU,New South Wales,-33.753478,149.408161,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Very small koala,2023,1,31,Australia,AU,Queensland,-27.525503,153.090241,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Awaiting for koala to Come down so that he can be relocated to a safer place. Very dangerous traffic situation for the koala.,2024,8,31,Australia,AU,Queensland,-27.493945,153.079494,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,5,27,Australia,AU,New South Wales,-28.254347,153.376989,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,FEMALE,,2024,8,11,Australia,AU,New South Wales,-29.870293,150.601329,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2023,11,15,Australia,AU,Queensland,-27.52719,153.10787,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Healthy female with young on tummy,2023,10,11,Australia,AU,Queensland,-27.912043,153.37315,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,5,3,Australia,AU,South Australia,-34.86895,138.653825,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,18,Australia,AU,Queensland,-27.527288,153.10845,EPSG:4326 +HUMAN_OBSERVATION,Louis O'Neill,1,,1 of 4 seen in Leis Park. A young one. Looks healthy. reported to www.koalatracker.com.au,2023,11,2,Australia,AU,Queensland,-27.276517,152.981018,EPSG:4326 +HUMAN_OBSERVATION,littlellama,1,,,2021,3,19,Australia,AU,South Australia,-35.006489,138.647918,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,10,24,Australia,AU,New South Wales,-33.076364,151.095061,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near e block Barbara Dart,2024,7,7,Australia,AU,Queensland,-27.52663,153.091042,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Three koalas seen in trees that night.,2020,9,24,Australia,AU,New South Wales,-28.257627,153.400686,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of tafe Mother and joey Possibly Maisie and joey,2023,10,29,Australia,AU,Queensland,-27.527154,153.0905,EPSG:4326 +HUMAN_OBSERVATION,bankside106,1,,,2021,10,28,Australia,AU,Queensland,-27.544388,153.04671,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near E block - tree near driveway,2023,7,28,Australia,AU,Queensland,-27.526096,153.090486,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2023,10,27,Australia,AU,South Australia,-34.934322,138.698713,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,Same tree as observation: https://inaturalist.ala.org.au/observations/225664073 probably same koala.,2024,7,2,Australia,AU,Victoria,-38.481769,142.974792,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near tennis court storage building,2023,12,3,Australia,AU,Queensland,-27.525488,153.092697,EPSG:4326 +HUMAN_OBSERVATION,nickod,1,,,2023,10,18,Australia,AU,Victoria,-38.384077,145.302367,EPSG:4326 +HUMAN_OBSERVATION,Marie Tarrant,1,,,2020,3,30,Australia,AU,Queensland,-27.266667,152.8,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Brush Box Mums and Joey,2020,10,9,Australia,AU,Queensland,-27.550082,153.059938,EPSG:4326 +HUMAN_OBSERVATION,Liz Snow,1,,,2022,8,15,Australia,AU,Queensland,-27.484854,152.958362,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2024,2,11,Australia,AU,South Australia,-35.079178,138.576807,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree near cleaners donga and near palm trees of cafeteria,2023,7,9,Australia,AU,Queensland,-27.527018,153.09194,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3129 (Photo: Bob Brown),2022,6,18,Australia,AU,Queensland,-27.53118,152.1833,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - olive green tag RIGHT ear - could be Becky or Mary & joey,2023,7,31,Australia,AU,Queensland,-27.528758,153.111258,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult female with joey. Healthy. Observed by Robyn Zackreson. Submitted via FB.,2024,7,7,Australia,AU,Queensland,-26.308911,151.778183,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2023,12,10,Australia,AU,Queensland,-27.527703,153.092549,EPSG:4326 +HUMAN_OBSERVATION,Lisa_James,1,,,2022,12,14,Australia,AU,Queensland,-27.439118,153.020541,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,10,10,Australia,AU,South Australia,-34.89276,138.721809,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe cavendish road - basketball court end Maisie and Joey,2023,8,19,Australia,AU,Queensland,-27.526544,153.090296,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Deceased. Vehicle incident. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,7,28,Australia,AU,Queensland,-26.15484,151.74856,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,8,1,Australia,AU,Queensland,-27.527015,153.109387,EPSG:4326 +HUMAN_OBSERVATION,lehockamarcela,1,,,2024,1,28,Australia,AU,Victoria,-38.755355,143.662283,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2023,9,29,Australia,AU,Queensland,-27.527289,153.10724,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,11,Australia,AU,South Australia,-34.892477,138.714442,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Car park CFO#20,2023,12,3,Australia,AU,Queensland,-27.526943,153.09147,EPSG:4326 +HUMAN_OBSERVATION,Ken Waterfall,1,,2 koalas,2023,11,11,Australia,AU,South Australia,-35.70654,137.493556,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Boat Mountain Conservation Park in South Burnett. Female & Joey. Healthy. Observed by Susanne Maree Capewell. Forwarded by messenger,2021,10,23,Australia,AU,Queensland,-26.161014,151.977,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2024,9,27,Australia,AU,New South Wales,-34.773244,146.595032,EPSG:4326 +HUMAN_OBSERVATION,firstbalnarring2,1,,Koala lives in our front tree,2022,11,23,Australia,AU,Victoria,-38.388611,145.121166,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2023,7,30,Australia,AU,Queensland,-27.8948,153.318695,EPSG:4326 +HUMAN_OBSERVATION,huffin_darts,1,FEMALE,,2023,10,8,Australia,AU,Queensland,-27.70137,153.191728,EPSG:4326 +HUMAN_OBSERVATION,Kate Leslie,1,,,2023,10,26,Australia,AU,Victoria,-38.495522,142.971014,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2023,5,17,Australia,AU,Queensland,-27.792608,151.542525,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear,2023,10,21,Australia,AU,Queensland,-27.532901,153.094621,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Male. Healthy. Observed by Bryn Matthews. Sent via Messenger,2021,9,26,Australia,AU,Queensland,-26.161014,151.977,EPSG:4326 +HUMAN_OBSERVATION,Brad,1,,,2020,10,14,Australia,AU,South Australia,-35.007705,138.662523,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Lower wisteria car park Bellowing,2024,9,14,Australia,AU,Queensland,-27.524359,153.092383,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,19,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,Reported by private landholder,2024,11,18,Australia,AU,Queensland,-27.673297,151.595215,EPSG:4326 +HUMAN_OBSERVATION,Jazz,1,,,2023,7,19,Australia,AU,Victoria,-38.68598,143.38022,EPSG:4326 +HUMAN_OBSERVATION,Brad Law,1,,Found road killed on the way to Evans head.,2023,8,16,Australia,AU,New South Wales,-29.077999,153.41981,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,5,Australia,AU,South Australia,-34.8929,138.720567,EPSG:4326 +HUMAN_OBSERVATION,sneaker1,1,,,2022,11,26,Australia,AU,Victoria,-37.95883,145.60443,EPSG:4326 +HUMAN_OBSERVATION,David,1,,,2021,11,18,Australia,AU,South Australia,-34.879733,138.707031,EPSG:4326 +HUMAN_OBSERVATION,everlastingdaisy,1,,,2023,3,26,Australia,AU,Victoria,-38.800275,143.532242,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,MALE,,2023,11,6,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,12,Australia,AU,Queensland,-27.542384,153.068274,EPSG:4326 +HUMAN_OBSERVATION,Bruce McLennan,1,,,2021,3,5,Australia,AU,Queensland,-27.257688,152.171018,EPSG:4326 +HUMAN_OBSERVATION,straddiepixie,1,,,2022,10,21,Australia,AU,Queensland,-27.392272,153.441545,EPSG:4326 +HUMAN_OBSERVATION,cleanlymoss,1,,,2023,12,20,Australia,AU,Queensland,-27.600052,151.895396,EPSG:4326 +HUMAN_OBSERVATION,scumgrub,1,,point halloran conservation area,2024,6,30,Australia,AU,Queensland,-27.569353,153.297928,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,11,23,Australia,AU,Queensland,-27.263083,151.718842,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park Cindy Crawford,2024,4,7,Australia,AU,Queensland,-27.524976,153.09234,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2022,6,4,Australia,AU,Queensland,-27.226667,153.07295,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,5,26,Australia,AU,Queensland,-27.526549,153.090458,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2020,5,29,Australia,AU,Queensland,-27.54403,153.055075,EPSG:4326 +HUMAN_OBSERVATION,Francesco Martoni,1,,,2023,11,25,Australia,AU,Victoria,-38.832089,143.5203,EPSG:4326 +HUMAN_OBSERVATION,Luis Mata EntSocVic,1,,,2024,3,30,Australia,AU,Victoria,-38.318429,142.363581,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Feeding on a river red gum,2022,5,10,Australia,AU,New South Wales,-34.773197,146.594758,EPSG:4326 +HUMAN_OBSERVATION,miracletree,1,,,2023,9,26,Australia,AU,Queensland,-27.611678,153.166336,EPSG:4326 +HUMAN_OBSERVATION,esperly,1,,Molly (mother),2024,4,10,Australia,AU,Queensland,-27.291712,152.989067,EPSG:4326 +HUMAN_OBSERVATION,kathylangford,1,,,2024,3,24,Australia,AU,Queensland,-27.493697,153.403092,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,2,13,Australia,AU,Queensland,-27.078455,152.56122,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,"Adult. Male. Unhealthy. Rescued. Tested positive for KoRV. Observed by Wendy Taylor. Submitted via msg. Update (30.07.2024): Euthanised. Emaciated, retrovirus, mange. 6 years old. Named Buddha.",2024,7,27,Australia,AU,Queensland,-26.239171,151.820008,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,24,Australia,AU,Queensland,-27.52919,153.103159,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,"First koala sighted in 5 1/2yr old planting of eucalyptus trees on our property. Found in Eucalypt Microcorys. Koala scat noted at the base of 80% of the trees. Mix of mainly Eucalyptus microcorys, teriticornis and citriodora. Sex unidentified.",2023,5,16,Australia,AU,Queensland,-27.411413,152.003522,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2022,10,29,Australia,AU,Queensland,-27.54235,153.077764,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Cindy Crawford and joey - on a separate branch Tristania & Wisteria Woodland,2023,11,11,Australia,AU,Queensland,-27.524878,153.093046,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,,2022,11,27,Australia,AU,Queensland,-27.52985,153.10085,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2023,10,27,Australia,AU,New South Wales,-33.07668,151.095297,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,8,6,Australia,AU,Queensland,-27.510299,153.086012,EPSG:4326 +HUMAN_OBSERVATION,lillianclementine,1,,Male?,2024,9,20,Australia,AU,New South Wales,-30.230414,152.874962,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,6,27,Australia,AU,Queensland,-27.506122,153.086811,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,13,Australia,AU,Queensland,-27.527117,153.091894,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,2,7,Australia,AU,Queensland,-27.546647,153.073165,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,7,26,Australia,AU,South Australia,-34.89033,138.733241,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey gum,2022,7,21,Australia,AU,Queensland,-27.53815,153.063553,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2024,4,22,Australia,AU,Victoria,-38.833488,143.5132,EPSG:4326 +HUMAN_OBSERVATION,kris_purvis,1,,,2023,12,2,Australia,AU,Victoria,-35.854605,145.318938,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2023,2,24,Australia,AU,Queensland,-27.823686,152.992187,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"2 koalas in same tree - both females - one has green tag R ear, second has red tag A5 - Cindy",2022,12,23,Australia,AU,Queensland,-27.527233,153.10875,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,23,Australia,AU,South Australia,-34.887967,138.726976,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,29,Australia,AU,South Australia,-34.89272,138.715293,EPSG:4326 +HUMAN_OBSERVATION,dpm-envirosciences,1,,Spotted by C Pietsch. Photographed by D Moore.,2023,10,24,Australia,AU,Queensland,-26.00399,149.805527,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,9,7,Australia,AU,Queensland,-27.527725,153.09225,EPSG:4326 +HUMAN_OBSERVATION,Travis Richards,1,,,2023,10,30,Australia,AU,Victoria,-38.671708,143.859633,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" male (showing notch in right ear) in Stringybark. Right eye still looks awful, but left eye and general health and demeanour still showing no negative signs.",2021,12,7,Australia,AU,New South Wales,-30.520513,151.519445,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,7,9,Australia,AU,Victoria,-38.671312,146.163976,EPSG:4326 +HUMAN_OBSERVATION,bankside106,1,,,2021,10,15,Australia,AU,Queensland,-27.54436,153.046636,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,Matilda and joey MJ,2023,8,23,Australia,AU,Queensland,-27.41402,152.003348,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Reconyx HF2,2023,2,16,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,Josef Kohlmetz,1,MALE,,2024,8,4,Australia,AU,New South Wales,-28.870862,153.43454,EPSG:4326 +HUMAN_OBSERVATION,Jean-Paul Boerekamps,1,,,2022,6,27,Australia,AU,Queensland,-27.490362,153.245372,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,MRV,2020,11,4,Australia,AU,Queensland,-27.548144,153.058641,EPSG:4326 +HUMAN_OBSERVATION,richarya,1,,Magnetic Island Koala,2022,12,5,Australia,AU,Queensland,-19.123214,146.872192,EPSG:4326 +HUMAN_OBSERVATION,Karin Cox,1,,,2021,10,24,Australia,AU,Queensland,-27.513713,153.074876,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,4,6,Australia,AU,Queensland,-27.525475,153.09256,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,9,11,Australia,AU,Queensland,-27.527503,153.090624,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,7,31,Australia,AU,Queensland,-27.526628,153.109254,EPSG:4326 +HUMAN_OBSERVATION,mattroetteler,1,,,2023,12,20,Australia,AU,South Australia,-34.959297,138.664939,EPSG:4326 +HUMAN_OBSERVATION,Luke Romaine,1,,,2023,11,2,Australia,AU,Queensland,-27.507608,153.077578,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,19,Australia,AU,Queensland,-27.543967,153.072036,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood maybe with a Joey,2020,4,6,Australia,AU,Queensland,-27.539433,153.056554,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2023,3,3,Australia,AU,South Australia,-34.865293,138.65675,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,2,3,Australia,AU,Queensland,-27.544384,153.072246,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,5,Australia,AU,South Australia,-34.863725,138.666971,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,10,27,Australia,AU,South Australia,-34.865274,138.656802,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,12,30,Australia,AU,New South Wales,-28.269277,153.392627,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland entrance,2024,1,27,Australia,AU,Queensland,-27.527278,153.092231,EPSG:4326 +HUMAN_OBSERVATION,Della Rowley,1,,,2023,6,8,Australia,AU,South Australia,-35.05106,138.649955,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,9,3,Australia,AU,New South Wales,-34.743347,146.522033,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2024,4,27,Australia,AU,Queensland,-27.52798,153.092322,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,"School Road, Kincora",2021,11,29,Australia,AU,Queensland,-27.808274,151.559811,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,active,2021,11,28,Australia,AU,Queensland,-27.721471,151.528966,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Top of nursery,2023,7,1,Australia,AU,Queensland,-27.52711,153.091669,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,6,8,Australia,AU,Queensland,-27.527531,153.093541,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,I could smell koala this morning but only just found it. Not terribly co-operative today. Sitting on one of the mature bluegums again.,2022,7,9,Australia,AU,Victoria,-37.874611,142.290719,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,9,Australia,AU,Queensland,-27.527043,153.091546,EPSG:4326 +HUMAN_OBSERVATION,Geoffrey Cox,1,,,2022,8,20,Australia,AU,South Australia,-35.017549,138.657146,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,6,17,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala scat under a eucalypt.,2021,9,5,Australia,AU,Queensland,-27.995196,152.683542,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Green tag RIGHT ear - can’t confirm #but I think this is Joy,2023,1,28,Australia,AU,Queensland,-27.527039,153.109156,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,30,Australia,AU,South Australia,-34.890403,138.730186,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Had cystitis. Couldn't see sex.,2023,9,24,Australia,AU,Queensland,-25.043668,148.184776,EPSG:4326 +HUMAN_OBSERVATION,Scott Rolph,1,,,2023,2,19,Australia,AU,Victoria,-38.053648,144.14395,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Strong scent so possibly male,2023,1,26,Australia,AU,Queensland,-27.524758,153.092063,EPSG:4326 +HUMAN_OBSERVATION,schaefeck,1,,,2022,2,6,Australia,AU,Victoria,-37.923179,147.727078,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2023,12,26,Australia,AU,Victoria,-38.340527,142.628477,EPSG:4326 +HUMAN_OBSERVATION,Cookie,1,,,2022,4,18,Australia,AU,Queensland,-27.543093,153.052368,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2022,1,5,Australia,AU,Queensland,-27.51005,153.083708,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,2,11,Australia,AU,Queensland,-27.52484,153.093289,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,23,Australia,AU,Queensland,-27.527458,153.09238,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,"2nd of 4 seen, here with a joey",2021,6,20,Australia,AU,Queensland,-27.545853,153.05352,EPSG:4326 +HUMAN_OBSERVATION,cmaccoll,1,,,2023,9,30,Australia,AU,Queensland,-27.50194,151.962282,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree next to tennis courts,2023,10,7,Australia,AU,Queensland,-27.525314,153.09278,EPSG:4326 +HUMAN_OBSERVATION,stanley8m,1,,,2023,1,14,Australia,AU,Victoria,-38.668473,143.860553,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,5,24,Australia,AU,Queensland,-27.529019,153.103242,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,1,5,Australia,AU,Queensland,-27.546896,153.068871,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,10,11,Australia,AU,South Australia,-34.893179,138.626415,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,24,Australia,AU,South Australia,-34.89248,138.713936,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,19,Australia,AU,South Australia,-34.89256,138.720194,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,2,17,Australia,AU,Queensland,-27.510502,153.08591,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,3,25,Australia,AU,New South Wales,-33.076367,151.095445,EPSG:4326 +HUMAN_OBSERVATION,kingdevo,1,,,2022,6,14,Australia,AU,New South Wales,-34.758029,146.563228,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Brown male koala - believe same as seen 2nd September ab just seen on 29th Sept again,2021,9,8,Australia,AU,New South Wales,-28.254105,153.377546,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,5,26,Australia,AU,Queensland,-27.525531,153.092693,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,29,Australia,AU,Queensland,-27.54257,153.071842,EPSG:4326 +HUMAN_OBSERVATION,jeremyringma,1,,,2022,4,8,Australia,AU,Queensland,-27.546158,153.193263,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2022,11,13,Australia,AU,Queensland,-27.799141,151.568613,EPSG:4326 +HUMAN_OBSERVATION,Pam Day,1,,2 Koalas in separate trees about 20 metres apart,2024,4,9,Australia,AU,Victoria,-38.749944,143.66658,EPSG:4326 +HUMAN_OBSERVATION,Paul,1,,,2022,11,20,Australia,AU,Victoria,-38.378546,145.315184,EPSG:4326 +HUMAN_OBSERVATION,Jillian Kern,1,,,2024,3,16,Australia,AU,Victoria,-37.401997,144.405517,EPSG:4326 +HUMAN_OBSERVATION,Alana Jagt,1,,Koala at Horsnell Gully,2021,10,24,Australia,AU,South Australia,-34.930695,138.702672,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Cheese tree,2020,2,3,Australia,AU,Queensland,-27.54404,153.060814,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,One of the locals who moves around this township.,2024,9,17,Australia,AU,Victoria,-37.87421,142.293246,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - yellow tag 1317 LEFT ear - ? Thor, recently released",2024,3,16,Australia,AU,Queensland,-27.52759,153.110242,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,4,4,Australia,AU,Queensland,-26.356881,151.73851,EPSG:4326 +HUMAN_OBSERVATION,mkoz10,1,,,2024,4,17,Australia,AU,Victoria,-38.832721,143.512682,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,,2024,10,19,Australia,AU,Queensland,-27.493653,153.40299,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"In E. tereticornis,Boonah Rail Trail. Seen in same tree yesterday, 4 April.",2024,4,5,Australia,AU,Queensland,-27.98969,152.678748,EPSG:4326 +HUMAN_OBSERVATION,Alex,1,,Hunter Camera,2024,7,14,Australia,AU,Queensland,-26.14881,152.86575,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,1,Australia,AU,South Australia,-34.892721,138.722438,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Nursery rear entrance,2024,5,10,Australia,AU,Queensland,-27.527166,153.092046,EPSG:4326 +HUMAN_OBSERVATION,enekoazkue,1,,At least three individuals.,2023,1,14,Australia,AU,Victoria,-38.354382,141.610644,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - white tag LEFT ear - Bandit,2023,12,16,Australia,AU,Queensland,-27.52993,153.110963,EPSG:4326 +HUMAN_OBSERVATION,Thomas Mesaglio,1,,,2023,7,6,Australia,AU,New South Wales,-34.1461,150.794661,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,29,Australia,AU,South Australia,-34.89323,138.714389,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3158,2023,5,11,Australia,AU,Queensland,-27.496538,152.24925,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2020,6,6,Australia,AU,South Australia,-35.005258,138.655642,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,6,Australia,AU,Queensland,-27.506633,153.084617,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,28,Australia,AU,Queensland,-27.529548,153.103255,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lower wisteria car park,2024,7,3,Australia,AU,Queensland,-27.52487,153.092368,EPSG:4326 +HUMAN_OBSERVATION,Adrian M,1,,,2023,10,7,Australia,AU,Queensland,-27.52778,153.034912,EPSG:4326 +HUMAN_OBSERVATION,Leah Burns,1,,,2021,8,2,Australia,AU,Queensland,-27.54506,153.04469,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Aldi gates entrance,2024,10,19,Australia,AU,Queensland,-27.526931,153.09331,EPSG:4326 +HUMAN_OBSERVATION,lisaandandrewr,1,,,2023,11,25,Australia,AU,Victoria,-36.869208,145.454955,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On a planted Eucalyptus mollucana.,2023,1,23,Australia,AU,Queensland,-27.550203,153.034133,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,,2023,12,1,Australia,AU,Queensland,-27.528464,153.103186,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2022,12,2,Australia,AU,New South Wales,-33.076481,151.095108,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,,2024,9,1,Australia,AU,Queensland,-27.510472,153.070025,EPSG:4326 +HUMAN_OBSERVATION,Heath Hunter,1,,,2023,6,16,Australia,AU,South Australia,-34.947226,138.689473,EPSG:4326 +HUMAN_OBSERVATION,ninjajuju,1,,,2021,6,30,Australia,AU,Queensland,-19.129334,146.855198,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,And Joey in Grey Ironbark,2020,11,3,Australia,AU,Queensland,-27.528335,153.049182,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,10,11,Australia,AU,Queensland,-27.15318,152.610092,EPSG:4326 +HUMAN_OBSERVATION,Jon Marnock,1,,,2023,9,25,Australia,AU,Queensland,-27.079819,152.377778,EPSG:4326 +HUMAN_OBSERVATION,sailorrain,1,,,2024,5,8,Australia,AU,Queensland,-27.914143,153.373785,EPSG:4326 +HUMAN_OBSERVATION,beach_track_alli,1,,,2024,11,15,Australia,AU,Victoria,-38.634432,145.755191,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female with joey. Healthy. Observed by Rach N Pete. Submitted via FB.,2024,11,15,Australia,AU,Queensland,-26.492359,151.84508,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2022,10,23,Australia,AU,Queensland,-28.09528,152.829253,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,Not far off side of the road GlenLogan Horse Stud innesplain,2023,1,7,Australia,AU,Queensland,-28.180228,152.903899,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,With Joey,2020,9,16,Australia,AU,South Australia,-35.004822,138.642746,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Spectacle Eyes"" female in very large yellow box",2021,1,8,Australia,AU,New South Wales,-30.519512,151.520074,EPSG:4326 +HUMAN_OBSERVATION,wildjones,1,,,2023,9,18,Australia,AU,Victoria,-37.839464,143.796636,EPSG:4326 +HUMAN_OBSERVATION,hotpotofnoodles,1,,"Terrible photos of a koalas bum, just putting it out there that they are in the area",2020,8,1,Australia,AU,Queensland,-27.915122,153.37883,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,4,13,Australia,AU,Queensland,-27.527297,153.091524,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,4,29,Australia,AU,Queensland,-27.583817,153.183393,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2023,12,25,Australia,AU,Queensland,-27.526924,153.090561,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown,2020,7,4,Australia,AU,Queensland,-27.453732,152.645846,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,6,16,Australia,AU,Queensland,-27.528635,153.092557,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,7,6,Australia,AU,Queensland,-27.52706,153.091741,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Koala, high up in tree. Observation by Jackie, video taken with mobile phone.",2022,11,12,Australia,AU,New South Wales,-28.269796,153.392986,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,First sighting in fifty years of having the property - yay!! In a Corymbia citriodora ssp. variegata,2021,11,28,Australia,AU,Queensland,-27.822645,152.992722,EPSG:4326 +HUMAN_OBSERVATION,rosrunciman,1,,,2024,9,18,Australia,AU,New South Wales,-32.312169,151.798225,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,This is one of two related iNaturalist records of a koala group comprising an adult and a juvenile koala. This record concerns the JUVENILE KOALA. Links to the relevant records are as follows: - Adult koala https://inaturalist.ala.org.au/observations/194698510 - Juvenile koala https://inaturalist.ala.org.au/observations/194698649,2023,12,23,Australia,AU,Queensland,-27.511247,153.087697,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"Voluntary Rescue, Vehicle Strike",2023,7,31,Australia,AU,Victoria,-37.600266,143.86949,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2023,3,21,Australia,AU,Victoria,-37.042965,145.395265,EPSG:4326 +HUMAN_OBSERVATION,Kelly Smith,1,,,2022,5,3,Australia,AU,Victoria,-38.39895,145.108764,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,9,Australia,AU,South Australia,-34.87139,138.733423,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Webster. Forwarded by email.,2020,7,27,Australia,AU,Queensland,-26.428994,151.793747,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2023,10,3,Australia,AU,Queensland,-27.869872,152.624508,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,"Adult. Female. Unhealthy. Rescued. Later euthanised due to due to age, no teeth, no circulation or colour, extremely skinny and her body was beginning to shut down. Observed by Wendy Taylor. Submitted via msg.",2024,7,21,Australia,AU,Queensland,-26.083261,151.710008,EPSG:4326 +HUMAN_OBSERVATION,Marie Tarrant,1,,,2023,10,6,Australia,AU,Queensland,-26.872647,152.175712,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2023,11,19,Australia,AU,Queensland,-27.284739,153.000108,EPSG:4326 +HUMAN_OBSERVATION,Emma Stone,1,,,2021,9,22,Australia,AU,New South Wales,-28.646462,153.31979,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,9,5,Australia,AU,Queensland,-27.546015,153.072823,EPSG:4326 +HUMAN_OBSERVATION,kazhutcho,1,,Spotted a fair distance off the track.,2023,11,26,Australia,AU,New South Wales,-30.362774,153.076584,EPSG:4326 +HUMAN_OBSERVATION,jamwin,1,,,2022,10,27,Australia,AU,South Australia,-34.89173,138.630203,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Big hollering male,2021,9,28,Australia,AU,Victoria,-38.671059,146.165166,EPSG:4326 +HUMAN_OBSERVATION,faufauh,1,,,2020,2,3,Australia,AU,Queensland,-27.535138,153.221384,EPSG:4326 +HUMAN_OBSERVATION,Kylie Agnew-Francis,1,,,2023,8,13,Australia,AU,Queensland,-27.506153,153.078811,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey Charlie,2024,4,17,Australia,AU,Queensland,-27.528544,153.103322,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,7,25,Australia,AU,Queensland,-27.551504,153.0595,EPSG:4326 +HUMAN_OBSERVATION,makenalayton,1,,"This animal is grey-brown, fluffy, and around .75m in height. It has a large, round black nose and hairy circular ears. Its belly as well as patches of its face are white rather than grey. It has dextrous claws which it appears to use for climbing and eating. This koala was mostly sedentary.",2022,10,16,Australia,AU,Queensland,-19.123225,146.872147,EPSG:4326 +HUMAN_OBSERVATION,philgunasekara,1,,,2023,4,29,Australia,AU,Queensland,-27.663114,153.075842,EPSG:4326 +HUMAN_OBSERVATION,HR Nature,1,,"6 Koalas were identified within 1km of this location over the course of three days, with 3 confirmed as individuals and one identified as male. Details and images of those records are available on request.",2024,7,6,Australia,AU,Queensland,-26.793974,152.824157,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - white tag LEFT ear - Bandit,2023,8,5,Australia,AU,Queensland,-27.529801,153.110646,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2023,10,22,Australia,AU,Queensland,-27.528503,153.092883,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,14,Australia,AU,Queensland,-27.528174,153.111571,EPSG:4326 +HUMAN_OBSERVATION,homeview,1,,,2024,7,28,Australia,AU,Queensland,-27.077426,151.259239,EPSG:4326 +HUMAN_OBSERVATION,venus5026,1,,,2024,1,1,Australia,AU,South Australia,-35.706443,137.493669,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Unhealthy. Rescued. Passed away following day 8th July. Observed by Wendy Taylor. Submitted via msg.,2024,7,7,Australia,AU,Queensland,-26.505089,151.83207,EPSG:4326 +HUMAN_OBSERVATION,julietandbrian,1,,,2022,9,22,Australia,AU,Queensland,-27.348312,152.062606,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,,2024,10,15,Australia,AU,Queensland,-27.26295,152.04943,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,7,Australia,AU,South Australia,-34.891771,138.732312,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,Robin and RJ sitting in Angophera floribunda (non feed tree),2023,11,1,Australia,AU,Queensland,-27.41242,152.003188,EPSG:4326 +HUMAN_OBSERVATION,leithallb,1,,2319,2022,6,26,Australia,AU,Queensland,-27.511709,153.083663,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Exciting evidence of koala in a place where it hasn't been seen before. Quite a lot of scat under Corymbia citriodora.,2020,9,21,Australia,AU,Queensland,-28.16671,152.605706,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In Tristania and Wisteria woodland - towards back and next to fence of lower car park,2023,8,5,Australia,AU,Queensland,-27.524775,153.093018,EPSG:4326 +HUMAN_OBSERVATION,Rob Brooks,1,,,2022,11,24,Australia,AU,South Australia,-34.955933,138.70195,EPSG:4326 +HUMAN_OBSERVATION,maxb,1,,,2020,9,7,Australia,AU,Victoria,-38.314959,146.424429,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,And very old Joey,2020,12,9,Australia,AU,Queensland,-27.547258,153.058153,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala high in Eucalyptus tereticornis. About 40m from another one.,2022,9,5,Australia,AU,Queensland,-28.000459,152.681471,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,,2024,10,30,Australia,AU,Queensland,-27.548803,153.175444,EPSG:4326 +HUMAN_OBSERVATION,Adrian M,1,,,2023,9,9,Australia,AU,Queensland,-27.52783,153.03507,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Presume this is mum & joey in the same tree,2023,11,27,Australia,AU,Queensland,-27.527817,153.111886,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2021,8,15,Australia,AU,New South Wales,-28.255786,153.401121,EPSG:4326 +HUMAN_OBSERVATION,ginaha,1,,,2020,8,28,Australia,AU,New South Wales,-32.57108,151.754167,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,"A metre from the top, very camoflauged",2024,8,4,Australia,AU,New South Wales,-34.083489,150.852047,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,"This beauty was spotted by Amy at 1PM in a tree off Mt Crosby Rd, next to the water treatment plant concrete tank, heading towards the bowling club. Attribution: Amy",2021,1,15,Australia,AU,Queensland,-27.532621,152.803627,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Paperbark,2020,2,5,Australia,AU,Queensland,-27.551308,153.058677,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,Forested gum,2024,6,23,Australia,AU,Queensland,-28.206105,152.898971,EPSG:4326 +HUMAN_OBSERVATION,marzipan2,1,,Not a well individual. Was eating termite mound on the ground. Called Amy from Koala rescue but had claimed too high by then.,2024,6,28,Australia,AU,Queensland,-27.984617,153.33525,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Front of TAFE Cavendish Road Frank Rooney,2024,10,26,Australia,AU,Queensland,-27.526893,153.090922,EPSG:4326 +HUMAN_OBSERVATION,acrida,1,,,2024,11,5,Australia,AU,Victoria,-37.646416,144.037963,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,About 30m from major road. Climbed up with ease.,2024,3,10,Australia,AU,New South Wales,-34.077081,150.849412,EPSG:4326 +HUMAN_OBSERVATION,duncansayers,1,,,2023,8,22,Australia,AU,Queensland,-26.167755,152.68222,EPSG:4326 +HUMAN_OBSERVATION,kath_wilson_forager,1,FEMALE,,2024,3,24,Australia,AU,Victoria,-38.828026,143.58307,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via FB (South Burnett Koala Watch),2023,11,25,Australia,AU,Queensland,-26.14005,151.762033,EPSG:4326 +HUMAN_OBSERVATION,uqsfitz2,1,,"Looks healthy, clean rump and eyes. Male",2023,5,2,Australia,AU,Queensland,-27.963212,152.597131,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2023,1,29,Australia,AU,Queensland,-27.546257,153.058072,EPSG:4326 +HUMAN_OBSERVATION,sarah macdonald,1,,,2022,12,2,Australia,AU,South Australia,-35.007579,138.647454,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,2,25,Australia,AU,Queensland,-27.526914,153.090795,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,8,9,Australia,AU,Queensland,-27.41128,152.004883,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey,2024,10,12,Australia,AU,Queensland,-27.527313,153.091509,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,23,Australia,AU,Queensland,-27.541719,153.10558,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Robyn Zackreson. Submitted by Wendy Taylor via msg.,2023,12,9,Australia,AU,Queensland,-26.361757,151.737684,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In unknown tree,2020,2,1,Australia,AU,Queensland,-27.539458,153.040095,EPSG:4326 +HUMAN_OBSERVATION,nhaass,1,,,2022,1,30,Australia,AU,Queensland,-27.488305,153.245199,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,22,Australia,AU,Queensland,-27.525922,153.09182,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Near K block mowing shed,2024,5,3,Australia,AU,Queensland,-27.525839,153.090872,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2022,7,8,Australia,AU,Victoria,-36.799196,145.778941,EPSG:4326 +HUMAN_OBSERVATION,mikaelathrift,1,,,2022,11,17,Australia,AU,Queensland,-27.72033,153.186447,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,In nursery grounds Male yellow tag left ear,2024,7,7,Australia,AU,Queensland,-27.528233,153.092349,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,Koala scat,2023,10,19,Australia,AU,New South Wales,-29.782038,150.713031,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,17,Australia,AU,Queensland,-27.823117,152.992562,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,"Large male, no ear tag, very clean bottom Awesome!! Near creek and house. In a Scribbly gum",2024,8,24,Australia,AU,Queensland,-27.169978,152.988817,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2024,11,5,Australia,AU,Victoria,-38.383257,145.273007,EPSG:4326 +HUMAN_OBSERVATION,muddy77,1,,,2023,6,27,Australia,AU,New South Wales,-34.060569,150.875938,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,4,14,Australia,AU,Queensland,-26.17693,151.691557,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Red tag right ear. Koala has a Joey.,2024,7,26,Australia,AU,Queensland,-27.545928,153.073436,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,23,Australia,AU,Queensland,-27.529642,153.104426,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,12,Australia,AU,Queensland,-27.527101,153.102063,EPSG:4326 +HUMAN_OBSERVATION,Brad,1,,,2021,7,4,Australia,AU,South Australia,-35.001947,138.638429,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2023,1,3,Australia,AU,South Australia,-35.004669,138.705887,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Maisie near e block Yellow tag right ear #0768,2023,12,27,Australia,AU,Queensland,-27.52639,153.09076,EPSG:4326 +HUMAN_OBSERVATION,camille_caparros,1,,,2022,10,28,Australia,AU,South Australia,-34.989698,138.63725,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block picnic area,2024,9,17,Australia,AU,Queensland,-27.525946,153.090456,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,"Possibly adult male. Awake, scratching itself and moving head. Appears healthy. RE: 12.11.24",2023,3,22,Australia,AU,Queensland,-27.548626,153.05959,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,7,3,Australia,AU,Queensland,-27.703185,153.192068,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,1,31,Australia,AU,Queensland,-27.537824,153.05455,EPSG:4326 +HUMAN_OBSERVATION,Steve Dew,1,,,2022,2,24,Australia,AU,Victoria,-38.317772,142.363909,EPSG:4326 +HUMAN_OBSERVATION,Colin Trainor,1,,,2021,11,25,Australia,AU,Queensland,-27.526205,153.282505,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,MALE,,2023,1,16,Australia,AU,Queensland,-27.597332,151.890652,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"I can't see if this one is one of the females or a male. It got bored with me and went back to sleep. It's not very worried about us or the dogs in the backyard, second fork up on the righthand side of the tree. Sometimes when they come here they climb up right into the tops of the bluegums.",2022,10,4,Australia,AU,Victoria,-37.874531,142.290882,EPSG:4326 +HUMAN_OBSERVATION,biologistbeth,1,,,2024,1,14,Australia,AU,South Australia,-34.95768,138.666262,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2023,4,22,Australia,AU,New South Wales,-36.077476,149.230779,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,,2021,9,12,Australia,AU,Queensland,-27.56555,153.133911,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy and alert, 5th of 6 seen",2023,1,26,Australia,AU,Queensland,-27.339347,152.61323,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,11,8,Australia,AU,Queensland,-27.649258,151.713058,EPSG:4326 +HUMAN_OBSERVATION,porkychopps,1,,,2021,1,5,Australia,AU,New South Wales,-28.663075,153.610337,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,9,13,Australia,AU,Queensland,-27.917869,153.37893,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,Robin resting in the bough of a Eucalyptus microcorys. Joey RJ is high in the treetops on her own.,2023,11,16,Australia,AU,Queensland,-27.413553,152.003175,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.016036,138.672365,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,4,5,Australia,AU,South Australia,-35.012446,138.670714,EPSG:4326 +HUMAN_OBSERVATION,lynsh,1,,,2023,5,20,Australia,AU,Queensland,-28.094804,153.450049,EPSG:4326 +HUMAN_OBSERVATION,kathylangford,1,,,2023,7,31,Australia,AU,Queensland,-26.279398,152.927345,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,9,10,Australia,AU,Queensland,-27.258321,152.044867,EPSG:4326 +HUMAN_OBSERVATION,David Sinnott,1,,,2021,9,12,Australia,AU,New South Wales,-34.075418,150.976369,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Bloodwood,2020,2,18,Australia,AU,Queensland,-27.550911,153.058126,EPSG:4326 +HUMAN_OBSERVATION,rorykp,1,,,2024,4,15,Australia,AU,Queensland,-27.223494,153.069214,EPSG:4326 +HUMAN_OBSERVATION,Dean,1,,,2022,11,27,Australia,AU,Victoria,-38.636691,143.888866,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Cheese tree amongst MRV,2020,11,17,Australia,AU,Queensland,-27.54671,153.058303,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,,2023,5,2,Australia,AU,Queensland,-27.53035,153.101097,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,6,24,Australia,AU,Queensland,-27.527218,153.091664,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Christabelle,2023,1,14,Australia,AU,Queensland,-27.531519,153.105401,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - known as Millie,2023,7,19,Australia,AU,Queensland,-27.527278,153.111271,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,,2024,9,16,Australia,AU,New South Wales,-34.759399,146.566781,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,,2023,11,26,Australia,AU,New South Wales,-30.533507,153.002982,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,10,14,Australia,AU,Queensland,-26.408549,151.828005,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Young male rescued next to Showgrounds, chest trauma",2023,10,4,Australia,AU,Queensland,-27.54253,153.081803,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2024,5,26,Australia,AU,South Australia,-34.735377,138.84393,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2023,7,14,Australia,AU,Queensland,-27.226223,153.072285,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,12 year old. Little Pinky in pouch. Blind in one eye.,2023,10,17,Australia,AU,Queensland,-27.256916,152.045282,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Spectacle Eyes"" female in stringy bark",2020,12,1,Australia,AU,New South Wales,-30.520915,151.518981,EPSG:4326 +HUMAN_OBSERVATION,Michelle,1,,Joey on right. Mum koala in previous observation.,2021,9,9,Australia,AU,Queensland,-27.558822,153.042229,EPSG:4326 +HUMAN_OBSERVATION,Dezmond Wells,1,,,2022,7,28,Australia,AU,Queensland,-27.208567,153.033417,EPSG:4326 +HUMAN_OBSERVATION,renee_d,1,,,2024,7,2,Australia,AU,Victoria,-38.019019,141.582717,EPSG:4326 +HUMAN_OBSERVATION,siennah,1,,,2024,10,5,Australia,AU,Queensland,-27.701075,153.19017,EPSG:4326 +HUMAN_OBSERVATION,kaella_l,1,MALE,,2024,11,13,Australia,AU,South Australia,-35.706774,137.493906,EPSG:4326 +HUMAN_OBSERVATION,Sam S,1,,In manna gum near creek,2023,4,22,Australia,AU,Victoria,-37.016558,145.449634,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,,2023,2,26,Australia,AU,Queensland,-27.596429,151.896474,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,Found roadside then imaged by Sandra McKay KLAWS,2021,11,28,Australia,AU,Queensland,-27.231139,152.057744,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,5,10,Australia,AU,New South Wales,-34.766778,146.576997,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Stringybark,2020,1,28,Australia,AU,Queensland,-27.549525,153.049669,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,7,1,Australia,AU,Queensland,-27.524982,153.093354,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Acacia,2020,8,3,Australia,AU,Queensland,-27.551318,153.057285,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,14,Australia,AU,Queensland,-27.526971,153.091519,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,27,Australia,AU,South Australia,-34.889201,138.732419,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,30,Australia,AU,Queensland,-27.529081,153.107975,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,MALE,,2021,9,3,Australia,AU,Victoria,-38.175532,145.132219,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,1,29,Australia,AU,Queensland,-27.551208,153.057809,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2020,4,3,Australia,AU,Queensland,-27.54709,153.073486,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Koala mum and her joey which is hidden. The darker patch in the middle is her joey.,2023,6,18,Australia,AU,Queensland,-27.284528,153.000533,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,17,Australia,AU,Queensland,-27.529329,153.111741,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,Very low in sapling tree after a major storm.,2021,6,11,Australia,AU,Victoria,-38.175873,145.127253,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Grey Gum,2020,2,14,Australia,AU,Queensland,-27.547107,153.058755,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,22,Australia,AU,South Australia,-34.932732,138.708329,EPSG:4326 +HUMAN_OBSERVATION,Elspeth Swan,1,,,2020,9,14,Australia,AU,Victoria,-37.633637,144.088434,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2022,9,20,Australia,AU,Queensland,-28.037483,151.517883,EPSG:4326 +HUMAN_OBSERVATION,ben_barth,1,FEMALE,Female with joey on front. In a swamp mahogany.,2022,6,28,Australia,AU,New South Wales,-29.025558,153.437424,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Opposite side of tennis courts Koala 2,2023,12,10,Australia,AU,Queensland,-27.525302,153.093462,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by community. Submitted by Wendy Taylor via msg.,2024,9,17,Australia,AU,Queensland,-26.140902,151.761422,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,,"Female koala v high in red box tree, busy eating leaves and hanging on in gusty wind",2024,10,24,Australia,AU,Victoria,-37.835179,144.284306,EPSG:4326 +HUMAN_OBSERVATION,wanderingcharlie,1,,,2020,11,4,Australia,AU,New South Wales,-30.279091,153.087782,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female with Joey. Healthy. Observed by Bony Clancy. Submitted via FB.,2024,11,12,Australia,AU,Queensland,-26.621947,151.790113,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2022,1,13,Australia,AU,Victoria,-38.671034,146.164558,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,MALE,,2022,11,3,Australia,AU,Victoria,-38.177141,145.130364,EPSG:4326 +HUMAN_OBSERVATION,hamptonh,1,,,2024,3,31,Australia,AU,Victoria,-38.24903,141.716013,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,4,Australia,AU,Queensland,-27.527213,153.109731,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,5,Australia,AU,Queensland,-27.531571,153.105226,EPSG:4326 +HUMAN_OBSERVATION,martinkopp,1,,,2024,10,6,Australia,AU,New South Wales,-29.7386,150.972319,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,K block mowing shed,2024,10,13,Australia,AU,Queensland,-27.525856,153.090988,EPSG:4326 +HUMAN_OBSERVATION,rdgray,1,,,2022,1,11,Australia,AU,Victoria,-38.525422,143.973358,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Bald Ear Male in E. blakelyi. This male seems to be moving more and more into the territory of (Half) Black Lip.,2020,4,26,Australia,AU,New South Wales,-30.519927,151.518877,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,19,Australia,AU,Queensland,-27.526819,153.090816,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,9,15,Australia,AU,Queensland,-27.527274,153.091684,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,"Large female Koala high in messmate Reclining, arms out in front catching last of today's sun. No sign of koala next morning",2023,5,21,Australia,AU,Victoria,-37.842137,144.279377,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In unknown Stringybark,2020,2,8,Australia,AU,Queensland,-27.543337,153.053835,EPSG:4326 +HUMAN_OBSERVATION,angb24,1,,Male,2024,9,10,Australia,AU,Victoria,-37.824654,145.653061,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,2,15,Australia,AU,South Australia,-34.958037,138.699915,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2021,4,11,Australia,AU,South Australia,-34.979128,138.620953,EPSG:4326 +HUMAN_OBSERVATION,jaiden_in_toohey,1,,,2023,8,7,Australia,AU,Queensland,-27.554563,153.053109,EPSG:4326 +HUMAN_OBSERVATION,Daniel J. Aguirre Howes,1,,,2024,8,29,Australia,AU,Queensland,-19.123157,146.871857,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,MALE,Large male,2023,2,4,Australia,AU,Queensland,-27.531289,153.10039,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2022,12,4,Australia,AU,Queensland,-26.378658,153.020455,EPSG:4326 +HUMAN_OBSERVATION,shaun_reay,1,,Very high up in tree,2020,10,1,Australia,AU,Queensland,-27.503953,153.232805,EPSG:4326 +HUMAN_OBSERVATION,brookieashley,1,,,2024,9,23,Australia,AU,New South Wales,-30.328033,153.105909,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,3,7,Australia,AU,Queensland,-27.546262,153.068298,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,5,17,Australia,AU,South Australia,-35.007238,138.654008,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,8,17,Australia,AU,New South Wales,-28.254067,153.377552,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,FEMALE,,2022,11,15,Australia,AU,Queensland,-27.40038,153.437616,EPSG:4326 +HUMAN_OBSERVATION,davidmck,1,FEMALE,,2023,5,6,Australia,AU,Victoria,-37.913982,144.172907,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2023,1,6,Australia,AU,Victoria,-37.33235,144.59504,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,5,Australia,AU,Queensland,-27.413545,152.003189,EPSG:4326 +HUMAN_OBSERVATION,mitchbagz,1,,,2023,2,17,Australia,AU,Victoria,-37.276958,144.310897,EPSG:4326 +HUMAN_OBSERVATION,Owen Gale,1,,,2021,5,2,Australia,AU,South Australia,-34.987811,138.738208,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Strzelecki Koala,2024,4,26,Australia,AU,Victoria,-38.671087,146.164689,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,15,Australia,AU,Queensland,-27.530654,153.104042,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3161,2023,5,29,Australia,AU,Queensland,-27.496763,152.249435,EPSG:4326 +HUMAN_OBSERVATION,mainlandtasmanian,1,,Terrible photo but had young on her back.,2022,12,31,Australia,AU,Victoria,-37.331167,144.594178,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Low down and climbing. Likely moving along the ground.,2022,1,21,Australia,AU,Queensland,-27.888094,153.180828,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Koala in tree on Lawnton Pocket Road this afternoon.,2024,5,19,Australia,AU,Queensland,-27.284941,153.000846,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Female NDA independent Joey (large ) in Tallowwood,2020,10,9,Australia,AU,Queensland,-27.551438,153.057577,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,4,5,Australia,AU,South Australia,-35.015755,138.670674,EPSG:4326 +HUMAN_OBSERVATION,tiner,1,,,2023,12,23,Australia,AU,Victoria,-38.667946,143.85766,EPSG:4326 +HUMAN_OBSERVATION,lifelist,1,,,2023,3,22,Australia,AU,Victoria,-38.831765,146.128581,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,13,Australia,AU,Queensland,-27.528834,153.109338,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,7,Australia,AU,Queensland,-27.823807,152.992995,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,11,13,Australia,AU,Queensland,-27.540136,153.072866,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,Female koala high in Redgum with young Joey hiding in lap. Can only see part of a foot on right side and possibly part of hairy ear on other side of lap,2024,10,23,Australia,AU,Victoria,-37.873767,144.108047,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,11,Australia,AU,Queensland,-27.543927,153.070406,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland middle,2024,1,7,Australia,AU,Queensland,-27.528072,153.092869,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,7,Australia,AU,Queensland,-27.529535,153.105713,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,1,31,Australia,AU,Queensland,-27.548459,153.058681,EPSG:4326 +HUMAN_OBSERVATION,raewyn33,1,,,2023,10,21,Australia,AU,Victoria,-37.859905,145.660538,EPSG:4326 +HUMAN_OBSERVATION,Margaret Alcorn,1,,3 individuals and all three growled and grunted as we walked past.,2022,11,25,Australia,AU,Victoria,-37.869399,142.028422,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,At front of Woodland Wisteria and Tristania Way - near road on Tristania next to wooden bollards,2023,7,8,Australia,AU,Queensland,-27.524154,153.093515,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,7,26,Australia,AU,South Australia,-34.892577,138.626745,EPSG:4326 +HUMAN_OBSERVATION,Andrew Lai,1,,,2023,8,2,Australia,AU,Victoria,-38.771407,143.65846,EPSG:4326 +HUMAN_OBSERVATION,johneichler,1,,,2023,11,25,Australia,AU,Victoria,-38.14039,141.394568,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Kristy-Jane Lane. Forwarded by email.,2021,5,26,Australia,AU,Queensland,-25.271728,151.428514,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear - known as Buster,2024,3,9,Australia,AU,Queensland,-27.531432,153.105609,EPSG:4326 +HUMAN_OBSERVATION,J. Addesi,1,,,2023,11,4,Australia,AU,Victoria,-38.829811,143.523089,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,6,9,Australia,AU,Queensland,-27.545957,153.072946,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2021,5,7,Australia,AU,Queensland,-27.549712,153.061277,EPSG:4326 +HUMAN_OBSERVATION,julietbrown,1,,,2022,1,2,Australia,AU,New South Wales,-28.569461,152.372239,EPSG:4326 +HUMAN_OBSERVATION,profotto,1,,,2023,12,27,Australia,AU,Victoria,-37.553611,149.740601,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - red tag RIGHT ear - Cindy,2023,10,24,Australia,AU,Queensland,-27.526905,153.109063,EPSG:4326 +HUMAN_OBSERVATION,sharonm8,1,,,2024,8,5,Australia,AU,Victoria,-38.056593,141.924202,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear,2023,9,29,Australia,AU,Queensland,-27.53154,153.105203,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,10,Australia,AU,South Australia,-34.892599,138.721185,EPSG:4326 +HUMAN_OBSERVATION,Andy,1,,,2024,7,12,Australia,AU,Victoria,-37.951429,144.432797,EPSG:4326 +HUMAN_OBSERVATION,Stephen Cox,1,,,2024,1,6,Australia,AU,Victoria,-38.790584,143.618923,EPSG:4326 +HUMAN_OBSERVATION,nek0011,1,,,2022,10,6,Australia,AU,Queensland,-26.676136,153.070921,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,,2023,12,9,Australia,AU,Queensland,-27.528172,153.111122,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,"Separate koala sighting, same property. same day. Observation by T Whitebreaad for TKWR",2023,4,2,Australia,AU,Queensland,-27.422176,151.895261,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,"Tagged, water tank muma (riding solo)",2022,11,24,Australia,AU,Queensland,-27.545781,153.073367,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,4,6,Australia,AU,Queensland,-27.526711,153.090658,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,7,Australia,AU,Queensland,-26.154241,151.749524,EPSG:4326 +HUMAN_OBSERVATION,georgiescott,1,,,2024,6,4,Australia,AU,Queensland,-27.419634,152.619835,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey - no sign of mum today,2024,3,13,Australia,AU,Queensland,-27.528425,153.103271,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,17,Australia,AU,Queensland,-27.527005,153.110486,EPSG:4326 +HUMAN_OBSERVATION,Michael Tervo,1,,,2023,9,30,Australia,AU,Queensland,-27.715013,152.456955,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2021,5,11,Australia,AU,Queensland,-27.510405,153.069279,EPSG:4326 +HUMAN_OBSERVATION,magpies_friends,1,,,2022,11,16,Australia,AU,South Australia,-35.010942,138.655742,EPSG:4326 +HUMAN_OBSERVATION,faufauh,1,,,2021,1,17,Australia,AU,Queensland,-27.534947,153.221208,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,,2023,2,13,Australia,AU,South Australia,-35.188439,138.677592,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Stringybark,2020,6,2,Australia,AU,Queensland,-27.548012,153.045433,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,10,18,Australia,AU,South Australia,-34.892377,138.721851,EPSG:4326 +HUMAN_OBSERVATION,kenzierosene,1,,,2023,3,21,Australia,AU,Queensland,-27.399529,153.438551,EPSG:4326 +HUMAN_OBSERVATION,belindadavis1,1,,,2021,5,9,Australia,AU,Queensland,-27.510428,153.082882,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,13,Australia,AU,Queensland,-27.792849,151.563013,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in a Eucalyptus tereticornis,2020,8,9,Australia,AU,Queensland,-28.165365,152.60724,EPSG:4326 +HUMAN_OBSERVATION,Jordan Aquilina,1,,,2022,1,8,Australia,AU,Victoria,-38.689479,143.834121,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear - Bozo,2023,7,14,Australia,AU,Queensland,-27.526702,153.109185,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,31,Australia,AU,Queensland,-27.529419,153.105001,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,3,9,Australia,AU,Queensland,-27.527276,153.091366,EPSG:4326 +HUMAN_OBSERVATION,esperly,1,,Molly (mother),2024,1,25,Australia,AU,Queensland,-27.291584,152.988877,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2023,12,4,Australia,AU,Queensland,-26.390271,152.614603,EPSG:4326 +HUMAN_OBSERVATION,Keith,1,,,2024,10,4,Australia,AU,Queensland,-27.527314,153.105784,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Healthy mum and Joey,2024,9,24,Australia,AU,Queensland,-27.711683,152.727338,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,6,9,Australia,AU,Queensland,-27.525333,153.092615,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2024,1,3,Australia,AU,Queensland,-27.358575,152.074576,EPSG:4326 +HUMAN_OBSERVATION,Ruaela,1,,,2024,10,29,Australia,AU,Queensland,-27.512705,153.081908,EPSG:4326 +HUMAN_OBSERVATION,Dubravka Skalamera,1,,,2022,4,20,Australia,AU,Queensland,-27.426969,153.540046,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,6,Australia,AU,Queensland,-27.528384,153.112409,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,3,1,Australia,AU,Queensland,-27.527025,153.091635,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Believe this is the joey of the mum and joey pair that have just separated last week. Taken as many photos to identify as possible but was at the top of a leafy tree moving in the breeze! Compare to photo of 14 October with mum when there is a full face view.,2021,10,31,Australia,AU,New South Wales,-28.253809,153.377272,EPSG:4326 +HUMAN_OBSERVATION,alicenmaisie,1,,,2023,12,4,Australia,AU,Queensland,-27.17903,151.610694,EPSG:4326 +HUMAN_OBSERVATION,jaybee228,1,,,2022,5,16,Australia,AU,Victoria,-38.357055,146.407582,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,10,27,Australia,AU,South Australia,-34.882925,138.796714,EPSG:4326 +HUMAN_OBSERVATION,coolduck,1,,Koala poo spotted on road,2023,1,28,Australia,AU,New South Wales,-30.237544,153.045228,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,7,Australia,AU,South Australia,-34.890918,138.730888,EPSG:4326 +HUMAN_OBSERVATION,Sam S,1,,,2023,3,12,Australia,AU,Victoria,-37.01961,145.46245,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,4,Australia,AU,Queensland,-27.528795,153.112721,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2021,11,1,Australia,AU,South Australia,-34.864439,138.659665,EPSG:4326 +HUMAN_OBSERVATION,mark_ley,1,,,2020,11,3,Australia,AU,New South Wales,-33.564638,149.532455,EPSG:4326 +HUMAN_OBSERVATION,Kym Sparshott,1,,In Eucalyptus tereticornis in Water Reserve on Applegum Walk,2023,11,25,Australia,AU,Queensland,-27.261997,152.064084,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,,2022,11,11,Australia,AU,Queensland,-27.510421,153.069698,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,10,30,Australia,AU,New South Wales,-28.253955,153.377401,EPSG:4326 +HUMAN_OBSERVATION,debburgess,1,,,2024,6,2,Australia,AU,Queensland,-28.066667,152.416667,EPSG:4326 +HUMAN_OBSERVATION,Jacob Crisp,1,,,2023,11,8,Australia,AU,New South Wales,-28.985063,153.366303,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and big Joey,2020,11,26,Australia,AU,Queensland,-27.550927,153.057941,EPSG:4326 +HUMAN_OBSERVATION,valsan,1,,,2023,10,30,Australia,AU,South Australia,-35.032647,138.559556,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,,Poo and tree scratches less than one week old.,2023,12,8,Australia,AU,Victoria,-37.905945,144.125859,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,This is the same mother and joey as in record 164137480 (the pattern of white on their rumps). The video at the end of this record showed the mother sitting at the base of the tree for 20 seconds (the period of the video) with the joey on her back. She may have quickly climbed the tree and so did not trigger the camera again. LCA3156.,2021,12,4,Australia,AU,Queensland,-27.831775,152.344529,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Mum and bub on back.,2023,9,21,Australia,AU,Queensland,-27.257,152.04467,EPSG:4326 +HUMAN_OBSERVATION,Pete Petinatos,1,,,2024,9,18,Australia,AU,Victoria,-38.203097,141.774992,EPSG:4326 +HUMAN_OBSERVATION,ambrosia1,1,,,2024,11,4,Australia,AU,New South Wales,-28.637419,153.629524,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2023,1,3,Australia,AU,South Australia,-34.9706,138.637756,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,2,15,Australia,AU,South Australia,-34.957072,138.697601,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,4,15,Australia,AU,Victoria,-38.671378,146.163895,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside rear entrance to nursery Mother with joey on separate branch above,2023,10,22,Australia,AU,Queensland,-27.527275,153.092001,EPSG:4326 +HUMAN_OBSERVATION,stanley8m,1,,,2023,1,9,Australia,AU,Victoria,-38.774628,143.511033,EPSG:4326 +HUMAN_OBSERVATION,salleebee,1,,,2021,8,29,Australia,AU,Victoria,-38.44748,144.929466,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,MALE,"Site is old growth Yellow Gum Eucalyptus leucoxylon and River Red Gum Eucalyptus camaldulensis woodland, adjacent to a river. Recorded on Audiomoth recorder, set up at Koala Clancy Foundation revegetation site with permission from owners, using equipment funded by IFAW. Recording amplified in Audacity. Observation duplicated for Grey-headed Flying-fox.",2023,11,23,Australia,AU,Victoria,-37.902359,144.127649,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,This is one of two related iNaturalist records of a koala group comprising an adult and a juvenile koala. This record concerns the JUVENILE KOALA. Links to the relevant records are as follows: - Adult koala https://inaturalist.ala.org.au/observations/194693077 - Juvenile koala https://inaturalist.ala.org.au/observations/194693348,2023,12,23,Australia,AU,Queensland,-27.511158,153.084242,EPSG:4326 +HUMAN_OBSERVATION,AJ,1,,,2022,11,24,Australia,AU,Victoria,-38.277171,146.950353,EPSG:4326 +HUMAN_OBSERVATION,Mark Hura,1,,,2020,3,5,Australia,AU,South Australia,-35.982919,137.021342,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,MALE,,2024,1,21,Australia,AU,South Australia,-34.892011,138.719614,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Wisteria car park next to our fence Jacob Jnr,2024,8,25,Australia,AU,Queensland,-27.524418,153.092055,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Outside nursery Male - testicles visible,2024,8,3,Australia,AU,Queensland,-27.526796,153.091135,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to e block,2024,8,4,Australia,AU,Queensland,-27.526623,153.091001,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,11,11,Australia,AU,Queensland,-27.537466,153.053682,EPSG:4326 +HUMAN_OBSERVATION,hugepossum,1,,,2024,4,7,Australia,AU,South Australia,-36.766482,140.062253,EPSG:4326 +HUMAN_OBSERVATION,Marianne Broug,1,,,2021,1,15,Australia,AU,South Australia,-35.005027,138.637363,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"Spotlight count: 27/7 17:50-18:35 1 observer JoT 45 mins 2 koalas. 28/7 Male heard west 2:08 am, 2:26, 3:07, 3:23, East close 3:38am",2024,7,27,Australia,AU,Queensland,-27.823682,152.994033,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Bozo - green tag LEFT ear Behind him in an adjacent tree is Cindy,2023,6,9,Australia,AU,Queensland,-27.527077,153.108873,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Male Tallowwood,2022,9,12,Australia,AU,Queensland,-27.548392,153.058813,EPSG:4326 +HUMAN_OBSERVATION,ibuyjunque,1,,,2024,11,20,Australia,AU,New South Wales,-31.781467,151.050675,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,18,Australia,AU,Queensland,-27.82363,152.993117,EPSG:4326 +HUMAN_OBSERVATION,Tony Wood,1,,,2023,7,27,Australia,AU,Queensland,-27.919058,153.377078,EPSG:4326 +HUMAN_OBSERVATION,Asaph Whelan,1,FEMALE,,2022,9,24,Australia,AU,South Australia,-34.903875,138.712928,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,11,15,Australia,AU,Queensland,-27.530532,153.105427,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,This is not the same koala as in record 164126365. The third photo here shows (right at the bottom) this koala leaving the area. That koala came along about 8 minutes later. This area burned in the 2019 bushfires. LCA3153.,2021,12,5,Australia,AU,Queensland,-27.831775,152.344529,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and joey Tallowood,2023,9,16,Australia,AU,Queensland,-27.550947,153.057582,EPSG:4326 +HUMAN_OBSERVATION,Alasdair McAlpine,1,,,2023,8,5,Australia,AU,Queensland,-27.493313,153.403024,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,MALE,Male,2021,12,8,Australia,AU,Queensland,-27.528339,153.103586,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,4,20,Australia,AU,Queensland,-27.54731,153.057973,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Way up in a Manna Gum - such a hot day,2021,12,31,Australia,AU,Victoria,-38.671428,146.165106,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,2,12,Australia,AU,Queensland,-27.597326,151.892944,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2024,2,12,Australia,AU,South Australia,-35.959944,136.809636,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In between admin block and cleaners donga,2024,5,5,Australia,AU,Queensland,-27.526869,153.091684,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2020,11,23,Australia,AU,Queensland,-27.510819,153.070685,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,8,3,Australia,AU,Queensland,-27.528405,153.092801,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,MALE,,2024,6,9,Australia,AU,South Australia,-34.692015,138.826933,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,"Three koalas found in adjacent trees, same day/time, appeared to be mother and 2 joeys (one Joey was slightly bigger, older?)",2021,1,26,Australia,AU,New South Wales,-34.101939,150.82222,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Unsure of wet bottom. High in canopy and overcast day. Going back to reassess. Observed by Wendy Taylor. Submitted via msg.,2024,4,26,Australia,AU,Queensland,-26.203851,151.910256,EPSG:4326 +HUMAN_OBSERVATION,Scott Baker,1,,,2021,12,4,Australia,AU,Victoria,-38.441906,146.892969,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery entrance gates,2023,12,16,Australia,AU,Queensland,-27.527351,153.091384,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,9,Australia,AU,South Australia,-34.892869,138.720972,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Local Lawnton Mum and joey.,2023,11,12,Australia,AU,Queensland,-27.284754,153.000516,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Aldi gate gully,2024,8,24,Australia,AU,Queensland,-27.526296,153.093055,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,12,Australia,AU,Queensland,-27.528954,153.106381,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,6,Australia,AU,Queensland,-27.527924,153.111423,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,MALE,,2021,3,22,Australia,AU,Victoria,-38.175487,145.132216,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,28,Australia,AU,Queensland,-27.527086,153.108182,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Koala observation by Joanne.,2022,10,13,Australia,AU,New South Wales,-28.267204,153.391506,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Male,2021,1,12,Australia,AU,Victoria,-38.671222,146.163772,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy and alert, 1 of 6 seen",2023,1,26,Australia,AU,Queensland,-27.339063,152.614503,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,13,Australia,AU,Queensland,-27.512711,153.082367,EPSG:4326 +HUMAN_OBSERVATION,codyhochen,1,,,2023,3,11,Australia,AU,Queensland,-27.311678,153.00118,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - Cindy,2023,9,8,Australia,AU,Queensland,-27.527209,153.109016,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,1,Australia,AU,Queensland,-27.526797,153.109137,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Maisie and no sign of joey Front of tafe cavendish road,2023,11,26,Australia,AU,Queensland,-27.526726,153.090511,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2021,11,20,Australia,AU,Victoria,-38.384495,145.306458,EPSG:4326 +HUMAN_OBSERVATION,codyhochen,1,,On ground top left of photo. Better seen in last photo.,2020,6,19,Australia,AU,Queensland,-27.484156,152.860121,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Observation & video taken by Peter, photos clipped from video.",2022,10,19,Australia,AU,New South Wales,-28.266574,153.395738,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2024,11,17,Australia,AU,South Australia,-34.924903,138.689745,EPSG:4326 +HUMAN_OBSERVATION,Christopher Caine,1,MALE,This adult male was having a shouting match with another one that was unseen but heard. Also noted a bald patch on the chest which I believe is another indication that it is male. Oh and testicles :-),2020,2,14,Australia,AU,South Australia,-35.175278,138.513611,EPSG:4326 +HUMAN_OBSERVATION,Dominique Appay,1,,"Koala crossing Collingwood Rd, Sth to Nth, resting on roadside, near a gum tree.",2022,6,21,Australia,AU,Queensland,-27.498671,153.226361,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,this koala was feeding on these leaves https://inaturalist.ala.org.au/observations/196393623,2024,1,12,Australia,AU,Queensland,-27.542569,153.071909,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,3,Australia,AU,South Australia,-34.886567,138.734229,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2023,12,25,Australia,AU,Queensland,-27.525484,153.092199,EPSG:4326 +HUMAN_OBSERVATION,Liz,1,,,2021,10,23,Australia,AU,South Australia,-34.901555,138.703455,EPSG:4326 +HUMAN_OBSERVATION,kynaturalistfeller,1,,,2024,11,3,Australia,AU,Victoria,-38.318341,142.363164,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult female with joey. Healthy. Observed by Maree Daniels. Submitted by Denise Shaw via email.,2023,8,31,Australia,AU,Queensland,-26.304521,151.994675,EPSG:4326 +HUMAN_OBSERVATION,jade_rp,1,,,2022,12,19,Australia,AU,Victoria,-37.916562,145.570983,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2022,10,27,Australia,AU,Victoria,-38.133057,145.270966,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,6,Australia,AU,South Australia,-34.892237,138.720528,EPSG:4326 +HUMAN_OBSERVATION,insiderelic,1,,,2021,2,20,Australia,AU,South Australia,-34.98265,138.706172,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Bozo - green tag LEFT ear,2023,5,29,Australia,AU,Queensland,-27.526998,153.108976,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,9,21,Australia,AU,Queensland,-27.257185,152.046392,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near A block and cafeteria Mother and joey,2023,10,22,Australia,AU,Queensland,-27.526999,153.092402,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - yellow tag 1600 LEFT ear - Bunny, released nearby a week ago on 11/10/24",2024,10,18,Australia,AU,Queensland,-27.53041,153.103692,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2023,10,14,Australia,AU,Queensland,-27.525712,153.092483,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,same koala taken at different times of day. Believe its a male.,2020,8,12,Australia,AU,New South Wales,-28.253933,153.377401,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,Roadside eucalyptus populnea,2022,11,13,Australia,AU,Queensland,-27.781471,151.554261,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2024,3,21,Australia,AU,South Australia,-35.732483,137.071075,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,29,Australia,AU,Queensland,-27.526082,153.090663,EPSG:4326 +HUMAN_OBSERVATION,galaxias,1,,Large male,2023,1,30,Australia,AU,Victoria,-38.393508,144.934983,EPSG:4326 +HUMAN_OBSERVATION,acon11,1,,,2023,6,27,Australia,AU,Queensland,-19.123325,146.870833,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In lone tree near tennis court building,2024,7,1,Australia,AU,Queensland,-27.525745,153.093156,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2023,9,19,Australia,AU,New South Wales,-31.940478,152.413055,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,11,3,Australia,AU,South Australia,-34.892624,138.722445,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,21,Australia,AU,Queensland,-27.529759,153.104648,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,This male koala has been seen several times recently in this area High in manna gum,2022,12,20,Australia,AU,Victoria,-37.875458,144.270339,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area middle,2023,11,4,Australia,AU,Queensland,-27.527736,153.092987,EPSG:4326 +HUMAN_OBSERVATION,nyxaero,1,,,2023,12,19,Australia,AU,South Australia,-35.121295,138.509142,EPSG:4326 +HUMAN_OBSERVATION,Nic Van Zyl,1,,,2024,7,14,Australia,AU,Victoria,-38.321532,142.364971,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,Mother and Joey on the side of the road. The mother was probably sourcing some clay as it was licking and eating the dirt. However when they moved off they looked healthy and not injured. They moved into a tree beyond the boundary of trees at the side of the road.,2022,12,31,Australia,AU,Queensland,-27.403436,153.437937,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey,2024,4,22,Australia,AU,Queensland,-27.52979,153.103765,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,RSPCA tag in left ear. Male koala most likely Zorro (0477) released 30m away last Wed In Tallowwood,2020,2,10,Australia,AU,Queensland,-27.550237,153.059921,EPSG:4326 +HUMAN_OBSERVATION,graeme lunt,1,,,2021,10,22,Australia,AU,Victoria,-37.688766,143.996858,EPSG:4326 +HUMAN_OBSERVATION,Deb,1,,,2023,1,29,Australia,AU,Victoria,-37.925966,141.285424,EPSG:4326 +HUMAN_OBSERVATION,larivera,1,,,2022,11,18,Australia,AU,Victoria,-38.318324,142.363864,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,no ear tags evident,2024,9,1,Australia,AU,Queensland,-27.510391,153.086666,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,11,4,Australia,AU,Queensland,-27.545506,153.058561,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,23,Australia,AU,Queensland,-27.545291,153.072128,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Maisie and joey In mum’s trees,2023,10,7,Australia,AU,Queensland,-27.526499,153.091013,EPSG:4326 +HUMAN_OBSERVATION,lthie,1,,,2021,7,22,Australia,AU,Queensland,-27.543468,153.053866,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,11,29,Australia,AU,Queensland,-27.412988,152.003022,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Near by dead koala (vehicle collision). Observed by Amanda Francis. Submitted via email.,2023,9,8,Australia,AU,Queensland,-26.109297,151.824814,EPSG:4326 +HUMAN_OBSERVATION,mickshelton,1,,,2022,4,4,Australia,AU,New South Wales,-28.388351,153.559525,EPSG:4326 +HUMAN_OBSERVATION,franhills,1,,,2024,3,5,Australia,AU,South Australia,-35.071136,138.886447,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,grunting loudly,2024,2,4,Australia,AU,Victoria,-37.613507,143.89732,EPSG:4326 +HUMAN_OBSERVATION,suecawcutt,1,,Mother and young; asleep. Yesterday were feeding near top of adjacent Tallowwood ( E. microcorys),2022,9,4,Australia,AU,Queensland,-26.892022,152.292211,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Very high in a huge scribbly gum,2023,3,31,Australia,AU,Queensland,-27.528603,153.113263,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.37553,145.314285,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,12,27,Australia,AU,Queensland,-27.527362,153.091428,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2022,6,4,Australia,AU,Queensland,-27.2264,153.072075,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,5,17,Australia,AU,South Australia,-34.997905,138.639171,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Juvenile. Healthy. Unknown sex. Observed by Desley Tratt. Forwarded by email.,2021,9,1,Australia,AU,Queensland,-26.52166,151.868462,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to cleaners donga,2024,8,17,Australia,AU,Queensland,-27.527067,153.091418,EPSG:4326 +HUMAN_OBSERVATION,lil_1,1,MALE,,2022,8,28,Australia,AU,Victoria,-37.623345,144.09555,EPSG:4326 +HUMAN_OBSERVATION,philip-roetman,1,,,2021,5,2,Australia,AU,South Australia,-34.988435,138.63875,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,It's a boy - very noisy this morning. Probably the same one we see reasonably often in the backyard.,2023,3,5,Australia,AU,Victoria,-37.874561,142.290874,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Female with Joey,2023,4,22,Australia,AU,Queensland,-27.525072,153.092174,EPSG:4326 +HUMAN_OBSERVATION,jandrew224,1,,,2024,5,22,Australia,AU,Victoria,-37.802888,141.530738,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,5,23,Australia,AU,Queensland,-27.506689,153.084903,EPSG:4326 +HUMAN_OBSERVATION,sueruffles,1,,,2024,9,24,Australia,AU,New South Wales,-34.75195,146.546661,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2023,9,29,Australia,AU,Queensland,-27.823756,152.993317,EPSG:4326 +HUMAN_OBSERVATION,kentpip,1,,,2021,11,18,Australia,AU,Queensland,-27.760126,153.152772,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Mum with baby observed.,2020,11,30,Australia,AU,New South Wales,-28.271322,153.39438,EPSG:4326 +HUMAN_OBSERVATION,Sam S,1,,One of 2 koalas in a manna gum. Hopefully a female- smaller adult than the other one higher up the tree.,2023,3,12,Australia,AU,Victoria,-37.013948,145.457941,EPSG:4326 +HUMAN_OBSERVATION,Bilby Blooms,1,,,2024,11,18,Australia,AU,New South Wales,-31.58425,149.335725,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,22,Australia,AU,Queensland,-27.547093,153.073399,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,2,Australia,AU,Queensland,-27.526872,153.090422,EPSG:4326 +HUMAN_OBSERVATION,Hayley Troupe,1,,,2021,9,11,Australia,AU,Queensland,-26.87078,152.129584,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,"Female. Juvenile. Healthy. Relocated from road sign to tree. Observed by Myles Luthi, Maddy and Keira. Submitted via FB.",2024,7,13,Australia,AU,Queensland,-26.866705,152.288668,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,15,Australia,AU,Queensland,-27.527476,153.110584,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,7,13,Australia,AU,Queensland,-27.510608,153.087768,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2020,7,17,Australia,AU,South Australia,-34.830996,138.736167,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Spotted gum,2021,5,7,Australia,AU,Queensland,-27.550414,153.06,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,2,17,Australia,AU,Queensland,-27.526822,153.090983,EPSG:4326 +HUMAN_OBSERVATION,Geoffrey Cox,1,,,2020,11,7,Australia,AU,South Australia,-35.136087,138.594939,EPSG:4326 +HUMAN_OBSERVATION,leilaniht,1,,,2024,10,14,Australia,AU,Victoria,-38.381327,145.282415,EPSG:4326 +HUMAN_OBSERVATION,stuheart,1,,Seen from the road towards the quarry carpark,2023,4,18,Australia,AU,Victoria,-37.664608,144.363487,EPSG:4326 +HUMAN_OBSERVATION,livesarah,1,,,2024,8,5,Australia,AU,Queensland,-27.536859,153.037022,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,,2024,11,23,Australia,AU,Queensland,-27.410565,152.001784,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,RJ in Eu. tereticornis,2023,11,6,Australia,AU,Queensland,-27.412708,152.003098,EPSG:4326 +HUMAN_OBSERVATION,fobhm,1,,,2022,10,19,Australia,AU,South Australia,-34.897602,138.694145,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Soap Tree/Red Ash,2020,1,31,Australia,AU,Queensland,-27.540683,153.05931,EPSG:4326 +HUMAN_OBSERVATION,Ty Rasp,1,,Koala with a baby!!!,2024,9,14,Australia,AU,Queensland,-27.544552,153.072369,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to E block generator,2023,12,24,Australia,AU,Queensland,-27.526749,153.09087,EPSG:4326 +HUMAN_OBSERVATION,Dennis,1,,,2021,10,1,Australia,AU,Queensland,-27.528563,153.115111,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,12,7,Australia,AU,New South Wales,-28.252481,153.375187,EPSG:4326 +HUMAN_OBSERVATION,Matteo Grilli,1,MALE,,2020,2,23,Australia,AU,Queensland,-27.434717,152.999751,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2024,4,22,Australia,AU,Queensland,-27.508314,153.080561,EPSG:4326 +HUMAN_OBSERVATION,Boyd Rose,1,,,2021,4,8,Australia,AU,Queensland,-27.563401,153.215081,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Koala scratches seen on several different trees in the area.,2020,7,29,Australia,AU,New South Wales,-28.260583,153.403635,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,16,Australia,AU,Queensland,-27.793776,151.550173,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald ear"" male in large stringybark in gully.",2020,1,28,Australia,AU,New South Wales,-30.519171,151.520238,EPSG:4326 +HUMAN_OBSERVATION,mtbarneylodge,1,,"Seen 9am crossing road, in tree 12.30pn. Healthy",2022,8,14,Australia,AU,Queensland,-28.104462,152.573878,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2023,4,30,Australia,AU,Queensland,-27.284279,153.000484,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,21,Australia,AU,Queensland,-27.551543,153.058979,EPSG:4326 +HUMAN_OBSERVATION,Samuel Lee,1,,,2023,5,14,Australia,AU,Victoria,-38.732215,143.371788,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,1,23,Australia,AU,Queensland,-27.500148,153.079251,EPSG:4326 +HUMAN_OBSERVATION,Tony Kent,1,,"Transiting Tarcombe Rd, with a stoover in the houseyard",2021,4,26,Australia,AU,Victoria,-36.930531,145.372234,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,6,1,Australia,AU,New South Wales,-28.253021,153.376682,EPSG:4326 +HUMAN_OBSERVATION,Luke R. Hardy,1,,,2022,4,26,Australia,AU,Queensland,-27.515436,153.095036,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In spotted gum,2020,4,7,Australia,AU,Queensland,-27.538752,153.035211,EPSG:4326 +HUMAN_OBSERVATION,Dirk HR Spennemann,1,,In pine tree,2021,1,23,Australia,AU,Victoria,-36.358922,146.699039,EPSG:4326 +HUMAN_OBSERVATION,rainforesthome,1,,This appears to be a juvenile and was called for hours but here was no sign of an adult. It did look old enough to be independent only slightly smaller than a fully mature koala.,2023,6,28,Australia,AU,Queensland,-26.793728,152.778272,EPSG:4326 +HUMAN_OBSERVATION,petermcclive,1,,,2023,1,21,Australia,AU,Victoria,-38.384317,145.304458,EPSG:4326 +HUMAN_OBSERVATION,kazhutcho,1,,Sitting in tree with another koala. 2 adults in one tree at Big4 Helensvale,2024,8,17,Australia,AU,Queensland,-27.897405,153.318926,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Large koala in cluster of trees to left of lemon scented gum,2020,3,15,Australia,AU,New South Wales,-28.25745,153.374145,EPSG:4326 +HUMAN_OBSERVATION,kanepadams,1,,Saw 3 Koalas - 2 adults and a baby,2024,10,14,Australia,AU,Queensland,-27.284595,153.000564,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,6,Australia,AU,South Australia,-34.890565,138.729912,EPSG:4326 +HUMAN_OBSERVATION,cooleigh,1,,,2023,11,8,Australia,AU,Queensland,-27.633512,151.525878,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Feeding in Grey Gum,2020,2,2,Australia,AU,Queensland,-27.546955,153.058543,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,10,17,Australia,AU,Victoria,-37.653182,143.920792,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,1,22,Australia,AU,Victoria,-38.354852,146.388188,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"2 male koalas heard 1 closer in the NW corner of the property, the second to the North possibly just outside. Koala heard at: 22/10/24 3:20am NNW 10:09pm N faint 10:29pm N faint 11:16pm N faint 11:55pm N faint 22/11/24 12:11am NW 12:27am N faint 12:29am NW 1:13am NW 1:40am NW 2:06am NW 2:36am NW 24/1 1;03pm faint NNW",2024,10,23,Australia,AU,Queensland,-27.822733,152.991551,EPSG:4326 +HUMAN_OBSERVATION,biologistellie,1,,"Healthy male koala in eucalyptus tree inside Nerang Conservation Park. Bright, alert, good body condition. Small cut above right eye.",2023,10,15,Australia,AU,Queensland,-28.010885,153.280866,EPSG:4326 +HUMAN_OBSERVATION,mel_of_lower_beechmont,1,,,2020,4,14,Australia,AU,Queensland,-28.047,153.247,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2024,1,20,Australia,AU,Queensland,-27.358509,152.074543,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,12,12,Australia,AU,Queensland,-27.509199,153.085457,EPSG:4326 +HUMAN_OBSERVATION,Eathan Douglas,1,,,2024,11,4,Australia,AU,Victoria,-38.319278,142.363592,EPSG:4326 +HUMAN_OBSERVATION,Pirataber,1,,,2024,10,2,Australia,AU,Victoria,-38.669359,143.861717,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,6,9,Australia,AU,New South Wales,-28.260674,153.403162,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,4,26,Australia,AU,Queensland,-27.527395,153.090925,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,,Koala in Euc tereticornis beside road.,2021,8,11,Australia,AU,Queensland,-28.14326,152.962993,EPSG:4326 +HUMAN_OBSERVATION,rachinspace,1,,,2024,3,17,Australia,AU,New South Wales,-33.677155,149.331878,EPSG:4326 +HUMAN_OBSERVATION,Christian Schwarz,1,,,2024,5,13,Australia,AU,Queensland,-27.551901,153.059262,EPSG:4326 +HUMAN_OBSERVATION,Nudge,1,,,2022,1,30,Australia,AU,New South Wales,-30.186865,152.843868,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Female with joey in pouch. Healthy. Observed by Wendy Taylor. Submitted via msg,2024,2,24,Australia,AU,Queensland,-26.136001,151.782334,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,8,7,Australia,AU,Queensland,-27.538561,153.064287,EPSG:4326 +HUMAN_OBSERVATION,tarragindiandrew,1,,,2021,3,8,Australia,AU,Queensland,-27.546129,153.057931,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,Joey,2024,8,25,Australia,AU,Queensland,-27.17228,152.567765,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On Eucalyptus major/propinqua.,2021,4,9,Australia,AU,Queensland,-27.54708,153.058762,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,we had heard this Koala much further away in the Park. Over about 2 hours he moved closer calling a couple of other times until he settled in this tree/location.,2024,1,16,Australia,AU,Queensland,-27.51059,153.070121,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,MALE,,2023,11,8,Australia,AU,Victoria,-37.595337,143.877301,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Photo Sheree and Henry Conroy,2024,5,8,Australia,AU,Queensland,-27.651248,151.986942,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,5,13,Australia,AU,New South Wales,-28.254747,153.375948,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,13,Australia,AU,Queensland,-27.526875,153.090701,EPSG:4326 +HUMAN_OBSERVATION,harree,1,,,2020,10,17,Australia,AU,Victoria,-37.165858,144.072523,EPSG:4326 +HUMAN_OBSERVATION,Liana,1,,,2020,10,24,Australia,AU,New South Wales,-28.619973,153.396421,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,MALE,,2024,5,27,Australia,AU,South Australia,-34.88304,138.730735,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,photo: Bob Brown,2020,7,28,Australia,AU,Queensland,-27.530654,152.184277,EPSG:4326 +HUMAN_OBSERVATION,Sam,1,,,2023,4,10,Australia,AU,Queensland,-19.120286,146.862146,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,12,Australia,AU,Queensland,-27.5269,153.10913,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2024,4,22,Australia,AU,Victoria,-38.832283,143.513962,EPSG:4326 +HUMAN_OBSERVATION,Sarah Sampson,1,,,2022,11,9,Australia,AU,Victoria,-38.826967,145.998163,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,18,Australia,AU,South Australia,-34.890172,138.732391,EPSG:4326 +HUMAN_OBSERVATION,melaleuca098,1,,,2021,4,10,Australia,AU,New South Wales,-32.707267,152.070297,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Adult, Unknown sex, Healthy. Observed by Casey Davey. Submitted via msg.",2023,5,28,Australia,AU,Queensland,-26.389428,151.789069,EPSG:4326 +HUMAN_OBSERVATION,michab444,1,,Mother and baby,2024,10,15,Australia,AU,Victoria,-38.3429,141.562867,EPSG:4326 +HUMAN_OBSERVATION,Gen C,1,,,2022,10,1,Australia,AU,Victoria,-38.653731,143.709699,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,second koala - this one with a while bottom. V very high in tree so not sure if a male or the female with joey.,2021,9,15,Australia,AU,New South Wales,-28.254262,153.377397,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Could just make out this koala.,2024,7,20,Australia,AU,Queensland,-27.284209,153.000493,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland - rear near seton fence and first house,2023,8,12,Australia,AU,Queensland,-27.52847,153.092711,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Old male high in Manna gum,2022,7,14,Australia,AU,Victoria,-37.838333,144.195608,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Cindy - red tag A5 RIGHT ear,2023,6,10,Australia,AU,Queensland,-27.527028,153.107307,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2021,3,14,Australia,AU,South Australia,-34.830996,138.736167,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Top of lower wisteria car park,2024,9,14,Australia,AU,Queensland,-27.524865,153.092658,EPSG:4326 +HUMAN_OBSERVATION,scorpio83,1,,,2020,9,6,Australia,AU,Queensland,-27.326505,152.614735,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,30,Australia,AU,Queensland,-27.526857,153.091218,EPSG:4326 +HUMAN_OBSERVATION,curlewz,1,,Mother and Joey,2021,8,21,Australia,AU,Queensland,-27.427327,153.529802,EPSG:4326 +HUMAN_OBSERVATION,Darren,1,,Sub Adult. On this day was being harassed by Sulphur crested Cockatoos.,2020,2,7,Australia,AU,Victoria,-37.544809,144.112795,EPSG:4326 +HUMAN_OBSERVATION,Olivia Kemp,1,,,2020,4,20,Australia,AU,Victoria,-36.353933,146.678501,EPSG:4326 +HUMAN_OBSERVATION,Dee Nolan,1,MALE,"Is this mating call of koala? There were 3 koalas in 3 sepatate trees, next to each other. 2 making sounds, maybe female quiet and just wants to enjoy early Spring sunshine.",2022,9,12,Australia,AU,South Australia,-34.990596,138.63605,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,1,31,Australia,AU,Queensland,-27.529409,153.104623,EPSG:4326 +HUMAN_OBSERVATION,pritchard3747,1,,,2024,2,8,Australia,AU,Victoria,-37.071655,145.489412,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,Young male in planted Chinchilla White Gum ( Eucalyptus argophloia),2024,11,9,Australia,AU,Queensland,-27.567957,152.102251,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"1st call I missed most of the female call. Calls 15mins apart, Koalas together in same tree all day. sound amplified to a peak of -3db.",2024,11,14,Australia,AU,Queensland,-27.510488,153.069928,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,High in a Blue Gum (Eucalyptus tereticornis) exposed to a howling cold wind. (LCA2176),2021,9,5,Australia,AU,Queensland,-27.496382,152.246133,EPSG:4326 +HUMAN_OBSERVATION,emilyhotham,1,,,2023,12,7,Australia,AU,New South Wales,-30.266607,151.558592,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2023,12,5,Australia,AU,Queensland,-27.358622,152.07462,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2024,5,6,Australia,AU,Queensland,-27.52805,153.092264,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Yellow tag RIGHT ear,2022,12,14,Australia,AU,Queensland,-27.530543,153.110986,EPSG:4326 +HUMAN_OBSERVATION,mikeahart,1,,,2024,4,1,Australia,AU,Victoria,-37.921857,147.728863,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In gully near Aldi gates In tree next to chonky boys old tree,2023,11,2,Australia,AU,Queensland,-27.525929,153.093226,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,Male koala outside house.,2023,12,13,Australia,AU,Queensland,-27.358409,152.074506,EPSG:4326 +HUMAN_OBSERVATION,Pedro Nicolau,1,,,2023,1,22,Australia,AU,Queensland,-27.527938,153.111413,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2021,2,2,Australia,AU,Queensland,-27.539146,153.05442,EPSG:4326 +HUMAN_OBSERVATION,Karen Roberts,1,,,2023,5,13,Australia,AU,Queensland,-27.546537,152.86036,EPSG:4326 +HUMAN_OBSERVATION,mikeahart,1,,,2024,4,1,Australia,AU,Victoria,-37.921857,147.728863,EPSG:4326 +HUMAN_OBSERVATION,khwenga,1,,,2024,7,4,Australia,AU,Victoria,-38.763397,143.605513,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,koala no 1,2021,8,8,Australia,AU,Queensland,-27.508124,153.083779,EPSG:4326 +HUMAN_OBSERVATION,Victoria,1,,,2021,10,3,Australia,AU,South Australia,-34.997898,138.636141,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2024,2,18,Australia,AU,Queensland,-27.528014,153.092948,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,"Was sitting on ground in bushland, when saw us climbed up a tree",2022,11,29,Australia,AU,New South Wales,-34.076308,150.85457,EPSG:4326 +HUMAN_OBSERVATION,Jenny Possingham,1,,1 of several in the immediate area. This one in a olive tree,2023,2,13,Australia,AU,South Australia,-34.903631,138.705158,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" Male in stringybark. Continued calling through night. From calls, moved to this location about 5 this morning.",2020,11,21,Australia,AU,New South Wales,-30.520139,151.519702,EPSG:4326 +HUMAN_OBSERVATION,lakesha_smith,1,,,2023,11,16,Australia,AU,Queensland,-19.128854,146.868248,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,1,14,Australia,AU,Queensland,-27.525364,153.092286,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,2 koalas in one tree,2024,3,5,Australia,AU,Victoria,-37.615255,143.895829,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,8,10,Australia,AU,Queensland,-27.526968,153.090923,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,Road kill.,2024,6,20,Australia,AU,New South Wales,-28.258326,153.398659,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Grey Ironbark,2020,2,21,Australia,AU,Queensland,-27.547721,153.059001,EPSG:4326 +HUMAN_OBSERVATION,Graham Tupper,1,,,2022,5,7,Australia,AU,New South Wales,-30.294758,153.125528,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Tag number 3143 water tank mumma,2022,9,2,Australia,AU,Queensland,-27.545638,153.0732,EPSG:4326 +HUMAN_OBSERVATION,kazza-62,1,,High up can't check for tags possibly a male,2020,12,11,Australia,AU,Queensland,-27.540033,153.271028,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowood with Joey,2020,7,14,Australia,AU,Queensland,-27.551043,153.057544,EPSG:4326 +HUMAN_OBSERVATION,insiderelic,1,,,2021,1,10,Australia,AU,South Australia,-34.860292,138.707854,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,I think this is Naomi's joey from 2022,2023,6,2,Australia,AU,Queensland,-27.529088,153.103392,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,24,Australia,AU,South Australia,-34.892174,138.720025,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,Hit by car,2023,8,31,Australia,AU,Queensland,-27.554792,151.708038,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,5,Australia,AU,Queensland,-27.526103,153.090546,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,3,31,Australia,AU,New South Wales,-34.773204,146.594688,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2022,10,28,Australia,AU,New South Wales,-33.073923,151.093405,EPSG:4326 +HUMAN_OBSERVATION,brasskitten,1,,,2022,8,20,Australia,AU,South Australia,-35.019168,138.665408,EPSG:4326 +HUMAN_OBSERVATION,lehockamarcela,1,,,2023,10,7,Australia,AU,Victoria,-38.357996,146.388486,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,7,26,Australia,AU,Victoria,-38.671401,146.163798,EPSG:4326 +HUMAN_OBSERVATION,joel_ellis,1,,,2024,8,16,Australia,AU,Victoria,-37.653812,143.926595,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,,2020,4,26,Australia,AU,Victoria,-38.176266,145.133151,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,"Image captured whilst on a spotlighting circuit, varying between 1.5 km to 3 km depending on track conditions, through a 20 ha block of predominantly Sedgy Riparian Woodland (EVC 198) in the Wombat State Forest, Lyonville.",2024,8,30,Australia,AU,Victoria,-37.393283,144.266741,EPSG:4326 +HUMAN_OBSERVATION,Mel,1,,,2021,4,30,Australia,AU,South Australia,-34.965488,138.651514,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,Turn volume to the max.,2023,1,11,Australia,AU,New South Wales,-28.269252,153.393347,EPSG:4326 +HUMAN_OBSERVATION,Daniel,1,,,2023,2,24,Australia,AU,Queensland,-27.900039,153.386285,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy looking, alert",2023,1,19,Australia,AU,Queensland,-27.533622,153.037247,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2023,11,19,Australia,AU,Queensland,-27.28472,153.000388,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,14,Australia,AU,Queensland,-27.543167,153.057425,EPSG:4326 +HUMAN_OBSERVATION,Peter John Meredith,1,MALE,,2024,8,29,Australia,AU,Victoria,-36.307017,146.583398,EPSG:4326 +HUMAN_OBSERVATION,G. L. Grammer,1,,,2022,3,20,Australia,AU,South Australia,-35.037296,138.927975,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2023,9,28,Australia,AU,Queensland,-27.823279,152.991819,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Spotted by Rachel,2023,12,4,Australia,AU,Queensland,-27.635537,152.892052,EPSG:4326 +HUMAN_OBSERVATION,magpies_friends,1,,,2023,12,3,Australia,AU,Queensland,-27.492547,153.417259,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,19,Australia,AU,South Australia,-34.889601,138.729613,EPSG:4326 +HUMAN_OBSERVATION,Albert Ross,1,,,2023,5,28,Australia,AU,New South Wales,-28.945593,153.31827,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Female and joey. Could not get a clear sight on nose markings. They just suddenly appeared climbing up the tree to the very top!,2020,11,19,Australia,AU,New South Wales,-28.254254,153.377,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Koala markings. FoN survey Tarkeeth1,2023,10,8,Australia,AU,New South Wales,-30.497168,152.916372,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,6,15,Australia,AU,Queensland,-27.551985,153.056964,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,16,Australia,AU,Queensland,-27.652237,151.701189,EPSG:4326 +HUMAN_OBSERVATION,merrimay,1,,,2022,12,26,Australia,AU,Victoria,-38.667167,145.60765,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3142,2023,2,17,Australia,AU,Queensland,-27.49628,152.24933,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,18,Australia,AU,Queensland,-27.526043,153.093256,EPSG:4326 +HUMAN_OBSERVATION,taopina,1,,,2024,5,24,Australia,AU,South Australia,-34.862396,135.874372,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,13,Australia,AU,Queensland,-27.528965,153.108816,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2023,8,15,Australia,AU,Queensland,-20.925413,149.432922,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,1,Australia,AU,Queensland,-27.526811,153.090553,EPSG:4326 +HUMAN_OBSERVATION,jody_lawson,1,,,2022,9,21,Australia,AU,South Australia,-35.17122,138.585897,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,Has a yellow left ear tag. Rambo. spent day near top of Stringy Bark tree hidden by branches of an Araucaria sp tree,2020,4,3,Australia,AU,Queensland,-27.510271,153.069218,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,12,Australia,AU,Queensland,-27.529228,153.105243,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,5,4,Australia,AU,New South Wales,-28.257,153.401711,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2022,10,10,Australia,AU,South Australia,-34.970464,138.637297,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Brush Box,2020,10,22,Australia,AU,Queensland,-27.546717,153.058412,EPSG:4326 +HUMAN_OBSERVATION,sandraharding,1,,,2024,10,6,Australia,AU,Queensland,-27.392752,153.440385,EPSG:4326 +HUMAN_OBSERVATION,bicky,1,,,2024,9,3,Australia,AU,Queensland,-27.507459,153.085665,EPSG:4326 +HUMAN_OBSERVATION,Brad,1,,,2021,1,17,Australia,AU,South Australia,-34.962926,138.693792,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,16,Australia,AU,South Australia,-34.83122,138.744119,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowood,2020,8,10,Australia,AU,Queensland,-27.548372,153.052071,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,8,10,Australia,AU,South Australia,-34.892759,138.627324,EPSG:4326 +HUMAN_OBSERVATION,wybalena,1,,First koala siting in Splitters Creek valley moving down bush track towards creek.,2020,10,13,Australia,AU,Victoria,-38.369222,144.960464,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,In a tree some distance away across the creek,2023,10,6,Australia,AU,Queensland,-27.52673,153.110004,EPSG:4326 +HUMAN_OBSERVATION,woma87,1,,,2023,10,30,Australia,AU,Queensland,-27.258222,152.923247,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,In Flooded Gum (Eucalyptus grandis) tree.,2023,3,12,Australia,AU,New South Wales,-28.260654,153.399929,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland gully - in mating tree,2024,5,18,Australia,AU,Queensland,-27.527472,153.092357,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,1,Australia,AU,Queensland,-27.529986,153.103666,EPSG:4326 +HUMAN_OBSERVATION,Marie Tarrant,1,,,2022,1,8,Australia,AU,Queensland,-27.249316,152.824358,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,,2020,11,22,Australia,AU,Queensland,-27.666586,152.108719,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Eating Eucalyptus teriticornis,2021,9,13,Australia,AU,Queensland,-27.532072,153.060061,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" male",2020,11,30,Australia,AU,New South Wales,-30.520863,151.518403,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,,2024,10,26,Australia,AU,Victoria,-37.969208,141.7352,EPSG:4326 +HUMAN_OBSERVATION,GuyCastley,1,,Koala mum and joey in small habitat fragment on the Griffith University Gold Coast campus,2023,11,13,Australia,AU,Queensland,-27.963551,153.381617,EPSG:4326 +HUMAN_OBSERVATION,Naughtiehorti,1,,,2023,1,2,Australia,AU,Queensland,-28.33131,152.692415,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,29,Australia,AU,Queensland,-27.803363,151.560876,EPSG:4326 +HUMAN_OBSERVATION,Johnathon,1,,"Small koala in a gum tree, near the top of Brides Parade (at the top of the hill)",2024,10,22,Australia,AU,Victoria,-37.759288,145.707336,EPSG:4326 +HUMAN_OBSERVATION,lesleycm,1,,Bum seems clean,2024,7,15,Australia,AU,Queensland,-27.28,152.92,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to mum’s tree,2024,9,29,Australia,AU,Queensland,-27.5263,153.091006,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,6,16,Australia,AU,Queensland,-27.703166,153.191606,EPSG:4326 +HUMAN_OBSERVATION,lauren leviston,1,,Seen crossing Perdrisat Rd - a very dangerous activity!!! (Photo courtesy J. C.),2023,11,8,Australia,AU,Victoria,-37.946646,144.148806,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Release of male - yellow tag 1600 LEFT ear - Bunny,2024,10,11,Australia,AU,Queensland,-27.529566,153.105059,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2023,12,25,Australia,AU,Queensland,-27.527484,153.092328,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland entrance,2024,2,5,Australia,AU,Queensland,-27.527341,153.092206,EPSG:4326 +HUMAN_OBSERVATION,Wil,1,,,2021,10,21,Australia,AU,Queensland,-18.619419,143.855565,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi. Recent joey nowhere to be seen,2024,2,19,Australia,AU,Queensland,-27.530137,153.10382,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,,2023,2,8,Australia,AU,Queensland,-27.552711,153.05768,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,,Female koala sitting in a tree over hanging the road.,2021,11,20,Australia,AU,South Australia,-35.142624,138.653224,EPSG:4326 +HUMAN_OBSERVATION,J. Addesi,1,,,2024,3,24,Australia,AU,South Australia,-34.902241,138.70162,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,8,10,Australia,AU,Queensland,-27.554378,151.697433,EPSG:4326 +HUMAN_OBSERVATION,rhett_dodd,1,,,2024,11,2,Australia,AU,Queensland,-26.430912,152.376053,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,5,12,Australia,AU,Queensland,-27.527143,153.091669,EPSG:4326 +HUMAN_OBSERVATION,midaalex,1,,,2024,10,2,Australia,AU,Queensland,-28.00251,153.288697,EPSG:4326 +HUMAN_OBSERVATION,baileyhikes,1,,,2024,3,19,Australia,AU,Victoria,-38.309967,141.445111,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,Mature Female koala mid in manna gum. Groomed and then climbed up into the canopy and started eating leaves Nose pattern shows she has also been seen several times 1km east of here on same property.,2024,11,6,Australia,AU,Victoria,-37.811245,144.250339,EPSG:4326 +HUMAN_OBSERVATION,rhirhi22,1,,,2024,9,4,Australia,AU,Queensland,-19.125111,146.870025,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,1,Australia,AU,Queensland,-27.527706,153.093066,EPSG:4326 +HUMAN_OBSERVATION,Isaac Clarey,1,,,2021,6,12,Australia,AU,Victoria,-38.552651,143.738396,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,,"Male koala high in big yellow gum, looks like koala Boom from gorge road",2024,6,6,Australia,AU,Victoria,-37.863278,144.279212,EPSG:4326 +HUMAN_OBSERVATION,Ash,1,,Spotted napping high up in a tree at Alexander Clark Park.,2023,9,25,Australia,AU,Queensland,-27.699411,153.19017,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree outside of tafe nursery,2023,5,21,Australia,AU,Queensland,-27.527163,153.091665,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,11,9,Australia,AU,Queensland,-27.527214,153.091659,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,1,18,Australia,AU,South Australia,-34.887171,138.732109,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,5,Australia,AU,Queensland,-27.537878,153.054718,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Maisie,2024,3,16,Australia,AU,Queensland,-27.526471,153.090566,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,2,16,Australia,AU,Victoria,-38.671353,146.164153,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,7,16,Australia,AU,New South Wales,-28.258565,153.40071,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2023,9,15,Australia,AU,Queensland,-27.530441,153.103911,EPSG:4326 +HUMAN_OBSERVATION,Konrad Szylar,1,,,2023,1,8,Australia,AU,New South Wales,-34.101052,150.822465,EPSG:4326 +HUMAN_OBSERVATION,Aalbert Rebergen,1,,,2023,8,24,Australia,AU,Victoria,-38.317157,142.356076,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,4,24,Australia,AU,Queensland,-27.55132,153.058076,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,29,Australia,AU,South Australia,-34.892174,138.722661,EPSG:4326 +HUMAN_OBSERVATION,magpies_friends,1,MALE,,2023,11,29,Australia,AU,Queensland,-27.497115,153.401037,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park,2024,9,7,Australia,AU,Queensland,-27.525455,153.091916,EPSG:4326 +HUMAN_OBSERVATION,Vicki,1,,,2023,10,20,Australia,AU,New South Wales,-31.434668,152.907054,EPSG:4326 +HUMAN_OBSERVATION,polyscias099,1,,,2024,2,23,Australia,AU,New South Wales,-34.190301,150.798672,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,MALE,The 4th photo shows this koala and a 2nd koala in the tree next to it.,2023,3,19,Australia,AU,Queensland,-27.284499,153.000857,EPSG:4326 +HUMAN_OBSERVATION,Keith,1,,,2023,9,16,Australia,AU,Queensland,-27.527296,153.107967,EPSG:4326 +HUMAN_OBSERVATION,leachy88,1,,,2024,6,16,Australia,AU,Queensland,-27.629436,152.902038,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland - in nursery grounds,2023,11,19,Australia,AU,Queensland,-27.527985,153.092353,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Stringybark,2021,11,4,Australia,AU,Queensland,-27.547672,153.061242,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,22,Australia,AU,South Australia,-34.891989,138.72006,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,15,Australia,AU,Queensland,-27.527314,153.102949,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear Male yellow tag,2024,2,17,Australia,AU,Queensland,-27.528505,153.092736,EPSG:4326 +HUMAN_OBSERVATION,aspiringnaturewizard,1,,,2022,7,17,Australia,AU,Queensland,-27.955166,153.38115,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Make koala testicles visible Tree near mower shed tafe,2023,5,27,Australia,AU,Queensland,-27.52582,153.090755,EPSG:4326 +HUMAN_OBSERVATION,Wyn Russell,1,,,2022,10,12,Australia,AU,Victoria,-38.218358,147.192949,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2024,8,25,Australia,AU,Victoria,-38.356997,146.387367,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In gully near Aldi gates,2023,11,11,Australia,AU,Queensland,-27.526166,153.092996,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery gates and next to talking circle and white boom gate Maisie - yellow tag right ear,2023,8,6,Australia,AU,Queensland,-27.527328,153.091173,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,10,4,Australia,AU,Queensland,-27.527243,153.108133,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,,2021,11,17,Australia,AU,Victoria,-38.180087,145.13053,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"Koala counts: 9am 29/9/2023 40 mins double count search 0 koalas 16:00 3/1/2024 0 JT 15 mins; 19:00 3/1/2024 2 koalas heard calling. 11:10am 4/1/2024 Double count 15 mins: 1 by one observer, 0 by 2nd. X 2.",2024,1,4,Australia,AU,Queensland,-27.823017,152.99383,EPSG:4326 +HUMAN_OBSERVATION,dawnborchardt,1,,,2023,11,26,Australia,AU,South Australia,-35.336167,138.734697,EPSG:4326 +HUMAN_OBSERVATION,basilsdonna,1,,This is a mother and joey .The little one was eating leaves also.,2024,11,21,Australia,AU,Victoria,-38.354587,141.610567,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2022,10,22,Australia,AU,Victoria,-38.63787,145.715395,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,6,Australia,AU,Queensland,-27.528618,153.104188,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Make koala - yellow tag left ear,2023,4,16,Australia,AU,Queensland,-27.528302,153.093015,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2022,8,29,Australia,AU,Queensland,-26.372539,153.017087,EPSG:4326 +HUMAN_OBSERVATION,Bruce McLennan,1,,,2021,4,20,Australia,AU,Queensland,-27.24331,152.191727,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2023,12,3,Australia,AU,Queensland,-27.527152,153.091665,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,5,Australia,AU,Queensland,-27.529928,153.105166,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe cavendish road - near E block,2023,8,19,Australia,AU,Queensland,-27.526697,153.090545,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,12,19,Australia,AU,Victoria,-38.671013,146.163667,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Robyn Zackreson. Submitted via FB.,2024,9,9,Australia,AU,Queensland,-26.309411,151.781745,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,9,29,Australia,AU,Queensland,-27.648437,151.706863,EPSG:4326 +HUMAN_OBSERVATION,lynburleigh,1,,,2022,11,6,Australia,AU,Victoria,-37.000013,145.503026,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,28,Australia,AU,Queensland,-27.528958,153.11228,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,12,3,Australia,AU,Queensland,-27.54984,153.054393,EPSG:4326 +HUMAN_OBSERVATION,marzipan2,1,,,2024,11,1,Australia,AU,Queensland,-27.974612,153.291032,EPSG:4326 +HUMAN_OBSERVATION,kathywalter,1,,,2023,12,18,Australia,AU,Queensland,-27.730584,151.640983,EPSG:4326 +HUMAN_OBSERVATION,tisha_jayne,1,,,2022,12,30,Australia,AU,Queensland,-27.998882,152.681987,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree at entrance of Assembly Point D car park - opposite L&M block Tree market with 9,2023,11,5,Australia,AU,Queensland,-27.525043,153.090746,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,6,Australia,AU,Queensland,-27.527273,153.108179,EPSG:4326 +HUMAN_OBSERVATION,afoulkes,1,,,2020,6,4,Australia,AU,New South Wales,-28.373856,153.153957,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,10,28,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Black Wattle in shade,2021,3,5,Australia,AU,Queensland,-27.550968,153.057833,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Young adult. Unknown sex. Unhealthy. Rescued. Observed by Megan Wilkinson. Submitted by Wendy Taylor via msg.,2024,11,7,Australia,AU,Queensland,-26.566616,151.789749,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,12,31,Australia,AU,Queensland,-27.526954,153.091517,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,2 koalas spotted grunting loudly,2024,2,4,Australia,AU,Victoria,-37.613507,143.89732,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,MALE,,2023,11,29,Australia,AU,Queensland,-27.358429,152.074548,EPSG:4326 +HUMAN_OBSERVATION,Dylan Wishart,1,,,2022,5,3,Australia,AU,Victoria,-38.069771,141.82333,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near tafe entrance cav road- near horticulture sign Very high up,2023,7,23,Australia,AU,Queensland,-27.527519,153.090917,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,7,7,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,amanda6894,1,,"14 year old tagged, female called Elga",2022,11,7,Australia,AU,Queensland,-27.256351,152.962631,EPSG:4326 +HUMAN_OBSERVATION,alyn21000,1,,Sighted 12 October 2023,2023,10,12,Australia,AU,Queensland,-26.724452,152.978126,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,29,Australia,AU,Queensland,-27.544757,153.071902,EPSG:4326 +HUMAN_OBSERVATION,danica96,1,,,2024,5,26,Australia,AU,Victoria,-38.383442,145.29715,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,,2024,7,5,Australia,AU,Queensland,-27.527352,153.108142,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy looking, smaller bit probably adult. Didn’t see tags",2024,9,19,Australia,AU,Queensland,-27.339428,152.61325,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,11,22,Australia,AU,Queensland,-27.509813,153.083861,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,,2023,3,18,Australia,AU,Queensland,-27.414708,152.004242,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2023,8,11,Australia,AU,Queensland,-27.530648,153.103842,EPSG:4326 +HUMAN_OBSERVATION,Elias Aristides Elias,1,,,2023,1,9,Australia,AU,Victoria,-38.770355,143.424928,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to e block Maisie,2024,2,17,Australia,AU,Queensland,-27.526455,153.090718,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,"Mum & joey - back together today. Mum (known as Jacko) I noticed today has previously been tagged, but chunk missing from RIGHT ear. Joey, known as Charlie",2024,4,2,Australia,AU,Queensland,-27.528461,153.103303,EPSG:4326 +HUMAN_OBSERVATION,Jane Gosden,1,,,2022,5,3,Australia,AU,Queensland,-27.493566,153.404317,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,Same female koala from this morning's post on inaturalist. Just checking location as post did not look right. She is hanging on in gusty wind and eating manna gum leaves,2024,11,6,Australia,AU,Victoria,-37.81149,144.249907,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,15,Australia,AU,South Australia,-34.867718,138.679844,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2024,1,10,Australia,AU,South Australia,-35.260284,138.560215,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,5,Australia,AU,South Australia,-34.890314,138.722562,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank muma,2022,11,25,Australia,AU,Queensland,-27.545854,153.073304,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,17,Australia,AU,Queensland,-27.542368,153.072368,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near car parks near Aldi gates,2024,4,1,Australia,AU,Queensland,-27.526811,153.092424,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey Ironbark,2020,5,26,Australia,AU,Queensland,-27.544634,153.060953,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,1,20,Australia,AU,Queensland,-27.527319,153.091551,EPSG:4326 +HUMAN_OBSERVATION,Peter Crowcroft,1,,found a funguy during fungi survey,2024,5,10,Australia,AU,Victoria,-38.530384,143.722961,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2022,10,11,Australia,AU,Victoria,-38.637776,145.716039,EPSG:4326 +HUMAN_OBSERVATION,Libby Woodward,1,,Taken using a movement sensing camera at the Big Dam. Some pictures are snapshots from videos.,2024,5,5,Australia,AU,Victoria,-36.521659,145.72022,EPSG:4326 +HUMAN_OBSERVATION,David Flack,1,MALE,,2023,8,14,Australia,AU,Queensland,-21.806094,148.698213,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Picnic area near E block,2023,12,14,Australia,AU,Queensland,-27.525868,153.090663,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Appeared healthy. Observed by Wayne Shaw. Submitted by Denise Shaw via email.,2023,7,6,Australia,AU,Queensland,-26.362907,151.8177,EPSG:4326 +HUMAN_OBSERVATION,lynchj,1,,"Bad photo but just wanted to record sighting at the Laratinga Wetlands, Mount Barker",2021,9,7,Australia,AU,South Australia,-35.071022,138.883392,EPSG:4326 +HUMAN_OBSERVATION,mayamegret,1,,,2022,9,27,Australia,AU,Queensland,-27.497405,153.399505,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,11,28,Australia,AU,Victoria,-38.671563,146.164235,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,10,Australia,AU,Queensland,-27.527866,153.111626,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,24,Australia,AU,Queensland,-27.543528,153.070364,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,4,21,Australia,AU,Queensland,-27.551052,153.057432,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,10,11,Australia,AU,Queensland,-27.54569,153.072493,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,3,16,Australia,AU,Queensland,-27.527022,153.090937,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - yellow tag RIGHT ear,2023,4,4,Australia,AU,Queensland,-27.529735,153.109995,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,MALE,,2024,8,18,Australia,AU,Queensland,-27.514854,153.082773,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2024,3,17,Australia,AU,Victoria,-37.908561,147.735483,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,10,10,Australia,AU,South Australia,-34.892836,138.627137,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Melaleuca,2021,9,7,Australia,AU,Queensland,-27.551265,153.058936,EPSG:4326 +HUMAN_OBSERVATION,odilon59,1,,,2024,7,14,Australia,AU,Queensland,-19.12539,146.868713,EPSG:4326 +HUMAN_OBSERVATION,David,1,,,2024,2,14,Australia,AU,South Australia,-34.87553,138.712798,EPSG:4326 +HUMAN_OBSERVATION,Kymberley,1,,,2022,11,16,Australia,AU,Queensland,-21.726375,148.694014,EPSG:4326 +HUMAN_OBSERVATION,Lauren Flohr,1,FEMALE,Female with young (back rider). Appeared healthy.,2022,9,25,Australia,AU,Queensland,-27.361481,152.15976,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2024,6,16,Australia,AU,Queensland,-27.524378,153.046783,EPSG:4326 +HUMAN_OBSERVATION,valsan,1,,,2021,12,18,Australia,AU,South Australia,-35.032733,138.559433,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In shade of thick Monkey Rope Vine,2020,4,3,Australia,AU,Queensland,-27.552599,153.063702,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Very wet - difficult to get photos,2023,3,12,Australia,AU,Queensland,-27.526961,153.090891,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,,2021,5,11,Australia,AU,New South Wales,-28.260384,153.401663,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Deceased Chlamydia, part of a group of 8 Koalas.",2024,7,5,Australia,AU,Queensland,-27.453139,152.3658,EPSG:4326 +HUMAN_OBSERVATION,julesaf,1,,,2021,6,6,Australia,AU,Victoria,-37.746616,145.220507,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,Difficult to see as I didn’t want to disturb it in the little tree. Goes to show that you don’t have to wait 20+ years for koalas to use trees you grow for them. This one is about 3-4 years old.,2023,11,19,Australia,AU,Queensland,-27.325612,151.931945,EPSG:4326 +HUMAN_OBSERVATION,Braden McDonald,1,,,2022,8,28,Australia,AU,Queensland,-28.053518,152.379655,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,Koala female on ground and then climbed red box,2022,3,3,Australia,AU,Victoria,-37.841098,144.277431,EPSG:4326 +HUMAN_OBSERVATION,margot_oorebeek,1,,,2022,3,19,Australia,AU,Victoria,-38.791788,143.535193,EPSG:4326 +HUMAN_OBSERVATION,Brad,1,,,2020,8,29,Australia,AU,South Australia,-34.936102,138.706198,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.924375,147.729492,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult female with joey. Healthy. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,9,7,Australia,AU,Queensland,-26.390373,151.82024,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Older male koala mid in manna gum Same male was seen West of here recently,2022,12,8,Australia,AU,Victoria,-37.873632,144.277248,EPSG:4326 +HUMAN_OBSERVATION,curlewz,1,,Male koala grunting and feeding,2021,8,22,Australia,AU,Queensland,-27.42842,153.530328,EPSG:4326 +HUMAN_OBSERVATION,GuyCastley,1,,,2023,3,1,Australia,AU,Queensland,-27.963679,153.381213,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,13,Australia,AU,Queensland,-27.526007,153.090326,EPSG:4326 +HUMAN_OBSERVATION,kazhutcho,1,MALE,Healthy looking male koala,2023,11,26,Australia,AU,New South Wales,-30.295483,153.124878,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,4,2,Australia,AU,New South Wales,-28.259925,153.401988,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,7,13,Australia,AU,Queensland,-27.515762,153.09172,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Maisie’s Joey,2024,11,10,Australia,AU,Queensland,-27.527008,153.090374,EPSG:4326 +HUMAN_OBSERVATION,halobaena,1,,Feeding in the day,2024,9,25,Australia,AU,Queensland,-27.530151,153.035912,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2020,1,2,Australia,AU,New South Wales,-35.919162,145.678847,EPSG:4326 +HUMAN_OBSERVATION,Doran Goldman,1,,,2022,11,8,Australia,AU,Queensland,-27.496113,153.39937,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,15,Australia,AU,Queensland,-27.527843,153.111664,EPSG:4326 +HUMAN_OBSERVATION,Lindy,1,,,2023,5,13,Australia,AU,Queensland,-26.757511,152.802707,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Submitted by Venessa Hansen Alive, healthy, adult. Sex unknown.",2020,4,9,Australia,AU,Queensland,-26.580756,151.821613,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,In a Mana Gum (E. viminalis). Does this tree look to be suffering from grazing? Same koala here yesterday (https://inaturalist.ala.org.au/observations/214359669),2024,5,9,Australia,AU,Victoria,-38.497133,142.978278,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2022,10,30,Australia,AU,Queensland,-27.510493,153.083275,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On E.microcorys.,2021,9,2,Australia,AU,Queensland,-27.546677,153.037468,EPSG:4326 +HUMAN_OBSERVATION,Edward Bell,1,,,2020,2,5,Australia,AU,Queensland,-27.90979,153.372097,EPSG:4326 +HUMAN_OBSERVATION,highseamutiny,1,,,2022,12,13,Australia,AU,Victoria,-38.324658,142.365708,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,22,Australia,AU,Queensland,-27.528207,153.109825,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,18,Australia,AU,Queensland,-27.527778,153.109439,EPSG:4326 +HUMAN_OBSERVATION,bankside106,1,,With a baby,2021,12,18,Australia,AU,Queensland,-27.544367,153.046382,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,where there is koala Poo theres been a koala,2021,7,10,Australia,AU,Queensland,-28.097252,152.8704,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Fairly fresh koala pellets under brush box and tallow wood,2023,2,16,Australia,AU,Queensland,-27.927497,153.21267,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,27,Australia,AU,Queensland,-27.542433,153.068427,EPSG:4326 +HUMAN_OBSERVATION,Lesley Hardiman,1,,,2020,10,19,Australia,AU,Queensland,-27.490726,153.247161,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Very high koala activity . Highest I’ve found in Yengo with scat under around 50 Eucalyptus punctata and Eucalyptus sparsifolia.,2023,10,15,Australia,AU,New South Wales,-33.150928,151.06752,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,6,14,Australia,AU,Queensland,-26.390343,152.655471,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,4,3,Australia,AU,New South Wales,-33.076706,151.095397,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,18,Australia,AU,South Australia,-34.890164,138.73252,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,4,26,Australia,AU,South Australia,-34.89358,138.624532,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,10,21,Australia,AU,Queensland,-27.546729,153.074751,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,15,Australia,AU,Queensland,-27.528955,153.111481,EPSG:4326 +HUMAN_OBSERVATION,Todd Deininger,1,MALE,,2024,5,15,Australia,AU,Queensland,-26.375305,153.037376,EPSG:4326 +HUMAN_OBSERVATION,theressa,1,,,2020,8,2,Australia,AU,Queensland,-27.166525,153.001464,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,12,Australia,AU,Queensland,-27.544252,153.055785,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Juvenile. Unknown sex. Orphaned. Mothers location and condition unknown. Rescued by Wendy Taylor. Submitted via msg.,2024,11,1,Australia,AU,Queensland,-26.580242,151.969533,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,2,25,Australia,AU,Queensland,-27.527189,153.09171,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,4,Australia,AU,South Australia,-34.892154,138.715319,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,6,27,Australia,AU,South Australia,-34.865075,138.657483,EPSG:4326 +HUMAN_OBSERVATION,Michael Goode,1,,,2023,10,26,Australia,AU,Queensland,-27.545571,153.2555,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,12,23,Australia,AU,Queensland,-27.51145,153.084022,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2020,4,28,Australia,AU,Queensland,-27.551668,153.044629,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,MALE,Male (see dark stain from chest gland). Spent just over 1 hour in this food tree before coming down. LCA2070,2020,8,27,Australia,AU,Queensland,-27.496009,152.247495,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,5,6,Australia,AU,Queensland,-27.525674,153.092335,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,14,Australia,AU,South Australia,-34.891995,138.719712,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - purple tag LEFT ear - Carl born 2021, tagged March 2022",2024,5,27,Australia,AU,Queensland,-27.528502,153.114269,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,7,14,Australia,AU,Queensland,-27.550974,153.057832,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Koala scat under a Eucalyptus tereticornis, Blue gum",2023,11,15,Australia,AU,Queensland,-27.529306,152.454861,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,13,Australia,AU,South Australia,-34.892185,138.720951,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Aldi gates entrance Jacob Jnr,2024,11,3,Australia,AU,Queensland,-27.526567,153.092936,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2024,11,17,Australia,AU,Queensland,-27.527153,153.091744,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2023,12,16,Australia,AU,Queensland,-27.528315,153.092767,EPSG:4326 +HUMAN_OBSERVATION,lunch33,1,,,2020,5,3,Australia,AU,South Australia,-34.824322,135.681228,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,8,9,Australia,AU,New South Wales,-28.258036,153.400668,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female. Possible Chlamydia. Rescued by Koala Rescue Qld for health check. Observed by Wendy Taylor. Submitted via msg. Diagnosed with cyst on her ovary and scheduled for surgery.,2024,10,31,Australia,AU,Queensland,-26.17301,151.687686,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2024,3,8,Australia,AU,Victoria,-38.341499,142.630853,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,Mount Crosby Road Koala Attribution: Ingrid,2021,8,8,Australia,AU,Queensland,-27.529496,152.807148,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - green tag Q6 LEFT ear - Joe, known as Bozo",2024,7,1,Australia,AU,Queensland,-27.527023,153.107722,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2024,10,8,Australia,AU,Queensland,-26.328117,148.453138,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside admin block,2023,10,1,Australia,AU,Queensland,-27.526906,153.091738,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,,2020,11,11,Australia,AU,Queensland,-27.509382,153.080857,EPSG:4326 +HUMAN_OBSERVATION,dawnborchardt,1,,,2021,11,7,Australia,AU,South Australia,-35.146825,138.597596,EPSG:4326 +HUMAN_OBSERVATION,mikeahart,1,,,2024,4,1,Australia,AU,Victoria,-37.921857,147.728863,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,In a camphor laurel,2023,12,4,Australia,AU,Queensland,-27.528269,153.110135,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,9,1,Australia,AU,Queensland,-27.510903,153.087855,EPSG:4326 +HUMAN_OBSERVATION,hannahp7466,1,,,2024,7,6,Australia,AU,Queensland,-19.12533,146.868988,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2024,8,12,Australia,AU,Victoria,-38.130148,145.268517,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"In Mana Gum (E. viminalis). First image rough, from phone (to set up obs with geolocation, etc, which my DSLR doesn't have). Look to later DSLR images for more details. Koala is sitting in a stick nest. I saw a movement & thought a wedgie might have been in there, looked with binocs and found a koala!",2024,5,9,Australia,AU,Victoria,-38.500031,142.974964,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2024,9,13,Australia,AU,South Australia,-35.111405,138.641892,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Green tag RIGHT ear - female,2023,1,12,Australia,AU,Queensland,-27.528123,153.111462,EPSG:4326 +HUMAN_OBSERVATION,fobhm,1,,,2021,12,8,Australia,AU,South Australia,-34.886949,138.720748,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2023,12,19,Australia,AU,South Australia,-34.875488,135.673553,EPSG:4326 +HUMAN_OBSERVATION,Terry,1,,Pic by my son today. Approximate location.,2021,2,11,Australia,AU,Victoria,-38.281898,142.626259,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,8,22,Australia,AU,New South Wales,-28.25392,153.376801,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult female & joey. Healthy. Observed by Denise Shaw. Submitted via email.,2023,10,31,Australia,AU,Queensland,-26.353608,151.72644,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Possibly male. Observed bellowing. Observed by Ulf Sellergren. Submitted by Denise Shaw via email.,2023,10,26,Australia,AU,Queensland,-26.507413,151.873873,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2021,12,22,Australia,AU,South Australia,-34.865183,138.656872,EPSG:4326 +HUMAN_OBSERVATION,christinemauger_bha,1,FEMALE,,2023,10,22,Australia,AU,Queensland,-17.96026,145.465053,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,8,4,Australia,AU,Queensland,-27.527345,153.090354,EPSG:4326 +HUMAN_OBSERVATION,graeme lunt,1,,Hunter Camera,2022,11,7,Australia,AU,Victoria,-37.688766,143.996858,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,Located in the school ground in a tree in the driveway.,2023,11,8,Australia,AU,Queensland,-27.406319,151.996551,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2022,7,27,Australia,AU,South Australia,-34.970553,138.637438,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,young female koala in our car park,2023,2,18,Australia,AU,Queensland,-27.525,153.092257,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear,2024,7,10,Australia,AU,Queensland,-27.529113,153.112084,EPSG:4326 +HUMAN_OBSERVATION,vmazey,1,,,2020,11,20,Australia,AU,South Australia,-34.782047,138.668337,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark,2024,2,17,Australia,AU,Queensland,-27.551388,153.058812,EPSG:4326 +HUMAN_OBSERVATION,julietandbrian,1,,,2022,9,26,Australia,AU,Queensland,-27.348637,152.062256,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"Health male in pine tree, rescued",2021,10,11,Australia,AU,Victoria,-37.566217,143.839917,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"I have been hearing koalas on several nights in this area. Found scats under some Tallowwood trees, that smell like eucalyptus leaves.",2021,9,7,Australia,AU,New South Wales,-28.258537,153.402625,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,8,11,Australia,AU,Queensland,-27.523979,153.092955,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,6,23,Australia,AU,New South Wales,-28.258016,153.400798,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,,2024,9,16,Australia,AU,New South Wales,-34.766636,146.579853,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2020,11,3,Australia,AU,South Australia,-34.971335,138.638136,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,24,Australia,AU,Queensland,-27.528907,153.111904,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,18,Australia,AU,South Australia,-34.891918,138.715136,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,3,1,Australia,AU,Queensland,-27.525637,153.092748,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,10,Australia,AU,Queensland,-27.528818,153.108953,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2024,10,20,Australia,AU,South Australia,-34.903537,138.703186,EPSG:4326 +HUMAN_OBSERVATION,Lesley Hardiman,1,,,2020,9,27,Australia,AU,Queensland,-27.490363,153.247942,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,,Female Koala high in messmate. She has been seen here previously in March 2024,2024,6,22,Australia,AU,Victoria,-37.84187,144.268702,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,3,Australia,AU,Queensland,-27.527079,153.109958,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,3,11,Australia,AU,Queensland,-27.557961,153.054228,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey Tallowwood,2021,8,23,Australia,AU,Queensland,-27.551583,153.057558,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,14,Australia,AU,Queensland,-27.529241,153.106406,EPSG:4326 +HUMAN_OBSERVATION,emilysian04,1,,,2024,11,20,Australia,AU,South Australia,-35.008189,138.663497,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,23,Australia,AU,South Australia,-34.887328,138.728764,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Koala photos snipped from video taken by Joan with mobile phone.,2021,12,29,Australia,AU,New South Wales,-28.266494,153.39507,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,12,Australia,AU,Queensland,-27.429883,151.723328,EPSG:4326 +HUMAN_OBSERVATION,Ross Mckay,1,MALE,,2024,8,28,Australia,AU,Queensland,-27.244846,152.010033,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,No ear tags,2023,1,7,Australia,AU,Queensland,-27.507328,153.078283,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,11,13,Australia,AU,Queensland,-27.540141,153.074484,EPSG:4326 +HUMAN_OBSERVATION,georgiescott,1,,,2024,11,12,Australia,AU,Queensland,-27.438204,152.630855,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,28,Australia,AU,Queensland,-27.525515,153.090398,EPSG:4326 +HUMAN_OBSERVATION,bill_macrantha,1,,We also heard a second Koala grunting further up Scotchmans Creek.,2023,11,30,Australia,AU,Victoria,-37.758012,145.682678,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - red tag A5 - Cindy DEAD on ground,2024,1,23,Australia,AU,Queensland,-27.527407,153.11039,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,Only had phone with me.,2020,2,19,Australia,AU,Queensland,-27.540425,153.072906,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,faint call along with Striped marsh frog,2023,3,2,Australia,AU,Queensland,-27.510717,153.070174,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,24,Australia,AU,South Australia,-34.893092,138.715381,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,FEMALE,Female koala rescued by M Butlin & B Gray for TKWR - taken to Wacol RSPCA Wildlife Hospital,2023,10,26,Australia,AU,Queensland,-27.439623,151.939243,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,4,24,Australia,AU,Queensland,-26.345032,151.841378,EPSG:4326 +HUMAN_OBSERVATION,codyhochen,1,,,2021,8,19,Australia,AU,Queensland,-27.45489,152.906937,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2020,12,29,Australia,AU,New South Wales,-28.256373,153.400888,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,9,24,Australia,AU,Queensland,-27.220407,153.062347,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - white tag LEFT ear - Bandit,2023,9,29,Australia,AU,Queensland,-27.529892,153.11066,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,12,Australia,AU,Queensland,-27.822651,152.991619,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,9,11,Australia,AU,South Australia,-35.001919,138.637485,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Sick koala found on roadside, Friends of Koala took him to the Wildlife Vet.",2024,6,25,Australia,AU,New South Wales,-28.275067,153.393874,EPSG:4326 +HUMAN_OBSERVATION,sloshy__,1,,Female with joey,2024,9,23,Australia,AU,Queensland,-27.540401,153.06328,EPSG:4326 +HUMAN_OBSERVATION,Gen C,1,,,2022,10,1,Australia,AU,Victoria,-38.773339,143.65338,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,Female koala high in Ironbark tree,2024,3,6,Australia,AU,Victoria,-37.843195,144.271918,EPSG:4326 +HUMAN_OBSERVATION,lhuxil,1,,,2023,1,14,Australia,AU,Victoria,-38.813838,143.528406,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,Wild Koala Day,2020,5,3,Australia,AU,Queensland,-27.537591,153.062688,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,11,23,Australia,AU,Victoria,-38.671055,146.163803,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,10,30,Australia,AU,Queensland,-27.545488,153.07224,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown,2020,3,16,Australia,AU,Queensland,-27.547503,153.063172,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,26,Australia,AU,Queensland,-27.526886,153.09208,EPSG:4326 +HUMAN_OBSERVATION,whittie,1,,,2024,2,25,Australia,AU,South Australia,-34.826406,138.73462,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,4,1,Australia,AU,South Australia,-34.963041,138.700309,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,9,11,Australia,AU,Queensland,-27.823501,152.992971,EPSG:4326 +HUMAN_OBSERVATION,carolynavaisabel,1,,,2022,8,20,Australia,AU,South Australia,-35.017367,138.658876,EPSG:4326 +HUMAN_OBSERVATION,SBERRY,1,,2nd koala sighting in Botanic Ridge this week or could be the same individual moving about.,2023,12,23,Australia,AU,Victoria,-38.140556,145.255597,EPSG:4326 +HUMAN_OBSERVATION,Dee Nolan,1,MALE,"At Walnut car park. Showers this morning, fur still looks damp. Very healthy underneath. Large Koala, no tag in right ear, so probably Male. Was quite low in small gum tree, only apprx 2.5 metres up. 90 mins later, out of sight.",2021,3,27,Australia,AU,South Australia,-35.01143,138.647321,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,12,Australia,AU,South Australia,-34.891939,138.719943,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Fluffy eared mum with baby. First time baby observed to away from mum. Pair recorded regularly since October 2019,2020,1,11,Australia,AU,New South Wales,-30.519482,151.52071,EPSG:4326 +HUMAN_OBSERVATION,spk275,1,,,2024,7,7,Australia,AU,Queensland,-19.129051,146.868025,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,1,Australia,AU,Queensland,-27.528883,153.111292,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,9,14,Australia,AU,Queensland,-27.526756,153.090613,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,4,1,Australia,AU,Victoria,-38.671183,146.163833,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,7,21,Australia,AU,Victoria,-37.670442,143.90928,EPSG:4326 +HUMAN_OBSERVATION,karamuta,1,,,2022,9,8,Australia,AU,Victoria,-37.367566,144.041363,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in young Eucalyptus tereticornis,2024,3,3,Australia,AU,Queensland,-28.164772,152.599982,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Dead. Road kill. Observed by Wendy Taylor. Submitted via msg.,2024,7,11,Australia,AU,Queensland,-26.376749,151.680976,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,2,Australia,AU,Queensland,-27.526763,153.090679,EPSG:4326 +HUMAN_OBSERVATION,Michael Fox,1,,,2022,1,3,Australia,AU,Queensland,-27.546591,153.075505,EPSG:4326 +HUMAN_OBSERVATION,Sam S,1,FEMALE,Heard 2 koalas calling evening before- male and female. Think this one is a female- had a daintier head profile.,2024,3,17,Australia,AU,Victoria,-37.014051,145.457786,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,1,6,Australia,AU,Queensland,-27.527131,153.091787,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,11,10,Australia,AU,South Australia,-34.89257,138.72151,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Stringybark,2020,6,23,Australia,AU,Queensland,-27.550181,153.063393,EPSG:4326 +HUMAN_OBSERVATION,Naughtiehorti,1,,,2024,9,4,Australia,AU,Queensland,-28.101346,153.45001,EPSG:4326 +HUMAN_OBSERVATION,david_simons,1,,,2023,9,25,Australia,AU,Queensland,-27.565441,151.996681,EPSG:4326 +HUMAN_OBSERVATION,renee_d,1,MALE,Large male,2024,7,1,Australia,AU,Victoria,-38.073361,142.748812,EPSG:4326 +HUMAN_OBSERVATION,kimblyh,1,,,2024,9,29,Australia,AU,Queensland,-27.276791,152.962645,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe next to compressor unit,2023,7,15,Australia,AU,Queensland,-27.526826,153.090873,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2023,6,28,Australia,AU,Queensland,-27.2963,152.986512,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,21,Australia,AU,Queensland,-27.527117,153.091957,EPSG:4326 +HUMAN_OBSERVATION,Shae Nechwatal,1,,Single koala spotted using a spotlight high in a eucalyptus tree.,2023,5,14,Australia,AU,Victoria,-37.124623,143.346199,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,6,8,Australia,AU,Queensland,-27.527546,153.090971,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,female & joey,2022,12,3,Australia,AU,Victoria,-37.590768,143.886818,EPSG:4326 +HUMAN_OBSERVATION,leithallb,1,,6190/92,2022,11,23,Australia,AU,South Australia,-35.959406,136.811421,EPSG:4326 +HUMAN_OBSERVATION,Richard Fuller,1,,,2022,12,4,Australia,AU,Queensland,-27.52787,153.106675,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,Near house/creek No ear tags,2022,8,23,Australia,AU,Queensland,-27.169858,152.9888,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Male. Rescued. Observed by Wendy Taylor. Submitted via email.,2021,3,19,Australia,AU,Queensland,-26.061882,151.717549,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,8,Australia,AU,Queensland,-27.529473,153.106307,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In triangle of trees near cafeteria,2024,6,9,Australia,AU,Queensland,-27.527196,153.092053,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2022,6,26,Australia,AU,Queensland,-28.077433,151.450822,EPSG:4326 +HUMAN_OBSERVATION,n4c,1,,,2020,10,11,Australia,AU,Queensland,-27.509067,153.076661,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,MALE,Healthy Male Koala Observation in person by TKWR M Butlin. No intervention required.,2023,11,8,Australia,AU,Queensland,-27.380488,151.920072,EPSG:4326 +HUMAN_OBSERVATION,raggedyjack,1,,,2023,1,28,Australia,AU,Queensland,-27.431784,153.538623,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Photo Steve Mitchell, Male, Tagged, and with a dirty rear end",2024,9,4,Australia,AU,Queensland,-27.646007,151.97584,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,30,Australia,AU,Queensland,-27.52696,153.091952,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Seen by Rachel in a spotted gum tree,2024,2,29,Australia,AU,Queensland,-27.63575,152.891749,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,9,2,Australia,AU,New South Wales,-33.076619,151.095078,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Near Mogo creek.,2023,4,7,Australia,AU,New South Wales,-33.146292,151.069781,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,5,Australia,AU,Queensland,-27.529955,153.10397,EPSG:4326 +HUMAN_OBSERVATION,markshark,1,,,2021,1,9,Australia,AU,Victoria,-36.348228,146.68399,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Top of nursery area,2023,6,3,Australia,AU,Queensland,-27.527133,153.091593,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2024,6,28,Australia,AU,Victoria,-38.354816,146.388216,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,Seen late in the afternoon by neighbour.,2023,9,4,Australia,AU,Queensland,-27.416947,152.003525,EPSG:4326 +HUMAN_OBSERVATION,neilbags,1,,,2024,3,11,Australia,AU,New South Wales,-28.275698,153.478645,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area rear Mother and joey,2023,11,4,Australia,AU,Queensland,-27.528283,153.092993,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,21,Australia,AU,South Australia,-34.892921,138.721144,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,male Stringybark,2021,12,26,Australia,AU,Queensland,-27.535713,153.036306,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2021,1,5,Australia,AU,Victoria,-37.925209,147.729725,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,2,12,Australia,AU,Queensland,-27.530021,153.103131,EPSG:4326 +HUMAN_OBSERVATION,rubywicks,1,,,2022,8,11,Australia,AU,Victoria,-38.951738,146.293193,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,8,16,Australia,AU,Queensland,-27.255399,152.046292,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,29,Australia,AU,Queensland,-27.546065,153.07286,EPSG:4326 +HUMAN_OBSERVATION,courtney_p,1,,,2024,6,12,Australia,AU,South Australia,-34.90315,138.705445,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,22,Australia,AU,Queensland,-27.527268,153.109403,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,FEMALE,Mum with joey,2022,10,10,Australia,AU,Queensland,-27.457379,152.401547,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,12,26,Australia,AU,Queensland,-27.540257,153.07657,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery,2024,11,5,Australia,AU,Queensland,-27.527266,153.091704,EPSG:4326 +HUMAN_OBSERVATION,magpies_friends,1,,,2023,11,29,Australia,AU,Queensland,-27.499388,153.404897,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,30,Australia,AU,Queensland,-27.545699,153.073412,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2020,7,5,Australia,AU,South Australia,-35.019577,138.650552,EPSG:4326 +HUMAN_OBSERVATION,stevemcbride,1,,,2023,11,9,Australia,AU,New South Wales,-28.943305,153.274416,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,30,Australia,AU,South Australia,-34.891429,138.722267,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Reconyx Hf2,2023,2,11,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,"Tagged Male 0709 Lucky approx 9 years old, spent some time at RSPCA after being hit by a car.",2023,1,30,Australia,AU,Queensland,-27.542214,153.072518,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,19,Australia,AU,Queensland,-27.529398,153.104277,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - yellow tag RIGHT ear - not able to ID as # not visible,2024,4,25,Australia,AU,Queensland,-27.529981,153.110945,EPSG:4326 +HUMAN_OBSERVATION,amycarmichael,1,,With a baby on her back,2022,9,6,Australia,AU,Queensland,-27.491392,153.199158,EPSG:4326 +HUMAN_OBSERVATION,jacobybryn,1,,,2022,7,27,Australia,AU,New South Wales,-34.758908,146.543603,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Sick koala which we are trying to rescue.,2021,12,4,Australia,AU,New South Wales,-28.255107,153.378052,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,Crossing streets at night. Don't think it is "Rambo" yellow ear tag 0125,2020,8,25,Australia,AU,Queensland,-27.508092,153.069763,EPSG:4326 +HUMAN_OBSERVATION,Naughtiehorti,1,,,2024,10,27,Australia,AU,Queensland,-28.201188,152.721173,EPSG:4326 +HUMAN_OBSERVATION,p3t3p,1,,"Large male koala observed approx 30 metres from ground on ironbark tree, Dingo Mountain Road, Crows Nest. Appeared to be healthy and alert.",2023,3,6,Australia,AU,Queensland,-27.256021,152.056572,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Monkey Rope Vine,2021,4,21,Australia,AU,Queensland,-27.551277,153.057317,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,10,30,Australia,AU,New South Wales,-28.260203,153.400343,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,9,Australia,AU,Queensland,-27.545777,153.0737,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Male koala in tree. Second photo shows this koala sitting in close proximity to koala mum and her joey.,2023,8,13,Australia,AU,Queensland,-27.284453,153.000794,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,4,21,Australia,AU,Queensland,-27.525531,153.092022,EPSG:4326 +HUMAN_OBSERVATION,fflurlfw,1,,"Koalas seen regularly on property and neighbouring property. So many fresh koala scats under the large Eucalyptus tereticornis on site, with recent scratch marks also.",2020,10,12,Australia,AU,Queensland,-27.498344,153.182572,EPSG:4326 +HUMAN_OBSERVATION,jenjell,1,,,2024,2,11,Australia,AU,Queensland,-27.288695,152.124008,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,22,Australia,AU,Queensland,-27.526953,153.108897,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,4,29,Australia,AU,Victoria,-37.576334,143.905405,EPSG:4326 +HUMAN_OBSERVATION,GuyCastley,1,,,2023,8,9,Australia,AU,Queensland,-27.963658,153.381013,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,4,20,Australia,AU,Queensland,-27.525853,153.092458,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,17,Australia,AU,Queensland,-27.527958,153.111375,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,10,11,Australia,AU,Queensland,-27.528976,153.111294,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Finder reported 'stacks of fresh koala scat',2023,11,11,Australia,AU,Victoria,-37.594622,143.882706,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,2,29,Australia,AU,Queensland,-28.257891,153.101127,EPSG:4326 +HUMAN_OBSERVATION,James Bennett,1,,,2023,7,18,Australia,AU,New South Wales,-33.017526,151.446239,EPSG:4326 +HUMAN_OBSERVATION,Isis Khalil,1,,,2023,12,24,Australia,AU,Queensland,-19.123155,146.871978,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,"Very close to the road, watching the sunset!",2021,8,22,Australia,AU,Queensland,-27.517037,153.083389,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Brush box,2020,3,10,Australia,AU,Queensland,-27.550283,153.061835,EPSG:4326 +HUMAN_OBSERVATION,Caleb D.,1,,,2024,8,21,Australia,AU,New South Wales,-29.776225,151.344961,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Bloodwood,2021,4,28,Australia,AU,Queensland,-27.550773,153.056514,EPSG:4326 +HUMAN_OBSERVATION,Irene Richardson,1,,Deceased. Sad observation of a deceased koala beside a busy Rd. Discovered during a roadside clean up.,2022,9,18,Australia,AU,New South Wales,-32.823738,151.547918,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,,2024,7,23,Australia,AU,Queensland,-27.529508,153.104951,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,28,Australia,AU,Queensland,-27.529857,153.103606,EPSG:4326 +HUMAN_OBSERVATION,ejcloud,1,,,2024,3,20,Australia,AU,Victoria,-38.52221,143.957648,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Mum’s trees near e block,2024,3,29,Australia,AU,Queensland,-27.526475,153.091125,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery entrance Mother and joey,2023,10,8,Australia,AU,Queensland,-27.52735,153.091422,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Chappy,2024,6,19,Australia,AU,South Australia,-34.890965,138.724572,EPSG:4326 +HUMAN_OBSERVATION,Liz Allen,1,,,2021,5,17,Australia,AU,South Australia,-34.951973,138.686051,EPSG:4326 +HUMAN_OBSERVATION,chelsb28,1,,,2022,2,5,Australia,AU,Victoria,-37.679722,144.376998,EPSG:4326 +HUMAN_OBSERVATION,lauren leviston,1,,,2023,4,22,Australia,AU,Victoria,-37.927919,144.147359,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,10,11,Australia,AU,Queensland,-27.529948,153.10479,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,1,28,Australia,AU,Queensland,-27.52737,153.091284,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,31,Australia,AU,Queensland,-27.546059,153.074464,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Maisie and joey,2023,12,31,Australia,AU,Queensland,-27.52693,153.090774,EPSG:4326 +HUMAN_OBSERVATION,juliesarna,1,,,2023,6,9,Australia,AU,Queensland,-27.298859,153.004316,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,In Eucalyptus nicholii,2021,10,12,Australia,AU,Victoria,-38.671245,146.164153,EPSG:4326 +HUMAN_OBSERVATION,belindadavis1,1,,,2021,5,9,Australia,AU,Queensland,-27.510497,153.085139,EPSG:4326 +HUMAN_OBSERVATION,mikew65,1,,,2023,3,21,Australia,AU,South Australia,-34.875521,135.673492,EPSG:4326 +HUMAN_OBSERVATION,Sunny,1,,,2022,10,22,Australia,AU,Victoria,-37.523083,145.960913,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Koala spotted in the middle of Woogaroo Forest in a tall Iron Bark,2024,11,20,Australia,AU,Queensland,-27.647172,152.902457,EPSG:4326 +HUMAN_OBSERVATION,Jarrah Simao,1,,,2021,2,4,Australia,AU,Victoria,-38.180833,145.127778,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lower wisteria car park up tennis court end,2023,8,18,Australia,AU,Queensland,-27.525099,153.092862,EPSG:4326 +HUMAN_OBSERVATION,burnettcatchment,1,,Adult. Unknown Sex. Healthy. Observed by Wendy Taylor. Submitted via Messenger,2024,11,14,Australia,AU,Queensland,-26.208854,151.771158,EPSG:4326 +HUMAN_OBSERVATION,ttsquid,1,,,2022,12,29,Australia,AU,Victoria,-38.318572,142.363542,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In E.microcorys.,2021,11,14,Australia,AU,Queensland,-27.5467,153.037458,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Sport n rec picnic area,2024,10,20,Australia,AU,Queensland,-27.525741,153.092905,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,Beside front gate.,2024,8,11,Australia,AU,Queensland,-27.32545,151.93553,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,"Koala in regularly used tree on Lawnton Pocket Road, Lawnton.",2024,8,3,Australia,AU,Queensland,-27.284506,153.000639,EPSG:4326 +HUMAN_OBSERVATION,koalasofstraddie,1,,In eucalyptus beside my property,2020,12,16,Australia,AU,Queensland,-27.401322,153.440812,EPSG:4326 +HUMAN_OBSERVATION,Fred Gibbs,1,,LOCATION: Magnetic Island. Off the coast of Townsville City in Australia.,2024,5,26,Australia,AU,Queensland,-19.139494,146.829944,EPSG:4326 +HUMAN_OBSERVATION,Ken Hurley,1,,,2023,11,10,Australia,AU,South Australia,-34.90423,138.707447,EPSG:4326 +HUMAN_OBSERVATION,tomwillmottla,1,,"First observed on ground, near small water course.",2020,11,23,Australia,AU,Queensland,-27.514144,153.078976,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,23,Australia,AU,Queensland,-27.542445,153.06995,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,4,23,Australia,AU,Queensland,-27.551463,153.056785,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Melaleuca sp.,2021,6,23,Australia,AU,Queensland,-27.549708,153.052807,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,Koala feeding then climbing,2020,1,5,Australia,AU,Queensland,-27.544684,153.070532,EPSG:4326 +HUMAN_OBSERVATION,suegould,1,,Koala asleep on branch of River Red Gum,2023,9,6,Australia,AU,New South Wales,-29.153604,150.999637,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,8,22,Australia,AU,Queensland,-27.503782,153.083093,EPSG:4326 +HUMAN_OBSERVATION,thelearninghaus,1,,,2024,10,25,Australia,AU,Queensland,-27.465597,151.825842,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,8,11,Australia,AU,Queensland,-27.547049,153.058267,EPSG:4326 +HUMAN_OBSERVATION,philip-roetman,1,,,2022,5,1,Australia,AU,South Australia,-35.032564,138.628191,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2020,5,26,Australia,AU,Queensland,-27.551581,153.056897,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,2,14,Australia,AU,Victoria,-38.671185,146.163856,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,koala no 2,2021,8,8,Australia,AU,Queensland,-27.507068,153.083661,EPSG:4326 +HUMAN_OBSERVATION,Scott Baker,1,,,2022,11,29,Australia,AU,New South Wales,-34.053305,150.855906,EPSG:4326 +HUMAN_OBSERVATION,fe_salkeld,1,,Koala feeding with a Joey on her stomach,2024,10,20,Australia,AU,South Australia,-34.976658,138.675063,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Heading up to get some sunshine,2024,7,29,Australia,AU,Queensland,-27.530097,153.103792,EPSG:4326 +HUMAN_OBSERVATION,samrixon1,1,,,2021,12,28,Australia,AU,Victoria,-37.376055,144.503023,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2024,5,13,Australia,AU,Victoria,-37.579183,143.874233,EPSG:4326 +HUMAN_OBSERVATION,lynburleigh,1,,,2023,9,24,Australia,AU,Victoria,-37.005839,145.502959,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2022,12,16,Australia,AU,Queensland,-28.103114,151.259003,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2024,1,6,Australia,AU,Queensland,-27.528413,153.092818,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,11,7,Australia,AU,South Australia,-34.864987,138.659592,EPSG:4326 +HUMAN_OBSERVATION,kaharris03,1,,,2024,6,3,Australia,AU,New South Wales,-29.001609,153.281211,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,Tummaville Road in poplar box tree (Eucalyptus populnea),2021,11,29,Australia,AU,Queensland,-27.791476,151.562064,EPSG:4326 +HUMAN_OBSERVATION,Kylie Agnew-Francis,1,,,2023,8,13,Australia,AU,Queensland,-27.50615,153.078828,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,6,30,Australia,AU,Queensland,-27.526648,153.090314,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,large koala believed to be male as appears to have scent gland on chest. Right up high so struggled to get clear photos for identification of nose and makings.,2020,8,18,Australia,AU,New South Wales,-28.253604,153.377187,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,"Site: K1 Tree no: 3 Tree DBH: 41.860 Sclerophyll notes: No time was recorded for when scats were found - 1pm has been put for all scat observations due to there being no records, all scats were collected on the same day at different sites Ecologist assessed",2021,8,25,Australia,AU,Queensland,-27.6953,152.086983,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,I believe this is the male known as Bozo,2024,6,17,Australia,AU,Queensland,-27.527194,153.109154,EPSG:4326 +HUMAN_OBSERVATION,mashalevene,1,,,2024,10,31,Australia,AU,Queensland,-28.098194,153.248642,EPSG:4326 +HUMAN_OBSERVATION,melissa_kaye,1,,,2020,6,21,Australia,AU,South Australia,-34.903096,138.706746,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Blackbutt (Eucalyptus pilularis) loads of scat around in numerous trees,2023,7,22,Australia,AU,New South Wales,-32.699577,152.063825,EPSG:4326 +HUMAN_OBSERVATION,duke_n,1,,,2022,7,6,Australia,AU,Victoria,-37.481084,144.290141,EPSG:4326 +HUMAN_OBSERVATION,amychasingbushstars,1,,,2024,6,12,Australia,AU,New South Wales,-31.870605,152.31333,EPSG:4326 +HUMAN_OBSERVATION,fidel-castrovalva,1,FEMALE,,2024,9,30,Australia,AU,Victoria,-37.996107,141.565756,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Approval given to upload and share https://www.facebook.com/Hoo-Roo-Natives-104285077793013/,2022,10,26,Australia,AU,New South Wales,-31.625213,152.212788,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,8,28,Australia,AU,Queensland,-27.918742,153.375972,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Older koala scat,2024,4,12,Australia,AU,Queensland,-27.943955,153.165005,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood with Joey,2020,7,28,Australia,AU,Queensland,-27.551071,153.05753,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,13,Australia,AU,Queensland,-27.512472,153.08316,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2022,4,19,Australia,AU,South Australia,-34.971148,138.638144,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,FEMALE,Mum and bub,2023,7,29,Australia,AU,Queensland,-27.393229,153.440771,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2020,3,3,Australia,AU,South Australia,-34.982631,138.623706,EPSG:4326 +HUMAN_OBSERVATION,teresa-antonia,1,,"Found in roadside trees, it was initially close to the bottom of the tree and as I drove past it ran up the tree",2023,3,6,Australia,AU,Victoria,-36.154681,146.854915,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,8,Australia,AU,Queensland,-27.541946,153.068942,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2023,9,25,Australia,AU,Queensland,-27.529458,153.10262,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,12,26,Australia,AU,Queensland,-27.540277,153.076757,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,Young female close to house/creek Have also been hearing male calling from that direction all day,2020,12,20,Australia,AU,Queensland,-27.169842,152.989058,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2024,6,24,Australia,AU,Queensland,-27.543286,153.057739,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2023,10,1,Australia,AU,Queensland,-27.358553,152.07492,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2023,4,14,Australia,AU,South Australia,-34.683476,138.911648,EPSG:4326 +HUMAN_OBSERVATION,Simone Ciadamidaro,1,,,2020,1,21,Australia,AU,Victoria,-38.668633,143.860672,EPSG:4326 +HUMAN_OBSERVATION,xavierpiron,1,,,2022,11,17,Australia,AU,Victoria,-37.923964,147.730637,EPSG:4326 +HUMAN_OBSERVATION,Trin,1,,,2021,7,12,Australia,AU,Victoria,-38.355224,145.31721,EPSG:4326 +HUMAN_OBSERVATION,Tony Bush,1,MALE,,2023,12,1,Australia,AU,New South Wales,-30.433187,152.97214,EPSG:4326 +HUMAN_OBSERVATION,Anton Citizen,1,,,2023,10,17,Australia,AU,Victoria,-38.371795,145.368713,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,1,6,Australia,AU,Queensland,-27.550773,153.059794,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2021,9,17,Australia,AU,South Australia,-34.865025,138.657697,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside TAFE nursery Mother and joey,2023,9,10,Australia,AU,Queensland,-27.527241,153.091273,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,4,26,Australia,AU,Queensland,-27.527211,153.091652,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,"Red Mahogany, same position and pose and tree as yesterday",2020,2,26,Australia,AU,Queensland,-27.550753,153.057999,EPSG:4326 +HUMAN_OBSERVATION,Kate Leslie,1,,,2024,10,17,Australia,AU,Victoria,-38.350475,143.022539,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"I'm pretty sure this is a female, having had a bit of a look at her chest with binoculars. I couldn't get a photo showing that. She is about 5m away in the next tree to the male in https://www.inaturalist.org/observations/106901663.",2022,2,17,Australia,AU,Victoria,-37.874526,142.290997,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,10,27,Australia,AU,Queensland,-27.54546,153.073621,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,With Joey,2022,5,17,Australia,AU,Queensland,-27.55103,153.057951,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"In E. tereticornis, Boonah Rail Trail",2023,9,28,Australia,AU,Queensland,-27.987112,152.678222,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,4,Australia,AU,Queensland,-27.525034,153.111465,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey gum,2021,2,24,Australia,AU,Queensland,-27.552019,153.055889,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.924192,147.730195,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,Photo taken by neighbour.,2021,10,6,Australia,AU,Queensland,-27.508216,153.067334,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear,2023,5,31,Australia,AU,Queensland,-27.529725,153.103484,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,7,26,Australia,AU,New South Wales,-35.813178,145.554249,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,28,Australia,AU,Queensland,-27.52546,153.092735,EPSG:4326 +HUMAN_OBSERVATION,gdcclandcaregroup,1,,,2024,7,8,Australia,AU,Queensland,-27.31149,151.893443,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2022,3,18,Australia,AU,Victoria,-38.350463,141.59872,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,K block mowing shed,2024,10,12,Australia,AU,Queensland,-27.525851,153.090874,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,11,11,Australia,AU,Queensland,-27.551767,153.057613,EPSG:4326 +HUMAN_OBSERVATION,Christophe Turcotte-van de Rydt,1,,,2023,11,16,Australia,AU,Queensland,-19.12883,146.868242,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,,2022,10,6,Australia,AU,Queensland,-28.211903,152.86348,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Koala in tree on Lawnton Pocket Road.,2024,6,16,Australia,AU,Queensland,-27.283994,152.999407,EPSG:4326 +HUMAN_OBSERVATION,mrsssquiz,1,,,2020,12,25,Australia,AU,Queensland,-28.15224,153.457662,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,10,28,Australia,AU,Queensland,-27.54599,153.072919,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2023,10,2,Australia,AU,New South Wales,-31.441935,152.9022,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,mother & joey,2020,11,5,Australia,AU,Queensland,-27.559017,153.042827,EPSG:4326 +HUMAN_OBSERVATION,thismiaman,1,,,2024,2,5,Australia,AU,Victoria,-38.768978,143.508788,EPSG:4326 +HUMAN_OBSERVATION,faufauh,1,,,2020,3,29,Australia,AU,Queensland,-27.53504,153.221398,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,7,18,Australia,AU,New South Wales,-28.254108,153.377568,EPSG:4326 +HUMAN_OBSERVATION,Helen,1,,,2024,3,15,Australia,AU,Victoria,-38.05654,141.923364,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,22,Australia,AU,South Australia,-34.9367,138.705044,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,8,23,Australia,AU,Queensland,-27.545727,153.074098,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Sick koala - rescue being organised,2024,1,12,Australia,AU,Queensland,-27.527119,153.107397,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2021,1,22,Australia,AU,Queensland,-27.545547,153.070169,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,17,Australia,AU,Queensland,-27.637043,153.089885,EPSG:4326 +HUMAN_OBSERVATION,Craig Hunter,1,,,2020,11,6,Australia,AU,Queensland,-27.006958,151.549317,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,13,Australia,AU,South Australia,-34.886115,138.730178,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Brown female and joey,2020,11,20,Australia,AU,New South Wales,-28.254245,153.377,EPSG:4326 +HUMAN_OBSERVATION,loretolibrary,1,,,2023,5,1,Australia,AU,Queensland,-27.519837,153.112504,EPSG:4326 +HUMAN_OBSERVATION,joheals,1,,,2024,8,24,Australia,AU,Queensland,-27.526975,153.107789,EPSG:4326 +HUMAN_OBSERVATION,wilga24,1,,Koala with joey,2023,9,20,Australia,AU,Queensland,-27.641437,151.58459,EPSG:4326 +HUMAN_OBSERVATION,Gawain,1,,,2024,7,1,Australia,AU,Victoria,-38.382745,145.293985,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tree near mower shed,2023,5,24,Australia,AU,Queensland,-27.52583,153.090926,EPSG:4326 +HUMAN_OBSERVATION,sophiaciaglia,1,,,2024,5,20,Australia,AU,Victoria,-37.920987,147.729675,EPSG:4326 +HUMAN_OBSERVATION,curlewz,1,,2 koalas in the bush gully behind Billa St point Lookout Qld,2021,12,31,Australia,AU,Queensland,-27.428155,153.5298,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy looking female, older Joey in adjacent tree",2023,4,19,Australia,AU,Queensland,-27.52372,153.072692,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds,2024,10,23,Australia,AU,Queensland,-27.527247,153.092117,EPSG:4326 +HUMAN_OBSERVATION,Sarah (sez),1,,,2022,12,30,Australia,AU,Queensland,-27.93734,153.356852,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,10,30,Australia,AU,Queensland,-27.527925,153.050914,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,11,9,Australia,AU,Queensland,-27.612903,151.556533,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,10,12,Australia,AU,Queensland,-27.166762,152.590697,EPSG:4326 +HUMAN_OBSERVATION,Chris,1,MALE,,2023,10,31,Australia,AU,Queensland,-27.892826,152.618042,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,5,28,Australia,AU,Queensland,-27.529939,153.10339,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,7,18,Australia,AU,Queensland,-27.545933,153.074,EPSG:4326 +HUMAN_OBSERVATION,Hamish Everett,1,,Koala enjoys an afternoon feed and lounge on a manna gum tree at Bimbi park.,2023,8,22,Australia,AU,Victoria,-38.832721,143.512682,EPSG:4326 +HUMAN_OBSERVATION,Alba Fulmo,1,,,2023,1,11,Australia,AU,Queensland,-27.51432,153.081086,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,MALE,Griffith University AI Koala Project - Learn more here: https://news.griffith.edu.au/2023/09/27/all-eyes-on-koala-movements-with-ai-tech-in-full-swing-this-spring/,2023,10,12,Australia,AU,Queensland,-27.701124,153.189646,EPSG:4326 +HUMAN_OBSERVATION,crisolimat,1,,,2023,3,12,Australia,AU,Victoria,-38.318329,142.36377,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear,2023,6,24,Australia,AU,Queensland,-27.529639,153.103352,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,1,23,Australia,AU,Queensland,-27.505751,153.083688,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,11,2,Australia,AU,Queensland,-27.527567,153.090724,EPSG:4326 +HUMAN_OBSERVATION,Hayley P,1,MALE,,2021,7,3,Australia,AU,Queensland,-27.374178,152.9304,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Seen in tree very close to another individual in a separate tree. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,9,6,Australia,AU,Queensland,-26.363365,151.809454,EPSG:4326 +HUMAN_OBSERVATION,egarfield,1,,,2023,7,30,Australia,AU,Victoria,-38.670472,143.855181,EPSG:4326 +HUMAN_OBSERVATION,aquanautlloyd,1,,,2024,1,5,Australia,AU,New South Wales,-31.45545,152.91217,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,MALE,If you zoom in I believe you can see his scent gland.,2023,7,2,Australia,AU,Queensland,-27.284289,153.00112,EPSG:4326 +HUMAN_OBSERVATION,workeco,1,,,2024,8,29,Australia,AU,Queensland,-28.010439,152.555094,EPSG:4326 +HUMAN_OBSERVATION,Graham Possingham,1,FEMALE,With joey,2021,12,27,Australia,AU,Victoria,-38.096046,144.278367,EPSG:4326 +HUMAN_OBSERVATION,cameros,1,,Female koala and joey,2022,11,5,Australia,AU,New South Wales,-31.171355,152.949647,EPSG:4326 +HUMAN_OBSERVATION,cauzsa,1,,Heard this little fellow before seeing it climbing tree. Only had my mobile but nice to know we still have a couple on the mount.,2021,10,6,Australia,AU,Victoria,-37.652741,143.925555,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,14,Australia,AU,Queensland,-27.527477,153.090881,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Mum’s trees Maisie and joey,2024,10,12,Australia,AU,Queensland,-27.526459,153.0909,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,6,14,Australia,AU,Queensland,-27.550119,153.054203,EPSG:4326 +HUMAN_OBSERVATION,cicadaexplorermore,1,,,2024,2,15,Australia,AU,South Australia,-35.085686,138.674875,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,7,28,Australia,AU,New South Wales,-28.258359,153.400504,EPSG:4326 +HUMAN_OBSERVATION,gigi133,1,FEMALE,Female (red ear tag in right ear). In Eucalyptus tereticornis,2022,4,5,Australia,AU,New South Wales,-28.959176,153.394272,EPSG:4326 +HUMAN_OBSERVATION,Kyle Copas,1,,,2023,10,22,Australia,AU,Australian Capital Territory,-35.46,148.91,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,,2024,11,3,Australia,AU,Queensland,-27.514927,153.082438,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,This is the first female with the koala in the pouch still.,2020,8,12,Australia,AU,New South Wales,-28.252473,153.375199,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,10,26,Australia,AU,Queensland,-27.548698,153.059498,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,24,Australia,AU,South Australia,-34.872437,138.732499,EPSG:4326 +HUMAN_OBSERVATION,Hanneke Nooren,1,,LCA3103 Confirmed as Koala scat by OWAD Environment,2022,10,1,Australia,AU,Queensland,-27.514559,152.157745,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,15,Australia,AU,Queensland,-27.530327,153.103491,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,4,22,Australia,AU,Queensland,-27.549208,153.050063,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near E block,2024,3,16,Australia,AU,Queensland,-27.526591,153.090934,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,11,8,Australia,AU,Queensland,-27.52969,153.104878,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,12,27,Australia,AU,Victoria,-38.671277,146.164197,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2021,5,18,Australia,AU,Queensland,-27.525078,153.048707,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,8,9,Australia,AU,Queensland,-27.546806,153.073117,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,3,24,Australia,AU,Queensland,-25.47562,152.83438,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2020,2,4,Australia,AU,Victoria,-38.130645,145.27062,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,6,22,Australia,AU,South Australia,-34.869113,138.653748,EPSG:4326 +HUMAN_OBSERVATION,petebird,1,,,2022,11,21,Australia,AU,South Australia,-34.975958,138.6446,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,And young Joey,2020,12,9,Australia,AU,Queensland,-27.551131,153.057853,EPSG:4326 +HUMAN_OBSERVATION,cmargferguson,1,,,2021,7,2,Australia,AU,Victoria,-38.847078,145.996522,EPSG:4326 +HUMAN_OBSERVATION,graeme lunt,1,,,2022,11,5,Australia,AU,Victoria,-37.694566,143.995351,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,1 of 2 koalas seen in same tree.,2023,8,6,Australia,AU,Queensland,-27.28444,153.000997,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entry to Lower cav road car park,2024,9,21,Australia,AU,Queensland,-27.525527,153.090276,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult Koala. Healthy. Sitting in birds nest lol. Observed by Denise Shaw. Submitted via email,2023,7,11,Australia,AU,Queensland,-26.135977,151.792488,EPSG:4326 +HUMAN_OBSERVATION,Gen C,1,,,2023,9,10,Australia,AU,South Australia,-35.006095,138.637961,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,15,Australia,AU,Queensland,-27.548913,153.059542,EPSG:4326 +HUMAN_OBSERVATION,kittsw,1,,Two koalas in nearby trees. Possibly related or a pair?,2021,12,31,Australia,AU,South Australia,-34.866312,138.655816,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,17,Australia,AU,Queensland,-27.525958,153.093935,EPSG:4326 +HUMAN_OBSERVATION,tili4,1,,,2024,5,11,Australia,AU,South Australia,-35.006286,138.640458,EPSG:4326 +HUMAN_OBSERVATION,greg012345,1,,,2022,1,10,Australia,AU,Victoria,-38.04917,141.242112,EPSG:4326 +HUMAN_OBSERVATION,camille_caparros,1,,,2022,12,29,Australia,AU,South Australia,-35.004219,138.642741,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,7,8,Australia,AU,Queensland,-27.548721,153.058975,EPSG:4326 +HUMAN_OBSERVATION,reedy_steve,1,,Seen crossing road from west to east. Seemed habituated to people. Interesting location as no eucalypts nearby.,2023,8,17,Australia,AU,Victoria,-38.47436,144.894833,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2024,8,12,Australia,AU,South Australia,-34.953482,138.686433,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"Probably one of our ""residents"". I think this is a female, although I can't see the chest properly. I have heard a male a few times in the past week. This one came to my attention when it urinated down the trunk of a gumtree I was working under. Then it climbed across to the adjoining blackwood wattle and seems to have settled in for a sleep.",2022,5,28,Australia,AU,Victoria,-37.874468,142.291031,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,8,24,Australia,AU,Queensland,-27.918358,153.378159,EPSG:4326 +HUMAN_OBSERVATION,Jenny West,1,,,2021,10,21,Australia,AU,Victoria,-37.572849,144.103306,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Survey 1 LNSF FoN. Fresh koala markings on Grey Gum. Area of known markings (BioNet transect 2021),2023,7,11,Australia,AU,New South Wales,-30.560105,152.993802,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,"Adult. Female. Dead. Possible dog attack. Necropsy is being performed. Observed by Wendy Taylor. Submitted via msg. Necropsy results (28.07.2024): kidney disease and cystitis, evidence of dog saliva on her legs but no internal bruising or trauma. Young female.",2024,7,29,Australia,AU,Queensland,-26.171536,151.689227,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,5,18,Australia,AU,Queensland,-27.527895,153.093127,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,19,Australia,AU,Queensland,-27.550063,153.045193,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,10,11,Australia,AU,Victoria,-38.671622,146.164017,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,8,11,Australia,AU,Queensland,-27.525335,153.09198,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,mother with young joey on separate branch,2023,11,16,Australia,AU,Queensland,-27.795472,151.563228,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey seperate branches,2023,11,26,Australia,AU,Queensland,-27.527101,153.091605,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,5,18,Australia,AU,South Australia,-34.905462,138.711691,EPSG:4326 +HUMAN_OBSERVATION,Christian Perrin,1,MALE,,2023,2,19,Australia,AU,Queensland,-27.508662,153.080483,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.012793,138.670593,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,4,2,Australia,AU,Queensland,-27.544901,153.053162,EPSG:4326 +HUMAN_OBSERVATION,Brad,1,,,2020,10,14,Australia,AU,South Australia,-35.007705,138.662523,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,24,Australia,AU,Queensland,-27.546719,153.073291,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,8,Australia,AU,South Australia,-34.891964,138.719918,EPSG:4326 +HUMAN_OBSERVATION,juliesarna,1,,,2023,6,17,Australia,AU,Queensland,-27.29872,153.004297,EPSG:4326 +HUMAN_OBSERVATION,aburnell,1,,,2024,10,30,Australia,AU,South Australia,-35.323721,138.539615,EPSG:4326 +HUMAN_OBSERVATION,delanyd,1,,,2021,10,30,Australia,AU,Queensland,-27.421912,152.449002,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,,2023,9,19,Australia,AU,Queensland,-27.409733,151.998012,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,12,17,Australia,AU,Queensland,-27.508292,153.081956,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland In mating tree,2023,10,22,Australia,AU,Queensland,-27.527498,153.092468,EPSG:4326 +HUMAN_OBSERVATION,Stephen Csurhes,1,,,2023,4,9,Australia,AU,Queensland,-27.508882,153.086069,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,12,27,Australia,AU,Victoria,-37.596026,143.873135,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,2 koalas in same tree about 2m apart. Higher one looks smaller,2022,11,3,Australia,AU,Queensland,-28.211454,152.865939,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,,2023,12,13,Australia,AU,Queensland,-27.18722,151.789428,EPSG:4326 +HUMAN_OBSERVATION,tracyrout,1,,,2023,8,3,Australia,AU,Queensland,-27.523886,153.06985,EPSG:4326 +HUMAN_OBSERVATION,Ryan Leys,1,,,2023,10,28,Australia,AU,South Australia,-35.622647,137.206772,EPSG:4326 +HUMAN_OBSERVATION,Greg West,1,,,2021,2,19,Australia,AU,New South Wales,-32.729224,152.083759,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,5,27,Australia,AU,Queensland,-27.822883,152.993193,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2020,4,27,Australia,AU,South Australia,-34.954322,138.690111,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear - Joe (known as Bozo),2023,8,14,Australia,AU,Queensland,-27.526803,153.10908,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey In same tree as other mum and joey Maisie,2023,11,18,Australia,AU,Queensland,-27.527137,153.091798,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,,2022,6,3,Australia,AU,Queensland,-27.516665,153.083373,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In Eucalyptus acmenoides/carnea.,2023,8,23,Australia,AU,Queensland,-27.61488,153.154898,EPSG:4326 +HUMAN_OBSERVATION,tlaw,1,,,2021,2,20,Australia,AU,South Australia,-34.902268,138.614962,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2024,5,14,Australia,AU,Queensland,-26.17693,151.691557,EPSG:4326 +HUMAN_OBSERVATION,bridgetallan,1,,,2022,12,19,Australia,AU,Victoria,-38.26572,145.048508,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,15,Australia,AU,Queensland,-27.531507,153.105619,EPSG:4326 +HUMAN_OBSERVATION,nhaass,1,MALE,"Adult male foraging and calling in the same location four nights in a row. Not there during the day. Description: Unmistakeable mid-sized arboreal mammal. Broad head, eyes far apart but forward-oriented, bare nose, large and fluffy round ears, no tail, plump body with wool-like fur, overall grey with contrasting white chest (as seen in the photograph), white eyes are due to light reflection artefact. It spent most of the time in an upright position, either calling loudly (typical male Koala call, somewhat reminiscent of a hippopotamus), leisurely foraging with slow movements, or staring at the observer.",2023,8,26,Australia,AU,Queensland,-27.510381,153.094654,EPSG:4326 +HUMAN_OBSERVATION,mooseamara,1,,,2022,4,25,Australia,AU,Victoria,-38.292622,141.450409,EPSG:4326 +HUMAN_OBSERVATION,Jon Marnock,1,,,2023,10,17,Australia,AU,Queensland,-27.081997,152.377363,EPSG:4326 +HUMAN_OBSERVATION,Peter,1,,First koala seen on property,2024,8,12,Australia,AU,Queensland,-28.296406,152.424872,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult female and joey. Healthy. Observed by Wendy Taylor. Submitted via FB (South Burnett Koala Watch),2023,11,19,Australia,AU,Queensland,-26.155079,151.749824,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,,,2020,8,22,Australia,AU,Queensland,-28.750644,151.821027,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,8,30,Australia,AU,Queensland,-27.918634,153.380004,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey in Spotted gum,2020,10,7,Australia,AU,Queensland,-27.550688,153.055919,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,4,18,Australia,AU,Queensland,-27.534499,153.061616,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria carpark,2024,10,4,Australia,AU,Queensland,-27.524855,153.09207,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - Cindy,2023,9,6,Australia,AU,Queensland,-27.527187,153.108941,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,4,14,Australia,AU,Queensland,-27.527162,153.090956,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,T block,2024,11,17,Australia,AU,Queensland,-27.527137,153.091919,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,13,Australia,AU,Queensland,-27.527252,153.092272,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2023,10,31,Australia,AU,Queensland,-28.094776,152.830145,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Beautiful healthy Joey,2022,10,18,Australia,AU,Queensland,-27.51233,153.082794,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,5,26,Australia,AU,Queensland,-27.528868,153.112286,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,Phone photo only supplied by observer. Reportedly up a Ironbark and observed eating leaves at top.,2021,6,6,Australia,AU,Queensland,-27.509519,153.070312,EPSG:4326 +HUMAN_OBSERVATION,Marissa Dyba,1,,,2023,11,8,Australia,AU,Queensland,-27.827703,153.086717,EPSG:4326 +HUMAN_OBSERVATION,caitie23,1,,,2024,7,29,Australia,AU,Victoria,-38.096161,144.278672,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2023,4,8,Australia,AU,South Australia,-34.726783,139.177872,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,2,25,Australia,AU,Queensland,-27.524189,153.093193,EPSG:4326 +HUMAN_OBSERVATION,danomalleyyy,1,,,2022,4,24,Australia,AU,Victoria,-37.152403,145.536753,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Between Aldi gates and woodland Male. Testicles and yellow tag left ear 0976,2024,4,28,Australia,AU,Queensland,-27.526979,153.09292,EPSG:4326 +HUMAN_OBSERVATION,theressa,1,,,2021,5,2,Australia,AU,Queensland,-27.165147,153.001542,EPSG:4326 +HUMAN_OBSERVATION,Queensland Trust for Nature,1,MALE,,2023,11,13,Australia,AU,Queensland,-27.791357,152.779812,EPSG:4326 +HUMAN_OBSERVATION,julia_callow,1,,,2020,11,7,Australia,AU,Queensland,-27.378041,152.968766,EPSG:4326 +HUMAN_OBSERVATION,Martin Costechareire,1,,,2023,3,29,Australia,AU,Queensland,-27.224019,153.069225,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,2,5,Australia,AU,Queensland,-27.527101,153.090913,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,13,Australia,AU,Queensland,-27.41265,152.003144,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,11,28,Australia,AU,Victoria,-37.525637,143.902773,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,5,Australia,AU,Queensland,-27.526908,153.09056,EPSG:4326 +HUMAN_OBSERVATION,riverconnect2,1,,Rare siting at reedy swamp. Current PV rangers note they have no recordings of koalas at this site.,2024,6,17,Australia,AU,Victoria,-36.34193,145.368212,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,9,11,Australia,AU,Queensland,-27.823668,152.99409,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,1,30,Australia,AU,Victoria,-38.671092,146.163765,EPSG:4326 +HUMAN_OBSERVATION,angb24,1,FEMALE,Female,2024,9,10,Australia,AU,Victoria,-37.824654,145.653042,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to cleaners donga,2024,6,23,Australia,AU,Queensland,-27.526836,153.091743,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,4,16,Australia,AU,Victoria,-38.67125,146.16385,EPSG:4326 +HUMAN_OBSERVATION,profjane,1,,,2022,12,11,Australia,AU,New South Wales,-33.359755,150.934997,EPSG:4326 +HUMAN_OBSERVATION,enekoazkue,1,FEMALE,Adult with a baby.,2023,10,31,Australia,AU,New South Wales,-28.63957,153.62888,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,9,21,Australia,AU,Victoria,-37.62519,143.870666,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2021,4,9,Australia,AU,South Australia,-34.830996,138.736167,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,Make Koala we call “Theo?,2024,11,6,Australia,AU,Queensland,-27.41362,152.003281,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2023,8,23,Australia,AU,Queensland,-27.552594,153.051798,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,11,Australia,AU,Queensland,-27.54596,153.072474,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2024,10,6,Australia,AU,Queensland,-27.358581,152.074666,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,7,17,Australia,AU,Queensland,-27.54671,153.05701,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,11,11,Australia,AU,Queensland,-27.542919,153.053146,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2024,11,23,Australia,AU,Queensland,-28.092531,152.852025,EPSG:4326 +HUMAN_OBSERVATION,Craig Morley,1,,,2020,3,10,Australia,AU,Victoria,-38.834399,143.520538,EPSG:4326 +HUMAN_OBSERVATION,Pedro Nicolau,1,,,2023,2,21,Australia,AU,Victoria,-38.151186,142.68259,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,volunteer rescue and release,2021,12,28,Australia,AU,Victoria,-37.595037,143.875545,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance of nursery,2023,10,8,Australia,AU,Queensland,-27.527324,153.092059,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2023,11,28,Australia,AU,South Australia,-35.26028,138.560197,EPSG:4326 +HUMAN_OBSERVATION,jemmamanfre,1,,,2024,2,6,Australia,AU,South Australia,-34.897737,138.696105,EPSG:4326 +HUMAN_OBSERVATION,Kymberley,1,,,2022,1,25,Australia,AU,Queensland,-21.687696,148.68791,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2020,2,16,Australia,AU,South Australia,-34.872753,138.730453,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,12,Australia,AU,Queensland,-27.549795,153.06019,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,MALE,"Large male koala ""Clem"" known from this area since 2015, making him at least 9 years old. In a Manna Gum E viminalis planted in 2008",2021,7,16,Australia,AU,Victoria,-37.843024,144.282138,EPSG:4326 +HUMAN_OBSERVATION,Diann Lozoraitis,1,,,2020,10,4,Australia,AU,South Australia,-34.831389,138.740556,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,7,27,Australia,AU,Queensland,-27.662848,153.075248,EPSG:4326 +HUMAN_OBSERVATION,murrayoke,1,,Scratchings on E. tereticornis,2024,1,13,Australia,AU,Queensland,-26.896054,152.285649,EPSG:4326 +HUMAN_OBSERVATION,faufauh,1,,,2020,4,12,Australia,AU,Queensland,-27.533034,153.233436,EPSG:4326 +HUMAN_OBSERVATION,helenspittle,1,,,2022,10,9,Australia,AU,Victoria,-38.65342,146.325072,EPSG:4326 +HUMAN_OBSERVATION,Kometvest,1,,,2023,10,18,Australia,AU,Victoria,-38.667989,143.860747,EPSG:4326 +HUMAN_OBSERVATION,saulesvejas,1,,,2024,7,1,Australia,AU,Queensland,-19.128515,146.867935,EPSG:4326 +HUMAN_OBSERVATION,carlycatt,1,,,2020,10,2,Australia,AU,South Australia,-35.020672,138.618438,EPSG:4326 +HUMAN_OBSERVATION,jodes66,1,,First baby on the back of Mumma Koala for the season seen on my morning walk,2024,10,4,Australia,AU,Queensland,-27.37887,151.881547,EPSG:4326 +HUMAN_OBSERVATION,David,1,,,2023,7,22,Australia,AU,South Australia,-34.875853,138.687731,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,31,Australia,AU,Queensland,-27.545818,153.073677,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,5,5,Australia,AU,Queensland,-27.551508,153.057273,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,Spotted by Loren at the Water Treatment Plant near intersection of Lake Manchester Rd & Mt Crosby Rd. Photos Credit: Luren@talltimberstudio,2021,10,18,Australia,AU,Queensland,-27.529765,152.807027,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,5,Australia,AU,South Australia,-34.891496,138.732509,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery- mother and joey,2023,11,3,Australia,AU,Queensland,-27.527378,153.091322,EPSG:4326 +HUMAN_OBSERVATION,laurenhues,1,,,2021,4,22,Australia,AU,Queensland,-27.214678,153.070206,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Bloodwood,2021,11,9,Australia,AU,Queensland,-27.550789,153.058269,EPSG:4326 +HUMAN_OBSERVATION,profotto,1,,,2023,12,30,Australia,AU,Victoria,-37.554436,149.741856,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Steve Saillard. Submitted via FB.,2024,10,1,Australia,AU,Queensland,-26.208548,152.445868,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Sick koala - very dirty bum. Rescue attempt arranged for later today,2024,1,11,Australia,AU,Queensland,-27.527334,153.108151,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3152,2023,5,2,Australia,AU,Queensland,-27.496771,152.249514,EPSG:4326 +HUMAN_OBSERVATION,mammalmunford,1,,,2022,11,13,Australia,AU,South Australia,-34.959872,138.69307,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2021,1,5,Australia,AU,Victoria,-37.926555,147.724648,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,"Smallish, healthy looking koala in Eucalyptus tereticornis. Also reported via QWildlife.",2023,7,16,Australia,AU,Queensland,-28.164282,152.605011,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,3,Australia,AU,Queensland,-27.526535,153.090782,EPSG:4326 +HUMAN_OBSERVATION,bridgetkay,1,,,2021,10,27,Australia,AU,Queensland,-27.834599,153.053341,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In between tennis courts and town houses - along fence line,2024,4,27,Australia,AU,Queensland,-27.525313,153.093521,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Very fluffy ears this one! Have a video of it climbing up.,2021,9,28,Australia,AU,New South Wales,-28.252197,153.375466,EPSG:4326 +HUMAN_OBSERVATION,Pedro Víctor Albaladejo Fresnadillo,1,MALE,Mucho más en http://azulpalidophoto.blogspot.com/,2024,10,4,Australia,AU,Victoria,-38.823262,143.553243,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,8,26,Australia,AU,South Australia,-34.887251,138.733112,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,MALE,,2023,5,30,Australia,AU,New South Wales,-33.144506,151.069071,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,9,Australia,AU,South Australia,-34.891014,138.731711,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,"Site: K2 Tree no: 23 Tree DBH: 31.194 Sclerophyll notes: No time was recorded for when scats were found - 1pm has been put for all scat observations due to there being no records, all scats were collected on the same day at different sites Ecologist assessed",2021,8,25,Australia,AU,Queensland,-27.697067,152.0867,EPSG:4326 +HUMAN_OBSERVATION,meta4,1,,,2020,2,22,Australia,AU,Victoria,-37.772869,143.854188,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2021,11,22,Australia,AU,Victoria,-38.384807,145.308866,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,MALE,,2023,9,4,Australia,AU,New South Wales,-33.117934,151.234829,EPSG:4326 +HUMAN_OBSERVATION,wouterh,1,,,2022,11,23,Australia,AU,Queensland,-27.493876,153.403229,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,19,Australia,AU,Queensland,-27.526864,153.09044,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2020,1,2,Australia,AU,Victoria,-35.921141,145.675404,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,14,Australia,AU,Queensland,-27.528527,153.103851,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2023,1,26,Australia,AU,South Australia,-34.692015,138.826933,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - tag LEFT ear - don't know who this is,2024,4,10,Australia,AU,Queensland,-27.527181,153.1107,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male,2024,1,31,Australia,AU,Queensland,-27.530279,153.105272,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,Wet Faeces around the bottom area.,2022,6,12,Australia,AU,Queensland,-27.55068,153.169549,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,9,Australia,AU,South Australia,-34.889774,138.721969,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2024,10,28,Australia,AU,Queensland,-26.224931,151.846541,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2023,2,25,Australia,AU,Queensland,-27.824105,152.992236,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,11,13,Australia,AU,Queensland,-27.5282,153.033743,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2020,12,31,Australia,AU,Victoria,-37.926207,147.724808,EPSG:4326 +HUMAN_OBSERVATION,Mel,1,,,2022,4,15,Australia,AU,South Australia,-34.964258,138.648128,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,,2024,9,7,Australia,AU,New South Wales,-30.520348,151.517692,EPSG:4326 +HUMAN_OBSERVATION,Craig Hunter,1,,,2020,7,21,Australia,AU,Queensland,-27.018181,151.548556,EPSG:4326 +HUMAN_OBSERVATION,graeme lunt,1,,,2022,4,21,Australia,AU,Victoria,-37.688488,143.996942,EPSG:4326 +HUMAN_OBSERVATION,nsgwilliams,1,,,2023,2,26,Australia,AU,Victoria,-38.399416,145.10987,EPSG:4326 +HUMAN_OBSERVATION,jengp,1,,,2022,2,21,Australia,AU,Queensland,-27.544845,153.049867,EPSG:4326 +HUMAN_OBSERVATION,Chris Rode,1,,,2021,7,11,Australia,AU,Victoria,-37.853542,144.203988,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,8,18,Australia,AU,Queensland,-27.526344,153.090284,EPSG:4326 +HUMAN_OBSERVATION,Ken Hurley,1,,,2023,2,19,Australia,AU,South Australia,-34.902977,138.703902,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,31,Australia,AU,Queensland,-27.528429,153.113596,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,3,6,Australia,AU,South Australia,-34.95484,138.695653,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,6,20,Australia,AU,New South Wales,-28.26001,153.400076,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,2,17,Australia,AU,Queensland,-26.401998,152.654799,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,12,10,Australia,AU,Queensland,-27.56627,152.110367,EPSG:4326 +HUMAN_OBSERVATION,dumakey,1,,,2024,7,4,Australia,AU,South Australia,-35.145383,138.580707,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,In a Queensland blue gum,2023,9,14,Australia,AU,Queensland,-27.545897,153.073113,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,7,13,Australia,AU,Queensland,-27.516288,153.083775,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2021,1,9,Australia,AU,Queensland,-27.550987,153.076632,EPSG:4326 +HUMAN_OBSERVATION,baronsamedi,1,,,2023,6,8,Australia,AU,Queensland,-27.371459,151.608486,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2023,11,23,Australia,AU,South Australia,-35.121919,138.545167,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,5,1,Australia,AU,Queensland,-27.599087,151.889481,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Male. Healthy. Observed by Wendy Taylor. Submitted via email.,2020,12,13,Australia,AU,Queensland,-26.171233,151.81984,EPSG:4326 +HUMAN_OBSERVATION,Nick Lambert,1,,,2023,2,2,Australia,AU,New South Wales,-30.433096,152.971824,EPSG:4326 +HUMAN_OBSERVATION,Heath Hunter,1,,,2023,3,6,Australia,AU,South Australia,-34.928897,138.67017,EPSG:4326 +HUMAN_OBSERVATION,Conservation Volunteers Australia,1,,Adult female (top) and joey (bottom),2021,12,21,Australia,AU,Queensland,-27.41936,152.608286,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"Female with joey. Boonah Rail Trail, upper slope of Mt Carmel. Tree is E. tereticornis.",2024,8,10,Australia,AU,Queensland,-27.99112,152.678058,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2021,8,27,Australia,AU,Queensland,-28.131476,152.916465,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2024,5,25,Australia,AU,Queensland,-27.536147,153.03695,EPSG:4326 +HUMAN_OBSERVATION,leito19,1,,,2024,3,31,Australia,AU,Victoria,-38.383445,145.297981,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,3,14,Australia,AU,Victoria,-38.671092,146.164629,EPSG:4326 +HUMAN_OBSERVATION,julie,1,,,2024,2,13,Australia,AU,Queensland,-27.790605,153.148275,EPSG:4326 +HUMAN_OBSERVATION,Matteo Grilli,1,,"Small-size, possibly a young one that has just left its mother.",2020,2,16,Australia,AU,Queensland,-27.434271,152.99782,EPSG:4326 +HUMAN_OBSERVATION,emmafitzy,1,,,2022,5,8,Australia,AU,Victoria,-38.829687,143.526978,EPSG:4326 +HUMAN_OBSERVATION,Jonathan Gu,1,MALE,,2024,5,12,Australia,AU,Victoria,-38.31827,142.363752,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.78468,143.618794,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2023,5,11,Australia,AU,Victoria,-38.3827,145.289466,EPSG:4326 +HUMAN_OBSERVATION,koalaspotter,1,,Koala spotted here on the river Torrens at Hackney,2024,7,6,Australia,AU,South Australia,-34.907464,138.614228,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,14,Australia,AU,Queensland,-27.526991,153.107707,EPSG:4326 +HUMAN_OBSERVATION,wild_wishart,1,,,2021,8,8,Australia,AU,Queensland,-27.506826,153.075454,EPSG:4326 +HUMAN_OBSERVATION,geotrum8670,1,,,2023,8,29,Australia,AU,New South Wales,-31.06617,150.280748,EPSG:4326 +HUMAN_OBSERVATION,Joey,1,,,2024,5,3,Australia,AU,South Australia,-35.033596,138.572507,EPSG:4326 +HUMAN_OBSERVATION,cicadaexplorermore,1,,,2024,3,6,Australia,AU,South Australia,-35.063007,138.664679,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey,2024,11,2,Australia,AU,Queensland,-27.527261,153.091247,EPSG:4326 +HUMAN_OBSERVATION,ametcalf,1,,"Sienna (Right ear tag, red: 6263 or 8263) was in a Cadaghi at the Redcliffe PCYC soccer fields and was being harassed by Pied Currawongs because she was near their nest.",2024,10,11,Australia,AU,Queensland,-27.219496,153.090036,EPSG:4326 +HUMAN_OBSERVATION,jofraser,1,,,2022,10,15,Australia,AU,Queensland,-27.496728,153.111939,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear - I call him Buster,2023,11,6,Australia,AU,Queensland,-27.530026,153.105591,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2023,8,23,Australia,AU,Queensland,-27.575133,152.937408,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,31,Australia,AU,Queensland,-27.543688,153.072212,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,,2024,9,15,Australia,AU,New South Wales,-34.759009,146.567291,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,11,16,Australia,AU,Victoria,-38.671288,146.164256,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,8,9,Australia,AU,New South Wales,-28.26095,153.39962,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult female & juvenile. Healthy. Observed somewhere along silverleaf road adjacent to Mondure by Wendy Taylor. Submitted by Denise Shaw.,2023,10,26,Australia,AU,Queensland,-26.167219,151.811972,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,First time we have seen a koala in the new western corridor of eucalyptus trees planted on our property in 2011.,2023,1,4,Australia,AU,Queensland,-27.413481,152.003022,EPSG:4326 +HUMAN_OBSERVATION,magpies_friends,1,,,2023,12,6,Australia,AU,Queensland,-27.495821,153.40241,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,14,Australia,AU,Queensland,-27.527836,153.1116,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2020,12,14,Australia,AU,South Australia,-34.971358,138.638016,EPSG:4326 +HUMAN_OBSERVATION,Ruaela,1,,,2024,10,29,Australia,AU,Queensland,-27.512653,153.082245,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2023,10,22,Australia,AU,Queensland,-28.008883,153.266081,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2023,9,1,Australia,AU,South Australia,-34.902815,138.614357,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Koala and Joey in Tallowwood,2020,10,23,Australia,AU,Queensland,-27.551426,153.05771,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,5,17,Australia,AU,South Australia,-35.005851,138.652992,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,5,18,Australia,AU,South Australia,-34.903074,138.70495,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Cindy Crawford and joey Tristania & Wisteria Woodland,2023,9,30,Australia,AU,Queensland,-27.524676,153.093008,EPSG:4326 +HUMAN_OBSERVATION,kath_wilson_forager,1,,,2024,11,19,Australia,AU,Victoria,-38.82926,143.583735,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,31,Australia,AU,South Australia,-34.887079,138.729366,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,22,Australia,AU,Queensland,-27.52692,153.091718,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,1,23,Australia,AU,Queensland,-27.508572,153.085359,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Young adult male in swamp box. Healthy,2023,10,17,Australia,AU,Queensland,-27.904248,153.371557,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2023,11,11,Australia,AU,Queensland,-27.527121,153.091524,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,5,3,Australia,AU,Queensland,-27.529313,153.105083,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,Juvenile climbing up higher up into the E.tereticornis away from mum,2024,7,26,Australia,AU,Queensland,-27.823417,152.99306,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum (green tag E?R ear) & joey,2022,12,21,Australia,AU,Queensland,-27.528131,153.112422,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,10,7,Australia,AU,Queensland,-26.232667,151.879825,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Concourse Mother and Joey,2024,10,26,Australia,AU,Queensland,-27.526724,153.09138,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2023,5,10,Australia,AU,Queensland,-27.643694,151.655937,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,"Appears to be carrying a pouch young. Actively feeding in the outer branches, some sort of stringybark.",2020,9,13,Australia,AU,Queensland,-26.163805,151.97322,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,8,17,Australia,AU,Queensland,-27.538115,153.055196,EPSG:4326 +HUMAN_OBSERVATION,kg1962,1,,,2024,11,1,Australia,AU,Victoria,-38.841265,146.151053,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"This is an early morning shot. I do not believe it is the same koala as observed later in the day, and not in same tree.",2020,11,21,Australia,AU,New South Wales,-28.254216,153.376892,EPSG:4326 +HUMAN_OBSERVATION,James Sanders,1,,,2023,3,25,Australia,AU,Victoria,-38.670316,143.85783,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,29,Australia,AU,Queensland,-27.547193,153.073324,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Thought this might be a young female, as it was small and a couple of trees form what I thought might be a male. But turns out its the joey! as at the end of the day it was back in the same tree as mum! So now its been several trees away during the day and I think is being encourage to be on its own. By sunset , just after 6, it followed mum up to feed in the treetops. But again, in a different part of the tree. Got a clear bottom shot to recognise it own its own, but not a good none one as yet.",2021,10,19,Australia,AU,New South Wales,-28.254121,153.376911,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2022,1,15,Australia,AU,Queensland,-27.543535,153.053683,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,11,10,Australia,AU,South Australia,-34.8917,138.718265,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum - Naomi - & joey,2023,12,23,Australia,AU,Queensland,-27.529438,153.102629,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,8,13,Australia,AU,South Australia,-34.89265,138.6265,EPSG:4326 +HUMAN_OBSERVATION,Daniel Townend,1,,,2022,9,18,Australia,AU,Queensland,-27.621018,153.163927,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,1,7,Australia,AU,Queensland,-27.599081,151.890013,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Scat of koala under Eucalyptus tereticornis,2022,5,12,Australia,AU,Queensland,-28.003948,152.681012,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,,2022,6,21,Australia,AU,Queensland,-27.506395,153.105628,EPSG:4326 +HUMAN_OBSERVATION,Stephanie Todd,1,,,2022,10,10,Australia,AU,New South Wales,-33.347898,150.640394,EPSG:4326 +HUMAN_OBSERVATION,timent87,1,,,2023,7,20,Australia,AU,Victoria,-36.284132,146.593386,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,,2023,2,5,Australia,AU,Queensland,-27.414008,152.003885,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,Camera no. 6 Sclerophyll notes:,2021,9,6,Australia,AU,Queensland,-27.69687,152.08652,EPSG:4326 +HUMAN_OBSERVATION,allambiretreat,1,,,2024,3,8,Australia,AU,Queensland,-27.33905,152.846085,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2021,11,22,Australia,AU,Victoria,-38.375009,145.314349,EPSG:4326 +HUMAN_OBSERVATION,Ninja wallaby,1,,,2024,5,1,Australia,AU,South Australia,-37.807655,140.865722,EPSG:4326 +HUMAN_OBSERVATION,jryan198,1,,,2022,9,22,Australia,AU,Queensland,-27.269838,152.050125,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,10,Australia,AU,Queensland,-27.546761,153.073172,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,13,Australia,AU,Queensland,-27.507936,153.081604,EPSG:4326 +HUMAN_OBSERVATION,christine_mckenzie,1,,,2022,10,10,Australia,AU,Victoria,-36.983833,145.554062,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,12,19,Australia,AU,Queensland,-27.52728,153.091221,EPSG:4326 +HUMAN_OBSERVATION,Zac Holt,1,,,2020,9,10,Australia,AU,Queensland,-28.062761,152.511708,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near Aldi gates car parks,2024,3,2,Australia,AU,Queensland,-27.527145,153.09237,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,6,1,Australia,AU,Queensland,-27.529567,153.115556,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Nadine Gray. Submitted by Amanda Francis via email.,2023,6,26,Australia,AU,Queensland,-26.176018,151.937342,EPSG:4326 +HUMAN_OBSERVATION,faufauh,1,,,2021,1,1,Australia,AU,Queensland,-27.535185,153.221346,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,20,Australia,AU,Queensland,-27.544997,153.072694,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Monty,2024,7,18,Australia,AU,South Australia,-34.889719,138.722649,EPSG:4326 +HUMAN_OBSERVATION,melcm,1,,Saw crossing coalmine road,2024,8,7,Australia,AU,Victoria,-37.685591,144.02483,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,6,30,Australia,AU,Queensland,-27.649033,151.710312,EPSG:4326 +HUMAN_OBSERVATION,malandlynne,1,FEMALE,sighted while having breakfast,2021,11,15,Australia,AU,Queensland,-27.775238,153.14371,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2021,4,2,Australia,AU,Queensland,-27.546873,153.057406,EPSG:4326 +HUMAN_OBSERVATION,forthewild,1,,,2022,3,13,Australia,AU,Victoria,-38.703894,146.141742,EPSG:4326 +HUMAN_OBSERVATION,Michael A. Alcorn,1,,,2023,10,19,Australia,AU,Queensland,-27.492428,153.429914,EPSG:4326 +HUMAN_OBSERVATION,danowbridge,1,,,2020,10,20,Australia,AU,Queensland,-27.451705,152.621917,EPSG:4326 +HUMAN_OBSERVATION,donnymack,1,,,2023,12,3,Australia,AU,New South Wales,-29.780644,151.335492,EPSG:4326 +HUMAN_OBSERVATION,wildsunni,1,,,2023,7,13,Australia,AU,New South Wales,-31.78274,152.709371,EPSG:4326 +HUMAN_OBSERVATION,maudieo,1,,,2022,11,23,Australia,AU,Queensland,-27.262203,152.064577,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,2,21,Australia,AU,Queensland,-27.549539,153.061131,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Chunk missing from RIGHT ear - presume previously tagged - I call her Niki,2023,4,18,Australia,AU,Queensland,-27.52873,153.103851,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2021,2,5,Australia,AU,Queensland,-27.545523,153.070144,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2021,12,25,Australia,AU,South Australia,-35.015072,138.715439,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,,2024,10,30,Australia,AU,Queensland,-27.530422,153.105124,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear near seton fence Mother and joey,2023,11,12,Australia,AU,Queensland,-27.528551,153.092782,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,4,19,Australia,AU,South Australia,-35.009231,138.652235,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,Video at: https://youtu.be/-0jIdWheOlk?si=CKPrH9hOrmcxf7Il,2024,10,21,Australia,AU,Queensland,-27.823503,152.993094,EPSG:4326 +HUMAN_OBSERVATION,eklemp,1,,,2024,11,22,Australia,AU,Queensland,-27.395463,153.448031,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,30,Australia,AU,Queensland,-27.52784,153.103265,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,29,Australia,AU,Queensland,-27.54238,153.068386,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male koala named Clem same as previous post hiding in yellow gum,2022,2,26,Australia,AU,Victoria,-37.841957,144.28225,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey high up. Both much lower about an hour later,2024,10,29,Australia,AU,Queensland,-27.527383,153.111554,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,8,11,Australia,AU,Queensland,-27.550147,153.060748,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in scrappy eucalypt for 2 days.,2024,10,9,Australia,AU,Queensland,-27.996872,152.684103,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2023,1,14,Australia,AU,South Australia,-35.260275,138.560209,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,Bluesfest study site,2022,3,16,Australia,AU,New South Wales,-28.600028,153.547945,EPSG:4326 +HUMAN_OBSERVATION,Jan McKay,1,,,2023,3,10,Australia,AU,South Australia,-34.90328,138.7056,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Leanne Zischke. Submitted via project event and email.,2023,1,2,Australia,AU,Queensland,-26.164481,151.97113,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Pink Bloodwood,2021,10,7,Australia,AU,Queensland,-27.553058,153.057419,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,11,13,Australia,AU,Queensland,-27.527332,153.10763,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,6,22,Australia,AU,New South Wales,-28.25471,153.377878,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted by Denise Shaw via email,2023,9,6,Australia,AU,Queensland,-26.176967,151.691201,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,4,Australia,AU,Queensland,-27.529973,153.104681,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Female with Joey in Grey Ironbark,2021,12,29,Australia,AU,Queensland,-27.533409,153.037823,EPSG:4326 +HUMAN_OBSERVATION,Helen Schofield,1,,Sheep?,2023,7,15,Australia,AU,Victoria,-38.050363,144.025779,EPSG:4326 +HUMAN_OBSERVATION,bushwalkingmama,1,,Sick little one. Taken to the care of wires.,2024,3,11,Australia,AU,New South Wales,-33.427932,150.728139,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,7,30,Australia,AU,Queensland,-27.54729,153.058787,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,19,Australia,AU,South Australia,-34.890119,138.72204,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2024,2,2,Australia,AU,Queensland,-27.35882,152.074783,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,,,2022,4,2,Australia,AU,Queensland,-27.400286,153.439412,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,2,3,Australia,AU,Queensland,-27.55033,153.060059,EPSG:4326 +HUMAN_OBSERVATION,Annette Dexter,1,,,2024,6,29,Australia,AU,Queensland,-27.550663,153.065156,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near Aldi gates car park,2024,3,10,Australia,AU,Queensland,-27.526975,153.092145,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Very healthy Koala,2022,1,17,Australia,AU,Queensland,-27.529821,153.105064,EPSG:4326 +HUMAN_OBSERVATION,Xuyang Li,1,,,2024,10,5,Australia,AU,Victoria,-38.484067,145.262833,EPSG:4326 +HUMAN_OBSERVATION,enekoazkue,1,,,2023,11,30,Australia,AU,New South Wales,-28.637374,153.629428,EPSG:4326 +HUMAN_OBSERVATION,tipetalaura,1,,,2021,10,24,Australia,AU,South Australia,-34.951139,138.671995,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Spotted gum,2021,3,28,Australia,AU,Queensland,-27.548757,153.052213,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,,2024,10,3,Australia,AU,New South Wales,-34.08208,150.853728,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,8,18,Australia,AU,Queensland,-27.526657,153.109028,EPSG:4326 +HUMAN_OBSERVATION,shaun_reay,1,,Just chilling up in the tree,2020,7,26,Australia,AU,Queensland,-27.547419,153.171428,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"Boonah Rail Trail, in Euc. tereticornis",2023,11,7,Australia,AU,Queensland,-27.986008,152.677567,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,24,Australia,AU,Queensland,-27.527234,153.108232,EPSG:4326 +HUMAN_OBSERVATION,rachael_p,1,MALE,,2022,1,25,Australia,AU,Victoria,-38.00088,141.095854,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2023,8,19,Australia,AU,South Australia,-34.903235,138.70627,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2023,5,29,Australia,AU,Queensland,-27.553517,153.052392,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,11,5,Australia,AU,Victoria,-38.67105,146.163697,EPSG:4326 +HUMAN_OBSERVATION,andymc737,1,,,2022,11,25,Australia,AU,Queensland,-27.938923,153.356803,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,12,23,Australia,AU,Queensland,-27.507687,153.08082,EPSG:4326 +HUMAN_OBSERVATION,rosspjchapman,1,,,2021,3,12,Australia,AU,Victoria,-38.359493,141.581501,EPSG:4326 +HUMAN_OBSERVATION,Elias Aristides Elias,1,,,2023,1,9,Australia,AU,Victoria,-38.318833,142.36328,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,9,21,Australia,AU,Queensland,-27.550805,153.055913,EPSG:4326 +HUMAN_OBSERVATION,Noel J Sheeran,1,,,2021,10,20,Australia,AU,Queensland,-27.481946,153.239633,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2024,8,2,Australia,AU,New South Wales,-31.987893,151.811643,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Koala sitting in far off tree.,2023,12,3,Australia,AU,Queensland,-27.283863,152.999294,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,1,13,Australia,AU,South Australia,-34.952396,138.679612,EPSG:4326 +HUMAN_OBSERVATION,Samantha Vassella,1,,,2022,9,14,Australia,AU,Queensland,-27.485288,152.960262,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2023,11,3,Australia,AU,Queensland,-27.529075,153.103187,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,"Audio captured whilst on a spotlighting circuit, varying between 1.5 km to 3 km depending on track conditions, through a 20 ha block of predominantly Sedgy Riparian Woodland (EVC 198) in the Wombat State Forest, Lyonville.",2022,11,18,Australia,AU,Victoria,-37.39417,144.26559,EPSG:4326 +HUMAN_OBSERVATION,jofish,1,,"A solitary male, sitting in a wattle tree hidden amongst ivy. It was gone on my return the following day.",2020,8,28,Australia,AU,Victoria,-38.354595,146.017651,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Sport n rec picnic area,2024,11,9,Australia,AU,Queensland,-27.525653,153.092658,EPSG:4326 +HUMAN_OBSERVATION,Tracy W,1,,,2020,1,8,Australia,AU,Queensland,-27.489139,153.180773,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Male in Stringybark chasing female and Joey. Most likely same as last week. Female and Joey in the same tree,2020,10,21,Australia,AU,Queensland,-27.549701,153.059081,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area - middle,2023,11,3,Australia,AU,Queensland,-27.527486,153.092368,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,7,13,Australia,AU,Queensland,-27.516437,153.089412,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,28,Australia,AU,Queensland,-27.527343,153.108531,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near library and student admin bldg,2023,12,16,Australia,AU,Queensland,-27.526984,153.091372,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,FEMALE,Large mature female in River Red Gum,2023,8,26,Australia,AU,Victoria,-38.040326,144.223443,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2024,11,14,Australia,AU,South Australia,-35.00474,138.70605,EPSG:4326 +HUMAN_OBSERVATION,Stephen Csurhes,1,,,2022,8,15,Australia,AU,Queensland,-27.484672,152.956971,EPSG:4326 +HUMAN_OBSERVATION,theressa,1,,,2020,8,21,Australia,AU,Queensland,-27.165492,153.001114,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,8,17,Australia,AU,Queensland,-27.7993,151.588028,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Maisie B and joey,2024,7,14,Australia,AU,Queensland,-27.526673,153.090308,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,1,2,Australia,AU,Victoria,-37.584133,143.889362,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,5,20,Australia,AU,Queensland,-27.900518,153.369962,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,5,Australia,AU,Queensland,-27.528415,153.113472,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Female. Wet bottom. Rescued. Observed and rescued by Wendy Taylor. Submitted by Denise Shaw via email.,2023,8,27,Australia,AU,Queensland,-26.381908,151.821349,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3120 Confirmed as Koala scat by OWAD Environment,2022,11,12,Australia,AU,Queensland,-27.50038,152.1618,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,30,Australia,AU,Queensland,-27.402699,153.437708,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2023,9,6,Australia,AU,Queensland,-27.566708,153.098544,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,"Adult, Healthy. Female with Joey. Multiple koalas sighted here often. Observed by Tracey Litfin. Submitted via email.",2022,8,25,Australia,AU,Queensland,-26.034828,152.070734,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,8,17,Australia,AU,Queensland,-27.720137,151.529053,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Survey 1 LNSF FoN. Fresh and older markings on Grey Gum (BioNet transect 2021 known area),2023,7,11,Australia,AU,New South Wales,-30.55957,152.993279,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,3,9,Australia,AU,Queensland,-27.524501,153.092944,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery entrance gates,2023,12,24,Australia,AU,Queensland,-27.527365,153.091486,EPSG:4326 +HUMAN_OBSERVATION,Jackson Nugent,1,,,2021,4,8,Australia,AU,Queensland,-27.493519,153.405662,EPSG:4326 +HUMAN_OBSERVATION,laurenbeekman,1,,Mating,2021,11,26,Australia,AU,Queensland,-27.736883,153.189863,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Two koalas,2024,11,7,Australia,AU,Queensland,-27.948416,152.591213,EPSG:4326 +HUMAN_OBSERVATION,boodacious,1,,,2023,9,1,Australia,AU,New South Wales,-28.525666,153.000099,EPSG:4326 +HUMAN_OBSERVATION,Anton Citizen,1,,,2023,12,25,Australia,AU,Victoria,-37.560438,149.757613,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road near e block,2024,9,14,Australia,AU,Queensland,-27.52635,153.09062,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,Male koala Theo in back paddock southern tree corridor large Eucalyptus melliodora on fenceline.,2023,10,13,Australia,AU,Queensland,-27.414649,152.00395,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,1,31,Australia,AU,Queensland,-27.544772,153.058745,EPSG:4326 +HUMAN_OBSERVATION,maximto,1,,,2023,7,16,Australia,AU,Queensland,-27.492162,153.429795,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Andrew Struthers.,2021,9,24,Australia,AU,Queensland,-26.17693,151.691557,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi & joey,2023,12,5,Australia,AU,Queensland,-27.530273,153.103397,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside cleaners donga,2024,7,7,Australia,AU,Queensland,-27.526757,153.091677,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,6,16,Australia,AU,Queensland,-27.647707,153.07508,EPSG:4326 +HUMAN_OBSERVATION,Larissa Braz Sousa,1,,,2020,9,26,Australia,AU,South Australia,-35.010205,138.647177,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,10,7,Australia,AU,Queensland,-27.551863,153.057848,EPSG:4326 +HUMAN_OBSERVATION,fraserj09,1,,,2024,8,31,Australia,AU,South Australia,-37.728478,140.644505,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Hit by vehicle. Later euthanised. Observed by Wendy Taylor. Submitted via msg.,2023,10,14,Australia,AU,Queensland,-26.558542,151.855721,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Triangle area near front lower car parks Front of TAFE Cavendish Road Jacob Jnr?,2024,3,3,Australia,AU,Queensland,-27.525642,153.090148,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult female. Deceased with male joey. Joey was unviable and later euthanised. Observed by Wendy Taylor. Submitted via msg.,2024,6,30,Australia,AU,Queensland,-26.241664,151.89405,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,8,Australia,AU,Queensland,-27.527128,153.091681,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Stringybark,2020,4,28,Australia,AU,Queensland,-27.5501,153.048936,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"I think this is the female that had a joey, now alone. Boonah Rail Trail.",2024,10,10,Australia,AU,Queensland,-27.987692,152.67824,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,8,Australia,AU,Queensland,-27.526525,153.090658,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,12,26,Australia,AU,Victoria,-37.581877,143.888191,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,,"Male koala high in almost dead messmate stringybark, resting with little interest. Two koalas heard bellowing from valley below earlier",2022,9,20,Australia,AU,Victoria,-37.839637,144.275717,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,11,2,Australia,AU,Queensland,-27.527185,153.09203,EPSG:4326 +HUMAN_OBSERVATION,gram70,1,,,2023,2,19,Australia,AU,South Australia,-35.006028,138.719876,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"In E. tereticornis, Boonah Rail Trail",2023,9,28,Australia,AU,Queensland,-27.986047,152.677657,EPSG:4326 +HUMAN_OBSERVATION,lil_1,1,,,2023,12,15,Australia,AU,Victoria,-37.623812,144.094667,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,This is the 12 year old with a tiny baby. She had a sore eye but is now good again.,2023,9,3,Australia,AU,Queensland,-27.257541,152.044018,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lower wisteria car park,2024,5,19,Australia,AU,Queensland,-27.524336,153.092312,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A5 - Cindy,2023,7,21,Australia,AU,Queensland,-27.526733,153.108853,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,On the move!,2023,3,20,Australia,AU,Queensland,-27.528751,153.112428,EPSG:4326 +HUMAN_OBSERVATION,cintajac,1,,,2020,10,4,Australia,AU,South Australia,-34.831495,138.740454,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,Very sleepy.,2024,2,8,Australia,AU,New South Wales,-34.101714,150.822678,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum - olive green tag RIGHT ear - Becky or Mary - & joey,2023,11,3,Australia,AU,Queensland,-27.528193,153.111041,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Male. Healthy. Observed by Wendy Taylor. Submitted via email.,2020,5,27,Australia,AU,Queensland,-26.02242,151.832016,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2024,8,10,Australia,AU,South Australia,-34.905533,138.614917,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds,2024,11,9,Australia,AU,Queensland,-27.527889,153.092326,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,11,28,Australia,AU,Victoria,-38.671345,146.164231,EPSG:4326 +HUMAN_OBSERVATION,kazza-62,1,,Blake blue tag in left ear,2020,12,11,Australia,AU,Queensland,-27.540108,153.271056,EPSG:4326 +HUMAN_OBSERVATION,biocrew-mmc,1,,,2024,2,2,Australia,AU,Queensland,-27.552941,153.057658,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,11,19,Australia,AU,Queensland,-27.538579,153.0551,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,21,Australia,AU,Queensland,-27.528984,153.109727,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,21,Australia,AU,Queensland,-27.547118,153.073501,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland entrance,2024,3,9,Australia,AU,Queensland,-27.527207,153.092415,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,15,Australia,AU,South Australia,-34.890702,138.729884,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"Koala, with nickname Rambo, left ear yellow tag 0125.",2020,3,1,Australia,AU,Queensland,-27.510611,153.070208,EPSG:4326 +HUMAN_OBSERVATION,codyhochen,1,,,2023,11,17,Australia,AU,Queensland,-27.314587,153.001788,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,10,20,Australia,AU,Queensland,-27.717778,151.527803,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,,2024,10,22,Australia,AU,Victoria,-38.049833,141.541867,EPSG:4326 +HUMAN_OBSERVATION,G. L. Grammer,1,,,2023,9,6,Australia,AU,South Australia,-35.009026,138.760977,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2022,2,15,Australia,AU,Victoria,-38.131247,145.268511,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,7,Australia,AU,South Australia,-34.886485,138.732757,EPSG:4326 +HUMAN_OBSERVATION,Paula Rivera,1,FEMALE,"Appears to be a car hit, pulled off road by member of public.",2023,9,10,Australia,AU,Victoria,-38.13841,145.219026,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Benjamin Crowther. Sent via FB.,2021,10,8,Australia,AU,Queensland,-26.236603,151.963157,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Male. Hit by car and stuck in the grill overnight. Rescued. Observed by Wendy Taylor. Submitted via msg.,2024,7,28,Australia,AU,Queensland,-26.255161,151.98331,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,10,4,Australia,AU,New South Wales,-28.254032,153.377466,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,10,18,Australia,AU,Queensland,-27.799138,151.58632,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,"Koala ascending a ladder tree beside a large food tree. This is on the same day as the record (https://inaturalist.ala.org.au/observations/101368978) of a small koala at the base of this tree, but 17 hours earlier. LCA3034",2020,11,3,Australia,AU,Queensland,-27.832712,152.339059,EPSG:4326 +HUMAN_OBSERVATION,Colin Trainor,1,,,2023,9,16,Australia,AU,Queensland,-27.320211,151.685778,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,10,6,Australia,AU,Queensland,-27.39218,151.774795,EPSG:4326 +HUMAN_OBSERVATION,sam,1,FEMALE,,2022,7,20,Australia,AU,Queensland,-19.135865,146.842356,EPSG:4326 +HUMAN_OBSERVATION,Dale Taylor,1,,Koala napping in termite Nestor maybe having a protein fix!,2024,5,24,Australia,AU,Queensland,-27.528075,153.111488,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,13,Australia,AU,South Australia,-34.895051,138.724803,EPSG:4326 +HUMAN_OBSERVATION,Vireya Jacquard,1,,"Lots of koalas seen, but this was the only baby",2024,1,13,Australia,AU,Victoria,-38.318498,142.363568,EPSG:4326 +HUMAN_OBSERVATION,george_seagull,1,,Cape Otway.,2021,12,5,Australia,AU,Victoria,-38.81447,143.531506,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,FEMALE,Koala in tree only about 9 metres tall,2022,11,1,Australia,AU,Queensland,-28.001287,152.681459,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,MALE,"Strzelecki koala - male, heard calling from Blackwood, Acacia melanoxylon.",2024,2,11,Australia,AU,Victoria,-38.6718,146.164489,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,"I think this might be the female in this observation, https://inaturalist.ala.org.au/observations/135214142 and has kicked the joey out of home as the small koala was close by but in separate tree.",2022,9,26,Australia,AU,Queensland,-27.50879,153.067721,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2022,4,29,Australia,AU,Queensland,-27.513388,153.077695,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2021,1,4,Australia,AU,Victoria,-37.926202,147.72479,EPSG:4326 +HUMAN_OBSERVATION,oconnej,1,,,2024,8,21,Australia,AU,Queensland,-28.066336,152.610662,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in Eucalyptus tereticornis near Purga Creek. Scat collected.,2024,6,20,Australia,AU,Queensland,-27.873035,152.739122,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Local koala mum and joey keeping warm in the fading sunlight.,2023,8,19,Australia,AU,Queensland,-27.28446,153.000844,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Maisie and joey Outside nursery,2023,9,30,Australia,AU,Queensland,-27.527155,153.09161,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,Male koala in background (2 boobooks also). Diurnal counts: 25/7 3:30-5pm 1 observer 0 koalas.,2024,7,25,Australia,AU,Queensland,-27.82323,152.991402,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2023,10,10,Australia,AU,Queensland,-27.527403,153.107232,EPSG:4326 +HUMAN_OBSERVATION,Goshi,1,,Alive not squashed for once,2022,7,6,Australia,AU,Victoria,-38.430647,143.895883,EPSG:4326 +HUMAN_OBSERVATION,Peggy Newman,1,,,2021,11,16,Australia,AU,Victoria,-38.837042,143.515721,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey,2024,10,29,Australia,AU,Queensland,-27.527198,153.091692,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2023,10,4,Australia,AU,Queensland,-27.933157,152.958024,EPSG:4326 +HUMAN_OBSERVATION,masonvisser7,1,,,2024,9,22,Australia,AU,Queensland,-27.49478,153.401628,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,15,Australia,AU,Queensland,-27.544824,153.071771,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,1,30,Australia,AU,Queensland,-27.538361,153.05672,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2020,4,27,Australia,AU,South Australia,-34.953894,138.689375,EPSG:4326 +HUMAN_OBSERVATION,Greg Smith,1,,,2024,1,23,Australia,AU,South Australia,-34.906092,138.616861,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,5,17,Australia,AU,South Australia,-35.005839,138.657523,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi & joey,2024,10,15,Australia,AU,Queensland,-27.529964,153.103721,EPSG:4326 +HUMAN_OBSERVATION,Radar,1,MALE,,2023,10,20,Australia,AU,Queensland,-27.656246,153.158721,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2020,11,8,Australia,AU,South Australia,-34.973906,138.70904,EPSG:4326 +HUMAN_OBSERVATION,Nick Lambert,1,,,2022,10,29,Australia,AU,New South Wales,-30.428368,152.972394,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,4,12,Australia,AU,Queensland,-27.615042,151.556275,EPSG:4326 +HUMAN_OBSERVATION,tanny79,1,,,2024,6,13,Australia,AU,Queensland,-27.904068,153.371292,EPSG:4326 +HUMAN_OBSERVATION,rachael_p,1,,,2024,10,27,Australia,AU,Victoria,-38.830015,146.124331,EPSG:4326 +HUMAN_OBSERVATION,seamus-doherty,1,,,2020,4,25,Australia,AU,South Australia,-35.008354,138.643579,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park,2024,6,15,Australia,AU,Queensland,-27.524998,153.092046,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2023,9,9,Australia,AU,Queensland,-28.043766,152.91883,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,14,Australia,AU,Queensland,-27.526889,153.110459,EPSG:4326 +HUMAN_OBSERVATION,Sam,1,,,2024,10,12,Australia,AU,Queensland,-19.13088,146.86924,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,13,Australia,AU,Queensland,-27.544661,153.071308,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,12,8,Australia,AU,Queensland,-27.510413,153.08583,EPSG:4326 +HUMAN_OBSERVATION,Peter Lang,1,,,2024,6,21,Australia,AU,South Australia,-34.972195,138.646365,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,15,Australia,AU,Queensland,-27.527844,153.111519,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2021,4,22,Australia,AU,New South Wales,-31.82769,152.639594,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,Sitting in a Casurina,2024,10,19,Australia,AU,Queensland,-27.278022,153.003006,EPSG:4326 +HUMAN_OBSERVATION,nessler,1,,,2023,11,19,Australia,AU,Victoria,-38.395776,145.113838,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,9,26,Australia,AU,Queensland,-27.506595,153.079358,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,30,Australia,AU,Queensland,-27.544598,153.072551,EPSG:4326 +HUMAN_OBSERVATION,suewise,1,,,2021,3,13,Australia,AU,South Australia,-35.359036,138.756328,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,,2023,5,4,Australia,AU,Queensland,-27.547347,153.046692,EPSG:4326 +HUMAN_OBSERVATION,Lisette Mill,1,,Long term monitoring site. St Helens Biolink Project,2021,8,29,Australia,AU,Victoria,-38.235146,142.073912,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,19,Australia,AU,South Australia,-34.892458,138.722564,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2023,11,4,Australia,AU,South Australia,-34.871286,138.71748,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank muma and Bub,2022,10,5,Australia,AU,Queensland,-27.545768,153.07362,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds,2023,11,5,Australia,AU,Queensland,-27.528267,153.092252,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,11,9,Australia,AU,Queensland,-27.528411,153.113429,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park Cindy Crawford and joey,2023,10,21,Australia,AU,Queensland,-27.525004,153.092378,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - white tag LEFT ear - Bandit,2024,4,22,Australia,AU,Queensland,-27.528008,153.111696,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,2,2,Australia,AU,Queensland,-27.545312,153.071943,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania and Wisteria woodland - front and right (facing in),2023,7,28,Australia,AU,Queensland,-27.523991,153.093167,EPSG:4326 +HUMAN_OBSERVATION,lil_1,1,,Looks young and very healthy,2022,6,30,Australia,AU,Victoria,-37.622783,144.095122,EPSG:4326 +HUMAN_OBSERVATION,shaun_reay,1,,No tag. Same koala i sighted yesterday arvo,2020,6,13,Australia,AU,Queensland,-27.502704,153.228726,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,Mother and juvenile seen early in the morning. Went back in the afternoon with camera and found juvenile (pictured) with Mum a bit higher eating.,2024,5,22,Australia,AU,New South Wales,-34.100324,150.825771,EPSG:4326 +HUMAN_OBSERVATION,Elspeth Swan,1,,,2022,11,16,Australia,AU,Victoria,-37.633677,144.088587,EPSG:4326 +HUMAN_OBSERVATION,lisaw1012,1,,,2022,3,22,Australia,AU,Queensland,-27.652587,152.898912,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,9,Australia,AU,South Australia,-34.889934,138.728409,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2023,9,5,Australia,AU,Queensland,-28.218819,152.857899,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Juvenile. Healthy. Unknown sex. Observed by Desley Tratt. Forwarded by email.,2022,1,25,Australia,AU,Queensland,-26.52166,151.868462,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,27,Australia,AU,Queensland,-27.528782,153.104147,EPSG:4326 +HUMAN_OBSERVATION,Adrian M,1,,,2024,8,31,Australia,AU,Queensland,-27.52748,153.033357,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Lophostemon confertus.,2021,1,30,Australia,AU,Queensland,-27.545952,153.059008,EPSG:4326 +HUMAN_OBSERVATION,julietandbrian,1,,,2022,11,25,Australia,AU,Queensland,-27.348364,152.062721,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear - Bozo,2023,4,17,Australia,AU,Queensland,-27.526696,153.109806,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,10,3,Australia,AU,New South Wales,-33.076367,151.095017,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey,2023,11,4,Australia,AU,Queensland,-27.527194,153.091597,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2023,8,19,Australia,AU,South Australia,-34.903532,138.7029,EPSG:4326 +HUMAN_OBSERVATION,Marie Tarrant,1,,appears to have a chlamydial infection,2021,12,30,Australia,AU,Queensland,-27.249316,152.824358,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,10,11,Australia,AU,Queensland,-27.553317,153.052822,EPSG:4326 +HUMAN_OBSERVATION,molesworth-caveat-wildlife,1,MALE,,2023,9,17,Australia,AU,Victoria,-37.134068,145.522474,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Spotted Gum,2021,6,10,Australia,AU,Queensland,-27.549157,153.052148,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,2,15,Australia,AU,South Australia,-34.956653,138.693865,EPSG:4326 +HUMAN_OBSERVATION,margadelie,1,,,2022,11,5,Australia,AU,South Australia,-34.722427,138.941483,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2021,1,5,Australia,AU,Victoria,-37.925969,147.724747,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"This lady is still here. Sometimes I think she has moved on, but she just goes higher up for food where she is harder to find and see and comes back to this favorite fork in the tree. She's been managing gusts around 70km/hr and higher for the past 48 hours up there. She has been here since 11th June. Previous observations at: https://www.inaturalist.org/observations/171483133",2023,8,4,Australia,AU,Victoria,-37.87456,142.290962,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2022,5,1,Australia,AU,Queensland,-27.51038,153.069801,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2024,6,9,Australia,AU,Queensland,-27.54538,153.070845,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2022,9,30,Australia,AU,South Australia,-35.085758,138.675054,EPSG:4326 +HUMAN_OBSERVATION,hike4bugs,1,,,2023,2,16,Australia,AU,South Australia,-34.998154,138.634127,EPSG:4326 +HUMAN_OBSERVATION,Tim Hammer,1,,,2023,10,12,Australia,AU,South Australia,-35.779202,137.596283,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,28,Australia,AU,South Australia,-34.878637,138.777432,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,8,7,Australia,AU,Queensland,-27.55699,153.057277,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,3,16,Australia,AU,Queensland,-27.527073,153.091611,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Rear entrance to nursery Mother and joey,2024,10,5,Australia,AU,Queensland,-27.526994,153.093354,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,Same animal(s) reported 23/6/24 but in another tree about 200m away.,2024,7,25,Australia,AU,Queensland,-27.985785,152.677383,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,25,Australia,AU,South Australia,-34.904838,138.711119,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Released from care after dog attack. Observed by Wendy Taylor. Submitted via msg. Rescue record here: https://www.inaturalist.org/observations/243742891,2024,10,22,Australia,AU,Queensland,-26.622447,151.990485,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,With Joey in Tallowwood,2020,11,7,Australia,AU,Queensland,-27.547541,153.058164,EPSG:4326 +HUMAN_OBSERVATION,rachael_williams,1,,,2023,4,9,Australia,AU,Queensland,-27.501542,153.402467,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Healthy koala at Brown Lake in Straddie island Minjerribah.,2022,2,6,Australia,AU,Queensland,-27.491905,153.429937,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Top of woodland area near cleaners donga,2023,7,1,Australia,AU,Queensland,-27.527226,153.092086,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A... RIGHT ear - Cindy,2023,7,19,Australia,AU,Queensland,-27.527239,153.107365,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2024,8,5,Australia,AU,Queensland,-27.734904,153.102307,EPSG:4326 +HUMAN_OBSERVATION,Hanneke Nooren,1,,Forepaw with two opposable thumbs. 40m from creek culvert [LCA3219],2021,7,1,Australia,AU,Queensland,-27.550103,152.11458,EPSG:4326 +HUMAN_OBSERVATION,sarah_fir,1,,"With 1 baby, licking road",2024,8,8,Australia,AU,South Australia,-35.007956,138.619306,EPSG:4326 +HUMAN_OBSERVATION,Deb Oliver,1,,,2023,3,4,Australia,AU,Victoria,-37.562591,149.75794,EPSG:4326 +HUMAN_OBSERVATION,Martin Rady,1,,,2020,7,18,Australia,AU,Queensland,-27.508932,153.253854,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Spotted gum,2021,10,10,Australia,AU,Queensland,-27.528278,153.036669,EPSG:4326 +HUMAN_OBSERVATION,Andrew Rock,1,,"Koala, Point Halloran",2023,11,23,Australia,AU,Queensland,-27.568553,153.296547,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,31,Australia,AU,Queensland,-27.529925,153.104473,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2024,2,18,Australia,AU,New South Wales,-34.101612,150.822672,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala high in Eucalyptus tereticornis,2024,5,31,Australia,AU,Queensland,-27.960074,152.579692,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,21,Australia,AU,Queensland,-27.52922,153.105276,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,"Ear tag, No. 1111 ? yellow in left ear. Resting in a footpath Leopard Tree, Libidibia ferrea.",2022,10,11,Australia,AU,Queensland,-27.511139,153.069138,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,Little RJ high in the Eucalyptus microcorys on her own. Mum Robin is half way down the tree.,2023,11,16,Australia,AU,Queensland,-27.413657,152.003167,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,10,Australia,AU,Queensland,-27.543713,153.072188,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2023,10,20,Australia,AU,New South Wales,-31.440997,152.906783,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2024,6,2,Australia,AU,Queensland,-27.527282,153.092247,EPSG:4326 +HUMAN_OBSERVATION,phatbri,1,,,2024,1,28,Australia,AU,Victoria,-38.307199,145.290899,EPSG:4326 +HUMAN_OBSERVATION,kdoust,1,,Healthy boy!,2024,6,18,Australia,AU,Queensland,-27.339295,152.613558,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,3,3,Australia,AU,Queensland,-27.551845,153.057877,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Between E block and library,2023,11,18,Australia,AU,Queensland,-27.526458,153.090913,EPSG:4326 +HUMAN_OBSERVATION,Liam southwell,1,,no my photo was taken by a friend but as its a threatern species thought the observation was worth posting found at night crossing the road,2024,4,30,Australia,AU,New South Wales,-33.715948,150.575045,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,10,22,Australia,AU,Queensland,-27.54159,153.053778,EPSG:4326 +HUMAN_OBSERVATION,bushyj,1,,,2024,10,2,Australia,AU,New South Wales,-28.63748,153.63001,EPSG:4326 +HUMAN_OBSERVATION,ell_p,1,FEMALE,,2023,8,23,Australia,AU,Victoria,-38.836951,143.51434,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland Mother and joey,2024,10,7,Australia,AU,Queensland,-27.528496,153.092609,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Female - yellow tag right ear - Joey in pouch???,2023,5,7,Australia,AU,Queensland,-27.527278,153.091041,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,10,18,Australia,AU,Queensland,-27.529817,153.105169,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2024,7,8,Australia,AU,Queensland,-27.207006,153.074606,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2022,8,20,Australia,AU,Queensland,-27.989867,153.286341,EPSG:4326 +HUMAN_OBSERVATION,ljker2,1,,NEVER SEEN KOALAS HERE BEFORE!,2020,11,25,Australia,AU,Queensland,-27.777242,153.358993,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,"Sign (scat pellets and scratch marks in several trees, this feels hidden deep in foliage very close to the Mt Lindsay hwy",2023,1,10,Australia,AU,Queensland,-28.027191,152.967052,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,,2024,9,11,Australia,AU,New South Wales,-29.859599,150.563625,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery Mother and joey - seperate branches,2023,11,12,Australia,AU,Queensland,-27.527413,153.092177,EPSG:4326 +HUMAN_OBSERVATION,Kate Leslie,1,,Climbing up the eucalypt on the roadside,2022,8,31,Australia,AU,Victoria,-38.500008,142.977458,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown tree,2020,7,16,Australia,AU,Queensland,-27.550577,153.053591,EPSG:4326 +HUMAN_OBSERVATION,Ed Parker,1,,In Pooh Corner Bushland Reserve. Tagged and named Chandler.,2023,12,26,Australia,AU,Queensland,-27.572403,152.93367,EPSG:4326 +HUMAN_OBSERVATION,Nimzee,1,,1 x male Koala observed in Eucs on roadside reveg area,2022,7,29,Australia,AU,Victoria,-36.959197,145.79698,EPSG:4326 +HUMAN_OBSERVATION,rodneya63,1,,,2022,7,17,Australia,AU,Queensland,-27.917508,153.358488,EPSG:4326 +HUMAN_OBSERVATION,kentpip,1,,,2021,11,18,Australia,AU,Queensland,-27.760083,153.152696,EPSG:4326 +HUMAN_OBSERVATION,jasonjohn,1,,"Scat looks dark because of rain I think. Koalas seen in area previously, and it's right on the edge of one of the koala hubs",2024,6,17,Australia,AU,New South Wales,-30.406102,152.935895,EPSG:4326 +HUMAN_OBSERVATION,Si the guy,1,,,2023,10,12,Australia,AU,New South Wales,-29.780365,150.979297,EPSG:4326 +HUMAN_OBSERVATION,dawnborchardt,1,,,2020,11,8,Australia,AU,South Australia,-34.987368,138.739466,EPSG:4326 +HUMAN_OBSERVATION,ryan_fritsch,1,,,2023,9,17,Australia,AU,Queensland,-27.16535,152.939019,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - tag ? colour RIGHT ear,2023,7,25,Australia,AU,Queensland,-27.529486,153.112301,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,With Chlamydia,2024,9,1,Australia,AU,Queensland,-27.58959,152.261153,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey gum,2023,1,29,Australia,AU,Queensland,-27.545558,153.058384,EPSG:4326 +HUMAN_OBSERVATION,Graham Possingham,1,MALE,,2021,1,31,Australia,AU,South Australia,-35.164538,138.499198,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,11,4,Australia,AU,Queensland,-27.552799,153.054337,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,22,Australia,AU,Queensland,-27.527465,153.103762,EPSG:4326 +HUMAN_OBSERVATION,Macro.Enthusiast,1,,,2024,9,8,Australia,AU,South Australia,-34.908318,138.719301,EPSG:4326 +HUMAN_OBSERVATION,Fi,1,,,2024,3,30,Australia,AU,Victoria,-37.859437,144.25304,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2023,9,9,Australia,AU,Queensland,-27.542707,153.054047,EPSG:4326 +HUMAN_OBSERVATION,Montgomery Hall,1,,,2023,9,13,Australia,AU,Victoria,-37.08408,145.304973,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,In gully mating tree Male,2024,8,18,Australia,AU,Queensland,-27.527913,153.093916,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,1,28,Australia,AU,Victoria,-37.593442,143.879634,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,6,21,Australia,AU,Queensland,-27.551095,153.058103,EPSG:4326 +HUMAN_OBSERVATION,Jonathan Neumann,1,,,2024,3,17,Australia,AU,Victoria,-37.85976,144.190121,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Mottly,2022,11,28,Australia,AU,South Australia,-34.892216,138.715924,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,10,4,Australia,AU,Victoria,-37.750253,145.226805,EPSG:4326 +HUMAN_OBSERVATION,malandlynne,1,,Need to catch she has infected eyes,2021,11,15,Australia,AU,Queensland,-27.775233,153.143716,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"Yellow Tag no 0253, right ear. This Koala was 1st noticed scampering along the ground, tested 4 trees before settling on small skinny one and heading to the canopy",2020,6,24,Australia,AU,Queensland,-27.505804,153.082949,EPSG:4326 +HUMAN_OBSERVATION,Bilby Blooms,1,,A second Koala in as many days! This is a girl?,2024,11,19,Australia,AU,New South Wales,-31.579428,149.337937,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,11,7,Australia,AU,Victoria,-38.671342,146.16417,EPSG:4326 +HUMAN_OBSERVATION,jasons04,1,,,2024,1,15,Australia,AU,South Australia,-34.875801,135.673576,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Koala scat,2022,9,11,Australia,AU,Victoria,-37.604221,143.875158,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Spotted by Ranger,2024,2,24,Australia,AU,Queensland,-27.621928,152.901851,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,8,11,Australia,AU,Queensland,-27.527276,153.091474,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Juvenile. Female. Healthy. Observed by Wendy Taylor. Submitted via email.,2020,1,29,Australia,AU,Queensland,-26.182073,151.775294,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank muma,2022,9,19,Australia,AU,Queensland,-27.545647,153.073291,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2023,1,29,Australia,AU,Queensland,-26.379745,153.021791,EPSG:4326 +HUMAN_OBSERVATION,Richard Moore,1,,,2023,11,10,Australia,AU,Queensland,-19.123284,146.871469,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,,2022,10,7,Australia,AU,Queensland,-28.211244,152.865985,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,13,Australia,AU,Queensland,-27.544023,153.072481,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,MALE,,2022,11,5,Australia,AU,New South Wales,-33.114396,151.123077,EPSG:4326 +HUMAN_OBSERVATION,smestan,1,,,2022,11,11,Australia,AU,Queensland,-27.49679,153.39957,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,6,5,Australia,AU,South Australia,-34.903217,138.704877,EPSG:4326 +HUMAN_OBSERVATION,emj,1,,,2022,8,15,Australia,AU,Queensland,-27.302887,152.321992,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On Lophostemon confertus,2024,2,1,Australia,AU,Queensland,-27.911931,153.187769,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,2,24,Australia,AU,Queensland,-27.550991,153.057465,EPSG:4326 +HUMAN_OBSERVATION,Louise Elder,1,FEMALE,,2020,12,11,Australia,AU,New South Wales,-31.950154,152.354796,EPSG:4326 +HUMAN_OBSERVATION,Pete Woodall,1,,8781 QNC outing.,2022,6,26,Australia,AU,Queensland,-27.514766,153.083114,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Male. Rescued. Observed by Wendy Taylor. Submitted via email.,2022,1,5,Australia,AU,Queensland,-26.226805,151.845188,EPSG:4326 +HUMAN_OBSERVATION,deruy21,1,,,2023,9,27,Australia,AU,Queensland,-27.999745,152.424472,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,7,20,Australia,AU,Queensland,-27.614875,151.556258,EPSG:4326 +HUMAN_OBSERVATION,SJM McFish,1,,Blue tag in ear & was male,2023,7,17,Australia,AU,Victoria,-38.382167,145.283037,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,8,7,Australia,AU,New South Wales,-28.258305,153.400496,EPSG:4326 +HUMAN_OBSERVATION,Rusty,1,,,2024,8,13,Australia,AU,South Australia,-35.174651,138.51463,EPSG:4326 +HUMAN_OBSERVATION,Linda Sijpkes,1,,,2024,4,17,Australia,AU,Victoria,-38.378745,145.293791,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,8,23,Australia,AU,Victoria,-37.641822,143.901148,EPSG:4326 +HUMAN_OBSERVATION,lariza08,1,,,2023,5,24,Australia,AU,Victoria,-38.72773,143.689539,EPSG:4326 +HUMAN_OBSERVATION,ttsquid,1,,not exactly in the best position,2023,12,10,Australia,AU,Victoria,-38.321862,143.33962,EPSG:4326 +HUMAN_OBSERVATION,Sarah Sampson,1,,,2021,9,22,Australia,AU,Victoria,-38.477306,145.00929,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,,2024,11,3,Australia,AU,Victoria,-38.77155,143.65918,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near e block,2023,12,9,Australia,AU,Queensland,-27.52628,153.090726,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,9,Australia,AU,South Australia,-34.866658,138.728794,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Adult koala sighting - observed by Joanne Lingard for Toowoomba Koala & Wildlife Rescue,2022,11,15,Australia,AU,Queensland,-27.329305,151.862602,EPSG:4326 +HUMAN_OBSERVATION,Dominique Appay,1,,Koala sitting at the top of a gum tree in a community park.,2022,5,2,Australia,AU,Queensland,-27.500323,153.234235,EPSG:4326 +HUMAN_OBSERVATION,nhaass,1,,,2023,9,8,Australia,AU,Queensland,-27.510381,153.094654,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,6,13,Australia,AU,Victoria,-37.652778,143.925556,EPSG:4326 +HUMAN_OBSERVATION,jomeichii,1,,,2024,11,21,Australia,AU,Queensland,-27.552448,153.057175,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"KOALA NO 15 - Friends of the Canadian Corridor, (Victoria Australia) see Website - Newsletter Archive - Spikey News Issue 86, March 2022, on map, in ""Koala Sightings"" section.",2021,12,1,Australia,AU,Victoria,-37.60091,143.886759,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2023,12,30,Australia,AU,South Australia,-35.255391,138.557059,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via Msg,2024,5,25,Australia,AU,Queensland,-26.364023,151.819922,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum with joey - tiny extra hand/foot,2023,11,14,Australia,AU,Queensland,-27.530237,153.103265,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,8 koalas spotted. Mixed sexes and ages including a joey. Observed by Robyn Zackreson. Submitted via FB.,2024,7,26,Australia,AU,Queensland,-26.309911,151.783676,EPSG:4326 +HUMAN_OBSERVATION,Nicholas John Fisher,1,,,2023,12,22,Australia,AU,New South Wales,-28.864571,153.294467,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,"Large Male koala high in spotted gum. Bellowing was heard near Staughton Vale Rd dam at 6am, couldn't locate, likely had a long walk to the SE. Found by Janine",2023,12,22,Australia,AU,Victoria,-37.845313,144.286087,EPSG:4326 +HUMAN_OBSERVATION,Anne-Marie Griffin,1,,,2024,10,7,Australia,AU,New South Wales,-33.753478,149.408161,EPSG:4326 +HUMAN_OBSERVATION,ripperbewdymate,1,,,2024,10,13,Australia,AU,New South Wales,-34.751554,146.549972,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,9,9,Australia,AU,South Australia,-35.005982,138.638245,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,28,Australia,AU,Queensland,-27.525693,153.090428,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,20,Australia,AU,Queensland,-27.545824,153.073309,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,30,Australia,AU,South Australia,-34.891255,138.722483,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In a large E.tereticornis right near the town centre.,2022,3,12,Australia,AU,Queensland,-27.995104,152.681711,EPSG:4326 +HUMAN_OBSERVATION,David C. Simon,1,,,2023,10,3,Australia,AU,New South Wales,-33.568807,150.625466,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,2,21,Australia,AU,Queensland,-27.530508,153.103409,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,"Seen in Woogaroo forest, the name locals have given the busland between Brookwater and Camira",2024,4,29,Australia,AU,Queensland,-27.641814,152.896301,EPSG:4326 +HUMAN_OBSERVATION,clairemas0n,1,,,2020,10,5,Australia,AU,Queensland,-26.529895,151.812287,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,22,Australia,AU,South Australia,-34.871779,138.731998,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,Near front gate,2024,6,30,Australia,AU,Queensland,-27.32565,151.935487,EPSG:4326 +HUMAN_OBSERVATION,Rachel Devlin,1,,2nd koala of the day,2023,9,16,Australia,AU,Victoria,-38.26719,145.048507,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Gully near Aldi gates,2024,2,5,Australia,AU,Queensland,-27.526383,153.093056,EPSG:4326 +HUMAN_OBSERVATION,rordale,1,,,2022,11,23,Australia,AU,Queensland,-27.262855,152.063142,EPSG:4326 +HUMAN_OBSERVATION,Lukas Krug,1,MALE,,2024,1,26,Australia,AU,Victoria,-37.420822,144.398247,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,11,9,Australia,AU,Victoria,-37.624321,143.885657,EPSG:4326 +HUMAN_OBSERVATION,bi-wildlife,1,,,2023,12,2,Australia,AU,Queensland,-27.154603,152.395503,EPSG:4326 +HUMAN_OBSERVATION,jenaoide,1,,,2024,2,23,Australia,AU,Victoria,-37.647013,144.494639,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,1,14,Australia,AU,Queensland,-27.527041,153.091762,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2020,4,7,Australia,AU,South Australia,-34.914991,138.544678,EPSG:4326 +HUMAN_OBSERVATION,Matteo Grilli,1,,,2021,1,23,Australia,AU,Queensland,-27.436175,152.998426,EPSG:4326 +HUMAN_OBSERVATION,bigfoot123,1,,,2022,12,19,Australia,AU,Victoria,-37.923053,147.724128,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey,2023,11,19,Australia,AU,Queensland,-27.527193,153.091377,EPSG:4326 +HUMAN_OBSERVATION,tstayns,1,,,2020,12,23,Australia,AU,New South Wales,-34.753892,146.585403,EPSG:4326 +HUMAN_OBSERVATION,Hanneke Nooren,1,,LCA3106 Confirmed as koala scat by OWAD Environment,2022,10,1,Australia,AU,Queensland,-27.509882,152.145431,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,,2024,6,29,Australia,AU,Queensland,-27.400083,153.440941,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Female with joey. Healthy. Observed by Wendy Taylor. Submitted via email.,2020,1,29,Australia,AU,Queensland,-26.182073,151.775294,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Male. Healthy. Observed by Wendy Taylor. Submitted via email.,2020,12,5,Australia,AU,Queensland,-26.182073,151.775294,EPSG:4326 +HUMAN_OBSERVATION,Dominic Chaplin,1,,,2022,3,25,Australia,AU,Queensland,-18.831485,145.747505,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,9,8,Australia,AU,Queensland,-27.525912,153.092062,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Maisie and joey,2024,10,5,Australia,AU,Queensland,-27.527071,153.090652,EPSG:4326 +HUMAN_OBSERVATION,tantan01,1,,Near western fence line half way,2023,6,19,Australia,AU,Queensland,-26.106567,152.811052,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2022,1,27,Australia,AU,South Australia,-34.910651,138.713972,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery next to boom gate Mother and joey,2023,10,30,Australia,AU,Queensland,-27.527202,153.091207,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,Mother and Joey,2021,12,5,Australia,AU,Queensland,-27.529442,153.103563,EPSG:4326 +HUMAN_OBSERVATION,polyscias099,1,,,2023,9,11,Australia,AU,New South Wales,-34.107768,150.817448,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,,Male and female in same Acacia tree,2020,1,15,Australia,AU,Victoria,-38.552145,143.978617,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,5,5,Australia,AU,Queensland,-27.551321,153.058393,EPSG:4326 +HUMAN_OBSERVATION,terri1962,1,,,2023,5,12,Australia,AU,Queensland,-27.339295,152.925198,EPSG:4326 +HUMAN_OBSERVATION,meliswagg,1,,,2022,10,20,Australia,AU,South Australia,-35.027634,138.572128,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,29,Australia,AU,Queensland,-27.546005,153.074077,EPSG:4326 +HUMAN_OBSERVATION,Todd Deininger,1,,,2024,5,8,Australia,AU,Queensland,-27.275367,152.936296,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,11,Australia,AU,Queensland,-27.545709,153.073263,EPSG:4326 +HUMAN_OBSERVATION,coreyv,1,,,2023,8,23,Australia,AU,Victoria,-38.834767,143.512437,EPSG:4326 +HUMAN_OBSERVATION,nyxaero,1,,,2024,2,12,Australia,AU,South Australia,-35.121761,138.512178,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In mum’s tree near E block,2024,4,7,Australia,AU,Queensland,-27.526335,153.090868,EPSG:4326 +HUMAN_OBSERVATION,awmccutcheon,1,,After hearing it call was found resting in a Broad-leaved Paperbark.,2024,9,10,Australia,AU,New South Wales,-31.44589,152.926603,EPSG:4326 +HUMAN_OBSERVATION,Nic Van Zyl,1,,,2024,10,18,Australia,AU,Victoria,-38.318493,142.364912,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,18,Australia,AU,Queensland,-27.799312,151.561505,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2024,7,3,Australia,AU,Queensland,-27.527641,153.092426,EPSG:4326 +HUMAN_OBSERVATION,Anne-Marie Griffin,1,,,2024,10,7,Australia,AU,New South Wales,-33.753478,149.408161,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Opposite side of creek,2023,9,4,Australia,AU,Queensland,-27.526793,153.109151,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,8,11,Australia,AU,Queensland,-27.526986,153.090842,EPSG:4326 +HUMAN_OBSERVATION,noddyblue,1,,Koala?? Smelt of eucalyptus,2023,6,25,Australia,AU,Victoria,-36.84525,145.379822,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,12,4,Australia,AU,Victoria,-38.671112,146.163742,EPSG:4326 +HUMAN_OBSERVATION,sheeprustler,1,,,2021,12,5,Australia,AU,Victoria,-37.208679,148.269577,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2020,10,5,Australia,AU,Queensland,-27.540728,153.049177,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2024,1,27,Australia,AU,New South Wales,-34.101661,150.82263,EPSG:4326 +HUMAN_OBSERVATION,thecamberwellcarrot,1,,,2023,11,12,Australia,AU,Victoria,-38.353322,141.611878,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,19,Australia,AU,Queensland,-27.528083,153.093337,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,1,31,Australia,AU,Queensland,-27.549282,153.059222,EPSG:4326 +HUMAN_OBSERVATION,m_adw,1,,,2022,11,4,Australia,AU,Queensland,-27.647292,152.888383,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Healthy looking other than very slight possible conjunctivitis,2024,9,24,Australia,AU,Queensland,-27.716092,152.722445,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Observed in a Tallowwood tree.,2022,4,4,Australia,AU,New South Wales,-28.260409,153.399469,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear - not able to read tag # for ID but I call him Buster,2023,12,27,Australia,AU,Queensland,-27.529861,153.105494,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,3,11,Australia,AU,Queensland,-27.525184,153.048845,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,,2023,11,21,Australia,AU,New South Wales,-29.866838,150.601702,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Brush Box,2020,11,27,Australia,AU,Queensland,-27.547056,153.058142,EPSG:4326 +HUMAN_OBSERVATION,blakeg,1,,,2020,9,21,Australia,AU,Queensland,-27.979572,153.283943,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,,"In Snow Gum, Eucalyptus pauciflora",2024,11,4,Australia,AU,New South Wales,-31.540089,151.735675,EPSG:4326 +HUMAN_OBSERVATION,Radar,1,,,2022,8,24,Australia,AU,Queensland,-27.656584,153.158343,EPSG:4326 +HUMAN_OBSERVATION,Luke Halpin,1,,,2020,11,14,Australia,AU,Victoria,-38.842322,143.542388,EPSG:4326 +HUMAN_OBSERVATION,Margaret Carew,1,,,2024,9,6,Australia,AU,Victoria,-38.826311,145.996949,EPSG:4326 +HUMAN_OBSERVATION,camillad52,1,,,2024,3,24,Australia,AU,Victoria,-35.921924,145.673945,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2022,1,15,Australia,AU,Victoria,-38.671087,146.164642,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Koala seen, photo taken by Lesley with Mobile phone.",2021,11,16,Australia,AU,New South Wales,-28.276042,153.394944,EPSG:4326 +HUMAN_OBSERVATION,kates_view,1,,,2023,10,15,Australia,AU,Queensland,-27.888953,153.002686,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,5,26,Australia,AU,New South Wales,-28.254337,153.377048,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,,2022,2,19,Australia,AU,Queensland,-27.532615,153.102003,EPSG:4326 +HUMAN_OBSERVATION,Simone Luccini,1,,,2023,2,20,Australia,AU,South Australia,-35.103414,138.768595,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,24,Australia,AU,South Australia,-34.891771,138.722009,EPSG:4326 +HUMAN_OBSERVATION,David Tokar,1,,,2024,9,26,Australia,AU,Queensland,-19.120564,146.870895,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,Robin's joey we named RJ. Becoming independent from mum.,2023,11,1,Australia,AU,Queensland,-27.412453,152.003322,EPSG:4326 +HUMAN_OBSERVATION,delben,1,,,2024,6,7,Australia,AU,South Australia,-35.239947,138.809749,EPSG:4326 +HUMAN_OBSERVATION,robertlever,1,,,2022,11,12,Australia,AU,Queensland,-26.974237,152.079469,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2024,9,24,Australia,AU,New South Wales,-34.751878,146.546662,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,7,13,Australia,AU,Victoria,-38.671325,146.163895,EPSG:4326 +HUMAN_OBSERVATION,tatiara2023,1,,,2023,7,9,Australia,AU,Victoria,-38.748048,143.664715,EPSG:4326 +HUMAN_OBSERVATION,lisaandandrewr,1,,In one of the photos you can see a small dark bird pecking at the koalas rump. Not sure what bird it was or why it is doing g that? Does anyone know? Getting ticks or fur off the koala? Address of koala sighting actually Longwood-Ruffy Rd Longwood East 366. Correct latitude and longitude,2023,12,26,Australia,AU,Victoria,-36.869204,145.453795,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On E.acmenoides.,2024,6,30,Australia,AU,Queensland,-28.085875,152.510788,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In between Aldi gates and woodland entrance,2024,1,25,Australia,AU,Queensland,-27.527062,153.09279,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,MALE,Male in bloodwood,2021,11,2,Australia,AU,Queensland,-27.528483,153.049662,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Tristania & Wisteria Woodland Male- testicles visible,2023,11,4,Australia,AU,Queensland,-27.524107,153.093378,EPSG:4326 +HUMAN_OBSERVATION,elizabeth_21,1,,,2023,12,29,Australia,AU,Queensland,-27.359273,152.073532,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2024,10,2,Australia,AU,New South Wales,-33.133084,151.102276,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,11,3,Australia,AU,South Australia,-34.890978,138.72256,EPSG:4326 +HUMAN_OBSERVATION,Jean-Paul Boerekamps,1,,,2022,6,28,Australia,AU,Queensland,-27.490334,153.245467,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,7,21,Australia,AU,Queensland,-27.527141,153.091538,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,,2024,3,13,Australia,AU,Queensland,-27.531303,153.105331,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,10,15,Australia,AU,Queensland,-27.506895,153.085586,EPSG:4326 +HUMAN_OBSERVATION,BushLook,1,MALE,Adult male.,2022,11,9,Australia,AU,Victoria,-37.673795,143.887554,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,6,Australia,AU,Queensland,-27.525065,153.092429,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,8,18,Australia,AU,Queensland,-27.526321,153.090107,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2024,5,23,Australia,AU,New South Wales,-33.126803,151.24286,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,8,Australia,AU,Queensland,-27.530055,153.104513,EPSG:4326 +HUMAN_OBSERVATION,Alex Stuart,1,,,2023,2,13,Australia,AU,South Australia,-34.901192,138.711272,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2021,1,6,Australia,AU,South Australia,-34.872283,138.718557,EPSG:4326 +HUMAN_OBSERVATION,lisaandandrewr,1,,,2023,10,19,Australia,AU,Victoria,-36.868305,145.454987,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland - in gully,2024,3,9,Australia,AU,Queensland,-27.527642,153.092813,EPSG:4326 +HUMAN_OBSERVATION,spongeman,1,,,2022,4,5,Australia,AU,Australian Capital Territory,-35.46,148.91,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to Woodland,2024,1,2,Australia,AU,Queensland,-27.527242,153.092493,EPSG:4326 +HUMAN_OBSERVATION,maudieo,1,,,2023,1,25,Australia,AU,Queensland,-27.260139,152.060378,EPSG:4326 +HUMAN_OBSERVATION,johjesse,1,,Mum & baby,2024,2,13,Australia,AU,Queensland,-27.300092,152.042192,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2024,6,28,Australia,AU,New South Wales,-34.101905,150.824722,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Juvenile koala sleeping in the top of a Brush Box tree in the rain.,2021,10,12,Australia,AU,New South Wales,-28.257567,153.400562,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,new muma,2022,11,25,Australia,AU,Queensland,-27.54603,153.073951,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,,2023,5,18,Australia,AU,Queensland,-28.211702,152.865697,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,,Female & joey on the roadside in a tree.,2021,11,22,Australia,AU,South Australia,-35.059373,138.58027,EPSG:4326 +HUMAN_OBSERVATION,enekoazkue,1,,,2023,12,10,Australia,AU,New South Wales,-28.637345,153.629249,EPSG:4326 +HUMAN_OBSERVATION,anyathailand,1,,,2022,7,14,Australia,AU,Victoria,-38.666529,143.858882,EPSG:4326 +HUMAN_OBSERVATION,a_briggs,1,,Sitting half way up a gum tree,2023,11,26,Australia,AU,Queensland,-27.512871,153.078992,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,,This appears to be a male koala. The first koala seen on this property for 7 months.,2022,6,2,Australia,AU,Queensland,-28.173872,152.906577,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Ear tagged. Adult. Unknown sex. Healthy. Observed by Danny Arnold. Forwarded by email.,2021,10,15,Australia,AU,Queensland,-26.542001,151.852372,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Kaylene Belford. Submitted by Denise Shaw.,2022,9,20,Australia,AU,Queensland,-26.585584,151.743672,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,8,Australia,AU,South Australia,-34.885997,138.733504,EPSG:4326 +HUMAN_OBSERVATION,lillianclementine,1,,,2023,11,24,Australia,AU,New South Wales,-30.294112,153.125149,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside cleaners donga,2024,6,9,Australia,AU,Queensland,-27.526959,153.091835,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,fresh scat,2021,8,23,Australia,AU,Victoria,-37.590268,143.902979,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2024,9,10,Australia,AU,Queensland,-27.528046,153.092464,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,,2022,12,17,Australia,AU,Queensland,-27.528943,153.107263,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of admin building,2023,6,11,Australia,AU,Queensland,-27.526842,153.091831,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,8,10,Australia,AU,Queensland,-27.523981,153.093042,EPSG:4326 +HUMAN_OBSERVATION,duke_n,1,,,2022,7,6,Australia,AU,Victoria,-37.290881,144.31122,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Male in E.teriticornis,2020,10,30,Australia,AU,Queensland,-27.527878,153.051009,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,14,Australia,AU,Queensland,-27.528997,153.11091,EPSG:4326 +HUMAN_OBSERVATION,Penelope Lind,1,,,2022,2,13,Australia,AU,Queensland,-27.441749,152.924682,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,16,Australia,AU,Queensland,-27.527279,153.091557,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,11,Australia,AU,Queensland,-27.542689,153.073379,EPSG:4326 +HUMAN_OBSERVATION,Peter Crowcroft,1,,"V healthy - female? Great poser - look left, look right, middle distance, down the lens.",2021,7,15,Australia,AU,Victoria,-38.77901,143.664862,EPSG:4326 +HUMAN_OBSERVATION,larivera,1,,,2022,11,18,Australia,AU,Victoria,-38.320109,142.364894,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Photos taken by Monica at Highland Park, Gold Coast, Queensland, Australia.",2020,9,28,Australia,AU,Queensland,-28.012574,153.326691,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,8,1,Australia,AU,Queensland,-27.703176,153.192068,EPSG:4326 +HUMAN_OBSERVATION,Graeme,1,,,2022,12,30,Australia,AU,Victoria,-38.682414,146.110503,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Female with joey. Healthy. Observed by Dianne Prideaux. Submitted via email.,2022,4,1,Australia,AU,Queensland,-26.177143,151.692055,EPSG:4326 +HUMAN_OBSERVATION,Kate Leslie,1,,,2024,5,12,Australia,AU,Victoria,-38.471392,142.860225,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum - stained ? dirty bum - & joey up high,2024,3,8,Australia,AU,Queensland,-27.529486,153.10378,EPSG:4326 +HUMAN_OBSERVATION,Owen Gale,1,,"Female with Joey on road, moved off road safely.",2021,9,19,Australia,AU,South Australia,-34.933272,138.734756,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey again in Tallowwood,2021,6,17,Australia,AU,Queensland,-27.551588,153.057313,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2022,5,22,Australia,AU,New South Wales,-34.756202,146.569141,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,2,25,Australia,AU,Queensland,-27.524894,153.093222,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland Mother and joey,2024,10,12,Australia,AU,Queensland,-27.527959,153.092364,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,8,29,Australia,AU,Queensland,-27.548428,153.059058,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Koala in tree.,2024,9,29,Australia,AU,Queensland,-27.284072,152.999596,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2024,3,19,Australia,AU,Queensland,-27.530019,153.103736,EPSG:4326 +HUMAN_OBSERVATION,Karin Cox,1,,,2021,10,31,Australia,AU,Queensland,-27.535901,153.055499,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - red tag A5 RIGHT ear - Cindy,2023,10,31,Australia,AU,Queensland,-27.52711,153.108257,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near sport n Rec Cindy Crawford but no joey?,2023,10,11,Australia,AU,Queensland,-27.525729,153.092125,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,Droppings under E.tereticornis near where koalas sighted.,2023,8,21,Australia,AU,Queensland,-27.824263,152.992447,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,MALE,,2020,10,15,Australia,AU,Victoria,-38.175529,145.132158,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,21,Australia,AU,South Australia,-34.893822,138.712801,EPSG:4326 +HUMAN_OBSERVATION,kaharris03,1,MALE,,2024,6,3,Australia,AU,New South Wales,-29.019583,153.280619,EPSG:4326 +HUMAN_OBSERVATION,nsgwilliams,1,,,2024,3,31,Australia,AU,Victoria,-38.401028,145.10025,EPSG:4326 +HUMAN_OBSERVATION,HR Nature,1,FEMALE,Female with large joey,2024,10,1,Australia,AU,Queensland,-27.816931,153.104141,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,19,Australia,AU,Queensland,-27.527828,153.103061,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,K block Male,2024,9,28,Australia,AU,Queensland,-27.525814,153.090961,EPSG:4326 +HUMAN_OBSERVATION,footesea,1,,Koala #2 from the Pittsworth Koala Count (School Road); sex unknown.,2022,11,19,Australia,AU,Queensland,-27.801395,151.56102,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,8,28,Australia,AU,Queensland,-27.918719,153.375956,EPSG:4326 +HUMAN_OBSERVATION,Mick Bettanin,1,,,2023,7,14,Australia,AU,Victoria,-38.824178,146.131272,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3134 Female with back-riding young (Photo: Bob Brown),2022,9,19,Australia,AU,Queensland,-27.53118,152.1833,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,Small koala eating,2020,1,27,Australia,AU,Queensland,-27.546135,153.068539,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2023,4,16,Australia,AU,Victoria,-38.341217,142.631937,EPSG:4326 +HUMAN_OBSERVATION,sdoug7405,1,,,2020,12,31,Australia,AU,Queensland,-27.424828,153.51701,EPSG:4326 +HUMAN_OBSERVATION,thammbamm,1,,,2023,12,10,Australia,AU,Victoria,-38.148803,147.083446,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Joey, with mum koala, captured on Wildlife Camera.",2022,10,27,Australia,AU,New South Wales,-28.260555,153.399708,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Spotted gum,2021,5,6,Australia,AU,Queensland,-27.525728,153.048223,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3128 Female with back-riding young (Photo: Bob Brown),2022,10,6,Australia,AU,Queensland,-27.53118,152.1833,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,6,Australia,AU,Queensland,-27.525131,153.093665,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,,2024,1,14,Australia,AU,Victoria,-37.795548,141.477305,EPSG:4326 +HUMAN_OBSERVATION,johjesse,1,,Juvenile/young koala,2024,10,29,Australia,AU,Queensland,-27.300324,152.042209,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,FEMALE,,2023,12,21,Australia,AU,New South Wales,-34.101886,150.822179,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,11,5,Australia,AU,Queensland,-27.529583,153.104866,EPSG:4326 +HUMAN_OBSERVATION,theressa,1,,,2020,10,26,Australia,AU,Queensland,-27.165158,153.001603,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,11,26,Australia,AU,Queensland,-27.544136,153.072189,EPSG:4326 +HUMAN_OBSERVATION,ecologykatie,1,,,2024,11,1,Australia,AU,Queensland,-27.093644,152.70288,EPSG:4326 +HUMAN_OBSERVATION,Nathaniel Bormans,1,,,2024,9,23,Australia,AU,South Australia,-34.903003,138.701937,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,Reported by resident via FB. Advised to seek treatment due to possible eye infection.,2021,10,23,Australia,AU,Queensland,-27.3191,151.9474,EPSG:4326 +HUMAN_OBSERVATION,mocmrp,1,,Up a burnt eucalyptus after bushfire.,2020,1,17,Australia,AU,South Australia,-35.701956,137.196223,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,10,4,Australia,AU,Victoria,-38.671525,146.164122,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"IN a Brush Box same tree and a couple of metres below this Koala, https://inaturalist.ala.org.au/observations/195897297",2024,1,6,Australia,AU,Queensland,-27.543522,153.072582,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2023,5,11,Australia,AU,Victoria,-38.374195,145.314597,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,6,21,Australia,AU,Queensland,-27.550012,153.053338,EPSG:4326 +HUMAN_OBSERVATION,georgia22banjo,1,,,2023,3,19,Australia,AU,Queensland,-27.394178,153.439072,EPSG:4326 +HUMAN_OBSERVATION,julie,1,,,2023,7,5,Australia,AU,Queensland,-27.689332,153.114963,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2024,11,5,Australia,AU,Victoria,-38.382953,145.273063,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2022,11,25,Australia,AU,Queensland,-27.711354,151.536083,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,"Photo credit: Ben, Karana Downs and Mt Crosby Residents Anstead Bushland Reserve",2020,4,10,Australia,AU,Queensland,-27.542516,152.859615,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,10,12,Australia,AU,New South Wales,-28.26152,153.397818,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Deceased. Motor vehicle incident. Observed by Wendy Taylor. Submitted via msg.,2024,10,27,Australia,AU,Queensland,-26.39493,151.819833,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,FEMALE,Mother and baby,2022,11,3,Australia,AU,Queensland,-27.551722,153.057525,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2022,5,22,Australia,AU,New South Wales,-34.755821,146.570236,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Red Mahogany,2020,2,25,Australia,AU,Queensland,-27.550742,153.058004,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,Between 1 to 3 seen every day before the drought of 2019/2020 only seen occasional now,2021,3,29,Australia,AU,Queensland,-27.734433,153.102325,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,12,14,Australia,AU,Queensland,-27.948807,153.211957,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2021,9,24,Australia,AU,New South Wales,-33.076764,151.095292,EPSG:4326 +HUMAN_OBSERVATION,Max,1,,,2023,5,27,Australia,AU,Queensland,-27.260153,152.05992,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to cleaners donga,2024,8,18,Australia,AU,Queensland,-27.526895,153.091726,EPSG:4326 +HUMAN_OBSERVATION,sonnie_f,1,,,2023,12,8,Australia,AU,Queensland,-19.105785,146.866043,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - tag RIGHT ear - not sure of colour,2023,7,28,Australia,AU,Queensland,-27.528889,153.111767,EPSG:4326 +HUMAN_OBSERVATION,Peter Lang,1,,At base of Blue Gum (*Eucalyptus leucoxylon*) and one in fork on on trunk.,2022,10,1,Australia,AU,South Australia,-34.976412,138.653884,EPSG:4326 +HUMAN_OBSERVATION,Chris Burwell,1,,,2023,11,16,Australia,AU,Queensland,-28.193347,153.187472,EPSG:4326 +HUMAN_OBSERVATION,luckychii,1,,,2022,7,11,Australia,AU,South Australia,-34.899652,138.702857,EPSG:4326 +HUMAN_OBSERVATION,Aalbert Rebergen,1,,,2023,8,24,Australia,AU,Victoria,-38.318946,142.363478,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near E block,2024,3,31,Australia,AU,Queensland,-27.52642,153.09096,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Car strike,2021,11,23,Australia,AU,Victoria,-37.644661,143.891295,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,E.tereticornis,2022,9,21,Australia,AU,Queensland,-27.532382,153.036541,EPSG:4326 +HUMAN_OBSERVATION,Penny Taylor,1,,Healthy male. Photos by Kerrin Taylor.,2023,12,15,Australia,AU,Queensland,-20.363394,148.337468,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Male koala,2020,8,13,Australia,AU,New South Wales,-28.253965,153.377437,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2022,6,12,Australia,AU,Victoria,-38.129441,145.263377,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,4,13,Australia,AU,Queensland,-27.527331,153.091378,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,16,Australia,AU,Queensland,-27.812939,151.551622,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,6,Australia,AU,Queensland,-27.506432,153.07839,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,6,Australia,AU,South Australia,-34.829087,138.740371,EPSG:4326 +HUMAN_OBSERVATION,Heath Hunter,1,,,2023,3,5,Australia,AU,South Australia,-34.94844,138.683601,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2022,2,15,Australia,AU,Queensland,-27.477119,152.924098,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,6,3,Australia,AU,Queensland,-27.551658,153.056157,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,11,7,Australia,AU,Queensland,-27.258905,152.045341,EPSG:4326 +HUMAN_OBSERVATION,fleursie,1,,,2022,8,8,Australia,AU,Queensland,-27.489847,153.245362,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,5,12,Australia,AU,Queensland,-27.528347,153.093137,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In Eucalyptus tereticornis,2021,8,5,Australia,AU,Queensland,-27.542402,153.072583,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,2nd koala same area,2024,2,19,Australia,AU,Victoria,-37.596488,143.874876,EPSG:4326 +HUMAN_OBSERVATION,thomasnelson,1,,,2020,2,9,Australia,AU,South Australia,-35.02833,138.632447,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Top of outside nursery area,2023,10,29,Australia,AU,Queensland,-27.527155,153.091807,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In Cindy crawfords tree in wisteria car park Male - scent gland visible Been in a fight recently? Patch of fur missing,2023,12,16,Australia,AU,Queensland,-27.524966,153.092424,EPSG:4326 +HUMAN_OBSERVATION,robdogwoof,1,,Happy to see koalas in the Mountain Grey Gums in the forests around Wonyip.,2023,1,7,Australia,AU,Victoria,-38.557064,146.396288,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,28,Australia,AU,Queensland,-27.698725,151.615321,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,10,12,Australia,AU,South Australia,-34.891917,138.718712,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,2,26,Australia,AU,Queensland,-27.54945,153.053611,EPSG:4326 +HUMAN_OBSERVATION,marieschovsbo,1,,,2023,7,12,Australia,AU,Queensland,-19.142249,146.831449,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2024,3,12,Australia,AU,Queensland,-27.570433,152.103042,EPSG:4326 +HUMAN_OBSERVATION,@WA_Botanist,1,,,2023,1,7,Australia,AU,Victoria,-36.360278,146.703611,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,In Eucalyptus nicholii,2021,3,14,Australia,AU,Victoria,-38.671283,146.164183,EPSG:4326 +HUMAN_OBSERVATION,whittie,1,,,2023,10,22,Australia,AU,South Australia,-35.004625,138.658788,EPSG:4326 +HUMAN_OBSERVATION,Ben McBurney,1,,,2023,10,30,Australia,AU,Queensland,-27.510907,153.082466,EPSG:4326 +HUMAN_OBSERVATION,Isaac Clarey,1,,,2023,6,25,Australia,AU,Victoria,-38.180159,141.464065,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,8,26,Australia,AU,Queensland,-27.255695,152.046291,EPSG:4326 +HUMAN_OBSERVATION,emilyp01,1,FEMALE,,2024,4,19,Australia,AU,Victoria,-38.805878,143.535645,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,10,Australia,AU,Queensland,-27.547078,153.073429,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,MALE,"Same male koala going by the nose, viewed through binoculars who is frequently seen around Peppermint Circuit (East side of reserve).",2022,1,17,Australia,AU,Victoria,-38.18085,145.12766,EPSG:4326 +HUMAN_OBSERVATION,johnk_wang,1,,,2023,7,1,Australia,AU,Victoria,-38.483938,145.262742,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2022,10,16,Australia,AU,South Australia,-35.035222,138.570949,EPSG:4326 +HUMAN_OBSERVATION,Darren Bowman,1,,,2024,4,26,Australia,AU,Victoria,-37.796177,143.750685,EPSG:4326 +HUMAN_OBSERVATION,Owen Cook,1,MALE,,2022,11,13,Australia,AU,Victoria,-37.861426,144.135181,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male koala mid in manna gum 270m East of female location found yesterday,2024,4,28,Australia,AU,Victoria,-37.849417,144.289159,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2021,12,6,Australia,AU,New South Wales,-33.076684,151.095379,EPSG:4326 +HUMAN_OBSERVATION,kenilworthfreerange,1,MALE,,2023,12,4,Australia,AU,Queensland,-26.645435,152.648396,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,21,Australia,AU,South Australia,-34.886509,138.730167,EPSG:4326 +HUMAN_OBSERVATION,kittsw,1,,Two koalas in nearby trees. Possibly related or a pair?,2021,12,31,Australia,AU,South Australia,-34.866338,138.655767,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,20,Australia,AU,South Australia,-34.873809,138.71426,EPSG:4326 +HUMAN_OBSERVATION,cassboughtablock,1,,,2024,10,6,Australia,AU,Queensland,-27.848554,153.096401,EPSG:4326 +HUMAN_OBSERVATION,lil_1,1,,,2022,2,8,Australia,AU,Victoria,-37.624162,144.093933,EPSG:4326 +HUMAN_OBSERVATION,duke_n,1,,,2021,11,20,Australia,AU,New South Wales,-32.204145,151.769516,EPSG:4326 +HUMAN_OBSERVATION,Graham Armstrong,1,,,2022,9,1,Australia,AU,South Australia,-34.940519,138.706376,EPSG:4326 +HUMAN_OBSERVATION,chrisglassock,1,,,2022,9,25,Australia,AU,Victoria,-38.537155,145.763337,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2022,10,9,Australia,AU,Queensland,-28.219507,152.868356,EPSG:4326 +HUMAN_OBSERVATION,caitlin,1,,near dog park,2023,4,14,Australia,AU,Queensland,-27.247098,152.419728,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,water tank muma red tag 3143 female,2022,12,31,Australia,AU,Queensland,-27.545739,153.073748,EPSG:4326 +HUMAN_OBSERVATION,Chochadventuring,1,,,2023,1,19,Australia,AU,Victoria,-38.779051,143.665121,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Julian Lehnert (Journalist at Burnett Today Newspaper). Submitted via email.,2023,3,16,Australia,AU,Queensland,-26.678302,151.997394,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,1,5,Australia,AU,South Australia,-34.865315,138.656903,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,5,8,Australia,AU,Queensland,-27.550293,153.063312,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"We have got a bush baby at the covenant. I heard a male grunting in the same general area, but didn't see him.",2023,11,27,Australia,AU,Victoria,-37.793532,141.476932,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,2 x Adults. Unknown sex. Healthy. Observed by Andrew Struthers.,2021,9,24,Australia,AU,Queensland,-26.179395,151.689454,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland Male yellow tag left ear,2024,7,14,Australia,AU,Queensland,-27.528251,153.093266,EPSG:4326 +HUMAN_OBSERVATION,Zoë Davis,1,,,2022,8,27,Australia,AU,Victoria,-38.311822,145.301543,EPSG:4326 +HUMAN_OBSERVATION,mparekh,1,,,2023,1,3,Australia,AU,Victoria,-37.475005,144.470477,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,10,30,Australia,AU,Queensland,-26.829613,152.714507,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,MALE,,2023,3,26,Australia,AU,Queensland,-27.284861,153.001239,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,,2024,9,17,Australia,AU,New South Wales,-34.770283,146.597472,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,4,29,Australia,AU,Victoria,-38.671253,146.163728,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Joey with mum below in Tallowwood,2021,10,13,Australia,AU,Queensland,-27.551572,153.057567,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,10,18,Australia,AU,South Australia,-34.891729,138.718305,EPSG:4326 +HUMAN_OBSERVATION,Ryan Harvey,1,,"Found while driving, looked like a younger animal, very clean",2021,12,13,Australia,AU,New South Wales,-31.908772,152.379579,EPSG:4326 +HUMAN_OBSERVATION,peter-,1,,,2023,11,5,Australia,AU,Queensland,-28.203106,152.897078,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Same koala as the last 2 days observations. One if it stretching its neck, did not bellow or make any sign.",2021,1,6,Australia,AU,New South Wales,-28.252489,153.375144,EPSG:4326 +HUMAN_OBSERVATION,davidvrussell59,1,,,2023,3,28,Australia,AU,Victoria,-36.940346,145.538112,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - red tag A18 RIGHT ear - Campo,2023,9,5,Australia,AU,Queensland,-27.527891,153.111517,EPSG:4326 +HUMAN_OBSERVATION,amychasingbushstars,1,,,2023,8,7,Australia,AU,New South Wales,-31.460873,152.926743,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,1,28,Australia,AU,Queensland,-27.597017,151.889236,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,"Yes, he/she is dribbling!! Caught asleep and dribble on chin and on tree branch. Too much!",2023,12,21,Australia,AU,South Australia,-34.889936,138.732501,EPSG:4326 +HUMAN_OBSERVATION,Emma H.,1,,,2024,8,26,Australia,AU,Queensland,-19.127242,146.868331,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,1,2,Australia,AU,Queensland,-27.527191,153.092506,EPSG:4326 +HUMAN_OBSERVATION,Jarrah Simao,1,,,2021,6,13,Australia,AU,Victoria,-38.171057,145.171431,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,10,16,Australia,AU,Queensland,-26.163312,151.757442,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,2,17,Australia,AU,Queensland,-26.363167,151.820706,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland next to Seton College,2024,8,3,Australia,AU,Queensland,-27.528459,153.092404,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,Observed by Joanne.,2022,10,19,Australia,AU,New South Wales,-28.266404,153.396811,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,8,Australia,AU,Queensland,-27.527244,153.091537,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,,2021,8,24,Australia,AU,Queensland,-28.211403,152.865934,EPSG:4326 +HUMAN_OBSERVATION,thismiaman,1,,,2024,2,18,Australia,AU,South Australia,-35.775497,137.319488,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.778229,143.617237,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - yellow tag RIGHT ear,2024,10,5,Australia,AU,Queensland,-27.527698,153.11001,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,6,Australia,AU,Queensland,-27.529854,153.103325,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Memerambi Springs (nursery). Submitted by Denise Shaw via email.,2022,9,18,Australia,AU,Queensland,-26.447243,151.804143,EPSG:4326 +HUMAN_OBSERVATION,secret93,1,,,2024,7,3,Australia,AU,Victoria,-36.830208,145.449142,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Mum and joey. Joey can be seen holding on to Mum's stomach as she climbed down.,2023,7,30,Australia,AU,Queensland,-27.284331,153.000786,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Mum and her joey - if you zoom in you can see a paw sticking out. This photo was taken in the afternoon. I saw her earlier in the morning in the same tree just a little lower appearing to be enjoying the morning sun. When I returned in the afternoon Mum & joey had mover further up branch into shadier foliage. 2nd photo was taken on phone in the morning.,2023,7,22,Australia,AU,Queensland,-27.284711,153.000538,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2024,2,14,Australia,AU,South Australia,-35.763601,136.882026,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"KOALA NO 1 - Friends of the Canadian Corridor, (Victoria Australia) see Website - Newsletter Archive - Spikey News Issue 86, March 2022, on map, in ""Koala Sightings"" section.",2021,10,1,Australia,AU,Victoria,-37.599065,143.876783,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,11,5,Australia,AU,Queensland,-27.413588,152.003053,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Monkey rope covered Paperbark,2020,7,30,Australia,AU,Queensland,-27.551373,153.058321,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,FEMALE,"Female with joey. Mum has clean rump, but infected right eye (could blink, but couldn't open properly, and was brown around eye).",2021,9,7,Australia,AU,Queensland,-27.457853,152.400926,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,,,2022,10,5,Australia,AU,Queensland,-27.492509,153.430117,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2023,10,30,Australia,AU,Queensland,-27.530245,153.103275,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland - male yellow tag left ear visible,2024,5,19,Australia,AU,Queensland,-27.527671,153.092548,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,10,13,Australia,AU,Queensland,-27.551471,153.057506,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,,2024,9,2,Australia,AU,Victoria,-37.749545,142.022098,EPSG:4326 +HUMAN_OBSERVATION,Annabelle Watts; Justin Watts,1,,,2023,10,14,Australia,AU,Victoria,-38.384102,145.302503,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road 2 koalas same tree,2024,6,9,Australia,AU,Queensland,-27.527442,153.090894,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,3,20,Australia,AU,Queensland,-27.530201,153.10344,EPSG:4326 +HUMAN_OBSERVATION,leito19,1,,,2024,3,31,Australia,AU,Victoria,-38.383798,145.312516,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,10,10,Australia,AU,Queensland,-27.528139,153.110267,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,5,3,Australia,AU,Queensland,-27.546376,153.072977,EPSG:4326 +HUMAN_OBSERVATION,Ed Parker,1,,"This individual, named Lady Jane, was released at Pooh Corner Bushland Reserve on 15-Dec 2022. She was observed on 24-Aug-2024 with her second joey. Her first joey, Glenda, was first observed outside the pouch on 20-Jun-2023 and now resides in Wacol Bushlands where she moved to in Jan 2024.",2024,8,24,Australia,AU,Queensland,-27.5716,152.93623,EPSG:4326 +HUMAN_OBSERVATION,rdgray,1,,,2022,4,2,Australia,AU,Victoria,-38.7463,143.552855,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,8,7,Australia,AU,South Australia,-34.903012,138.703053,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Koala markings. FoN Moyles Rd East survey 1,2023,10,22,Australia,AU,New South Wales,-30.533482,153.003494,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds Mother and joey,2024,10,7,Australia,AU,Queensland,-27.52841,153.092265,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2020,1,1,Australia,AU,Victoria,-37.926106,147.724969,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,9,12,Australia,AU,Queensland,-27.823538,152.993938,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Brush Box,2024,6,23,Australia,AU,Queensland,-27.528269,153.034016,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark with very young Joey,2020,11,3,Australia,AU,Queensland,-27.550337,153.048846,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery gates,2023,6,17,Australia,AU,Queensland,-27.527286,153.091376,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Local Mum and her joey enjoying the sun. Joey appeared quite inquisitive. Underneath their spot there was scat that appeared to be from both Mum (big poos) and joey (small poos).,2023,7,29,Australia,AU,Queensland,-27.284816,153.000661,EPSG:4326 +HUMAN_OBSERVATION,bushluver,1,,,2024,8,23,Australia,AU,Victoria,-37.921775,147.727158,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Make koala - yellow tag left ear,2023,4,10,Australia,AU,Queensland,-27.52746,153.093352,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,FEMALE,,2022,9,12,Australia,AU,South Australia,-34.890621,138.731874,EPSG:4326 +HUMAN_OBSERVATION,a100d,1,,2 Koalas,2023,10,2,Australia,AU,Queensland,-27.702621,153.191404,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,3,Australia,AU,South Australia,-34.892005,138.720583,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,The beautiful Christabelle who has since been rescued & taken to RSPCA where she was euthanised,2023,2,7,Australia,AU,Queensland,-27.531437,153.105314,EPSG:4326 +HUMAN_OBSERVATION,Luke Romaine,1,,,2023,11,2,Australia,AU,Queensland,-27.507317,153.078211,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland - rear - near townhouses,2023,10,25,Australia,AU,Queensland,-27.527807,153.093116,EPSG:4326 +HUMAN_OBSERVATION,Jo Marks,1,,,2024,9,21,Australia,AU,Queensland,-19.150448,146.863805,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy male koala. Observation J Gray- Toowoomba Koala & Wildlife Rescue,2022,11,19,Australia,AU,Queensland,-27.67137,151.543503,EPSG:4326 +HUMAN_OBSERVATION,graeme lunt,1,,,2024,1,13,Australia,AU,Victoria,-38.318439,142.363482,EPSG:4326 +HUMAN_OBSERVATION,Paulaed,1,FEMALE,"Same koala as previous entry. Koala climbed down one tree (previous photo entry today), and sat for a bit on ground, then walked to another tree, this tree, and climbed and sat in 1st bow, then noticed me. Hot morning 34 degree Celcius",2023,1,17,Australia,AU,South Australia,-35.014789,138.594124,EPSG:4326 +HUMAN_OBSERVATION,danielleamy123,1,,,2023,10,22,Australia,AU,Queensland,-27.556806,153.282046,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Male. Hit by car. Rescued and observed by Wendy Taylor. Named Nugget. Transferred to Australia Zoo. Sustained brain lesions and was euthanised. Submitted by Denise Shaw via email.,2023,10,6,Australia,AU,Queensland,-26.652899,151.78296,EPSG:4326 +HUMAN_OBSERVATION,Corin,1,,,2021,11,25,Australia,AU,Queensland,-27.778343,152.988006,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,28,Australia,AU,Queensland,-27.526732,153.090301,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,,2024,4,18,Australia,AU,Queensland,-27.548978,153.0522,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,26,Australia,AU,Queensland,-27.526978,153.091251,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,11,6,Australia,AU,Queensland,-27.659889,153.160433,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,5,Australia,AU,South Australia,-34.857284,138.710376,EPSG:4326 +HUMAN_OBSERVATION,Cobi Calyx,1,,,2024,3,11,Australia,AU,South Australia,-35.015046,138.608057,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,6,19,Australia,AU,New South Wales,-28.260562,153.400202,EPSG:4326 +HUMAN_OBSERVATION,pelicanfan,1,FEMALE,Travelling along the side of the road.,2024,11,9,Australia,AU,Queensland,-27.320753,151.918061,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,11,26,Australia,AU,Queensland,-27.541455,153.06901,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Campo - red tag A18 RIGHT ear,2023,3,28,Australia,AU,Queensland,-27.52968,153.109704,EPSG:4326 +HUMAN_OBSERVATION,Heath Hunter,1,,,2023,11,12,Australia,AU,South Australia,-34.948516,138.683584,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Female in Grey Ironbark,2021,2,24,Australia,AU,Queensland,-27.55049,153.055108,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear,2023,3,15,Australia,AU,Queensland,-27.529819,153.103565,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female with joey. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,9,10,Australia,AU,Queensland,-26.173674,151.698264,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2021,10,4,Australia,AU,South Australia,-34.873055,138.654407,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,23,Australia,AU,Queensland,-27.546393,153.074546,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,19,Australia,AU,South Australia,-34.88749,138.729049,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Feeding on Eucalyptus microcorys.,2021,8,5,Australia,AU,Queensland,-27.541188,153.076835,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Is this another mum? Looks like something coming out of a pouch???,2022,11,22,Australia,AU,Queensland,-27.543309,153.072487,EPSG:4326 +HUMAN_OBSERVATION,Gordon Claridge,1,,"An adult male koala with a clear identifying spot on his left knee. In this record he was just passing through the area, but was back six days later (188473617) to climb a popular food tree the left in the foreground of this photo",2023,8,3,Australia,AU,Queensland,-27.495004,152.249225,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,11,26,Australia,AU,Queensland,-27.544136,153.072189,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Young male,2024,6,30,Australia,AU,Queensland,-27.33782,152.614288,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,9,Australia,AU,Queensland,-27.527981,153.109035,EPSG:4326 +HUMAN_OBSERVATION,judyann2603,1,,,2023,4,23,Australia,AU,Queensland,-27.632467,152.897449,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Maisie B,2024,7,7,Australia,AU,Queensland,-27.526879,153.090408,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2024,4,4,Australia,AU,Victoria,-37.639952,143.900693,EPSG:4326 +HUMAN_OBSERVATION,demonrowe,1,,Photo taken by Mary Johnson owner of property where koala was sighted.,2020,8,16,Australia,AU,Victoria,-38.012484,142.308167,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Very windy day - its fluffy ears are blown backwards in some photos! Everything was moving! Seen by Ainslie. Believe its the white bottomed male,2021,9,12,Australia,AU,New South Wales,-28.252318,153.375547,EPSG:4326 +HUMAN_OBSERVATION,graeme lunt,1,,,2023,10,29,Australia,AU,Victoria,-37.689641,143.996813,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"In Swamp Gum (E. ovata). Unable to determine sex. Overall impression of a smaller animal. One fresh scat directly underneath. Saw it yesterday (made no iNat entry) about 110m further west, with a lot of scat underneath.",2024,5,6,Australia,AU,Victoria,-38.498481,142.974197,EPSG:4326 +HUMAN_OBSERVATION,Andrew Rock,1,,Mungarra Reserve,2023,7,29,Australia,AU,Queensland,-27.276545,152.963993,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Old Male koala mid in red stringybark busy chewing taking no notice of us. Same male that visits Baanya Biami,2024,6,16,Australia,AU,Victoria,-37.816377,144.248018,EPSG:4326 +HUMAN_OBSERVATION,Graham Tupper,1,,,2023,11,24,Australia,AU,New South Wales,-30.294758,153.125528,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2021,6,1,Australia,AU,South Australia,-34.883009,138.775992,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2022,3,11,Australia,AU,South Australia,-35.201272,138.593695,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Sport n rec picnic area Jacob Jnr,2024,4,6,Australia,AU,Queensland,-27.525554,153.092315,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2022,3,21,Australia,AU,South Australia,-34.97137,138.638119,EPSG:4326 +HUMAN_OBSERVATION,tili4,1,,,2024,5,11,Australia,AU,South Australia,-35.006378,138.6398,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,5,11,Australia,AU,Queensland,-27.514732,153.082954,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,FEMALE,,2024,3,7,Australia,AU,New South Wales,-29.857325,150.586163,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,7,14,Australia,AU,Queensland,-27.527749,153.0922,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,9,24,Australia,AU,Queensland,-27.394677,153.443671,EPSG:4326 +HUMAN_OBSERVATION,jonjamin,1,FEMALE,,2023,5,5,Australia,AU,Queensland,-28.047466,153.281741,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On a small L.confertus.,2024,4,1,Australia,AU,Queensland,-27.541071,153.066589,EPSG:4326 +HUMAN_OBSERVATION,Gregory Andrews,1,,Found on camera trap at Wombat Ridge Nature Réserve,2022,7,7,Australia,AU,New South Wales,-34.922658,149.921822,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,8,14,Australia,AU,South Australia,-34.903114,138.702341,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree next to tennis courts - mother with Joey in pouch,2023,5,21,Australia,AU,Queensland,-27.525356,153.092819,EPSG:4326 +HUMAN_OBSERVATION,Sig,1,,,2021,2,7,Australia,AU,South Australia,-35.216263,138.707174,EPSG:4326 +HUMAN_OBSERVATION,sandragall,1,,,2023,2,8,Australia,AU,Queensland,-27.750573,153.155023,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Fresh scat - no koala observed,2022,8,2,Australia,AU,New South Wales,-33.134433,151.100297,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Triangle near cafeteria,2024,8,25,Australia,AU,Queensland,-27.526938,153.091965,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - Joe - but known as Bozo,2023,9,8,Australia,AU,Queensland,-27.527294,153.108438,EPSG:4326 +HUMAN_OBSERVATION,liz-nara,1,,In regen,2021,7,2,Australia,AU,New South Wales,-32.503533,151.650537,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,13,Australia,AU,Queensland,-27.528847,153.111125,EPSG:4326 +HUMAN_OBSERVATION,stuartyoung78,1,,,2023,9,24,Australia,AU,Queensland,-27.397337,153.43898,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,22,Australia,AU,Queensland,-27.528095,153.092225,EPSG:4326 +HUMAN_OBSERVATION,enekoazkue,1,,,2024,8,11,Australia,AU,Victoria,-38.084781,141.927332,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,Male with a very dirty bottom consequently rescued and treated,2020,5,17,Australia,AU,Queensland,-27.170088,152.989212,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,MALE,Male koala visited 5 days after the old local koala was taken out to rehab. in the same vicinity.,2022,2,28,Australia,AU,Victoria,-38.175573,145.132388,EPSG:4326 +HUMAN_OBSERVATION,michaelrouse,1,,,2023,12,27,Australia,AU,Queensland,-27.572022,152.939287,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,10,6,Australia,AU,Queensland,-27.515019,153.079518,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,7,Australia,AU,South Australia,-34.889603,138.732236,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2024,1,29,Australia,AU,Victoria,-38.331148,142.584718,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Juvenile,2024,5,21,Australia,AU,Queensland,-27.530319,153.103355,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,"Site: K2 Tree no: 27 Tree DBH: 18.780 Sclerophyll notes: No time was recorded for when scats were found - 1pm has been put for all scat observations due to there being no records, all scats were collected on the same day at different sites Ecologist assessed",2021,8,25,Australia,AU,Queensland,-27.697117,152.086633,EPSG:4326 +HUMAN_OBSERVATION,Ash,1,FEMALE,"Very high up a tree, best shot I could get in windy weather.",2023,10,27,Australia,AU,Queensland,-27.649104,153.26325,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,5,13,Australia,AU,Victoria,-38.671295,146.163697,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,,2023,9,19,Australia,AU,Queensland,-27.920346,153.383276,EPSG:4326 +HUMAN_OBSERVATION,larivera,1,,,2022,11,18,Australia,AU,Victoria,-38.314729,142.364936,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,In a Eucalyptus fibrosa fibrosa,2023,10,14,Australia,AU,Queensland,-27.562075,152.278733,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,12,Australia,AU,Queensland,-27.529646,153.103752,EPSG:4326 +HUMAN_OBSERVATION,annamills,1,,,2022,10,25,Australia,AU,Victoria,-38.321682,145.312078,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,9,Australia,AU,Queensland,-27.526513,153.09068,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,5,3,Australia,AU,Queensland,-27.551367,153.059047,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,"with joey, in warm spot between mum and tree.",2022,8,24,Australia,AU,Queensland,-27.509963,153.069608,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2022,4,5,Australia,AU,Queensland,-27.734818,153.102416,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,11,8,Australia,AU,Queensland,-26.156562,151.751202,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2023,12,22,Australia,AU,South Australia,-34.90159,138.700411,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.923047,147.731567,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,8,8,Australia,AU,Victoria,-37.607851,143.880151,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,MALE,"Local male koala who lives in this range of trees on Lawnton Pocket Road (near Boral), Lawnton.",2023,7,9,Australia,AU,Queensland,-27.284523,153.001281,EPSG:4326 +HUMAN_OBSERVATION,ben_dethick,1,,,2023,12,6,Australia,AU,Victoria,-38.266262,145.050203,EPSG:4326 +HUMAN_OBSERVATION,frankaz,1,,Between Porcupine Gorge Lookout and carpark,2020,7,16,Australia,AU,Queensland,-20.409652,144.436507,EPSG:4326 +HUMAN_OBSERVATION,jessica_laura,1,,,2021,8,13,Australia,AU,Victoria,-37.829692,141.580933,EPSG:4326 +HUMAN_OBSERVATION,Glassmith,1,,,2024,1,10,Australia,AU,South Australia,-35.081989,138.643447,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,MALE,unwell male koala - rescued by M Butlin for TKWR and taken for vet treatment. Released 2/10/23 at Boodua Reserve,2023,10,9,Australia,AU,Queensland,-27.39072,151.828978,EPSG:4326 +HUMAN_OBSERVATION,Tim Bawden,1,,,2023,11,6,Australia,AU,Victoria,-37.155175,148.257278,EPSG:4326 +HUMAN_OBSERVATION,birdwilliams,1,,,2022,2,23,Australia,AU,South Australia,-34.812283,138.714538,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,9,21,Australia,AU,Queensland,-27.545432,153.069027,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Two koalas in same tree. Fairly certain the bigger one is the older female who lives in this area ie. see https://inaturalist.ala.org.au/observations/190151966 The smaller koala might be her joey.,2024,9,8,Australia,AU,Queensland,-27.283729,152.998912,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Monty,2024,2,26,Australia,AU,South Australia,-34.889551,138.722542,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum - known as Jacko or Niki. Joey Charlie in an adjacent tree,2024,4,6,Australia,AU,Queensland,-27.528428,153.10327,EPSG:4326 +HUMAN_OBSERVATION,Chase DeJarnett,1,,,2024,5,5,Australia,AU,Queensland,-19.131614,146.870711,EPSG:4326 +HUMAN_OBSERVATION,alexeypavlushkin,1,,,2023,9,24,Australia,AU,Victoria,-38.668042,143.860697,EPSG:4326 +HUMAN_OBSERVATION,jess-33,1,,,2023,9,24,Australia,AU,Queensland,-27.916068,153.378983,EPSG:4326 +HUMAN_OBSERVATION,Scott Baker,1,,,2023,10,15,Australia,AU,Queensland,-27.527446,153.106767,EPSG:4326 +HUMAN_OBSERVATION,alibob,1,,,2021,11,14,Australia,AU,Queensland,-27.320038,152.863892,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland near seton fence,2024,8,3,Australia,AU,Queensland,-27.528499,153.092329,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland entrance,2024,3,3,Australia,AU,Queensland,-27.52737,153.09222,EPSG:4326 +HUMAN_OBSERVATION,lrathbone,1,,,2021,10,20,Australia,AU,Victoria,-37.762978,145.676936,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,3,Australia,AU,Queensland,-27.529307,153.109927,EPSG:4326 +HUMAN_OBSERVATION,Dafne,1,,,2024,11,5,Australia,AU,Queensland,-27.552004,153.054756,EPSG:4326 +HUMAN_OBSERVATION,Ralph Foster,1,,,2020,2,23,Australia,AU,South Australia,-35.013265,138.717595,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Mottly yawning!! Love him.,2024,11,14,Australia,AU,South Australia,-34.892406,138.716243,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area Jacob Jnr,2024,1,25,Australia,AU,Queensland,-27.525765,153.092347,EPSG:4326 +HUMAN_OBSERVATION,sbarton16,1,,Much further north than expected,2020,8,3,Australia,AU,Queensland,-18.977257,146.031856,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,"Same animal as 163786458 and 163789896. (see photo 1 for spots on legs and white blotches on edge of rump, and photo 2 for hairy ears). LCA3151.",2023,5,6,Australia,AU,Queensland,-27.496771,152.249514,EPSG:4326 +HUMAN_OBSERVATION,lhacky,1,,,2024,8,13,Australia,AU,Victoria,-38.752298,143.666261,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Possibly Christabelle,2022,12,23,Australia,AU,Queensland,-27.529638,153.104469,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"High in a tree, then down lower in a different tree about an hour later",2023,10,24,Australia,AU,Queensland,-27.527841,153.111447,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,13,Australia,AU,Queensland,-27.527187,153.091832,EPSG:4326 +HUMAN_OBSERVATION,Gary Franceschini,1,,,2022,11,1,Australia,AU,Victoria,-37.74849,142.026952,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,2,28,Australia,AU,Queensland,-27.530064,153.105326,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Across the creek,2023,10,23,Australia,AU,Queensland,-27.527078,153.110029,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Millie,2023,6,24,Australia,AU,Queensland,-27.527278,153.111129,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,4,27,Australia,AU,Queensland,-27.536758,153.055304,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwod,2020,5,19,Australia,AU,Queensland,-27.550695,153.063956,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult female with joey. Healthy. Observed by Robyn Zackreson. Submitted via FB.,2024,7,7,Australia,AU,Queensland,-26.308988,151.778183,EPSG:4326 +HUMAN_OBSERVATION,cirolana,1,,,2021,1,11,Australia,AU,Queensland,-27.368394,152.949102,EPSG:4326 +HUMAN_OBSERVATION,Oscar Dove,1,,,2022,9,4,Australia,AU,New South Wales,-31.442446,152.901886,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,"Another local Koala spotted around Mt Crosby & Lake Manchester Rd Corner. Josh spotted this one in his back yard 🐨 Logging a sighting now 😊 Photo Credit: Josh, Karana Downs & Mount Crosby Residents FB Group. Thank you Josh for letting us share your sighting.",2021,10,23,Australia,AU,Queensland,-27.527759,152.807851,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,,2023,6,16,Australia,AU,Queensland,-27.414663,152.0045,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Maisie? Tree near fashion block,2023,6,18,Australia,AU,Queensland,-27.526484,153.091056,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,15,Australia,AU,Queensland,-27.544228,153.055915,EPSG:4326 +HUMAN_OBSERVATION,joel_ellis,1,,"Koala foraging in the crown of a eucalypt, in a gully. Image credit: Ms J De Vries.",2024,11,10,Australia,AU,Victoria,-37.640954,143.899417,EPSG:4326 +HUMAN_OBSERVATION,blueeyeslacewing,1,,,2024,10,2,Australia,AU,New South Wales,-34.805347,150.013244,EPSG:4326 +HUMAN_OBSERVATION,oconnej,1,,,2024,9,2,Australia,AU,Queensland,-28.068656,152.632138,EPSG:4326 +HUMAN_OBSERVATION,Sharon Dodd,1,,,2022,3,13,Australia,AU,Victoria,-38.358395,146.387244,EPSG:4326 +HUMAN_OBSERVATION,Anneke Logan,1,,Joey with adult female above,2022,11,27,Australia,AU,Queensland,-27.25525,152.046333,EPSG:4326 +HUMAN_OBSERVATION,lethalspread,1,,,2022,3,13,Australia,AU,Queensland,-27.500362,153.078233,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,7,Australia,AU,Queensland,-27.823815,152.993203,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,,2024,11,3,Australia,AU,Queensland,-27.507806,153.082011,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near e block,2023,12,9,Australia,AU,Queensland,-27.526327,153.090682,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,27,Australia,AU,Queensland,-27.526865,153.090758,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,14,Australia,AU,Queensland,-27.528453,153.113593,EPSG:4326 +HUMAN_OBSERVATION,Em Blackburn,1,,,2023,2,6,Australia,AU,Victoria,-38.777583,143.640092,EPSG:4326 +HUMAN_OBSERVATION,Elysa Hazzard,1,,,2021,9,18,Australia,AU,Queensland,-27.914064,153.374655,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Koala was resting in a native cherry.,2023,10,9,Australia,AU,South Australia,-34.890824,138.733184,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,In tree between the pool and Newnham rd,2023,8,14,Australia,AU,Queensland,-27.533108,153.094489,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside TAFE nursery grounds,2023,6,17,Australia,AU,Queensland,-27.528137,153.092299,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,11,11,Australia,AU,Queensland,-27.539283,153.054133,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2024,5,2,Australia,AU,Queensland,-27.527661,153.092982,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,FEMALE,Bingara's Community Conservation Area,2024,3,6,Australia,AU,New South Wales,-29.857284,150.586043,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Gatton SS grounds feeding on Moreton Bay Ash, Fauna Carers called in to remove to a safer place",2023,10,13,Australia,AU,Queensland,-27.562186,152.279358,EPSG:4326 +HUMAN_OBSERVATION,Louis O'Neill,1,,"3 koalas in a single tree! One on the left, second is in the bottom right and the third is in the top middle",2022,5,13,Australia,AU,Victoria,-37.218937,148.266113,EPSG:4326 +HUMAN_OBSERVATION,Susan J,1,,,2023,12,30,Australia,AU,Queensland,-27.511525,153.080684,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area Tree On corner,2023,11,13,Australia,AU,Queensland,-27.525151,153.091928,EPSG:4326 +HUMAN_OBSERVATION,Jenny Possingham,1,,Adult carrying young,2023,9,12,Australia,AU,Victoria,-36.307275,146.528952,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,,2020,8,24,Australia,AU,Victoria,-38.175455,145.132201,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Male "Bald Ear". Member of group of koalas regularly found in this vicinity.,2021,7,19,Australia,AU,New South Wales,-30.520915,151.518981,EPSG:4326 +HUMAN_OBSERVATION,Paula Peeters,1,,,2022,8,8,Australia,AU,Queensland,-28.172364,153.18909,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,7,Australia,AU,South Australia,-34.89037,138.730142,EPSG:4326 +HUMAN_OBSERVATION,Georgie,1,,,2023,2,23,Australia,AU,Queensland,-27.546292,152.860743,EPSG:4326 +HUMAN_OBSERVATION,sharynbartlem,1,MALE,,2023,6,14,Australia,AU,Queensland,-27.506708,153.075143,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,"Southern end of property Euc tereticornis 20m up No ear tag, looks clean Different koala to tagged and released resident male from yesterday entry Heard a female last night and him calling at Northern end",2020,11,12,Australia,AU,Queensland,-27.171367,152.989028,EPSG:4326 +HUMAN_OBSERVATION,timfreiszmuth,1,,,2024,3,17,Australia,AU,New South Wales,-28.637567,153.629497,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Joey seen with Mum Koala.,2022,8,27,Australia,AU,New South Wales,-28.256257,153.401353,EPSG:4326 +HUMAN_OBSERVATION,pilotpossum,1,,,2024,4,13,Australia,AU,South Australia,-34.98871,138.729642,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female. Healthy. Released from care. Observed by Wendy Taylor. Submitted via msg. Rescue record: https://www.inaturalist.org/observations/243744316,2024,11,2,Australia,AU,Queensland,-26.302906,151.99682,EPSG:4326 +HUMAN_OBSERVATION,jessrob73,1,,,2024,5,2,Australia,AU,Victoria,-37.641513,143.729958,EPSG:4326 +HUMAN_OBSERVATION,Joep de Ligt,1,,,2023,7,7,Australia,AU,Queensland,-27.546338,153.057718,EPSG:4326 +HUMAN_OBSERVATION,Nic Van Zyl,1,,,2024,7,14,Australia,AU,Victoria,-38.318812,142.363497,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,Climbing a Jacaranda tree. Heard calling loudly and frequently,2020,9,18,Australia,AU,Queensland,-27.510535,153.069677,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2024,9,28,Australia,AU,New South Wales,-34.75657,146.590072,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,3,15,Australia,AU,South Australia,-34.957534,138.684765,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2024,8,12,Australia,AU,Queensland,-28.917913,151.58393,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3126 (Photo: Bob Brown),2022,5,24,Australia,AU,Queensland,-27.53118,152.1833,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area - rear - mother and joey,2023,11,3,Australia,AU,Queensland,-27.528464,153.092684,EPSG:4326 +HUMAN_OBSERVATION,Ken Hurley,1,,,2023,12,16,Australia,AU,South Australia,-34.930017,138.702029,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,7,24,Australia,AU,South Australia,-34.959701,138.700849,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,4,22,Australia,AU,New South Wales,-33.076436,151.095047,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,MALE,"Deceased male. Likely killed within an hour to 90 minutes, based on observations of recent drivers.",2024,10,11,Australia,AU,Victoria,-37.903064,144.253904,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,10,27,Australia,AU,Queensland,-27.9486,151.388962,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,3,Australia,AU,South Australia,-34.890773,138.730235,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,In mum’s tree Maisie,2024,8,4,Australia,AU,Queensland,-27.526436,153.091046,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,5,31,Australia,AU,Queensland,-27.527843,153.111693,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,7,8,Australia,AU,Queensland,-27.549026,153.051551,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"Female higher pitch squawk/scream/wail 23/7 8:03pm. Male heard on 24/7/2024 at 2:11am, 3:01am (recording),3:56am",2024,7,23,Australia,AU,Queensland,-27.824094,152.991828,EPSG:4326 +HUMAN_OBSERVATION,Pete Woodall,1,,"8757/8 QNC outing. Found about 25m from Pine Mt Road, possibly a road casualty that was either moved off the road or moved itself off the road prior to death.",2022,6,26,Australia,AU,Queensland,-27.514766,153.083114,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Hiding in Bunya Pine from large male koala. Heard the crying and went to investigate.,2022,3,14,Australia,AU,Queensland,-27.534151,153.060915,EPSG:4326 +HUMAN_OBSERVATION,sunshineazza,1,,,2024,9,13,Australia,AU,Queensland,-27.444313,152.315033,EPSG:4326 +HUMAN_OBSERVATION,Chris Cobern,1,,,2023,3,10,Australia,AU,Victoria,-37.098105,145.619767,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,10,5,Australia,AU,Queensland,-27.524906,153.093393,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,near 701 Mann Silo Road,2021,11,29,Australia,AU,Queensland,-27.79311,151.546582,EPSG:4326 +HUMAN_OBSERVATION,george_seagull,1,,Marengo Nature Conservation Reserve.,2022,9,23,Australia,AU,Victoria,-38.773025,143.653068,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"Third adult in young roadside Euc.tereticornis. Red Bridge Rd, immediately adjacent Boonah Rail.",2024,7,29,Australia,AU,Queensland,-27.985757,152.67734,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2022,12,10,Australia,AU,Queensland,-28.094954,152.833386,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,This koala may be a koala born here in 2019 "Fluffy Eared Baby". It was seen in the same area as the oldest male in this area was found ill on the ground the day before. The older male was euthanised by a vet.,2024,2,20,Australia,AU,New South Wales,-30.520915,151.518981,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,24,Australia,AU,Queensland,-27.528572,153.092838,EPSG:4326 +HUMAN_OBSERVATION,kiyahsmith,1,,,2021,12,24,Australia,AU,New South Wales,-35.848312,145.581238,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2024,4,29,Australia,AU,Queensland,-27.529903,153.104336,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,6,28,Australia,AU,Queensland,-27.527275,153.107597,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,2,15,Australia,AU,South Australia,-34.957897,138.695256,EPSG:4326 +HUMAN_OBSERVATION,thismiaman,1,,,2024,2,5,Australia,AU,Victoria,-38.669925,143.86113,EPSG:4326 +HUMAN_OBSERVATION,Macro.Enthusiast,1,,,2024,9,22,Australia,AU,South Australia,-34.904087,138.723271,EPSG:4326 +HUMAN_OBSERVATION,bertbohosouth,1,,,2023,10,30,Australia,AU,Victoria,-36.821569,145.70062,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,10,6,Australia,AU,Queensland,-27.547518,153.058259,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area Cindy Crawford’s joey,2024,10,6,Australia,AU,Queensland,-27.525755,153.09234,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Up high, down lower on return. Male - white tag LEFT ear - Bandit",2024,1,3,Australia,AU,Queensland,-27.527731,153.111504,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,6,2,Australia,AU,Queensland,-27.53323,153.060163,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In mum’s trees e block,2024,2,18,Australia,AU,Queensland,-27.526308,153.091069,EPSG:4326 +HUMAN_OBSERVATION,Jarah Marginata,1,,,2024,2,16,Australia,AU,Victoria,-38.060875,141.92453,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Green tag RIGHT ear - possibly Joy,2023,1,7,Australia,AU,Queensland,-27.527063,153.108324,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2022,10,14,Australia,AU,South Australia,-35.021159,138.71119,EPSG:4326 +HUMAN_OBSERVATION,dingopete,1,,,2023,4,26,Australia,AU,Queensland,-27.431688,153.538392,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,12,Australia,AU,Queensland,-27.544413,153.05617,EPSG:4326 +HUMAN_OBSERVATION,Colin Trainor,1,,,2023,4,6,Australia,AU,Queensland,-27.5263,153.282317,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,25,Australia,AU,Queensland,-27.693821,151.564892,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2024,1,26,Australia,AU,South Australia,-35.260503,138.55987,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,21,Australia,AU,South Australia,-34.890531,138.730625,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Male koala licking tree while it was raining. He climbed further up the tree and then jumped to another branch to eat leaf.,2023,11,5,Australia,AU,Queensland,-27.284806,153.000498,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,7,Australia,AU,Queensland,-26.193736,151.773557,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,9,15,Australia,AU,Queensland,-27.551016,153.057511,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2023,12,25,Australia,AU,Queensland,-27.525828,153.0927,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Koala Observation by W Studwick for TKWR,2023,7,3,Australia,AU,Queensland,-27.62471,151.822478,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,3,Australia,AU,Queensland,-27.529164,153.109712,EPSG:4326 +HUMAN_OBSERVATION,brendon_levot,1,,,2022,8,20,Australia,AU,New South Wales,-34.13796,150.793656,EPSG:4326 +HUMAN_OBSERVATION,pedroseq,1,,,2023,1,2,Australia,AU,Queensland,-27.545678,153.073211,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,10,5,Australia,AU,Victoria,-37.579232,143.89601,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,,2023,11,22,Australia,AU,Queensland,-26.975,152.078767,EPSG:4326 +HUMAN_OBSERVATION,stuheart,1,,Koala with joey,2023,8,14,Australia,AU,Victoria,-37.667436,144.365298,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,FEMALE,,2024,11,6,Australia,AU,Queensland,-27.659889,153.160433,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,3,26,Australia,AU,Queensland,-27.549311,153.050251,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey Gum,2023,4,3,Australia,AU,Queensland,-27.535913,153.036191,EPSG:4326 +HUMAN_OBSERVATION,Andrew Dilley,1,,,2024,9,6,Australia,AU,Victoria,-37.442094,144.659469,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Male koala - yellow tag left ear,2023,5,6,Australia,AU,Queensland,-27.5285,153.092642,EPSG:4326 +HUMAN_OBSERVATION,ko1988,1,,On Eucalyptus propinqua at the entrance / exit of Mt Gravatt Showgrounds.,2022,9,3,Australia,AU,Queensland,-27.54452,153.08194,EPSG:4326 +HUMAN_OBSERVATION,morganramsay,1,,,2024,3,10,Australia,AU,Victoria,-37.913825,147.732055,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,10,10,Australia,AU,Queensland,-27.258093,152.045334,EPSG:4326 +HUMAN_OBSERVATION,Diana,1,,,2022,10,1,Australia,AU,South Australia,-35.061154,138.576511,EPSG:4326 +HUMAN_OBSERVATION,Michelle Eleisa,1,MALE,,2021,9,11,Australia,AU,Victoria,-38.174675,145.130609,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2024,5,18,Australia,AU,Queensland,-27.551573,153.058273,EPSG:4326 +HUMAN_OBSERVATION,juliesarna,1,,,2023,3,13,Australia,AU,South Australia,-35.708153,137.49395,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,17,Australia,AU,Queensland,-27.545433,153.072833,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree on Cavendish Road lower car park (at entrance of car park),2023,10,15,Australia,AU,Queensland,-27.525586,153.0902,EPSG:4326 +HUMAN_OBSERVATION,Graham Possingham,1,,,2021,1,31,Australia,AU,South Australia,-35.164444,138.499276,EPSG:4326 +HUMAN_OBSERVATION,Christian Perrin,1,,,2020,9,29,Australia,AU,Queensland,-27.278453,152.929083,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,,2022,5,31,Australia,AU,Queensland,-27.50717,153.082686,EPSG:4326 +HUMAN_OBSERVATION,natduck,1,,,2021,2,7,Australia,AU,Victoria,-38.31558,142.366772,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,"Male in Tasmanian Blue Gum, plus another male calling nearby",2021,10,28,Australia,AU,Victoria,-38.671112,146.163742,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,18,Australia,AU,Queensland,-27.526837,153.09045,EPSG:4326 +HUMAN_OBSERVATION,samuel_ostrich,1,,,2022,6,8,Australia,AU,Australian Capital Territory,-35.46,148.91,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,3,3,Australia,AU,Queensland,-27.526952,153.09093,EPSG:4326 +HUMAN_OBSERVATION,marcodifra,1,,,2024,6,20,Australia,AU,Queensland,-26.099611,152.80005,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Between cleaners donga and admin block,2023,11,3,Australia,AU,Queensland,-27.527136,153.091726,EPSG:4326 +HUMAN_OBSERVATION,andymc737,1,,,2022,12,12,Australia,AU,Queensland,-27.938965,153.356811,EPSG:4326 +HUMAN_OBSERVATION,Anneke Logan,1,,,2023,11,7,Australia,AU,Queensland,-27.388909,151.940649,EPSG:4326 +HUMAN_OBSERVATION,Pam Day,1,,Was told this one was a relocation. Another camper reported seeing a female and joey on the walk trails.,2021,8,27,Australia,AU,Queensland,-26.637332,152.449594,EPSG:4326 +HUMAN_OBSERVATION,zlatko_b,1,,,2024,2,2,Australia,AU,Victoria,-38.131168,145.267762,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,7,9,Australia,AU,Queensland,-27.551394,153.058064,EPSG:4326 +HUMAN_OBSERVATION,Amy Thomas,1,,,2024,7,7,Australia,AU,Queensland,-27.250419,153.066816,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Maisie and Joey Front of tafe cavendish road - basketball court end,2023,8,20,Australia,AU,Queensland,-27.526582,153.090271,EPSG:4326 +HUMAN_OBSERVATION,Jesse Saofia,1,,,2023,6,18,Australia,AU,Victoria,-38.670082,143.857885,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,1,Australia,AU,Queensland,-27.526363,153.090622,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2024,4,22,Australia,AU,Victoria,-38.833917,143.513078,EPSG:4326 +HUMAN_OBSERVATION,Bruce Edmunds,1,,,2022,11,29,Australia,AU,New South Wales,-34.052718,150.858044,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,First time observing Koala in this planted Eucalyptus microcorys.,2024,1,13,Australia,AU,Queensland,-27.569664,152.102704,EPSG:4326 +HUMAN_OBSERVATION,camidge,1,,,2023,8,27,Australia,AU,Victoria,-37.922846,147.731936,EPSG:4326 +HUMAN_OBSERVATION,Jake Orthman,1,,,2021,12,9,Australia,AU,Queensland,-27.39848,153.442105,EPSG:4326 +HUMAN_OBSERVATION,Scott Warner,1,,,2024,10,11,Australia,AU,Queensland,-27.29638,152.226099,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"First two images are of the same koala, third is of a second koala.",2022,10,20,Australia,AU,Queensland,-27.574537,152.928702,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,1,13,Australia,AU,Victoria,-38.671153,146.163614,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2024,2,19,Australia,AU,Victoria,-37.596399,143.874597,EPSG:4326 +HUMAN_OBSERVATION,Xuyang Li,1,,,2024,10,5,Australia,AU,Victoria,-38.48412,145.26158,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,5,Australia,AU,Queensland,-27.525729,153.092693,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,10,16,Australia,AU,Victoria,-38.671112,146.163789,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Female and joey.,2021,10,5,Australia,AU,New South Wales,-28.254254,153.377367,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in Eucalyptus tereticornis,2023,7,6,Australia,AU,Queensland,-27.910416,152.627474,EPSG:4326 +HUMAN_OBSERVATION,gspud77,1,,,2024,4,28,Australia,AU,Queensland,-26.644437,152.856047,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,1,4,Australia,AU,South Australia,-34.865203,138.656825,EPSG:4326 +HUMAN_OBSERVATION,Graeme,1,,"Pair of Koalas-female in first pic, male in second",2024,2,14,Australia,AU,Victoria,-38.691996,146.118596,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Cleaners donga,2024,10,27,Australia,AU,Queensland,-27.526931,153.091874,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear - known as Bozo,2023,5,26,Australia,AU,Queensland,-27.527427,153.10717,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwod,2022,9,7,Australia,AU,Queensland,-27.538514,153.052005,EPSG:4326 +HUMAN_OBSERVATION,Pascale Jacq,1,,,2023,9,17,Australia,AU,Victoria,-38.385195,145.371818,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Christabelle,2022,12,10,Australia,AU,Queensland,-27.529944,153.103422,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Pink Bloodwood. Mum and young Joey,2020,10,8,Australia,AU,Queensland,-27.540165,153.063943,EPSG:4326 +HUMAN_OBSERVATION,Pete Woodall,1,,1858 One of two seen,2022,11,22,Australia,AU,South Australia,-35.707125,137.493488,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2023,1,17,Australia,AU,South Australia,-34.907555,138.614144,EPSG:4326 +HUMAN_OBSERVATION,rbeunen,1,,,2024,10,24,Australia,AU,South Australia,-35.004532,138.638829,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,Potential female. Immediately climbed further up tree when sighted and was obstructed by leaves so please excuse the unclear photo. Sitting in stringybark spp.,2023,5,10,Australia,AU,Queensland,-27.550667,153.059998,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,8,7,Australia,AU,Queensland,-26.138698,151.79896,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2021,10,20,Australia,AU,New South Wales,-28.258941,153.402553,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,15,Australia,AU,Queensland,-27.527849,153.106773,EPSG:4326 +HUMAN_OBSERVATION,Jesse Saofia,1,,,2022,2,8,Australia,AU,Victoria,-38.13354,145.271663,EPSG:4326 +HUMAN_OBSERVATION,Colin Trainor,1,,,2023,4,1,Australia,AU,Queensland,-27.526299,153.282301,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2024,9,26,Australia,AU,Queensland,-28.066304,152.852971,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2024,9,7,Australia,AU,Victoria,-38.356961,146.387952,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,4,25,Australia,AU,Queensland,-27.527198,153.091766,EPSG:4326 +HUMAN_OBSERVATION,martinbutterfield,1,,,2024,9,10,Australia,AU,Victoria,-37.961293,144.410449,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,Next to Holland Park State High. Unfortunately only had iPhone on me. Went back next day but couldn’t find them again.,2020,4,6,Australia,AU,Queensland,-27.532906,153.060763,EPSG:4326 +HUMAN_OBSERVATION,shortman,1,,,2022,8,16,Australia,AU,Victoria,-38.666583,143.85878,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - known as Niki due to missing chunk RIGHT ear,2024,10,5,Australia,AU,Queensland,-27.52815,153.104277,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Denise Shaw. Submitted via email.,2023,7,23,Australia,AU,Queensland,-26.172552,151.766256,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,2,10,Australia,AU,Queensland,-27.527141,153.091861,EPSG:4326 +HUMAN_OBSERVATION,Elaine,1,,,2024,8,10,Australia,AU,Victoria,-38.265751,145.044917,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,1,22,Australia,AU,Queensland,-27.551139,153.057324,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2022,1,9,Australia,AU,Victoria,-38.671322,146.164153,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,4,9,Australia,AU,Queensland,-27.545981,153.068226,EPSG:4326 +HUMAN_OBSERVATION,Todd Burrows,1,,,2024,4,14,Australia,AU,Queensland,-27.936386,153.350273,EPSG:4326 +HUMAN_OBSERVATION,joshpingiaro,1,,,2024,4,18,Australia,AU,Victoria,-38.836998,143.514723,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,,2024,11,2,Australia,AU,Victoria,-38.769958,143.653947,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2024,3,23,Australia,AU,Queensland,-27.550596,153.057173,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2024,4,28,Australia,AU,Queensland,-27.528001,153.092271,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,Male,2024,9,15,Australia,AU,New South Wales,-34.753547,146.576422,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A18 RIGHT ear - Campo,2023,7,25,Australia,AU,Queensland,-27.529645,153.109751,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,9,2,Australia,AU,Queensland,-27.258107,152.045213,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,,2021,5,13,Australia,AU,New South Wales,-28.260223,153.401382,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near cafeteria three trees area,2023,9,8,Australia,AU,Queensland,-27.527055,153.092042,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,4,20,Australia,AU,Queensland,-27.527387,153.090848,EPSG:4326 +HUMAN_OBSERVATION,sjm62,1,,Tower Hill wildlife reserve,2021,9,16,Australia,AU,Victoria,-38.318924,142.363418,EPSG:4326 +HUMAN_OBSERVATION,nicomollon,1,,,2024,10,23,Australia,AU,Queensland,-19.140086,146.86453,EPSG:4326 +HUMAN_OBSERVATION,thecamberwellcarrot,1,,,2024,2,24,Australia,AU,Victoria,-38.128167,141.632387,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland,2024,11,9,Australia,AU,Queensland,-27.528633,153.092494,EPSG:4326 +HUMAN_OBSERVATION,molesworth-caveat-wildlife,1,MALE,,2023,9,17,Australia,AU,Victoria,-37.135658,145.521103,EPSG:4326 +HUMAN_OBSERVATION,Luke Halpin,1,,,2022,10,10,Australia,AU,Victoria,-36.359867,146.468705,EPSG:4326 +HUMAN_OBSERVATION,rachael_williams,1,,Female koala with joey on back,2023,9,22,Australia,AU,Queensland,-27.393408,153.440994,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,1,6,Australia,AU,Queensland,-27.525635,153.092173,EPSG:4326 +HUMAN_OBSERVATION,Mich,1,,,2022,9,13,Australia,AU,South Australia,-34.782661,138.687247,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to E block Maisie and joey,2023,8,22,Australia,AU,Queensland,-27.526808,153.090797,EPSG:4326 +HUMAN_OBSERVATION,frank_prinz,1,,,2020,1,17,Australia,AU,South Australia,-34.893833,138.747425,EPSG:4326 +HUMAN_OBSERVATION,Kiera O'Halloran,1,,,2020,9,14,Australia,AU,New South Wales,-36.013869,149.368806,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,17,Australia,AU,Queensland,-27.545867,153.076209,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,11,Australia,AU,Queensland,-27.633634,151.65214,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,water tank muma,2022,11,27,Australia,AU,Queensland,-27.545991,153.073089,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2023,2,12,Australia,AU,Queensland,-27.971869,152.954154,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult female with joey. Healthy. Observed by Leanne Zischke. Submitted via project event and email.,2023,1,2,Australia,AU,Queensland,-26.165406,151.971774,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2022,10,11,Australia,AU,Queensland,-28.102067,151.261026,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2024,5,10,Australia,AU,Victoria,-38.131123,145.268385,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,9,30,Australia,AU,South Australia,-34.955859,138.692651,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,7,18,Australia,AU,Queensland,-27.543322,153.05731,EPSG:4326 +HUMAN_OBSERVATION,Daniel,1,,,2024,1,20,Australia,AU,New South Wales,-30.928599,153.077359,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,24,Australia,AU,Queensland,-27.529154,153.105221,EPSG:4326 +HUMAN_OBSERVATION,katharper,1,,,2024,10,20,Australia,AU,Queensland,-27.613895,151.945388,EPSG:4326 +HUMAN_OBSERVATION,Pirataber,1,,,2024,10,4,Australia,AU,Victoria,-37.924543,147.729028,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,2,20,Australia,AU,Victoria,-37.651986,143.912665,EPSG:4326 +HUMAN_OBSERVATION,Kat Kodiak,1,,,2022,11,14,Australia,AU,Queensland,-19.125836,146.868392,EPSG:4326 +HUMAN_OBSERVATION,jonathan_tickner,1,,,2022,2,7,Australia,AU,Victoria,-38.397488,144.023397,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block picnic area,2024,10,20,Australia,AU,Queensland,-27.525872,153.090552,EPSG:4326 +HUMAN_OBSERVATION,cmunro,1,,,2021,10,8,Australia,AU,Victoria,-37.648903,147.715758,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,,2024,11,10,Australia,AU,Queensland,-27.414197,152.003206,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2023,10,12,Australia,AU,New South Wales,-33.169068,151.245788,EPSG:4326 +HUMAN_OBSERVATION,peterbc,1,,,2023,11,17,Australia,AU,Queensland,-27.54233,153.072753,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,,2023,2,23,Australia,AU,Queensland,-27.596929,151.89396,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,In a very precarious position- contacted RSPCA,2020,8,7,Australia,AU,Queensland,-27.534829,153.057655,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2022,3,15,Australia,AU,Victoria,-37.561116,149.758998,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to cleaners donga,2024,6,8,Australia,AU,Queensland,-27.52691,153.091787,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,10,31,Australia,AU,Queensland,-27.258271,152.044954,EPSG:4326 +HUMAN_OBSERVATION,Maree Butlin,1,,,2023,1,5,Australia,AU,Queensland,-27.577977,151.987443,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,"Survey 2 LNSF FoN. Mixed fresh and older Koala markings on Grey Gum, known area (BioNet transect 2021)",2023,7,16,Australia,AU,New South Wales,-30.559812,152.993035,EPSG:4326 +HUMAN_OBSERVATION,Bridget,1,,Koala (Phascolarctos Cinereus) seen while on a trip in Port Macquarie,2022,3,20,Australia,AU,New South Wales,-31.438386,152.892033,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2023,8,21,Australia,AU,Queensland,-27.567089,153.101548,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Koala observed by Joanne.,2022,10,18,Australia,AU,New South Wales,-28.265076,153.396349,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey gum,2024,8,7,Australia,AU,Queensland,-27.528624,153.034739,EPSG:4326 +HUMAN_OBSERVATION,polyscias099,1,,Scat,2022,8,5,Australia,AU,New South Wales,-34.048389,150.89034,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2023,12,31,Australia,AU,Queensland,-27.528276,153.092634,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,18,Australia,AU,South Australia,-34.892027,138.713754,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,24,Australia,AU,Queensland,-27.526895,153.090818,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,2,8,Australia,AU,Queensland,-27.544207,153.059645,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Koala in Tallowwood covered in Monkey Rope Vine,2020,7,21,Australia,AU,Queensland,-27.552562,153.063748,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,K block mowing shed Male,2024,8,24,Australia,AU,Queensland,-27.525917,153.090814,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,MALE,Large Male Koala - grunting and mating call observed. Observation by Nicole Morris for Toowoomba Koala and Wildlife Rescue,2022,11,19,Australia,AU,Queensland,-27.258362,152.055498,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,In Engadine but not at maccas,2024,10,8,Australia,AU,New South Wales,-34.06601,151.014965,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.924188,147.730547,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds,2024,5,12,Australia,AU,Queensland,-27.528091,153.092504,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,10,14,Australia,AU,Victoria,-37.573099,143.903482,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,6,Australia,AU,Queensland,-27.545771,153.073564,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey . Joey drinking from mum,2024,1,22,Australia,AU,Queensland,-27.530213,153.103112,EPSG:4326 +HUMAN_OBSERVATION,Kat Kodiak,1,,,2022,11,14,Australia,AU,Queensland,-19.127547,146.868212,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy Koala Sighting by J Miller for TKWR,2023,7,8,Australia,AU,Queensland,-27.483677,151.874817,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2022,4,24,Australia,AU,Queensland,-28.102052,151.261093,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,23,Australia,AU,Queensland,-27.528337,153.092929,EPSG:4326 +HUMAN_OBSERVATION,sarah macdonald,1,,,2020,5,29,Australia,AU,South Australia,-34.903066,138.702385,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2023,11,25,Australia,AU,New South Wales,-34.1017,150.822708,EPSG:4326 +HUMAN_OBSERVATION,donnamareetomkinson,1,,,2023,9,9,Australia,AU,Queensland,-26.161014,151.977,EPSG:4326 +HUMAN_OBSERVATION,sarahfriebe,1,,,2023,3,28,Australia,AU,Queensland,-27.904217,153.325012,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,30,Australia,AU,Queensland,-27.52655,153.103113,EPSG:4326 +HUMAN_OBSERVATION,jessicadavidson,1,,Camera: Canon R50 RF 100-400mm,2024,10,27,Australia,AU,Victoria,-38.132301,145.253929,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,25,Australia,AU,Queensland,-27.711343,151.53609,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,2,9,Australia,AU,South Australia,-34.892232,138.717282,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,11,8,Australia,AU,Queensland,-27.809713,151.559325,EPSG:4326 +HUMAN_OBSERVATION,Dezmond Wells,1,,,2020,11,29,Australia,AU,Queensland,-27.195168,152.945588,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,13,Australia,AU,Queensland,-27.54956,153.059867,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,"Survey 1 LNSF FoN. Fresh and older koala markings on Grey Gum, known area (BioNet transect 2021)",2023,7,11,Australia,AU,New South Wales,-30.559811,152.993516,EPSG:4326 +HUMAN_OBSERVATION,Sharon Dodd,1,,,2022,12,15,Australia,AU,Victoria,-38.347816,146.404824,EPSG:4326 +HUMAN_OBSERVATION,philip-roetman,1,,,2021,5,3,Australia,AU,South Australia,-34.928143,138.688368,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Voluntary Rescue - taken to Werribee Zoo. Reported to have polycystic ovaries and oxalate nephrosis possibly from poor habitat/dehydration. She was euthanised.,2024,1,13,Australia,AU,Victoria,-37.704971,143.840729,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In Bella’s tree,2024,8,17,Australia,AU,Queensland,-27.526838,153.091657,EPSG:4326 +HUMAN_OBSERVATION,Reiner Richter,1,,,2024,6,28,Australia,AU,Victoria,-38.428362,146.567344,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,,2024,7,9,Australia,AU,Queensland,-27.529509,153.104116,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2024,4,6,Australia,AU,Queensland,-27.528474,153.092824,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,Female and Juvenile in the same tree,2023,9,29,Australia,AU,Queensland,-27.528501,153.101374,EPSG:4326 +HUMAN_OBSERVATION,Elspeth Swan,1,,,2022,10,12,Australia,AU,Victoria,-37.633598,144.088539,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tree near nursery and cleaners donga,2023,5,28,Australia,AU,Queensland,-27.527132,153.0921,EPSG:4326 +HUMAN_OBSERVATION,linger,1,,,2020,2,11,Australia,AU,Victoria,-38.10681,141.443658,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Crusty eyes - unfortunately not in suitable tree for rescue,2024,2,27,Australia,AU,Queensland,-27.529768,153.105425,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Scat - collection for research on genetic diversity amongst local koala populations,2023,4,19,Australia,AU,Victoria,-37.615161,143.889871,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Koala poo under E. microcorys and E. propinqua,2021,11,6,Australia,AU,Queensland,-27.939025,153.233153,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A5 RIGHT ear - Cindy,2023,4,17,Australia,AU,Queensland,-27.527172,153.109074,EPSG:4326 +HUMAN_OBSERVATION,kazza-62,1,,One of two near basketball court at Henry Zeigenfutz Park,2020,12,4,Australia,AU,Queensland,-27.5342,153.283375,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,20,Australia,AU,Queensland,-27.542929,153.069851,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Healthy looking and alert.,2022,9,25,Australia,AU,Queensland,-27.548334,153.042343,EPSG:4326 +HUMAN_OBSERVATION,lisaw1012,1,,,2022,7,11,Australia,AU,Queensland,-27.647261,152.890849,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,14,Australia,AU,Queensland,-27.527692,153.102775,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,15,Australia,AU,Queensland,-27.525534,153.090522,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,13,Australia,AU,Queensland,-27.514015,153.08306,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lone tennis court tree,2024,9,19,Australia,AU,Queensland,-27.525393,153.092773,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,12,6,Australia,AU,South Australia,-34.893092,138.71315,EPSG:4326 +HUMAN_OBSERVATION,jaymieok,1,FEMALE,,2021,7,15,Australia,AU,Queensland,-19.42854,146.934776,EPSG:4326 +HUMAN_OBSERVATION,nj-aus,1,,,2022,12,25,Australia,AU,Queensland,-27.300536,152.430222,EPSG:4326 +HUMAN_OBSERVATION,insiderelic,1,,,2022,5,6,Australia,AU,South Australia,-34.858751,138.722345,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,6,23,Australia,AU,Queensland,-27.453805,152.641005,EPSG:4326 +HUMAN_OBSERVATION,maxicole,1,FEMALE,Roadkill,2024,9,30,Australia,AU,Queensland,-27.901827,153.090832,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Between admin block and cleaners donga,2023,10,14,Australia,AU,Queensland,-27.52699,153.091646,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,Matilda and MJ in Eucalyptus microcorys,2023,8,24,Australia,AU,Queensland,-27.41405,152.00322,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,FEMALE,,2020,10,3,Australia,AU,New South Wales,-29.865961,150.60137,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,1,7,Australia,AU,Queensland,-27.514118,153.083544,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery gates in different tree to this morning - one over towards nursery driveway Maisie and Joey,2023,8,6,Australia,AU,Queensland,-27.527364,153.091246,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Uni Muma and baby,2022,11,27,Australia,AU,Queensland,-27.542554,153.068377,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,8,Australia,AU,Queensland,-27.529756,153.110873,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,High in tree - feeding Cindy Crawford and joey Picnic area near sport n Rec,2023,8,6,Australia,AU,Queensland,-27.525819,153.09192,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2022,9,14,Australia,AU,Queensland,-28.103719,151.258087,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,12,6,Australia,AU,Queensland,-27.412767,152.003236,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2024,3,1,Australia,AU,New South Wales,-34.750541,146.547055,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,3,16,Australia,AU,South Australia,-34.890128,138.721531,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Pink Bloodwood,2021,2,24,Australia,AU,Queensland,-27.550726,153.055838,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Might be brown female and joey?,2020,9,30,Australia,AU,New South Wales,-28.254249,153.377433,EPSG:4326 +HUMAN_OBSERVATION,Kevin Sparrow,1,,,2024,8,15,Australia,AU,Victoria,-38.205872,142.038187,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,3,Australia,AU,Queensland,-27.527499,153.110687,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,Urban sighting,2024,10,7,Australia,AU,New South Wales,-34.736002,146.55031,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,10,Australia,AU,Queensland,-27.527242,153.108335,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. In house yard. Had another koala in the same location the year before. Observed by Lui Fraser. Submitted via FB.,2024,9,27,Australia,AU,Queensland,-26.210711,152.447711,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Mum and joey. Have included a zoomed in photo where you can see the joey's leg / arm hanging out :),2024,5,19,Australia,AU,Queensland,-27.28448,153.000646,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - green tag RIGHT ear - possibly Joy,2023,4,14,Australia,AU,Queensland,-27.527114,153.108295,EPSG:4326 +HUMAN_OBSERVATION,melissa_kaye,1,,,2020,6,20,Australia,AU,South Australia,-34.866431,138.6863,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tree no. 9 near L block,2024,9,8,Australia,AU,Queensland,-27.525083,153.090794,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,MALE,Faint building bellow in the background. 2nd recording @3:15am. Heard 9/4/2024 12:15am. Koala counts: 8/4/2024 16:45 1 observer JT 15 minutes 0 koalas.,2024,4,8,Australia,AU,Queensland,-27.823136,152.992798,EPSG:4326 +HUMAN_OBSERVATION,ainsliem,1,,,2021,5,29,Australia,AU,New South Wales,-28.255192,153.378113,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,6,2,Australia,AU,Queensland,-27.548204,153.058754,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,12,Australia,AU,Queensland,-27.549918,153.060485,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2021,8,27,Australia,AU,Queensland,-28.131891,152.916429,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,9,4,Australia,AU,Queensland,-27.703185,153.192164,EPSG:4326 +HUMAN_OBSERVATION,Wil,1,MALE,Male sitting in Callitris intratropica,2023,9,21,Australia,AU,Queensland,-18.619673,143.882842,EPSG:4326 +HUMAN_OBSERVATION,lynsh,1,,,2024,8,28,Australia,AU,Queensland,-27.916849,153.37485,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,13,Australia,AU,South Australia,-34.885995,138.733074,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.384712,145.307938,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree near lower car parks fronting Cavendish Road,2024,4,14,Australia,AU,Queensland,-27.525602,153.090294,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,12,13,Australia,AU,Victoria,-38.67184,146.164251,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,26,Australia,AU,Queensland,-27.526658,153.091478,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,3,26,Australia,AU,New South Wales,-33.07658,151.0952,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,1,30,Australia,AU,Queensland,-27.538667,153.054732,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,In a Blackwood (Acacia melanoxylon).,2024,5,8,Australia,AU,Victoria,-38.498028,142.977656,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Hight up in a tree just before sunset. Have tried to get some different views and angles, but not good light and it was very high up. On 10 May saw a koala just a bit further up the hill and may be the same koala.",2020,5,2,Australia,AU,New South Wales,-28.254426,153.376548,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Grey Ironbark,2020,6,2,Australia,AU,Queensland,-27.548476,153.05896,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - yellow tag RIGHT ear,2023,4,15,Australia,AU,Queensland,-27.529068,153.107938,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland gully,2024,2,5,Australia,AU,Queensland,-27.527498,153.092528,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Sick koala - dirty bum - for rescue,2024,1,19,Australia,AU,Queensland,-27.523318,153.090015,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,10,2,Australia,AU,Victoria,-38.671525,146.164044,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Cheese tree covered in Monkey Rope. Mum and Joey out of pouch,2020,10,8,Australia,AU,Queensland,-27.551205,153.057418,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Male koala on same branch as another male Koala,2020,7,30,Australia,AU,Queensland,-27.550955,153.05791,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Mower shed tree#1,2023,6,3,Australia,AU,Queensland,-27.525858,153.090879,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,,2024,11,24,Australia,AU,Victoria,-38.391514,142.836167,EPSG:4326 +HUMAN_OBSERVATION,e_e_rose,1,,,2023,1,20,Australia,AU,Queensland,-28.252291,152.79223,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female with joey in pouch,2023,8,7,Australia,AU,Queensland,-27.528815,153.112449,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,Male and female making noises at each other from separate trees.,2023,9,26,Australia,AU,New South Wales,-34.101928,150.821638,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,25,Australia,AU,Queensland,-27.527275,153.09166,EPSG:4326 +HUMAN_OBSERVATION,Jarah Marginata,1,,,2023,1,24,Australia,AU,Victoria,-38.324212,142.370667,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey,2024,3,20,Australia,AU,Queensland,-27.529944,153.103073,EPSG:4326 +HUMAN_OBSERVATION,Helen Witting,1,,,2023,9,3,Australia,AU,Queensland,-27.566056,153.094139,EPSG:4326 +HUMAN_OBSERVATION,julie,1,,,2024,6,14,Australia,AU,Queensland,-27.763877,153.14819,EPSG:4326 +HUMAN_OBSERVATION,Heath Hunter,1,,,2023,1,27,Australia,AU,South Australia,-34.615393,138.862118,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2023,10,22,Australia,AU,Queensland,-27.214568,152.939495,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,2,22,Australia,AU,New South Wales,-33.076375,151.095336,EPSG:4326 +HUMAN_OBSERVATION,naughtyword,1,,,2023,3,24,Australia,AU,Victoria,-37.285593,144.079615,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,2,17,Australia,AU,Victoria,-37.654354,143.885331,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2023,5,5,Australia,AU,Queensland,-27.820365,152.822862,EPSG:4326 +HUMAN_OBSERVATION,ecka11,1,,,2024,10,2,Australia,AU,Queensland,-27.275383,152.935363,EPSG:4326 +HUMAN_OBSERVATION,dilemmas,1,MALE,,2020,10,6,Australia,AU,Victoria,-37.590056,143.891778,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female green tag Q11 - Joy. Confirmed by a friend,2022,12,30,Australia,AU,Queensland,-27.526834,153.109866,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,9,30,Australia,AU,South Australia,-34.950439,138.678514,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,new water tank muma,2022,11,27,Australia,AU,Queensland,-27.546036,153.074013,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,Same male koala as in https://inaturalist.ala.org.au/observations/100837132 descending after about 15 hours in the canopy. Looking much more relaxed than he did three weeks later (https://inaturalist.ala.org.au/observations/100834185).,2021,8,28,Australia,AU,Queensland,-27.49628,152.247078,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,"Crusoe, male koala with eartag.",2022,12,16,Australia,AU,Queensland,-27.413705,152.003166,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,2nd of 4 koalas seen this morning.,2024,9,19,Australia,AU,Queensland,-27.506839,153.082872,EPSG:4326 +HUMAN_OBSERVATION,bimbimbi,1,,,2024,1,30,Australia,AU,Victoria,-38.385431,142.831746,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2022,6,18,Australia,AU,Queensland,-27.490773,153.247987,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2023,11,26,Australia,AU,South Australia,-34.692015,138.826933,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area - in valley high up in mating tree Make - testicles visible,2023,8,19,Australia,AU,Queensland,-27.52753,153.092501,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,9,30,Australia,AU,South Australia,-34.953743,138.681402,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear near gully,2023,12,23,Australia,AU,Queensland,-27.527787,153.093157,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown tree,2020,4,28,Australia,AU,Queensland,-27.551026,153.059606,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,10,16,Australia,AU,Queensland,-27.555467,151.510895,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear of woodland area,2023,10,8,Australia,AU,Queensland,-27.524206,153.09217,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,Healthy female,2023,4,26,Australia,AU,Queensland,-27.55123,153.05862,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,1,21,Australia,AU,Queensland,-27.525579,153.092707,EPSG:4326 +HUMAN_OBSERVATION,galwadgerematt,1,,,2022,10,19,Australia,AU,New South Wales,-31.653519,152.825158,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,6,7,Australia,AU,Victoria,-38.671642,146.164017,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark unknown,2020,4,28,Australia,AU,Queensland,-27.551658,153.057554,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,15,Australia,AU,Queensland,-27.527867,153.111642,EPSG:4326 +HUMAN_OBSERVATION,Scott Warner,1,,,2024,10,11,Australia,AU,Queensland,-27.297063,152.226238,EPSG:4326 +HUMAN_OBSERVATION,Taylor,1,,,2021,3,18,Australia,AU,South Australia,-35.015008,138.597901,EPSG:4326 +HUMAN_OBSERVATION,holymay,1,,,2024,3,3,Australia,AU,New South Wales,-31.443267,152.919753,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2024,3,28,Australia,AU,New South Wales,-33.076706,151.095122,EPSG:4326 +HUMAN_OBSERVATION,rordale,1,,Big male.,2024,11,12,Australia,AU,Queensland,-27.262978,152.061906,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,3,Australia,AU,South Australia,-34.890186,138.721985,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,5,31,Australia,AU,Queensland,-27.543688,153.056747,EPSG:4326 +HUMAN_OBSERVATION,quollsskinks,1,,,2022,5,24,Australia,AU,Victoria,-37.738018,142.068889,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,7,Australia,AU,South Australia,-34.89048,138.732118,EPSG:4326 +HUMAN_OBSERVATION,aquanautlloyd,1,,Smaller koala,2024,1,4,Australia,AU,New South Wales,-31.450771,152.907717,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi with the first sight of this year's joey,2023,11,14,Australia,AU,Queensland,-27.530489,153.103437,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe cavendish road near bamboo Overcast day - very high up Possibly Lucy Lou and joey,2023,8,6,Australia,AU,Queensland,-27.527538,153.090901,EPSG:4326 +HUMAN_OBSERVATION,eanthony,1,,Seen on Nerrena-Dumbalk Road.,2021,10,28,Australia,AU,Victoria,-38.514569,146.077561,EPSG:4326 +HUMAN_OBSERVATION,seamus-doherty,1,,,2020,4,25,Australia,AU,South Australia,-35.006913,138.642466,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,28,Australia,AU,South Australia,-34.872327,138.718516,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,11,Australia,AU,Queensland,-27.529901,153.111095,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Believe this is the brown male. Hard to see as through trees. Was in a forest oak again. and eating it! In one photo you can see a white spot on its bum, which may be one of the two on the brown male. Or not!",2021,10,23,Australia,AU,New South Wales,-28.254249,153.376877,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,Descending and leaving tree food tree (Eucalyptus major). LCA3016,2021,10,30,Australia,AU,Queensland,-27.496005,152.246676,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,12,5,Australia,AU,New South Wales,-28.258621,153.400832,EPSG:4326 +HUMAN_OBSERVATION,andymc737,1,,,2024,8,10,Australia,AU,Queensland,-27.905955,153.371262,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to Tristania & Wisteria Woodland along line of townhouses,2024,3,31,Australia,AU,Queensland,-27.525354,153.093437,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,10,22,Australia,AU,South Australia,-34.867165,138.664624,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - Millie,2023,10,4,Australia,AU,Queensland,-27.527183,153.111073,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,4,9,Australia,AU,Queensland,-27.546541,153.06764,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near e block,2024,4,14,Australia,AU,Queensland,-27.526118,153.090762,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,Sleeping in a small tallowwood,2024,3,27,Australia,AU,Queensland,-27.555555,153.060258,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,6,27,Australia,AU,South Australia,-34.892016,138.717001,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,Missed the first 10-15 secs of this very long call. Presumably the same animal we heard calling over about 3 hours and seemed to be moving up and down the length of the Park.,2022,11,22,Australia,AU,Queensland,-27.510559,153.069918,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,4,19,Australia,AU,South Australia,-35.004931,138.642197,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2024,6,13,Australia,AU,Queensland,-27.55123,153.05756,EPSG:4326 +HUMAN_OBSERVATION,Owen Gale,1,,,2021,5,2,Australia,AU,South Australia,-34.918188,138.725019,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,She is still here. Previous observations at: https://www.inaturalist.org/observations/176560494,2023,8,16,Australia,AU,Victoria,-37.87478,142.290922,EPSG:4326 +HUMAN_OBSERVATION,gigi133,1,,,2022,5,5,Australia,AU,New South Wales,-28.960353,153.401956,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,19,Australia,AU,Queensland,-27.528452,153.093523,EPSG:4326 +HUMAN_OBSERVATION,sandragall,1,,,2022,10,28,Australia,AU,Queensland,-27.653275,153.192128,EPSG:4326 +HUMAN_OBSERVATION,itara,1,,,2024,4,11,Australia,AU,Victoria,-38.317801,142.360924,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Observation by Lesley, photo taken with mobile phone.",2022,6,27,Australia,AU,New South Wales,-28.275333,153.394252,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland near entrance,2024,1,14,Australia,AU,Queensland,-27.527871,153.092521,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,11,4,Australia,AU,Queensland,-27.562326,152.106845,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2023,7,11,Australia,AU,Queensland,-27.914463,152.666292,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,5,29,Australia,AU,New South Wales,-33.076755,151.095467,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,1,Australia,AU,Queensland,-27.527077,153.090671,EPSG:4326 +HUMAN_OBSERVATION,Yulia Glazunova,1,,,2024,9,28,Australia,AU,South Australia,-35.037992,138.733943,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,5,11,Australia,AU,Queensland,-27.525728,153.091938,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Observed by Anthony Pass. Forwarded by email.,2021,12,5,Australia,AU,Queensland,-26.493446,151.868709,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,11,16,Australia,AU,Victoria,-38.671478,146.164121,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2024,5,26,Australia,AU,South Australia,-35.004135,138.64783,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,10,18,Australia,AU,Queensland,-27.258378,152.045051,EPSG:4326 +HUMAN_OBSERVATION,Michelle Casanova,1,,,2023,11,1,Australia,AU,Victoria,-38.311913,141.480515,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,10,18,Australia,AU,Victoria,-38.671017,146.163728,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2023,12,18,Australia,AU,Queensland,-26.199667,151.772632,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2022,9,21,Australia,AU,Queensland,-27.533404,153.038565,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,9,7,Australia,AU,New South Wales,-28.254001,153.376807,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,"Sick female koala, which has chlamydia came to neighbours and then they caught it and came to us so we put in the trailer with a tarp draped over it. Called the koala vet we knew of and they came to pick it up. As they were picking up the first koala they spotted another one too also sick with chlamydia.",2023,1,14,Australia,AU,Queensland,-26.975038,152.078767,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Nice to see one out here,2024,3,4,Australia,AU,Queensland,-27.038894,153.084778,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Stained, not wet bum",2023,11,14,Australia,AU,Queensland,-27.527451,153.110051,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,5,22,Australia,AU,Queensland,-27.551018,153.057528,EPSG:4326 +HUMAN_OBSERVATION,pamwhetnall,1,,,2021,5,3,Australia,AU,South Australia,-34.855913,138.718003,EPSG:4326 +HUMAN_OBSERVATION,ametcalf,1,,Adult male Koala with red left ear tag spotted in same tree as young male with red ear tag (7968) and a female with a yellow tag.,2024,10,29,Australia,AU,Queensland,-27.287668,152.997163,EPSG:4326 +HUMAN_OBSERVATION,kushlag,1,,Killed by car. Local pulled up and said another was killed right here a couple of weeks ago,2024,3,6,Australia,AU,Queensland,-27.9784,152.001389,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,3,7,Australia,AU,New South Wales,-29.546282,150.564192,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,12,Australia,AU,Queensland,-27.529528,153.105252,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,Severe chlamydia. Collected by carer for assessment. Young female. Undergoing treatment.,2023,6,4,Australia,AU,Queensland,-27.330788,151.93283,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"12/8/2024: 8:30-8:50am diurnal counts 20 minutes 1 observer 0 koalas; 16:10- 16:25 2 observers JoT JiT west side of track 0 koalas 15 minutes ( 1 missed by both); 17:10-17:35 20 minutes 2 observers 1 koala seen by 1 (on track from creek - missed earlier). Spotlight: 18:45-19:05 2 observers 1 koala seen by 1 (no eye shine). 1 btp, 4 egk, 1 frogmouth. Raining intermittently throughout the day. Visibility poor.",2024,8,12,Australia,AU,Queensland,-27.823612,152.992516,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,2,17,Australia,AU,Queensland,-27.524455,153.092997,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,8,Australia,AU,Queensland,-27.544745,153.072635,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Male. Adult. Possible Chlamydia and definite misadventure. Rescued and observed by Wendy Taylor. Submitted via msg Released 22.10.2024. Record: https://www.inaturalist.org/observations/248675905,2024,10,5,Australia,AU,Queensland,-26.188289,152.073966,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,28,Australia,AU,South Australia,-34.87622,138.78328,EPSG:4326 +HUMAN_OBSERVATION,Fi,1,,"Not captive. It was in the car park, not in an enclosure or a securely fenced area",2024,6,9,Australia,AU,Victoria,-38.005427,144.411769,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,"Transect 1 LNSF FoN. Scat found in active area, smells of gum leaves, very dense, see photo for cross section",2023,7,8,Australia,AU,New South Wales,-30.561986,152.997868,EPSG:4326 +HUMAN_OBSERVATION,Sharon Dodd,1,,,2022,3,20,Australia,AU,Victoria,-38.360103,146.387939,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2021,12,1,Australia,AU,South Australia,-34.903152,138.704371,EPSG:4326 +HUMAN_OBSERVATION,Alison Peel,1,,,2023,4,2,Australia,AU,Queensland,-27.538186,153.036636,EPSG:4326 +HUMAN_OBSERVATION,andrew_bird,1,,,2023,11,13,Australia,AU,New South Wales,-28.82162,153.302054,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Deceased mum and joey.,2020,2,18,Australia,AU,Victoria,-37.654354,143.885331,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2024,3,8,Australia,AU,Queensland,-26.147144,151.864085,EPSG:4326 +HUMAN_OBSERVATION,Lenny G,1,,,2024,1,19,Australia,AU,Victoria,-38.13045,145.269183,EPSG:4326 +HUMAN_OBSERVATION,Anneke Logan,1,,,2024,11,16,Australia,AU,Queensland,-27.262533,152.046905,EPSG:4326 +HUMAN_OBSERVATION,pdw181,1,,,2023,12,2,Australia,AU,Victoria,-37.491522,144.549013,EPSG:4326 +HUMAN_OBSERVATION,laurenbeekman,1,,Mating calls,2021,11,26,Australia,AU,Queensland,-27.736511,153.189971,EPSG:4326 +HUMAN_OBSERVATION,Fred Gibbs,1,,LOCATION: Magnetic Island. Off the coast of Townsville City in Australia.,2024,5,26,Australia,AU,Queensland,-19.138966,146.828209,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Female - yellow tag right ear #768,2023,4,25,Australia,AU,Queensland,-27.52736,153.091284,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,7,13,Australia,AU,Queensland,-27.51129,153.084122,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,"tagged female, tag out of focus =(",2022,12,23,Australia,AU,Queensland,-27.545974,153.073268,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,MALE,,2024,10,19,Australia,AU,Queensland,-27.82327,152.992553,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,"Survey 2 LNSF FoN. Mixed fresh and older Koala markings on Grey Gum, known area (BioNet transect 2021)",2023,7,16,Australia,AU,New South Wales,-30.559916,152.992851,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,"Survey 1 LNSF FoN. Numerous koala markings on Grey Gum, known area (BioNet transect 2021)",2023,7,11,Australia,AU,New South Wales,-30.559935,152.993555,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Large number of koala scat under a Eucalyptus pyrocarpa,2023,7,22,Australia,AU,New South Wales,-32.737703,152.059036,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Two koalas same tree Front of nursery,2023,5,27,Australia,AU,Queensland,-27.52717,153.091717,EPSG:4326 +HUMAN_OBSERVATION,Alex,1,,3 sighthings within 6 days,2022,6,1,Australia,AU,Queensland,-27.554812,153.075426,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,8,1,Australia,AU,Victoria,-38.671141,146.164556,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Scribbly gum,2020,6,12,Australia,AU,Queensland,-27.551096,153.044265,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,1,Australia,AU,Queensland,-27.527197,153.114326,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Survey 1 LNSF FoN. Very fresh adult koala markings on Grey Gum. Both fresh and older markings on tree. Known area (BioNet transect 2021),2023,7,11,Australia,AU,New South Wales,-30.560181,152.993723,EPSG:4326 +HUMAN_OBSERVATION,oliverfamily,1,,,2023,7,13,Australia,AU,Queensland,-27.416781,151.937784,EPSG:4326 +HUMAN_OBSERVATION,livswain,1,,,2024,3,24,Australia,AU,Victoria,-38.786945,143.63768,EPSG:4326 +HUMAN_OBSERVATION,elsiebaker,1,FEMALE,Mum and joey,2022,11,24,Australia,AU,New South Wales,-29.430515,150.884931,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2023,9,9,Australia,AU,South Australia,-34.924012,138.693237,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Stringybark,2020,5,29,Australia,AU,Queensland,-27.55009,153.057294,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,9,Australia,AU,Queensland,-27.552378,153.055938,EPSG:4326 +HUMAN_OBSERVATION,Steve Dew,1,,,2022,3,16,Australia,AU,Victoria,-38.038579,141.246167,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,24,Australia,AU,Queensland,-27.527275,153.108856,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,10,Australia,AU,Queensland,-27.528418,153.092717,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Videoed and observed by Ashley Furler. Submitted via FB.,2024,8,14,Australia,AU,Queensland,-26.103026,151.449032,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,,2023,12,15,Australia,AU,Victoria,-38.355205,141.604767,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,A very chilled position :),2023,12,3,Australia,AU,New South Wales,-34.10159,150.821665,EPSG:4326 +HUMAN_OBSERVATION,schoey,1,,,2022,10,1,Australia,AU,Victoria,-38.383205,145.276514,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female + Joey. Observed by Wendy Taylor. Submitted via msg.,2024,10,16,Australia,AU,Queensland,-26.387789,151.795193,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2023,8,10,Australia,AU,Victoria,-37.049759,145.275552,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland - opposite side of gully midway down Lola and joey,2023,10,2,Australia,AU,Queensland,-27.52755,153.09275,EPSG:4326 +HUMAN_OBSERVATION,deejayr,1,,,2022,8,24,Australia,AU,Queensland,-26.874379,152.586432,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,3,24,Australia,AU,Queensland,-27.527087,153.090841,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Local koala mum holding onto her new joey.,2023,7,9,Australia,AU,Queensland,-27.284096,152.999934,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,12,Australia,AU,Queensland,-27.724378,151.531067,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,8,Australia,AU,Queensland,-27.545808,153.07328,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,Summers farm up on the hill,2021,11,28,Australia,AU,Queensland,-27.726306,151.535232,EPSG:4326 +HUMAN_OBSERVATION,Alba Fulmo,1,,,2023,1,11,Australia,AU,Queensland,-27.510917,153.086717,EPSG:4326 +HUMAN_OBSERVATION,stanley8m,1,,,2023,1,6,Australia,AU,Victoria,-38.668038,143.860706,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2022,12,23,Australia,AU,Queensland,-27.429088,153.534622,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,5,5,Australia,AU,Queensland,-27.528075,153.092807,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,4,14,Australia,AU,Queensland,-27.524877,153.093542,EPSG:4326 +HUMAN_OBSERVATION,shibui,1,,,2021,3,24,Australia,AU,Victoria,-37.550652,149.739797,EPSG:4326 +HUMAN_OBSERVATION,Belinda,1,MALE,,2022,1,14,Australia,AU,Queensland,-25.294935,152.69783,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2022,12,15,Australia,AU,Queensland,-28.094988,152.83699,EPSG:4326 +HUMAN_OBSERVATION,jraus,1,,,2024,11,7,Australia,AU,South Australia,-35.028811,138.571595,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In gully near Aldi gates,2024,7,3,Australia,AU,Queensland,-27.52617,153.093016,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,17,Australia,AU,South Australia,-34.892976,138.721332,EPSG:4326 +HUMAN_OBSERVATION,Cameron Edwards,1,,,2021,12,11,Australia,AU,South Australia,-35.079501,138.575211,EPSG:4326 +HUMAN_OBSERVATION,timfreiszmuth,1,,,2024,3,17,Australia,AU,New South Wales,-28.637181,153.629186,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2021,10,17,Australia,AU,New South Wales,-34.121139,150.987609,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2022,6,4,Australia,AU,Queensland,-27.2262,153.072619,EPSG:4326 +HUMAN_OBSERVATION,Andrew Fraser,1,,,2023,1,22,Australia,AU,Victoria,-38.134102,147.078922,EPSG:4326 +HUMAN_OBSERVATION,einadia,1,,,2023,12,4,Australia,AU,South Australia,-34.915488,138.685653,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear - Bozo,2023,6,27,Australia,AU,Queensland,-27.526602,153.109249,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,15,Australia,AU,Queensland,-27.52973,153.105237,EPSG:4326 +HUMAN_OBSERVATION,lochiecharlton,1,,,2022,11,27,Australia,AU,South Australia,-34.891032,138.711541,EPSG:4326 +HUMAN_OBSERVATION,noddyblue,1,,,2023,1,10,Australia,AU,Victoria,-36.8777,145.407745,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Inside nursery grounds,2024,6,23,Australia,AU,Queensland,-27.52726,153.092187,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,1,24,Australia,AU,Queensland,-27.41375,152.003067,EPSG:4326 +HUMAN_OBSERVATION,Dave Fleming,1,FEMALE,Mother and Joey,2023,9,9,Australia,AU,Queensland,-27.282517,152.924016,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,MALE,,2024,11,3,Australia,AU,South Australia,-34.891458,138.71919,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" male in E. calliginosa. Has been calling at night for past few nights. Also seen on neighbouring block to the North (off Adina Road) on Sunday 4 October.",2020,10,14,Australia,AU,New South Wales,-30.520827,151.519396,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2023,6,30,Australia,AU,Queensland,-27.823428,152.992097,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,8,27,Australia,AU,South Australia,-34.998466,138.643676,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Second koala near here today First seen hiding next to trunk then climbed out on branch Likely male Boom seen around here before. Update June2 male confirmed as Boom East of yesterdays tree has moved towards female koala found yesterday. No sign of her today,2024,6,1,Australia,AU,Victoria,-37.859965,144.275745,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,13,Australia,AU,South Australia,-34.888734,138.728089,EPSG:4326 +HUMAN_OBSERVATION,light-up-gold,1,,"Habitat shot + audio. Caught tail end of extremely vigorous growling. 3 koalas could be heard, many seen in area",2023,2,18,Australia,AU,Victoria,-38.792152,143.616219,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On Lophostemon confertus.,2023,7,16,Australia,AU,Queensland,-27.544261,153.071821,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,Male and female making noises at each other from separate trees.,2023,9,26,Australia,AU,New South Wales,-34.101917,150.821655,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,This koala was spotted by my friend Rachel,2024,2,25,Australia,AU,Queensland,-27.635454,152.892157,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2023,12,26,Australia,AU,New South Wales,-31.44039,152.905966,EPSG:4326 +HUMAN_OBSERVATION,kg1962,1,,Koala scat,2024,7,31,Australia,AU,Victoria,-38.360163,146.391113,EPSG:4326 +HUMAN_OBSERVATION,JF,1,,,2023,7,30,Australia,AU,Queensland,-27.274941,152.93514,EPSG:4326 +HUMAN_OBSERVATION,trusty,1,FEMALE,"Road kill, female, large tick on ear",2020,3,21,Australia,AU,Victoria,-38.746872,143.27182,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Road kill 12.9-10.7,2022,10,8,Australia,AU,Queensland,-27.565731,151.997803,EPSG:4326 +HUMAN_OBSERVATION,mgh073,1,,,2024,9,12,Australia,AU,Victoria,-38.666595,143.85878,EPSG:4326 +HUMAN_OBSERVATION,antjames,1,,,2021,12,21,Australia,AU,South Australia,-34.838875,138.741225,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2023,4,26,Australia,AU,Queensland,-27.732862,151.517792,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,,2024,6,24,Australia,AU,Queensland,-27.1768,152.04045,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,1,6,Australia,AU,Queensland,-27.527698,153.09354,EPSG:4326 +HUMAN_OBSERVATION,kittsw,1,,Has ear tag "AD437"?,2023,1,23,Australia,AU,South Australia,-34.868723,138.655361,EPSG:4326 +HUMAN_OBSERVATION,eklemp,1,,,2024,11,5,Australia,AU,Queensland,-27.496503,153.398728,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,MALE,Healthy male koala - Silverleigh,2023,11,2,Australia,AU,Queensland,-27.376072,151.771143,EPSG:4326 +HUMAN_OBSERVATION,Rusty,1,,,2024,10,4,Australia,AU,South Australia,-34.711863,138.915244,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania and Wisteria woodland - in tree near house with white fence Cindy Crawford and joey,2023,8,22,Australia,AU,Queensland,-27.52471,153.093641,EPSG:4326 +HUMAN_OBSERVATION,Reiner Richter,1,,,2020,1,9,Australia,AU,Victoria,-36.19391,145.255769,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,Two koalas in the same tree. Along with the one in the little tree - that was 3 for the day within 500m.,2023,11,19,Australia,AU,Queensland,-27.325928,151.93373,EPSG:4326 +HUMAN_OBSERVATION,jseilsmuscat,1,,,2021,12,30,Australia,AU,Queensland,-27.87442,153.079066,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Female in Eucalyptus propinqua/major.,2021,11,21,Australia,AU,Queensland,-27.54682,153.038073,EPSG:4326 +HUMAN_OBSERVATION,rubbery,1,,Walking along footpath. It later crossed to a Pepper Tree on west side at Bus stop 19C,2021,9,6,Australia,AU,South Australia,-34.914107,138.677174,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,8,6,Australia,AU,Queensland,-27.649963,151.716478,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Observation by Bill Worden from Meringandan road verge tree. Meringandan. Record shared with Toowoomba Koala and Wildlife Rescue,2022,11,20,Australia,AU,Queensland,-27.424801,151.893686,EPSG:4326 +HUMAN_OBSERVATION,brucewa,1,,,2021,9,16,Australia,AU,New South Wales,-28.274384,153.444305,EPSG:4326 +HUMAN_OBSERVATION,gggpellas,1,MALE,,2022,2,27,Australia,AU,Victoria,-38.551811,143.629508,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,10,20,Australia,AU,South Australia,-34.892326,138.72194,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,MALE,,2024,2,19,Australia,AU,Queensland,-27.358436,152.074583,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2023,5,17,Australia,AU,South Australia,-35.771973,136.85792,EPSG:4326 +HUMAN_OBSERVATION,cooleigh,1,,,2023,7,30,Australia,AU,Queensland,-27.632697,151.526337,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,12,19,Australia,AU,Queensland,-27.527115,153.091568,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2021,5,13,Australia,AU,Queensland,-27.562278,152.10663,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2023,10,25,Australia,AU,Queensland,-27.52951,153.102601,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,FEMALE,Female koala with joey in Eucalyptus melanophloia. In one of the photos joey's arm can be seen.,2023,7,6,Australia,AU,Queensland,-27.908664,152.627876,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown tree,2020,8,20,Australia,AU,Queensland,-27.528156,153.048593,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed at the petrol station by Wendy Taylor. Submitted via msg.,2024,10,30,Australia,AU,Queensland,-26.177982,151.691441,EPSG:4326 +HUMAN_OBSERVATION,fraserj09,1,,,2024,9,13,Australia,AU,Victoria,-38.203006,141.772587,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland Mother - pouch with joey clearly visible,2024,5,12,Australia,AU,Queensland,-27.528002,153.093382,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2023,5,11,Australia,AU,Victoria,-38.373424,145.314683,EPSG:4326 +HUMAN_OBSERVATION,Simon Grove (TMAG),1,,"Koala Phascolarctos cinereus, Magnetic Island, Queensland, July 2023",2023,7,18,Australia,AU,Queensland,-19.124196,146.870437,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear Mother and joey,2023,11,14,Australia,AU,Queensland,-27.528378,153.092807,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Tag 3143 Female,2022,12,22,Australia,AU,Queensland,-27.54589,153.073212,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,"This female was so active - starting in a camphor laurel, moving to another camphor laurel via intertwining branches & ending up in a gum.",2023,10,11,Australia,AU,Queensland,-27.528998,153.106203,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Next to e block Barbara Dart,2024,7,6,Australia,AU,Queensland,-27.52666,153.090923,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,Appears healthy - potentially female,2023,4,12,Australia,AU,Queensland,-27.551257,153.059548,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,6,Australia,AU,South Australia,-34.893207,138.716617,EPSG:4326 +HUMAN_OBSERVATION,ryan_fritsch,1,,,2023,8,10,Australia,AU,Queensland,-26.797726,151.16237,EPSG:4326 +HUMAN_OBSERVATION,teripschool,1,,,2023,12,7,Australia,AU,Victoria,-36.922567,145.475113,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2024,1,10,Australia,AU,Queensland,-26.36268,151.814643,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,8,Australia,AU,South Australia,-34.8917,138.731564,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult male. Healthy. Observed by Monica Pearson. Submitted by Denise Shaw via email.,2023,1,2,Australia,AU,Queensland,-26.637757,152.012821,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,10,22,Australia,AU,New South Wales,-28.260838,153.399107,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe cavendish road Mother and joey a little away from mum Maisie and joey - yellow tag visible,2023,11,26,Australia,AU,Queensland,-27.526694,153.090414,EPSG:4326 +HUMAN_OBSERVATION,insiderelic,1,,In an Eucalyptus obliqua.,2024,7,17,Australia,AU,South Australia,-34.991376,138.70853,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,7,30,Australia,AU,Queensland,-27.549207,153.059278,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Angophora leiocarpa,2024,2,17,Australia,AU,Queensland,-27.551714,153.057672,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.38128,145.313217,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Eucalyptus microcorys,2021,10,5,Australia,AU,Queensland,-27.54623,153.05895,EPSG:4326 +HUMAN_OBSERVATION,michikomarty,1,,out on the road,2021,11,28,Australia,AU,Queensland,-27.707019,151.517539,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,14,Australia,AU,Queensland,-27.688948,151.572287,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,7,21,Australia,AU,Queensland,-27.546924,153.07414,EPSG:4326 +HUMAN_OBSERVATION,kaella_l,1,,,2024,11,23,Australia,AU,Victoria,-37.908777,147.754463,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to nursery,2024,3,22,Australia,AU,Queensland,-27.527231,153.092204,EPSG:4326 +HUMAN_OBSERVATION,bridgetallan,1,,"2 adult, 1 juvenile",2024,11,5,Australia,AU,Victoria,-37.561313,149.760733,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,,2023,10,1,Australia,AU,Queensland,-27.508962,153.069469,EPSG:4326 +HUMAN_OBSERVATION,margadelie,1,,,2023,1,3,Australia,AU,South Australia,-34.953594,138.671007,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,MALE,,2024,3,1,Australia,AU,New South Wales,-34.751112,146.551605,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear of Woodland area near seton college,2023,10,29,Australia,AU,Queensland,-27.52842,153.092537,EPSG:4326 +HUMAN_OBSERVATION,Ash,1,,,2023,10,11,Australia,AU,Queensland,-27.508246,153.081211,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,,2024,11,13,Australia,AU,Queensland,-27.528997,153.104808,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3119 Confirmed as Koala scat by OWAD Environment,2022,11,12,Australia,AU,Queensland,-27.49988,152.16197,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,9,1,Australia,AU,Queensland,-27.257246,152.046377,EPSG:4326 +HUMAN_OBSERVATION,Bruce McLennan,1,,,2021,3,3,Australia,AU,Queensland,-27.245117,152.184528,EPSG:4326 +HUMAN_OBSERVATION,aleckarcz,1,,min bebis,2024,5,19,Australia,AU,Queensland,-19.132276,146.868869,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,21,Australia,AU,South Australia,-34.887016,138.734187,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. 2 separate individuals observed at Wondai Racecourse. Observed by Anne-Marie Gibbs. Submitted via msg.,2022,1,31,Australia,AU,Queensland,-26.31327,151.882616,EPSG:4326 +HUMAN_OBSERVATION,Marie Tarrant,1,,observed adjacent to Lake Samsonvale on SEQW permit only land. Sighting reported on QWildife App,2023,8,29,Australia,AU,Queensland,-27.22268,152.8809,EPSG:4326 +HUMAN_OBSERVATION,JEM88789,1,,,2023,11,26,Australia,AU,Queensland,-27.51301,153.078398,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Healthy young female,2023,9,12,Australia,AU,Queensland,-27.537783,153.086853,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Male, clean rear end, in a Stringybark on volcanics",2024,2,10,Australia,AU,Queensland,-27.370953,152.028978,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark,2021,2,26,Australia,AU,Queensland,-27.55152,153.057869,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,Approaching a water pot in bushland during long dry period. LCA1886 (photo: Gordon Claridge).,2020,1,11,Australia,AU,Queensland,-27.495256,152.250014,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,28,Australia,AU,Queensland,-27.52615,153.090625,EPSG:4326 +HUMAN_OBSERVATION,kittsw,1,,"Three koalas in close proximity. This one was up a tree by itself, when the second one climbed up and bit its ears. The aggressive koala is obs 147059403 (male?). This individual also appears in that observation. The third Koala was obs 147059179.",2023,1,21,Australia,AU,South Australia,-34.876748,138.64811,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Reconyx HF2,2023,2,18,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,thylacoleo,1,,,2020,5,6,Australia,AU,Victoria,-38.628343,143.147295,EPSG:4326 +HUMAN_OBSERVATION,jaiden_in_toohey,1,,,2023,7,25,Australia,AU,Queensland,-27.548397,153.0448,EPSG:4326 +HUMAN_OBSERVATION,davidvrussell59,1,,,2023,7,9,Australia,AU,Victoria,-36.944812,145.533467,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Wondai section of the rail trail. Observed by Suzanne Williams. Submitted via FB,2023,8,21,Australia,AU,Queensland,-26.317833,151.872734,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,"Yellow ear tag, left ear. Having a late afternoon snack on Eucalyptus propinqua. then straight back to sleep",2024,11,8,Australia,AU,Queensland,-27.510462,153.069695,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In mum’s trees Possibly Maisie and joey,2023,10,15,Australia,AU,Queensland,-27.526422,153.090976,EPSG:4326 +HUMAN_OBSERVATION,Louis O'Neill,1,,"1 of 4 seen in Leis Park. An adult, looks healthy. reported to www.koalatracker.com.au",2023,11,2,Australia,AU,Queensland,-27.275661,152.98075,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2021,12,16,Australia,AU,South Australia,-34.86521,138.657203,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2023,4,18,Australia,AU,Victoria,-37.751359,143.905189,EPSG:4326 +HUMAN_OBSERVATION,tracyrout,1,,,2023,6,18,Australia,AU,Queensland,-27.50641,153.079084,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Sick female koala (conjunctivitis) reported by home owners. Successfully rescued.,2023,1,30,Australia,AU,Queensland,-27.075114,152.354338,EPSG:4326 +HUMAN_OBSERVATION,Kym Nicolson,1,,,2021,10,3,Australia,AU,South Australia,-35.001262,138.643693,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male koala #2 today Mid in messmate,2022,11,6,Australia,AU,Victoria,-37.84075,144.27626,EPSG:4326 +HUMAN_OBSERVATION,treegreen,1,MALE,,2021,1,15,Australia,AU,Queensland,-27.43465,153.530452,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,12,24,Australia,AU,Queensland,-27.52713,153.091849,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,"Image captured whilst on a spotlighting circuit, varying between 1.5 km to 3 km depending on track conditions, through a 20 ha block of predominantly Sedgy Riparian Woodland (EVC 198) in the Wombat State Forest, Lyonville.",2022,1,1,Australia,AU,Victoria,-37.392962,144.262827,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,In nursery grounds Mother with joey - paw visible,2024,7,21,Australia,AU,Queensland,-27.52811,153.092252,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,6,Australia,AU,South Australia,-34.893463,138.716819,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,5,5,Australia,AU,Queensland,-27.527186,153.092151,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Believe this is a male as he bellows a lot. Seems to be following closely around the brown female and joey,2020,10,7,Australia,AU,New South Wales,-28.253645,153.376616,EPSG:4326 +HUMAN_OBSERVATION,lisaandandrewr,1,,,2023,10,12,Australia,AU,Victoria,-36.86838,145.455003,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Numerous scar located under young tallowwood,2023,8,5,Australia,AU,New South Wales,-33.165669,151.24893,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,,2023,9,24,Australia,AU,Queensland,-27.490845,153.244662,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2022,6,12,Australia,AU,Queensland,-28.075221,152.835778,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,11,7,Australia,AU,Queensland,-27.550648,153.059709,EPSG:4326 +HUMAN_OBSERVATION,tpabg,1,,,2024,7,12,Australia,AU,Victoria,-38.28542,145.086136,EPSG:4326 +HUMAN_OBSERVATION,Marie Tarrant,1,,Koala (small female) noted to have chlamydia infection and rescued onsite by Koala Rescue Team (Pine Rivers) and taken to Koala Hospital for treatment to be returned to site if treatment is successful. Refer https://www.smithsonianmag.com/smart-news/australia-begins-vaccinating-hundreds-of-koalas-against-chlamydia-in-trial-180978900/?fbclid=IwAR0SVnNW9WHOglk4PtzRTNGBpAVrenGVQrC_8ahVSN_bAXiRFlHatczKht8,2022,1,2,Australia,AU,Queensland,-27.249316,152.824358,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2021,1,6,Australia,AU,Victoria,-37.923252,147.735358,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female. Unhealthy. Extremely underweight and presenting with symptoms of Chlamydia. Observed by Wendy Taylor. Submitted via msg Passed away evening of Wednesday 6th November 2024.,2024,11,4,Australia,AU,Queensland,-26.203681,151.886053,EPSG:4326 +HUMAN_OBSERVATION,michikomarty,1,,,2021,11,28,Australia,AU,Queensland,-27.71553,151.522689,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside tafe nursery rear entrance gates Mother and joey,2023,8,22,Australia,AU,Queensland,-27.527376,153.092056,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in smaller Eucalyptus tereticornis. Quite large. Couldn't tell if healthy or what sex.,2022,9,5,Australia,AU,Queensland,-28.000184,152.681412,EPSG:4326 +HUMAN_OBSERVATION,sandragall,1,,,2023,6,16,Australia,AU,Queensland,-27.928507,152.774648,EPSG:4326 +HUMAN_OBSERVATION,Huey,1,,,2023,7,16,Australia,AU,South Australia,-35.960359,136.809699,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,9,21,Australia,AU,New South Wales,-33.07652,151.095047,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,DECEASED,2020,8,16,Australia,AU,Victoria,-37.590268,143.902979,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2021,5,9,Australia,AU,Queensland,-27.98275,153.335015,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,Male koala Crusoe returns to one of his favourite trees Eucalyptus propinqua,2023,9,2,Australia,AU,Queensland,-27.414713,152.004472,EPSG:4326 +HUMAN_OBSERVATION,Isaac Clarey,1,,,2020,11,15,Australia,AU,Victoria,-38.521312,143.723219,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,9,Australia,AU,Queensland,-27.546649,153.074626,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,4,Australia,AU,Queensland,-27.527254,153.108142,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2023,12,23,Australia,AU,Queensland,-27.528054,153.092984,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,,2023,10,5,Australia,AU,Queensland,-27.550486,153.059891,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,Female found in one of her favourite trees.,2023,8,16,Australia,AU,Queensland,-27.414632,152.00434,EPSG:4326 +HUMAN_OBSERVATION,gwaham,1,,,2020,5,25,Australia,AU,New South Wales,-31.302037,150.020247,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Female. Injured. Motor vehicle collision. Displaced leg fracture. Euthanised. Observed by Denise Shaw. Submitted via email.,2023,10,19,Australia,AU,Queensland,-26.366665,151.773251,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Plan hon Stringybark,2021,11,4,Australia,AU,Queensland,-27.551496,153.058658,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,7,13,Australia,AU,New South Wales,-28.26029,153.40033,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear - & joey,2023,1,26,Australia,AU,Queensland,-27.529699,153.103292,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,13,Australia,AU,Queensland,-27.528412,153.113403,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female yellow tag RIGHT ear,2023,1,28,Australia,AU,Queensland,-27.529203,153.108931,EPSG:4326 +HUMAN_OBSERVATION,Val Palavikas,1,FEMALE,,2023,9,24,Australia,AU,Victoria,-38.319015,142.363119,EPSG:4326 +HUMAN_OBSERVATION,Casual Observer,1,,,2023,1,7,Australia,AU,Queensland,-27.14051,152.944058,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Make,2024,9,8,Australia,AU,Queensland,-27.527042,153.091715,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2022,12,12,Australia,AU,Queensland,-27.530253,153.103232,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,9,11,Australia,AU,South Australia,-34.998903,138.638452,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2022,3,3,Australia,AU,Queensland,-27.514047,153.083366,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Female. Male in second image is same as my previous sighting.,2021,1,11,Australia,AU,Victoria,-38.671263,146.164187,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,29,Australia,AU,Queensland,-27.403585,153.437519,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2022,1,14,Australia,AU,South Australia,-34.90517,138.614948,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In triangle area near cafeteria,2024,10,20,Australia,AU,Queensland,-27.527072,153.092113,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,Thanks Tracey from Yarran Farming,2021,11,28,Australia,AU,Queensland,-27.715276,151.520934,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,This tree is like a super highway I've never seen scratch marks like this literally 100s,2022,10,9,Australia,AU,Queensland,-28.216728,152.865285,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,"Has a tag, couldn’t get the number, how many tagged Koalas on my Gravatt???",2022,10,12,Australia,AU,Queensland,-27.545147,153.072287,EPSG:4326 +HUMAN_OBSERVATION,Gawain,1,,Two in the same tree,2024,7,1,Australia,AU,Victoria,-38.376753,145.314079,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,3,15,Australia,AU,Queensland,-27.552963,153.053979,EPSG:4326 +HUMAN_OBSERVATION,colbs24,1,,,2024,10,3,Australia,AU,Queensland,-27.700378,153.191568,EPSG:4326 +HUMAN_OBSERVATION,Kelana Arraiza,1,,,2023,2,17,Australia,AU,Queensland,-27.922575,153.237488,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Cooby Dam - Loveday Cove. Two koalas seen and photographed by Kim Shoesmith for Toowoomba Koala & Wildlife Rescue.,2022,11,5,Australia,AU,Queensland,-27.391244,151.943759,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park - on corner tree on it’s own,2024,3,17,Australia,AU,Queensland,-27.525189,153.092416,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,7,31,Australia,AU,Queensland,-27.53907,153.063541,EPSG:4326 +HUMAN_OBSERVATION,Brad,1,,,2020,12,11,Australia,AU,South Australia,-35.007143,138.655211,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,,2024,11,4,Australia,AU,Queensland,-27.527676,153.10986,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,Female koala on ground and then climbed up a huge yellow gum. Evelina koala well known in area,2022,12,5,Australia,AU,Victoria,-37.838327,144.284107,EPSG:4326 +HUMAN_OBSERVATION,caesia,1,,,2022,12,24,Australia,AU,South Australia,-35.058589,138.608628,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Very small koala - mother in a tree not far away,2023,3,14,Australia,AU,Queensland,-27.527325,153.092053,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Aldi gates gully,2024,9,20,Australia,AU,Queensland,-27.526057,153.09295,EPSG:4326 +HUMAN_OBSERVATION,Darcy O'Shea,1,,,2024,10,14,Australia,AU,South Australia,-34.88508,138.645057,EPSG:4326 +HUMAN_OBSERVATION,teripschool,1,,Noticed this fella when he early dropped a poo on me!,2023,11,14,Australia,AU,Victoria,-37.016178,145.553938,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,10,23,Australia,AU,Queensland,-27.527111,153.091417,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,9,Australia,AU,Queensland,-27.544505,153.072558,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Rescued and placed in care. Later released. Observed by Wendy Taylor. Submitted via msg.,2024,3,28,Australia,AU,Queensland,-26.217537,152.010284,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Male- testicles visible,2024,1,28,Australia,AU,Queensland,-27.527087,153.090636,EPSG:4326 +HUMAN_OBSERVATION,lmhead,1,,,2023,10,6,Australia,AU,Queensland,-27.514006,153.072972,EPSG:4326 +HUMAN_OBSERVATION,mishka-d,1,MALE,,2020,11,8,Australia,AU,Victoria,-38.355221,144.988815,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2023,9,23,Australia,AU,Queensland,-27.510526,153.069888,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - purple tag LEFT ear - Carl, tagged as a dispersing joey 7/3/2022 - son of Naomi",2024,4,10,Australia,AU,Queensland,-27.527283,153.111402,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,21,Australia,AU,Queensland,-27.542645,153.073386,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,Looks sick. Informed pine Rivers koala care of its location,2020,6,5,Australia,AU,Queensland,-27.225192,153.068644,EPSG:4326 +HUMAN_OBSERVATION,enekoazkue,1,,Adult with cub.,2023,1,14,Australia,AU,Victoria,-38.354312,141.603241,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,12,16,Australia,AU,South Australia,-34.864123,138.66641,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2024,3,11,Australia,AU,South Australia,-35.007924,138.673836,EPSG:4326 +HUMAN_OBSERVATION,lil_1,1,,,2021,12,17,Australia,AU,Victoria,-37.623067,144.095214,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,With back young,2024,9,15,Australia,AU,New South Wales,-34.755787,146.569703,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,27,Australia,AU,Queensland,-27.545958,153.074375,EPSG:4326 +HUMAN_OBSERVATION,Colin Trainor,1,,,2021,1,13,Australia,AU,Victoria,-37.224033,148.263035,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,3,28,Australia,AU,Victoria,-38.67151,146.164151,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Maisie B Near E block,2024,6,2,Australia,AU,Queensland,-27.52635,153.090763,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Emily,2023,1,19,Australia,AU,Queensland,-27.545841,153.073491,EPSG:4326 +HUMAN_OBSERVATION,Elspeth Swan,1,,,2024,2,2,Australia,AU,Victoria,-37.633631,144.088539,EPSG:4326 +HUMAN_OBSERVATION,amychasingbushstars,1,,,2022,11,16,Australia,AU,New South Wales,-32.024708,152.203155,EPSG:4326 +HUMAN_OBSERVATION,Hayley Troupe,1,,,2022,5,27,Australia,AU,Queensland,-26.869707,152.130525,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Mum and joey together.,2023,11,5,Australia,AU,Queensland,-27.284797,153.000139,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Maisie Yellow tag right ear 0768,2024,3,10,Australia,AU,Queensland,-27.526451,153.090499,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Koala scat,2022,9,21,Australia,AU,Victoria,-37.585991,143.904038,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,18,Australia,AU,South Australia,-34.836144,138.73374,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,Small koala walking away from a food tree through an area severely burnt in the 2019 bushfires a year before. LCA3033,2020,11,3,Australia,AU,Queensland,-27.832712,152.339059,EPSG:4326 +HUMAN_OBSERVATION,Scott Warner,1,,,2024,1,2,Australia,AU,Queensland,-27.295758,152.227416,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,Joey,2024,9,24,Australia,AU,Queensland,-27.221882,153.062165,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2021,2,7,Australia,AU,South Australia,-35.213959,138.708339,EPSG:4326 +HUMAN_OBSERVATION,nettsobs,1,,,2024,2,18,Australia,AU,Victoria,-37.522775,144.314781,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,10,20,Australia,AU,Queensland,-27.528067,153.092241,EPSG:4326 +HUMAN_OBSERVATION,Vanda Cummins,1,,,2024,7,28,Australia,AU,Victoria,-35.919654,145.675912,EPSG:4326 +HUMAN_OBSERVATION,Carissa,1,,,2023,1,14,Australia,AU,Queensland,-26.736536,152.941391,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Male koala - yellow tag left ear,2023,4,8,Australia,AU,Queensland,-27.527806,153.092654,EPSG:4326 +HUMAN_OBSERVATION,Amy Thomas,1,,,2024,7,7,Australia,AU,Queensland,-27.250419,153.066816,EPSG:4326 +HUMAN_OBSERVATION,neilbags,1,,,2020,6,15,Australia,AU,New South Wales,-28.264777,153.458758,EPSG:4326 +HUMAN_OBSERVATION,HR Nature,1,,Koala identified spotlighting in Passchendaele State Forest.,2024,6,9,Australia,AU,Queensland,-28.545567,151.812767,EPSG:4326 +HUMAN_OBSERVATION,cowboynath,1,,,2024,8,25,Australia,AU,Queensland,-27.766212,152.677963,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2020,3,22,Australia,AU,Victoria,-38.799865,143.481974,EPSG:4326 +HUMAN_OBSERVATION,koala54,1,,,2020,4,25,Australia,AU,South Australia,-34.894668,138.692012,EPSG:4326 +HUMAN_OBSERVATION,nsgwilliams,1,,,2024,1,11,Australia,AU,Victoria,-38.398932,145.103394,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,10,28,Australia,AU,New South Wales,-33.076364,151.095078,EPSG:4326 +HUMAN_OBSERVATION,tsymmo,1,,,2021,1,3,Australia,AU,Queensland,-27.515829,153.126878,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,,2023,3,19,Australia,AU,Queensland,-27.510921,153.070133,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2023,12,26,Australia,AU,Victoria,-36.897185,145.531375,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Near Aldi gates and red box Male scent gland visible and yellow tag left ear,2023,12,9,Australia,AU,Queensland,-27.526613,153.093175,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,17,Australia,AU,Queensland,-27.527179,153.090897,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,19,Australia,AU,Queensland,-27.542991,153.069769,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,,2024,9,1,Australia,AU,Queensland,-27.510472,153.070025,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,31,Australia,AU,South Australia,-34.89147,138.722078,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,2,1,Australia,AU,Queensland,-27.530024,153.1037,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,3 koalas in adjacent trees. This one circled in yellow,2024,1,3,Australia,AU,Queensland,-27.527277,153.108151,EPSG:4326 +HUMAN_OBSERVATION,hollycasey99,1,,,2023,12,27,Australia,AU,Victoria,-38.631112,145.750333,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,13,Australia,AU,Queensland,-27.52754,153.110343,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,8,29,Australia,AU,Queensland,-27.547583,153.058622,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Hunter Camera,2023,3,21,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,parwanfarm,1,,,2022,3,10,Australia,AU,Victoria,-37.710738,144.483865,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,18,Australia,AU,Queensland,-26.356143,151.738444,EPSG:4326 +HUMAN_OBSERVATION,alisha568,1,,,2024,5,3,Australia,AU,South Australia,-35.031669,138.570388,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2024,4,28,Australia,AU,South Australia,-35.158429,138.568556,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2023,1,2,Australia,AU,South Australia,-34.953441,138.686572,EPSG:4326 +HUMAN_OBSERVATION,footesea,1,,"#4 koala on the Pittsworth Koala Count, School Road transect. Healthy juvenile male.",2022,11,19,Australia,AU,Queensland,-27.805517,151.560242,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2024,6,22,Australia,AU,Queensland,-27.255755,152.046285,EPSG:4326 +HUMAN_OBSERVATION,HumbleKumara,1,,,2023,12,20,Australia,AU,Victoria,-38.755881,143.554299,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - red tag RIGHT ear - Cindy,2023,8,5,Australia,AU,Queensland,-27.527044,153.107374,EPSG:4326 +HUMAN_OBSERVATION,Lily Dun,1,,,2024,4,5,Australia,AU,Queensland,-19.120958,146.873537,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,"Survey 1 LNSF FoN. Numerous koala markings on Grey Gum, known area (BioNet transect 2021)",2023,7,11,Australia,AU,New South Wales,-30.560091,152.993624,EPSG:4326 +HUMAN_OBSERVATION,mikeahart,1,,,2024,4,1,Australia,AU,Victoria,-37.921857,147.728863,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2024,6,15,Australia,AU,New South Wales,-33.127431,151.243713,EPSG:4326 +HUMAN_OBSERVATION,Kevin,1,,,2024,10,26,Australia,AU,Queensland,-27.70799,152.935081,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2023,10,6,Australia,AU,Queensland,-27.527253,153.107201,EPSG:4326 +HUMAN_OBSERVATION,jesseaiden,1,,Excited to see the first baby koala in our yard in two years!,2023,9,9,Australia,AU,South Australia,-35.031267,138.737455,EPSG:4326 +HUMAN_OBSERVATION,Devon Earl,1,,,2023,11,16,Australia,AU,Queensland,-27.898677,153.37072,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.385292,145.31311,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2023,9,28,Australia,AU,South Australia,-34.814394,135.791614,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,MALE,"Healthy Male Koala - Farm bushland, Silverleigh Qld. Seen regularly in different trees on property. Observer Wayne & Miriam C for Toowoomba Koala and Wildllife Rescue",2022,11,6,Australia,AU,Queensland,-27.339692,151.779573,EPSG:4326 +HUMAN_OBSERVATION,Kevin Sparrow,1,,,2024,10,4,Australia,AU,Victoria,-38.420162,142.782745,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,13,Australia,AU,Queensland,-27.531871,153.10536,EPSG:4326 +HUMAN_OBSERVATION,emily_kinchin,1,,,2021,8,3,Australia,AU,Queensland,-27.507743,153.079736,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2021,2,24,Australia,AU,South Australia,-34.990619,138.629603,EPSG:4326 +HUMAN_OBSERVATION,Tony Kent,1,,Another travelling along Tarcombe Rd. Stopped for a break in the yard,2020,10,17,Australia,AU,Victoria,-36.930565,145.372105,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.374699,145.314438,EPSG:4326 +HUMAN_OBSERVATION,kdoust,1,,Adult male,2024,6,18,Australia,AU,Queensland,-27.33966,152.61388,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland near Seton,2023,11,11,Australia,AU,Queensland,-27.528525,153.09289,EPSG:4326 +HUMAN_OBSERVATION,qldkoalagirl,1,,,2024,11,2,Australia,AU,Queensland,-27.44475,151.957445,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,4,Australia,AU,Queensland,-27.528741,153.108984,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Rehabilitated male koala 1570. Collected and released.,2024,8,1,Australia,AU,Queensland,-27.539965,153.065514,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Monty,2024,7,26,Australia,AU,South Australia,-34.889783,138.722663,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,8,15,Australia,AU,Queensland,-27.548977,153.05953,EPSG:4326 +HUMAN_OBSERVATION,sueruffles,1,,,2024,9,21,Australia,AU,New South Wales,-34.762636,146.56328,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Male "Bald Ear" in E. viminalis. Also nearby the female "Spectacle Eyes".,2021,9,11,Australia,AU,New South Wales,-30.518807,151.520092,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,,2023,1,18,Australia,AU,Queensland,-27.506572,153.105619,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,4,5,Australia,AU,New South Wales,-28.259876,153.400804,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2020,6,6,Australia,AU,Victoria,-37.925314,147.729592,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,17,Australia,AU,Queensland,-27.82282,152.992775,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,Camera no. 5 Sclerophyll notes:,2021,8,31,Australia,AU,Queensland,-27.69515,152.08695,EPSG:4326 +HUMAN_OBSERVATION,travisblack,1,,,2023,10,13,Australia,AU,Queensland,-27.700662,153.188298,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,Koala ascending a ladder tree to reach the very wide food tree in the background. LCA3031,2020,11,15,Australia,AU,Queensland,-27.832712,152.339059,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Suspicious bulge - ? joey in pouch,2024,6,19,Australia,AU,Queensland,-27.528787,153.111322,EPSG:4326 +HUMAN_OBSERVATION,Garry French,1,,,2022,6,23,Australia,AU,Victoria,-38.318711,142.36318,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,10,4,Australia,AU,Queensland,-27.550583,153.054536,EPSG:4326 +HUMAN_OBSERVATION,theressa,1,,,2020,11,16,Australia,AU,Queensland,-27.165117,153.001664,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Gum tree. Edge of reserve,2022,5,9,Australia,AU,New South Wales,-34.767968,146.598412,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Dirty bum, rescued, likely male",2023,10,10,Australia,AU,Queensland,-27.145517,152.567014,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Female in Tasmanian Blue Gum,2021,10,26,Australia,AU,Victoria,-38.671213,146.163895,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,With Joey,2020,9,16,Australia,AU,South Australia,-34.999038,138.648306,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2023,1,12,Australia,AU,New South Wales,-34.094325,150.833467,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,10,21,Australia,AU,Victoria,-37.578886,143.893234,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2021,10,25,Australia,AU,South Australia,-34.970367,138.638092,EPSG:4326 +HUMAN_OBSERVATION,Anna Lanigan,1,,,2023,1,7,Australia,AU,Victoria,-38.665558,146.211242,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,3,16,Australia,AU,Queensland,-27.52685,153.090909,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,9,9,Australia,AU,Queensland,-27.528915,153.112446,EPSG:4326 +HUMAN_OBSERVATION,michikomarty,1,,Thank you Summers family,2021,11,28,Australia,AU,Queensland,-27.723887,151.554704,EPSG:4326 +HUMAN_OBSERVATION,Hayley P,1,,,2023,8,4,Australia,AU,Queensland,-27.374178,152.9304,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Sport n rec picnic area Mother and joey,2024,11,10,Australia,AU,Queensland,-27.525833,153.092434,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,11,25,Australia,AU,Victoria,-37.577982,143.87503,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Believe this may be the brown female and joey? Again in a small gumtree next to the lawn.,2020,9,27,Australia,AU,New South Wales,-28.253895,153.376965,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Male "Half Black Lip" in Angophora,2020,1,22,Australia,AU,New South Wales,-30.520949,151.517939,EPSG:4326 +HUMAN_OBSERVATION,suelee,1,,,2020,5,2,Australia,AU,Queensland,-27.328295,152.926966,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,30,Australia,AU,Queensland,-27.529098,153.107438,EPSG:4326 +HUMAN_OBSERVATION,serialist,1,,,2022,10,6,Australia,AU,Victoria,-38.670077,143.861147,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,4,Australia,AU,Queensland,-27.525843,153.090731,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"I was not sure who this was at first, thinking it might be a large male. Seen first at lunchtime. Watched off and on during the day and the last photos shows it is the female with the large joey! They had been apart all afternoon in spear trees!",2021,10,19,Australia,AU,New South Wales,-28.254197,153.376963,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,4,25,Australia,AU,Queensland,-27.527445,153.09134,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,7,12,Australia,AU,Victoria,-38.671405,146.163728,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,MALE,Male - very vocal,2024,8,31,Australia,AU,New South Wales,-28.254154,153.376882,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2023,9,19,Australia,AU,New South Wales,-29.893499,150.625656,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,Mother with joey in Eucalyptus tereticornis.,2024,5,31,Australia,AU,Queensland,-27.56237,152.106414,EPSG:4326 +HUMAN_OBSERVATION,Tim Bawden,1,,,2024,11,23,Australia,AU,Victoria,-38.357587,146.388533,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,7,15,Australia,AU,Queensland,-27.549193,153.051508,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,11,3,Australia,AU,Queensland,-27.529948,153.103605,EPSG:4326 +HUMAN_OBSERVATION,rodneya63,1,,Submitted on behalf of a relative,2023,10,7,Australia,AU,Queensland,-27.535437,153.276206,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,In a small brushbox tree,2023,3,17,Australia,AU,Queensland,-27.55156,153.057814,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,,2022,11,12,Australia,AU,Queensland,-27.728897,151.520404,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree on cnr Wisteria and Epacris Billy J,2023,7,22,Australia,AU,Queensland,-27.524041,153.091996,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,9,25,Australia,AU,New South Wales,-33.076344,151.095,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Forest Red Gum,2020,4,11,Australia,AU,Queensland,-27.534134,153.037345,EPSG:4326 +HUMAN_OBSERVATION,Jesse Saofia,1,,Scat piles,2023,6,18,Australia,AU,Victoria,-38.670192,143.857908,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Photo by Ray and Georgie Thornton, small koala in small tree outside office window",2020,2,29,Australia,AU,New South Wales,-28.25745,153.374145,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,2,29,Australia,AU,Queensland,-26.170486,151.763965,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,,2023,1,20,Australia,AU,Queensland,-27.553123,153.057898,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,,2023,10,18,Australia,AU,Victoria,-37.750648,142.027138,EPSG:4326 +HUMAN_OBSERVATION,koala_51,1,,,2023,7,29,Australia,AU,Queensland,-27.37511,151.959969,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,4,9,Australia,AU,Queensland,-27.552385,153.044413,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,4,29,Australia,AU,Queensland,-27.542547,153.055984,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,18,Australia,AU,South Australia,-34.891521,138.719347,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Trying to capture to take to vet.,2023,12,3,Australia,AU,Queensland,-27.257483,152.046265,EPSG:4326 +HUMAN_OBSERVATION,Karen Roberts,1,,,2023,3,24,Australia,AU,Queensland,-27.543438,152.858214,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Young male - was calling. First koala seen up here for well over a year (when the resident female became very sick and was euthanised). Happy day 🤗,2023,2,6,Australia,AU,Victoria,-38.67105,146.164689,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2020,6,8,Australia,AU,Victoria,-37.926147,147.725136,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,2 koalas a male and female in Euc. microcorys next to Creek,2021,1,18,Australia,AU,Queensland,-27.1699,152.988663,EPSG:4326 +HUMAN_OBSERVATION,David,1,,,2022,2,17,Australia,AU,South Australia,-34.872211,138.718581,EPSG:4326 +HUMAN_OBSERVATION,julie,1,,,2024,2,7,Australia,AU,Queensland,-27.790578,153.148386,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Mum and front bub.,2023,9,4,Australia,AU,Queensland,-27.255986,152.046071,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2022,9,10,Australia,AU,South Australia,-35.009517,138.739505,EPSG:4326 +HUMAN_OBSERVATION,Peter and Shelly,1,,,2023,11,18,Australia,AU,South Australia,-35.044142,138.681668,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,,2021,6,11,Australia,AU,South Australia,-34.993764,138.722661,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Maisie tree at front of F block Female koala yellow tag right ear,2023,5,27,Australia,AU,Queensland,-27.526464,153.091062,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,,2024,6,16,Australia,AU,Queensland,-27.620698,152.90127,EPSG:4326 +HUMAN_OBSERVATION,cattewell,1,FEMALE,Freshly dead female Koala in Canon Hill Bushland near golf course development.,2021,5,11,Australia,AU,Queensland,-27.475746,153.105038,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Maisie and joey,2024,10,20,Australia,AU,Queensland,-27.527473,153.091086,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,11,17,Australia,AU,Queensland,-27.551341,153.05738,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,3,Australia,AU,Queensland,-26.36268,151.814643,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Mid sized male. Conjunctivitis. Rescued,2024,10,29,Australia,AU,Queensland,-27.62202,152.901505,EPSG:4326 +HUMAN_OBSERVATION,Darren,1,,,2022,2,4,Australia,AU,Victoria,-37.545048,144.113097,EPSG:4326 +HUMAN_OBSERVATION,Sylvia Felicity Ann Haworth,1,FEMALE,"Mother and joey. Seen by numerous people in my group, and by other walkers in the park today.",2024,11,9,Australia,AU,Queensland,-27.54594,153.073374,EPSG:4326 +HUMAN_OBSERVATION,sawombat,1,,,2020,9,19,Australia,AU,South Australia,-34.764082,138.711029,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear Mother and joey,2023,11,12,Australia,AU,Queensland,-27.528451,153.092702,EPSG:4326 +HUMAN_OBSERVATION,mikew65,1,,,2024,2,15,Australia,AU,South Australia,-34.826944,135.686944,EPSG:4326 +HUMAN_OBSERVATION,Ryan Harvey,1,,One of multiple sighted,2023,6,5,Australia,AU,New South Wales,-31.945322,152.381844,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,https://www.facebook.com/groups/401322570308618/permalink/1738985613208967/?mibextid=5eVWNK,2023,8,6,Australia,AU,New South Wales,-28.651857,153.458084,EPSG:4326 +HUMAN_OBSERVATION,zinczebra,1,,,2022,8,20,Australia,AU,South Australia,-35.017479,138.65726,EPSG:4326 +HUMAN_OBSERVATION,BushLook,1,,Koala high above (too high for photo). Looks like a well-used tree with much scat and scratches on bark. Alerted to presence by call.,2023,10,19,Australia,AU,Victoria,-37.641448,143.901108,EPSG:4326 +HUMAN_OBSERVATION,captainonionhead,1,,,2024,10,21,Australia,AU,Victoria,-38.67038,143.855025,EPSG:4326 +HUMAN_OBSERVATION,Mike and Cathy Beamish,1,FEMALE,,2021,5,19,Australia,AU,Victoria,-38.387027,146.269463,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,"Male, yellow ear tag left ear, inside and at rear of ear. Calling and marking trunk as it climbed a large Eucalyptus tereticornis.",2024,6,22,Australia,AU,Queensland,-27.510701,153.070033,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,"Dead koala. Cause unknown, possibly fall given location under high outer branches of well grazed Euc tereticornis.",2023,9,24,Australia,AU,Queensland,-28.166261,152.599609,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,10,2,Australia,AU,Queensland,-27.528305,153.092332,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,FEMALE,,2023,8,30,Australia,AU,Queensland,-27.54413,153.07544,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,,2022,3,25,Australia,AU,South Australia,-35.05391,138.577411,EPSG:4326 +HUMAN_OBSERVATION,alisonwatson,1,MALE,,2023,5,1,Australia,AU,Victoria,-38.671536,143.860085,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,Female koala calling out,2023,12,26,Australia,AU,Queensland,-27.358393,152.07455,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,7,20,Australia,AU,Queensland,-27.525576,153.092659,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Red Tag right ear 3143 Emily and her Joey 😍,2024,8,3,Australia,AU,Queensland,-27.545619,153.073654,EPSG:4326 +HUMAN_OBSERVATION,Ash,1,,,2023,10,11,Australia,AU,Queensland,-27.5091,153.08684,EPSG:4326 +HUMAN_OBSERVATION,emkitten,1,,,2024,8,6,Australia,AU,Queensland,-27.649976,151.716488,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road - near top bus stop,2023,6,17,Australia,AU,Queensland,-27.527115,153.090676,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,5,26,Australia,AU,South Australia,-34.932681,138.707798,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2022,8,27,Australia,AU,Queensland,-27.54306,153.053805,EPSG:4326 +HUMAN_OBSERVATION,williamrterry,1,,,2021,11,5,Australia,AU,Victoria,-37.384367,144.595065,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,10,Australia,AU,Queensland,-27.527722,153.110445,EPSG:4326 +HUMAN_OBSERVATION,kdankiw,1,,,2021,5,21,Australia,AU,South Australia,-34.833733,138.734669,EPSG:4326 +HUMAN_OBSERVATION,mark_ley,1,,,2023,10,13,Australia,AU,New South Wales,-33.585988,149.381533,EPSG:4326 +HUMAN_OBSERVATION,mashalevene,1,,,2024,11,14,Australia,AU,South Australia,-35.009783,138.64148,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.015836,138.673014,EPSG:4326 +HUMAN_OBSERVATION,darrynhope,1,,This little koala was using our yard for a short cut to a tastier location 😊,2024,10,26,Australia,AU,New South Wales,-31.446622,152.908114,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,17,Australia,AU,South Australia,-34.892554,138.720228,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In Maisie’s release tree near E block,2024,6,1,Australia,AU,Queensland,-27.526427,153.091053,EPSG:4326 +HUMAN_OBSERVATION,Martin Rady,1,,,2020,7,18,Australia,AU,Queensland,-27.502169,153.258212,EPSG:4326 +HUMAN_OBSERVATION,Charles Dove,1,,,2021,1,31,Australia,AU,Queensland,-27.365938,152.180975,EPSG:4326 +HUMAN_OBSERVATION,janettroupe,1,,,2024,6,21,Australia,AU,Queensland,-27.258167,152.112528,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2023,1,6,Australia,AU,South Australia,-34.903237,138.706742,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,27,Australia,AU,Queensland,-27.40143,153.438686,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,17,Australia,AU,Queensland,-27.526965,153.091829,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland,2024,9,7,Australia,AU,Queensland,-27.52841,153.093046,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood (#00003),2021,2,12,Australia,AU,Queensland,-27.536373,153.039527,EPSG:4326 +HUMAN_OBSERVATION,Elspeth Swan,1,,,2023,6,6,Australia,AU,Victoria,-37.633679,144.088453,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,5,4,Australia,AU,Queensland,-27.33853,152.61255,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,16,Australia,AU,Queensland,-27.526044,153.09049,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,"What: Koala deceased beside the newly installed barriers on Mount Crosby Road. When: 1930 Friday 30th July 2021 Where: 5m from original crossing location, Eastern side of Bunya Street on Mount Crosby Road Photo Credit: @Karana Downs and Mount Crosby Residents",2021,7,30,Australia,AU,Queensland,-27.528783,152.840742,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy female koala.,2022,3,17,Australia,AU,Queensland,-27.412157,151.93683,EPSG:4326 +HUMAN_OBSERVATION,Andrew Gilbert,1,MALE,,2023,1,1,Australia,AU,Victoria,-38.240926,142.698262,EPSG:4326 +HUMAN_OBSERVATION,Mel,1,,,2020,4,25,Australia,AU,South Australia,-34.974736,138.644688,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,"One of two individuals, 50m apart, that I could see from the same spot.",2023,7,7,Australia,AU,Victoria,-38.354143,146.387664,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,15,Australia,AU,Queensland,-27.527895,153.109639,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,1,2,Australia,AU,Queensland,-27.527154,153.09266,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2023,3,6,Australia,AU,South Australia,-34.864108,138.66639,EPSG:4326 +HUMAN_OBSERVATION,Charles Dove,1,,,2021,9,12,Australia,AU,Queensland,-27.367816,152.179832,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,,2024,11,14,Australia,AU,Queensland,-27.600956,153.163347,EPSG:4326 +HUMAN_OBSERVATION,Croc-n-Gecko,1,,,2023,10,9,Australia,AU,South Australia,-35.615388,137.494533,EPSG:4326 +HUMAN_OBSERVATION,nicholascroft,1,,White's Hill Reserve. Mother and Joey.,2024,10,22,Australia,AU,Queensland,-27.514119,153.080428,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,10,26,Australia,AU,Queensland,-27.701124,153.189646,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,17,Australia,AU,Queensland,-27.530137,153.103551,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,23,Australia,AU,Queensland,-27.526817,153.108031,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,18,Australia,AU,Queensland,-27.525435,153.092676,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,"Healthy koala at Amity Point, in Straddie island Minjerribah.",2022,2,6,Australia,AU,Queensland,-27.40016,153.439202,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Female. Healthy. Observed by Kim Moore. Submitted by Denise Shaw via email.,2022,11,3,Australia,AU,Queensland,-26.403267,152.262629,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,12,26,Australia,AU,Queensland,-27.527196,153.091752,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,11,2,Australia,AU,Queensland,-27.527117,153.091683,EPSG:4326 +HUMAN_OBSERVATION,Mel,1,,,2020,9,28,Australia,AU,South Australia,-34.950531,138.674307,EPSG:4326 +HUMAN_OBSERVATION,mitchbagz,1,,,2021,4,24,Australia,AU,Victoria,-37.27693,144.310805,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,9,13,Australia,AU,Queensland,-27.917864,153.378866,EPSG:4326 +HUMAN_OBSERVATION,masonvisser7,1,,,2024,10,20,Australia,AU,Queensland,-27.497796,153.399635,EPSG:4326 +HUMAN_OBSERVATION,riazoeller,1,,,2020,10,3,Australia,AU,Queensland,-26.790077,152.549081,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,5,11,Australia,AU,Queensland,-27.527393,153.090995,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Mother and joey,2024,9,8,Australia,AU,Queensland,-27.527327,153.090734,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,MALE,,2023,8,2,Australia,AU,Victoria,-37.947855,144.41803,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Carolyn Stone. Submitted via FB (South Burnett Koala Watch),2023,11,21,Australia,AU,Queensland,-26.526248,151.344716,EPSG:4326 +HUMAN_OBSERVATION,michikomarty,1,,,2021,11,28,Australia,AU,Queensland,-27.708083,151.506038,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,Male koala ear tag Same one that was rescued and released. Hearing him calling regularly,2020,11,10,Australia,AU,Queensland,-27.169187,152.988983,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2021,12,28,Australia,AU,Queensland,-28.122101,151.295824,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,1,Australia,AU,Queensland,-26.155059,151.749835,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Not sure which koala this is. Seems to have an all black nose?,2020,9,30,Australia,AU,New South Wales,-28.254074,153.377579,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,12,2,Australia,AU,Queensland,-27.797997,151.567505,EPSG:4326 +HUMAN_OBSERVATION,Adrian,1,,,2021,11,16,Australia,AU,New South Wales,-28.850306,153.30608,EPSG:4326 +HUMAN_OBSERVATION,Braden McDonald,1,,,2021,10,28,Australia,AU,Queensland,-27.240482,152.854818,EPSG:4326 +HUMAN_OBSERVATION,Rosalie Lawrence,1,,,2023,11,25,Australia,AU,South Australia,-35.145573,138.582034,EPSG:4326 +HUMAN_OBSERVATION,Freedom Grower,1,,,2022,10,26,Australia,AU,Queensland,-27.582813,153.221192,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,22,Australia,AU,Queensland,-27.549094,153.072621,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"In Eucalyptus tereticornis, Boonah Rail Trail. Noticeably larger than second animal.",2024,7,3,Australia,AU,Queensland,-27.987377,152.677913,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,8,3,Australia,AU,Queensland,-27.546345,153.07446,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,Difficult to see but wedged in fork of tree. Koala was moving head but too far away to determine health or sex.,2023,3,30,Australia,AU,Queensland,-27.55123,153.05862,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2020,11,16,Australia,AU,New South Wales,-34.097136,150.828628,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"Sitting very high in a large stringy bark. Difficult to photograph due to vegetation. Believed to be the female ""Spectacle Eyes"", part of the usual group of koalas found here.",2021,8,30,Australia,AU,New South Wales,-30.520446,151.519282,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3135 (Photo: Bob Brown),2022,9,19,Australia,AU,Queensland,-27.53118,152.1833,EPSG:4326 +HUMAN_OBSERVATION,jaiden_in_toohey,1,,,2023,5,24,Australia,AU,Queensland,-27.548717,153.04905,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,4,23,Australia,AU,Queensland,-27.510946,153.087121,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Two koala confrontation with currawongs participating. "Half Black Lip" plus other unseen koala,2020,3,25,Australia,AU,New South Wales,-30.52016,151.520646,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,,2023,8,5,Australia,AU,Queensland,-28.211335,152.866225,EPSG:4326 +HUMAN_OBSERVATION,carolynavaisabel,1,,,2022,11,25,Australia,AU,South Australia,-35.012666,138.656039,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,7,Australia,AU,South Australia,-34.89099,138.730715,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3125 (Photo: Bob Brown),2022,4,21,Australia,AU,Queensland,-27.53118,152.1833,EPSG:4326 +HUMAN_OBSERVATION,kupham550,1,,,2023,10,18,Australia,AU,Victoria,-37.921368,147.732762,EPSG:4326 +HUMAN_OBSERVATION,jayneg,1,,Saw this koala Nebo.,2023,11,4,Australia,AU,Queensland,-21.71062,148.70233,EPSG:4326 +HUMAN_OBSERVATION,pelicanfan,1,MALE,,2022,11,12,Australia,AU,Queensland,-27.372359,152.112036,EPSG:4326 +HUMAN_OBSERVATION,kushlag,1,,"Female, no baby in pouch, killed by car, first koala seen by homeowner in 9 years (since moving in). 10kg?",2022,12,19,Australia,AU,Queensland,-27.557665,152.009215,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2023,12,24,Australia,AU,New South Wales,-34.101697,150.822678,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In picnic area near lower car parks and Aldi gate,2024,4,2,Australia,AU,Queensland,-27.527039,153.092194,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,17,Australia,AU,Queensland,-27.528427,153.10664,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Koala in tree.,2024,9,8,Australia,AU,Queensland,-27.283831,152.999392,EPSG:4326 +HUMAN_OBSERVATION,kittsw,1,,,2022,3,3,Australia,AU,South Australia,-34.868468,138.655269,EPSG:4326 +HUMAN_OBSERVATION,EcoPete,1,,Rod kill on Peak Downs Highway near Nebo. Large male,2022,8,17,Australia,AU,Queensland,-21.722981,148.7007,EPSG:4326 +HUMAN_OBSERVATION,muddy77,1,,,2023,12,16,Australia,AU,New South Wales,-34.02373,150.884797,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Reconyx HF2,2023,2,13,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,gaz_white,1,,,2020,2,22,Australia,AU,New South Wales,-35.821447,145.451932,EPSG:4326 +HUMAN_OBSERVATION,Euan Moore,1,,,2021,3,15,Australia,AU,Victoria,-37.892249,142.051549,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Scat near a Eucalypus tereticornis, and Corymbia intermedia. 12.3.7 Eucalyptus tereticornis, Casuarina cunninghamiana subsp. cunninghamiana +/- Melaleuca spp. fringing woodland",2023,6,24,Australia,AU,Queensland,-28.121114,152.675003,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block picnic area Jaye Mallet yellow tag right ear 1075,2023,11,13,Australia,AU,Queensland,-27.526143,153.090658,EPSG:4326 +HUMAN_OBSERVATION,genslattery,1,,,2021,10,31,Australia,AU,Victoria,-38.651463,146.202392,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"This is the second koala I have been watching which is at the other end and I will call No. 2. There are two that identify the tree it is in. Today it has moved form being in the same tree for 2 days, but on the same side.",2020,5,22,Australia,AU,New South Wales,-28.253036,153.376619,EPSG:4326 +HUMAN_OBSERVATION,pierce_clark,1,,,2024,9,13,Australia,AU,Queensland,-27.899878,153.371586,EPSG:4326 +HUMAN_OBSERVATION,bimbimbi,1,,,2024,1,17,Australia,AU,Victoria,-38.390781,142.834918,EPSG:4326 +HUMAN_OBSERVATION,Helma51,1,,,2024,11,2,Australia,AU,Queensland,-28.009206,153.26665,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,6,5,Australia,AU,South Australia,-34.902362,138.701535,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,10,16,Australia,AU,Queensland,-27.530026,153.105778,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,MALE,,2022,10,15,Australia,AU,South Australia,-35.011856,138.657029,EPSG:4326 +HUMAN_OBSERVATION,genslattery,1,,,2022,4,9,Australia,AU,Victoria,-38.656352,146.19849,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,9,8,Australia,AU,Queensland,-27.529831,153.110391,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.923122,147.731308,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,8,28,Australia,AU,Queensland,-27.91869,153.376018,EPSG:4326 +HUMAN_OBSERVATION,biancacar,1,,,2024,4,26,Australia,AU,Victoria,-38.756962,143.282438,EPSG:4326 +HUMAN_OBSERVATION,eanthony,1,FEMALE,Female Koala with Joey.,2021,11,7,Australia,AU,Victoria,-38.48782,146.203407,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,17,Australia,AU,Queensland,-27.525749,153.092059,EPSG:4326 +HUMAN_OBSERVATION,Emily Sonter,1,,,2023,11,24,Australia,AU,Queensland,-27.899753,153.318551,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear - known as Buster,2024,3,30,Australia,AU,Queensland,-27.529979,153.105445,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,2,12,Australia,AU,Queensland,-27.597237,151.889343,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,8,Australia,AU,Queensland,-27.526574,153.090722,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,"Girl, found resting in turpentine. Came back half hour, moved to Gray gum 10m away and eating leaves.",2024,1,31,Australia,AU,New South Wales,-34.059699,150.853083,EPSG:4326 +HUMAN_OBSERVATION,aburnell,1,,,2024,11,16,Australia,AU,South Australia,-35.31988,138.54132,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,7,7,Australia,AU,Queensland,-27.55141,153.058928,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,7,Australia,AU,Queensland,-27.52877,153.112385,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,Quite certain male and female in same tree.,2020,10,11,Australia,AU,Queensland,-27.53725,153.053909,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2023,8,21,Australia,AU,Queensland,-27.552149,153.054639,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,22,Australia,AU,South Australia,-34.932646,138.708259,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,5,17,Australia,AU,South Australia,-35.007155,138.65626,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Gully near Aldi gates,2024,9,10,Australia,AU,Queensland,-27.526368,153.0931,EPSG:4326 +HUMAN_OBSERVATION,kirstlebut,1,,Think is a male koala,2023,10,29,Australia,AU,Queensland,-27.566295,151.51732,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,9,22,Australia,AU,Queensland,-27.436108,152.997334,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,,2023,2,26,Australia,AU,Queensland,-27.596888,151.89609,EPSG:4326 +HUMAN_OBSERVATION,Scott W. Gavins,1,,,2021,8,7,Australia,AU,Queensland,-26.182702,152.528623,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,,2024,10,13,Australia,AU,Queensland,-27.510706,153.084789,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,Healthy adult,2021,9,13,Australia,AU,Queensland,-27.852309,153.217303,EPSG:4326 +HUMAN_OBSERVATION,mikeahart,1,,,2024,4,1,Australia,AU,Victoria,-37.921857,147.728863,EPSG:4326 +HUMAN_OBSERVATION,cherrikez,1,MALE,,2024,10,5,Australia,AU,Queensland,-27.83785,153.095627,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to cleaners donga,2024,6,8,Australia,AU,Queensland,-27.526884,153.091795,EPSG:4326 +HUMAN_OBSERVATION,Colette,1,,,2021,8,12,Australia,AU,Queensland,-19.129978,146.868665,EPSG:4326 +HUMAN_OBSERVATION,trudileigh,1,,,2021,10,3,Australia,AU,Victoria,-38.387312,145.131456,EPSG:4326 +HUMAN_OBSERVATION,Enya Hermsen,1,,,2023,7,15,Australia,AU,Queensland,-27.539213,153.044412,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,,In blue gum (Eucalyptus tereyicornis) DBH approx 35cm.,2023,1,20,Australia,AU,Queensland,-27.45717,152.401382,EPSG:4326 +HUMAN_OBSERVATION,Charles Dove,1,,,2024,4,19,Australia,AU,Queensland,-27.285249,151.513683,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2024,9,30,Australia,AU,Queensland,-27.569583,152.102692,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,4,26,Australia,AU,Queensland,-27.52679,153.090703,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Reconyx HF2,2023,1,23,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - red tag A5 RIGHT ear - Cindy,2023,10,30,Australia,AU,Queensland,-27.527245,153.108068,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2022,10,16,Australia,AU,South Australia,-34.692015,138.826933,EPSG:4326 +HUMAN_OBSERVATION,Tess,1,,,2024,8,5,Australia,AU,Queensland,-27.545289,153.072205,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,27,Australia,AU,South Australia,-34.887168,138.729462,EPSG:4326 +HUMAN_OBSERVATION,samduggan,1,,Mother and Joey. Look to be healthy. Stayed in tree two days.,2023,7,14,Australia,AU,Queensland,-26.750442,152.804466,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Brush Box,2020,10,9,Australia,AU,Queensland,-27.550073,153.05986,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,4,5,Australia,AU,South Australia,-35.015174,138.673323,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Spotted gum,2021,4,28,Australia,AU,Queensland,-27.550268,153.052608,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,10,14,Australia,AU,South Australia,-34.865973,138.656079,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,12,23,Australia,AU,Queensland,-27.528445,153.103187,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - tag RIGHT ear,2023,10,13,Australia,AU,Queensland,-27.527164,153.109858,EPSG:4326 +HUMAN_OBSERVATION,mikeahart,1,,,2024,4,1,Australia,AU,Victoria,-37.921857,147.728863,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,A Koala high up in a Tallowwood. Poor pictures because there were leaves in the way.,2020,9,12,Australia,AU,Queensland,-27.54387,153.059803,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,8,10,Australia,AU,Queensland,-27.52732,153.091489,EPSG:4326 +HUMAN_OBSERVATION,Nigel Marsh,1,FEMALE,,2021,12,12,Australia,AU,Queensland,-27.277654,152.928023,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Fresh Koala markings. FoN survey Tarkeeth1,2023,10,8,Australia,AU,New South Wales,-30.496838,152.914823,EPSG:4326 +HUMAN_OBSERVATION,Roger MacRaild,1,,,2024,3,21,Australia,AU,Victoria,-37.671753,144.023019,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Mother and joey,2024,9,5,Australia,AU,Queensland,-27.546061,153.072713,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,"Little RJ siting with mum Robin in the Angophera floribunda, a shade tree.",2023,10,31,Australia,AU,Queensland,-27.412663,152.003097,EPSG:4326 +HUMAN_OBSERVATION,lisaw1012,1,,,2022,11,4,Australia,AU,Queensland,-27.652554,152.898459,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Cafeteria and cleaners donga,2023,8,19,Australia,AU,Queensland,-27.527003,153.091836,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey,2022,8,22,Australia,AU,Queensland,-27.550348,153.061062,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,,On the side of the road. Healthy.,2022,4,3,Australia,AU,Queensland,-27.402293,153.443342,EPSG:4326 +HUMAN_OBSERVATION,southseas,1,,,2021,4,6,Australia,AU,South Australia,-35.120535,138.506139,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,The joey out on an adventure off mums back.,2021,8,5,Australia,AU,Queensland,-27.541188,153.076835,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery Mother and joey same tree different branches,2023,11,14,Australia,AU,Queensland,-27.527287,153.092052,EPSG:4326 +HUMAN_OBSERVATION,donno1001,1,,Some koalas at Whites Hill Reserve seem to have darker fur than others.,2023,11,4,Australia,AU,Queensland,-27.50788,153.077523,EPSG:4326 +HUMAN_OBSERVATION,Chris,1,,Scat samples collected for SRRC,2024,6,9,Australia,AU,Queensland,-27.917737,152.579385,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A18 RIGHT ear - Campo,2023,8,14,Australia,AU,Queensland,-27.527716,153.110354,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi & joey,2023,12,12,Australia,AU,Queensland,-27.530012,153.103838,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,Poor photo quite dark coming down from a bottle brush tree,2022,8,8,Australia,AU,Queensland,-28.038584,152.933041,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2023,7,16,Australia,AU,Queensland,-27.3588,152.075164,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,Sorry for the 1st pic. It was for exact location,2023,4,2,Australia,AU,Victoria,-37.750665,143.90378,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to woodland,2023,11,26,Australia,AU,Queensland,-27.527209,153.092269,EPSG:4326 +HUMAN_OBSERVATION,isabelle_bjo,1,,Possibly baby/ small female huddled on tree branch,2024,9,27,Australia,AU,Queensland,-27.156922,153.004093,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"2 x Adults, unknown sex. Healthy. One in a high tree and one in a low tree. Observed by Robyn McNally. Submitted via FB.",2024,5,14,Australia,AU,Queensland,-26.677008,152.02729,EPSG:4326 +HUMAN_OBSERVATION,bennypenny,1,,,2021,2,22,Australia,AU,South Australia,-35.045324,138.681379,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood 5m from feeding female koala hiding in MR vine,2020,6,23,Australia,AU,Queensland,-27.550936,153.057512,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,4,Australia,AU,Queensland,-27.526601,153.103336,EPSG:4326 +HUMAN_OBSERVATION,HR Nature,1,MALE,Male Koala located on the lower slopes of Passchendaele State Forest next to private property boundary. Contact me for me video / information regarding the record. RE: 13.12.2,2024,6,26,Australia,AU,Queensland,-28.526999,151.821431,EPSG:4326 +HUMAN_OBSERVATION,Konan Farrelly-Horsfall,1,,,2022,2,19,Australia,AU,Victoria,-35.904273,145.345282,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,2,17,Australia,AU,Queensland,-27.51496,153.082907,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,31,Australia,AU,South Australia,-34.890426,138.719949,EPSG:4326 +HUMAN_OBSERVATION,caitlinr1403,1,,,2023,10,7,Australia,AU,Queensland,-27.510852,153.082544,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,5,Australia,AU,South Australia,-34.890525,138.730815,EPSG:4326 +HUMAN_OBSERVATION,Monica Knipler,1,,Northern side of Tourist Road.,2020,3,23,Australia,AU,New South Wales,-34.513297,150.542274,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,21,Australia,AU,Queensland,-27.54557,153.073851,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,6,14,Australia,AU,Queensland,-26.394898,152.664025,EPSG:4326 +HUMAN_OBSERVATION,Tess,1,,,2024,8,5,Australia,AU,Queensland,-27.543109,153.072355,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,10,25,Australia,AU,Queensland,-27.552139,153.054747,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Mum and joey,2021,9,10,Australia,AU,New South Wales,-28.25385,153.377338,EPSG:4326 +HUMAN_OBSERVATION,dellaca,1,,Feeding on Eucalyptus saligna,2024,11,1,Australia,AU,Queensland,-28.235111,152.635617,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,6,Australia,AU,South Australia,-34.891739,138.718791,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2020,6,12,Australia,AU,Queensland,-27.549124,153.04629,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2024,4,16,Australia,AU,Victoria,-37.643605,143.896025,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,4,7,Australia,AU,Queensland,-27.510152,153.086187,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Julie Kemp. Submitted via msg,2022,1,19,Australia,AU,Queensland,-26.207567,152.029073,EPSG:4326 +HUMAN_OBSERVATION,noddyblue,1,,Scat on road,2023,2,4,Australia,AU,Victoria,-36.863853,145.447205,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,9,Australia,AU,Queensland,-27.551396,153.0579,EPSG:4326 +HUMAN_OBSERVATION,chazpaz,1,,,2024,2,23,Australia,AU,Victoria,-38.773392,143.403612,EPSG:4326 +HUMAN_OBSERVATION,tipetalaura,1,,,2021,12,20,Australia,AU,South Australia,-34.908954,138.714652,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Amanda Francis. Submitted via email.,2023,7,6,Australia,AU,Queensland,-26.176018,151.937342,EPSG:4326 +HUMAN_OBSERVATION,brookerash08,1,,,2023,9,16,Australia,AU,Queensland,-27.423595,151.946827,EPSG:4326 +HUMAN_OBSERVATION,the_peacocks,1,,,2020,4,19,Australia,AU,Queensland,-28.161184,153.451448,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Koala well hidden in the leaves at the top of a Brush Box tree.,2022,5,26,Australia,AU,New South Wales,-28.257754,153.400447,EPSG:4326 +HUMAN_OBSERVATION,Richard Fuller,1,,,2024,6,23,Australia,AU,Queensland,-27.493428,153.403179,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,Not the greatest photos but unable to get a clear shot.,2022,8,12,Australia,AU,Queensland,-27.734704,153.101558,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,11,15,Australia,AU,Queensland,-27.258352,152.044985,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown Sex. Observed by Steven Reynolds. Sent via facebook.,2021,6,9,Australia,AU,Queensland,-26.481111,151.862967,EPSG:4326 +HUMAN_OBSERVATION,Louis O'Neill,1,,,2022,5,5,Australia,AU,Victoria,-37.925012,147.729613,EPSG:4326 +HUMAN_OBSERVATION,pmnewport,1,,,2024,3,21,Australia,AU,Victoria,-38.037853,141.245483,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,Approaches and climbs ladder tree. LCA3026,2020,10,1,Australia,AU,Queensland,-27.496345,152.248252,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Mother (possibly "Fluffy Eared") and baby,2021,9,20,Australia,AU,New South Wales,-30.522216,151.517344,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,,Female koala in a Spotted Gum Corymbia maculata (separate observation).,2023,11,24,Australia,AU,Victoria,-37.955359,144.436593,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2022,12,19,Australia,AU,Queensland,-27.529632,153.104528,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,,AG female high in manna gum,2022,2,17,Australia,AU,Victoria,-37.873663,144.25797,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2024,11,1,Australia,AU,Queensland,-27.528061,153.103259,EPSG:4326 +HUMAN_OBSERVATION,Aaron McGenniskin,1,,,2021,1,19,Australia,AU,Victoria,-37.83437,145.597224,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,The blackened Blue Gum is still alive. Despite the lack of understorey regrowth since the November 2019 bushfire the majority of the koala food trees in this area are still being used by koalas as evidenced by the numerous koala scats under them. Photo: Kathy Finch. LCA3036,2020,8,23,Australia,AU,Queensland,-27.832215,152.34441,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Car park CFO #20,2023,12,3,Australia,AU,Queensland,-27.526974,153.091568,EPSG:4326 +HUMAN_OBSERVATION,Hamish,1,,,2023,9,6,Australia,AU,New South Wales,-30.48686,151.644207,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"Same male as recorded 3 weeks ago on 45 Baker Road. In large yellow box, being mobbed by birds.",2024,9,30,Australia,AU,New South Wales,-30.520486,151.520276,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In triangle area near cafeteria,2024,2,5,Australia,AU,Queensland,-27.526994,153.092076,EPSG:4326 +HUMAN_OBSERVATION,Laura Keene,1,,,2022,8,10,Australia,AU,Queensland,-27.919485,153.377058,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,Male koala we have named Theo sitting in Eu. tereticornis.,2023,10,3,Australia,AU,Queensland,-27.411938,152.004748,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Female and joey road kill.,2023,10,7,Australia,AU,Queensland,-27.553208,152.193314,EPSG:4326 +HUMAN_OBSERVATION,Adriana Labate,1,,,2021,5,5,Australia,AU,Victoria,-38.761946,143.664066,EPSG:4326 +HUMAN_OBSERVATION,johjesse,1,,,2024,9,26,Australia,AU,Queensland,-27.29743,152.042556,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2023,10,7,Australia,AU,Queensland,-27.396276,152.60936,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,5,10,Australia,AU,South Australia,-34.865196,138.656877,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,9,Australia,AU,Queensland,-27.54386,153.071112,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,3,6,Australia,AU,Queensland,-27.530279,153.103639,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,6,Australia,AU,Queensland,-26.166034,151.815377,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear - known as Buster,2024,3,1,Australia,AU,Queensland,-27.530665,153.104554,EPSG:4326 +HUMAN_OBSERVATION,cbarrie,1,,,2024,8,13,Australia,AU,Victoria,-37.639101,143.883287,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to tennis courts,2024,6,30,Australia,AU,Queensland,-27.525315,153.092783,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2023,8,22,Australia,AU,New South Wales,-33.169968,151.234426,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2020,11,27,Australia,AU,Victoria,-38.354311,146.388564,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2023,2,8,Australia,AU,Victoria,-38.931203,146.277022,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,,2023,4,6,Australia,AU,Queensland,-27.563412,153.134292,EPSG:4326 +HUMAN_OBSERVATION,terrathetree,1,,Barry,2021,12,17,Australia,AU,Victoria,-37.563204,149.76051,EPSG:4326 +HUMAN_OBSERVATION,Isaac Clarey,1,,,2020,5,15,Australia,AU,Victoria,-38.554355,143.618466,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Koala mum and joey.,2023,8,12,Australia,AU,Queensland,-27.284172,153.000144,EPSG:4326 +HUMAN_OBSERVATION,gwendw,1,,,2023,10,22,Australia,AU,New South Wales,-31.441981,152.904037,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2024,1,3,Australia,AU,Queensland,-27.527094,153.107727,EPSG:4326 +HUMAN_OBSERVATION,Nimal Karunajeewa,1,,,2021,12,11,Australia,AU,Victoria,-38.479531,146.771383,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2023,4,16,Australia,AU,South Australia,-34.903296,138.70584,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,7,1,Australia,AU,New South Wales,-28.258216,153.400813,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,6,17,Australia,AU,Queensland,-27.527269,153.091627,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,4,14,Australia,AU,Queensland,-27.527162,153.091647,EPSG:4326 +HUMAN_OBSERVATION,kg1962,1,,,2024,11,1,Australia,AU,Victoria,-38.80985,146.00515,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,10,11,Australia,AU,Queensland,-27.539189,153.055047,EPSG:4326 +HUMAN_OBSERVATION,Zoë Davis,1,,,2024,1,28,Australia,AU,Victoria,-38.834472,143.520093,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2024,1,28,Australia,AU,New South Wales,-34.101742,150.821945,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,10,23,Australia,AU,Queensland,-27.525578,153.092673,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Release of Mara#1373 5 March Picnic area near E block,2024,3,6,Australia,AU,Queensland,-27.525978,153.090647,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank baby by itself Same tree as yesterday,2022,10,10,Australia,AU,Queensland,-27.545741,153.073672,EPSG:4326 +HUMAN_OBSERVATION,bertbohosouth,1,,Individuals seen and heard regularly. Population crashed during the Millenium Drought (2002-2009) and is slowly recovering.,2022,4,14,Australia,AU,Victoria,-36.805703,145.789672,EPSG:4326 +HUMAN_OBSERVATION,Saira Manns,1,,,2022,10,12,Australia,AU,Queensland,-19.125194,146.869445,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male koala high in messmate stringybark nervous,2023,5,8,Australia,AU,Victoria,-37.876623,144.375928,EPSG:4326 +HUMAN_OBSERVATION,John Stephens,1,,,2024,5,7,Australia,AU,Queensland,-27.544032,152.85731,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,In tree by pool car park,2024,10,1,Australia,AU,Queensland,-27.532747,153.095171,EPSG:4326 +HUMAN_OBSERVATION,pritchard3747,1,,,2024,2,8,Australia,AU,Victoria,-37.068972,145.497728,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,6,Australia,AU,South Australia,-34.891815,138.720037,EPSG:4326 +HUMAN_OBSERVATION,Michael Tervo,1,,"Koala scat, indicated by a Koala detection dog (Ada).",2023,7,23,Australia,AU,Queensland,-26.242312,152.983872,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy looking, alert.",2023,2,15,Australia,AU,Queensland,-27.837719,153.370621,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2024,7,17,Australia,AU,Queensland,-27.5305,153.103474,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,9,14,Australia,AU,Queensland,-27.526837,153.090655,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,5,29,Australia,AU,Queensland,-27.496283,151.786925,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,K block,2024,9,11,Australia,AU,Queensland,-27.525766,153.090705,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear,2023,3,14,Australia,AU,Queensland,-27.53014,153.103357,EPSG:4326 +HUMAN_OBSERVATION,Val George,1,,,2023,2,15,Australia,AU,Victoria,-38.286255,142.346977,EPSG:4326 +HUMAN_OBSERVATION,Adam Welz,1,,,2020,2,27,Australia,AU,South Australia,-35.9091,137.199125,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland - three koalas close together in three trees,2024,1,16,Australia,AU,Queensland,-27.527798,153.092373,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Male on next tree, a turpentine, to the mum and joey. Bellowing happily and eating the leaves. Have video.",2021,10,14,Australia,AU,New South Wales,-28.254173,153.377351,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,,2024,2,22,Australia,AU,New South Wales,-34.080512,150.851267,EPSG:4326 +HUMAN_OBSERVATION,Nic Van Zyl,1,,,2024,10,18,Australia,AU,Victoria,-38.318792,142.363733,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2024,6,3,Australia,AU,Queensland,-27.530469,153.103679,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,10,24,Australia,AU,Queensland,-27.506383,153.086041,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,3,9,Australia,AU,Queensland,-27.53013,153.103378,EPSG:4326 +HUMAN_OBSERVATION,joenviro,1,,,2023,2,20,Australia,AU,New South Wales,-32.73558,152.173263,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,5,12,Australia,AU,Queensland,-27.537686,153.054186,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,29,Australia,AU,South Australia,-34.891724,138.722552,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,"Male, was calling",2021,12,26,Australia,AU,Victoria,-38.6711,146.164746,EPSG:4326 +HUMAN_OBSERVATION,Ash,1,,,2024,11,17,Australia,AU,Queensland,-27.549681,153.057055,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Koala scats, under a Eucalyptus crebra. 12.8.17 E. .melanophloia/E.crebra on igneous rocks",2023,6,28,Australia,AU,Queensland,-27.653075,152.042253,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,30,Australia,AU,South Australia,-34.892546,138.722268,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2023,12,24,Australia,AU,South Australia,-34.903661,138.61785,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Young healthy koala observed sitting in tree.,2020,1,3,Australia,AU,New South Wales,-28.260886,153.402031,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,9,9,Australia,AU,South Australia,-35.012212,138.657688,EPSG:4326 +HUMAN_OBSERVATION,Daniel Terrington,1,,,2020,9,23,Australia,AU,Victoria,-37.222,148.263947,EPSG:4326 +HUMAN_OBSERVATION,Isaac Clarey,1,,,2020,9,19,Australia,AU,Victoria,-38.529255,143.684193,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,31,Australia,AU,South Australia,-34.889212,138.731874,EPSG:4326 +HUMAN_OBSERVATION,davecleeland,1,,,2023,2,20,Australia,AU,Victoria,-37.006274,145.336462,EPSG:4326 +HUMAN_OBSERVATION,cads98,1,,,2024,4,14,Australia,AU,New South Wales,-32.89085,151.538003,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,10,6,Australia,AU,Queensland,-27.527201,153.108924,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Red tag RIGHT ear A18 - Campo,2023,3,27,Australia,AU,Queensland,-27.529632,153.109669,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,13,Australia,AU,Queensland,-27.505169,153.078347,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,12,19,Australia,AU,Victoria,-37.573988,143.899634,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2021,4,15,Australia,AU,South Australia,-34.864238,138.66653,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Heard him bellowing, and he was climbing the tree. Just on sunset so getting darker making photos hard. Male as can see scent gland. Have not seen this one before this year, possibly not last year either. Bellowed quite a lot and moved through several trees in the evening.",2021,9,2,Australia,AU,New South Wales,-28.254062,153.377542,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2020,5,17,Australia,AU,Queensland,-27.545317,153.072203,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,,2023,7,29,Australia,AU,Queensland,-27.621631,152.902391,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Fluffy Eared Baby"" determinedly sleeping very high in top stringy bark.",2020,8,1,Australia,AU,New South Wales,-30.520765,151.520479,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2024,2,22,Australia,AU,Queensland,-26.165707,151.814158,EPSG:4326 +HUMAN_OBSERVATION,Yarram Scouts,1,,2 koalas in trees side by side,2021,11,28,Australia,AU,Victoria,-38.552982,146.656471,EPSG:4326 +HUMAN_OBSERVATION,Ebony,1,,,2020,3,11,Australia,AU,Queensland,-28.033172,153.316742,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,11,2,Australia,AU,Queensland,-27.52685,153.090532,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2022,2,1,Australia,AU,Queensland,-27.510498,153.069907,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,,2023,10,2,Australia,AU,New South Wales,-29.869625,150.599459,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,22,Australia,AU,South Australia,-34.935799,138.705517,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi & joey,2024,10,25,Australia,AU,Queensland,-27.529588,153.103723,EPSG:4326 +HUMAN_OBSERVATION,bemc,1,,,2020,4,22,Australia,AU,Queensland,-28.093855,153.358521,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2020,3,4,Australia,AU,Queensland,-27.552,153.058113,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,I think* this is the older Mum's joey who has recently moved out.,2023,11,5,Australia,AU,Queensland,-27.284158,153.000124,EPSG:4326 +HUMAN_OBSERVATION,Chadley Beranek,1,,,2023,1,1,Australia,AU,South Australia,-35.960489,136.809119,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,12,Australia,AU,Queensland,-27.544517,153.057035,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,6,26,Australia,AU,Victoria,-38.671263,146.164078,EPSG:4326 +HUMAN_OBSERVATION,Victoria,1,,,2022,4,14,Australia,AU,Queensland,-27.914926,153.372034,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,7,Australia,AU,South Australia,-34.892758,138.715387,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to e block,2024,6,22,Australia,AU,Queensland,-27.526399,153.090643,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,14,Australia,AU,Queensland,-27.811079,151.610612,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Koala spotted by Leonie Short and friends near the Brookwater Oval,2023,10,15,Australia,AU,Queensland,-27.656519,152.901959,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,12,Australia,AU,Queensland,-27.527594,153.109701,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,9,22,Australia,AU,Queensland,-27.527536,153.091006,EPSG:4326 +HUMAN_OBSERVATION,bandicoot67,1,,,2024,9,23,Australia,AU,New South Wales,-36.085168,146.880211,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2023,2,17,Australia,AU,Queensland,-27.551499,153.057542,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,11,6,Australia,AU,Victoria,-38.670601,146.162124,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2023,1,13,Australia,AU,Queensland,-28.070817,152.831674,EPSG:4326 +HUMAN_OBSERVATION,duke_n,1,,,2020,6,7,Australia,AU,Victoria,-35.921747,145.673118,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,9,Australia,AU,Queensland,-27.413612,152.003661,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2023,9,30,Australia,AU,South Australia,-34.953855,138.685395,EPSG:4326 +HUMAN_OBSERVATION,stuart inchley,1,,,2023,9,2,Australia,AU,Victoria,-38.577281,146.196887,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,10,30,Australia,AU,New South Wales,-28.260471,153.399462,EPSG:4326 +HUMAN_OBSERVATION,Rusty,1,,,2024,5,8,Australia,AU,South Australia,-34.999804,138.940294,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,Same Koala as yesterdays observation?,2023,8,15,Australia,AU,New South Wales,-34.102752,150.821405,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,11,Australia,AU,Queensland,-27.527181,153.11002,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Linda Sypher. Submitted by Denise Shaw via email 16.07.2023,2022,9,22,Australia,AU,Queensland,-26.165776,152.005852,EPSG:4326 +HUMAN_OBSERVATION,Alex Sundvall,1,,,2023,10,2,Australia,AU,New South Wales,-34.047889,150.998947,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Had a koala on this same spot and fork on 21st Nov too. Is it the brown female? If so, joey would be snuggled in.",2020,11,9,Australia,AU,New South Wales,-28.254443,153.377075,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Mum and her joey,2023,6,6,Australia,AU,Queensland,-27.510403,153.085263,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2024,2,3,Australia,AU,South Australia,-35.260287,138.56022,EPSG:4326 +HUMAN_OBSERVATION,paulhaynesemail,1,,,2024,2,2,Australia,AU,Victoria,-38.661087,143.868715,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,18,Australia,AU,Queensland,-27.526977,153.110273,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey. Unknown tree,2023,9,3,Australia,AU,Queensland,-27.534179,153.036636,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,11,2,Australia,AU,Queensland,-27.527076,153.092277,EPSG:4326 +HUMAN_OBSERVATION,ecologycaitlin,1,,,2024,11,8,Australia,AU,Queensland,-27.381247,152.103395,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,resting in a Grey Gum. Had made a lot of noisy calling at 4am. No ear tags seen.,2023,11,5,Australia,AU,Queensland,-27.510405,153.069864,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,In a small Blackwood - thunder storm about to hit,2021,11,6,Australia,AU,Victoria,-38.67122,146.164428,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,20,Australia,AU,South Australia,-34.891105,138.731696,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.020609,138.670219,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,,This is the the female koala that has been turning up here since 2019. She seems to have a joey in her pouch which would be the fourth we know she has had.,2023,7,11,Australia,AU,Queensland,-28.1741,152.907428,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Adult. Unknown sex. Healthy. Observed by Wendy Taylor Somewhere along Hivesville Windera Rd, Hivesville. Submitted by Denise Shaw via email.",2023,10,26,Australia,AU,Queensland,-26.170845,151.70128,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,8,10,Australia,AU,New South Wales,-33.076733,151.095214,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,Male koala "Crusoe" in Eucalyptus tereticornis,2022,12,18,Australia,AU,Queensland,-27.413985,152.00348,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,14,Australia,AU,South Australia,-34.729521,138.852118,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2022,11,27,Australia,AU,Queensland,-28.102578,151.252762,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Two koalas same tree Male,2024,4,11,Australia,AU,Queensland,-27.514858,153.079621,EPSG:4326 +HUMAN_OBSERVATION,Atikhun Thongtang,1,,,2023,8,3,Australia,AU,Victoria,-38.783908,143.636047,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,,2023,9,14,Australia,AU,Queensland,-27.5471,153.073212,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2023,7,17,Australia,AU,Queensland,-27.781237,153.058423,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,10,17,Australia,AU,South Australia,-34.868997,138.65764,EPSG:4326 +HUMAN_OBSERVATION,greydawnpademelon,1,,,2023,5,8,Australia,AU,Victoria,-38.318408,142.360646,EPSG:4326 +HUMAN_OBSERVATION,maymay33,1,,,2024,2,7,Australia,AU,Queensland,-26.894878,152.591797,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2022,6,30,Australia,AU,Queensland,-27.890182,151.382105,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Female with large pouch young,2023,11,7,Australia,AU,Queensland,-27.952442,153.381744,EPSG:4326 +HUMAN_OBSERVATION,afisch80,1,,Look at that foot!,2023,5,22,Australia,AU,Victoria,-38.668251,143.850923,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2022,1,26,Australia,AU,South Australia,-34.991879,138.749319,EPSG:4326 +HUMAN_OBSERVATION,ecologynewb,1,,,2023,12,16,Australia,AU,Victoria,-38.68861,143.376795,EPSG:4326 +HUMAN_OBSERVATION,george_seagull,1,,Presumably hit by a car. Apollo Bay.,2024,7,10,Australia,AU,Victoria,-38.761297,143.630126,EPSG:4326 +HUMAN_OBSERVATION,pglaouto,1,,,2024,10,19,Australia,AU,Queensland,-28.22348,152.739349,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear A...,2023,4,26,Australia,AU,Queensland,-27.526826,153.108872,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2023,4,1,Australia,AU,Victoria,-38.340237,142.627545,EPSG:4326 +HUMAN_OBSERVATION,Charles Dove,1,,,2020,10,17,Australia,AU,Queensland,-27.381851,151.61072,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,28,Australia,AU,Queensland,-27.530045,153.103622,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,"Survey 1 LNSF FoN. Numerous koala markings on Grey Gum, known area (BioNet transect 2021)",2023,7,11,Australia,AU,New South Wales,-30.559891,152.993655,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Photos Bernadette Whisson Gatton/Esk road Atkinson,2023,6,1,Australia,AU,Queensland,-27.401804,152.343408,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Koala spotted by R. Grant,2023,11,5,Australia,AU,Queensland,-27.635564,152.892328,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey - joey high up in tree before returning to mum,2023,10,4,Australia,AU,Queensland,-27.527283,153.107383,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy and alert, last of 6 seen",2023,1,26,Australia,AU,Queensland,-27.338413,152.614245,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,Robin and RJ in a Eucalyptus microcorys,2023,11,7,Australia,AU,Queensland,-27.413905,152.002933,EPSG:4326 +HUMAN_OBSERVATION,LisaD,1,,,2022,9,10,Australia,AU,Victoria,-37.331094,144.593504,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Reconyx HF2,2023,2,24,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,kirstlebut,1,,Mum with brand new baby koala (first sighting),2023,10,29,Australia,AU,Queensland,-27.554842,151.510925,EPSG:4326 +HUMAN_OBSERVATION,jaimime,1,,,2020,3,20,Australia,AU,Queensland,-27.526899,153.237972,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,9,Australia,AU,Queensland,-27.529134,153.105331,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Mum and bub on front.,2024,8,31,Australia,AU,Queensland,-27.257024,152.046493,EPSG:4326 +HUMAN_OBSERVATION,varanid-b,1,,,2022,11,19,Australia,AU,Queensland,-28.095665,153.447228,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,13,Australia,AU,Queensland,-27.8238,152.993725,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,2,17,Australia,AU,Queensland,-27.515683,153.082975,EPSG:4326 +HUMAN_OBSERVATION,quollsskinks,1,,Ran across the highway.,2022,4,30,Australia,AU,Victoria,-37.730908,142.007447,EPSG:4326 +HUMAN_OBSERVATION,Sam S,1,MALE,Male heard grunting and found in Eucaplyptus leucoxylon Yellow Gum.,2023,1,21,Australia,AU,Victoria,-37.250084,143.721606,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,8,11,Australia,AU,South Australia,-34.908602,138.614203,EPSG:4326 +HUMAN_OBSERVATION,insiderelic,1,,,2021,4,10,Australia,AU,South Australia,-34.958516,138.696485,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,E.microcorys,2021,3,13,Australia,AU,Queensland,-27.538212,153.061647,EPSG:4326 +HUMAN_OBSERVATION,johjesse,1,,,2023,9,26,Australia,AU,Queensland,-27.297637,152.041906,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,9,21,Australia,AU,Queensland,-27.548366,153.051418,EPSG:4326 +HUMAN_OBSERVATION,bilyanacottages,1,,,2024,8,24,Australia,AU,Queensland,-28.144933,152.642226,EPSG:4326 +HUMAN_OBSERVATION,Vireya Jacquard,1,,,2022,4,20,Australia,AU,Victoria,-37.692515,143.998367,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,6,10,Australia,AU,Queensland,-27.570377,152.103071,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,MALE,Found dead on side of walking track. A person passing by said it was here dead yesterday morning. No obvious signs of injury. Most likely same koala as observation: https://inaturalist.ala.org.au/observations/225017838,2024,7,2,Australia,AU,Victoria,-38.477069,142.971231,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,20,Australia,AU,Queensland,-27.675954,151.588264,EPSG:4326 +HUMAN_OBSERVATION,Kye Turnbull,1,,,2023,11,17,Australia,AU,Queensland,-27.271775,152.859815,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,4,19,Australia,AU,Queensland,-27.810725,153.104875,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Not seen in these photos but she has a yellow tag RIGHT ear - possibly Charly,2023,3,28,Australia,AU,Queensland,-27.52784,153.111895,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,2,Australia,AU,Queensland,-27.527145,153.091925,EPSG:4326 +HUMAN_OBSERVATION,Scott Rolph,1,,,2022,2,19,Australia,AU,Victoria,-38.352378,141.600403,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag 1317 LEFT ear - Thor,2024,5,29,Australia,AU,Queensland,-27.528238,153.112608,EPSG:4326 +HUMAN_OBSERVATION,Stefano Caraco,1,,,2020,11,1,Australia,AU,New South Wales,-30.927708,153.078645,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,12,7,Australia,AU,Queensland,-27.258337,152.045113,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,2,20,Australia,AU,Queensland,-27.498906,153.076257,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Female,2020,10,25,Australia,AU,Victoria,-38.671447,146.164139,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,5,Australia,AU,Queensland,-27.528197,153.104172,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,,2021,6,15,Australia,AU,Victoria,-38.177495,145.127659,EPSG:4326 +HUMAN_OBSERVATION,jarhum,1,,,2020,11,17,Australia,AU,New South Wales,-30.295235,153.123872,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,21,Australia,AU,South Australia,-34.892044,138.722534,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Brad Bowden. Forwarded by email.,2022,1,25,Australia,AU,Queensland,-26.582475,151.818252,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,17,Australia,AU,Queensland,-27.529631,153.105607,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds near red pergolas,2023,10,31,Australia,AU,Queensland,-27.527117,153.091717,EPSG:4326 +HUMAN_OBSERVATION,tinametcalf,1,,Sienna Female Red Right Ear Tag,2024,10,13,Australia,AU,Queensland,-27.220584,153.08911,EPSG:4326 +HUMAN_OBSERVATION,Altair.rana :P,1,,,2023,12,25,Australia,AU,Victoria,-38.683544,143.838958,EPSG:4326 +HUMAN_OBSERVATION,jennii07,1,,,2021,3,10,Australia,AU,Queensland,-27.507872,153.255037,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2020,4,27,Australia,AU,South Australia,-34.953903,138.689406,EPSG:4326 +HUMAN_OBSERVATION,Karen Roberts,1,,,2023,3,24,Australia,AU,Queensland,-27.543438,152.858214,EPSG:4326 +HUMAN_OBSERVATION,Donald Hobern,1,,,2023,12,12,Australia,AU,South Australia,-34.968851,138.636308,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,8,24,Australia,AU,New South Wales,-28.252449,153.375286,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,5,19,Australia,AU,Queensland,-27.527796,153.092479,EPSG:4326 +HUMAN_OBSERVATION,Claudje,1,,2 koalas in the top of a young spotted gum tree,2023,9,18,Australia,AU,Queensland,-28.127751,152.827215,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,2,12,Australia,AU,South Australia,-35.960413,136.809497,EPSG:4326 +HUMAN_OBSERVATION,Anneliese Mak,1,,,2024,2,26,Australia,AU,Victoria,-37.921987,147.725819,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2023,11,1,Australia,AU,Queensland,-27.529443,153.103294,EPSG:4326 +HUMAN_OBSERVATION,abcdefgewing,1,,Great Otway NP.,2022,10,5,Australia,AU,Victoria,-38.781235,143.619855,EPSG:4326 +HUMAN_OBSERVATION,trekh,1,,,2020,1,26,Australia,AU,South Australia,-35.466071,138.369907,EPSG:4326 +HUMAN_OBSERVATION,jaymeewicks,1,,,2022,11,30,Australia,AU,Queensland,-27.276266,151.647443,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Koala markings. FoN survey Tarkeeth1,2023,10,8,Australia,AU,New South Wales,-30.490154,152.914078,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,21,Australia,AU,Queensland,-27.527102,153.091526,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2023,3,25,Australia,AU,South Australia,-34.692015,138.826933,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,,2024,1,28,Australia,AU,New South Wales,-34.056797,150.876029,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed at 'All Tint' property on Burnett St Nanango. Reported via email.,2021,11,14,Australia,AU,Queensland,-26.684561,152.003935,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,5,Australia,AU,Queensland,-27.52694,153.090805,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,,,2020,7,31,Australia,AU,Queensland,-28.756389,151.853333,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,31,Australia,AU,Queensland,-27.529116,153.110335,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Female in Tasmanian Blue Gum,2021,10,26,Australia,AU,Victoria,-38.671222,146.163925,EPSG:4326 +HUMAN_OBSERVATION,rheom,1,,,2023,12,18,Australia,AU,Victoria,-37.742318,145.221483,EPSG:4326 +HUMAN_OBSERVATION,Kymberley,1,,"Visual signs of cystitis, wildlife carer contacted. Update: euthanised.",2021,11,7,Australia,AU,Queensland,-21.687499,148.687802,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,MALE,Sub-adult male koala seen while I was volunteering as part of Clean Up Australia Day 2024.,2024,3,3,Australia,AU,Queensland,-27.297549,153.002571,EPSG:4326 +HUMAN_OBSERVATION,Gordon Claridge,1,,"Nearly missed seeing this koala at the edge of a video frame. Photo 2 shows the koala in relation to the target tree which had scats underneath it, and photo 3 shows the full video frame. Before I processed some frame grabs from the video all that was visible was the eye shine. It is climbing a young Red Ash (Alphitonia excelsa), which isn't a food tree or even generally a shelter tree for koalas.",2021,10,3,Australia,AU,Queensland,-27.496388,152.248159,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,Screen grab from video clip,2024,11,9,Australia,AU,Queensland,-27.413926,152.003284,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,3,Australia,AU,Queensland,-27.528867,153.109147,EPSG:4326 +HUMAN_OBSERVATION,WenU,1,,,2023,10,7,Australia,AU,Victoria,-38.667966,143.860686,EPSG:4326 +HUMAN_OBSERVATION,halobaena,1,,,2024,3,14,Australia,AU,Queensland,-27.530702,153.036033,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area near blue bin Mother and joey,2023,11,4,Australia,AU,Queensland,-27.528285,153.092499,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear - Joe - known as Bozo,2023,8,9,Australia,AU,Queensland,-27.527001,153.109002,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,12,Australia,AU,South Australia,-34.891698,138.731498,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - yellow tag RIGHT ear - & joey,2023,10,28,Australia,AU,Queensland,-27.519186,153.109327,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,7,13,Australia,AU,Queensland,-27.516975,153.085778,EPSG:4326 +HUMAN_OBSERVATION,Lisa Bezuidenhout,1,,,2023,3,31,Australia,AU,Queensland,-27.400258,153.437988,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,8,Australia,AU,South Australia,-34.890572,138.732738,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,9,21,Australia,AU,South Australia,-34.892378,138.716955,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,11,4,Australia,AU,Queensland,-27.566252,152.110878,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,2,26,Australia,AU,Queensland,-27.550611,153.056448,EPSG:4326 +HUMAN_OBSERVATION,george_seagull,1,,Cape Paterson.,2024,1,21,Australia,AU,Victoria,-38.670911,145.616614,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,30,Australia,AU,Queensland,-27.529717,153.103918,EPSG:4326 +HUMAN_OBSERVATION,ametcalf,1,,"Koala high tucked up in the tree, can’t see if there is an ear tag or not.",2024,10,13,Australia,AU,Queensland,-27.221284,153.089242,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,11,21,Australia,AU,New South Wales,-28.255464,153.378216,EPSG:4326 +HUMAN_OBSERVATION,Gen C,1,,,2023,9,25,Australia,AU,South Australia,-35.024082,138.575003,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & Joey - joey was initially high up (first time I've seen them apart) but mum went up to join joey,2024,3,12,Australia,AU,Queensland,-27.528371,153.103306,EPSG:4326 +HUMAN_OBSERVATION,winnnifred,1,,,2024,5,25,Australia,AU,South Australia,-35.007839,138.678772,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"In a Manna Gum (E. viminalis). There are presently two Koala in this Manna Gum, this is the ""eastern"" one. This is the same tree (the ""stick nest tree"") referred to in yesterdays observation https://inaturalist.ala.org.au/observations/214943590",2024,5,12,Australia,AU,Victoria,-38.500058,142.975003,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,23,Australia,AU,South Australia,-34.862727,138.720299,EPSG:4326 +HUMAN_OBSERVATION,Nicholas John Fisher,1,,Phascolarctos cinereus : Goonellabah,2021,6,3,Australia,AU,New South Wales,-28.830138,153.323694,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,27,Australia,AU,Queensland,-27.525848,153.090762,EPSG:4326 +HUMAN_OBSERVATION,Noam Markus,1,,,2024,2,11,Australia,AU,South Australia,-35.008008,138.63644,EPSG:4326 +HUMAN_OBSERVATION,harlz12-34,1,,,2024,1,4,Australia,AU,Victoria,-38.143394,143.10295,EPSG:4326 +HUMAN_OBSERVATION,allsaintsps,1,,,2023,10,11,Australia,AU,Victoria,-38.359969,141.592622,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Forest red gum,2023,2,22,Australia,AU,Queensland,-27.525862,153.090761,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block picnic area,2023,12,25,Australia,AU,Queensland,-27.525871,153.090503,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,6,12,Australia,AU,New South Wales,-33.076542,151.095092,EPSG:4326 +HUMAN_OBSERVATION,Charles Dove,1,,,2021,5,13,Australia,AU,Queensland,-27.475871,151.953222,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,10,29,Australia,AU,New South Wales,-28.257904,153.400465,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,MALE,,2024,8,29,Australia,AU,Victoria,-37.583977,143.89078,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2021,11,29,Australia,AU,Victoria,-38.330547,142.638988,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2023,12,19,Australia,AU,Victoria,-38.131095,145.267537,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female ? joey in pouch,2023,8,19,Australia,AU,Queensland,-27.530532,153.104458,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2024,7,23,Australia,AU,Victoria,-36.938743,145.476722,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,11,5,Australia,AU,Queensland,-27.402722,152.609603,EPSG:4326 +HUMAN_OBSERVATION,justinerichaume,1,,,2024,10,25,Australia,AU,Queensland,-19.137469,146.864822,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey Charlie,2024,4,10,Australia,AU,Queensland,-27.528484,153.103282,EPSG:4326 +HUMAN_OBSERVATION,whittie,1,,,2023,12,26,Australia,AU,South Australia,-34.987887,138.63957,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2021,1,26,Australia,AU,New South Wales,-34.101853,150.821931,EPSG:4326 +HUMAN_OBSERVATION,Rusty,1,,,2023,5,9,Australia,AU,South Australia,-35.175498,138.514241,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Ainslie spotted. Believe this is the male with the white bottom. Wet and windy night, it was high up and everything blowing and using a torch. But at the end you can see the dark photo that it has a very white bottom! We have a male like that here.",2021,10,12,Australia,AU,New South Wales,-28.255192,153.378345,EPSG:4326 +HUMAN_OBSERVATION,larivera,1,,,2022,11,18,Australia,AU,Victoria,-38.32055,142.363803,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland Mother and joey,2024,9,7,Australia,AU,Queensland,-27.527602,153.092529,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,,,2023,8,2,Australia,AU,Queensland,-26.379903,152.865292,EPSG:4326 +HUMAN_OBSERVATION,Dianne Clarke,1,,,2020,6,27,Australia,AU,Queensland,-26.757665,152.802621,EPSG:4326 +HUMAN_OBSERVATION,Hamish,1,,,2024,2,29,Australia,AU,New South Wales,-30.627219,151.522976,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2024,3,9,Australia,AU,South Australia,-35.260289,138.56021,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Mother and Joey Woodland rear,2024,1,7,Australia,AU,Queensland,-27.528041,153.092972,EPSG:4326 +HUMAN_OBSERVATION,leithallb,1,,In a tallwowood (Eucalyptus microcorys) 5528/29,2024,11,6,Australia,AU,Queensland,-27.539771,153.033118,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,Seen running down fire trail and then taking safety in tree. Ate some leaves later on,2024,11,14,Australia,AU,New South Wales,-34.078103,150.858764,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,In Eucalyptus globulus,2020,5,18,Australia,AU,Victoria,-38.671395,146.163833,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,7,29,Australia,AU,Queensland,-27.54948,153.059895,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2024,11,16,Australia,AU,South Australia,-34.919845,138.6931,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood. Seen this koala for last five days same location,2020,2,24,Australia,AU,Queensland,-27.549867,153.061499,EPSG:4326 +HUMAN_OBSERVATION,Hanna Clupea,1,,,2020,2,28,Australia,AU,Queensland,-27.425509,153.508828,EPSG:4326 +HUMAN_OBSERVATION,aimee,1,,,2024,10,9,Australia,AU,Queensland,-27.918394,153.375127,EPSG:4326 +HUMAN_OBSERVATION,Stu Easton,1,,,2021,4,15,Australia,AU,Queensland,-27.287858,152.997765,EPSG:4326 +HUMAN_OBSERVATION,Wairambar Rainforest,1,,"riverine flood plain with eucalypts, wide variation of colouration between individuals",2022,4,5,Australia,AU,New South Wales,-34.756295,146.5694,EPSG:4326 +HUMAN_OBSERVATION,Charles Dove,1,,,2022,9,26,Australia,AU,Queensland,-27.416454,151.708508,EPSG:4326 +HUMAN_OBSERVATION,Oscar Anderson,1,,,2024,2,6,Australia,AU,Victoria,-38.551922,143.971273,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2022,1,11,Australia,AU,Queensland,-27.570395,152.103011,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,3,5,Australia,AU,Victoria,-38.354901,146.3879,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,Female with Joey,2024,10,5,Australia,AU,New South Wales,-32.950328,151.497497,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Sport n rec picnic area 2 koalas same tree - koala 2 Males Jacob Jnr,2023,12,31,Australia,AU,Queensland,-27.525675,153.092485,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park,2024,9,21,Australia,AU,Queensland,-27.524754,153.092255,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,9,Australia,AU,Queensland,-27.529611,153.105988,EPSG:4326 +HUMAN_OBSERVATION,Isaac Clarey,1,,,2021,4,21,Australia,AU,Victoria,-37.507938,144.170494,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,3,3,Australia,AU,New South Wales,-33.076605,151.095061,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,No visible ear tags,2022,10,23,Australia,AU,Queensland,-27.502555,153.071632,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,2,Australia,AU,Queensland,-27.526162,153.093054,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2020,8,4,Australia,AU,South Australia,-34.692015,138.826933,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2023,1,1,Australia,AU,Queensland,-27.402164,153.438719,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,6,Australia,AU,Queensland,-27.531301,153.10542,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,6,Australia,AU,Queensland,-27.530314,153.104475,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2024,10,13,Australia,AU,Queensland,-27.55047,153.052426,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,,2021,5,16,Australia,AU,New South Wales,-28.260442,153.400506,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Hunter Camera,2023,3,9,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,7,12,Australia,AU,Queensland,-27.546088,153.073888,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"Koala counts: 11/9 2 observers: 16:30-16:50, 0 koalas. Spotlight 11/9 18:00-18:20 2 observers 2 koalas (1female, 1 juvenile) in same tree E.tereticornis, 1 seen by both 1 seen by JiT, 4 btp, 3 flying foxes. Count: 12/9 1 observer 2 koalas (mum and juvenile on same branch) E. tereticornis, 1 rnw. Spotlight 16:30-16:55 1 observer 4 koalas (2 females and 2 juveniles) 2 in E. tereticornis, 2 in small ironbark (female and juvenile in each), 5 btp, 3 egk. 13/9 diurnal count 6:45-2:20am 1 observer 1 koala. Male also heard on night of the 10/9 calling so minimum of 5 koalas in the survey area during the 3 days.",2024,9,12,Australia,AU,Queensland,-27.824058,152.992275,EPSG:4326 +HUMAN_OBSERVATION,Daniel Papworth,1,,,2024,8,11,Australia,AU,Victoria,-38.318477,142.363093,EPSG:4326 +HUMAN_OBSERVATION,Kiri Bee,1,,,2022,1,31,Australia,AU,Victoria,-37.649555,144.506205,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside E block and library Mother and joey,2023,11,2,Australia,AU,Queensland,-27.526928,153.090961,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2023,6,30,Australia,AU,Queensland,-28.101966,153.44915,EPSG:4326 +HUMAN_OBSERVATION,Jon Marnock,1,,,2021,4,11,Australia,AU,Queensland,-27.0817,152.377272,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,4,7,Australia,AU,Queensland,-27.546273,153.07426,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe cavendish road Maisie and joey,2023,11,14,Australia,AU,Queensland,-27.527117,153.091027,EPSG:4326 +HUMAN_OBSERVATION,Simon Pierce,1,,,2024,8,9,Australia,AU,Queensland,-27.912437,153.373429,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Private property ?Landowner permission to lodge. Juvenile likely scared into a small tree.,2024,1,23,Australia,AU,Queensland,-27.897178,153.186332,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2022,12,29,Australia,AU,Queensland,-27.585871,151.876623,EPSG:4326 +HUMAN_OBSERVATION,Katie Ansis,1,,,2024,8,28,Australia,AU,Victoria,-38.667222,143.861558,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Mother and joey same tree Front of TAFE Cavendish Road,2023,12,31,Australia,AU,Queensland,-27.526969,153.090571,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2023,12,24,Australia,AU,Queensland,-27.527357,153.090863,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2024,4,9,Australia,AU,Victoria,-37.640797,143.90373,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,1,7,Australia,AU,Queensland,-27.509693,153.085696,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,E. tereticornis,2022,11,15,Australia,AU,Queensland,-27.531892,153.037223,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,"This koala was spotted by Donna. The poor koala tried to head into the bushland to the east, but the temporary plastic erosion barriers made it hard for him.",2023,2,16,Australia,AU,Queensland,-27.653022,152.900327,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2023,11,3,Australia,AU,Victoria,-37.01267,145.533555,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2023,12,31,Australia,AU,Queensland,-27.527146,153.092196,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On E.acmenoides/carnea.,2024,3,13,Australia,AU,Queensland,-27.55,153.058968,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery Mother and joey,2023,11,14,Australia,AU,Queensland,-27.527254,153.091991,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,7,27,Australia,AU,Queensland,-27.548433,153.059283,EPSG:4326 +HUMAN_OBSERVATION,georgia22banjo,1,,,2024,6,18,Australia,AU,Queensland,-27.275537,152.936269,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,"Healthy Koala in suburban yard, Highland Park Road, Meringandan West. - Attended by B. Gray - Toowoomba Koala & Wildlife Rescue",2022,11,7,Australia,AU,Queensland,-27.412992,151.885021,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,3,23,Australia,AU,New South Wales,-33.074272,151.093886,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear - known as Buster,2024,2,20,Australia,AU,Queensland,-27.530125,153.105234,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2022,6,20,Australia,AU,Victoria,-38.375101,145.314338,EPSG:4326 +HUMAN_OBSERVATION,ashleighknight,1,,Mum and baby,2022,11,19,Australia,AU,Queensland,-27.695709,153.175394,EPSG:4326 +HUMAN_OBSERVATION,wanderer6268,1,,Closer shot of the Koala using an android phone zoomed in. Accompanied by shots of Eucalypt it was found in.,2021,9,28,Australia,AU,South Australia,-34.82773,138.685955,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,7,21,Australia,AU,Queensland,-27.527202,153.091553,EPSG:4326 +HUMAN_OBSERVATION,renee_d,1,,,2024,6,21,Australia,AU,Victoria,-38.775958,143.539138,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey Audrey and Matteo,2024,10,20,Australia,AU,Queensland,-27.527257,153.09146,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,12,10,Australia,AU,Queensland,-27.566528,152.110886,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,22,Australia,AU,South Australia,-34.874122,138.733511,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near stores block,2024,6,22,Australia,AU,Queensland,-27.526338,153.092975,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2023,2,11,Australia,AU,Victoria,-38.673622,145.612013,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,12,18,Australia,AU,Victoria,-38.671038,146.163789,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwod with independent Joey,2021,10,12,Australia,AU,Queensland,-27.551722,153.057718,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,12,Australia,AU,Queensland,-27.527863,153.1117,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,,2020,1,26,Australia,AU,Victoria,-38.769749,143.653747,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,30,Australia,AU,Queensland,-27.528319,153.092394,EPSG:4326 +HUMAN_OBSERVATION,nj-aus,1,,,2021,8,19,Australia,AU,Queensland,-27.488119,153.430603,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,10,31,Australia,AU,Queensland,-27.544912,153.072279,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.778726,143.618161,EPSG:4326 +HUMAN_OBSERVATION,burnettcatchment,1,,Adult. Unknown Sex. Healthy. Observed by Wendy Taylor. Submitted via Messenger,2024,11,14,Australia,AU,Queensland,-26.162209,151.756396,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Unsure if has a wet bottom but had darker colouration. Observed by Denise Shaw. Submitted via email,2023,7,14,Australia,AU,Queensland,-26.516003,151.820291,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,14,Australia,AU,Queensland,-27.525065,153.092114,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female with Joey. Healthy. Observed by Kaycee Scholl. Submitted via FB.,2024,11,17,Australia,AU,Queensland,-26.691803,151.678883,EPSG:4326 +HUMAN_OBSERVATION,siennah,1,,Two koalas in the same tree,2024,10,5,Australia,AU,Queensland,-27.701317,153.190108,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Larger size koala hidden in tree tops, sitting in a Flooded Gum tree.",2020,12,25,Australia,AU,New South Wales,-28.257664,153.400633,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Front of TAFE Cavendish Road Two koalas same tree Frank Rooney???,2024,9,7,Australia,AU,Queensland,-27.527542,153.09091,EPSG:4326 +HUMAN_OBSERVATION,Elysa Hazzard,1,,,2023,8,19,Australia,AU,New South Wales,-30.487891,151.639413,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2024,8,31,Australia,AU,New South Wales,-31.436158,152.904647,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,20,Australia,AU,Queensland,-27.526823,153.090521,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Two koalas same tree in wisteria &tristania woodland \middle section Possibly Cindy Crawford,2023,7,9,Australia,AU,Queensland,-27.52436,153.093032,EPSG:4326 +HUMAN_OBSERVATION,funbudgiefriend,1,,Mum and Joey,2023,11,12,Australia,AU,Queensland,-27.543234,153.072833,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,Joey,2024,9,24,Australia,AU,Queensland,-27.223303,153.069421,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Injured. Unknown sex. Carers notified but koala later died. Observed by Elissa Blacke. Submitted via email.,2022,9,15,Australia,AU,Queensland,-26.58894,151.691055,EPSG:4326 +HUMAN_OBSERVATION,rordale,1,,Female at Cooby dam. Chlamidia. Rescued.,2024,11,10,Australia,AU,Queensland,-27.381972,151.9218,EPSG:4326 +HUMAN_OBSERVATION,Gordon Claridge,1,,LCA2106,2020,8,26,Australia,AU,Queensland,-27.496345,152.248252,EPSG:4326 +HUMAN_OBSERVATION,mikeahart,1,,,2024,4,1,Australia,AU,Victoria,-37.921857,147.728863,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Bit of staining although there is lots of iron bark around, does anyone on here know whether the koalas around this part usually have staining that dark? Unsure whether to be concerned. Tricky spot for a rescue as well.",2023,12,8,Australia,AU,Queensland,-27.35053,152.501587,EPSG:4326 +HUMAN_OBSERVATION,naenaenature,1,MALE,"Poor young male, found on road within approx 1hr of being hit. I took him down the embankment and took the photo",2022,8,4,Australia,AU,Victoria,-37.629829,143.896612,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2024,3,12,Australia,AU,New South Wales,-34.101733,150.822905,EPSG:4326 +HUMAN_OBSERVATION,davidcoutts,1,,,2023,3,24,Australia,AU,Victoria,-37.30696,144.111843,EPSG:4326 +HUMAN_OBSERVATION,eboys,1,,Conjunctivitis - reported to wildcare,2023,8,20,Australia,AU,Queensland,-28.014672,153.32028,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"a wet misty morning, bet added photos as he turned during the day.Believe it is a male as bellowed night and day! I recorded him next day again, about 4 trees further down the hill.",2020,10,26,Australia,AU,New South Wales,-28.254034,153.377456,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag Q6 LEFT ear - Joe, known as Bozo",2023,9,25,Australia,AU,Queensland,-27.526922,153.109485,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Red tag RIGHT ear A18 - Campo,2023,1,25,Australia,AU,Queensland,-27.529375,153.10967,EPSG:4326 +HUMAN_OBSERVATION,Sam S,1,,"Small adult climbing juvenile red gum near road. Large old yellow box, redbox grey gum and red gum in area. Scattered trees in Ag farm area. Small creek nearby",2023,11,25,Australia,AU,Victoria,-37.046532,145.298518,EPSG:4326 +HUMAN_OBSERVATION,oliverfamily,1,,,2023,11,8,Australia,AU,Queensland,-27.41542,151.937848,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,16,Australia,AU,Queensland,-27.528873,153.107257,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,5,9,Australia,AU,New South Wales,-34.754772,146.586442,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,2,16,Australia,AU,Queensland,-27.546446,153.067881,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2023,4,2,Australia,AU,South Australia,-34.903147,138.705016,EPSG:4326 +HUMAN_OBSERVATION,gillbsydney,1,,,2022,4,7,Australia,AU,South Australia,-35.715852,137.49587,EPSG:4326 +HUMAN_OBSERVATION,ronavery,1,,Hefrons Gap. Top of scree slope on ridge. Submitted on behalf of observer Rick Pinnock,2021,6,12,Australia,AU,New South Wales,-32.693202,150.148626,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.925394,147.729624,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,Male calling,2023,2,25,Australia,AU,Queensland,-27.823347,152.994206,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.783717,143.626249,EPSG:4326 +HUMAN_OBSERVATION,Leah Burns,1,,,2023,7,31,Australia,AU,Queensland,-27.548198,153.075408,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,6,16,Australia,AU,Queensland,-27.527156,153.091645,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,14,Australia,AU,Queensland,-27.527323,153.092158,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road,2024,10,19,Australia,AU,Queensland,-27.527522,153.090749,EPSG:4326 +HUMAN_OBSERVATION,halobaena,1,,,2023,2,8,Australia,AU,Queensland,-27.493912,153.402896,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,8,19,Australia,AU,Queensland,-27.549317,153.059974,EPSG:4326 +HUMAN_OBSERVATION,Nav,1,,There were a lot more koalas than I expected ngl. I didn't get photos of them all tho,2023,1,9,Australia,AU,Victoria,-38.375751,145.31437,EPSG:4326 +HUMAN_OBSERVATION,awjbartlett,1,,,2022,10,2,Australia,AU,Victoria,-38.363738,145.316507,EPSG:4326 +HUMAN_OBSERVATION,sloshy__,1,,,2024,9,17,Australia,AU,Queensland,-27.540339,153.065654,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Koala markings. FoN survey Tarkeeth1,2023,10,8,Australia,AU,New South Wales,-30.496479,152.914652,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,2,Australia,AU,Queensland,-27.528652,153.103714,EPSG:4326 +HUMAN_OBSERVATION,Taylor,1,,Found on Four Bolt Loop trail.,2024,1,28,Australia,AU,New South Wales,-34.0748,150.854783,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2022,11,5,Australia,AU,Queensland,-27.33027,151.932862,EPSG:4326 +HUMAN_OBSERVATION,Hanneke Nooren,1,MALE,Where creek flows under highway [LCA3218],2020,8,14,Australia,AU,Queensland,-27.544598,152.068352,EPSG:4326 +HUMAN_OBSERVATION,szimpla,1,,,2022,12,6,Australia,AU,Victoria,-38.317797,142.363114,EPSG:4326 +HUMAN_OBSERVATION,mrranga21,1,,,2020,2,22,Australia,AU,New South Wales,-34.081068,150.850041,EPSG:4326 +HUMAN_OBSERVATION,Santiago J Acosta Barbero,1,,,2024,7,17,Australia,AU,Queensland,-19.130482,146.871197,EPSG:4326 +HUMAN_OBSERVATION,annikagruber,1,,,2023,4,19,Australia,AU,Queensland,-19.126134,146.866732,EPSG:4326 +HUMAN_OBSERVATION,Helen Schofield,1,,Opposite temporary toilets near temporary Parks office. Location not known by me with GPS coords,2022,10,11,Australia,AU,South Australia,-36.039698,136.750642,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,11,7,Australia,AU,Queensland,-27.528552,153.113061,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Mother and baby (same pair as recorded earlier this month) in E. blakeyii,2020,1,17,Australia,AU,New South Wales,-30.520784,151.520624,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,3,16,Australia,AU,Queensland,-27.527142,153.091822,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,14,Australia,AU,Queensland,-27.527168,153.110298,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Sick koala - dirty bum - for rescue,2024,1,17,Australia,AU,Queensland,-27.523014,153.090412,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe cavendish road Near bamboo,2023,12,3,Australia,AU,Queensland,-27.527461,153.090848,EPSG:4326 +HUMAN_OBSERVATION,grahamharris58,1,,Spotted at local waterbird habitat - not normally seen at this location,2023,9,8,Australia,AU,Queensland,-27.589755,151.971677,EPSG:4326 +HUMAN_OBSERVATION,longm,1,,,2024,9,2,Australia,AU,Victoria,-38.281173,141.600899,EPSG:4326 +HUMAN_OBSERVATION,lisah77,1,,,2022,1,11,Australia,AU,Victoria,-38.623711,143.807771,EPSG:4326 +HUMAN_OBSERVATION,allambiretreat,1,,,2023,1,15,Australia,AU,Queensland,-27.340437,152.846053,EPSG:4326 +HUMAN_OBSERVATION,Lesley Hardiman,1,,,2020,9,27,Australia,AU,Queensland,-27.489854,153.249793,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,6,17,Australia,AU,Queensland,-27.599035,151.889359,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2024,11,3,Australia,AU,Queensland,-27.552445,153.05466,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,17,Australia,AU,Queensland,-27.712818,151.63629,EPSG:4326 +HUMAN_OBSERVATION,masonvisser7,1,,,2024,10,19,Australia,AU,Queensland,-27.493604,153.403051,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,9,Australia,AU,Queensland,-27.527995,153.092251,EPSG:4326 +HUMAN_OBSERVATION,Stephen Cox,1,,,2024,1,5,Australia,AU,Victoria,-38.318667,142.363354,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female with joey,2024,6,28,Australia,AU,Queensland,-27.529915,153.104604,EPSG:4326 +HUMAN_OBSERVATION,Diana,1,,,2023,9,24,Australia,AU,South Australia,-34.855594,138.68178,EPSG:4326 +HUMAN_OBSERVATION,jennii07,1,,,2022,1,30,Australia,AU,South Australia,-35.70703,137.493058,EPSG:4326 +HUMAN_OBSERVATION,oconnej,1,,Male Koala. Scent gland quite obvious.,2024,8,10,Australia,AU,Queensland,-28.06274,152.637208,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Two white dots on forehead above eyes Young koala - mum in next tree over not far away Female? Very white chest,2023,1,29,Australia,AU,Queensland,-27.526722,153.093256,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,7,1,Australia,AU,New South Wales,-28.256614,153.401953,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,19,Australia,AU,Queensland,-27.527507,153.092518,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,14,Australia,AU,Queensland,-27.689155,151.571107,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2020,8,15,Australia,AU,Queensland,-27.547157,153.072881,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,Joey - mother watching from a distance,2022,12,22,Australia,AU,South Australia,-35.025906,138.740892,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear - known as Buster,2024,6,17,Australia,AU,Queensland,-27.52981,153.104927,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lower car park wisteria,2023,7,2,Australia,AU,Queensland,-27.524923,153.092684,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2023,8,5,Australia,AU,Queensland,-27.509561,153.071004,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,24,Australia,AU,Queensland,-27.527221,153.091839,EPSG:4326 +HUMAN_OBSERVATION,Adam Gillespie,1,,,2023,5,24,Australia,AU,Victoria,-38.318369,142.362528,EPSG:4326 +HUMAN_OBSERVATION,tr333s,1,,,2024,10,22,Australia,AU,New South Wales,-32.890203,151.586975,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Stringybark,2020,6,3,Australia,AU,Queensland,-27.539587,153.054269,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,2,24,Australia,AU,Victoria,-37.654354,143.885331,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,,2023,8,24,Australia,AU,Queensland,-27.248145,153.07785,EPSG:4326 +HUMAN_OBSERVATION,cmk11,1,,,2022,11,18,Australia,AU,Victoria,-36.804755,145.764892,EPSG:4326 +HUMAN_OBSERVATION,Dominique Appay,1,,"Koala in feed trees, 10m from houses, 4m above ground, on land reserved for Northern Arterial. Has been in the area since 19Dec2022.",2022,12,22,Australia,AU,Queensland,-27.500628,153.234561,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Outside cleaners donga Male? Possibly testicles in first photo,2024,7,7,Australia,AU,Queensland,-27.526886,153.0916,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,11,1,Australia,AU,Victoria,-37.656536,143.925126,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2023,4,10,Australia,AU,South Australia,-34.931987,138.706097,EPSG:4326 +HUMAN_OBSERVATION,stanleyjo,1,,,2020,7,27,Australia,AU,Victoria,-36.388675,146.741013,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,1,2,Australia,AU,Queensland,-27.526898,153.090667,EPSG:4326 +HUMAN_OBSERVATION,noahdang,1,,,2024,11,1,Australia,AU,Queensland,-28.194745,153.187255,EPSG:4326 +HUMAN_OBSERVATION,Andreas Schneider,1,,,2020,2,14,Australia,AU,Victoria,-37.961587,141.052037,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,8,8,Australia,AU,Queensland,-27.542353,153.066515,EPSG:4326 +HUMAN_OBSERVATION,Luke Lythgoe,1,,,2024,10,19,Australia,AU,Queensland,-19.123539,146.876903,EPSG:4326 +HUMAN_OBSERVATION,gillbsydney,1,,,2023,2,19,Australia,AU,Victoria,-37.90878,147.754464,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,25,Australia,AU,Queensland,-27.527907,153.111649,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2024,9,20,Australia,AU,New South Wales,-33.076711,151.095441,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,9,Australia,AU,Queensland,-27.532251,153.105295,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2021,9,10,Australia,AU,Queensland,-27.566633,153.101033,EPSG:4326 +HUMAN_OBSERVATION,danwilliams2019,1,,,2020,4,13,Australia,AU,Queensland,-27.492722,153.118928,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,10,17,Australia,AU,Queensland,-27.453805,152.640883,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Stringybark,2020,1,31,Australia,AU,Queensland,-27.542191,153.052859,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,7,7,Australia,AU,Queensland,-27.527123,153.091469,EPSG:4326 +HUMAN_OBSERVATION,Jarah Marginata,1,,,2023,6,25,Australia,AU,Victoria,-38.20395,142.036972,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,2,15,Australia,AU,Queensland,-27.587118,151.732925,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,2 x Adults in same tree. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,10,27,Australia,AU,Queensland,-26.362522,151.816006,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,7,13,Australia,AU,Queensland,-27.511205,153.087068,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland gully,2024,4,14,Australia,AU,Queensland,-27.527203,153.092509,EPSG:4326 +HUMAN_OBSERVATION,Rebecca Stroud,1,,,2024,1,1,Australia,AU,New South Wales,-30.475357,151.636459,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Tristania & Wisteria Woodland,2024,11,9,Australia,AU,Queensland,-27.523807,153.093047,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,6,Australia,AU,Queensland,-27.527122,153.10968,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,MALE,"Site is old growth River Red Gum Eucalyptus camaldulensis woodland, adjacent to a river. Recorded on Audiomoth recorder, set up at Koala Clancy Foundation revegetation site with permission from owners, using equipment funded by IFAW.",2023,11,26,Australia,AU,Victoria,-37.899092,144.127198,EPSG:4326 +HUMAN_OBSERVATION,Anthony Katon,1,,,2023,4,25,Australia,AU,New South Wales,-34.752746,146.545156,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,4,27,Australia,AU,Queensland,-27.527141,153.090985,EPSG:4326 +HUMAN_OBSERVATION,Nav,1,,,2023,1,9,Australia,AU,Victoria,-38.372215,145.31476,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2024,3,18,Australia,AU,Victoria,-37.908685,147.735138,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - white tag LEFT ear - Bandit,2023,10,14,Australia,AU,Queensland,-27.52895,153.112501,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2023,12,7,Australia,AU,Victoria,-38.637755,145.71492,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,30,Australia,AU,Queensland,-27.527112,153.09176,EPSG:4326 +HUMAN_OBSERVATION,ecologykatie,1,,Wild koala within the Zoo grounds,2024,6,1,Australia,AU,South Australia,-35.787303,137.230163,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,,2021,10,17,Australia,AU,Queensland,-27.565113,153.134095,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Cindy Crawford and Joey wisteria car park,2023,7,16,Australia,AU,Queensland,-27.52499,153.092421,EPSG:4326 +HUMAN_OBSERVATION,imogenisunderwater,1,,,2024,4,27,Australia,AU,Victoria,-38.828863,143.511465,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In gully near Aldi gates,2023,11,18,Australia,AU,Queensland,-27.526147,153.093432,EPSG:4326 +HUMAN_OBSERVATION,stevemcbride,1,,,2023,11,8,Australia,AU,New South Wales,-28.335562,152.975203,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,12,17,Australia,AU,New South Wales,-33.076349,151.095143,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Sport n rec picnic area,2024,9,22,Australia,AU,Queensland,-27.525328,153.091834,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2023,12,26,Australia,AU,Queensland,-27.527537,153.090585,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female. Released from care. Previously rescued on the 15th August 2024. Rescue record here: https://www.inaturalist.org/observations/234086641,2024,10,14,Australia,AU,Queensland,-26.598259,151.904854,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Tagged Female 3143,2022,12,23,Australia,AU,Queensland,-27.545903,153.073214,EPSG:4326 +HUMAN_OBSERVATION,kittsw,1,,,2021,12,4,Australia,AU,South Australia,-34.879786,138.648894,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2021,10,22,Australia,AU,Victoria,-38.354789,146.38731,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,MALE,,2022,5,4,Australia,AU,Queensland,-27.53181,153.099783,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2020,5,31,Australia,AU,South Australia,-34.990247,138.635367,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,22,Australia,AU,Queensland,-27.525063,153.092431,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Ironbark,2020,7,21,Australia,AU,Queensland,-27.550337,153.062768,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,26,Australia,AU,Queensland,-27.524526,153.091906,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Mother and Joey,2020,9,20,Australia,AU,Queensland,-27.549207,153.07249,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,20,Australia,AU,Queensland,-27.545675,153.072114,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,10,12,Australia,AU,Queensland,-27.545615,153.073673,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult female with joey. Healthy. Near the tree of another mum & bub. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,9,8,Australia,AU,Queensland,-26.154592,151.801169,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,1,7,Australia,AU,Queensland,-27.527553,153.092545,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Christabelle - yellow 1032 RIGHT ear,2023,1,6,Australia,AU,Queensland,-27.530054,153.104725,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,"Healthy, alert. Male.",2024,5,7,Australia,AU,Queensland,-27.916565,153.359461,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,13,Australia,AU,Queensland,-27.528281,153.110823,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,8,11,Australia,AU,Queensland,-27.41387,152.003586,EPSG:4326 +HUMAN_OBSERVATION,Sharon Dodd,1,,,2024,9,28,Australia,AU,Victoria,-38.35779,146.388712,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area,2023,7,2,Australia,AU,Queensland,-27.527601,153.092259,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,28,Australia,AU,Queensland,-27.526759,153.090953,EPSG:4326 +HUMAN_OBSERVATION,Jasmin Packer,1,,Adult female with very small/young joey,2024,6,4,Australia,AU,South Australia,-35.033534,138.680044,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2024,2,15,Australia,AU,Queensland,-28.08208,152.854434,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland rear Male yellow tag right ear #1303,2023,11,26,Australia,AU,Queensland,-27.524899,153.093401,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,,2023,1,25,Australia,AU,Queensland,-27.564262,153.132828,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,,2024,10,13,Australia,AU,Queensland,-27.516238,153.083035,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,,,2023,1,26,Australia,AU,South Australia,-35.059156,138.581539,EPSG:4326 +HUMAN_OBSERVATION,awjbartlett,1,,,2022,4,30,Australia,AU,Victoria,-38.778231,143.654238,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,5,Australia,AU,Queensland,-27.527234,153.090743,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2020,7,11,Australia,AU,New South Wales,-28.25779,153.400982,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,9,Australia,AU,Queensland,-27.822678,152.993544,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,10,29,Australia,AU,Victoria,-38.671105,146.163711,EPSG:4326 +HUMAN_OBSERVATION,Michael Mcmaster,1,,,2020,12,15,Australia,AU,Queensland,-27.213111,153.072311,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,3,Australia,AU,Queensland,-26.175549,151.690103,EPSG:4326 +HUMAN_OBSERVATION,ladymichele,1,,,2022,4,30,Australia,AU,South Australia,-35.011115,138.656705,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,5,Australia,AU,Queensland,-27.530589,153.104669,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,4,Australia,AU,Queensland,-27.52504,153.092405,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,Mother,2024,9,24,Australia,AU,Queensland,-27.223304,153.069395,EPSG:4326 +HUMAN_OBSERVATION,Radar,1,MALE,"He scampered up a small tree as I was walking through my backyard. Male, appeared very healthy.",2020,8,27,Australia,AU,Queensland,-27.656398,153.158592,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,28,Australia,AU,Queensland,-27.546059,153.073741,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park,2023,6,10,Australia,AU,Queensland,-27.524962,153.092234,EPSG:4326 +HUMAN_OBSERVATION,GuyCastley,1,,,2024,11,3,Australia,AU,Queensland,-27.934301,153.353365,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,2 koalas in same tree,2022,12,29,Australia,AU,Queensland,-27.529123,153.10389,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,5,18,Australia,AU,Queensland,-27.527776,153.09249,EPSG:4326 +HUMAN_OBSERVATION,justinerichaume,1,,,2024,10,23,Australia,AU,Queensland,-19.142114,146.865692,EPSG:4326 +HUMAN_OBSERVATION,nicatgj,1,,,2024,11,21,Australia,AU,Queensland,-27.276933,152.049575,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2023,12,24,Australia,AU,Queensland,-27.526916,153.090843,EPSG:4326 +HUMAN_OBSERVATION,moominmumma,1,,Appears to be same koala in the same spot that I saw on Jan 7.,2022,1,10,Australia,AU,Queensland,-27.542551,153.054473,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Juvenile male. Unhealthy and now confirmed deceased. Diarrhoea wet bottom, wet eyes. Scats collected for pathogen testing. Observed by Monica Pearson. Submitted by Denise Shaw via email.",2023,5,22,Australia,AU,Queensland,-26.637757,152.012821,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,5,Australia,AU,Queensland,-27.524038,153.091995,EPSG:4326 +HUMAN_OBSERVATION,Deanna Marshall,1,,Koalas also heard on our remote camera in this area.,2023,7,13,Australia,AU,Victoria,-38.707032,143.343552,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"I'm pretty sure it's a girl, I got a glimpse of a nice clean white chest as she came into the yard and climbed the tree near me. She is now 20-30m up the top of a bluegum munching.",2023,6,11,Australia,AU,Victoria,-37.874752,142.290897,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2024,1,31,Australia,AU,Queensland,-27.506347,153.079068,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2021,1,1,Australia,AU,Victoria,-37.925848,147.72951,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2023,9,23,Australia,AU,Queensland,-27.529476,153.102631,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,FEMALE,Female koala regularly sighted in area,2021,10,31,Australia,AU,Queensland,-28.104443,151.256988,EPSG:4326 +HUMAN_OBSERVATION,christiandoerig,1,,,2023,11,8,Australia,AU,Victoria,-38.668552,143.860293,EPSG:4326 +HUMAN_OBSERVATION,akwfr,1,,,2022,12,20,Australia,AU,Victoria,-37.923692,147.7247,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Healthy male shortly after release. Was trapped in a garden with unclimbable metal fencing before rescue and relocation 100m to the forest.,2023,8,5,Australia,AU,Queensland,-27.540342,153.034456,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,7,Australia,AU,Queensland,-27.527038,153.109897,EPSG:4326 +HUMAN_OBSERVATION,Yulia Glazunova,1,,,2024,10,21,Australia,AU,Victoria,-38.565395,143.698833,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2022,2,19,Australia,AU,Victoria,-37.90878,147.754464,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,6,16,Australia,AU,Queensland,-27.527204,153.09162,EPSG:4326 +HUMAN_OBSERVATION,Kelana Arraiza,1,,,2023,12,11,Australia,AU,Queensland,-28.017451,153.296041,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,30,Australia,AU,Queensland,-27.528721,153.112649,EPSG:4326 +HUMAN_OBSERVATION,Blake,1,,"Poor quality picture, only had a bad camera available but had to capture such an exciting find!",2022,7,17,Australia,AU,Queensland,-19.142098,146.86197,EPSG:4326 +HUMAN_OBSERVATION,andymc737,1,,,2022,12,18,Australia,AU,Queensland,-27.938953,153.356764,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,,2024,11,18,Australia,AU,Queensland,-27.516033,153.082983,EPSG:4326 +HUMAN_OBSERVATION,dylanheseltine,1,,,2023,8,18,Australia,AU,Queensland,-19.128028,146.871145,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,10,Australia,AU,Queensland,-27.529339,153.103268,EPSG:4326 +HUMAN_OBSERVATION,allambiretreat,1,,,2022,12,31,Australia,AU,Queensland,-27.340372,152.845763,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Older Male koala mid in River redgum roadside Was seen near here yesterday,2022,12,5,Australia,AU,Victoria,-37.87303,144.274045,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,9,11,Australia,AU,Queensland,-27.527347,153.09088,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,21,Australia,AU,Queensland,-27.54685,153.074329,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,26,Australia,AU,Queensland,-27.525012,153.092195,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Wisteria carpark Jacob Jnr,2024,10,5,Australia,AU,Queensland,-27.524509,153.091997,EPSG:4326 +HUMAN_OBSERVATION,dylheal,1,,,2024,7,25,Australia,AU,Victoria,-38.297784,145.002847,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2021,9,14,Australia,AU,Queensland,-27.913354,153.374664,EPSG:4326 +HUMAN_OBSERVATION,Anne Love,1,,,2020,7,5,Australia,AU,Queensland,-27.544569,152.857672,EPSG:4326 +HUMAN_OBSERVATION,Luis Mata EntSocVic,1,,,2021,4,16,Australia,AU,Victoria,-38.82722,143.582521,EPSG:4326 +HUMAN_OBSERVATION,Scott Warner,1,,,2023,7,17,Australia,AU,Queensland,-27.297562,152.227265,EPSG:4326 +HUMAN_OBSERVATION,zaneymg,1,,,2023,12,12,Australia,AU,South Australia,-35.080743,138.569421,EPSG:4326 +HUMAN_OBSERVATION,Byron Croft,1,,,2023,10,1,Australia,AU,Victoria,-38.3017,145.207414,EPSG:4326 +HUMAN_OBSERVATION,knealepw,1,,Climbing a Eucalyptus delegate's sapling,2024,2,9,Australia,AU,Victoria,-37.158569,148.196281,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,In picnic area between triangle area and lower car park Male - scent gland visible,2024,7,5,Australia,AU,Queensland,-27.526776,153.092494,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.924172,147.730592,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Tristania & Wisteria Woodland Mother and joey Cindy Crawford and joey,2023,11,4,Australia,AU,Queensland,-27.524609,153.093053,EPSG:4326 +HUMAN_OBSERVATION,averagefungienjoyer,1,,,2024,3,23,Australia,AU,Victoria,-38.52737,146.386887,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Melaleuca covered in MRV,2021,6,3,Australia,AU,Queensland,-27.551285,153.05633,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,16,Australia,AU,South Australia,-34.890013,138.732753,EPSG:4326 +HUMAN_OBSERVATION,Conservation Volunteers Australia,1,,Male koala,2022,6,18,Australia,AU,Queensland,-27.418861,152.608002,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,1,4,Australia,AU,New South Wales,-28.252455,153.375165,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,3143 red tag female,2022,12,16,Australia,AU,Queensland,-27.545204,153.072209,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,What: Koala trapped between the new guardrail and the traffic - and assisted by MOP to safety. When: 1900 Thursday 29th July 2021 Where: Eastern side of Bunya Street on Mount Crosby Road Photo Credit: @Karana Downs and Mount Crosby Residents,2021,7,29,Australia,AU,Queensland,-27.528783,152.840742,EPSG:4326 +HUMAN_OBSERVATION,ljker2,1,,,2020,11,7,Australia,AU,Queensland,-28.101751,153.450275,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,13,Australia,AU,South Australia,-34.889446,138.734488,EPSG:4326 +HUMAN_OBSERVATION,Cindy Macardle,1,,,2024,4,5,Australia,AU,South Australia,-35.013974,138.665977,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2023,11,26,Australia,AU,South Australia,-34.692015,138.826933,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,1,Australia,AU,Queensland,-27.528045,153.109559,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,7,17,Australia,AU,New South Wales,-28.254053,153.377476,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,13,Australia,AU,Queensland,-27.510033,153.081619,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,19,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi & joey,2023,11,15,Australia,AU,Queensland,-27.530155,153.103892,EPSG:4326 +HUMAN_OBSERVATION,j_sla,1,,,2022,12,14,Australia,AU,Victoria,-38.068675,145.657408,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,12,29,Australia,AU,Victoria,-37.595442,143.874704,EPSG:4326 +HUMAN_OBSERVATION,Dave Walter,1,FEMALE,Mom feeding joey in the shade about 4 m up on a hot afternoon. She moved on to an adjacent Eucalyptus tereticornis later.,2023,1,19,Australia,AU,Queensland,-26.234862,152.639825,EPSG:4326 +HUMAN_OBSERVATION,ericfinley20,1,,,2022,1,12,Australia,AU,Queensland,-19.123122,146.870558,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tree near entrance to nursery Female,2023,5,24,Australia,AU,Queensland,-27.527298,153.09157,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey,2024,10,20,Australia,AU,Queensland,-27.527083,153.091594,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On E.microcorys,2024,3,14,Australia,AU,Queensland,-27.541894,153.063053,EPSG:4326 +HUMAN_OBSERVATION,taitkowalick,1,,,2023,11,2,Australia,AU,South Australia,-35.053938,138.579297,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy looking, most likely Joey to female in adjacent tree",2023,4,19,Australia,AU,Queensland,-27.523703,153.072708,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Spotted gum,2021,2,24,Australia,AU,Queensland,-27.550096,153.054659,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,6,Australia,AU,Queensland,-27.526473,153.090405,EPSG:4326 +HUMAN_OBSERVATION,Kymberley,1,,,2022,12,2,Australia,AU,Queensland,-21.681693,148.678838,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,7,7,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,annamills,1,,,2022,2,18,Australia,AU,Victoria,-38.371904,145.331083,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2021,3,28,Australia,AU,South Australia,-35.03536,138.709367,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,10,4,Australia,AU,South Australia,-34.892703,138.72174,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,10,27,Australia,AU,Queensland,-27.54536,153.073584,EPSG:4326 +HUMAN_OBSERVATION,judyann2603,1,,,2023,4,10,Australia,AU,Queensland,-27.632727,152.898134,EPSG:4326 +HUMAN_OBSERVATION,lil_1,1,,,2022,2,4,Australia,AU,Victoria,-37.623664,144.09484,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,11,4,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,3 images - one koala,2024,10,5,Australia,AU,Queensland,-27.537431,151.974172,EPSG:4326 +HUMAN_OBSERVATION,Jordan Aquilina,1,,,2022,10,17,Australia,AU,Victoria,-38.209867,141.641329,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lemon scented gum,2023,2,22,Australia,AU,Queensland,-27.525892,153.092966,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2021,8,11,Australia,AU,New South Wales,-28.257634,153.402368,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Worst Koala photos ever. Very high up a tree at night.,2020,5,9,Australia,AU,Queensland,-27.548925,153.048222,EPSG:4326 +HUMAN_OBSERVATION,epiproctophora,1,,Mum & baby,2022,7,31,Australia,AU,Queensland,-27.507282,153.087892,EPSG:4326 +HUMAN_OBSERVATION,ormiston,1,,,2021,3,13,Australia,AU,Queensland,-27.523087,153.260972,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Numerous trees scratch marks. Scat found underneath most,2022,7,31,Australia,AU,New South Wales,-33.130917,151.083345,EPSG:4326 +HUMAN_OBSERVATION,Louis O'Neill,1,,,2022,5,11,Australia,AU,Victoria,-37.189328,148.267717,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Christabelle - yellow tag RIGHT ear,2023,1,31,Australia,AU,Queensland,-27.532137,153.105356,EPSG:4326 +HUMAN_OBSERVATION,Ammresh,1,,,2023,2,21,Australia,AU,Victoria,-38.004837,141.066756,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,FEMALE,"Female Koala - taken for assessment to RSPCA Wacol Wildlife Hospital by M Butlin TKWR. No treatment required, tagged and released same location next day.",2023,10,27,Australia,AU,Queensland,-27.43205,151.960144,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,4,Australia,AU,Queensland,-27.527244,153.09146,EPSG:4326 +HUMAN_OBSERVATION,vhutch,1,,,2023,2,5,Australia,AU,Victoria,-37.692415,144.338114,EPSG:4326 +HUMAN_OBSERVATION,genslattery,1,,,2021,12,16,Australia,AU,Victoria,-38.651463,146.202408,EPSG:4326 +HUMAN_OBSERVATION,NewieGarden,1,,,2023,3,19,Australia,AU,South Australia,-35.004831,138.6595,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Mother with joey,2024,7,13,Australia,AU,Queensland,-27.526772,153.09081,EPSG:4326 +HUMAN_OBSERVATION,alyn21000,1,,,2023,2,23,Australia,AU,Queensland,-26.72462,152.978063,EPSG:4326 +HUMAN_OBSERVATION,Amy Thomas,1,,,2024,7,28,Australia,AU,Queensland,-27.250419,153.066816,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,7,28,Australia,AU,Queensland,-27.524869,153.093225,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Soap Tree,2020,4,24,Australia,AU,Queensland,-27.55087,153.059998,EPSG:4326 +HUMAN_OBSERVATION,jnrclawrie,1,,,2021,10,22,Australia,AU,New South Wales,-31.450804,152.907703,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Millie,2023,6,7,Australia,AU,Queensland,-27.527112,153.111174,EPSG:4326 +HUMAN_OBSERVATION,phoebemae98,1,MALE,"Young male Koala, clean bum and eyes. Was startled and running down the footpath then up a tree where koala rescue claimed it",2023,8,3,Australia,AU,Queensland,-27.22478,153.07927,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - olive green tag RIGHT ear - Becky or Mary,2023,12,16,Australia,AU,Queensland,-27.529177,153.111505,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,2 short calls edited and joined with silence in between.,2021,12,14,Australia,AU,Queensland,-27.51049,153.069673,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,11,8,Australia,AU,South Australia,-34.886758,138.733017,EPSG:4326 +HUMAN_OBSERVATION,tashypup,1,,,2022,12,28,Australia,AU,Victoria,-38.377688,145.12207,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,11,13,Australia,AU,Victoria,-37.664068,143.910666,EPSG:4326 +HUMAN_OBSERVATION,R. Kabakoff,1,,,2024,7,27,Australia,AU,Queensland,-27.273298,153.04797,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,8,26,Australia,AU,Queensland,-27.54906,153.072493,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed Caroline Stone. Submitted by Wendy Taylor via msg.,2023,12,1,Australia,AU,Queensland,-26.527061,151.343306,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,19,Australia,AU,Queensland,-27.551523,153.04354,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,4,27,Australia,AU,Queensland,-27.53716,153.056158,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - the only pic I could get!,2024,2,19,Australia,AU,Queensland,-27.530434,153.104438,EPSG:4326 +HUMAN_OBSERVATION,mitchbagz,1,,,2023,5,19,Australia,AU,Victoria,-37.276917,144.310638,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,Robin and RJ back on our property found in a Eucalyptus microcorys. The joey barely visible except for a leg and a foot.,2023,10,11,Australia,AU,Queensland,-27.413697,152.00296,EPSG:4326 +HUMAN_OBSERVATION,jokh88,1,,,2023,12,1,Australia,AU,South Australia,-34.899118,138.692178,EPSG:4326 +HUMAN_OBSERVATION,bill_macrantha,1,,,2023,9,22,Australia,AU,Victoria,-37.773792,145.665803,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,2,10,Australia,AU,South Australia,-34.958685,138.69704,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2023,12,23,Australia,AU,Queensland,-27.524777,153.093808,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2023,12,24,Australia,AU,Queensland,-27.528226,153.092962,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear,2024,1,6,Australia,AU,Queensland,-27.529837,153.103623,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,,2022,12,31,Australia,AU,Queensland,-27.446931,152.652468,EPSG:4326 +HUMAN_OBSERVATION,gniv,1,,,2024,5,20,Australia,AU,South Australia,-35.629158,137.202603,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,2,4,Australia,AU,Queensland,-27.550113,153.054823,EPSG:4326 +HUMAN_OBSERVATION,jessrob73,1,,On the road,2024,3,1,Australia,AU,Victoria,-37.553794,144.114794,EPSG:4326 +HUMAN_OBSERVATION,nicholascroft,1,,,2023,10,9,Australia,AU,Queensland,-27.525433,153.073731,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2023,4,14,Australia,AU,Victoria,-38.361471,145.300568,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,In mum’s trees Mother and joey,2024,10,20,Australia,AU,Queensland,-27.52634,153.090975,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,26,Australia,AU,Queensland,-27.548058,153.037578,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2021,4,2,Australia,AU,Victoria,-38.317739,142.62931,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Mum and Baby on the new tree trough tree,2022,12,8,Australia,AU,Queensland,-27.54367,153.070368,EPSG:4326 +HUMAN_OBSERVATION,Chase DeJarnett,1,,,2024,5,5,Australia,AU,Queensland,-19.126625,146.868422,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,12,21,Australia,AU,Queensland,-27.510003,153.084045,EPSG:4326 +HUMAN_OBSERVATION,rrianna,1,,,2024,2,3,Australia,AU,South Australia,-35.085193,138.596413,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Sick koala, unable to be rescued",2023,4,17,Australia,AU,Queensland,-27.137819,152.51137,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,22,Australia,AU,Queensland,-27.527394,153.107299,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,,Male koala high in large manna gum,2023,12,2,Australia,AU,Victoria,-37.811318,144.249498,EPSG:4326 +HUMAN_OBSERVATION,george_seagull,1,,"An unexpected location, exact location slightly obscured so it doesn't get bothered. Old Cape Schanck Road Bushland Reserve, Rosebud.",2022,1,1,Australia,AU,Victoria,-38.375747,144.91027,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near rear entrance to the nursery Mother and Joey - ear visible,2023,8,19,Australia,AU,Queensland,-27.527221,153.091934,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania and wisteria woodland - front and middle Very high in tree,2023,8,18,Australia,AU,Queensland,-27.52408,153.093389,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,12,22,Australia,AU,Queensland,-27.505828,153.08435,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,8,7,Australia,AU,South Australia,-34.902571,138.711017,EPSG:4326 +HUMAN_OBSERVATION,sophpid,1,,,2022,11,19,Australia,AU,Queensland,-27.719672,151.520699,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Two koalas very close together in the same tree Koala 1,2023,4,22,Australia,AU,Queensland,-27.528165,153.092273,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to cleaners donga,2024,8,10,Australia,AU,Queensland,-27.526898,153.091785,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Unhealthy. Signs of Chlamydia. To be rescued. Observed by community. Submitted via Wendy Taylor.,2024,9,20,Australia,AU,Queensland,-26.129862,151.804578,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,13,Australia,AU,South Australia,-34.888785,138.733201,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,3,6,Australia,AU,Queensland,-27.527261,153.091143,EPSG:4326 +HUMAN_OBSERVATION,Ryan Shofner,1,,,2020,10,10,Australia,AU,New South Wales,-31.442202,152.918473,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,30,Australia,AU,Queensland,-27.518284,153.102727,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2021,10,3,Australia,AU,Queensland,-27.5625,152.106453,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - known as Millie,2023,8,1,Australia,AU,Queensland,-27.527309,153.111375,EPSG:4326 +HUMAN_OBSERVATION,rogstanden,1,,,2022,10,19,Australia,AU,Victoria,-38.286999,145.08104,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2023,12,19,Australia,AU,Queensland,-27.528036,153.092968,EPSG:4326 +HUMAN_OBSERVATION,m_adw,1,,,2022,11,2,Australia,AU,Queensland,-27.647827,152.888331,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2022,9,23,Australia,AU,Victoria,-38.637762,145.715745,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2023,6,28,Australia,AU,New South Wales,-34.101872,150.822053,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2023,3,3,Australia,AU,South Australia,-34.929568,138.717804,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2023,11,26,Australia,AU,South Australia,-34.921537,138.693955,EPSG:4326 +HUMAN_OBSERVATION,sareysmith,1,MALE,,2024,9,28,Australia,AU,Victoria,-37.34573,144.20862,EPSG:4326 +HUMAN_OBSERVATION,sam_21,1,,,2024,10,20,Australia,AU,Victoria,-38.763514,143.667225,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania Way woodlands Cindy Crawford koala with Joey!!!,2023,6,11,Australia,AU,Queensland,-27.524784,153.093744,EPSG:4326 +HUMAN_OBSERVATION,georgiescott,1,,Mum and baby,2024,8,23,Australia,AU,Queensland,-27.438473,152.630912,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In bloodwood,2022,8,27,Australia,AU,Queensland,-27.538882,153.063166,EPSG:4326 +HUMAN_OBSERVATION,johjesse,1,,"Baby koala, in a separate tree to mum",2024,3,21,Australia,AU,Queensland,-27.300205,152.042206,EPSG:4326 +HUMAN_OBSERVATION,emilyhotham,1,,,2023,9,26,Australia,AU,New South Wales,-28.915806,152.293862,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear A... I suspect this is Campo as she is often seen in this area but could not confirm her tag #,2023,5,26,Australia,AU,Queensland,-27.529337,153.109661,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Karyn Bjelke-Petersen. Forwarded by email.,2022,1,19,Australia,AU,Queensland,-26.594261,151.863433,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - yellow tag RIGHT ear,2024,4,12,Australia,AU,Queensland,-27.528797,153.109254,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - yellow tag RIGHT ear,2024,1,5,Australia,AU,Queensland,-27.527648,153.110236,EPSG:4326 +HUMAN_OBSERVATION,alexadavis42,1,,,2024,1,3,Australia,AU,Victoria,-38.824175,146.116532,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,5,15,Australia,AU,Queensland,-27.551748,153.042445,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland middle Mother and joey Separate branch,2023,11,26,Australia,AU,Queensland,-27.528231,153.092727,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2024,6,12,Australia,AU,New South Wales,-33.076733,151.095438,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,10,Australia,AU,Queensland,-27.413588,152.003617,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2024,2,7,Australia,AU,Victoria,-37.716147,143.994868,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult Male. Observed for a few days with no obvious signs of illness but was stationary. Was observed on the ground with flu like symptoms on the 10th. Rescued by KRQ on the 11th. He was euthanised on the 8th July and a necropsy confirmed Retrovirus and tumors in his nasal passage. Observed by Robyn Zackreson. Submitted via FB.,2024,6,10,Australia,AU,Queensland,-26.309113,151.781858,EPSG:4326 +HUMAN_OBSERVATION,jraus,1,,,2024,11,2,Australia,AU,South Australia,-34.958397,138.667378,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,8,22,Australia,AU,Queensland,-27.506333,153.08288,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Stringybark but adjacent Tallowwood,2021,3,5,Australia,AU,Queensland,-27.549843,153.060784,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,19,Australia,AU,South Australia,-34.887155,138.730434,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,10,30,Australia,AU,Queensland,-27.552027,153.054174,EPSG:4326 +HUMAN_OBSERVATION,johjesse,1,,Mum & baby,2024,1,30,Australia,AU,Queensland,-27.299273,152.042235,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.923805,147.730728,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,,,2023,1,28,Australia,AU,Queensland,-27.400283,153.437926,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear - known as Buster,2024,2,28,Australia,AU,Queensland,-27.531588,153.105148,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,2,3,Australia,AU,Queensland,-27.54712,153.073548,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,2,8,Australia,AU,South Australia,-34.897319,138.694111,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female,2024,4,27,Australia,AU,Queensland,-27.527519,153.110343,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Koala spotted by Darryl,2024,1,29,Australia,AU,Queensland,-27.623468,152.901422,EPSG:4326 +HUMAN_OBSERVATION,rachael_williams,1,,Three koalas in tree. One female holding a joey in front of her. A single koala in a higher branch in the same tree.,2023,9,22,Australia,AU,Queensland,-27.394281,153.439361,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,12,25,Australia,AU,Queensland,-27.527092,153.091737,EPSG:4326 +HUMAN_OBSERVATION,annamills,1,,,2022,10,25,Australia,AU,Victoria,-38.324837,145.295235,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2022,9,30,Australia,AU,Queensland,-27.68304,151.5032,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,6,Australia,AU,South Australia,-34.889629,138.722167,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,7,11,Australia,AU,Queensland,-27.506624,153.084841,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,6,15,Australia,AU,Victoria,-37.652778,143.925556,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,"Female Koala with large Joey in Narrow-Leafed Ironbark, Eucalyptus crebra.",2023,11,11,Australia,AU,Queensland,-27.566662,152.111283,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,10,12,Australia,AU,South Australia,-34.891711,138.7184,EPSG:4326 +HUMAN_OBSERVATION,Adriana Labate,1,,,2020,1,10,Australia,AU,Queensland,-19.122495,146.872107,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,30,Australia,AU,Queensland,-27.526859,153.091306,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,6,17,Australia,AU,Queensland,-27.550949,153.057521,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"Probably one of our regulars, but I don't recognize them individually. They come through periodically.",2022,1,29,Australia,AU,Victoria,-37.874676,142.290831,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,28,Australia,AU,South Australia,-34.876083,138.783569,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree at front of tafe Cavendish Road - in front of generator machine,2023,5,21,Australia,AU,Queensland,-27.526857,153.090396,EPSG:4326 +HUMAN_OBSERVATION,Dhugal Lindsay,1,,,2023,12,22,Australia,AU,South Australia,-34.904233,138.709258,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,24,Australia,AU,Queensland,-27.52771,153.110144,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near white plastics bldg,2024,10,5,Australia,AU,Queensland,-27.524373,153.091824,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,,2023,9,17,Australia,AU,Queensland,-27.956967,153.229183,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,"Koala scat around the base of Eucalyptus tereticornis, Ironbark and Brachychiton sp in vet surgery car park.",2021,7,30,Australia,AU,Queensland,-27.990554,152.697394,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Vicki sent this photo she took of a koala and she also has a video,",2020,10,20,Australia,AU,New South Wales,-28.253323,153.377364,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - tag RIGHT ear,2023,4,12,Australia,AU,Queensland,-27.527196,153.109159,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,K block mowing shed,2024,10,27,Australia,AU,Queensland,-27.525815,153.090902,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,9,30,Australia,AU,South Australia,-34.953659,138.687998,EPSG:4326 +HUMAN_OBSERVATION,bertbohosouth,1,,,2024,7,22,Australia,AU,Victoria,-36.805636,145.789719,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lower wisteria car park Top end,2024,9,14,Australia,AU,Queensland,-27.524727,153.092628,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,"Large male, now having one wild ride high up in the wind.",2021,2,15,Australia,AU,Victoria,-38.671099,146.164661,EPSG:4326 +HUMAN_OBSERVATION,Ailis Chapman,1,,Potentially has chlamydia in one eye.,2021,9,2,Australia,AU,New South Wales,-32.614969,151.64525,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,11,3,Australia,AU,Queensland,-27.527005,153.091983,EPSG:4326 +HUMAN_OBSERVATION,Chris Turnbull,1,,Sleeping 25m up a Eucalyptus microcorys tree in front yard of residential property.,2023,8,12,Australia,AU,Queensland,-27.499203,152.957947,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,9,6,Australia,AU,Queensland,-27.554711,151.697305,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"Male, without fluffy ears. Recorded earlier in month",2020,1,11,Australia,AU,New South Wales,-30.520446,151.519282,EPSG:4326 +HUMAN_OBSERVATION,Ana,1,,,2020,9,17,Australia,AU,New South Wales,-31.477597,152.922872,EPSG:4326 +HUMAN_OBSERVATION,david_124,1,,Young Koala second sighting in area,2021,2,24,Australia,AU,Queensland,-27.527713,153.083922,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,3,8,Australia,AU,Queensland,-27.530196,153.103511,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.014095,138.665641,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,12,23,Australia,AU,Queensland,-27.50677,153.085377,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joeys,2024,10,20,Australia,AU,Queensland,-27.527231,153.091609,EPSG:4326 +HUMAN_OBSERVATION,photonic,1,,,2024,9,26,Australia,AU,Queensland,-27.278309,152.965181,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,23,Australia,AU,Queensland,-27.530167,153.10335,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult Male. Unhealthy. Chlamydia. Rescued. Observed in house yard by Wendy Taylor. Submitted via msg,2024,7,24,Australia,AU,Queensland,-26.175006,151.820162,EPSG:4326 +HUMAN_OBSERVATION,annaeltsova,1,,,2024,7,23,Australia,AU,Victoria,-38.763356,143.605483,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,10,1,Australia,AU,South Australia,-34.892257,138.712144,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland,2024,11,9,Australia,AU,Queensland,-27.527168,153.093231,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,10,24,Australia,AU,Queensland,-27.507077,153.082859,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,21,Australia,AU,Queensland,-27.530565,153.104048,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Opposite side of tennis court,2023,9,9,Australia,AU,Queensland,-27.525302,153.093415,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,27,Australia,AU,Queensland,-27.525442,153.092405,EPSG:4326 +HUMAN_OBSERVATION,jraus,1,,,2024,10,8,Australia,AU,South Australia,-35.029578,138.573288,EPSG:4326 +HUMAN_OBSERVATION,alyssabrand,1,,"fresh scat and heaps of scratchings on the nearby Eucalyptus obliqua, but no visual of the actual individual",2024,9,10,Australia,AU,Victoria,-37.489492,144.540162,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,11,19,Australia,AU,Queensland,-27.53917,153.056032,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,1,13,Australia,AU,South Australia,-34.953812,138.685589,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala scat,2022,11,17,Australia,AU,Queensland,-28.182685,152.750762,EPSG:4326 +HUMAN_OBSERVATION,zhuangzhuo,1,,The female koala has a sharper face. Male faces are relatively flat.,2024,11,21,Australia,AU,Queensland,-27.551372,153.057572,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In gully near Aldi gates Male scent gland visible,2024,1,28,Australia,AU,Queensland,-27.526153,153.092966,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,9,12,Australia,AU,Queensland,-27.823454,152.994051,EPSG:4326 +HUMAN_OBSERVATION,deruy21,1,,,2021,10,7,Australia,AU,Queensland,-27.99982,152.425397,EPSG:4326 +HUMAN_OBSERVATION,Carissa,1,,,2022,1,5,Australia,AU,Queensland,-26.714273,152.814529,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area - koala veins fence in nursery grounds,2023,7,1,Australia,AU,Queensland,-27.528081,153.092302,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Male. Observed crossing the road near the entrance to the truck stop. More have been seen along this road and are know to be hit by vehicles. Observed by Maree Frawley. Submitted via email.,2023,7,30,Australia,AU,Queensland,-26.041071,151.830282,EPSG:4326 +HUMAN_OBSERVATION,itara,1,,,2024,2,2,Australia,AU,Victoria,-38.80269,143.477273,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Koala markings. FoN survey Tarkeeth1,2023,10,8,Australia,AU,New South Wales,-30.490626,152.91387,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,4,7,Australia,AU,Queensland,-27.527237,153.091091,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,12,27,Australia,AU,New South Wales,-34.761475,146.581405,EPSG:4326 +HUMAN_OBSERVATION,David C. Simon,1,,,2023,10,2,Australia,AU,New South Wales,-33.56895,150.625174,EPSG:4326 +HUMAN_OBSERVATION,livesarah,1,,,2024,8,24,Australia,AU,Queensland,-27.532726,153.038152,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2023,5,20,Australia,AU,Queensland,-27.527558,153.091085,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.926331,147.729395,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,"Female, right ear tag",2022,7,30,Australia,AU,Queensland,-27.529444,153.109708,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,18,Australia,AU,South Australia,-34.892025,138.721967,EPSG:4326 +HUMAN_OBSERVATION,Deb,1,,,2022,2,19,Australia,AU,South Australia,-34.185479,140.770535,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2021,1,5,Australia,AU,Victoria,-37.925278,147.729722,EPSG:4326 +HUMAN_OBSERVATION,elissalayne,1,,,2023,1,31,Australia,AU,Queensland,-27.746111,153.01502,EPSG:4326 +HUMAN_OBSERVATION,szimpla,1,,,2022,12,4,Australia,AU,Victoria,-38.574861,143.948399,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,3,3,Australia,AU,New South Wales,-28.588097,153.553497,EPSG:4326 +HUMAN_OBSERVATION,julie,1,,,2023,7,25,Australia,AU,Queensland,-27.777695,153.124237,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.012698,138.673699,EPSG:4326 +HUMAN_OBSERVATION,christinemauger_bha,1,MALE,,2023,7,23,Australia,AU,Queensland,-17.961973,145.261977,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi & joey,2023,12,4,Australia,AU,Queensland,-27.530215,153.103315,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.923484,147.731698,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,8,19,Australia,AU,Queensland,-27.512057,153.121312,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,1,10,Australia,AU,South Australia,-34.865222,138.656845,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,7,12,Australia,AU,Queensland,-27.52821,153.103422,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Cindy Crawford and joey Lower wisteria car park,2023,8,13,Australia,AU,Queensland,-27.524547,153.092806,EPSG:4326 +HUMAN_OBSERVATION,bertbohosouth,1,,"In Long-leaf Box (Eucalyptus goniocalyx), plus habitat pic.",2020,3,22,Australia,AU,Victoria,-36.839969,145.672625,EPSG:4326 +HUMAN_OBSERVATION,wmavery,1,MALE,Male koala has been sighted on the property since October 2020 and also heard bellowing in October and November 2020. His left eye is often closed but there does not seem to be any discharge. He has been seen feeding and climbing and moves between a patch of grey gums,2021,2,26,Australia,AU,Queensland,-27.237073,152.838829,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,,2022,12,16,Australia,AU,New South Wales,-28.25928,153.400253,EPSG:4326 +HUMAN_OBSERVATION,Francesco Ricciardi,1,,,2022,3,6,Australia,AU,Victoria,-38.853654,143.521216,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,23,Australia,AU,South Australia,-34.89122,138.731477,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park,2023,10,14,Australia,AU,Queensland,-27.524986,153.092245,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,"Site: K3 Tree no: 1 Tree DBH: 54.110 Sclerophyll notes: No time was recorded for when scats were found - 1pm has been put for all scat observations due to there being no records, all scats were collected on the same day at different sites Ecologist assessed",2021,8,25,Australia,AU,Queensland,-27.70095,152.08235,EPSG:4326 +HUMAN_OBSERVATION,Ozbeach Andy,1,,,2023,10,6,Australia,AU,South Australia,-35.137115,138.590692,EPSG:4326 +HUMAN_OBSERVATION,bushwalkingmama,1,,,2023,10,30,Australia,AU,New South Wales,-33.426278,150.726945,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In Tallowwood reaching over fence from QSAC.,2024,3,12,Australia,AU,Queensland,-27.556731,153.059299,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania wisteria woodland - middle towards rear,2023,9,2,Australia,AU,Queensland,-27.52477,153.092985,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknow sex. Healthy. Observed by Kim Moore. Submitted by Denise Shaw via email.,2022,11,22,Australia,AU,Queensland,-26.39763,152.287287,EPSG:4326 +HUMAN_OBSERVATION,Sylvia Akers,1,,,2020,9,27,Australia,AU,Victoria,-37.90878,147.754464,EPSG:4326 +HUMAN_OBSERVATION,mattroetteler,1,,,2023,10,22,Australia,AU,Queensland,-28.205072,153.197467,EPSG:4326 +HUMAN_OBSERVATION,lil_1,1,,,2022,2,26,Australia,AU,Victoria,-37.623141,144.094646,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,New Years Day. Sleeping koala.,2020,1,1,Australia,AU,Queensland,-27.536858,153.056617,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Second one today.,2023,9,10,Australia,AU,Queensland,-27.257014,152.04632,EPSG:4326 +HUMAN_OBSERVATION,coolduck,1,,Koala scat under a tallowwood.,2022,10,30,Australia,AU,New South Wales,-30.215406,153.030598,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,1,26,Australia,AU,Queensland,-27.527401,153.090855,EPSG:4326 +HUMAN_OBSERVATION,lauraroberfroid,1,,,2023,8,24,Australia,AU,Victoria,-38.82817,143.583267,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2022,12,25,Australia,AU,Queensland,-27.600133,151.889413,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,I think the spot on the hind leg is one that has been here all year and is a male. I will continue to watch and try and see its front view!,2021,1,5,Australia,AU,New South Wales,-28.252479,153.375176,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2024,1,23,Australia,AU,Victoria,-38.130747,145.26884,EPSG:4326 +HUMAN_OBSERVATION,sonofhans,1,,No obvious health issues sighted,2022,2,13,Australia,AU,Queensland,-27.974715,153.31335,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,Descending from the food tree via a ladder tree. LCA3028,2020,9,16,Australia,AU,Queensland,-27.496345,152.248252,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Male koala who was vocalising - but in squeaks - not the usual grunting/growling.,2023,8,13,Australia,AU,Queensland,-27.284299,153.001118,EPSG:4326 +HUMAN_OBSERVATION,ecologynewb,1,,,2023,3,5,Australia,AU,Victoria,-38.689215,143.376637,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood. Possible Joey from female across the road,2023,3,5,Australia,AU,Queensland,-27.550981,153.05762,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2020,3,11,Australia,AU,Victoria,-38.338071,141.608226,EPSG:4326 +HUMAN_OBSERVATION,cootaame,1,,1 of 2 dessicated koalas we have found in the bush in this area in the last few months :(,2024,1,18,Australia,AU,New South Wales,-32.319849,151.819076,EPSG:4326 +HUMAN_OBSERVATION,mikeahart,1,,,2024,4,1,Australia,AU,Victoria,-37.921857,147.728863,EPSG:4326 +HUMAN_OBSERVATION,RangerJayRod,1,,,2022,1,7,Australia,AU,Victoria,-37.977771,145.469451,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Juvenile. Male. Underweight with possible Chlamydia. Rescued by Wendy Taylor and transported to Koala Rescue Qld. Later euthanised. Submitted via msg,2024,2,11,Australia,AU,Queensland,-26.227911,151.996462,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2023,4,25,Australia,AU,South Australia,-35.006017,138.63807,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,Male - located due to grunting Grey Ironbark,2023,11,3,Australia,AU,Queensland,-27.170805,152.988875,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,3,12,Australia,AU,Queensland,-27.544901,153.068271,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Moved .5km since last night.,2023,9,4,Australia,AU,Queensland,-27.257125,152.046364,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2024,6,9,Australia,AU,Queensland,-27.543897,153.055452,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,2,1,Australia,AU,Victoria,-38.671292,146.163833,EPSG:4326 +HUMAN_OBSERVATION,explorer_dom,1,,Koala Sleeping in a what I think is a Harpulia tree.,2023,10,14,Australia,AU,Queensland,-27.702482,153.191599,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2022,2,1,Australia,AU,Queensland,-27.530441,153.104274,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lower wisteria car park Possibly LJ,2023,11,19,Australia,AU,Queensland,-27.524863,153.092382,EPSG:4326 +HUMAN_OBSERVATION,Lizz Hills,1,,,2023,10,12,Australia,AU,Queensland,-28.308736,152.854949,EPSG:4326 +HUMAN_OBSERVATION,mjjardine,1,,,2023,12,16,Australia,AU,Victoria,-38.322214,142.365117,EPSG:4326 +HUMAN_OBSERVATION,dawnborchardt,1,,,2022,3,13,Australia,AU,South Australia,-35.146825,138.597596,EPSG:4326 +HUMAN_OBSERVATION,miriamrose123,1,,Koala and baby,2023,1,5,Australia,AU,Victoria,-38.130876,145.26807,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2021,12,30,Australia,AU,Victoria,-38.354012,146.387998,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,3,13,Australia,AU,Queensland,-27.541995,153.062195,EPSG:4326 +HUMAN_OBSERVATION,ninjajuju,1,,,2023,7,8,Australia,AU,Queensland,-27.544032,152.857309,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Healthy looking and alert.,2022,9,20,Australia,AU,Queensland,-27.575445,152.744112,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,4,8,Australia,AU,Victoria,-37.651258,143.911921,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,Taken with DSLR and then with phone from the screen. Hence the low quality.,2023,3,3,Australia,AU,New South Wales,-31.989313,151.813478,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,MALE,Spent some time in the pine tree.,2022,5,11,Australia,AU,Victoria,-38.175629,145.132056,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Male in Stringybark interacting with another koala at end of the branch,2020,10,8,Australia,AU,Queensland,-27.548439,153.05206,EPSG:4326 +HUMAN_OBSERVATION,jango1971,1,,,2021,1,19,Australia,AU,Queensland,-19.128648,146.855847,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,10,26,Australia,AU,Queensland,-27.25791,152.044728,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2021,1,15,Australia,AU,South Australia,-34.830996,138.736167,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,1,Australia,AU,Queensland,-27.52746,153.092509,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,13,Australia,AU,South Australia,-34.891356,138.73225,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2024,7,23,Australia,AU,Victoria,-38.334815,142.633549,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2021,12,28,Australia,AU,Queensland,-27.53062,153.104553,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag - & joey. First time I’ve seen joey away from mum,2023,1,17,Australia,AU,Queensland,-27.530639,153.103828,EPSG:4326 +HUMAN_OBSERVATION,birdman_australia,1,,,2023,10,20,Australia,AU,New South Wales,-31.434775,152.90735,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Deceased. Attacked by dogs. Observed by Wendy Taylor. Submitted via FB & Msg.,2024,5,22,Australia,AU,Queensland,-26.179374,151.77355,EPSG:4326 +HUMAN_OBSERVATION,Gordon Claridge,1,,"This is a koala that we have been recording since at least August 2021, when it was already a fully adult male. It is recognisable by the white spot on the left knee. He started climbing at 3.54am and was back on the ground by 3.57am. This is a heavily used tree to judge by the scratch marks on the bark. It is very unlikely that he needed to climb the tree to check on the quality of the leaves - more likely he was scent-marking the trunks as he went. He had come past this tree six days before without giving it a second glance (188474335). He used the smaller ""ladder"" tree to go up, jumping across to the food tree and then climbing down it. Ladder trees are smaller diameter trees that give a better grip for climbing, but are not always better for descending.",2023,8,9,Australia,AU,Queensland,-27.495004,152.249225,EPSG:4326 +HUMAN_OBSERVATION,Michael A. Alcorn,1,,,2023,10,19,Australia,AU,Queensland,-27.394611,153.441419,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male,2023,10,28,Australia,AU,Queensland,-27.524026,153.101306,EPSG:4326 +HUMAN_OBSERVATION,peekay84,1,,Larger male. Have been told there are other koalas in the area. But I have only seen and heard this one.,2020,2,24,Australia,AU,Queensland,-27.733111,153.201381,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Too far away to be sure which one this is.,2021,10,21,Australia,AU,New South Wales,-28.254167,153.37674,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,MALE,,2023,11,9,Australia,AU,Queensland,-27.848935,153.072033,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3160,2023,5,13,Australia,AU,Queensland,-27.496763,152.249435,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2022,3,21,Australia,AU,South Australia,-34.971441,138.638051,EPSG:4326 +HUMAN_OBSERVATION,cleanlymoss,1,,,2022,12,30,Australia,AU,Queensland,-27.600052,151.895396,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Unhealthy looking male, swollen eyes, animal rescue called on advice of QKS He was successfully rescued that evening",2022,12,28,Australia,AU,Queensland,-27.533792,153.14215,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,2,10,Australia,AU,South Australia,-34.950787,138.673624,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2021,10,22,Australia,AU,Victoria,-38.251851,145.243763,EPSG:4326 +HUMAN_OBSERVATION,Julie Overton,1,,Male Koala,2022,3,18,Australia,AU,New South Wales,-34.000119,150.911757,EPSG:4326 +HUMAN_OBSERVATION,Vida Svahnström,1,,,2020,5,25,Australia,AU,Queensland,-19.137299,146.868969,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Very wet and rainy - difficult to get photos!,2023,3,12,Australia,AU,Queensland,-27.527446,153.092179,EPSG:4326 +HUMAN_OBSERVATION,Gayle Marien,1,,,2023,2,10,Australia,AU,Victoria,-38.486596,145.263561,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,His in Lemon Scented Gum. brown female and joey,2020,11,6,Australia,AU,New South Wales,-28.253788,153.376758,EPSG:4326 +HUMAN_OBSERVATION,avocat,1,,,2024,10,4,Australia,AU,Victoria,-38.670551,143.856156,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,12,26,Australia,AU,Queensland,-27.648024,151.565545,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"This is a male as I heard it first, and then found it. It may be the same one seen in trees in the immediate area on the opposite side of the road, very slightly down hill, on the 2nd, 10th, 13th and 14th May. The 10th I also heard before I saw it, so I know that was a male . As it was close enough and moving I was able to get a lot of different angles of view, with the hope of being able to identify this one in future, and even to confirm it might be the same as those other dates. It struck me as being very big.",2020,5,19,Australia,AU,New South Wales,-28.254299,153.377645,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,FEMALE,"Female with Joey, high in tree by the creek",2023,8,20,Australia,AU,Queensland,-27.52972,153.101801,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Cheese tree,2020,2,5,Australia,AU,Queensland,-27.549627,153.05966,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Hit by car. Rescued. Treated by Kingaroy Vets. Impaled tongue with bottom teeth. Observed by Wendy Taylor. Submitted via FB & msg. UPDATE: Released in Inverlaw week commencing 16th September 2024.,2024,5,27,Australia,AU,Queensland,-26.612043,151.784653,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,,2024,9,22,Australia,AU,Victoria,-37.936023,141.55601,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2020,9,25,Australia,AU,South Australia,-34.917751,138.542784,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,Small male in tree by power pole,2023,10,14,Australia,AU,Queensland,-27.528883,153.101559,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,6,8,Australia,AU,Queensland,-27.61347,151.556488,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Maisie yellow tag right ear 0768,2024,3,3,Australia,AU,Queensland,-27.527451,153.090902,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,20,Australia,AU,Queensland,-27.5292,153.103557,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,,2022,11,22,Australia,AU,New South Wales,-28.260678,153.399622,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2021,9,20,Australia,AU,Queensland,-27.919592,153.377016,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2022,8,1,Australia,AU,Queensland,-28.103119,151.258889,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,21,Australia,AU,Queensland,-27.528244,153.103351,EPSG:4326 +HUMAN_OBSERVATION,Kye Turnbull,1,,,2024,6,11,Australia,AU,Queensland,-27.28436,152.99995,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2023,2,26,Australia,AU,Queensland,-27.824287,152.992633,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,9,Australia,AU,South Australia,-34.874369,138.733423,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Goondicum. Observed by Nadia Campbell. Submitted by USB.,2020,9,15,Australia,AU,Queensland,-24.857677,151.443241,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road- next to car park #14,2024,2,25,Australia,AU,Queensland,-27.527078,153.09127,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,10,13,Australia,AU,New South Wales,-28.281303,153.390097,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,3,23,Australia,AU,New South Wales,-33.07655,151.095506,EPSG:4326 +HUMAN_OBSERVATION,avid_dattenborough,1,,Koala claw marks?,2022,9,17,Australia,AU,New South Wales,-34.100564,150.972024,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2022,11,9,Australia,AU,New South Wales,-33.076733,151.095428,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,12,6,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2024,9,20,Australia,AU,Victoria,-38.354719,146.387545,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,this may be a male,2020,10,9,Australia,AU,New South Wales,-28.254227,153.377096,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Reconyx HF2,2023,3,10,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2023,12,30,Australia,AU,Queensland,-27.52707,153.091137,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,BCC project koala,2021,2,23,Australia,AU,Queensland,-27.493855,153.121139,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,3,16,Australia,AU,Queensland,-27.527146,153.091748,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,18,Australia,AU,South Australia,-34.891982,138.72197,EPSG:4326 +HUMAN_OBSERVATION,trevncrys,1,,He/she was there 23rd and 24th March. Can't see him today (25th). He appeared healthy.,2021,3,23,Australia,AU,Queensland,-25.592426,152.669829,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,9,26,Australia,AU,South Australia,-35.037253,138.584315,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park,2024,4,21,Australia,AU,Queensland,-27.525007,153.092288,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,Possibly male by the calling the night before.,2021,11,6,Australia,AU,Queensland,-27.734289,153.101944,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In Tristania and Wisteria woodland - middle,2023,7,9,Australia,AU,Queensland,-27.524269,153.09304,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Maisie,2024,3,10,Australia,AU,Queensland,-27.526537,153.090583,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,MALE,,2020,9,16,Australia,AU,Victoria,-38.175496,145.132266,EPSG:4326 +HUMAN_OBSERVATION,Sean,1,,Heard the koala making grunting noises. He went back to napping not long after. Healthy looking.,2024,11,4,Australia,AU,Queensland,-27.701238,153.19029,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Same mother and baby in different stringybark.,2020,1,16,Australia,AU,New South Wales,-30.520064,151.520661,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Young adult, unknown sex, healthy. Observed by Darren Brebner. Submitted by Denise Shaw via email",2023,6,12,Australia,AU,Queensland,-26.17259,151.766353,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,,2024,11,3,Australia,AU,Queensland,-27.516139,153.083656,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,6,18,Australia,AU,New South Wales,-28.253922,153.377369,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,6,1,Australia,AU,Queensland,-27.527874,153.092593,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi & joey,2024,1,15,Australia,AU,Queensland,-27.53044,153.104088,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,8,10,Australia,AU,Queensland,-27.523884,153.093151,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,In Manna Gum. Koala is feeding just below and to the right of the stick nest. Appears to be same koala (in same tree) as yesterday (https://inaturalist.ala.org.au/observations/214556280).,2024,5,10,Australia,AU,Victoria,-38.500075,142.975014,EPSG:4326 +HUMAN_OBSERVATION,dan_allen,1,,,2021,4,12,Australia,AU,New South Wales,-32.654893,151.648977,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,2,16,Australia,AU,Queensland,-27.545859,153.068855,EPSG:4326 +HUMAN_OBSERVATION,tawnyhossack,1,,,2024,8,3,Australia,AU,Victoria,-37.757382,145.689,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,13,Australia,AU,South Australia,-34.886321,138.734182,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey Ironbark. Mum and Joey,2020,10,8,Australia,AU,Queensland,-27.539646,153.063136,EPSG:4326 +HUMAN_OBSERVATION,LibbyM58,1,,,2023,9,24,Australia,AU,Queensland,-27.26833,152.065247,EPSG:4326 +HUMAN_OBSERVATION,leannep,1,,Joey on Mums back,2020,10,1,Australia,AU,Queensland,-27.812013,153.162807,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,1,4,Australia,AU,Queensland,-27.527209,153.092171,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,Same koala passing by twice,2023,11,8,Australia,AU,Queensland,-27.662956,153.075423,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,5,Australia,AU,South Australia,-34.889727,138.731562,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Reconyx HF2,2023,3,1,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - joey has dispersed,2024,11,23,Australia,AU,Queensland,-27.529934,153.105308,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,10,1,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,18,Australia,AU,South Australia,-34.889935,138.721882,EPSG:4326 +HUMAN_OBSERVATION,Nathaniel Xggum,1,,,2023,2,4,Australia,AU,Queensland,-27.570645,153.163871,EPSG:4326 +HUMAN_OBSERVATION,S J Wooldridge,1,,,2023,9,23,Australia,AU,Victoria,-38.803999,143.534515,EPSG:4326 +HUMAN_OBSERVATION,sunshineazza,1,,,2024,10,5,Australia,AU,Queensland,-27.448862,152.308992,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2022,11,10,Australia,AU,Queensland,-27.699665,151.547954,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2023,8,12,Australia,AU,New South Wales,-34.1004,150.82564,EPSG:4326 +HUMAN_OBSERVATION,Emily Winter,1,,,2023,2,19,Australia,AU,South Australia,-34.852779,138.839648,EPSG:4326 +HUMAN_OBSERVATION,Macro.Enthusiast,1,,,2024,5,19,Australia,AU,South Australia,-34.933233,138.686968,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,12,Australia,AU,Queensland,-27.527709,153.112639,EPSG:4326 +HUMAN_OBSERVATION,petarutherford,1,,,2022,4,24,Australia,AU,Queensland,-27.806672,153.094528,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,Looks like a male going by that chest last picture.,2022,1,15,Australia,AU,Victoria,-38.178276,145.127537,EPSG:4326 +HUMAN_OBSERVATION,Claudje,1,,In a spotted gum,2021,8,6,Australia,AU,Queensland,-28.118477,152.835517,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,12,23,Australia,AU,Queensland,-27.527199,153.091602,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,13,Australia,AU,South Australia,-34.89133,138.730982,EPSG:4326 +HUMAN_OBSERVATION,klem419,1,,,2023,2,6,Australia,AU,Victoria,-38.484212,145.261577,EPSG:4326 +HUMAN_OBSERVATION,Steve Dew,1,,,2022,2,14,Australia,AU,Victoria,-38.800562,143.481831,EPSG:4326 +HUMAN_OBSERVATION,Michael Goode,1,,,2023,12,21,Australia,AU,Queensland,-27.509111,153.223572,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,22,Australia,AU,South Australia,-34.890851,138.730671,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,Yellow left ear tag 1349.,2024,11,14,Australia,AU,Queensland,-27.510447,153.069613,EPSG:4326 +HUMAN_OBSERVATION,dmads1,1,,,2023,2,16,Australia,AU,Queensland,-27.654295,152.900414,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2024,8,22,Australia,AU,Victoria,-38.345764,146.404142,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,Large amount of poo.,2021,8,18,Australia,AU,Victoria,-38.179692,145.130436,EPSG:4326 +HUMAN_OBSERVATION,Gemma,1,,"Date on photo is wrong. Motion Sensor Camera between September 4-26, 2023",2023,9,26,Australia,AU,Victoria,-38.225617,146.144133,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,Scat,2024,1,19,Australia,AU,Victoria,-38.130666,145.267866,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala looks nice and healthy and with cute white markings.,2024,5,13,Australia,AU,Queensland,-27.948395,152.591286,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - olive green tag E18 - Becky. Dirty bum. Rescued this afternoon - taken to RSPCA,2024,2,10,Australia,AU,Queensland,-27.529357,153.111314,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,13,Australia,AU,Queensland,-27.531112,153.105186,EPSG:4326 +HUMAN_OBSERVATION,Craig Hunter,1,,Residing in Gum top box for the last week,2020,6,10,Australia,AU,Queensland,-27.018405,151.548543,EPSG:4326 +HUMAN_OBSERVATION,danicalockett,1,,,2023,10,26,Australia,AU,Queensland,-19.123795,146.872045,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted by Denise Shaw via text.,2023,10,6,Australia,AU,Queensland,-26.177354,151.692383,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,3,9,Australia,AU,Queensland,-27.527156,153.092137,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland middle,2023,9,10,Australia,AU,Queensland,-27.524316,153.093097,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,This animal occasionally making an awful lot of loud calls for many hours,2020,9,29,Australia,AU,Queensland,-27.510335,153.069882,EPSG:4326 +HUMAN_OBSERVATION,carolinejjones,1,,,2024,6,5,Australia,AU,Victoria,-37.5626,149.757378,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy looking, very active and alert. Next to road but good habitat to move into.",2023,6,30,Australia,AU,Queensland,-27.387998,152.650244,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,27,Australia,AU,Queensland,-27.527246,153.108232,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,24,Australia,AU,Queensland,-27.527194,153.091452,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,4,19,Australia,AU,South Australia,-35.009444,138.639125,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2023,2,11,Australia,AU,South Australia,-34.692015,138.826933,EPSG:4326 +HUMAN_OBSERVATION,dumakey,1,,,2020,11,11,Australia,AU,South Australia,-35.170347,138.584078,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,,2024,9,16,Australia,AU,New South Wales,-34.757195,146.566458,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,4,20,Australia,AU,Queensland,-27.525758,153.092002,EPSG:4326 +HUMAN_OBSERVATION,GuyCastley,1,,,2023,3,15,Australia,AU,Queensland,-27.963527,153.381147,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2024,9,24,Australia,AU,South Australia,-34.970323,138.638688,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,8,7,Australia,AU,Queensland,-27.549425,153.059827,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,T block near nursery Distinctive nostril pattern - Isabelle,2024,11,3,Australia,AU,Queensland,-27.527144,153.091781,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,6,27,Australia,AU,New South Wales,-28.257976,153.400785,EPSG:4326 +HUMAN_OBSERVATION,annewmelb,1,,,2023,10,15,Australia,AU,Victoria,-36.926638,145.717317,EPSG:4326 +HUMAN_OBSERVATION,Paulaed,1,,,2023,1,14,Australia,AU,South Australia,-35.002344,138.590056,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - green tag LEFT ear - Joe, known as Bozo",2024,7,12,Australia,AU,Queensland,-27.526887,153.108857,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,8,Australia,AU,Queensland,-27.527548,153.110213,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,30,Australia,AU,South Australia,-34.881096,138.731679,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Spotted Gun,2020,1,31,Australia,AU,Queensland,-27.549136,153.051169,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark,2021,5,19,Australia,AU,Queensland,-27.5519,153.0587,EPSG:4326 +HUMAN_OBSERVATION,LFW-ScenicRim,1,,,2023,9,25,Australia,AU,Queensland,-27.886315,152.749177,EPSG:4326 +HUMAN_OBSERVATION,tomeng,1,,,2023,2,25,Australia,AU,Victoria,-37.198,143.335595,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,,2024,8,19,Australia,AU,Victoria,-38.081626,141.726796,EPSG:4326 +HUMAN_OBSERVATION,georgiescott,1,,Mum and baby,2024,8,23,Australia,AU,Queensland,-27.437549,152.632028,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,19,Australia,AU,Queensland,-27.545831,153.073276,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,At the top of eucalyptus tree being harassed by Blue-faced Honeyeaters.,2021,10,22,Australia,AU,Queensland,-27.734787,153.102483,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near compressor/generator thing next to E block,2023,8,3,Australia,AU,Queensland,-27.526617,153.090929,EPSG:4326 +HUMAN_OBSERVATION,Hannah Hickli,1,,,2022,7,23,Australia,AU,Queensland,-19.12793,146.868195,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,9,Australia,AU,South Australia,-34.871821,138.729295,EPSG:4326 +HUMAN_OBSERVATION,philip-roetman,1,,,2024,4,28,Australia,AU,South Australia,-35.001711,138.656348,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In e block picnic area,2023,11,4,Australia,AU,Queensland,-27.525975,153.090432,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,"Two koalas in one tree (Tallowwood). One is prone and the other is higher up in the branch, feeding on the leaves. Koala lying prone appears to be a juvenile.",2023,5,3,Australia,AU,Queensland,-27.549204,153.059827,EPSG:4326 +HUMAN_OBSERVATION,Giovanna,1,,"My second Koala sighted in the wild. Binna Burra, Cave Trail, Lamington National Park",2023,4,9,Australia,AU,Queensland,-28.196394,153.187191,EPSG:4326 +HUMAN_OBSERVATION,Jenny West,1,MALE,,2023,2,5,Australia,AU,Victoria,-37.570987,144.105482,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,Male koala seen this morning walking along side of road West of here see first photo. Now v high in yellow gum Update this koala was actually a female on closer look at photos. Definitely female and different nose pattern to male seen west of here,2024,3,27,Australia,AU,Victoria,-37.827783,144.30385,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Bella’s tree - the Concourse,2024,10,5,Australia,AU,Queensland,-27.526905,153.091465,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowood,2020,8,4,Australia,AU,Queensland,-27.551142,153.058148,EPSG:4326 +HUMAN_OBSERVATION,Heath Hunter,1,,,2023,3,18,Australia,AU,South Australia,-34.947804,138.688933,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Adult, unknown sex, observed eye problem. Koala qld were called. Observed by Wendy Taylor. Submitted by Denise Shaw via email.",2023,6,20,Australia,AU,Queensland,-26.505141,151.821061,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,15,Australia,AU,South Australia,-34.890277,138.733348,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Young koala calling. There are also, birds and frogs in the background.",2020,9,9,Australia,AU,New South Wales,-28.257748,153.40062,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2023,11,5,Australia,AU,Queensland,-27.524556,153.093036,EPSG:4326 +HUMAN_OBSERVATION,julietandbrian,1,,,2022,12,4,Australia,AU,Queensland,-27.348381,152.062627,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,11,Australia,AU,South Australia,-34.892802,138.715394,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2022,9,25,Australia,AU,New South Wales,-34.101753,150.822983,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,2,14,Australia,AU,Queensland,-27.551163,153.058031,EPSG:4326 +HUMAN_OBSERVATION,Peter and Shelly,1,,,2023,10,6,Australia,AU,Queensland,-27.385972,151.61625,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Seen under Tallowwood trees.,2021,8,8,Australia,AU,New South Wales,-28.260373,153.401523,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,1,4,Australia,AU,Queensland,-27.527137,153.092114,EPSG:4326 +HUMAN_OBSERVATION,Steve Martin,1,,,2023,9,19,Australia,AU,New South Wales,-31.443032,152.919373,EPSG:4326 +HUMAN_OBSERVATION,marafreeburn,1,,9 Koalas spotted,2022,12,27,Australia,AU,New South Wales,-28.889395,153.229042,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In gully near Aldi gates,2024,1,26,Australia,AU,Queensland,-27.526287,153.0931,EPSG:4326 +HUMAN_OBSERVATION,Em Crick,1,,,2024,4,18,Australia,AU,Victoria,-38.834065,143.512968,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,5,14,Australia,AU,Victoria,-38.671167,146.163697,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3148,2023,5,1,Australia,AU,Queensland,-27.496771,152.249514,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,25,Australia,AU,Queensland,-27.527529,153.102836,EPSG:4326 +HUMAN_OBSERVATION,ellepenn7,1,MALE,,2024,9,18,Australia,AU,Queensland,-27.837805,153.097,EPSG:4326 +HUMAN_OBSERVATION,rachael_williams,1,,,2023,4,8,Australia,AU,Queensland,-27.39523,153.441942,EPSG:4326 +HUMAN_OBSERVATION,Natalka Hardeman,1,,With Joey,2023,10,21,Australia,AU,Queensland,-27.158067,152.592987,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,3,17,Australia,AU,Queensland,-27.527126,153.091788,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,6,14,Australia,AU,Queensland,-27.506851,153.075142,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,FEMALE,,2024,3,7,Australia,AU,New South Wales,-29.547058,150.564426,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,26,Australia,AU,Queensland,-26.38855,151.794672,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark,2021,2,26,Australia,AU,Queensland,-27.542287,153.054904,EPSG:4326 +HUMAN_OBSERVATION,franhills,1,,,2022,7,30,Australia,AU,South Australia,-34.989,138.826181,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Louise Mason. Sent via FB.,2020,12,1,Australia,AU,Queensland,-26.546061,151.921227,EPSG:4326 +HUMAN_OBSERVATION,Ken Hurley,1,,,2023,11,19,Australia,AU,South Australia,-35.071298,138.884801,EPSG:4326 +HUMAN_OBSERVATION,prinnykat,1,,,2021,1,31,Australia,AU,Queensland,-27.514507,153.082795,EPSG:4326 +HUMAN_OBSERVATION,Mel,1,,A young koala,2020,1,17,Australia,AU,South Australia,-34.963253,138.650922,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,10,22,Australia,AU,Queensland,-27.701124,153.189646,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,MALE,"""Black Lip"" male in stringy bark. Called during night and at 9.30 am. Yeterday on 45 Baker Road. First identified 2015",2023,1,8,Australia,AU,New South Wales,-30.520513,151.519445,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,22,Australia,AU,South Australia,-34.936978,138.705275,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,11,2,Australia,AU,Queensland,-27.527928,153.092556,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Tennis court tree Mother and joey Cindy Crawford and joey,2024,9,7,Australia,AU,Queensland,-27.525433,153.092884,EPSG:4326 +HUMAN_OBSERVATION,mamcdowall,1,,,2023,1,26,Australia,AU,Victoria,-37.0386,145.497497,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,Robin with her joey,2023,10,31,Australia,AU,Queensland,-27.412028,152.003838,EPSG:4326 +HUMAN_OBSERVATION,bridgetkay,1,,,2021,10,27,Australia,AU,Queensland,-27.834752,153.052286,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Koala is hard to see, obscured by many tree branches.",2021,2,23,Australia,AU,New South Wales,-28.258081,153.400825,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted by Denise Shaw via email,2023,8,9,Australia,AU,Queensland,-26.148682,151.747217,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,MALE,,2024,10,6,Australia,AU,Queensland,-27.550249,153.059576,EPSG:4326 +HUMAN_OBSERVATION,Lizz Hills,1,,,2023,9,24,Australia,AU,Queensland,-28.308732,152.854949,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,7,13,Australia,AU,Queensland,-27.527791,153.092287,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,MALE,Adult male walked down the street then climbed a tree and started to vocalise. Typical behaviour during breeding season,2023,10,29,Australia,AU,Queensland,-27.49658,153.400058,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.384823,145.309082,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male koala high in his favourite manna gum Biami,2024,1,31,Australia,AU,Victoria,-37.811045,144.248992,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,2,6,Australia,AU,New South Wales,-29.546651,150.563969,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,12,Australia,AU,Queensland,-27.530576,153.103045,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Reasonably large male, alert and seemingly healthy",2022,12,5,Australia,AU,Queensland,-27.535408,153.036592,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2022,11,3,Australia,AU,Victoria,-38.134349,145.279049,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,6,Australia,AU,Queensland,-27.52981,153.104829,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"We have koalas moving through periodically. This grunty boy came through earlier this year and sought out a young female who was already here. He approached via another tree, but she hit him, very hard, when he got close. So they sat in the tree separated ignoring each other.",2021,1,23,Australia,AU,Victoria,-37.874318,142.29159,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear - Bozo,2023,7,31,Australia,AU,Queensland,-27.529377,153.106413,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"This male has just come into the backyard. We have a female in the yard (in a different tree) who has been ""in residence"" for 6 weeks now. This boy knew his way around the trees, I think he is one of our regulars.",2023,7,23,Australia,AU,Victoria,-37.874662,142.291211,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,Mother and baby,2020,5,17,Australia,AU,South Australia,-35.00272,138.656425,EPSG:4326 +HUMAN_OBSERVATION,lizard_lookman,1,,,2024,6,16,Australia,AU,South Australia,-34.95724,138.684858,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Submitted by Julz Farrell. Alive, healthy, adult. Sex unknown",2020,7,8,Australia,AU,Queensland,-24.967152,151.13289,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,6,2,Australia,AU,Queensland,-27.527291,153.091332,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,15,Australia,AU,Queensland,-27.527123,153.09168,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Frank Rooney,2024,1,20,Australia,AU,Queensland,-27.527323,153.090878,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Male calling from a Tasmanian Blue Gum,2021,10,27,Australia,AU,Victoria,-38.67162,146.164003,EPSG:4326 +HUMAN_OBSERVATION,Alan Wynn,1,,Scats under Eucalyptus propinqua,2023,1,25,Australia,AU,Queensland,-26.66948,152.740662,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey?,2023,10,30,Australia,AU,Queensland,-27.527227,153.09125,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2021,9,17,Australia,AU,Victoria,-38.354295,146.386293,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,24,Australia,AU,Queensland,-27.545977,153.073289,EPSG:4326 +HUMAN_OBSERVATION,Dhugal Lindsay,1,,,2023,12,22,Australia,AU,South Australia,-34.903595,138.70662,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Two koalas same tree,2023,4,16,Australia,AU,Queensland,-27.527903,153.092212,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,3,17,Australia,AU,Queensland,-27.547262,153.058553,EPSG:4326 +HUMAN_OBSERVATION,David Lowry,1,,,2022,9,25,Australia,AU,Queensland,-19.123525,146.871353,EPSG:4326 +HUMAN_OBSERVATION,nsgwilliams,1,,,2020,7,16,Australia,AU,Victoria,-38.399394,145.103078,EPSG:4326 +HUMAN_OBSERVATION,magpies_friends,1,,,2023,12,6,Australia,AU,Queensland,-27.495821,153.40241,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"actively feeding on leaves of corymbia sp, probably henryii.",2022,6,23,Australia,AU,Queensland,-27.510485,153.06969,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2024,1,10,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,Nadir Runkovski,1,,,2024,11,18,Australia,AU,Queensland,-26.51423,152.430276,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,7,16,Australia,AU,New South Wales,-33.076622,151.095322,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to fire pump at Aldi gates,2024,8,4,Australia,AU,Queensland,-27.526841,153.093157,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,FEMALE,"Female, dirty bum, rescued",2023,10,9,Australia,AU,Queensland,-27.852263,152.67903,EPSG:4326 +HUMAN_OBSERVATION,mtbarneylodge,1,,Crossed dirt road 7.30am. Looks healthy.,2022,9,20,Australia,AU,Queensland,-28.279851,152.735581,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2022,12,20,Australia,AU,Queensland,-27.63027,151.572433,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag - Naomi,2023,10,16,Australia,AU,Queensland,-27.530628,153.103652,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road - near bamboo Female koala - pouch with Joey visible,2023,6,4,Australia,AU,Queensland,-27.527478,153.090754,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,15,Australia,AU,Queensland,-27.527347,153.109391,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A18 - Campo. She was lower down in a different tree when I walked past again later,2023,7,21,Australia,AU,Queensland,-27.529399,153.109351,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,18,Australia,AU,Queensland,-27.527148,153.109496,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,9,16,Australia,AU,Queensland,-27.766288,151.547853,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,,2024,10,29,Australia,AU,Queensland,-27.509192,153.085053,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow 1317 LEFT ear - Thor. We have been monitoring the patch on his LEFT shoulder EDIT: Thor has been rescued today & taken to RSPCA for assessment EDIT: Thor has been euthanised - found to have a compound fracture of LEFT arm,2024,7,1,Australia,AU,Queensland,-27.528043,153.112246,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,,2023,7,9,Australia,AU,Queensland,-27.530284,153.101454,EPSG:4326 +HUMAN_OBSERVATION,birdgirl03,1,,,2023,10,31,Australia,AU,Queensland,-28.09673,153.456542,EPSG:4326 +HUMAN_OBSERVATION,Bryce Warner,1,,,2023,1,23,Australia,AU,New South Wales,-29.801455,151.252647,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2023,3,18,Australia,AU,South Australia,-34.912635,138.718722,EPSG:4326 +HUMAN_OBSERVATION,Wil,1,MALE,,2023,6,1,Australia,AU,Queensland,-18.622496,143.943865,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,28,Australia,AU,Queensland,-27.628952,151.564187,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,26,Australia,AU,South Australia,-34.858354,138.721342,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Yellow tag left ear number 1274,2024,4,3,Australia,AU,Queensland,-27.547326,153.073904,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - tear RIGHT ear - Niki,2024,6,22,Australia,AU,Queensland,-27.528477,153.103184,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,27,Australia,AU,South Australia,-34.885521,138.730899,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult male. Healthy. Sound file recorded at night. In tree about the drive way. Observed by Elissa Blacke. Submitted via email,2023,9,6,Australia,AU,Queensland,-26.559585,152.005176,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds Male - testicles visible,2024,5,5,Australia,AU,Queensland,-27.52811,153.092335,EPSG:4326 +HUMAN_OBSERVATION,Charles Dove,1,,,2023,9,26,Australia,AU,Queensland,-27.564462,151.997441,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2022,2,19,Australia,AU,Victoria,-37.911556,147.762188,EPSG:4326 +HUMAN_OBSERVATION,Martin Rady,1,,,2021,10,2,Australia,AU,Queensland,-27.530518,153.104068,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Tagged Female 3143 (Emily),2023,1,17,Australia,AU,Queensland,-27.546173,153.073407,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,5,3,Australia,AU,Queensland,-27.546187,153.074407,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,20,Australia,AU,Queensland,-27.527067,153.090852,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,15,Australia,AU,Queensland,-27.546024,153.073115,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,,2024,9,17,Australia,AU,New South Wales,-34.757719,146.587633,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy, alert.",2023,2,17,Australia,AU,Queensland,-27.544853,153.05092,EPSG:4326 +HUMAN_OBSERVATION,cicadaexplorermore,1,,,2024,4,2,Australia,AU,Victoria,-38.41078,141.542748,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,5,15,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,"seeking confirmation koala tracks juvenile on river bank, in silt day after flood subsided has 2 aposing thumbs on hind splayed front, placement hind in front/close to VERY unusual location",2022,4,3,Australia,AU,Queensland,-28.062578,152.928296,EPSG:4326 +HUMAN_OBSERVATION,polyscias099,1,,Scat beneath Euc agglomerata?,2023,6,20,Australia,AU,New South Wales,-34.192565,150.800264,EPSG:4326 +HUMAN_OBSERVATION,bushluver,1,,,2024,8,11,Australia,AU,Victoria,-36.347888,146.680892,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,22,Australia,AU,Queensland,-26.166516,151.815231,EPSG:4326 +HUMAN_OBSERVATION,Dee Nolan,1,,,2022,3,11,Australia,AU,South Australia,-35.013263,138.649276,EPSG:4326 +HUMAN_OBSERVATION,Laura,1,,,2020,6,8,Australia,AU,South Australia,-35.004977,138.637716,EPSG:4326 +HUMAN_OBSERVATION,Ana,1,,I have approval to be in the catchment.,2021,8,28,Australia,AU,New South Wales,-34.507421,150.550482,EPSG:4326 +HUMAN_OBSERVATION,graeme lunt,1,,Hunter Camera,2022,11,1,Australia,AU,Victoria,-37.688766,143.996858,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey Gum,2021,5,31,Australia,AU,Queensland,-27.534306,153.061693,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,31,Australia,AU,Queensland,-27.527079,153.092788,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey Ironbark,2023,9,16,Australia,AU,Queensland,-27.544681,153.059979,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,19,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.383266,145.297012,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Sub adult male. Healthy,2023,10,11,Australia,AU,Queensland,-27.916126,153.374581,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2024,3,31,Australia,AU,Victoria,-38.341403,142.631588,EPSG:4326 +HUMAN_OBSERVATION,Ian Melbourne,1,,,2023,7,22,Australia,AU,Victoria,-38.377516,145.313756,EPSG:4326 +HUMAN_OBSERVATION,Craig Robbins,1,MALE,Male. No obvious health issues.,2022,2,7,Australia,AU,Queensland,-28.007122,153.268234,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,,"Koala calling throughout recording, soft, deep and hard to hear. Also Grey Currawongs, Galah, Rufous Whistler and Scarlett Robin.",2024,10,4,Australia,AU,Victoria,-37.840084,144.281162,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Cindy Ireland. Submitted by Denise Shaw via email.,2023,7,16,Australia,AU,Queensland,-26.13385,151.792799,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2022,4,19,Australia,AU,Queensland,-27.823741,152.992999,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.019039,138.656444,EPSG:4326 +HUMAN_OBSERVATION,Geoffrey Sinclair,1,,,2022,8,11,Australia,AU,Queensland,-27.871711,153.174469,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2024,10,11,Australia,AU,New South Wales,-34.760563,146.59485,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,Baby alone,2021,11,28,Australia,AU,Queensland,-27.505926,153.086408,EPSG:4326 +HUMAN_OBSERVATION,johjesse,1,,Juvenile,2024,8,5,Australia,AU,Queensland,-27.297578,152.042022,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2022,9,18,Australia,AU,South Australia,-35.012256,138.652908,EPSG:4326 +HUMAN_OBSERVATION,Mary Bell,1,,"Quite close to the road, precarious for the koala",2022,8,1,Australia,AU,Queensland,-28.096203,153.453353,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,2,1,Australia,AU,South Australia,-34.889695,138.731586,EPSG:4326 +HUMAN_OBSERVATION,thanjon,1,,,2023,11,9,Australia,AU,New South Wales,-32.88857,151.537154,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,FEMALE,,2022,9,25,Australia,AU,Queensland,-27.544769,153.053273,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,The barely discernible blob in drawn circle is a Koala. Boonah Rail Trail.,2024,9,7,Australia,AU,Queensland,-27.985931,152.677277,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,22,Australia,AU,South Australia,-34.934965,138.705046,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,This is Lyn.,2022,10,18,Australia,AU,South Australia,-34.891845,138.719081,EPSG:4326 +HUMAN_OBSERVATION,melaleuca098,1,,In Angophora costata. Appeared to be juvenile animal.,2021,12,22,Australia,AU,New South Wales,-32.707295,152.071533,EPSG:4326 +HUMAN_OBSERVATION,Konrad Szylar,1,FEMALE,,2022,12,31,Australia,AU,New South Wales,-34.102073,150.822445,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,4,1,Australia,AU,Queensland,-27.529884,153.103626,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,FEMALE,Mum and bub.,2024,8,23,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Mel,1,,,2021,4,30,Australia,AU,South Australia,-34.963425,138.653605,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,"I'm sure koala tracks in river bank, there is 1 shot with my boot print for size comparison this is quite a large set of tracks assuming koala using river bank corridor to transverse the valley",2022,7,16,Australia,AU,Queensland,-28.061285,152.928218,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,6,Australia,AU,Queensland,-27.526695,153.108669,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Grey Gum,2020,2,24,Australia,AU,Queensland,-27.55124,153.066066,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Photo supplied by M. Woodward,2021,7,10,Australia,AU,New South Wales,-28.281744,153.390229,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,12,30,Australia,AU,Queensland,-27.432787,152.996063,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3132 Female with back-riding young (Photo: Bob Brown),2022,9,1,Australia,AU,Queensland,-27.53118,152.1833,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,,2024,8,6,Australia,AU,Victoria,-38.081626,141.726796,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2022,9,30,Australia,AU,Queensland,-28.057931,152.876467,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Female - red tag A... RIGHT ear, presume this is Cindy",2023,6,3,Australia,AU,Queensland,-27.527269,153.109026,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,10,31,Australia,AU,Queensland,-27.54524,153.073853,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,10,7,Australia,AU,Queensland,-27.529931,153.105207,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Louise Hartley. Submitted via FB.,2024,2,4,Australia,AU,Queensland,-24.723634,150.979318,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,"Male koala v high in large yellow gum, sitting up amongst leaves nervous. Rhs nose pattern like yesterday's male in similar location",2023,11,27,Australia,AU,Victoria,-37.860145,144.275912,EPSG:4326 +HUMAN_OBSERVATION,jcadermann,1,,,2022,10,9,Australia,AU,Queensland,-28.125842,152.945372,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,With a baby,2022,10,26,Australia,AU,Victoria,-38.13058,145.267911,EPSG:4326 +HUMAN_OBSERVATION,jaiden_in_toohey,1,,,2023,7,31,Australia,AU,Queensland,-27.551827,153.057692,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,Adult.,2021,11,26,Australia,AU,Queensland,-27.330345,151.932708,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"In a Manna Gum (viminalis). first saw fresh scat under an adjacent Swamp Gum (ovata), then found this Koala, which was busy feeding, reaching out and pulling in twigs.",2024,6,25,Australia,AU,Victoria,-38.481689,142.974828,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,10,24,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,kevloveday,1,,with Jim Keefer,2021,11,29,Australia,AU,Queensland,-27.812862,151.570937,EPSG:4326 +HUMAN_OBSERVATION,Carsten Meyer,1,,,2023,10,10,Australia,AU,South Australia,-35.959072,136.808619,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Recently dispersed joey,2022,12,12,Australia,AU,Queensland,-27.528736,153.103889,EPSG:4326 +HUMAN_OBSERVATION,chloejay,1,,Koala in tree at Lawsons Reserve.,2021,9,27,Australia,AU,Victoria,-38.173466,145.134115,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,FEMALE,"Healthy Koala and back rider joey- private property, Irongate near Pittsworth. Observer Amanda for Toowoomba Koala and Wildlife Rescue",2022,11,1,Australia,AU,Queensland,-27.654271,151.539177,EPSG:4326 +HUMAN_OBSERVATION,cactusjoe17,1,,"Sighting and photos (c) cactusjoe. Field Notes - Large, arboreal mammal taking a nap. Poor thing was being harassed by currawongs",2021,9,30,Australia,AU,Queensland,-27.556855,151.980027,EPSG:4326 +HUMAN_OBSERVATION,kevloveday,1,,with Jim Keefer,2021,11,29,Australia,AU,Queensland,-27.756378,151.569151,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,20,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,13,Australia,AU,Queensland,-27.526043,153.090453,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,7,25,Australia,AU,Queensland,-27.547731,153.05855,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,7,29,Australia,AU,South Australia,-34.890343,138.731676,EPSG:4326 +HUMAN_OBSERVATION,Ian Melbourne,1,,,2024,8,18,Australia,AU,Victoria,-38.352304,144.15518,EPSG:4326 +HUMAN_OBSERVATION,Ryanwebb,1,,,2023,3,3,Australia,AU,Victoria,-37.958541,144.419744,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2024,6,1,Australia,AU,Queensland,-27.223163,153.069153,EPSG:4326 +HUMAN_OBSERVATION,raewyn33,1,,,2023,10,9,Australia,AU,Victoria,-37.75712,145.654433,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,31,Australia,AU,Queensland,-27.527281,153.108617,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,,2024,9,23,Australia,AU,New South Wales,-28.261625,153.397638,EPSG:4326 +HUMAN_OBSERVATION,Deb,1,,,2024,10,28,Australia,AU,South Australia,-34.183908,140.773023,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,5,26,Australia,AU,Victoria,-38.671562,146.164078,EPSG:4326 +HUMAN_OBSERVATION,Dan Blamey,1,,,2021,11,21,Australia,AU,Victoria,-38.622633,146.208859,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,,Fresh scat under Eucalyptus camaldulensis on the Condamine River North Branch.,2024,8,16,Australia,AU,Queensland,-27.618251,151.320398,EPSG:4326 +HUMAN_OBSERVATION,Lizz Hills,1,,,2023,9,15,Australia,AU,Queensland,-28.308732,152.854949,EPSG:4326 +HUMAN_OBSERVATION,Zoltán Stekkelpak,1,,,2024,3,23,Australia,AU,Victoria,-38.668211,143.861194,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,1,12,Australia,AU,Queensland,-27.52554,153.092007,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,23,Australia,AU,Queensland,-27.546007,153.074459,EPSG:4326 +HUMAN_OBSERVATION,Andrew Allen,1,,,2020,1,21,Australia,AU,Queensland,-27.914379,153.374968,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,,Make koala seen moving from tree to tree in a suburban area. This area has more established gum trees then new suburbs.,2021,11,21,Australia,AU,South Australia,-35.138445,138.530158,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Earlier Koala now in another Blue gum.,2024,9,1,Australia,AU,Queensland,-27.590392,152.2612,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"vehicle strike, released",2022,1,13,Australia,AU,Victoria,-37.640192,143.857513,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,4,7,Australia,AU,Queensland,-27.513873,153.083229,EPSG:4326 +HUMAN_OBSERVATION,Mike Ambrose,1,,,2024,10,1,Australia,AU,Queensland,-27.284487,153.000641,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,Scat,2023,9,9,Australia,AU,New South Wales,-29.86718,150.601251,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,14,Australia,AU,South Australia,-34.891339,138.722429,EPSG:4326 +HUMAN_OBSERVATION,swampycreek,1,,,2022,8,4,Australia,AU,Queensland,-27.34011,152.612992,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,,Koala scat under Eucalyptus tereticornis basaltica.,2024,7,29,Australia,AU,Queensland,-27.650796,151.905877,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2023,4,23,Australia,AU,New South Wales,-36.20924,149.328159,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,11,18,Australia,AU,Queensland,-27.546415,153.058679,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Video on Facebook,2020,7,20,Australia,AU,Victoria,-37.697475,143.877716,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,6,8,Australia,AU,Queensland,-27.528492,153.093153,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area - rear - in backyard Mother and joey,2023,11,3,Australia,AU,Queensland,-27.528061,153.093055,EPSG:4326 +HUMAN_OBSERVATION,Stephen Csurhes,1,,,2024,7,10,Australia,AU,Queensland,-27.298679,153.004613,EPSG:4326 +HUMAN_OBSERVATION,Vireya Jacquard,1,,,2023,8,20,Australia,AU,Victoria,-37.692538,143.998414,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.762571,143.601859,EPSG:4326 +HUMAN_OBSERVATION,HR Nature,1,,,2023,11,8,Australia,AU,Queensland,-28.001374,151.391904,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,11,17,Australia,AU,Queensland,-27.527638,153.092726,EPSG:4326 +HUMAN_OBSERVATION,Michael,1,,,2023,3,12,Australia,AU,Victoria,-37.922906,147.727969,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,2,6,Australia,AU,Queensland,-27.54327,153.072568,EPSG:4326 +HUMAN_OBSERVATION,mtbarneylodge,1,,Healthy mum and big baby slowly walking parallel to the road to change trees,2021,10,8,Australia,AU,Queensland,-28.240512,152.760237,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2022,6,8,Australia,AU,Queensland,-27.538373,153.054701,EPSG:4326 +HUMAN_OBSERVATION,Rosalie Lawrence,1,,,2022,4,29,Australia,AU,South Australia,-34.99006,138.635944,EPSG:4326 +HUMAN_OBSERVATION,cintajac,1,,,2021,4,11,Australia,AU,South Australia,-34.83935,138.740915,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Top of nursery section,2023,6,10,Australia,AU,Queensland,-27.527161,153.091732,EPSG:4326 +HUMAN_OBSERVATION,Sylvia Felicity Ann Haworth,1,,,2024,11,9,Australia,AU,Queensland,-27.543132,153.077138,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,6,Australia,AU,South Australia,-34.889565,138.722727,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,mother & joey,2023,1,6,Australia,AU,Victoria,-37.331937,144.594465,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,21,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Between tennis courts and townhouse fences,2023,11,3,Australia,AU,Queensland,-27.525434,153.093448,EPSG:4326 +HUMAN_OBSERVATION,wildlifewally,1,,,2022,10,13,Australia,AU,New South Wales,-28.266663,153.394487,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,"Healthy Koala - Lilyvale Oval, Meringandan West 27/10/22 - Observer Leisa B for Toowoomba Koala & Wildlife Rescue",2022,10,27,Australia,AU,Queensland,-27.424591,151.8803,EPSG:4326 +HUMAN_OBSERVATION,biancacar,1,,,2024,4,26,Australia,AU,Victoria,-38.753597,143.29335,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - olive green tag RIGHT ear - Becky. Dirty bum - not suitable for rescue in that tree,2024,2,7,Australia,AU,Queensland,-27.52833,153.111461,EPSG:4326 +HUMAN_OBSERVATION,madisonaslide,1,,,2024,9,26,Australia,AU,Queensland,-27.55952,153.06035,EPSG:4326 +HUMAN_OBSERVATION,forthewild,1,,,2022,2,14,Australia,AU,Victoria,-38.428993,144.953195,EPSG:4326 +HUMAN_OBSERVATION,franhills,1,,,2024,9,7,Australia,AU,Victoria,-38.333708,142.356434,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,25,Australia,AU,Queensland,-27.526002,153.090516,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,Koala,2022,10,10,Australia,AU,Queensland,-27.565216,153.135101,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,3,30,Australia,AU,New South Wales,-34.745628,146.519958,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside rear entrance of nursery,2023,11,11,Australia,AU,Queensland,-27.52706,153.092091,EPSG:4326 +HUMAN_OBSERVATION,rogstanden,1,,,2022,5,27,Australia,AU,Victoria,-38.286999,145.08104,EPSG:4326 +HUMAN_OBSERVATION,errolcraig,1,,,2021,9,9,Australia,AU,Queensland,-28.075911,152.954103,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Mother and Joey.,2024,9,5,Australia,AU,Queensland,-27.546176,153.074781,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2021,10,30,Australia,AU,Queensland,-27.5637,152.107545,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2021,11,24,Australia,AU,Queensland,-27.903962,153.361935,EPSG:4326 +HUMAN_OBSERVATION,Dave Kuchel,1,,,2021,9,5,Australia,AU,South Australia,-34.98703,138.714791,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to E block,2024,6,22,Australia,AU,Queensland,-27.526471,153.090967,EPSG:4326 +HUMAN_OBSERVATION,Chris Cobern,1,,Westerfolds Park,2022,11,4,Australia,AU,Victoria,-37.741977,145.124251,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,10,7,Australia,AU,Queensland,-27.5687,152.102434,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,This is a different koala which I have not knowingly seen before. It bellowed in the morning so may be another male. Koala 4.,2020,6,24,Australia,AU,New South Wales,-28.254206,153.37706,EPSG:4326 +HUMAN_OBSERVATION,Oskie2811,1,,,2024,8,14,Australia,AU,Queensland,-27.310235,152.95802,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Spotted by Darryl,2023,10,8,Australia,AU,Queensland,-27.620514,152.90214,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,,2021,5,11,Australia,AU,New South Wales,-28.260455,153.401521,EPSG:4326 +HUMAN_OBSERVATION,Graham Armstrong,1,,,2024,10,2,Australia,AU,South Australia,-34.931619,138.717578,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Koala, recorded on mobile phone by Selina.",2021,9,28,Australia,AU,New South Wales,-28.275088,153.396103,EPSG:4326 +HUMAN_OBSERVATION,emskakoon,1,,,2022,8,24,Australia,AU,Victoria,-37.962314,144.409522,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,700m further down stream on the Murrumbidgee river from bellowing male koala,2022,9,3,Australia,AU,New South Wales,-34.740788,146.515397,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2024,9,12,Australia,AU,Queensland,-26.283744,151.94962,EPSG:4326 +HUMAN_OBSERVATION,basilsdonna,1,,,2024,9,13,Australia,AU,Victoria,-38.202745,141.774895,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Mum and joey again. Believe same ones just seen.,2021,9,11,Australia,AU,New South Wales,-28.254288,153.377676,EPSG:4326 +HUMAN_OBSERVATION,dattard,1,,,2021,3,25,Australia,AU,Queensland,-26.989088,152.722703,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,8,14,Australia,AU,South Australia,-34.903004,138.70334,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Sport n rec picnic area,2024,9,15,Australia,AU,Queensland,-27.525734,153.092287,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,1,22,Australia,AU,New South Wales,-29.541992,150.57293,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near E block - in the release tree,2024,4,14,Australia,AU,Queensland,-27.525984,153.090716,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,10,30,Australia,AU,Queensland,-27.529336,153.115408,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Koala- observed by Liz for Toowoomba Koala & Wildlife Rescue,2022,11,24,Australia,AU,Queensland,-27.326297,151.871372,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,Koala count: 24/7 1:30-1:55pm 20 minutes 1 observer. 1 koala in E. tereticornis JoT.,2024,7,24,Australia,AU,Queensland,-27.82402,152.992718,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.384945,145.309984,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,5,21,Australia,AU,Queensland,-27.529714,153.103667,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Triangle area near cafeteria,2024,1,16,Australia,AU,Queensland,-27.527193,153.09206,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,21,Australia,AU,South Australia,-34.890227,138.731048,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,18,Australia,AU,Queensland,-27.527275,153.092275,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2020,5,19,Australia,AU,Queensland,-27.547369,153.058201,EPSG:4326 +HUMAN_OBSERVATION,Federico,1,,,2023,12,3,Australia,AU,Queensland,-27.91064,153.371829,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown tree,2020,1,30,Australia,AU,Queensland,-27.550819,153.057932,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Video submitted by Denise Shaw (on behalf of another observer) via email. Screenshot attached only.,2023,4,24,Australia,AU,Queensland,-26.699369,152.015381,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2020,9,10,Australia,AU,Queensland,-22.596606,147.522643,EPSG:4326 +HUMAN_OBSERVATION,magpies_friends,1,,,2023,12,1,Australia,AU,Queensland,-27.499171,153.403783,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,,,2023,8,2,Australia,AU,Queensland,-26.373343,152.828946,EPSG:4326 +HUMAN_OBSERVATION,Darcy O'Shea,1,,Torrens Linear Park,2024,10,14,Australia,AU,South Australia,-34.888328,138.634369,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,near the new tree trough,2022,11,27,Australia,AU,Queensland,-27.543561,153.070516,EPSG:4326 +HUMAN_OBSERVATION,Scott Rolph,1,,,2023,6,11,Australia,AU,Victoria,-38.05283,144.143994,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2022,12,3,Australia,AU,Queensland,-27.602107,151.892916,EPSG:4326 +HUMAN_OBSERVATION,JohnNewman,1,,,2022,7,11,Australia,AU,Queensland,-19.131922,146.870542,EPSG:4326 +HUMAN_OBSERVATION,leaping_tigers,1,,,2023,7,22,Australia,AU,Queensland,-19.128562,146.827388,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Koala sitting on low branch. When we walked towards her she didn't climb further up the branch. I think** she might be the older Mum who lives on Lawnton Road whose joey has recently moved out. I also phoned Pine Rivers Koala Care because she didnt move while we were near her. Photos show that it was raining.,2023,11,5,Australia,AU,Queensland,-27.284521,152.999854,EPSG:4326 +HUMAN_OBSERVATION,Kevin,1,,,2023,5,27,Australia,AU,Queensland,-27.511985,153.069398,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood with mum in same tree,2021,10,12,Australia,AU,Queensland,-27.551715,153.057731,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,10,Australia,AU,South Australia,-34.890694,138.722258,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2024,9,18,Australia,AU,New South Wales,-33.076711,151.095441,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Climbing up C.citridora.,2020,7,8,Australia,AU,Queensland,-27.546192,153.059215,EPSG:4326 +HUMAN_OBSERVATION,emmabeaton09,1,MALE,,2021,12,23,Australia,AU,Victoria,-38.178694,145.134296,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland Cindy Crawford and joey,2023,10,22,Australia,AU,Queensland,-27.524463,153.09303,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Horseshoe shaped scar on right cheek and scars on right thigh,2023,2,25,Australia,AU,Queensland,-27.524797,153.092396,EPSG:4326 +HUMAN_OBSERVATION,inatnatt,1,MALE,,2021,9,4,Australia,AU,Victoria,-38.175094,145.130955,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Unknown sex. Injured with broken leg. Named Bear Grills. Claimed to have crawled in the grill but was hit. Rescued by Robyn White & Wendy Taylor. Later euthanised. Submitted via FB.,2024,3,3,Australia,AU,Queensland,-26.539756,151.843129,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Koala scratches seen on another tree in this area.,2020,7,29,Australia,AU,New South Wales,-28.260772,153.40518,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,"Koala sighted in tree on Lawnton Pocket Road, Lawnton.",2024,6,23,Australia,AU,Queensland,-27.284544,152.999921,EPSG:4326 +HUMAN_OBSERVATION,nl_douglas,1,,,2021,5,22,Australia,AU,Queensland,-27.513825,153.094842,EPSG:4326 +HUMAN_OBSERVATION,Tony Bush,1,,,2021,11,27,Australia,AU,New South Wales,-28.657903,153.550241,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,Two in the same tree.,2023,3,27,Australia,AU,New South Wales,-34.145867,150.846405,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,7,13,Australia,AU,Queensland,-27.512497,153.084012,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Koala in ironbark. Tracked koala,2023,12,5,Australia,AU,Queensland,-27.983128,153.357574,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,6,6,Australia,AU,Queensland,-27.82348,152.992301,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,13,Australia,AU,South Australia,-34.890229,138.731975,EPSG:4326 +HUMAN_OBSERVATION,peep82,1,,,2020,4,2,Australia,AU,South Australia,-34.901662,138.701203,EPSG:4326 +HUMAN_OBSERVATION,leighr,1,,,2024,9,25,Australia,AU,New South Wales,-34.806076,150.013668,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.784656,143.626217,EPSG:4326 +HUMAN_OBSERVATION,richwoods62,1,,,2022,2,10,Australia,AU,Victoria,-37.664088,144.311492,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,17,Australia,AU,South Australia,-34.89275,138.721392,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Mum and baby on her back.,2024,9,25,Australia,AU,Queensland,-27.257758,152.04468,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2024,1,10,Australia,AU,Queensland,-26.36268,151.814643,EPSG:4326 +HUMAN_OBSERVATION,sophiaciaglia,1,,,2024,10,28,Australia,AU,Victoria,-37.920637,147.727538,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,20,Australia,AU,Queensland,-27.529714,153.104615,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,22,Australia,AU,Queensland,-27.526469,153.090698,EPSG:4326 +HUMAN_OBSERVATION,Brad,1,,,2020,9,15,Australia,AU,South Australia,-35.086363,138.682753,EPSG:4326 +HUMAN_OBSERVATION,lrathbone,1,,,2020,11,20,Australia,AU,Victoria,-37.926806,147.72585,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,9,23,Australia,AU,New South Wales,-28.254511,153.377978,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & Joey,2023,10,10,Australia,AU,Queensland,-27.529197,153.115363,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear - & joey,2023,1,28,Australia,AU,Queensland,-27.530131,153.10334,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,11,21,Australia,AU,Queensland,-27.546063,153.061022,EPSG:4326 +HUMAN_OBSERVATION,tsymmo,1,,About 3 m on Tallowwood Healthy looking.,2024,2,3,Australia,AU,Queensland,-27.513038,153.079895,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey. Cheese tree,2022,6,15,Australia,AU,Queensland,-27.551127,153.057773,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,5,6,Australia,AU,Queensland,-27.527095,153.091003,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland - close to entrance,2023,11,5,Australia,AU,Queensland,-27.527738,153.092197,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,4,5,Australia,AU,Queensland,-27.526737,153.090704,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Cleaners donga,2024,6,9,Australia,AU,Queensland,-27.526749,153.091551,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2020,3,11,Australia,AU,Victoria,-38.275213,141.401948,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,10,Australia,AU,Queensland,-27.527512,153.11038,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,,Large female with Joey. ( 6m away from another mother & Joey in the same park),2023,1,26,Australia,AU,South Australia,-35.076037,138.595394,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,15,Australia,AU,Queensland,-27.544852,153.058582,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.926331,147.729395,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,14,Australia,AU,Queensland,-27.529086,153.103376,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe cavendish road near basketball court end A couple of trees away from this morning Maisie and joey,2023,8,19,Australia,AU,Queensland,-27.526698,153.090102,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,5,21,Australia,AU,New South Wales,-33.076472,151.095536,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,27,Australia,AU,Queensland,-27.527396,153.110021,EPSG:4326 +HUMAN_OBSERVATION,John Stephens,1,,,2023,10,30,Australia,AU,Queensland,-27.543528,152.852017,EPSG:4326 +HUMAN_OBSERVATION,Lorraine Phelan,1,,,2020,10,24,Australia,AU,Victoria,-38.151948,141.833445,EPSG:4326 +HUMAN_OBSERVATION,kermitkommando,1,,,2024,11,3,Australia,AU,Victoria,-36.247843,146.658594,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,,"Location is approximate (photo was provided by a Lockyer Waters resident, who took the photo on their property).",2021,8,24,Australia,AU,Queensland,-27.453729,152.404198,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - metal UQ tag LEFT ear. Could not get photo of RIGHT ear,2023,4,25,Australia,AU,Queensland,-27.527931,153.112659,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,In mating tree in the gully,2024,8,18,Australia,AU,Queensland,-27.527487,153.092675,EPSG:4326 +HUMAN_OBSERVATION,PeppersMountain,1,,,2024,2,10,Australia,AU,New South Wales,-32.337238,151.957655,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,,This male koala is back on our property after an absence of about 3 weeks. The female that was a regular visitor last year hasn't been seen here this year so far.,2022,7,22,Australia,AU,Queensland,-28.173541,152.905083,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Young and in Tallowwood,2020,10,26,Australia,AU,Queensland,-27.551295,153.057487,EPSG:4326 +HUMAN_OBSERVATION,Charmaine Thomas,1,,,2023,8,17,Australia,AU,Queensland,-27.70089,153.190207,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,"This area was burned in the 2019 bushfires. This breeding record is further evidence of recovery. The mother came down from the tree alone, then stood for about a minute before the joey appeared. She may have ""parked"" it while she went up the tree to feed - a joey that size would be quite a handicap. LCA3155.",2021,12,6,Australia,AU,Queensland,-27.831775,152.344529,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree next to tennis courts on townhouse side Male yellow tag left ear - number not visible,2024,2,17,Australia,AU,Queensland,-27.525328,153.093659,EPSG:4326 +HUMAN_OBSERVATION,emmyfish,1,,,2022,4,14,Australia,AU,Victoria,-38.825019,143.561577,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark,2022,3,9,Australia,AU,Queensland,-27.55106,153.059527,EPSG:4326 +HUMAN_OBSERVATION,BushLook,1,,,2024,5,27,Australia,AU,Victoria,-37.671158,143.889298,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near E block Male - Scent gland visible,2023,9,10,Australia,AU,Queensland,-27.526027,153.090726,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2020,12,10,Australia,AU,South Australia,-35.016456,138.715923,EPSG:4326 +HUMAN_OBSERVATION,travisblack,1,,,2023,10,13,Australia,AU,Queensland,-27.700713,153.188377,EPSG:4326 +HUMAN_OBSERVATION,Blake,1,,,2022,12,24,Australia,AU,Queensland,-27.249639,152.959719,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,10,Australia,AU,South Australia,-34.892718,138.722435,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,3,Australia,AU,Queensland,-27.800797,151.597107,EPSG:4326 +HUMAN_OBSERVATION,Mon Galloway,1,,,2022,5,19,Australia,AU,Queensland,-26.375482,153.03752,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,"Adult female and joey. Healthy. Observed somewhere along Lancasters Road, Byee by Wendy Taylor. Submitted by Denise Shaw via email.",2023,10,26,Australia,AU,Queensland,-26.169442,151.866519,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy, alert",2023,3,20,Australia,AU,Queensland,-27.631028,153.201997,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,15,Australia,AU,Queensland,-27.528334,153.092448,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,11,Australia,AU,Queensland,-27.528679,153.10427,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2022,11,28,Australia,AU,Queensland,-28.077068,152.855975,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Beautiful healthy Joey,2022,10,18,Australia,AU,Queensland,-27.516538,153.08308,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,11,1,Australia,AU,Queensland,-26.215839,151.769885,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,,2024,5,28,Australia,AU,Queensland,-27.529456,153.102691,EPSG:4326 +HUMAN_OBSERVATION,imerinet,1,,Koala on branch in centre of photo,2021,12,3,Australia,AU,New South Wales,-31.473463,152.872695,EPSG:4326 +HUMAN_OBSERVATION,ambrosia1,1,,,2023,10,18,Australia,AU,New South Wales,-28.976688,153.406351,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.788478,143.618925,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,27,Australia,AU,Queensland,-27.528501,153.103257,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,This amazing koala has heterochromia. You can see quite clearly in the shot that one eye is blue and one brown. From what I can find this is rare in koalas the same as in humans.,2024,10,5,Australia,AU,New South Wales,-32.949538,151.499313,EPSG:4326 +HUMAN_OBSERVATION,philip-roetman,1,,,2022,2,26,Australia,AU,South Australia,-34.950061,138.677231,EPSG:4326 +HUMAN_OBSERVATION,susankoci,1,,South Gippsland/ Strzelecki koala,2020,10,18,Australia,AU,Victoria,-38.363914,146.060456,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,,"Seen by Ken's neighbour, reported by Ken",2023,3,22,Australia,AU,Victoria,-38.176525,144.158966,EPSG:4326 +HUMAN_OBSERVATION,Beth Addison-smith,1,,"Terrible photos. Koala high up in a gum tree, moving about and eating leaves.",2024,9,21,Australia,AU,Queensland,-27.237725,152.403117,EPSG:4326 +HUMAN_OBSERVATION,vhutch,1,,,2023,9,10,Australia,AU,Victoria,-37.696561,144.330265,EPSG:4326 +HUMAN_OBSERVATION,joberries12,1,,,2023,8,30,Australia,AU,Queensland,-27.545958,153.074005,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,12,Australia,AU,South Australia,-34.890131,138.728498,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Monty,2024,7,24,Australia,AU,South Australia,-34.889845,138.722346,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,18,Australia,AU,Queensland,-27.813264,151.550849,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Two male koalas interacting. No violence both fell asleep 5 min later,2020,7,30,Australia,AU,Queensland,-27.551089,153.057885,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,9,30,Australia,AU,South Australia,-34.954348,138.690613,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,2,26,Australia,AU,Queensland,-27.547716,153.058977,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - green tag LEFT ear - Joe, known as Bozo",2023,10,2,Australia,AU,Queensland,-27.526735,153.109085,EPSG:4326 +HUMAN_OBSERVATION,wild_wishart,1,,,2021,6,20,Australia,AU,Queensland,-27.545129,153.047417,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,3,20,Australia,AU,Victoria,-38.671105,146.164781,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2021,10,25,Australia,AU,South Australia,-34.97007,138.638562,EPSG:4326 +HUMAN_OBSERVATION,philip-roetman,1,,,2022,4,30,Australia,AU,South Australia,-35.019247,138.65593,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Believe a male due to scent gland on front?,2020,11,24,Australia,AU,New South Wales,-28.252536,153.37524,EPSG:4326 +HUMAN_OBSERVATION,nicholascroft,1,,Mother and joey within the Cavendish road high school grounds. Long term residents.,2022,11,13,Australia,AU,Queensland,-27.519128,153.073886,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2020,2,17,Australia,AU,Queensland,-27.551428,153.058176,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland gully in mating tree,2024,5,26,Australia,AU,Queensland,-27.527545,153.092749,EPSG:4326 +HUMAN_OBSERVATION,Christopher Brown,1,,,2022,11,19,Australia,AU,Victoria,-38.608447,146.01743,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum seems to be holding a joey,2024,3,8,Australia,AU,Queensland,-27.528183,153.103746,EPSG:4326 +HUMAN_OBSERVATION,rordale,1,,Koala on Crows Nest creek,2024,11,8,Australia,AU,Queensland,-27.26313,152.062592,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,20,Australia,AU,Queensland,-27.527059,153.091918,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2024,9,7,Australia,AU,New South Wales,-33.076711,151.095441,EPSG:4326 +HUMAN_OBSERVATION,ametcalf,1,,Adult female koala in same tree as a red tagged male and a young red tagged male (7968).,2024,10,29,Australia,AU,Queensland,-27.287641,152.997152,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2022,10,9,Australia,AU,Queensland,-28.222061,152.867267,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2024,7,27,Australia,AU,Queensland,-27.255483,152.046158,EPSG:4326 +HUMAN_OBSERVATION,stuart inchley,1,,Thank you Libby for the photo.,2022,2,5,Australia,AU,Victoria,-38.572854,146.196354,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,7,24,Australia,AU,South Australia,-34.96203,138.700303,EPSG:4326 +HUMAN_OBSERVATION,globeseeker,1,,,2024,6,11,Australia,AU,Queensland,-27.527938,153.033828,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"KOALA NO 5 - Friends of the Canadian Corridor, (Victoria Australia) see Website - Newsletter Archive - Spikey News Issue 86, March 2022, on map, in ""Koala Sightings"" section.",2021,12,1,Australia,AU,Victoria,-37.601773,143.874434,EPSG:4326 +HUMAN_OBSERVATION,Dan,1,,,2024,5,11,Australia,AU,South Australia,-35.169842,138.585783,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,8,22,Australia,AU,Queensland,-27.506239,153.078779,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Male,2020,8,11,Australia,AU,New South Wales,-28.253858,153.377301,EPSG:4326 +HUMAN_OBSERVATION,Reiner Richter,1,,,2021,11,17,Australia,AU,Victoria,-36.217902,146.176484,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,,2023,6,25,Australia,AU,Queensland,-27.833022,153.369093,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to mum’s tree,2024,9,29,Australia,AU,Queensland,-27.526351,153.09106,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,22,Australia,AU,Queensland,-27.551349,153.058689,EPSG:4326 +HUMAN_OBSERVATION,petergugger59gmail,1,FEMALE,Mamma and Joey enjoying the Tour Down Under,2024,1,18,Australia,AU,South Australia,-34.959922,138.713945,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Wisteria car park Three koalas same tree - interrupted?,2023,9,2,Australia,AU,Queensland,-27.525028,153.091945,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear,2023,3,8,Australia,AU,Queensland,-27.526792,153.108088,EPSG:4326 +HUMAN_OBSERVATION,Rachel,1,MALE,"Local koala family, this was the large male",2023,3,24,Australia,AU,Queensland,-26.894481,152.284841,EPSG:4326 +HUMAN_OBSERVATION,fidug,1,,,2023,11,26,Australia,AU,Queensland,-27.582925,153.170288,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,14,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,3,2,Australia,AU,Queensland,-27.527541,153.091121,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,,2023,4,26,Australia,AU,Queensland,-27.551543,153.057761,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,Mum and baby.,2023,10,9,Australia,AU,New South Wales,-34.671938,146.403563,EPSG:4326 +HUMAN_OBSERVATION,Jesse Saofia,1,,,2023,6,18,Australia,AU,Victoria,-38.669925,143.857413,EPSG:4326 +HUMAN_OBSERVATION,michaelp28,1,,,2023,3,19,Australia,AU,Victoria,-38.384467,145.295958,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Fluffy Eared Mum"" in E. blakelyi. Last seen on 17 January, when she was still accompanied by her baby.",2020,4,4,Australia,AU,New South Wales,-30.519724,151.521594,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Priceless pair!,2024,3,2,Australia,AU,South Australia,-34.865098,138.724425,EPSG:4326 +HUMAN_OBSERVATION,doom528,1,,,2024,5,27,Australia,AU,Queensland,-27.3935,153.441222,EPSG:4326 +HUMAN_OBSERVATION,G. L. Grammer,1,,,2023,12,17,Australia,AU,South Australia,-34.976859,138.900178,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - white tag LEFT ear - Bandit,2023,9,4,Australia,AU,Queensland,-27.529814,153.110741,EPSG:4326 +HUMAN_OBSERVATION,Michael Tervo,1,,,2024,10,27,Australia,AU,Queensland,-27.269725,152.763563,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,9,6,Australia,AU,Queensland,-27.402547,151.789262,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2024,5,24,Australia,AU,Victoria,-37.65306,143.925632,EPSG:4326 +HUMAN_OBSERVATION,louisab,1,,,2024,4,15,Australia,AU,Victoria,-38.757603,146.197342,EPSG:4326 +HUMAN_OBSERVATION,mtbarneylodge,1,,"20+ koala poi’s found around bade of tree, looked fresh but not very strong smelling. Not seen in tree where tree markings were made. Koalas have been seen in trees here before",2021,6,18,Australia,AU,Queensland,-28.201111,152.73656,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania and Wisteria Woodland fright at front Very high in tree,2023,8,15,Australia,AU,Queensland,-27.524138,153.093399,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery - very high up,2023,8,4,Australia,AU,Queensland,-27.527114,153.091675,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,MALE,Male koala in tree.,2023,8,20,Australia,AU,Queensland,-27.284239,153.000565,EPSG:4326 +HUMAN_OBSERVATION,imogenisunderwater,1,,,2024,4,27,Australia,AU,Victoria,-38.828863,143.511465,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Male koala - testicles visible In tree at top of tafe nursery,2023,5,21,Australia,AU,Queensland,-27.527151,153.091739,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2023,12,27,Australia,AU,Queensland,-27.52573,153.092079,EPSG:4326 +HUMAN_OBSERVATION,Giorgio De Nola,1,,,2024,9,7,Australia,AU,Victoria,-37.370924,144.597393,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"The two shots of trees give location - it is in the centre tree, towards the top, between the two phone/power lines. This is the same koala I have been seeing 2nd, 10th, 13th and 14th 19th, 20th and 21st May. It has moved one tree over today, to the left in these photos, from the last two days when it has been in the same tree. I might refer to this one as koala 1, as I am also seeing a second one at the other end of our area, plus I have heard a this in the opposite direction so there in fact 3 in this area currently. I returned after lunch and got another shot of a different angle.",2020,5,22,Australia,AU,New South Wales,-28.254097,153.377471,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3049,2020,2,13,Australia,AU,Queensland,-27.496789,152.249747,EPSG:4326 +HUMAN_OBSERVATION,Olivia Kemp,1,,,2020,6,10,Australia,AU,Victoria,-36.353547,146.710954,EPSG:4326 +HUMAN_OBSERVATION,Pete Woodall,1,,2159 Female with bub in pouch.,2022,11,23,Australia,AU,South Australia,-35.959464,136.811691,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Climbing a Spotted gum,2024,7,25,Australia,AU,Queensland,-27.589162,152.260719,EPSG:4326 +HUMAN_OBSERVATION,helen_y,1,,Koala claw marks on a Corymbia maculata.,2023,9,1,Australia,AU,New South Wales,-32.32651,151.8258,EPSG:4326 +HUMAN_OBSERVATION,Anne-Marie Griffin,1,,,2020,11,24,Australia,AU,New South Wales,-33.753478,149.408161,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear,2023,3,29,Australia,AU,Queensland,-27.529678,153.103892,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,7,Australia,AU,Queensland,-27.527047,153.107506,EPSG:4326 +HUMAN_OBSERVATION,mitchbagz,1,,,2022,1,18,Australia,AU,Victoria,-37.276937,144.310837,EPSG:4326 +HUMAN_OBSERVATION,caesia,1,,,2023,9,22,Australia,AU,South Australia,-35.137108,138.589997,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,14,Australia,AU,Queensland,-27.392737,151.78003,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,17,Australia,AU,Queensland,-27.527221,153.109327,EPSG:4326 +HUMAN_OBSERVATION,Isaac Clarey,1,,,2021,4,24,Australia,AU,Victoria,-38.148607,141.536755,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,7,Australia,AU,Queensland,-26.363404,151.751388,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,21,Australia,AU,Queensland,-27.527131,153.091777,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,MALE,Urinating. Moving position on tree. Manna Gum,2020,9,25,Australia,AU,Victoria,-38.175571,145.131848,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag - & joey,2023,3,1,Australia,AU,Queensland,-27.528969,153.102926,EPSG:4326 +HUMAN_OBSERVATION,flyingcrocodile,1,,,2023,1,23,Australia,AU,Victoria,-37.922303,147.728088,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,2,29,Australia,AU,Queensland,-26.1446,151.791974,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Female - orange tag RIGHT ear - Naomi, hiding a joey there somewhere",2023,11,24,Australia,AU,Queensland,-27.529462,153.102608,EPSG:4326 +HUMAN_OBSERVATION,Zoë Davis,1,,,2023,8,6,Australia,AU,South Australia,-34.903095,138.702567,EPSG:4326 +HUMAN_OBSERVATION,Chris,1,,Scat collecting for SRRC DNA Analysis,2024,6,9,Australia,AU,Queensland,-27.88937,152.618422,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,8,30,Australia,AU,Queensland,-27.918638,153.379969,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2022,10,28,Australia,AU,South Australia,-35.003503,138.658206,EPSG:4326 +HUMAN_OBSERVATION,hannahbarrenger,1,,,2020,9,8,Australia,AU,Queensland,-27.716628,153.158906,EPSG:4326 +HUMAN_OBSERVATION,katechurchy,1,,Photo taken from my camera,2023,6,13,Australia,AU,Queensland,-27.62049,153.16351,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.018471,138.656811,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2023,5,25,Australia,AU,South Australia,-34.865238,138.656875,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,MALE,,2024,9,5,Australia,AU,Queensland,-27.358635,152.074653,EPSG:4326 +HUMAN_OBSERVATION,Braden McDonald,1,,,2023,8,12,Australia,AU,Queensland,-27.545619,153.073208,EPSG:4326 +HUMAN_OBSERVATION,cmk11,1,,,2023,8,20,Australia,AU,Victoria,-36.897383,145.302108,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,6,20,Australia,AU,Queensland,-27.538572,153.060293,EPSG:4326 +HUMAN_OBSERVATION,patrix1,1,,,2023,9,21,Australia,AU,New South Wales,-34.754636,146.550848,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,3,Australia,AU,Queensland,-27.529295,153.109971,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2023,12,6,Australia,AU,Victoria,-38.637795,145.715653,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,6,1,Australia,AU,Queensland,-27.55031,153.05483,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,Koala heard so took a video recording. Sound track taken from video. Video: L. Clere,2020,1,14,Australia,AU,New South Wales,-28.275677,153.394689,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,"Rambo Koala, yellow tag 0125",2020,6,25,Australia,AU,Queensland,-27.509689,153.070828,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,4,6,Australia,AU,Queensland,-27.525461,153.092538,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,"One of two individuals, 50m apart, that I could see from the same spot.",2023,7,7,Australia,AU,Victoria,-38.354703,146.387718,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi & joey,2024,11,11,Australia,AU,Queensland,-27.531088,153.104104,EPSG:4326 +HUMAN_OBSERVATION,Demi-Rose Walter,1,,"Karawatha Forest, Melaleuca and soft spinifex forest. Large, probably male as hair scratched off rear. Climbed down tree and crossed trail at steady and fairly fast pace.",2020,9,18,Australia,AU,Queensland,-27.625599,153.08554,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,21,Australia,AU,Queensland,-27.543468,153.070308,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - yellow tag RIGHT ear. In a better position a few hours later.,2024,10,29,Australia,AU,Queensland,-27.529119,153.108856,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,11,14,Australia,AU,Queensland,-27.568672,151.716417,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,10,5,Australia,AU,Queensland,-27.257481,152.044342,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2020,10,15,Australia,AU,Queensland,-20.923028,149.43425,EPSG:4326 +HUMAN_OBSERVATION,lisaw1012,1,,,2022,9,14,Australia,AU,Queensland,-27.652831,152.898437,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area - middle,2023,7,28,Australia,AU,Queensland,-27.527961,153.092251,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,12,Australia,AU,South Australia,-34.893376,138.716848,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi & joey,2024,10,9,Australia,AU,Queensland,-27.528996,153.103219,EPSG:4326 +HUMAN_OBSERVATION,einadia,1,,,2023,5,4,Australia,AU,South Australia,-34.959683,138.658277,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,19,Australia,AU,Queensland,-27.527389,153.110117,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,6,Australia,AU,South Australia,-34.827487,138.738927,EPSG:4326 +HUMAN_OBSERVATION,JohnNewman,1,,,2024,11,18,Australia,AU,Victoria,-37.567248,149.749675,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2024,10,6,Australia,AU,New South Wales,-34.761568,146.568478,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,10,2,Australia,AU,South Australia,-34.893254,138.626078,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2021,2,15,Australia,AU,Queensland,-27.516366,153.086022,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,9,13,Australia,AU,Queensland,-27.823552,152.994066,EPSG:4326 +HUMAN_OBSERVATION,jwill9876,1,,"Plus a mum, who was higher in the tree",2022,12,4,Australia,AU,Queensland,-27.538842,153.052176,EPSG:4326 +HUMAN_OBSERVATION,angelinbotanico,1,,,2021,7,29,Australia,AU,South Australia,-34.875561,138.724811,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,15,Australia,AU,Queensland,-26.141183,151.761171,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,In the afternoon the male appeared just near where the female and joey was at lunchtime. Last night also heard a male up towards the end of the street where it meets Tomewin Road,2021,10,3,Australia,AU,New South Wales,-28.254193,153.376817,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2022,3,18,Australia,AU,Queensland,-27.735248,153.102422,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,4,Australia,AU,Queensland,-27.527927,153.111426,EPSG:4326 +HUMAN_OBSERVATION,Ryan Leys,1,,,2023,10,22,Australia,AU,Victoria,-38.318936,142.363218,EPSG:4326 +HUMAN_OBSERVATION,Charmaine,1,,,2023,7,14,Australia,AU,Queensland,-27.501119,153.098586,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area Cindy Crawford,2024,3,3,Australia,AU,Queensland,-27.525539,153.09196,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2022,8,31,Australia,AU,Queensland,-27.547292,153.037063,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear - & joey,2023,1,21,Australia,AU,Queensland,-27.530855,153.104484,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,13,Australia,AU,Queensland,-27.527069,153.09254,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,1,21,Australia,AU,Queensland,-27.527268,153.092552,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Cheese tree,2020,2,11,Australia,AU,Queensland,-27.54999,153.059871,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,3,6,Australia,AU,Queensland,-27.527105,153.090867,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,,2022,9,6,Australia,AU,South Australia,-35.093692,138.559844,EPSG:4326 +HUMAN_OBSERVATION,Dan Blamey,1,,,2022,2,11,Australia,AU,Victoria,-38.622633,146.208859,EPSG:4326 +HUMAN_OBSERVATION,Victor W Fazio III,1,,in conifer ... 1st sighting in this tree,2020,9,13,Australia,AU,New South Wales,-31.931883,152.413706,EPSG:4326 +HUMAN_OBSERVATION,nj-aus,1,,,2024,9,20,Australia,AU,Queensland,-26.959617,152.459853,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2024,5,3,Australia,AU,Queensland,-27.528493,153.093248,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,1,2,Australia,AU,Queensland,-27.527251,153.092018,EPSG:4326 +HUMAN_OBSERVATION,gdwatt6411,1,,,2024,11,21,Australia,AU,Queensland,-27.260484,152.071361,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,6,9,Australia,AU,New South Wales,-28.260618,153.399437,EPSG:4326 +HUMAN_OBSERVATION,David,1,,,2022,9,25,Australia,AU,South Australia,-34.8685,138.7142,EPSG:4326 +HUMAN_OBSERVATION,owen_brown,1,,,2024,10,29,Australia,AU,Queensland,-28.195347,153.187163,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland Mother and joey,2024,11,3,Australia,AU,Queensland,-27.527804,153.092253,EPSG:4326 +HUMAN_OBSERVATION,smiffy60,1,,,2022,11,24,Australia,AU,Queensland,-27.353384,152.026898,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,Koala going into the same tree as https://inaturalist.ala.org.au/observations/169355110 descended from approx. 7.5 hours later. If this is the same koala the tiny joey must be in the pouch. Unfortunately it isn't possible to even see whether there is a pouch in these photos.,2023,6,17,Australia,AU,Queensland,-27.496763,152.249435,EPSG:4326 +HUMAN_OBSERVATION,sandraharding,1,,In tree,2020,9,27,Australia,AU,Queensland,-27.522661,153.155014,EPSG:4326 +HUMAN_OBSERVATION,pelicanfan,1,FEMALE,,2022,11,23,Australia,AU,Queensland,-27.268302,152.057471,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,28,Australia,AU,Queensland,-27.52548,153.092197,EPSG:4326 +HUMAN_OBSERVATION,David J Barton,1,,,2023,10,15,Australia,AU,Queensland,-27.527182,153.105285,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,12,3,Australia,AU,Queensland,-27.539382,153.054895,EPSG:4326 +HUMAN_OBSERVATION,mas422,1,,,2020,4,24,Australia,AU,South Australia,-35.01,138.647222,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Near Malar Rd December 2020. Unknown sex. Healthy. Observed by Louise Mason. Forwarded by FB comment,2021,12,1,Australia,AU,Queensland,-26.538987,151.925969,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,,2022,11,4,Australia,AU,South Australia,-35.095714,138.581872,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2023,4,12,Australia,AU,Victoria,-37.746468,143.90784,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,24,Australia,AU,Queensland,-27.544293,153.071771,EPSG:4326 +HUMAN_OBSERVATION,ladyrobyn,1,,,2023,1,1,Australia,AU,New South Wales,-30.486778,151.639921,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - Millie,2023,6,27,Australia,AU,Queensland,-27.526953,153.111331,EPSG:4326 +HUMAN_OBSERVATION,Alex Martine,1,,,2024,10,10,Australia,AU,Victoria,-38.356647,146.389755,EPSG:4326 +HUMAN_OBSERVATION,melaleuca098,1,,,2022,1,26,Australia,AU,New South Wales,-32.707645,152.0701,EPSG:4326 +HUMAN_OBSERVATION,mayasb77,1,,,2021,8,28,Australia,AU,Queensland,-27.397866,153.439061,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2023,10,6,Australia,AU,Queensland,-27.529534,153.102609,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2024,6,1,Australia,AU,Queensland,-27.5268,153.107772,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,4,30,Australia,AU,New South Wales,-28.260312,153.400014,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,7,11,Australia,AU,Queensland,-27.506908,153.084935,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,3,31,Australia,AU,New South Wales,-34.773212,146.58615,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,11,12,Australia,AU,Queensland,-27.799172,151.586058,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,12,26,Australia,AU,South Australia,-34.889666,138.73221,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,MALE,Big fella taking it easy on grey gum,2024,4,8,Australia,AU,New South Wales,-34.078785,150.84787,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,On opposite side of tennis courts near townhouses,2023,11,14,Australia,AU,Queensland,-27.525451,153.093371,EPSG:4326 +HUMAN_OBSERVATION,J. Addesi,1,,,2024,3,23,Australia,AU,South Australia,-34.903933,138.70256,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,7,Australia,AU,Queensland,-27.529175,153.104627,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,10,5,Australia,AU,New South Wales,-33.076675,151.0952,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,10,6,Australia,AU,Queensland,-27.529257,153.11158,EPSG:4326 +HUMAN_OBSERVATION,Conservation Volunteers Australia,1,MALE,,2022,2,21,Australia,AU,Queensland,-27.420005,152.608048,EPSG:4326 +HUMAN_OBSERVATION,Mike and Cathy Beamish,1,,"Strzelecki variant. This koala survived electrocution at 11,000 Volts, was physically removed from the structure using a pole noose, spent several days with a wildlife carer for recovery (no visible external wounds), before being released in a nearby bush reserve.",2021,12,24,Australia,AU,Victoria,-38.253706,146.5883,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,2,Australia,AU,Queensland,-27.529337,153.111997,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2023,10,14,Australia,AU,Queensland,-27.524248,153.093052,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,Tummaville Road,2021,11,29,Australia,AU,Queensland,-27.837743,151.573337,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,7,30,Australia,AU,Queensland,-27.823655,152.993012,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.920631,147.738369,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Andrew Kennedy. Submitted via FB.,2022,6,22,Australia,AU,Queensland,-26.685525,151.985666,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,"Koala in planted tallowwood, Mt Alford State School. Scat collected. Signs of being unwell (cystitis).",2024,6,22,Australia,AU,Queensland,-28.068571,152.594027,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,4,21,Australia,AU,Queensland,-27.527118,153.091596,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,12,Australia,AU,South Australia,-34.889468,138.722722,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,Second individual in same tree,2023,11,22,Australia,AU,Queensland,-27.304556,152.996558,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2022,7,9,Australia,AU,Victoria,-36.798388,145.780475,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,5,22,Australia,AU,Queensland,-27.46973,152.598633,EPSG:4326 +HUMAN_OBSERVATION,Louis O'Neill,1,,"1 of 4 seen in Leis Park. A young individual, looks healthy. reported to www.koalatracker.com.au",2023,11,2,Australia,AU,Queensland,-27.276539,152.980971,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,FEMALE,Healthy Koala Observation by J Miller for TKWR,2023,10,28,Australia,AU,Queensland,-27.483677,151.874817,EPSG:4326 +HUMAN_OBSERVATION,colbs24,1,,,2024,8,24,Australia,AU,Queensland,-27.728608,153.192413,EPSG:4326 +HUMAN_OBSERVATION,Alba Fulmo,1,,,2023,1,16,Australia,AU,Queensland,-27.510458,153.084298,EPSG:4326 +HUMAN_OBSERVATION,dingo-dave,1,,Sleeping in a Gum tree,2023,8,13,Australia,AU,Queensland,-27.537374,153.040966,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.373161,145.314758,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy Koala Observation by A Bailey. TKWR attended to do health check.,2023,1,10,Australia,AU,Queensland,-27.436496,151.998241,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult female with joey. Healthy. Observed by Wendy Taylor. Submitted by Denise Shaw,2023,6,27,Australia,AU,Queensland,-26.154356,151.748898,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,In mating tree - Woodland gully,2024,10,12,Australia,AU,Queensland,-27.527647,153.092739,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2022,10,8,Australia,AU,Queensland,-27.568725,152.102525,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Spotted Gum,2021,11,3,Australia,AU,Queensland,-27.550248,153.059932,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,7,24,Australia,AU,South Australia,-34.953584,138.686027,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,5,Australia,AU,Queensland,-27.527339,153.110556,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - not tagged - known as Millie,2023,7,10,Australia,AU,Queensland,-27.526988,153.111312,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,8,6,Australia,AU,Queensland,-27.548695,153.045768,EPSG:4326 +HUMAN_OBSERVATION,maximto,1,,,2023,7,15,Australia,AU,Queensland,-27.497203,153.399278,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,2,Australia,AU,Queensland,-27.526452,153.090659,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,6,15,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,1,21,Australia,AU,Queensland,-27.525584,153.092526,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2023,6,29,Australia,AU,Queensland,-28.071929,152.831715,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,4,Australia,AU,South Australia,-34.891674,138.713851,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear - can't quite read the # but I think this is Rue 1376,2024,7,20,Australia,AU,Queensland,-27.529577,153.109742,EPSG:4326 +HUMAN_OBSERVATION,Jeff Giddins,1,,,2023,12,4,Australia,AU,Victoria,-38.841434,143.532427,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,10,16,Australia,AU,New South Wales,-28.282675,153.389182,EPSG:4326 +HUMAN_OBSERVATION,Marie Tarrant,1,,GSL,2021,11,23,Australia,AU,Queensland,-27.261314,152.899999,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,FEMALE,,2023,11,20,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"snapshot from phone video, Koala on the move up the tree and feeding.",2022,4,27,Australia,AU,Queensland,-27.509442,153.069936,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala scat under big Eucalyptus tereticornis,2024,5,13,Australia,AU,Queensland,-27.960683,152.580991,EPSG:4326 +HUMAN_OBSERVATION,kb2700,1,,,2024,9,21,Australia,AU,New South Wales,-34.764952,146.586005,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,11,3,Australia,AU,Queensland,-27.93795,153.351081,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - heard grunting,2024,11,13,Australia,AU,Queensland,-27.527748,153.104237,EPSG:4326 +HUMAN_OBSERVATION,taitkowalick,1,,,2024,5,11,Australia,AU,South Australia,-35.031587,138.559678,EPSG:4326 +HUMAN_OBSERVATION,duffelbag,1,,,2023,3,29,Australia,AU,Victoria,-38.318526,142.364003,EPSG:4326 +HUMAN_OBSERVATION,Keith,1,,,2024,5,10,Australia,AU,Queensland,-27.51085,153.082777,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,30,Australia,AU,Queensland,-27.527879,153.092919,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,3,Australia,AU,South Australia,-34.889967,138.729412,EPSG:4326 +HUMAN_OBSERVATION,Thomas Gray,1,,,2022,6,16,Australia,AU,South Australia,-34.998067,138.633697,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,FEMALE,Mum with Joey,2024,10,13,Australia,AU,Queensland,-27.553225,153.072083,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,22,Australia,AU,Queensland,-27.529137,153.112035,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,19,Australia,AU,Queensland,-27.527277,153.111225,EPSG:4326 +HUMAN_OBSERVATION,southseas,1,,,2020,11,3,Australia,AU,South Australia,-35.049764,138.611082,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,Thermal image - DJI Mavic 3T screen record https://youtu.be/BUAjdENHGRA,2024,6,12,Australia,AU,Queensland,-27.442186,151.690915,EPSG:4326 +HUMAN_OBSERVATION,Nic Van Zyl,1,,,2024,7,14,Australia,AU,Victoria,-38.318812,142.363433,EPSG:4326 +HUMAN_OBSERVATION,Jane Gosden,1,,,2022,5,3,Australia,AU,Queensland,-27.433674,153.543551,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,11,15,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,FEMALE,Better pics to come. High in Yellow Gum Eucalyptus leucoxylon (separate observation),2023,11,24,Australia,AU,Victoria,-37.953823,144.436702,EPSG:4326 +HUMAN_OBSERVATION,Leah Burns,1,,,2024,7,6,Australia,AU,Queensland,-27.540875,153.0768,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,12,Australia,AU,Queensland,-27.822636,152.992582,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,K block mowing shed,2024,7,14,Australia,AU,Queensland,-27.525892,153.090798,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,3 x adult females. Healthy. 2 were in E.moluccana and 1 in E.tereticornis. Observed by Robyn Zacherson. Submitted via FB.,2024,6,25,Australia,AU,Queensland,-26.309604,151.781967,EPSG:4326 +HUMAN_OBSERVATION,bertbohosouth,1,,In Grey Box (Euc. microcarpa),2021,11,10,Australia,AU,Victoria,-37.026706,145.655478,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,11,16,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,anthonydlaird,1,,Juvenile + Adult Koala (Juvenile pictured) both resting.,2020,11,10,Australia,AU,Queensland,-27.729189,153.194856,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag 081... LEFT ear - known as Buster,2024,10,15,Australia,AU,Queensland,-27.529837,153.10537,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,,"Male koala high in messmate stringybark Marshall, has been seen near here before",2023,2,28,Australia,AU,Victoria,-37.81971,144.251865,EPSG:4326 +HUMAN_OBSERVATION,woma87,1,,,2023,8,16,Australia,AU,Queensland,-27.273422,152.962876,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,"Adult. Female. Female conjunctivitis, chlamydia, Retrovirus and mouth tumours. Rescued. Euthanised after being diagnosed with bone marrow cancer. Observed by Wendy Taylor. Submitted via msg.",2024,7,17,Australia,AU,Queensland,-26.531361,151.943302,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,"Regularly seen koala on Lawnton Pocket Road, Lawnton.",2024,8,3,Australia,AU,Queensland,-27.28399,152.999373,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,,"Scat and tree scratches on Brown Mallet, Eucalyptus astringens, tree that a male koala was seen roosting in the day before. Scat and scratches less than 24 hours old. The bark of this tree is very soft, and marks easily. The freshest scratches have a light green tinge (pic 7 & 8), progressing through a light reddish brown (pic 5 & 6) to dark red brown (pic 10). Fibres are lifted at edges of fresh scratches (pic 8). Some older scratches can be seen too, but they have healed to a dull grey and have no lifted fibres. Pics 6 & 8 are duplicates of 5 & 7 zoomed and cropped to show detail .",2024,4,18,Australia,AU,Victoria,-37.960008,144.432479,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,10,26,Australia,AU,Queensland,-27.551728,153.05678,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,Note the use of a ladder tree in photo 2. LCA3168,2023,6,6,Australia,AU,Queensland,-27.496289,152.249353,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,28,Australia,AU,Queensland,-27.52905,153.103315,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Triangle area near cafeteria,2023,11,4,Australia,AU,Queensland,-27.527147,153.092127,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to generator - Front of TAFE Cavendish Road- e block,2024,5,5,Australia,AU,Queensland,-27.526755,153.090733,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Healthy specimen in a large Euclayptus tereticornis.,2024,1,22,Australia,AU,Queensland,-27.893011,153.145645,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,11,9,Australia,AU,Victoria,-37.640257,143.902414,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult female with joey. Was not able to get a good photo as mum was very quick. Observed by Elissa Black. Submitted via email.,2023,7,28,Australia,AU,Queensland,-26.548663,151.950212,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,4,8,Australia,AU,Queensland,-27.530311,153.10337,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2024,7,6,Australia,AU,Queensland,-27.528346,153.03385,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,1,Australia,AU,Queensland,-27.527907,153.111563,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,3,17,Australia,AU,Queensland,-27.527796,153.092381,EPSG:4326 +HUMAN_OBSERVATION,cleanlymoss,1,,,2023,12,20,Australia,AU,Queensland,-27.600052,151.895396,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,2 koalas in one tree,2024,4,27,Australia,AU,Queensland,-27.529854,153.103475,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2023,12,19,Australia,AU,South Australia,-35.230002,138.540372,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,"Survey 1 LNSF FoN. Numerous koala markings, age of markings varies. Known area markings 2021 BioNet (transect)",2023,7,11,Australia,AU,New South Wales,-30.559703,152.99336,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,14,Australia,AU,Queensland,-27.692305,151.569954,EPSG:4326 +HUMAN_OBSERVATION,rfarq,1,,,2022,2,22,Australia,AU,South Australia,-35.020803,138.62587,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,22,Australia,AU,Queensland,-27.528714,153.112328,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Koala markings. FoN Moyles Rd East survey 1,2023,10,22,Australia,AU,New South Wales,-30.533768,153.002588,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,18,Australia,AU,Queensland,-27.527214,153.108774,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,31,Australia,AU,South Australia,-34.887054,138.728491,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,10,14,Australia,AU,Victoria,-37.652778,143.925556,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In Eucalyptus microcorys.,2021,8,15,Australia,AU,Queensland,-27.551068,153.054697,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,MALE,same male in same tree,2022,9,24,Australia,AU,New South Wales,-28.254163,153.376974,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,MALE,,2023,12,5,Australia,AU,South Australia,-34.855378,138.681612,EPSG:4326 +HUMAN_OBSERVATION,dawnborchardt,1,,,2023,10,31,Australia,AU,South Australia,-34.709514,138.961516,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,10,15,Australia,AU,Queensland,-27.824168,152.812857,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lower wisteria car park,2024,9,15,Australia,AU,Queensland,-27.524987,153.092708,EPSG:4326 +HUMAN_OBSERVATION,ljker2,1,,Smoothbark - maybe Forest Red Gum (preferred koala food tree in local area),2024,2,19,Australia,AU,Queensland,-27.832436,153.368909,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2021,11,28,Australia,AU,New South Wales,-34.1017,150.822787,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside tafe nursery,2023,8,10,Australia,AU,Queensland,-27.527162,153.09174,EPSG:4326 +HUMAN_OBSERVATION,lesyork,1,,,2022,10,26,Australia,AU,Victoria,-38.780924,143.655544,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3133 (Photo: Bob Brown),2022,9,15,Australia,AU,Queensland,-27.53118,152.1833,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey Ironbark,2020,7,29,Australia,AU,Queensland,-27.548104,153.052373,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In trees near townhouses near Tristania & Wisteria Woodland,2024,4,1,Australia,AU,Queensland,-27.525278,153.093523,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,16,Australia,AU,Queensland,-27.527913,153.110473,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,2,Australia,AU,Queensland,-27.524287,153.09164,EPSG:4326 +HUMAN_OBSERVATION,Malaika Mathew Chawla,1,,A single koala found in a remnant vegetation strip adjacent to farmland and plantations Second pic- habitat picture,2021,2,9,Australia,AU,Victoria,-38.444331,143.050141,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,Bingara Community Conservation Area,2024,11,11,Australia,AU,New South Wales,-29.857173,150.585827,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,6,12,Australia,AU,Victoria,-37.602093,143.873171,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,,2024,2,6,Australia,AU,New South Wales,-29.545735,150.564161,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,10,27,Australia,AU,South Australia,-34.880518,138.776539,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,9,Australia,AU,South Australia,-34.89021,138.731933,EPSG:4326 +HUMAN_OBSERVATION,peter-,1,,,2023,11,5,Australia,AU,Queensland,-28.203106,152.897078,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,5,3,Australia,AU,Queensland,-27.529548,153.105126,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Male, bellowing a lot; believe tis the brown male we saw earlier. Took some video too.",2021,9,15,Australia,AU,New South Wales,-28.254294,153.377246,EPSG:4326 +HUMAN_OBSERVATION,Neil Huth,1,,Mum and joey,2023,9,30,Australia,AU,Queensland,-27.311111,152.266737,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,18,Australia,AU,South Australia,-34.889654,138.733912,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Flooded Gum tree.,2024,8,24,Australia,AU,New South Wales,-28.258268,153.401146,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery,2024,10,27,Australia,AU,Queensland,-27.527103,153.091574,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,9,Australia,AU,Queensland,-27.528266,153.092441,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,10,25,Australia,AU,South Australia,-34.890616,138.7317,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Mother and joey Audrey and Matteo,2024,10,19,Australia,AU,Queensland,-27.52755,153.090696,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2023,10,29,Australia,AU,Queensland,-27.527271,153.091507,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Healthy looking tagged male,2024,9,19,Australia,AU,Queensland,-27.339197,152.613358,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2023,11,26,Australia,AU,New South Wales,-34.101342,150.821962,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,,Adult with signs of chlamydia (messy bum). Saw what I assume was the same individual hours earlier walking on road.,2022,5,23,Australia,AU,Queensland,-27.457754,152.386914,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,2,9,Australia,AU,Queensland,-27.548459,153.050141,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"heard this at night, so went looking. Seems to have quite a white bottom.",2021,10,24,Australia,AU,New South Wales,-28.253948,153.377455,EPSG:4326 +HUMAN_OBSERVATION,Diana Droog,1,,,2021,12,31,Australia,AU,Victoria,-38.688953,146.308435,EPSG:4326 +HUMAN_OBSERVATION,David Swan,1,,This 1 was walking down the road & I helped "him" off the road.,2024,10,25,Australia,AU,Victoria,-38.300035,145.110516,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,17,Australia,AU,Queensland,-27.529509,153.105942,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,3,Australia,AU,Queensland,-27.528808,153.103779,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwod. Same tree and branch as two days ago,2020,4,24,Australia,AU,Queensland,-27.548028,153.058411,EPSG:4326 +HUMAN_OBSERVATION,cleanlymoss,1,,,2023,12,26,Australia,AU,Queensland,-27.600052,151.895396,EPSG:4326 +HUMAN_OBSERVATION,craftyranga,1,,,2024,6,3,Australia,AU,Queensland,-19.126278,146.868378,EPSG:4326 +HUMAN_OBSERVATION,mikew65,1,,At least five animals within the same tree near homestead. Western Grey Kangaroo resting in the shade beneath.,2024,2,15,Australia,AU,South Australia,-34.83217,135.685924,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In picnic area near E block In tree next to driveway Possibly mother and joey,2023,8,21,Australia,AU,Queensland,-27.526074,153.090444,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,,Female Koala with Joey on back. Literally in a tree on a very busy main road.,2022,8,3,Australia,AU,South Australia,-35.008228,138.586914,EPSG:4326 +HUMAN_OBSERVATION,jcadermann,1,,,2020,11,19,Australia,AU,Queensland,-28.12476,152.946396,EPSG:4326 +HUMAN_OBSERVATION,Sam S,1,,"Possibly male- heard a short grunt. In a swamp gum, eucalyptus ovata.",2023,6,10,Australia,AU,Victoria,-37.019056,145.453145,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,24,Australia,AU,South Australia,-34.890132,138.720828,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,8,17,Australia,AU,New South Wales,-29.651105,150.831823,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,May*** have a joey because in the closeup shot you can see koala's hand wrapping around a possible joey?,2024,7,6,Australia,AU,Queensland,-27.284058,152.999508,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,4,22,Australia,AU,Queensland,-27.528967,153.103398,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lucy Lou and joey Outside nursery- near boom gate,2023,9,30,Australia,AU,Queensland,-27.527196,153.091374,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,14,Australia,AU,Queensland,-27.543403,153.069834,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,This one is on the move at night. I believe it may be a male. No idea if it is the same or a different one as seen during the day.,2020,11,8,Australia,AU,New South Wales,-28.2539,153.37737,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Believe this was the same one as on the 9th.,2021,11,11,Australia,AU,New South Wales,-28.252428,153.375144,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,31,Australia,AU,Queensland,-27.527182,153.091724,EPSG:4326 +HUMAN_OBSERVATION,melcm,1,,Was very low on the tree when came across. As soon as he knew we were there we run up the tree,2023,7,2,Australia,AU,Victoria,-37.701176,144.037053,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2023,9,23,Australia,AU,Queensland,-27.579965,153.291617,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,default,2024,3,17,Australia,AU,Queensland,-27.533092,151.976588,EPSG:4326 +HUMAN_OBSERVATION,Jens Søgaard Hansen,1,,Nummer 4 from the entrance,2024,2,7,Australia,AU,Victoria,-38.673618,143.848189,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,21,Australia,AU,South Australia,-34.890913,138.722832,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,In a cheese tree,2023,3,29,Australia,AU,Queensland,-27.551548,153.05787,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,MALE,Male calling most of last night and this morning.,2022,11,10,Australia,AU,Queensland,-27.734552,153.101646,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,MALE,Koala keeping cool.,2023,10,15,Australia,AU,Queensland,-27.284463,153.000814,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,9,Australia,AU,South Australia,-34.865349,138.724622,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey,2024,3,16,Australia,AU,Queensland,-27.530238,153.103269,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,31,Australia,AU,South Australia,-34.886742,138.731252,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,A popular tree by the scratching,2022,12,30,Australia,AU,Queensland,-27.529816,153.105123,EPSG:4326 +HUMAN_OBSERVATION,bertbohosouth,1,,,2022,12,8,Australia,AU,Victoria,-36.778678,145.791408,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2024,4,3,Australia,AU,Victoria,-37.638528,143.902966,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside cleaners donga,2024,3,2,Australia,AU,Queensland,-27.526957,153.091744,EPSG:4326 +HUMAN_OBSERVATION,brodytheone,1,,,2023,4,9,Australia,AU,Queensland,-27.226775,153.073155,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,3,27,Australia,AU,Queensland,-27.508135,153.081995,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Believe this is a male, due to the single white spot on its thigh as have seen before. Note the tick above its eye on its forehead.",2020,9,21,Australia,AU,New South Wales,-28.254308,153.377061,EPSG:4326 +HUMAN_OBSERVATION,Stephen Cox,1,,,2024,1,5,Australia,AU,Victoria,-38.317417,142.364728,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,,2022,4,29,Australia,AU,South Australia,-34.990975,138.637029,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2021,10,27,Australia,AU,South Australia,-34.969798,138.638531,EPSG:4326 +HUMAN_OBSERVATION,dancg,1,,,2020,9,29,Australia,AU,Victoria,-38.143147,141.371522,EPSG:4326 +HUMAN_OBSERVATION,DillAnt,1,,,2023,9,30,Australia,AU,Victoria,-38.318677,142.363542,EPSG:4326 +HUMAN_OBSERVATION,Margaret Carew,1,,,2024,6,6,Australia,AU,Victoria,-38.827648,145.996475,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,1,Australia,AU,Queensland,-27.527612,153.110234,EPSG:4326 +HUMAN_OBSERVATION,Hayley P,1,,,2023,8,19,Australia,AU,Queensland,-27.374178,152.9304,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,2,5,Australia,AU,Queensland,-27.527191,153.091707,EPSG:4326 +HUMAN_OBSERVATION,Tanya Zubakin,1,FEMALE,"Suspected conjunctivitis and cystitis, went to assess",2023,10,22,Australia,AU,New South Wales,-28.829234,153.207178,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,MALE,,2024,10,31,Australia,AU,South Australia,-34.733275,138.976705,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2021,8,7,Australia,AU,New South Wales,-28.256104,153.401709,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2022,10,31,Australia,AU,Victoria,-38.354812,146.388227,EPSG:4326 +HUMAN_OBSERVATION,justinerichaume,1,,,2024,10,25,Australia,AU,Queensland,-19.138825,146.864058,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey in same tree,2023,1,3,Australia,AU,Queensland,-27.528324,153.112152,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2021,11,22,Australia,AU,Victoria,-38.373899,145.314579,EPSG:4326 +HUMAN_OBSERVATION,oconnej,1,,,2024,8,11,Australia,AU,Queensland,-28.064761,152.629686,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,"Koala, collected scat.",2024,4,12,Australia,AU,Queensland,-27.899192,153.136002,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,1,Australia,AU,South Australia,-34.890269,138.731801,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,25,Australia,AU,Queensland,-27.527189,153.09152,EPSG:4326 +HUMAN_OBSERVATION,jcadermann,1,,,2021,7,27,Australia,AU,Queensland,-28.12476,152.946396,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,3,25,Australia,AU,Victoria,-37.60419,143.875043,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,8,10,Australia,AU,Victoria,-37.616456,143.898409,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,in house yard,2022,11,4,Australia,AU,Victoria,-37.634542,143.872853,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2023,9,12,Australia,AU,Queensland,-27.529118,153.111943,EPSG:4326 +HUMAN_OBSERVATION,hkrenske,1,,Koala in tree above picnic area.,2023,9,25,Australia,AU,Queensland,-27.563007,152.041547,EPSG:4326 +HUMAN_OBSERVATION,joanneianson,1,,,2020,10,23,Australia,AU,Victoria,-37.701687,144.502517,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Adult. Male. Skinny, Wet bottom & Conjunctivitis. Rescue contacted. Later died. Observed along Bellottis Road Oakdale (exact location along the road not supplied) by Denise Shaw. Submitted via email.",2023,10,15,Australia,AU,Queensland,-26.172433,151.904076,EPSG:4326 +HUMAN_OBSERVATION,katefras,1,,,2023,1,30,Australia,AU,Queensland,-28.207198,152.629703,EPSG:4326 +HUMAN_OBSERVATION,moominmumma,1,,,2022,1,7,Australia,AU,Queensland,-27.542597,153.05457,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Unknown sex. Adult. Healthy. Koala's (multiple individuals) often seen on the property behind the race course. Observed by Anne-Marie Gibbs and reported via msg.,2022,3,20,Australia,AU,Queensland,-26.31377,151.884333,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Sighted by Bronwyn Henry,2022,9,8,Australia,AU,New South Wales,-36.151464,149.367574,EPSG:4326 +HUMAN_OBSERVATION,luccio42,1,FEMALE,,2023,11,15,Australia,AU,Victoria,-38.318224,142.36258,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,3,26,Australia,AU,Queensland,-27.566497,152.110733,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,18,Australia,AU,Queensland,-27.814422,151.55078,EPSG:4326 +HUMAN_OBSERVATION,Anne-Marie Griffin,1,,,2022,12,9,Australia,AU,New South Wales,-33.753478,149.408161,EPSG:4326 +HUMAN_OBSERVATION,Jason Ramsay,1,,Apologies for the grainy picture.,2022,12,14,Australia,AU,Queensland,-27.27726,152.933126,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear - Joe (known as Bozo),2023,8,7,Australia,AU,Queensland,-27.526683,153.109195,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,6,30,Australia,AU,Queensland,-26.148682,151.747217,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,27,Australia,AU,South Australia,-34.887395,138.734109,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,3,6,Australia,AU,Queensland,-27.530268,153.103275,EPSG:4326 +HUMAN_OBSERVATION,tangdactylus,1,,Four koalas together. One juvenile. Ironbark species- E. Crebra?,2024,9,22,Australia,AU,Queensland,-19.173296,146.842512,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.922763,147.73117,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2023,1,6,Australia,AU,Queensland,-27.551994,153.056341,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2023,3,31,Australia,AU,Queensland,-26.878983,152.858913,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,11,19,Australia,AU,Queensland,-27.720883,151.523742,EPSG:4326 +HUMAN_OBSERVATION,Brad,1,,,2021,5,2,Australia,AU,South Australia,-35.035452,138.589426,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2024,4,17,Australia,AU,South Australia,-34.86621,138.665213,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,12,17,Australia,AU,New South Wales,-28.271412,153.393481,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,7,28,Australia,AU,Queensland,-27.512072,153.11705,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2022,1,3,Australia,AU,Queensland,-27.511286,153.08772,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,2,6,Australia,AU,Queensland,-27.52976,153.105031,EPSG:4326 +HUMAN_OBSERVATION,qt-sundew,1,,,2024,10,29,Australia,AU,Victoria,-36.126229,146.610249,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2024,10,18,Australia,AU,Queensland,-28.736812,151.927231,EPSG:4326 +HUMAN_OBSERVATION,julesmorgano,1,,,2023,9,26,Australia,AU,Queensland,-27.406106,151.932518,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Yellow tag left ear,2024,10,25,Australia,AU,Queensland,-27.546729,153.073501,EPSG:4326 +HUMAN_OBSERVATION,Vireya Jacquard,1,,,2022,12,6,Australia,AU,Victoria,-37.690034,143.995862,EPSG:4326 +HUMAN_OBSERVATION,schnackman,1,FEMALE,Female with offspring.,2022,11,16,Australia,AU,South Australia,-35.960111,136.809468,EPSG:4326 +HUMAN_OBSERVATION,graeme lunt,1,,,2022,12,6,Australia,AU,Victoria,-37.689816,143.996588,EPSG:4326 +HUMAN_OBSERVATION,keiras21,1,,,2023,8,21,Australia,AU,Victoria,-38.833898,143.513012,EPSG:4326 +HUMAN_OBSERVATION,Anne-Marie Griffin,1,,,2020,11,1,Australia,AU,New South Wales,-33.753478,149.408161,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,4,6,Australia,AU,Queensland,-27.527653,153.091013,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2022,3,3,Australia,AU,Queensland,-27.51474,153.08257,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,3,Australia,AU,Queensland,-27.525702,153.111397,EPSG:4326 +HUMAN_OBSERVATION,W. Hodgson,1,,,2023,6,13,Australia,AU,Queensland,-27.299048,152.974868,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Aldi gates entrance,2024,10,20,Australia,AU,Queensland,-27.526748,153.093279,EPSG:4326 +HUMAN_OBSERVATION,Gen C,1,,,2023,9,10,Australia,AU,South Australia,-35.004482,138.650192,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,7,Australia,AU,Queensland,-27.527095,153.108164,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2021,3,7,Australia,AU,Queensland,-27.176968,152.994518,EPSG:4326 +HUMAN_OBSERVATION,nics4,1,,,2024,9,24,Australia,AU,Queensland,-27.622508,153.154189,EPSG:4326 +HUMAN_OBSERVATION,Taylor,1,,Right by the Information bay,2020,9,25,Australia,AU,New South Wales,-30.269391,150.061065,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2022,2,17,Australia,AU,Victoria,-38.628155,145.727807,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2024,4,22,Australia,AU,Victoria,-38.832338,143.51442,EPSG:4326 +HUMAN_OBSERVATION,georgiescott,1,,,2024,11,12,Australia,AU,Queensland,-27.421786,152.618588,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,30,Australia,AU,South Australia,-34.891685,138.716361,EPSG:4326 +HUMAN_OBSERVATION,kristalmilne,1,,2 koalas in mating ritual?,2024,7,11,Australia,AU,Victoria,-38.829138,145.996995,EPSG:4326 +HUMAN_OBSERVATION,squamata,1,,,2023,9,16,Australia,AU,South Australia,-35.004858,138.635748,EPSG:4326 +HUMAN_OBSERVATION,James Peake,1,,,2023,8,9,Australia,AU,Victoria,-38.265771,145.048207,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,,2023,11,25,Australia,AU,Queensland,-27.266317,152.05002,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE,2023,11,11,Australia,AU,Queensland,-27.526831,153.091002,EPSG:4326 +HUMAN_OBSERVATION,briancthomas,1,,,2023,9,19,Australia,AU,Victoria,-38.380072,145.124497,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Stringybark (Baileys maybe),2020,10,12,Australia,AU,Queensland,-27.551233,153.058126,EPSG:4326 +HUMAN_OBSERVATION,wombatplace,1,,Sighting and photos (c) david19.,2020,12,3,Australia,AU,South Australia,-35.068755,138.699813,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2023,3,15,Australia,AU,Queensland,-27.551168,153.057721,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" male in largest stringybark at top of 48 Baker. Heard this morning on 47 Baker.",2021,1,13,Australia,AU,New South Wales,-30.520925,151.520745,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2023,7,24,Australia,AU,Queensland,-27.529117,153.1032,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,3,Australia,AU,South Australia,-34.892569,138.714331,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,2,21,Australia,AU,Queensland,-27.546137,153.069367,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,27,Australia,AU,Queensland,-27.527864,153.110649,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2022,2,22,Australia,AU,Victoria,-38.133912,145.272095,EPSG:4326 +HUMAN_OBSERVATION,lexiez,1,,,2020,12,5,Australia,AU,Queensland,-28.149664,153.270737,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,16,Australia,AU,Queensland,-27.822665,152.991598,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,???,2021,4,21,Australia,AU,Queensland,-27.534481,153.062062,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,FEMALE,Mother and back young,2024,10,9,Australia,AU,New South Wales,-34.745192,146.532982,EPSG:4326 +HUMAN_OBSERVATION,jgcroydon,1,,,2022,12,10,Australia,AU,Victoria,-38.3106,145.293258,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Juvenile,2024,5,20,Australia,AU,Queensland,-27.527013,153.109259,EPSG:4326 +HUMAN_OBSERVATION,Kate Leslie,1,,,2022,4,10,Australia,AU,Victoria,-38.500419,142.987244,EPSG:4326 +HUMAN_OBSERVATION,juliesusan,1,,"Mother and joey, on driveway and then into tree . Mother has evidence of right eye infection but otherwise both look healthy.",2023,9,4,Australia,AU,Queensland,-26.749683,152.805222,EPSG:4326 +HUMAN_OBSERVATION,Sharon Dodd,1,,,2022,10,30,Australia,AU,Victoria,-38.358693,146.387667,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,10,15,Australia,AU,Queensland,-27.528515,153.112124,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother with joey on back,2024,8,17,Australia,AU,Queensland,-27.52719,153.091274,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,21,Australia,AU,Queensland,-27.54593,153.073255,EPSG:4326 +HUMAN_OBSERVATION,Pete Woodall,1,,2285,2022,11,23,Australia,AU,South Australia,-35.959464,136.811691,EPSG:4326 +HUMAN_OBSERVATION,lglasgow059,1,,Adult. Unknow sex. Healthy. Observed by Wendy Taylor. Submitted via messenger.,2024,8,26,Australia,AU,Queensland,-26.155884,151.801618,EPSG:4326 +HUMAN_OBSERVATION,Kim Lapere,1,,,2021,4,17,Australia,AU,Victoria,-37.200355,148.268728,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Gail Connell. Forwarded by email.,2020,12,8,Australia,AU,Queensland,-24.985621,151.987165,EPSG:4326 +HUMAN_OBSERVATION,Nicholas John Fisher,1,,in Forest Red Gum Wilson NR,2022,9,29,Australia,AU,New South Wales,-28.83287,153.290403,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,18,Australia,AU,Queensland,-27.528233,153.092364,EPSG:4326 +HUMAN_OBSERVATION,szimpla,1,,,2022,12,5,Australia,AU,Victoria,-38.813612,143.543034,EPSG:4326 +HUMAN_OBSERVATION,fraserj09,1,,,2024,9,14,Australia,AU,Victoria,-38.04892,141.026909,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2023,11,26,Australia,AU,South Australia,-34.922325,138.69383,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear - Joe (known as Bozo),2023,8,1,Australia,AU,Queensland,-27.529091,153.106639,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,29,Australia,AU,South Australia,-34.892731,138.722292,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,7,7,Australia,AU,Queensland,-27.528068,153.092708,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,18,Australia,AU,South Australia,-34.893055,138.715022,EPSG:4326 +HUMAN_OBSERVATION,daniel_kol,1,,Mum with joey,2021,10,15,Australia,AU,Queensland,-27.963892,153.38043,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,11,3,Australia,AU,Queensland,-27.551783,153.056717,EPSG:4326 +HUMAN_OBSERVATION,Mel,1,,,2022,4,30,Australia,AU,South Australia,-34.987641,138.628788,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,9,28,Australia,AU,Queensland,-27.392939,151.782318,EPSG:4326 +HUMAN_OBSERVATION,Nick Lambert,1,,,2020,9,22,Australia,AU,New South Wales,-30.418008,152.946303,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In a E.microcorys.,2020,10,17,Australia,AU,Queensland,-27.549997,153.046535,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,4,9,Australia,AU,Queensland,-27.552652,153.044227,EPSG:4326 +HUMAN_OBSERVATION,lourstravel,1,,,2020,9,30,Australia,AU,Queensland,-19.123233,146.871386,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2023,9,17,Australia,AU,Victoria,-37.001218,145.549365,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park Three koalas same tree - interrupted?,2023,9,2,Australia,AU,Queensland,-27.524925,153.09223,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor during rescue of another koala. Submitted via msg.,2024,11,10,Australia,AU,Queensland,-26.588336,151.684612,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,7,Australia,AU,Queensland,-27.52727,153.092456,EPSG:4326 +HUMAN_OBSERVATION,Christian Schwarz,1,,,2024,5,13,Australia,AU,Queensland,-27.544619,153.04907,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,9,Australia,AU,Queensland,-27.545829,153.073655,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,11,14,Australia,AU,Queensland,-27.553247,153.052424,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2022,3,19,Australia,AU,South Australia,-35.017584,138.65744,EPSG:4326 +HUMAN_OBSERVATION,mad_exotics_and_reptile_care,1,,"Kayaking along Cooby Dam, QLD, Wildlife Observations; sited multiple Koala (phascolarctos) in 3 trees along bank. Koala site 2",2023,1,22,Australia,AU,Queensland,-27.385979,151.945184,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Koala scat presented for DNA analysis - research into local genetic diversity of koala population.,2023,5,10,Australia,AU,Victoria,-37.598586,143.870984,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near e block,2024,3,30,Australia,AU,Queensland,-27.525964,153.090672,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"large koala, hard to see as back to camera, in centre of picture, on branch, in trees on left of lemon scented gum",2020,3,16,Australia,AU,New South Wales,-28.25405,153.377208,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,10,Australia,AU,Queensland,-27.529349,153.109982,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey She had moved to a lower branch when I returned later,2024,2,19,Australia,AU,Queensland,-27.528233,153.103516,EPSG:4326 +HUMAN_OBSERVATION,Nina,1,,,2020,9,11,Australia,AU,South Australia,-35.005833,138.6375,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey,2024,9,28,Australia,AU,Queensland,-27.527345,153.091524,EPSG:4326 +HUMAN_OBSERVATION,Geoffrey Cox,1,,,2022,12,23,Australia,AU,South Australia,-35.100399,138.56895,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Unhealthy. Signs of Chlamydia. Observed and rescued by Wendy Taylor. Submitted via msg,2024,11,10,Australia,AU,Queensland,-26.588336,151.684612,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,25,Australia,AU,Queensland,-27.527895,153.103298,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park Lucy?,2023,5,28,Australia,AU,Queensland,-27.525081,153.092202,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2022,12,27,Australia,AU,Queensland,-27.602689,151.886229,EPSG:4326 +HUMAN_OBSERVATION,aburnell,1,,,2024,1,20,Australia,AU,South Australia,-35.323248,138.539368,EPSG:4326 +HUMAN_OBSERVATION,kaikww,1,,,2024,8,18,Australia,AU,Queensland,-27.547733,153.04828,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,In mum’s trees,2024,10,20,Australia,AU,Queensland,-27.526445,153.091115,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Picnic area near lower Aldi car park,2024,9,6,Australia,AU,Queensland,-27.527065,153.092081,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2023,11,19,Australia,AU,Queensland,-27.528072,153.09243,EPSG:4326 +HUMAN_OBSERVATION,walker9853,1,,,2022,5,29,Australia,AU,Queensland,-19.128317,146.868205,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,7,24,Australia,AU,Queensland,-27.823693,152.99324,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,2,13,Australia,AU,Queensland,-27.526934,153.090946,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,1,Australia,AU,Queensland,-27.529633,153.114629,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,6,1,Australia,AU,New South Wales,-28.253927,153.377357,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2020,9,7,Australia,AU,Queensland,-27.50924,153.084665,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Female koala - yellow tag right ear #768,2023,4,15,Australia,AU,Queensland,-27.527257,153.090771,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2023,7,30,Australia,AU,Queensland,-27.894535,153.316861,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,7,24,Australia,AU,South Australia,-34.893104,138.626148,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,,"Male koala v high in yellow gum, strong bellow heard up this way and found by Janine",2024,10,25,Australia,AU,Victoria,-37.842517,144.280133,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,On roadside photo: Nury Barros (video frame clip) LCA3097,2022,7,30,Australia,AU,Queensland,-27.546753,152.18223,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,,2021,3,21,Australia,AU,Victoria,-38.175484,145.13221,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,1,15,Australia,AU,New South Wales,-29.729215,151.084877,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"I think this is still the one who came into the backyard on 11/6/23. There has been fresh poo under the tree every day since. Today is very windy and the koala is unco-operative, so photos are not fabulous. https://www.inaturalist.org/observations/166718119",2023,6,24,Australia,AU,Victoria,-37.874758,142.290932,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2023,11,19,Australia,AU,Queensland,-27.524929,153.093563,EPSG:4326 +HUMAN_OBSERVATION,einna-p,1,,,2023,12,27,Australia,AU,Victoria,-37.921329,147.729361,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. 2 x other adults observed same day without photos. Observed by Robyn Zackreson. Submitted via FB,2024,2,4,Australia,AU,Queensland,-26.309919,151.78503,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Hannah Sturgess. Forwarded by messenger.,2021,11,26,Australia,AU,Queensland,-25.63577,151.627281,EPSG:4326 +HUMAN_OBSERVATION,nicholascroft,1,,Adult koala actively feeding.,2023,6,25,Australia,AU,Queensland,-27.542775,153.077803,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,2,22,Australia,AU,New South Wales,-28.258051,153.400893,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,1,17,Australia,AU,Queensland,-27.549768,153.060167,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,"high up, facing away over steep rocky face",2022,9,18,Australia,AU,Queensland,-28.0647,152.422053,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe nursery,2023,5,28,Australia,AU,Queensland,-27.527159,153.091723,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2024,5,15,Australia,AU,Victoria,-36.870426,145.530856,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,8,Australia,AU,Queensland,-27.544744,153.071677,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,11,21,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Lillian Camphausen,1,,,2021,10,16,Australia,AU,South Australia,-35.960164,136.809039,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,3,13,Australia,AU,Queensland,-27.550499,153.05986,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.383903,145.312744,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Multiple koalas seen on the property. Observed by Robyn Zackreson. Submitted via email.,2023,10,25,Australia,AU,Queensland,-26.308257,151.79153,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,6,18,Australia,AU,Queensland,-27.551767,153.056435,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to cleaners donga,2024,2,11,Australia,AU,Queensland,-27.52692,153.091826,EPSG:4326 +HUMAN_OBSERVATION,dibbling,1,,,2024,6,29,Australia,AU,Queensland,-27.91273,153.37278,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,29,Australia,AU,Queensland,-27.791029,151.561648,EPSG:4326 +HUMAN_OBSERVATION,terri1962,1,,,2023,8,29,Australia,AU,Queensland,-27.327172,152.927988,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2024,9,20,Australia,AU,Queensland,-27.527325,153.091522,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2023,5,13,Australia,AU,Queensland,-27.283532,152.953375,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"In Euc. tereticornis, Boonah Rail Trail. Apparently a young animal.",2024,2,3,Australia,AU,Queensland,-27.989778,152.67868,EPSG:4326 +HUMAN_OBSERVATION,Matt Wilkie,1,,,2023,1,5,Australia,AU,Queensland,-19.129238,146.868551,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,7,30,Australia,AU,Queensland,-27.823709,152.993293,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,4,2,Australia,AU,Victoria,-37.605937,143.888317,EPSG:4326 +HUMAN_OBSERVATION,Steph,1,,,2023,2,25,Australia,AU,Queensland,-27.472712,151.954482,EPSG:4326 +HUMAN_OBSERVATION,ainsliem,1,,,2020,9,29,Australia,AU,New South Wales,-28.253153,153.37683,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,9,22,Australia,AU,Queensland,-27.529769,153.111435,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,,2023,9,10,Australia,AU,Queensland,-27.284475,153.000858,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag - Naomi with a new joey,2023,10,11,Australia,AU,Queensland,-27.529093,153.103347,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe Cavendish Road,2023,5,28,Australia,AU,Queensland,-27.52741,153.090999,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,With Joey in Tallowwood,2020,11,7,Australia,AU,Queensland,-27.551517,153.058057,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland- near Seton College,2023,10,15,Australia,AU,Queensland,-27.528458,153.092639,EPSG:4326 +HUMAN_OBSERVATION,albird,1,,,2020,1,4,Australia,AU,New South Wales,-32.727413,152.005919,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria carpark,2023,10,22,Australia,AU,Queensland,-27.525289,153.092205,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,5,20,Australia,AU,Queensland,-27.537585,153.062779,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,11,4,Australia,AU,Queensland,-27.566085,152.111746,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,11,25,Australia,AU,New South Wales,-33.197916,151.038912,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2020,11,10,Australia,AU,Queensland,-27.221047,153.061272,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,19,Australia,AU,Queensland,-27.525388,153.092828,EPSG:4326 +HUMAN_OBSERVATION,Anne-Marie Griffin,1,,,2020,10,20,Australia,AU,New South Wales,-33.753478,149.408161,EPSG:4326 +HUMAN_OBSERVATION,mikelpikel_123,1,,,2023,1,4,Australia,AU,Victoria,-38.283598,145.10269,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,27,Australia,AU,South Australia,-34.888214,138.726793,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tillack Park,2024,10,6,Australia,AU,Queensland,-27.522287,153.101979,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,16,Australia,AU,South Australia,-34.888228,138.733203,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,7,6,Australia,AU,Queensland,-27.719042,151.518953,EPSG:4326 +HUMAN_OBSERVATION,ainsliem,1,,,2020,12,26,Australia,AU,New South Wales,-28.280463,153.380675,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Top of nursery area,2023,7,2,Australia,AU,Queensland,-27.527212,153.091685,EPSG:4326 +HUMAN_OBSERVATION,dumakey,1,,,2021,11,11,Australia,AU,South Australia,-35.150905,138.581369,EPSG:4326 +HUMAN_OBSERVATION,mickshelton,1,,,2023,2,17,Australia,AU,Queensland,-28.107917,153.444165,EPSG:4326 +HUMAN_OBSERVATION,tkennedy3283,1,,,2022,4,3,Australia,AU,Victoria,-38.271797,142.315424,EPSG:4326 +HUMAN_OBSERVATION,Yulia Glazunova,1,,,2024,10,6,Australia,AU,South Australia,-34.913699,138.60451,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,photo: Nury Barros LCA3096,2020,7,11,Australia,AU,Queensland,-27.566322,152.178999,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi. She looks as though she has a new joey,2023,10,10,Australia,AU,Queensland,-27.529669,153.103512,EPSG:4326 +HUMAN_OBSERVATION,Volunteers Goonderoo,1,FEMALE,,2021,6,21,Australia,AU,Queensland,-23.867545,148.124602,EPSG:4326 +HUMAN_OBSERVATION,Kym Sparshott,1,,"In Eucalyptus biturbinata, nr causeway on Crows Nest Ck, nr junction with Bald Hill Ck",2023,11,25,Australia,AU,Queensland,-27.262584,152.064189,EPSG:4326 +HUMAN_OBSERVATION,Lizz Hills,1,,,2023,10,30,Australia,AU,Queensland,-28.308736,152.854949,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,16,Australia,AU,Queensland,-27.527714,153.093045,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"Mum and Joey in E,tereticornis with the runway.",2023,9,30,Australia,AU,Queensland,-27.823556,152.994085,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,13,Australia,AU,Queensland,-27.53001,153.103553,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2022,11,19,Australia,AU,Queensland,-27.568238,151.716233,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,The 'watched' one,2023,12,28,Australia,AU,Queensland,-27.527936,153.111292,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,FEMALE,"This is the first time this female has been observed here this year. It is the third baby she has had here in three years. She is in a non-native leopard tree, Libidibia ferrea. Unfortunately she is now blind in the left eye but otherwise she and her baby are healthy.",2022,10,12,Australia,AU,Queensland,-28.173704,152.907652,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,8,4,Australia,AU,Queensland,-27.526963,153.090689,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,8,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,11,12,Australia,AU,Queensland,-27.258693,152.045315,EPSG:4326 +HUMAN_OBSERVATION,Tracey Hinton,1,,,2020,5,5,Australia,AU,Victoria,-38.067713,144.039788,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,Sleeping in a brush box,2024,3,28,Australia,AU,Queensland,-27.555406,153.05922,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,12,23,Australia,AU,Queensland,-27.508655,153.080872,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2023,11,2,Australia,AU,Victoria,-36.992452,145.553979,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey,2024,8,3,Australia,AU,Queensland,-27.527206,153.09161,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,17,Australia,AU,Queensland,-27.530408,153.102898,EPSG:4326 +HUMAN_OBSERVATION,euromel,1,,,2024,5,14,Australia,AU,Victoria,-38.383101,145.122744,EPSG:4326 +HUMAN_OBSERVATION,bigfoot123,1,,,2023,12,24,Australia,AU,Victoria,-37.903559,147.740751,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Top of outside nursery,2023,10,30,Australia,AU,Queensland,-27.527357,153.091482,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2024,2,24,Australia,AU,New South Wales,-32.709553,152.060242,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2020,9,8,Australia,AU,Queensland,-22.632951,147.522653,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,8,22,Australia,AU,Queensland,-27.54951,153.05959,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Male in Tallowwood with female and Joey,2021,2,24,Australia,AU,Queensland,-27.550074,153.05297,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,2 koalas in same tree,2021,10,17,Australia,AU,Victoria,-37.587467,143.883848,EPSG:4326 +HUMAN_OBSERVATION,gingerdread,1,,,2020,4,6,Australia,AU,South Australia,-35.069155,138.653657,EPSG:4326 +HUMAN_OBSERVATION,out_and_about,1,,,2022,12,29,Australia,AU,Victoria,-38.227842,141.975447,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Injured. Vehicle collision. Later euthanised. Observed by Wendy Taylor. Submitted via msg.,2024,9,12,Australia,AU,Queensland,-26.24082,151.89653,EPSG:4326 +HUMAN_OBSERVATION,thebirdsites-com,1,,,2024,2,20,Australia,AU,Victoria,-38.831332,143.563493,EPSG:4326 +HUMAN_OBSERVATION,Konrad Szylar,1,,,2023,8,19,Australia,AU,New South Wales,-34.102225,150.821104,EPSG:4326 +HUMAN_OBSERVATION,Lesley Hardiman,1,,,2020,9,21,Australia,AU,Queensland,-27.49006,153.247936,EPSG:4326 +HUMAN_OBSERVATION,kaitlyncav,1,,,2022,11,11,Australia,AU,Queensland,-27.241127,152.178427,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2022,3,3,Australia,AU,Queensland,-27.514233,153.08209,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2024,10,1,Australia,AU,New South Wales,-34.745742,146.535295,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,12,18,Australia,AU,Victoria,-38.670995,146.164658,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,3,1,Australia,AU,Queensland,-27.529398,153.102671,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Brush Box,2024,6,24,Australia,AU,Queensland,-27.537468,153.055684,EPSG:4326 +HUMAN_OBSERVATION,teevs,1,,,2023,12,14,Australia,AU,South Australia,-35.036998,138.55626,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,Skinny male koala named Jampot taken to AZWH for treatment of Chlamydial conjunctivitis,2020,1,20,Australia,AU,Queensland,-26.363599,152.828705,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2021,10,21,Australia,AU,Queensland,-28.214142,152.86501,EPSG:4326 +HUMAN_OBSERVATION,tim_nickholds,1,,,2023,12,10,Australia,AU,Victoria,-37.763667,145.679665,EPSG:4326 +HUMAN_OBSERVATION,aynature,1,,,2024,9,24,Australia,AU,Queensland,-26.387868,153.03099,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2023,7,19,Australia,AU,South Australia,-35.154586,138.562638,EPSG:4326 +HUMAN_OBSERVATION,Tim Mares,1,,,2021,3,23,Australia,AU,South Australia,-34.936723,138.658247,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,2,16,Australia,AU,Queensland,-27.551041,153.057407,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag R ear - & joey,2022,12,29,Australia,AU,Queensland,-27.530139,153.103375,EPSG:4326 +HUMAN_OBSERVATION,wingspanner,1,,Mother and juvenile (photo 3) restng high in a tree.,2021,2,22,Australia,AU,New South Wales,-28.380633,153.5643,EPSG:4326 +HUMAN_OBSERVATION,ametcalf,1,,"Adult koala, no ear tags in tree. Nearby to an adult female koala, adult male koala and a young male koala.",2024,10,29,Australia,AU,Queensland,-27.287598,152.996612,EPSG:4326 +HUMAN_OBSERVATION,nunnery,1,,Mating Koalas,2021,12,4,Australia,AU,Queensland,-27.499896,153.22319,EPSG:4326 +HUMAN_OBSERVATION,michaelp28,1,,,2023,11,5,Australia,AU,Victoria,-38.202745,141.774895,EPSG:4326 +HUMAN_OBSERVATION,bimbimbi,1,,,2024,4,12,Australia,AU,Victoria,-38.408022,142.799667,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,11,2,Australia,AU,Queensland,-27.527433,153.091091,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to lower cav road car park,2023,11,14,Australia,AU,Queensland,-27.525454,153.090556,EPSG:4326 +HUMAN_OBSERVATION,ross_coupland,1,,,2024,5,21,Australia,AU,Queensland,-27.54404,153.055274,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,4,19,Australia,AU,South Australia,-35.00856,138.652505,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,MALE,Male koala rescued by M Butlin for TKWR and taken to RSPCA Wildlife Hospital Wacol,2023,11,5,Australia,AU,Queensland,-27.487004,152.067443,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,Male released after previous rescue,2020,7,12,Australia,AU,Queensland,-27.170528,152.988937,EPSG:4326 +HUMAN_OBSERVATION,Caruna,1,,,2023,11,30,Australia,AU,Victoria,-38.333708,142.356434,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,11,25,Australia,AU,Victoria,-38.354514,146.387401,EPSG:4326 +HUMAN_OBSERVATION,Sandrine,1,,IMG_2894,2022,10,18,Australia,AU,Queensland,-27.533553,152.82114,EPSG:4326 +HUMAN_OBSERVATION,julie,1,,,2024,6,14,Australia,AU,Queensland,-27.765534,153.147399,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,In Eucalyptus globulus subsp globulus,2020,6,10,Australia,AU,Victoria,-38.6712,146.163895,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Half Black Lip"" male, now the dominant male in this area. First seen here perhaps 2019. In small stringybark.",2024,2,2,Australia,AU,New South Wales,-30.520347,151.520217,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2020,3,21,Australia,AU,South Australia,-34.918518,138.532516,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,7,13,Australia,AU,Queensland,-27.512613,153.090885,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Young female koala who was rescued last Sunday as injured was finally caught by Friends of the Koala Taken into care at Currumbin Wildlife Hospital and then moved to FOK Lismore. Lost her pinkie. Has had an injury with a wound. Also anaemic. Named Ainslie Rose. Thanks to Ainslie for her work in the last week in monitoring and reporting. I just took the photos for identification.,2021,12,5,Australia,AU,New South Wales,-28.25509,153.378044,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland gully,2024,11,9,Australia,AU,Queensland,-27.5277,153.093581,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,12,1,Australia,AU,Victoria,-37.646493,143.955333,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,FEMALE,Injured Road Trauma Koala that required rescue - attended by Toowoomba Koala and Wildlife Rescue & Dalby Wildlife,2023,11,24,Australia,AU,Queensland,-27.302528,151.44601,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2022,8,25,Australia,AU,Queensland,-26.364389,153.013456,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,"Another koala in roadside tree, Eucalyptus tereticornis",2023,5,31,Australia,AU,Queensland,-27.948346,152.591251,EPSG:4326 +HUMAN_OBSERVATION,tanchen7,1,,,2022,9,24,Australia,AU,Queensland,-19.142249,146.831449,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,"Possible Mum, bBut wouldn’t show me her front???",2022,12,8,Australia,AU,Queensland,-27.545785,153.073828,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,13,Australia,AU,Queensland,-27.77425,151.551105,EPSG:4326 +HUMAN_OBSERVATION,dieselfraser,1,,Female and baby were in the tree for some of the morning. Both of them seemed healthy but got a bit of a fright and relocated when the dog squeaked her toy.,2022,11,30,Australia,AU,Victoria,-38.82519,145.999237,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.018122,138.656887,EPSG:4326 +HUMAN_OBSERVATION,kaneq,1,FEMALE,With baby,2022,11,3,Australia,AU,Victoria,-38.059561,141.798858,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,4,7,Australia,AU,Queensland,-27.510351,153.086801,EPSG:4326 +HUMAN_OBSERVATION,Nic Van Zyl,1,,,2024,7,14,Australia,AU,Victoria,-38.324844,142.365604,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male koala high in redgum alert and watching me. Neil,2022,11,25,Australia,AU,Victoria,-37.87881,144.317637,EPSG:4326 +HUMAN_OBSERVATION,Chase DeJarnett,1,,,2024,5,5,Australia,AU,Queensland,-19.125603,146.8685,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,,2024,11,24,Australia,AU,Victoria,-38.392203,142.836528,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Scat - collection for research on genetic diversity amongst local koala populations,2023,6,26,Australia,AU,Victoria,-37.601866,143.873232,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,Characteristic scratches in bark of Grey Gum,2022,11,12,Australia,AU,Queensland,-28.275592,152.768748,EPSG:4326 +HUMAN_OBSERVATION,luckychii,1,,"They were fighting, probably over territory",2023,4,28,Australia,AU,South Australia,-34.90672,138.708296,EPSG:4326 +HUMAN_OBSERVATION,mickshelton,1,FEMALE,With young on back,2021,7,24,Australia,AU,New South Wales,-28.385528,153.561824,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,15,Australia,AU,Queensland,-27.547668,153.058705,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,FEMALE,Koala in school or kindy grounds.,2023,1,26,Australia,AU,South Australia,-35.074108,138.587153,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,11,21,Australia,AU,New South Wales,-28.255426,153.37818,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2024,5,15,Australia,AU,Queensland,-26.363737,151.814892,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,11,Australia,AU,Queensland,-27.527446,153.110078,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,1,29,Australia,AU,Victoria,-38.671019,146.163716,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,To the left of woodland below Aldi gates car park,2024,3,10,Australia,AU,Queensland,-27.527119,153.093037,EPSG:4326 +HUMAN_OBSERVATION,lrathbone,1,,,2022,7,1,Australia,AU,Victoria,-37.203522,145.713267,EPSG:4326 +HUMAN_OBSERVATION,zac_hazza,1,,"Koala inside the track fence at Kippa ring station, we went back and notified the station master, good thing there’s no trains for the next 4 hours due to track work",2023,9,24,Australia,AU,Queensland,-27.225739,153.079965,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,11,6,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Chlamydia. Now in the care of Koala Rescue QLD. Observed by Wendy Taylor. Submitted via msg.,2023,12,16,Australia,AU,Queensland,-26.135635,151.774236,EPSG:4326 +HUMAN_OBSERVATION,Sarah Foote,1,,,2022,9,12,Australia,AU,South Australia,-35.707414,137.494527,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear,2023,10,13,Australia,AU,Queensland,-27.531659,153.105224,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,14,Australia,AU,Queensland,-27.413655,152.003464,EPSG:4326 +HUMAN_OBSERVATION,Michael Fox,1,,Mt Gravatt Conservation Reserve,2022,1,3,Australia,AU,Queensland,-27.546565,153.075488,EPSG:4326 +HUMAN_OBSERVATION,makhlakh,1,,,2023,4,24,Australia,AU,South Australia,-35.033193,138.62974,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,9,8,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,10,9,Australia,AU,Queensland,-27.530584,153.10487,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2020,1,24,Australia,AU,Queensland,-27.549146,153.059459,EPSG:4326 +HUMAN_OBSERVATION,Simon Gorta,1,,,2020,5,7,Australia,AU,New South Wales,-32.571858,151.799336,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,MALE,,2024,8,26,Australia,AU,New South Wales,-28.253992,153.376904,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Young in Tallowood,2020,10,21,Australia,AU,Queensland,-27.551366,153.057369,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,16,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,23,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,10,27,Australia,AU,South Australia,-34.876093,138.783633,EPSG:4326 +HUMAN_OBSERVATION,kittsw,1,,,2024,7,14,Australia,AU,South Australia,-34.873364,138.650914,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"This is Koala No 1. again, he is located in the tree in the centre of the photo, between the lines. I have taken a range of photos as want to continue being able to identify it. The single white spot on the right hind leg is clear again in these shots. It was feeding and moving so I was able to record a lot of angles and views for identification purposes. It was a cool overcast day.",2020,5,21,Australia,AU,New South Wales,-28.254181,153.377565,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Female. Healthy. Travelling on McConnell Way Mondure - toward Murgon/Hivesville intersection before taking a right into eucalyptus trees. Observed by Maddighan Taylor. Submitted by email.,2021,6,28,Australia,AU,Queensland,-26.159515,151.753819,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Scribbly Gum,2021,2,11,Australia,AU,Queensland,-27.550389,153.05984,EPSG:4326 +HUMAN_OBSERVATION,beepboop177,1,,,2023,7,6,Australia,AU,New South Wales,-30.4889,151.641983,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,21,Australia,AU,Queensland,-27.54386,153.071016,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,"Male koala ""Theo"" found high in an Angophera floribunda, a tree with plenty of leaves for shade in the hot day.",2023,11,1,Australia,AU,Queensland,-27.41265,152.003188,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Wisteria carpark Mother,2024,10,12,Australia,AU,Queensland,-27.525398,153.092194,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,7,13,Australia,AU,Victoria,-38.671391,146.163811,EPSG:4326 +HUMAN_OBSERVATION,ladymichele,1,,,2020,4,24,Australia,AU,South Australia,-35.015851,138.656491,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi & joey,2023,12,27,Australia,AU,Queensland,-27.529663,153.102784,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - not tagged. I call him Buster,2024,2,19,Australia,AU,Queensland,-27.531393,153.105521,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,,Actually 2 koalas in this image. Male and female. Nowendoc River,2022,11,18,Australia,AU,New South Wales,-31.540499,151.735621,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,24,Australia,AU,South Australia,-34.891224,138.722131,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,10,11,Australia,AU,Queensland,-27.153228,152.610458,EPSG:4326 +HUMAN_OBSERVATION,jaimek88,1,,Was found sitting by the road. No signs of disease or injury. Encouraged animal to move off road and climb tree.,2020,6,30,Australia,AU,Queensland,-28.020503,152.567367,EPSG:4326 +HUMAN_OBSERVATION,edmond496,1,,,2023,10,22,Australia,AU,South Australia,-34.89307,138.623017,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,4,13,Australia,AU,Queensland,-27.526937,153.090497,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Forest Red gum,2023,9,3,Australia,AU,Queensland,-27.532309,153.036756,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,"School Road, Kincora",2021,11,29,Australia,AU,Queensland,-27.811086,151.559369,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2024,7,20,Australia,AU,New South Wales,-33.076717,151.095486,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female. With Joey. Healthy. In E. microcorys (Tallowwood). Observed by Robyn Zackreson. Submitted via FB.,2024,6,30,Australia,AU,Queensland,-26.327914,151.743429,EPSG:4326 +HUMAN_OBSERVATION,Marianne Broug,1,,,2024,2,1,Australia,AU,South Australia,-35.018607,138.666144,EPSG:4326 +HUMAN_OBSERVATION,cathpount,1,,,2024,11,13,Australia,AU,Victoria,-38.28852,145.007855,EPSG:4326 +HUMAN_OBSERVATION,Zoë Davis,1,,,2023,8,1,Australia,AU,Victoria,-38.832435,143.514105,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,MALE,,2022,4,21,Australia,AU,Queensland,-28.092853,152.843489,EPSG:4326 +HUMAN_OBSERVATION,Darcy Whittaker,1,,,2024,3,5,Australia,AU,South Australia,-35.161663,138.830865,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,28,Australia,AU,Queensland,-27.526744,153.090859,EPSG:4326 +HUMAN_OBSERVATION,delanyd,1,,,2024,6,21,Australia,AU,Victoria,-37.66148,144.507492,EPSG:4326 +HUMAN_OBSERVATION,jenaoide,1,,Anakie Gorge walk,2024,7,31,Australia,AU,Victoria,-37.863889,144.266266,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,7,Australia,AU,Queensland,-27.528158,153.111493,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey,2024,10,12,Australia,AU,Queensland,-27.527169,153.091766,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear Funky eye?,2024,3,31,Australia,AU,Queensland,-27.527873,153.092968,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,5,Australia,AU,South Australia,-34.892933,138.721673,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,6,27,Australia,AU,South Australia,-34.97091,138.694645,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Female with joey,2024,2,5,Australia,AU,South Australia,-34.889239,138.73334,EPSG:4326 +HUMAN_OBSERVATION,muddy77,1,,,2023,11,16,Australia,AU,New South Wales,-34.150506,150.841977,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,11,Australia,AU,Queensland,-27.545741,153.07372,EPSG:4326 +HUMAN_OBSERVATION,pookies,1,,,2024,4,26,Australia,AU,Victoria,-37.519117,144.584092,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,4,22,Australia,AU,Queensland,-27.549373,153.049458,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,In a Tallowwood with a baby.,2023,8,7,Australia,AU,Queensland,-27.551228,153.057537,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,There is a male and female here as she is screaming at him but I can’t find her.,2023,12,4,Australia,AU,Queensland,-27.35795,152.074154,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,26,Australia,AU,South Australia,-34.892257,138.719699,EPSG:4326 +HUMAN_OBSERVATION,Sam,1,,,2024,7,27,Australia,AU,Queensland,-19.127443,146.869378,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2020,6,21,Australia,AU,Victoria,-37.918384,147.730466,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male high In Ironbark,2022,11,13,Australia,AU,Victoria,-37.881238,144.181133,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,11,20,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Mike and Cathy Beamish,1,,Strzelecki Koala.,2024,7,11,Australia,AU,Victoria,-38.360941,146.389818,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,2,10,Australia,AU,Queensland,-27.541002,153.068502,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Yellow tag 0709 left ear Male this is koala Lukey - Male - approx. 8 years old. Was tagged by RSPCA 8/2020 after he was brought in as believed to have been hit by a car on 80km road. Wasn't serious injury however as he was released very soon after intake.,2022,12,13,Australia,AU,Queensland,-27.542233,153.072544,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,27,Australia,AU,Queensland,-27.750292,151.570478,EPSG:4326 +HUMAN_OBSERVATION,dawnborchardt,1,,,2022,9,22,Australia,AU,South Australia,-35.146825,138.597596,EPSG:4326 +HUMAN_OBSERVATION,mikew65,1,,,2024,2,15,Australia,AU,South Australia,-34.831944,135.685833,EPSG:4326 +HUMAN_OBSERVATION,Glassmith,1,,,2020,1,4,Australia,AU,South Australia,-35.081484,138.643571,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,with joey,2020,5,9,Australia,AU,Queensland,-27.51056,153.085019,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Today.,2024,9,27,Australia,AU,Queensland,-27.25833,152.046593,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,,2021,12,13,Australia,AU,Queensland,-27.539933,153.076645,EPSG:4326 +HUMAN_OBSERVATION,caitlinr1403,1,,"Dirty bottom, under investigation. Known to be tagged and called Becky",2024,2,6,Australia,AU,Queensland,-27.529641,153.109641,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,,2023,10,10,Australia,AU,Queensland,-27.527331,153.102159,EPSG:4326 +HUMAN_OBSERVATION,SBERRY,1,,Just sitting on the road looking dazed. Wildlife rescuers on the way.,2021,6,30,Australia,AU,Victoria,-38.238742,145.246672,EPSG:4326 +HUMAN_OBSERVATION,thenatureprincipal,1,,,2022,6,12,Australia,AU,New South Wales,-31.464076,152.917527,EPSG:4326 +HUMAN_OBSERVATION,rhett_dodd,1,,,2024,5,14,Australia,AU,Queensland,-27.219938,153.063217,EPSG:4326 +HUMAN_OBSERVATION,Rachel Devlin,1,,,2023,9,11,Australia,AU,Victoria,-38.264419,145.046019,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,#1,2022,12,4,Australia,AU,Queensland,-27.541575,153.054509,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,Mum and baby,2021,9,26,Australia,AU,Queensland,-27.506681,153.084901,EPSG:4326 +HUMAN_OBSERVATION,tipetalaura,1,,,2020,11,8,Australia,AU,South Australia,-34.902855,138.702519,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Millie,2023,5,29,Australia,AU,Queensland,-27.527288,153.111324,EPSG:4326 +HUMAN_OBSERVATION,Irene Proebsting,1,,,2022,4,9,Australia,AU,Victoria,-38.35779,146.388712,EPSG:4326 +HUMAN_OBSERVATION,esperly,1,,Molly,2023,12,11,Australia,AU,Queensland,-27.291637,152.987103,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,"Image captured whilst on a spotlighting circuit, varying between 1.5 km to 3 km depending on track conditions, through a 20 ha block of predominantly Sedgy Riparian Woodland (EVC 198) in the Wombat State Forest, Lyonville.",2023,11,24,Australia,AU,Victoria,-37.390609,144.265738,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey Maisie,2023,11,4,Australia,AU,Queensland,-27.527218,153.09139,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,31,Australia,AU,South Australia,-34.890902,138.721846,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.383479,145.297226,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In wisteria car park - possibly Cindy Crawford,2023,7,17,Australia,AU,Queensland,-27.525089,153.092448,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Next to fire pump at Aldi gates Female with pouch visible,2024,8,4,Australia,AU,Queensland,-27.526665,153.093167,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Adult female with back young,2023,11,13,Australia,AU,Queensland,-27.912917,153.321855,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,5,Australia,AU,South Australia,-34.890582,138.729886,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,1,7,Australia,AU,Queensland,-27.512431,153.083076,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,9,10,Australia,AU,Queensland,-27.527031,153.091873,EPSG:4326 +HUMAN_OBSERVATION,alison-jane,1,,,2023,1,24,Australia,AU,Victoria,-38.347825,145.284072,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.92529,147.729797,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,29,Australia,AU,Queensland,-27.545985,153.074407,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,25,Australia,AU,Queensland,-27.528883,153.106565,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female with joey. Healthy. Observed by Mat Culter. Submitted by Wendy Taylor via msg.,2024,11,6,Australia,AU,Queensland,-26.612672,151.784614,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,3,Australia,AU,South Australia,-34.890043,138.731365,EPSG:4326 +HUMAN_OBSERVATION,Diana,1,,,2021,1,8,Australia,AU,South Australia,-34.864781,138.659301,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,,2024,6,17,Australia,AU,Queensland,-27.527735,153.110183,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,11,4,Australia,AU,Queensland,-27.561757,152.106642,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,3,Australia,AU,South Australia,-34.890501,138.733292,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,3,6,Australia,AU,South Australia,-34.957168,138.694192,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,3,30,Australia,AU,Queensland,-27.530192,153.103414,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,5,26,Australia,AU,Queensland,-27.527182,153.092068,EPSG:4326 +HUMAN_OBSERVATION,Michael Tervo,1,,,2024,8,24,Australia,AU,Queensland,-27.509905,153.086961,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,6,6,Australia,AU,Queensland,-27.51052,153.086788,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,24,Australia,AU,South Australia,-34.862781,138.726649,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,Getting comfortable,2020,2,15,Australia,AU,South Australia,-34.958048,138.697095,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Likely male, mum and bub a few branches over in the same tree",2024,1,25,Australia,AU,Queensland,-27.711497,152.727097,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,9,27,Australia,AU,New South Wales,-28.255003,153.37838,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Memerambi Springs (nursery). Submitted by Denise Shaw via email.,2022,9,18,Australia,AU,Queensland,-26.44714,151.804635,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2023,8,21,Australia,AU,Queensland,-27.567089,153.101548,EPSG:4326 +HUMAN_OBSERVATION,petersimple,1,,,2021,10,11,Australia,AU,Queensland,-27.433545,153.543546,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Possibly mum & joey,2024,10,9,Australia,AU,Queensland,-27.527999,153.103829,EPSG:4326 +HUMAN_OBSERVATION,brits_walking,1,,,2024,6,9,Australia,AU,Queensland,-27.542198,153.052153,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Poor pictures. E.microcorys,2021,1,30,Australia,AU,Queensland,-27.544825,153.053287,EPSG:4326 +HUMAN_OBSERVATION,Owen Gale,1,,,2021,1,13,Australia,AU,South Australia,-34.80465,138.736169,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2023,12,19,Australia,AU,South Australia,-34.875637,135.673462,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to woodland area Mother and joey same tree different branches,2023,11,14,Australia,AU,Queensland,-27.527424,153.092215,EPSG:4326 +HUMAN_OBSERVATION,Sequoia Lewien,1,,,2024,2,29,Australia,AU,Victoria,-37.371184,144.659422,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport and Rec woodland,2023,6,4,Australia,AU,Queensland,-27.525675,153.092095,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Concourse trees near admin building and cleaners donga,2023,7,6,Australia,AU,Queensland,-27.526965,153.091731,EPSG:4326 +HUMAN_OBSERVATION,Karl Vernes,1,,,2021,11,27,Australia,AU,New South Wales,-30.484945,151.645937,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,22,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,6,Australia,AU,Queensland,-27.529707,153.109772,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2023,9,9,Australia,AU,Queensland,-27.527878,153.093118,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,8,18,Australia,AU,Queensland,-27.526993,153.092006,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,Same tree as yesterday in observation: https://inaturalist.ala.org.au/observations/225019109 Probably same Koala.,2024,6,26,Australia,AU,Victoria,-38.481706,142.975047,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,FEMALE,Mum and her very young joey,2023,9,1,Australia,AU,Queensland,-27.510668,153.087001,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,21,Australia,AU,Queensland,-27.542417,153.068532,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,5,18,Australia,AU,New South Wales,-28.260125,153.40074,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,11,4,Australia,AU,Queensland,-27.56611,152.111889,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,4,25,Australia,AU,New South Wales,-33.076336,151.09497,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear - possibly the boy known as Buster,2024,2,23,Australia,AU,Queensland,-27.530443,153.103477,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Male in same tree as mother and joey End of wisteria cat park Jacob Jnr,2024,9,7,Australia,AU,Queensland,-27.525417,153.092294,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,3,Australia,AU,South Australia,-34.890223,138.73339,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2022,3,17,Australia,AU,Victoria,-37.553717,149.753403,EPSG:4326 +HUMAN_OBSERVATION,sinornithosaurus,1,,,2023,11,10,Australia,AU,Victoria,-38.05925,141.824708,EPSG:4326 +HUMAN_OBSERVATION,Daniel J. Aguirre Howes,1,,,2024,8,29,Australia,AU,Queensland,-19.128652,146.868089,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,16,Australia,AU,Queensland,-27.526038,153.090476,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2023,10,14,Australia,AU,New South Wales,-31.444133,152.903409,EPSG:4326 +HUMAN_OBSERVATION,parigi,1,FEMALE,,2022,12,13,Australia,AU,Queensland,-27.400617,153.437706,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,5,20,Australia,AU,Queensland,-27.905602,153.3714,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,7,21,Australia,AU,Queensland,-27.547429,153.073711,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block,2024,9,28,Australia,AU,Queensland,-27.526591,153.090899,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - Millie,2023,7,7,Australia,AU,Queensland,-27.527212,153.111237,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,"Koala very low in Casuarina equisetifolia, on the very edge of beach and vegetation. Didn't look unwell happily.",2022,7,4,Australia,AU,Queensland,-27.391796,153.445394,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,4,Australia,AU,Queensland,-27.545958,153.074253,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,MALE,,2024,9,5,Australia,AU,Queensland,-27.358635,152.074653,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,1,Australia,AU,South Australia,-34.891514,138.718905,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,5,26,Australia,AU,Queensland,-27.526776,153.091054,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,"Reportedly via SMS by Nathan Willis, Groomsville resident",2021,11,25,Australia,AU,Queensland,-27.335288,151.946228,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,15,Australia,AU,Queensland,-27.528289,153.112882,EPSG:4326 +HUMAN_OBSERVATION,joelclotas,1,,Koalas can be found in these trees 80% of the time.,2024,1,19,Australia,AU,Queensland,-27.292966,152.989662,EPSG:4326 +HUMAN_OBSERVATION,Michael Keogh,1,MALE,,2020,12,15,Australia,AU,Victoria,-37.221781,148.26415,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,13,Australia,AU,Queensland,-27.544827,153.071713,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown tree but early in adjacent Grey Gum,2020,2,25,Australia,AU,Queensland,-27.538863,153.037304,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,,2023,2,9,Australia,AU,Queensland,-27.551516,153.063894,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,This is the koala I saw last week who I called Pine Rivers Koala Care about it. She looked much happier today.,2023,11,12,Australia,AU,Queensland,-27.284494,152.999874,EPSG:4326 +HUMAN_OBSERVATION,Rod Lowther,1,,,2024,3,17,Australia,AU,Victoria,-38.481547,143.915347,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,"Local koala who is regularly seen in the trees on Lawnton Road, Lawnton. I think it might be a mum with her joey as in the first photo you can sort of see a pouch bump.",2023,7,16,Australia,AU,Queensland,-27.28422,153.000194,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,8,18,Australia,AU,Queensland,-27.550963,153.056171,EPSG:4326 +HUMAN_OBSERVATION,wildlifewally,1,MALE,,2022,10,13,Australia,AU,New South Wales,-28.268897,153.392503,EPSG:4326 +HUMAN_OBSERVATION,Kye Turnbull,1,,,2024,11,5,Australia,AU,Queensland,-27.163742,152.823724,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,4,24,Australia,AU,Queensland,-27.275488,152.939347,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,31,Australia,AU,South Australia,-34.888338,138.72735,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,2,5,Australia,AU,New South Wales,-28.254661,153.377622,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,3,Australia,AU,Queensland,-27.527971,153.10964,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via FB (South Burnett Koala Watch),2023,11,24,Australia,AU,Queensland,-26.155069,151.749856,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,2,26,Australia,AU,Queensland,-27.530261,153.103475,EPSG:4326 +HUMAN_OBSERVATION,Corin,1,,Breeding Pair ( female ),2021,11,19,Australia,AU,Queensland,-27.777949,152.988314,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,"Tallowwood, recently independent",2021,2,1,Australia,AU,Queensland,-27.551255,153.057599,EPSG:4326 +HUMAN_OBSERVATION,enekoazkue,1,,,2023,12,5,Australia,AU,New South Wales,-28.637288,153.629416,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2024,10,21,Australia,AU,New South Wales,-34.775345,146.584992,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,5,3,Australia,AU,New South Wales,-33.076236,151.095231,EPSG:4326 +HUMAN_OBSERVATION,Bradlp10,1,,,2024,9,29,Australia,AU,South Australia,-34.875271,138.731308,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,20,Australia,AU,Queensland,-26.161431,151.733466,EPSG:4326 +HUMAN_OBSERVATION,lynburleigh,1,,,2023,3,4,Australia,AU,Victoria,-36.937701,145.476536,EPSG:4326 +HUMAN_OBSERVATION,Hanneke Nooren,1,MALE,LCA3085,2021,2,6,Australia,AU,Queensland,-27.525208,152.248789,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Opposite tennis courts,2024,10,6,Australia,AU,Queensland,-27.52514,153.093303,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,14,Australia,AU,Queensland,-27.527784,153.11093,EPSG:4326 +HUMAN_OBSERVATION,kev-davies-ormeau,1,,,2020,4,16,Australia,AU,Queensland,-27.927723,153.349434,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,9,22,Australia,AU,Queensland,-27.527842,153.093431,EPSG:4326 +HUMAN_OBSERVATION,cintajac,1,,,2021,4,11,Australia,AU,South Australia,-34.838759,138.745577,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.924297,147.729811,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2020,3,23,Australia,AU,Victoria,-38.801346,143.484105,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Stringy bark Euc. unsure of species.,2021,6,3,Australia,AU,Queensland,-27.747252,153.151952,EPSG:4326 +HUMAN_OBSERVATION,lesgalbraith,1,,,2022,12,27,Australia,AU,New South Wales,-28.575906,153.410344,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,E.territicornis,2024,5,25,Australia,AU,Queensland,-27.532106,153.037342,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,11,27,Australia,AU,Queensland,-27.53034,153.103246,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,In fork of tree,2022,12,14,Australia,AU,Queensland,-28.211452,152.866015,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,10,17,Australia,AU,Queensland,-27.568758,152.102478,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,1,28,Australia,AU,Queensland,-27.595147,151.895645,EPSG:4326 +HUMAN_OBSERVATION,jamwin,1,,,2023,1,10,Australia,AU,South Australia,-34.935325,138.657013,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,,2023,2,17,Australia,AU,Queensland,-27.551636,153.057579,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe nursery,2023,5,19,Australia,AU,Queensland,-27.52739,153.091399,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,11,4,Australia,AU,South Australia,-34.892408,138.714792,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,2,28,Australia,AU,New South Wales,-29.857205,150.585921,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Cindy Crawford and joey Tristania & Wisteria Woodland Joey on separate branch,2023,11,4,Australia,AU,Queensland,-27.524659,153.092982,EPSG:4326 +HUMAN_OBSERVATION,Leah Burns,1,,,2022,7,13,Australia,AU,Queensland,-27.551582,153.043469,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,12,Australia,AU,South Australia,-34.889028,138.734687,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Mother and joey Rear entrance of nursery,2023,10,7,Australia,AU,Queensland,-27.527215,153.091965,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,21,Australia,AU,South Australia,-34.890675,138.722231,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,In Woodland gully mating tree,2024,10,12,Australia,AU,Queensland,-27.527395,153.092404,EPSG:4326 +HUMAN_OBSERVATION,Ruben,1,,I believe the tree is E. viminalis,2022,8,2,Australia,AU,New South Wales,-30.451467,151.65898,EPSG:4326 +HUMAN_OBSERVATION,cleanlymoss,1,,,2022,12,24,Australia,AU,Queensland,-27.600052,151.895396,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,22,Australia,AU,Queensland,-26.141015,151.761361,EPSG:4326 +HUMAN_OBSERVATION,koadog,1,,,2023,11,10,Australia,AU,Queensland,-28.157039,153.123038,EPSG:4326 +HUMAN_OBSERVATION,sophiaciaglia,1,,,2024,7,26,Australia,AU,Victoria,-37.920838,147.728919,EPSG:4326 +HUMAN_OBSERVATION,Alasdair McAlpine,1,,,2024,8,11,Australia,AU,Queensland,-27.362549,151.64591,EPSG:4326 +HUMAN_OBSERVATION,David Jones,1,,,2024,10,3,Australia,AU,New South Wales,-34.069561,150.835922,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,,2024,3,19,Australia,AU,Queensland,-27.263278,152.050156,EPSG:4326 +HUMAN_OBSERVATION,Stephen Csurhes,1,,,2024,8,22,Australia,AU,Queensland,-27.400813,153.43767,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,10,13,Australia,AU,Queensland,-26.400859,152.651478,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Adult female & joey. Healthy. Observed Mondure Wheatlands Rd, Mondure by Wendy Taylor. Submitted by Denise Shaw via email.",2023,10,28,Australia,AU,Queensland,-26.178987,151.770084,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,6,14,Australia,AU,Queensland,-27.397195,152.611109,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,12,17,Australia,AU,Queensland,-27.510395,153.082856,EPSG:4326 +HUMAN_OBSERVATION,emmafitzy,1,,,2022,4,14,Australia,AU,Victoria,-38.824622,143.527953,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2020,6,29,Australia,AU,New South Wales,-28.257882,153.401162,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,2,3,Australia,AU,Queensland,-27.551279,153.057607,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3137 Female with back-riding young (Photo: Bob Brown),2022,10,1,Australia,AU,Queensland,-27.53118,152.1833,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Seen on the 17th hole of the golf course,2024,2,3,Australia,AU,New South Wales,-30.994364,150.242331,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,10,6,Australia,AU,Queensland,-27.672787,151.659347,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Female. Healthy. Pouched Joey. Observed by Malcom Sprys. Oakey Creek property. Malcom believes there is an established colony there.,2022,5,23,Australia,AU,Queensland,-25.632782,151.623501,EPSG:4326 +HUMAN_OBSERVATION,EcoNeighbour_,1,,,2023,5,9,Australia,AU,Victoria,-38.317737,142.363516,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2024,4,10,Australia,AU,Queensland,-27.529949,153.103759,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Millie,2023,6,5,Australia,AU,Queensland,-27.527244,153.111205,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,3,8,Australia,AU,Queensland,-27.587479,151.732376,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Male,2021,10,20,Australia,AU,Victoria,-38.671045,146.163742,EPSG:4326 +HUMAN_OBSERVATION,elizabeth_21,1,,,2022,11,24,Australia,AU,Queensland,-27.35903,152.072604,EPSG:4326 +HUMAN_OBSERVATION,Aaron McGenniskin,1,,,2021,1,19,Australia,AU,Victoria,-37.834389,145.597255,EPSG:4326 +HUMAN_OBSERVATION,Dr Elodie Camprasse,1,,,2022,12,23,Australia,AU,Victoria,-38.318329,142.363769,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2023,7,12,Australia,AU,Queensland,-27.551903,153.05638,EPSG:4326 +HUMAN_OBSERVATION,Kelly Smith,1,,,2022,12,24,Australia,AU,Victoria,-37.56122,149.759322,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Soap tree,2022,4,4,Australia,AU,Queensland,-27.544316,153.056958,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2023,1,10,Australia,AU,Victoria,-38.133067,145.264468,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,9,7,Australia,AU,Queensland,-27.52715,153.090695,EPSG:4326 +HUMAN_OBSERVATION,Anne-Marie Griffin,1,,koala male vocalising at night,2023,12,28,Australia,AU,New South Wales,-33.756284,149.410596,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2023,10,14,Australia,AU,New South Wales,-31.443808,152.904328,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,11,14,Australia,AU,Queensland,-27.239487,152.57007,EPSG:4326 +HUMAN_OBSERVATION,Athas,1,,Koala,2021,4,10,Australia,AU,South Australia,-34.929478,138.689808,EPSG:4326 +HUMAN_OBSERVATION,Thor-Rune Hansen,1,,,2022,11,25,Australia,AU,Victoria,-38.831436,143.520096,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,7,2,Australia,AU,Queensland,-27.510981,153.086643,EPSG:4326 +HUMAN_OBSERVATION,suelee,1,,,2023,9,29,Australia,AU,Queensland,-27.322882,152.913111,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,9,5,Australia,AU,Queensland,-27.546828,153.074519,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,25,Australia,AU,Queensland,-27.599187,151.539872,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,,2024,9,15,Australia,AU,New South Wales,-34.753741,146.586287,EPSG:4326 +HUMAN_OBSERVATION,Jo Burrows,1,,,2020,6,7,Australia,AU,Queensland,-27.2261,153.072456,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.774447,143.61142,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey in Brush Box. They were eating the foliage at one point,2020,10,29,Australia,AU,Queensland,-27.548835,153.051511,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,8,18,Australia,AU,Queensland,-27.525603,153.092296,EPSG:4326 +HUMAN_OBSERVATION,Roger MacRaild,1,,,2024,9,13,Australia,AU,Victoria,-37.671452,144.023036,EPSG:4326 +HUMAN_OBSERVATION,iesha,1,,Kennett River koala,2023,8,11,Australia,AU,Victoria,-38.668317,143.860858,EPSG:4326 +HUMAN_OBSERVATION,suewise,1,,,2021,3,13,Australia,AU,South Australia,-35.35882,138.755033,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,8,24,Australia,AU,Queensland,-27.52767,153.093561,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,4,Australia,AU,Queensland,-27.545184,153.072206,EPSG:4326 +HUMAN_OBSERVATION,Hanneke Nooren,1,,,2023,10,6,Australia,AU,Queensland,-27.503323,152.247776,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lower wisteria car park,2024,8,17,Australia,AU,Queensland,-27.525121,153.092407,EPSG:4326 +HUMAN_OBSERVATION,maxicole,1,,,2024,9,4,Australia,AU,Queensland,-27.530534,153.103649,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Large and healthy, likely male. No tag visible",2024,9,7,Australia,AU,Queensland,-27.541287,153.073472,EPSG:4326 +HUMAN_OBSERVATION,Dennis Hocking,1,,,2021,12,5,Australia,AU,Victoria,-37.95056,144.383097,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2020,4,1,Australia,AU,Queensland,-27.508017,153.115906,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,FEMALE,,2023,11,19,Australia,AU,New South Wales,-34.745675,146.537492,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,31,Australia,AU,Queensland,-27.529744,153.105569,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2021,6,27,Australia,AU,South Australia,-34.861768,138.667232,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,9,Australia,AU,South Australia,-34.889658,138.731302,EPSG:4326 +HUMAN_OBSERVATION,mgh073,1,,,2024,9,19,Australia,AU,Queensland,-19.128186,146.867797,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Mum & joey. Initially right at the top of the tree, later came down to about 2/3rds & could clearly see the joey",2023,7,29,Australia,AU,Queensland,-27.528015,153.111499,EPSG:4326 +HUMAN_OBSERVATION,j_gregurke,1,,"Koala resting in Messmate Stringybark, Eucalypytus obliqua along Union Jack Creek",2021,4,9,Australia,AU,Victoria,-37.641346,143.900997,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Front of TAFE Cavendish Road,2024,11,5,Australia,AU,Queensland,-27.526021,153.089663,EPSG:4326 +HUMAN_OBSERVATION,kkkarlyyy,1,,,2023,1,4,Australia,AU,Victoria,-38.827513,143.582855,EPSG:4326 +HUMAN_OBSERVATION,michab444,1,,,2024,10,16,Australia,AU,Victoria,-38.346397,141.574403,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female. Unhealthy. Severe conjunctivitis. Rescued by Koala Rescue Qld. Submitted by Wendy Taylor via msg. Was euthanised. Low body score and cysts. 7th November 2024.,2024,11,2,Australia,AU,Queensland,-26.617172,151.994128,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2023,11,8,Australia,AU,New South Wales,-33.14805,151.073528,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,large koala in trees to left of lemon scented gum,2020,3,30,Australia,AU,New South Wales,-28.25405,153.377208,EPSG:4326 +HUMAN_OBSERVATION,Gawain,1,,,2024,7,1,Australia,AU,Victoria,-38.380437,145.313501,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Mum and joey.,2023,9,24,Australia,AU,Queensland,-27.284447,153.000827,EPSG:4326 +HUMAN_OBSERVATION,Ian Melbourne,1,,,2023,7,29,Australia,AU,Queensland,-27.906698,153.382365,EPSG:4326 +HUMAN_OBSERVATION,dieselfraser,1,,Koala and baby,2022,10,13,Australia,AU,Victoria,-38.825259,145.999541,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,6,2,Australia,AU,Queensland,-27.525003,153.093335,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to cleaners donga,2024,8,10,Australia,AU,Queensland,-27.526944,153.09173,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,"Koala spotted by Nadia, resident at Surrey Road in Goodna. This is not the same koala as the one seen further down Devon Drive a couple of days later",2024,7,5,Australia,AU,Queensland,-27.625214,152.901734,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,10,15,Australia,AU,Queensland,-27.4508,152.644395,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Unknown Sex. Adult. Healthy. Behind Henry street and end of Agnes Street Kingaroy. Observed by Mark Dowell submitted via email.,2022,4,20,Australia,AU,Queensland,-26.529859,151.835414,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,10,13,Australia,AU,Queensland,-27.538915,153.054875,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,11,10,Australia,AU,Queensland,-26.489686,151.817949,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2021,8,11,Australia,AU,New South Wales,-28.269226,153.393184,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,7,3,Australia,AU,Queensland,-27.527389,153.092295,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,9,2,Australia,AU,Victoria,-38.671173,146.163882,EPSG:4326 +HUMAN_OBSERVATION,Liz,1,,,2021,1,3,Australia,AU,South Australia,-34.965542,138.704352,EPSG:4326 +HUMAN_OBSERVATION,jennh79,1,,,2023,7,2,Australia,AU,Queensland,-27.779097,153.131653,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,5,27,Australia,AU,New South Wales,-28.26037,153.401825,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,11,6,Australia,AU,Queensland,-27.525279,153.111871,EPSG:4326 +HUMAN_OBSERVATION,Laura Thomas,1,,,2023,12,21,Australia,AU,South Australia,-35.042914,138.604868,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"Same tree, Grey Gum Eucalyptus propinqua, following day also.",2022,5,7,Australia,AU,Queensland,-27.510538,153.069939,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,5,4,Australia,AU,Queensland,-27.329983,152.612397,EPSG:4326 +HUMAN_OBSERVATION,Scott Warner,1,,,2023,7,17,Australia,AU,Queensland,-27.29762,152.227627,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,23,Australia,AU,Queensland,-27.5287,153.108811,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,24,Australia,AU,South Australia,-34.891602,138.721549,EPSG:4326 +HUMAN_OBSERVATION,Daniel Townend,1,,,2023,10,12,Australia,AU,Queensland,-27.620859,153.164069,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,8,9,Australia,AU,Queensland,-26.155358,151.750039,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Muma and baby,2022,9,29,Australia,AU,Queensland,-27.542482,153.068013,EPSG:4326 +HUMAN_OBSERVATION,Simon Nicholas,1,,,2023,10,5,Australia,AU,Queensland,-28.100778,153.450212,EPSG:4326 +HUMAN_OBSERVATION,casssiee,1,,,2024,10,7,Australia,AU,Queensland,-27.222883,153.067733,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,10,1,Australia,AU,Victoria,-37.528399,143.905901,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,7,6,Australia,AU,Queensland,-27.527113,153.091782,EPSG:4326 +HUMAN_OBSERVATION,tomfeild,1,,,2022,11,2,Australia,AU,Victoria,-38.754787,143.555573,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,9,29,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Irene Proebsting,1,,,2022,4,9,Australia,AU,Victoria,-38.35779,146.388712,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,,2020,12,13,Australia,AU,Victoria,-38.176277,145.133413,EPSG:4326 +HUMAN_OBSERVATION,Karen Roberts,1,,,2023,8,10,Australia,AU,Queensland,-27.525448,152.856039,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,Camera no. 3 Sclerophyll notes: top left corner,2021,9,5,Australia,AU,Queensland,-27.700883,152.082283,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey - no sign of mum (she was there yesterday!),2024,3,9,Australia,AU,Queensland,-27.530073,153.103402,EPSG:4326 +HUMAN_OBSERVATION,alecjames,1,,,2021,9,15,Australia,AU,New South Wales,-34.058141,150.876091,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank baby,2022,10,4,Australia,AU,Queensland,-27.545761,153.073601,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,12,27,Australia,AU,Queensland,-27.527131,153.091272,EPSG:4326 +HUMAN_OBSERVATION,mtbarneylodge,1,,,2022,11,23,Australia,AU,Queensland,-28.227243,152.767099,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,7,12,Australia,AU,Queensland,-27.53003,153.111257,EPSG:4326 +HUMAN_OBSERVATION,wombatplace,1,,Sighting and photos (c) david19. Field Notes - Not a very good photo (sorry). A mammal that sits in the tree eating leaves and sleeping all day. Made a very distinct grunting noise,2021,8,14,Australia,AU,South Australia,-35.049855,138.70987,EPSG:4326 +HUMAN_OBSERVATION,Chris Munson,1,,Seen in Warring Road Reserve,2023,11,20,Australia,AU,New South Wales,-34.098984,150.810766,EPSG:4326 +HUMAN_OBSERVATION,genslattery,1,,,2021,9,25,Australia,AU,Victoria,-38.64301,146.240866,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Taken with mobile phone by Selina.,2022,6,6,Australia,AU,New South Wales,-28.275825,153.393973,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult Female with signs of Chlamydia. Observed Bev Joiner-Swift. Submitted via Messenger. Picked up by Koala Rescue at 1:15 am 09/03/2022,2022,3,8,Australia,AU,Queensland,-26.209689,151.930263,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,FEMALE,In Eucalyptus viminalis.,2024,5,1,Australia,AU,Victoria,-38.292731,143.220114,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Koala feeding in Eucalyptus grandis, Flooded Gum tree.",2022,3,31,Australia,AU,New South Wales,-28.260145,153.402028,EPSG:4326 +HUMAN_OBSERVATION,dianapascoe,1,,"Koala and joey, Mt Gravatt Outlook Reserve, Acacia Track",2022,12,28,Australia,AU,Queensland,-27.541691,153.069562,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,18,Australia,AU,Queensland,-27.525802,153.090739,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Koala seen in same tree that Mum and joey were in.,2023,8,6,Australia,AU,Queensland,-27.284418,153.000913,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,"Probably female. A much smaller koala (also uploaded) was in the same tree, one branch over.",2023,1,1,Australia,AU,Queensland,-27.597105,151.88986,EPSG:4326 +HUMAN_OBSERVATION,Tricia Stewart,1,,X2 😍,2020,10,12,Australia,AU,Victoria,-38.126775,145.272888,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,5,22,Australia,AU,South Australia,-34.85849,138.656913,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" dominant male in area. Haven't seen him recently but have heard him and received reports of him on neighbouring blocks (45 Baker and Adina Road). In stringybark.",2022,2,12,Australia,AU,New South Wales,-30.520709,151.521026,EPSG:4326 +HUMAN_OBSERVATION,Darcy Whittaker,1,,,2021,7,17,Australia,AU,South Australia,-35.890888,137.12735,EPSG:4326 +HUMAN_OBSERVATION,littlellama,1,,,2021,3,20,Australia,AU,South Australia,-35.006489,138.647918,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,2,27,Australia,AU,Queensland,-27.527837,153.111668,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,1,Australia,AU,South Australia,-34.890042,138.732485,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,6,Australia,AU,South Australia,-34.890552,138.722306,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,1,28,Australia,AU,Queensland,-27.528232,153.093002,EPSG:4326 +HUMAN_OBSERVATION,pelicanfan,1,FEMALE,female with large joey,2022,11,24,Australia,AU,Queensland,-27.268226,152.05827,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank muma,2022,10,10,Australia,AU,Queensland,-27.545619,153.073217,EPSG:4326 +HUMAN_OBSERVATION,wombatplace,1,,Sighting and photos (c) david19.,2020,12,17,Australia,AU,South Australia,-35.067428,138.702042,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,8,30,Australia,AU,New South Wales,-33.076692,151.09575,EPSG:4326 +HUMAN_OBSERVATION,Snow Dennis,1,,This is the third sighting in this area in the past 12 months,2023,10,13,Australia,AU,South Australia,-35.189452,139.012411,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Koala observation by Peter.,2022,10,13,Australia,AU,New South Wales,-28.266533,153.395287,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,,2024,10,29,Australia,AU,Queensland,-27.506911,153.084944,EPSG:4326 +HUMAN_OBSERVATION,johnhamp,1,,My wife took this on an early morning walk in the Vernon State Forest. Have been walking there each day for 20 years and have never seen a koala before,2022,9,3,Australia,AU,Queensland,-25.306194,152.677774,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,8,4,Australia,AU,Queensland,-27.527888,153.093572,EPSG:4326 +HUMAN_OBSERVATION,Julian,1,,,2020,1,17,Australia,AU,Queensland,-19.126092,146.868242,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Red tag RIGHT ear - probably Cindy,2023,3,20,Australia,AU,Queensland,-27.527213,153.107994,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted by Denise Shaw via email,2023,8,24,Australia,AU,Queensland,-26.159092,151.733477,EPSG:4326 +HUMAN_OBSERVATION,Paul Davill,1,,,2020,11,24,Australia,AU,South Australia,-35.114626,138.529154,EPSG:4326 +HUMAN_OBSERVATION,Greg Hall,1,,,2023,5,15,Australia,AU,New South Wales,-28.891319,153.230757,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,9,Australia,AU,Queensland,-27.531679,153.105237,EPSG:4326 +HUMAN_OBSERVATION,hasinta,1,,,2023,4,8,Australia,AU,Queensland,-27.596718,151.893913,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Audrey and Matteo,2024,10,23,Australia,AU,Queensland,-27.5271,153.091497,EPSG:4326 +HUMAN_OBSERVATION,Sam S,1,,Two koalas in this manna gum,2023,3,12,Australia,AU,Victoria,-37.013548,145.45757,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear - & joey,2023,1,12,Australia,AU,Queensland,-27.531179,153.104413,EPSG:4326 +HUMAN_OBSERVATION,Hayley P,1,,,2024,9,21,Australia,AU,Queensland,-27.137108,152.511453,EPSG:4326 +HUMAN_OBSERVATION,Trevor Rix,1,,,2021,3,6,Australia,AU,Victoria,-36.159482,146.641443,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,,"Female koala, send 90% of her time in this tree, known to locals.",2021,10,19,Australia,AU,South Australia,-35.049954,138.573255,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,still shot from video.,2023,1,28,Australia,AU,Queensland,-27.507945,153.067149,EPSG:4326 +HUMAN_OBSERVATION,Colin and Wendy Cook,1,,,2023,8,7,Australia,AU,Victoria,-37.838253,144.16845,EPSG:4326 +HUMAN_OBSERVATION,tasgreta,1,,Juvenile koala,2021,2,14,Australia,AU,Victoria,-38.390898,145.118483,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,5,Australia,AU,Queensland,-27.545518,153.073932,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,3,1,Australia,AU,Queensland,-27.554153,153.074379,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,16,Australia,AU,Queensland,-27.525707,153.092138,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,In mum’s tree Mother and joey,2024,9,15,Australia,AU,Queensland,-27.526334,153.091034,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,6,Australia,AU,Queensland,-27.505698,153.078115,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,10,11,Australia,AU,Queensland,-27.55065,153.06106,EPSG:4326 +HUMAN_OBSERVATION,danilomas,1,,"Species identified during ecology survey conducted by Upscale Carbon. Survey led by Principal Ecologist, Sarah Tune and Ecologist, Dani Lomas.",2024,11,7,Australia,AU,Queensland,-27.233698,152.599626,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,InTallowood,2020,2,7,Australia,AU,Queensland,-27.55114,153.058152,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2023,1,17,Australia,AU,Queensland,-28.103895,151.257999,EPSG:4326 +HUMAN_OBSERVATION,Jenny Possingham,1,,,2024,10,8,Australia,AU,South Australia,-34.933265,138.702959,EPSG:4326 +HUMAN_OBSERVATION,patrix1,1,,Koala appeared to be eating or licking the flowers of Red Ironbark (Eucalyptus sideroxylon),2024,9,13,Australia,AU,Queensland,-28.917105,151.584142,EPSG:4326 +HUMAN_OBSERVATION,Rusty,1,,,2022,2,5,Australia,AU,South Australia,-35.007847,138.637529,EPSG:4326 +HUMAN_OBSERVATION,W. Hodgson,1,,,2022,12,27,Australia,AU,Queensland,-27.453231,153.451042,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,7,8,Australia,AU,Queensland,-27.703251,153.192106,EPSG:4326 +HUMAN_OBSERVATION,Deb,1,,,2021,1,30,Australia,AU,South Australia,-34.183907,140.773091,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near E block,2023,9,27,Australia,AU,Queensland,-27.526003,153.090342,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Hunter Camera,2024,9,20,Australia,AU,New South Wales,-33.147037,151.077198,EPSG:4326 +HUMAN_OBSERVATION,maxicole,1,,,2023,3,5,Australia,AU,Queensland,-27.529326,153.104181,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey Ironbark,2021,12,3,Australia,AU,Queensland,-27.547627,153.059271,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to woodland,2023,11,26,Australia,AU,Queensland,-27.527308,153.092248,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,8,17,Australia,AU,Queensland,-27.795228,151.561462,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near cafeteria car park,2023,12,8,Australia,AU,Queensland,-27.526947,153.092468,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Eucalyptus microcorys,2021,1,30,Australia,AU,Queensland,-27.54444,153.056803,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,12,Australia,AU,South Australia,-34.89,138.723055,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,17,Australia,AU,Queensland,-27.530072,153.104996,EPSG:4326 +HUMAN_OBSERVATION,sandpmunroe,1,,,2022,11,12,Australia,AU,Queensland,-27.492372,153.42993,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,,2022,5,5,Australia,AU,Queensland,-27.526147,153.1026,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Unknown sex. Adult. Healthy. Observed by Shaun Heirdsfield and reported via email.,2022,4,19,Australia,AU,Queensland,-26.595115,151.80715,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood. Same koala as yesterday in Sydney Blue Gum/ Flooded Gum,2020,2,19,Australia,AU,Queensland,-27.550303,153.061729,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In picnic area near e block Maybe Jacob Jnr,2024,5,5,Australia,AU,Queensland,-27.525812,153.090716,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2023,11,30,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,pangolino,1,,,2024,2,6,Australia,AU,Victoria,-38.768839,143.508848,EPSG:4326 +HUMAN_OBSERVATION,scorpio83,1,,P. c. adustus.,2022,9,24,Australia,AU,Queensland,-28.917009,151.584793,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Walked from one tree to another 550am,2023,3,15,Australia,AU,Queensland,-27.525646,153.092473,EPSG:4326 +HUMAN_OBSERVATION,shortman,1,,,2024,2,29,Australia,AU,Victoria,-38.318367,142.363358,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,8,19,Australia,AU,Queensland,-27.554745,153.075361,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,11,12,Australia,AU,Queensland,-27.722147,151.530137,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,12,16,Australia,AU,Victoria,-38.357472,146.389571,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,Bottom koala,2024,9,24,Australia,AU,Queensland,-27.224047,153.06955,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,10,18,Australia,AU,Queensland,-27.529047,153.115075,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Up a Tallowwood,2023,8,21,Australia,AU,Queensland,-27.633214,153.22761,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,9,6,Australia,AU,Queensland,-26.369964,152.833351,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Kaylene Belford. Submitted by Denise Shaw.,2022,9,10,Australia,AU,Queensland,-26.58522,151.744513,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Tags both ears - think female, larger ? green tag RIGHT ear",2023,4,14,Australia,AU,Queensland,-27.529788,153.109965,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,10,2,Australia,AU,Queensland,-26.139193,151.802967,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,7,27,Australia,AU,Queensland,-27.525732,153.092037,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,"2x Kulmaren Grove Koalas, Karana Downs, West Brisbane. Photo credit: Neisha",2021,9,11,Australia,AU,Queensland,-27.53646,152.812257,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - tag (white, cream) LEFT ear & small metal UQ tag RIGHT ear - could be Bandit",2023,6,2,Australia,AU,Queensland,-27.529794,153.110383,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2024,10,8,Australia,AU,Queensland,-26.328128,148.453338,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Koalas x2 Private Farm - jondaryan via Oakey. Witness B.Patrick for Toowoomba Koala & Wildlife Rescue,2022,11,15,Australia,AU,Queensland,-27.392546,151.626126,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,3,26,Australia,AU,New South Wales,-33.076203,151.095047,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2022,1,23,Australia,AU,South Australia,-35.154956,138.577542,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,,2024,1,13,Australia,AU,Queensland,-27.5317,153.099642,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,9,17,Australia,AU,Queensland,-27.726533,151.53212,EPSG:4326 +HUMAN_OBSERVATION,nicolecm22,1,,,2021,5,2,Australia,AU,South Australia,-35.08766,138.689223,EPSG:4326 +HUMAN_OBSERVATION,Paul George,1,,,2023,9,15,Australia,AU,Victoria,-37.920792,147.727921,EPSG:4326 +HUMAN_OBSERVATION,lizgould,1,,,2023,8,15,Australia,AU,Queensland,-28.073308,152.427047,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,29,Australia,AU,Queensland,-27.812786,151.553658,EPSG:4326 +HUMAN_OBSERVATION,cleanlymoss,1,,,2024,4,2,Australia,AU,Queensland,-27.600052,151.895396,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,Naturally I forgot to put an SD card in the SLR,2020,11,8,Australia,AU,Queensland,-27.230097,153.077675,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,4,1,Australia,AU,Queensland,-26.184133,151.692816,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,In a Eucalyptus tereticornis,2024,10,25,Australia,AU,Queensland,-28.164891,152.60693,EPSG:4326 +HUMAN_OBSERVATION,zoelle33,1,,,2022,9,19,Australia,AU,Queensland,-28.121431,153.422258,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,7,Australia,AU,Queensland,-27.527417,153.091019,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,MALE,,2024,2,6,Australia,AU,New South Wales,-33.076695,151.095122,EPSG:4326 +HUMAN_OBSERVATION,nyxaero,1,,,2023,4,11,Australia,AU,South Australia,-35.121542,138.508858,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,,2024,4,2,Australia,AU,Queensland,-27.497717,153.399673,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,8,Australia,AU,Queensland,-27.529025,153.109019,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,8,26,Australia,AU,Queensland,-27.509098,153.083774,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,13,Australia,AU,Queensland,-27.52994,153.103651,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,4,Australia,AU,South Australia,-34.891444,138.713597,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Male in small stringybark.,2020,1,6,Australia,AU,New South Wales,-30.519709,151.519675,EPSG:4326 +HUMAN_OBSERVATION,Corin,1,,Breeding Pair ( male ),2021,11,19,Australia,AU,Queensland,-27.778026,152.988242,EPSG:4326 +HUMAN_OBSERVATION,caitlinr1403,1,,"?early cystitis, awaiting health check",2024,2,29,Australia,AU,Queensland,-27.520455,153.092116,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,14,Australia,AU,Queensland,-27.545709,153.073275,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,FEMALE,Mum and joey. Mum has clean rump and eyes: no signs of clamidia. In Blue gum (E. tereticornis) with DBH ~35cm.,2021,4,27,Australia,AU,Queensland,-27.454497,152.403972,EPSG:4326 +HUMAN_OBSERVATION,Wil,1,MALE,Mature Male.,2023,9,1,Australia,AU,Queensland,-18.484028,144.112431,EPSG:4326 +HUMAN_OBSERVATION,funbudgiefriend,1,,Mother and baby,2023,1,2,Australia,AU,Queensland,-27.543753,153.070339,EPSG:4326 +HUMAN_OBSERVATION,Jo Burrows,1,,,2023,7,28,Australia,AU,Queensland,-27.493733,153.402775,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery rear entrance gates Mother and joey,2023,11,3,Australia,AU,Queensland,-27.527207,153.09195,EPSG:4326 +HUMAN_OBSERVATION,trav_j,1,,,2022,8,11,Australia,AU,Victoria,-38.24624,145.213491,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2024,3,28,Australia,AU,South Australia,-35.027478,138.5717,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,7,Australia,AU,South Australia,-34.887471,138.734112,EPSG:4326 +HUMAN_OBSERVATION,nealed,1,,,2023,3,1,Australia,AU,South Australia,-35.247078,138.828637,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Lophostemon suaveolans.,2021,3,29,Australia,AU,Queensland,-27.545612,153.05805,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2022,12,27,Australia,AU,Queensland,-27.597899,151.891435,EPSG:4326 +HUMAN_OBSERVATION,emmafitzy,1,,,2020,7,28,Australia,AU,Queensland,-27.91437,153.374506,EPSG:4326 +HUMAN_OBSERVATION,cleanlymoss,1,,,2024,1,5,Australia,AU,Queensland,-27.600052,151.895396,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,,2024,10,25,Australia,AU,Queensland,-27.528565,153.103724,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,11,5,Australia,AU,Victoria,-37.587456,143.883811,EPSG:4326 +HUMAN_OBSERVATION,nbhighfields,1,,,2022,12,29,Australia,AU,Queensland,-27.446471,151.955934,EPSG:4326 +HUMAN_OBSERVATION,Minhyeuk Lee,1,,,2024,11,23,Australia,AU,Victoria,-38.763436,143.60557,EPSG:4326 +HUMAN_OBSERVATION,zoemae90,1,,,2023,9,26,Australia,AU,Queensland,-26.785652,151.112829,EPSG:4326 +HUMAN_OBSERVATION,leqb,1,,,2024,3,15,Australia,AU,Queensland,-19.137747,146.863442,EPSG:4326 +HUMAN_OBSERVATION,kenty_8881,1,,,2022,9,24,Australia,AU,South Australia,-35.616872,137.351853,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,Still to dark to see animal and if there might have been 2.,2022,7,3,Australia,AU,Queensland,-27.510472,153.070025,EPSG:4326 +HUMAN_OBSERVATION,dugie,1,,"At the base of a E. deanei, much larger than a typical possum scat (probably 3-4cm long). Consisted of plant matter - no fur, bone or exoskeleton visible. Wallabia bicolor is also in the area, but the scats from them that I’m familiar with are rounder.",2024,5,28,Australia,AU,New South Wales,-33.681672,150.540405,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,No visible ear tags.,2023,10,2,Australia,AU,Queensland,-27.510324,153.086145,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Koala spotted in a grey gum near the main footpath in Ric Nattrass Environmental Park,2024,10,29,Australia,AU,Queensland,-27.622257,152.90142,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,11,27,Australia,AU,Victoria,-38.67138,146.164089,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,10,2,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,katiec2022,1,,,2022,11,25,Australia,AU,Queensland,-27.292703,152.989644,EPSG:4326 +HUMAN_OBSERVATION,John Daw,1,,,2022,3,24,Australia,AU,South Australia,-35.814727,137.462576,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,"Found dead unfortunately. Male, no sign of wounds, or damage from foxes, etc. In rigor mortis, so dead not too long ago. Possibly same male as seen several days ago during high winds - near same tree. Been pretty windy lately 🙁 Probably the same koala as this sighting https://www.inaturalist.org/observations/55011345",2020,8,11,Australia,AU,Victoria,-38.671234,146.164339,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,1,28,Australia,AU,Victoria,-38.67071,146.162193,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2024,1,21,Australia,AU,Queensland,-27.358453,152.074565,EPSG:4326 +HUMAN_OBSERVATION,genslattery,1,,,2021,12,19,Australia,AU,Victoria,-38.598474,146.296814,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,MALE,"Mature male with what appeared to be only one eye (left eye area only showed pink/red, but didn't appear to be puffy, so may be old injury). Had dirty bum but not sure if wet at the time. Sitting ~5m up a multi-stemmed mature Eucalyptus tereticornis (blue gum) by side of Atkinson Dam Road. Gum had dozens of little red flying foxes in it, and was part of a larger roost of many thousands. Was easy to approach as I approach from 'bad' eye side, and bat noise obscured the sound of my steps. I reported him to RSPCA in case missing eye was a current injury, and because dirty bum implies he had clamidia. They didn't come on the day, and he was gone by the time they were able to come.",2021,1,15,Australia,AU,Queensland,-27.420866,152.455094,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,9,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,5,17,Australia,AU,Queensland,-27.551026,153.057848,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,23,Australia,AU,South Australia,-34.888534,138.733742,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - white tag LEFT ear - Bandit,2024,5,29,Australia,AU,Queensland,-27.527893,153.11183,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - green tag LEFT ear - Joe, but known as Bozo",2024,10,16,Australia,AU,Queensland,-27.526952,153.107733,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2024,7,6,Australia,AU,Queensland,-27.284701,153.000366,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2023,10,16,Australia,AU,Queensland,-27.527647,153.110671,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,10,28,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,13,Australia,AU,Queensland,-26.197039,151.898826,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,4,Australia,AU,Queensland,-27.52699,153.108696,EPSG:4326 +HUMAN_OBSERVATION,sneaker1,1,,,2022,9,15,Australia,AU,Victoria,-37.98038,145.598083,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2023,8,20,Australia,AU,New South Wales,-33.159047,151.235925,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Believe this is a male. In rain and fog so poor visibility.,2020,12,13,Australia,AU,New South Wales,-28.25416,153.377584,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,12,29,Australia,AU,New South Wales,-34.72017,146.472808,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Melaleuca quinquenervia,2021,7,12,Australia,AU,Queensland,-27.551314,153.058539,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Maisie released back into mum’s tree near E block,2024,4,16,Australia,AU,Queensland,-27.526359,153.09102,EPSG:4326 +HUMAN_OBSERVATION,Daniel Manzur,1,,,2023,2,11,Australia,AU,Victoria,-38.666462,143.858818,EPSG:4326 +HUMAN_OBSERVATION,miriamrose123,1,,,2023,9,26,Australia,AU,Victoria,-38.631853,143.77903,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,2,Australia,AU,Queensland,-27.551584,153.056856,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2022,2,19,Australia,AU,Victoria,-37.922068,147.72865,EPSG:4326 +HUMAN_OBSERVATION,alandoughty,1,,,2023,1,23,Australia,AU,Victoria,-36.287705,146.667983,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,High in tree inside nursery gates on woodland side - near green water tank,2023,7,15,Australia,AU,Queensland,-27.527267,153.092016,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,6,6,Australia,AU,Queensland,-27.510004,153.084939,EPSG:4326 +HUMAN_OBSERVATION,David,1,,Drinking rainwater from the tree trunk :),2022,7,31,Australia,AU,South Australia,-34.878111,138.714994,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2021,12,24,Australia,AU,New South Wales,-34.101894,150.824981,EPSG:4326 +HUMAN_OBSERVATION,Craig Morley,1,,,2023,1,12,Australia,AU,Victoria,-38.721208,143.711267,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2021,12,18,Australia,AU,Queensland,-28.102879,151.25995,EPSG:4326 +HUMAN_OBSERVATION,Pete Petinatos,1,,,2022,12,5,Australia,AU,Victoria,-38.318308,142.364362,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In woodland - backyard with the string lights,2023,8,5,Australia,AU,Queensland,-27.528418,153.093038,EPSG:4326 +HUMAN_OBSERVATION,donnamareetomkinson,1,,I'm also posting photo's of the Koala in the tree,2023,9,9,Australia,AU,Queensland,-26.16097,151.97502,EPSG:4326 +HUMAN_OBSERVATION,mattc111,1,,,2023,10,3,Australia,AU,Queensland,-27.527085,153.108309,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2024,9,28,Australia,AU,Queensland,-27.332813,151.933975,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,On the edge of the park next to road. Up a Tallowood tree,2020,9,21,Australia,AU,Queensland,-27.515177,153.079065,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi & joey,2023,12,29,Australia,AU,Queensland,-27.529559,153.102653,EPSG:4326 +HUMAN_OBSERVATION,lrathbone,1,,,2020,11,11,Australia,AU,Victoria,-37.926814,147.723711,EPSG:4326 +HUMAN_OBSERVATION,bankside106,1,,,2021,12,18,Australia,AU,Queensland,-27.544507,153.046321,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,24,Australia,AU,South Australia,-34.892678,138.72267,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,15,Australia,AU,Queensland,-27.545399,153.058334,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear # not visible - known as Buster,2024,4,1,Australia,AU,Queensland,-27.53054,153.104637,EPSG:4326 +HUMAN_OBSERVATION,gigi133,1,,In Eucalyptus tereticornis.,2022,3,8,Australia,AU,New South Wales,-28.959125,153.394289,EPSG:4326 +HUMAN_OBSERVATION,hfairbairn,1,,,2021,4,27,Australia,AU,South Australia,-34.877049,138.649819,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,10,9,Australia,AU,South Australia,-34.890879,138.731057,EPSG:4326 +HUMAN_OBSERVATION,mzf,1,,,2021,11,11,Australia,AU,Queensland,-27.555823,153.07655,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,3,6,Australia,AU,New South Wales,-28.257077,153.401875,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,3,Australia,AU,South Australia,-34.892548,138.715476,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,D block,2024,11,24,Australia,AU,Queensland,-27.526849,153.091504,EPSG:4326 +HUMAN_OBSERVATION,ripperbewdymate,1,,,2024,10,13,Australia,AU,New South Wales,-34.752945,146.548476,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,2 koalas in one tree,2020,10,26,Australia,AU,Victoria,-37.615364,143.884611,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Ainslie called me to photograph this female and joey, high up in a tallowwood tree above their driveway. She had a scratch before cuddling up with joey. Joey has an all black nose?",2020,9,30,Australia,AU,New South Wales,-28.255295,153.378125,EPSG:4326 +HUMAN_OBSERVATION,Jason Ramsay,1,,Scats found under Eucalyptus microcorys.,2023,4,20,Australia,AU,Queensland,-27.375381,152.916168,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,"Site: K1 Tree no: 22 Tree DBH: 26.897 Sclerophyll notes: No time was recorded for when scats were found - 1pm has been put for all scat observations due to there being no records, all scats were collected on the same day at different sites Ecologist assessed",2021,8,25,Australia,AU,Queensland,-27.69505,152.0869,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,21,Australia,AU,South Australia,-34.892977,138.715811,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,FEMALE,,2023,11,22,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2021,11,22,Australia,AU,Victoria,-38.38472,145.308016,EPSG:4326 +HUMAN_OBSERVATION,Geoffrey Cox,1,,,2021,4,16,Australia,AU,South Australia,-35.154475,138.563547,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,15,Australia,AU,Queensland,-27.528779,153.112665,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - Joe but known as 'Bozo',2023,9,4,Australia,AU,Queensland,-27.526876,153.107664,EPSG:4326 +HUMAN_OBSERVATION,dianadavey,1,,,2021,7,27,Australia,AU,Queensland,-19.123665,146.871368,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Observed by Maddighan Taylor. Submitted via email.,2022,9,5,Australia,AU,Queensland,-26.155358,151.750039,EPSG:4326 +HUMAN_OBSERVATION,alancrawford,1,,,2023,12,16,Australia,AU,Victoria,-37.321258,144.136353,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - green tag LEFT ear - Joe, but known as Bozo",2024,11,9,Australia,AU,Queensland,-27.526922,153.108367,EPSG:4326 +HUMAN_OBSERVATION,tashramsey,1,,,2024,7,7,Australia,AU,Queensland,-27.278888,152.965928,EPSG:4326 +HUMAN_OBSERVATION,caitlin,1,,two koalas in a gum tree next to the dog park,2023,11,8,Australia,AU,Queensland,-27.239769,152.42151,EPSG:4326 +HUMAN_OBSERVATION,stefan_hattingh,1,,Chelsea Steet Bushcare,2024,4,23,Australia,AU,Queensland,-27.222861,153.068358,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,7,11,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,candidclacyclix,1,MALE,,2024,9,7,Australia,AU,Queensland,-27.701138,153.192527,EPSG:4326 +HUMAN_OBSERVATION,Ralph Foster,1,,,2020,11,14,Australia,AU,South Australia,-35.020756,138.76599,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,12,Australia,AU,Queensland,-27.529365,153.109565,EPSG:4326 +HUMAN_OBSERVATION,kkrbv,1,,,2022,6,26,Australia,AU,Queensland,-27.523868,153.072645,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,9,1,Australia,AU,Queensland,-27.515938,153.08368,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,8,17,Australia,AU,Queensland,-27.526976,153.090658,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,9,23,Australia,AU,Victoria,-37.619578,143.893306,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,29,Australia,AU,Queensland,-27.529686,153.104059,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,7,7,Australia,AU,Queensland,-27.52729,153.091538,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,7,26,Australia,AU,New South Wales,-28.258107,153.400549,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,23,Australia,AU,Queensland,-27.528392,153.10343,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,10,17,Australia,AU,Queensland,-27.701124,153.189646,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,17,Australia,AU,South Australia,-34.892174,138.718481,EPSG:4326 +HUMAN_OBSERVATION,hkrenske,1,,Koala wedged in fork of tree,2023,9,25,Australia,AU,Queensland,-27.563016,151.985783,EPSG:4326 +HUMAN_OBSERVATION,detritivor,1,,,2023,1,7,Australia,AU,Queensland,-26.814913,152.813638,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,2,5,Australia,AU,Queensland,-27.551116,153.057753,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,8,23,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,,2024,9,1,Australia,AU,Queensland,-27.510472,153.070025,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,appeared young and healthy,2022,5,17,Australia,AU,Victoria,-37.633949,143.878276,EPSG:4326 +HUMAN_OBSERVATION,snowsquizy,1,,,2024,4,1,Australia,AU,New South Wales,-34.12862,150.98178,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Reconyx HF2,2023,2,27,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Mother & Joey - rescue,2020,5,3,Australia,AU,Victoria,-37.627285,143.91346,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland middle,2023,12,27,Australia,AU,Queensland,-27.528091,153.092846,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,6,23,Australia,AU,Queensland,-27.551622,153.059638,EPSG:4326 +HUMAN_OBSERVATION,porkytama,1,,,2023,12,30,Australia,AU,Victoria,-37.795353,144.287686,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,8,28,Australia,AU,Victoria,-37.661556,143.880769,EPSG:4326 +HUMAN_OBSERVATION,Friends of Parks Queensland,1,,,2024,9,3,Australia,AU,Queensland,-26.26825,152.834336,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,3,6,Australia,AU,Queensland,-27.551835,153.057863,EPSG:4326 +HUMAN_OBSERVATION,eanthony,1,,"Koala eating young leaves of an old Eucalyptus nicholli tree at 3:30pm on wet, grey cold day. 9.2 degrees outside.",2022,6,8,Australia,AU,Victoria,-38.487808,146.203803,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,large koala in top of lemon scented gum,2020,3,29,Australia,AU,New South Wales,-28.25405,153.377208,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Stringybark,2020,8,6,Australia,AU,Queensland,-27.539301,153.05308,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,1,22,Australia,AU,Queensland,-27.551041,153.057874,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,"cnr Keene and School Roads, conjunctivitus",2021,11,29,Australia,AU,Queensland,-27.813543,151.559033,EPSG:4326 +HUMAN_OBSERVATION,Sam Colgan,1,,,2021,3,30,Australia,AU,South Australia,-35.224507,138.519599,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Hannah Sturgess. Forwarded by messenger.,2021,11,26,Australia,AU,Queensland,-25.623632,151.610627,EPSG:4326 +HUMAN_OBSERVATION,inatdavid,1,,,2022,9,16,Australia,AU,New South Wales,-32.387195,151.959167,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Young adult female koala with cystitis,2023,11,7,Australia,AU,Queensland,-27.937965,153.369967,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,"Site: K1 Tree no: 16 Tree DBH: 25.010 Sclerophyll notes: No time was recorded for when scats were found - 1pm has been put for all scat observations due to there being no records, all scats were collected on the same day at different sites Ecologist assessed",2021,8,25,Australia,AU,Queensland,-27.695383,152.08715,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,4,13,Australia,AU,Queensland,-27.527171,153.090867,EPSG:4326 +HUMAN_OBSERVATION,Alex,1,,Hunter Camera,2024,7,14,Australia,AU,Queensland,-26.14881,152.86575,EPSG:4326 +HUMAN_OBSERVATION,alannahrussell,1,,,2022,10,15,Australia,AU,Queensland,-26.816867,152.943663,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,2/2 koalas running together,2023,9,24,Australia,AU,Victoria,-37.029093,145.463228,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Female with joey,2024,2,5,Australia,AU,South Australia,-34.886557,138.733755,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,FEMALE,,2023,8,24,Australia,AU,New South Wales,-29.651211,150.83155,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,12,1,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,ozlee65,1,,,2023,12,8,Australia,AU,Queensland,-27.91365,153.325064,EPSG:4326 +HUMAN_OBSERVATION,frase4days,1,,,2024,10,9,Australia,AU,Victoria,-38.380755,142.814728,EPSG:4326 +HUMAN_OBSERVATION,stragu,1,,,2020,8,22,Australia,AU,Queensland,-27.430789,153.528767,EPSG:4326 +HUMAN_OBSERVATION,martinkopp,1,,,2023,12,3,Australia,AU,New South Wales,-29.779553,151.335186,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey gum,2021,4,28,Australia,AU,Queensland,-27.534404,153.061874,EPSG:4326 +HUMAN_OBSERVATION,victoria2000,1,,Fourth koala spotted. Sleeping.,2023,4,25,Australia,AU,Queensland,-27.911478,153.372558,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,3,2,Australia,AU,Queensland,-27.526939,153.090986,EPSG:4326 +HUMAN_OBSERVATION,masonvisser7,1,,,2024,9,22,Australia,AU,Queensland,-27.403776,153.440766,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,"Photo credit: Joanne, Karana Downs and Mt Crosby Residents Anstead Bushland Reserve",2020,4,25,Australia,AU,Queensland,-27.542516,152.859615,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown tree,2020,4,21,Australia,AU,Queensland,-27.547033,153.058399,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,MALE,Vocalising.,2024,6,27,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,InTallowwood,2020,9,3,Australia,AU,Queensland,-27.549063,153.051991,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - white tag LEFT ear - Bandit,2023,8,19,Australia,AU,Queensland,-27.529041,153.111949,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,MALE,"Male koala in tree along Lawnton Road, Lawnton.",2023,7,23,Australia,AU,Queensland,-27.284706,153.001134,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2021,12,4,Australia,AU,New South Wales,-33.144458,151.091356,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery rear entrance,2023,11,18,Australia,AU,Queensland,-27.527143,153.09199,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"large male koala we have seen before. He crossed the road, started on one tree then looked at another, came down and went across and headed up the tree.",2020,10,29,Australia,AU,New South Wales,-28.252385,153.375685,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,10,7,Australia,AU,Queensland,-26.494998,152.582256,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland,2024,11,9,Australia,AU,Queensland,-27.527649,153.092208,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey,2024,9,7,Australia,AU,Queensland,-27.527125,153.091489,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,21,Australia,AU,South Australia,-34.890156,138.729931,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to woodland,2024,1,16,Australia,AU,Queensland,-27.527346,153.092268,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,3,Australia,AU,Queensland,-27.526755,153.107527,EPSG:4326 +HUMAN_OBSERVATION,mgh073,1,,,2024,9,19,Australia,AU,Queensland,-19.124939,146.86972,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland gully,2024,3,16,Australia,AU,Queensland,-27.527558,153.092864,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,7,1,Australia,AU,New South Wales,-28.254077,153.377492,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala scat under young Eucalyptus tereticornis.,2023,8,13,Australia,AU,Queensland,-28.164286,152.606861,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,25,Australia,AU,Queensland,-27.693521,151.567505,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,29,Australia,AU,Queensland,-27.528787,153.10918,EPSG:4326 +HUMAN_OBSERVATION,Alasdair McAlpine,1,,,2024,8,10,Australia,AU,Queensland,-27.496292,153.399307,EPSG:4326 +HUMAN_OBSERVATION,Hanna Clupea,1,,,2020,2,28,Australia,AU,Queensland,-27.46862,153.4255,EPSG:4326 +HUMAN_OBSERVATION,bcsjtenisonwoods,1,,,2020,3,17,Australia,AU,Victoria,-36.285812,146.87487,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,1,Australia,AU,Queensland,-27.529814,153.111374,EPSG:4326 +HUMAN_OBSERVATION,Ed Parker,1,,"This individual, named Matilda, was released at Pooh Corner Bushland Reserve on 26-Sep-2022. Observed on 20-Aug-2024 with her joey.",2024,8,20,Australia,AU,Queensland,-27.57316,152.93211,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Rescue,2021,10,4,Australia,AU,Queensland,-27.56567,152.451885,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,,2024,4,3,Australia,AU,Queensland,-27.510814,153.07025,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,"Bad photo, but she is a regular at this location",2022,11,1,Australia,AU,Queensland,-28.102933,151.260788,EPSG:4326 +HUMAN_OBSERVATION,jarscott,1,,,2023,11,26,Australia,AU,New South Wales,-31.470397,152.907378,EPSG:4326 +HUMAN_OBSERVATION,johjesse,1,,,2024,3,25,Australia,AU,Queensland,-27.299223,152.041584,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,11,3,Australia,AU,South Australia,-34.892459,138.722536,EPSG:4326 +HUMAN_OBSERVATION,Sean Buckley,1,,,2023,12,21,Australia,AU,South Australia,-35.003905,138.657846,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,,,2021,10,3,Australia,AU,Queensland,-27.467544,152.3852,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Hit by vehicle. Dead. Observed by Wendy Taylor. Submitted via msg.,2023,8,22,Australia,AU,Queensland,-26.720226,150.67257,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,6,23,Australia,AU,Queensland,-27.5243,153.093069,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,31,Australia,AU,South Australia,-34.888441,138.726814,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,10,19,Australia,AU,Queensland,-27.530035,153.10517,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2023,10,13,Australia,AU,Queensland,-27.529462,153.103222,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland entrance Male- yellow tag left ear - starts #122?,2024,1,26,Australia,AU,Queensland,-27.52729,153.092308,EPSG:4326 +HUMAN_OBSERVATION,James Peake,1,,Up in large ringbarked eucalyptus.,2021,7,23,Australia,AU,Victoria,-38.140026,145.275094,EPSG:4326 +HUMAN_OBSERVATION,kittsw,1,,,2022,5,9,Australia,AU,South Australia,-34.880447,138.64806,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,2,4,Australia,AU,New South Wales,-28.254577,153.377472,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland - three koalas close together in three trees,2024,1,16,Australia,AU,Queensland,-27.527819,153.092362,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2024,1,22,Australia,AU,Queensland,-27.551026,153.057763,EPSG:4326 +HUMAN_OBSERVATION,Goshi,1,,,2023,12,8,Australia,AU,Victoria,-38.75948,143.277747,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,11,23,Australia,AU,Queensland,-27.258325,152.045239,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2021,1,6,Australia,AU,South Australia,-34.879345,138.730047,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,9,12,Australia,AU,Queensland,-27.823444,152.994017,EPSG:4326 +HUMAN_OBSERVATION,rordale,1,,Regular siting of two koalas in this spot,2021,11,23,Australia,AU,Queensland,-27.261942,152.063872,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,FEMALE,Hard to hear but female koala screaming,2023,12,4,Australia,AU,Queensland,-27.358152,152.074182,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Unhealthy. Observed by Kay Walker. Submitted via FB. Rescued 07.08.2024 and diagnosed with Chlamydia.,2024,8,6,Australia,AU,Queensland,-26.853361,152.102574,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,9,28,Australia,AU,Queensland,-27.37647,151.770813,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,2,23,Australia,AU,Queensland,-27.551075,153.057809,EPSG:4326 +HUMAN_OBSERVATION,horrorpunkkid,1,,,2023,3,12,Australia,AU,Victoria,-37.922528,147.73137,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Juvenile. Female. Without mother and dehydrated. Provided to a Wildlife carer. Observed by Robyn White. Submitted via FB.,2024,2,1,Australia,AU,Queensland,-26.648594,151.041858,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown,2020,6,23,Australia,AU,Queensland,-27.546077,153.058375,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,11,Australia,AU,Queensland,-27.525755,153.090654,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Mum with joey asleep.,2021,10,10,Australia,AU,New South Wales,-28.257657,153.402161,EPSG:4326 +HUMAN_OBSERVATION,thomas_____,1,,,2020,1,3,Australia,AU,Queensland,-27.282989,152.986188,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,,2024,5,9,Australia,AU,Queensland,-27.54896,153.059484,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Maisie and joey Mum’s trees,2023,10,1,Australia,AU,Queensland,-27.526488,153.090966,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,In ironbark Eucalyptus siderophloia. Koala count 1 observer 24 minutes,2023,10,14,Australia,AU,Queensland,-27.823121,152.993756,EPSG:4326 +HUMAN_OBSERVATION,fiona_murdoch,1,,Recorded by Antoinette Birkenbeil,2020,5,29,Australia,AU,Victoria,-37.077676,144.296902,EPSG:4326 +HUMAN_OBSERVATION,bertbohosouth,1,,,2024,9,12,Australia,AU,Victoria,-36.816137,145.74492,EPSG:4326 +HUMAN_OBSERVATION,sarayoung,1,,,2020,7,18,Australia,AU,Queensland,-27.38914,151.681985,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Three koalas in one tree. As I was walking towards the tree there was a koala staring straight at me. Photo is blurry but no more than 5 metres away from me.,2023,10,4,Australia,AU,Queensland,-27.283762,152.999342,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,In E tereticornis on lower dam wall - below big dam.,2024,10,21,Australia,AU,Queensland,-27.329217,151.93373,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,"Young Adult, possibly male, runny feces. Observed by Shaun Heirdsfield in residential backyard. Submitted via email. Local Koala rescue contacts provided to discuss the health of this koala further.",2022,7,31,Australia,AU,Queensland,-26.584528,151.808335,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,11,Australia,AU,Queensland,-27.544081,153.070421,EPSG:4326 +HUMAN_OBSERVATION,BushLook,1,,"Interestingly, sheltering low down in a Blackwood on a hot afternoon (30+ degrees",2024,1,12,Australia,AU,Victoria,-37.64138,143.900605,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2022,4,9,Australia,AU,New South Wales,-28.25445,153.377566,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown,2020,3,25,Australia,AU,Queensland,-27.551282,153.057657,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania and Wisteria Woodland - just in behind back of second house near fence Very high up,2023,7,22,Australia,AU,Queensland,-27.524322,153.093033,EPSG:4326 +HUMAN_OBSERVATION,Rachel Devlin,1,,In Eucalyptus viminalis subsp. Pryoriana,2024,1,5,Australia,AU,Victoria,-38.26398,145.051193,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Koala markings. FoN survey Tarkeeth1,2023,10,8,Australia,AU,New South Wales,-30.494854,152.913872,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,14,Australia,AU,Queensland,-27.526611,153.103181,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Koala markings. FoN Moyles Rd East survey 1,2023,10,22,Australia,AU,New South Wales,-30.533724,153.00345,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,,2021,7,9,Australia,AU,Queensland,-19.13596,146.835978,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Maisie and her new joey,2024,6,16,Australia,AU,Queensland,-27.526578,153.090511,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Exiting ex-plantation regeneration area,2023,3,30,Australia,AU,Victoria,-37.594638,143.898625,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Chasing female with Joey in Grey Ironbark. Found as I heard him calling to female,2020,10,10,Australia,AU,Queensland,-27.532759,153.03742,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,,2023,9,22,Australia,AU,South Australia,-35.086114,138.567039,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,10,13,Australia,AU,Queensland,-27.527051,153.091364,EPSG:4326 +HUMAN_OBSERVATION,Alex,1,,Hunter Camera,2024,7,16,Australia,AU,Queensland,-26.15117,152.86915,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,3,15,Australia,AU,New South Wales,-29.8572,150.585933,EPSG:4326 +HUMAN_OBSERVATION,Susan Kruss,1,,,2023,2,19,Australia,AU,Victoria,-37.554729,149.74684,EPSG:4326 +HUMAN_OBSERVATION,Danny Reddan,1,,,2024,9,21,Australia,AU,Victoria,-38.150932,141.930851,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2023,1,4,Australia,AU,South Australia,-34.954881,138.691206,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,12,Australia,AU,South Australia,-34.891945,138.72173,EPSG:4326 +HUMAN_OBSERVATION,J. Addesi,1,,,2023,11,4,Australia,AU,Victoria,-38.667782,143.860922,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In trees near K block mowing shed,2023,10,7,Australia,AU,Queensland,-27.525881,153.090867,EPSG:4326 +HUMAN_OBSERVATION,ronr1,1,,,2023,8,15,Australia,AU,Queensland,-27.40038,153.437667,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,9,Australia,AU,Queensland,-27.531369,153.10537,EPSG:4326 +HUMAN_OBSERVATION,Ash,1,,,2023,10,30,Australia,AU,Queensland,-27.700869,153.19097,EPSG:4326 +HUMAN_OBSERVATION,pierce_clark,1,,,2024,9,21,Australia,AU,Queensland,-27.916603,153.374011,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,18,Australia,AU,Queensland,-27.4141,152.002961,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"This is a male - evidenced by his grunting at me when I mowed the bracken under his tree. Fairly loud grunting, as I could hear him over the mower and with earmuffs on.",2023,12,20,Australia,AU,Victoria,-37.792921,141.477893,EPSG:4326 +HUMAN_OBSERVATION,Dundas Nature Refuge - D'Aguilar Ranges,1,,,2022,11,28,Australia,AU,Queensland,-27.332775,152.609153,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult female and joey. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,2,Australia,AU,Queensland,-26.140737,151.814846,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,18,Australia,AU,Queensland,-27.52748,153.090889,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"In a Manna Gum (E. viminalis). There are presently two Koala in this Manna Gum, this is the ""western"" one. This is the same tree (the ""stick nest tree"") referred to in yesterday's observation https://inaturalist.ala.org.au/observations/214943590",2024,5,12,Australia,AU,Victoria,-38.500006,142.974953,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,I heard him...he's a boy. Sitting in an Acacia melanoxylon. Perhaps you get better grip with your bottom for sleeping on the rough bark rather than the smooth gum bark.,2023,10,9,Australia,AU,Victoria,-37.874169,142.290871,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Tag 3143 female (smilie face on left hip),2022,12,12,Australia,AU,Queensland,-27.545782,153.073358,EPSG:4326 +HUMAN_OBSERVATION,Taylor,1,,,2024,7,11,Australia,AU,Queensland,-19.142842,146.867535,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear - known as Buster,2024,6,22,Australia,AU,Queensland,-27.530145,153.103471,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2023,5,11,Australia,AU,Victoria,-38.381747,145.313164,EPSG:4326 +HUMAN_OBSERVATION,akyra00,1,,,2022,12,11,Australia,AU,Queensland,-27.272692,152.940567,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,4,15,Australia,AU,Queensland,-27.54968,153.048974,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2024,4,27,Australia,AU,South Australia,-34.877993,138.64926,EPSG:4326 +HUMAN_OBSERVATION,pierce_clark,1,,,2024,9,23,Australia,AU,Queensland,-27.914631,153.375298,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,A powerful owl makes a 2 hoot call at about the 10sec mark.,2022,1,23,Australia,AU,Queensland,-27.510435,153.0698,EPSG:4326 +HUMAN_OBSERVATION,loreline_burcher,1,,,2023,7,16,Australia,AU,Victoria,-38.587936,145.535453,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,4,25,Australia,AU,Victoria,-37.652778,143.925556,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Mum without joey we realised. Joey was seen on its own yesterday - Ainslie has a photo and uploaded.,2021,10,26,Australia,AU,New South Wales,-28.254279,153.377322,EPSG:4326 +HUMAN_OBSERVATION,tere_c,1,,,2020,2,4,Australia,AU,Victoria,-38.129436,145.27237,EPSG:4326 +HUMAN_OBSERVATION,nicomollon,1,,,2024,10,25,Australia,AU,Queensland,-19.137467,146.864838,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near E block Very high in tree,2023,7,23,Australia,AU,Queensland,-27.525953,153.090582,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,2,29,Australia,AU,Queensland,-26.165729,151.759652,EPSG:4326 +HUMAN_OBSERVATION,corinne-s,1,,,2023,9,9,Australia,AU,Queensland,-27.073555,152.624934,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,"Boy high in tree. Very close to the road! Bit camera shy, left him to climb up and hide",2024,1,31,Australia,AU,New South Wales,-34.070375,150.852301,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,11,18,Australia,AU,Victoria,-38.671013,146.164689,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"In Manna Gum (E. viminalis). Appears to be the same Koala (in the same tree, but has moved) as yesterday in observation https://inaturalist.ala.org.au/observations/214940757 It seems this Koala has now been here in this tree for 6 days: Tues (https://inaturalist.ala.org.au/observations/214358712), Wed (https://inaturalist.ala.org.au/observations/214359669), Thurs (https://inaturalist.ala.org.au/observations/214555655), Fri (https://inaturalist.ala.org.au/observations/214938183), Sat (https://inaturalist.ala.org.au/observations/214940757) and today.",2024,5,12,Australia,AU,Victoria,-38.497158,142.978303,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,9,29,Australia,AU,Queensland,-27.527099,153.091668,EPSG:4326 +HUMAN_OBSERVATION,jango1971,1,,,2021,1,19,Australia,AU,Queensland,-19.127136,146.868268,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of woodland - in tree inside nursery fence,2023,7,15,Australia,AU,Queensland,-27.527383,153.092189,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed in a house yard by Wendy Taylor. Submitted via msg.,2024,7,10,Australia,AU,Queensland,-26.180544,151.691324,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,10,25,Australia,AU,South Australia,-34.864295,138.728667,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,10,4,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,5,Australia,AU,Queensland,-26.151977,151.798848,EPSG:4326 +HUMAN_OBSERVATION,thekladiespinne,1,,,2023,8,25,Australia,AU,Queensland,-27.509205,153.081131,EPSG:4326 +HUMAN_OBSERVATION,brucewa,1,,,2021,9,8,Australia,AU,New South Wales,-28.273478,153.442494,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Mum and joey.,2023,9,2,Australia,AU,Queensland,-27.284502,152.999949,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Adult. Healthy. Unknown sex. Observed by teachers and students. Submitted via FB, email and msg.",2024,5,21,Australia,AU,Queensland,-26.590241,151.903461,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,7,Australia,AU,South Australia,-34.890444,138.732096,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,4,29,Australia,AU,Queensland,-27.54378,153.055105,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,6,8,Australia,AU,Queensland,-27.529835,153.103856,EPSG:4326 +HUMAN_OBSERVATION,jehfenker,1,,,2024,3,7,Australia,AU,Victoria,-38.341645,143.401428,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,5,22,Australia,AU,Queensland,-27.527467,153.110618,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland,2024,11,10,Australia,AU,Queensland,-27.527244,153.092283,EPSG:4326 +HUMAN_OBSERVATION,colbs24,1,,Male. Same individual sighted on 5th of Jan 2022.,2022,1,10,Australia,AU,Queensland,-27.622935,153.139185,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Tagged male, healthy looking",2023,9,15,Australia,AU,Queensland,-27.257249,152.951334,EPSG:4326 +HUMAN_OBSERVATION,Charmaine,1,,Large one curled into ball as the wind picked up.,2020,7,22,Australia,AU,Queensland,-27.50995,153.224494,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,29,Australia,AU,Queensland,-27.530015,153.103748,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,9,9,Australia,AU,Queensland,-27.534647,153.057968,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Sport n rec picnic area Possibly with joey,2024,7,18,Australia,AU,Queensland,-27.525619,153.09241,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2023,5,4,Australia,AU,Queensland,-27.550759,153.058072,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,"Near front gate, along the road.",2024,10,21,Australia,AU,Queensland,-27.325512,151.9357,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,14,Australia,AU,Queensland,-27.527291,153.110058,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,30,Australia,AU,South Australia,-34.89082,138.721826,EPSG:4326 +HUMAN_OBSERVATION,Thomas Brodribb,1,,,2024,8,2,Australia,AU,Queensland,-28.236923,152.743102,EPSG:4326 +HUMAN_OBSERVATION,drbazman,1,MALE,"Heard koala grunting at dusk, having previously seen one in a tree near residence on 11 December 2022 (see pic)",2024,6,18,Australia,AU,New South Wales,-33.359477,150.93507,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Leanne Zischke. Submitted via project event and email.,2023,1,2,Australia,AU,Queensland,-26.164152,151.972547,EPSG:4326 +HUMAN_OBSERVATION,Ryan Leys,1,,,2023,10,27,Australia,AU,South Australia,-35.594055,137.506638,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area - near Seton College fence,2023,8,5,Australia,AU,Queensland,-27.528369,153.092887,EPSG:4326 +HUMAN_OBSERVATION,jotrack2,1,,,2022,12,23,Australia,AU,Queensland,-27.429179,153.534628,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Black Lip"" in Stringy Bark. Calling at 7.45 am",2022,11,24,Australia,AU,New South Wales,-30.520251,151.519267,EPSG:4326 +HUMAN_OBSERVATION,philip-roetman,1,,,2020,2,22,Australia,AU,South Australia,-34.93497,138.656552,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2023,5,17,Australia,AU,Queensland,-27.714822,151.525772,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,11,Australia,AU,Queensland,-27.545906,153.073196,EPSG:4326 +HUMAN_OBSERVATION,celianj,1,,,2024,8,4,Australia,AU,Queensland,-27.422231,153.515658,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,8,3,Australia,AU,Queensland,-27.526745,153.091311,EPSG:4326 +HUMAN_OBSERVATION,tan,1,,,2022,7,8,Australia,AU,Queensland,-28.191796,153.199051,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2022,1,10,Australia,AU,New South Wales,-28.252316,153.375182,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,3,15,Australia,AU,Queensland,-27.528455,153.106566,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,17,Australia,AU,South Australia,-34.892118,138.7184,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,,2021,12,9,Australia,AU,Victoria,-37.79459,141.491466,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to Woodland,2024,3,2,Australia,AU,Queensland,-27.5273,153.092208,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2021,10,9,Australia,AU,Queensland,-27.563269,152.107368,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2023,3,5,Australia,AU,Queensland,-27.284462,153.000793,EPSG:4326 +HUMAN_OBSERVATION,belindadavis1,1,,,2021,5,9,Australia,AU,Queensland,-27.508255,153.085427,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,5,19,Australia,AU,Queensland,-27.527095,153.090966,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,"Amongst Monkey Rope, tree unknown",2020,4,28,Australia,AU,Queensland,-27.550966,153.057833,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2023,8,18,Australia,AU,Queensland,-27.823963,152.992508,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,23,Australia,AU,Queensland,-27.527191,153.092104,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Mum with front bub.,2023,9,13,Australia,AU,Queensland,-27.257154,152.046542,EPSG:4326 +HUMAN_OBSERVATION,adelaidetclarke,1,,,2020,5,8,Australia,AU,South Australia,-34.884813,138.645737,EPSG:4326 +HUMAN_OBSERVATION,dumakey,1,,,2023,10,22,Australia,AU,South Australia,-35.001368,138.647313,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,In a Manna Gum (E. viminalis).,2024,9,25,Australia,AU,Victoria,-38.318633,142.363203,EPSG:4326 +HUMAN_OBSERVATION,Tina Gillespie,1,,,2023,2,24,Australia,AU,South Australia,-34.93937,138.88533,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,,2021,5,11,Australia,AU,New South Wales,-28.260366,153.4018,EPSG:4326 +HUMAN_OBSERVATION,tanny79,1,,,2024,9,26,Australia,AU,Queensland,-27.935557,153.352707,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,11,Australia,AU,Queensland,-26.332094,151.79985,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,MALE,Male koala (have series of photos that shows he is male). Looks like an older koala.,2023,3,12,Australia,AU,Queensland,-27.284883,153.000693,EPSG:4326 +HUMAN_OBSERVATION,rordale,1,,,2021,11,15,Australia,AU,Queensland,-27.261838,152.06395,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,1,20,Australia,AU,Victoria,-37.599619,143.890666,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,,This female koala has a joey that has only just recently left the pouch. This is the same female photographed here 08/01/20 with a joey on her back. She has been on this property for at least a week after an absence of a month.,2021,8,7,Australia,AU,Queensland,-28.173861,152.906767,EPSG:4326 +HUMAN_OBSERVATION,summerfaith463,1,,,2023,7,30,Australia,AU,Victoria,-38.318329,142.36377,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,7,Australia,AU,Queensland,-27.525478,153.111417,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,2,Australia,AU,Queensland,-27.530276,153.101258,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,13,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,11,16,Australia,AU,Queensland,-27.822675,152.992557,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,10,12,Australia,AU,Queensland,-27.550385,153.062799,EPSG:4326 +HUMAN_OBSERVATION,Gen Robey,1,,From surveying by Paul Revie (Wildlife Qld) when looking for Brush Tailed Rock Wallabies.,2023,2,6,Australia,AU,Queensland,-28.22169,152.65918,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland Mother and joey,2024,10,5,Australia,AU,Queensland,-27.527797,153.09231,EPSG:4326 +HUMAN_OBSERVATION,taitkowalick,1,,,2023,12,1,Australia,AU,South Australia,-35.054554,138.609232,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,,2021,9,25,Australia,AU,Queensland,-27.565197,153.134033,EPSG:4326 +HUMAN_OBSERVATION,Anneke Jonker,1,,"Phascolarctos cinereus (Goldfuss, 1817) Phascolarctidae Mammalia, Marsupialia koala",2023,10,21,Australia,AU,Queensland,-28.918227,151.583197,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,10,8,Australia,AU,Queensland,-27.552348,153.054531,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,5,29,Australia,AU,Queensland,-27.527942,153.110564,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,9,24,Australia,AU,Queensland,-27.41181,152.004315,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,4,1,Australia,AU,South Australia,-34.958658,138.697083,EPSG:4326 +HUMAN_OBSERVATION,Enot Poluskuns,1,,,2024,5,26,Australia,AU,Queensland,-19.127992,146.867925,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,16,Australia,AU,Queensland,-27.791158,151.561628,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2024,7,23,Australia,AU,Queensland,-27.529451,153.102589,EPSG:4326 +HUMAN_OBSERVATION,highseamutiny,1,FEMALE,With baby,2022,10,27,Australia,AU,Victoria,-38.438512,142.921662,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,8,Australia,AU,Queensland,-27.526581,153.103224,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female + Joey. Healthy. Observed by Angela Bell. Submitted via FB,2024,9,27,Australia,AU,Queensland,-26.103208,151.449682,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,22,Australia,AU,Queensland,-27.52724,153.107673,EPSG:4326 +HUMAN_OBSERVATION,Rachel Devlin,1,,,2022,9,28,Australia,AU,Victoria,-38.251667,145.246535,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Non-Food tree but unknown possibly Soap tree or Celerywood,2020,5,14,Australia,AU,Queensland,-27.546838,153.058444,EPSG:4326 +HUMAN_OBSERVATION,Marianne Broug,1,,,2024,4,16,Australia,AU,South Australia,-34.999543,138.649798,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Bloodwood,2021,12,3,Australia,AU,Queensland,-27.549338,153.049537,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,3,Australia,AU,South Australia,-34.890248,138.731438,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi & joey,2023,2,7,Australia,AU,Queensland,-27.530124,153.103239,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,10,6,Australia,AU,Queensland,-27.649172,151.711625,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area Another koala close by in next tree Frank Rooney?,2023,11,19,Australia,AU,Queensland,-27.528119,153.092326,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Scott Carey. Submitted by Wendy Taylor via msg.,2024,7,10,Australia,AU,Queensland,-26.130214,151.812496,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2023,9,24,Australia,AU,New South Wales,-33.076269,151.094533,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,22,Australia,AU,South Australia,-34.892716,138.715375,EPSG:4326 +HUMAN_OBSERVATION,ljker2,1,,In a eucalyptus tereticornis close to Brown Lake. Lots of koala scats around the base of the tree.,2024,9,18,Australia,AU,Queensland,-27.492605,153.42993,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,12,27,Australia,AU,New South Wales,-34.77335,146.595763,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - red tag A5 - Cindy,2023,7,26,Australia,AU,Queensland,-27.527213,153.107239,EPSG:4326 +HUMAN_OBSERVATION,jasmima,1,,,2021,8,22,Australia,AU,South Australia,-34.885585,138.641602,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Believe this may be a male as it was bellowing a lot in the night.,2020,10,23,Australia,AU,New South Wales,-28.253542,153.377059,EPSG:4326 +HUMAN_OBSERVATION,fidug,1,,,2023,9,25,Australia,AU,Queensland,-27.583867,153.17015,EPSG:4326 +HUMAN_OBSERVATION,Taylor,1,,,2024,7,11,Australia,AU,Queensland,-19.143517,146.866522,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2023,1,16,Australia,AU,Queensland,-27.734251,153.10159,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,Female with visible joey in pouch,2023,11,2,Australia,AU,Queensland,-27.529575,153.103491,EPSG:4326 +HUMAN_OBSERVATION,Rachel Devlin,1,,,2023,12,6,Australia,AU,Victoria,-38.265745,145.047925,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in Eucalyptus tereticornis,2024,7,3,Australia,AU,Queensland,-28.153812,152.608522,EPSG:4326 +HUMAN_OBSERVATION,valemoscos06,1,,,2024,8,11,Australia,AU,Queensland,-27.54033,153.073578,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,3,Australia,AU,Queensland,-27.526599,153.09035,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,9,19,Australia,AU,Queensland,-27.5259,153.092037,EPSG:4326 +HUMAN_OBSERVATION,Ryan Harvey,1,,"Found while photographing the Tyler's tree frog, didn't have a good torch on me and flash didn't reach it but easy to tell it is a koala. I have seen dozens in this area over the years, I don't think I have ever been looking and not found atleast one, sometimes finding several if I put in effort. I have been informed this area (Tinonee/Mondrook/Bootawa/The Bight, Burrel Creek & unburnt parts of Hillville) now currently has one of the largest koala populations in NSW (thanks to the 2019/2020 bushfires mainly decimating them - an all to common thing over my lifetime with population after population burning) For once habitat destruction and fragmentation for cattle farming has been a saviour, this koala population is very healthy in this area thanks to fragmented habitat cleared for cattle preventing bushfires impacting them, instead road mortality is the main threat. The National Park/Nature Reserve and State Forest nearby burnt entirely in the Hillville fire in 2019, few koalas would have survived given the high intensity fire even burnt the canopy and killed large amounts of gums. Luckily this area nearby wasn't impacted.",2021,12,22,Australia,AU,New South Wales,-31.94517,152.380773,EPSG:4326 +HUMAN_OBSERVATION,porkytama,1,,,2024,7,31,Australia,AU,Victoria,-38.318303,142.363418,EPSG:4326 +HUMAN_OBSERVATION,Psoralea,1,,,2020,12,19,Australia,AU,Victoria,-37.439975,144.668808,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,27,Australia,AU,Queensland,-27.529979,153.104138,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,7,6,Australia,AU,New South Wales,-28.254093,153.377528,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2024,4,22,Australia,AU,Victoria,-38.833095,143.512162,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,16,Australia,AU,Queensland,-27.527065,153.110112,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2020,3,15,Australia,AU,Victoria,-38.031687,141.140043,EPSG:4326 +HUMAN_OBSERVATION,slowfolk,1,,,2024,8,10,Australia,AU,Queensland,-26.321919,152.674126,EPSG:4326 +HUMAN_OBSERVATION,BIEPA Wildlife Team,1,,"Found by MOP Kerri, who called it in to Wildlife Rescue Qld. DOA. Severe face and internal trauma. 6kg male no tags or microchip. Healthy otherwise.",2024,9,9,Australia,AU,Queensland,-27.065206,153.125654,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,MALE,"Male, courting female. Missing his right eye and scarring near eye. No signs of clamidia (has clean bum).",2021,5,7,Australia,AU,Queensland,-27.457661,152.400466,EPSG:4326 +HUMAN_OBSERVATION,Anneke Logan,1,,Female and joey,2022,11,27,Australia,AU,Queensland,-27.266377,152.049222,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,2,25,Australia,AU,Queensland,-27.550933,153.057473,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,11,11,Australia,AU,Queensland,-27.527809,153.105288,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,11,30,Australia,AU,Queensland,-27.413805,152.003083,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,13,Australia,AU,Queensland,-27.526694,153.090454,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Koala - in gum tree. Private property near Cooby Dam. Observed by L.Coleman and record submitted to Toowoomba Koala & Wildlife Rescue,2022,11,12,Australia,AU,Queensland,-27.392436,151.919541,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Cheese tree in shade,2023,3,5,Australia,AU,Queensland,-27.551136,153.057702,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,E block picnic area Mother and joey,2024,11,10,Australia,AU,Queensland,-27.526092,153.090692,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,4,Australia,AU,Queensland,-27.527647,153.0924,EPSG:4326 +HUMAN_OBSERVATION,Sarah Foote,1,,,2022,9,18,Australia,AU,Victoria,-38.668335,143.860803,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,1,1,Australia,AU,Queensland,-27.597933,151.891114,EPSG:4326 +HUMAN_OBSERVATION,Reece Taverner,1,FEMALE,,2023,9,9,Australia,AU,New South Wales,-28.386166,153.564429,EPSG:4326 +HUMAN_OBSERVATION,verenajoyce,1,,,2024,9,16,Australia,AU,Queensland,-28.072281,152.6112,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,8,25,Australia,AU,Queensland,-27.52726,153.091519,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,,2023,11,15,Australia,AU,Queensland,-26.974855,152.078614,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female,2024,7,10,Australia,AU,Queensland,-27.529162,153.110802,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,7,7,Australia,AU,Queensland,-27.339485,152.61383,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,FEMALE,With Joey,2024,10,6,Australia,AU,Queensland,-27.550508,153.054597,EPSG:4326 +HUMAN_OBSERVATION,greenhamburger,1,,,2024,9,23,Australia,AU,Victoria,-38.673347,143.844435,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,Female koala. Back Joey higher up in close by tree.,2022,12,16,Australia,AU,Queensland,-27.413623,152.003171,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,Crossing the road.,2024,1,6,Australia,AU,Queensland,-27.323683,151.94435,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,27,Australia,AU,Queensland,-27.648608,151.708145,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - green tag LEFT ear - Joe, known as Bozo",2024,7,23,Australia,AU,Queensland,-27.526863,153.108167,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,3,Australia,AU,Queensland,-27.546068,153.073017,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Believe this is the brown female and joey. First image shows her nose markings.,2020,10,2,Australia,AU,New South Wales,-28.254188,153.377005,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,13,Australia,AU,South Australia,-34.890385,138.730208,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2023,12,29,Australia,AU,Queensland,-27.524411,153.092986,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,11,15,Australia,AU,South Australia,-34.867243,138.680144,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male koala high in messmate stringybark,2022,8,31,Australia,AU,Victoria,-37.819655,144.251647,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Mum and front bub.,2023,8,29,Australia,AU,Queensland,-27.257551,152.046347,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,30,Australia,AU,South Australia,-34.892749,138.721814,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2024,4,22,Australia,AU,Victoria,-38.832475,143.515105,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,10,14,Australia,AU,South Australia,-34.89205,138.719099,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,,2020,10,6,Australia,AU,South Australia,-35.046527,138.580048,EPSG:4326 +HUMAN_OBSERVATION,stuartyoung78,1,,,2023,9,28,Australia,AU,Queensland,-27.392849,153.440791,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,Two koalas together,2021,11,28,Australia,AU,Queensland,-27.507918,153.082682,EPSG:4326 +HUMAN_OBSERVATION,corserdaly,1,,,2021,6,8,Australia,AU,Queensland,-26.260405,151.979875,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In Eucalyptus microcorys.,2023,11,14,Australia,AU,Queensland,-28.247032,152.566135,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,12,29,Australia,AU,Queensland,-27.527216,153.091293,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Seen from across the creek,2024,5,1,Australia,AU,Queensland,-27.527126,153.109916,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Male. Juvenile. Deceased. Fatal dog attack. Observed by Wendy Taylor. Submitted via msg.,2024,6,20,Australia,AU,Queensland,-26.670002,152.005508,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2020,5,6,Australia,AU,Queensland,-27.550856,153.058186,EPSG:4326 +HUMAN_OBSERVATION,kaharris03,1,,,2024,6,3,Australia,AU,New South Wales,-29.007235,153.274209,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,2,Australia,AU,Queensland,-27.526895,153.090748,EPSG:4326 +HUMAN_OBSERVATION,kaneq,1,,,2022,4,18,Australia,AU,Victoria,-38.759478,143.277344,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,MALE,Male noticed due to hearing bellowing,2024,9,23,Australia,AU,Queensland,-27.544149,153.071631,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,8,18,Australia,AU,Queensland,-27.523988,153.093176,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,E block picnic area Male,2024,11,2,Australia,AU,Queensland,-27.52605,153.090709,EPSG:4326 +HUMAN_OBSERVATION,dancg,1,,One adult in Eucalyptus obliqua.,2022,2,16,Australia,AU,Victoria,-37.769227,145.648348,EPSG:4326 +HUMAN_OBSERVATION,serac,1,,,2023,11,3,Australia,AU,Victoria,-37.853338,145.503617,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,"2 koalas high in adjacent gum trees this afternoon. One eating, one sleeping",2023,6,1,Australia,AU,Queensland,-28.211565,152.86621,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Mum and bub, healthy looking. Couldn’t see tags",2024,9,7,Australia,AU,Queensland,-27.540238,153.086211,EPSG:4326 +HUMAN_OBSERVATION,Peter Crowcroft,1,,,2023,9,29,Australia,AU,Victoria,-38.354401,146.387575,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,2,9,Australia,AU,Queensland,-27.545482,153.073261,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,2,17,Australia,AU,Queensland,-27.510817,153.086711,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Almost certain this is Joe, known as Bozo",2024,6,8,Australia,AU,Queensland,-27.529406,153.106818,EPSG:4326 +HUMAN_OBSERVATION,dawnborchardt,1,,,2022,3,26,Australia,AU,South Australia,-35.163448,138.489074,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,8,Australia,AU,Queensland,-27.530211,153.103125,EPSG:4326 +HUMAN_OBSERVATION,Zach Newkirk,1,,,2023,8,19,Australia,AU,Queensland,-19.12344,146.872015,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey ironbark,2024,2,17,Australia,AU,Queensland,-27.546848,153.05709,EPSG:4326 +HUMAN_OBSERVATION,Ged Tranter,1,,,2022,10,14,Australia,AU,Queensland,-27.303541,153.030646,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Observed by RMIT students,2024,3,21,Australia,AU,Victoria,-37.578718,143.891362,EPSG:4326 +HUMAN_OBSERVATION,Peter Crowcroft,1,,,2024,9,21,Australia,AU,Victoria,-38.458995,143.595471,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,There were 2 gums on the edge of the lawn that these two - brown female and joey hung out in. Was she teaching joey to climb in small gums?,2020,9,22,Australia,AU,New South Wales,-28.254082,153.377029,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum (purple) & joey (pink),2023,11,6,Australia,AU,Queensland,-27.527312,153.10871,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2021,8,21,Australia,AU,Victoria,-38.251898,145.243692,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,,2023,2,28,Australia,AU,Queensland,-27.564455,153.133483,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,1 of two seen on the same walk in glindemann park This one possibly has a Joey but couldn’t confirm due to lighting,2024,6,13,Australia,AU,Queensland,-27.526624,153.06968,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland gully in mating tree,2024,1,20,Australia,AU,Queensland,-27.527552,153.092604,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,2,24,Australia,AU,Queensland,-27.530146,153.103512,EPSG:4326 +HUMAN_OBSERVATION,habitat_brisbane,1,,,2021,9,12,Australia,AU,Queensland,-27.555961,153.076418,EPSG:4326 +HUMAN_OBSERVATION,Tom,1,,,2023,9,7,Australia,AU,Queensland,-19.136034,146.861303,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,"Some pretty exciting news with a koala sighting recently reported in the vicinity of Hassans Walls, Lithgow area. Margot & Kate were eagle-eyed to spot this little guy & we appreciate them reporting the sighting to us. We immediately deployed our team & set up some repurposed tarps to capture that all important poop! As you can see from the map attached, this is a super exciting find with it being some time since a koala has been recorded in this area or surrounds. The map shows the cartoon koala in the location of the sighting with the surrounding dots & dates of previous reports. Our thanks go to Margo & Kate for doing just that! https://www.facebook.com/1077229535639198/posts/pfbid02RndnMoMPzt2kGYQ76MwmtHg1VFYb5v8F2JA32FX3mRSs2ixPFcV6KpavViGdF6kel/?d=n",2022,8,5,Australia,AU,New South Wales,-33.509551,150.150816,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,29,Australia,AU,Queensland,-27.545943,153.072805,EPSG:4326 +HUMAN_OBSERVATION,Larissa Braz Sousa,1,,,2021,2,7,Australia,AU,South Australia,-35.21402,138.708313,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Deceased. Hit by a car. Reported as also having a dirty bottom. Observation by Wendy Taylor. Submitted by Denise Shaw via email.,2023,8,16,Australia,AU,Queensland,-26.154581,151.800937,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2022,3,14,Australia,AU,Queensland,-27.510367,153.085438,EPSG:4326 +HUMAN_OBSERVATION,thedroversdog,1,,In eucalyptus pryoriana Inverloch Vic.,2024,11,14,Australia,AU,Victoria,-38.627845,145.734442,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland gully - in mating tree Male - testicles visible,2024,5,12,Australia,AU,Queensland,-27.527596,153.092516,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark unknown,2020,4,28,Australia,AU,Queensland,-27.550306,153.048112,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2020,2,1,Australia,AU,Queensland,-27.545721,153.072412,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2022,9,13,Australia,AU,South Australia,-34.93032,138.702312,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - yellow tag RIGHT ear,2024,5,6,Australia,AU,Queensland,-27.528251,153.109596,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,2,Australia,AU,Queensland,-27.52581,153.090724,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Joey Charlie in a separate tree to mum,2024,4,6,Australia,AU,Queensland,-27.528268,153.103326,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Spotted gum,2021,3,28,Australia,AU,Queensland,-27.549498,153.053517,EPSG:4326 +HUMAN_OBSERVATION,mclandcare,1,,,2024,2,8,Australia,AU,Victoria,-37.859903,144.191588,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,31,Australia,AU,South Australia,-34.892641,138.720914,EPSG:4326 +HUMAN_OBSERVATION,hamishg,1,,,2022,5,3,Australia,AU,Queensland,-27.398144,153.438877,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2024,7,13,Australia,AU,Queensland,-27.357425,152.07192,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,3,Australia,AU,Queensland,-26.36268,151.814643,EPSG:4326 +HUMAN_OBSERVATION,hollycasey99,1,,,2024,11,4,Australia,AU,Victoria,-38.632486,145.754648,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey - known as Charlie. Mum in nearby tree,2024,4,1,Australia,AU,Queensland,-27.528217,153.103373,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,,"Koala scratches on River Red Gum Eucalyptus camaldulensis. Fairly recent, scratches still rich chestnut brown with raised edges. Confirmed as koala by size and depth.",2024,11,13,Australia,AU,Victoria,-37.862466,144.408806,EPSG:4326 +HUMAN_OBSERVATION,Vaughan King,1,,"Male. Healthy. Rear clean. Eyes clear. Relaxed, alert, but eating / sleeping while being observed.",2020,11,30,Australia,AU,Queensland,-26.931342,152.626207,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,,"High in River Red Gum. First seen by me at 08.05, then seen again by my team at 10.00. This pic by Kerry. Possibly male.",2024,6,2,Australia,AU,Victoria,-37.898349,144.127224,EPSG:4326 +HUMAN_OBSERVATION,Nevarac,1,,High in tree,2022,2,24,Australia,AU,Queensland,-28.107407,153.444068,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Christabelle,2023,2,4,Australia,AU,Queensland,-27.532166,153.105334,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,4,7,Australia,AU,New South Wales,-33.076739,151.094986,EPSG:4326 +HUMAN_OBSERVATION,Ruben Perez Perez,1,,,2023,10,21,Australia,AU,Victoria,-38.670006,143.861178,EPSG:4326 +HUMAN_OBSERVATION,Zoltán Stekkelpak,1,,,2024,3,23,Australia,AU,Victoria,-38.668869,143.860797,EPSG:4326 +HUMAN_OBSERVATION,Emma H.,1,,,2024,8,16,Australia,AU,Queensland,-19.123033,146.871475,EPSG:4326 +HUMAN_OBSERVATION,willowsutherland,1,,It had a baby,2023,6,25,Australia,AU,Queensland,-28.155996,153.427524,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2024,3,30,Australia,AU,New South Wales,-33.076753,151.095081,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2023,1,6,Australia,AU,Queensland,-28.069572,152.82778,EPSG:4326 +HUMAN_OBSERVATION,Rachel Devlin,1,,2 today. One male and one female (judging by size and features) in the same tree. She was not impressed,2023,12,6,Australia,AU,Victoria,-38.266058,145.047926,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,Koala spotted in Mount Crosby from the Bowls Club. More photos shared on the local Karana Downs and Mount Crosby Residents FB page - will add pending permission. Credit: Mt Crosby Bowls Club Facebook Page.,2021,10,17,Australia,AU,Queensland,-27.538016,152.803643,EPSG:4326 +HUMAN_OBSERVATION,raceyr,1,,,2023,6,6,Australia,AU,Queensland,-27.469494,152.524445,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,17,Australia,AU,South Australia,-34.892869,138.717116,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2023,8,5,Australia,AU,South Australia,-34.936803,138.69922,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Scats under a Eucalyptus tereticornis, Blue gum",2024,10,14,Australia,AU,Queensland,-27.455422,152.365753,EPSG:4326 +HUMAN_OBSERVATION,jryan198,1,,,2022,9,22,Australia,AU,Queensland,-27.269747,152.050203,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female with joey. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,11,7,Australia,AU,Queensland,-26.255551,151.768926,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2024,1,11,Australia,AU,Victoria,-38.130704,145.268686,EPSG:4326 +HUMAN_OBSERVATION,Alex,1,,Exact coordinates not present but was in this park,2024,6,22,Australia,AU,Queensland,-27.314204,152.996277,EPSG:4326 +HUMAN_OBSERVATION,Stephen Cox,1,,,2024,1,5,Australia,AU,Victoria,-38.318511,142.363206,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Adult male. Healthy,2023,10,17,Australia,AU,Queensland,-27.903923,153.372116,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,9,27,Australia,AU,Queensland,-27.411703,152.004897,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Gormans Gap up a Yellow Box, Photo Chris Hoffmann",2021,6,28,Australia,AU,Queensland,-27.633559,151.987807,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,10,18,Australia,AU,Queensland,-27.528771,153.112564,EPSG:4326 +HUMAN_OBSERVATION,ainsliem,1,,,2020,10,20,Australia,AU,New South Wales,-28.25308,153.376878,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2023,3,31,Australia,AU,South Australia,-34.902573,138.613948,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,6,6,Australia,AU,Queensland,-27.546765,153.066977,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2024,10,7,Australia,AU,Queensland,-28.09476,152.838012,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Adult. Healthy. Unknown Sex. We have 600 acres, a large part of which is rocky hillsides, with lots of trees, some creek flats, which have Ecualyptus tereticornis and other species. The koala was located at the back part of the farm, adjoining Tarong national Park. The property is Land for Wildlife Property. Observation by Jill Sampson. Submitted via email.",2021,10,4,Australia,AU,Queensland,-26.490428,151.493708,EPSG:4326 +HUMAN_OBSERVATION,Andrew Rock,1,,Toohey Forest,2021,6,19,Australia,AU,Queensland,-27.54843,153.059345,EPSG:4326 +HUMAN_OBSERVATION,purple_penguin,1,,,2024,11,19,Australia,AU,Victoria,-38.336605,141.607483,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Joey is well protected by mum.,2021,7,27,Australia,AU,New South Wales,-28.257813,153.400645,EPSG:4326 +HUMAN_OBSERVATION,davidosborn89,1,,,2023,11,24,Australia,AU,South Australia,-35.069801,138.611967,EPSG:4326 +HUMAN_OBSERVATION,nullman,1,,,2023,12,9,Australia,AU,Victoria,-38.67175,143.859742,EPSG:4326 +HUMAN_OBSERVATION,julie,1,,,2023,10,16,Australia,AU,Queensland,-27.790381,153.148454,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,11,Australia,AU,Queensland,-27.527236,153.090851,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,4,26,Australia,AU,South Australia,-34.891726,138.627006,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland middle,2023,12,29,Australia,AU,Queensland,-27.528028,153.092842,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2024,9,11,Australia,AU,New South Wales,-33.076711,151.095441,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,MALE,Local male koala who I regularly see on Lawnton Road in the trees.,2023,7,16,Australia,AU,Queensland,-27.285008,153.000286,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2023,2,15,Australia,AU,South Australia,-34.905078,138.710878,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Mum koala - her Joey was in the next tree over,2023,1,29,Australia,AU,Queensland,-27.526573,153.09329,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2024,4,22,Australia,AU,Victoria,-38.834708,143.512572,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"Male crossed freeway and was trapped by dogs in yard. Luckily sustained no injuries, voluntary rescue, observed 24 hrs and released nearby.",2023,1,14,Australia,AU,Victoria,-37.537936,143.877161,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.779977,143.623269,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Lots of koalas observed in past 4-6 weeks around Taabinga. Observed by Shaun Heirdsfield. Submitted via email.,2023,10,30,Australia,AU,Queensland,-26.583582,151.809135,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,11,9,Australia,AU,Queensland,-27.527287,153.090964,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,21,Australia,AU,South Australia,-34.892602,138.721264,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,27,Australia,AU,South Australia,-34.888418,138.727063,EPSG:4326 +HUMAN_OBSERVATION,quollsskinks,1,,Acrobatic Koala near Nuns Beach.,2022,3,14,Australia,AU,Victoria,-38.343098,141.607452,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,11,24,Australia,AU,Queensland,-27.527168,153.092074,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,7,1,Australia,AU,Queensland,-27.52822,153.093347,EPSG:4326 +HUMAN_OBSERVATION,curiousbeggs,1,,,2020,9,29,Australia,AU,Queensland,-27.49542,153.091951,EPSG:4326 +HUMAN_OBSERVATION,carolynavaisabel,1,,,2022,10,31,Australia,AU,South Australia,-35.009685,138.652627,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in a Eucalyptus tereticornis,2024,6,20,Australia,AU,Queensland,-27.866569,152.759022,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Large male koala. I believe this is the one I saw last night on the ground, and we had been hearing last night and all day today.",2020,8,24,Australia,AU,New South Wales,-28.25358,153.377188,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Gully near Aldi gates,2024,8,3,Australia,AU,Queensland,-27.526153,153.093001,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2022,10,9,Australia,AU,Queensland,-28.220302,152.860105,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,2,8,Australia,AU,Victoria,-38.671167,146.16365,EPSG:4326 +HUMAN_OBSERVATION,sandragall,1,,,2024,2,27,Australia,AU,Queensland,-28.010936,153.265761,EPSG:4326 +HUMAN_OBSERVATION,Judebirder,1,,,2020,12,28,Australia,AU,New South Wales,-28.380981,153.564077,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2022,1,14,Australia,AU,South Australia,-34.905079,138.614975,EPSG:4326 +HUMAN_OBSERVATION,dawolef,1,,,2022,10,17,Australia,AU,New South Wales,-28.809431,153.287891,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2020,1,11,Australia,AU,New South Wales,-29.871389,150.603333,EPSG:4326 +HUMAN_OBSERVATION,trenett,1,,,2021,11,4,Australia,AU,South Australia,-34.907981,138.701999,EPSG:4326 +HUMAN_OBSERVATION,ariebaeldeau,1,,,2023,10,15,Australia,AU,Victoria,-37.423287,144.248534,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,5,3,Australia,AU,Queensland,-27.528155,153.092923,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,Photo from security worker on patrol,2024,9,30,Australia,AU,Queensland,-27.611578,151.955572,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2021,1,6,Australia,AU,Victoria,-37.925575,147.729028,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,5,11,Australia,AU,New South Wales,-28.260161,153.399207,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,1,2,Australia,AU,Queensland,-27.526024,153.090624,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,9,15,Australia,AU,New South Wales,-33.0766,151.095031,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Last 2 photos taken 4 hours later,2024,10,8,Australia,AU,Queensland,-27.529532,153.103626,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2020,12,14,Australia,AU,South Australia,-34.971396,138.638056,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,7,27,Australia,AU,Queensland,-27.548603,153.059173,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,MALE,Male just outside our house.,2023,12,12,Australia,AU,Queensland,-27.358399,152.074527,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,MALE,Male in blue gum (Eucalyptus tereticornis) DHB approx 40cm. Hot day so put water at base of tree.,2023,2,12,Australia,AU,Queensland,-27.457171,152.401374,EPSG:4326 +HUMAN_OBSERVATION,blairwickham,1,,,2022,3,24,Australia,AU,South Australia,-35.814758,137.462583,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A5 RIGHT ear - Cindy,2023,11,6,Australia,AU,Queensland,-27.527569,153.110286,EPSG:4326 +HUMAN_OBSERVATION,Roxanne Lazarus,1,,"""Rosa Parks"" and her joey",2023,1,13,Australia,AU,New South Wales,-33.432247,150.638779,EPSG:4326 +HUMAN_OBSERVATION,Bob iNaturalist,1,,,2024,8,12,Australia,AU,South Australia,-35.021565,138.594493,EPSG:4326 +HUMAN_OBSERVATION,teripschool,1,,,2023,9,22,Australia,AU,Victoria,-36.874278,145.52977,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2024,6,5,Australia,AU,Queensland,-28.011059,153.23904,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,3,13,Australia,AU,Queensland,-27.514195,153.082976,EPSG:4326 +HUMAN_OBSERVATION,jomorris,1,,,2023,8,7,Australia,AU,Queensland,-28.086765,152.66036,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Up hill from Aldi gates,2024,1,7,Australia,AU,Queensland,-27.526372,153.092617,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,,2021,10,22,Australia,AU,Victoria,-38.177623,145.134964,EPSG:4326 +HUMAN_OBSERVATION,Daniel Terrington,1,,,2020,3,8,Australia,AU,Victoria,-37.539073,149.743263,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,,2024,4,15,Australia,AU,Queensland,-27.510444,153.087814,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,"Male - see chest gland (photo 2) and testes (photo 3). The green colour isn't mould, it's a malfunctioning camera. LCA3157.",2023,5,11,Australia,AU,Queensland,-27.496289,152.249352,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Ainslie Rose is back from FOK, doing well and eating brush box",2022,1,4,Australia,AU,New South Wales,-28.25539,153.378116,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi & joey. Last 2 photos taken 4 hours later,2024,10,8,Australia,AU,Queensland,-27.528983,153.103282,EPSG:4326 +HUMAN_OBSERVATION,tstayns,1,,,2021,11,30,Australia,AU,Victoria,-38.032683,141.132064,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,4,19,Australia,AU,South Australia,-35.009016,138.651602,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,,2023,10,11,Australia,AU,Queensland,-27.915792,153.372193,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to nursery driveway - yellow boom gate scanner,2023,12,24,Australia,AU,Queensland,-27.527367,153.091153,EPSG:4326 +HUMAN_OBSERVATION,mikefitz668,1,,,2022,6,16,Australia,AU,New South Wales,-28.875181,153.439705,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2023,6,9,Australia,AU,Queensland,-27.734068,153.101675,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Female,2023,4,23,Australia,AU,Queensland,-27.525533,153.090422,EPSG:4326 +HUMAN_OBSERVATION,Rémi Bigonneau,1,,,2022,11,14,Australia,AU,Queensland,-27.287144,152.60333,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,8,Australia,AU,Queensland,-27.41382,152.003447,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Koala and older Joey in Tallowwood,2020,8,6,Australia,AU,Queensland,-27.537597,153.054096,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"""young koala, unusual mixture of grunts, think he might be still learning"" !",2021,10,1,Australia,AU,Victoria,-37.580963,143.896202,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,in habitat tree,2021,2,7,Australia,AU,Victoria,-37.615364,143.884611,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2024,1,7,Australia,AU,Queensland,-27.358479,152.074531,EPSG:4326 +HUMAN_OBSERVATION,brodieplays,1,,Crossing the road with joey on back. Made it to other side.,2024,10,27,Australia,AU,Queensland,-27.479845,153.414376,EPSG:4326 +HUMAN_OBSERVATION,peter-,1,,,2023,11,5,Australia,AU,Queensland,-28.203106,152.897078,EPSG:4326 +HUMAN_OBSERVATION,Kylie Agnew-Francis,1,,,2023,8,13,Australia,AU,Queensland,-27.50563,153.078353,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,5,26,Australia,AU,Queensland,-27.545791,153.072322,EPSG:4326 +HUMAN_OBSERVATION,maxandchanel,1,,,2021,10,22,Australia,AU,Queensland,-28.191992,153.227926,EPSG:4326 +HUMAN_OBSERVATION,Ben McBurney,1,,,2023,7,2,Australia,AU,Queensland,-27.507504,153.082765,EPSG:4326 +HUMAN_OBSERVATION,Rachel Devlin,1,,,2023,11,26,Australia,AU,Victoria,-38.269016,145.048059,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,1,31,Australia,AU,Queensland,-27.529712,153.10509,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Male. Healthy. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,8,16,Australia,AU,Queensland,-26.176446,151.694395,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Mature fed tress everywhere. Lots of scat. Thick canopy blocking sighting koala/s,2023,8,20,Australia,AU,New South Wales,-33.127564,151.243422,EPSG:4326 +HUMAN_OBSERVATION,ellepenn7,1,MALE,,2024,10,3,Australia,AU,Queensland,-27.837957,153.097074,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2024,6,6,Australia,AU,Queensland,-27.735028,153.102454,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,17,Australia,AU,Queensland,-27.527826,153.111789,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,7,19,Australia,AU,Queensland,-27.545793,153.074157,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,1,21,Australia,AU,Queensland,-27.527698,153.092482,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Brush Box,2024,3,16,Australia,AU,Queensland,-27.534075,153.036878,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,24,Australia,AU,Queensland,-27.526705,153.113795,EPSG:4326 +HUMAN_OBSERVATION,leito19,1,,,2024,3,31,Australia,AU,Victoria,-38.384164,145.303883,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,18,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Anneliese Mak,1,,,2024,2,26,Australia,AU,Victoria,-37.923409,147.724832,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area - very high up Koala with joey - Lola High in tree in valley area,2023,8,6,Australia,AU,Queensland,-27.527431,153.092489,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,Mum and Joey in grey box,2023,9,28,Australia,AU,Queensland,-27.823698,152.992962,EPSG:4326 +HUMAN_OBSERVATION,theressa,1,,,2021,12,12,Australia,AU,Queensland,-27.165344,153.001358,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2020,10,6,Australia,AU,New South Wales,-28.25783,153.400598,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2022,10,9,Australia,AU,Queensland,-28.220302,152.860105,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2020,4,15,Australia,AU,South Australia,-34.976856,138.686214,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,11,11,Australia,AU,Queensland,-27.540622,153.051837,EPSG:4326 +HUMAN_OBSERVATION,kristalmilne,1,,,2024,7,8,Australia,AU,Victoria,-38.828429,145.997334,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,7,Australia,AU,Queensland,-27.529665,153.104746,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,Mother and baby just above.,2024,9,30,Australia,AU,Queensland,-27.552312,153.054616,EPSG:4326 +HUMAN_OBSERVATION,bertbohosouth,1,,,2023,11,6,Australia,AU,Victoria,-36.764775,145.776275,EPSG:4326 +HUMAN_OBSERVATION,bimbimbi,1,,,2024,1,22,Australia,AU,Victoria,-38.406182,142.767557,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2024,11,1,Australia,AU,Queensland,-27.358453,152.074386,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,1,26,Australia,AU,South Australia,-34.955883,138.69272,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2023,12,29,Australia,AU,Queensland,-27.52555,153.092682,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,,"Male koala mid in messmate stringybark, alert watching me then climbed to high. He has been seen near here previously, we call him Wally2. Another male Wally1 has also been seen near here and a female",2024,6,30,Australia,AU,Victoria,-37.844253,144.271938,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Corymbia citriodora,2021,3,13,Australia,AU,Queensland,-27.539603,153.062177,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Forest Red Gum,2021,2,23,Australia,AU,Queensland,-27.526006,153.049132,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Was fast asleep,2022,5,9,Australia,AU,New South Wales,-34.766808,146.577117,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"IN a Brush Box same tree and a couple of metres above this Koala, https://inaturalist.ala.org.au/observations/195897298",2024,1,6,Australia,AU,Queensland,-27.543522,153.072582,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,9,29,Australia,AU,Queensland,-27.528517,153.092481,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,8,Australia,AU,Queensland,-27.527545,153.102814,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,20,Australia,AU,Queensland,-27.676135,151.588414,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Local Lawnton Road female koala.,2023,10,22,Australia,AU,Queensland,-27.283875,152.999438,EPSG:4326 +HUMAN_OBSERVATION,Melissa Liu,1,,,2023,10,20,Australia,AU,Australian Capital Territory,-35.46,148.91,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,5,2,Australia,AU,New South Wales,-33.076417,151.095153,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,On the move and hiding amongst Monkey Rope Vine,2020,2,10,Australia,AU,Queensland,-27.54997,153.059859,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - tag RIGHT ear - & joey,2023,8,18,Australia,AU,Queensland,-27.529356,153.110058,EPSG:4326 +HUMAN_OBSERVATION,kellybelly1998,1,,"Bimbi Park, Cape Otway, Victoria",2022,11,19,Australia,AU,Victoria,-38.834222,143.513356,EPSG:4326 +HUMAN_OBSERVATION,hamishg,1,,,2022,5,3,Australia,AU,Queensland,-27.433624,153.543507,EPSG:4326 +HUMAN_OBSERVATION,summerfell,1,,,2022,4,21,Australia,AU,Queensland,-27.817263,153.076339,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,10,2,Australia,AU,Queensland,-27.529069,153.114975,EPSG:4326 +HUMAN_OBSERVATION,Steve Donnellan,1,,,2024,3,1,Australia,AU,South Australia,-34.884272,138.648513,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,4,11,Australia,AU,New South Wales,-28.259453,153.402011,EPSG:4326 +HUMAN_OBSERVATION,karena_8805,1,,,2023,8,25,Australia,AU,Victoria,-38.834386,143.512392,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,,"Male mid in River Red Gum E. camaldulensis, planted by owner a few years ago.",2023,12,19,Australia,AU,Victoria,-37.907056,144.124328,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,7,15,Australia,AU,Queensland,-27.54845,153.059696,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,2,21,Australia,AU,Queensland,-27.545358,153.067946,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,7,14,Australia,AU,Queensland,-27.5255,153.092513,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2023,4,9,Australia,AU,Queensland,-26.376677,153.018733,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2023,12,24,Australia,AU,Queensland,-27.525732,153.092397,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknwn sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,10,16,Australia,AU,Queensland,-26.199667,151.772632,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,6,30,Australia,AU,South Australia,-34.865342,138.65673,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,11,13,Australia,AU,Queensland,-27.528392,153.104149,EPSG:4326 +HUMAN_OBSERVATION,gggpellas,1,,,2023,1,28,Australia,AU,Victoria,-38.838705,146.001283,EPSG:4326 +HUMAN_OBSERVATION,camille_caparros,1,,,2022,12,29,Australia,AU,South Australia,-34.999068,138.643407,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,11,2,Australia,AU,Queensland,-27.54584,153.073672,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,9,1,Australia,AU,Queensland,-27.429572,151.723787,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,T block,2024,11,17,Australia,AU,Queensland,-27.527018,153.091869,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,MALE,koala rescued by tkwr after bein moved off highway. observation by D Barling,2023,7,31,Australia,AU,Queensland,-27.407664,151.995769,EPSG:4326 +HUMAN_OBSERVATION,devil_uny,1,,,2022,4,15,Australia,AU,South Australia,-34.903579,138.700171,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,This koala scrambled up a galvanised wire fence. He is sitting on a wire.,2023,12,29,Australia,AU,Victoria,-37.652445,143.894048,EPSG:4326 +HUMAN_OBSERVATION,greg012345,1,,,2022,12,29,Australia,AU,Victoria,-38.38475,145.307938,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,21,Australia,AU,South Australia,-34.892412,138.720177,EPSG:4326 +HUMAN_OBSERVATION,emily_m_cook,1,,,2024,4,18,Australia,AU,Victoria,-38.836812,143.51555,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,29,Australia,AU,South Australia,-34.832802,138.737777,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,1,24,Australia,AU,Victoria,-37.639787,143.896371,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,4,22,Australia,AU,New South Wales,-33.076828,151.095414,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,4,5,Australia,AU,South Australia,-35.012874,138.670495,EPSG:4326 +HUMAN_OBSERVATION,Helen,1,,,2022,5,6,Australia,AU,Victoria,-38.337468,141.607627,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,,2023,11,9,Australia,AU,Queensland,-27.264008,152.0495,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,Mum with bub on back,2024,9,16,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2021,5,19,Australia,AU,South Australia,-34.979972,138.625508,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum with Joey in pouch. Unknown Stringybark and feeding on leaves,2021,10,21,Australia,AU,Queensland,-27.551096,153.057819,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,In Flooded Gum (Eucalyptus grandis) tree.,2023,3,12,Australia,AU,New South Wales,-28.258228,153.401033,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,16,Australia,AU,Queensland,-27.526824,153.090803,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2023,12,21,Australia,AU,South Australia,-34.969308,138.635464,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland- Mother and joey Cindy Crawford and joey,2023,11,3,Australia,AU,Queensland,-27.524594,153.093506,EPSG:4326 +HUMAN_OBSERVATION,Scott Warner,1,,,2024,1,4,Australia,AU,Queensland,-27.295994,152.229135,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,,2022,4,10,Australia,AU,New South Wales,-28.260549,153.399789,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,8,27,Australia,AU,Queensland,-27.256143,152.046218,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block,2024,10,4,Australia,AU,Queensland,-27.526636,153.090984,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2023,6,29,Australia,AU,South Australia,-34.918187,138.534217,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,Mum and bub,2024,10,18,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,10,14,Australia,AU,Queensland,-27.545178,153.072259,EPSG:4326 +HUMAN_OBSERVATION,jesseaiden,1,,,2023,1,26,Australia,AU,South Australia,-35.031292,138.737883,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,MALE,Roadside victim Was alive but dying died while I carried him off the road,2024,5,30,Australia,AU,Queensland,-27.987239,153.243984,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2020,9,15,Australia,AU,Queensland,-27.551492,153.058425,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,12,25,Australia,AU,Queensland,-27.527164,153.091824,EPSG:4326 +HUMAN_OBSERVATION,avocat,1,,,2024,10,4,Australia,AU,Victoria,-38.670559,143.85621,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,14,Australia,AU,Queensland,-27.529428,153.106736,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery - inside gates,2023,11,13,Australia,AU,Queensland,-27.527177,153.092046,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Ainslie called me to photograph this female and joey on her property.,2020,11,15,Australia,AU,New South Wales,-28.255356,153.378447,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,10,11,Australia,AU,Queensland,-27.548298,153.059058,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,23,Australia,AU,Queensland,-27.405908,152.01265,EPSG:4326 +HUMAN_OBSERVATION,lil_1,1,,,2022,2,14,Australia,AU,Victoria,-37.624122,144.094192,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Maisie B,2024,4,21,Australia,AU,Queensland,-27.526373,153.090756,EPSG:4326 +HUMAN_OBSERVATION,David,1,MALE,,2023,2,8,Australia,AU,South Australia,-34.872254,138.718696,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,2,28,Australia,AU,Queensland,-27.551848,153.057855,EPSG:4326 +HUMAN_OBSERVATION,codyhochen,1,,,2024,10,20,Australia,AU,Queensland,-27.475941,152.917198,EPSG:4326 +HUMAN_OBSERVATION,Sam S,1,MALE,"2 male koalas heard grunting 100 m apart. Photos of both. One in a broad leaf peppermint, the other in a manna gum.",2023,2,1,Australia,AU,Victoria,-37.018071,145.452197,EPSG:4326 +HUMAN_OBSERVATION,akorne,1,,,2024,9,15,Australia,AU,South Australia,-35.005527,138.639925,EPSG:4326 +HUMAN_OBSERVATION,eboys,1,FEMALE,"Female, untagged koala spotted with signs of cystitis. Wildcare was called but unfortunately this koala moved on before capture was possible.",2023,5,27,Australia,AU,Queensland,-28.008543,153.267634,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,1,14,Australia,AU,Queensland,-27.53005,153.104253,EPSG:4326 +HUMAN_OBSERVATION,Warwick Moyse,1,,,2020,10,9,Australia,AU,South Australia,-35.189302,138.598397,EPSG:4326 +HUMAN_OBSERVATION,Maria Duynisveld,1,,,2024,4,30,Australia,AU,New South Wales,-28.803875,153.378908,EPSG:4326 +HUMAN_OBSERVATION,venus5026,1,,,2023,3,21,Australia,AU,Victoria,-38.803096,143.534435,EPSG:4326 +HUMAN_OBSERVATION,Pete Woodall,1,,1861 second of two seen,2022,11,22,Australia,AU,South Australia,-35.707125,137.493488,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,,2024,11,23,Australia,AU,Queensland,-27.40575,152.001008,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area Cindy Crawford,2024,10,6,Australia,AU,Queensland,-27.525619,153.092376,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2024,4,6,Australia,AU,Queensland,-27.528489,153.092828,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Maisie and joey,2024,10,20,Australia,AU,Queensland,-27.527415,153.090986,EPSG:4326 +HUMAN_OBSERVATION,ballzak,1,,,2022,1,19,Australia,AU,South Australia,-34.816393,138.96336,EPSG:4326 +HUMAN_OBSERVATION,Pete Petinatos,1,,,2023,3,7,Australia,AU,Victoria,-38.550125,143.744645,EPSG:4326 +HUMAN_OBSERVATION,Olivia,1,,Unfortunately this little one wasn't alive when we found him.,2024,9,29,Australia,AU,Queensland,-27.888502,152.621389,EPSG:4326 +HUMAN_OBSERVATION,teish__,1,,,2024,3,15,Australia,AU,Queensland,-27.551602,153.057641,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,19,Australia,AU,Queensland,-27.52904,153.104293,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,In nursery grounds Mother and joey,2024,8,11,Australia,AU,Queensland,-27.528468,153.092307,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,7,Australia,AU,Queensland,-27.527323,153.107262,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,11,10,Australia,AU,Queensland,-27.528107,153.109872,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,5,20,Australia,AU,Queensland,-27.901167,153.368857,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,,2024,2,2,Australia,AU,New South Wales,-29.545658,150.564487,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,2,25,Australia,AU,Victoria,-38.671228,146.163772,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2021,11,20,Australia,AU,Queensland,-27.734287,153.101956,EPSG:4326 +HUMAN_OBSERVATION,Cobi Calyx,1,,,2022,2,28,Australia,AU,South Australia,-35.02025,138.574814,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.775017,143.610991,EPSG:4326 +HUMAN_OBSERVATION,em_and_wild,1,,"Wild koala, chlamydia affected- WIRES rescue. Undergoing treatment at Friends of the Koala, Lismore.",2024,9,9,Australia,AU,New South Wales,-30.411403,151.579117,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,1,7,Australia,AU,Queensland,-27.510538,153.084074,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,mum and baby,2022,12,22,Australia,AU,Queensland,-27.54113,153.068811,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,2,Australia,AU,Queensland,-27.530623,153.100347,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria & Tristania woodland area - middle near fence towards lower car park,2023,6,25,Australia,AU,Queensland,-27.52492,153.09325,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Believe this was the same elderly male seen in the same group of trees recently. I have more photos.,2020,7,12,Australia,AU,New South Wales,-28.254207,153.376892,EPSG:4326 +HUMAN_OBSERVATION,ljbawden,1,,,2023,11,6,Australia,AU,Victoria,-37.155228,148.25737,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"Vehicle strike, deceased, (voluntary rescue - died after 3 days rehabilitation)",2022,6,2,Australia,AU,Victoria,-37.613698,143.910734,EPSG:4326 +HUMAN_OBSERVATION,Bob iNaturalist,1,,,2024,4,12,Australia,AU,South Australia,-35.009544,138.646183,EPSG:4326 +HUMAN_OBSERVATION,Chris Munson,1,,Koala seen two days running in the same tree. It may have had a joey.,2021,8,22,Australia,AU,New South Wales,-34.117957,150.790886,EPSG:4326 +HUMAN_OBSERVATION,franhills,1,,,2024,9,29,Australia,AU,South Australia,-35.026703,138.910476,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,12,27,Australia,AU,Victoria,-37.641163,143.901829,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In a M.quinquennervia.,2020,10,20,Australia,AU,Queensland,-27.549787,153.060375,EPSG:4326 +HUMAN_OBSERVATION,Zoë Davis,1,,,2022,12,24,Australia,AU,Victoria,-38.834084,143.518683,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,think is a male.,2020,8,30,Australia,AU,New South Wales,-28.253821,153.376593,EPSG:4326 +HUMAN_OBSERVATION,Annika T,1,,,2021,11,29,Australia,AU,Victoria,-37.908777,147.754463,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Aldi gates - next to entrance,2024,10,21,Australia,AU,Queensland,-27.526608,153.093223,EPSG:4326 +HUMAN_OBSERVATION,johjesse,1,,Likely male,2024,11,14,Australia,AU,Queensland,-27.297405,152.042542,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,"-27.585456, 151.994171",2022,11,27,Australia,AU,Queensland,-27.585456,151.994171,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,14,Australia,AU,Queensland,-27.527217,153.108116,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,15,Australia,AU,Queensland,-27.525864,153.090834,EPSG:4326 +HUMAN_OBSERVATION,tracyrout,1,,,2023,3,11,Australia,AU,Queensland,-27.525193,153.06865,EPSG:4326 +HUMAN_OBSERVATION,sealmonkey,1,,,2023,1,3,Australia,AU,Victoria,-38.648857,145.683655,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,4,5,Australia,AU,South Australia,-35.013633,138.639167,EPSG:4326 +HUMAN_OBSERVATION,lunch33,1,,,2020,3,9,Australia,AU,South Australia,-34.824762,135.681503,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"Diurnal counts: 28/7 9:45-10:15 30 minutes 1 observer JoT 1 koala. 29/7 Male heard to the east, 1:35am",2024,7,28,Australia,AU,Queensland,-27.823536,152.994026,EPSG:4326 +HUMAN_OBSERVATION,jameslambo,1,,,2022,12,30,Australia,AU,Victoria,-38.669359,143.861717,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,30,Australia,AU,South Australia,-34.892536,138.716493,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2024,4,19,Australia,AU,South Australia,-34.863963,138.666433,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Sport n rec picnic area,2024,9,15,Australia,AU,Queensland,-27.525461,153.092119,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tennis court tree,2024,9,11,Australia,AU,Queensland,-27.525331,153.092651,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,18,Australia,AU,Queensland,-27.531495,153.105259,EPSG:4326 +HUMAN_OBSERVATION,Oscar,1,,,2023,8,5,Australia,AU,Queensland,-27.493404,153.403006,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,7,Australia,AU,Queensland,-27.823813,152.993412,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear of woodland near blue waste bin,2023,5,28,Australia,AU,Queensland,-27.528439,153.092422,EPSG:4326 +HUMAN_OBSERVATION,Louis Backstrom,1,,,2022,12,4,Australia,AU,Queensland,-27.527931,153.106864,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy Koala Crossing the Road from Polzin Farm to Trevean Gardens Estate. Koala escorted off the road to saftety & Video taken by C.Gray (C/- Toowoomba Koala and Wildlife Rescue),2022,11,1,Australia,AU,Queensland,-27.432349,151.932822,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2023,1,6,Australia,AU,Queensland,-28.06992,152.827695,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,Mansfield study,2022,3,7,Australia,AU,Queensland,-27.530037,153.104295,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Submitted by Kevin Jordan. Alive, healthy, adult. Sex unknown.",2020,6,1,Australia,AU,Queensland,-26.118453,152.184105,EPSG:4326 +HUMAN_OBSERVATION,caitlinr1403,1,,? What ear tag in right ear,2024,2,3,Australia,AU,Queensland,-27.778049,152.732484,EPSG:4326 +HUMAN_OBSERVATION,shei1ad,1,,,2023,11,17,Australia,AU,South Australia,-34.831007,138.736198,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - ? crusty RIGHT eye,2024,1,23,Australia,AU,Queensland,-27.527576,153.110164,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,13,Australia,AU,Queensland,-27.515026,153.079788,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2020,1,24,Australia,AU,Queensland,-27.548134,153.058456,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,9,14,Australia,AU,Queensland,-27.526815,153.09021,EPSG:4326 +HUMAN_OBSERVATION,fs_australia,1,,,2023,3,19,Australia,AU,Queensland,-27.549426,152.860693,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"Third adult (probably female) in stringybark, within 50 metres of male and of mother and baby.",2020,1,15,Australia,AU,New South Wales,-30.519748,151.521037,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,4,18,Australia,AU,Queensland,-27.538775,153.037351,EPSG:4326 +HUMAN_OBSERVATION,smophee,1,,,2023,8,20,Australia,AU,Victoria,-38.825237,146.113145,EPSG:4326 +HUMAN_OBSERVATION,stuart inchley,1,,Strzelecki koala,2023,12,3,Australia,AU,Victoria,-38.575448,146.197055,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,21,Australia,AU,Queensland,-27.544712,153.071605,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,single Koala. May be one of the two males I hear at night - one this side of the street and one down on the spur on the other side of our house.,2020,11,26,Australia,AU,New South Wales,-28.254031,153.377536,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2022,4,4,Australia,AU,Queensland,-27.542598,153.052177,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Female with joey. Healthy. Observed by Dianne Prideaux. Submitted via email.,2022,4,15,Australia,AU,Queensland,-26.176979,151.692618,EPSG:4326 +HUMAN_OBSERVATION,jameslambo,1,,,2022,12,30,Australia,AU,Victoria,-38.669359,143.861717,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,With Joey in a Tallowwood,2020,7,20,Australia,AU,Queensland,-27.54973,153.059897,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,Between house and machinery shed. Healthy.,2024,11,11,Australia,AU,Queensland,-27.327713,151.933563,EPSG:4326 +HUMAN_OBSERVATION,Jo Burrows,1,,,2020,6,7,Australia,AU,Queensland,-27.228297,153.077519,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,Dead male on side of track,2024,5,30,Australia,AU,New South Wales,-33.078431,151.0887,EPSG:4326 +HUMAN_OBSERVATION,brucewa,1,,,2023,10,21,Australia,AU,New South Wales,-28.273669,153.442414,EPSG:4326 +HUMAN_OBSERVATION,jessica_laura,1,,,2021,12,10,Australia,AU,Victoria,-38.668063,143.860763,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,9,22,Australia,AU,Queensland,-27.411337,152.004714,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2020,9,24,Australia,AU,New South Wales,-28.257898,153.400658,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,No ear tag. This animal was on the ground when we saw it then climbed a tree to about 1m agl.,2024,11,4,Australia,AU,Queensland,-27.509098,153.076683,EPSG:4326 +HUMAN_OBSERVATION,lizgould,1,,QTfN property,2021,10,16,Australia,AU,Queensland,-27.789277,152.779659,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2023,3,28,Australia,AU,Queensland,-27.847703,153.1055,EPSG:4326 +HUMAN_OBSERVATION,Annika T,1,,,2021,11,29,Australia,AU,Victoria,-37.908777,147.754463,EPSG:4326 +HUMAN_OBSERVATION,wallingford,1,,,2022,11,22,Australia,AU,Queensland,-27.673478,151.542391,EPSG:4326 +HUMAN_OBSERVATION,johjesse,1,,"Mum & baby, high in tree.",2024,10,29,Australia,AU,Queensland,-27.300235,152.042204,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,8,Australia,AU,South Australia,-34.891295,138.730281,EPSG:4326 +HUMAN_OBSERVATION,graeme lunt,1,,,2024,9,26,Australia,AU,Victoria,-37.689472,143.996261,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,10,30,Australia,AU,New South Wales,-28.260798,153.399626,EPSG:4326 +HUMAN_OBSERVATION,maria_and_david,1,,,2021,1,17,Australia,AU,Victoria,-37.23722,144.825003,EPSG:4326 +HUMAN_OBSERVATION,cootaame,1,FEMALE,,2021,4,24,Australia,AU,New South Wales,-32.305351,151.818629,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Looked healthy, within 100m of another",2024,10,17,Australia,AU,Queensland,-27.331772,152.611253,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2024,9,29,Australia,AU,Queensland,-27.527183,153.091455,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,,2020,9,25,Australia,AU,Queensland,-27.565205,153.134125,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy older koala. Observation recorded by T. Hungerford for Toowoomba Koala & Wildlife Rescue.,2022,11,30,Australia,AU,Queensland,-27.172658,151.270821,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2024,2,23,Australia,AU,Queensland,-27.530565,153.104323,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2024,7,29,Australia,AU,Victoria,-37.595519,143.876915,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Mother and Joey in Engadine west of A1,2022,8,14,Australia,AU,New South Wales,-34.066781,151.014797,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Male. Healthy. Along Mondure Cushnie Rd. 4 x koala observed along the road on the same day. Observed Wendy Taylor. Submitted via FB (South Burnett Koala Watch),2023,11,24,Australia,AU,Queensland,-26.199667,151.772632,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2024,8,20,Australia,AU,Queensland,-27.32557,151.935028,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,,2024,1,25,Australia,AU,Victoria,-37.747322,142.031539,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear - known as Bozo,2023,4,15,Australia,AU,Queensland,-27.526492,153.109668,EPSG:4326 +HUMAN_OBSERVATION,Stephanie Todd,1,,,2022,10,13,Australia,AU,New South Wales,-33.216545,150.756486,EPSG:4326 +HUMAN_OBSERVATION,michikomarty,1,,Young koala,2021,11,28,Australia,AU,Queensland,-27.714466,151.522174,EPSG:4326 +HUMAN_OBSERVATION,laurieleaf,1,,,2024,10,23,Australia,AU,South Australia,-35.014033,138.760469,EPSG:4326 +HUMAN_OBSERVATION,nicken,1,,,2024,1,2,Australia,AU,Victoria,-37.953347,144.441313,EPSG:4326 +HUMAN_OBSERVATION,hannahva,1,,1 individual sited on Dreamworld property outskirts from footpath on Foxwell road. No koala safe fencing and lots of trees hanging over fence line to 5 lanes of traffic. Hope they stay safe! Was a pleasure to spot walking home from train station at night.,2023,2,17,Australia,AU,Queensland,-27.859777,153.311682,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,Female koala Robin.,2024,11,6,Australia,AU,Queensland,-27.413733,152.002992,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Rear entrance to nursery Mother and joey,2024,8,25,Australia,AU,Queensland,-27.527069,153.092002,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Malcolm Spry. Submitted via email from Mike Goebel,2022,6,21,Australia,AU,Queensland,-25.629824,151.619442,EPSG:4326 +HUMAN_OBSERVATION,daphnemona1925,1,,,2022,11,19,Australia,AU,Queensland,-27.64865,151.70752,EPSG:4326 +HUMAN_OBSERVATION,Samuel Lee,1,,,2023,5,15,Australia,AU,Victoria,-38.732129,143.371808,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,3,2,Australia,AU,Queensland,-27.528084,153.092864,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,3,Australia,AU,South Australia,-34.889168,138.732029,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,2,Australia,AU,Queensland,-27.526955,153.110285,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,1,21,Australia,AU,Queensland,-27.527528,153.090895,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,3,27,Australia,AU,Queensland,-27.507529,153.082836,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,Big male koala -just couldn’t zoom in enough with my phone,2023,10,27,Australia,AU,Queensland,-26.97513,152.078995,EPSG:4326 +HUMAN_OBSERVATION,Konrad Szylar,1,,,2022,12,31,Australia,AU,New South Wales,-34.101868,150.82217,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,2 koalas sitting very close to each other in tree. I think** they might be mother and offspring.,2023,9,17,Australia,AU,Queensland,-27.284482,153.000816,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,9,27,Australia,AU,South Australia,-34.887912,138.727032,EPSG:4326 +HUMAN_OBSERVATION,Emma Ginman,1,,,2023,10,1,Australia,AU,South Australia,-35.045077,138.680285,EPSG:4326 +HUMAN_OBSERVATION,Daniel J. Aguirre Howes,1,,,2024,9,15,Australia,AU,Queensland,-19.129916,146.868226,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,2 koalas in tree.,2023,10,4,Australia,AU,Queensland,-27.283799,152.999354,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Juvenile. Female. Rescued as health is uncertain. Mother was hit by motor vehicle and sustained broken ribs on left side and serious head injuries. Observed and rescued by Wendy Taylor. Submitted via msg. Mothers record: https://www.inaturalist.org/observations/249595374,2024,10,29,Australia,AU,Queensland,-26.332429,152.053237,EPSG:4326 +HUMAN_OBSERVATION,Garry Brook,1,,,2024,3,27,Australia,AU,South Australia,-35.06803,138.549088,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2024,8,6,Australia,AU,Victoria,-36.900722,145.467054,EPSG:4326 +HUMAN_OBSERVATION,bertbohosouth,1,,"Typical Koala scats. No animal in sight, but Koalas recorded on this property previously. These scats found in a stand of River Red Gum.",2024,8,6,Australia,AU,Victoria,-37.025536,145.649369,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2022,10,29,Australia,AU,South Australia,-34.963825,138.714183,EPSG:4326 +HUMAN_OBSERVATION,Isaac Clarey,1,,,2020,12,29,Australia,AU,Victoria,-38.140404,141.394801,EPSG:4326 +HUMAN_OBSERVATION,albt01,1,,,2022,5,6,Australia,AU,Queensland,-27.163622,152.937897,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A18 RIGHT ear - Campo,2023,9,15,Australia,AU,Queensland,-27.528315,153.110699,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Koala photo taken with a mobile phone by Paul.,2021,3,30,Australia,AU,New South Wales,-28.261188,153.398238,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,9,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Tim Bawden,1,,,2023,11,11,Australia,AU,Victoria,-37.952463,146.075547,EPSG:4326 +HUMAN_OBSERVATION,leithallb,1,,4386,2023,9,28,Australia,AU,Queensland,-27.539771,153.033118,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2022,2,20,Australia,AU,Victoria,-38.627997,145.727418,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,,2023,11,25,Australia,AU,Queensland,-27.267083,152.05002,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Birt Rd Kingaroy 9 Jun 21. Observed by Steve Reynolds. Forwarded by FB comment,2021,6,9,Australia,AU,Queensland,-26.477884,151.86683,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,10,11,Australia,AU,Queensland,-27.146062,152.616081,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2024,11,17,Australia,AU,South Australia,-34.925045,138.69037,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,6,Australia,AU,Queensland,-27.641111,151.678021,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed along boundary fence by Wendy Taylor. Submitted via msg.,2024,8,4,Australia,AU,Queensland,-26.146953,151.744913,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,6,26,Australia,AU,Queensland,-26.166516,151.815231,EPSG:4326 +HUMAN_OBSERVATION,Jason Ramsay,1,,Scat found under Eucalyptus microcorys.,2023,4,5,Australia,AU,Queensland,-27.370469,152.938005,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"Two adult animals in adjacent trees, Boonah Rail Trail. Lower animal is the female with joey reported on 23/7 and 25/7. Upper animal is relatively smaller, has a lightly brown-stained bottom.",2024,7,29,Australia,AU,Queensland,-27.986515,152.677444,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"Koala counts: 11/7 Diurnal survey 2 observers AT, JoT. 4:00pm-5:00pm 1 hour 0 koalas. 11/7 6:30pm -7:30pm Spotlight survey. 1 observer JoT 1 koala, glider, 2 brush tail possums. 12/7 diurnal survey 1 observer AT 1:00pm-2:00pm 1 hour 0 koalas.",2024,7,11,Australia,AU,Queensland,-27.824294,152.991135,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2020,6,5,Australia,AU,Queensland,-27.226381,153.072769,EPSG:4326 +HUMAN_OBSERVATION,thismiaman,1,,,2024,2,21,Australia,AU,South Australia,-35.842097,137.428025,EPSG:4326 +HUMAN_OBSERVATION,rubbery,1,,In top of small smooth-barked Eucalyptus in Penfold Park,2021,10,20,Australia,AU,South Australia,-34.918435,138.681007,EPSG:4326 +HUMAN_OBSERVATION,Peta Jansma-Reid,1,,,2024,9,1,Australia,AU,Queensland,-27.287717,152.997156,EPSG:4326 +HUMAN_OBSERVATION,cv173,1,,Fresh scat and scars on trunk of E. Tereticornis.,2024,10,15,Australia,AU,Queensland,-27.825204,152.615121,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,15,Australia,AU,Queensland,-27.529401,153.105036,EPSG:4326 +HUMAN_OBSERVATION,Julzi,1,,,2023,1,11,Australia,AU,Queensland,-27.225283,153.070175,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy Koala moving between habitats at Kleinton. Observation by K Chardon for TKWR,2023,8,21,Australia,AU,Queensland,-27.427871,151.955845,EPSG:4326 +HUMAN_OBSERVATION,eanthony,1,,In Eucalyptus nicholli. Weather overnight very windy and intense rain.,2022,8,4,Australia,AU,Victoria,-38.487919,146.203719,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,11,Australia,AU,Queensland,-27.526148,153.090608,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,30,Australia,AU,South Australia,-34.88958,138.731213,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male,2023,9,29,Australia,AU,Queensland,-27.528915,153.111377,EPSG:4326 +HUMAN_OBSERVATION,John Cull,1,,,2021,4,14,Australia,AU,Victoria,-37.922672,147.730786,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2024,2,5,Australia,AU,Queensland,-27.544928,153.076867,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near e block and circular drive,2024,5,19,Australia,AU,Queensland,-27.526316,153.090671,EPSG:4326 +HUMAN_OBSERVATION,sandraharding,1,,On edge of road,2020,9,7,Australia,AU,Queensland,-27.528988,153.148734,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"Typical male calling but also has another call/sound at 16 sec, 31, 50, 53, 64, 75 sec marks, possibly a female koala responding? Original sound file has been amplified and edited.",2023,6,13,Australia,AU,Queensland,-27.510543,153.07014,EPSG:4326 +HUMAN_OBSERVATION,kittsw,1,,,2022,3,11,Australia,AU,South Australia,-34.872197,138.655559,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,4,5,Australia,AU,South Australia,-35.018456,138.656764,EPSG:4326 +HUMAN_OBSERVATION,einadia,1,,Asleep in a Willow.,2024,5,20,Australia,AU,South Australia,-34.948058,138.66838,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Next to e block Mother and joey,2024,8,18,Australia,AU,Queensland,-27.526752,153.090864,EPSG:4326 +HUMAN_OBSERVATION,Hannah Brown,1,,,2023,2,13,Australia,AU,Victoria,-38.421309,144.958991,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,12,14,Australia,AU,Queensland,-27.949053,153.211682,EPSG:4326 +HUMAN_OBSERVATION,Hanna Clupea,1,,,2020,2,28,Australia,AU,Queensland,-27.48374,153.411771,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,MALE,,2024,8,25,Australia,AU,Victoria,-38.357558,146.388285,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,5,20,Australia,AU,Queensland,-27.900849,153.37362,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,11,16,Australia,AU,Queensland,-27.545589,153.074324,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Koala and a possum,2022,11,19,Australia,AU,New South Wales,-33.197666,151.039313,EPSG:4326 +HUMAN_OBSERVATION,Graham Possingham,1,MALE,,2021,9,14,Australia,AU,Victoria,-38.094593,144.276121,EPSG:4326 +HUMAN_OBSERVATION,ryano242,1,,,2020,4,26,Australia,AU,Queensland,-27.68477,152.730754,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,Mum with joey. In mature large Tallowwood tree.,2022,9,30,Australia,AU,New South Wales,-28.26158,153.397518,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,,"Large koala, missing right eye. Very likely to be the same koala also missing right eye, seen recently (one month ago) in same area; he was a male, courting a female. Clean rump (mark on tree was tree marking, not from koala...photos taken on dusk using bad camera don't show it well)",2021,6,4,Australia,AU,Queensland,-27.458357,152.403251,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Baby,2022,9,30,Australia,AU,Queensland,-27.545551,153.073405,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,9,23,Australia,AU,Queensland,-27.79983,151.590897,EPSG:4326 +HUMAN_OBSERVATION,kimmie0987,1,,,2022,11,6,Australia,AU,Queensland,-27.40148,153.440062,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,13,Australia,AU,Queensland,-27.527467,153.09097,EPSG:4326 +HUMAN_OBSERVATION,tallangalook,1,,,2023,6,11,Australia,AU,Victoria,-37.092042,145.551912,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,15,Australia,AU,Queensland,-27.529492,153.115476,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3136 (Photo: Bob Brown),2022,9,29,Australia,AU,Queensland,-27.53118,152.1833,EPSG:4326 +HUMAN_OBSERVATION,wombatplace,1,,Sighting and photos (c) david19.,2022,1,8,Australia,AU,South Australia,-35.069047,138.700072,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"I heard it bellow so went to look for it, so may be male.",2021,1,11,Australia,AU,New South Wales,-28.25416,153.377568,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,28,Australia,AU,Queensland,-27.525859,153.090741,EPSG:4326 +HUMAN_OBSERVATION,dingopete,1,,,2023,10,28,Australia,AU,Queensland,-27.341087,152.94853,EPSG:4326 +HUMAN_OBSERVATION,Jonathan M,1,,,2020,1,1,Australia,AU,Victoria,-38.800582,143.513423,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,Close but faint low regular growl. Hard to hear on this recording (slightly louder growl at 19’?to 22’?,2024,5,26,Australia,AU,Queensland,-27.823711,152.992339,EPSG:4326 +HUMAN_OBSERVATION,Eryn Larcombe,1,,,2024,8,31,Australia,AU,Queensland,-27.918783,153.377074,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Did not want to be rescued. Happy where he is.,2023,12,26,Australia,AU,Queensland,-27.257221,152.046337,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,12,7,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,,2023,7,6,Australia,AU,Queensland,-27.832985,153.369007,EPSG:4326 +HUMAN_OBSERVATION,linger,1,,,2021,1,26,Australia,AU,Victoria,-37.855206,144.194465,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,29,Australia,AU,Queensland,-27.545878,153.072581,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2022,6,15,Australia,AU,Queensland,-28.195815,152.523898,EPSG:4326 +HUMAN_OBSERVATION,danilomas,1,,"Species identified during ecology survey conducted by Upscale Carbon. Survey led by Principal Ecologist, Sarah Tune and Ecologist, Dani Lomas.",2024,11,7,Australia,AU,Queensland,-27.241482,152.6136,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark,2020,10,30,Australia,AU,Queensland,-27.550552,153.057965,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,20,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,grizzly_schultz,1,,,2022,10,30,Australia,AU,Queensland,-27.457602,152.503635,EPSG:4326 +HUMAN_OBSERVATION,Ben Fisher,1,,,2020,2,28,Australia,AU,Victoria,-37.628418,144.073013,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear of Tristania & Wisteria Woodland,2023,10,29,Australia,AU,Queensland,-27.524883,153.093091,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,,Observation by Judy Stagg-Fyfe,2022,10,30,Australia,AU,Queensland,-27.448836,152.486746,EPSG:4326 +HUMAN_OBSERVATION,Dundas Nature Refuge - D'Aguilar Ranges,1,,,2023,6,26,Australia,AU,Queensland,-27.332008,152.611393,EPSG:4326 +HUMAN_OBSERVATION,Chase DeJarnett,1,,,2024,5,5,Australia,AU,Queensland,-19.127711,146.868317,EPSG:4326 +HUMAN_OBSERVATION,caufee,1,,,2024,5,24,Australia,AU,Victoria,-38.172413,145.168167,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Mum with Joey.,2023,7,20,Australia,AU,New South Wales,-28.275605,153.394335,EPSG:4326 +HUMAN_OBSERVATION,Owen Gale,1,,,2020,7,23,Australia,AU,South Australia,-34.909964,138.732256,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Believe this is the female, whose joey just became independent",2021,11,5,Australia,AU,New South Wales,-28.254047,153.377446,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,FEMALE,"A koala and two Common Ringtail possums sharing a Cherry Ballart Exocarpos cupressiformis on a warm day. It is not unusual for either species to roost in these trees on hot days, but a little more unusual to see them roosting in the same tree. Last pic is compiled from two photos overlaid to show the relative positions of the two species - pink for koala, blue for ringtails. Observation duplicated for each species.",2023,10,19,Australia,AU,Victoria,-37.957933,144.414049,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in a Eucalyptus tereticornis. The tree with loads of sign of regular koala use.,2024,6,20,Australia,AU,Queensland,-27.86769,152.745547,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,5,6,Australia,AU,Queensland,-27.527333,153.092304,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.775271,143.610842,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,10,28,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,jwm689,1,,,2020,3,8,Australia,AU,Victoria,-38.801805,143.47709,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.363769,145.316482,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,7,13,Australia,AU,Queensland,-27.528052,153.093116,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey,2024,5,1,Australia,AU,Queensland,-27.530114,153.103292,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2021,3,6,Australia,AU,South Australia,-34.991294,138.631561,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,Mum with joey.,2021,7,27,Australia,AU,New South Wales,-28.2578,153.40062,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - white tag LEFT ear - Bandit,2024,6,1,Australia,AU,Queensland,-27.529058,153.111718,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,11,5,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Brown female and joey. They had a favourite tree they used to visit and a specific branch. agog across the neighbour's drive which was their favourite!,2020,9,27,Australia,AU,New South Wales,-28.254084,153.377444,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,29,Australia,AU,Queensland,-27.546092,153.073596,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,Appears healthy - female - sitting in branch of fallen tree surrounded by vines,2023,4,20,Australia,AU,Queensland,-27.548873,153.059178,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2021,11,13,Australia,AU,Queensland,-27.53592,153.054982,EPSG:4326 +HUMAN_OBSERVATION,mbp349,1,,"Forts Walk, Magnetic Island NP, Magnetic Island",2023,8,24,Australia,AU,Queensland,-19.128829,146.868271,EPSG:4326 +HUMAN_OBSERVATION,Chris Clarke,1,,,2024,9,28,Australia,AU,Victoria,-38.35737,146.388922,EPSG:4326 +HUMAN_OBSERVATION,tracyrout,1,,Mum and baby,2021,10,27,Australia,AU,Queensland,-27.540619,153.076194,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2020,11,24,Australia,AU,Queensland,-27.551773,153.058198,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg,2023,12,1,Australia,AU,Queensland,-26.155059,151.749835,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Male yellow tag left ear #1303 In tree behind tennis courts and next to old shed,2024,5,19,Australia,AU,Queensland,-27.525163,153.093357,EPSG:4326 +HUMAN_OBSERVATION,Ian Scholey,1,,,2021,9,8,Australia,AU,Victoria,-38.42136,144.959219,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,7,21,Australia,AU,Queensland,-27.52801,153.092783,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,11,18,Australia,AU,Queensland,-27.546342,153.058672,EPSG:4326 +HUMAN_OBSERVATION,Richard Boon,1,,,2024,5,23,Australia,AU,Victoria,-37.877778,142.10053,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy looking, fairly alert given the 35 degree temperature, possibly female due to small size but couldn’t confirm. First of four koalas seen on walk.",2022,12,6,Australia,AU,Queensland,-27.700763,153.191922,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,MALE,,2024,10,27,Australia,AU,South Australia,-34.866176,138.663515,EPSG:4326 +HUMAN_OBSERVATION,Graham Armstrong,1,,,2022,8,30,Australia,AU,South Australia,-34.903932,138.708058,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In triangle near cafeteria,2024,6,9,Australia,AU,Queensland,-27.526919,153.092007,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown sick Eucalyptus. Same female and Joey from last week,2021,6,16,Australia,AU,Queensland,-27.551571,153.057187,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,1,Australia,AU,South Australia,-34.892685,138.716562,EPSG:4326 +HUMAN_OBSERVATION,Anne-Marie Griffin,1,,,2023,12,28,Australia,AU,New South Wales,-33.753478,149.408161,EPSG:4326 +HUMAN_OBSERVATION,Gen C,1,,,2023,9,10,Australia,AU,South Australia,-35.005194,138.646133,EPSG:4326 +HUMAN_OBSERVATION,teripschool,1,,,2023,12,5,Australia,AU,Victoria,-37.0132,145.553987,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,18,Australia,AU,Queensland,-27.528043,153.109579,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,7,4,Australia,AU,Queensland,-26.154357,151.748892,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,7,13,Australia,AU,Queensland,-27.545928,153.074126,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2022,5,28,Australia,AU,Queensland,-28.026134,152.562097,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Spotted by Jamie and Russ,2024,7,12,Australia,AU,Queensland,-27.649679,152.900786,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum - Niki - & joey Charlie in adjacent trees,2024,4,22,Australia,AU,Queensland,-27.528467,153.103881,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2020,8,2,Australia,AU,Queensland,-27.5392,153.058872,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2024,1,16,Australia,AU,South Australia,-34.935875,138.698595,EPSG:4326 +HUMAN_OBSERVATION,Julie Overton,1,,,2022,9,26,Australia,AU,New South Wales,-32.706028,152.063308,EPSG:4326 +HUMAN_OBSERVATION,Lynne M,1,,Found in the middle of an 'unofficial' track leading from Jerusalem Fall to the Chicester River. Body looked very thin. No obvious sign of injury which might have caused death. Found in Eucalypt forest with known Koala food trees present.,2024,6,12,Australia,AU,New South Wales,-32.2349,151.700401,EPSG:4326 +HUMAN_OBSERVATION,David,1,,,2022,12,13,Australia,AU,South Australia,-34.871594,138.713367,EPSG:4326 +HUMAN_OBSERVATION,Jason Ramsay,1,,Apologies for the grainy picture.,2024,7,13,Australia,AU,Queensland,-27.287154,152.92369,EPSG:4326 +HUMAN_OBSERVATION,faufauh,1,,,2020,11,17,Australia,AU,Queensland,-27.534973,153.22121,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,With small joey on E.tereticornis.,2021,10,11,Australia,AU,Queensland,-27.546535,153.037252,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,,2023,11,2,Australia,AU,Queensland,-27.510319,153.088467,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Make - strong scent and testicles visible Very small,2023,2,1,Australia,AU,Queensland,-27.526817,153.092864,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland Front,2023,11,11,Australia,AU,Queensland,-27.524318,153.093511,EPSG:4326 +HUMAN_OBSERVATION,bankside106,1,FEMALE,,2021,10,13,Australia,AU,Queensland,-27.544362,153.046244,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,12,31,Australia,AU,Queensland,-27.508105,153.081956,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lower Wisteria car park,2023,5,23,Australia,AU,Queensland,-27.524964,153.09266,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2024,3,13,Australia,AU,Queensland,-27.55383,152.114958,EPSG:4326 +HUMAN_OBSERVATION,Deborah Metters,1,,,2024,10,12,Australia,AU,Queensland,-27.566372,152.111438,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,18,Australia,AU,South Australia,-34.889588,138.734047,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Photo by Ray and Georgie Thornton of small koala in small trees outside office window,2020,2,25,Australia,AU,New South Wales,-28.25405,153.377208,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - green tag LEFT ear - Joe - known as Bozo,2023,8,5,Australia,AU,Queensland,-27.52718,153.107652,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2024,7,19,Australia,AU,Queensland,-27.358333,152.074445,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near e block,2024,1,21,Australia,AU,Queensland,-27.526316,153.090728,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,4,Australia,AU,Queensland,-27.526299,153.090712,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,5,11,Australia,AU,Queensland,-27.511997,153.083274,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,7,Australia,AU,Queensland,-27.527783,153.092233,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,10,29,Australia,AU,New South Wales,-28.257805,153.400623,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,24,Australia,AU,Queensland,-27.545992,153.073735,EPSG:4326 +HUMAN_OBSERVATION,sporopat,1,,,2022,3,18,Australia,AU,Victoria,-37.580314,144.117782,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,5,3,Australia,AU,Victoria,-37.652902,143.924375,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,6,23,Australia,AU,Queensland,-27.526499,153.090346,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Young female,2023,4,25,Australia,AU,Queensland,-27.527262,153.111164,EPSG:4326 +HUMAN_OBSERVATION,cracticus,1,,,2020,1,15,Australia,AU,Victoria,-38.835277,143.513485,EPSG:4326 +HUMAN_OBSERVATION,Kevin,1,,,2023,10,13,Australia,AU,Queensland,-27.550167,153.03476,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland middle,2024,3,31,Australia,AU,Queensland,-27.528327,153.092408,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Maisie and joey,2024,8,17,Australia,AU,Queensland,-27.526934,153.090751,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,5,19,Australia,AU,New South Wales,-28.260549,153.402924,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,2,Australia,AU,Queensland,-27.525799,153.090767,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,3,9,Australia,AU,Victoria,-38.671045,146.164658,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Tristania & Wisteria Woodland Male scent gland visible,2024,7,13,Australia,AU,Queensland,-27.524055,153.093023,EPSG:4326 +HUMAN_OBSERVATION,laurenbeekman,1,,,2021,11,15,Australia,AU,Queensland,-27.736642,153.189955,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear,2023,10,23,Australia,AU,Queensland,-27.531538,153.10517,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,8,2,Australia,AU,Queensland,-27.5482,153.074532,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,,2021,5,28,Australia,AU,New South Wales,-28.261273,153.398034,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2023,8,8,Australia,AU,Queensland,-28.09554,152.85345,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2022,5,16,Australia,AU,Victoria,-38.765948,143.500686,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In unknown defoliated tree,2020,8,3,Australia,AU,Queensland,-27.54713,153.058393,EPSG:4326 +HUMAN_OBSERVATION,slamshed,1,,,2024,7,7,Australia,AU,Queensland,-27.532608,152.47329,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,17,Australia,AU,South Australia,-34.892724,138.722389,EPSG:4326 +HUMAN_OBSERVATION,philip-roetman,1,,,2022,4,2,Australia,AU,South Australia,-35.03267,138.628249,EPSG:4326 +HUMAN_OBSERVATION,maximto,1,,,2024,11,14,Australia,AU,Queensland,-28.301322,151.21756,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Bozo - male with green tag LEFT ear,2023,5,31,Australia,AU,Queensland,-27.527052,153.107671,EPSG:4326 +HUMAN_OBSERVATION,Marie Tarrant,1,,,2024,9,15,Australia,AU,Queensland,-28.9191,151.57719,EPSG:4326 +HUMAN_OBSERVATION,blairwickham,1,,,2022,3,24,Australia,AU,South Australia,-35.814758,137.462583,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.922433,147.729813,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,2,17,Australia,AU,Queensland,-26.401998,152.654799,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Male, Looked a bit unwell, will be monitored",2024,1,14,Australia,AU,Queensland,-27.776945,152.733733,EPSG:4326 +HUMAN_OBSERVATION,tahiki,1,,,2024,8,9,Australia,AU,Queensland,-27.974706,153.001931,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,6,14,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On E.tereticornis,2024,8,22,Australia,AU,Queensland,-27.822386,153.142071,EPSG:4326 +HUMAN_OBSERVATION,timbent27,1,,,2022,12,17,Australia,AU,South Australia,-35.154184,138.576865,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,2,15,Australia,AU,Queensland,-27.526929,153.090936,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,May be mum and joey. Very raining misty morning so all snuggled up.,2020,10,26,Australia,AU,New South Wales,-28.253792,153.376859,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,4,Australia,AU,Queensland,-27.527118,153.108968,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland,2024,10,5,Australia,AU,Queensland,-27.527769,153.092315,EPSG:4326 +HUMAN_OBSERVATION,jameskoroneos,1,,,2024,4,17,Australia,AU,Victoria,-38.836145,143.514695,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,9,11,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,"This is the same male as in https://inaturalist.ala.org.au/observations/100834185 but about three weeks earlier. He is going up the same feed tree at almost exactly the same time (15 minutes later). This time he stays in the canopy for about 15 hours (see record https://inaturalist.ala.org.au/observations/100837496), which probably included two feeding sessions with a sleep in between.",2021,8,28,Australia,AU,Queensland,-27.49628,152.247078,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,7,Australia,AU,Queensland,-27.529147,153.103523,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Tara Irvine. Submitted by Wendy Taylor via FB.,2024,11,16,Australia,AU,Queensland,-26.199667,151.772632,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"Sitting up a bluegum (E. globulus). I've been able to smell koala and there has been plenty of scat in the backyard for a month. Just now I spotted this one. Can't see the chest to tell if male or female, but there has not been any grunting going on.",2024,7,28,Australia,AU,Victoria,-37.874563,142.290977,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Male in Eucalyptus microcorys.,2021,11,21,Australia,AU,Queensland,-27.546985,153.03772,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,13,Australia,AU,Queensland,-27.698988,151.591489,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,13,Australia,AU,South Australia,-34.892146,138.716227,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,,2022,9,7,Australia,AU,Queensland,-27.510545,153.070146,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,MALE,,2024,9,5,Australia,AU,Queensland,-27.358635,152.074653,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,27,Australia,AU,South Australia,-34.829634,138.742924,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag - & joey,2023,2,21,Australia,AU,Queensland,-27.528982,153.103099,EPSG:4326 +HUMAN_OBSERVATION,thecamberwellcarrot,1,,,2023,3,4,Australia,AU,Victoria,-38.318604,142.362961,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,FEMALE,1st report of a koala in the area for 50 years. A resident in emu heights reported the sighting to Penrith council- area is part of the Hawkesbury to Campbeltown koala corridor,2022,12,4,Australia,AU,New South Wales,-33.737651,150.647348,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,,2023,9,9,Australia,AU,Queensland,-27.259595,152.052506,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Female and Joey in unknown tree,2020,7,31,Australia,AU,Queensland,-27.551743,153.05779,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Sport n rec picnic area,2024,9,8,Australia,AU,Queensland,-27.525368,153.092104,EPSG:4326 +HUMAN_OBSERVATION,tashramsey,1,MALE,,2024,5,25,Australia,AU,Queensland,-27.274569,152.966585,EPSG:4326 +HUMAN_OBSERVATION,gemma_edgeworth,1,,"First spotted on road before being encouraged away from cars. Rescuer contacted to relocate to safer position. Small/young adult koala, no injuries and no signs chlamydia.",2023,9,17,Australia,AU,Queensland,-27.545916,153.122643,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,19,Australia,AU,Queensland,-27.545083,153.072228,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - yellow tag RIGHT ear,2023,10,31,Australia,AU,Queensland,-27.528936,153.10925,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,12,23,Australia,AU,Queensland,-27.507662,153.077805,EPSG:4326 +HUMAN_OBSERVATION,bimbimbi,1,,,2024,9,10,Australia,AU,Victoria,-38.407716,142.799556,EPSG:4326 +HUMAN_OBSERVATION,Craig Wickham - Exceptional Kangaroo Island,1,FEMALE,Mother and dependent young,2022,12,6,Australia,AU,South Australia,-35.715295,137.484803,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2021,5,18,Australia,AU,Queensland,-27.550959,153.057296,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Past evidence of koala activity- close to fresh scat found a few weeks back,2022,9,11,Australia,AU,New South Wales,-33.13468,151.095856,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2024,10,11,Australia,AU,New South Wales,-34.756928,146.590242,EPSG:4326 +HUMAN_OBSERVATION,tododge,1,,,2022,7,14,Australia,AU,South Australia,-35.065483,138.757112,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,30,Australia,AU,Queensland,-27.530052,153.103271,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2022,8,8,Australia,AU,New South Wales,-34.101722,150.82225,EPSG:4326 +HUMAN_OBSERVATION,mooseamara,1,,,2023,6,17,Australia,AU,Victoria,-38.845355,143.514145,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,High in a Eucalyptus propinqua. Being mobbed by Blue-faced Honeyeaters.,2022,6,24,Australia,AU,Queensland,-27.735137,153.101752,EPSG:4326 +HUMAN_OBSERVATION,littlellama,1,,,2021,1,3,Australia,AU,South Australia,-34.98774,138.705411,EPSG:4326 +HUMAN_OBSERVATION,inflight,1,,Making lots of calls last 2 nights in the Sandy ck campgrounds.,2023,9,13,Australia,AU,Queensland,-27.779933,152.77287,EPSG:4326 +HUMAN_OBSERVATION,Ken Hurley,1,,,2024,4,6,Australia,AU,South Australia,-34.930395,138.702535,EPSG:4326 +HUMAN_OBSERVATION,Chris,1,MALE,Grunting alerted the presence of KB,2021,2,14,Australia,AU,Queensland,-27.891403,152.617538,EPSG:4326 +HUMAN_OBSERVATION,Colin Trainor,1,,,2021,8,12,Australia,AU,Queensland,-27.530366,153.242375,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,5,3,Australia,AU,Victoria,-38.671347,146.163789,EPSG:4326 +HUMAN_OBSERVATION,Aalbert Rebergen,1,,,2023,8,25,Australia,AU,Victoria,-38.093278,141.747656,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,6,11,Australia,AU,New South Wales,-28.257904,153.400792,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,5,20,Australia,AU,Queensland,-27.528947,153.110138,EPSG:4326 +HUMAN_OBSERVATION,Paulaed,1,,"Poor quality photo, taken fr a distance",2023,2,7,Australia,AU,South Australia,-35.014782,138.593684,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2023,10,22,Australia,AU,Queensland,-27.284463,153.000822,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,22,Australia,AU,Queensland,-27.526019,153.09049,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2023,5,28,Australia,AU,South Australia,-34.873205,138.720635,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,18,Australia,AU,Queensland,-27.527008,153.092851,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2024,10,21,Australia,AU,New South Wales,-34.773903,146.585372,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,5,3,Australia,AU,Queensland,-27.547665,153.058995,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear - known as Buster,2024,10,30,Australia,AU,Queensland,-27.530405,153.105109,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2023,11,5,Australia,AU,Queensland,-27.527246,153.092217,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds,2024,6,23,Australia,AU,Queensland,-27.527308,153.092301,EPSG:4326 +HUMAN_OBSERVATION,Gawain,1,,,2024,7,1,Australia,AU,Victoria,-38.364345,145.316369,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,7,14,Australia,AU,Queensland,-27.908003,153.372848,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2022,10,9,Australia,AU,Queensland,-28.219939,152.864895,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,9,11,Australia,AU,New South Wales,-28.260328,153.399944,EPSG:4326 +HUMAN_OBSERVATION,julie,1,,,2023,5,29,Australia,AU,Queensland,-27.783272,153.094995,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"Spotlight count 30/7 18:20-19:00 2 koalas in E.tereticornis, 3 BTP, 1 Tawny frogmouth.",2024,7,30,Australia,AU,Queensland,-27.82372,152.993058,EPSG:4326 +HUMAN_OBSERVATION,Libby Woodward,1,,Koala at the Small Dam,2021,1,10,Australia,AU,Victoria,-36.523362,145.726458,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,"Adult male, healthy. Super windy so sorry for the bad photos",2023,10,17,Australia,AU,Queensland,-27.901344,153.363052,EPSG:4326 +HUMAN_OBSERVATION,jollygiraffe,1,MALE,"Sadly, possibly the last koala in our area killed by a train. This old male has been around for 10+ years.",2023,4,20,Australia,AU,Victoria,-37.711791,144.485358,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,7,Australia,AU,Queensland,-27.527238,153.107628,EPSG:4326 +HUMAN_OBSERVATION,Dominique Appay,1,,"Sitting high in the nesting tree, awake and alert to me moving around beneath it.",2023,10,3,Australia,AU,Queensland,-27.500227,153.23438,EPSG:4326 +HUMAN_OBSERVATION,Leigh Johnston,1,,,2024,5,23,Australia,AU,South Australia,-34.898695,138.696197,EPSG:4326 +HUMAN_OBSERVATION,Phil Vaughan,1,,On roadside,2023,8,14,Australia,AU,Victoria,-37.925669,147.418962,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - yellow tag RIGHT ear,2023,6,3,Australia,AU,Queensland,-27.529113,153.10814,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2023,12,23,Australia,AU,Queensland,-27.527763,153.093498,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,11,16,Australia,AU,Queensland,-26.137612,151.792747,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside student admin building Mother and joey Maisie,2023,12,3,Australia,AU,Queensland,-27.526874,153.091232,EPSG:4326 +HUMAN_OBSERVATION,rubbery,1,,In Eucalyptus cynerea,2024,3,6,Australia,AU,South Australia,-35.010708,138.726682,EPSG:4326 +HUMAN_OBSERVATION,candiceskelton,1,,,2022,12,5,Australia,AU,New South Wales,-31.661553,151.617845,EPSG:4326 +HUMAN_OBSERVATION,Kelly Smith,1,,,2021,12,9,Australia,AU,Victoria,-38.312887,146.429153,EPSG:4326 +HUMAN_OBSERVATION,Victor W Fazio III,1,,"Adult male (Koala Care staff). Apart from a full engorged tick on the cheek, this was a healthy individual. No eye issues and a clean bum. Note green right ear tag common to local population.",2021,10,20,Australia,AU,New South Wales,-31.931906,152.413738,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,11,5,Australia,AU,Victoria,-38.67165,146.164033,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,FEMALE,Mum and joey,2023,10,11,Australia,AU,Queensland,-27.701124,153.189646,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,16,Australia,AU,Queensland,-27.794028,151.55184,EPSG:4326 +HUMAN_OBSERVATION,steve-watson,1,,,2023,1,29,Australia,AU,Queensland,-27.546453,152.860105,EPSG:4326 +HUMAN_OBSERVATION,allambiretreat,1,,,2022,11,12,Australia,AU,Queensland,-27.33957,152.844637,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2023,10,4,Australia,AU,Queensland,-28.097059,152.844139,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,7,29,Australia,AU,South Australia,-34.890908,138.730941,EPSG:4326 +HUMAN_OBSERVATION,burnettcatchment,1,,Adult.Unknown Sex.Healthy.Observed by Wendy Taylor.Submitted via Messenger,2024,11,14,Australia,AU,Queensland,-26.156689,151.75123,EPSG:4326 +HUMAN_OBSERVATION,davidmck,1,FEMALE,,2023,10,25,Australia,AU,Victoria,-37.914559,144.179501,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside tafe nursery entrance,2023,10,12,Australia,AU,Queensland,-27.52735,153.091371,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2023,10,30,Australia,AU,Queensland,-27.528815,153.112693,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,"Strong scent, possibly young male we heard bellowing last night",2023,1,7,Australia,AU,Queensland,-27.525038,153.092117,EPSG:4326 +HUMAN_OBSERVATION,ch-24,1,,,2024,4,17,Australia,AU,Victoria,-38.83542,143.514029,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,11,21,Australia,AU,New South Wales,-33.076764,151.095292,EPSG:4326 +HUMAN_OBSERVATION,sarah macdonald,1,,,2024,4,14,Australia,AU,South Australia,-35.000356,138.64134,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Koala markings. FoN survey Tarkeeth1,2023,10,8,Australia,AU,New South Wales,-30.490455,152.913492,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,8,Australia,AU,Queensland,-27.54185,153.069544,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Next to e block Barbara Dart,2024,8,3,Australia,AU,Queensland,-27.526633,153.090924,EPSG:4326 +HUMAN_OBSERVATION,michaelbrigante,1,,,2020,11,28,Australia,AU,South Australia,-34.990437,138.675172,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2023,11,11,Australia,AU,Queensland,-27.527134,153.091531,EPSG:4326 +HUMAN_OBSERVATION,Tony Kent,1,,Moving south using remnant roadside vegetation,2023,11,2,Australia,AU,Victoria,-36.932678,145.372707,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum (olive green tag RIGHT ear) & joey,2023,9,23,Australia,AU,Queensland,-27.529953,153.111044,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,24,Australia,AU,South Australia,-34.89259,138.720971,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,12,26,Australia,AU,Queensland,-27.527256,153.091571,EPSG:4326 +HUMAN_OBSERVATION,mtbarneylodge,1,MALE,"Crossed road successfully despite 100km/hr traffic, but the sat on side. Would not move away despite people trying to move it on. Seems to be good weight, but blind in both eyes. Captured without a struggle and taken to Beaudesert Vet who called a Wildlufe cadet.",2021,11,18,Australia,AU,Queensland,-27.921933,153.083786,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,10,Australia,AU,Queensland,-27.529436,153.10631,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,4,21,Australia,AU,Queensland,-27.551437,153.058387,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,MALE,I wish I could upload the video on here!,2023,6,19,Australia,AU,New South Wales,-33.139488,151.085978,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2024,5,10,Australia,AU,Queensland,-27.52843,153.092735,EPSG:4326 +HUMAN_OBSERVATION,malosa,1,,,2021,2,12,Australia,AU,Victoria,-38.549042,143.980208,EPSG:4326 +HUMAN_OBSERVATION,ainsliem,1,,A regular visitor,2020,1,2,Australia,AU,New South Wales,-28.255258,153.378175,EPSG:4326 +HUMAN_OBSERVATION,Joel Poyitt,1,,,2023,9,27,Australia,AU,Queensland,-27.400142,153.437878,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,15,Australia,AU,Queensland,-27.526946,153.092409,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area Middle Mother and joey,2023,11,2,Australia,AU,Queensland,-27.528216,153.092312,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,6,22,Australia,AU,Queensland,-27.526904,153.090502,EPSG:4326 +HUMAN_OBSERVATION,pdroliveira,1,,,2024,1,26,Australia,AU,Victoria,-38.336647,141.473237,EPSG:4326 +HUMAN_OBSERVATION,michikomarty,1,,,2021,11,28,Australia,AU,Queensland,-27.714466,151.522174,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - Millie,2023,6,26,Australia,AU,Queensland,-27.527137,153.111299,EPSG:4326 +HUMAN_OBSERVATION,guilleamico,1,,,2022,12,14,Australia,AU,Victoria,-38.566839,143.966563,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,,2023,11,3,Australia,AU,Queensland,-27.642776,152.895685,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,"Koala in tree on Lawnton Pocket Road, Lawnton.",2024,8,3,Australia,AU,Queensland,-27.284325,153.000924,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,3,3,Australia,AU,Queensland,-27.550555,153.060564,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,26,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2023,10,19,Australia,AU,Victoria,-38.94207,146.278288,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2023,12,27,Australia,AU,Victoria,-38.341726,142.631379,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,7,29,Australia,AU,Queensland,-27.547517,153.059838,EPSG:4326 +HUMAN_OBSERVATION,James Bennett,1,FEMALE,,2022,10,31,Australia,AU,New South Wales,-32.711542,152.072553,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,healthy Koala observation by T Whitebread for TKWR,2023,4,2,Australia,AU,Queensland,-27.422176,151.895261,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,22,Australia,AU,South Australia,-34.890298,138.731304,EPSG:4326 +HUMAN_OBSERVATION,Richard Fuller,1,,,2021,11,7,Australia,AU,Queensland,-27.552515,153.175042,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,6,14,Australia,AU,Queensland,-27.527158,153.091701,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,3,31,Australia,AU,Victoria,-38.671347,146.163728,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2023,1,2,Australia,AU,South Australia,-34.953713,138.681215,EPSG:4326 +HUMAN_OBSERVATION,cv173,1,FEMALE,"2 Koalas, likely mother and grown young. Smaller koala was Juvenile-sized.",2023,10,5,Australia,AU,Queensland,-28.000506,152.681421,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,"Image captured whilst on a spotlighting circuit, varying between 1.5 km to 3 km depending on track conditions, through a 20 ha block of predominantly Sedgy Riparian Woodland (EVC 198) in the Wombat State Forest, Lyonville.",2023,3,11,Australia,AU,Victoria,-37.39147,144.266428,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Scat - collection for research on genetic diversity amongst local koala populations,2023,7,31,Australia,AU,Victoria,-37.578878,143.904642,EPSG:4326 +HUMAN_OBSERVATION,jango1971,1,,,2021,1,20,Australia,AU,Queensland,-19.128256,146.855711,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,Appears healthy - potentially female (no visible scrotum) - directly above paved walkway,2023,4,5,Australia,AU,Queensland,-27.549675,153.060044,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,8,18,Australia,AU,Queensland,-27.550233,153.059995,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,15,Australia,AU,Queensland,-26.143579,151.920463,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,,,2022,11,18,Australia,AU,New South Wales,-31.537735,151.715071,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,22,Australia,AU,Queensland,-27.528446,153.092516,EPSG:4326 +HUMAN_OBSERVATION,grelisle1,1,,,2023,10,20,Australia,AU,Victoria,-38.950169,146.292144,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,4th of 4 koalas seen this morning.,2024,9,19,Australia,AU,Queensland,-27.507689,153.082347,EPSG:4326 +HUMAN_OBSERVATION,Kaden Porter,1,FEMALE,,2024,8,18,Australia,AU,Queensland,-27.275239,152.935348,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,11,13,Australia,AU,Queensland,-27.540347,153.074556,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,3,20,Australia,AU,New South Wales,-28.260559,153.400178,EPSG:4326 +HUMAN_OBSERVATION,Brad,1,,,2020,8,16,Australia,AU,South Australia,-35.039188,138.580703,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,20,Australia,AU,Queensland,-27.529637,153.112549,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,2,10,Australia,AU,Queensland,-27.551043,153.057818,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,23,Australia,AU,Queensland,-27.52709,153.109187,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,13,Australia,AU,Queensland,-27.529801,153.105054,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2023,5,20,Australia,AU,Queensland,-27.330695,151.932817,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,7,7,Australia,AU,Queensland,-27.338072,152.614487,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,3,17,Australia,AU,Queensland,-27.527122,153.09072,EPSG:4326 +HUMAN_OBSERVATION,wingspanner,1,,,2020,3,2,Australia,AU,Victoria,-35.882933,145.6308,EPSG:4326 +HUMAN_OBSERVATION,Mike Letnic,1,,,2021,11,2,Australia,AU,New South Wales,-32.878963,150.267112,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - white tag LEFT ear - Bandit,2023,8,9,Australia,AU,Queensland,-27.529228,153.11205,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2020,6,7,Australia,AU,Victoria,-37.925084,147.729867,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,8,7,Australia,AU,Queensland,-26.155573,151.750278,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2024,1,31,Australia,AU,Queensland,-27.508835,153.086025,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery mother and joey,2023,10,15,Australia,AU,Queensland,-27.527194,153.091678,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,10,Australia,AU,Queensland,-27.527779,153.092437,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg,2023,12,12,Australia,AU,Queensland,-26.199667,151.772632,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,10,30,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,With Joey in Tallowwood and male in same tree,2024,10,6,Australia,AU,Queensland,-27.550824,153.057991,EPSG:4326 +HUMAN_OBSERVATION,mthurgood,1,,,2023,12,16,Australia,AU,South Australia,-35.16681,138.582864,EPSG:4326 +HUMAN_OBSERVATION,AldingaRoo,1,MALE,,2023,11,2,Australia,AU,South Australia,-34.76103,138.946845,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Very healthy koala.,2021,12,29,Australia,AU,Queensland,-27.529997,153.104362,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,6,Australia,AU,Queensland,-27.529248,153.108853,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Male koala in tree. Had seen this koala last weekend and noticed he had a dusty bottom. On seeing him again I rang Moreton Bay Koala Care to let them know and they did a health check and said it was just stained probably from Tallowwood.,2023,9,2,Australia,AU,Queensland,-27.283767,152.999223,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,Mum & Bub,2022,11,19,Australia,AU,Queensland,-27.6958,151.552774,EPSG:4326 +HUMAN_OBSERVATION,mattd21,1,MALE,,2022,9,13,Australia,AU,New South Wales,-33.550536,150.655383,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,,2021,5,17,Australia,AU,New South Wales,-28.260624,153.403175,EPSG:4326 +HUMAN_OBSERVATION,Michael M,1,,,2023,9,27,Australia,AU,South Australia,-34.99972,138.643617,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,5,19,Australia,AU,Queensland,-27.5275,153.093095,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank baby,2022,10,11,Australia,AU,Queensland,-27.5457,153.07375,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2022,1,15,Australia,AU,Victoria,-38.36154,146.38889,EPSG:4326 +HUMAN_OBSERVATION,W. Hodgson,1,,,2024,8,1,Australia,AU,Queensland,-27.297681,152.974372,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,3,12,Australia,AU,Queensland,-27.531129,153.105146,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,2,27,Australia,AU,South Australia,-34.89155,138.719652,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey Ironbark,2020,1,31,Australia,AU,Queensland,-27.549861,153.054084,EPSG:4326 +HUMAN_OBSERVATION,Craig Hyland,1,,,2024,7,22,Australia,AU,Victoria,-37.92307,147.732117,EPSG:4326 +HUMAN_OBSERVATION,hollycasey99,1,,,2024,7,29,Australia,AU,Victoria,-38.634219,145.755025,EPSG:4326 +HUMAN_OBSERVATION,James Peake,1,,,2021,4,3,Australia,AU,Victoria,-38.131178,145.268291,EPSG:4326 +HUMAN_OBSERVATION,Mike Youdale,1,,,2024,4,15,Australia,AU,Queensland,-27.899586,153.372674,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Reconyx HF2,2023,1,24,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,jarodcos,1,,Eating throughout observation.,2024,8,27,Australia,AU,Queensland,-27.472059,152.0928,EPSG:4326 +HUMAN_OBSERVATION,ryan_fritsch,1,,,2023,11,19,Australia,AU,Queensland,-27.162318,152.941268,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag 137.... LEFT ear - Rue,2024,7,13,Australia,AU,Queensland,-27.527752,153.111953,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,Inside paddock - seen as driving by. Unable to get closer for better photo. Checked with binoculars.,2024,10,6,Australia,AU,Queensland,-27.789688,151.57968,EPSG:4326 +HUMAN_OBSERVATION,GuyCastley,1,,One individual seen while out birding in this section of the Coombabah Lakelands Conservation Area. Poor iPhone photos only I’m afraid,2024,2,6,Australia,AU,Queensland,-27.934858,153.352815,EPSG:4326 +HUMAN_OBSERVATION,suzie81,1,,"unwell koala, dirty bottom and bad eyes. Trying to keep track of him to try rescue",2023,5,16,Australia,AU,Queensland,-27.636895,151.986163,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2024,5,22,Australia,AU,Victoria,-37.639952,143.900805,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,9,1,Australia,AU,Queensland,-27.551174,153.057412,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,In Eucalyptus globulus subsp globulus,2020,5,30,Australia,AU,Victoria,-38.671337,146.163772,EPSG:4326 +HUMAN_OBSERVATION,rordale,1,,,2021,11,16,Australia,AU,Queensland,-27.261908,152.063781,EPSG:4326 +HUMAN_OBSERVATION,Taylor,1,,,2021,1,18,Australia,AU,South Australia,-34.903258,138.702541,EPSG:4326 +HUMAN_OBSERVATION,maximto,1,,,2024,10,1,Australia,AU,Queensland,-28.105889,153.4449,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" in stringy bark calling. ID clear from notch in left ear.",2020,10,29,Australia,AU,New South Wales,-30.520139,151.519702,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,24,Australia,AU,South Australia,-34.892264,138.719712,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,10,Australia,AU,Queensland,-27.544013,153.071371,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,12,24,Australia,AU,South Australia,-34.887484,138.73337,EPSG:4326 +HUMAN_OBSERVATION,Henry Cooper,1,,,2023,10,10,Australia,AU,South Australia,-34.886176,138.640927,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,8,15,Australia,AU,Queensland,-27.414478,152.003236,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,26,Australia,AU,Queensland,-27.529227,153.103375,EPSG:4326 +HUMAN_OBSERVATION,Tricia Stewart,1,MALE,,2022,10,20,Australia,AU,Victoria,-38.129233,145.267212,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,8,17,Australia,AU,Queensland,-27.720458,151.522812,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,13,Australia,AU,Queensland,-27.82378,152.99356,EPSG:4326 +HUMAN_OBSERVATION,koalasofstraddie,1,,Beside 29 Claytons Road -Amity Point . Koala in tree and moving from tree to tree,2021,4,29,Australia,AU,Queensland,-27.401459,153.440869,EPSG:4326 +HUMAN_OBSERVATION,Cris Cochrane,1,MALE,,2021,6,19,Australia,AU,Victoria,-38.482265,145.260677,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,Bluesfest site study,2022,3,15,Australia,AU,New South Wales,-28.603945,153.54753,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,22,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,sarahb412,1,,,2023,7,25,Australia,AU,New South Wales,-31.436801,152.905498,EPSG:4326 +HUMAN_OBSERVATION,Francesco Martoni,1,,,2024,3,30,Australia,AU,Victoria,-38.668064,143.860869,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,,Seen & photographed by Liz & Ross W,2024,1,22,Australia,AU,Victoria,-37.904259,144.121274,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,12,10,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Ash,1,,Didn’t have my camera on me. 2 x koalas and koala scat beneath on path.,2024,10,26,Australia,AU,Queensland,-27.655304,153.19551,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear - near gully,2023,12,23,Australia,AU,Queensland,-27.527758,153.093179,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2022,11,7,Australia,AU,Victoria,-38.668745,145.921662,EPSG:4326 +HUMAN_OBSERVATION,maudieo,1,,,2023,1,15,Australia,AU,Queensland,-27.260565,152.063575,EPSG:4326 +HUMAN_OBSERVATION,charnts,1,,,2024,1,26,Australia,AU,Victoria,-38.318947,142.362951,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.015742,138.673242,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,"Large male inside fence of the pool complex, very close to road",2023,10,20,Australia,AU,Queensland,-27.532854,153.094543,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,22,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,noddyblue,1,,Pair of Koalas Heard female squeal followed by male grunt,2023,11,23,Australia,AU,Victoria,-36.919921,145.370946,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Brown female and joey. Is she scratching a tick possibly? Back In the lemon scented gum.,2020,9,28,Australia,AU,New South Wales,-28.25365,153.37673,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Lots of fresh scat on the path & koala well hidden in a camphor laurel,2024,7,23,Australia,AU,Queensland,-27.528811,153.104416,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,3,22,Australia,AU,Queensland,-27.917903,153.377553,EPSG:4326 +HUMAN_OBSERVATION,shortman,1,,,2022,8,15,Australia,AU,Victoria,-38.313763,142.364058,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,12,22,Australia,AU,Queensland,-27.504972,153.085175,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery near rear entrance Mother and joey,2023,10,21,Australia,AU,Queensland,-27.527229,153.091995,EPSG:4326 +HUMAN_OBSERVATION,Kymberley,1,,,2022,11,15,Australia,AU,Queensland,-21.410485,148.474418,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,,2024,11,3,Australia,AU,Queensland,-27.511456,153.081473,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy in a large tallowwood,2023,7,25,Australia,AU,Queensland,-27.526894,153.10782,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,14,Australia,AU,South Australia,-34.89371,138.716368,EPSG:4326 +HUMAN_OBSERVATION,maksympolyakov,1,,,2023,11,26,Australia,AU,Victoria,-38.806043,143.537311,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,4,Australia,AU,South Australia,-34.889941,138.721989,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.777849,143.617619,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,11,Australia,AU,Queensland,-27.525193,153.111809,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,Mum with baby koala observed.,2020,9,24,Australia,AU,New South Wales,-28.257707,153.400709,EPSG:4326 +HUMAN_OBSERVATION,fidug,1,,,2023,11,7,Australia,AU,Queensland,-27.590733,153.163239,EPSG:4326 +HUMAN_OBSERVATION,wallingford,1,,,2022,11,14,Australia,AU,Queensland,-27.671145,151.54393,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,10,6,Australia,AU,Queensland,-27.257508,152.044174,EPSG:4326 +HUMAN_OBSERVATION,jraus,1,,,2024,10,30,Australia,AU,South Australia,-34.959382,138.668368,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,12,Australia,AU,Queensland,-27.542618,153.073482,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,8,25,Australia,AU,New South Wales,-28.274063,153.395218,EPSG:4326 +HUMAN_OBSERVATION,Jarah Marginata,1,,,2023,4,21,Australia,AU,Victoria,-38.31842,142.363328,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,4,8,Australia,AU,New South Wales,-33.076397,151.095061,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,6,Australia,AU,Queensland,-27.527825,153.110454,EPSG:4326 +HUMAN_OBSERVATION,Tom Wilson,1,,,2022,10,29,Australia,AU,South Australia,-35.043236,138.605362,EPSG:4326 +HUMAN_OBSERVATION,Reiner Richter,1,,,2023,3,15,Australia,AU,Victoria,-38.268496,141.417547,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,9,18,Australia,AU,New South Wales,-33.076267,151.094925,EPSG:4326 +HUMAN_OBSERVATION,Keith,1,,,2023,10,22,Australia,AU,Queensland,-27.488225,153.136023,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,,2023,3,3,Australia,AU,Queensland,-27.563933,153.132981,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,7,Australia,AU,Queensland,-27.413855,152.003006,EPSG:4326 +HUMAN_OBSERVATION,Clhughes,1,,,2020,4,27,Australia,AU,South Australia,-34.859318,138.695665,EPSG:4326 +HUMAN_OBSERVATION,Sara Johnson,1,,,2022,10,3,Australia,AU,Victoria,-38.780827,143.588458,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,4,27,Australia,AU,Queensland,-27.527917,153.092348,EPSG:4326 +HUMAN_OBSERVATION,Corin,1,,Breeding Pair ( male ),2021,11,19,Australia,AU,Queensland,-27.777922,152.988175,EPSG:4326 +HUMAN_OBSERVATION,craiginfreo,1,,,2020,1,20,Australia,AU,South Australia,-34.903246,138.705406,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2024,6,2,Australia,AU,New South Wales,-34.743962,146.53482,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Believe this is the koala seen last night on the opposite side of the road and I am now calling Koala no 2. It appeared to be in the same tree next day.,2020,5,20,Australia,AU,New South Wales,-28.252225,153.375139,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,12,31,Australia,AU,Queensland,-27.527196,153.091459,EPSG:4326 +HUMAN_OBSERVATION,jennii07,1,,,2021,9,27,Australia,AU,South Australia,-35.648408,137.639629,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2020,6,6,Australia,AU,Victoria,-37.925786,147.72936,EPSG:4326 +HUMAN_OBSERVATION,errolcraig,1,,,2022,4,28,Australia,AU,Queensland,-28.076992,152.96115,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear,2023,4,10,Australia,AU,Queensland,-27.518683,153.102692,EPSG:4326 +HUMAN_OBSERVATION,Vanda Cummins,1,,,2024,7,28,Australia,AU,New South Wales,-35.919655,145.67837,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,"One of two Koalas observed over 2-3 hours. Resting ~5 metres above ground. Unsurprisingly, did not appreciate the torches which were kept to a minimum on the subject.",2024,9,13,Australia,AU,Queensland,-27.552458,153.174597,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In Lophostemon confertus,2021,8,5,Australia,AU,Queensland,-27.544245,153.074775,EPSG:4326 +HUMAN_OBSERVATION,Fred Watson,1,,,2023,6,18,Australia,AU,Victoria,-37.920979,147.739451,EPSG:4326 +HUMAN_OBSERVATION,Geoffrey Cox,1,,,2020,11,14,Australia,AU,South Australia,-35.010189,138.646347,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,6,Australia,AU,Queensland,-27.527771,153.110017,EPSG:4326 +HUMAN_OBSERVATION,secret93,1,,,2023,4,20,Australia,AU,Victoria,-37.090314,145.449312,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2023,4,2,Australia,AU,South Australia,-34.862674,138.72323,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,6,13,Australia,AU,Queensland,-27.506488,153.078382,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,7,7,Australia,AU,Queensland,-27.328827,152.61322,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2022,1,27,Australia,AU,South Australia,-34.911946,138.712813,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,20,Australia,AU,South Australia,-34.890038,138.729452,EPSG:4326 +HUMAN_OBSERVATION,animalavenger18,1,,,2020,1,18,Australia,AU,New South Wales,-31.471048,152.930516,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,10,19,Australia,AU,Queensland,-27.546665,153.07459,EPSG:4326 +HUMAN_OBSERVATION,tsymmo,1,,Along bike path in Euc. tereticornis Young adult(?),2022,10,15,Australia,AU,Queensland,-27.508275,153.106414,EPSG:4326 +HUMAN_OBSERVATION,andymc737,1,,,2022,10,22,Australia,AU,Queensland,-27.938951,153.35681,EPSG:4326 +HUMAN_OBSERVATION,andreamvee,1,,Scratchings on very large Blue Gum. Possibly from Koalas which are known to be in the area.,2024,6,11,Australia,AU,Queensland,-25.535663,152.679441,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,,2023,10,13,Australia,AU,Queensland,-27.51054,153.070095,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lower cafeteria car park,2024,9,22,Australia,AU,Queensland,-27.527119,153.092395,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,27,Australia,AU,South Australia,-34.881129,138.731539,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Wisteria car park In tree next to Cindy Crawford Cindy’s joey? Male - testicles visible,2024,4,7,Australia,AU,Queensland,-27.525036,153.092273,EPSG:4326 +HUMAN_OBSERVATION,cathpount,1,,,2023,11,8,Australia,AU,Victoria,-38.830044,146.132692,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2023,4,16,Australia,AU,New South Wales,-33.076308,151.095154,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2021,6,13,Australia,AU,South Australia,-34.830996,138.736167,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.015824,138.670424,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,2,15,Australia,AU,South Australia,-34.955893,138.692738,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3121 Confirmed as Koala scat by OWAD Environment,2022,11,12,Australia,AU,Queensland,-27.50045,152.16183,EPSG:4326 +HUMAN_OBSERVATION,Tracy W,1,,,2020,8,3,Australia,AU,Queensland,-27.489129,153.180697,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,6,17,Australia,AU,Queensland,-27.549723,153.049205,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Adult, unknown sex, healthy. Observed by Denise Shaw. Submitted via email.",2023,6,15,Australia,AU,Queensland,-26.16223,151.756484,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,9,27,Australia,AU,Queensland,-27.400303,151.78885,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Koala scat,2024,3,2,Australia,AU,Victoria,-37.61605,143.874189,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In gully near Aldi gates Next to chonky boys tree,2023,11,4,Australia,AU,Queensland,-27.526093,153.093042,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,,2021,5,16,Australia,AU,New South Wales,-28.260479,153.403012,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,3,Australia,AU,South Australia,-34.889832,138.727475,EPSG:4326 +HUMAN_OBSERVATION,benport,1,,,2022,2,19,Australia,AU,Victoria,-38.661935,146.257949,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2021,7,15,Australia,AU,Victoria,-38.131195,145.26902,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Mower shed tree 2,2023,6,10,Australia,AU,Queensland,-27.525834,153.090802,EPSG:4326 +HUMAN_OBSERVATION,Ryan Harvey,1,,1 of 3 Within 100 metres,2024,7,16,Australia,AU,New South Wales,-31.9282,152.403969,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,2,11,Australia,AU,Queensland,-27.527352,153.09139,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Mum and bub regulalry sighted in trees on Lawnton Road. You can see the small hands of joey wrapped around mum.,2023,8,26,Australia,AU,Queensland,-27.28416,153.00069,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,7,2,Australia,AU,Queensland,-27.551863,153.057848,EPSG:4326 +HUMAN_OBSERVATION,littlellama,1,MALE,,2021,10,29,Australia,AU,South Australia,-34.905883,138.710106,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.383823,145.300262,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2024,1,9,Australia,AU,Victoria,-37.641163,143.901829,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,21,Australia,AU,South Australia,-34.893133,138.713923,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,4,21,Australia,AU,New South Wales,-28.260451,153.403393,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,In the Turpentine tree again. It does like this tree!,2021,10,31,Australia,AU,New South Wales,-28.254186,153.377302,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,13,Australia,AU,Queensland,-26.160044,151.803901,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,12,7,Australia,AU,Victoria,-38.671001,146.1635,EPSG:4326 +HUMAN_OBSERVATION,kazhutcho,1,,Big4 helensvale - 4 adult koalas spotted same night,2024,8,17,Australia,AU,Queensland,-27.899017,153.31848,EPSG:4326 +HUMAN_OBSERVATION,carlabruinsma,1,,,2024,8,21,Australia,AU,New South Wales,-28.640675,153.628751,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,,2023,3,3,Australia,AU,Queensland,-27.564147,153.133378,EPSG:4326 +HUMAN_OBSERVATION,mo888,1,,,2022,9,3,Australia,AU,Victoria,-36.877251,145.756258,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland rear,2023,12,10,Australia,AU,Queensland,-27.524865,153.093562,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,26,Australia,AU,Queensland,-27.525812,153.090769,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,scat and scratch marks,2021,10,21,Australia,AU,Queensland,-28.219264,152.864302,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,,2024,9,6,Australia,AU,New South Wales,-34.759392,146.565134,EPSG:4326 +HUMAN_OBSERVATION,Howard Laidlaw,1,,,2024,11,10,Australia,AU,Queensland,-28.228153,153.119095,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"Koala counts: 31/3 15:30 20 minutes, 2 observers, 1 koala. E. tereticornis. Male- scent mark on chest observed.",2024,3,31,Australia,AU,Queensland,-27.823811,152.993643,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,11,17,Australia,AU,Queensland,-27.527631,153.092434,EPSG:4326 +HUMAN_OBSERVATION,Luis Mata EntSocVic,1,,For the koala,2024,3,30,Australia,AU,Victoria,-38.316219,142.367667,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,15,Australia,AU,Queensland,-27.525834,153.090754,EPSG:4326 +HUMAN_OBSERVATION,faufauh,1,,,2021,2,7,Australia,AU,Queensland,-27.535453,153.221419,EPSG:4326 +HUMAN_OBSERVATION,Ian Dudley,1,,,2024,5,15,Australia,AU,South Australia,-34.708231,135.851717,EPSG:4326 +HUMAN_OBSERVATION,duke_n,1,,,2021,7,6,Australia,AU,Victoria,-38.573654,143.613477,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,JE Duggan Park- sighting recorded by Max Henderson - bushcare worker with Friends of Escarpment Parks. Record submitted to Toowoomba Koala & Wildlife Rescue,2022,11,11,Australia,AU,Queensland,-27.59592,151.987883,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3144,2023,3,6,Australia,AU,Queensland,-27.495775,152.249519,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2020,12,27,Australia,AU,New South Wales,-28.257744,153.40067,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,29,Australia,AU,Queensland,-27.402676,153.437745,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,MALE,Likely to be the same male as seen 2 days ago. Has moved further away from the river (50 meters),2022,12,29,Australia,AU,New South Wales,-34.77333,146.595292,EPSG:4326 +HUMAN_OBSERVATION,sharynbartlem,1,,Appeared to have a joey,2023,6,24,Australia,AU,Queensland,-27.503537,153.075422,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Baby first recorded with mother in October 2019. This is the first time we have seen the baby without the mother obviously nearby. In a small red gum.,2020,1,26,Australia,AU,New South Wales,-30.51972,151.521444,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,3rd of 4 koalas seen this morning,2024,9,19,Australia,AU,Queensland,-27.5073,153.082533,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2024,1,9,Australia,AU,South Australia,-34.917563,138.537003,EPSG:4326 +HUMAN_OBSERVATION,clairemas0n,1,,,2023,1,22,Australia,AU,Queensland,-26.529778,151.80957,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On Corymbia intermedia,2022,11,25,Australia,AU,Queensland,-28.165963,153.214942,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,17,Australia,AU,South Australia,-34.891557,138.720785,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe Cavendish Road,2023,8,10,Australia,AU,Queensland,-27.526797,153.090447,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear Male yellow tag left ear #0976,2024,1,25,Australia,AU,Queensland,-27.528164,153.093081,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,K block mowing shed,2024,6,2,Australia,AU,Queensland,-27.525816,153.090787,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2022,12,9,Australia,AU,New South Wales,-28.253948,153.377537,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,12,Australia,AU,South Australia,-34.890774,138.730406,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,25,Australia,AU,Queensland,-27.525873,153.090853,EPSG:4326 +HUMAN_OBSERVATION,fidug,1,,,2023,11,7,Australia,AU,Queensland,-27.590795,153.163253,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Koala spotted by Mr and Mrs McGosh south of LillyPilly Court in Bellbird Park,2023,8,23,Australia,AU,Queensland,-27.635611,152.899886,EPSG:4326 +HUMAN_OBSERVATION,nroge,1,,Female and joey,2020,11,13,Australia,AU,Queensland,-27.425895,152.880743,EPSG:4326 +HUMAN_OBSERVATION,Debara,1,,,2024,10,7,Australia,AU,Queensland,-27.526097,153.090408,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,By the way she is sitting I suspect this is a mum with joey,2024,11,11,Australia,AU,Queensland,-27.527652,153.103839,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,"Another local beautiful koala spotted this morning opposite the water treatment plant (east bank) by Amy's daughter in Karana Downs / Mt Crosby,4306 Brisbane QLD",2021,10,12,Australia,AU,Queensland,-27.530968,152.804601,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"I think this might be the joey in this observation, https://inaturalist.ala.org.au/observations/135214142 and has been kicked out of home by the female as larger koala was close by but in separate tree.",2022,9,26,Australia,AU,Queensland,-27.508757,153.067732,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,27,Australia,AU,Queensland,-27.823303,152.991915,EPSG:4326 +HUMAN_OBSERVATION,averagefungienjoyer,1,,,2024,11,18,Australia,AU,Victoria,-37.330553,144.593946,EPSG:4326 +HUMAN_OBSERVATION,sharynbartlem,1,FEMALE,Female low in tree near road with injuries. Had an ear tag Small joey nearby,2023,7,13,Australia,AU,Queensland,-27.504068,153.075355,EPSG:4326 +HUMAN_OBSERVATION,blythebaddy,1,,,2024,11,1,Australia,AU,Queensland,-28.196228,153.187057,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,MALE,,2021,11,20,Australia,AU,Queensland,-27.82335,152.99243,EPSG:4326 +HUMAN_OBSERVATION,jobrierley,1,,Tagged male,2024,8,13,Australia,AU,Queensland,-28.133044,153.445113,EPSG:4326 +HUMAN_OBSERVATION,J's H'way,1,,In a Scribbly gum tree,2024,10,30,Australia,AU,Queensland,-27.560744,153.165685,EPSG:4326 +HUMAN_OBSERVATION,frase4days,1,,,2024,10,9,Australia,AU,Victoria,-37.923804,141.285861,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2024,2,17,Australia,AU,Queensland,-27.551581,153.057331,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,In same area as one seen last night so may be the same. Quite large.,2020,5,14,Australia,AU,New South Wales,-28.254785,153.377645,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag 1317 LEFT ear - Thor,2024,6,17,Australia,AU,Queensland,-27.528073,153.112539,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2023,8,23,Australia,AU,Queensland,-27.607067,153.154863,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,1,14,Australia,AU,Queensland,-27.526861,153.09093,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2024,2,4,Australia,AU,South Australia,-34.934475,138.69873,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,Claw marks are too far apart for possum,2024,7,11,Australia,AU,South Australia,-34.997089,138.546308,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via Msg.,2023,11,17,Australia,AU,Queensland,-26.145114,151.792319,EPSG:4326 +HUMAN_OBSERVATION,skolk,1,,,2024,11,18,Australia,AU,Victoria,-37.925111,147.722467,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Injured? Blood on inner thigh visible?,2024,5,5,Australia,AU,Queensland,-27.527119,153.090754,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,It was a very hot day and the brown female and joey spent the day hanging in the shade in this fork I the lemon scented gum.,2020,11,15,Australia,AU,New South Wales,-28.253774,153.376777,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,8,1,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,camillad52,1,,,2024,3,24,Australia,AU,Victoria,-35.919566,145.676401,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey In same tree as other mum and joey,2023,11,18,Australia,AU,Queensland,-27.527231,153.091618,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,4,27,Australia,AU,Queensland,-27.428458,151.725158,EPSG:4326 +HUMAN_OBSERVATION,Victoria,1,,,2021,8,6,Australia,AU,South Australia,-35.005264,138.667581,EPSG:4326 +HUMAN_OBSERVATION,caitlinr1403,1,,,2023,10,7,Australia,AU,Queensland,-27.508499,153.080301,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,,Male koala,2021,10,22,Australia,AU,Queensland,-28.174362,152.907862,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2024,10,17,Australia,AU,New South Wales,-31.440881,152.90606,EPSG:4326 +HUMAN_OBSERVATION,Amy Akers,1,,,2023,3,5,Australia,AU,Victoria,-38.381881,145.278099,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknow sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,3,14,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2022,1,13,Australia,AU,Queensland,-27.734311,153.102041,EPSG:4326 +HUMAN_OBSERVATION,kahlee_t,1,,,2024,3,2,Australia,AU,New South Wales,-34.101272,150.822128,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,1,Australia,AU,Queensland,-27.52569,153.092333,EPSG:4326 +HUMAN_OBSERVATION,graeme lunt,1,,,2020,4,9,Australia,AU,Victoria,-37.688766,143.996858,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,,2022,6,26,Australia,AU,Queensland,-27.508272,153.106636,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block picnic area,2024,1,7,Australia,AU,Queensland,-27.526233,153.090308,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Believe this may be a male.,2020,10,28,Australia,AU,New South Wales,-28.254067,153.377504,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2022,10,13,Australia,AU,Queensland,-27.712022,151.5244,EPSG:4326 +HUMAN_OBSERVATION,Lana Waller,1,,,2022,11,15,Australia,AU,Queensland,-27.551139,153.059692,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,2 x koalas. Same location. 1 male + 1 female. Male had wet bottom. Attempted rescue was unsuccessful. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,8,27,Australia,AU,Queensland,-26.159058,151.753365,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,2 koalas in same tree,2021,10,17,Australia,AU,Victoria,-37.587467,143.883848,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,12,23,Australia,AU,Queensland,-27.513142,153.08086,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag 1049 LEFT ear,2023,9,5,Australia,AU,Queensland,-27.527493,153.102066,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,MALE,Male koala.,2023,8,26,Australia,AU,Queensland,-27.284966,153.000512,EPSG:4326 +HUMAN_OBSERVATION,Tony Kent,1,,"Transiting Tarcombe Rd, stopover in house yard to help hang the washing out.",2022,9,30,Australia,AU,Victoria,-36.930572,145.371976,EPSG:4326 +HUMAN_OBSERVATION,Marie Tarrant,1,,,2021,2,28,Australia,AU,Queensland,-27.261314,152.899999,EPSG:4326 +HUMAN_OBSERVATION,Julian,1,,Evidence of Dumbripi (Koala) - scratch marks and scat smelling HEAVILY of Eucalyptus,2022,3,24,Australia,AU,Queensland,-27.641587,152.740022,EPSG:4326 +HUMAN_OBSERVATION,Charles Dove,1,,,2020,11,26,Australia,AU,Queensland,-27.662864,151.988444,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Swamp mahogany,2023,2,22,Australia,AU,Queensland,-27.526995,153.091923,EPSG:4326 +HUMAN_OBSERVATION,maymay33,1,,Since deceased. Rescued for treatment for chlamydia but deteriorated while on antibiotics pre-surgery. Female registered as Lola.,2024,1,8,Australia,AU,Queensland,-26.894947,152.591659,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Male. Healthy. Hivesville Windera Rd (unknown exactly where along the road). Observed by Wendy Taylor. Submitted via FB (South Burnett Koala Watch),2023,11,25,Australia,AU,Queensland,-26.160781,151.734195,EPSG:4326 +HUMAN_OBSERVATION,camille_caparros,1,,,2022,9,13,Australia,AU,South Australia,-34.784294,138.689018,EPSG:4326 +HUMAN_OBSERVATION,alida1954,1,,,2023,11,24,Australia,AU,South Australia,-35.109128,138.626542,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,19,Australia,AU,Queensland,-27.527887,153.111695,EPSG:4326 +HUMAN_OBSERVATION,Jo Burrows,1,,,2020,1,22,Australia,AU,Queensland,-27.503087,153.074708,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,10,23,Australia,AU,Queensland,-27.550539,153.059963,EPSG:4326 +HUMAN_OBSERVATION,Nina Kerr,1,,,2020,3,28,Australia,AU,Victoria,-37.935968,141.469968,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2023,9,19,Australia,AU,Queensland,-27.807812,151.57608,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,22,Australia,AU,South Australia,-34.891861,138.715145,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Brendan Linsket. Submitted via msg.,2024,9,23,Australia,AU,Queensland,-25.185634,151.492737,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,,2023,3,18,Australia,AU,Queensland,-27.51054,153.070127,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,7,6,Australia,AU,Queensland,-27.515042,153.073092,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Koala located at Arthur Shooter Park Oakey - Observed by Robert Miller for Toowoomba Koala and Wildlife Rescue. Koala was being attacked by magpies - assessment done by M Butlin for TKWR. Healthy Koala.,2023,11,19,Australia,AU,Queensland,-27.429836,151.719356,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2024,1,21,Australia,AU,Queensland,-27.527896,153.093131,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.384392,145.312622,EPSG:4326 +HUMAN_OBSERVATION,lunch33,1,,,2021,1,3,Australia,AU,South Australia,-34.78925,135.802278,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Believe this may be the one seen yesterday at night. Also its quite brown? I have taken several shots for identification. Firstly low in the tree, then from the other side, as it went up, then later up top of the tree.",2021,10,25,Australia,AU,New South Wales,-28.254241,153.377398,EPSG:4326 +HUMAN_OBSERVATION,Sarah Sampson,1,,,2024,2,19,Australia,AU,Victoria,-38.476921,145.00998,EPSG:4326 +HUMAN_OBSERVATION,Iristheflower,1,,,2020,2,1,Australia,AU,Queensland,-27.4083,152.631729,EPSG:4326 +HUMAN_OBSERVATION,Federico,1,,,2023,12,3,Australia,AU,Queensland,-27.91064,153.371829,EPSG:4326 +HUMAN_OBSERVATION,Thomas Brodribb,1,,,2022,11,17,Australia,AU,Queensland,-28.234937,152.745978,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Upper wisteria car park,2024,9,19,Australia,AU,Queensland,-27.524443,153.091905,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2024,9,17,Australia,AU,Victoria,-38.25377,145.238083,EPSG:4326 +HUMAN_OBSERVATION,karenvonb,1,,,2024,11,8,Australia,AU,Queensland,-27.431224,151.935218,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2021,8,21,Australia,AU,South Australia,-35.003519,138.721822,EPSG:4326 +HUMAN_OBSERVATION,cnzdenek,1,,Male koala right on the edge of a road in a Eucalyptus tereticornis. Red tag in left ear.,2023,3,23,Australia,AU,Queensland,-27.514522,153.20302,EPSG:4326 +HUMAN_OBSERVATION,jhagenx6,1,FEMALE,Annabel’s best friend,2023,12,30,Australia,AU,Victoria,-37.01315,145.531759,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear,2023,11,1,Australia,AU,Queensland,-27.530264,153.103453,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,4,Australia,AU,Queensland,-27.527209,153.109881,EPSG:4326 +HUMAN_OBSERVATION,joel_ellis,1,,"Koala actively foraging, reaching for gum leaves. It was in the flimsy extremities of a tall (I suspect) Stringybark, unbothered by the windy conditions swaying it around. Fresh scat beneath it.",2024,8,12,Australia,AU,Victoria,-37.641083,143.898873,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,10,17,Australia,AU,Victoria,-37.587348,143.883676,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,,Local Koala often seen sitting in one of two trees a photograph area.,2022,9,19,Australia,AU,South Australia,-35.167162,138.563246,EPSG:4326 +HUMAN_OBSERVATION,lizdoust,1,,,2024,1,4,Australia,AU,Victoria,-37.370898,144.52172,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2024,6,15,Australia,AU,Queensland,-27.543817,153.053069,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2024,10,31,Australia,AU,Victoria,-38.331835,146.445501,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,7,30,Australia,AU,Queensland,-27.544927,153.058685,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,5,5,Australia,AU,Queensland,-27.528055,153.092885,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,9,29,Australia,AU,Queensland,-27.528517,153.113447,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - tag RIGHT ear - I think this is Rowie,2023,10,2,Australia,AU,Queensland,-27.527596,153.102821,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,Koala and joey sitting in a stringybark tree,2023,10,13,Australia,AU,Queensland,-27.553293,153.057882,EPSG:4326 +HUMAN_OBSERVATION,emilymccoll,1,FEMALE,Mother and Joey,2022,11,30,Australia,AU,Queensland,-27.352438,151.812855,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside cleaners donga,2023,11,19,Australia,AU,Queensland,-27.526863,153.091637,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,9,8,Australia,AU,Queensland,-27.528119,153.093416,EPSG:4326 +HUMAN_OBSERVATION,tinametcalf,1,,Could not see if tagged. Healthy,2024,10,13,Australia,AU,Queensland,-27.221281,153.089281,EPSG:4326 +HUMAN_OBSERVATION,scorpio83,1,,,2020,10,22,Australia,AU,Queensland,-27.269697,152.858393,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,10,Australia,AU,Queensland,-27.542714,153.073367,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear = presume this is Cindy,2023,7,24,Australia,AU,Queensland,-27.527146,153.107631,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,,2023,11,5,Australia,AU,Queensland,-27.510402,153.069856,EPSG:4326 +HUMAN_OBSERVATION,pierce_clark,1,,,2024,10,12,Australia,AU,Queensland,-27.9141,153.375255,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Koala and Joey at top of Tallowood,2020,11,17,Australia,AU,Queensland,-27.548421,153.0584,EPSG:4326 +HUMAN_OBSERVATION,Isis Khalil,1,,,2023,12,24,Australia,AU,Queensland,-19.127828,146.868242,EPSG:4326 +HUMAN_OBSERVATION,whittie,1,,,2024,1,16,Australia,AU,South Australia,-34.904254,138.615318,EPSG:4326 +HUMAN_OBSERVATION,Aimee Collier,1,,Yellow ear tag left ear (Male),2024,8,26,Australia,AU,Queensland,-27.275819,152.935425,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Young likely a dispersing male.,2024,6,4,Australia,AU,Queensland,-27.536205,153.075836,EPSG:4326 +HUMAN_OBSERVATION,David Jones,1,,,2024,10,3,Australia,AU,New South Wales,-34.070308,150.83525,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,17,Australia,AU,Queensland,-27.527117,153.107695,EPSG:4326 +HUMAN_OBSERVATION,Heath Hunter,1,,Resting and feeding on Grey Box (Euc. microcarpa).,2022,12,28,Australia,AU,South Australia,-34.938575,138.667638,EPSG:4326 +HUMAN_OBSERVATION,Gawain,1,,Climbed into another tree,2024,7,1,Australia,AU,Victoria,-38.381996,145.276862,EPSG:4326 +HUMAN_OBSERVATION,Sam S,1,,"I koala in a euc rubida, shown up in top branches curled up",2023,9,11,Australia,AU,Victoria,-37.029334,145.462449,EPSG:4326 +HUMAN_OBSERVATION,eklemp,1,,,2024,10,29,Australia,AU,Queensland,-28.19508,153.187133,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2020,10,7,Australia,AU,Queensland,-27.550976,153.05762,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,3,15,Australia,AU,Queensland,-27.551242,153.057617,EPSG:4326 +HUMAN_OBSERVATION,Kelana Arraiza,1,,,2023,2,15,Australia,AU,Queensland,-28.091086,153.356418,EPSG:4326 +HUMAN_OBSERVATION,laurenbeekman,1,,,2021,11,3,Australia,AU,Queensland,-27.73663,153.189987,EPSG:4326 +HUMAN_OBSERVATION,schnackman,1,,,2022,11,16,Australia,AU,South Australia,-35.593033,137.505718,EPSG:4326 +HUMAN_OBSERVATION,wild_wishart,1,,,2021,6,20,Australia,AU,Queensland,-27.545129,153.047417,EPSG:4326 +HUMAN_OBSERVATION,cv173,1,,,2024,10,18,Australia,AU,Queensland,-27.824826,152.615535,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,23,Australia,AU,Queensland,-27.529505,153.103722,EPSG:4326 +HUMAN_OBSERVATION,nicolemc,1,,,2023,7,27,Australia,AU,Queensland,-26.167728,152.681533,EPSG:4326 +HUMAN_OBSERVATION,Miles Turner,1,,,2023,5,22,Australia,AU,Queensland,-27.431498,152.995727,EPSG:4326 +HUMAN_OBSERVATION,明Yiming Xu,1,,,2023,9,28,Australia,AU,Queensland,-27.0962,152.703292,EPSG:4326 +HUMAN_OBSERVATION,Allison Wall,1,,,2021,4,28,Australia,AU,Victoria,-38.834524,143.506802,EPSG:4326 +HUMAN_OBSERVATION,Christian Perrin,1,,,2022,10,20,Australia,AU,Queensland,-27.525983,153.283001,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area 2 male koalas same tree - koala 1 Older male in tree with Jacob Jnr,2023,12,31,Australia,AU,Queensland,-27.525704,153.092435,EPSG:4326 +HUMAN_OBSERVATION,Pete Woodall,1,,Jun-72,2021,9,17,Australia,AU,Queensland,-27.540966,153.034125,EPSG:4326 +HUMAN_OBSERVATION,prism21,1,MALE,Stringybark,2024,5,14,Australia,AU,Victoria,-37.861801,144.129006,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,3,15,Australia,AU,Queensland,-27.551478,153.057761,EPSG:4326 +HUMAN_OBSERVATION,jennii07,1,,,2021,6,27,Australia,AU,South Australia,-35.647697,137.639847,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Key shot that clearly identifies this koala as male and its nose markings to link to other koala observations.,2020,11,14,Australia,AU,New South Wales,-28.253971,153.377483,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,Female with Joey about 8 months since birth. Descending via a ladder tree.,2023,7,30,Australia,AU,Queensland,-27.496538,152.24925,EPSG:4326 +HUMAN_OBSERVATION,ron_willemsen,1,,,2023,11,13,Australia,AU,Victoria,-38.167112,145.171555,EPSG:4326 +HUMAN_OBSERVATION,leithallb,1,,2nd of 2 Koalas seen. 5818,2022,11,22,Australia,AU,South Australia,-35.708153,137.49395,EPSG:4326 +HUMAN_OBSERVATION,elissalayne,1,,Found in campsite,2023,4,7,Australia,AU,Queensland,-28.216498,152.764881,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult female with joey. Healthy. Near the tree of another mum & bub. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,9,8,Australia,AU,Queensland,-26.156066,151.801976,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,5,11,Australia,AU,Queensland,-27.510639,153.086948,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,3,7,Australia,AU,New South Wales,-29.870405,150.601331,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,5,30,Australia,AU,New South Wales,-29.870275,150.601281,EPSG:4326 +HUMAN_OBSERVATION,Graham Armstrong,1,,,2024,10,30,Australia,AU,South Australia,-34.772911,135.787726,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,30,Australia,AU,South Australia,-34.88738,138.729342,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,Koala also heard: Fri 15/11/24 1:05am WNW faint 1:21am E v fainty 2:28am ESE faint 16/11/24 18:44 NNE loud 18:45 NNE loud 21:12 N,2024,11,16,Australia,AU,Queensland,-27.822998,152.992616,EPSG:4326 +HUMAN_OBSERVATION,Zoltán Stekkelpak,1,,,2024,3,23,Australia,AU,Victoria,-38.668264,143.860686,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,9,22,Australia,AU,Queensland,-27.220637,153.062622,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,9,26,Australia,AU,Victoria,-37.651682,143.911663,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2024,11,17,Australia,AU,South Australia,-34.921845,138.693772,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2023,3,29,Australia,AU,South Australia,-35.035978,138.572859,EPSG:4326 +HUMAN_OBSERVATION,wombatplace,1,,"Sighting and photos (c) david19. Field Notes - A mammal hanging from the underside of a freer branch, waiting for an unsuspecting tourist to drop on",2022,1,16,Australia,AU,South Australia,-35.069144,138.699937,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult female and joey. Healthy. Along Mondure Wheatlands Rd. Observed by Wendy Taylor. Submitted via FB (South Burnett Koala Watch),2023,11,20,Australia,AU,Queensland,-26.21867,151.826037,EPSG:4326 +HUMAN_OBSERVATION,R. Kabakoff,1,,,2024,7,21,Australia,AU,Queensland,-27.274808,153.046484,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds,2024,11,10,Australia,AU,Queensland,-27.528054,153.092277,EPSG:4326 +HUMAN_OBSERVATION,dieselfraser,1,,New koala bud in the yard.,2023,4,30,Australia,AU,Victoria,-38.825169,145.999344,EPSG:4326 +HUMAN_OBSERVATION,craigwelden,1,,,2021,8,17,Australia,AU,Queensland,-27.928363,152.410508,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,6,Australia,AU,Queensland,-27.509683,153.084147,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,10,2,Australia,AU,South Australia,-34.750083,138.923788,EPSG:4326 +HUMAN_OBSERVATION,Dee Nolan,1,,,2023,8,8,Australia,AU,South Australia,-35.009337,138.662223,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,FEMALE,In bushes at ground level in house yard next to post office in Rathdowney. Climbed callistamon and stayed there till dark. Gone by morning,2022,9,28,Australia,AU,Queensland,-28.211123,152.865472,EPSG:4326 +HUMAN_OBSERVATION,jotrack2,1,,"In E.tereticornis. Koala counts: 6 counts, 5 hours (4x1hr, 2x 30mins) 4 days 5 koalas (3 individuals), 5 sightings 24/9/2023 7:30-8:30 1 koala 60 mins x 2, 25/9/2023 7:30-8:30 2 koalas 1 sighting (Mum and Joey) 60 mins x 2, 29/9/2023 30mins 2 koalas, 1 sighting, 29/9/2023 30mins 0 koalas.",2023,9,24,Australia,AU,Queensland,-27.82403,152.992753,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,4,27,Australia,AU,Queensland,-27.537874,153.054408,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,10,7,Australia,AU,New South Wales,-28.266461,153.390095,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Frank Rooney,2024,3,31,Australia,AU,Queensland,-27.526881,153.090446,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,? dirty bum,2024,2,3,Australia,AU,Queensland,-27.52794,153.111525,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,4,21,Australia,AU,Queensland,-27.548774,153.058767,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2023,3,14,Australia,AU,Queensland,-27.358642,152.074797,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,3,11,Australia,AU,Victoria,-38.671312,146.163789,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Triangle area next to cafeteria Mother and joey,2024,8,24,Australia,AU,Queensland,-27.527104,153.092188,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland In nursery grounds Male yellow tag left ear 0976,2023,12,10,Australia,AU,Queensland,-27.528122,153.092287,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,9,17,Australia,AU,Queensland,-27.527294,153.091604,EPSG:4326 +HUMAN_OBSERVATION,s_ku,1,MALE,,2020,5,8,Australia,AU,Queensland,-27.912073,153.374043,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,"Male calling from a small Blackwood, Acacia melanoxylon",2021,10,26,Australia,AU,Victoria,-38.67128,146.164458,EPSG:4326 +HUMAN_OBSERVATION,Joachim Bertrands,1,,,2024,9,15,Australia,AU,Victoria,-38.343079,141.586867,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,#1,2022,11,13,Australia,AU,Queensland,-27.542345,153.07315,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,9,21,Australia,AU,Queensland,-27.52725,153.091383,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to woodland Mother and joey,2023,11,14,Australia,AU,Queensland,-27.527395,153.09209,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2023,10,21,Australia,AU,Queensland,-27.524224,153.093578,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2021,4,12,Australia,AU,South Australia,-34.970473,138.638111,EPSG:4326 +HUMAN_OBSERVATION,anniesn,1,MALE,,2021,11,16,Australia,AU,Queensland,-27.510526,153.069986,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Female and joey. They have moved from the lower trees to the lemon scented gum and gradually progressing higher up. Joey is getting bigger!,2020,10,17,Australia,AU,New South Wales,-28.253633,153.376698,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2022,11,14,Australia,AU,Queensland,-27.671145,151.54393,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,,2024,9,20,Australia,AU,Queensland,-27.123119,151.993408,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,,,2023,1,23,Australia,AU,Queensland,-27.457454,152.401208,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,6,22,Australia,AU,Queensland,-27.526839,153.090786,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2024,5,7,Australia,AU,Victoria,-37.579119,143.890848,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,5,27,Australia,AU,Queensland,-27.547807,153.060785,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,"Submitted by Toni Kindleysides. Alive, healthy, adult, female with joey",2020,4,9,Australia,AU,Queensland,-26.517364,151.832395,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Sleepy koala, just woke up, with a little brown markings on coat.",2020,12,25,Australia,AU,New South Wales,-28.256431,153.400783,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,15,Australia,AU,South Australia,-34.891989,138.721965,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2024,1,4,Australia,AU,Queensland,-27.444343,151.958055,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Large koala where I have been hearing one for a few days. Was all excited there might be a joey, but sadly its just a claw ...",2021,7,4,Australia,AU,New South Wales,-28.254536,153.377654,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,FEMALE,Female 🐨,2023,9,9,Australia,AU,New South Wales,-33.127136,151.242797,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2024,9,13,Australia,AU,South Australia,-35.111344,138.640272,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,14,Australia,AU,Queensland,-27.52844,153.103279,EPSG:4326 +HUMAN_OBSERVATION,Greg Spearritt,1,,,2023,10,28,Australia,AU,Queensland,-28.340142,152.370406,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2021,1,7,Australia,AU,New South Wales,-28.268875,153.392745,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,took a second angle but still could not see a lot more detail.,2020,10,15,Australia,AU,New South Wales,-28.252347,153.375648,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,11,7,Australia,AU,Queensland,-27.545855,153.058788,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear,2023,3,28,Australia,AU,Queensland,-27.529604,153.103401,EPSG:4326 +HUMAN_OBSERVATION,joshpierce,1,,"Along eucalyptus windbreaker, I think Rough Barked Mana Gum.",2023,8,2,Australia,AU,Victoria,-38.263023,141.655842,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,7,6,Australia,AU,South Australia,-34.888181,138.726936,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,MALE,,2023,10,22,Australia,AU,Queensland,-27.701124,153.189646,EPSG:4326 +HUMAN_OBSERVATION,mtasney,1,,,2021,3,4,Australia,AU,Queensland,-27.271878,152.972808,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,9,28,Australia,AU,Queensland,-27.383112,151.77137,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,7,21,Australia,AU,Queensland,-27.246453,151.693588,EPSG:4326 +HUMAN_OBSERVATION,koalasofstraddie,1,,Beside 29 claytons road -Amity Point,2021,5,3,Australia,AU,Queensland,-27.401313,153.4415,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,E.microcorys.,2020,10,12,Australia,AU,Queensland,-27.544777,153.058603,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,30,Australia,AU,South Australia,-34.888717,138.734088,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Female with joey,2023,9,19,Australia,AU,Queensland,-27.918878,153.376981,EPSG:4326 +HUMAN_OBSERVATION,kaz500,1,,,2021,10,16,Australia,AU,Queensland,-27.789287,152.779755,EPSG:4326 +HUMAN_OBSERVATION,stuartyoung78,1,,,2023,9,29,Australia,AU,Queensland,-27.394881,153.443319,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,2,22,Australia,AU,Queensland,-27.549231,153.051261,EPSG:4326 +HUMAN_OBSERVATION,tan02,1,,,2024,3,15,Australia,AU,Queensland,-27.533646,153.04118,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,Koala with Joey - bit hard to see Joey in this pic.,2022,11,10,Australia,AU,Queensland,-27.53015,153.100925,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Koala observation, first spotted by Joan, photos supplied by Peter.",2022,1,21,Australia,AU,New South Wales,-28.275088,153.393212,EPSG:4326 +HUMAN_OBSERVATION,SBERRY,1,,Pearcedale Road,2020,10,25,Australia,AU,Victoria,-38.160578,145.242358,EPSG:4326 +HUMAN_OBSERVATION,Craig Morley,1,,In tree at toilet block opposite shops in main st of Apollo Bay.,2021,11,11,Australia,AU,Victoria,-38.75595,143.669219,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Male. Observed by Kai Wood-Willems. Submitted via email.,2021,2,13,Australia,AU,Queensland,-26.266616,151.986718,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,"A nice healthy Koala, possible male which has been calling for the few night in the property.",2021,4,21,Australia,AU,Queensland,-27.734853,153.102292,EPSG:4326 +HUMAN_OBSERVATION,KBarnes87,1,,,2021,9,28,Australia,AU,Queensland,-27.901122,153.032532,EPSG:4326 +HUMAN_OBSERVATION,Karen Weaving,1,,Wild relaxing in a Eucalyptus spp Tree. I am going through some of my photo collections of observations I had yet to upload to iNaturalist.,2020,9,26,Australia,AU,South Australia,-34.805774,138.736502,EPSG:4326 +HUMAN_OBSERVATION,Gen C,1,,,2024,9,18,Australia,AU,South Australia,-35.005317,138.637797,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,7,31,Australia,AU,New South Wales,-33.076726,151.095092,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,7,13,Australia,AU,Queensland,-27.510047,153.08597,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,MALE,Male - very vocal,2024,8,30,Australia,AU,New South Wales,-28.254179,153.376949,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,19,Australia,AU,Queensland,-27.525734,153.092403,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,10,9,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,3 x Adults. Healthy. 2 x males & 1 x female. lots of koalas observed in the area travelling through corridor from old trainline to showgrounds. Observed by Cynthia Radford submitted via text.,2022,4,30,Australia,AU,Queensland,-26.179022,151.698127,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,,Female koala high in a redgum. She has moved 90m west and now on other side of road from yesterday's location,2024,3,28,Australia,AU,Victoria,-37.82793,144.302967,EPSG:4326 +HUMAN_OBSERVATION,Amy Thomas,1,,,2024,7,7,Australia,AU,Queensland,-27.250419,153.066816,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,24,Australia,AU,Queensland,-27.52945,153.112132,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,3,14,Australia,AU,Queensland,-26.191299,152.127187,EPSG:4326 +HUMAN_OBSERVATION,bhagya_y,1,,,2023,10,7,Australia,AU,Victoria,-38.666296,143.861211,EPSG:4326 +HUMAN_OBSERVATION,Adriana Labate,1,,,2021,5,5,Australia,AU,Victoria,-38.670066,143.860696,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2024,7,27,Australia,AU,Queensland,-27.528262,153.092232,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,6,Australia,AU,Queensland,-27.528976,153.111318,EPSG:4326 +HUMAN_OBSERVATION,alisondukegibb,1,,,2023,8,16,Australia,AU,Queensland,-27.779992,152.742463,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,10,18,Australia,AU,Victoria,-38.671045,146.163711,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2023,10,14,Australia,AU,South Australia,-34.692015,138.826933,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,4,Australia,AU,Queensland,-27.526926,153.090819,EPSG:4326 +HUMAN_OBSERVATION,Dan Bishop,1,,,2021,10,17,Australia,AU,Queensland,-27.47174,151.95386,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park Jacob Jnr,2024,8,17,Australia,AU,Queensland,-27.525063,153.092356,EPSG:4326 +HUMAN_OBSERVATION,Rachel Devlin,1,,,2023,6,22,Australia,AU,Victoria,-38.262879,145.046652,EPSG:4326 +HUMAN_OBSERVATION,youarenumber6,1,,,2023,8,11,Australia,AU,South Australia,-34.909664,138.730297,EPSG:4326 +HUMAN_OBSERVATION,Graeme,1,,,2024,3,30,Australia,AU,Victoria,-38.691774,146.118867,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,10,16,Australia,AU,Queensland,-26.200712,151.772555,EPSG:4326 +HUMAN_OBSERVATION,insiderelic,1,,,2020,10,31,Australia,AU,South Australia,-34.980111,138.705969,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2021,9,14,Australia,AU,Queensland,-27.913179,153.374621,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"In a Eucalyptus tereticornis, young Koala, clean rear end",2023,12,9,Australia,AU,Queensland,-27.448211,152.565583,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Julie Pidgeon. Submitted by Denise Shaw.,2023,7,11,Australia,AU,Queensland,-26.223048,151.997179,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Back of woodland area near houses,2023,5,20,Australia,AU,Queensland,-27.528583,153.092839,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,5,6,Australia,AU,Queensland,-27.527374,153.092298,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Rita the koala spotted (tag 1523). Rita was released from the RSPCA wildlife hospital on Sunday 22/10/24 at Griffith Uni Park Road Car park and found here. She was at the RSPCA from being rescued from a suspected dog attack on Seville road.,2024,9,25,Australia,AU,Queensland,-27.549233,153.072507,EPSG:4326 +HUMAN_OBSERVATION,emilysian04,1,,,2024,11,20,Australia,AU,South Australia,-35.007572,138.659805,EPSG:4326 +HUMAN_OBSERVATION,Sharon Dodd,1,,,2023,11,25,Australia,AU,Victoria,-38.348645,146.404806,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,,2024,1,2,Australia,AU,Queensland,-27.622245,152.902212,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2020,3,16,Australia,AU,Victoria,-38.384272,145.304055,EPSG:4326 +HUMAN_OBSERVATION,neil1234,1,,,2022,11,1,Australia,AU,New South Wales,-30.461363,152.885227,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Aldi gully,2024,9,28,Australia,AU,Queensland,-27.526223,153.093116,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,9,29,Australia,AU,Queensland,-27.525681,153.09228,EPSG:4326 +HUMAN_OBSERVATION,Dr John Martin,1,,,2022,3,19,Australia,AU,South Australia,-34.90855,138.608033,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree next to tennis court - same tree as other koala,2023,7,2,Australia,AU,Queensland,-27.525351,153.09277,EPSG:4326 +HUMAN_OBSERVATION,Lucas Hopkins,1,,,2022,11,27,Australia,AU,New South Wales,-28.379526,153.45431,EPSG:4326 +HUMAN_OBSERVATION,jonandalisha,1,,,2023,2,19,Australia,AU,Queensland,-27.549937,153.036925,EPSG:4326 +HUMAN_OBSERVATION,Bilby Blooms,1,,In Euc blakelyi,2022,12,1,Australia,AU,New South Wales,-31.578908,149.338035,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,,2023,3,3,Australia,AU,Queensland,-27.564122,153.133147,EPSG:4326 +HUMAN_OBSERVATION,Marie Tarrant,1,,,2023,8,19,Australia,AU,Queensland,-26.971645,152.163777,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2023,5,20,Australia,AU,Victoria,-37.744589,143.907541,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Sport n rec picnic area,2024,9,15,Australia,AU,Queensland,-27.525371,153.092119,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag - & her joey,2023,3,11,Australia,AU,Queensland,-27.5296,153.104957,EPSG:4326 +HUMAN_OBSERVATION,Kye Turnbull,1,,,2024,8,19,Australia,AU,Queensland,-27.276863,153.046194,EPSG:4326 +HUMAN_OBSERVATION,Jason Ramsay,1,,Strong eucalypt smell. Plentiful found under Eucalyptus tereticornis.,2023,10,23,Australia,AU,Queensland,-27.270574,152.967466,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On Lophostemon confertus or Eucalyptus propinqua.,2024,2,1,Australia,AU,Queensland,-27.912167,153.188172,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Koala mum and her joey.,2023,10,29,Australia,AU,Queensland,-27.284182,153.000489,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,7,11,Australia,AU,Queensland,-27.552871,153.057261,EPSG:4326 +HUMAN_OBSERVATION,nicholascroft,1,,"Whites Hill Reserve, within BCC koala habitat tree regeneration zone.",2023,4,23,Australia,AU,Queensland,-27.510717,153.086836,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,1,8,Australia,AU,Queensland,-27.543165,153.054135,EPSG:4326 +HUMAN_OBSERVATION,kymelen,1,,,2022,3,27,Australia,AU,Victoria,-35.874997,145.330017,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,"Being attacked by 2 little ravens,hanging in mistletoe till it fell about 30 mtrs ,appeared unhurt",2021,9,21,Australia,AU,Victoria,-38.129532,145.272201,EPSG:4326 +HUMAN_OBSERVATION,arad1,1,,Regular to this location,2022,11,6,Australia,AU,Queensland,-27.425513,151.899204,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,7,20,Australia,AU,Queensland,-27.52656,153.091578,EPSG:4326 +HUMAN_OBSERVATION,jryan198,1,,,2022,12,30,Australia,AU,Queensland,-27.26303,152.04767,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,8,Australia,AU,South Australia,-34.889692,138.728163,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Wisteria carpark Jacob Jnr,2024,10,19,Australia,AU,Queensland,-27.524037,153.09199,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,10,30,Australia,AU,South Australia,-34.893457,138.625801,EPSG:4326 +HUMAN_OBSERVATION,moon-jones,1,,,2022,11,13,Australia,AU,Queensland,-27.304578,152.885558,EPSG:4326 +HUMAN_OBSERVATION,mikew65,1,,,2024,2,15,Australia,AU,South Australia,-34.83217,135.685924,EPSG:4326 +HUMAN_OBSERVATION,Croc-n-Gecko,1,,,2023,10,8,Australia,AU,South Australia,-35.600665,137.503785,EPSG:4326 +HUMAN_OBSERVATION,Charles Dove,1,,,2024,4,20,Australia,AU,Queensland,-27.564238,152.041191,EPSG:4326 +HUMAN_OBSERVATION,rachael_williams,1,,,2023,4,8,Australia,AU,Queensland,-27.395194,153.442017,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Eucalyptus tereticornis. This koala was eating,2022,3,14,Australia,AU,Queensland,-27.533554,153.059451,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"Union Jack Reserve, end of Loop Walk",2024,6,28,Australia,AU,Victoria,-37.644657,143.896317,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,29,Australia,AU,Queensland,-27.530071,153.103812,EPSG:4326 +HUMAN_OBSERVATION,illordrolli,1,,,2024,4,1,Australia,AU,Victoria,-38.667877,143.860718,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,,,2022,9,27,Australia,AU,Queensland,-27.498617,153.400302,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,3,28,Australia,AU,Queensland,-27.550671,153.053175,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2023,12,5,Australia,AU,Queensland,-27.3588,152.074708,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland Funky eye?,2024,3,30,Australia,AU,Queensland,-27.527642,153.092473,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,9,26,Australia,AU,Queensland,-27.506073,153.082928,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Koala scat & high use grey gum. (koala runway),2022,10,22,Australia,AU,New South Wales,-33.113283,151.117265,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery near woodland entrance,2023,7,16,Australia,AU,Queensland,-27.527194,153.091991,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,Smaller girl taking shelter in Turpentine,2024,3,25,Australia,AU,New South Wales,-34.083368,150.851988,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,very dark fur,2022,12,31,Australia,AU,Queensland,-27.54604,153.072949,EPSG:4326 +HUMAN_OBSERVATION,juliesarna,1,,,2023,6,17,Australia,AU,Queensland,-27.298786,153.004397,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,1,12,Australia,AU,South Australia,-34.865267,138.656885,EPSG:4326 +HUMAN_OBSERVATION,tanny79,1,,,2024,8,26,Australia,AU,Queensland,-27.914045,153.356451,EPSG:4326 +HUMAN_OBSERVATION,margadelie,1,,,2023,1,10,Australia,AU,South Australia,-34.959896,138.692908,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to lower car park on Cavendish Road,2023,11,4,Australia,AU,Queensland,-27.525633,153.09036,EPSG:4326 +HUMAN_OBSERVATION,Dargaville,1,,With joey,2024,10,30,Australia,AU,Victoria,-38.203268,141.775228,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,16,Australia,AU,South Australia,-34.889832,138.729274,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,12,26,Australia,AU,New South Wales,-28.25418,153.37759,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,11,23,Australia,AU,Queensland,-27.45319,152.640435,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,4,Australia,AU,Queensland,-27.529631,153.103251,EPSG:4326 +HUMAN_OBSERVATION,Peter Crowcroft,1,,,2023,6,17,Australia,AU,Victoria,-38.671905,143.852012,EPSG:4326 +HUMAN_OBSERVATION,econiko,1,,,2020,8,16,Australia,AU,South Australia,-35.181457,138.498949,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In woodland area near entrance and close to nursery fence,2023,7,16,Australia,AU,Queensland,-27.527739,153.092396,EPSG:4326 +HUMAN_OBSERVATION,codyhochen,1,,,2021,9,2,Australia,AU,Queensland,-27.311396,153.001086,EPSG:4326 +HUMAN_OBSERVATION,limnodynastes,1,,,2024,7,22,Australia,AU,New South Wales,-28.823967,153.201341,EPSG:4326 +HUMAN_OBSERVATION,mitchsnow,1,,,2024,7,16,Australia,AU,Queensland,-27.493458,153.403503,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,Koala with Joey,2021,12,8,Australia,AU,Queensland,-27.50952,153.084428,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,4,25,Australia,AU,Queensland,-27.527263,153.091503,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland Mother and joey,2023,9,9,Australia,AU,Queensland,-27.528228,153.092627,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,3,Australia,AU,Queensland,-27.528158,153.111587,EPSG:4326 +HUMAN_OBSERVATION,Hidden Vale Research Station,1,,Tags used with appropraite ethics and pe,2023,5,20,Australia,AU,Queensland,-27.743717,152.478001,EPSG:4326 +HUMAN_OBSERVATION,Jay,1,,,2022,6,20,Australia,AU,Victoria,-38.667967,143.860706,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,3,22,Australia,AU,Queensland,-27.917903,153.377553,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dirty bum - rescuer notified - too high for immediate rescue,2024,1,15,Australia,AU,Queensland,-27.522974,153.090347,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block picnic area,2024,1,2,Australia,AU,Queensland,-27.526077,153.090607,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg,2023,12,1,Australia,AU,Queensland,-26.213098,151.770727,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,3,13,Australia,AU,Queensland,-27.517049,153.084334,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,9,Australia,AU,Queensland,-27.526307,153.090757,EPSG:4326 +HUMAN_OBSERVATION,Brendan Casey,1,,Grantville NCR,2023,1,20,Australia,AU,Victoria,-38.4421,145.538153,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,MALE,,2020,9,16,Australia,AU,Victoria,-37.628013,143.88442,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,15,Australia,AU,Queensland,-27.527207,153.111333,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"This is a male. He started the day up one tree, then came down and went up another, so there are a range of pictures to help identify him. I also have video of him.",2020,7,13,Australia,AU,New South Wales,-28.254102,153.377495,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Independent joey,2023,11,27,Australia,AU,Queensland,-27.527068,153.10778,EPSG:4326 +HUMAN_OBSERVATION,Susan Kruss,1,,,2022,5,14,Australia,AU,Victoria,-38.480373,143.583276,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2024,9,19,Australia,AU,South Australia,-34.86458,138.659383,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,2 Koalas. I assume mother and joey.,2022,11,13,Australia,AU,Queensland,-27.564028,152.108139,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,In a cheese tree next to the car park,2023,8,3,Australia,AU,Queensland,-27.551797,153.057608,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,24,Australia,AU,Queensland,-27.527453,153.091123,EPSG:4326 +HUMAN_OBSERVATION,alisonswain,1,,,2021,9,21,Australia,AU,New South Wales,-36.170699,149.381783,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,26,Australia,AU,Queensland,-27.529142,153.106541,EPSG:4326 +HUMAN_OBSERVATION,rupenousoon,1,FEMALE,,2024,9,15,Australia,AU,Victoria,-38.484077,145.261615,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Female koala - yellow tag right ear,2023,5,6,Australia,AU,Queensland,-27.527454,153.09105,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,1,21,Australia,AU,Queensland,-27.527269,153.091512,EPSG:4326 +HUMAN_OBSERVATION,murrayoke,1,,,2024,8,24,Australia,AU,Queensland,-27.3785,152.567319,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,MALE,The koala breeding season in Southeast Queensland starts "around August". This male (same one in other recent posts) set out to scent mark this tree on 16 August. Photos 2 & 3 show it rubbing its chest gland enthusiastically against the tree - note the weird way it is flattened against the trunk as it climbs. It continued this until it was out of sight of the camera. Less than a minute after it arrived at the tree it was descending (photo 4) and was on its way a minute after arriving. Likely to scent mark more of the trees in its home range.,2021,8,16,Australia,AU,Queensland,-27.49628,152.247078,EPSG:4326 +HUMAN_OBSERVATION,trudileigh,1,,,2020,6,21,Australia,AU,Victoria,-38.639681,143.893461,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,"Tummaville Road, about 6km south of Gore Highway - in poplar box tree (Euc populnea)",2021,11,29,Australia,AU,Queensland,-27.801664,151.570613,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,In Tasmanian Blue Gum,2021,10,23,Australia,AU,Victoria,-38.67157,146.164122,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,27,Australia,AU,Queensland,-27.401595,153.438676,EPSG:4326 +HUMAN_OBSERVATION,Martin Rady,1,,,2024,8,23,Australia,AU,Queensland,-27.481427,153.166562,EPSG:4326 +HUMAN_OBSERVATION,clayt_,1,,,2024,10,27,Australia,AU,Victoria,-38.365852,145.276581,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Juvenile. Unknown sex. Healthy. Observed near another juvenile in a different tree close to the bbq area. Observed by Tara Irvine. Submitted by email.,2023,5,21,Australia,AU,Queensland,-26.131796,151.422395,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,30,Australia,AU,Queensland,-27.528545,153.10333,EPSG:4326 +HUMAN_OBSERVATION,graeme lunt,1,,,2021,11,19,Australia,AU,Victoria,-37.689805,143.996638,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,MALE,same male koala.,2022,9,28,Australia,AU,New South Wales,-28.254173,153.376963,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Male in Stringybark,2020,11,20,Australia,AU,Queensland,-27.551797,153.058089,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,FEMALE,Found dead at base of Ironbark Eucalyptus crebra. Adult female. Staining of fur around rump (see second image for more detail) suggestive of chlamydial infection.,2022,11,11,Australia,AU,Queensland,-28.02702,152.635726,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2022,10,8,Australia,AU,Queensland,-27.823813,152.993775,EPSG:4326 +HUMAN_OBSERVATION,noddyblue,1,,,2023,12,24,Australia,AU,Victoria,-36.876263,145.407406,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Not sure which this one is.,2020,11,16,Australia,AU,New South Wales,-28.254245,153.377,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,1,Australia,AU,South Australia,-34.889714,138.722552,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,,,2023,3,4,Australia,AU,Victoria,-38.318323,142.3625,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,12,Australia,AU,Queensland,-27.531667,153.105239,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,5,Australia,AU,Queensland,-27.526544,153.103132,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Suffering from Chlamydia infection, spotted gum was also suffering from drought and was in poor condition",2021,5,24,Australia,AU,Queensland,-27.496295,152.363342,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,6,17,Australia,AU,Queensland,-27.60292,151.887344,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree near mower shed,2023,5,23,Australia,AU,Queensland,-27.525871,153.090818,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2023,12,26,Australia,AU,Queensland,-27.358378,152.074447,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,25,Australia,AU,Queensland,-27.249147,151.697512,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Lawnton Road koala,2023,10,22,Australia,AU,Queensland,-27.283994,152.99968,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,Morning stroll,2020,2,21,Australia,AU,Queensland,-27.54531,153.068559,EPSG:4326 +HUMAN_OBSERVATION,jobarth,1,,,2023,12,3,Australia,AU,New South Wales,-29.779553,151.335144,EPSG:4326 +HUMAN_OBSERVATION,outside_adventures,1,,,2021,12,31,Australia,AU,Victoria,-37.909336,147.771895,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,And Joey in Tallowood,2020,8,25,Australia,AU,Queensland,-27.551807,153.057884,EPSG:4326 +HUMAN_OBSERVATION,Conservation Volunteers Australia,1,,,2022,2,8,Australia,AU,Queensland,-27.418914,152.608243,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,9,18,Australia,AU,Queensland,-27.551924,153.054557,EPSG:4326 +HUMAN_OBSERVATION,Alex,1,,,2024,7,13,Australia,AU,Queensland,-26.14974,152.86672,EPSG:4326 +HUMAN_OBSERVATION,pennydropped,1,,,2023,11,20,Australia,AU,Victoria,-38.384845,145.309403,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,Koala "Crusoe" found in the southern Eucalyptus Microcorys. Crusoe has been found in this tree very regularly. The tree is 12 year old and very bushy.,2023,3,16,Australia,AU,Queensland,-27.414602,152.00429,EPSG:4326 +HUMAN_OBSERVATION,kholzknecht,1,,,2023,9,16,Australia,AU,South Australia,-34.868583,138.677978,EPSG:4326 +HUMAN_OBSERVATION,saulesvejas,1,,,2024,7,1,Australia,AU,Queensland,-19.126711,146.868423,EPSG:4326 +HUMAN_OBSERVATION,Gavin Goodyear,1,,,2022,8,7,Australia,AU,Queensland,-27.608811,151.977635,EPSG:4326 +HUMAN_OBSERVATION,ambrosia1,1,,,2023,7,16,Australia,AU,New South Wales,-29.027169,153.285368,EPSG:4326 +HUMAN_OBSERVATION,Oskie2811,1,,,2024,10,15,Australia,AU,Queensland,-27.309878,152.95811,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2024,11,2,Australia,AU,New South Wales,-34.745208,146.534012,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,8,Australia,AU,Queensland,-27.52772,153.092576,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2022,10,9,Australia,AU,Queensland,-28.220302,152.860105,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2023,11,25,Australia,AU,South Australia,-34.830996,138.736167,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,9,16,Australia,AU,South Australia,-34.998679,138.644156,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male,2024,10,16,Australia,AU,Queensland,-27.528038,153.104025,EPSG:4326 +HUMAN_OBSERVATION,Pete Petinatos,1,,,2022,12,5,Australia,AU,Victoria,-38.315837,142.367085,EPSG:4326 +HUMAN_OBSERVATION,Gareth,1,FEMALE,,2024,8,24,Australia,AU,Victoria,-38.836892,143.51568,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park lemon scented gum Cindy Crawford and joey,2023,8,21,Australia,AU,Queensland,-27.525028,153.092127,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2021,9,4,Australia,AU,New South Wales,-28.256211,153.40166,EPSG:4326 +HUMAN_OBSERVATION,mooseamara,1,,,2023,4,9,Australia,AU,Victoria,-38.354401,141.594345,EPSG:4326 +HUMAN_OBSERVATION,Donald Hobern,1,,Male calling (thermal camera) Second image is a video on Flickr (zooming in for later parts): https://www.flickr.com/photos/dhobern/54100617292/,2024,10,21,Australia,AU,Victoria,-38.356773,146.38836,EPSG:4326 +HUMAN_OBSERVATION,Gordon Claridge,1,,,2023,5,6,Australia,AU,Queensland,-27.496775,152.24945,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2024,4,13,Australia,AU,Queensland,-28.271215,152.042384,EPSG:4326 +HUMAN_OBSERVATION,Niko Pax,1,,,2023,4,6,Australia,AU,South Australia,-35.127336,138.477014,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Yellow stain on bottom otherwise appeared healthy. Observed by Fiona Davison. Submitted via FB (South Burnett Koala Watch),2023,11,29,Australia,AU,Queensland,-26.199667,151.772632,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2023,1,4,Australia,AU,Victoria,-38.136717,145.273248,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,8,17,Australia,AU,Queensland,-27.52727,153.092138,EPSG:4326 +HUMAN_OBSERVATION,marzipan2,1,,,2024,5,31,Australia,AU,Queensland,-27.98117,153.333908,EPSG:4326 +HUMAN_OBSERVATION,jamesedwards34,1,MALE,,2024,11,15,Australia,AU,Victoria,-38.391861,144.923094,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2023,11,25,Australia,AU,Victoria,-38.63778,145.715395,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2023,1,11,Australia,AU,South Australia,-34.909381,138.613895,EPSG:4326 +HUMAN_OBSERVATION,jbilby,1,,,2020,11,25,Australia,AU,South Australia,-35.084308,138.681825,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,Mum and joey,2023,9,15,Australia,AU,Queensland,-27.551116,153.057708,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,18,Australia,AU,Queensland,-27.529849,153.110747,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,21,Australia,AU,Queensland,-27.540086,153.068284,EPSG:4326 +HUMAN_OBSERVATION,timent87,1,,,2021,12,14,Australia,AU,Victoria,-38.133002,141.689033,EPSG:4326 +HUMAN_OBSERVATION,Leah Burns,1,,,2021,3,28,Australia,AU,Queensland,-27.545893,153.044839,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On a Eucalyptus microcorys.,2020,10,2,Australia,AU,Queensland,-27.550042,153.060022,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,Small koala still in same tree as last 2 days. Heard noises at night,2023,1,23,Australia,AU,Queensland,-28.211491,152.865839,EPSG:4326 +HUMAN_OBSERVATION,wallingford,1,,Mum and Joey.,2022,11,11,Australia,AU,Queensland,-27.671512,151.543428,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,9,16,Australia,AU,South Australia,-35.005973,138.637886,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,4,17,Australia,AU,Victoria,-38.671337,146.164245,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Stephen Reynolds. Sent via FB.,2021,6,21,Australia,AU,Queensland,-26.481111,151.862967,EPSG:4326 +HUMAN_OBSERVATION,lachlanfoord,1,,,2021,5,13,Australia,AU,South Australia,-35.186607,138.59845,EPSG:4326 +HUMAN_OBSERVATION,tipetalaura,1,,,2021,10,19,Australia,AU,South Australia,-34.904232,138.709268,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi & joey,2024,10,19,Australia,AU,Queensland,-27.529448,153.10359,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,7,13,Australia,AU,Queensland,-27.918851,151.381133,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,3,28,Australia,AU,New South Wales,-34.771075,146.597197,EPSG:4326 +HUMAN_OBSERVATION,phoebe_k_c,1,,,2024,3,15,Australia,AU,New South Wales,-33.104267,151.230842,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,24,Australia,AU,Queensland,-27.54582,153.073665,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,11,16,Australia,AU,Queensland,-27.82261,152.99265,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,In Eucalyptus nicholii,2021,3,30,Australia,AU,Victoria,-38.671329,146.164259,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Grey Ironbark,2020,1,31,Australia,AU,Queensland,-27.544995,153.059511,EPSG:4326 +HUMAN_OBSERVATION,Eric Knight,1,FEMALE,,2024,1,7,Australia,AU,Victoria,-38.755854,143.554613,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,5,1,Australia,AU,Queensland,-27.530701,153.103313,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,8,24,Australia,AU,Queensland,-27.41407,152.003147,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,is that a tick on its face?,2020,8,5,Australia,AU,New South Wales,-28.253982,153.377483,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,Two,2020,5,17,Australia,AU,South Australia,-35.006038,138.657418,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,8,Australia,AU,South Australia,-34.889557,138.731234,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,5,26,Australia,AU,South Australia,-34.865288,138.656525,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Alert, possibly sick, I let a local rescuer know and she will monitor.",2023,3,30,Australia,AU,Queensland,-27.780169,152.732016,EPSG:4326 +HUMAN_OBSERVATION,highseamutiny,1,,,2022,10,26,Australia,AU,Victoria,-38.241725,141.748917,EPSG:4326 +HUMAN_OBSERVATION,russkaz,1,,,2023,2,11,Australia,AU,Victoria,-38.318333,142.358539,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,no ear tags evident,2024,9,1,Australia,AU,Queensland,-27.510391,153.086666,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3117 Confirmed as Koala scat by OWAD Environment,2022,11,12,Australia,AU,Queensland,-27.49504,152.16237,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,8,13,Australia,AU,Queensland,-27.5514,153.058604,EPSG:4326 +HUMAN_OBSERVATION,Christian Perrin,1,,"Two in forest red gum, next to busy road.",2021,8,9,Australia,AU,Queensland,-27.51646,153.084568,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,2,18,Australia,AU,Queensland,-27.525441,153.092614,EPSG:4326 +HUMAN_OBSERVATION,Darcy Nugent,1,,,2023,9,1,Australia,AU,Victoria,-38.095692,144.278041,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block picnic area,2023,11,11,Australia,AU,Queensland,-27.525844,153.090532,EPSG:4326 +HUMAN_OBSERVATION,maymay33,1,,,2024,4,25,Australia,AU,Queensland,-26.894997,152.591692,EPSG:4326 +HUMAN_OBSERVATION,Rob Shepherd,1,,,2020,12,22,Australia,AU,Victoria,-38.399393,144.023486,EPSG:4326 +HUMAN_OBSERVATION,rachael_williams,1,,,2023,8,22,Australia,AU,Queensland,-27.613128,153.19922,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Koala heard calling. Turn sound up to maximum volume on computer. Ignore the chorus of crickets, cicadas & frogs.",2021,12,24,Australia,AU,New South Wales,-28.258892,153.402165,EPSG:4326 +HUMAN_OBSERVATION,sueruffles,1,,,2024,9,24,Australia,AU,New South Wales,-34.75625,146.590396,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,,2020,1,19,Australia,AU,Queensland,-27.643611,152.055131,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2021,9,1,Australia,AU,New South Wales,-28.257425,153.400553,EPSG:4326 +HUMAN_OBSERVATION,Larissa Braz Sousa,1,,,2020,1,9,Australia,AU,South Australia,-34.909255,138.61365,EPSG:4326 +HUMAN_OBSERVATION,jayneg,1,,These two were across a busy highway from each other! We ended up seeing 7 koalas along the peak downs hey near Nebo,2023,11,4,Australia,AU,Queensland,-21.71062,148.70233,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Along Mondure Cushnie Road. Observed by Wendy Taylor. Submitted via FB (South Burnett Koala Watch),2023,11,24,Australia,AU,Queensland,-26.199667,151.772632,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2023,4,23,Australia,AU,New South Wales,-36.173022,149.27852,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Dispersing joey, usually seen with mum nearby, but no sign of mum today",2024,4,8,Australia,AU,Queensland,-27.528416,153.103335,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland Mother and joey,2024,8,18,Australia,AU,Queensland,-27.527379,153.092382,EPSG:4326 +HUMAN_OBSERVATION,Thomas Nataprawira,1,,,2022,11,6,Australia,AU,Victoria,-38.056779,141.920811,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,"Bioacoustic survey conducted with a Song Meter Micro full-spectrum acoustic recorder deployed within remnant Sedgy Riparian Woodland (EVC 198) of a 2 acre Trust for Nature covenanted property. The property adjoins the Wombat State Forest. Recordings are scheduled twice a day. First, for 3 hours commencing two hours before sunrise, and secondly, for 3 hours commencing at sunset.",2022,12,3,Australia,AU,Victoria,-37.388925,144.266959,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2020,3,21,Australia,AU,Queensland,-27.545709,153.072389,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,16,Australia,AU,Queensland,-27.527892,153.111335,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2023,12,30,Australia,AU,Queensland,-27.527597,153.090772,EPSG:4326 +HUMAN_OBSERVATION,Charles Dove,1,,,2020,4,4,Australia,AU,Queensland,-27.599019,151.895033,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2022,1,3,Australia,AU,New South Wales,-28.25404,153.376941,EPSG:4326 +HUMAN_OBSERVATION,Christopher Brown,1,,,2024,1,15,Australia,AU,Victoria,-37.501456,144.536477,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,7,15,Australia,AU,Queensland,-27.551036,153.05992,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,5,22,Australia,AU,Queensland,-27.529965,153.105269,EPSG:4326 +HUMAN_OBSERVATION,kentpip,1,,"Heard for several weeks, finally spotted today",2023,10,24,Australia,AU,Queensland,-27.759826,153.15429,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,18,Australia,AU,Queensland,-27.54713,153.073258,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2024,5,3,Australia,AU,Victoria,-38.12717,145.280742,EPSG:4326 +HUMAN_OBSERVATION,Gen C,1,,,2024,8,4,Australia,AU,South Australia,-35.008742,138.638881,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2021,5,20,Australia,AU,New South Wales,-28.260569,153.402604,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Red Bloodwood,2021,3,13,Australia,AU,Queensland,-27.553112,153.057459,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,"Making a lot of noise last night, so spent night and day in the one tree.",2023,3,23,Australia,AU,Queensland,-27.510435,153.069793,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,11,14,Australia,AU,South Australia,-34.892261,138.7154,EPSG:4326 +HUMAN_OBSERVATION,habitat61,1,,Knocking on front door 4 am .,2020,9,9,Australia,AU,Queensland,-26.780061,152.769342,EPSG:4326 +HUMAN_OBSERVATION,melanieylang,1,,,2023,3,14,Australia,AU,Victoria,-38.799171,143.481858,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tagged Female (Right Ear) with Joey,2020,8,20,Australia,AU,Queensland,-27.527793,153.049316,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,MALE,the 3rd of 4 calling regularly. I have not added a recording of the fourth as it was a Koala I photographed earlier in the day.,2023,11,25,Australia,AU,Victoria,-38.354304,146.386869,EPSG:4326 +HUMAN_OBSERVATION,rosie_b,1,,,2021,4,22,Australia,AU,Victoria,-38.348369,144.973201,EPSG:4326 +HUMAN_OBSERVATION,LFW-ScenicRim,1,MALE,,2022,9,13,Australia,AU,Queensland,-28.174211,152.903586,EPSG:4326 +HUMAN_OBSERVATION,Andrew Rock,1,,Toohey Forest,2021,6,19,Australia,AU,Queensland,-27.548686,153.059491,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2023,7,1,Australia,AU,Queensland,-28.093911,152.836975,EPSG:4326 +HUMAN_OBSERVATION,george_seagull,1,,Apollo Bay.,2022,9,24,Australia,AU,Victoria,-38.748909,143.659813,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.384315,145.304459,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,Mother and joey,2024,3,29,Australia,AU,Queensland,-27.528582,153.103522,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,2,10,Australia,AU,Queensland,-27.545605,153.073257,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,22,Australia,AU,Queensland,-27.525644,153.092369,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,"Site: K2 Tree no: 5 Tree DBH: 23.873 Sclerophyll notes: No time was recorded for when scats were found - 1pm has been put for all scat observations due to there being no records, all scats were collected on the same day at different sites Ecologist assessed",2021,8,25,Australia,AU,Queensland,-27.697067,152.086517,EPSG:4326 +HUMAN_OBSERVATION,jusarm,1,,In Eucalyptus crebra,2023,8,3,Australia,AU,Queensland,-27.53897,152.44632,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,24,Australia,AU,South Australia,-34.889953,138.721907,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark,2021,6,2,Australia,AU,Queensland,-27.552018,153.05591,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Healthy. Seen in the morning and was heard bellowing in the evening. Left by the following morning. Observed by Willem Van Rensburg. Submitted via email.,2023,11,21,Australia,AU,Queensland,-26.252326,151.916005,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2024,1,14,Australia,AU,Victoria,-37.654956,143.927994,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"A smallish Koala, possibly a female, close by the male. Up a Brush Box, Lophostemon confertus.",2020,3,1,Australia,AU,Queensland,-27.510887,153.07061,EPSG:4326 +HUMAN_OBSERVATION,Darcy Nugent,1,,,2021,11,3,Australia,AU,Victoria,-38.095136,144.277343,EPSG:4326 +HUMAN_OBSERVATION,viridianlake,1,,Mother Koala with baby sighted at Alexander Clark Park Loganholm 4129,2023,1,25,Australia,AU,Queensland,-27.70082,153.186771,EPSG:4326 +HUMAN_OBSERVATION,noddyblue,1,,,2022,12,7,Australia,AU,Victoria,-36.978436,145.534105,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey Ironbark,2020,11,3,Australia,AU,Queensland,-27.527893,153.050383,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,MALE,Koala with conjunctivitis requiring rescue. Sighting by N. Tonscheck for TKWR,2023,11,17,Australia,AU,Queensland,-27.626428,151.935059,EPSG:4326 +HUMAN_OBSERVATION,lisaw1012,1,,,2022,9,4,Australia,AU,Queensland,-27.652706,152.898653,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,11,5,Australia,AU,New South Wales,-28.258772,153.400489,EPSG:4326 +HUMAN_OBSERVATION,oconnej,1,,,2024,8,21,Australia,AU,Queensland,-28.066173,152.610578,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Campo - red tag A18 RIGHT ear,2023,1,31,Australia,AU,Queensland,-27.528851,153.109517,EPSG:4326 +HUMAN_OBSERVATION,dieselfraser,1,,New older koala,2023,2,7,Australia,AU,Victoria,-38.826482,145.998635,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,4,Australia,AU,Queensland,-27.528528,153.113613,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank muma baby more independent,2022,9,27,Australia,AU,Queensland,-27.545733,153.073403,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,4,Australia,AU,Queensland,-27.529413,153.102591,EPSG:4326 +HUMAN_OBSERVATION,mikew65,1,,,2024,2,15,Australia,AU,South Australia,-34.83217,135.685924,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2024,6,6,Australia,AU,South Australia,-34.935209,138.698495,EPSG:4326 +HUMAN_OBSERVATION,scorpio83,1,,Hit by car. A good Samaritan was waiting with it until wildlife rescue arrived.,2023,11,24,Australia,AU,Queensland,-27.212761,151.288941,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"About 2/3 grown, a bit muddled, needed to be shooed off the road. No sign of Mum, perhaps she told it to go and play.",2022,1,8,Australia,AU,Victoria,-37.789997,141.743144,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2020,5,29,Australia,AU,Queensland,-27.550993,153.062488,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Fauna carer was called out but the Koala had moved on.,2024,7,30,Australia,AU,Queensland,-27.515211,152.359383,EPSG:4326 +HUMAN_OBSERVATION,meeshell1411,1,,,2024,9,26,Australia,AU,Queensland,-27.339313,152.613512,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,9,21,Australia,AU,Queensland,-27.545282,153.071867,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,12,21,Australia,AU,Victoria,-37.651801,143.910633,EPSG:4326 +HUMAN_OBSERVATION,Matteo Grilli,1,,,2020,12,28,Australia,AU,Queensland,-27.436187,152.9984,EPSG:4326 +HUMAN_OBSERVATION,matilemile,1,,,2022,10,25,Australia,AU,Victoria,-37.914698,145.571685,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,4,Australia,AU,South Australia,-34.891683,138.719306,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,24,Australia,AU,Queensland,-27.528452,153.103308,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,"Male, blind in right eye",2023,12,31,Australia,AU,Victoria,-38.671033,146.163803,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Two koalas interacting in Grey Ironbark. Mum and independent Joey sharing territory maybe? Wrong time for breeding?,2020,2,28,Australia,AU,Queensland,-27.546933,153.059071,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,29,Australia,AU,Queensland,-27.527681,153.114079,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,Sleeping in a Blackwood (Acacia melanoxylon).,2024,7,14,Australia,AU,Victoria,-38.482658,142.977156,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,Large koala in an ironbark.,2024,11,17,Australia,AU,Queensland,-27.329708,151.933608,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,"Body transferred to UNE for research. Hit by vehicle, no obvious sign of disease.",2024,2,9,Australia,AU,New South Wales,-29.800979,150.573345,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,MALE,,2022,12,30,Australia,AU,New South Wales,-34.776407,146.594126,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,8,Australia,AU,Queensland,-27.552269,153.056084,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Brown Bloodwood,2020,2,14,Australia,AU,Queensland,-27.550701,153.058166,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,29,Australia,AU,South Australia,-34.892246,138.714831,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,15,Australia,AU,Queensland,-27.529273,153.108951,EPSG:4326 +HUMAN_OBSERVATION,camfgrg,1,,,2024,7,12,Australia,AU,New South Wales,-31.434898,152.900182,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In Eucalyptus microcorys,2021,8,7,Australia,AU,Queensland,-27.557155,153.05797,EPSG:4326 +HUMAN_OBSERVATION,pritchard3747,1,,,2023,2,7,Australia,AU,Victoria,-37.038144,145.505387,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,This is a grunting male. I think it is the one from observation https://www.inaturalist.org/observations/106159424 on 5th February 2022. He's trying to get the full attention of a female about 5m away in the next tree. Separate observation.,2022,2,17,Australia,AU,Victoria,-37.874658,142.290961,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds,2024,9,21,Australia,AU,Queensland,-27.528047,153.092164,EPSG:4326 +HUMAN_OBSERVATION,duke_n,1,,,2022,2,11,Australia,AU,Victoria,-38.478453,143.922084,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,13,Australia,AU,South Australia,-34.888147,138.734437,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2021,10,3,Australia,AU,Queensland,-27.566379,152.110665,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Adult. Male. Healthy. Chased up a fruit tree by dogs. Observed, caught and released by wildlife carer Robyn White. Submitted by Denise Shaw via email.",2023,10,23,Australia,AU,Queensland,-26.450289,151.825754,EPSG:4326 +HUMAN_OBSERVATION,Roberta,1,,,2022,8,19,Australia,AU,South Australia,-34.831004,138.736198,EPSG:4326 +HUMAN_OBSERVATION,lauren leviston,1,,,2023,10,1,Australia,AU,Victoria,-37.932771,144.14621,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Papaerbark,2021,2,12,Australia,AU,Queensland,-27.551196,153.057283,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female with Joey. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,8,30,Australia,AU,Queensland,-26.158424,151.752819,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2023,11,24,Australia,AU,Victoria,-36.985829,145.553855,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Joshua Kennish Photograph,2021,10,28,Australia,AU,Queensland,-27.339263,152.613592,EPSG:4326 +HUMAN_OBSERVATION,gbhanson,1,,Mama and her baby out near the Research Station on Minjerribah.,2024,11,5,Australia,AU,Queensland,-27.497622,153.399672,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In lower car parks picnic area - tree next to woodland entrance Male yellow tag left ear 0976 scent gland and testicles visible,2024,3,29,Australia,AU,Queensland,-27.526916,153.092291,EPSG:4326 +HUMAN_OBSERVATION,Joanne,1,,,2022,12,17,Australia,AU,Queensland,-27.919485,153.377058,EPSG:4326 +HUMAN_OBSERVATION,Dubravka Skalamera,1,,,2024,7,27,Australia,AU,Queensland,-27.493703,153.403089,EPSG:4326 +HUMAN_OBSERVATION,insiderelic,1,,,2021,10,25,Australia,AU,South Australia,-34.994375,138.623375,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,9,Australia,AU,Queensland,-27.544877,153.072601,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,20,Australia,AU,South Australia,-34.887641,138.734429,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,Female koala high in Ironbark nervous,2022,11,6,Australia,AU,Victoria,-37.839487,144.278225,EPSG:4326 +HUMAN_OBSERVATION,Laura Keene,1,,,2022,8,10,Australia,AU,Queensland,-27.919485,153.377058,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,2,9,Australia,AU,South Australia,-34.891685,138.713649,EPSG:4326 +HUMAN_OBSERVATION,Hayden,1,,,2021,9,15,Australia,AU,Queensland,-27.907392,153.370283,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey,2024,3,30,Australia,AU,Queensland,-27.530486,153.10415,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Not sure if this is the mum with joey - hard to see. Have heard a male in the area in the last week too.,2021,8,3,Australia,AU,New South Wales,-28.254263,153.377269,EPSG:4326 +HUMAN_OBSERVATION,Sylvia Akers,1,,,2020,9,27,Australia,AU,Victoria,-37.90878,147.754464,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,15,Australia,AU,Queensland,-27.764915,151.661272,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,12,8,Australia,AU,Queensland,-27.51055,153.085055,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2022,12,27,Australia,AU,Queensland,-27.599864,151.888844,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,shot from a distance.,2021,3,29,Australia,AU,Queensland,-27.54796,153.061288,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,9,23,Australia,AU,Queensland,-27.411592,152.004853,EPSG:4326 +HUMAN_OBSERVATION,mariaborges,1,,,2021,10,26,Australia,AU,Queensland,-27.469541,152.590326,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,7,30,Australia,AU,Queensland,-27.547468,153.058778,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,2,24,Australia,AU,New South Wales,-28.258277,153.400952,EPSG:4326 +HUMAN_OBSERVATION,julietandbrian,1,,,2022,12,5,Australia,AU,Queensland,-27.348399,152.063034,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,Crusoe male koala with eartag,2022,12,15,Australia,AU,Queensland,-27.41355,152.003227,EPSG:4326 +HUMAN_OBSERVATION,Ben Brice,1,,,2023,9,3,Australia,AU,South Australia,-34.903218,138.70569,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2022,6,4,Australia,AU,Queensland,-27.226342,153.072447,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,7,19,Australia,AU,New South Wales,-33.076794,151.095428,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland - near front,2023,12,8,Australia,AU,Queensland,-27.527776,153.092277,EPSG:4326 +HUMAN_OBSERVATION,australian_wildlife_encounters,1,,,2024,9,6,Australia,AU,Queensland,-26.720263,152.912583,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey in same tree but joey right up at the top!,2023,10,11,Australia,AU,Queensland,-27.527445,153.107238,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Mum with big Joey clinging to her underside,2023,8,24,Australia,AU,Queensland,-27.248912,153.076264,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,12,26,Australia,AU,Queensland,-27.566545,152.105514,EPSG:4326 +HUMAN_OBSERVATION,whitejmm,1,,,2023,4,28,Australia,AU,Victoria,-36.846381,145.400552,EPSG:4326 +HUMAN_OBSERVATION,Hauke Koch,1,,,2023,1,2,Australia,AU,Victoria,-38.820278,143.57785,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,31,Australia,AU,Queensland,-27.526999,153.090728,EPSG:4326 +HUMAN_OBSERVATION,kazhutcho,1,,,2024,1,19,Australia,AU,New South Wales,-30.295397,153.124542,EPSG:4326 +HUMAN_OBSERVATION,Glen,1,FEMALE,,2022,11,2,Australia,AU,South Australia,-35.062473,138.579325,EPSG:4326 +HUMAN_OBSERVATION,allambiretreat,1,,,2024,4,17,Australia,AU,Queensland,-27.339616,152.84614,EPSG:4326 +HUMAN_OBSERVATION,Ryan Harvey,1,,1 of 3 within 100 metres,2024,7,16,Australia,AU,New South Wales,-31.928103,152.403883,EPSG:4326 +HUMAN_OBSERVATION,Rachel Devlin,1,,Didn't hang around the camera long enough to get a better shot,2023,2,27,Australia,AU,Victoria,-38.266658,145.04641,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,"Not much of a photo, and possibly cropped a bit by iNat - the enlarged and magnified versions are clearly a koala. This is the same male as in https://inaturalist.ala.org.au/observations/100834185 & 100837132 & 100837496 and he is there within half an hour of his usual visit. Of course I can't say on the basis of this one photo whether he is coming or going, but it fits with his past arrival times.",2021,9,4,Australia,AU,Queensland,-27.49628,152.247078,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Male looking for love,2022,11,25,Australia,AU,Queensland,-27.545553,153.07382,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,Female koala high in stringybark eating leaves,2022,3,20,Australia,AU,Victoria,-37.753938,144.277163,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,9,3,Australia,AU,New South Wales,-33.076794,151.095428,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,1,9,Australia,AU,Queensland,-27.507169,153.07975,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2021,11,22,Australia,AU,Victoria,-38.383136,145.295928,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Mum and older joey. Very windy afternoon.,2023,10,4,Australia,AU,Queensland,-27.284477,153.000838,EPSG:4326 +HUMAN_OBSERVATION,obriens,1,FEMALE,road killed female and joey. dusk,2024,7,15,Australia,AU,Queensland,-28.209013,152.802497,EPSG:4326 +HUMAN_OBSERVATION,Michelle Casanova,1,,,2024,11,21,Australia,AU,Victoria,-38.060662,141.825263,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark,2020,8,25,Australia,AU,Queensland,-27.548554,153.044424,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Male. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,29,Australia,AU,Queensland,-26.348586,151.801159,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,11,14,Australia,AU,Victoria,-37.54472,143.878838,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,8,Australia,AU,South Australia,-34.889949,138.721896,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,,"Koala, looks to be male.",2023,2,7,Australia,AU,South Australia,-35.073537,138.587152,EPSG:4326 +HUMAN_OBSERVATION,gazza959,1,,Single koala. None others close by,2020,1,21,Australia,AU,New South Wales,-34.762138,146.562042,EPSG:4326 +HUMAN_OBSERVATION,kazhutcho,1,,Sitting in same tree as another adult koala,2024,8,17,Australia,AU,Queensland,-27.897569,153.318953,EPSG:4326 +HUMAN_OBSERVATION,John Tann,1,,Koala asleep in a Swamp Box,2024,10,21,Australia,AU,New South Wales,-28.567211,153.516933,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2022,11,17,Australia,AU,New South Wales,-33.076589,151.095122,EPSG:4326 +HUMAN_OBSERVATION,Chris Turnbull,1,,,2023,4,30,Australia,AU,Queensland,-27.375091,152.567242,EPSG:4326 +HUMAN_OBSERVATION,Tom Hunt,1,,,2023,10,28,Australia,AU,South Australia,-34.963642,138.71373,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - probably Naomi - with joey,2023,12,18,Australia,AU,Queensland,-27.530098,153.103393,EPSG:4326 +HUMAN_OBSERVATION,Sebastian Rogers,1,,,2023,12,30,Australia,AU,South Australia,-35.043168,138.650555,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2020,5,2,Australia,AU,Queensland,-27.546617,153.056945,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In Eucalyptus microcorys.,2021,8,7,Australia,AU,Queensland,-27.55593,153.054297,EPSG:4326 +HUMAN_OBSERVATION,pritchard3747,1,MALE,,2024,10,9,Australia,AU,Victoria,-37.066033,145.508513,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2022,1,4,Australia,AU,Queensland,-27.509636,153.070541,EPSG:4326 +HUMAN_OBSERVATION,Dean Lyons,1,,Two in one tree,2023,8,5,Australia,AU,Victoria,-37.561947,149.759262,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Male, early stage chlamydia. Rescued and currently in rehabilitation. Named Burga",2024,9,24,Australia,AU,Queensland,-27.712038,152.723205,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,With independent Joey in Red Mahogany E. Resinifera,2020,8,13,Australia,AU,Queensland,-27.551728,153.0576,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - red tag A5 RIGHT ear - Cindy,2023,10,20,Australia,AU,Queensland,-27.527169,153.108328,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,In mum’s tree Maisie,2024,8,4,Australia,AU,Queensland,-27.526412,153.091063,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,,,2024,11,22,Australia,AU,Queensland,-27.392556,153.441333,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,4,29,Australia,AU,South Australia,-34.891283,138.712655,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2024,4,27,Australia,AU,South Australia,-34.877993,138.64926,EPSG:4326 +HUMAN_OBSERVATION,peter_yeeles,1,,,2020,12,22,Australia,AU,Queensland,-19.12693,146.868268,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult male. Healthy. Observed by Cindy Ireland. Submitted by Denise Shaw via email.,2023,7,1,Australia,AU,Queensland,-26.135908,151.792829,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,10,22,Australia,AU,New South Wales,-28.257909,153.400706,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Spotted by Russ and Jamie,2024,7,13,Australia,AU,Queensland,-27.655288,152.907157,EPSG:4326 +HUMAN_OBSERVATION,Kymberley,1,,,2023,6,17,Australia,AU,Queensland,-21.687586,148.68808,EPSG:4326 +HUMAN_OBSERVATION,LFW-ScenicRim,1,,,2023,9,25,Australia,AU,Queensland,-27.887434,152.75011,EPSG:4326 +HUMAN_OBSERVATION,george_seagull,1,,Apollo Bay.,2024,7,9,Australia,AU,Victoria,-38.745084,143.651855,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear,2023,9,23,Australia,AU,Queensland,-27.53017,153.103431,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2021,5,2,Australia,AU,South Australia,-34.780183,138.820453,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Two male koalas on a tree branch - this is the first one,2023,4,13,Australia,AU,Queensland,-27.525388,153.091255,EPSG:4326 +HUMAN_OBSERVATION,maxicole,1,,,2024,9,4,Australia,AU,Queensland,-27.531459,153.105469,EPSG:4326 +HUMAN_OBSERVATION,Ian Melbourne,1,,,2023,7,22,Australia,AU,Victoria,-38.383297,145.296638,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2023,7,10,Australia,AU,Victoria,-36.930479,145.546707,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,8,2,Australia,AU,Queensland,-27.545867,153.073274,EPSG:4326 +HUMAN_OBSERVATION,James Peake,1,,"Female on left, Male to right. Usual area they seem to be seen at this time.",2021,10,22,Australia,AU,Victoria,-38.174706,145.166046,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Injured. Male. Observed and rescued by Wendy Taylor. Submitted via msg. Passed away 12th January 2024.,2023,12,18,Australia,AU,Queensland,-26.359538,151.525365,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,4,25,Australia,AU,Queensland,-27.737295,151.515853,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,MALE,Male,2022,11,27,Australia,AU,Queensland,-27.777764,151.578762,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - red tag RIGHT ear - Cindy,2023,10,28,Australia,AU,Queensland,-27.52718,153.108285,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,16,Australia,AU,Queensland,-27.800069,151.569161,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Scat under large Eucalyptus tereticornis. Right shape and has a distinct eucalypty smell.,2020,8,17,Australia,AU,Queensland,-28.003416,152.679909,EPSG:4326 +HUMAN_OBSERVATION,Daniel Kurek,1,,,2020,1,5,Australia,AU,Victoria,-38.363242,141.588383,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,"Site: K2 Tree no: 30 Tree DBH: 34.059 Sclerophyll notes: No time was recorded for when scats were found - 1pm has been put for all scat observations due to there being no records, all scats were collected on the same day at different sites Ecologist assessed",2021,8,25,Australia,AU,Queensland,-27.696933,152.08625,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,13,Australia,AU,Queensland,-27.525849,153.091859,EPSG:4326 +HUMAN_OBSERVATION,stu_mendham,1,,,2020,9,5,Australia,AU,Victoria,-36.138554,146.852052,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,6,30,Australia,AU,Queensland,-27.524269,153.093105,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2023,10,2,Australia,AU,New South Wales,-29.868808,150.598859,EPSG:4326 +HUMAN_OBSERVATION,paulhaynesemail,1,,,2024,2,2,Australia,AU,Victoria,-38.666962,143.861924,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Gray gum,2021,5,26,Australia,AU,Queensland,-27.534309,153.061207,EPSG:4326 +HUMAN_OBSERVATION,mickramsey,1,,,2021,4,11,Australia,AU,Victoria,-35.811113,145.499192,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,10,27,Australia,AU,New South Wales,-33.07672,151.095116,EPSG:4326 +HUMAN_OBSERVATION,cleanlymoss,1,,,2023,10,14,Australia,AU,South Australia,-34.78565,135.80606,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,21,Australia,AU,Queensland,-27.527188,153.102837,EPSG:4326 +HUMAN_OBSERVATION,Martin Whiting,1,,,2024,1,5,Australia,AU,South Australia,-35.202908,138.714522,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,21,Australia,AU,Queensland,-27.527164,153.111217,EPSG:4326 +HUMAN_OBSERVATION,stevemcbride,1,FEMALE,,2022,7,23,Australia,AU,New South Wales,-28.701735,153.036399,EPSG:4326 +HUMAN_OBSERVATION,serialist,1,,,2024,3,5,Australia,AU,Victoria,-38.6707,143.861269,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,4,5,Australia,AU,South Australia,-35.015771,138.670929,EPSG:4326 +HUMAN_OBSERVATION,mhanslow,1,MALE,,2024,11,12,Australia,AU,Victoria,-36.858283,145.482562,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2023,12,28,Australia,AU,Victoria,-38.62822,145.727797,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,1,4,Australia,AU,Queensland,-27.527218,153.091478,EPSG:4326 +HUMAN_OBSERVATION,Pete Woodall,1,,8818a/b QNC outing. Seen from the car park.,2022,6,26,Australia,AU,Queensland,-27.514766,153.083114,EPSG:4326 +HUMAN_OBSERVATION,martinsville,1,,Seen at Mt Faulk Road Cooranbong,2022,1,26,Australia,AU,New South Wales,-33.007714,151.440355,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,5,Australia,AU,Queensland,-27.524481,153.111626,EPSG:4326 +HUMAN_OBSERVATION,tracyrout,1,,,2021,10,20,Australia,AU,Queensland,-27.525809,153.06883,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland middle Mother and joey,2023,11,26,Australia,AU,Queensland,-27.528311,153.092628,EPSG:4326 +HUMAN_OBSERVATION,Geoffrey Cox,1,,,2020,2,23,Australia,AU,South Australia,-35.089156,138.699505,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,Koala high in E. tereticornis,2024,7,25,Australia,AU,Queensland,-27.824053,152.992737,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,12,3,Australia,AU,Queensland,-27.536728,153.055563,EPSG:4326 +HUMAN_OBSERVATION,alancrawford,1,,,2021,10,31,Australia,AU,Victoria,-37.324812,144.136978,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female. Injured. Vehicle incident. Sustained broken ribs on left side and serious head injuries. Joey located and rescued some hours later in the same location. Observed by community member. Submitted by Wendy Taylor via msg. Joey record: https://www.inaturalist.org/observations/249693432,2024,10,29,Australia,AU,Queensland,-26.332429,152.053237,EPSG:4326 +HUMAN_OBSERVATION,maxdebeer,1,,,2023,2,16,Australia,AU,New South Wales,-34.956178,150.060596,EPSG:4326 +HUMAN_OBSERVATION,marciariederer,1,,,2020,1,14,Australia,AU,Victoria,-37.146232,148.236635,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,"Photo credit: Ben, Karana Downs and Mt Crosby Residents Anstead Bushland Reserve",2020,4,9,Australia,AU,Queensland,-27.542516,152.859615,EPSG:4326 +HUMAN_OBSERVATION,oceantomb,1,,,2023,2,21,Australia,AU,Victoria,-38.63447,145.729482,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,7,28,Australia,AU,Queensland,-26.160237,151.736471,EPSG:4326 +HUMAN_OBSERVATION,nymbella,1,,,2020,9,30,Australia,AU,New South Wales,-30.245816,152.890873,EPSG:4326 +HUMAN_OBSERVATION,n4c,1,,On private land.,2024,1,9,Australia,AU,Queensland,-27.514943,153.048118,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2022,3,3,Australia,AU,Queensland,-27.5138,153.082765,EPSG:4326 +HUMAN_OBSERVATION,Geoffrey Cox,1,,,2021,9,5,Australia,AU,South Australia,-35.17822,138.50717,EPSG:4326 +HUMAN_OBSERVATION,adrianonieb,1,,,2022,9,15,Australia,AU,Queensland,-27.355775,152.18045,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,,,2021,5,25,Australia,AU,Queensland,-27.458511,152.398237,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,2,Australia,AU,Queensland,-27.527087,153.091326,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,10,6,Australia,AU,Queensland,-27.550883,153.057954,EPSG:4326 +HUMAN_OBSERVATION,Todd Burrows,1,,,2024,11,4,Australia,AU,Queensland,-28.097033,153.455847,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - green tag RIGHT ear,2023,6,24,Australia,AU,Queensland,-27.529404,153.109512,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Submitted by Charlie Spagalli. Alive, healthy, adult, sex unknown.",2020,3,9,Australia,AU,Queensland,-26.739188,151.983252,EPSG:4326 +HUMAN_OBSERVATION,mirrum,1,,,2024,11,5,Australia,AU,Queensland,-27.497808,153.399658,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey,2024,1,5,Australia,AU,Queensland,-27.528992,153.112283,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,3,Australia,AU,South Australia,-34.888997,138.73487,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,1/2 koalas running together,2023,9,24,Australia,AU,Victoria,-37.029786,145.463805,EPSG:4326 +HUMAN_OBSERVATION,EcoNeighbour_,1,,,2024,6,26,Australia,AU,Victoria,-37.529677,149.688339,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2023,7,10,Australia,AU,New South Wales,-34.744858,146.532745,EPSG:4326 +HUMAN_OBSERVATION,Pete Woodall,1,,7328,2021,9,26,Australia,AU,Queensland,-27.509696,153.11975,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland Male Ear tag left ear,2024,11,10,Australia,AU,Queensland,-27.527463,153.092533,EPSG:4326 +HUMAN_OBSERVATION,Byron Croft,1,,,2023,10,9,Australia,AU,Victoria,-38.300956,145.210647,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Believe this is a large male affectionately known as big boy due to his apparent scars on his bum. Lovely in the golden evening light.,2020,9,24,Australia,AU,New South Wales,-28.253838,153.377611,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey,2023,11,18,Australia,AU,Queensland,-27.527288,153.09154,EPSG:4326 +HUMAN_OBSERVATION,Jesse Saofia,1,,Text book koala claw mark,2022,7,12,Australia,AU,Victoria,-37.748764,145.125119,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2022,9,14,Australia,AU,New South Wales,-28.254123,153.377043,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,27,Australia,AU,Queensland,-27.53029,153.103256,EPSG:4326 +HUMAN_OBSERVATION,grlarsen,1,,,2023,10,24,Australia,AU,Queensland,-27.515063,153.1179,EPSG:4326 +HUMAN_OBSERVATION,Doug Wilson,1,,,2021,10,17,Australia,AU,Victoria,-37.585571,143.88573,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,,By the lack of markings on it's nose this appears to be the last offspring of a female which has been a regular visitor here.,2024,10,29,Australia,AU,Queensland,-28.173647,152.906579,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Suck, rescued.",2023,4,4,Australia,AU,Queensland,-27.635437,152.891922,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Reconyx HF2,2023,2,21,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,chrisallen92,1,MALE,,2024,8,17,Australia,AU,Victoria,-37.954511,144.438019,EPSG:4326 +HUMAN_OBSERVATION,Elyssa M,1,,,2023,7,13,Australia,AU,Queensland,-27.546559,152.859716,EPSG:4326 +HUMAN_OBSERVATION,karleebrown,1,,,2023,2,2,Australia,AU,New South Wales,-30.406405,152.873412,EPSG:4326 +HUMAN_OBSERVATION,Alan Dandie,1,,,2020,11,2,Australia,AU,South Australia,-34.959661,138.712517,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,5,26,Australia,AU,South Australia,-34.929505,138.704221,EPSG:4326 +HUMAN_OBSERVATION,summerfell,1,,,2021,11,8,Australia,AU,Queensland,-27.81727,153.0764,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,13,Australia,AU,Queensland,-27.527056,153.090493,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Front of TAFE Cavendish Road Male - possibly Jacob Jnr,2024,11,10,Australia,AU,Queensland,-27.526836,153.090379,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,1,Australia,AU,Queensland,-27.529559,153.102773,EPSG:4326 +HUMAN_OBSERVATION,Lisette Mill,1,,Adult male,2021,8,15,Australia,AU,Victoria,-38.237289,142.069867,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Climber trying to capture the koala to the left to take to vet.,2023,12,3,Australia,AU,Queensland,-27.257225,152.046276,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,22,Australia,AU,Queensland,-27.529528,153.111755,EPSG:4326 +HUMAN_OBSERVATION,Ryan Harvey,1,,,2023,12,16,Australia,AU,New South Wales,-31.941714,152.444392,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,,2024,5,23,Australia,AU,Queensland,-27.545251,153.071975,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,5,3,Australia,AU,South Australia,-35.036309,138.572237,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Scats under a Eucalyptus tereticornis, Blue gum",2024,10,14,Australia,AU,Queensland,-27.455356,152.365539,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male -yellow tag LEFT ear - known as Buster,2023,11,15,Australia,AU,Queensland,-27.530637,153.103446,EPSG:4326 +HUMAN_OBSERVATION,georgiegibson,1,,,2024,5,10,Australia,AU,Queensland,-26.37518,153.037339,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near nursery - tree next to white boom gate and talking circle Possibly Frank Rooney,2023,7,23,Australia,AU,Queensland,-27.52727,153.091283,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,phone photo by neighbour early morning.,2021,8,14,Australia,AU,Queensland,-27.508121,153.067496,EPSG:4326 +HUMAN_OBSERVATION,Steve Dew,1,,,2022,2,14,Australia,AU,Victoria,-38.800562,143.481831,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,6,14,Australia,AU,Queensland,-26.394261,152.663434,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2024,3,1,Australia,AU,New South Wales,-34.76672,146.577025,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Female Koala climbing tree.,2024,9,29,Australia,AU,Queensland,-27.284485,152.999917,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,7,Australia,AU,South Australia,-34.886408,138.731099,EPSG:4326 +HUMAN_OBSERVATION,Brendan Casey,1,,,2023,9,30,Australia,AU,Victoria,-38.631436,145.730186,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,18,Australia,AU,South Australia,-34.892174,138.715861,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2024,6,21,Australia,AU,Queensland,-27.543891,153.072233,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2022,7,23,Australia,AU,Queensland,-28.10341,151.258796,EPSG:4326 +HUMAN_OBSERVATION,Mel,1,,This koala looked very scruffy. I wondered if it was sick or old or had been attacked at some stage by a dog or another koala.,2022,11,6,Australia,AU,South Australia,-34.894075,138.626463,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to e block,2024,8,18,Australia,AU,Queensland,-27.526714,153.090658,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,A two koala day,2020,12,20,Australia,AU,Victoria,-38.671622,146.164153,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,,2021,9,8,Australia,AU,Queensland,-27.513322,153.072773,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,13,Australia,AU,South Australia,-34.893273,138.725353,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,18,Australia,AU,Queensland,-27.527483,153.090899,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,Male koala here most nights.,2024,1,18,Australia,AU,Queensland,-27.358516,152.074535,EPSG:4326 +HUMAN_OBSERVATION,aablower,1,,,2024,4,21,Australia,AU,Victoria,-38.668532,143.860637,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown,2020,7,17,Australia,AU,Queensland,-27.54156,153.055109,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2021,9,11,Australia,AU,South Australia,-34.947931,138.657663,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,15,Australia,AU,Queensland,-26.155079,151.749888,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,14,Australia,AU,South Australia,-34.827781,138.74077,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,4,5,Australia,AU,Queensland,-27.546684,153.074601,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2022,9,14,Australia,AU,New South Wales,-28.254118,153.377041,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood male,2020,8,3,Australia,AU,Queensland,-27.546418,153.058279,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.922542,147.728303,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,9,22,Australia,AU,Queensland,-27.527823,153.092322,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2022,2,9,Australia,AU,Victoria,-38.133761,145.271896,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lemon scented gum,2023,2,22,Australia,AU,Queensland,-27.526028,153.092863,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,10,27,Australia,AU,South Australia,-34.88239,138.77809,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,28,Australia,AU,Queensland,-27.544087,153.072322,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,11,14,Australia,AU,Queensland,-27.527247,153.091688,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear of tennis courts,2023,9,8,Australia,AU,Queensland,-27.525128,153.093151,EPSG:4326 +HUMAN_OBSERVATION,nyxaero,1,,,2023,12,12,Australia,AU,South Australia,-35.120364,138.504983,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,MALE,,2024,11,14,Australia,AU,Queensland,-27.600211,153.162553,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,8,2,Australia,AU,Queensland,-27.527346,153.107233,EPSG:4326 +HUMAN_OBSERVATION,ianpeden,1,,,2023,1,7,Australia,AU,New South Wales,-32.2366,152.451626,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,7,24,Australia,AU,South Australia,-34.958131,138.697321,EPSG:4326 +HUMAN_OBSERVATION,BushLook,1,,Sleeping. Fork of tall Messmate.,2024,7,29,Australia,AU,Victoria,-37.639946,143.900759,EPSG:4326 +HUMAN_OBSERVATION,theressa,1,,Spotted by Dave Dunstan,2021,12,1,Australia,AU,Queensland,-27.165466,153.001206,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,Note - in a jacaranda tree,2022,11,13,Australia,AU,Queensland,-27.672299,151.503861,EPSG:4326 +HUMAN_OBSERVATION,bushluver,1,,,2024,8,23,Australia,AU,Victoria,-37.919575,147.729909,EPSG:4326 +HUMAN_OBSERVATION,Michael A. Alcorn,1,,,2023,10,19,Australia,AU,Queensland,-27.393242,153.441033,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block,2024,11,10,Australia,AU,Queensland,-27.526667,153.090745,EPSG:4326 +HUMAN_OBSERVATION,Craig Hunter,1,,,2020,1,30,Australia,AU,Queensland,-27.015142,151.549072,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,Camera no. 21 Sclerophyll notes: joey on back,2021,9,1,Australia,AU,Queensland,-27.69549,152.08711,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,7,2,Australia,AU,Queensland,-27.510169,153.086008,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,10,4,Australia,AU,Queensland,-27.550838,153.057878,EPSG:4326 +HUMAN_OBSERVATION,Charley Hesse,1,,,2024,11,4,Australia,AU,Queensland,-27.510122,153.081601,EPSG:4326 +HUMAN_OBSERVATION,anniesn,1,,,2024,5,19,Australia,AU,Queensland,-27.552978,153.057714,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,MALE,,2024,10,3,Australia,AU,New South Wales,-32.94889,151.499608,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear of woodland in backyard mother and joey Frank Rooney in next tree,2023,11,26,Australia,AU,Queensland,-27.528045,153.093101,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,5,18,Australia,AU,South Australia,-34.905109,138.712087,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.917807,153.378796,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,To left of Woodland when looking in from car park,2024,1,21,Australia,AU,Queensland,-27.527059,153.092764,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,20,Australia,AU,Queensland,-27.527407,153.10287,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,,2024,3,1,Australia,AU,Queensland,-27.529738,153.104449,EPSG:4326 +HUMAN_OBSERVATION,fraserj09,1,,,2024,10,4,Australia,AU,Victoria,-37.922325,147.725518,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,10,27,Australia,AU,South Australia,-34.882647,138.77762,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,"Survey 2 LNSF FoN. Mixed fresh and older Koala markings on Grey Gum, known area (BioNet transect 2021)",2023,7,16,Australia,AU,New South Wales,-30.559986,152.992968,EPSG:4326 +HUMAN_OBSERVATION,brucedymock,1,,Male Koala was located in residential yard and then transported by RSPCA to nearby bushland. He was reported as being in good condition and had apparently wandered into suburbia while seeking a mate.,2021,7,30,Australia,AU,Queensland,-27.49304,152.963013,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,10,15,Australia,AU,New South Wales,-28.254366,153.376872,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Female and Joey,2024,10,22,Australia,AU,Victoria,-37.588261,143.884806,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland - three koalas close together in three trees,2024,1,16,Australia,AU,Queensland,-27.527778,153.092296,EPSG:4326 +HUMAN_OBSERVATION,Kym Sparshott,1,,Male; in stringybark,2023,11,25,Australia,AU,Queensland,-27.262647,152.065883,EPSG:4326 +HUMAN_OBSERVATION,rachinspace,1,,,2021,10,24,Australia,AU,New South Wales,-33.672312,149.334733,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near K block mowing shed,2024,5,6,Australia,AU,Queensland,-27.526019,153.090818,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,When he heard us he then climbed higher in the tree.,2021,9,4,Australia,AU,Queensland,-27.508463,153.085908,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,,2024,3,11,Australia,AU,New South Wales,-34.044027,150.886786,EPSG:4326 +HUMAN_OBSERVATION,David Flack,1,MALE,,2023,8,16,Australia,AU,Queensland,-21.771811,148.844701,EPSG:4326 +HUMAN_OBSERVATION,kazhutcho,1,,koala at Big4 Helensvale. Spotted in tree 20m away from another tree with 2 adult koalas.,2024,8,17,Australia,AU,Queensland,-27.897783,153.319165,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,"Digby the koala. Released from RSPCA after treatment for chlamydia and being hit by car on Birdwood road, Taringindi . Was in care for over 1 month.",2024,8,27,Australia,AU,Queensland,-27.54257,153.064393,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in a Eucalyptus tereticornis,2024,5,30,Australia,AU,Queensland,-28.008003,152.680494,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2022,11,24,Australia,AU,Queensland,-27.17152,152.915603,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,19,Australia,AU,Queensland,-27.527171,153.091604,EPSG:4326 +HUMAN_OBSERVATION,ferngullyisme,1,,,2023,10,30,Australia,AU,Queensland,-27.262897,152.979958,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,9,18,Australia,AU,Victoria,-37.55075,143.931242,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,13,Australia,AU,Queensland,-27.527158,153.092087,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,4,23,Australia,AU,Queensland,-27.510812,153.086762,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Cindy - red tag A5. Last photo taken later when she had come lower in the tree,2023,3,15,Australia,AU,Queensland,-27.526479,153.107797,EPSG:4326 +HUMAN_OBSERVATION,Benjamin Schwartz,1,,,2023,10,11,Australia,AU,South Australia,-35.12803,138.728431,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum with Joey,2022,8,22,Australia,AU,Queensland,-27.548318,153.059689,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,2,2,Australia,AU,Victoria,-38.35432,146.387619,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,FEMALE,,2024,6,30,Australia,AU,Queensland,-27.452781,152.638219,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near K block mowing,2024,6,2,Australia,AU,Queensland,-27.525808,153.090849,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,12,8,Australia,AU,Queensland,-27.510303,153.091203,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,,2023,3,3,Australia,AU,Queensland,-27.563953,153.133025,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Silverleaf Rd, Byee. Adult. Unknown sex. Healthy. Observed by Wendy Eastaugh. Forwarded by email",2021,5,27,Australia,AU,Queensland,-26.197906,151.877898,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Dead. Hit by car. Observed by Wendy Taylor. Submitted via msg.,2024,9,14,Australia,AU,Queensland,-26.577447,151.825823,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - yellow tag RIGHT ear,2023,4,10,Australia,AU,Queensland,-27.530107,153.111159,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,5,11,Australia,AU,Queensland,-27.5278,153.092533,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Denise Shaw. Submitted via email.,2023,7,22,Australia,AU,Queensland,-26.446378,151.80436,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,4,22,Australia,AU,Queensland,-27.27528,152.935028,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,E.tereticornis,2021,7,12,Australia,AU,Queensland,-27.534554,153.062057,EPSG:4326 +HUMAN_OBSERVATION,curlewz,1,,,2022,5,2,Australia,AU,Queensland,-27.4294,153.49495,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Young Adult. Unknown sex. Healthy. Observed by Forest Ranger In Charge Monto (Steve). Submitted by Jennifer Kiling via email. Other comments: Northern end of State Forest 28 Coominglah. Sightings have been rare, so it was a little exciting, the koala was being tricky and when Steve noticed it, the koala immediately hid its head from view until curiosity got the better and he had another peak!",2022,3,3,Australia,AU,Queensland,-24.929459,150.977588,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.3764,145.314194,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2023,3,5,Australia,AU,Queensland,-27.284187,152.993427,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,Koala with joey back-rider. Goes up tree at 9.32pm on 13 August and descends on 14 August at 5.42pm.,2023,8,13,Australia,AU,Queensland,-27.496538,152.24925,EPSG:4326 +HUMAN_OBSERVATION,cexynature,1,,,2023,10,29,Australia,AU,Queensland,-27.916803,153.37593,EPSG:4326 +HUMAN_OBSERVATION,Pete Woodall,1,,"Phone photo so poor but the blob is definitely a koala, seen thru my binos.",2022,8,2,Australia,AU,Queensland,-27.506399,153.10593,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2024,5,6,Australia,AU,Queensland,-27.528327,153.093146,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Female in Tasmanian Blue Gum,2021,10,24,Australia,AU,Victoria,-38.671545,146.164078,EPSG:4326 +HUMAN_OBSERVATION,Hayley Troupe,1,,,2022,4,12,Australia,AU,Queensland,-26.869939,152.130462,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,juvenile (mother in same tree),2023,11,19,Australia,AU,Queensland,-27.6719,151.543404,EPSG:4326 +HUMAN_OBSERVATION,lil_1,1,,,2022,2,1,Australia,AU,Victoria,-37.630578,144.086717,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,11,28,Australia,AU,Queensland,-27.51024,153.081742,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,3,7,Australia,AU,Queensland,-27.545735,153.068853,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,23,Australia,AU,Queensland,-27.529782,153.109805,EPSG:4326 +HUMAN_OBSERVATION,Liam southwell,1,,,2023,8,21,Australia,AU,New South Wales,-30.293311,153.125077,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Two koalas same tree Wisteria carpark,2024,10,5,Australia,AU,Queensland,-27.524525,153.092139,EPSG:4326 +HUMAN_OBSERVATION,leithallb,1,,1st of 2 Koalas seen 5802,2022,11,22,Australia,AU,South Australia,-35.708153,137.49395,EPSG:4326 +HUMAN_OBSERVATION,hamo1234,1,,,2022,8,7,Australia,AU,South Australia,-34.896287,138.622528,EPSG:4326 +HUMAN_OBSERVATION,light-up-gold,1,,,2023,4,23,Australia,AU,Victoria,-38.773168,143.651772,EPSG:4326 +HUMAN_OBSERVATION,Fi,1,,,2021,8,17,Australia,AU,New South Wales,-28.724385,153.383701,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,Koala count 10/7 3:45pm-4:15 2 observers 20 minutes (JoT and AT) 1 koala in small spotted gum- Corymbia citriodora subsp variegata seen by both. Missed by both earlier during the count. Better photos to be uploaded.,2024,7,10,Australia,AU,Queensland,-27.823397,152.993653,EPSG:4326 +HUMAN_OBSERVATION,jack banks,1,,,2020,11,23,Australia,AU,New South Wales,-34.068519,150.83583,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree outside the entrance to the TAFE nursery - same tree as yesterday afternoon,2023,5,25,Australia,AU,Queensland,-27.527269,153.091568,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,27,Australia,AU,South Australia,-34.839564,138.742115,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"Yellow left ear tag, number 130?? possibly another 3 or 5.",2024,9,4,Australia,AU,Queensland,-27.508351,153.080152,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Possibly Chonky Boy?,2023,3,14,Australia,AU,Queensland,-27.526069,153.093033,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,2,9,Australia,AU,Queensland,-27.545662,153.073729,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,6,6,Australia,AU,Victoria,-38.67155,146.16417,EPSG:4326 +HUMAN_OBSERVATION,Sylvia Felicity Ann Haworth,1,,Seen from a footbridge; keeping cool in a shady nook in a gully.,2024,11,9,Australia,AU,Queensland,-27.543866,153.076264,EPSG:4326 +HUMAN_OBSERVATION,cocko,1,,,2021,7,21,Australia,AU,Victoria,-38.858803,146.250153,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,4,20,Australia,AU,Queensland,-27.528177,153.093531,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,This was the first sighting of this koala on our property. We saw him in a Eucalyptus melliodora near our dam.,2023,9,28,Australia,AU,Queensland,-27.411557,152.004768,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.014287,138.663355,EPSG:4326 +HUMAN_OBSERVATION,maria_and_david,1,,,2020,4,20,Australia,AU,Victoria,-37.23722,144.825003,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,3,Australia,AU,Queensland,-27.703298,153.192438,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,11,24,Australia,AU,Victoria,-38.671027,146.163743,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,1,18,Australia,AU,South Australia,-34.86518,138.656983,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"In a Messmate Stringybark (E. obliqua). This appears to be one of the Koalas from the Manna Gum located directly adjacent to this tree, noted in observations yesterday. Trunk of this tree in image of fresh scat found directly under this Koala on the edge of the road.",2024,5,11,Australia,AU,Victoria,-38.499892,142.974875,EPSG:4326 +HUMAN_OBSERVATION,Chris,1,,"Female, alone.",2023,9,17,Australia,AU,Queensland,-27.894355,152.618339,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Health. Unknown sex. Observed by Lily Wain. Submitted by msg,2022,8,19,Australia,AU,Queensland,-25.627783,151.604716,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park Cindy crawfords tree,2024,1,20,Australia,AU,Queensland,-27.525132,153.092411,EPSG:4326 +HUMAN_OBSERVATION,Goshi,1,,Roadkill Princes Hwy,2022,3,21,Australia,AU,Victoria,-38.321979,143.336594,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.925322,147.729295,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,Scat and scratches observed. Location is known to be used by koalas.,2021,11,16,Australia,AU,Queensland,-28.103221,151.255781,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - yellow tag RIGHT ear,2023,6,10,Australia,AU,Queensland,-27.527934,153.109503,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"RELEASE of male - yellow tag 1376 LEFT ear - Rue. Rue was rescued on 17/02/2024, taken to RSPCA, treated for chlamydia & respiratory problems.",2024,4,22,Australia,AU,Queensland,-27.528619,153.111058,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2023,11,7,Australia,AU,Victoria,-38.325482,142.575524,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,healthy Koala - silverleigh,2023,11,3,Australia,AU,Queensland,-27.37498,151.771734,EPSG:4326 +HUMAN_OBSERVATION,jackie_zoe_steph,1,MALE,,2023,2,4,Australia,AU,Queensland,-27.384103,151.977862,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block picnic area,2024,1,6,Australia,AU,Queensland,-27.526045,153.090634,EPSG:4326 +HUMAN_OBSERVATION,Pascale Jacq,1,,Mother with joey,2023,9,17,Australia,AU,Victoria,-38.384667,145.370692,EPSG:4326 +HUMAN_OBSERVATION,nicholascroft,1,,,2024,2,10,Australia,AU,Victoria,-38.342694,141.562736,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,11,8,Australia,AU,Queensland,-27.258278,152.045407,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Two koalas same tree,2024,9,7,Australia,AU,Queensland,-27.527464,153.09096,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2021,10,23,Australia,AU,South Australia,-34.932778,138.697842,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,6,15,Australia,AU,Queensland,-27.527823,153.092344,EPSG:4326 +HUMAN_OBSERVATION,Dezmond Wells,1,,Tagged,2024,11,9,Australia,AU,Queensland,-27.224133,153.02185,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,FEMALE,"A female, looks young. Very cute.",2024,5,25,Australia,AU,Victoria,-38.24555,143.158225,EPSG:4326 +HUMAN_OBSERVATION,seamus-doherty,1,,,2020,4,26,Australia,AU,South Australia,-34.934933,138.70427,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear of TAFE woodland area - near back fence of houses,2023,6,11,Australia,AU,Queensland,-27.528282,153.092888,EPSG:4326 +HUMAN_OBSERVATION,Jane Gosden,1,,,2022,5,3,Australia,AU,Queensland,-27.395194,153.442453,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,2,19,Australia,AU,Queensland,-27.550789,153.058036,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,1,26,Australia,AU,Queensland,-27.550958,153.044893,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Koala had moved in last 3 photos to a lateral branch of the same tree,2023,4,19,Australia,AU,Queensland,-27.527357,153.109254,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Brown female and joey,2020,9,21,Australia,AU,New South Wales,-28.254041,153.377515,EPSG:4326 +HUMAN_OBSERVATION,Jesse Saofia,1,,,2023,6,18,Australia,AU,Victoria,-38.668033,143.860662,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"Boonah Rail Trail, in E. tereticornis. Terrible phone pic on a very windy morning.",2023,10,28,Australia,AU,Queensland,-27.98728,152.678242,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,T block courtyard,2023,12,26,Australia,AU,Queensland,-27.527146,153.091882,EPSG:4326 +HUMAN_OBSERVATION,W. Hodgson,1,,,2022,12,26,Australia,AU,Queensland,-27.400575,153.437692,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,1,Australia,AU,Queensland,-27.530059,153.103373,EPSG:4326 +HUMAN_OBSERVATION,jack banks,1,,,2020,11,23,Australia,AU,New South Wales,-34.068458,150.835892,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,18,Australia,AU,Queensland,-27.528935,153.108308,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,6,20,Australia,AU,South Australia,-34.957424,138.695174,EPSG:4326 +HUMAN_OBSERVATION,Ken Hurley,1,,,2023,4,29,Australia,AU,South Australia,-34.90309,138.703228,EPSG:4326 +HUMAN_OBSERVATION,Jane Toner,1,,,2024,4,24,Australia,AU,Queensland,-27.553492,153.056186,EPSG:4326 +HUMAN_OBSERVATION,tracyrout,1,,,2022,8,31,Australia,AU,Queensland,-27.525775,153.068778,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,8,11,Australia,AU,Queensland,-27.548534,153.052324,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road,2024,9,10,Australia,AU,Queensland,-27.527021,153.090924,EPSG:4326 +HUMAN_OBSERVATION,Arielle Saunders,1,,,2022,10,1,Australia,AU,New South Wales,-34.758535,146.567954,EPSG:4326 +HUMAN_OBSERVATION,michikomarty,1,,,2021,11,28,Australia,AU,Queensland,-27.715986,151.523547,EPSG:4326 +HUMAN_OBSERVATION,Lorraine Phelan,1,FEMALE,,2022,1,2,Australia,AU,Victoria,-38.090334,141.750894,EPSG:4326 +HUMAN_OBSERVATION,Scott Warner,1,MALE,,2024,1,10,Australia,AU,Queensland,-27.296098,152.226881,EPSG:4326 +HUMAN_OBSERVATION,johjesse,1,,"Mum koala, separate tree from baby",2024,3,21,Australia,AU,Queensland,-27.300312,152.042192,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,6,23,Australia,AU,New South Wales,-28.260113,153.402184,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,7,Australia,AU,Queensland,-27.527153,153.090772,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,22,Australia,AU,South Australia,-34.935108,138.704956,EPSG:4326 +HUMAN_OBSERVATION,maaikefluitsma,1,,,2024,9,22,Australia,AU,Queensland,-27.223603,153.070237,EPSG:4326 +HUMAN_OBSERVATION,cbarrie,1,,,2020,3,4,Australia,AU,Victoria,-37.708717,144.044096,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2022,8,14,Australia,AU,Queensland,-27.483424,153.115457,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,13,Australia,AU,Queensland,-27.814368,151.550038,EPSG:4326 +HUMAN_OBSERVATION,Mel,1,,"In Eucalyptus eating early in morning *** Got an email from Logan Council about this sighting the same day as upload/sighting, informing me to call RSPCA or Wildcare about the Koala most likely being SICK with dirty bottom (chlamydia). By the time I checked again that day the Koala had moved (most likely to get out of the heat and sun) and I couldn't spot it in any of the many trees on the property. *** 1/11/24: Spotted the Koala again in same tree as first sighting around 3pm. Called Wildcare and they sent someone to come and look. Decided most likely has chlamydia and best to capture it; but too high and didn't have the Koala trap on hand. Watch and wait...",2024,10,29,Australia,AU,Queensland,-27.820647,152.980628,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,5,8,Australia,AU,Queensland,-27.546564,153.058631,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,8,22,Australia,AU,Queensland,-27.547334,153.058714,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2024,5,2,Australia,AU,Queensland,-27.528163,153.092291,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,6,Australia,AU,Queensland,-27.529653,153.109786,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Bozo,2023,6,5,Australia,AU,Queensland,-27.527128,153.107593,EPSG:4326 +HUMAN_OBSERVATION,Brad,1,,,2020,2,22,Australia,AU,South Australia,-35.036509,138.580239,EPSG:4326 +HUMAN_OBSERVATION,aussie_nate,1,,,2021,12,30,Australia,AU,Queensland,-28.262058,152.076125,EPSG:4326 +HUMAN_OBSERVATION,regan_scheuber,1,,"Tree-hugger climbing a Tallowwood (E. microcorys), a primary food species.",2024,7,1,Australia,AU,Queensland,-28.041832,153.271352,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Koala observed high up in Flooded Gum tree fork.,2021,10,25,Australia,AU,New South Wales,-28.255958,153.406932,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Stringybark,2020,7,17,Australia,AU,Queensland,-27.543941,153.060093,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,11,11,Australia,AU,Queensland,-27.551183,153.058051,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Motley,2024,9,18,Australia,AU,South Australia,-34.89185,138.715362,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,12,6,Australia,AU,Queensland,-27.546728,153.058636,EPSG:4326 +HUMAN_OBSERVATION,insiderelic,1,,,2021,1,8,Australia,AU,South Australia,-34.85765,138.710339,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,12,29,Australia,AU,Queensland,-27.530137,153.103381,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Lynelle Paterson. Submitted by Wendy Taylor via msg.,2024,11,5,Australia,AU,Queensland,-26.52456,151.833913,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,,2023,5,24,Australia,AU,Queensland,-28.211516,152.866081,EPSG:4326 +HUMAN_OBSERVATION,danicalockett,1,,,2020,12,29,Australia,AU,South Australia,-35.006436,138.639555,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,9,29,Australia,AU,Queensland,-27.528655,153.092421,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,3,26,Australia,AU,New South Wales,-28.259484,153.402021,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2020,7,13,Australia,AU,Victoria,-38.130765,145.268072,EPSG:4326 +HUMAN_OBSERVATION,Julie K,1,,,2024,4,13,Australia,AU,New South Wales,-33.087917,151.136795,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Scat,2022,10,29,Australia,AU,Victoria,-37.6175,143.874484,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,2,23,Australia,AU,Queensland,-27.551574,153.057771,EPSG:4326 +HUMAN_OBSERVATION,Anneke Logan,1,,,2023,7,27,Australia,AU,Queensland,-27.412003,151.94505,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,11,28,Australia,AU,Queensland,-27.506578,153.082523,EPSG:4326 +HUMAN_OBSERVATION,jusarm,1,,,2023,8,29,Australia,AU,Queensland,-27.81653,152.996687,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,10,16,Australia,AU,South Australia,-34.886087,138.731469,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,10,19,Australia,AU,Queensland,-27.527138,153.09216,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,12,16,Australia,AU,Queensland,-27.538738,153.056381,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,7,17,Australia,AU,Queensland,-27.548346,153.059648,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Cheese tree,2021,2,11,Australia,AU,Queensland,-27.551272,153.057663,EPSG:4326 +HUMAN_OBSERVATION,Marianne Broug,1,,,2024,7,17,Australia,AU,South Australia,-35.014138,138.672193,EPSG:4326 +HUMAN_OBSERVATION,peter-,1,,,2023,11,5,Australia,AU,Queensland,-28.203106,152.897078,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,MALE,,2024,4,16,Australia,AU,South Australia,-34.890361,138.732475,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2020,10,15,Australia,AU,Queensland,-28.230508,152.891607,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,7,25,Australia,AU,Queensland,-27.506361,153.082855,EPSG:4326 +HUMAN_OBSERVATION,JohnNewman,1,,,2024,8,5,Australia,AU,Queensland,-19.124235,146.870469,EPSG:4326 +HUMAN_OBSERVATION,Mel Halliday,1,,,2023,11,5,Australia,AU,Victoria,-37.58771,143.884827,EPSG:4326 +HUMAN_OBSERVATION,halobaena,1,,,2022,11,14,Australia,AU,Queensland,-27.513079,153.081012,EPSG:4326 +HUMAN_OBSERVATION,mudlark1,1,,,2024,10,23,Australia,AU,Queensland,-27.55218,153.0542,EPSG:4326 +HUMAN_OBSERVATION,Laura Keene,1,,,2022,8,10,Australia,AU,Queensland,-27.919485,153.377058,EPSG:4326 +HUMAN_OBSERVATION,Steve Dew,1,,,2022,3,14,Australia,AU,Victoria,-37.925243,141.28451,EPSG:4326 +HUMAN_OBSERVATION,kimblyh,1,,,2024,11,23,Australia,AU,Queensland,-27.382543,152.489126,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,27,Australia,AU,South Australia,-34.882904,138.731417,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2021,4,15,Australia,AU,South Australia,-34.830996,138.736167,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of woodland area,2023,5,19,Australia,AU,Queensland,-27.527471,153.09228,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,#1144 Pebbles Male rescued due to eye injury. Tallowood,2023,5,27,Australia,AU,Queensland,-27.548595,153.062089,EPSG:4326 +HUMAN_OBSERVATION,Bradlp10,1,,,2024,2,11,Australia,AU,South Australia,-34.811704,138.688317,EPSG:4326 +HUMAN_OBSERVATION,caitlinbrown,1,,"I’m finding these marks on the larger trees in this site. The trees often have these large marks at larger intervals, and other smaller claw puncture marks. Possibly multiple species interacting with the tree at different times. Update: I’m just going to change this to a koala sighting rather than vertebrates for a while, to try and attract feedback from someone who might be able to suggest if these claw marks are of interest or not. I understand that it’s likely not a koala scratch, or that I may not be able to tell, but I’m just keen on some more feedback. Please check my other scratch mark observations that are similar.",2024,4,10,Australia,AU,New South Wales,-36.438562,150.059386,EPSG:4326 +HUMAN_OBSERVATION,Sharon Dodd,1,,,2021,10,7,Australia,AU,Victoria,-38.357108,146.387703,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2021,12,15,Australia,AU,South Australia,-34.865078,138.65735,EPSG:4326 +HUMAN_OBSERVATION,esembi,1,,,2021,8,6,Australia,AU,Queensland,-27.779701,153.071287,EPSG:4326 +HUMAN_OBSERVATION,mdanko,1,,,2023,2,28,Australia,AU,Victoria,-38.6643,143.863282,EPSG:4326 +HUMAN_OBSERVATION,Ash,1,,,2024,8,7,Australia,AU,Queensland,-27.701466,153.192028,EPSG:4326 +HUMAN_OBSERVATION,Dominique Appay,1,MALE,Clear sighting in tree top of male Koala that has been in the area since 18/19 Dec 2022,2022,12,21,Australia,AU,Queensland,-27.500255,153.234293,EPSG:4326 +HUMAN_OBSERVATION,franhills,1,FEMALE,Koala with young climbing up a tree,2023,9,5,Australia,AU,South Australia,-35.074042,138.918743,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Reconyx HF2,2023,2,9,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,tomi_gunn,1,,,2021,5,7,Australia,AU,Queensland,-27.51523,153.079253,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,MALE,"This is the male from yesterday's observation, but he's not distracted by a female today. So he posed for me before going up a big bluegum for a snooze. https://www.inaturalist.org/observations/144878681",2022,12,24,Australia,AU,Victoria,-37.874649,142.290988,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,7,29,Australia,AU,South Australia,-34.889643,138.732584,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2024,8,3,Australia,AU,Queensland,-27.510505,153.085253,EPSG:4326 +HUMAN_OBSERVATION,annamills,1,,,2022,2,18,Australia,AU,Victoria,-38.369088,145.303241,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2022,6,20,Australia,AU,Victoria,-38.384463,145.306035,EPSG:4326 +HUMAN_OBSERVATION,andymc737,1,,,2022,11,25,Australia,AU,Queensland,-27.938968,153.356839,EPSG:4326 +HUMAN_OBSERVATION,jobrierley,1,,Female with joey. Also saw two other females with joeys and three males same day in the area.,2024,8,23,Australia,AU,Queensland,-28.104364,153.443663,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Koala Marfe sleeping peacefully.,2023,9,25,Australia,AU,Queensland,-27.256913,152.045242,EPSG:4326 +HUMAN_OBSERVATION,Eddy Smith,1,,,2022,2,20,Australia,AU,South Australia,-35.063064,138.576369,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In triangle area near cafeteria,2023,11,4,Australia,AU,Queensland,-27.52713,153.092065,EPSG:4326 +HUMAN_OBSERVATION,James Hatchett,1,,,2023,9,5,Australia,AU,Queensland,-27.372427,152.560511,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,17,Australia,AU,South Australia,-34.892043,138.719837,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,MALE,Once again Bouddi sitting high and enjoying the sunshine on one of his favourite trees,2023,5,30,Australia,AU,New South Wales,-33.137262,151.082791,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,Unusual to see a koala in this sort of coastal vegetation,2021,3,20,Australia,AU,Victoria,-38.804048,143.476629,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,5,12,Australia,AU,Queensland,-27.528227,153.092945,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Cheese tree and MRV,2020,12,1,Australia,AU,Queensland,-27.546965,153.05819,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to e block,2024,7,26,Australia,AU,Queensland,-27.526616,153.090966,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2022,12,16,Australia,AU,Queensland,-27.528948,153.111828,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Was being super noisy ( koala bellow),2022,3,29,Australia,AU,New South Wales,-34.756997,146.588547,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2024,2,5,Australia,AU,Victoria,-37.648881,143.870937,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,8,23,Australia,AU,Queensland,-27.551511,153.057122,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2022,3,10,Australia,AU,Victoria,-38.951237,146.302819,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2022,11,22,Australia,AU,Queensland,-27.509765,153.071597,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,5,6,Australia,AU,Queensland,-27.530545,153.103817,EPSG:4326 +HUMAN_OBSERVATION,seamus-doherty,1,,,2021,5,2,Australia,AU,South Australia,-35.08766,138.689223,EPSG:4326 +HUMAN_OBSERVATION,econiko,1,,,2024,9,1,Australia,AU,South Australia,-35.033418,138.628978,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland rear,2023,9,9,Australia,AU,Queensland,-27.524948,153.093107,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear,2023,12,23,Australia,AU,Queensland,-27.528898,153.106695,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Big old male in a Blackbutt (Eucalyptus pilularis),2023,7,22,Australia,AU,New South Wales,-32.709678,152.061417,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,1,9,Australia,AU,Queensland,-27.507964,153.081965,EPSG:4326 +HUMAN_OBSERVATION,jessrob73,1,,Mother and Joey,2024,1,4,Australia,AU,Victoria,-37.55443,149.742121,EPSG:4326 +HUMAN_OBSERVATION,mparekh,1,,Seems to have taken up residence on our plot. Has been making a lot of grunting noises.,2022,11,28,Australia,AU,Victoria,-37.490327,144.485511,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,5,22,Australia,AU,Queensland,-27.528984,153.111571,EPSG:4326 +HUMAN_OBSERVATION,Celeste,1,,,2021,2,28,Australia,AU,South Australia,-34.942151,138.679773,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,11,14,Australia,AU,South Australia,-34.891174,138.722577,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,4,23,Australia,AU,Queensland,-27.51211,153.083244,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Joey seen between mum koala's front legs. Sleeping in mature large Tallowwood tree.,2022,9,30,Australia,AU,New South Wales,-28.261574,153.397497,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,6,27,Australia,AU,Queensland,-27.50621,153.082868,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,13,Australia,AU,Queensland,-27.413267,152.003114,EPSG:4326 +HUMAN_OBSERVATION,goanna355,1,,,2023,2,2,Australia,AU,Queensland,-27.693842,152.737153,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tagged right ear - female in Tallowood,2020,3,20,Australia,AU,Queensland,-27.551369,153.057327,EPSG:4326 +HUMAN_OBSERVATION,Elaine,1,,,2024,1,4,Australia,AU,Victoria,-38.26579,145.049227,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,9,12,Australia,AU,Victoria,-37.654905,143.925691,EPSG:4326 +HUMAN_OBSERVATION,fraserj09,1,FEMALE,,2024,9,13,Australia,AU,Victoria,-38.203322,141.775406,EPSG:4326 +HUMAN_OBSERVATION,raewyn33,1,,HBV,2023,12,7,Australia,AU,Victoria,-37.754295,145.663087,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Female. Dirty bottom. Koala rescue contacted. In same tree as an apparent healthy juvenile male. Observed by Wendy Taylor. Submitted by Denise Shaw via email. Scat collected for testing.,2023,7,29,Australia,AU,Queensland,-26.155358,151.750039,EPSG:4326 +HUMAN_OBSERVATION,maudieo,1,FEMALE,,2022,11,9,Australia,AU,Queensland,-27.260088,152.0594,EPSG:4326 +HUMAN_OBSERVATION,rdgray,1,,,2024,1,25,Australia,AU,Victoria,-38.548672,143.743453,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,,2024,11,16,Australia,AU,Queensland,-28.198925,153.194755,EPSG:4326 +HUMAN_OBSERVATION,quollsskinks,1,,,2020,12,11,Australia,AU,Victoria,-37.743026,142.032348,EPSG:4326 +HUMAN_OBSERVATION,mum_mcmumface,1,,,2023,4,26,Australia,AU,South Australia,-34.868411,138.68362,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,6,21,Australia,AU,South Australia,-34.894545,138.621095,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2023,11,3,Australia,AU,Queensland,-27.526827,153.109102,EPSG:4326 +HUMAN_OBSERVATION,brachy23,1,,,2023,9,12,Australia,AU,Queensland,-27.426539,151.940934,EPSG:4326 +HUMAN_OBSERVATION,culpania,1,,,2024,10,17,Australia,AU,Queensland,-28.138094,153.439378,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec woodland,2023,10,22,Australia,AU,Queensland,-27.525757,153.091977,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,,2023,10,12,Australia,AU,Queensland,-27.413458,152.003028,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Being harassed by a couple of currawongs,2023,9,25,Australia,AU,Queensland,-27.529317,153.104586,EPSG:4326 +HUMAN_OBSERVATION,carlabruinsma,1,,Juvenile,2024,8,21,Australia,AU,New South Wales,-28.637502,153.629619,EPSG:4326 +HUMAN_OBSERVATION,masonvisser7,1,,,2024,10,19,Australia,AU,Queensland,-27.498222,153.399893,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2023,4,2,Australia,AU,New South Wales,-31.442501,152.90139,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy Koala Observation by property Owner P Brown - sent to TWKR for assessment and records.,2023,11,1,Australia,AU,Queensland,-27.589704,151.843093,EPSG:4326 +HUMAN_OBSERVATION,Grigory Evtukh,1,,,2023,12,16,Australia,AU,Victoria,-37.191133,148.269267,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,13,Australia,AU,Queensland,-27.823805,152.993348,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,5,3,Australia,AU,Queensland,-27.550032,153.06057,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Amanda West. Submitted via msg,2022,11,2,Australia,AU,Queensland,-26.808295,152.108867,EPSG:4326 +HUMAN_OBSERVATION,Dundas Nature Refuge - D'Aguilar Ranges,1,,,2023,6,26,Australia,AU,Queensland,-27.333328,152.611764,EPSG:4326 +HUMAN_OBSERVATION,Martin Whiting,1,,,2023,12,31,Australia,AU,South Australia,-35.903795,137.472183,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside concourse and cleaners donga first tree Injured eye?,2023,8,5,Australia,AU,Queensland,-27.526769,153.091822,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Photo taken by Tina V,2022,6,20,Australia,AU,New South Wales,-29.48928,153.103993,EPSG:4326 +HUMAN_OBSERVATION,Sam S,1,,Male grunting at night. Most likely in Euc camphora swamp gum,2023,10,7,Australia,AU,Victoria,-37.017162,145.452388,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Koala.,2023,8,5,Australia,AU,Queensland,-27.255751,152.045843,EPSG:4326 +HUMAN_OBSERVATION,Bradlp10,1,,"Koko da Koala 🐨, 🥱 sleepy",2024,8,28,Australia,AU,South Australia,-34.799167,138.70092,EPSG:4326 +HUMAN_OBSERVATION,kdankiw,1,,,2021,4,2,Australia,AU,South Australia,-34.82575,138.735511,EPSG:4326 +HUMAN_OBSERVATION,Victoria,1,,,2023,7,15,Australia,AU,South Australia,-35.009134,138.655861,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear,2023,3,18,Australia,AU,Queensland,-27.530076,153.103371,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to Q block,2024,7,28,Australia,AU,Queensland,-27.526544,153.092093,EPSG:4326 +HUMAN_OBSERVATION,Maddy,1,,"Koala spotted, walked off into bushland after sighting.",2024,10,5,Australia,AU,Queensland,-27.472101,152.851685,EPSG:4326 +HUMAN_OBSERVATION,Jamie Wood,1,,,2023,4,3,Australia,AU,South Australia,-34.996453,138.620313,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,11,13,Australia,AU,Queensland,-27.546384,153.073134,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor on Tingoora Chelmsford Rd Tingoora. Submitted via msg.,2024,8,28,Australia,AU,Queensland,-26.364506,151.814656,EPSG:4326 +HUMAN_OBSERVATION,thelearninghaus,1,,,2024,8,31,Australia,AU,Queensland,-27.340983,151.863708,EPSG:4326 +HUMAN_OBSERVATION,mattworr,1,,,2024,10,4,Australia,AU,South Australia,-35.02509,138.740102,EPSG:4326 +HUMAN_OBSERVATION,smiles2901,1,FEMALE,Koala and Joey - Mothers Day 🥰,2021,5,9,Australia,AU,Queensland,-27.510447,153.085267,EPSG:4326 +HUMAN_OBSERVATION,jwill9876,1,,,2022,11,20,Australia,AU,Queensland,-27.543762,153.053631,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,MALE,In small fruited grey gum e.propinqua,2024,6,16,Australia,AU,Queensland,-28.047705,152.913272,EPSG:4326 +HUMAN_OBSERVATION,Nudge,1,,,2021,11,4,Australia,AU,New South Wales,-30.226729,152.92636,EPSG:4326 +HUMAN_OBSERVATION,Nav,1,,Last one. There's such a difference between seeing them in the wild compared to captivity. If I see them in a zoo I go like "oh it's a koala" if I see them in the wild I'm like "OMG ITS A KOALA AAAANAHAHA",2023,1,9,Australia,AU,Victoria,-38.366832,145.31613,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,2,1,Australia,AU,Victoria,-37.581704,143.904765,EPSG:4326 +HUMAN_OBSERVATION,sonofhans,1,,Moving trees near the playground. Luckily no dogs around,2023,10,7,Australia,AU,Queensland,-28.125171,153.444096,EPSG:4326 +HUMAN_OBSERVATION,helen_y,1,,Koala claw marks on a Eucalyptus punctata.,2023,9,1,Australia,AU,New South Wales,-32.32704,151.82374,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Donna Baker Dingle. Submitted via email. Spotted crossing the road. Both photo and video was submitted. Noted seeing another koala crossing the road near here a few years back.,2022,9,23,Australia,AU,Queensland,-25.105016,150.982309,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland Mother and joey,2024,10,5,Australia,AU,Queensland,-27.528623,153.093114,EPSG:4326 +HUMAN_OBSERVATION,jessicadavidson,1,,"Camera: Canon EOS 700D, EF-S55-250mm f4-5.6 IS II Photo: Female Koala sitting in a fork of a eucalyptus tree. Cropped face photo and second photo is zoomed out showing the whole body of the koala sitting in the tree.",2021,6,4,Australia,AU,Victoria,-38.139677,145.255165,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2023,10,11,Australia,AU,Queensland,-27.527067,153.107768,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2023,11,26,Australia,AU,South Australia,-34.921283,138.693497,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,5,Australia,AU,South Australia,-34.892869,138.720275,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Christabelle - yellow 1032 RIGHT ear,2023,1,2,Australia,AU,Queensland,-27.530001,153.104118,EPSG:4326 +HUMAN_OBSERVATION,nankeenangus,1,,,2022,3,27,Australia,AU,South Australia,-35.146364,138.590441,EPSG:4326 +HUMAN_OBSERVATION,Jason Ramsay,1,,Strong eucalypt smell. Very fresh. Found under Eucalyptus tereticornis. First two photographs were taken after scats were brought home.,2023,5,22,Australia,AU,Queensland,-27.297467,152.981237,EPSG:4326 +HUMAN_OBSERVATION,Sophie Green,1,,"Spent 2 days living in eucalypt in backyard, had ear tag but could not read number",2020,7,20,Australia,AU,South Australia,-35.219578,138.537432,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy Koala at Highfields State School. Observation by E May for TKWR,2023,11,3,Australia,AU,Queensland,-27.461285,151.958327,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In car park trees near sheds,2023,7,6,Australia,AU,Queensland,-27.525129,153.090774,EPSG:4326 +HUMAN_OBSERVATION,polyscias099,1,,Scats,2021,10,5,Australia,AU,New South Wales,-33.997212,150.907653,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,2,2,Australia,AU,Victoria,-37.594303,143.894144,EPSG:4326 +HUMAN_OBSERVATION,Charles Lam,1,,,2024,9,30,Australia,AU,Queensland,-27.221095,153.061538,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,FEMALE,,2022,11,23,Australia,AU,Queensland,-27.543133,153.073353,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,11,9,Australia,AU,Queensland,-27.528627,153.0924,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,10,10,Australia,AU,Queensland,-27.511438,153.083371,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Diane Livingstone. Submitted by Denise Shaw via email.,2023,8,18,Australia,AU,Queensland,-26.372772,151.675872,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,19,Australia,AU,Queensland,-27.546027,153.072935,EPSG:4326 +HUMAN_OBSERVATION,curtis-w,1,,,2022,9,27,Australia,AU,Victoria,-37.470347,145.393417,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Sport n rec picnic area Mother and joey,2024,9,8,Australia,AU,Queensland,-27.525753,153.092041,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,,2023,12,9,Australia,AU,Queensland,-27.527266,153.107301,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,This may be a male? seems to like the Tallowoods.,2020,10,17,Australia,AU,New South Wales,-28.254031,153.377481,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Trees at the concourse/admin building,2023,7,2,Australia,AU,Queensland,-27.526943,153.091614,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,1,29,Australia,AU,Queensland,-27.550736,153.057538,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,4,12,Australia,AU,Queensland,-27.529893,153.103657,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Mother and joey in same tree as male End of wisteria car park,2024,9,7,Australia,AU,Queensland,-27.525429,153.092305,EPSG:4326 +HUMAN_OBSERVATION,scapararo,1,,Photo is still from a video. Observed during rain storm. In tree next to stadium.,2024,10,18,Australia,AU,New South Wales,-34.101267,150.822085,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,Griffith University AI Koala Project - Learn more here: https://news.griffith.edu.au/2023/09/27/all-eyes-on-koala-movements-with-ai-tech-in-full-swing-this-spring/,2023,10,13,Australia,AU,Queensland,-27.701124,153.189646,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2024,3,1,Australia,AU,New South Wales,-34.878097,146.82933,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2023,4,16,Australia,AU,Queensland,-27.284465,153.000876,EPSG:4326 +HUMAN_OBSERVATION,Arielle Saunders,1,,,2022,10,1,Australia,AU,New South Wales,-34.757663,146.566122,EPSG:4326 +HUMAN_OBSERVATION,Tony Wood,1,,,2023,7,26,Australia,AU,Queensland,-27.909001,153.353509,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Um and front bub.,2023,9,12,Australia,AU,Queensland,-27.255412,152.046061,EPSG:4326 +HUMAN_OBSERVATION,Keith,1,,,2023,9,16,Australia,AU,Queensland,-27.527232,153.108872,EPSG:4326 +HUMAN_OBSERVATION,Adam Smith,1,FEMALE,,2021,10,23,Australia,AU,Queensland,-19.126093,146.868677,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,2,8,Australia,AU,Queensland,-27.551285,153.05778,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,,2024,1,4,Australia,AU,Queensland,-27.265372,152.049653,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,Tagged Female,2023,5,2,Australia,AU,Queensland,-27.529597,153.10445,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,2 in the same tree mating behaviour observed,2024,9,21,Australia,AU,New South Wales,-34.77203,146.595367,EPSG:4326 +HUMAN_OBSERVATION,malcolmspry,1,,,2024,1,4,Australia,AU,Queensland,-25.629485,151.620829,EPSG:4326 +HUMAN_OBSERVATION,Anneke Logan,1,,,2023,5,19,Australia,AU,Queensland,-27.257203,152.046306,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2023,10,24,Australia,AU,Queensland,-27.526743,153.109473,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Adult, healthy, unknown sex. Observed by Denise Shaw via email. Same individual as the one observed by Wendy Taylor. Same time, date and location.",2023,6,14,Australia,AU,Queensland,-26.17259,151.766353,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,"2 calling periods, only about 2 minutes apart have been joined with a 2 sec silence in between.",2022,1,12,Australia,AU,Queensland,-27.510602,153.070132,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in Eucalyptus crebra.,2024,10,3,Australia,AU,Queensland,-28.163257,152.6052,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside cleaners donga,2024,8,17,Australia,AU,Queensland,-27.526956,153.091623,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Some nights I can hear up to four koalas, but I am lucky if I can see two ...they are just slightly further away and hard to find at night.",2020,8,6,Australia,AU,New South Wales,-28.253552,153.37708,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Koala scat,2022,9,11,Australia,AU,Victoria,-37.579137,143.877516,EPSG:4326 +HUMAN_OBSERVATION,Bruce McLennan,1,,,2021,4,15,Australia,AU,Queensland,-27.23497,152.221167,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult Healthy Unknown Sex. Observed by Maddighan Taylor. Submitted by email.,2022,9,2,Australia,AU,Queensland,-26.182073,151.775294,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,11,30,Australia,AU,Queensland,-27.413678,152.003053,EPSG:4326 +HUMAN_OBSERVATION,claire_faulknerd,1,,Climbed down from tree then crossed path to drink from the Brown Hill Creek water. Water appeared stagnate and polluted.,2024,4,8,Australia,AU,South Australia,-34.990772,138.632166,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2023,12,21,Australia,AU,Queensland,-26.155079,151.749888,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,17,Australia,AU,South Australia,-34.890234,138.721992,EPSG:4326 +HUMAN_OBSERVATION,David,1,,,2022,5,29,Australia,AU,South Australia,-34.873231,138.720122,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,9,1,Australia,AU,Victoria,-37.592436,143.90182,EPSG:4326 +HUMAN_OBSERVATION,Garry French,1,,,2022,6,23,Australia,AU,Victoria,-38.318454,142.363123,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Female - red tag A18 - Campo. Found dead on the ground, clutching a dead branch. Presume killed by the fall. Contacted local QKS rescue. Had to leave Campo where she was - maggots on body. Moved her to a hollow tree.",2023,10,24,Australia,AU,Queensland,-27.527717,153.109984,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,23,Australia,AU,Queensland,-27.529883,153.105388,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi & joey,2024,1,20,Australia,AU,Queensland,-27.529984,153.103331,EPSG:4326 +HUMAN_OBSERVATION,Gordon Claridge,1,,Under Grey Gum (Eucalyptus major) - one of the local favourite food trees. LCA3141,2023,1,14,Australia,AU,Queensland,-27.492655,152.24464,EPSG:4326 +HUMAN_OBSERVATION,hotpotofnoodles,1,,,2020,11,7,Australia,AU,Queensland,-27.911561,153.372739,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2024,5,27,Australia,AU,Queensland,-28.082754,152.851971,EPSG:4326 +HUMAN_OBSERVATION,Karen Weaving,1,,"wild, Koala, Phascolarctos cinereus, MCP Norton Summit, SA, Australia",2023,2,4,Australia,AU,South Australia,-34.912923,138.73697,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,2,1,Australia,AU,South Australia,-34.890985,138.730089,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2023,5,2,Australia,AU,Queensland,-27.941537,152.598938,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,2,24,Australia,AU,Victoria,-38.671213,146.16385,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2021,10,24,Australia,AU,South Australia,-34.861586,138.660196,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,12,Australia,AU,Queensland,-27.54583,153.073708,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,12,Australia,AU,South Australia,-34.88842,138.734874,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance of nursery,2023,10,1,Australia,AU,Queensland,-27.52727,153.092146,EPSG:4326 +HUMAN_OBSERVATION,Elspeth Swan,1,,,2024,1,20,Australia,AU,Victoria,-37.633664,144.088587,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,8,17,Australia,AU,Queensland,-27.268429,152.965554,EPSG:4326 +HUMAN_OBSERVATION,mims08,1,,,2023,9,16,Australia,AU,Queensland,-27.424819,151.946749,EPSG:4326 +HUMAN_OBSERVATION,kazhutcho,1,,,2024,1,19,Australia,AU,New South Wales,-30.295612,153.124589,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,5,26,Australia,AU,Queensland,-27.52432,153.093005,EPSG:4326 +HUMAN_OBSERVATION,rordale,1,,,2021,12,1,Australia,AU,Queensland,-27.262234,152.062996,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,17,Australia,AU,South Australia,-34.890181,138.722521,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,"Looked young, laying on tree, 20m from road",2024,11,22,Australia,AU,New South Wales,-34.077179,150.849395,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,High in tree Near E block Joey just visible - brown fur,2023,9,8,Australia,AU,Queensland,-27.526421,153.090984,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,3,22,Australia,AU,Queensland,-27.527195,153.092041,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,Robin and first sighting of her joey (leg). Sitting in one of her favourite tree eating her favourite Eucalyptus microcorys leaves. Mated with Crusoe.,2023,8,23,Australia,AU,Queensland,-27.414678,152.004411,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwod between TF chain link fence and bike way. Relocation unsuccessful,2020,4,30,Australia,AU,Queensland,-27.544429,153.061695,EPSG:4326 +HUMAN_OBSERVATION,donnamareetomkinson,1,,"Reported onto the Gympie koala action website, as it has conjunctivitis. Unfortunately, in a remote area that needs a 4WD to get to, so unlikely to get help for it.",2023,8,26,Australia,AU,Queensland,-26.540943,152.482358,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE - in block of land just sold for development,2023,5,6,Australia,AU,Queensland,-27.527734,153.091406,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Located near Nathan Reserve Water tank that’s about to be removed by council.,2024,8,9,Australia,AU,Queensland,-27.54788,153.072983,EPSG:4326 +HUMAN_OBSERVATION,mikaylad,1,,,2021,8,6,Australia,AU,Queensland,-27.936865,153.030967,EPSG:4326 +HUMAN_OBSERVATION,Lynda Wilson,1,,,2023,2,17,Australia,AU,Victoria,-37.277009,144.310387,EPSG:4326 +HUMAN_OBSERVATION,Dave Broughton,1,,,2020,9,21,Australia,AU,Queensland,-27.542353,153.056351,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,Also a baby up higher on same branch Roseberry Place BUSHCARE site,2020,8,2,Australia,AU,Queensland,-27.166504,153.001442,EPSG:4326 +HUMAN_OBSERVATION,Chris,1,FEMALE,,2023,10,1,Australia,AU,Queensland,-27.895745,152.618164,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,18,Australia,AU,South Australia,-34.887425,138.733974,EPSG:4326 +HUMAN_OBSERVATION,melinda1903,1,,,2024,4,8,Australia,AU,New South Wales,-33.781183,150.042448,EPSG:4326 +HUMAN_OBSERVATION,forestfi,1,,,2021,6,13,Australia,AU,Queensland,-27.554473,153.047837,EPSG:4326 +HUMAN_OBSERVATION,J.R. Kuethe,1,,,2023,3,26,Australia,AU,Victoria,-37.402225,142.209432,EPSG:4326 +HUMAN_OBSERVATION,Megan Forward,1,,It ran up a tree as I walked through the paths behind the admin buildings.,2020,5,27,Australia,AU,Queensland,-27.547354,153.21746,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,3,14,Australia,AU,Queensland,-26.191125,152.127376,EPSG:4326 +HUMAN_OBSERVATION,maximto,1,,,2024,10,1,Australia,AU,Queensland,-28.105739,153.443055,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2020,9,8,Australia,AU,Queensland,-22.632809,147.522598,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,2,4,Australia,AU,Queensland,-27.413575,152.003114,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Planchon Stringybark,2024,1,22,Australia,AU,Queensland,-27.552753,153.057796,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"Koala, Mars St. photo by neighbour on phone, I had heard a koala call about 9am. Could be same animal or maybe a female responding to male call.?",2020,2,19,Australia,AU,Queensland,-27.510958,153.06921,EPSG:4326 +HUMAN_OBSERVATION,rosewise,1,,,2024,9,21,Australia,AU,New South Wales,-28.874945,153.16061,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3130 (Photo: Bob Brown),2022,8,15,Australia,AU,Queensland,-27.53118,152.1833,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Koala eating leaf in Flooded Gum tree.,2021,11,21,Australia,AU,New South Wales,-28.256364,153.401004,EPSG:4326 +HUMAN_OBSERVATION,dawnborchardt,1,,"wild creatures, not captive",2021,12,22,Australia,AU,South Australia,-35.03678,138.736583,EPSG:4326 +HUMAN_OBSERVATION,Zoltán Stekkelpak,1,,,2024,3,23,Australia,AU,Victoria,-38.668514,143.860853,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,5,17,Australia,AU,South Australia,-35.006989,138.6567,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,With joey in Eucalyptus tereticornis.,2021,11,21,Australia,AU,Queensland,-27.54804,153.03747,EPSG:4326 +HUMAN_OBSERVATION,tim_nickholds,1,,,2023,8,9,Australia,AU,Victoria,-37.754656,145.663736,EPSG:4326 +HUMAN_OBSERVATION,gfotouhi,1,,,2023,12,17,Australia,AU,Victoria,-38.484292,145.261445,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag R ear - & joey,2022,12,28,Australia,AU,Queensland,-27.53008,153.103731,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area - rear near houses Mid way up tallowwood,2023,8,19,Australia,AU,Queensland,-27.5281,153.092949,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,23,Australia,AU,Queensland,-27.545526,153.073843,EPSG:4326 +HUMAN_OBSERVATION,Heath Hunter,1,,,2023,2,23,Australia,AU,South Australia,-34.948238,138.655203,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Cleaners donga D block,2024,10,6,Australia,AU,Queensland,-27.526901,153.09158,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,11,3,Australia,AU,South Australia,-34.891902,138.721458,EPSG:4326 +HUMAN_OBSERVATION,Lorraine Phelan,1,,The film on Flickr. https://flic.kr/p/2mWdU24 I set up the wildlife camera to record a koala moving through the eucalypt and was surprised to see a young koala as well.,2022,1,1,Australia,AU,Victoria,-38.090085,141.751118,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Monkey Rope vine,2022,6,15,Australia,AU,Queensland,-27.549131,153.050075,EPSG:4326 +HUMAN_OBSERVATION,Kagan Vainisi,1,,,2020,12,10,Australia,AU,Victoria,-36.226437,146.267746,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,11,15,Australia,AU,Queensland,-27.507075,153.085603,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,30,Australia,AU,South Australia,-34.888717,138.727805,EPSG:4326 +HUMAN_OBSERVATION,alpha741,1,,"Bold Coat, Young and Inquisitive",2021,4,20,Australia,AU,South Australia,-35.000188,138.679297,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In unknown tree,2020,1,24,Australia,AU,Queensland,-27.546702,153.058239,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland middle,2023,11,11,Australia,AU,Queensland,-27.527785,153.092319,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,10,22,Australia,AU,Queensland,-27.5686,151.716478,EPSG:4326 +HUMAN_OBSERVATION,wombatplace,1,,Sighting and photos (c) david19.,2021,9,19,Australia,AU,South Australia,-35.069114,138.699858,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,9,27,Australia,AU,South Australia,-34.890479,138.731547,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,This may be an elderly male have seen in this area before.,2020,10,8,Australia,AU,New South Wales,-28.254231,153.377067,EPSG:4326 +HUMAN_OBSERVATION,Isabel,1,,,2024,2,29,Australia,AU,South Australia,-34.994599,138.75272,EPSG:4326 +HUMAN_OBSERVATION,Chris Power,1,,,2023,8,16,Australia,AU,Queensland,-27.544899,153.072691,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - green tag LEFT ear - Joe, known as Bozo",2024,6,22,Australia,AU,Queensland,-27.526829,153.108868,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,6,27,Australia,AU,Queensland,-27.506577,153.084819,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Female brown koala with joey, in the gum tree by the lawn again.",2020,9,26,Australia,AU,New South Wales,-28.254089,153.377037,EPSG:4326 +HUMAN_OBSERVATION,mws1992,1,,,2023,7,25,Australia,AU,Queensland,-27.596876,153.174967,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2023,5,27,Australia,AU,Queensland,-27.551424,153.059223,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,18,Australia,AU,Queensland,-27.527384,153.093103,EPSG:4326 +HUMAN_OBSERVATION,Kymberley,1,,,2022,11,1,Australia,AU,Queensland,-21.687571,148.687923,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,5,17,Australia,AU,South Australia,-35.004099,138.649849,EPSG:4326 +HUMAN_OBSERVATION,Corin,1,,,2023,8,16,Australia,AU,Queensland,-27.226822,152.556938,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Stringybark,2020,5,26,Australia,AU,Queensland,-27.543275,153.057187,EPSG:4326 +HUMAN_OBSERVATION,confused_jaz,1,,,2023,11,26,Australia,AU,South Australia,-35.004731,138.654686,EPSG:4326 +HUMAN_OBSERVATION,lynsh,1,,,2024,6,5,Australia,AU,Queensland,-28.006361,153.241687,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag 1317 LEFT ear - Thor,2024,5,24,Australia,AU,Queensland,-27.527876,153.112737,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Female. Adult. Unhealthy. Rescued and later euthanised. Chlamydia and fracture spine in 2 places. Observed by Wendy Taylor. Submitted via msg.,2024,7,26,Australia,AU,Queensland,-26.171908,151.820166,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2022,6,19,Australia,AU,Victoria,-38.321294,142.63259,EPSG:4326 +HUMAN_OBSERVATION,eddie06,1,,,2022,6,19,Australia,AU,New South Wales,-31.133297,150.069228,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,2,17,Australia,AU,Queensland,-26.401998,152.654799,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Healthy young koala.,2020,8,9,Australia,AU,New South Wales,-28.26957,153.39312,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,Potential female in stringybark spp.,2023,5,10,Australia,AU,Queensland,-27.551062,153.060026,EPSG:4326 +HUMAN_OBSERVATION,Hayley P,1,,,2024,4,22,Australia,AU,Queensland,-27.275308,152.936886,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,27,Australia,AU,South Australia,-34.889841,138.728717,EPSG:4326 +HUMAN_OBSERVATION,Peta Jansma-Reid,1,FEMALE,"Mum with Joey, mum has slight red eyes, no tag present",2024,9,7,Australia,AU,Queensland,-27.284277,152.999957,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,11,28,Australia,AU,Queensland,-27.41308,152.003006,EPSG:4326 +HUMAN_OBSERVATION,markusrainer,1,,,2024,11,6,Australia,AU,South Australia,-35.778817,137.77171,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,1,Australia,AU,Queensland,-27.527096,153.110532,EPSG:4326 +HUMAN_OBSERVATION,teripschool,1,,,2024,9,20,Australia,AU,Victoria,-36.948558,145.487533,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,possibly male?,2020,10,6,Australia,AU,New South Wales,-28.253972,153.377429,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,Moving quickly in tree. High up in a grey gum. Grey gum was large tree,2024,1,15,Australia,AU,New South Wales,-34.08267,150.853474,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,Keene Road,2021,11,29,Australia,AU,Queensland,-27.812771,151.553341,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,5,3,Australia,AU,Queensland,-27.546462,153.072785,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,3,8,Australia,AU,New South Wales,-29.857211,150.585918,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,1,18,Australia,AU,Victoria,-38.671037,146.163682,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,One koala (2 photos),2024,11,4,Australia,AU,Queensland,-27.331117,151.930388,EPSG:4326 +HUMAN_OBSERVATION,Jade,1,,,2024,10,14,Australia,AU,Queensland,-27.530025,153.099839,EPSG:4326 +HUMAN_OBSERVATION,Gunter Maywald,1,,,2020,7,16,Australia,AU,Queensland,-19.124324,146.870615,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,MALE,Male. Has wet bum so has chlamydia. Caught so he can get vet treatment.,2023,8,17,Australia,AU,Queensland,-27.456817,152.40481,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,Heard during the night a male koala near the house. Recording isn’t the best but you can hear him.,2023,11,19,Australia,AU,Queensland,-27.358427,152.07452,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2021,8,15,Australia,AU,Victoria,-38.13197,145.266178,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2022,10,29,Australia,AU,South Australia,-34.692015,138.826933,EPSG:4326 +HUMAN_OBSERVATION,loubolt,1,,,2021,9,26,Australia,AU,South Australia,-35.002388,138.645415,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Video on Friends of Canadian Corridor facebook,2020,4,20,Australia,AU,Victoria,-37.619181,143.890209,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,10,12,Australia,AU,Queensland,-27.162508,152.587937,EPSG:4326 +HUMAN_OBSERVATION,tashramsey,1,,,2024,10,14,Australia,AU,Queensland,-27.312655,152.999663,EPSG:4326 +HUMAN_OBSERVATION,Geoffrey Cox,1,,,2022,4,29,Australia,AU,South Australia,-35.153994,138.57895,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,8,Australia,AU,Queensland,-27.545828,153.073707,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,12,20,Australia,AU,Victoria,-38.671153,146.163852,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,25,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2022,12,24,Australia,AU,Queensland,-27.600156,151.888844,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,2,14,Australia,AU,Queensland,-27.530137,153.103689,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,5,Australia,AU,South Australia,-34.887322,138.734848,EPSG:4326 +HUMAN_OBSERVATION,Francesco Martoni,1,,,2023,11,25,Australia,AU,Victoria,-38.819212,143.524548,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near e block,2024,7,21,Australia,AU,Queensland,-27.526003,153.090603,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,5,20,Australia,AU,Queensland,-27.901639,153.364813,EPSG:4326 +HUMAN_OBSERVATION,Zali Clark,1,,,2024,4,4,Australia,AU,Victoria,-38.430125,144.924867,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear - known as Bozo,2023,7,10,Australia,AU,Queensland,-27.527019,153.108857,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,,This female koala with joey has returned after about a months absence. The joey has left the pouch. They are in a tallowwood tree.,2021,8,28,Australia,AU,Queensland,-28.17387,152.906601,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,10,Australia,AU,Queensland,-27.548353,153.052313,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,29,Australia,AU,Queensland,-27.530038,153.103715,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In lone tree near tennis courts,2024,7,27,Australia,AU,Queensland,-27.525575,153.093258,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Bloodwood,2023,9,3,Australia,AU,Queensland,-27.535816,153.036836,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,12,15,Australia,AU,Victoria,-37.640868,143.899086,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Mum and joey. Saw them early in the morning at around 8am and went back in afternoon and still on same branch.,2023,7,2,Australia,AU,Queensland,-27.284835,153.001262,EPSG:4326 +HUMAN_OBSERVATION,Susan J,1,,One healthy koala in nature reserve with no visible signs of chlamydia.,2024,1,12,Australia,AU,Queensland,-27.529445,153.083876,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2020,12,24,Australia,AU,South Australia,-34.997821,138.751342,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2023,12,23,Australia,AU,Queensland,-27.525661,153.092253,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,10,1,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2024,10,15,Australia,AU,New South Wales,-34.757328,146.589172,EPSG:4326 +HUMAN_OBSERVATION,Reece Taverner,1,,,2022,6,10,Australia,AU,Queensland,-27.919474,153.376912,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,10,3,Australia,AU,Queensland,-27.527035,153.108199,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,7,13,Australia,AU,South Australia,-34.864596,138.659287,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,5,Australia,AU,Queensland,-27.526957,153.090831,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,22,Australia,AU,Queensland,-27.529004,153.106458,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Interesting markings on his bottom. Believe a big male. Ainslie heard him bellowing and went looking.,2021,10,3,Australia,AU,New South Wales,-28.254519,153.37797,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery - top Mother and joey,2023,11,5,Australia,AU,Queensland,-27.52697,153.091788,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,4,2,Australia,AU,Queensland,-27.547024,153.066825,EPSG:4326 +HUMAN_OBSERVATION,mikew65,1,,,2020,1,11,Australia,AU,Queensland,-27.572433,152.138793,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Red Mahogany,2020,7,13,Australia,AU,Queensland,-27.549628,153.062907,EPSG:4326 +HUMAN_OBSERVATION,clawrenc,1,,,2024,10,28,Australia,AU,Queensland,-28.093048,153.447056,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Canon 650D,2023,3,25,Australia,AU,Queensland,-27.564083,152.179453,EPSG:4326 +HUMAN_OBSERVATION,tcaderperson,1,,,2023,6,25,Australia,AU,Queensland,-28.124575,152.946971,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,19,Australia,AU,Queensland,-27.527888,153.103018,EPSG:4326 +HUMAN_OBSERVATION,Hayden Roberts,1,,,2024,5,5,Australia,AU,Queensland,-27.373489,152.891385,EPSG:4326 +HUMAN_OBSERVATION,Tricia Stewart,1,,,2021,4,7,Australia,AU,Victoria,-38.129442,145.274537,EPSG:4326 +HUMAN_OBSERVATION,J. Addesi,1,,,2024,3,24,Australia,AU,South Australia,-34.902241,138.70162,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Rear entrance to nursery Male testicles visible,2023,12,9,Australia,AU,Queensland,-27.527267,153.09213,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2023,4,20,Australia,AU,Victoria,-37.089156,145.440004,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland,2024,6,8,Australia,AU,Queensland,-27.527352,153.092176,EPSG:4326 +HUMAN_OBSERVATION,HRad,1,,,2023,8,10,Australia,AU,Victoria,-37.521188,144.58489,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,12,5,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,,2024,2,2,Australia,AU,Queensland,-27.552554,153.057446,EPSG:4326 +HUMAN_OBSERVATION,Rusty,1,,,2022,1,21,Australia,AU,South Australia,-34.990102,138.636633,EPSG:4326 +HUMAN_OBSERVATION,sporopat,1,,,2022,2,15,Australia,AU,Victoria,-37.576957,144.123294,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Mother and joey Outside nursery,2023,11,12,Australia,AU,Queensland,-27.527144,153.09156,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,21,Australia,AU,Queensland,-27.545887,153.073236,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,This probably is kala no 1 as still in the same territory and following the same trees,2020,6,16,Australia,AU,New South Wales,-28.254155,153.377544,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,8,24,Australia,AU,Queensland,-27.526835,153.090632,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,14,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,12,22,Australia,AU,Queensland,-27.509522,153.084397,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2023,3,2,Australia,AU,South Australia,-34.865213,138.656945,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,12,23,Australia,AU,Queensland,-27.527229,153.091677,EPSG:4326 +HUMAN_OBSERVATION,ballzak,1,,,2024,10,21,Australia,AU,South Australia,-34.816266,138.961007,EPSG:4326 +HUMAN_OBSERVATION,dilshara,1,,,2023,12,12,Australia,AU,New South Wales,-31.932636,152.408187,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,17,Australia,AU,Queensland,-27.544588,153.072365,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside rear entrance gates to nursery Mother and joey,2023,11,5,Australia,AU,Queensland,-27.527223,153.091943,EPSG:4326 +HUMAN_OBSERVATION,georgielambert,1,,,2023,8,21,Australia,AU,Victoria,-38.79,143.53548,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,MALE,Though you can't see this koala is a male. I have seen him in these trees on Lawnton Road many times.,2023,4,2,Australia,AU,Queensland,-27.28448,153.000835,EPSG:4326 +HUMAN_OBSERVATION,annaeltsova,1,,,2024,9,10,Australia,AU,Victoria,-38.742749,143.579705,EPSG:4326 +HUMAN_OBSERVATION,insiderelic,1,,,2020,9,19,Australia,AU,South Australia,-34.978211,138.706847,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown Sex. Healthy. Observed by Rachel Kiesling. Forwarded by msg.,2020,1,4,Australia,AU,Queensland,-26.15,151.983333,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,11,5,Australia,AU,Queensland,-26.138775,152.212885,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,9,20,Australia,AU,Queensland,-27.527048,153.090924,EPSG:4326 +HUMAN_OBSERVATION,kezzob,1,,,2024,3,29,Australia,AU,Queensland,-26.544638,151.95246,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2020,1,6,Australia,AU,Queensland,-27.549243,153.072033,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag - & joey,2023,3,7,Australia,AU,Queensland,-27.530937,153.103927,EPSG:4326 +HUMAN_OBSERVATION,Phil Benstead,1,,,2023,11,22,Australia,AU,Queensland,-27.468741,153.425585,EPSG:4326 +HUMAN_OBSERVATION,Liam Sanders,1,,,2021,1,22,Australia,AU,South Australia,-34.902917,138.703251,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2024,1,17,Australia,AU,Victoria,-38.130626,145.268791,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Maisie and joey,2024,10,5,Australia,AU,Queensland,-27.52721,153.090688,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Entrance to Woodland Mother and joey,2024,8,18,Australia,AU,Queensland,-27.527434,153.092295,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland rear near seton fence,2023,11,13,Australia,AU,Queensland,-27.528485,153.092796,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Took a lot of photos of different angles for identification by markings.,2021,11,9,Australia,AU,New South Wales,-28.252362,153.375594,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2022,11,9,Australia,AU,Queensland,-27.330695,151.932847,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,9,Australia,AU,South Australia,-34.889762,138.722344,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,10,31,Australia,AU,Queensland,-27.545613,153.073465,EPSG:4326 +HUMAN_OBSERVATION,rosspjchapman,1,,,2023,9,27,Australia,AU,Victoria,-38.05704,141.217616,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,7,21,Australia,AU,South Australia,-34.963271,138.700438,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2023,12,30,Australia,AU,Queensland,-27.525526,153.092388,EPSG:4326 +HUMAN_OBSERVATION,jennii07,1,,Mother and baby,2021,8,19,Australia,AU,South Australia,-35.647725,137.639953,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,5,4,Australia,AU,Victoria,-38.671322,146.163789,EPSG:4326 +HUMAN_OBSERVATION,jarjumsroom,1,,,2020,7,23,Australia,AU,Queensland,-27.509815,153.082433,EPSG:4326 +HUMAN_OBSERVATION,Anna Lanigan,1,,,2023,4,9,Australia,AU,Victoria,-38.699115,146.209974,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,3,28,Australia,AU,Queensland,-27.551379,153.057376,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Brown blob in centre of photo. Camera phone is not good. Definitely a koala 🐨🐨,2021,4,20,Australia,AU,Queensland,-28.09395,153.4568,EPSG:4326 +HUMAN_OBSERVATION,Alan Dahl,1,FEMALE,,2020,3,1,Australia,AU,Victoria,-38.811596,143.53332,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Conjunctivitis. Female. Observed by community and Qld Koala rescue was contacted but the koala had moved on. Submitted by Wendy Taylor via msg.,2023,12,22,Australia,AU,Queensland,-26.781357,151.109974,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,22,Australia,AU,South Australia,-34.892543,138.715601,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Multiple koalas. Male, female and joey. Healthy. Observed by Robyn Zackreson. Submitted via FB (South Burnett Koala Watch)",2023,11,18,Australia,AU,Queensland,-26.307064,151.783934,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.383388,145.297226,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,81 Tristania Way,2024,8,4,Australia,AU,Queensland,-27.522766,153.092835,EPSG:4326 +HUMAN_OBSERVATION,cliffman,1,,"Located in Heathcote National Park, not in suburb of Heathcote",2021,10,21,Australia,AU,New South Wales,-34.084161,151.007948,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,24,Australia,AU,South Australia,-34.890651,138.721948,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,2,6,Australia,AU,South Australia,-35.00394,138.646937,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,9,25,Australia,AU,Queensland,-27.411503,152.004663,EPSG:4326 +HUMAN_OBSERVATION,Kymberley,1,,,2022,9,13,Australia,AU,Queensland,-21.687283,148.688203,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside TAFE nursery grounds,2023,6,17,Australia,AU,Queensland,-27.528026,153.092245,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2023,5,9,Australia,AU,South Australia,-35.036935,138.571498,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,17,Australia,AU,South Australia,-34.892746,138.714449,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2024,3,10,Australia,AU,Victoria,-38.341303,142.631763,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,Koala with baby!!,2024,9,15,Australia,AU,New South Wales,-34.755807,146.569659,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Last sighting of the brown female mother alive, and her joey.",2020,11,25,Australia,AU,New South Wales,-28.253845,153.376828,EPSG:4326 +HUMAN_OBSERVATION,linger,1,,,2021,11,16,Australia,AU,Victoria,-38.823056,143.593333,EPSG:4326 +HUMAN_OBSERVATION,bertbohosouth,1,,,2022,7,25,Australia,AU,Victoria,-38.510504,145.767612,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Campo - red tag A18 RIGHT ear,2023,6,9,Australia,AU,Queensland,-27.527989,153.109778,EPSG:4326 +HUMAN_OBSERVATION,ninjajuju,1,,,2024,3,2,Australia,AU,Queensland,-27.544032,152.857309,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Campo,2023,7,26,Australia,AU,Queensland,-27.529778,153.109259,EPSG:4326 +HUMAN_OBSERVATION,ladymichele,1,,,2021,4,17,Australia,AU,South Australia,-35.009079,138.649363,EPSG:4326 +HUMAN_OBSERVATION,Ethan,1,,,2024,8,5,Australia,AU,Queensland,-28.230267,153.242367,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear - I call him Buster,2024,1,19,Australia,AU,Queensland,-27.530339,153.105314,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park - near assembly point C sign Possibly Cindy Crawford,2023,7,17,Australia,AU,Queensland,-27.525033,153.092343,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,11,4,Australia,AU,South Australia,-34.892086,138.717783,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,1,30,Australia,AU,New South Wales,-33.076314,151.095292,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,8,26,Australia,AU,New South Wales,-28.252545,153.375337,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,2 x Adults. Healthy. Unknown sex. Observed by Jennifer Lockhart. Submitted via FB.,2024,7,14,Australia,AU,Queensland,-26.165406,151.969876,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,4,21,Australia,AU,South Australia,-34.891679,138.718026,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,K block mowing shed,2024,10,12,Australia,AU,Queensland,-27.525855,153.090882,EPSG:4326 +HUMAN_OBSERVATION,oliverfamily,1,,,2023,9,9,Australia,AU,Queensland,-27.416929,151.937867,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Koala (in red circle) climbing tree, photos clipped from video taken on iPhone by one of our neighbours. Sorry for the poor quality but you can see the koala climbing up tree.",2021,10,17,Australia,AU,New South Wales,-28.274568,153.394826,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2020,4,26,Australia,AU,South Australia,-34.931111,138.702817,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,In picnic area near Aldi gates Frank Rooney,2024,3,2,Australia,AU,Queensland,-27.527072,153.092383,EPSG:4326 +HUMAN_OBSERVATION,kenilworthfreerange,1,MALE,,2023,8,5,Australia,AU,Queensland,-26.371981,152.838942,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,Possibly the same animal that has been seen on the property over the last few weeks.,2022,8,28,Australia,AU,Queensland,-27.735147,153.101707,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2020,11,10,Australia,AU,New South Wales,-34.096097,150.82695,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2024,10,20,Australia,AU,South Australia,-34.904352,138.709648,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,24,Australia,AU,Queensland,-27.529156,153.110175,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,3,Australia,AU,South Australia,-34.886288,138.733756,EPSG:4326 +HUMAN_OBSERVATION,kaharris03,1,,,2024,6,3,Australia,AU,New South Wales,-29.004116,153.277645,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,13,Australia,AU,Queensland,-27.526791,153.109135,EPSG:4326 +HUMAN_OBSERVATION,lpamp2,1,,There are a lot of wildlife killed on this road but this is the first koala I have seen in years. In this section paddocks are cleared and only gums on road side.,2024,10,22,Australia,AU,Queensland,-28.318819,152.115672,EPSG:4326 +HUMAN_OBSERVATION,Issy,1,,,2024,6,6,Australia,AU,Victoria,-38.243153,145.256697,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2024,1,31,Australia,AU,Queensland,-27.509545,153.089608,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Healthy young koala, juvenile, resting in tree.",2020,1,4,Australia,AU,New South Wales,-28.255296,153.400824,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,9,16,Australia,AU,Queensland,-27.583787,153.151142,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area - in nursery grounds,2023,7,22,Australia,AU,Queensland,-27.528026,153.092256,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,Small male,2022,5,24,Australia,AU,Queensland,-27.528414,153.103742,EPSG:4326 +HUMAN_OBSERVATION,venus5026,1,,,2023,3,21,Australia,AU,Victoria,-38.668072,143.860589,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,Young Female mid in old manna gum,2022,9,18,Australia,AU,Victoria,-37.83026,144.2095,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2024,11,3,Australia,AU,Queensland,-27.534993,153.090001,EPSG:4326 +HUMAN_OBSERVATION,Michael P,1,,,2024,7,7,Australia,AU,Queensland,-19.145904,146.864598,EPSG:4326 +HUMAN_OBSERVATION,theherbfam,1,,,2024,9,9,Australia,AU,Queensland,-27.122186,152.916687,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,12,22,Australia,AU,Queensland,-27.509128,153.08522,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.775645,143.613539,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Wilemina,2024,1,31,Australia,AU,South Australia,-34.890551,138.732092,EPSG:4326 +HUMAN_OBSERVATION,Lisa Bezuidenhout,1,,,2023,4,1,Australia,AU,Queensland,-27.409013,153.439087,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,6,23,Australia,AU,Queensland,-27.547995,153.058465,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2024,6,1,Australia,AU,Queensland,-27.222728,153.068025,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - white tag LEFT ear - Bandit,2024,10,29,Australia,AU,Queensland,-27.53028,153.116901,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,10,12,Australia,AU,Queensland,-27.527876,153.09233,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2024,6,4,Australia,AU,Queensland,-27.530383,153.103914,EPSG:4326 +HUMAN_OBSERVATION,Tansnaturediary,1,,,2023,3,20,Australia,AU,Victoria,-37.298888,144.18922,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,19,Australia,AU,Queensland,-27.527842,153.110289,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,19,Australia,AU,Queensland,-27.551377,153.059628,EPSG:4326 +HUMAN_OBSERVATION,rodneya63,1,,,2022,1,15,Australia,AU,Queensland,-27.370302,151.612576,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,,2024,9,17,Australia,AU,New South Wales,-34.770685,146.597176,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2021,11,22,Australia,AU,Victoria,-38.372164,145.314904,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,Mum and Bub in this tree,2023,11,25,Australia,AU,Queensland,-27.265967,152.050186,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy looking and alert, I think female due to small size and no obvious scent patch on stomach.",2022,12,5,Australia,AU,Queensland,-27.534655,153.036697,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near cleaners donga and next to stairs Male - scent gland and testicles visible,2023,8,22,Australia,AU,Queensland,-27.526918,153.091923,EPSG:4326 +HUMAN_OBSERVATION,pookies,1,,,2023,8,10,Australia,AU,Victoria,-37.520313,144.583924,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,17,Australia,AU,Queensland,-26.155079,151.749888,EPSG:4326 +HUMAN_OBSERVATION,abrzz,1,,With Joey I believe,2024,5,18,Australia,AU,Queensland,-28.101895,153.444634,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,7,20,Australia,AU,Victoria,-38.671453,146.164139,EPSG:4326 +HUMAN_OBSERVATION,harrison_kilpatrick,1,,,2023,8,23,Australia,AU,Victoria,-38.835372,143.512725,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,9,18,Australia,AU,Queensland,-27.551563,153.058932,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,28,Australia,AU,Queensland,-27.526019,153.090616,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,4,21,Australia,AU,Queensland,-27.527649,153.092569,EPSG:4326 +HUMAN_OBSERVATION,Carissa,1,,"Very high in tree, and a very poor phone camera. Sorry!",2022,5,10,Australia,AU,Queensland,-27.271357,152.976089,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,15,Australia,AU,Queensland,-26.155079,151.749888,EPSG:4326 +HUMAN_OBSERVATION,sdoug7405,1,,,2020,3,4,Australia,AU,Queensland,-27.512157,153.080721,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,"Found crossing highway in narrandera, healthy not injured transient.",2024,10,1,Australia,AU,New South Wales,-34.746608,146.550645,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,7,24,Australia,AU,South Australia,-34.958706,138.697911,EPSG:4326 +HUMAN_OBSERVATION,bradylucas,1,,,2024,4,17,Australia,AU,Victoria,-38.835615,143.514296,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey,2024,4,16,Australia,AU,Queensland,-27.530125,153.103705,EPSG:4326 +HUMAN_OBSERVATION,Jasmin Packer,1,,"In ash tree over water of Brownhill Creek, Brownhill Creek Recreation Park",2024,11,22,Australia,AU,South Australia,-35.016008,138.653769,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2023,10,12,Australia,AU,Queensland,-28.202536,152.856012,EPSG:4326 +HUMAN_OBSERVATION,killercd,1,,,2024,2,2,Australia,AU,Queensland,-27.504744,153.080131,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,5,15,Australia,AU,Queensland,-26.199667,151.772632,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2024,8,17,Australia,AU,Victoria,-38.356991,146.387359,EPSG:4326 +HUMAN_OBSERVATION,lindahumphreys,1,,,2022,11,18,Australia,AU,Queensland,-27.792486,153.057814,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,,,2022,4,7,Australia,AU,Queensland,-27.400985,153.438182,EPSG:4326 +HUMAN_OBSERVATION,serialist,1,,,2022,10,6,Australia,AU,Victoria,-38.670077,143.861147,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Grey Gum,2020,2,3,Australia,AU,Queensland,-27.547904,153.058464,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2023,12,20,Australia,AU,South Australia,-35.245923,138.551567,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Opp side of tennis courts,2023,12,27,Australia,AU,Queensland,-27.525591,153.093353,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,,2024,10,14,Australia,AU,Queensland,-27.529371,153.103702,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2020,3,17,Australia,AU,Queensland,-27.533975,153.123628,EPSG:4326 +HUMAN_OBSERVATION,fraserj09,1,,,2023,4,7,Australia,AU,South Australia,-37.840852,140.963809,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,11,8,Australia,AU,Queensland,-26.192108,151.789226,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,6,18,Australia,AU,New South Wales,-28.258093,153.400849,EPSG:4326 +HUMAN_OBSERVATION,martine_lappan,1,,,2023,12,28,Australia,AU,Victoria,-37.209603,148.269592,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Female koala trying to get away from male in same E.teriticornis. Possibly same pair as Tuesday,2022,3,16,Australia,AU,Queensland,-27.534492,153.061445,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,,Female koala high in manna gum,2023,12,7,Australia,AU,Victoria,-37.821697,144.174803,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,Lots of noisy calling over a few hours,2022,10,11,Australia,AU,Queensland,-27.510502,153.069808,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,23,Australia,AU,Queensland,-27.41068,152.001922,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Dispersing joey, known as Charlie",2024,4,25,Australia,AU,Queensland,-27.528299,153.103904,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2022,12,24,Australia,AU,Queensland,-27.599535,151.893433,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,2,12,Australia,AU,Queensland,-27.530296,153.103299,EPSG:4326 +HUMAN_OBSERVATION,kingstontamphotography,1,,,2023,3,5,Australia,AU,Queensland,-27.393455,152.499712,EPSG:4326 +HUMAN_OBSERVATION,lynsh,1,,,2024,7,27,Australia,AU,Queensland,-28.119131,153.449731,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,7,13,Australia,AU,Queensland,-27.511905,153.084037,EPSG:4326 +HUMAN_OBSERVATION,ecologynewb,1,,,2023,9,6,Australia,AU,Victoria,-38.835801,143.514622,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,17,Australia,AU,Queensland,-27.637047,153.09,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank muma,2022,10,4,Australia,AU,Queensland,-27.545742,153.073595,EPSG:4326 +HUMAN_OBSERVATION,Danny Stuart,1,,,2024,9,23,Australia,AU,Victoria,-38.246195,145.213242,EPSG:4326 +HUMAN_OBSERVATION,Luis Mata EntSocVic,1,,,2024,7,7,Australia,AU,Victoria,-36.340323,145.368218,EPSG:4326 +HUMAN_OBSERVATION,RachC,1,,"Young or perhaps female - relatively small. Active/alert and watched us the whole time, turning head to follow us around and keep our gaze. VERY cute.",2021,11,13,Australia,AU,Victoria,-38.430488,144.945008,EPSG:4326 +HUMAN_OBSERVATION,whittie,1,,,2024,10,3,Australia,AU,South Australia,-34.905745,138.617918,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,,2022,10,27,Australia,AU,Queensland,-27.551389,153.0575,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,11,Australia,AU,Queensland,-27.545693,153.073828,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,Moved from Macadamia tree to feed on Tallowood between house and creek,2023,2,15,Australia,AU,Queensland,-27.169922,152.988862,EPSG:4326 +HUMAN_OBSERVATION,Cemone Hedges,1,,,2022,12,3,Australia,AU,Queensland,-27.4043,153.437761,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery above circle seating area Female with joey in pouch?,2023,7,16,Australia,AU,Queensland,-27.527433,153.091353,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,19,Australia,AU,Queensland,-27.546826,153.058106,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"heard it, so probably a male",2020,11,4,Australia,AU,New South Wales,-28.253934,153.377402,EPSG:4326 +HUMAN_OBSERVATION,Wyn Russell,1,,3 in same tree.,2024,10,2,Australia,AU,Victoria,-38.100748,141.49031,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,,2022,6,8,Australia,AU,Queensland,-27.545608,153.073883,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,1,4,Australia,AU,Queensland,-27.568117,151.716034,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,11,Australia,AU,Queensland,-27.545938,153.072849,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,14,Australia,AU,Queensland,-27.330362,151.869537,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,K block mowing shed,2024,7,14,Australia,AU,Queensland,-27.525868,153.090943,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Male koala chasing female in E.teriticornis,2022,3,16,Australia,AU,Queensland,-27.53439,153.061417,EPSG:4326 +HUMAN_OBSERVATION,ozlee65,1,,,2023,12,21,Australia,AU,Queensland,-27.913623,153.325026,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Koala Sighted one 2021 - https://www.facebook.com/143946972287942/photos/a.394547570561213/4370543482961582/?type=3,2021,2,2,Australia,AU,New South Wales,-33.58608,151.175764,EPSG:4326 +HUMAN_OBSERVATION,Ryan Leys,1,,,2023,10,31,Australia,AU,South Australia,-34.905272,138.707062,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,5,6,Australia,AU,Queensland,-27.525607,153.09235,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,Boonah Rail Trail. In Eucalyptus tereticornis.,2024,6,24,Australia,AU,Queensland,-27.986511,152.677429,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male koala seen this morning having a stroll heading East along side of road and climbing a yellow gum by David A No sign of him at 12 pm,2024,3,27,Australia,AU,Victoria,-37.827689,144.299685,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear,2023,4,8,Australia,AU,Queensland,-27.530808,153.104013,EPSG:4326 +HUMAN_OBSERVATION,GuyCastley,1,,,2024,4,8,Australia,AU,Queensland,-27.96354,153.381276,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road,2024,2,25,Australia,AU,Queensland,-27.526884,153.091001,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,1,6,Australia,AU,Queensland,-27.527693,153.090822,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Adult. Unknown sex. Healthy. Wondai Rail Trail, in a tree just after Simpson's Road crosses the rail trail heading out of Wondai, just after the butter factory. Observed by Jaime Whitwell. Submitted via email.",2023,8,20,Australia,AU,Queensland,-26.313407,151.880451,EPSG:4326 +HUMAN_OBSERVATION,Gen C,1,,,2024,8,4,Australia,AU,South Australia,-35.004237,138.644612,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,12,Australia,AU,Queensland,-26.371076,151.769552,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,3,27,Australia,AU,Victoria,-37.63247,143.878536,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2024,1,11,Australia,AU,Victoria,-38.130713,145.268687,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,12,17,Australia,AU,Victoria,-38.670995,146.163673,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,20,Australia,AU,Queensland,-26.15627,151.745912,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,Mum and baby,2024,10,4,Australia,AU,Queensland,-27.555128,153.059034,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2023,9,10,Australia,AU,Queensland,-27.284152,153.00068,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear - known as Bozo,2023,4,14,Australia,AU,Queensland,-27.527177,153.107382,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,10,28,Australia,AU,Victoria,-37.616697,143.899047,EPSG:4326 +HUMAN_OBSERVATION,Macro.Enthusiast,1,,,2024,8,10,Australia,AU,South Australia,-34.903824,138.707409,EPSG:4326 +HUMAN_OBSERVATION,J. Addesi,1,,,2023,11,6,Australia,AU,Victoria,-38.783901,143.535707,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Propping amongst mistletoe in a blue gum,2021,2,2,Australia,AU,Victoria,-38.671179,146.163868,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,7,17,Australia,AU,Queensland,-27.549455,153.049812,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2023,11,19,Australia,AU,Queensland,-27.528012,153.09229,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Checked on this koala - reported by MOP that birds were attacking it. Seems to have a superficial wound to nose,2024,10,18,Australia,AU,Queensland,-27.537148,153.090027,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,23,Australia,AU,South Australia,-34.8887,138.735019,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,1,Australia,AU,Queensland,-27.527345,153.110432,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,10,26,Australia,AU,New South Wales,-28.258194,153.400742,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,19,Australia,AU,Queensland,-27.526941,153.090911,EPSG:4326 +HUMAN_OBSERVATION,Sam,1,,,2024,7,27,Australia,AU,Queensland,-19.127443,146.869378,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Fiona Jaensch. Submitted by Amanda Francis via email.,2023,9,1,Australia,AU,Queensland,-26.109577,151.82736,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,3,Australia,AU,South Australia,-34.892559,138.713421,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,2nd photo shows this koala in close proximity to neighbouring koala in near by tree.,2023,3,19,Australia,AU,Queensland,-27.28448,153.000846,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,BCC project work.,2021,2,16,Australia,AU,Queensland,-27.528995,153.104095,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Observed in a Yellow Box, E. melliodora Photo Diane Guthrie",2021,10,16,Australia,AU,Queensland,-27.653402,152.026184,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2022,9,20,Australia,AU,Queensland,-28.103128,151.258928,EPSG:4326 +HUMAN_OBSERVATION,Stu Easton,1,,,2022,2,22,Australia,AU,Queensland,-27.251669,153.029175,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Juvenile. Unknown sex. Healthy. Observed near another juvenile in a different tree close to the bbq area. Observed by Tara Irvine. Submitted by email.,2023,5,21,Australia,AU,Queensland,-26.131857,151.422352,EPSG:4326 +HUMAN_OBSERVATION,duke_n,1,,,2020,6,28,Australia,AU,Victoria,-37.54541,144.722621,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lower wisteria car park top end,2024,9,15,Australia,AU,Queensland,-27.524892,153.092526,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area near seton and nursery fence,2023,8,12,Australia,AU,Queensland,-27.528372,153.092408,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree next to tennis courts Joey on its own?,2023,10,30,Australia,AU,Queensland,-27.525272,153.092749,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,6,23,Australia,AU,Queensland,-27.52726,153.091494,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,6,Australia,AU,Queensland,-27.505963,153.086445,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Spotted by Darryl,2024,4,10,Australia,AU,Queensland,-27.621833,152.901787,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2024,4,3,Australia,AU,Victoria,-38.341075,142.629765,EPSG:4326 +HUMAN_OBSERVATION,cv173,1,,,2024,4,24,Australia,AU,Queensland,-27.879846,152.72727,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Charlie's mum Niki returned today to a nearby tree,2024,4,12,Australia,AU,Queensland,-27.528258,153.10345,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,Good sized Joey in pouch,2020,8,14,Australia,AU,Queensland,-27.55305,153.073765,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Paperbark,2020,2,20,Australia,AU,Queensland,-27.551381,153.058516,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,MALE,male growling - have video,2024,9,3,Australia,AU,New South Wales,-33.119112,151.233883,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to tennis courts,2023,11,13,Australia,AU,Queensland,-27.525348,153.092757,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,3,Australia,AU,Queensland,-27.529263,153.11227,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,High up tereticornis.,2021,2,23,Australia,AU,Queensland,-27.52925,153.112136,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear - known as Buster,2024,4,13,Australia,AU,Queensland,-27.52992,153.105369,EPSG:4326 +HUMAN_OBSERVATION,Reiner Richter,1,,,2020,11,23,Australia,AU,Victoria,-38.367553,146.38513,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2021,2,13,Australia,AU,South Australia,-35.004861,138.656653,EPSG:4326 +HUMAN_OBSERVATION,sueruffles,1,,,2024,9,24,Australia,AU,New South Wales,-34.753189,146.541002,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,11,Australia,AU,Queensland,-27.528253,153.093437,EPSG:4326 +HUMAN_OBSERVATION,Shirley McLaran,1,,In paperbark tree,2024,1,26,Australia,AU,Queensland,-27.027292,153.092178,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Mum with baby observed.,2020,11,30,Australia,AU,New South Wales,-28.271479,153.394509,EPSG:4326 +HUMAN_OBSERVATION,Peter Crowcroft,1,,Part of the friends of eastern otways annual koala survey.,2023,6,17,Australia,AU,Victoria,-38.671905,143.852012,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,MALE,Male Koala sick and displaced. Rescued by M Butlin for TKWR. Taken to RSPCA Wildlife Hospital for assessment.,2023,10,22,Australia,AU,Queensland,-27.40545,151.995885,EPSG:4326 +HUMAN_OBSERVATION,Anne-Marie Griffin,1,,,2024,3,2,Australia,AU,New South Wales,-33.758096,149.472779,EPSG:4326 +HUMAN_OBSERVATION,wingspanner,1,,,2023,8,30,Australia,AU,Victoria,-38.668067,143.86085,EPSG:4326 +HUMAN_OBSERVATION,Reiner Richter,1,,,2020,1,10,Australia,AU,Victoria,-36.193298,145.257049,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,,2023,4,23,Australia,AU,Queensland,-28.211399,152.866218,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2023,5,19,Australia,AU,New South Wales,-34.745175,146.530092,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2024,9,24,Australia,AU,Victoria,-38.354832,146.387768,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Aldi gates entrance,2024,10,20,Australia,AU,Queensland,-27.526766,153.093282,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,22,Australia,AU,South Australia,-34.864681,138.727407,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,6,20,Australia,AU,South Australia,-34.865333,138.656737,EPSG:4326 +HUMAN_OBSERVATION,Jack Beau Devlin,1,,"No signs of illness that I could see (dry bum, could not see eyes). Very cute.",2024,1,17,Australia,AU,Queensland,-27.555479,153.078591,EPSG:4326 +HUMAN_OBSERVATION,tanyadodgen,1,,,2024,6,30,Australia,AU,Queensland,-19.126164,146.868438,EPSG:4326 +HUMAN_OBSERVATION,Pete Petinatos,1,,,2022,12,5,Australia,AU,Victoria,-38.315837,142.367085,EPSG:4326 +HUMAN_OBSERVATION,Ian D B Moodie,1,,,2021,1,17,Australia,AU,Victoria,-37.860846,144.271204,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,1,Australia,AU,South Australia,-34.891777,138.720029,EPSG:4326 +HUMAN_OBSERVATION,Dubravka Skalamera,1,,,2023,5,3,Australia,AU,Queensland,-27.494399,153.40454,EPSG:4326 +HUMAN_OBSERVATION,Luke Cooper,1,,,2024,8,17,Australia,AU,New South Wales,-28.80432,153.378355,EPSG:4326 +HUMAN_OBSERVATION,noddyblue,1,,,2023,1,18,Australia,AU,Victoria,-36.876408,145.411575,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Stringybark,2020,4,3,Australia,AU,Queensland,-27.539504,153.05315,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,,2024,8,12,Australia,AU,Victoria,-38.081626,141.726796,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,4,5,Australia,AU,Victoria,-37.620134,143.88594,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Photo from Kaylene,2020,12,17,Australia,AU,New South Wales,-28.253245,153.376635,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block in mum trees Mother and joey,2024,11,17,Australia,AU,Queensland,-27.526448,153.090975,EPSG:4326 +HUMAN_OBSERVATION,David Akers,1,,,2022,11,7,Australia,AU,Victoria,-38.481069,146.773192,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear Male"" in stringy bark. First time seen on 45 Baker although just over fence from 47 Baker where he is usually seen. By dusk, he had moved back over the fence to the west side of 47 Baker.",2020,4,5,Australia,AU,New South Wales,-30.52002,151.518969,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,Male and female koala outside tonight.,2024,11,11,Australia,AU,Queensland,-27.358524,152.074579,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"In Euc. tereticornis, Boonah Rail Trail.",2023,12,14,Australia,AU,Queensland,-27.98732,152.677987,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,4,21,Australia,AU,Queensland,-27.528481,153.09276,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland entrance,2023,12,31,Australia,AU,Queensland,-27.527253,153.092391,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - not tagged - known as Millie,2023,7,14,Australia,AU,Queensland,-27.527188,153.111169,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,,2021,5,21,Australia,AU,New South Wales,-28.260781,153.404606,EPSG:4326 +HUMAN_OBSERVATION,jgcroydon,1,,,2022,12,11,Australia,AU,Victoria,-38.3106,145.293258,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,The baby koala!,2020,9,24,Australia,AU,New South Wales,-28.25768,153.40054,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown,2021,6,1,Australia,AU,Queensland,-27.550708,153.055996,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2023,12,18,Australia,AU,Queensland,-26.155079,151.749888,EPSG:4326 +HUMAN_OBSERVATION,Hanneke Nooren,1,,LCA3107 Confirmed as koala scat by OWAD Environment,2022,10,1,Australia,AU,Queensland,-27.509969,152.147261,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,10,16,Australia,AU,South Australia,-34.89342,138.624401,EPSG:4326 +HUMAN_OBSERVATION,kazhutcho,1,,Female koala eating Scribbly gum. Appeared in good condition.,2023,12,15,Australia,AU,New South Wales,-30.294158,153.124267,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park,2024,3,16,Australia,AU,Queensland,-27.52507,153.092414,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,22,Australia,AU,Queensland,-27.530402,153.103242,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,27,Australia,AU,Queensland,-27.526888,153.093129,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,FEMALE,And baby,2024,1,11,Australia,AU,Victoria,-38.130675,145.268483,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Reconyx HF2,2023,2,4,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Adult, Healthy, Young male. Observed by Kellie Millington. Submitted via msgr. Koalas have not been seen at the property before but are known to be found along the river. The creek on this property backs onto the river. The rescue org stated they believed he was looking for a mate. He was moved to eucalyptus trees nearby as he was found clinging to a star picket on the dog pen run.",2022,11,17,Australia,AU,Queensland,-25.646175,151.63641,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,11,6,Australia,AU,Queensland,-27.548558,153.051861,EPSG:4326 +HUMAN_OBSERVATION,dgreenwood53,1,,,2023,10,28,Australia,AU,Queensland,-27.544951,153.072281,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey in Tallowwood,2020,10,29,Australia,AU,Queensland,-27.550964,153.05807,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Christabelle - yellow tag RIGHT ear,2023,1,21,Australia,AU,Queensland,-27.53016,153.103752,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,29,Australia,AU,Queensland,-27.535054,153.089673,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,10,28,Australia,AU,Queensland,-26.155079,151.749845,EPSG:4326 +HUMAN_OBSERVATION,woodland4520,1,,,2023,6,9,Australia,AU,Queensland,-27.395745,152.905587,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2023,10,28,Australia,AU,Queensland,-27.528796,153.115005,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,20,Australia,AU,Queensland,-27.527294,153.109999,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,13,Australia,AU,Queensland,-27.528542,153.093025,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Mum and bub. Hard to get a good pic.,2024,10,3,Australia,AU,Queensland,-27.255994,152.046137,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,1,Australia,AU,Queensland,-27.526928,153.090779,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2022,10,4,Australia,AU,New South Wales,-31.44215,152.902283,EPSG:4326 +HUMAN_OBSERVATION,kestrel17,1,,,2024,10,9,Australia,AU,South Australia,-35.188177,138.4928,EPSG:4326 +HUMAN_OBSERVATION,Alasdair McAlpine,1,,,2024,4,25,Australia,AU,Queensland,-27.544536,153.072115,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,,Female koala with Joey.,2023,1,21,Australia,AU,South Australia,-35.069567,138.639336,EPSG:4326 +HUMAN_OBSERVATION,timcurran,1,,koala in a red gum (perhaps planted?) next to a farm dam on Nea Siding Road,2023,4,12,Australia,AU,New South Wales,-31.186705,150.305535,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2021,4,8,Australia,AU,Victoria,-38.129222,145.27426,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,21,Australia,AU,South Australia,-34.89127,138.712966,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,16,Australia,AU,Queensland,-27.546027,153.072825,EPSG:4326 +HUMAN_OBSERVATION,Deborah Metters,1,,,2021,10,31,Australia,AU,Queensland,-28.132469,152.617308,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,10,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,5,30,Australia,AU,Queensland,-27.328775,152.61325,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,28,Australia,AU,Queensland,-27.529093,153.104073,EPSG:4326 +HUMAN_OBSERVATION,Karen Roberts,1,,Feeding on Corymbia tesselaris adjacent to Mt Crosby rd & Brisbane river,2023,10,11,Australia,AU,Queensland,-27.529735,152.837168,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,6,Australia,AU,Queensland,-27.527407,153.108607,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2024,10,7,Australia,AU,Queensland,-27.527022,153.091534,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to Woodland,2024,1,2,Australia,AU,Queensland,-27.527208,153.092568,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,MALE,"Big boy actively eating leaves. Legs stretched right out, 37 deg day. In large rivergum",2024,1,21,Australia,AU,New South Wales,-34.082316,150.853401,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,Chilling in tree. Moved quickly up tree when we moved.,2024,1,2,Australia,AU,New South Wales,-34.044691,150.865602,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,With back showing only,2021,1,7,Australia,AU,Victoria,-38.13226,145.269748,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,MALE,"Recorded on Audiomoth recorder, set up at Koala Clancy Foundation revegetation site with permission from owners, using equipment funded by IFAW. Site is River Red Gum Eucalyptus camaldulensis riparian zone, with cleared farmland adjacent. Recording amplified and trimmed in Audacity.",2023,11,20,Australia,AU,Victoria,-37.906457,144.125674,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,4,19,Australia,AU,South Australia,-35.007458,138.645044,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to cleaners donga Possibly male? Testicles visible?,2024,8,17,Australia,AU,Queensland,-27.526809,153.091751,EPSG:4326 +HUMAN_OBSERVATION,abcdefgewing,1,,,2022,10,2,Australia,AU,New South Wales,-34.048627,151.00418,EPSG:4326 +HUMAN_OBSERVATION,davecleeland,1,,,2022,11,8,Australia,AU,Victoria,-36.999584,145.331765,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,2,9,Australia,AU,South Australia,-34.893177,138.7155,EPSG:4326 +HUMAN_OBSERVATION,eamonccorbett,1,,,2023,1,12,Australia,AU,South Australia,-35.004903,138.644319,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2024,1,3,Australia,AU,Queensland,-27.56893,152.102403,EPSG:4326 +HUMAN_OBSERVATION,Martin Whiting,1,,,2024,1,1,Australia,AU,South Australia,-35.85857,137.249772,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Photos taken by R & M Woodward. This Koala hung around here for 3 days.,2020,12,16,Australia,AU,New South Wales,-28.283114,153.391221,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,26,Australia,AU,Queensland,-27.531521,153.105158,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,4,6,Australia,AU,South Australia,-34.958244,138.686729,EPSG:4326 +HUMAN_OBSERVATION,Alan Dahl,1,MALE,,2020,3,2,Australia,AU,Victoria,-38.521429,143.986414,EPSG:4326 +HUMAN_OBSERVATION,funbudgiefriend,1,,,2023,10,22,Australia,AU,Queensland,-27.542484,153.072991,EPSG:4326 +HUMAN_OBSERVATION,nwsearle,1,,,2020,4,12,Australia,AU,Victoria,-38.54982,143.744415,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2023,7,25,Australia,AU,Queensland,-27.940455,151.724503,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male koala mid in redgum. Was seen in a Yellow gum directly opposite side of track yesterday NOTE gps is wrong. Koala was on Anakie Gorge Rd,2023,11,18,Australia,AU,Victoria,-37.868535,144.250952,EPSG:4326 +HUMAN_OBSERVATION,jobrierley,1,,Tagged male,2024,8,24,Australia,AU,Queensland,-28.095164,153.449005,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,10,16,Australia,AU,Queensland,-27.555475,151.510697,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery entrance Mother and joey,2023,10,11,Australia,AU,Queensland,-27.527106,153.091478,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,3,2,Australia,AU,New South Wales,-29.87042,150.60153,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,4,19,Australia,AU,South Australia,-35.009445,138.654017,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,MALE,"""Old one-eye"". Seen here many times before. Missing right eye. Left eye potentially has conjunctivitis (have notified appropriate people). Rump clean and dry.",2021,9,6,Australia,AU,Queensland,-27.457904,152.401594,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,Large. In narrow leaf ironbark.,2024,8,17,Australia,AU,Queensland,-27.33328,151.93138,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,2,2,Australia,AU,Victoria,-38.671202,146.163874,EPSG:4326 +HUMAN_OBSERVATION,Sam S,1,,He has been in and near this Eucalyptus camphora for at least 6 weeks. Added a better photo,2023,7,30,Australia,AU,Victoria,-37.018232,145.452438,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,25,Australia,AU,South Australia,-34.902697,138.70374,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2020,6,6,Australia,AU,Victoria,-37.925538,147.729452,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Aldi gates,2024,10,2,Australia,AU,Queensland,-27.527005,153.093043,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,3,4,Australia,AU,Victoria,-37.652778,143.925556,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2023,8,14,Australia,AU,Queensland,-27.530647,153.103349,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,2,16,Australia,AU,Queensland,-27.545795,153.068443,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,8,12,Australia,AU,Queensland,-27.823397,152.992605,EPSG:4326 +HUMAN_OBSERVATION,Isaac Clarey,1,,,2020,9,19,Australia,AU,Victoria,-38.553754,143.614358,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Female,2021,10,20,Australia,AU,Victoria,-38.671162,146.16382,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,2,11,Australia,AU,Queensland,-27.527279,153.091048,EPSG:4326 +HUMAN_OBSERVATION,zitafewster,1,,,2020,10,5,Australia,AU,South Australia,-35.029349,138.74344,EPSG:4326 +HUMAN_OBSERVATION,J. Addesi,1,,,2024,3,24,Australia,AU,South Australia,-34.902241,138.70162,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2024,5,22,Australia,AU,Queensland,-27.530382,153.103716,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In unknown tree,2020,1,24,Australia,AU,Queensland,-27.548749,153.058907,EPSG:4326 +HUMAN_OBSERVATION,trixie_kemp,1,,,2022,11,27,Australia,AU,Queensland,-27.40097,153.438169,EPSG:4326 +HUMAN_OBSERVATION,ormiston,1,,,2021,3,13,Australia,AU,Queensland,-27.523087,153.260972,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2023,12,23,Australia,AU,Queensland,-27.52705,153.091617,EPSG:4326 +HUMAN_OBSERVATION,eadb,1,,,2021,11,12,Australia,AU,Victoria,-37.037407,145.146029,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,TAFE Concourse,2023,5,19,Australia,AU,Queensland,-27.526934,153.091562,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland- near Tristania cul de sac Yellow tag left ear - number not visible,2023,12,29,Australia,AU,Queensland,-27.524876,153.094001,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2024,3,31,Australia,AU,Queensland,-27.527752,153.093072,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Male in Stringybark chasing female and Joey. Most likely same as last week. Female and Joey above in the same tree,2020,10,21,Australia,AU,Queensland,-27.549618,153.05895,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,11,20,Australia,AU,Victoria,-38.670992,146.165193,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Low on a Corymbia intermedia. A second Koala was in the same tree much higher. The right eye on this specimen doesn't look good.,2021,6,9,Australia,AU,Queensland,-27.549238,153.167925,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,9,Australia,AU,Queensland,-27.526842,153.090919,EPSG:4326 +HUMAN_OBSERVATION,ritaalmeida,1,,,2024,8,11,Australia,AU,South Australia,-34.90235,138.683544,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Very small koala,2023,1,31,Australia,AU,Queensland,-27.526566,153.093048,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2021,12,29,Australia,AU,Queensland,-27.516727,153.085282,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Tristania & Wisteria Woodland,2024,10,12,Australia,AU,Queensland,-27.52404,153.093237,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2023,5,11,Australia,AU,Victoria,-38.372906,145.314801,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2021,4,21,Australia,AU,South Australia,-34.991128,138.629894,EPSG:4326 +HUMAN_OBSERVATION,tuleandcasilovenature,1,,,2022,11,13,Australia,AU,Queensland,-27.498302,153.400114,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2022,8,27,Australia,AU,Queensland,-27.546888,153.055552,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,9,14,Australia,AU,Queensland,-27.414645,152.004289,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2022,11,30,Australia,AU,Queensland,-27.327197,151.931625,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey Ironbark,2021,12,3,Australia,AU,Queensland,-27.549638,153.053227,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,1,Australia,AU,Queensland,-27.526032,153.090459,EPSG:4326 +HUMAN_OBSERVATION,Chris Seager,1,MALE,,2022,7,9,Australia,AU,South Australia,-35.129813,138.68268,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,1,Australia,AU,Queensland,-27.527891,153.091204,EPSG:4326 +HUMAN_OBSERVATION,Scott Rolph,1,MALE,,2023,1,7,Australia,AU,Victoria,-38.054694,144.143809,EPSG:4326 +HUMAN_OBSERVATION,dragee,1,,,2023,9,2,Australia,AU,Victoria,-38.318365,142.36265,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2021,2,15,Australia,AU,Queensland,-27.516547,153.085495,EPSG:4326 +HUMAN_OBSERVATION,leithallb,1,,1685,2022,11,23,Australia,AU,South Australia,-35.952144,136.737237,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,Little RJ resting in a white stringybark at the back of the gully forest.,2023,11,8,Australia,AU,Queensland,-27.414533,152.003022,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,20,Australia,AU,Queensland,-27.52677,153.091403,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - green tag LEFT ear - Joe, known as Bozo",2024,2,14,Australia,AU,Queensland,-27.527664,153.107084,EPSG:4326 +HUMAN_OBSERVATION,Susan Walter,1,,"Picked up by animal rescue service in October 2019, very underweight male suffering chlamydia and conjunctavitis. Released back into his territory in December 2019. Known as Jethro. Photographed in a garden.",2020,4,17,Australia,AU,Queensland,-27.723968,151.634059,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed regularly over a number of years by Desley Tratt. Submitted via FB.,2024,3,28,Australia,AU,Queensland,-26.52166,151.868462,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,5,11,Australia,AU,Queensland,-28.192672,153.185852,EPSG:4326 +HUMAN_OBSERVATION,michikomarty,1,,Thanks Summers family,2021,11,28,Australia,AU,Queensland,-27.723622,151.554232,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Along Mount Stanley Rd Nanango. Observed by Lee-anne Kburd. Submitted via FB (Post comment on THE KINGAROY/NANANGO OUTCAST BUY SELL & SWAP GROUP) + msg,2023,10,31,Australia,AU,Queensland,-26.661952,152.019619,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,"Male, in same tree as female (next sighting)",2021,11,20,Australia,AU,Victoria,-38.671642,146.164047,EPSG:4326 +HUMAN_OBSERVATION,Adam Smith,1,FEMALE,,2021,10,23,Australia,AU,Queensland,-19.126181,146.868737,EPSG:4326 +HUMAN_OBSERVATION,rufusgrandis,1,,,2023,10,1,Australia,AU,New South Wales,-28.567739,151.963632,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Found near dam (photo Diane Guthrie Lockyer Upland Catchments Inc),2023,10,17,Australia,AU,Queensland,-27.659354,152.107016,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2020,3,19,Australia,AU,South Australia,-34.989839,138.628514,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2022,1,4,Australia,AU,Victoria,-38.354369,146.388445,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,,2021,12,11,Australia,AU,South Australia,-34.723414,138.913536,EPSG:4326 +HUMAN_OBSERVATION,margadelie,1,,,2022,1,2,Australia,AU,South Australia,-34.959479,138.69234,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,,Male koala in River Red Gum Eucalyptus camaldulensis,2024,6,4,Australia,AU,Victoria,-37.868619,144.277113,EPSG:4326 +HUMAN_OBSERVATION,Dan Pagotto,1,,,2021,10,9,Australia,AU,Queensland,-28.193193,153.186252,EPSG:4326 +HUMAN_OBSERVATION,Jo Burrows,1,,,2023,7,28,Australia,AU,Queensland,-27.494324,153.404099,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,FEMALE,Mum caught in initial capture at 18:57 and then mum and joey in second capture at 19:03. I believe that the joey caught up during the 6-minute delay in recording. Or maybe the joey can teleport...,2023,11,17,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2024,4,24,Australia,AU,South Australia,-34.864353,138.6593,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,21,Australia,AU,South Australia,-34.888249,138.72678,EPSG:4326 +HUMAN_OBSERVATION,Thor-Rune Hansen,1,,,2022,11,25,Australia,AU,Victoria,-38.833992,143.522736,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,,2021,10,17,Australia,AU,Queensland,-27.565113,153.134095,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.015218,138.660821,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - yellow tag RIGHT ear unable to ID,2023,6,23,Australia,AU,Queensland,-27.529319,153.109051,EPSG:4326 +HUMAN_OBSERVATION,Dee Nolan,1,,,2024,6,8,Australia,AU,South Australia,-35.016926,138.658131,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,17,Australia,AU,South Australia,-34.892335,138.722513,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,A bit distant,2020,12,29,Australia,AU,Victoria,-38.129457,145.277664,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Female. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,27,Australia,AU,Queensland,-26.348586,151.801159,EPSG:4326 +HUMAN_OBSERVATION,Bruce McLennan,1,,,2021,3,3,Australia,AU,Queensland,-27.242537,152.17899,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE cavendish road near two bus stops,2023,7,1,Australia,AU,Queensland,-27.527239,153.09059,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,FEMALE,,2024,3,3,Australia,AU,New South Wales,-29.786119,150.477282,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,believe this is the brown female and joey in the lemon scented gum,2020,10,3,Australia,AU,New South Wales,-28.253857,153.376774,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2023,6,26,Australia,AU,Queensland,-27.332875,151.928467,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,2,13,Australia,AU,Queensland,-27.528177,153.103436,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,In picnic area near Aldi gates but above gully,2024,7,7,Australia,AU,Queensland,-27.526577,153.093076,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,,2022,5,12,Australia,AU,Queensland,-28.211449,152.865924,EPSG:4326 +HUMAN_OBSERVATION,kazhutcho,1,,,2023,11,24,Australia,AU,New South Wales,-30.294088,153.123961,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,4,4,Australia,AU,South Australia,-34.891817,138.718627,EPSG:4326 +HUMAN_OBSERVATION,Lava,1,,"Seymour Bushland Park, Long Loop track. Photo taken from about 40m away with my iPhone & cropped.",2024,7,4,Australia,AU,Victoria,-37.048094,145.180083,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2024,4,13,Australia,AU,Queensland,-27.528265,153.093001,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Wet bottom. Carers notified. But moved on before they arrived. Observed by Wendy Taylor. Submitted by Denise Shaw via email,2023,8,2,Australia,AU,Queensland,-26.103233,151.710481,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,9,28,Australia,AU,Queensland,-27.389375,151.772249,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,13,Australia,AU,South Australia,-34.888694,138.728084,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2023,9,9,Australia,AU,Queensland,-27.538663,153.053983,EPSG:4326 +HUMAN_OBSERVATION,alice_in_wonderland,1,,,2021,12,2,Australia,AU,Queensland,-27.539081,153.074965,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2023,5,11,Australia,AU,Victoria,-38.363651,145.316495,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Female with large Joey. Observed by Wendy Taylor. Submitted via email.,2021,2,22,Australia,AU,Queensland,-26.107566,151.845089,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,10,23,Australia,AU,Queensland,-26.363564,151.809023,EPSG:4326 +HUMAN_OBSERVATION,quollsskinks,1,,Near the summit of Budj Bim.,2021,12,5,Australia,AU,Victoria,-38.05955,141.923111,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,in cluster of trees behind grey gum - smaller one as further left to usual territory?,2020,4,7,Australia,AU,New South Wales,-28.25745,153.374145,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2021,4,7,Australia,AU,Victoria,-38.130113,145.273155,EPSG:4326 +HUMAN_OBSERVATION,cbarrie,1,,,2023,12,10,Australia,AU,Victoria,-37.724673,144.047641,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,MALE,,2024,10,21,Australia,AU,Queensland,-27.822692,152.992493,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In picnic area near E block Male? Shape of nose,2024,4,2,Australia,AU,Queensland,-27.526138,153.090393,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,,2024,10,29,Australia,AU,Queensland,-27.526948,153.110024,EPSG:4326 +HUMAN_OBSERVATION,lehockamarcela,1,,,2023,11,28,Australia,AU,Victoria,-38.758617,143.668669,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2023,12,10,Australia,AU,Queensland,-27.524516,153.092977,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,1,28,Australia,AU,South Australia,-34.890247,138.733473,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,11,9,Australia,AU,Queensland,-27.527992,153.09223,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - grey/blue tag RIGHT ear R... - I believe this is Rowie,2023,9,18,Australia,AU,Queensland,-27.527632,153.103056,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,16,Australia,AU,South Australia,-34.887221,138.720645,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,15,Australia,AU,Queensland,-27.526665,153.090857,EPSG:4326 +HUMAN_OBSERVATION,mum_mcmumface,1,,,2023,5,8,Australia,AU,South Australia,-34.867824,138.688873,EPSG:4326 +HUMAN_OBSERVATION,ainsliem,1,,Sorry for the bad quality. It was late in the day,2021,3,18,Australia,AU,Queensland,-27.552313,153.056014,EPSG:4326 +HUMAN_OBSERVATION,laurenrappa,1,,,2023,9,7,Australia,AU,Queensland,-28.195128,153.1875,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,,2023,9,12,Australia,AU,Queensland,-27.620501,152.902363,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near e block,2024,7,20,Australia,AU,Queensland,-27.525886,153.090423,EPSG:4326 +HUMAN_OBSERVATION,elizabeth_21,1,,,2024,9,9,Australia,AU,Queensland,-27.358825,152.072736,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Circled in purple. Dirty bum - arranging rescue,2024,1,3,Australia,AU,Queensland,-27.527236,153.108191,EPSG:4326 +HUMAN_OBSERVATION,spotkoala,1,,Koala sitting in tree next to electrical box,2023,9,22,Australia,AU,Queensland,-27.508772,153.101197,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Hit by vehicle. Dead. Observed by Wendy Taylor. Submitted via msg.,2023,8,22,Australia,AU,Queensland,-26.414921,151.818986,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,On lemon scented gum,2020,3,8,Australia,AU,New South Wales,-28.25745,153.374145,EPSG:4326 +HUMAN_OBSERVATION,Richard Fuller,1,,,2020,2,16,Australia,AU,Queensland,-27.548365,153.176252,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,28,Australia,AU,Queensland,-27.527163,153.092117,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey Gum,2020,7,17,Australia,AU,Queensland,-27.545458,153.05806,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,Only had phone with me,2020,2,19,Australia,AU,Queensland,-27.539738,153.066222,EPSG:4326 +HUMAN_OBSERVATION,Radar,1,,,2024,9,22,Australia,AU,Queensland,-27.656747,153.158421,EPSG:4326 +HUMAN_OBSERVATION,Ryan Harvey,1,,,2024,11,6,Australia,AU,New South Wales,-31.926603,152.361575,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,I found this Koala up a Corymiba citriodora subsp. variegata due to noise by Rainbow Lorikeets and Grey Butcherbirds. 40 mins later I thought the noise ws coming from a different spot so investigated and found the Koala settling into the tops of a Ficus benjamina. Out of sight ot of mind and the birds quickly left her alone.,2020,4,16,Australia,AU,Queensland,-27.510559,153.069937,EPSG:4326 +HUMAN_OBSERVATION,sarah_noons,1,,,2024,10,25,Australia,AU,Victoria,-38.400097,146.961877,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,fresh scratch last night,2021,12,12,Australia,AU,Queensland,-27.976567,152.948609,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,21,Australia,AU,Queensland,-27.546316,153.073779,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,23,Australia,AU,Queensland,-27.529867,153.105439,EPSG:4326 +HUMAN_OBSERVATION,anthonypaul,1,,In an olive tree,2020,1,21,Australia,AU,South Australia,-34.830996,138.736188,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,28,Australia,AU,Queensland,-27.529556,153.103662,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,"In a dead tree, but alert and healthy looking.",2024,3,28,Australia,AU,Queensland,-27.529744,153.110022,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,Healthy male,2024,3,13,Australia,AU,Queensland,-27.328833,151.934097,EPSG:4326 +HUMAN_OBSERVATION,bigfoot123,1,,,2023,12,23,Australia,AU,Victoria,-37.913446,147.739034,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,1,14,Australia,AU,New South Wales,-33.076316,151.095099,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,9,1,Australia,AU,Queensland,-27.54591,153.073254,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,12,28,Australia,AU,Victoria,-38.671322,146.164139,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,5,18,Australia,AU,South Australia,-34.903209,138.705919,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Large Koala was sighted up this Eucalyptus tereticornis the day before,2024,9,7,Australia,AU,Queensland,-27.536094,152.280747,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Female "Spectacle Eyes" in E. viminalis. Also nearby the male "Bald Ears".,2021,9,11,Australia,AU,New South Wales,-30.518807,151.520092,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"Resting in Grey Gum. Harassed by Currawong and Noisy Miners on descent from tree top and stopped at this fork for a further rest. A small animal, I suspect the young kicked off mum a few weeks ago.",2022,11,12,Australia,AU,Queensland,-27.51036,153.069876,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2023,6,20,Australia,AU,Queensland,-27.51555,153.087345,EPSG:4326 +HUMAN_OBSERVATION,StreetMorrisArt,1,,4 of 4 we spotted,2023,3,27,Australia,AU,Queensland,-27.552295,153.059667,EPSG:4326 +HUMAN_OBSERVATION,murrayoke,1,,,2024,1,23,Australia,AU,Queensland,-27.37263,152.560237,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2024,10,21,Australia,AU,Victoria,-37.604726,143.882211,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Independent Joey in Tallowood. Mum nearby tree,2021,10,21,Australia,AU,Queensland,-27.551705,153.057711,EPSG:4326 +HUMAN_OBSERVATION,Karen Roberts,1,,Wildcamera,2023,5,11,Australia,AU,Queensland,-27.54407,152.857381,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,21,Australia,AU,Queensland,-27.526821,153.090959,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,"Male koala, was on ground near Ironbark tree, climbed up then across to young long leafed box and now eating",2023,12,15,Australia,AU,Victoria,-37.901923,144.223427,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lower wisteria car park,2024,7,5,Australia,AU,Queensland,-27.524988,153.092389,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Mum & joey Mum much lower in tree later, joey still up high",2024,2,20,Australia,AU,Queensland,-27.52945,153.105786,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,,2023,5,3,Australia,AU,Queensland,-27.551423,153.059207,EPSG:4326 +HUMAN_OBSERVATION,Alasdair McAlpine,1,,,2024,10,20,Australia,AU,Queensland,-27.498219,153.399781,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2023,12,27,Australia,AU,Queensland,-27.52569,153.092116,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,16,Australia,AU,Queensland,-27.526802,153.090911,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Koala spotted about 200 meters east of Opossum Creek in a Gum Top Box,2024,11,11,Australia,AU,Queensland,-27.648608,152.900405,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,12,Australia,AU,Queensland,-27.526878,153.11056,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear --78 is all I can read of his tag,2023,6,12,Australia,AU,Queensland,-27.518758,153.102766,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,8,28,Australia,AU,Queensland,-27.918728,153.37602,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi & joey,2024,1,6,Australia,AU,Queensland,-27.530047,153.103932,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,MALE KOALA,2024,9,23,Australia,AU,New South Wales,-33.130598,151.105052,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,5,4,Australia,AU,Queensland,-27.332808,152.611313,EPSG:4326 +HUMAN_OBSERVATION,tiner,1,,,2023,12,23,Australia,AU,Victoria,-38.804104,143.473939,EPSG:4326 +HUMAN_OBSERVATION,ewilson19,1,,,2021,3,22,Australia,AU,South Australia,-35.032585,138.709868,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On the ground.,2021,11,24,Australia,AU,Queensland,-27.548128,153.045397,EPSG:4326 +HUMAN_OBSERVATION,pierce_clark,1,,,2024,9,23,Australia,AU,Queensland,-27.914631,153.375298,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,,2023,11,7,Australia,AU,Queensland,-27.951853,153.382004,EPSG:4326 +HUMAN_OBSERVATION,Isaac,1,,,2022,11,16,Australia,AU,South Australia,-35.022732,138.573471,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2023,11,13,Australia,AU,Queensland,-27.526971,153.10783,EPSG:4326 +HUMAN_OBSERVATION,Vanda Cummins,1,,,2024,7,28,Australia,AU,Victoria,-35.917777,145.676981,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,2,Australia,AU,South Australia,-34.903264,138.702597,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,8,7,Australia,AU,South Australia,-34.905704,138.712626,EPSG:4326 +HUMAN_OBSERVATION,Ian D B Moodie,1,,,2022,6,13,Australia,AU,Victoria,-38.670072,143.860805,EPSG:4326 +HUMAN_OBSERVATION,Brendan Casey,1,FEMALE,"On ground, appears to be sick or injured",2023,3,10,Australia,AU,Victoria,-38.632553,145.737623,EPSG:4326 +HUMAN_OBSERVATION,emf,1,,,2021,10,9,Australia,AU,Victoria,-38.131144,145.268403,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,8,Australia,AU,Queensland,-27.527017,153.090941,EPSG:4326 +HUMAN_OBSERVATION,earthnurse1,1,,,2022,11,6,Australia,AU,Queensland,-28.681515,152.023639,EPSG:4326 +HUMAN_OBSERVATION,jryan198,1,,,2022,12,14,Australia,AU,Queensland,-27.265547,152.04712,EPSG:4326 +HUMAN_OBSERVATION,gerls,1,,,2022,11,23,Australia,AU,Victoria,-38.814158,143.536653,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,10,20,Australia,AU,Queensland,-27.701741,153.19019,EPSG:4326 +HUMAN_OBSERVATION,Annika T,1,,,2022,4,9,Australia,AU,Victoria,-37.922292,147.728144,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Two male koalas interacting,2020,7,30,Australia,AU,Queensland,-27.5509,153.057933,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,4,28,Australia,AU,Victoria,-37.63247,143.878536,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,6,9,Australia,AU,Queensland,-27.547904,153.073214,EPSG:4326 +HUMAN_OBSERVATION,Lorraine Phelan,1,MALE,A male calling in the background.,2023,11,27,Australia,AU,Victoria,-38.509752,143.863321,EPSG:4326 +HUMAN_OBSERVATION,Graham Tupper,1,,,2023,11,26,Australia,AU,New South Wales,-30.296043,153.124726,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,12,25,Australia,AU,South Australia,-34.888196,138.733365,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,23,Australia,AU,Queensland,-27.546115,153.074498,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,Mother with young,2023,11,26,Australia,AU,Queensland,-27.629498,151.566974,EPSG:4326 +HUMAN_OBSERVATION,rachtteltrab,1,,,2022,10,6,Australia,AU,Victoria,-37.54858,149.751678,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,In the nearby Grey Gum by sound direction,2021,1,21,Australia,AU,Queensland,-27.510406,153.069807,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On E.tereticornis,2022,1,4,Australia,AU,Queensland,-27.272102,152.975767,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"In top of Grey Gum, Eucalyptus propinqua, all day occasionally annoyed by Noisy Miner group and seen eating a few leaves. No obvious ear tag seen.",2020,6,20,Australia,AU,Queensland,-27.510413,153.069852,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,11,15,Australia,AU,Queensland,-27.548265,153.038273,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,11,13,Australia,AU,Queensland,-27.544905,153.07126,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,16,Australia,AU,South Australia,-34.889003,138.730935,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,11,7,Australia,AU,Queensland,-27.547187,153.058197,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2022,6,26,Australia,AU,Queensland,-27.516265,153.083654,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,6,20,Australia,AU,Queensland,-27.546241,153.062418,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland gully,2024,3,17,Australia,AU,Queensland,-27.527699,153.093052,EPSG:4326 +HUMAN_OBSERVATION,Todd Burrows,1,,,2023,3,9,Australia,AU,Queensland,-27.914838,153.363724,EPSG:4326 +HUMAN_OBSERVATION,Ash,1,,,2024,10,5,Australia,AU,Queensland,-27.712356,153.150392,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. 2 individuals in the same tree. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,8,27,Australia,AU,Queensland,-26.362941,151.811778,EPSG:4326 +HUMAN_OBSERVATION,codyhochen,1,,Top left of photo in fork and fresh scratches on tree trunk.,2021,8,6,Australia,AU,Queensland,-27.491287,152.846747,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2020,10,17,Australia,AU,Victoria,-38.131381,145.268676,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Mother and Joey rescued from summit track on My Gravatt. Taken to RSPCA wildlife hospital. Mother very unwell and euthanised. Red tag right ear 1267.,2024,8,8,Australia,AU,Queensland,-27.540181,153.073747,EPSG:4326 +HUMAN_OBSERVATION,williamrterry,1,,,2021,10,23,Australia,AU,Victoria,-37.458253,144.515766,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,23,Australia,AU,South Australia,-34.88782,138.735748,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,7,5,Australia,AU,South Australia,-34.889864,138.729445,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,6,7,Australia,AU,New South Wales,-28.254282,153.377448,EPSG:4326 +HUMAN_OBSERVATION,Graham Possingham,1,,,2024,4,17,Australia,AU,Victoria,-38.318633,142.364377,EPSG:4326 +HUMAN_OBSERVATION,raumer,1,,,2020,10,10,Australia,AU,Queensland,-27.288523,152.971427,EPSG:4326 +HUMAN_OBSERVATION,Neil Johnson,1,,,2021,10,19,Australia,AU,Queensland,-27.538248,152.89619,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,6,14,Australia,AU,Queensland,-27.510761,153.08708,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2024,10,21,Australia,AU,South Australia,-34.86258,138.69403,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,20,Australia,AU,South Australia,-34.874985,138.716654,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Far away across the creek!,2024,6,15,Australia,AU,Queensland,-27.527062,153.110251,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2024,2,13,Australia,AU,Queensland,-27.528023,153.092735,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,28,Australia,AU,Queensland,-27.527847,153.093141,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,18,Australia,AU,Queensland,-27.528413,153.113386,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"In lemon scented gum, quite high up. Brown female and joey. the fifth photo shows a tick on females leg. they were there all day. Climbeed up and out to feed as sunset approached.",2020,11,6,Australia,AU,New South Wales,-28.253621,153.376671,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,9,18,Australia,AU,South Australia,-34.829907,138.745388,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,Young male - dirty bottom - Awaiting assessment and rescue,2022,9,27,Australia,AU,Queensland,-27.168653,152.989472,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,4,12,Australia,AU,Queensland,-27.545319,153.070454,EPSG:4326 +HUMAN_OBSERVATION,mireeia_08,1,,,2023,11,13,Australia,AU,New South Wales,-28.818422,153.301697,EPSG:4326 +HUMAN_OBSERVATION,Mike Letnic,1,,,2022,2,14,Australia,AU,New South Wales,-32.396424,152.482333,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,21,Australia,AU,South Australia,-34.891643,138.722452,EPSG:4326 +HUMAN_OBSERVATION,Jack Beau Devlin,1,,,2024,7,27,Australia,AU,Queensland,-27.904407,153.381234,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2023,3,15,Australia,AU,Queensland,-27.553101,153.053773,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,1,27,Australia,AU,Queensland,-27.631503,151.624908,EPSG:4326 +HUMAN_OBSERVATION,alexis,1,,,2022,6,9,Australia,AU,Queensland,-27.498313,153.427674,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2021,2,16,Australia,AU,South Australia,-34.971157,138.638266,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Male, bellowing, and have seen this brown male before with the two spots on its bottom. Seemed to be trying to take a shortcut between trees...",2021,10,19,Australia,AU,New South Wales,-28.253834,153.377282,EPSG:4326 +HUMAN_OBSERVATION,trevinbne,1,,,2020,11,25,Australia,AU,Queensland,-24.740954,144.733415,EPSG:4326 +HUMAN_OBSERVATION,mattyayres,1,MALE,,2024,5,25,Australia,AU,Victoria,-37.517192,144.31108,EPSG:4326 +HUMAN_OBSERVATION,willjmatthews04,1,,,2024,9,18,Australia,AU,Queensland,-27.434036,152.997726,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Male koala Yellow tag left ear #1303 Opposite side of tennis courts near townhouses,2023,11,14,Australia,AU,Queensland,-27.525437,153.093551,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,Juvenile,2023,5,22,Australia,AU,Queensland,-27.528276,153.103566,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2023,6,24,Australia,AU,Queensland,-27.358733,152.074709,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Mum and bub.,2023,8,10,Australia,AU,Queensland,-27.256782,152.04645,EPSG:4326 +HUMAN_OBSERVATION,alejandro_mateos,1,,,2023,8,27,Australia,AU,Queensland,-19.13123,146.868972,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,18,Australia,AU,Queensland,-27.52831,153.092259,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,7,17,Australia,AU,Queensland,-27.56738,151.716263,EPSG:4326 +HUMAN_OBSERVATION,Heidi Clark,1,,,2024,10,28,Australia,AU,South Australia,-34.829332,138.747999,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,13,Australia,AU,Queensland,-27.547468,153.058583,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Noe sure which. Looks brown with might mean brown female with joey?,2020,9,25,Australia,AU,New South Wales,-28.253914,153.376817,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,6,28,Australia,AU,Queensland,-27.551863,153.057848,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,13,Australia,AU,Queensland,-27.530444,153.105165,EPSG:4326 +HUMAN_OBSERVATION,andymc737,1,,,2024,4,28,Australia,AU,Queensland,-27.938924,153.356772,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Naptime,2022,10,30,Australia,AU,Queensland,-27.513,153.08355,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Clem again. Male in long leafed box,2022,3,3,Australia,AU,Victoria,-37.842747,144.282423,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2024,3,16,Australia,AU,Victoria,-37.925052,147.730877,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,18,Australia,AU,South Australia,-34.892644,138.715217,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2022,2,19,Australia,AU,Victoria,-37.921958,147.728371,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,In Tasmanian Blue Gum,2021,10,23,Australia,AU,Victoria,-38.671428,146.164122,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - green tag LEFT ear - Joe, known as Bozo",2024,3,22,Australia,AU,Queensland,-27.527386,153.10733,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,This koala was spotted by Sarah Burkett in Bellbird Park while she was going for a stroll on the path along Woogaroo Creek,2023,8,20,Australia,AU,Queensland,-27.629478,152.902291,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2024,1,12,Australia,AU,Queensland,-27.542635,153.072095,EPSG:4326 +HUMAN_OBSERVATION,Mike and Cathy Beamish,1,FEMALE,The Strzelecki Koala!,2021,11,21,Australia,AU,Victoria,-38.356608,146.389846,EPSG:4326 +HUMAN_OBSERVATION,Brad,1,,,2021,9,25,Australia,AU,South Australia,-35.037028,138.583182,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Front of TAFE Cavendish Road,2024,9,7,Australia,AU,Queensland,-27.527664,153.090902,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,18,Australia,AU,Queensland,-27.526605,153.090265,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Monkey rope vine,2021,3,19,Australia,AU,Queensland,-27.551123,153.057504,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,4,5,Australia,AU,Queensland,-27.546074,153.068395,EPSG:4326 +HUMAN_OBSERVATION,shortman,1,,,2022,10,13,Australia,AU,Victoria,-38.552587,143.976638,EPSG:4326 +HUMAN_OBSERVATION,Nav,1,,,2023,1,9,Australia,AU,Victoria,-38.367914,145.316128,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,10,7,Australia,AU,Queensland,-27.568742,152.102464,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Cindy - red tag RIGHT ear,2023,3,18,Australia,AU,Queensland,-27.527127,153.10764,EPSG:4326 +HUMAN_OBSERVATION,fobhm,1,,,2021,9,14,Australia,AU,South Australia,-34.887162,138.727337,EPSG:4326 +HUMAN_OBSERVATION,Natasha,1,,Thank you Russell we just checked our scats book and agree.,2023,7,22,Australia,AU,Queensland,-26.161403,151.974838,EPSG:4326 +HUMAN_OBSERVATION,ash_tamayo,1,,,2023,1,14,Australia,AU,New South Wales,-34.040974,150.916459,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,dog attack,2021,12,23,Australia,AU,Victoria,-37.657846,143.882733,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2023,8,20,Australia,AU,Queensland,-27.823995,152.991959,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,small koala with two white back feet - like socks - in the trees behind the grey gum,2020,4,17,Australia,AU,New South Wales,-28.254076,153.376935,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2023,8,27,Australia,AU,South Australia,-34.93482,138.704211,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,11,18,Australia,AU,Queensland,-27.543757,153.05452,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,3,Australia,AU,South Australia,-34.887761,138.734438,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Male in Spotted gum,2021,5,25,Australia,AU,Queensland,-27.550374,153.060132,EPSG:4326 +HUMAN_OBSERVATION,malbrown2,1,,,2021,9,28,Australia,AU,Victoria,-38.351106,145.672493,EPSG:4326 +HUMAN_OBSERVATION,meltierney,1,,,2022,8,31,Australia,AU,Queensland,-27.69736,152.08463,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - yellow tag RIGHT ear,2023,12,19,Australia,AU,Queensland,-27.528214,153.109443,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Large koala in lemon scented gum,2020,3,1,Australia,AU,New South Wales,-28.25745,153.374145,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Sport n rec picnic area near I block Jacob Jnr,2024,4,6,Australia,AU,Queensland,-27.52587,153.091978,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,29,Australia,AU,Queensland,-27.40097,153.438311,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Adult. Unknown sex. Healthy. Observed Mondure Wheatlands Rd, Mondure by Wendy Taylor. Submitted by Denise Shaw via email.",2023,10,28,Australia,AU,Queensland,-26.179232,151.771821,EPSG:4326 +HUMAN_OBSERVATION,Karen Roberts,1,,,2023,5,27,Australia,AU,Queensland,-27.54652,152.859895,EPSG:4326 +HUMAN_OBSERVATION,carolynavaisabel,1,,,2022,8,20,Australia,AU,South Australia,-35.017496,138.656932,EPSG:4326 +HUMAN_OBSERVATION,Wil,1,MALE,,2022,11,24,Australia,AU,Queensland,-18.628372,143.911039,EPSG:4326 +HUMAN_OBSERVATION,paul_clifton,1,,,2023,11,30,Australia,AU,Victoria,-38.630697,143.891846,EPSG:4326 +HUMAN_OBSERVATION,Karl Tattersall,1,MALE,,2023,1,8,Australia,AU,Victoria,-38.646125,146.030801,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,,2024,7,30,Australia,AU,New South Wales,-29.873872,150.57123,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,12,26,Australia,AU,Victoria,-38.671312,146.164011,EPSG:4326 +HUMAN_OBSERVATION,Chris Cobern,1,,,2022,9,30,Australia,AU,Victoria,-37.046972,145.58628,EPSG:4326 +HUMAN_OBSERVATION,basilsdonna,1,,,2024,1,12,Australia,AU,Victoria,-38.348888,141.606334,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,7,Australia,AU,Queensland,-27.823745,152.993608,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,MALE,Healthy looking and active male,2022,10,12,Australia,AU,Queensland,-27.854513,153.224913,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Amanda West. Submitted via msg.,2022,11,3,Australia,AU,Queensland,-26.808295,152.108867,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,7,14,Australia,AU,Queensland,-27.905668,153.371872,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,Two in the one location - appeared to be a male and female.,2022,3,13,Australia,AU,Victoria,-38.329819,142.578583,EPSG:4326 +HUMAN_OBSERVATION,dawnborchardt,1,,,2024,7,1,Australia,AU,South Australia,-34.986404,138.719293,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,Cutie 🥰,2024,4,13,Australia,AU,Queensland,-27.3997,152.620072,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2022,9,18,Australia,AU,Queensland,-28.915914,151.584867,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,We think this is a female as we can also here a male koala calling out.,2024,11,23,Australia,AU,Queensland,-27.35872,152.074889,EPSG:4326 +HUMAN_OBSERVATION,carlabruinsma,1,,,2024,7,13,Australia,AU,New South Wales,-28.637355,153.62919,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"Koala, feeding very very high, in stringybark, late afternoon. Possibly ""Bald Ear"" due to notch in ear and location, who seems to have grown some fluff on his ears over winter.",2020,6,27,Australia,AU,New South Wales,-30.520765,151.520479,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"very hot, about 36c when photo was taken.",2022,2,1,Australia,AU,Queensland,-27.509542,153.070361,EPSG:4326 +HUMAN_OBSERVATION,J's H'way,1,,,2022,4,29,Australia,AU,Queensland,-27.552625,153.172266,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,7,3,Australia,AU,Victoria,-37.572636,143.897439,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag 1317 LEFT ear - Thor,2024,4,27,Australia,AU,Queensland,-27.527719,153.112827,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,12,Australia,AU,Queensland,-27.529007,153.106545,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Koala markings. FoN survey Tarkeeth1,2023,10,8,Australia,AU,New South Wales,-30.494295,152.913792,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,14,Australia,AU,Queensland,-27.526894,153.090737,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,2,6,Australia,AU,New South Wales,-29.546154,150.564019,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Looked healthy,2023,11,12,Australia,AU,Queensland,-27.305063,152.616945,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,7,12,Australia,AU,Queensland,-27.53046,153.10436,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road- near vacant block,2024,1,16,Australia,AU,Queensland,-27.527414,153.091091,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,10,28,Australia,AU,Victoria,-38.670972,146.163758,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,10,18,Australia,AU,South Australia,-34.733638,138.852439,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2022,11,6,Australia,AU,Victoria,-38.637853,145.715363,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,17,Australia,AU,Queensland,-26.155079,151.749888,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,This one was on the move,2023,5,29,Australia,AU,Queensland,-27.529364,153.105336,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,#2 juvenile,2022,11,13,Australia,AU,Queensland,-27.542345,153.07315,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Ironbark,2021,7,17,Australia,AU,Queensland,-27.550351,153.05446,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road - middle section Maisie - female koala yellow tag right ear,2023,6,4,Australia,AU,Queensland,-27.527153,153.090798,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,"Koala that is regularly sighted in the trees on Lawnton Road, Lawnton.",2023,6,25,Australia,AU,Queensland,-27.284473,153.000852,EPSG:4326 +HUMAN_OBSERVATION,scottyw,1,,,2024,2,24,Australia,AU,Victoria,-38.32599,145.412278,EPSG:4326 +HUMAN_OBSERVATION,jessrob73,1,,,2024,2,25,Australia,AU,Victoria,-37.525653,144.101327,EPSG:4326 +HUMAN_OBSERVATION,Anne Love,1,,,2023,12,2,Australia,AU,Queensland,-27.494149,152.874262,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,possibly the same animal at this one https://inaturalist.ala.org.au/observations/186480871. Reported to me this lady had been being annoyed by amorous male.,2023,10,7,Australia,AU,Queensland,-27.509244,153.07029,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,31,Australia,AU,Queensland,-27.400244,153.437806,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,#3,2022,12,4,Australia,AU,Queensland,-27.541575,153.054509,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,4,27,Australia,AU,Queensland,-27.52813,153.093582,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,Boonah Rail Trail.,2024,8,10,Australia,AU,Queensland,-27.986088,152.677643,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2023,6,20,Australia,AU,Queensland,-27.516779,153.085566,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Bub in shade of Cheese tree,2021,2,1,Australia,AU,Queensland,-27.552014,153.054342,EPSG:4326 +HUMAN_OBSERVATION,lauren leviston,1,,"At the Lethbridge reservoir, had the company of a family of magpies which were very interested but not harassing , - worryingly close to highway in a peri urban area",2024,4,10,Australia,AU,Victoria,-37.961855,144.135963,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2022,6,4,Australia,AU,Queensland,-27.226908,153.073819,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,T block,2024,11,5,Australia,AU,Queensland,-27.527146,153.091707,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult Male. Healthy. Observed by Robyn Zackreson. Submitted via FB.,2024,7,7,Australia,AU,Queensland,-26.309007,151.782282,EPSG:4326 +HUMAN_OBSERVATION,Ethan Beaver,1,,,2020,3,29,Australia,AU,South Australia,-35.083789,138.676619,EPSG:4326 +HUMAN_OBSERVATION,duffelbag,1,,,2023,6,21,Australia,AU,Victoria,-38.063204,141.9131,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Female - red tag RIGHT ear, small silver metal tag LEFT ear - Cindy",2024,1,5,Australia,AU,Queensland,-27.527733,153.110378,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Paperbark,2021,2,5,Australia,AU,Queensland,-27.551362,153.058401,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,8,31,Australia,AU,Queensland,-27.256267,152.04514,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,28,Australia,AU,Queensland,-27.526873,153.090832,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Female = orange tag RIGHT ear - Naomi. Tag not shown in pics, but sighted",2024,2,27,Australia,AU,Queensland,-27.530594,153.103432,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,Healthy adult male just near the solar farm.,2022,11,4,Australia,AU,Queensland,-27.717725,151.527695,EPSG:4326 +HUMAN_OBSERVATION,logankoalaproject,1,,,2022,8,8,Australia,AU,Queensland,-28.038718,152.934061,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Female and Joey in Paperbark,2020,8,27,Australia,AU,Queensland,-27.551011,153.057493,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.015953,138.671849,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,11,Australia,AU,Queensland,-27.413678,152.003922,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,3,Australia,AU,Queensland,-27.799291,151.588069,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,"Very distinct markings, probably sufficient to identify this individual again. Looks very much like a ""baby bump"" in the pouch, particularly in photo 2. (LCA2219).",2021,9,24,Australia,AU,Queensland,-27.49746,152.246244,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Outside nursery Mother and Joey,2024,9,22,Australia,AU,Queensland,-27.527221,153.091717,EPSG:4326 +HUMAN_OBSERVATION,kaneq,1,,,2021,8,21,Australia,AU,Victoria,-38.79212,143.622982,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to Woodland,2024,5,3,Australia,AU,Queensland,-27.52733,153.09231,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Unknown sex. Adult. Healthy. Koala's (multiple individuals) often seen on the property behind the race course. Observed by Anne-Marie Gibbs and reported via msg.,2022,1,15,Australia,AU,Queensland,-26.31377,151.884333,EPSG:4326 +HUMAN_OBSERVATION,dootcam,1,,,2021,5,18,Australia,AU,Victoria,-38.702865,145.870923,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2024,7,21,Australia,AU,Queensland,-27.528199,153.092184,EPSG:4326 +HUMAN_OBSERVATION,bertbohosouth,1,,koala droppings scat,2023,6,21,Australia,AU,Victoria,-36.803439,145.79155,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tree outside tennis courts Cindy Crawford and Joey Male koala was in the same tree,2023,7,2,Australia,AU,Queensland,-27.525293,153.092757,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,4,14,Australia,AU,Queensland,-27.527238,153.09078,EPSG:4326 +HUMAN_OBSERVATION,eklemp,1,,Female and juvenile,2024,11,5,Australia,AU,Queensland,-27.497712,153.399628,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,Mum Koala with joey climbing tree & eating leaves. Video taken with mobile phone by Lesley.,2022,9,11,Australia,AU,New South Wales,-28.275774,153.394343,EPSG:4326 +HUMAN_OBSERVATION,Christopher Brown,1,,,2023,5,14,Australia,AU,Victoria,-38.731935,143.37149,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,FEMALE,,2020,9,5,Australia,AU,New South Wales,-29.62333,150.868628,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey in paperbark,2020,8,10,Australia,AU,Queensland,-27.551099,153.057381,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,11,9,Australia,AU,Queensland,-27.525864,153.091802,EPSG:4326 +HUMAN_OBSERVATION,dpm-envirosciences,1,,,2023,10,25,Australia,AU,Queensland,-26.043813,149.881595,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - not tagged - known as Millie,2023,8,5,Australia,AU,Queensland,-27.527081,153.111351,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Aldi gates gully,2024,8,24,Australia,AU,Queensland,-27.526073,153.09373,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2020,7,10,Australia,AU,South Australia,-34.903239,138.613493,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,"Photo credit: Joanne, Karana Downs and Mt Crosby Residents Anstead Bushland Reserve",2020,6,16,Australia,AU,Queensland,-27.542516,152.859615,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"No ear tag seen. Up a large Spotted Gum, Corymbia sp. Reported there a couple of days earlier but quickly moved on after being annoyed by Noisy Miners and Burcherbirds. Birds not interested today.",2021,4,17,Australia,AU,Queensland,-27.510503,153.069741,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,,,2020,3,18,Australia,AU,Victoria,-38.388312,142.53937,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,With Joey avoiding male in adjacent tree. Grey Ironbark,2020,10,10,Australia,AU,Queensland,-27.53268,153.037288,EPSG:4326 +HUMAN_OBSERVATION,Larissa Braz Sousa,1,,,2021,10,23,Australia,AU,South Australia,-34.990131,138.636317,EPSG:4326 +HUMAN_OBSERVATION,murrayoke,1,,,2022,9,1,Australia,AU,Queensland,-27.116162,152.553625,EPSG:4326 +HUMAN_OBSERVATION,gpechey,1,,,2024,6,14,Australia,AU,Queensland,-27.298356,152.058486,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2021,8,31,Australia,AU,New South Wales,-28.27573,153.395046,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near Tick St fence,2023,6,10,Australia,AU,Queensland,-27.526119,153.093397,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,4,1,Australia,AU,New South Wales,-34.755847,146.534697,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2023,10,2,Australia,AU,Queensland,-27.529894,153.110927,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,MALE,Sick koala with conjunctivitis rescued from Amaroo Environment Centre Grounds. Taken to Wacol RSPCA Wildlife Hospital then Australia Zoo Wildlife Hospital for treatment. Rescued by M Butlin.,2023,9,17,Australia,AU,Queensland,-27.423441,151.94645,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2022,9,3,Australia,AU,South Australia,-35.085776,138.674889,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown tree,2020,3,11,Australia,AU,Queensland,-27.549119,153.059395,EPSG:4326 +HUMAN_OBSERVATION,curlewz,1,,Blue lake outflow. 18 Mile Swamp North Stradbroke Island/ Minjerribah,2021,9,12,Australia,AU,Queensland,-27.534663,153.488758,EPSG:4326 +HUMAN_OBSERVATION,venus5026,1,,,2023,3,22,Australia,AU,Victoria,-38.8021,143.477311,EPSG:4326 +HUMAN_OBSERVATION,coleurban11,1,,,2024,11,11,Australia,AU,Queensland,-27.496505,153.40012,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,,2024,8,15,Australia,AU,Victoria,-38.081575,141.733129,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block picnic area,2024,11,17,Australia,AU,Queensland,-27.525965,153.090589,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Next to old tennis courts sheds and townhouses fence Mother and joey,2024,8,11,Australia,AU,Queensland,-27.525,153.093696,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Male. Observed by Meg Walacavage. Submitted via email with following message "I call this koala Raymond and is easily identified by his fabulous nose pattern. I have been recording sightings of this koala for about 4yrs and suspect he may be a fair age. Raymond always looks a little battle scarred.. Raymonds territory includes the roadside corridor and a favourite scribbley gum at my front gate. -The roadside trees are a very important habitat for koalas as in some places they are the only decent sized food trees available for our resident koalas.",2022,1,22,Australia,AU,Queensland,-26.106639,152.809814,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"Female in Stringybark, possibly ""Spectacle Eyes"".",2023,3,1,Australia,AU,New South Wales,-30.519123,151.519469,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Think this is a young dispersing joey,2022,12,9,Australia,AU,Queensland,-27.528419,153.113396,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2024,1,25,Australia,AU,South Australia,-34.866353,138.68387,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,23,Australia,AU,South Australia,-34.888844,138.7354,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,11,19,Australia,AU,Queensland,-27.258789,152.0452,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear of woodland Frank Rooney Mother and joey in next tree,2023,11,26,Australia,AU,Queensland,-27.528028,153.093113,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Lyn,2024,9,30,Australia,AU,South Australia,-34.891902,138.71881,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2022,1,26,Australia,AU,Queensland,-27.506839,153.078314,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,FEMALE,,2022,8,30,Australia,AU,Queensland,-27.545991,153.072931,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Seen approximately 1 km from the house in the rear paddock. Observed by Donna Dingle. Submitted by Instagram.,2023,10,18,Australia,AU,Queensland,-25.180047,151.064812,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag - & joey on separate branch,2023,2,17,Australia,AU,Queensland,-27.530191,153.103259,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Two koalas same tree,2024,8,10,Australia,AU,Queensland,-27.526869,153.090374,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania and Wisteria woodland - rear near townhouses Possibly Cindy Crawford and joey,2023,8,12,Australia,AU,Queensland,-27.524975,153.09362,EPSG:4326 +HUMAN_OBSERVATION,magpies_friends,1,,,2022,2,6,Australia,AU,South Australia,-35.011051,138.652492,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,,2024,10,25,Australia,AU,Queensland,-27.510569,153.070111,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,"Survey 2 LNSF FoN. Mixed fresh and older Koala markings on Grey Gum, known area (BioNet transect 2021)",2023,7,16,Australia,AU,New South Wales,-30.559952,152.99286,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in Eucalyptus tereticornis,2023,7,6,Australia,AU,Queensland,-27.91123,152.627741,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,3,30,Australia,AU,New South Wales,-28.257962,153.400609,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"I presume this is Bozo - male, green tag LEFT ear",2023,10,16,Australia,AU,Queensland,-27.527091,153.107799,EPSG:4326 +HUMAN_OBSERVATION,pilotpossum,1,,,2024,10,13,Australia,AU,South Australia,-34.988688,138.729688,EPSG:4326 +HUMAN_OBSERVATION,Isaac Clarey,1,,,2021,4,24,Australia,AU,Victoria,-38.133911,141.72554,EPSG:4326 +HUMAN_OBSERVATION,Natasha,1,,,2021,12,18,Australia,AU,Queensland,-28.072119,152.572219,EPSG:4326 +HUMAN_OBSERVATION,The Fauna Catcher,1,MALE,"Large adult male found dead on road, hit by car.",2022,6,16,Australia,AU,Queensland,-21.628031,148.695147,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to cleaners donga Potentially a mother with joey,2024,8,17,Australia,AU,Queensland,-27.526931,153.091619,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,FEMALE,New baby on the block =),2022,11,9,Australia,AU,Queensland,-27.543936,153.072144,EPSG:4326 +HUMAN_OBSERVATION,dasyurus_bunya,1,,,2024,11,15,Australia,AU,Queensland,-27.297682,152.974028,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2023,10,14,Australia,AU,Queensland,-27.528223,153.092241,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,A.woodsiana,2020,10,12,Australia,AU,Queensland,-27.546278,153.053547,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,9,18,Australia,AU,South Australia,-34.83254,138.727076,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,12,12,Australia,AU,Queensland,-27.499555,153.078662,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,12,26,Australia,AU,Queensland,-27.545203,153.07226,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,1 0f 4 seen,2021,6,20,Australia,AU,Queensland,-27.544062,153.055861,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In trees between tennis courts and Tristania & Wisteria Woodland,2024,4,1,Australia,AU,Queensland,-27.525106,153.093231,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,,2024,9,1,Australia,AU,New South Wales,-29.869445,150.599326,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2023,12,30,Australia,AU,Queensland,-27.734951,153.102401,EPSG:4326 +HUMAN_OBSERVATION,cintajac,1,,,2020,10,17,Australia,AU,South Australia,-34.8289,138.744377,EPSG:4326 +HUMAN_OBSERVATION,lhbastedo,1,,Healthy,2023,6,24,Australia,AU,Queensland,-21.691184,148.68862,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Beautiful Mother and Joey. They seem to enjoy eating leaves from a paperbark after a big sleep.,2020,10,10,Australia,AU,Queensland,-27.549269,153.072499,EPSG:4326 +HUMAN_OBSERVATION,Tim Oestmann,1,,Asleep,2023,4,29,Australia,AU,South Australia,-34.886939,138.734366,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Sydney Blue Gum,2020,2,17,Australia,AU,Queensland,-27.550167,153.062251,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,10,15,Australia,AU,Queensland,-27.527182,153.09157,EPSG:4326 +HUMAN_OBSERVATION,Tracey Hinton,1,,,2020,6,28,Australia,AU,Victoria,-38.658771,146.025885,EPSG:4326 +HUMAN_OBSERVATION,fleursie,1,,‘Bell?ambassador koala being released after vet check,2024,3,21,Australia,AU,Queensland,-27.49036,153.245023,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,9,Australia,AU,South Australia,-34.874074,138.730917,EPSG:4326 +HUMAN_OBSERVATION,Scott Rolph,1,MALE,,2021,12,17,Australia,AU,Victoria,-37.961838,144.444569,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Alert, possible conjunctivitis but couldn’t really see well enough as he was high.",2023,7,6,Australia,AU,Queensland,-27.740362,152.722353,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2023,6,2,Australia,AU,Queensland,-27.567088,153.098458,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Same koala as yesterday. In same location 10m up hill. When we returned later in morning to relocate she could not be found,2020,5,2,Australia,AU,Queensland,-27.54495,153.062075,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Top of outside nursery area,2023,6,25,Australia,AU,Queensland,-27.527165,153.091701,EPSG:4326 +HUMAN_OBSERVATION,Elspeth Swan,1,,,2022,10,26,Australia,AU,Victoria,-37.633674,144.08732,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" male. Dominant male in area after rain storm.",2022,3,7,Australia,AU,New South Wales,-30.520949,151.517939,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,10,Australia,AU,Queensland,-27.527826,153.103352,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Female in Stringybark with Joey in pouch,2021,9,21,Australia,AU,Queensland,-27.550049,153.048821,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,,2020,12,10,Australia,AU,New South Wales,-29.776204,151.077558,EPSG:4326 +HUMAN_OBSERVATION,Ged Tranter,1,,Only my second record here.,2024,4,6,Australia,AU,Queensland,-27.302132,153.031165,EPSG:4326 +HUMAN_OBSERVATION,Hanneke Nooren,1,,LCA3108 Confirmed by OWAD Environment as Koala scat,2022,10,3,Australia,AU,Queensland,-27.4909,152.15245,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2022,9,26,Australia,AU,Victoria,-38.238802,145.250611,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Mother and Joey. Joey in other tree. Wild koala day 😊,2024,5,3,Australia,AU,Queensland,-27.547025,153.074625,EPSG:4326 +HUMAN_OBSERVATION,georgiescott,1,,,2022,9,10,Australia,AU,Queensland,-27.418037,152.620983,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,17,Australia,AU,Queensland,-27.673333,151.54195,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,1,29,Australia,AU,Queensland,-27.396605,152.609955,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,1,20,Australia,AU,Queensland,-27.524124,153.093118,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,7,28,Australia,AU,Queensland,-27.527332,153.107366,EPSG:4326 +HUMAN_OBSERVATION,Chris Solum,1,,TC22,2024,10,22,Australia,AU,Victoria,-38.049833,141.541867,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,10,27,Australia,AU,Queensland,-27.545379,153.073508,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,3,Australia,AU,South Australia,-34.890056,138.732213,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,9,30,Australia,AU,Queensland,-27.56887,151.716217,EPSG:4326 +HUMAN_OBSERVATION,brettmezen,1,,,2023,3,30,Australia,AU,New South Wales,-34.158907,150.829887,EPSG:4326 +HUMAN_OBSERVATION,ash_tamayo,1,,,2024,11,20,Australia,AU,New South Wales,-34.033873,150.885317,EPSG:4326 +HUMAN_OBSERVATION,Cameron Edwards,1,,,2021,12,11,Australia,AU,South Australia,-35.079822,138.575211,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,7,22,Australia,AU,New South Wales,-28.257846,153.400741,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear just visible - Naomi,2024,5,28,Australia,AU,Queensland,-27.530309,153.103905,EPSG:4326 +HUMAN_OBSERVATION,christinemauger_bha,1,MALE,Young male. Not yet breeding age,2024,8,25,Australia,AU,Queensland,-17.959692,145.396347,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,30,Australia,AU,South Australia,-34.887435,138.733997,EPSG:4326 +HUMAN_OBSERVATION,maxicole,1,,"Koala spotting walk with Jo, Alison and friends from UK",2024,7,21,Australia,AU,Queensland,-27.52972,153.104707,EPSG:4326 +HUMAN_OBSERVATION,Zoë Davis,1,,,2023,8,1,Australia,AU,Victoria,-38.833435,143.516637,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,5,26,Australia,AU,Queensland,-27.527207,153.091208,EPSG:4326 +HUMAN_OBSERVATION,kaharris03,1,,,2024,6,3,Australia,AU,New South Wales,-29.042258,153.289363,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Lockett,1,,,2022,3,2,Australia,AU,Victoria,-37.837069,145.37699,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2022,11,12,Australia,AU,Queensland,-27.331133,151.929413,EPSG:4326 +HUMAN_OBSERVATION,evergrebe,1,,,2022,11,19,Australia,AU,Victoria,-37.329462,144.592442,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Healthy adult koala observed sitting in a Flooded Gum tree.,2020,1,4,Australia,AU,New South Wales,-28.258552,153.400454,EPSG:4326 +HUMAN_OBSERVATION,Sam S,1,,"Single adult sitting in River Red Gum near Buckland Creek. Southern blue gums about 100m away, which may be preferred diet.",2024,11,8,Australia,AU,Victoria,-37.065486,145.321668,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,"Male koala, high in red box tree. Main trunk dead and koala in smaller regrowth. More than one male bellowing last night and this morning. Found 8.15 this morning. Now gone",2022,12,2,Australia,AU,Victoria,-37.840133,144.275737,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Presume this is Naomi's joey,2023,4,18,Australia,AU,Queensland,-27.530676,153.103601,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"The light ws going so poor photos. Is that a tick on its hind leg, in the white fur in last photo?",2020,10,5,Australia,AU,New South Wales,-28.254396,153.377504,EPSG:4326 +HUMAN_OBSERVATION,kg1962,1,,Strzelecki koala south Gippsland genome DNA Church Hill university verified,2024,8,14,Australia,AU,Victoria,-38.80913,146.004089,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Koalas heard last night in this direction. Found scats under Tallowwood trees, but could not see the koalas today.",2021,9,8,Australia,AU,New South Wales,-28.258361,153.402724,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Red tag A18 RIGHT ear - Campo,2023,3,31,Australia,AU,Queensland,-27.529812,153.109899,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Adult female with back young. In photo it is sitting on her front. Climbed onto her back later,2023,10,17,Australia,AU,Queensland,-27.90399,153.371902,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,10,28,Australia,AU,South Australia,-34.891618,138.626886,EPSG:4326 +HUMAN_OBSERVATION,codyhelyar,1,,,2023,8,22,Australia,AU,Victoria,-38.835512,143.513138,EPSG:4326 +HUMAN_OBSERVATION,eyesonbucketty,1,MALE,Large Male koala very actively calling,2024,9,21,Australia,AU,New South Wales,-33.103934,151.150244,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male keeping watch over koala in adjacent tree,2023,12,28,Australia,AU,Queensland,-27.52783,153.111314,EPSG:4326 +HUMAN_OBSERVATION,petebird,1,,,2023,11,21,Australia,AU,South Australia,-34.977588,138.647469,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Millie - female,2023,6,3,Australia,AU,Queensland,-27.527345,153.111458,EPSG:4326 +HUMAN_OBSERVATION,franhills,1,,,2023,10,24,Australia,AU,South Australia,-35.007874,138.63645,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,2,8,Australia,AU,South Australia,-34.905615,138.707324,EPSG:4326 +HUMAN_OBSERVATION,footesea,1,,"Third koala spotted on the Pittsworth Koala Count, School Road transect. Female and very healthy looking",2022,11,19,Australia,AU,Queensland,-27.805075,151.560487,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,23,Australia,AU,Queensland,-27.528029,153.092254,EPSG:4326 +HUMAN_OBSERVATION,Elliot Bowerman,1,FEMALE,,2020,4,22,Australia,AU,Queensland,-26.70477,152.82703,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,8,3,Australia,AU,Queensland,-27.527173,153.091537,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,FEMALE,,2024,9,10,Australia,AU,Victoria,-37.655435,143.888038,EPSG:4326 +HUMAN_OBSERVATION,Tom Hunt,1,,,2024,2,24,Australia,AU,South Australia,-34.887322,138.7202,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,5,30,Australia,AU,New South Wales,-29.857165,150.585835,EPSG:4326 +HUMAN_OBSERVATION,andymc737,1,,,2023,7,21,Australia,AU,Queensland,-27.93898,153.356814,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,7,6,Australia,AU,Queensland,-27.527141,153.091549,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala high in very large Eucalyptus tereticornis.,2024,6,20,Australia,AU,Queensland,-27.866582,152.761372,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - red tag RIGHT ear A5 - Cindy,2023,11,27,Australia,AU,Queensland,-27.527295,153.110181,EPSG:4326 +HUMAN_OBSERVATION,graeme lunt,1,,,2021,10,20,Australia,AU,Victoria,-37.689874,143.996071,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,2,21,Australia,AU,Queensland,-27.800783,151.598562,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria carpark Joey,2024,10,12,Australia,AU,Queensland,-27.52538,153.09223,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2024,9,20,Australia,AU,Queensland,-27.358252,152.074464,EPSG:4326 +HUMAN_OBSERVATION,Ron Greer,1,,,2022,3,26,Australia,AU,Victoria,-38.598545,146.30818,EPSG:4326 +HUMAN_OBSERVATION,R.M,1,,Lone koala in spindly tree near creek.,2023,4,30,Australia,AU,Queensland,-27.242191,153.004987,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2024,11,10,Australia,AU,New South Wales,-33.076721,151.095373,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,15,Australia,AU,Queensland,-27.53145,153.105176,EPSG:4326 +HUMAN_OBSERVATION,Tony Palliser,1,,,2023,8,22,Australia,AU,New South Wales,-35.81558,145.563038,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Female - no scent gland and pouch visible,2024,3,10,Australia,AU,Queensland,-27.527327,153.091288,EPSG:4326 +HUMAN_OBSERVATION,wottal,1,,,2024,5,27,Australia,AU,Victoria,-37.913233,145.749919,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2023,12,22,Australia,AU,Queensland,-28.164133,151.245255,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male koala in tree near previous observation today. Messmate AG,2022,2,17,Australia,AU,Victoria,-37.862318,144.266602,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,a lot of city noise interferes with call recording.,2023,8,18,Australia,AU,Queensland,-27.510628,153.070152,EPSG:4326 +HUMAN_OBSERVATION,caesia,1,,,2023,11,19,Australia,AU,South Australia,-35.282878,138.814863,EPSG:4326 +HUMAN_OBSERVATION,Tamsin Quirk,1,,,2021,9,1,Australia,AU,New South Wales,-29.463876,149.825943,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,7,6,Australia,AU,Victoria,-37.596126,143.897181,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,10,22,Australia,AU,Queensland,-27.527167,153.092065,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Brush box,2023,10,15,Australia,AU,Queensland,-27.534536,153.036405,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park,2023,11,4,Australia,AU,Queensland,-27.524908,153.092377,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2023,6,20,Australia,AU,Queensland,-27.516094,153.086661,EPSG:4326 +HUMAN_OBSERVATION,Dean,1,,,2021,11,26,Australia,AU,New South Wales,-34.167072,150.802803,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds,2024,9,21,Australia,AU,Queensland,-27.527741,153.09223,EPSG:4326 +HUMAN_OBSERVATION,Nigel Marsh,1,,,2022,10,15,Australia,AU,Queensland,-27.275294,152.926264,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,14,Australia,AU,Queensland,-27.814154,151.612215,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,8,12,Australia,AU,Queensland,-27.823397,152.992605,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Ulf Sellergren. Submitted by Denise Shaw via email.,2023,1,26,Australia,AU,Queensland,-26.507657,151.873794,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Beautiful koala in good health eating eucalyptus leaves at Amity Point.,2021,10,1,Australia,AU,Queensland,-27.400953,153.4381,EPSG:4326 +HUMAN_OBSERVATION,harriju,1,,,2024,4,8,Australia,AU,South Australia,-35.00843,138.649576,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female. Injured. Hit by car. Collected by koala rescue. Later euthanised. Observed by Wendy Taylor. Submitted by Denise Shaw via text.,2023,9,10,Australia,AU,Queensland,-26.57322,151.909219,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Max - Maisie’s joey,2024,4,6,Australia,AU,Queensland,-27.526564,153.090659,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,23,Australia,AU,Queensland,-27.545762,153.073563,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,6,6,Australia,AU,New South Wales,-28.254303,153.376929,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,2 photos of same Koala same location 2 hours apart,2022,1,22,Australia,AU,Queensland,-27.275748,152.931103,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Very healthy koala and the 1st koala I’ve ever seen,2022,3,27,Australia,AU,New South Wales,-34.769853,146.589783,EPSG:4326 +HUMAN_OBSERVATION,Mike Letnic,1,,,2024,1,28,Australia,AU,New South Wales,-32.395327,152.48843,EPSG:4326 +HUMAN_OBSERVATION,klemon1,1,,,2020,5,6,Australia,AU,Queensland,-27.905452,153.373643,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey in one tree,2024,3,19,Australia,AU,Queensland,-27.52984,153.104506,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2023,9,9,Australia,AU,Queensland,-27.284458,153.000846,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - heard grunting,2024,10,19,Australia,AU,Queensland,-27.527939,153.104701,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,11,Australia,AU,Queensland,-27.52988,153.104307,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,30,Australia,AU,South Australia,-34.89026,138.730019,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mother and Joey in Forest Red Gum,2024,7,6,Australia,AU,Queensland,-27.526605,153.051092,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2024,3,31,Australia,AU,Victoria,-38.354956,146.386225,EPSG:4326 +HUMAN_OBSERVATION,shortman,1,,,2022,10,15,Australia,AU,Victoria,-38.671713,143.859695,EPSG:4326 +HUMAN_OBSERVATION,jobrierley,1,,,2023,6,25,Australia,AU,Queensland,-28.096722,153.448948,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2021,8,17,Australia,AU,South Australia,-35.13445,138.514258,EPSG:4326 +HUMAN_OBSERVATION,montyrod,1,,,2021,8,28,Australia,AU,Victoria,-38.259739,145.161224,EPSG:4326 +HUMAN_OBSERVATION,Jaz,1,,,2020,1,21,Australia,AU,Victoria,-38.577006,146.008781,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Marilyn. Daughter of Lyn!,2024,1,9,Australia,AU,South Australia,-34.891604,138.718878,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,28,Australia,AU,South Australia,-34.881371,138.778216,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,4,Australia,AU,Queensland,-27.527116,153.091564,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,3143,2022,12,15,Australia,AU,Queensland,-27.54582,153.073271,EPSG:4326 +HUMAN_OBSERVATION,lollie17,1,MALE,Young male koala looking for some love hear him calling most afternoons,2022,11,26,Australia,AU,Queensland,-26.236147,152.658589,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,6,14,Australia,AU,South Australia,-34.86533,138.656463,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2020,9,13,Australia,AU,South Australia,-34.750875,138.917575,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,3,22,Australia,AU,Queensland,-27.917903,153.377553,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,4,27,Australia,AU,Queensland,-27.537684,153.054859,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,MALE,"Male, yellow tag in left ear",2024,8,29,Australia,AU,Queensland,-27.528553,153.113953,EPSG:4326 +HUMAN_OBSERVATION,jodie5678,1,,Koala spotted in vacant block 80 Arafura St Upper Mt Gravatt 4122,2021,5,15,Australia,AU,Queensland,-27.550112,153.074621,EPSG:4326 +HUMAN_OBSERVATION,penndragon75,1,,Found between Admin building and the Theatrette,2020,10,18,Australia,AU,Queensland,-27.547488,153.217786,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,11,3,Australia,AU,Queensland,-27.527215,153.092031,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey rear entrance,2023,10,7,Australia,AU,Queensland,-27.527199,153.092,EPSG:4326 +HUMAN_OBSERVATION,celianj,1,,,2024,7,17,Australia,AU,Queensland,-27.543516,153.053061,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Scratches and lots of scat around tree. Observed by Denise Shaw (experienced koala scat collector). Submitted via email,2023,10,23,Australia,AU,Queensland,-26.369191,151.841184,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland mating tree,2024,1,2,Australia,AU,Queensland,-27.527265,153.092494,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Mother has Red Tag right ear. We think it’s Emily and her Joey.,2024,10,11,Australia,AU,Queensland,-27.546002,153.073299,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey,2024,5,7,Australia,AU,Queensland,-27.530504,153.103384,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear - & joey,2023,1,6,Australia,AU,Queensland,-27.529766,153.104064,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,FEMALE,"""Spectacle Eyes"" female. ""Bald Ears"" male was nearby (no photo). This proximity between the two has been seen in previous years during the mating season.",2022,3,22,Australia,AU,New South Wales,-30.521293,151.519051,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,1,13,Australia,AU,South Australia,-34.951232,138.672131,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,11,23,Australia,AU,Victoria,-37.649804,143.921124,EPSG:4326 +HUMAN_OBSERVATION,Cameron Edwards,1,,,2021,12,11,Australia,AU,South Australia,-35.079572,138.574954,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,1,12,Australia,AU,South Australia,-34.866415,138.65615,EPSG:4326 +HUMAN_OBSERVATION,Jesse Saofia,1,,,2023,6,18,Australia,AU,Victoria,-38.670467,143.856628,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,4,Australia,AU,Queensland,-27.529449,153.105384,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dirty bum - needs rescue but not in accessible tree at present,2024,1,9,Australia,AU,Queensland,-27.527289,153.108411,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,10,20,Australia,AU,South Australia,-34.903203,138.703098,EPSG:4326 +HUMAN_OBSERVATION,Dafne,1,,Baby & mum,2024,11,8,Australia,AU,Queensland,-27.55272,153.054373,EPSG:4326 +HUMAN_OBSERVATION,Sylvia Felicity Ann Haworth,1,,,2024,11,9,Australia,AU,Queensland,-27.54434,153.07221,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,11,3,Australia,AU,Queensland,-27.527193,153.091546,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,10,7,Australia,AU,Queensland,-27.52765,153.093843,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"You would never know it from the images, but this is a female with a well-grown joey in her arms. Boonah Rail Trail: tree is Eucalyptus tereticornis.",2024,7,23,Australia,AU,Queensland,-27.9873,152.678027,EPSG:4326 +HUMAN_OBSERVATION,Rebecca Stroud,1,,,2024,1,7,Australia,AU,New South Wales,-30.474959,151.638997,EPSG:4326 +HUMAN_OBSERVATION,naenaenature,1,,,2022,12,12,Australia,AU,Victoria,-37.628514,143.884329,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,"Site: K1 Tree no: 23 Tree DBH: 19.417 Sclerophyll notes: No time was recorded for when scats were found - 1pm has been put for all scat observations due to there being no records, all scats were collected on the same day at different sites Ecologist assessed",2021,8,25,Australia,AU,Queensland,-27.695017,152.08675,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,7,25,Australia,AU,Queensland,-27.547921,153.058474,EPSG:4326 +HUMAN_OBSERVATION,JemmaCripps,1,,,2022,11,23,Australia,AU,Victoria,-38.54212,143.44372,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2023,6,29,Australia,AU,South Australia,-34.917502,138.542501,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park - near our house Jacob Jnr,2024,8,25,Australia,AU,Queensland,-27.524421,153.092117,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,10,1,Australia,AU,Queensland,-27.552293,153.054523,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Healthy looking and alert.,2022,8,20,Australia,AU,Queensland,-27.528872,153.108978,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Multiple individuals observed over last 4 years. Last year females were observed with young. Observation by Tracey Hope and submitted via msg.,2022,4,26,Australia,AU,Queensland,-26.242101,151.94139,EPSG:4326 +HUMAN_OBSERVATION,margadelie,1,,,2022,3,29,Australia,AU,South Australia,-34.959749,138.685923,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,FEMALE,,2022,10,19,Australia,AU,Victoria,-38.286999,145.08104,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,31,Australia,AU,Queensland,-27.529819,153.112152,EPSG:4326 +HUMAN_OBSERVATION,maximto,1,,,2023,9,9,Australia,AU,Queensland,-27.283225,152.921172,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2023,1,16,Australia,AU,South Australia,-34.96959,138.637967,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2023,9,11,Australia,AU,New South Wales,-31.44093,152.906778,EPSG:4326 +HUMAN_OBSERVATION,giniwizz,1,,Sitting in black wattle tree,2024,4,10,Australia,AU,Victoria,-37.939759,144.421677,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2020,5,15,Australia,AU,Queensland,-27.278278,152.947388,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2024,8,24,Australia,AU,Queensland,-27.568863,152.102447,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,30,Australia,AU,South Australia,-34.890073,138.731821,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear,2023,7,7,Australia,AU,Queensland,-27.529269,153.106547,EPSG:4326 +HUMAN_OBSERVATION,David,1,,,2023,7,10,Australia,AU,South Australia,-34.871883,138.717489,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Half Black Lip in E. blakelyi in South West of 45 Baker Road: its usual territory,2020,3,27,Australia,AU,New South Wales,-30.520949,151.517939,EPSG:4326 +HUMAN_OBSERVATION,zanse,1,MALE,"Large male, vocalising",2022,1,8,Australia,AU,Victoria,-38.238759,146.090274,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - red tag RIGHT ear - Cindy,2023,8,21,Australia,AU,Queensland,-27.526922,153.108127,EPSG:4326 +HUMAN_OBSERVATION,Peta Jansma-Reid,1,,,2022,10,17,Australia,AU,Queensland,-27.259837,152.946192,EPSG:4326 +HUMAN_OBSERVATION,m_green,1,,,2023,6,2,Australia,AU,New South Wales,-34.699642,146.486053,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,4,25,Australia,AU,Queensland,-27.547818,153.045428,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,2,13,Australia,AU,Queensland,-26.15627,151.745912,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3124 Confirmed as Koala scat by OWAD Environment,2022,11,12,Australia,AU,Queensland,-27.50403,152.15904,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,1,18,Australia,AU,Queensland,-27.529176,153.105166,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2021,10,3,Australia,AU,Queensland,-27.983143,153.289845,EPSG:4326 +HUMAN_OBSERVATION,Deb,1,,,2024,10,19,Australia,AU,Victoria,-37.677495,141.849076,EPSG:4326 +HUMAN_OBSERVATION,rachinspace,1,,,2021,9,8,Australia,AU,New South Wales,-33.681072,149.331147,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,,2023,10,30,Australia,AU,Queensland,-27.41278,152.003219,EPSG:4326 +HUMAN_OBSERVATION,pierce_clark,1,,,2024,10,5,Australia,AU,Queensland,-27.920167,153.376199,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Number 1 koala again,2020,6,17,Australia,AU,New South Wales,-28.253958,153.377385,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,23,Australia,AU,South Australia,-34.890257,138.730134,EPSG:4326 +HUMAN_OBSERVATION,pennydropped,1,,,2023,11,28,Australia,AU,Victoria,-38.401322,144.989853,EPSG:4326 +HUMAN_OBSERVATION,Michael Tervo,1,,,2024,8,24,Australia,AU,Queensland,-27.506313,153.078414,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,This looks like a good place to rest.,2023,12,4,Australia,AU,Queensland,-27.265081,152.057709,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Ainslie spotted, mum with joey.",2021,10,10,Australia,AU,New South Wales,-28.255373,153.378516,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,3,21,Australia,AU,Victoria,-38.67128,146.163864,EPSG:4326 +HUMAN_OBSERVATION,Kate Leslie,1,,"Koala with a great view! She was eating euc leaves - we think manna gum. She climbed down and to the left a bit, so we think it's a she.",2024,5,25,Australia,AU,Victoria,-38.245531,143.158264,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,K block Likely Jacob Jnr,2024,10,2,Australia,AU,Queensland,-27.525812,153.090752,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3027,2020,11,3,Australia,AU,Queensland,-27.496345,152.248252,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,,2022,12,21,Australia,AU,Queensland,-27.528447,153.104063,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,12,Australia,AU,South Australia,-34.889174,138.731602,EPSG:4326 +HUMAN_OBSERVATION,ilovekoalas,1,,,2020,7,27,Australia,AU,Queensland,-26.428908,151.7939,EPSG:4326 +HUMAN_OBSERVATION,ronavery,1,,,2024,7,6,Australia,AU,South Australia,-35.709086,137.296183,EPSG:4326 +HUMAN_OBSERVATION,Amanda Bullington,1,,,2024,3,15,Australia,AU,Victoria,-38.484579,145.262182,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,10,13,Australia,AU,Queensland,-27.527079,153.108959,EPSG:4326 +HUMAN_OBSERVATION,julie,1,,,2023,9,25,Australia,AU,Queensland,-27.792254,153.132031,EPSG:4326 +HUMAN_OBSERVATION,kerrbrad,1,,,2020,11,7,Australia,AU,New South Wales,-32.23974,151.695687,EPSG:4326 +HUMAN_OBSERVATION,Pete Woodall,1,,186,2020,9,8,Australia,AU,Queensland,-27.539771,153.033118,EPSG:4326 +HUMAN_OBSERVATION,Ashleigh Miller,1,FEMALE,“Kimo?with a Joey,2023,8,27,Australia,AU,Queensland,-27.490308,153.247087,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Adult, Unknown Sex, Healthy. Observed by Leona Leng. Submitted via email.",2023,8,1,Australia,AU,Queensland,-26.584787,151.7974,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Can you tell the sex from this?,2022,10,4,Australia,AU,Queensland,-27.543779,153.072255,EPSG:4326 +HUMAN_OBSERVATION,Lynda Wilson,1,,,2023,11,12,Australia,AU,Victoria,-37.268309,144.310672,EPSG:4326 +HUMAN_OBSERVATION,biancacar,1,,Mum with Joey,2024,1,9,Australia,AU,Victoria,-38.130478,145.268433,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2023,11,8,Australia,AU,Queensland,-27.869904,152.623889,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,Wearing white collar,2023,6,21,Australia,AU,Queensland,-27.718727,151.519485,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,2 koalas in same tree - Bandit (white tag LEFT ear) lower,2024,10,11,Australia,AU,Queensland,-27.527713,153.111494,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,18,Australia,AU,Queensland,-27.52832,153.093055,EPSG:4326 +HUMAN_OBSERVATION,hollythefrog,1,,,2024,10,8,Australia,AU,Queensland,-27.917501,153.373474,EPSG:4326 +HUMAN_OBSERVATION,Emma H.,1,,,2024,5,5,Australia,AU,Queensland,-19.131619,146.870697,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to e block,2024,3,9,Australia,AU,Queensland,-27.526417,153.090834,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank Mimi is tired,2022,10,11,Australia,AU,Queensland,-27.545833,153.073534,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Deceased Adult female + female joey. Motor vehicle incident. Burnett highway just before Memerambi from Wooroolin. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,8,22,Australia,AU,Queensland,-26.444526,151.821721,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,4,27,Australia,AU,Queensland,-27.527323,153.091485,EPSG:4326 +HUMAN_OBSERVATION,Hannah Brown,1,,Possible fresh scats,2022,8,14,Australia,AU,Victoria,-38.256137,145.241017,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,"mother and joey, taken by neighbour",2021,8,21,Australia,AU,Queensland,-27.507273,153.069691,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2024,7,6,Australia,AU,Queensland,-27.528169,153.048506,EPSG:4326 +HUMAN_OBSERVATION,Kevin Sparrow,1,,,2024,3,21,Australia,AU,Victoria,-38.205528,142.038208,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,,2023,9,18,Australia,AU,Queensland,-27.89984,152.644816,EPSG:4326 +HUMAN_OBSERVATION,Luke R. Hardy,1,,,2022,5,24,Australia,AU,Queensland,-27.553908,153.0735,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Red Mahogany,2020,11,16,Australia,AU,Queensland,-27.553308,153.057724,EPSG:4326 +HUMAN_OBSERVATION,rordale,1,,,2024,10,29,Australia,AU,Queensland,-27.261822,152.064042,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,2,26,Australia,AU,Queensland,-27.597197,151.892166,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,3,7,Australia,AU,New South Wales,-28.257978,153.400692,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,6,23,Australia,AU,Queensland,-27.525683,153.092319,EPSG:4326 +HUMAN_OBSERVATION,jaybee228,1,,"Only saw the one koala, not sure if male or female but very cute ☺️",2022,1,22,Australia,AU,Victoria,-38.365195,146.396651,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Julie Pidgeon. Submitted by Wendy Taylor via msg.,2023,12,11,Australia,AU,Queensland,-26.207567,152.029073,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,11,16,Australia,AU,Queensland,-27.542147,153.051286,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,7,Australia,AU,Queensland,-27.526926,153.091867,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,10,23,Australia,AU,Queensland,-27.583787,153.151142,EPSG:4326 +HUMAN_OBSERVATION,summerfell,1,,,2021,11,13,Australia,AU,Queensland,-27.817279,153.076435,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,"Site: K4 Tree no: 8 Tree DBH: 34.85 Sclerophyll notes: No time was recorded for when scats were found - 1pm has been put for all scat observations due to there being no records, all scats were collected on the same day at different sites Ecologist assessed",2021,8,25,Australia,AU,Queensland,-27.70049,152.08734,EPSG:4326 +HUMAN_OBSERVATION,fleursie,1,,Ambassador koala ‘Biripi?being released after vet check,2024,3,21,Australia,AU,Queensland,-27.508897,153.253097,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,,2024,4,7,Australia,AU,New South Wales,-29.655252,150.828708,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,In a Manna Gum (E. viminalis).,2024,9,25,Australia,AU,Victoria,-38.319097,142.363106,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2023,10,31,Australia,AU,Queensland,-27.528074,153.109427,EPSG:4326 +HUMAN_OBSERVATION,cory07,1,MALE,,2024,1,21,Australia,AU,Victoria,-37.63308,144.084489,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Male,2021,1,11,Australia,AU,Victoria,-38.671283,146.164214,EPSG:4326 +HUMAN_OBSERVATION,Amy Thomas,1,,,2024,7,7,Australia,AU,Queensland,-27.250419,153.066816,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,7,14,Australia,AU,Victoria,-37.641977,143.890896,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,8,Australia,AU,South Australia,-34.890354,138.733406,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2021,1,5,Australia,AU,Victoria,-37.924577,147.733783,EPSG:4326 +HUMAN_OBSERVATION,pepijnz,1,,,2023,11,20,Australia,AU,Victoria,-37.530031,149.740203,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,#2,2023,8,20,Australia,AU,Queensland,-27.511737,153.084231,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,17,Australia,AU,Queensland,-27.528253,153.111113,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,11,1,Australia,AU,Victoria,-38.671069,146.163777,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,12,31,Australia,AU,Queensland,-27.527093,153.091619,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Maisie B,2024,7,14,Australia,AU,Queensland,-27.52614,153.090736,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2022,8,21,Australia,AU,Victoria,-38.23991,145.25097,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,10,20,Australia,AU,Queensland,-27.649083,151.710237,EPSG:4326 +HUMAN_OBSERVATION,graeme lunt,1,,,2023,3,27,Australia,AU,Victoria,-37.689564,143.997013,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,3,25,Australia,AU,Queensland,-27.398453,152.609147,EPSG:4326 +HUMAN_OBSERVATION,larivera,1,,,2022,11,19,Australia,AU,Victoria,-38.492792,143.033906,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,4,30,Australia,AU,South Australia,-34.894579,138.620945,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,7,24,Australia,AU,South Australia,-34.954243,138.690314,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,FEMALE,mother koala with young on back,2023,10,20,Australia,AU,Queensland,-27.694228,151.563152,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of Woodland Mother and Joey,2023,9,9,Australia,AU,Queensland,-27.527327,153.092304,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,4,5,Australia,AU,South Australia,-35.009105,138.633056,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,Faint but a male koala here and a female I think. We have had two males and a female here for about a week,2024,3,23,Australia,AU,Queensland,-27.358444,152.074568,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,,2024,2,7,Australia,AU,South Australia,-35.096814,138.584508,EPSG:4326 +HUMAN_OBSERVATION,Suzanne B,1,,So excited to see a mum and bubs on my trip to finally see wild koalas,2023,3,28,Australia,AU,Victoria,-37.923896,147.730667,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2024,10,20,Australia,AU,Queensland,-27.643437,151.583695,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,16,Australia,AU,Queensland,-27.525993,153.090356,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A5 RIGHT ear - Cindy,2023,12,6,Australia,AU,Queensland,-27.527412,153.110368,EPSG:4326 +HUMAN_OBSERVATION,Francesco Martoni,1,,,2023,11,24,Australia,AU,Victoria,-38.668372,143.860794,EPSG:4326 +HUMAN_OBSERVATION,Scott Warner,1,,,2023,9,2,Australia,AU,Queensland,-27.301966,152.257149,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,11,10,Australia,AU,Queensland,-26.407815,151.816476,EPSG:4326 +HUMAN_OBSERVATION,allambiretreat,1,,,2022,2,2,Australia,AU,Queensland,-27.344178,152.844605,EPSG:4326 +HUMAN_OBSERVATION,enekoazkue,1,,,2023,11,26,Australia,AU,New South Wales,-28.639571,153.628928,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2021,3,7,Australia,AU,Queensland,-27.547984,153.058262,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,1,Australia,AU,Queensland,-27.528994,153.103899,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,17,Australia,AU,Queensland,-27.529589,153.102355,EPSG:4326 +HUMAN_OBSERVATION,Paulaed,1,,,2023,1,17,Australia,AU,South Australia,-35.016612,138.588589,EPSG:4326 +HUMAN_OBSERVATION,silvo3070,1,,,2020,11,3,Australia,AU,Victoria,-37.064003,145.301955,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area - next to nursery fence,2023,7,1,Australia,AU,Queensland,-27.527783,153.092238,EPSG:4326 +HUMAN_OBSERVATION,asanoth,1,,,2023,9,22,Australia,AU,Queensland,-27.509151,153.084718,EPSG:4326 +HUMAN_OBSERVATION,halcyonweb,1,,High in a very large old 'putative iron bark',2021,8,17,Australia,AU,New South Wales,-32.398247,151.729656,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,8,Australia,AU,South Australia,-34.890393,138.733425,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2020,12,6,Australia,AU,Queensland,-27.547435,153.058179,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,High up and could not get a clear shot for identification,2020,12,22,Australia,AU,New South Wales,-28.254098,153.377515,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,3,Australia,AU,South Australia,-34.892208,138.71482,EPSG:4326 +HUMAN_OBSERVATION,zitafewster,1,,,2024,2,14,Australia,AU,South Australia,-35.015223,138.715403,EPSG:4326 +HUMAN_OBSERVATION,David Charles Paull,1,MALE,"Deceased, male animal",2021,10,30,Australia,AU,New South Wales,-31.139247,149.377293,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,This is Stanky II - yes I name some of the koalas I see. He was fine. Just resting on ground!,2022,10,10,Australia,AU,South Australia,-34.892107,138.721278,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,17,Australia,AU,Queensland,-27.823057,152.99193,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,Adult female with joey on front,2023,10,17,Australia,AU,Queensland,-27.905991,153.371552,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Too far away to determine tree species,2021,10,21,Australia,AU,Queensland,-27.551094,153.058243,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,Very small koala. Same one in same tree yesterday. Koala noises heard overnight,2023,1,22,Australia,AU,Queensland,-28.21145,152.865973,EPSG:4326 +HUMAN_OBSERVATION,duke_n,1,,,2021,7,10,Australia,AU,Victoria,-38.061359,141.220722,EPSG:4326 +HUMAN_OBSERVATION,leithallb,1,,7372/79,2021,9,17,Australia,AU,Queensland,-27.540786,153.034181,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,7,17,Australia,AU,Queensland,-27.550799,153.05734,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,23,Australia,AU,Queensland,-27.530047,153.103539,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Circled in orange,2024,1,3,Australia,AU,Queensland,-27.527264,153.108273,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2024,10,12,Australia,AU,Victoria,-38.341508,142.630255,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala drying out in a Eucaltyptus tereticornis.,2022,3,2,Australia,AU,Queensland,-28.163892,152.604846,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,2,2,Australia,AU,New South Wales,-29.870372,150.601266,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,,This koala was observed and photographed by Darren Green at the Rathdowney State School,2022,5,21,Australia,AU,Queensland,-28.216064,152.859418,EPSG:4326 +HUMAN_OBSERVATION,lil_1,1,,,2023,12,26,Australia,AU,Victoria,-37.623783,144.094772,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery rear entrance gates Joey on own?,2023,11,3,Australia,AU,Queensland,-27.527208,153.092012,EPSG:4326 +HUMAN_OBSERVATION,bradylucas,1,,,2024,4,19,Australia,AU,Victoria,-38.836303,143.524482,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"Female ""Spectacle Eyes"" in Stringybark. At 6.30 am, she was being harassed by Sulphur Crested Cockatoos. Is she just sitting comfortably or is she holding something in her arms?",2021,10,22,Australia,AU,New South Wales,-30.520925,151.518926,EPSG:4326 +HUMAN_OBSERVATION,jseilsmuscat,1,,,2021,11,4,Australia,AU,Queensland,-27.87286,153.078042,EPSG:4326 +HUMAN_OBSERVATION,swampycreek,1,,,2022,2,17,Australia,AU,Queensland,-27.339159,152.613349,EPSG:4326 +HUMAN_OBSERVATION,ginalouise2023,1,,,2024,10,16,Australia,AU,South Australia,-35.004125,138.648814,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,4,19,Australia,AU,South Australia,-35.009201,138.652201,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unhealthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2024,8,26,Australia,AU,Queensland,-26.157177,151.802522,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Koala spotted by Rachel Grant,2024,8,4,Australia,AU,Queensland,-27.635536,152.892727,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2020,12,18,Australia,AU,New South Wales,-28.257925,153.400586,EPSG:4326 +HUMAN_OBSERVATION,ninjajuju,1,MALE,,2022,9,25,Australia,AU,Queensland,-27.544032,152.857309,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,11,26,Australia,AU,Victoria,-38.671367,146.164064,EPSG:4326 +HUMAN_OBSERVATION,Scott Rolph,1,,,2022,7,19,Australia,AU,Victoria,-38.31852,142.363663,EPSG:4326 +HUMAN_OBSERVATION,rodneya63,1,,,2022,3,27,Australia,AU,Queensland,-27.545217,153.050485,EPSG:4326 +HUMAN_OBSERVATION,g00ru,1,,,2022,2,13,Australia,AU,Queensland,-27.251092,153.074647,EPSG:4326 +HUMAN_OBSERVATION,lisaw1012,1,,,2022,9,6,Australia,AU,Queensland,-27.655167,152.897749,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,Tagged Female,2024,6,2,Australia,AU,Queensland,-27.530315,153.103742,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Sport n rec picnic area,2024,3,9,Australia,AU,Queensland,-27.525714,153.092368,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2023,7,13,Australia,AU,Queensland,-27.553178,153.052702,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,6,18,Australia,AU,New South Wales,-33.076681,151.095387,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,10,20,Australia,AU,South Australia,-34.903199,138.703036,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,MALE,KB Casuarina.,2021,12,23,Australia,AU,Victoria,-38.178428,145.134481,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,3,25,Australia,AU,Queensland,-27.33318,152.613512,EPSG:4326 +HUMAN_OBSERVATION,fleursie,1,,,2022,7,30,Australia,AU,Queensland,-27.49027,153.244963,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum Naomi & joey,2022,12,2,Australia,AU,Queensland,-27.530601,153.104619,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,5,17,Australia,AU,South Australia,-35.00581,138.658549,EPSG:4326 +HUMAN_OBSERVATION,Melissa Abdallah,1,,,2022,10,1,Australia,AU,New South Wales,-34.756192,146.56917,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,Photo brett neylan,2021,1,2,Australia,AU,Victoria,-37.55572,149.757193,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,24,Australia,AU,Queensland,-27.527076,153.090705,EPSG:4326 +HUMAN_OBSERVATION,georgiescott,1,,,2023,11,17,Australia,AU,Queensland,-27.423007,152.619301,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree near main Admin block,2023,5,23,Australia,AU,Queensland,-27.526777,153.09184,EPSG:4326 +HUMAN_OBSERVATION,franhills,1,,,2024,7,23,Australia,AU,South Australia,-34.959648,138.693111,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2024,7,28,Australia,AU,New South Wales,-28.253992,153.376953,EPSG:4326 +HUMAN_OBSERVATION,Anton Citizen,1,,,2023,12,24,Australia,AU,Victoria,-37.561342,149.759338,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2024,8,12,Australia,AU,South Australia,-34.953701,138.681166,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,11,9,Australia,AU,Queensland,-27.525845,153.091829,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,10,Australia,AU,Queensland,-27.525581,153.090459,EPSG:4326 +HUMAN_OBSERVATION,Dr. Jessa Thurman,1,,,2022,4,3,Australia,AU,South Australia,-35.004181,138.646775,EPSG:4326 +HUMAN_OBSERVATION,michikomarty,1,,,2021,11,28,Australia,AU,Queensland,-27.715529,151.523032,EPSG:4326 +HUMAN_OBSERVATION,biancacar,1,,,2024,5,10,Australia,AU,Victoria,-38.131067,145.268312,EPSG:4326 +HUMAN_OBSERVATION,John Brandon,1,,,2021,11,27,Australia,AU,Victoria,-37.236611,143.205358,EPSG:4326 +HUMAN_OBSERVATION,Kylie Agnew-Francis,1,,,2022,7,10,Australia,AU,Queensland,-27.507092,153.079803,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"10 year old male, body score of 2. Dirty bum. Was rescued.",2023,8,16,Australia,AU,Queensland,-27.48468,152.95613,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,12,Australia,AU,South Australia,-34.89203,138.713738,EPSG:4326 +HUMAN_OBSERVATION,Hanneke Nooren,1,,,2023,10,6,Australia,AU,Queensland,-27.496246,152.2462,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,12,30,Australia,AU,Victoria,-38.671453,146.163833,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,13,Australia,AU,Queensland,-27.506659,153.078733,EPSG:4326 +HUMAN_OBSERVATION,Oliver C. Stringham,1,,,2020,7,25,Australia,AU,South Australia,-34.903095,138.702378,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Male, red ear tag left side. Alert possibly inflamed eyes.",2023,2,15,Australia,AU,Queensland,-27.83827,153.371553,EPSG:4326 +HUMAN_OBSERVATION,colbs24,1,,,2024,10,3,Australia,AU,Queensland,-27.70249,153.19228,EPSG:4326 +HUMAN_OBSERVATION,Olivia,1,,,2024,9,30,Australia,AU,Queensland,-27.487678,152.545586,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,13,Australia,AU,Queensland,-27.529063,153.106891,EPSG:4326 +HUMAN_OBSERVATION,julespetroff,1,MALE,,2020,8,14,Australia,AU,New South Wales,-28.682415,153.30297,EPSG:4326 +HUMAN_OBSERVATION,Tim Henderson,1,,,2023,1,18,Australia,AU,Victoria,-38.497969,145.940688,EPSG:4326 +HUMAN_OBSERVATION,sporopat,1,,Two individuals; not in a pine tree despite appearances!,2022,1,24,Australia,AU,Victoria,-37.580437,144.1167,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Tree next to the tree trough at the water tank Tagged,2022,12,8,Australia,AU,Queensland,-27.546016,153.072994,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,,This female koala seems to have a joey in pouch. Markings on its nose indicate it is the same female with a joey on its back 08/01/2020. It has been observed in the area over the last 4 days.,2021,7,5,Australia,AU,Queensland,-28.174268,152.906531,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Koala scratches seen on several trees in this area. Same area, different trees.",2020,7,29,Australia,AU,New South Wales,-28.260621,153.404879,EPSG:4326 +HUMAN_OBSERVATION,Lana Waller,1,,,2023,9,27,Australia,AU,Queensland,-27.29965,152.517013,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,MALE,"This is an episode in the life of a male koala early in the breeding season. I know this is a male because his white markings make him easily recognisable, and I've seen his gear on another occasion. First photo, he arrives at a really good food tree just after midnight (koalas do a lot of their feeding at night). Photos 2 & 3, he climbs up to the canopy. Photo 4, less than 3 hours later he is coming down the tree, very focussed on something happening further down the road. Photo 5, he steps onto the ground without taking his gaze off something in the distance - in actual fact it is probably something he has scented or heard. Photo 6, he's on the bank of the road, still very focussed. In the following video (too dark to take any useful frames from) he was galloping at full tilt down the road to deal with the problem, which is almost certainly another male who has intruded into his territory. This is why I love using wildlife cameras.",2021,9,17,Australia,AU,Queensland,-27.49628,152.247078,EPSG:4326 +HUMAN_OBSERVATION,Emma,1,,,2023,1,13,Australia,AU,Victoria,-37.177728,144.705733,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2021,9,10,Australia,AU,South Australia,-35.00531,138.753152,EPSG:4326 +HUMAN_OBSERVATION,Toni Waterhouse,1,,,2022,1,15,Australia,AU,South Australia,-34.9436,138.789047,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"Roadside location of koala, more clearly seen in following photo. Possibly ""Fluffy Eared Mum"" (but cannot tell whether she has a baby this year). In E. caliginosa.",2020,10,4,Australia,AU,New South Wales,-30.524561,151.520753,EPSG:4326 +HUMAN_OBSERVATION,Stephen Cox,1,,,2024,1,5,Australia,AU,Victoria,-38.315184,142.367254,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,2,3,Australia,AU,Queensland,-27.545934,153.072922,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2024,7,5,Australia,AU,Queensland,-27.525125,153.050307,EPSG:4326 +HUMAN_OBSERVATION,carolynavaisabel,1,,,2022,10,28,Australia,AU,South Australia,-35.008107,138.635211,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,21,Australia,AU,Queensland,-27.526957,153.09047,EPSG:4326 +HUMAN_OBSERVATION,maxicole,1,,"Koala spotting walk with Jo, Alison and friends from UK",2024,7,21,Australia,AU,Queensland,-27.529062,153.103722,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,23,Australia,AU,Queensland,-27.710726,151.642793,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,In Eucalyptus tereticornis,2024,10,14,Australia,AU,Queensland,-28.166618,152.599944,EPSG:4326 +HUMAN_OBSERVATION,donnamareetomkinson,1,,Last photo added as it had the co-ordinates in it. Could not get a photo of is face.,2023,12,26,Australia,AU,Queensland,-26.500173,152.6285,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,,"Juvenile Koala sleeping in the fork of a paper bark at Amity Point, Minjerribah",2022,7,23,Australia,AU,Queensland,-27.400882,153.437402,EPSG:4326 +HUMAN_OBSERVATION,eweir95,1,FEMALE,Baby on chest,2020,5,27,Australia,AU,Queensland,-27.500875,153.084855,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Deceased. Fatal dog attack. Observed by Wendy Taylor. Submitted via msg.,2024,7,4,Australia,AU,Queensland,-26.172705,151.687926,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2023,12,10,Australia,AU,Queensland,-27.527123,153.092009,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,29,Australia,AU,South Australia,-34.891488,138.713176,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,28,Australia,AU,Queensland,-27.54559,153.072071,EPSG:4326 +HUMAN_OBSERVATION,rocksforwildlife,1,MALE,,2022,10,24,Australia,AU,Queensland,-27.909124,153.375637,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,Mother and joey,2024,11,12,Australia,AU,Queensland,-27.696353,151.595597,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Scat,2021,10,12,Australia,AU,Victoria,-37.586998,143.883751,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2021,1,2,Australia,AU,Queensland,-27.544695,153.068724,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,12,Australia,AU,Queensland,-27.530151,153.103681,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tree next to E block Next to emergency assembly point E sign Maisie yellow tag right ear,2023,7,22,Australia,AU,Queensland,-27.526502,153.090681,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,17,Australia,AU,South Australia,-34.892094,138.719491,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,We’ve seen him or her already a week ago in the same tree. Seems to enjoy the open view there 😎🐨,2021,9,4,Australia,AU,Queensland,-27.516995,153.083375,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2020,1,2,Australia,AU,Victoria,-35.921813,145.673902,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,18,Australia,AU,Queensland,-27.526846,153.090457,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In triangle near cafeteria,2024,4,1,Australia,AU,Queensland,-27.527066,153.092151,EPSG:4326 +HUMAN_OBSERVATION,Queensland Trust for Nature,1,FEMALE,taken into care,2023,11,8,Australia,AU,Queensland,-27.801148,152.781286,EPSG:4326 +HUMAN_OBSERVATION,HR Nature,1,,Two Koalas identified on the North-west ridge of Passchendaele State Forest using thermal drone. RE = 13.12.2. Further video / information is available upon request.,2024,6,8,Australia,AU,Queensland,-28.5302,151.8244,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2024,3,24,Australia,AU,Queensland,-27.528173,153.092268,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,,2022,8,6,Australia,AU,New South Wales,-34.758925,146.567409,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near e block Jaye Mallet #1075,2023,10,30,Australia,AU,Queensland,-27.526262,153.090683,EPSG:4326 +HUMAN_OBSERVATION,kmill91,1,MALE,This boy was recorded eating moss. Another way to get water or something else ?,2022,6,2,Australia,AU,New South Wales,-31.187142,150.165532,EPSG:4326 +HUMAN_OBSERVATION,jwill9876,1,,,2022,11,23,Australia,AU,Queensland,-27.547378,153.055198,EPSG:4326 +HUMAN_OBSERVATION,Adam Richardt,1,,,2021,5,3,Australia,AU,Queensland,-27.507982,153.082279,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,9,Australia,AU,South Australia,-34.886713,138.730268,EPSG:4326 +HUMAN_OBSERVATION,ecka11,1,,,2024,10,15,Australia,AU,Queensland,-27.275622,152.935167,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Healthy looking Koala sitting in Brush Box tree.,2020,5,25,Australia,AU,New South Wales,-28.257882,153.400729,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,3,Australia,AU,Queensland,-27.52679,153.090803,EPSG:4326 +HUMAN_OBSERVATION,Nicole,1,,,2021,10,6,Australia,AU,South Australia,-35.030553,138.576049,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,10,5,Australia,AU,Queensland,-27.545162,153.059122,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2021,10,3,Australia,AU,Queensland,-27.564039,152.108078,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,30,Australia,AU,Queensland,-27.527898,153.092867,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male koala mid in redgum,2023,11,21,Australia,AU,Victoria,-37.874278,144.290695,EPSG:4326 +HUMAN_OBSERVATION,Deborah S Kent,1,,Initially seen on ground near grassed trail. Climbed small casuarinia tree.,2024,10,31,Australia,AU,New South Wales,-30.475892,152.883375,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,13,Australia,AU,Queensland,-27.50711,153.079585,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Spectacle Eyes"" female in large stringybark. Hot afternoon. Up high in canopy in second of pair of trees which ""Bald Ear"" is guarding lower down.",2020,11,28,Australia,AU,New South Wales,-30.520446,151.519282,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2023,5,30,Australia,AU,Queensland,-27.551609,153.057821,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Emily with her Joey. Tag 3143,2024,8,10,Australia,AU,Queensland,-27.545974,153.073731,EPSG:4326 +HUMAN_OBSERVATION,bernwilde,1,,,2023,9,2,Australia,AU,New South Wales,-30.877933,153.072748,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,12.9-10.7 in a Gum topped box.,2023,6,3,Australia,AU,Queensland,-27.638197,152.046351,EPSG:4326 +HUMAN_OBSERVATION,calebjmallet,1,,,2024,10,16,Australia,AU,South Australia,-35.10314,138.751443,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,2,10,Australia,AU,Queensland,-27.527252,153.091592,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,5,20,Australia,AU,Queensland,-27.901581,153.366524,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,8,31,Australia,AU,South Australia,-34.891162,138.712229,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Photo Sylvia Hockin - 12.8.14 in a Yellow box, Eucalyptus melliodora",2023,10,14,Australia,AU,Queensland,-27.678507,151.990985,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,12,24,Australia,AU,Victoria,-37.591214,143.882973,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,,2022,8,12,Australia,AU,Victoria,-38.137973,145.283107,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,8,15,Australia,AU,Queensland,-27.549157,153.05962,EPSG:4326 +HUMAN_OBSERVATION,Goshi,1,MALE,Roadkill Princes Highway male,2022,3,21,Australia,AU,Victoria,-38.253989,143.268697,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,2,10,Australia,AU,Queensland,-27.527796,153.111702,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Female. Healthy. Named Maxine. Wildlife Carers were called due to concern for the koalas welfare as the residents dogs are kept outside. She was caught and released in a safe area. Maxine was found at Meier's Rd Crawford and was released on Karingal Rd off Crawford Booie Rd in a plantation. Location recorded in the release site. Observed by Wendy Taylor. Submitted by Denise Shaw via email,2023,10,24,Australia,AU,Queensland,-26.484234,151.876363,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Koala and Joey in unknown tree,2020,7,13,Australia,AU,Queensland,-27.550375,153.062811,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,OSBert,2021,8,19,Australia,AU,Queensland,-27.526007,153.048478,EPSG:4326 +HUMAN_OBSERVATION,Sam S,1,MALE,Heard 2 koalas night before calling- male and female. This may be the male in a tree 100 from previous record. Both in Manna gum trees,2024,3,17,Australia,AU,Victoria,-37.015095,145.457715,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2024,11,17,Australia,AU,South Australia,-34.9249,138.68953,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,With Joey in Dead tree feeding on young Tallowwood,2020,6,23,Australia,AU,Queensland,-27.550906,153.057567,EPSG:4326 +HUMAN_OBSERVATION,Karen Roberts,1,,,2024,4,12,Australia,AU,Queensland,-27.544068,152.857815,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,uni muma,2022,11,28,Australia,AU,Queensland,-27.542539,153.068505,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,20,Australia,AU,Queensland,-27.545227,153.072224,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,19,Australia,AU,Queensland,-27.527243,153.090934,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,31,Australia,AU,Queensland,-27.400673,153.438047,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear,2023,4,10,Australia,AU,Queensland,-27.53006,153.10501,EPSG:4326 +HUMAN_OBSERVATION,Troy Watson,1,,,2024,5,22,Australia,AU,South Australia,-34.812769,135.780284,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark species,2021,9,21,Australia,AU,Queensland,-27.552254,153.056515,EPSG:4326 +HUMAN_OBSERVATION,jillwilliams,1,,,2023,12,21,Australia,AU,Victoria,-37.262288,144.125305,EPSG:4326 +HUMAN_OBSERVATION,samiam1970,1,,,2023,10,9,Australia,AU,Victoria,-38.626347,145.731903,EPSG:4326 +HUMAN_OBSERVATION,oliverji,1,,,2021,2,11,Australia,AU,South Australia,-35.081836,138.584045,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Released from care. Observed by Wendy Taylor. Submitted via msg. Groundsman stated he had seen another koala at the golf course a couple days prior. Rescue record: https://www.inaturalist.org/observations/248381911,2024,10,22,Australia,AU,Queensland,-26.1571,152.058258,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,FEMALE,,2022,12,17,Australia,AU,Queensland,-27.530077,153.101739,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,In Eucalyptus nichollii.,2020,5,29,Australia,AU,Victoria,-38.6713,146.16417,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Stringybark,2020,7,21,Australia,AU,Queensland,-27.549054,153.050763,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,"2 beautiful grown up koalas spotted on the same massive eucalyptus at Tillack Park, Brisbane.",2021,11,21,Australia,AU,Queensland,-27.531445,153.10519,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"First 2 photos taken early, remainder taken later on return walk (10.30am)",2023,8,14,Australia,AU,Queensland,-27.527268,153.102264,EPSG:4326 +HUMAN_OBSERVATION,rordale,1,,,2021,10,10,Australia,AU,Queensland,-27.262701,152.063002,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2024,3,17,Australia,AU,Queensland,-27.527737,153.093174,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,Female koala joey 2023 of Robin we call her RJ.,2024,11,6,Australia,AU,Queensland,-27.413938,152.003128,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,Same male/location as 24/08/24 Healthy male,2024,9,5,Australia,AU,Queensland,-27.169942,152.9888,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,5,Australia,AU,South Australia,-34.891983,138.719906,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,24,Australia,AU,Queensland,-27.527144,153.091778,EPSG:4326 +HUMAN_OBSERVATION,koala54,1,,,2020,4,25,Australia,AU,South Australia,-34.897553,138.694987,EPSG:4326 +HUMAN_OBSERVATION,Aaron Bean,1,,,2021,12,28,Australia,AU,Queensland,-27.594162,152.27656,EPSG:4326 +HUMAN_OBSERVATION,Mark Hura,1,,,2020,7,2,Australia,AU,South Australia,-35.982855,137.021941,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,24,Australia,AU,South Australia,-34.891724,138.716457,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,,,2022,10,16,Australia,AU,Queensland,-27.458381,152.403247,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male,2024,11,9,Australia,AU,Queensland,-27.524529,153.111573,EPSG:4326 +HUMAN_OBSERVATION,carrierisley,1,,"Healthy looking and very active. In garden, only 2 big gums in vicinity, maybe 300mtres to next big gums",2022,1,15,Australia,AU,New South Wales,-32.565188,151.790265,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,,2024,10,20,Australia,AU,Queensland,-27.497778,153.399593,EPSG:4326 +HUMAN_OBSERVATION,Jo Burrows,1,,,2020,6,7,Australia,AU,Queensland,-27.226759,153.068256,EPSG:4326 +HUMAN_OBSERVATION,Stephen Csurhes,1,,In blue gums i planted in 1987,2023,10,10,Australia,AU,Queensland,-27.544398,153.10274,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,15,Australia,AU,Queensland,-27.526714,153.091527,EPSG:4326 +HUMAN_OBSERVATION,kymelen,1,,,2021,10,23,Australia,AU,Victoria,-35.87115,145.320745,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,5,Australia,AU,Queensland,-27.527163,153.090794,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,MALE,,2024,6,9,Australia,AU,Queensland,-28.280231,152.869001,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,2,Australia,AU,Queensland,-27.526951,153.107594,EPSG:4326 +HUMAN_OBSERVATION,Ken Hurley,1,,,2022,1,9,Australia,AU,South Australia,-34.903124,138.703999,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,22,Australia,AU,Queensland,-27.52947,153.103743,EPSG:4326 +HUMAN_OBSERVATION,insiderelic,1,,,2021,1,10,Australia,AU,South Australia,-34.862885,138.718528,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,22,Australia,AU,Queensland,-27.529355,153.105087,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"This is the same koala I reported yesterday at this location. Now very certain it is male. Today you can see the scent patch on his chest, he's been grunting during the night and today and one of the photos shows even more.",2022,2,5,Australia,AU,Victoria,-37.874648,142.291032,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,,2024,10,5,Australia,AU,Queensland,-27.529111,153.111619,EPSG:4326 +HUMAN_OBSERVATION,bjbmmt,1,,,2023,1,11,Australia,AU,Victoria,-38.239525,141.639678,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,8,11,Australia,AU,Queensland,-27.52629,153.09007,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2022,10,30,Australia,AU,Queensland,-27.509067,153.086288,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,no apparently ear tags seen.,2024,9,10,Australia,AU,Queensland,-27.510478,153.069625,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,Probably calling from same tree as prev night.,2023,8,21,Australia,AU,Queensland,-27.510536,153.06993,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,3,Australia,AU,South Australia,-34.892519,138.714472,EPSG:4326 +HUMAN_OBSERVATION,johjesse,1,,"Young juvenile, in tree next to mother",2024,3,25,Australia,AU,Queensland,-27.300201,152.042182,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,2,25,Australia,AU,New South Wales,-28.260291,153.400636,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Mom & Joey,2022,11,8,Australia,AU,Queensland,-27.510579,153.083243,EPSG:4326 +HUMAN_OBSERVATION,Jade Gilburt,1,,,2024,4,10,Australia,AU,Victoria,-38.404854,145.381165,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,Female and Joey,2021,12,18,Australia,AU,Queensland,-27.530272,153.104176,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near admin building and cafeteria and cleaning donga,2023,7,15,Australia,AU,Queensland,-27.526976,153.091813,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,12,23,Australia,AU,Queensland,-27.510157,153.087792,EPSG:4326 +HUMAN_OBSERVATION,insiderelic,1,,,2020,12,12,Australia,AU,South Australia,-34.97715,138.709194,EPSG:4326 +HUMAN_OBSERVATION,slamshed,1,MALE,,2024,7,23,Australia,AU,Queensland,-27.532723,152.47312,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.9249,147.729233,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,12,Australia,AU,Queensland,-27.547597,153.058597,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania and Wisteria woodland- front near fence of second Cindy Crawford and joey,2023,8,22,Australia,AU,Queensland,-27.524249,153.093069,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey Ironbark,2023,12,10,Australia,AU,Queensland,-27.526073,153.04853,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In woodland area - next to Seton College fence by blue bin,2023,7,16,Australia,AU,Queensland,-27.528526,153.092526,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Very young joey close to the road,2023,6,6,Australia,AU,Queensland,-27.516758,153.083711,EPSG:4326 +HUMAN_OBSERVATION,brendanjh,1,,,2024,8,10,Australia,AU,Queensland,-27.2231,153.069214,EPSG:4326 +HUMAN_OBSERVATION,David Sykes,1,MALE,Red Tag on left ear.,2021,10,13,Australia,AU,Queensland,-28.011401,153.263896,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,RJ and Robin in a Eucalyptus Microcorys,2023,11,7,Australia,AU,Queensland,-27.413778,152.003068,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In Woodland gully mating tree,2024,10,12,Australia,AU,Queensland,-27.527402,153.092379,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2022,6,24,Australia,AU,Queensland,-27.304094,152.996658,EPSG:4326 +HUMAN_OBSERVATION,trevorpescott,1,,,2020,6,27,Australia,AU,Victoria,-38.397681,144.008876,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,Koala 13313,2021,2,23,Australia,AU,Queensland,-27.528297,153.112122,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2023,11,22,Australia,AU,Queensland,-27.40702,152.619278,EPSG:4326 +HUMAN_OBSERVATION,michikomarty,1,,Thanks Tracey Yarran Farming,2021,11,28,Australia,AU,Queensland,-27.708995,151.508785,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Hard to see.,2023,8,4,Australia,AU,Queensland,-27.257097,152.046419,EPSG:4326 +HUMAN_OBSERVATION,riazoeller,1,,,2023,8,8,Australia,AU,Queensland,-27.706331,153.085995,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,,2023,1,1,Australia,AU,Queensland,-27.526112,153.092976,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2023,12,29,Australia,AU,South Australia,-34.872116,138.71844,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area Another koala close by in next tree,2023,11,19,Australia,AU,Queensland,-27.528156,153.092362,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,1,Australia,AU,Queensland,-27.547892,153.045624,EPSG:4326 +HUMAN_OBSERVATION,Sue Brabender,1,,"Very large male Koala also in The Briars Wildlife Sanctuary, approx 200 metres from female seen a few days prior.",2021,6,2,Australia,AU,Victoria,-38.267438,145.047765,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,E.microcorys.,2021,3,13,Australia,AU,Queensland,-27.538292,153.061625,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,15,Australia,AU,Queensland,-27.526523,153.090779,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,20,Australia,AU,Queensland,-27.527631,153.102782,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey,2024,3,23,Australia,AU,Queensland,-27.530113,153.103462,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2021,1,1,Australia,AU,Victoria,-37.924674,147.729966,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,12,Australia,AU,Queensland,-27.52717,153.10933,EPSG:4326 +HUMAN_OBSERVATION,scottfox73,1,,,2024,7,13,Australia,AU,Queensland,-27.913463,153.374253,EPSG:4326 +HUMAN_OBSERVATION,Ryan Harvey,1,,,2024,11,6,Australia,AU,New South Wales,-31.926603,152.361575,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,3,23,Australia,AU,Queensland,-27.52843,153.103311,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2021,3,7,Australia,AU,Queensland,-27.547984,153.058262,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Opposite side of tennis courts,2024,10,12,Australia,AU,Queensland,-27.525322,153.093411,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Koala observed high in tree by Jackie, photo taken on mobile phone.",2022,11,17,Australia,AU,New South Wales,-28.268857,153.392744,EPSG:4326 +HUMAN_OBSERVATION,mad_exotics_and_reptile_care,1,,"Kayaking along Cooby Dam, QLD, Wildlife Observations; sited multiple Koala (phascolarctidae) in 3 trees along bank. Koala 1",2023,1,22,Australia,AU,Queensland,-27.38928,151.948992,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male in lower branch & Edith (pale blue tag) up higher,2023,2,27,Australia,AU,Queensland,-27.527349,153.112677,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,,2021,5,21,Australia,AU,New South Wales,-28.260532,153.400089,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear - known as Buster,2024,10,29,Australia,AU,Queensland,-27.529467,153.103633,EPSG:4326 +HUMAN_OBSERVATION,Dafne,1,,,2024,11,6,Australia,AU,Queensland,-27.55248,153.054717,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,7,25,Australia,AU,Queensland,-27.583787,153.151142,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,3,Australia,AU,Queensland,-27.525062,153.11164,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,3,2,Australia,AU,Queensland,-27.550114,153.052911,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Right at the top of an old red river gum,2022,9,4,Australia,AU,New South Wales,-34.755858,146.590622,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,5,Australia,AU,Queensland,-27.545779,153.072827,EPSG:4326 +HUMAN_OBSERVATION,kschnipp,1,,,2024,11,18,Australia,AU,Victoria,-37.925195,147.722472,EPSG:4326 +HUMAN_OBSERVATION,danicalockett,1,,,2021,11,2,Australia,AU,Victoria,-38.479161,146.772294,EPSG:4326 +HUMAN_OBSERVATION,itsabugslife,1,,,2023,2,4,Australia,AU,Victoria,-37.921407,147.747701,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery- mother and joey Maisie - yellow tag right ear,2023,11,3,Australia,AU,Queensland,-27.52738,153.091095,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,24,Australia,AU,Queensland,-27.527514,153.102853,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,10,18,Australia,AU,South Australia,-34.892402,138.722008,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" Male, identifiable by notch in ear, in small E. blakelyi",2020,4,12,Australia,AU,New South Wales,-30.52016,151.520646,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,google imaged and compared. might be wrong.,2024,3,16,Australia,AU,Victoria,-37.750769,143.904191,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,26,Australia,AU,Queensland,-27.526936,153.090846,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,18,Australia,AU,Queensland,-27.527294,153.109524,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,High in tree next to the council access road,2023,8,16,Australia,AU,Queensland,-27.531783,153.099679,EPSG:4326 +HUMAN_OBSERVATION,northcoastlouie,1,,,2024,1,3,Australia,AU,Victoria,-37.784724,145.592343,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Fresh and older Koala markings. FoN survey Tarkeeth1,2023,10,8,Australia,AU,New South Wales,-30.496828,152.914886,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Scats found around large E.teriticornis with clear scratch markings,2022,4,2,Australia,AU,Queensland,-27.889094,152.62059,EPSG:4326 +HUMAN_OBSERVATION,jonathan_tickner,1,,,2021,4,15,Australia,AU,Victoria,-38.766176,143.606044,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,9,23,Australia,AU,Queensland,-27.719555,151.520538,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Up from Aldi gates near green sheds,2023,12,24,Australia,AU,Queensland,-27.526533,153.092744,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,9,5,Australia,AU,Victoria,-38.67122,146.163783,EPSG:4326 +HUMAN_OBSERVATION,aussie_nate,1,,,2021,12,30,Australia,AU,Queensland,-28.262045,152.076072,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,10,31,Australia,AU,Victoria,-38.67155,146.164003,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male,2024,5,24,Australia,AU,Queensland,-27.528943,153.106724,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,10,19,Australia,AU,Queensland,-27.528313,153.0926,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,,2022,6,27,Australia,AU,Queensland,-27.170367,152.988983,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,9,24,Australia,AU,Queensland,-27.397156,153.43875,EPSG:4326 +HUMAN_OBSERVATION,Hanneke Nooren,1,,LCA3104 Confirmed as koala scat by OWAD Environment,2022,10,1,Australia,AU,Queensland,-27.514409,152.153226,EPSG:4326 +HUMAN_OBSERVATION,persicorum,1,,,2021,1,19,Australia,AU,Queensland,-27.149764,152.88618,EPSG:4326 +HUMAN_OBSERVATION,nicholascroft,1,,"White's Hill Reserve. Adult, active.",2024,10,22,Australia,AU,Queensland,-27.511106,153.087792,EPSG:4326 +HUMAN_OBSERVATION,matonman,1,,,2023,8,27,Australia,AU,Victoria,-37.331544,144.108355,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,1,16,Australia,AU,Queensland,-27.529617,153.1047,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Koala seen high in trees.,2020,12,1,Australia,AU,New South Wales,-28.264354,153.395449,EPSG:4326 +HUMAN_OBSERVATION,BushLook,1,,Recent scats.,2024,5,7,Australia,AU,Victoria,-37.643178,143.895934,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,5,Australia,AU,South Australia,-34.889988,138.729822,EPSG:4326 +HUMAN_OBSERVATION,davidm64,1,,,2022,1,15,Australia,AU,Queensland,-27.528558,153.10405,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,3,19,Australia,AU,Queensland,-27.550933,153.057863,EPSG:4326 +HUMAN_OBSERVATION,Todd Burrows,1,,,2024,11,11,Australia,AU,Queensland,-28.22824,153.119322,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,1,9,Australia,AU,Queensland,-27.507144,153.078256,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female. Decease. Vehicle incident. Observed by Michelle Colbran. Submitted by Wendy Taylor via msg & FB.,2024,10,2,Australia,AU,Queensland,-26.271015,152.025119,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,2,11,Australia,AU,Queensland,-27.52724,153.091617,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,2 of 2 koalas seen sharing same tree.,2023,8,6,Australia,AU,Queensland,-27.28444,153.000997,EPSG:4326 +HUMAN_OBSERVATION,Isaac Clarey,1,,,2021,10,8,Australia,AU,Victoria,-37.529232,149.739368,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2023,9,6,Australia,AU,Queensland,-27.526955,153.107824,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,9,12,Australia,AU,Queensland,-27.527083,153.108151,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,15,Australia,AU,Queensland,-27.525635,153.092754,EPSG:4326 +HUMAN_OBSERVATION,Taylor,1,,,2020,11,29,Australia,AU,South Australia,-34.900667,138.706536,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,31,Australia,AU,South Australia,-34.887659,138.733676,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear Possibly Cindy - near where she was yesterday,2023,4,18,Australia,AU,Queensland,-27.527258,153.108136,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Tristania & Wisteria Woodland Jacob Jnr,2024,10,12,Australia,AU,Queensland,-27.524062,153.093224,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,4,21,Australia,AU,Queensland,-27.527683,153.092991,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,6,Australia,AU,Queensland,-26.166207,151.815574,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,27,Australia,AU,Queensland,-27.400768,153.437883,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2023,1,2,Australia,AU,Queensland,-27.733776,153.102091,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2023,10,31,Australia,AU,Queensland,-27.52571,153.092198,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,11,7,Australia,AU,Queensland,-26.177958,151.691441,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult Female with Joey. Healthy. Observed by Jason Ford. Submitted via email.,2022,10,25,Australia,AU,Queensland,-26.571833,151.825397,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,2,18,Australia,AU,Queensland,-27.527593,153.090979,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Healthy koala sitting in Brush Box tree.,2020,5,1,Australia,AU,New South Wales,-28.258145,153.400672,EPSG:4326 +HUMAN_OBSERVATION,aymeedowell,1,,,2024,11,12,Australia,AU,Queensland,-26.669784,153.058054,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,8,11,Australia,AU,New South Wales,-28.252413,153.375948,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree near lower cav road car park- and on edge of e block picnic area,2023,12,16,Australia,AU,Queensland,-27.525669,153.090383,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,4,2,Australia,AU,New South Wales,-28.258787,153.402218,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Sport n rec picnic area Jacob Jnr,2024,1,20,Australia,AU,Queensland,-27.525703,153.092219,EPSG:4326 +HUMAN_OBSERVATION,johjesse,1,,,2024,3,18,Australia,AU,Queensland,-27.297383,152.042572,EPSG:4326 +HUMAN_OBSERVATION,ametcalf,1,,"Young male koala with red left ear tag # 7968 spotted in tree with an adult female koala with a yellow tag and an adult male koala with a red tag, and one more nearby.",2024,10,29,Australia,AU,Queensland,-27.287694,152.997092,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,4,9,Australia,AU,New South Wales,-28.258315,153.400308,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,14,Australia,AU,Queensland,-27.528814,153.102948,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,7,Australia,AU,South Australia,-34.888703,138.727946,EPSG:4326 +HUMAN_OBSERVATION,SBERRY,1,,,2024,7,22,Australia,AU,Victoria,-38.250173,145.245743,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,8,Australia,AU,Queensland,-27.530222,153.103324,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Koala on Lawnton Pocket Rd. In close-up photo you can see the koala holding something close to it. May be a joey?,2024,7,14,Australia,AU,Queensland,-27.283942,152.999328,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"car strike, deceased",2022,1,2,Australia,AU,Victoria,-37.783594,144.030088,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,14,Australia,AU,South Australia,-34.892385,138.715775,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery Mother and joey,2023,10,12,Australia,AU,Queensland,-27.527176,153.092071,EPSG:4326 +HUMAN_OBSERVATION,Richard Fuller,1,,,2023,6,8,Australia,AU,Queensland,-27.518644,153.102858,EPSG:4326 +HUMAN_OBSERVATION,Belinda Copland,1,,,2023,10,13,Australia,AU,South Australia,-34.577778,138.752594,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,2,10,Australia,AU,Queensland,-27.591878,151.731676,EPSG:4326 +HUMAN_OBSERVATION,Si the guy,1,,,2023,9,28,Australia,AU,New South Wales,-29.790217,150.926671,EPSG:4326 +HUMAN_OBSERVATION,Lesley Hardiman,1,,,2020,10,15,Australia,AU,Queensland,-27.490642,153.248632,EPSG:4326 +HUMAN_OBSERVATION,Katherine Olive,1,,,2024,5,26,Australia,AU,Victoria,-38.522045,145.980821,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Male? Possible testicles visible? In tree near mowing shed,2023,5,21,Australia,AU,Queensland,-27.525902,153.090795,EPSG:4326 +HUMAN_OBSERVATION,Anton Citizen,1,,,2021,2,4,Australia,AU,Victoria,-38.180976,145.127718,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,8,6,Australia,AU,Queensland,-27.258115,152.045011,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,3,Australia,AU,South Australia,-34.891931,138.719748,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Opposite tennis courts,2024,10,6,Australia,AU,Queensland,-27.525415,153.093349,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - red tag A5 - Cindy,2023,10,23,Australia,AU,Queensland,-27.526988,153.109074,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male,2023,10,28,Australia,AU,Queensland,-27.52789,153.110492,EPSG:4326 +HUMAN_OBSERVATION,Helen,1,,,2022,5,8,Australia,AU,Victoria,-38.062705,141.92469,EPSG:4326 +HUMAN_OBSERVATION,regan_scheuber,1,,Not the most accommodating pose.,2024,5,4,Australia,AU,Queensland,-28.122587,153.230035,EPSG:4326 +HUMAN_OBSERVATION,Mike and Cathy Beamish,1,,Photo credit - John Cooper.,2021,12,28,Australia,AU,Victoria,-38.376706,146.15552,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2023,8,30,Australia,AU,Queensland,-27.987487,152.943459,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,10,18,Australia,AU,South Australia,-34.730751,138.854726,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic gully area near Aldi gates,2024,3,17,Australia,AU,Queensland,-27.526111,153.092953,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear,2023,10,31,Australia,AU,Queensland,-27.52954,153.105795,EPSG:4326 +HUMAN_OBSERVATION,bushmancam,1,,,2023,8,21,Australia,AU,Victoria,-38.83392,143.512987,EPSG:4326 +HUMAN_OBSERVATION,Pete Woodall,1,,1374,2022,11,19,Australia,AU,South Australia,-35.016328,138.671642,EPSG:4326 +HUMAN_OBSERVATION,dieselfraser,1,,He’s back. This is the King (Elvis). He’s the gnarly old male who has been coming to my yard for several years. Makes a hell of a lot of noise and poops on the deck with reckless abandon. Will note he is here at the same time as another much younger male (Javier). They’re in different trees that are opposite ends of the block.,2022,11,11,Australia,AU,Victoria,-38.825169,145.999328,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Submitted by Julz Farrell Alive, healthy, adult. Sex unknown",2020,7,8,Australia,AU,Queensland,-24.964662,151.131559,EPSG:4326 +HUMAN_OBSERVATION,Francesco Martoni,1,,,2020,2,26,Australia,AU,South Australia,-34.968982,138.637572,EPSG:4326 +HUMAN_OBSERVATION,Lauren Flohr,1,,,2022,10,3,Australia,AU,Queensland,-27.546422,152.859395,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. In a residential yard. Submitted by Wendy Taylor via msg,2024,2,17,Australia,AU,Queensland,-26.17693,151.691557,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,,2024,9,23,Australia,AU,Queensland,-27.545888,153.073225,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - green tag LEFT ear - Joe, known as Bozo",2023,11,15,Australia,AU,Queensland,-27.526759,153.109009,EPSG:4326 +HUMAN_OBSERVATION,Gen Robey,1,,From surveying by Paul Revie (Wildlife Qld) when looking for Brush Tailed Rock Wallabies. There were two koala sightings across different cameras. Not sure if one or two koalas.,2023,2,11,Australia,AU,Queensland,-28.22878,152.65998,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2021,1,13,Australia,AU,South Australia,-34.971265,138.638095,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2021,12,12,Australia,AU,Queensland,-27.56232,152.106493,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,10,Australia,AU,Queensland,-27.547872,153.058587,EPSG:4326 +HUMAN_OBSERVATION,Federico,1,,,2024,10,30,Australia,AU,Queensland,-27.909659,153.372843,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,5,1,Australia,AU,Queensland,-27.55151,153.058546,EPSG:4326 +HUMAN_OBSERVATION,pookies,1,,,2023,11,10,Australia,AU,Victoria,-37.521837,144.589112,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,Deceased on side of highway,2024,8,23,Australia,AU,Queensland,-27.714188,151.614137,EPSG:4326 +HUMAN_OBSERVATION,Tony Kent,1,,"Commonly seen moving along Tarcombe Rd, remanant vegetation corridor lniking bushland on Upton Hill with Hughes Creek.",2023,7,22,Australia,AU,Victoria,-36.934926,145.369622,EPSG:4326 +HUMAN_OBSERVATION,enekoazkue,1,,,2023,11,3,Australia,AU,New South Wales,-28.637385,153.629436,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe cavendish road,2023,12,14,Australia,AU,Queensland,-27.526907,153.090821,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,5,Australia,AU,South Australia,-34.886392,138.733345,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2023,6,20,Australia,AU,Queensland,-27.516902,153.085251,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,3,Australia,AU,South Australia,-34.88981,138.729161,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,6,30,Australia,AU,South Australia,-34.867792,138.65537,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Male koala in tree.,2024,9,8,Australia,AU,Queensland,-27.283761,152.998927,EPSG:4326 +HUMAN_OBSERVATION,jobrierley,1,,,2023,6,21,Australia,AU,Queensland,-28.163831,153.433583,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2024,7,4,Australia,AU,Queensland,-27.564797,153.102975,EPSG:4326 +HUMAN_OBSERVATION,knusperknie,1,,,2023,3,29,Australia,AU,Queensland,-27.521564,152.898685,EPSG:4326 +HUMAN_OBSERVATION,Lesley Hardiman,1,,,2020,9,23,Australia,AU,Queensland,-27.48931,153.249354,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Male. Rescued. Health assessed by vets for relocation. Observed by Wendy Taylor. Submitted via msg.,2024,8,5,Australia,AU,Queensland,-26.224376,151.947768,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. 1.5km Murgon side of Wondai on the rail trail. Observed by Trix Phelan. Submitted via phone & text.,2023,10,6,Australia,AU,Queensland,-26.307089,151.88144,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,1,23,Australia,AU,Queensland,-27.508682,153.081139,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear,2024,7,23,Australia,AU,Queensland,-27.529838,153.104005,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,30,Australia,AU,Queensland,-27.549146,153.072442,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - green tag RIGHT ear - ? Joy,2023,4,15,Australia,AU,Queensland,-27.526966,153.108296,EPSG:4326 +HUMAN_OBSERVATION,nicomollon,1,,,2024,10,23,Australia,AU,Queensland,-19.1273,146.86833,EPSG:4326 +HUMAN_OBSERVATION,Graham Reid,1,,,2020,8,2,Australia,AU,Queensland,-27.919428,153.376836,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside cleaners donga,2024,7,6,Australia,AU,Queensland,-27.526921,153.091822,EPSG:4326 +HUMAN_OBSERVATION,Michelle,1,,Mum koala. Joey is next observation,2021,9,9,Australia,AU,Queensland,-27.558822,153.042229,EPSG:4326 +HUMAN_OBSERVATION,timvincent2,1,,,2023,6,12,Australia,AU,Victoria,-38.271928,141.413637,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,7,28,Australia,AU,Queensland,-27.527966,153.092672,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,22,Australia,AU,Queensland,-27.526831,153.091275,EPSG:4326 +HUMAN_OBSERVATION,Ella Gaye,1,,Deceased. Could not tell gender due to decomposition/maggot activity,2023,3,13,Australia,AU,Victoria,-38.149385,145.22517,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Spotted Gum,2020,1,31,Australia,AU,Queensland,-27.552225,153.055609,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Last 2 pics taken a few hours later - koala was lower in the tree,2023,10,6,Australia,AU,Queensland,-27.527619,153.10285,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,With Joey in pouch and eating Tallowwood leaves,2023,5,27,Australia,AU,Queensland,-27.551479,153.057367,EPSG:4326 +HUMAN_OBSERVATION,Quoll,1,,Photo is slightly blurry as it was taken from the window of a moving car.,2023,12,29,Australia,AU,Victoria,-38.055603,141.543945,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,One of two related iNaturalist observations. This entry concerns the ADULT KOALA. Links to the related observations are as follows: - Adult koala https://inaturalist.ala.org.au/observations/198116622 - Juvenile koala https://inaturalist.ala.org.au/observations/198116692,2024,1,31,Australia,AU,Queensland,-27.510453,153.086131,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,11,Australia,AU,Queensland,-27.547352,153.073575,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,15,Australia,AU,Queensland,-27.545258,153.06039,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2023,11,24,Australia,AU,Queensland,-27.528801,153.112468,EPSG:4326 +HUMAN_OBSERVATION,Tricia Stewart,1,,,2021,9,15,Australia,AU,Victoria,-38.128422,145.273925,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,1,12,Australia,AU,Queensland,-27.52715,153.09105,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,18,Australia,AU,South Australia,-34.889972,138.72208,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,Koala and joey,2023,10,14,Australia,AU,Queensland,-27.530219,153.101334,EPSG:4326 +HUMAN_OBSERVATION,mikeahart,1,,,2024,4,1,Australia,AU,Victoria,-37.921857,147.728863,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,Koala resting in a tree,2020,1,24,Australia,AU,Queensland,-26.387775,153.027467,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2023,7,14,Australia,AU,Queensland,-27.226442,153.072681,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2021,1,20,Australia,AU,Queensland,-27.514196,153.080277,EPSG:4326 +HUMAN_OBSERVATION,Benjamin Schwartz,1,,,2023,9,17,Australia,AU,South Australia,-35.007122,138.658832,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Astrid Van Den Brink. Forwarded by email.,2020,4,29,Australia,AU,Queensland,-26.524044,152.01559,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2024,5,20,Australia,AU,Queensland,-27.527109,153.109257,EPSG:4326 +HUMAN_OBSERVATION,mikeahart,1,,,2024,4,1,Australia,AU,Victoria,-37.921857,147.728863,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,3,Australia,AU,South Australia,-34.890536,138.723099,EPSG:4326 +HUMAN_OBSERVATION,Dan Monceaux,1,,,2024,8,28,Australia,AU,South Australia,-34.875703,138.688567,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,5,20,Australia,AU,Queensland,-27.905575,153.371405,EPSG:4326 +HUMAN_OBSERVATION,Karin Cox,1,,,2021,10,24,Australia,AU,Queensland,-27.507443,153.0837,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,5,12,Australia,AU,Queensland,-27.526648,153.090398,EPSG:4326 +HUMAN_OBSERVATION,noddyblue,1,,,2023,11,5,Australia,AU,Victoria,-36.894458,145.425386,EPSG:4326 +HUMAN_OBSERVATION,Alexander Raffetto,1,,,2023,6,2,Australia,AU,South Australia,-35.96022,136.810517,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block,2024,5,6,Australia,AU,Queensland,-27.526638,153.090673,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,5,12,Australia,AU,Queensland,-27.525393,153.092626,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road near top welcome sign (nursery end),2023,6,25,Australia,AU,Queensland,-27.527353,153.090824,EPSG:4326 +HUMAN_OBSERVATION,wildsunni,1,,,2023,10,6,Australia,AU,New South Wales,-31.78285,152.710976,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2024,10,15,Australia,AU,Queensland,-27.513717,153.194503,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,,,2020,12,19,Australia,AU,Queensland,-28.597757,151.948116,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2024,9,30,Australia,AU,Victoria,-38.356062,146.386893,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,14,Australia,AU,Queensland,-27.52745,153.090973,EPSG:4326 +HUMAN_OBSERVATION,Tony Kent,1,,"Transiting Tarcombe Rd, stopover in house yard",2022,4,25,Australia,AU,Victoria,-36.93064,145.372448,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,12,Australia,AU,Queensland,-27.800312,151.594437,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,27,Australia,AU,South Australia,-34.887397,138.732293,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,6,13,Australia,AU,Queensland,-27.513983,153.08304,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,11,Australia,AU,Queensland,-27.528332,153.10344,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Koala observation by Margaret Watts Lavery- permission given to share with Toowoolba Koala and Wildlife Rescue. Road verge sighting.,2022,11,20,Australia,AU,Queensland,-27.424888,151.89471,EPSG:4326 +HUMAN_OBSERVATION,wabbot1,1,,Koala 2 metres of the ground at Binna Burra QLD appears to be a healthy animal.,2023,10,15,Australia,AU,Queensland,-28.172586,153.18903,EPSG:4326 +HUMAN_OBSERVATION,Ashwin Srinivasan,1,,,2023,7,12,Australia,AU,Queensland,-19.125192,146.869613,EPSG:4326 +HUMAN_OBSERVATION,philip-roetman,1,,,2021,10,22,Australia,AU,South Australia,-34.958902,138.669104,EPSG:4326 +HUMAN_OBSERVATION,ferteliza,1,,Tracks,2023,10,13,Australia,AU,New South Wales,-34.550587,150.07379,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Outside nursery Frank Rooney,2024,10,20,Australia,AU,Queensland,-27.527229,153.091233,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,3,Australia,AU,Queensland,-27.527116,153.092924,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,6,8,Australia,AU,Queensland,-27.52838,153.093553,EPSG:4326 +HUMAN_OBSERVATION,kristyn22,1,,,2023,11,23,Australia,AU,Queensland,-27.78888,152.77985,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Paperbark,2020,3,6,Australia,AU,Queensland,-27.551441,153.058136,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - purple tag LEFT ear - Carl, Naomi's 2021 joey",2024,7,1,Australia,AU,Queensland,-27.525604,153.111475,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,7,Australia,AU,Queensland,-27.527103,153.091736,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,5,20,Australia,AU,Queensland,-27.912762,153.373009,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,12,2,Australia,AU,New South Wales,-28.25518,153.378076,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag 1317 LEFT ear - Thor,2024,6,19,Australia,AU,Queensland,-27.527862,153.111794,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,6,Australia,AU,Queensland,-27.527159,153.090801,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,12,4,Australia,AU,Queensland,-27.568838,151.716587,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,14,Australia,AU,Queensland,-27.546128,153.073863,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,5,Australia,AU,South Australia,-34.892953,138.716967,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2024,7,6,Australia,AU,Queensland,-27.524989,153.048558,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside e block Female yellow tag left ear Maisie 0976,2024,2,17,Australia,AU,Queensland,-27.526323,153.090821,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey,2024,4,2,Australia,AU,Queensland,-27.530231,153.103279,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,9,14,Australia,AU,Queensland,-27.528547,153.09274,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,4,14,Australia,AU,Queensland,-27.525564,153.092058,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,,2024,4,2,Australia,AU,Queensland,-27.468856,153.42558,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,10,Australia,AU,Queensland,-27.523752,153.089296,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In lower car park entrance Front of TAFE Cavendish Road Male testicles visible,2024,1,4,Australia,AU,Queensland,-27.525449,153.090224,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Mother koala - baby in tree not far away,2023,3,14,Australia,AU,Queensland,-27.527165,153.092001,EPSG:4326 +HUMAN_OBSERVATION,alancrawford,1,,,2022,12,10,Australia,AU,Victoria,-37.34477,144.127472,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,11,30,Australia,AU,Victoria,-37.616456,143.898409,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of tafe cavendish road Maisie B,2024,7,7,Australia,AU,Queensland,-27.526777,153.0903,EPSG:4326 +HUMAN_OBSERVATION,holymay,1,,,2024,10,17,Australia,AU,Victoria,-38.77558,143.52182,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Bottom of woodland area Low in tree near gully,2023,11,4,Australia,AU,Queensland,-27.527732,153.093146,EPSG:4326 +HUMAN_OBSERVATION,footesea,1,,"Male koala, we’ve named Blinky Bill; this is part of the Pittsworth Koala Count. Next to a sorghum crop in the Toowoomba region.",2022,11,19,Australia,AU,Queensland,-27.800278,151.561233,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,22,Australia,AU,Queensland,-27.822649,152.991842,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey in same tree but well apart,2023,10,16,Australia,AU,Queensland,-27.528509,153.113449,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Female and Joey in unknown tree,2020,7,30,Australia,AU,Queensland,-27.551391,153.05876,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,1,28,Australia,AU,Queensland,-27.598196,151.894046,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,FEMALE,,2024,2,6,Australia,AU,New South Wales,-29.546377,150.564286,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,2,28,Australia,AU,Queensland,-27.530402,153.103735,EPSG:4326 +HUMAN_OBSERVATION,emm533k,1,,,2020,1,7,Australia,AU,New South Wales,-28.713292,153.554992,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block picnic tables,2024,10,7,Australia,AU,Queensland,-27.526231,153.090224,EPSG:4326 +HUMAN_OBSERVATION,l9d,1,,Walking across a fallen Blue gum Eucalyptus saligna.,2021,4,28,Australia,AU,Queensland,-27.405367,152.196154,EPSG:4326 +HUMAN_OBSERVATION,Ninja wallaby,1,,,2023,1,5,Australia,AU,Victoria,-37.724,141.215,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2023,10,26,Australia,AU,New South Wales,-33.076702,151.095288,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,30,Australia,AU,Queensland,-27.529517,153.104441,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A5 RIGHT ear - Cindy,2023,8,9,Australia,AU,Queensland,-27.52671,153.108922,EPSG:4326 +HUMAN_OBSERVATION,einadia,1,,,2023,9,6,Australia,AU,South Australia,-34.963078,138.670487,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery,2024,10,26,Australia,AU,Queensland,-27.527232,153.09131,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,,Mum and joey cuddling in the fork of a eucalypt.,2022,9,5,Australia,AU,Queensland,-27.392693,153.440945,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,3,Australia,AU,Queensland,-27.526466,153.090741,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,21,Australia,AU,South Australia,-34.88858,138.733707,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,7,16,Australia,AU,Queensland,-27.327658,151.852325,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,"This Koala was in one of our tallest Eucalyptus cypellocarpa, possibly as high as 50m up the tree. It was also over the gully, meaning it was in excess of 60m off the ground.",2023,11,24,Australia,AU,Victoria,-38.356021,146.387175,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,Male koala has been active near the house for over a week. Audio is very faint.,2024,9,3,Australia,AU,Queensland,-27.358627,152.074647,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On E.tereticornis,2024,7,31,Australia,AU,Queensland,-27.820128,153.127876,EPSG:4326 +HUMAN_OBSERVATION,einadia,1,,,2024,10,2,Australia,AU,South Australia,-34.93747,138.672638,EPSG:4326 +HUMAN_OBSERVATION,dawn neylan,1,,Photos janine bell,2020,10,26,Australia,AU,Victoria,-38.354597,145.00461,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to lower cav road car park Injury on leg,2023,11,12,Australia,AU,Queensland,-27.525516,153.09031,EPSG:4326 +HUMAN_OBSERVATION,johjesse,1,,,2024,3,25,Australia,AU,Queensland,-27.299171,152.042261,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,,Koala found in our backyard. Believed to travel along the main road regularly.,2021,10,18,Australia,AU,South Australia,-35.148611,138.656945,EPSG:4326 +HUMAN_OBSERVATION,maxicole,1,,,2023,4,4,Australia,AU,Queensland,-27.529272,153.11298,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lower car park on Cavendish Road - at entrance of car carpark Jaye Mallet Yellow tag #1075,2023,10,15,Australia,AU,Queensland,-27.52546,153.09029,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Inside nursery grounds Mother and joey,2024,8,18,Australia,AU,Queensland,-27.527384,153.092212,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Healthy. Observed by Cassie & Dan Roth. Submitted via msg,2024,9,22,Australia,AU,Queensland,-24.713532,151.33627,EPSG:4326 +HUMAN_OBSERVATION,clayt_,1,,,2024,7,12,Australia,AU,Victoria,-38.283465,145.088579,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Deceased. Motor vehicle incident. Observed by Amanda Francis. Submitted via email,2023,9,8,Australia,AU,Queensland,-26.1093,151.824758,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,2,Australia,AU,Queensland,-27.526799,153.090491,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2022,10,9,Australia,AU,Queensland,-28.217796,152.868119,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Half Black Lip"", the current dominant male in this area, in stringy bark.",2023,9,25,Australia,AU,New South Wales,-30.520949,151.517939,EPSG:4326 +HUMAN_OBSERVATION,John Tann,1,,About 2 metres up a eucalypt tree.,2024,3,10,Australia,AU,New South Wales,-28.5675,153.5183,EPSG:4326 +HUMAN_OBSERVATION,Lesley Hardiman,1,,,2020,9,30,Australia,AU,Queensland,-27.48935,153.249388,EPSG:4326 +HUMAN_OBSERVATION,Dave and Jackie Newman,1,,,2022,7,10,Australia,AU,Victoria,-38.314724,145.603741,EPSG:4326 +HUMAN_OBSERVATION,allambiretreat,1,,,2023,2,25,Australia,AU,Queensland,-27.339103,152.845747,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,18,Australia,AU,Queensland,-27.526161,153.090479,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala scat,2022,11,17,Australia,AU,Queensland,-28.181893,152.750356,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear,2024,7,12,Australia,AU,Queensland,-27.529304,153.106039,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,7,Australia,AU,South Australia,-34.888361,138.732402,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,9,Australia,AU,Queensland,-27.526736,153.09091,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,"Bioacoustic survey conducted with an AudioMoth full-spectrum acoustic recorder deployed within a remnant of a 2 acre Trust for Nature covenanted property featuring Sedgy Riparian Woodland (EVC 198). The property adjoins the Wombat State Forest. Recordings are scheduled twice a day. First, for 2 hours commencing an hour before dawn, and secondly, for 2 hours commencing at dusk.",2021,12,12,Australia,AU,Victoria,-37.389015,144.266924,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,MALE,Appears young (not scruffy or scarred). Clean eyes. Rump dirty.,2021,9,20,Australia,AU,Queensland,-27.457422,152.401511,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2024,11,17,Australia,AU,Queensland,-27.528191,153.092354,EPSG:4326 +HUMAN_OBSERVATION,Mel Halliday,1,,,2023,8,2,Australia,AU,Victoria,-37.641822,143.901148,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland,2024,11,17,Australia,AU,Queensland,-27.527339,153.093577,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,12,14,Australia,AU,Victoria,-38.671199,146.16387,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,FEMALE,,2024,8,18,Australia,AU,Queensland,-27.516493,153.083671,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2024,4,21,Australia,AU,Victoria,-38.666538,143.858292,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear - & joey,2023,1,11,Australia,AU,Queensland,-27.530774,153.104248,EPSG:4326 +HUMAN_OBSERVATION,jango1971,1,,,2023,12,11,Australia,AU,Victoria,-36.248753,146.685531,EPSG:4326 +HUMAN_OBSERVATION,DustyTravelsOz,1,,,2022,3,1,Australia,AU,New South Wales,-34.753069,146.531993,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,In median strip vegetation,2023,10,6,Australia,AU,Queensland,-27.507939,153.065706,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female with joey. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,11,7,Australia,AU,Queensland,-26.161009,151.755229,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,,From markings on the nose this seems to be the same female observed here with joey 08/01/2020.,2021,4,16,Australia,AU,Queensland,-28.173366,152.906209,EPSG:4326 +HUMAN_OBSERVATION,Ian Wheatland,1,,,2024,1,4,Australia,AU,Queensland,-27.582909,153.18103,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Koala shown in roadside location photo. Possibly "Fluffy Eared Mum" (but cannot tell whether she has a baby this year). In E. caliginosa.,2020,10,4,Australia,AU,New South Wales,-30.524561,151.520753,EPSG:4326 +HUMAN_OBSERVATION,Adam Gillespie,1,,,2023,7,6,Australia,AU,New South Wales,-31.638842,152.306083,EPSG:4326 +HUMAN_OBSERVATION,jenn,1,,,2021,12,11,Australia,AU,Victoria,-38.174704,145.131109,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2023,10,4,Australia,AU,Queensland,-27.529021,153.103169,EPSG:4326 +HUMAN_OBSERVATION,duffelbag,1,,,2024,6,27,Australia,AU,Victoria,-38.321033,142.362912,EPSG:4326 +HUMAN_OBSERVATION,Rusty,1,,,2022,5,29,Australia,AU,South Australia,-34.99041,138.635465,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,was climbing up the tree! Have a short video too.,2020,10,29,Australia,AU,New South Wales,-28.252213,153.37539,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy and alert, 2nd of 6 seen",2023,1,26,Australia,AU,Queensland,-27.339255,152.614425,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Bruah Box,2020,2,2,Australia,AU,Queensland,-27.544754,153.06069,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - dirty bum. Rescue attempted but koala is now too high to reach & no climber available today,2024,2,13,Australia,AU,Queensland,-27.527785,153.111837,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A5 RIGHT ear - Cindy,2023,10,14,Australia,AU,Queensland,-27.526974,153.109025,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2020,9,4,Australia,AU,New South Wales,-28.27573,153.393389,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,2 recordings about 20 mins apart of the same animal and same location. missed the 1st 5 or so seconds of each call.,2022,12,19,Australia,AU,Queensland,-27.510518,153.069775,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,13,Australia,AU,South Australia,-34.892248,138.720816,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,4,22,Australia,AU,Queensland,-27.549179,153.052205,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,being harassed by black cockatoos,2021,11,4,Australia,AU,Victoria,-37.617567,143.89366,EPSG:4326 +HUMAN_OBSERVATION,AldingaRoo,1,FEMALE,,2023,11,2,Australia,AU,South Australia,-34.760984,138.946955,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,6,Australia,AU,South Australia,-34.893439,138.724552,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,9,9,Australia,AU,Victoria,-38.671242,146.163772,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2023,1,4,Australia,AU,South Australia,-34.865918,138.66558,EPSG:4326 +HUMAN_OBSERVATION,Hauke Koch,1,,,2023,1,2,Australia,AU,Victoria,-38.807828,143.558258,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult female and joey. Healthy. Observed by community member. Submitted by Wendy Taylor via msg.,2023,12,18,Australia,AU,Queensland,-26.490043,151.855676,EPSG:4326 +HUMAN_OBSERVATION,Jason Ramsay,1,,Under Eucalyptus tereticornis. Strong eucalypt smell.,2023,7,7,Australia,AU,Queensland,-27.273196,152.959217,EPSG:4326 +HUMAN_OBSERVATION,Lisa,1,,,2023,12,3,Australia,AU,Queensland,-27.909385,153.372406,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2021,2,5,Australia,AU,Queensland,-27.543747,153.070702,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood adjacent female in Grey Ironbark,2021,2,24,Australia,AU,Queensland,-27.550497,153.05497,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,Camera no. 5 Sclerophyll notes:,2021,8,31,Australia,AU,Queensland,-27.69515,152.08695,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear of woodland - inside backyard with trampoline near back fence,2023,7,23,Australia,AU,Queensland,-27.528347,153.092841,EPSG:4326 +HUMAN_OBSERVATION,Koru,1,,"Tricky to get a clear picture. High in tree, had been raining heavily. Scat below tree.",2021,1,15,Australia,AU,Victoria,-37.769367,145.648163,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy Female Koala- private property Meringandan West- observer Judi Gray- Toowoomba Koala & Wildlife Rescue,2022,11,12,Australia,AU,Queensland,-27.381513,151.901047,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,MALE,,2021,2,23,Australia,AU,Victoria,-38.175473,145.132141,EPSG:4326 +HUMAN_OBSERVATION,Jon Marnock,1,,,2024,10,27,Australia,AU,Queensland,-27.550317,153.072328,EPSG:4326 +HUMAN_OBSERVATION,sophpid,1,,"Very high up, tricky to see. Circled in red.",2022,11,19,Australia,AU,Queensland,-27.718608,151.51817,EPSG:4326 +HUMAN_OBSERVATION,markguthrie,1,,,2020,12,20,Australia,AU,Victoria,-38.626711,146.181206,EPSG:4326 +HUMAN_OBSERVATION,Colin Trainor,1,,,2023,10,14,Australia,AU,Queensland,-27.911461,153.372486,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,"Koala in small spotted gum, not far from Boonah - Beaudesert Road. Maybe a bit skinny. Lantana growth at base inhibiting easy movement.",2023,10,5,Australia,AU,Queensland,-27.941827,152.83584,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,Very fresh Koala markings. FoN survey Tarkeeth1,2023,10,8,Australia,AU,New South Wales,-30.491774,152.913358,EPSG:4326 +HUMAN_OBSERVATION,Charles Dove,1,,,2022,8,17,Australia,AU,Queensland,-27.371783,151.611361,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Male; believe the same one seen yesterday, just moved trees.",2022,12,21,Australia,AU,New South Wales,-28.2539,153.376802,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Spectacle Eyes"" female in large yellow box",2020,1,24,Australia,AU,New South Wales,-30.519482,151.52071,EPSG:4326 +HUMAN_OBSERVATION,highseamutiny,1,,,2022,8,28,Australia,AU,Victoria,-38.295117,145.091264,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,8,24,Australia,AU,New South Wales,-33.076836,151.095275,EPSG:4326 +HUMAN_OBSERVATION,Nathaniel Xggum,1,,,2023,6,20,Australia,AU,Queensland,-27.543032,153.070274,EPSG:4326 +HUMAN_OBSERVATION,Sharon Dodd,1,,,2022,10,30,Australia,AU,Victoria,-38.358693,146.387667,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2020,10,13,Australia,AU,Victoria,-38.131141,145.268307,EPSG:4326 +HUMAN_OBSERVATION,whittie,1,,,2024,7,10,Australia,AU,South Australia,-35.00394,138.658112,EPSG:4326 +HUMAN_OBSERVATION,George Lynch,1,FEMALE,,2024,10,6,Australia,AU,Victoria,-38.004406,144.409867,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,5,13,Australia,AU,Queensland,-27.546137,153.054581,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,4,7,Australia,AU,Queensland,-27.547356,153.073389,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,10,30,Australia,AU,Queensland,-26.332172,152.054404,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Flooded gum for third time in past two weeks. Previously called it a Sydney Blue Gum which was incorrect. IDed by Bob Coots,2020,2,28,Australia,AU,Queensland,-27.54957,153.061415,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,24,Australia,AU,Queensland,-27.528828,153.107091,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,1,1,Australia,AU,Queensland,-27.599243,151.895213,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,22,Australia,AU,Queensland,-27.530894,153.10534,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,9,Australia,AU,Queensland,-27.54335,153.072518,EPSG:4326 +HUMAN_OBSERVATION,Joel Poyitt,1,,A bit camera shy. Didn't want to show his face for a photo! Pretty big! Ran across the track about 30-40 metres in front of me and then up this tree.,2022,1,28,Australia,AU,New South Wales,-33.465085,150.71519,EPSG:4326 +HUMAN_OBSERVATION,Eddy Smith,1,FEMALE,,2024,7,14,Australia,AU,South Australia,-35.017,138.656,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,"Healthy female 3m from ground eating Yellow gum leaves. Climbed down, walked towards me to about 2m away then leapt into yellow gum, jumped across to dead trunk, sat in fork then leapt back to the live trunk and started eating new growth leaves. She is known as Evelina and seen on several properties south of here Stayed nearby in different trees for 3 days, last seen back on the East side of the road",2023,2,3,Australia,AU,Victoria,-37.85728,144.383788,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2022,3,16,Australia,AU,Victoria,-38.004734,141.560494,EPSG:4326 +HUMAN_OBSERVATION,wild_wishart,1,,,2021,4,2,Australia,AU,Queensland,-27.545129,153.047417,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi & joey,2024,11,8,Australia,AU,Queensland,-27.52933,153.103697,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2024,5,24,Australia,AU,Queensland,-27.510353,153.085462,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2022,5,29,Australia,AU,Victoria,-38.259756,145.165122,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,7,2,Australia,AU,Queensland,-27.510264,153.085647,EPSG:4326 +HUMAN_OBSERVATION,sueruffles,1,,,2024,9,21,Australia,AU,New South Wales,-34.76169,146.561726,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,3,3,Australia,AU,Queensland,-27.527115,153.091703,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,28,Australia,AU,Queensland,-27.52787,153.093312,EPSG:4326 +HUMAN_OBSERVATION,wahminda_gt,1,,,2020,6,15,Australia,AU,Queensland,-27.39427,152.924543,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Female. Released after being treated for Chlamydia by Koala rescue. Observed by Wendy Taylor. Submitted via msg.,2024,1,9,Australia,AU,Queensland,-26.362891,151.814034,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,12,23,Australia,AU,Queensland,-27.505658,153.078523,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2024,6,15,Australia,AU,Queensland,-27.543817,153.053069,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,28,Australia,AU,Queensland,-27.526893,153.090833,EPSG:4326 +HUMAN_OBSERVATION,whittie,1,,,2023,11,18,Australia,AU,South Australia,-34.904437,138.617737,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2024,9,28,Australia,AU,New South Wales,-34.747997,146.539612,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Spotted by Darryl,2024,9,26,Australia,AU,Queensland,-27.62027,152.901775,EPSG:4326 +HUMAN_OBSERVATION,Casual Observer,1,,,2022,11,24,Australia,AU,Queensland,-27.140487,152.944207,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe cavendish road Jaye Mallet? Yellow tag right ear,2023,12,8,Australia,AU,Queensland,-27.526655,153.090419,EPSG:4326 +HUMAN_OBSERVATION,wattlife,1,,,2023,3,11,Australia,AU,New South Wales,-30.26336,153.113997,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2020,6,5,Australia,AU,Queensland,-27.225331,153.070114,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2024,6,26,Australia,AU,Queensland,-27.226944,153.077076,EPSG:4326 +HUMAN_OBSERVATION,Stephen Cox,1,,,2020,11,29,Australia,AU,Victoria,-38.667281,143.861492,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,23,Australia,AU,South Australia,-34.889849,138.731464,EPSG:4326 +HUMAN_OBSERVATION,Owen Lishmund,1,,,2022,1,12,Australia,AU,Victoria,-37.221896,148.264156,EPSG:4326 +HUMAN_OBSERVATION,ron_willemsen,1,,,2023,11,6,Australia,AU,Victoria,-37.85262,145.501755,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,"Copious amounts of koala scat, beneath pretty small Eucalyptus tereticornis, and scratch marks on tree bark. Actual koala sighted in same tree on Wednesday 13th July. I wouldn't have thought this scat was only 4/5 days old.",2022,7,16,Australia,AU,Queensland,-28.164485,152.6038,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On a Lophostemon suaveolans.,2021,4,8,Australia,AU,Queensland,-27.546903,153.037372,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,In picnic area between A block and lower woodland car park,2024,8,11,Australia,AU,Queensland,-27.526873,153.092562,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,8,11,Australia,AU,Victoria,-38.35412,146.387644,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,28,Australia,AU,Queensland,-27.529774,153.109967,EPSG:4326 +HUMAN_OBSERVATION,Hayley Troupe,1,,,2022,8,31,Australia,AU,Queensland,-26.870236,152.130321,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,#5,2023,8,20,Australia,AU,Queensland,-27.511737,153.084231,EPSG:4326 +HUMAN_OBSERVATION,Mitchell Hodgson,1,,,2021,11,2,Australia,AU,New South Wales,-32.896842,150.280746,EPSG:4326 +HUMAN_OBSERVATION,Alex Kenins,1,,,2020,9,17,Australia,AU,Queensland,-27.431462,153.531179,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,,This juvenile on its own is probably the same one seen with its mother 2 months ago by jcaderman.,2022,4,1,Australia,AU,Queensland,-28.125152,152.945179,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,2 x Adults. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg,2023,12,25,Australia,AU,Queensland,-26.155069,151.749845,EPSG:4326 +HUMAN_OBSERVATION,Michael Goode,1,,,2024,1,19,Australia,AU,Queensland,-27.546183,153.256134,EPSG:4326 +HUMAN_OBSERVATION,rageth,1,,,2023,4,12,Australia,AU,New South Wales,-31.459978,152.929642,EPSG:4326 +HUMAN_OBSERVATION,david-c,1,,adult resting in fork of large eucalypt,2022,7,12,Australia,AU,Queensland,-27.547171,153.055862,EPSG:4326 +HUMAN_OBSERVATION,tills,1,,"63 Whitehall Ave, Birkdale, QLD Koala looks to be healthy - clean bottom and clear eyes",2021,4,28,Australia,AU,Queensland,-27.492456,153.199476,EPSG:4326 +HUMAN_OBSERVATION,danicalockett,1,,,2024,10,20,Australia,AU,Victoria,-38.136379,145.274895,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Gully near Aldi gates,2024,1,2,Australia,AU,Queensland,-27.526242,153.093009,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,15,Australia,AU,Queensland,-27.525818,153.092009,EPSG:4326 +HUMAN_OBSERVATION,Bray Muir,1,,,2024,3,2,Australia,AU,Queensland,-28.133069,153.445083,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,In gully near Aldi gates Female,2023,11,12,Australia,AU,Queensland,-27.52623,153.093045,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2023,9,4,Australia,AU,Queensland,-27.566708,153.098544,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2023,7,1,Australia,AU,South Australia,-34.917459,138.542468,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,4,27,Australia,AU,New South Wales,-28.26034,153.399295,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear - & joey,2023,2,6,Australia,AU,Queensland,-27.530146,153.103672,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Mother and joey,2024,11,9,Australia,AU,Queensland,-27.527114,153.090759,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Scat - collection for research on genetic diversity amongst local koala populations,2023,5,4,Australia,AU,Victoria,-37.638945,143.903144,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In open area and lone tree near tennis court building,2024,7,18,Australia,AU,Queensland,-27.525734,153.09312,EPSG:4326 +HUMAN_OBSERVATION,dvk,1,,,2023,7,14,Australia,AU,Queensland,-27.226614,153.073003,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,5,Australia,AU,Queensland,-27.528779,153.109042,EPSG:4326 +HUMAN_OBSERVATION,Alesha Teitzel,1,,,2024,9,23,Australia,AU,New South Wales,-30.328224,153.1055,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree next to tennis court Cindy Crawford and joey,2023,7,9,Australia,AU,Queensland,-27.525328,153.092623,EPSG:4326 +HUMAN_OBSERVATION,leoturner,1,,,2021,12,29,Australia,AU,Victoria,-37.02285,145.505845,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,2,11,Australia,AU,Queensland,-27.526694,153.09023,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,"I think a male chasing a female, She was sounding distressed. In Eucalyptus microcorys.",2021,8,15,Australia,AU,Queensland,-27.551182,153.054738,EPSG:4326 +HUMAN_OBSERVATION,summerfell,1,,"Heard volcalisations several times during the morning, went for a walk and located this koala.",2021,12,8,Australia,AU,Queensland,-27.817525,153.073761,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,9,Australia,AU,Queensland,-27.529965,153.110698,EPSG:4326 +HUMAN_OBSERVATION,Jon Marnock,1,,,2022,10,6,Australia,AU,Queensland,-27.536904,153.033969,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,12,Australia,AU,South Australia,-34.886287,138.73348,EPSG:4326 +HUMAN_OBSERVATION,julie,1,,"Bad photo, but it was definitely a koala",2023,7,13,Australia,AU,Queensland,-27.634492,153.178435,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,8,13,Australia,AU,Queensland,-27.823605,152.992478,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,10,Australia,AU,Queensland,-27.538962,153.056168,EPSG:4326 +HUMAN_OBSERVATION,craigjr,1,,,2024,9,22,Australia,AU,Victoria,-38.244041,141.73639,EPSG:4326 +HUMAN_OBSERVATION,Michelle Casanova,1,,,2024,11,21,Australia,AU,Victoria,-38.240004,141.493978,EPSG:4326 +HUMAN_OBSERVATION,kittsw,1,,,2020,8,4,Australia,AU,South Australia,-34.903119,138.7023,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,1,Australia,AU,Queensland,-27.529303,153.108097,EPSG:4326 +HUMAN_OBSERVATION,esperly,1,,Joseph,2023,11,25,Australia,AU,Queensland,-27.294005,152.987929,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,5,26,Australia,AU,South Australia,-34.89306,138.626134,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,2,1,Australia,AU,Queensland,-27.537178,153.038303,EPSG:4326 +HUMAN_OBSERVATION,mununjali85,1,,,2024,11,4,Australia,AU,Queensland,-27.94415,153.173888,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,3,27,Australia,AU,Queensland,-27.506664,153.085018,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2023,10,27,Australia,AU,Victoria,-37.049512,145.388325,EPSG:4326 +HUMAN_OBSERVATION,Geoffrey Cox,1,,,2022,10,3,Australia,AU,South Australia,-35.085298,138.669939,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,4,19,Australia,AU,South Australia,-35.008524,138.640209,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Lower wisteria car park,2023,11,19,Australia,AU,Queensland,-27.52492,153.092332,EPSG:4326 +HUMAN_OBSERVATION,Garry French,1,,,2022,6,23,Australia,AU,Victoria,-38.314745,142.367292,EPSG:4326 +HUMAN_OBSERVATION,Max,1,FEMALE,,2024,11,10,Australia,AU,Queensland,-27.305663,152.505805,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,27,Australia,AU,Queensland,-27.526483,153.09057,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,10,Australia,AU,Queensland,-27.528249,153.092509,EPSG:4326 +HUMAN_OBSERVATION,Colin and Wendy Cook,1,MALE,Male. Grunting heard.,2021,12,12,Australia,AU,Victoria,-37.80847,144.147458,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,5,4,Australia,AU,Queensland,-27.32633,152.614838,EPSG:4326 +HUMAN_OBSERVATION,Ken Hurley,1,,,2023,4,29,Australia,AU,South Australia,-34.90367,138.707239,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,9,23,Australia,AU,South Australia,-34.865127,138.656848,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near cafeteria in triangle space of 3 trees,2023,8,20,Australia,AU,Queensland,-27.526988,153.091972,EPSG:4326 +HUMAN_OBSERVATION,Asaph Whelan,1,,,2022,10,1,Australia,AU,South Australia,-34.903912,138.701325,EPSG:4326 +HUMAN_OBSERVATION,cmk11,1,,,2023,10,18,Australia,AU,Victoria,-36.890287,145.449708,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Interesting tree choice,2021,10,3,Australia,AU,Victoria,-38.67155,146.164122,EPSG:4326 +HUMAN_OBSERVATION,cintajac,1,,,2020,11,29,Australia,AU,South Australia,-34.829707,138.745586,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,Unfortunately I was not able to get a clear photo of this Koala. Being harassed by Noisy Miners and Blue-faced Honeyeaters.,2022,8,22,Australia,AU,Queensland,-27.735152,153.102429,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,2,12,Australia,AU,Queensland,-27.528266,153.103348,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi & joey,2024,1,31,Australia,AU,Queensland,-27.530846,153.103703,EPSG:4326 +HUMAN_OBSERVATION,kathylangford,1,,,2023,9,9,Australia,AU,Queensland,-26.278965,152.927469,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,9,15,Australia,AU,Queensland,-27.583787,153.151142,EPSG:4326 +HUMAN_OBSERVATION,muscio,1,,,2023,3,28,Australia,AU,New South Wales,-31.577574,152.181498,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,2 koalas sharing the same tre,2024,10,20,Australia,AU,South Australia,-34.904027,138.708089,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,,2022,7,31,Australia,AU,Queensland,-27.702098,153.188017,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,"Unknown tree, a long way in distance",2020,8,25,Australia,AU,Queensland,-27.548077,153.04728,EPSG:4326 +HUMAN_OBSERVATION,bestbilly,1,,,2023,8,23,Australia,AU,Queensland,-19.125625,146.868512,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2022,7,14,Australia,AU,Queensland,-27.509098,153.082317,EPSG:4326 +HUMAN_OBSERVATION,martyshome,1,,,2020,12,8,Australia,AU,New South Wales,-34.247738,150.825099,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2024,4,4,Australia,AU,Victoria,-37.638403,143.901044,EPSG:4326 +HUMAN_OBSERVATION,Heath Hunter,1,,,2023,3,13,Australia,AU,South Australia,-34.947664,138.680103,EPSG:4326 +HUMAN_OBSERVATION,johjesse,1,,"Mother koala, in tree next to juvenile, up high",2024,3,25,Australia,AU,Queensland,-27.300304,152.042159,EPSG:4326 +HUMAN_OBSERVATION,louieturner23,1,,,2022,10,20,Australia,AU,Queensland,-27.86195,153.197805,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,7,27,Australia,AU,Queensland,-27.438053,152.631408,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2024,1,29,Australia,AU,Queensland,-27.255473,152.045987,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Scribbly gum,2021,1,30,Australia,AU,Queensland,-27.552629,153.043237,EPSG:4326 +HUMAN_OBSERVATION,Martin Rady,1,,first one I've ever seen in Mookinbah reserve,2023,7,13,Australia,AU,Queensland,-27.480072,153.16678,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance of nursery Mother and joey,2023,10,15,Australia,AU,Queensland,-27.527027,153.091963,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,6,Australia,AU,Queensland,-27.526073,153.090636,EPSG:4326 +HUMAN_OBSERVATION,Richard Shirky,1,,,2023,10,12,Australia,AU,New South Wales,-29.780321,150.979265,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.773651,143.607605,EPSG:4326 +HUMAN_OBSERVATION,Chris Munson,1,,,2021,9,16,Australia,AU,New South Wales,-34.066161,150.851888,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,9,19,Australia,AU,Queensland,-27.583787,153.151142,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,5,Australia,AU,Queensland,-26.239835,151.975663,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2024,5,27,Australia,AU,Queensland,-28.091936,152.828034,EPSG:4326 +HUMAN_OBSERVATION,martinkopp,1,,,2022,12,14,Australia,AU,New South Wales,-29.720314,151.011847,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"E. tereticornis. Koala counts 1/4/24 7:40am 1 observer JPT 1 koala 25mins. Male koala heard calling: 1/4/24 10:16pm, 2/4/24 3:00am, 5:20am, 11:20pm, 5/4/24 4:05am, 6/4/24 4:40am. Koala counts 5/4/2024 9:15am 1 observer RT 20 mins 0 koalas; 5/4/2024 1 observer JT 3:25pm 45 mins 0 koalas.",2024,4,1,Australia,AU,Queensland,-27.823692,152.993683,EPSG:4326 +HUMAN_OBSERVATION,ixhunter,1,,,2024,11,17,Australia,AU,Queensland,-27.422608,153.513917,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,In a Mana Gum (E. viminalis).,2024,5,7,Australia,AU,Victoria,-38.497083,142.978292,EPSG:4326 +HUMAN_OBSERVATION,elizashiels,1,,,2022,1,13,Australia,AU,Victoria,-37.924297,147.730055,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,7,11,Australia,AU,Queensland,-27.583787,153.151142,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,Mother & a (large) joey climbing down a tree.,2020,1,2,Australia,AU,Victoria,-35.920378,145.672362,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Not sure if tree,2020,12,1,Australia,AU,Queensland,-27.546078,153.058544,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,M.quinquennervia,2020,10,12,Australia,AU,Queensland,-27.5496,153.060477,EPSG:4326 +HUMAN_OBSERVATION,faufauh,1,,,2021,2,13,Australia,AU,Queensland,-27.535041,153.221407,EPSG:4326 +HUMAN_OBSERVATION,rivendel,1,,high up Eucalypt,2021,1,9,Australia,AU,New South Wales,-31.652387,152.804047,EPSG:4326 +HUMAN_OBSERVATION,sandragall,1,,,2022,11,29,Australia,AU,Queensland,-27.651695,153.140552,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2021,9,24,Australia,AU,New South Wales,-33.076808,151.095383,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2024,6,24,Australia,AU,Queensland,-27.54783,153.05829,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"In Euc. tereticornis, Boonah Rail Trail.",2024,6,5,Australia,AU,Queensland,-27.98736,152.67783,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland gully Mother and joey,2024,11,9,Australia,AU,Queensland,-27.527535,153.093177,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2022,12,25,Australia,AU,Queensland,-27.601825,151.893104,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,12,29,Australia,AU,Victoria,-38.671342,146.163911,EPSG:4326 +HUMAN_OBSERVATION,Jonathan M,1,,,2020,1,3,Australia,AU,Victoria,-38.832424,143.519252,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,1,3,Australia,AU,South Australia,-34.892389,138.627836,EPSG:4326 +HUMAN_OBSERVATION,Edward Bell,1,,,2020,2,4,Australia,AU,Queensland,-27.909958,153.37207,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Pink bloodwood,2024,2,17,Australia,AU,Queensland,-27.543856,153.0602,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Sport n rec picnic area Walter Matthau?,2024,10,20,Australia,AU,Queensland,-27.525789,153.092754,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Tristania & Wisteria Woodland,2024,10,5,Australia,AU,Queensland,-27.524934,153.093747,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,"Image captured whilst on a spotlighting circuit, varying between 1.5 km to 3 km depending on track conditions, through a 20 ha block of predominantly Sedgy Riparian Woodland (EVC 198) in the Wombat State Forest, Lyonville.",2020,12,31,Australia,AU,Victoria,-37.39406,144.264042,EPSG:4326 +HUMAN_OBSERVATION,koalasofstraddie,1,,,2021,5,5,Australia,AU,Queensland,-27.400558,153.444747,EPSG:4326 +HUMAN_OBSERVATION,angellcheyenne,1,,,2024,4,18,Australia,AU,Victoria,-38.833492,143.513503,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,6,1,Australia,AU,Queensland,-27.530479,153.104535,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2023,10,21,Australia,AU,Queensland,-27.52723,153.091599,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.775023,143.612762,EPSG:4326 +HUMAN_OBSERVATION,Kathy Cowley,1,,,2020,3,27,Australia,AU,New South Wales,-33.297962,149.503967,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,In dense thicket of vines. Possibly female.,2023,5,4,Australia,AU,Queensland,-27.54921,153.059326,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2021,8,11,Australia,AU,South Australia,-34.971106,138.63809,EPSG:4326 +HUMAN_OBSERVATION,rong0213,1,,,2023,8,24,Australia,AU,Victoria,-38.835953,143.514145,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2024,5,24,Australia,AU,South Australia,-34.917457,138.542553,EPSG:4326 +HUMAN_OBSERVATION,scrubby57,1,,,2023,2,18,Australia,AU,Queensland,-27.740355,153.165153,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,29,Australia,AU,Queensland,-27.527298,153.102799,EPSG:4326 +HUMAN_OBSERVATION,hunt123,1,,Possibly displaced due to recent housing development,2020,11,25,Australia,AU,Victoria,-38.141664,145.283911,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,9,Australia,AU,South Australia,-34.890109,138.731585,EPSG:4326 +HUMAN_OBSERVATION,Natasha,1,,,2024,10,6,Australia,AU,Queensland,-28.18912,152.537872,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,6,Australia,AU,Queensland,-27.528301,153.092257,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,3,29,Australia,AU,Queensland,-27.551437,153.057688,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,"Audio captured whilst on a spotlighting circuit, varying between 1.5 km to 3 km depending on track conditions, through a 20 ha block of predominantly Sedgy Riparian Woodland (EVC 198) in the Wombat State Forest, Lyonville.",2020,12,13,Australia,AU,Victoria,-37.393514,144.266789,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female red tag A5 RIGHT ear - Cindy,2023,6,23,Australia,AU,Queensland,-27.527012,153.109108,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2023,10,23,Australia,AU,Queensland,-27.529579,153.115386,EPSG:4326 +HUMAN_OBSERVATION,penndragon75,1,,Found between Admin building and the Theatrette,2020,10,18,Australia,AU,Queensland,-27.547488,153.217786,EPSG:4326 +HUMAN_OBSERVATION,albt01,1,,,2021,9,24,Australia,AU,Queensland,-27.164019,152.938217,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Tree,2020,5,26,Australia,AU,Queensland,-27.546979,153.058332,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,6,Australia,AU,Queensland,-27.514842,153.082632,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,,2024,11,19,Australia,AU,Queensland,-27.543912,153.070642,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,2,13,Australia,AU,Queensland,-27.05993,152.553483,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,5,3,Australia,AU,Queensland,-27.549395,153.061862,EPSG:4326 +HUMAN_OBSERVATION,luciacaldas,1,,,2024,9,21,Australia,AU,Queensland,-19.150673,146.863767,EPSG:4326 +HUMAN_OBSERVATION,Dan,1,MALE,Sitting in an Acacia by a fire road in Samford Conservation Park. Seemed happy enough!.,2023,12,3,Australia,AU,Queensland,-27.385697,152.919892,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"In young E. tereticornis on roadside, Red Bridge Rd.",2024,8,11,Australia,AU,Queensland,-27.985847,152.67717,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2024,6,13,Australia,AU,South Australia,-34.902076,138.614166,EPSG:4326 +HUMAN_OBSERVATION,monikajanda,1,,,2023,4,2,Australia,AU,Queensland,-27.456745,152.961687,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Mark Dowell. Submitted by Mark Dowell & Denise Shaw via email.,2023,8,22,Australia,AU,Queensland,-26.530784,151.835277,EPSG:4326 +HUMAN_OBSERVATION,Karl Vernes,1,,"roadkill on Coonabarabran road, just north of Mollyan",2020,1,7,Australia,AU,New South Wales,-31.587728,149.223192,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,,,2021,10,6,Australia,AU,Queensland,-27.452791,152.395971,EPSG:4326 +HUMAN_OBSERVATION,guadaarbet,1,,,2023,2,7,Australia,AU,Queensland,-27.914261,153.372697,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds,2024,5,26,Australia,AU,Queensland,-27.528129,153.09229,EPSG:4326 +HUMAN_OBSERVATION,bilyanacottages,1,,,2023,7,30,Australia,AU,Queensland,-28.14289,152.645962,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,Koalas often seem to use fairly defined routes between food/habitat trees within their home ranges. See https://inaturalist.ala.org.au/observations/37154581 for what is probably this koala four days before. LCA1952 (Photo: Gordon Claridge).,2020,1,2,Australia,AU,Queensland,-27.496789,152.249747,EPSG:4326 +HUMAN_OBSERVATION,julie,1,,,2024,6,13,Australia,AU,Queensland,-27.767048,153.146727,EPSG:4326 +HUMAN_OBSERVATION,wild_wishart,1,,,2021,9,26,Australia,AU,Queensland,-27.545129,153.047417,EPSG:4326 +HUMAN_OBSERVATION,tcaderperson,1,,,2022,12,6,Australia,AU,Queensland,-28.125169,152.945237,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,23,Australia,AU,Queensland,-27.529106,153.105179,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania Way woodland area - near Wisteria Cres,2023,6,18,Australia,AU,Queensland,-27.524128,153.093099,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,8,10,Australia,AU,Queensland,-27.527014,153.090953,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,5,3,Australia,AU,Queensland,-27.546812,153.058418,EPSG:4326 +HUMAN_OBSERVATION,margadelie,1,,On perimeter track near pengana turnoff,2022,2,1,Australia,AU,South Australia,-34.965847,138.692149,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"On a Grey Gum, Eucalyptus propinqua",2023,10,8,Australia,AU,Queensland,-27.509288,153.078074,EPSG:4326 +HUMAN_OBSERVATION,Elspeth Swan,1,,,2024,1,11,Australia,AU,Victoria,-37.633672,144.088475,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,"Mum with bub on her back, video taken with mobile phone. Video donated. A few screenshots are added which were taken from the video, might make it clearer to see the koalas climbing up the tree.",2024,8,10,Australia,AU,New South Wales,-28.275083,153.395475,EPSG:4326 +HUMAN_OBSERVATION,lthie,1,,,2023,10,3,Australia,AU,Queensland,-27.542654,153.053081,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,11,4,Australia,AU,Queensland,-27.429517,151.724992,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,1,6,Australia,AU,Queensland,-27.527196,153.091726,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,,Female and joey.,2020,1,8,Australia,AU,Queensland,-28.173668,152.90681,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,5,24,Australia,AU,South Australia,-34.924281,138.522029,EPSG:4326 +HUMAN_OBSERVATION,maximto,1,,,2023,7,9,Australia,AU,Queensland,-27.545862,153.073272,EPSG:4326 +HUMAN_OBSERVATION,leahdrummomd,1,,,2021,5,14,Australia,AU,South Australia,-35.708176,137.494881,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Koala near Nathan reservoir tank that’s about to be removed by Brisbane City Council.,2024,8,2,Australia,AU,Queensland,-27.54745,153.073733,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2023,12,27,Australia,AU,Queensland,-27.525502,153.092023,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Female koala in soap tree sleeping with Joey nearby. Made her way to Joey later in day,2021,10,21,Australia,AU,Queensland,-27.551778,153.057533,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,10,Australia,AU,Queensland,-27.527128,153.108204,EPSG:4326 +HUMAN_OBSERVATION,Lauren Flohr,1,,,2023,4,8,Australia,AU,Queensland,-27.600052,151.895396,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Next to Aldi gates Male? Yellow tag left ear?,2024,3,23,Australia,AU,Queensland,-27.526525,153.093298,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Karyn Bjelke-Petersen. Forwarded by email.,2022,1,18,Australia,AU,Queensland,-26.594225,151.863292,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2023,9,4,Australia,AU,Queensland,-27.33272,151.934145,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,,2023,10,18,Australia,AU,Queensland,-27.413997,152.003297,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,,2024,4,22,Australia,AU,Queensland,-27.170637,152.989045,EPSG:4326 +HUMAN_OBSERVATION,nik8ball,1,,Wayne Frank spotted koala.,2021,9,13,Australia,AU,Queensland,-27.651468,153.070669,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,1,20,Australia,AU,Queensland,-27.528509,153.092653,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,"Photo credit: Eliza, Karana Downs and Mt Crosby Residents",2022,1,12,Australia,AU,Queensland,-27.531912,152.80765,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,8,5,Australia,AU,Queensland,-26.143123,152.204392,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,6,14,Australia,AU,New South Wales,-28.259798,153.399574,EPSG:4326 +HUMAN_OBSERVATION,Leah Burns,1,,,2023,3,22,Australia,AU,Queensland,-27.543702,153.069761,EPSG:4326 +HUMAN_OBSERVATION,bretcol,1,,,2022,9,12,Australia,AU,Queensland,-27.371158,152.952964,EPSG:4326 +HUMAN_OBSERVATION,Gordon Claridge,1,,LCA3165,2023,5,1,Australia,AU,Queensland,-27.496289,152.249352,EPSG:4326 +HUMAN_OBSERVATION,franhills,1,,,2024,7,23,Australia,AU,South Australia,-34.958885,138.691143,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,18,Australia,AU,Queensland,-27.527309,153.10773,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,8,13,Australia,AU,Victoria,-37.612959,143.897507,EPSG:4326 +HUMAN_OBSERVATION,Federico,1,,,2023,5,27,Australia,AU,Queensland,-27.910168,153.36854,EPSG:4326 +HUMAN_OBSERVATION,reesby_family,1,,,2022,5,19,Australia,AU,Queensland,-27.554883,153.222703,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,Observed by M. Cappella.,2024,2,22,Australia,AU,South Australia,-34.915296,138.504509,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,9,Australia,AU,Queensland,-27.529207,153.110314,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery Mother and joey,2024,11,2,Australia,AU,Queensland,-27.527127,153.092129,EPSG:4326 +HUMAN_OBSERVATION,funbudgiefriend,1,,Two Koalas,2023,1,2,Australia,AU,Queensland,-27.54466,153.071831,EPSG:4326 +HUMAN_OBSERVATION,lynsh,1,,,2024,8,28,Australia,AU,Queensland,-27.916853,153.373207,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,"2 calling, location is the first one. The second one was not far away and it became a bit heated in the end when they obviously met up.",2023,11,25,Australia,AU,Victoria,-38.355015,146.388232,EPSG:4326 +HUMAN_OBSERVATION,missfifi3,1,,Two Koalas seen on a night walk exploring the cable track.,2024,4,27,Australia,AU,Victoria,-37.171459,145.181429,EPSG:4326 +HUMAN_OBSERVATION,Matt Wilkie,1,,,2023,1,5,Australia,AU,Queensland,-19.129169,146.868413,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,11,Australia,AU,Queensland,-26.364183,151.819612,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,13,Australia,AU,Queensland,-27.543499,153.07258,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,8,27,Australia,AU,Victoria,-37.620004,143.889948,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Mom & Joey,2022,11,8,Australia,AU,Queensland,-27.512146,153.08284,EPSG:4326 +HUMAN_OBSERVATION,Reiner Richter,1,,,2020,1,9,Australia,AU,Victoria,-36.19391,145.255769,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2023,1,22,Australia,AU,New South Wales,-34.10178,150.822983,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,In Eucalyptus tereticornis,2024,4,11,Australia,AU,Queensland,-27.929487,152.546567,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2021,8,15,Australia,AU,Queensland,-27.529278,153.105392,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,30,Australia,AU,South Australia,-34.89205,138.721539,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,14,Australia,AU,South Australia,-34.89197,138.72146,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,4,14,Australia,AU,Queensland,-27.527226,153.091177,EPSG:4326 +HUMAN_OBSERVATION,qldkoalagirl,1,,,2024,1,4,Australia,AU,Queensland,-27.444345,151.957947,EPSG:4326 +HUMAN_OBSERVATION,m_adw,1,,,2022,11,3,Australia,AU,Queensland,-27.648415,152.888036,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Mum and joey,2023,9,30,Australia,AU,Queensland,-27.284458,153.000849,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Attempted rescue yesterday (6 November) but koala escaped trap. Today's tree not suitable to attempt rescue,2023,11,7,Australia,AU,Queensland,-27.530182,153.103402,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2023,5,23,Australia,AU,South Australia,-34.918114,138.528803,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland gully in mating tree,2024,5,18,Australia,AU,Queensland,-27.527371,153.092392,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2023,12,14,Australia,AU,Victoria,-38.671028,146.164642,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near Aldi gate in gully,2023,9,10,Australia,AU,Queensland,-27.526131,153.093305,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,This guy takes the same route through the property several times a week. This was taken in the last few minutes of light.,2021,1,25,Australia,AU,Victoria,-38.35437,146.388356,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Triangle area near lower car parks,2024,3,30,Australia,AU,Queensland,-27.527034,153.092011,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Two koalas same tree in wisteria &tristania woodland \middle section,2023,7,9,Australia,AU,Queensland,-27.524347,153.093044,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2023,1,29,Australia,AU,Queensland,-27.546409,153.057658,EPSG:4326 +HUMAN_OBSERVATION,Ian Smith,1,,,2023,8,5,Australia,AU,Victoria,-38.059297,141.922381,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,5,28,Australia,AU,New South Wales,-28.254289,153.377149,EPSG:4326 +HUMAN_OBSERVATION,Romain SOUCHAUD,1,,,2024,5,5,Australia,AU,Queensland,-19.129028,146.868333,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,appeared to be licking soil or gravel,2021,12,24,Australia,AU,Victoria,-37.616585,143.899032,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Black Wattle,2020,1,30,Australia,AU,Queensland,-27.550717,153.057867,EPSG:4326 +HUMAN_OBSERVATION,laurenrappa,1,,,2023,9,29,Australia,AU,Queensland,-27.493333,153.403,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,30,Australia,AU,Queensland,-27.527633,153.092756,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear - known as Buster,2024,11,23,Australia,AU,Queensland,-27.529421,153.104467,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,10,31,Australia,AU,Queensland,-27.659889,153.160433,EPSG:4326 +HUMAN_OBSERVATION,Roberto Ghiglia,1,,,2024,3,4,Australia,AU,Victoria,-38.658355,143.632383,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Maisie and joey front of TAFE Cavendish road near basketball courts,2023,8,13,Australia,AU,Queensland,-27.526604,153.090308,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,13,Australia,AU,South Australia,-34.886426,138.730882,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,12,24,Australia,AU,South Australia,-34.891642,138.731669,EPSG:4326 +HUMAN_OBSERVATION,amycarmichael,1,,,2021,12,28,Australia,AU,Queensland,-27.491142,153.197097,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey Ironbark,2020,2,26,Australia,AU,Queensland,-27.549078,153.051669,EPSG:4326 +HUMAN_OBSERVATION,Owen Gale,1,,,2021,7,4,Australia,AU,South Australia,-35.035641,138.707843,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,5,11,Australia,AU,Queensland,-27.548742,153.059162,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,2 koalas in same tree - koala 1,2023,2,1,Australia,AU,Victoria,-37.613486,143.897335,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,14,Australia,AU,Queensland,-27.529196,153.10887,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,5,26,Australia,AU,Queensland,-27.54511,153.071833,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,1,7,Australia,AU,Queensland,-27.510227,153.085198,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,12,28,Australia,AU,Victoria,-38.671372,146.163881,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Cheese tree,2021,3,5,Australia,AU,Queensland,-27.54794,153.058414,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,He’s having a wild ride way up there in the wind.,2020,8,1,Australia,AU,Victoria,-38.671078,146.164536,EPSG:4326 +HUMAN_OBSERVATION,leepiper,1,,,2024,4,24,Australia,AU,Queensland,-27.915987,153.360778,EPSG:4326 +HUMAN_OBSERVATION,michaelmaggs,1,MALE,Was heard bellowing in the night (male). Is the only one known to residents.,2024,2,18,Australia,AU,Victoria,-38.760915,143.667463,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2023,10,25,Australia,AU,Queensland,-27.527299,153.091525,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,3,30,Australia,AU,Queensland,-26.388082,152.648858,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"Firstly walking along road, then climbing.",2023,10,10,Australia,AU,Victoria,-37.704444,143.859521,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area near blue bin Very high in tree,2023,7,23,Australia,AU,Queensland,-27.528275,153.09236,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2024,8,22,Australia,AU,Victoria,-38.348182,146.404859,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,10m up a Eucalyptus tereticornis along the koala trail in Coombabah wetlands. Eating.,2022,5,2,Australia,AU,Queensland,-27.926529,153.363642,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,24,Australia,AU,Queensland,-27.527103,153.091741,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,6,21,Australia,AU,South Australia,-34.865207,138.656844,EPSG:4326 +HUMAN_OBSERVATION,Richard Fuller,1,,,2022,4,16,Australia,AU,Queensland,-27.507845,153.082698,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey On a separate branch,2023,11,19,Australia,AU,Queensland,-27.527194,153.091243,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2020,6,21,Australia,AU,Victoria,-37.90592,147.748823,EPSG:4326 +HUMAN_OBSERVATION,G. L. Grammer,1,,,2023,3,10,Australia,AU,South Australia,-34.843203,138.768131,EPSG:4326 +HUMAN_OBSERVATION,mikew65,1,,,2023,3,21,Australia,AU,South Australia,-34.861776,135.678487,EPSG:4326 +HUMAN_OBSERVATION,Deb Oliver,1,,,2022,12,3,Australia,AU,Victoria,-37.921845,147.735245,EPSG:4326 +HUMAN_OBSERVATION,iambuggy,1,,,2021,10,3,Australia,AU,Queensland,-27.91933,153.357728,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In Eucalyptus microcorys,2021,1,3,Australia,AU,Queensland,-27.541423,153.054657,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,16,Australia,AU,South Australia,-34.890656,138.729704,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,you can see its teeth when it yawns - seems to be quite long teeth implying quite a young one?,2022,1,16,Australia,AU,New South Wales,-28.252285,153.375393,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,2,Australia,AU,Queensland,-27.527943,153.091158,EPSG:4326 +HUMAN_OBSERVATION,xrayted,1,,,2022,10,6,Australia,AU,South Australia,-35.001386,138.656041,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2023,11,12,Australia,AU,Queensland,-27.527155,153.091619,EPSG:4326 +HUMAN_OBSERVATION,funbudgiefriend,1,,,2023,10,1,Australia,AU,Queensland,-27.544659,153.071715,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2023,5,16,Australia,AU,Queensland,-27.720788,151.523833,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,9,Australia,AU,South Australia,-34.890118,138.730476,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Male "Bald Ear" in stringybark. This male has been largely staying west of his previous territory over the past month. Wonder if the male "Black Lip" who was previously dominant in this more westerly area may have left/died. He has not been seen since Feb 2021.,2021,10,21,Australia,AU,New South Wales,-30.521812,151.519884,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,9,8,Australia,AU,Queensland,-27.52538,153.092115,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"Observed close to ground on euc trunk, hung around for 5 minutes.",2024,4,20,Australia,AU,Victoria,-37.643029,143.897279,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,MALE,"""Half black lip"" male in stringybark",2020,2,15,Australia,AU,New South Wales,-30.520925,151.518926,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2024,11,6,Australia,AU,New South Wales,-33.076721,151.095373,EPSG:4326 +HUMAN_OBSERVATION,stuheart,1,,Koala with joey,2023,8,14,Australia,AU,Victoria,-37.665745,144.365697,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,,2022,6,17,Australia,AU,Queensland,-19.121148,146.862942,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,2,28,Australia,AU,Queensland,-27.526791,153.109117,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.782326,143.626801,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,FEMALE,"Female koala ""Kalina"" known from the You Yangs, high in a Sugar Gum. Second time I've seen her at Serendip. Last time at Serendip was in November 2023, with a joey. Before that she was only ever seen at the You Yangs - once in 2020, once in 2019, twice in 2018 (once with a joey) and 4 times in 2016, also with a joey. She is at least 11 years old now. Thanks Ruth for alerting me to her presence.",2024,1,15,Australia,AU,Victoria,-38.002449,144.408641,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,"Healthy female noticed on road by 2 different people after 2 very hot days She looked tired, unsure what to do, she then walked right up to me and I directed her to roadside as there was a car coming and she climbed a yellow gum and started eating leaves. She is known as Evelina and has been seen near here before. Now reclining on a thin branch",2023,2,17,Australia,AU,Victoria,-37.83327,144.288352,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Maisie and joey,2023,11,12,Australia,AU,Queensland,-27.527099,153.091514,EPSG:4326 +HUMAN_OBSERVATION,polyscias099,1,,,2022,9,9,Australia,AU,New South Wales,-34.100123,150.810787,EPSG:4326 +HUMAN_OBSERVATION,oldhako,1,,,2022,11,24,Australia,AU,Queensland,-27.467381,151.946309,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near E block Mother and joey Maisie,2023,10,31,Australia,AU,Queensland,-27.526578,153.090887,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female + Joey. Healthy. Koala was killed in the same yard a few months ago. Owners have locked up the dogs and contacted carer for relocation. Rescued and relocated by Wendy Taylor. Submitted via msg.,2024,10,15,Australia,AU,Queensland,-26.179137,151.77323,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear - known as Buster,2024,3,22,Australia,AU,Queensland,-27.531419,153.105541,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,No ear tag observed.,2022,8,20,Australia,AU,Queensland,-27.51057,153.070096,EPSG:4326 +HUMAN_OBSERVATION,Colin and Wendy Cook,1,,Found in dry sclerophyll forest near a water source.,2021,5,9,Australia,AU,Victoria,-37.746742,144.262345,EPSG:4326 +HUMAN_OBSERVATION,jcadermann,1,,,2021,7,28,Australia,AU,Queensland,-28.123817,152.945617,EPSG:4326 +HUMAN_OBSERVATION,Garry French,1,,,2022,6,23,Australia,AU,Victoria,-38.31853,142.363504,EPSG:4326 +HUMAN_OBSERVATION,Lauren Flohr,1,,,2023,4,8,Australia,AU,Queensland,-27.600052,151.895396,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult Male. Healthy. Observed by by Wendy Taylor over 2 days. Same location 2 different trees. Submitted by Denise Shaw.,2023,6,26,Australia,AU,Queensland,-26.154354,151.74889,EPSG:4326 +HUMAN_OBSERVATION,Andrew Allen,1,,,2020,12,31,Australia,AU,Victoria,-38.668532,143.860596,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,12,Australia,AU,South Australia,-34.890951,138.72229,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - not tagged - known as Millie,2023,8,9,Australia,AU,Queensland,-27.527165,153.111271,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,15,Australia,AU,Queensland,-27.531388,153.105469,EPSG:4326 +HUMAN_OBSERVATION,Gavin Smith,1,,,2020,2,11,Australia,AU,New South Wales,-34.076886,150.831178,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,10,25,Australia,AU,Queensland,-27.701124,153.189646,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,10,Australia,AU,Queensland,-27.526796,153.091458,EPSG:4326 +HUMAN_OBSERVATION,oliverji,1,,,2021,3,1,Australia,AU,South Australia,-35.026256,138.56327,EPSG:4326 +HUMAN_OBSERVATION,Christine Heiser,1,,,2024,10,6,Australia,AU,Queensland,-27.470337,151.953841,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2023,12,1,Australia,AU,Queensland,-26.145622,151.718679,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,,2024,4,25,Australia,AU,Queensland,-27.544142,153.072176,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,25,Australia,AU,Queensland,-27.529069,153.104908,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,11,8,Australia,AU,Victoria,-38.671412,146.16405,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,12,20,Australia,AU,Queensland,-27.530095,153.104212,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,,2024,10,29,Australia,AU,Queensland,-27.505883,153.083694,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,Photos sent to Pittsworth Landcare by local resident.,2023,12,1,Australia,AU,Queensland,-27.746102,151.596504,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picadilly,2024,1,8,Australia,AU,Queensland,-27.52722,153.108169,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,11,17,Australia,AU,Queensland,-27.548694,153.051902,EPSG:4326 +HUMAN_OBSERVATION,Barbara Banks,1,,,2020,5,14,Australia,AU,Queensland,-19.127997,146.868071,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Silverleaf Rd, Byee. Adult. Unknown sex. Healthy. Observed by Wendy Eastaugh. Forwarded by email",2021,11,16,Australia,AU,Queensland,-26.196834,151.882996,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Spotted Gum,2020,2,10,Australia,AU,Queensland,-27.551598,153.056859,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,5,Australia,AU,Queensland,-27.724608,151.531342,EPSG:4326 +HUMAN_OBSERVATION,cjm83,1,,,2023,5,24,Australia,AU,Queensland,-26.483892,151.821762,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,2,9,Australia,AU,Victoria,-38.671165,146.163687,EPSG:4326 +HUMAN_OBSERVATION,sandraharding,1,,Seen by Sarah Lian when doing running class,2023,8,14,Australia,AU,Queensland,-27.514486,153.147662,EPSG:4326 +HUMAN_OBSERVATION,jessrob73,1,,,2024,5,5,Australia,AU,Victoria,-37.578793,143.894155,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2024,10,8,Australia,AU,Queensland,-27.571089,151.715433,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2023,2,19,Australia,AU,Queensland,-27.549953,153.036956,EPSG:4326 +HUMAN_OBSERVATION,shelleybanders,1,,,2024,11,1,Australia,AU,Victoria,-38.436814,145.834011,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear - known as Buster,2024,10,14,Australia,AU,Queensland,-27.53036,153.104182,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,8,20,Australia,AU,South Australia,-34.88661,138.733021,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Possibly Cindy Crawford and joey ? Sport and ref picnic area,2023,10,7,Australia,AU,Queensland,-27.525376,153.092066,EPSG:4326 +HUMAN_OBSERVATION,"Janine Duffy, Koala Clancy Foundation",1,MALE,"Young male koala, on ground when first seen, jumped into Swamp Gum, grabbed some loose bark, fell short distance, jumped across to adjacent Red Box, climbed to 1.5m off ground. When seen later, was high in tree.",2022,9,23,Australia,AU,Victoria,-37.842814,144.276697,EPSG:4326 +HUMAN_OBSERVATION,Andrew Rock,1,FEMALE,,2023,6,25,Australia,AU,Queensland,-27.276192,152.931883,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,,2022,2,20,Australia,AU,Queensland,-28.211379,152.866004,EPSG:4326 +HUMAN_OBSERVATION,amychasingbushstars,1,,,2023,8,18,Australia,AU,New South Wales,-31.451557,152.925442,EPSG:4326 +HUMAN_OBSERVATION,Ash,1,,,2024,6,13,Australia,AU,Queensland,-27.701846,153.192393,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,FEMALE,Mama and joey - very hard to see as auto-capture was delayed sadly,2023,11,2,Australia,AU,Queensland,-27.662848,153.075248,EPSG:4326 +HUMAN_OBSERVATION,mutedmushroom,1,,,2021,11,6,Australia,AU,Victoria,-37.920331,147.727392,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,,2021,5,8,Australia,AU,New South Wales,-28.259895,153.4018,EPSG:4326 +HUMAN_OBSERVATION,bruceandjoy,1,,,2023,11,11,Australia,AU,South Australia,-34.876522,138.700028,EPSG:4326 +HUMAN_OBSERVATION,Gayle Marien,1,,,2023,2,10,Australia,AU,Victoria,-38.486596,145.263561,EPSG:4326 +HUMAN_OBSERVATION,David Sinnott,1,,,2020,2,2,Australia,AU,New South Wales,-28.568458,153.31329,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Between admin building and cleaners donga,2024,4,6,Australia,AU,Queensland,-27.526967,153.091643,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,Just a little leg,2023,11,8,Australia,AU,Queensland,-27.662848,153.075248,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,Sitting in a peppermint gum.,2023,10,4,Australia,AU,Victoria,-37.874102,142.290886,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"could not get a better view or photo to identify. There were 4 koalas in the area - this and another I got a photo of earlier in the day; I heard two more, one further along the road and one down the spur - but could see neither.",2020,6,25,Australia,AU,New South Wales,-28.254259,153.377702,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,,2022,2,26,Australia,AU,Queensland,-27.542442,153.077592,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block picnic area,2024,10,22,Australia,AU,Queensland,-27.525896,153.090553,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,12,Australia,AU,South Australia,-34.890442,138.732065,EPSG:4326 +HUMAN_OBSERVATION,tstayns,1,,"Was lucky enough to be present when two rescued koalas were released. Jet (female) and Sonny (male) had been cared for at Animalia shelter in Frankston since about August last year, having arrived separately. Both appeared to quickly settle in to their freedom.",2023,6,12,Australia,AU,Victoria,-38.38554,145.141168,EPSG:4326 +HUMAN_OBSERVATION,julie,1,,,2023,9,22,Australia,AU,Queensland,-27.74779,153.184519,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,One of the previously released koalas. Unsure which one.,2023,10,13,Australia,AU,Queensland,-27.579187,152.930283,EPSG:4326 +HUMAN_OBSERVATION,ACSoule,1,,,2024,2,4,Australia,AU,Victoria,-38.645237,143.708389,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,5,6,Australia,AU,Queensland,-27.529126,153.103692,EPSG:4326 +HUMAN_OBSERVATION,brandon_rich,1,,,2023,1,24,Australia,AU,South Australia,-38.012128,140.960204,EPSG:4326 +HUMAN_OBSERVATION,regan_scheuber,1,FEMALE,,2023,11,4,Australia,AU,Queensland,-27.917478,153.375989,EPSG:4326 +HUMAN_OBSERVATION,Kevin,1,,,2023,1,23,Australia,AU,Queensland,-27.550154,153.034125,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,6,1,Australia,AU,Queensland,-27.527983,153.092304,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside admin building and near cleaners donga,2023,7,15,Australia,AU,Queensland,-27.526895,153.091693,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"Presumably one of our regulars. Climbed over the front gate, raced up the peppermint gum by the gate. Presumably heading for the redgums and bluegums in the backyard where the koalas usually sleep at irregular intervals. The ravens who spend their days in the peppermint gum were not impressed and bombed it.",2022,6,24,Australia,AU,Victoria,-37.8743,142.290735,EPSG:4326 +HUMAN_OBSERVATION,Dean,1,,,2022,1,23,Australia,AU,New South Wales,-34.099573,150.826365,EPSG:4326 +HUMAN_OBSERVATION,rossh72,1,,,2023,12,26,Australia,AU,Victoria,-37.679704,144.376855,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,15,Australia,AU,Queensland,-27.702991,153.192379,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,10,1,Australia,AU,Queensland,-27.25616,152.044701,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,4,15,Australia,AU,New South Wales,-28.260321,153.402462,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,25,Australia,AU,Queensland,-27.528402,153.109736,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,1,28,Australia,AU,Queensland,-27.620387,151.621033,EPSG:4326 +HUMAN_OBSERVATION,kimkaufmann,1,,,2021,1,24,Australia,AU,Victoria,-38.672047,143.85208,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,MALE,Large male hanging around the female and joey and trying his luck,2021,9,11,Australia,AU,New South Wales,-28.254367,153.377783,EPSG:4326 +HUMAN_OBSERVATION,Graham Armstrong,1,,,2024,10,2,Australia,AU,South Australia,-34.932892,138.719276,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,7,3,Australia,AU,New South Wales,-28.254369,153.377021,EPSG:4326 +HUMAN_OBSERVATION,mitchsnow,1,,,2024,11,3,Australia,AU,Queensland,-27.624808,153.142928,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2022,4,3,Australia,AU,South Australia,-35.007563,138.636607,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,18,Australia,AU,Queensland,-27.812919,151.55063,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,High on a Corymbia intermedia. A second koala was much lower on the same tree.,2021,6,9,Australia,AU,Queensland,-27.549197,153.168008,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside rear entrance to nursery Mother and joey,2023,11,12,Australia,AU,Queensland,-27.527314,153.092204,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,And Joey in Tallowwood,2020,8,24,Australia,AU,Queensland,-27.549154,153.059323,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,,2023,6,4,Australia,AU,Queensland,-27.833024,153.369091,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey gum,2022,3,9,Australia,AU,Queensland,-27.551325,153.05854,EPSG:4326 +HUMAN_OBSERVATION,zitafewster,1,,,2024,8,3,Australia,AU,South Australia,-35.027812,138.745898,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,9,Australia,AU,Queensland,-27.525838,153.090818,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,18,Australia,AU,South Australia,-34.891803,138.720373,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Opposite tennis courts near townhouses,2023,11,26,Australia,AU,Queensland,-27.525277,153.09338,EPSG:4326 +HUMAN_OBSERVATION,michikomarty,1,,First koala for the day!,2021,11,28,Australia,AU,Queensland,-27.716289,151.523891,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,FEMALE,2 koalas seen in this tree,2023,4,25,Australia,AU,Queensland,-27.733547,151.514145,EPSG:4326 +HUMAN_OBSERVATION,mitchbagz,1,,,2022,1,18,Australia,AU,Victoria,-37.277008,144.310913,EPSG:4326 +HUMAN_OBSERVATION,nicholascroft,1,,,2024,10,25,Australia,AU,Queensland,-27.519656,153.073131,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Inside nursery grounds Mother and joey,2024,9,22,Australia,AU,Queensland,-27.528359,153.092244,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy looking, seen a hundred metres from another",2023,9,14,Australia,AU,Queensland,-27.549758,153.033736,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,10,16,Australia,AU,South Australia,-34.887647,138.733671,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in Eucalyptus tereticornis. Lots of lantana clogging understorey needs control.,2024,6,29,Australia,AU,Queensland,-27.94551,152.536569,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,,2023,8,1,Australia,AU,Queensland,-27.412145,152.004244,EPSG:4326 +HUMAN_OBSERVATION,eastroud,1,,,2024,1,1,Australia,AU,New South Wales,-30.475474,151.636287,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2024,6,6,Australia,AU,Queensland,-27.328755,151.929383,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Peta Meagher. Submitted via FB.,2024,9,5,Australia,AU,Queensland,-26.421045,151.96548,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,7,28,Australia,AU,Queensland,-27.649595,151.714662,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,19,Australia,AU,South Australia,-34.89361,138.725583,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Black She Oak,2020,5,6,Australia,AU,Queensland,-27.551158,153.057776,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2023,12,20,Australia,AU,Queensland,-26.155079,151.749888,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area next to blue bin,2023,7,2,Australia,AU,Queensland,-27.528486,153.092458,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2021,10,2,Australia,AU,New South Wales,-28.257818,153.400637,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,,2023,1,19,Australia,AU,Queensland,-28.215891,152.860299,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,6,Australia,AU,Queensland,-27.506563,153.078423,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald eared"" Male, sitting in yellow box, within 50 m of mother and baby koala, and of another, probably female koala.",2020,1,15,Australia,AU,New South Wales,-30.519709,151.519675,EPSG:4326 +HUMAN_OBSERVATION,mikeahart,1,,,2024,4,1,Australia,AU,Victoria,-37.921857,147.728863,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in a Eucalyptus tereticornis.,2023,2,1,Australia,AU,Queensland,-28.031558,152.670095,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,,2023,2,23,Australia,AU,Queensland,-27.597975,151.894268,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,No ear tags observed.,2020,6,8,Australia,AU,Queensland,-27.512473,153.084241,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey - first one I've seen this year,2024,6,15,Australia,AU,Queensland,-27.528387,153.113438,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,4,27,Australia,AU,Queensland,-27.527161,153.090903,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to the TAFE nursery Mother and joey,2023,8,21,Australia,AU,Queensland,-27.527215,153.092019,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,4,6,Australia,AU,South Australia,-34.958464,138.687021,EPSG:4326 +HUMAN_OBSERVATION,Conservation Volunteers Australia,1,,Male adult koala,2022,2,14,Australia,AU,Queensland,-27.419223,152.608521,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,12,Australia,AU,South Australia,-34.892671,138.713446,EPSG:4326 +HUMAN_OBSERVATION,Luis Mata EntSocVic,1,,,2021,6,24,Australia,AU,Victoria,-38.273839,141.409052,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds Mother and joey,2024,10,6,Australia,AU,Queensland,-27.528446,153.092234,EPSG:4326 +HUMAN_OBSERVATION,thekladiespinne,1,,,2023,8,25,Australia,AU,Queensland,-27.51055,153.085052,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2023,11,12,Australia,AU,Queensland,-27.527149,153.091593,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of tafe cavendish road opposite basketball courts Maisie and joey,2023,8,12,Australia,AU,Queensland,-27.526699,153.090147,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,2,8,Australia,AU,South Australia,-34.900809,138.700331,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Paperbark,2020,10,6,Australia,AU,Queensland,-27.54652,153.058321,EPSG:4326 +HUMAN_OBSERVATION,Lucas Christofides,1,,,2024,6,9,Australia,AU,Queensland,-27.50986,153.083992,EPSG:4326 +HUMAN_OBSERVATION,Mike,1,MALE,In suburban back yard.,2020,11,21,Australia,AU,South Australia,-35.018472,138.634522,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,23,Australia,AU,South Australia,-34.890725,138.730144,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,3,11,Australia,AU,Victoria,-38.671288,146.163789,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,8,Australia,AU,Queensland,-27.545797,153.073567,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy koala crossed the road. observation by C Mastin-Richardson for TKWR. Onsite health check followed up by TKWR,2023,9,14,Australia,AU,Queensland,-27.445485,151.954487,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area,2023,7,1,Australia,AU,Queensland,-27.527247,153.092501,EPSG:4326 +HUMAN_OBSERVATION,kerryn01,1,,,2024,9,21,Australia,AU,Queensland,-27.251143,152.97586,EPSG:4326 +HUMAN_OBSERVATION,Chris Rehberg | Sydney Birding,1,,,2024,6,7,Australia,AU,New South Wales,-34.776909,146.586504,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,15,Australia,AU,South Australia,-34.890797,138.722307,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,1,Australia,AU,Queensland,-27.524679,153.093537,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,,2020,6,27,Australia,AU,Queensland,-27.139303,152.882671,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,3,3,Australia,AU,New South Wales,-28.269039,153.393005,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,We have named her Millie - not tagged,2023,4,26,Australia,AU,Queensland,-27.527208,153.111406,EPSG:4326 +HUMAN_OBSERVATION,Allen Lyu,1,,,2020,1,25,Australia,AU,Victoria,-38.763614,143.476041,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Exact location not provided. See along Bunya Highway near Murgon. Observed by Wendy Taylor. Submitted via msg.,2023,12,16,Australia,AU,Queensland,-26.241048,151.939777,EPSG:4326 +HUMAN_OBSERVATION,abhouse,1,,,2024,2,24,Australia,AU,South Australia,-34.990837,138.711672,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2023,12,26,Australia,AU,Queensland,-27.527582,153.092535,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,30,Australia,AU,Queensland,-27.527809,153.092443,EPSG:4326 +HUMAN_OBSERVATION,Arielle Saunders,1,,,2022,9,27,Australia,AU,South Australia,-34.901871,138.714655,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,16,Australia,AU,South Australia,-34.887153,138.720675,EPSG:4326 +HUMAN_OBSERVATION,gillaw,1,,,2023,10,28,Australia,AU,Victoria,-37.933013,141.967545,EPSG:4326 +HUMAN_OBSERVATION,Matt Endacott,1,,,2020,9,6,Australia,AU,South Australia,-34.97764,138.641325,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2022,11,25,Australia,AU,Victoria,-38.354224,146.386794,EPSG:4326 +HUMAN_OBSERVATION,a_hooper,1,,,2024,10,26,Australia,AU,Victoria,-36.174022,146.643953,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2021,4,11,Australia,AU,South Australia,-35.001941,138.641824,EPSG:4326 +HUMAN_OBSERVATION,Darren Fielder,1,,,2020,5,12,Australia,AU,Queensland,-27.608889,151.975278,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,5,2,Australia,AU,Queensland,-27.273238,152.939513,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Actively feeding on Angophora woodsiana.,2024,5,19,Australia,AU,Queensland,-27.551799,153.044601,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,23,Australia,AU,Queensland,-27.413313,152.003022,EPSG:4326 +HUMAN_OBSERVATION,fs_australia,1,,,2024,3,3,Australia,AU,Queensland,-27.54838,152.860838,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Very alert, healthy",2024,10,17,Australia,AU,Queensland,-27.332145,152.611297,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2023,9,10,Australia,AU,Queensland,-27.284739,153.000636,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe cavendish road - park end,2023,6,11,Australia,AU,Queensland,-27.526833,153.090466,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,2,2,Australia,AU,Queensland,-27.545519,153.069544,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2023,2,13,Australia,AU,South Australia,-34.865235,138.666077,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,1,27,Australia,AU,Queensland,-27.716453,151.5269,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,9,29,Australia,AU,Queensland,-27.52705,153.108212,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi-orange tag - & joey higher up,2023,2,27,Australia,AU,Queensland,-27.529136,153.103171,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark,2021,2,11,Australia,AU,Queensland,-27.551361,153.058585,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2023,7,31,Australia,AU,Queensland,-27.529077,153.103147,EPSG:4326 +HUMAN_OBSERVATION,dibbling,1,,,2024,6,29,Australia,AU,Queensland,-27.909986,153.371971,EPSG:4326 +HUMAN_OBSERVATION,mclandcare,1,FEMALE,,2021,11,29,Australia,AU,Victoria,-37.898413,144.173662,EPSG:4326 +HUMAN_OBSERVATION,rosscomcqueen,1,,,2023,6,12,Australia,AU,Queensland,-27.537925,153.055239,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,10,8,Australia,AU,Queensland,-27.526685,153.110267,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,9,11,Australia,AU,South Australia,-34.997614,138.637647,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,3,Australia,AU,South Australia,-34.890478,138.730162,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Maisie,2024,11,10,Australia,AU,Queensland,-27.526832,153.09039,EPSG:4326 +HUMAN_OBSERVATION,sean5155,1,,,2022,8,14,Australia,AU,South Australia,-35.008597,138.753175,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,7,Australia,AU,Queensland,-27.529431,153.104132,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Koala scat and grey gum trunk scratches,2022,10,16,Australia,AU,New South Wales,-33.154686,151.068497,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,In Eucalyptus crebra,2024,4,11,Australia,AU,Queensland,-27.929628,152.547689,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,We saw this in the tree on our property and then when the sun went down we heard a male koala not too far away up the paddock a bit,2024,11,10,Australia,AU,Queensland,-26.974792,152.078278,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,11,19,Australia,AU,New South Wales,-33.147398,151.077964,EPSG:4326 +HUMAN_OBSERVATION,Qld Naturalists' Club,1,,while doing bushcare work this Koala drew attention by dropping the pellets every few seconds on one of the volunteers.,2024,4,14,Australia,AU,Queensland,-27.510825,153.070186,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,11 koalas in total observed. Photos of 4. Adults. Unknown sex. Observed by Wendy Taylor and Ray Murray from Koala Rescue Qld. Submitted via msg.,2024,9,24,Australia,AU,Queensland,-26.413203,151.826978,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2022,12,30,Australia,AU,Queensland,-27.527095,153.092042,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2020,9,5,Australia,AU,South Australia,-35.014797,138.600056,EPSG:4326 +HUMAN_OBSERVATION,rageth,1,,,2022,4,13,Australia,AU,New South Wales,-31.458242,152.92752,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,car strike - volunteer rescue,2021,10,14,Australia,AU,Victoria,-37.521052,144.095225,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,14,Australia,AU,Queensland,-27.52745,153.090983,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Release,2024,8,30,Australia,AU,Queensland,-27.462478,152.151,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi & joey,2023,12,20,Australia,AU,Queensland,-27.529473,153.102519,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In unknown Eucalypt,2020,2,11,Australia,AU,Queensland,-27.549239,153.050178,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,21,Australia,AU,Queensland,-27.53013,153.103559,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2023,12,30,Australia,AU,Queensland,-27.527145,153.092039,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,30,Australia,AU,Queensland,-27.52846,153.10339,EPSG:4326 +HUMAN_OBSERVATION,kathyfinch66,1,,Koala joey waiting for mum who was busy eating on another branch. Observed in a Silver Leaf Ironbark.,2021,10,14,Australia,AU,Queensland,-27.831795,152.344529,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult female. Deceased. Removed from road. Observed by Denise Shaw. Submitted via email.,2023,7,14,Australia,AU,Queensland,-26.44925,151.822595,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,2,28,Australia,AU,Queensland,-26.166516,151.815231,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,18,Australia,AU,Queensland,-27.823465,152.992637,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,5,Australia,AU,South Australia,-34.892995,138.720328,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2024,4,22,Australia,AU,Victoria,-38.832353,143.513887,EPSG:4326 +HUMAN_OBSERVATION,Aalbert Rebergen,1,,,2023,8,24,Australia,AU,Victoria,-38.319003,142.363098,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,2,10,Australia,AU,Queensland,-27.527128,153.108194,EPSG:4326 +HUMAN_OBSERVATION,georgiescott,1,,,2024,11,11,Australia,AU,Queensland,-27.418207,152.620063,EPSG:4326 +HUMAN_OBSERVATION,bmbur2,1,,,2021,7,30,Australia,AU,Victoria,-37.783049,145.059512,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,2,25,Australia,AU,South Australia,-34.903137,138.702664,EPSG:4326 +HUMAN_OBSERVATION,mitchsnow,1,,,2024,7,15,Australia,AU,Queensland,-27.495833,153.40068,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Healthy. Previously release on Bicks Road. Observed by Wendy Taylor. Submitted via msg.,2024,10,10,Australia,AU,Queensland,-26.130105,151.812421,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2024,1,3,Australia,AU,Queensland,-27.333792,151.93135,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,Above the sign to Murrumbidgee Valley Nature Reserve,2024,9,16,Australia,AU,New South Wales,-34.766407,146.581725,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,10,5,Australia,AU,Queensland,-27.524065,153.092906,EPSG:4326 +HUMAN_OBSERVATION,Frank Hartmann,1,,,2022,10,27,Australia,AU,Queensland,-19.123501,146.871644,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Female as she was crying out as the cockatoos where hassling her. More scat found near by most likely a male as was massive,2022,3,28,Australia,AU,New South Wales,-34.697433,146.418367,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,appears to be a different koala from one photographed y'day.,2024,11,2,Australia,AU,Queensland,-27.511022,153.070408,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Ironbark,2023,4,5,Australia,AU,Queensland,-27.534119,153.036596,EPSG:4326 +HUMAN_OBSERVATION,naturehoodz,1,,,2023,11,16,Australia,AU,South Australia,-35.088518,138.58784,EPSG:4326 +HUMAN_OBSERVATION,fraserj09,1,,,2023,7,21,Australia,AU,Victoria,-38.393116,142.834241,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult female with small joey in pouch. Hit by car. Injured and rescued by Wendy Taylor. Mum later euthanised. Joey placed into care. Observed and reported by Cassie. Submitted by Denise Shaw via email. (both photos are the same koala),2023,8,8,Australia,AU,Queensland,-26.189596,151.893834,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,9,5,Australia,AU,Queensland,-27.528868,153.115299,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,28,Australia,AU,South Australia,-34.882556,138.794982,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark,2020,11,6,Australia,AU,Queensland,-27.547896,153.050643,EPSG:4326 +HUMAN_OBSERVATION,leannep,1,,,2021,11,18,Australia,AU,Queensland,-27.813233,153.162398,EPSG:4326 +HUMAN_OBSERVATION,dingopete,1,,,2023,4,28,Australia,AU,Queensland,-27.401163,153.438797,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,9,9,Australia,AU,South Australia,-35.012279,138.65723,EPSG:4326 +HUMAN_OBSERVATION,kathywalter,1,,,2024,1,5,Australia,AU,Queensland,-27.730675,151.641299,EPSG:4326 +HUMAN_OBSERVATION,swampycreek,1,,,2022,2,17,Australia,AU,Queensland,-27.338765,152.613703,EPSG:4326 +HUMAN_OBSERVATION,basilsdonna,1,,,2024,1,8,Australia,AU,Victoria,-37.714663,141.561501,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,,2021,12,13,Australia,AU,Queensland,-27.540995,153.075286,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male,2024,10,15,Australia,AU,Queensland,-27.527342,153.103152,EPSG:4326 +HUMAN_OBSERVATION,carrierisley,1,,This Koala was dead killed by a car.,2020,8,3,Australia,AU,New South Wales,-32.559194,151.813421,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,"I think a male chasing a female, She was sounding distressed. In Eucalyptus microcorys.",2021,8,15,Australia,AU,Queensland,-27.551183,153.05478,EPSG:4326 +HUMAN_OBSERVATION,peterrichardson,1,,,2024,7,14,Australia,AU,Victoria,-36.942941,145.458245,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,10,7,Australia,AU,Queensland,-27.552106,153.054248,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear - Bozo,2023,6,24,Australia,AU,Queensland,-27.527222,153.10766,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,2 koalas - possibly mum & joey,2022,12,3,Australia,AU,Queensland,-27.528515,153.113405,EPSG:4326 +HUMAN_OBSERVATION,afisch80,1,,Actively eating leaves,2024,4,10,Australia,AU,Victoria,-38.668431,143.853956,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,same tree as other koala (possibly mother and teenage offspring),2021,11,29,Australia,AU,Queensland,-27.793083,151.546549,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - probably Cindy,2023,6,26,Australia,AU,Queensland,-27.527252,153.109098,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - White tag LEFT ear - Bandit,2022,12,22,Australia,AU,Queensland,-27.527814,153.111681,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2022,9,29,Australia,AU,Victoria,-38.327388,142.365376,EPSG:4326 +HUMAN_OBSERVATION,lachlanprice7,1,,,2024,3,30,Australia,AU,New South Wales,-31.633069,152.780766,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,12,24,Australia,AU,New South Wales,-28.252729,153.376667,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2020,4,27,Australia,AU,South Australia,-34.971218,138.638004,EPSG:4326 +HUMAN_OBSERVATION,Susan J,1,,Saw four healthy adult koalas in Whites Hill Reserve.,2023,12,30,Australia,AU,Queensland,-27.508203,153.08015,EPSG:4326 +HUMAN_OBSERVATION,Adam Richardt,1,,"In a tree amongst a car park in Eddie Hyland Park. I was with koala rescuers, who said it looked like a young male. An ear tag was clearly visible.",2021,11,8,Australia,AU,Queensland,-27.283522,152.985024,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,In a small brush box tree. tick on the left side of its face.,2021,11,19,Australia,AU,New South Wales,-28.254212,153.377088,EPSG:4326 +HUMAN_OBSERVATION,Darcy Whittaker,1,MALE,,2021,6,14,Australia,AU,South Australia,-34.702946,138.970435,EPSG:4326 +HUMAN_OBSERVATION,aly,1,,,2022,11,20,Australia,AU,South Australia,-35.770017,136.881056,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,Female koala in Eucalyptus microcorys,2023,1,4,Australia,AU,Queensland,-27.41348,152.003022,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,Boonah Rail Trail; two animals in small Euc. tereticornis. One on left in image #2 is noticeably smaller than the other.,2024,9,4,Australia,AU,Queensland,-27.987871,152.678696,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland entrance,2023,11,18,Australia,AU,Queensland,-27.52752,153.092472,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark,2021,12,29,Australia,AU,Queensland,-27.535172,153.037101,EPSG:4326 +HUMAN_OBSERVATION,rdgray,1,,,2024,6,8,Australia,AU,Victoria,-38.059155,141.922317,EPSG:4326 +HUMAN_OBSERVATION,Kelly,1,,,2021,4,18,Australia,AU,Victoria,-37.962868,144.410005,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,1,20,Australia,AU,Queensland,-27.527287,153.090835,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Marilyn,2024,1,17,Australia,AU,South Australia,-34.891436,138.718951,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,,2024,11,6,Australia,AU,Victoria,-38.496628,142.979817,EPSG:4326 +HUMAN_OBSERVATION,biol_student347,1,,,2021,4,7,Australia,AU,Queensland,-27.493607,153.404444,EPSG:4326 +HUMAN_OBSERVATION,Tess,1,,,2024,8,5,Australia,AU,Queensland,-27.542988,153.072712,EPSG:4326 +HUMAN_OBSERVATION,Kye Turnbull,1,,,2020,11,18,Australia,AU,Queensland,-27.093968,152.703614,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - tag RIGHT ear,2023,1,31,Australia,AU,Queensland,-27.529982,153.111017,EPSG:4326 +HUMAN_OBSERVATION,wombatplace,1,,Sighting and photos (c) david19. Field Notes - Three in one tree,2022,1,16,Australia,AU,South Australia,-35.086753,138.675705,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,MALE,Dead by vehicle strike,2020,8,31,Australia,AU,Queensland,-27.546649,152.082551,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,One of two related iNaturalist observations. This entry concerns the JUVENILE KOALA. Links to the related observations are as follows: - Adult koala https://inaturalist.ala.org.au/observations/198116622 - Juvenile koala https://inaturalist.ala.org.au/observations/198116692,2024,1,31,Australia,AU,Queensland,-27.510453,153.086131,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,In mum’s tree Maisie and joey,2024,10,13,Australia,AU,Queensland,-27.52627,153.090991,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2023,10,29,Australia,AU,South Australia,-34.881375,138.768976,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,,2024,9,21,Australia,AU,New South Wales,-28.285035,153.38915,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside cleaners donga,2024,4,27,Australia,AU,Queensland,-27.52701,153.091884,EPSG:4326 +HUMAN_OBSERVATION,Sharon Dodd,1,,,2021,11,22,Australia,AU,Victoria,-38.347564,146.40521,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2024,9,26,Australia,AU,New South Wales,-33.076711,151.095441,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,FEMALE,"Displaced koala at palm lake resort, Hogg St Cranley. rescued and taken for assessment to Wacol RSPCA Wildife Hospital.",2023,11,2,Australia,AU,Queensland,-27.524272,151.925801,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2021,10,27,Australia,AU,South Australia,-34.97019,138.637949,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,5,26,Australia,AU,Queensland,-27.525809,153.092679,EPSG:4326 +HUMAN_OBSERVATION,Jasmin Packer,1,,,2021,1,31,Australia,AU,South Australia,-35.033371,138.678002,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,19,Australia,AU,Queensland,-27.52582,153.090845,EPSG:4326 +HUMAN_OBSERVATION,Heath Hunter,1,,,2023,1,22,Australia,AU,South Australia,-34.943081,138.674134,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree in the sport and Rec trees - male (testicles Visible),2023,5,21,Australia,AU,Queensland,-27.525561,153.09253,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania Way Woodlands at back of tafe Cindy Crawford koala with Joey,2023,6,11,Australia,AU,Queensland,-27.524918,153.093737,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,13,Australia,AU,South Australia,-34.892793,138.721872,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,,2023,2,26,Australia,AU,Queensland,-27.597049,151.895296,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,16,Australia,AU,Queensland,-27.793138,151.546826,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,29,Australia,AU,South Australia,-34.892553,138.72049,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.768371,143.606562,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark,2021,6,11,Australia,AU,Queensland,-27.551682,153.058894,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2022,10,29,Australia,AU,Queensland,-27.543239,153.072044,EPSG:4326 +HUMAN_OBSERVATION,annikagruber,1,,,2023,4,19,Australia,AU,Queensland,-19.131649,146.859178,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In E.teriticornis,2022,4,2,Australia,AU,Queensland,-27.785431,152.776298,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,,2024,9,1,Australia,AU,Queensland,-27.510344,153.086537,EPSG:4326 +HUMAN_OBSERVATION,meta4,1,,,2022,1,22,Australia,AU,Victoria,-37.825729,144.185324,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In Tristania and Wisteria Woodland - middle,2023,7,23,Australia,AU,Queensland,-27.524942,153.093094,EPSG:4326 +HUMAN_OBSERVATION,roberticraig,1,,Three koalas in a silver birch,2024,10,31,Australia,AU,Victoria,-36.40493,146.752717,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2024,10,5,Australia,AU,South Australia,-34.902655,138.614279,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2022,6,20,Australia,AU,Victoria,-38.363214,145.316007,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,1,6,Australia,AU,Queensland,-27.580959,152.929077,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,8,17,Australia,AU,Queensland,-27.649617,151.714705,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery entrance gates Mother and joey,2023,10,22,Australia,AU,Queensland,-27.527311,153.091481,EPSG:4326 +HUMAN_OBSERVATION,summerfell,1,,,2021,11,16,Australia,AU,Queensland,-27.817245,153.076295,EPSG:4326 +HUMAN_OBSERVATION,kymelen,1,,,2021,10,25,Australia,AU,Victoria,-35.874236,145.330621,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"From the nose markings this is a male. Note the tick con the left of its face,",2020,11,9,Australia,AU,New South Wales,-28.254509,153.377096,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,8,30,Australia,AU,South Australia,-34.886951,138.733246,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,Back joey "CeeJay". Jumping from one eucalyptus microcorys to another. Joey approx 12-14 months.,2022,12,18,Australia,AU,Queensland,-27.413923,152.003219,EPSG:4326 +HUMAN_OBSERVATION,Matteo Grilli,1,,,2020,9,13,Australia,AU,Queensland,-27.436148,152.998379,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear - known as Buster,2024,3,23,Australia,AU,Queensland,-27.531473,153.105515,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,1,Australia,AU,Queensland,-27.528835,153.111352,EPSG:4326 +HUMAN_OBSERVATION,colymbiformes,1,,,2023,9,23,Australia,AU,Queensland,-28.012781,152.554658,EPSG:4326 +HUMAN_OBSERVATION,Max,1,MALE,,2023,9,9,Australia,AU,Queensland,-26.939372,152.636244,EPSG:4326 +HUMAN_OBSERVATION,Alan Dahl,1,FEMALE,,2020,3,2,Australia,AU,Victoria,-38.521429,143.986414,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2024,3,15,Australia,AU,Queensland,-27.530834,153.103601,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,7,5,Australia,AU,New South Wales,-28.254525,153.3776,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank baby,2022,10,12,Australia,AU,Queensland,-27.545834,153.073544,EPSG:4326 +HUMAN_OBSERVATION,Huey,1,,,2023,7,16,Australia,AU,South Australia,-35.959996,136.811271,EPSG:4326 +HUMAN_OBSERVATION,bbiancarosee,1,,"Myself and some volunteers were busy removing Olive and Boneseed in Para Wirra Conservation park. As we were walking back, we saw this little cutie at the base of the tree. It seemed unfazed by us, and let me take a few photos and videos! I was really excited to see him so up close! 🐨",2024,2,17,Australia,AU,South Australia,-34.666542,138.822662,EPSG:4326 +HUMAN_OBSERVATION,Anneke Logan,1,,Female and joey,2022,11,27,Australia,AU,Queensland,-27.264957,152.049013,EPSG:4326 +HUMAN_OBSERVATION,koalasofstraddie,1,,,2021,4,24,Australia,AU,Queensland,-27.401857,153.441168,EPSG:4326 +HUMAN_OBSERVATION,crawf,1,,,2022,3,6,Australia,AU,South Australia,-34.886225,138.712526,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2024,11,5,Australia,AU,Victoria,-38.383892,145.302251,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,10,19,Australia,AU,Queensland,-27.550833,153.057778,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.375004,145.314419,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2021,11,20,Australia,AU,Victoria,-38.384733,145.308042,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,3,17,Australia,AU,Queensland,-27.547757,153.058737,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Red Tag. Right ear.,2024,5,31,Australia,AU,Queensland,-27.545793,153.073231,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,5,29,Australia,AU,Queensland,-27.529984,153.111289,EPSG:4326 +HUMAN_OBSERVATION,simonhughes65,1,,Likely affected by chlamydia. Signs of significant abscesses and moisture in groin,2021,11,15,Australia,AU,New South Wales,-28.52427,152.998892,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,,2020,4,17,Australia,AU,Queensland,-27.907798,153.382969,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Front of TAFE Cavendish Road Male,2024,10,5,Australia,AU,Queensland,-27.527243,153.09073,EPSG:4326 +HUMAN_OBSERVATION,enekoazkue,1,,,2022,10,16,Australia,AU,Queensland,-27.423853,153.517285,EPSG:4326 +HUMAN_OBSERVATION,Karl A. Berger,1,,,2023,10,22,Australia,AU,South Australia,-34.95774,138.7088,EPSG:4326 +HUMAN_OBSERVATION,Friends of Parks Queensland,1,,,2024,8,24,Australia,AU,Queensland,-26.252431,152.818404,EPSG:4326 +HUMAN_OBSERVATION,JF,1,,,2024,6,22,Australia,AU,Queensland,-27.508225,153.081308,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2023,10,21,Australia,AU,Victoria,-37.208115,145.430897,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,3,Australia,AU,Queensland,-27.529238,153.108942,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area opposite Aldi gates,2024,7,7,Australia,AU,Queensland,-27.526557,153.092929,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,"Photo credit: Ben, Karana Downs and Mt Crosby Residents Anstead Bushland Reserve",2020,4,7,Australia,AU,Queensland,-27.542516,152.859615,EPSG:4326 +HUMAN_OBSERVATION,Dafne,1,FEMALE,Mum & baby,2024,11,8,Australia,AU,Queensland,-27.55272,153.054373,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Monty,2024,1,29,Australia,AU,South Australia,-34.889652,138.721984,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,2,10,Australia,AU,South Australia,-34.959151,138.699646,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,11,3,Australia,AU,Queensland,-27.550715,153.058026,EPSG:4326 +HUMAN_OBSERVATION,secret93,1,,,2023,9,24,Australia,AU,Victoria,-37.022636,145.456542,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2023,12,30,Australia,AU,Queensland,-27.528452,153.092825,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,18,Australia,AU,South Australia,-34.891599,138.731843,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,2,15,Australia,AU,Queensland,-27.552165,153.056023,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male koala v high in tall Yellow gum eating and swinging in the wind. He was lower in tree on a branch when I found him earlier,2023,11,26,Australia,AU,Victoria,-37.860267,144.277423,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,5,13,Australia,AU,Queensland,-27.537641,153.056787,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,28,Australia,AU,Queensland,-27.529717,153.104941,EPSG:4326 +HUMAN_OBSERVATION,Nick Lambert,1,,,2024,9,20,Australia,AU,New South Wales,-30.422992,152.979609,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,30,Australia,AU,South Australia,-34.890586,138.730651,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2024,10,16,Australia,AU,Victoria,-37.617039,143.89988,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,,2022,12,16,Australia,AU,Queensland,-28.211403,152.86581,EPSG:4326 +HUMAN_OBSERVATION,davidmck,1,,,2023,5,13,Australia,AU,Victoria,-37.913864,144.172853,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,7,Australia,AU,Queensland,-27.528942,153.112142,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,,2024,11,23,Australia,AU,Queensland,-27.409529,151.997408,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,11,26,Australia,AU,Queensland,-27.545748,153.074427,EPSG:4326 +HUMAN_OBSERVATION,Graham Armstrong,1,,,2023,12,21,Australia,AU,South Australia,-34.903878,138.691444,EPSG:4326 +HUMAN_OBSERVATION,Kym Sparshott,1,,"In stringybark beside dam, nr shelter sheds",2023,11,25,Australia,AU,Queensland,-27.260844,152.0668,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Scat under a medium narrow leaf string bark,2023,8,26,Australia,AU,New South Wales,-33.11913,151.232955,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,16,Australia,AU,Queensland,-27.528043,153.092338,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,9,28,Australia,AU,Queensland,-27.398429,151.774565,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,6,Australia,AU,Queensland,-27.527182,153.090883,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2024,3,25,Australia,AU,South Australia,-34.892847,138.721201,EPSG:4326 +HUMAN_OBSERVATION,fiona_murdoch,1,,Observed by Antoinette Birkenbeil,2022,1,28,Australia,AU,Victoria,-37.074481,144.295497,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2023,12,30,Australia,AU,Queensland,-27.525581,153.092669,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,9,17,Australia,AU,Victoria,-38.352354,146.407013,EPSG:4326 +HUMAN_OBSERVATION,WenU,1,,,2023,9,4,Australia,AU,Victoria,-38.667948,143.860711,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2022,11,24,Australia,AU,Queensland,-27.509711,153.070312,EPSG:4326 +HUMAN_OBSERVATION,gillbsydney,1,,,2023,3,7,Australia,AU,Victoria,-38.333712,142.356434,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - green tag LEFT ear - Bozo,2023,6,26,Australia,AU,Queensland,-27.526619,153.10906,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,near 1270 Mann Silo Road,2021,11,29,Australia,AU,Queensland,-27.794422,151.555996,EPSG:4326 +HUMAN_OBSERVATION,foddles,1,MALE,,2024,11,5,Australia,AU,Victoria,-37.860721,144.272211,EPSG:4326 +HUMAN_OBSERVATION,GeorgeK,1,,,2022,1,12,Australia,AU,Queensland,-27.435569,153.544421,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,11,8,Australia,AU,Queensland,-26.267582,151.865454,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,11,Australia,AU,Queensland,-27.545886,153.072835,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,9,25,Australia,AU,Queensland,-27.527183,153.10772,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,5,Australia,AU,Queensland,-27.542084,153.068919,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,10,17,Australia,AU,South Australia,-34.893151,138.626158,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Male,2023,3,23,Australia,AU,Queensland,-27.524482,153.092141,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Malar crescent Nanango. Male. Healthy. Observedby Naomi Bishop. Forwarded by messenger,2022,1,23,Australia,AU,Queensland,-26.576088,151.967688,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,10,27,Australia,AU,South Australia,-34.880911,138.778415,EPSG:4326 +HUMAN_OBSERVATION,tracyrout,1,,,2021,11,24,Australia,AU,Queensland,-27.524994,153.068163,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,7,15,Australia,AU,Queensland,-27.551411,153.057576,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,,2024,9,27,Australia,AU,Queensland,-27.262945,152.049928,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,No visible ear tags.,2023,10,2,Australia,AU,Queensland,-27.508614,153.080832,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear,2023,6,2,Australia,AU,Queensland,-27.528917,153.103062,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,12,7,Australia,AU,South Australia,-34.868643,138.657215,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,Reported by Kingsthorpe SS principal on grounds,2021,11,11,Australia,AU,Queensland,-27.4735,151.8192,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,,2021,1,12,Australia,AU,Victoria,-38.175806,145.130477,EPSG:4326 +HUMAN_OBSERVATION,rowland_renee,1,,,2024,11,18,Australia,AU,Victoria,-37.330869,144.594839,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2020,3,16,Australia,AU,Victoria,-38.384838,145.309052,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near e block,2024,1,21,Australia,AU,Queensland,-27.526296,153.090633,EPSG:4326 +HUMAN_OBSERVATION,Pascale Jacq,1,,Skull of old koala (molars worn down),2023,9,18,Australia,AU,Victoria,-38.387168,145.382063,EPSG:4326 +HUMAN_OBSERVATION,Emma H.,1,,,2024,5,5,Australia,AU,Queensland,-19.126611,146.868422,EPSG:4326 +HUMAN_OBSERVATION,dagarra,1,,,2024,9,1,Australia,AU,New South Wales,-31.937303,152.456779,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy, alert, possibly mother of nearby juvenile",2023,2,20,Australia,AU,Queensland,-27.544355,153.056533,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland- in nursery grounds,2023,9,10,Australia,AU,Queensland,-27.528088,153.092266,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Two male koalas on one branch - this is the second one,2023,4,13,Australia,AU,Queensland,-27.525414,153.091287,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Oaky Creek Gayndah. Adult. Healthy. Unknown sex. Being harassed by a cockatoo. Observed by Eric Sturgess. Forwarded by email.,2021,11,22,Australia,AU,Queensland,-25.633838,151.624204,EPSG:4326 +HUMAN_OBSERVATION,trevp,1,,,2020,10,19,Australia,AU,Victoria,-38.318959,142.362786,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - olive green tag RIGHT ear - (Becky or Mary) with joey.,2023,10,10,Australia,AU,Queensland,-27.529482,153.109446,EPSG:4326 +HUMAN_OBSERVATION,george_seagull,1,,Apollo Bay.,2022,9,24,Australia,AU,Victoria,-38.748927,143.66038,EPSG:4326 +HUMAN_OBSERVATION,Oscar Dove,1,,,2023,10,5,Australia,AU,Queensland,-27.914748,153.372214,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,12,12,Australia,AU,Queensland,-27.509215,153.08513,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,6,2,Australia,AU,Queensland,-27.525009,153.093341,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,5,6,Australia,AU,Queensland,-27.570378,152.103011,EPSG:4326 +HUMAN_OBSERVATION,taopina,1,,,2024,5,23,Australia,AU,South Australia,-34.890488,138.715703,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Believe this is a koala due to the bellowing noise in the night!,2021,1,2,Australia,AU,New South Wales,-28.254182,153.377571,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,4,Australia,AU,South Australia,-34.890283,138.723704,EPSG:4326 +HUMAN_OBSERVATION,bankside106,1,MALE,,2021,10,5,Australia,AU,Queensland,-27.544366,153.046607,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,4,14,Australia,AU,Queensland,-27.527459,153.092343,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park Male- testicles visible ?jacob Jnr?,2023,10,22,Australia,AU,Queensland,-27.525368,153.092257,EPSG:4326 +HUMAN_OBSERVATION,koalasofstraddie,1,,,2021,5,2,Australia,AU,Queensland,-27.401332,153.441002,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2024,6,13,Australia,AU,New South Wales,-33.076654,151.095355,EPSG:4326 +HUMAN_OBSERVATION,mraph,1,,,2024,6,6,Australia,AU,Victoria,-38.423858,144.960372,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,8,13,Australia,AU,Queensland,-27.43013,151.7229,EPSG:4326 +HUMAN_OBSERVATION,Leonie Daws,1,,Post bushfire Mallacoota,2020,1,30,Australia,AU,Victoria,-37.535533,149.731788,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,,Healthy (no wet bum),2021,4,5,Australia,AU,Queensland,-27.46569,152.402363,EPSG:4326 +HUMAN_OBSERVATION,Alan Dahl,1,,,2020,3,2,Australia,AU,Victoria,-38.521429,143.986414,EPSG:4326 +HUMAN_OBSERVATION,Adriana Labate,1,,,2020,1,10,Australia,AU,Queensland,-19.12497,146.870712,EPSG:4326 +HUMAN_OBSERVATION,Ian Clark,1,,,2021,3,9,Australia,AU,Victoria,-38.23467,145.236388,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via Msg.,2024,7,13,Australia,AU,Queensland,-26.146371,151.743955,EPSG:4326 +HUMAN_OBSERVATION,maymay33,1,,,2024,4,16,Australia,AU,Queensland,-26.894952,152.591678,EPSG:4326 +HUMAN_OBSERVATION,Margaret Smith,1,,,2021,10,11,Australia,AU,South Australia,-35.960165,136.808819,EPSG:4326 +HUMAN_OBSERVATION,melfish8,1,,,2024,2,11,Australia,AU,Queensland,-27.414995,153.482208,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,11,19,Australia,AU,Queensland,-27.539029,153.055925,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,7,26,Australia,AU,Queensland,-27.527095,153.091817,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2021,9,4,Australia,AU,Queensland,-27.546645,153.054552,EPSG:4326 +HUMAN_OBSERVATION,Paul G. Schrijvershof,1,,,2022,3,10,Australia,AU,Victoria,-38.814028,143.536523,EPSG:4326 +HUMAN_OBSERVATION,Gawain,1,,Orphaned,2024,7,1,Australia,AU,Victoria,-38.378565,145.295569,EPSG:4326 +HUMAN_OBSERVATION,kristyn22,1,,,2023,11,18,Australia,AU,Queensland,-27.788917,152.779892,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,2,15,Australia,AU,Queensland,-27.527344,153.091421,EPSG:4326 +HUMAN_OBSERVATION,Margaret Alcorn,1,,,2023,11,17,Australia,AU,Victoria,-36.788463,145.802057,EPSG:4326 +HUMAN_OBSERVATION,mikew65,1,,,2024,2,15,Australia,AU,South Australia,-34.83217,135.685924,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,14,Australia,AU,Queensland,-27.527229,153.108176,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2023,10,8,Australia,AU,New South Wales,-28.257899,153.400813,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult female with joey. Healthy. Observer omitted. Submitted by Denise Shaw via email.,2023,2,9,Australia,AU,Queensland,-26.155358,151.750039,EPSG:4326 +HUMAN_OBSERVATION,kerryn01,1,,,2024,9,21,Australia,AU,Queensland,-27.25195,152.975678,EPSG:4326 +HUMAN_OBSERVATION,debm88,1,,,2021,10,20,Australia,AU,South Australia,-34.990948,138.629657,EPSG:4326 +HUMAN_OBSERVATION,robcullen,1,,Female koala in a silver leafed ironbark. She has been away from the property for about 3 weeks. Her joey is now climbing independently in the trees.,2021,10,24,Australia,AU,Queensland,-28.174495,152.907121,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood but actively harassing a smaller koala who was crying in a nearby tree,2022,3,14,Australia,AU,Queensland,-27.534244,153.060855,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,With boobook owl in background,2021,5,10,Australia,AU,Queensland,-27.534013,153.058883,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,11,27,Australia,AU,Victoria,-38.67152,146.164214,EPSG:4326 +HUMAN_OBSERVATION,Thomas Brodribb,1,,,2023,9,6,Australia,AU,Queensland,-28.236194,152.743565,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,,2024,11,7,Australia,AU,Queensland,-27.413783,152.003128,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Torren Anderton. Submitted by Wendy Taylor via msg.,2024,9,24,Australia,AU,Queensland,-26.156417,151.976497,EPSG:4326 +HUMAN_OBSERVATION,Ash,1,,Koala #4,2023,10,11,Australia,AU,Queensland,-27.510903,153.084375,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,In tree directly adjacent to tree in koala observation: https://inaturalist.ala.org.au/observations/226581596 Possibly same koala.,2024,7,3,Australia,AU,Victoria,-38.481703,142.974717,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Two koalas same tree,2023,4,16,Australia,AU,Queensland,-27.527956,153.092235,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,12,Australia,AU,Queensland,-27.544095,153.072108,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,1,20,Australia,AU,New South Wales,-29.870496,150.601489,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,4,7,Australia,AU,Queensland,-27.51056,153.086939,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,8,28,Australia,AU,Queensland,-27.918721,153.375986,EPSG:4326 +HUMAN_OBSERVATION,insiderelic,1,,,2020,12,12,Australia,AU,South Australia,-34.984595,138.707916,EPSG:4326 +HUMAN_OBSERVATION,harrison_kilpatrick,1,,Koala with baby,2023,8,22,Australia,AU,Victoria,-38.835476,143.513039,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Rescued by Koala Rescue Qld. Injured via dog attack. Dogs were restrained. Unfortunately the koala crawled into dog enclosure with no escape. Later euthanised. Injuries included: Septic peritonitis, Hemoabdomen, GIT puncture, Pelvic fracture, Deep muscle punctures, Unilateral hip dysplasia. Observed by Wendy Taylor. Submitted via msg.",2024,5,16,Australia,AU,Queensland,-26.492659,151.851697,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,11,17,Australia,AU,Queensland,-27.527118,153.091897,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag - & her joey,2023,2,14,Australia,AU,Queensland,-27.530549,153.104584,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,,2024,11,7,Australia,AU,Queensland,-27.956453,152.581096,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block Mother and joey,2023,10,7,Australia,AU,Queensland,-27.526561,153.09094,EPSG:4326 +HUMAN_OBSERVATION,noddyblue,1,,,2023,4,9,Australia,AU,Victoria,-36.878303,145.409578,EPSG:4326 +HUMAN_OBSERVATION,telopea95,1,,,2023,2,14,Australia,AU,Victoria,-38.675424,145.612279,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Maisie Mother and joey,2023,11,11,Australia,AU,Queensland,-27.527301,153.091457,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,,2023,9,9,Australia,AU,Queensland,-27.550544,153.055767,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2021,1,2,Australia,AU,Queensland,-27.546353,153.069269,EPSG:4326 +HUMAN_OBSERVATION,xploit,1,,,2023,8,22,Australia,AU,Queensland,-28.088302,153.346988,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,near eastern end of Mann Silo Road,2021,11,29,Australia,AU,Queensland,-27.795528,151.56363,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,22,Australia,AU,Queensland,-27.568508,151.716142,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,10,2,Australia,AU,Queensland,-27.41164,152.004542,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,7,16,Australia,AU,Queensland,-27.551756,153.058006,EPSG:4326 +HUMAN_OBSERVATION,missganoush,1,,,2023,6,10,Australia,AU,Victoria,-38.813503,143.536758,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,believe a male. No sign of a joey.,2021,10,5,Australia,AU,New South Wales,-28.254272,153.377349,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,8,7,Australia,AU,Queensland,-27.527205,153.108358,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,4,7,Australia,AU,Queensland,-27.527152,153.091379,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,"This ones for Lara, I'll fill that gap if I can get out and walk a bit more",2023,9,10,Australia,AU,Queensland,-28.030745,152.910424,EPSG:4326 +HUMAN_OBSERVATION,kytes,1,,,2020,8,9,Australia,AU,Queensland,-27.543838,153.072097,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Yellow tag RIGHT ear 1032 - Christabelle,2022,12,14,Australia,AU,Queensland,-27.529659,153.105628,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey in Tallowwod with male,2021,2,24,Australia,AU,Queensland,-27.550109,153.05299,EPSG:4326 +HUMAN_OBSERVATION,valsan,1,,,2024,11,11,Australia,AU,South Australia,-35.03265,138.559417,EPSG:4326 +HUMAN_OBSERVATION,penstaspics,1,,Four Brothers Rocks,2021,10,13,Australia,AU,Victoria,-37.970246,145.672887,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,9,17,Australia,AU,Queensland,-27.613,151.55652,EPSG:4326 +HUMAN_OBSERVATION,Christopher Brown,1,,,2022,4,16,Australia,AU,Victoria,-37.552635,149.7493,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds,2024,5,18,Australia,AU,Queensland,-27.527254,153.092073,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,Robin in Eucalyptus tereticornis with Joey,2023,10,30,Australia,AU,Queensland,-27.412788,152.003181,EPSG:4326 +HUMAN_OBSERVATION,andymc737,1,,,2024,4,28,Australia,AU,Queensland,-27.939045,153.356738,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,12,Australia,AU,South Australia,-34.89061,138.722252,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,20,Australia,AU,Queensland,-27.530543,153.104866,EPSG:4326 +HUMAN_OBSERVATION,Ivan Margitta,1,,"Fosters Gully Nature Walk, Morwell National Park.",2024,10,10,Australia,AU,Victoria,-38.360294,146.391132,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2023,7,3,Australia,AU,South Australia,-34.8655,138.665818,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2023,12,29,Australia,AU,Queensland,-27.527767,153.093081,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,8,Australia,AU,Queensland,-27.530049,153.103744,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,,2024,7,13,Australia,AU,Victoria,-38.288753,143.311581,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,,2023,10,9,Australia,AU,Queensland,-27.912937,153.372772,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In sport n rec picnic area,2023,12,19,Australia,AU,Queensland,-27.525404,153.092304,EPSG:4326 +HUMAN_OBSERVATION,Nathanael Green,1,,,2023,11,26,Australia,AU,New South Wales,-30.574536,152.990442,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,In middle of car park near table and chairs - lower cafeteria Male - scent gland visible,2023,7,9,Australia,AU,Queensland,-27.527028,153.092167,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,MALE,Dead by car strike,2023,5,19,Australia,AU,Queensland,-27.459143,152.403426,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,1,14,Australia,AU,Victoria,-38.354201,146.387658,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,28,Australia,AU,Queensland,-27.545617,153.07324,EPSG:4326 +HUMAN_OBSERVATION,dawnborchardt,1,,,2023,3,5,Australia,AU,South Australia,-35.737297,137.575683,EPSG:4326 +HUMAN_OBSERVATION,Dr Elodie Camprasse,1,,,2023,1,8,Australia,AU,Victoria,-38.667512,143.86068,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Alert, healthy looking",2023,2,5,Australia,AU,Queensland,-27.747787,153.142214,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,MALE,Big boy. Saw a different koala same tree on Oct 3. Must be popular transit tree.,2024,10,10,Australia,AU,New South Wales,-34.079259,150.853907,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag Q6 LEFT ear - Joe, known as Bozo",2024,6,19,Australia,AU,Queensland,-27.527084,153.107808,EPSG:4326 +HUMAN_OBSERVATION,beardown34,1,,,2024,10,29,Australia,AU,Queensland,-19.123975,146.87175,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2021,1,7,Australia,AU,Queensland,-27.549853,153.072322,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,,2022,9,19,Australia,AU,New South Wales,-28.258202,153.400888,EPSG:4326 +HUMAN_OBSERVATION,Alan Melville,1,,,2022,11,25,Australia,AU,Queensland,-27.544119,152.858021,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery gates and near circle seating area,2023,7,15,Australia,AU,Queensland,-27.527388,153.091431,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,5,13,Australia,AU,Queensland,-27.512472,153.08316,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"Mum and joey in young Euc. tereticornis, Boonah Rail Trail. The little one is becoming more adventurous.",2024,9,23,Australia,AU,Queensland,-27.987843,152.678589,EPSG:4326 +HUMAN_OBSERVATION,Kylie Agnew-Francis,1,,,2024,7,6,Australia,AU,Queensland,-27.539272,153.054122,EPSG:4326 +HUMAN_OBSERVATION,emilysian04,1,,,2024,8,24,Australia,AU,South Australia,-35.016972,138.674988,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,"Found near yesterdays sighting in large Eucalyptus teriticornis. We have not sighted this female koala elsewhere on our property. This does not mean this koala hasn't entered the home range, just that it is good at evading our sightings.",2023,5,18,Australia,AU,Queensland,-27.411715,152.004051,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2023,12,20,Australia,AU,Queensland,-26.200206,151.772632,EPSG:4326 +HUMAN_OBSERVATION,donnamareetomkinson,1,,"Wet, after rain.",2021,12,27,Australia,AU,Queensland,-26.383676,152.68945,EPSG:4326 +HUMAN_OBSERVATION,L.R. Ramage,1,,,2024,11,16,Australia,AU,New South Wales,-32.700648,152.06286,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag - & joey,2023,2,28,Australia,AU,Queensland,-27.529066,153.103371,EPSG:4326 +HUMAN_OBSERVATION,scottie_noshoes,1,,,2021,11,4,Australia,AU,Queensland,-28.241358,152.759597,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,29,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,11,Australia,AU,Queensland,-26.248632,151.813606,EPSG:4326 +HUMAN_OBSERVATION,p3t3p,1,,"Large male koala observed approx 30 metres from ground on ironbark tree, Dingo Mountain Road, Crows Nest. Appeared to be healthy and alert.",2023,3,6,Australia,AU,Queensland,-27.25602,152.056574,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,15,Australia,AU,Queensland,-27.52733,153.092509,EPSG:4326 +HUMAN_OBSERVATION,Tyler Cameron,1,,,2024,1,4,Australia,AU,Victoria,-38.318733,142.363266,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,Mother and back riding baby. Wet and well camouflaged on mottled trunk.,2021,11,8,Australia,AU,Queensland,-27.331197,151.932312,EPSG:4326 +HUMAN_OBSERVATION,lthie,1,,,2022,11,18,Australia,AU,Queensland,-27.543767,153.062083,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,11,3,Australia,AU,South Australia,-34.891901,138.721365,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2022,4,18,Australia,AU,Queensland,-27.534072,153.061741,EPSG:4326 +HUMAN_OBSERVATION,Colin Trainor,1,,,2023,10,14,Australia,AU,Queensland,-27.916686,153.375114,EPSG:4326 +HUMAN_OBSERVATION,Cameron Rodda,1,,,2024,4,4,Australia,AU,Victoria,-38.316593,142.36283,EPSG:4326 +HUMAN_OBSERVATION,dawnborchardt,1,,,2023,3,7,Australia,AU,South Australia,-35.707163,137.494038,EPSG:4326 +HUMAN_OBSERVATION,Brad,1,,,2021,2,24,Australia,AU,South Australia,-35.019836,138.672567,EPSG:4326 +HUMAN_OBSERVATION,george_vaughan,1,,"(From Notes Taken At The Time): ""... I was peering at some very large, forward-facing eyeshine when I thought “that really is the most gigantic Possum I’ve ever seen, and why is it so fat and furry and pale grey…?And then, incredulous, the answer dawned on me. I worked my way around for a clearer look?and there luxuriating on a surprisingly small tree, was an absolutely ENORMOUS bull KOALA, peering haughtily down at me without the slightest concern, its almost bat-like ears held wide!!! I couldn’t take my eyes off this most peculiar, primitive and undeniably handsome creature, with its monkey-like hind-feet and incomparable giant nose!! There apparently were rumours that someone had heard Koalas once on a nearby property, but no one could confirm their occurrence?until now!!!""",2022,1,20,Australia,AU,Victoria,-36.797886,145.588668,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,6,26,Australia,AU,New South Wales,-29.870421,150.601458,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2024,7,21,Australia,AU,South Australia,-34.965267,138.702372,EPSG:4326 +HUMAN_OBSERVATION,maaikefluitsma,1,,,2023,8,31,Australia,AU,Queensland,-27.163416,152.940674,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,4,Australia,AU,Queensland,-27.527518,153.112849,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2023,12,30,Australia,AU,New South Wales,-31.441022,152.906892,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2024,9,21,Australia,AU,New South Wales,-34.745023,146.534365,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,12,31,Australia,AU,Queensland,-27.509142,153.080658,EPSG:4326 +HUMAN_OBSERVATION,Lucas Hopkins,1,,,2020,5,1,Australia,AU,Queensland,-28.129474,153.436932,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,6,16,Australia,AU,Queensland,-27.528137,153.093432,EPSG:4326 +HUMAN_OBSERVATION,kirstlebut,1,,Mum and baby,2023,7,27,Australia,AU,Queensland,-27.551735,151.512353,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,7,13,Australia,AU,Queensland,-27.515445,153.09208,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear,2023,3,11,Australia,AU,Queensland,-27.527196,153.10804,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,19,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,4,4,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,abbottron,1,,,2023,9,19,Australia,AU,New South Wales,-28.387447,153.565597,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,4,Australia,AU,Queensland,-27.529848,153.105084,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,,Mum and bub. Mum appears to have chlamydia (gunky eyes). Have reported her to catcher so she can get vet treatment.,2023,10,23,Australia,AU,Queensland,-27.457234,152.401442,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,12,30,Australia,AU,Queensland,-27.527071,153.091707,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,11,15,Australia,AU,South Australia,-34.731528,138.854688,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,30,Australia,AU,South Australia,-34.888856,138.728379,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,4,Australia,AU,Queensland,-27.528454,153.103147,EPSG:4326 +HUMAN_OBSERVATION,kaharris03,1,,,2024,6,3,Australia,AU,New South Wales,-29.052749,153.307898,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,,2023,9,13,Australia,AU,Queensland,-27.551466,153.059075,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Maisie and joey,2024,10,19,Australia,AU,Queensland,-27.527527,153.090742,EPSG:4326 +HUMAN_OBSERVATION,trailflix,1,,,2023,4,7,Australia,AU,Queensland,-27.507685,153.080938,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds Mother and joey,2024,10,6,Australia,AU,Queensland,-27.528426,153.09224,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,21,Australia,AU,South Australia,-34.892817,138.720713,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Top of gully near Aldi gates,2024,2,5,Australia,AU,Queensland,-27.526023,153.092949,EPSG:4326 +HUMAN_OBSERVATION,carolhall47,1,,,2023,8,23,Australia,AU,Victoria,-37.64192,143.899871,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,24,Australia,AU,South Australia,-34.866812,138.731921,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,FEMALE,Female with joey bulge. Being courted by male. No signs of clamidia (clean bum),2021,5,7,Australia,AU,Queensland,-27.457601,152.400038,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown Stringybark,2020,5,29,Australia,AU,Queensland,-27.544243,153.05635,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male,2023,11,24,Australia,AU,Queensland,-27.527914,153.109877,EPSG:4326 +HUMAN_OBSERVATION,dusk38,1,,,2020,2,13,Australia,AU,South Australia,-34.912351,138.765762,EPSG:4326 +HUMAN_OBSERVATION,Chris Munson,1,,"First seen walking beside road, later seen in tree.",2024,2,8,Australia,AU,New South Wales,-34.155329,150.816568,EPSG:4326 +HUMAN_OBSERVATION,Christopher Mark,1,,,2022,6,16,Australia,AU,Queensland,-19.145868,146.864523,EPSG:4326 +HUMAN_OBSERVATION,Graeme Rigg,1,,,2022,2,19,Australia,AU,Victoria,-37.902143,147.773089,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,8,10,Australia,AU,Queensland,-27.526912,153.091,EPSG:4326 +HUMAN_OBSERVATION,Peta Jansma-Reid,1,,Scratch marks on Euc,2023,12,4,Australia,AU,Queensland,-27.654288,153.196409,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear - I call him Buster,2024,1,20,Australia,AU,Queensland,-27.530634,153.103464,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2023,7,3,Australia,AU,Queensland,-28.08609,152.845773,EPSG:4326 +HUMAN_OBSERVATION,Steve Dew,1,,,2022,2,14,Australia,AU,Victoria,-38.800562,143.481831,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,10,19,Australia,AU,Queensland,-27.527853,153.092352,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,15,Australia,AU,Queensland,-27.529554,153.104592,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,20,Australia,AU,Queensland,-27.545819,153.073381,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,In a Blackwood (Acacia melanoxylon).,2024,5,8,Australia,AU,Victoria,-38.499981,142.975022,EPSG:4326 +HUMAN_OBSERVATION,Chris,1,,,2022,7,30,Australia,AU,Queensland,-27.918813,152.594235,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,3,10,Australia,AU,Queensland,-27.545827,153.072525,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,"Site: K1 Tree no: 28 Tree DBH: 56.971 Sclerophyll notes: No time was recorded for when scats were found - 1pm has been put for all scat observations due to there being no records, all scats were collected on the same day at different sites Ecologist assessed Co-ordinates incorrect location based on site",2021,8,25,Australia,AU,Queensland,-27.69505,152.0869,EPSG:4326 +HUMAN_OBSERVATION,rivendel,1,,,2023,5,6,Australia,AU,New South Wales,-30.294197,153.12701,EPSG:4326 +HUMAN_OBSERVATION,Rolf Lawrenz,1,,,2023,11,6,Australia,AU,New South Wales,-36.832497,148.401121,EPSG:4326 +HUMAN_OBSERVATION,Steve Dew,1,,,2022,2,16,Australia,AU,Victoria,-38.800562,143.481831,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,1,26,Australia,AU,Queensland,-27.525022,153.093645,EPSG:4326 +HUMAN_OBSERVATION,tarbuck84,1,,,2023,3,4,Australia,AU,New South Wales,-32.363607,152.472712,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,7,2,Australia,AU,Victoria,-38.671253,146.163711,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,22,Australia,AU,Queensland,-27.545979,153.074222,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear entrance to nursery,2024,11,2,Australia,AU,Queensland,-27.527139,153.092156,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2022,10,9,Australia,AU,Queensland,-28.218048,152.868236,EPSG:4326 +HUMAN_OBSERVATION,robwp,1,,,2021,9,4,Australia,AU,Queensland,-27.276637,152.940714,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,28,Australia,AU,Queensland,-27.630516,151.570595,EPSG:4326 +HUMAN_OBSERVATION,mikew65,1,,,2024,2,15,Australia,AU,South Australia,-34.825278,135.684722,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,2,8,Australia,AU,South Australia,-34.903011,138.702971,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In Corymbia intermedia.,2021,8,15,Australia,AU,Queensland,-27.558703,153.058935,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,6,23,Australia,AU,South Australia,-34.88974,138.73126,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,default,2023,12,20,Australia,AU,Queensland,-27.533556,151.969179,EPSG:4326 +HUMAN_OBSERVATION,franhills,1,,,2024,9,7,Australia,AU,Victoria,-38.318799,142.363238,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,On E.microcorys,2024,4,1,Australia,AU,Queensland,-27.541238,153.063068,EPSG:4326 +HUMAN_OBSERVATION,Ben Fisher,1,,,2022,8,11,Australia,AU,Victoria,-37.627945,144.077725,EPSG:4326 +HUMAN_OBSERVATION,wwe62020,1,,"Early morning walk, noticed these guys in the tree. Smaller one was high in tree, and the larger one lower in tree. Happy to sit there to get photo taken. Looked healthy. 2nd photo is smaller guy. 3rd photo is larger guy.",2020,1,9,Australia,AU,Queensland,-26.506547,151.854125,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,9,Australia,AU,Queensland,-27.52937,153.103767,EPSG:4326 +HUMAN_OBSERVATION,Allison Wall,1,,2 fresh faecal pellets. 3cm long × 1cm wide. Sheltered area with numerous large Eucalyptus trees along the creek line.,2023,6,4,Australia,AU,Victoria,-37.641263,144.490985,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,17,Australia,AU,Queensland,-27.547108,153.073443,EPSG:4326 +HUMAN_OBSERVATION,judyrose,1,,Small Koala up large gum tree,2020,2,19,Australia,AU,Queensland,-27.5446,153.278745,EPSG:4326 +HUMAN_OBSERVATION,e_e_rose,1,,,2022,12,12,Australia,AU,Queensland,-28.244419,152.796108,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,Injured koala (red open wound on right arm). Taken to Wacol Wildlife Hospital.,2024,8,2,Australia,AU,Queensland,-27.543125,153.065843,EPSG:4326 +HUMAN_OBSERVATION,Alasdair McAlpine,1,,,2024,11,13,Australia,AU,Queensland,-27.979466,153.329388,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.346443,145.317734,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,FEMALE,,2023,11,1,Australia,AU,New South Wales,-29.869158,150.600266,EPSG:4326 +HUMAN_OBSERVATION,svanklaveren,1,,,2024,5,8,Australia,AU,Queensland,-26.796037,152.829895,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2021,11,6,Australia,AU,Victoria,-38.3547,146.38757,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,Thanks Tracey from Yarran Farming,2021,11,28,Australia,AU,Queensland,-27.715511,151.521156,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,,2024,2,26,Australia,AU,New South Wales,-34.057667,150.878084,EPSG:4326 +HUMAN_OBSERVATION,patrickc,1,,,2022,12,10,Australia,AU,Victoria,-38.797996,143.62365,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,6,16,Australia,AU,Victoria,-38.35475,146.387673,EPSG:4326 +HUMAN_OBSERVATION,Mabes,1,,,2024,8,11,Australia,AU,Victoria,-38.384619,145.307539,EPSG:4326 +HUMAN_OBSERVATION,kathyfinch66,1,,Female koala eating leaves from a Silver Leaf Ironbark. Joey was observed on another branch in the same tree. A male was in a Blue Gum approx. 30 metres away. They are regular visitors.,2021,10,14,Australia,AU,Queensland,-27.831795,152.344529,EPSG:4326 +HUMAN_OBSERVATION,Andrew Rock,1,FEMALE,White's Hill Reserve,2022,9,26,Australia,AU,Queensland,-27.507589,153.081955,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Gorgeous juvenile,2024,7,17,Australia,AU,Queensland,-27.530088,153.10339,EPSG:4326 +HUMAN_OBSERVATION,tracyrout,1,,,2023,1,10,Australia,AU,Queensland,-27.525939,153.069061,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Fluffy eared"" Mother and baby in similar location to when last recorded on 11 Jan 2020. Male and other possibly female sitting within 50 metres radius of pair. In Yellow Box",2020,1,15,Australia,AU,New South Wales,-30.519674,151.521021,EPSG:4326 +HUMAN_OBSERVATION,Stephanie Gaia,1,,,2023,5,8,Australia,AU,Queensland,-19.128596,146.871801,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland entrance,2023,12,29,Australia,AU,Queensland,-27.527277,153.092303,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,"This is the same male who has been around for a couple of weeks now. He let me get very close this morning, quite unperturbed about me. He is in a Buddleia bush because my dog noticed him on the ground and he thought better of being on the ground.",2022,2,23,Australia,AU,Victoria,-37.874347,142.290611,EPSG:4326 +HUMAN_OBSERVATION,Anne-Marie Griffin,1,,,2024,2,20,Australia,AU,New South Wales,-33.758096,149.472779,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,10,23,Australia,AU,Queensland,-27.549605,153.037395,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2020,9,25,Australia,AU,South Australia,-35.002861,138.655631,EPSG:4326 +HUMAN_OBSERVATION,biancacar,1,,,2024,4,25,Australia,AU,Victoria,-38.800338,143.483108,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to lower cav road car park,2023,11,14,Australia,AU,Queensland,-27.525499,153.090569,EPSG:4326 +HUMAN_OBSERVATION,Anneke Logan,1,,Adult Female,2022,11,27,Australia,AU,Queensland,-27.255233,152.046237,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,12,24,Australia,AU,New South Wales,-28.253584,153.377201,EPSG:4326 +HUMAN_OBSERVATION,J. Addesi,1,,,2024,3,23,Australia,AU,South Australia,-34.902793,138.697582,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Koala scat,2022,9,11,Australia,AU,Victoria,-37.581542,143.895651,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy Koala at Highfields Pioneer Village. Record by J Dodds for TKWR,2023,11,4,Australia,AU,Queensland,-27.441018,151.956551,EPSG:4326 +HUMAN_OBSERVATION,xavierpiron,1,,,2022,11,16,Australia,AU,Victoria,-37.924327,147.727499,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Mowing shed k block Male,2024,5,18,Australia,AU,Queensland,-27.526005,153.091051,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Observed by Susanne Maree Capewell. Adult, female, alive, joey",2021,10,24,Australia,AU,Queensland,-26.161014,151.977,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,4,26,Australia,AU,New South Wales,-28.260052,153.4031,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,3,16,Australia,AU,Queensland,-27.528207,153.09255,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,12,13,Australia,AU,South Australia,-34.8667,138.656722,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,FEMALE,,2024,2,13,Australia,AU,South Australia,-34.891687,138.719499,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Probably Joe, known as Bozo",2024,6,7,Australia,AU,Queensland,-27.527211,153.107608,EPSG:4326 +HUMAN_OBSERVATION,alexbonner,1,,,2024,10,20,Australia,AU,New South Wales,-33.563756,149.531525,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Koala and Joey eating Melaleuca leaves,2021,6,24,Australia,AU,Queensland,-27.551161,153.057466,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,,2021,9,12,Australia,AU,Queensland,-27.565558,153.133881,EPSG:4326 +HUMAN_OBSERVATION,musselsarecool,1,,,2024,7,27,Australia,AU,Queensland,-27.497421,153.399191,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,11,28,Australia,AU,South Australia,-34.865175,138.657025,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,Female and Joey by the creek,2023,10,1,Australia,AU,Queensland,-27.529947,153.101785,EPSG:4326 +HUMAN_OBSERVATION,martine_lappan,1,,,2023,12,28,Australia,AU,Victoria,-37.209603,148.269592,EPSG:4326 +HUMAN_OBSERVATION,Reiner Richter,1,,,2023,12,12,Australia,AU,Victoria,-38.354635,146.396857,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2023,7,12,Australia,AU,Queensland,-27.550724,153.061841,EPSG:4326 +HUMAN_OBSERVATION,Geoff and Bin Bell,1,,,2022,12,16,Australia,AU,Victoria,-38.493184,147.04211,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to tennis court bldg Male - yellow tag left ear - number not visible,2024,11,17,Australia,AU,Queensland,-27.525469,153.092675,EPSG:4326 +HUMAN_OBSERVATION,Hanneke Nooren,1,,,2023,10,6,Australia,AU,Queensland,-27.532042,152.213879,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,10,24,Australia,AU,Queensland,-27.508381,153.081679,EPSG:4326 +HUMAN_OBSERVATION,Gerard Healey,1,,,2023,2,23,Australia,AU,Victoria,-37.392655,144.576905,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Joey making its own way in the world - mum was in a nearby tree keeping watch,2024,11,6,Australia,AU,Queensland,-27.529125,153.110737,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2024,10,24,Australia,AU,South Australia,-35.005538,138.712066,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,9,6,Australia,AU,New South Wales,-28.253821,153.377428,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,10,4,Australia,AU,South Australia,-34.890791,138.711351,EPSG:4326 +HUMAN_OBSERVATION,kongwak-wackas-p-6,1,,,2020,8,17,Australia,AU,Victoria,-38.401901,146.288296,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Two koalas same tree,2024,8,10,Australia,AU,Queensland,-27.526836,153.090322,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania and Wisteria woodland middle,2023,8,19,Australia,AU,Queensland,-27.524354,153.093572,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,11,4,Australia,AU,Queensland,-27.525275,153.111435,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Monkey Rope Vine,2020,11,7,Australia,AU,Queensland,-27.548691,153.058917,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2023,12,23,Australia,AU,Queensland,-27.528232,153.09299,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Water tank mums,2022,9,15,Australia,AU,Queensland,-27.545611,153.073326,EPSG:4326 +HUMAN_OBSERVATION,tashvella,1,,,2023,1,5,Australia,AU,Queensland,-27.254566,152.109554,EPSG:4326 +HUMAN_OBSERVATION,melanieylang,1,,,2022,12,30,Australia,AU,Victoria,-38.221236,141.762619,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Aldi gates gully,2024,10,7,Australia,AU,Queensland,-27.526349,153.092977,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear,2023,12,29,Australia,AU,Queensland,-27.528104,153.093017,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2024,8,11,Australia,AU,Victoria,-38.354828,146.387708,EPSG:4326 +HUMAN_OBSERVATION,bushmancam,1,,,2023,8,21,Australia,AU,Victoria,-38.833982,143.512999,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. unhealthy. Rescued by Koala Rescue Qld. Observed by Wendy Taylor. Submitted via msg.,2024,5,15,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2021,10,22,Australia,AU,New South Wales,-34.095379,150.814695,EPSG:4326 +HUMAN_OBSERVATION,J. Addesi,1,,,2023,7,30,Australia,AU,Victoria,-38.136697,145.27248,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,MALE,Super large. Male for sure. Sun came out while I was here,2023,4,23,Australia,AU,New South Wales,-36.168236,149.281762,EPSG:4326 +HUMAN_OBSERVATION,Reiner Richter,1,,,2020,2,4,Australia,AU,Victoria,-37.855711,144.249413,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,,2022,4,4,Australia,AU,Queensland,-28.211416,152.865972,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,4,12,Australia,AU,New South Wales,-28.25714,153.401432,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,9,27,Australia,AU,Victoria,-38.671322,146.1642,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2022,8,27,Australia,AU,Queensland,-28.094891,152.83788,EPSG:4326 +HUMAN_OBSERVATION,m_orchidhunter,1,,"Young, seemed dazed but uninjured. Moved well once underway",2024,9,26,Australia,AU,Victoria,-38.781719,143.538983,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,2 koalas in same tree,2023,1,11,Australia,AU,Queensland,-27.529571,153.109739,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,10,10,Australia,AU,South Australia,-34.892641,138.721525,EPSG:4326 +HUMAN_OBSERVATION,greentreeant12,1,,Found in late afternoon. Fresh scat on the ground showed he was there. It smelled strongly of Eucalyptus. He was about 40cm long.,2020,7,5,Australia,AU,Queensland,-27.746679,153.145966,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,Karana Downs Koala - Just had this little beauty in our neighbors yard. Attribution: Kay,2021,9,11,Australia,AU,Queensland,-27.536765,152.811926,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Forest Fed Gum,2021,4,21,Australia,AU,Queensland,-27.53467,153.061649,EPSG:4326 +HUMAN_OBSERVATION,frank_prinz,1,,,2020,10,27,Australia,AU,South Australia,-34.751362,138.92537,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,6,4,Australia,AU,Queensland,-27.550991,153.053603,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2021,9,7,Australia,AU,Queensland,-27.39783,151.787995,EPSG:4326 +HUMAN_OBSERVATION,G. L. Grammer,1,,,2024,1,26,Australia,AU,South Australia,-35.017079,138.650379,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area Tree near courtyard seating area - Auditorium Jacob Jnr?,2023,12,8,Australia,AU,Queensland,-27.525792,153.091827,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear nursery entrance Mother and joey,2023,10,11,Australia,AU,Queensland,-27.527146,153.091925,EPSG:4326 +HUMAN_OBSERVATION,Hayley P,1,FEMALE,,2020,11,21,Australia,AU,Queensland,-27.374178,152.9304,EPSG:4326 +HUMAN_OBSERVATION,jungers,1,,,2020,11,14,Australia,AU,Queensland,-28.011346,152.552026,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,3,23,Australia,AU,Queensland,-27.527317,153.091388,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,10,10,Australia,AU,Queensland,-27.516327,153.08316,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Oakey Hospital today/ sighting by Sharon McKeller,2022,11,30,Australia,AU,Queensland,-27.423477,151.719208,EPSG:4326 +HUMAN_OBSERVATION,Steph Rummel,1,,,2020,9,6,Australia,AU,Victoria,-38.176222,145.177795,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,1,21,Australia,AU,Queensland,-27.525419,153.092562,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,Adult female with joey.,2021,7,27,Australia,AU,New South Wales,-28.257815,153.400646,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,12,4,Australia,AU,Queensland,-27.538697,153.055002,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Submitted by Lyn Combe. Alive, healthy, adult, sex unknown.",2021,10,23,Australia,AU,Queensland,-26.90935,151.18338,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,1,12,Australia,AU,Victoria,-38.671138,146.163742,EPSG:4326 +HUMAN_OBSERVATION,leito19,1,,,2024,3,31,Australia,AU,Victoria,-38.384246,145.304555,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,5,31,Australia,AU,Victoria,-38.671208,146.163772,EPSG:4326 +HUMAN_OBSERVATION,Thor-Rune Hansen,1,,,2022,11,13,Australia,AU,Queensland,-19.125229,146.869293,EPSG:4326 +HUMAN_OBSERVATION,Sean,1,MALE,"Looking for Koalas in the trees, saw this guy on the ground going walkabout and looking healthy.",2024,9,30,Australia,AU,Queensland,-27.70208,153.189813,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,23,Australia,AU,Queensland,-27.527893,153.111857,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg,2024,11,16,Australia,AU,Queensland,-26.137334,151.771995,EPSG:4326 +HUMAN_OBSERVATION,julie,1,,,2023,5,6,Australia,AU,Queensland,-27.790025,153.148961,EPSG:4326 +HUMAN_OBSERVATION,lil_1,1,,,2024,3,2,Australia,AU,Victoria,-37.623895,144.09462,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2024,8,15,Australia,AU,Queensland,-27.358333,152.074445,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2024,8,17,Australia,AU,Queensland,-27.464688,152.968825,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland Male yellow tag left ear #0976?,2024,1,20,Australia,AU,Queensland,-27.528323,153.092567,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Feeding,2022,12,27,Australia,AU,New South Wales,-34.775175,146.59362,EPSG:4326 +HUMAN_OBSERVATION,fraserj09,1,,,2024,10,2,Australia,AU,Victoria,-38.203257,141.775067,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear - & joey,2023,2,1,Australia,AU,Queensland,-27.530172,153.103464,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,6,27,Australia,AU,Queensland,-27.549542,153.059902,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In mum’s tree,2024,9,8,Australia,AU,Queensland,-27.526423,153.090971,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,8,11,Australia,AU,Queensland,-27.540188,153.044799,EPSG:4326 +HUMAN_OBSERVATION,michaelp28,1,,,2022,11,14,Australia,AU,South Australia,-35.707073,137.494167,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,5,3,Australia,AU,Queensland,-27.527344,153.091433,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,,2024,5,27,Australia,AU,Queensland,-27.644416,152.895649,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,11,4,Australia,AU,Queensland,-27.551501,153.057552,EPSG:4326 +HUMAN_OBSERVATION,Andrew Rock,1,,Toohey Forest,2021,6,19,Australia,AU,Queensland,-27.543936,153.05513,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,MALE,,2023,12,7,Australia,AU,South Australia,-34.887045,138.728876,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,FEMALE,"Apologies for the poor photos. This was in the predawn light and I've adjusted the brightness and contrast. He (the one on the left) was grunting, she was wailing. We think there was a mating. And out towards the end of the branch both of them almost fell to the ground. Lucky they have strong arms and claws.",2022,12,23,Australia,AU,Victoria,-37.874444,142.290998,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,8,25,Australia,AU,Queensland,-27.527268,153.091549,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,25,Australia,AU,Queensland,-27.527587,153.109958,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,27,Australia,AU,Queensland,-27.526648,153.09083,EPSG:4326 +HUMAN_OBSERVATION,Jo Burrows,1,,,2023,7,28,Australia,AU,Queensland,-27.494367,153.404058,EPSG:4326 +HUMAN_OBSERVATION,Grigory Evtukh,1,,,2023,12,16,Australia,AU,Victoria,-37.923261,147.731689,EPSG:4326 +HUMAN_OBSERVATION,itara,1,,,2024,1,22,Australia,AU,Victoria,-38.045935,141.159782,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,MALE,,2022,11,5,Australia,AU,New South Wales,-33.147176,151.078295,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"No ear tag visible, exactly same tree and spot in tree as this observation, https://inaturalist.ala.org.au/observations/74715826 , Same animal.",2021,4,22,Australia,AU,Queensland,-27.510527,153.069749,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,In mum’s tree Mother and joey - possibly Maisie,2024,8,11,Australia,AU,Queensland,-27.526325,153.090907,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2023,4,18,Australia,AU,Victoria,-37.748136,143.903565,EPSG:4326 +HUMAN_OBSERVATION,agosper,1,,,2023,2,12,Australia,AU,Queensland,-27.181213,152.799453,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,TAFE nursery Mother and joey,2023,9,8,Australia,AU,Queensland,-27.527353,153.091349,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,,2023,4,3,Australia,AU,Queensland,-28.211118,152.866492,EPSG:4326 +HUMAN_OBSERVATION,clownslaw,1,,,2024,3,2,Australia,AU,Victoria,-38.441445,143.965562,EPSG:4326 +HUMAN_OBSERVATION,doom528,1,,,2024,5,27,Australia,AU,Queensland,-27.392708,153.440995,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,30,Australia,AU,Queensland,-27.528432,153.113361,EPSG:4326 +HUMAN_OBSERVATION,theressa,1,,,2020,8,21,Australia,AU,Queensland,-27.165364,153.001297,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,7,17,Australia,AU,Queensland,-27.549883,153.049103,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.384972,145.309799,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2023,10,4,Australia,AU,Queensland,-28.097059,152.844467,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,12,Australia,AU,Queensland,-27.527319,153.102868,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,12,11,Australia,AU,Queensland,-27.539953,153.068181,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,MALE,,2024,11,6,Australia,AU,New South Wales,-29.779576,150.651826,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,5,Australia,AU,Queensland,-27.527326,153.109463,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,2,26,Australia,AU,Queensland,-27.599857,151.888855,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Ironbark,2021,6,22,Australia,AU,Queensland,-27.550864,153.054498,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near Aldi gates,2024,3,30,Australia,AU,Queensland,-27.526316,153.093069,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,,"Male koala with female koala in fork of next tree behind and can be seen directly below male, both mid in their manna gums. Him alert watching us, her relaxed then having a good groom. Found by Bev. Female is known in this area",2023,12,22,Australia,AU,Victoria,-37.821707,144.174383,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2023,12,30,Australia,AU,Queensland,-27.527918,153.092691,EPSG:4326 +HUMAN_OBSERVATION,Rosanna Dedecius,1,,,2024,10,21,Australia,AU,Victoria,-38.756799,143.419854,EPSG:4326 +HUMAN_OBSERVATION,Tonia B,1,,Dead Koala and Western Grey Kangaroo,2020,1,31,Australia,AU,South Australia,-34.883442,138.878498,EPSG:4326 +HUMAN_OBSERVATION,annehenshaw,1,,"Very very lucky to spot this koala in the wild in November 2020. At the beginning of the year the area had been devastated by bushfires, with much of the vegetation burned and many animals losing their lives. Day 2 of a 3 day hike the highlight of the trip.",2020,11,14,Australia,AU,New South Wales,-33.793269,150.026568,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - yellow tag RIGHT ear,2024,3,15,Australia,AU,Queensland,-27.529233,153.108989,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,,2022,10,9,Australia,AU,Queensland,-28.219212,152.868138,EPSG:4326 +HUMAN_OBSERVATION,Thor-Rune Hansen,1,,,2022,11,13,Australia,AU,Queensland,-19.132298,146.870255,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female. With Joey of unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,8,5,Australia,AU,Queensland,-26.14315,152.204283,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Red tag A18 RIGHT ear -Campo,2022,12,19,Australia,AU,Queensland,-27.529485,153.109615,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,Male,2022,1,9,Australia,AU,Queensland,-27.528413,153.11134,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A5 RIGHT ear - Cindy,2023,7,10,Australia,AU,Queensland,-27.527134,153.107327,EPSG:4326 +HUMAN_OBSERVATION,lentom,1,,,2022,2,11,Australia,AU,Queensland,-27.541176,153.109726,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,1,22,Australia,AU,Queensland,-27.516761,153.083853,EPSG:4326 +HUMAN_OBSERVATION,Stephanie M. Dloniak,1,,,2024,11,10,Australia,AU,Queensland,-19.124164,146.870728,EPSG:4326 +HUMAN_OBSERVATION,bverhoeven,1,,,2024,8,4,Australia,AU,New South Wales,-33.735404,150.614033,EPSG:4326 +HUMAN_OBSERVATION,Hanneke Nooren,1,,LCA3105 Confirmed as koala scat by OWAD Environment,2022,10,1,Australia,AU,Queensland,-27.509763,152.146592,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,last photo is the end of the day,2020,10,9,Australia,AU,New South Wales,-28.254048,153.377515,EPSG:4326 +HUMAN_OBSERVATION,flo_sperring,1,,,2023,6,19,Australia,AU,Victoria,-38.380403,145.1239,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,,2024,3,5,Australia,AU,Queensland,-27.51048,153.075395,EPSG:4326 +HUMAN_OBSERVATION,Colin and Wendy Cook,1,MALE,"Roadkill male. About 2km north along the same road was a roadkilled common ringtail possum, but it was not a safe spot for photography.",2021,6,29,Australia,AU,Victoria,-37.865365,144.233441,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,25,Australia,AU,Queensland,-27.528912,153.10902,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,3,23,Australia,AU,South Australia,-34.892408,138.722495,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Red Bloodwood,2020,2,24,Australia,AU,Queensland,-27.551846,153.057727,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,11,21,Australia,AU,Queensland,-27.551243,153.059595,EPSG:4326 +HUMAN_OBSERVATION,redneckwallaby,1,,,2022,3,11,Australia,AU,New South Wales,-30.670426,152.873301,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Cafeteria triangle Mother and joey,2024,10,19,Australia,AU,Queensland,-27.526933,153.091779,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,6,29,Australia,AU,Queensland,-27.453252,152.64145,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,,2023,3,26,Australia,AU,Queensland,-27.525045,153.092183,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,Male - bellowing High up in Scribbly gum Eucalyptus racemose,2023,11,22,Australia,AU,Queensland,-27.173747,152.995728,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,21,Australia,AU,South Australia,-34.890442,138.729477,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,#4,2023,8,20,Australia,AU,Queensland,-27.511737,153.084231,EPSG:4326 +HUMAN_OBSERVATION,Bruce McLennan,1,,,2021,3,2,Australia,AU,Queensland,-27.247838,152.19756,EPSG:4326 +HUMAN_OBSERVATION,Megan Forward,1,,Large Koala high in gum tree on the Burleigh Heads National Park walking trail,2020,5,16,Australia,AU,Queensland,-28.092491,153.456943,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,"female koala very high in tall red gum, sitting up then moved a little further out on branch, nervous.",2024,6,1,Australia,AU,Victoria,-37.860548,144.279273,EPSG:4326 +HUMAN_OBSERVATION,rogstanden,1,,mum and youngster,2022,10,1,Australia,AU,Victoria,-38.286999,145.08104,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2024,3,27,Australia,AU,South Australia,-34.868957,138.656432,EPSG:4326 +HUMAN_OBSERVATION,Tony Kent,1,,"On Tarcombe Rd, remnant woodland wildlife corridor",2020,10,5,Australia,AU,Victoria,-36.929611,145.370989,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,7,27,Australia,AU,Queensland,-27.525911,153.091905,EPSG:4326 +HUMAN_OBSERVATION,jacky_centralcoast,1,,,2023,12,17,Australia,AU,South Australia,-35.805958,137.469313,EPSG:4326 +HUMAN_OBSERVATION,kerryn01,1,,,2024,10,29,Australia,AU,Queensland,-27.552203,153.05455,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,,2023,7,21,Australia,AU,Queensland,-27.633624,152.901374,EPSG:4326 +HUMAN_OBSERVATION,clare_w,1,,,2023,7,2,Australia,AU,Victoria,-37.036155,145.156479,EPSG:4326 +HUMAN_OBSERVATION,ljeffery,1,,,2024,4,20,Australia,AU,South Australia,-34.888553,138.727495,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2022,11,30,Australia,AU,Queensland,-27.62792,151.650362,EPSG:4326 +HUMAN_OBSERVATION,Isis Khalil,1,,,2023,12,24,Australia,AU,Queensland,-19.128753,146.86798,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,4,21,Australia,AU,Queensland,-27.556261,153.061595,EPSG:4326 +HUMAN_OBSERVATION,littlebellanaturerefuge,1,,,2022,9,1,Australia,AU,Queensland,-26.456922,152.559003,EPSG:4326 +HUMAN_OBSERVATION,ninjajuju,1,,Mum with joey,2021,6,30,Australia,AU,Queensland,-19.128662,146.855522,EPSG:4326 +HUMAN_OBSERVATION,kimblyh,1,,Sitting in E. microcorys,2024,9,28,Australia,AU,Queensland,-27.505145,153.075941,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,1,Australia,AU,South Australia,-34.890651,138.72223,EPSG:4326 +HUMAN_OBSERVATION,hone,1,,,2024,2,2,Australia,AU,Victoria,-37.86653,145.500734,EPSG:4326 +HUMAN_OBSERVATION,Victoria,1,,,2022,6,18,Australia,AU,Queensland,-27.911248,153.374489,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,In picnic area near lower car parks near Aldi gates Frank Rooney,2024,4,6,Australia,AU,Queensland,-27.527063,153.092406,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2024,5,26,Australia,AU,Queensland,-27.257927,152.044568,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,MALE,,2024,9,5,Australia,AU,Queensland,-27.358635,152.074653,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,3,Australia,AU,South Australia,-34.891884,138.721691,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,11,1,Australia,AU,Queensland,-27.659889,153.160433,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Male "Black Lip" being harassed by some 10 Sulphur Crested Cockatoos high in a large stringy bark.,2021,1,5,Australia,AU,New South Wales,-30.521949,151.520015,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,23,Australia,AU,Queensland,-27.529422,153.109429,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2024,7,7,Australia,AU,Queensland,-26.155079,151.749888,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,1,7,Australia,AU,Victoria,-37.619307,143.892946,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,12,Australia,AU,Queensland,-27.530051,153.103108,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Webster. Forwarded by email.,2020,1,5,Australia,AU,Queensland,-26.44097,151.770221,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,17,Australia,AU,Queensland,-26.155079,151.749888,EPSG:4326 +HUMAN_OBSERVATION,jodie,1,,,2021,11,23,Australia,AU,South Australia,-35.017935,138.682704,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Male - testicles visible,2023,3,4,Australia,AU,Queensland,-27.526711,153.090864,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,6,Australia,AU,Queensland,-27.526835,153.090502,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Rear of lower wisteria car park,2024,9,14,Australia,AU,Queensland,-27.524416,153.092505,EPSG:4326 +HUMAN_OBSERVATION,Michelle Casanova,1,,,2023,10,23,Australia,AU,Victoria,-38.318484,142.364526,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Maisie,2024,8,25,Australia,AU,Queensland,-27.526575,153.090502,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,,2021,5,15,Australia,AU,New South Wales,-28.260651,153.403041,EPSG:4326 +HUMAN_OBSERVATION,Neville Hudson,1,,,2024,7,31,Australia,AU,Queensland,-27.899135,153.370582,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male,2024,2,3,Australia,AU,Queensland,-27.526869,153.108432,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2024,10,4,Australia,AU,Queensland,-19.123094,146.870637,EPSG:4326 +HUMAN_OBSERVATION,mitchbagz,1,,,2021,4,29,Australia,AU,Victoria,-37.276967,144.31067,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,10,22,Australia,AU,Queensland,-27.526889,153.090394,EPSG:4326 +HUMAN_OBSERVATION,pennywhitehouse,1,MALE,Looked fairly healthy. Pellets on ground good. A little dark on bottom but recent rain is probably cause. Likely male due to size.,2024,10,4,Australia,AU,Queensland,-27.653919,153.192666,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,MALE,"Tagged Male, in tree between pool complex and Newnham Rd",2023,9,4,Australia,AU,Queensland,-27.533153,153.094465,EPSG:4326 +HUMAN_OBSERVATION,János Vörösbaranyi,1,,,2022,7,9,Australia,AU,South Australia,-34.828463,138.739261,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - white tag LEFT ear - Bandit,2023,10,6,Australia,AU,Queensland,-27.529799,153.110772,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,9,26,Australia,AU,Queensland,-26.366203,153.016997,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside cleaners donga,2024,6,30,Australia,AU,Queensland,-27.527066,153.091793,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,MALE,Male koala,2023,11,12,Australia,AU,Queensland,-27.284098,152.999644,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,"Image captured whilst on a 3 km spotlighting circuit through a 20 ha triangular block of the Wombat State Forest, bounded in part by Old Lyonville & Miller Cutting Tracks, and consisting of various Foothill Forest and Riparian Woodland EVC types, reflecting the mix of sloping and flat terrain.",2023,12,31,Australia,AU,Victoria,-37.395358,144.275424,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,6,14,Australia,AU,Queensland,-26.394595,152.663646,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2023,10,20,Australia,AU,New South Wales,-33.076701,151.095261,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,FEMALE,Koala trapped on road within barrier. Mop rescued and koala taken to C Walker from TKWR. Koala sent to RSPCA Wildlife Hospital Wacol for assessment,2023,10,16,Australia,AU,Queensland,-27.50338,151.973277,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2020,10,9,Australia,AU,Queensland,-27.548643,153.051469,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,Phone camera photo from a neighbour.,2021,7,24,Australia,AU,Queensland,-27.508022,153.067658,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland gully,2024,11,9,Australia,AU,Queensland,-27.527397,153.092536,EPSG:4326 +HUMAN_OBSERVATION,Isaac Clarey,1,,,2023,7,15,Australia,AU,New South Wales,-31.345156,152.865974,EPSG:4326 +HUMAN_OBSERVATION,Dhugal Lindsay,1,,,2023,12,22,Australia,AU,South Australia,-34.903038,138.702055,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,3,Australia,AU,South Australia,-34.892866,138.720632,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Spotted gum,2021,7,17,Australia,AU,Queensland,-27.54552,153.060051,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,7,29,Australia,AU,Queensland,-27.526724,153.10905,EPSG:4326 +HUMAN_OBSERVATION,dcalabs,1,,Picture by Gina Ramsay,2020,7,11,Australia,AU,Victoria,-38.130648,145.268245,EPSG:4326 +HUMAN_OBSERVATION,Luis Mata EntSocVic,1,,,2020,7,26,Australia,AU,Victoria,-38.266772,145.053965,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"In a Manna Gum (E. viminalis). Appears to be same Koala (and is in the same tree) as yesterday, observation https://inaturalist.ala.org.au/observations/214358712",2024,5,8,Australia,AU,Victoria,-38.497272,142.978194,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,7,29,Australia,AU,South Australia,-34.888278,138.733553,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2020,5,11,Australia,AU,New South Wales,-28.257967,153.400673,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block picnic area,2024,1,2,Australia,AU,Queensland,-27.525998,153.090558,EPSG:4326 +HUMAN_OBSERVATION,Kymberley,1,,,2023,3,4,Australia,AU,Queensland,-21.765116,148.831871,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2024,10,4,Australia,AU,Queensland,-19.125186,146.868928,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,,"Joey, on mum. In Blue gum (E. tereticornis) with DBH ~35cm.",2021,4,27,Australia,AU,Queensland,-27.454487,152.403971,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2023,9,30,Australia,AU,South Australia,-34.956128,138.69314,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,4,Australia,AU,Queensland,-27.545607,153.071966,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In Bella’s tree Concourse,2024,7,14,Australia,AU,Queensland,-27.52687,153.091529,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,4,19,Australia,AU,Queensland,-27.545804,153.0733,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,FEMALE,Adult koala high in a Eucalyptus tereticornis.,2020,10,8,Australia,AU,Queensland,-28.001058,152.681099,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"4th January 2022 Location Wilsons Road, Cloyna - Observed by Trina Whitby - Injured & underweight female. Broken paw. Transferred to wildlife carer. Forwarded by messenger",2022,1,4,Australia,AU,Queensland,-26.109239,151.809224,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2022,10,26,Australia,AU,New South Wales,-33.076469,151.095108,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,18,Australia,AU,South Australia,-34.89092,138.730289,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2023,3,12,Australia,AU,New South Wales,-33.346947,151.147206,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Local koala in trees along Lawnton Road. I believe this to be a female as I have taken photos of her and her joey over the past year.,2024,1,6,Australia,AU,Queensland,-27.284489,152.999921,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,3,Australia,AU,South Australia,-34.886646,138.733792,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,MALE,"""Half Black Lip"" in large stringybark on eastern boundary of 47 Baker. This is the first time this koala has been seen on this side of the block, which over summer was the territory of the male ""Bald Ear"". Confrontation with another koala (not able to be seen) as heard in audiofile.",2020,3,25,Australia,AU,New South Wales,-30.52016,151.520646,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,25,Australia,AU,Queensland,-26.459153,151.821621,EPSG:4326 +HUMAN_OBSERVATION,kirstlebut,1,,,2023,10,21,Australia,AU,Queensland,-27.55347,151.511679,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,1,6,Australia,AU,Queensland,-27.527618,153.090917,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - white tag LEFT ear - Bandit,2024,6,17,Australia,AU,Queensland,-27.528001,153.11129,EPSG:4326 +HUMAN_OBSERVATION,lunch33,1,,,2023,10,27,Australia,AU,South Australia,-34.86179,135.685102,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2024,10,12,Australia,AU,Queensland,-28.111364,153.433187,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,6,Australia,AU,Queensland,-27.527817,153.106733,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey,2023,12,3,Australia,AU,Queensland,-27.527159,153.091657,EPSG:4326 +HUMAN_OBSERVATION,Linda Rogan EntSocVic,1,,This particular koala appears to enjoy sitting on the fence that protects the Portland gannet colony. It is reported it survives on coastal scrub where Eucalpytus appears to be missing.,2020,1,14,Australia,AU,Victoria,-38.369073,141.557191,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,2,20,Australia,AU,Queensland,-27.552138,153.055697,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,6,13,Australia,AU,Queensland,-27.54794,153.0504,EPSG:4326 +HUMAN_OBSERVATION,Glassmith,1,,"Dead adult becoming quite dry and hard due to the extended dry weather. I have noticed that Koalas in my small area are not eaten or chewed upon in the same way Kangaroos that die on the ground are. There were no large trees above it for it to have fallen out of and this is the first I have found to have died flat on its back. We have had a couple of wedge tail eagles with young this year that I observed carrying possums on four occasions, maybe the inexperienced young one dropped the koala whilst being hassled by a mixed species flotilla of birds?",2024,5,6,Australia,AU,South Australia,-35.082089,138.641845,EPSG:4326 +HUMAN_OBSERVATION,zeked,1,,,2022,12,14,Australia,AU,Queensland,-27.742575,152.478395,EPSG:4326 +HUMAN_OBSERVATION,shaun_reay,1,,,2020,12,21,Australia,AU,Queensland,-27.502921,153.228643,EPSG:4326 +HUMAN_OBSERVATION,Sarah Sampson,1,,,2024,5,3,Australia,AU,Victoria,-38.827012,145.998125,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,11,12,Australia,AU,New South Wales,-28.254102,153.377493,EPSG:4326 +HUMAN_OBSERVATION,Edward Bell,1,,,2020,2,5,Australia,AU,Queensland,-27.91417,153.375033,EPSG:4326 +HUMAN_OBSERVATION,tadgh-dalton,1,,2 koalas high up in the trees in the area,2024,2,28,Australia,AU,New South Wales,-31.436984,152.905593,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,20,Australia,AU,Queensland,-27.52598,153.102683,EPSG:4326 +HUMAN_OBSERVATION,vhart30,1,MALE,In a gum tree 10m off mirang fire trail,2024,1,5,Australia,AU,New South Wales,-34.092374,150.984492,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,11,7,Australia,AU,Queensland,-27.548528,153.051879,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,Rescue of koala - photo provided by Wildlife Rescue Rehabilitation and Education Association.,2022,11,18,Australia,AU,Queensland,-27.69292,151.526567,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,4,Australia,AU,Queensland,-27.527083,153.091735,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,3,5,Australia,AU,South Australia,-34.887444,138.733981,EPSG:4326 +HUMAN_OBSERVATION,heidi_d,1,,,2023,10,19,Australia,AU,New South Wales,-32.576407,149.60101,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,30,Australia,AU,South Australia,-34.890841,138.715616,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2023,8,1,Australia,AU,Queensland,-27.530057,153.103541,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2023,8,9,Australia,AU,Queensland,-27.411403,152.003692,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,"In a grey gum, sitting looked relaxed.",2024,1,9,Australia,AU,New South Wales,-34.081018,150.849598,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Adult, Healthy, Unknown Sex. Observed by Malcolm Spry. Submitted via email.",2021,11,13,Australia,AU,Queensland,-25.629627,151.620933,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,24,Australia,AU,South Australia,-34.892096,138.722659,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,8,4,Australia,AU,Queensland,-27.526994,153.090691,EPSG:4326 +HUMAN_OBSERVATION,robertlever,1,,,2022,11,12,Australia,AU,Queensland,-26.975691,152.077175,EPSG:4326 +HUMAN_OBSERVATION,Paulaed,1,,,2023,7,16,Australia,AU,South Australia,-34.975851,138.674274,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,7,Australia,AU,Queensland,-26.155098,151.749824,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Frank Rooney,2023,10,22,Australia,AU,Queensland,-27.52692,153.090456,EPSG:4326 +HUMAN_OBSERVATION,tere_c,1,,Male,2021,4,8,Australia,AU,Victoria,-38.129928,145.27465,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,,2024,10,31,Australia,AU,New South Wales,-34.046797,150.884605,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,12,19,Australia,AU,Victoria,-38.670988,146.164611,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2023,7,29,Australia,AU,Queensland,-27.546633,153.051782,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,11,13,Australia,AU,Queensland,-27.528134,153.103278,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2024,11,17,Australia,AU,South Australia,-34.922528,138.693663,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2020,5,24,Australia,AU,South Australia,-34.997536,138.749992,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,I have seen this koala in the same tree and same nook 4-5 times now,2020,7,16,Australia,AU,Queensland,-27.550102,153.063511,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,1,18,Australia,AU,South Australia,-34.887334,138.732424,EPSG:4326 +HUMAN_OBSERVATION,vishvi,1,,,2023,9,28,Australia,AU,Victoria,-37.90576,147.757058,EPSG:4326 +HUMAN_OBSERVATION,Peta Jansma-Reid,1,,,2024,9,1,Australia,AU,Queensland,-27.287886,152.997574,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - mum & joey,2023,8,9,Australia,AU,Queensland,-27.52767,153.109932,EPSG:4326 +HUMAN_OBSERVATION,carolynavaisabel,1,,,2022,10,31,Australia,AU,South Australia,-35.012303,138.655063,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag R ear - & joey,2023,1,23,Australia,AU,Queensland,-27.530153,153.103944,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,12,Australia,AU,Queensland,-27.545638,153.074153,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,,2023,5,29,Australia,AU,Queensland,-27.6357,152.899996,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - presume this is Cindy,2023,6,24,Australia,AU,Queensland,-27.527227,153.108158,EPSG:4326 +HUMAN_OBSERVATION,laurelrf,1,,,2024,8,11,Australia,AU,New South Wales,-34.135235,150.819129,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3131 (Photo: Bob Brown),2022,8,27,Australia,AU,Queensland,-27.53118,152.1833,EPSG:4326 +HUMAN_OBSERVATION,Lenny G,1,,,2024,5,3,Australia,AU,Victoria,-38.13045,145.269183,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,,2021,9,9,Australia,AU,South Australia,-34.919677,138.739948,EPSG:4326 +HUMAN_OBSERVATION,lisaandandrewr,1,,,2023,10,19,Australia,AU,Victoria,-36.868488,145.454955,EPSG:4326 +HUMAN_OBSERVATION,murrah,1,,Second koala sighted on property- probably same animal,2021,10,15,Australia,AU,New South Wales,-36.548035,149.984426,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,7,Australia,AU,Queensland,-27.528043,153.09226,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,,2024,10,21,Australia,AU,New South Wales,-34.772055,146.586013,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Two koalas same tree,2024,4,11,Australia,AU,Queensland,-27.514856,153.079553,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,"Mum koala with joey, captured on Wildlife Camera.",2022,10,27,Australia,AU,New South Wales,-28.260394,153.400115,EPSG:4326 +HUMAN_OBSERVATION,robdogwoof,1,,,2024,3,23,Australia,AU,Victoria,-38.527337,146.386935,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,Two present.,2024,3,16,Australia,AU,Victoria,-38.341674,142.631542,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIHJT ear - Cindy,2023,10,2,Australia,AU,Queensland,-27.526936,153.108261,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2023,8,14,Australia,AU,New South Wales,-34.101947,150.82222,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,11,4,Australia,AU,Queensland,-27.551614,153.058176,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,On a Eucalyptus tereticornis,2023,10,8,Australia,AU,Queensland,-27.505801,153.078175,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,3,Australia,AU,South Australia,-34.891593,138.731843,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,#2,2022,12,4,Australia,AU,Queensland,-27.541575,153.054509,EPSG:4326 +HUMAN_OBSERVATION,oranamr,1,,"On walk, first koala for a year. Looks healthy. V large.",2020,1,27,Australia,AU,Victoria,-38.428525,144.946089,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2023,8,20,Australia,AU,Queensland,-27.510567,153.069927,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Large number of grey gums with high use koala activity,2023,8,20,Australia,AU,New South Wales,-33.117676,151.234502,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,water tank baby,2022,11,30,Australia,AU,Queensland,-27.545928,153.073209,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - yellow tag RIGHT ear. Koala had relocated from a very straggly small sapling to a sturdier tree when I returned a few hours later,2023,9,9,Australia,AU,Queensland,-27.529072,153.108064,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2023,11,4,Australia,AU,Queensland,-27.566284,152.111414,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,3,1,Australia,AU,Queensland,-27.551048,153.057516,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,9,Australia,AU,South Australia,-34.887268,138.729746,EPSG:4326 +HUMAN_OBSERVATION,wombatplace,1,,Sighting and photos (c) david19. Field Notes - A lot like a koala but hangs from the underside of the branch. Was too scared to walk underneath in case it dropped on me. Was making a horrible squeaking sound,2021,9,19,Australia,AU,South Australia,-35.069064,138.699937,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Male yellow tag left ear,2023,10,15,Australia,AU,Queensland,-27.527238,153.090471,EPSG:4326 +HUMAN_OBSERVATION,Dhugal Lindsay,1,,,2023,12,22,Australia,AU,South Australia,-34.904025,138.707458,EPSG:4326 +HUMAN_OBSERVATION,Liz,1,,,2022,2,5,Australia,AU,South Australia,-34.910982,138.712822,EPSG:4326 +HUMAN_OBSERVATION,lucystephens,1,,,2022,11,7,Australia,AU,Victoria,-38.957058,146.282867,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,In Eucalyptus tereticornis tree.,2022,11,12,Australia,AU,Queensland,-27.987405,152.677846,EPSG:4326 +HUMAN_OBSERVATION,Sequoia Lewien,1,,,2024,5,7,Australia,AU,Victoria,-38.110108,141.440659,EPSG:4326 +HUMAN_OBSERVATION,pipinghotgravy,1,,,2022,11,13,Australia,AU,Victoria,-37.637307,143.87755,EPSG:4326 +HUMAN_OBSERVATION,Robert Lawrence,1,,Probably a male and a female.,2021,3,19,Australia,AU,South Australia,-35.203819,138.715376,EPSG:4326 +HUMAN_OBSERVATION,keiras21,1,,,2023,8,22,Australia,AU,Victoria,-38.832304,143.514864,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland gully,2024,3,30,Australia,AU,Queensland,-27.527555,153.092741,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Julie Rush. Submitted by Denise Shaw via email.,2023,7,4,Australia,AU,Queensland,-26.084854,151.716947,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland centre Male yellow tag left ear 0976,2024,4,6,Australia,AU,Queensland,-27.527725,153.092259,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,3,22,Australia,AU,Victoria,-38.671026,146.163555,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,8,Australia,AU,South Australia,-34.89246,138.722573,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,10,31,Australia,AU,South Australia,-34.891806,138.71874,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,The two koalas that were rescued in January have now been treated for chlamydia and released back into the wild (back into the same area) today,2023,4,23,Australia,AU,Queensland,-26.974322,152.079103,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,7,Australia,AU,Queensland,-27.530181,153.105058,EPSG:4326 +HUMAN_OBSERVATION,kevloveday,1,,with Jim Keefer,2021,11,29,Australia,AU,Queensland,-27.757508,151.570052,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside cleaners donga,2024,7,5,Australia,AU,Queensland,-27.526891,153.091758,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,22,Australia,AU,Queensland,-26.16528,151.814029,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,"Site: K2 Tree no: 4 Tree DBH: 41.858 Sclerophyll notes: No time was recorded for when scats were found - 1pm has been put for all scat observations due to there being no records, all scats were collected on the same day at different sites Ecologist assessed",2021,8,25,Australia,AU,Queensland,-27.697033,152.086533,EPSG:4326 +HUMAN_OBSERVATION,Geoffrey Cox,1,,,2024,7,28,Australia,AU,South Australia,-34.933278,138.698564,EPSG:4326 +HUMAN_OBSERVATION,baileyhikes,1,,,2024,3,15,Australia,AU,Victoria,-38.052539,141.308578,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,On development block near Seton fence and close to Cav road,2023,7,22,Australia,AU,Queensland,-27.528864,153.091883,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,9,4,Australia,AU,Victoria,-38.67118,146.16384,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,10,Australia,AU,Queensland,-27.536997,153.055807,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,In Eucalyptus tereticornis immediately neighbouring that of prior record. Boonah Rail Trail. Smaller individual.,2024,7,3,Australia,AU,Queensland,-27.987375,152.67776,EPSG:4326 +HUMAN_OBSERVATION,nicomollon,1,,,2024,10,23,Australia,AU,Queensland,-19.142205,146.865705,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,24,Australia,AU,Queensland,-27.544731,153.071626,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In unknown Stringybark,2020,1,24,Australia,AU,Queensland,-27.545579,153.057951,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey in Grey gum,2020,10,22,Australia,AU,Queensland,-27.547074,153.058335,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown Sex. Observed by Carley Tydings. Submitted via email.,2022,10,23,Australia,AU,Queensland,-26.367642,151.834431,EPSG:4326 +HUMAN_OBSERVATION,tallangalook,1,,,2024,4,14,Australia,AU,Victoria,-37.088058,145.566863,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,10,20,Australia,AU,Queensland,-27.527339,153.091291,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,,2022,12,10,Australia,AU,Queensland,-28.211503,152.865733,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2024,6,1,Australia,AU,Queensland,-27.223822,153.070206,EPSG:4326 +HUMAN_OBSERVATION,Jen,1,,,2022,12,21,Australia,AU,Queensland,-27.508378,153.106688,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2024,4,9,Australia,AU,Victoria,-37.639534,143.907236,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,The koala was above the scat very high up in a Corymbia variegata. Out of camera shot at night.,2023,8,10,Australia,AU,Queensland,-27.818138,152.816283,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3169,2023,6,3,Australia,AU,Queensland,-27.496289,152.249353,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,9,15,Australia,AU,South Australia,-34.88977,138.729269,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,7,17,Australia,AU,Queensland,-26.143162,152.204215,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,1,18,Australia,AU,Queensland,-27.546205,153.068194,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2023,12,19,Australia,AU,New South Wales,-34.101605,150.822097,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2021,11,22,Australia,AU,Victoria,-38.384725,145.312542,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,1,16,Australia,AU,Queensland,-27.525363,153.091969,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,3,Australia,AU,South Australia,-34.889865,138.728333,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,5,28,Australia,AU,Victoria,-38.67153,146.163956,EPSG:4326 +HUMAN_OBSERVATION,Hanneke Nooren,1,,,2023,10,21,Australia,AU,Queensland,-27.503452,152.247809,EPSG:4326 +HUMAN_OBSERVATION,lynsh,1,,,2024,5,18,Australia,AU,Queensland,-28.094804,153.450049,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,Recorded by Lesley on mobile phone.,2021,9,27,Australia,AU,New South Wales,-28.275296,153.395921,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside cleaners donga,2024,6,14,Australia,AU,Queensland,-27.526729,153.091523,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,1,31,Australia,AU,South Australia,-34.902938,138.703914,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,2,23,Australia,AU,Queensland,-27.530119,153.103494,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,The koala had moved to a different spot in the last photo,2023,4,19,Australia,AU,Queensland,-27.52731,153.108514,EPSG:4326 +HUMAN_OBSERVATION,sophiehinch,1,,,2021,11,3,Australia,AU,Queensland,-27.508805,153.080947,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.017321,138.667322,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,8,6,Australia,AU,Queensland,-27.510338,153.086291,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2020,11,11,Australia,AU,Queensland,-27.511637,153.08312,EPSG:4326 +HUMAN_OBSERVATION,matterstome,1,,,2022,11,14,Australia,AU,Victoria,-37.289749,143.543546,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,9,28,Australia,AU,Queensland,-27.527214,153.091607,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,3,Australia,AU,Queensland,-27.528957,153.103264,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,5,6,Australia,AU,Queensland,-27.513625,153.078637,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Brush box,2020,11,5,Australia,AU,Queensland,-27.551602,153.059502,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Female. Healthy. Nicknamed Chloe. Observed by Malcolm Spry. Submitted via Mike Goebel email. Malcolm regularly monitors her and other Koala movements in the area.,2022,4,20,Australia,AU,Queensland,-25.629911,151.620041,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,Only koala seen on the trip - the previously thriving introduced population on the island has clearly been decimated by the fires,2021,12,6,Australia,AU,South Australia,-35.984451,137.124308,EPSG:4326 +HUMAN_OBSERVATION,kittenkong,1,,Mother and baby,2024,10,9,Australia,AU,Victoria,-38.318183,142.358486,EPSG:4326 +HUMAN_OBSERVATION,byrontully,1,,,2024,9,16,Australia,AU,New South Wales,-30.886345,153.073806,EPSG:4326 +HUMAN_OBSERVATION,vinny007,1,,,2024,10,22,Australia,AU,Victoria,-38.734878,143.406974,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,male koala - has been in this area a whole and heard him the night before but could not see him yesterday.,2020,11,1,Australia,AU,New South Wales,-28.253871,153.377351,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - known as Millie,2023,7,12,Australia,AU,Queensland,-27.527104,153.111227,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,"Female koala high in red stringybark, alert and watching me",2022,9,20,Australia,AU,Victoria,-37.817972,144.252033,EPSG:4326 +HUMAN_OBSERVATION,captainonionhead,1,,,2023,4,13,Australia,AU,Victoria,-38.67148,143.859492,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,6,1,Australia,AU,Victoria,-38.67153,146.163956,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area Make - testicles visible,2023,10,15,Australia,AU,Queensland,-27.525742,153.092318,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,7,29,Australia,AU,Queensland,-27.550953,153.057478,EPSG:4326 +HUMAN_OBSERVATION,Tansnaturediary,1,,,2022,8,14,Australia,AU,Victoria,-37.304957,144.177427,EPSG:4326 +HUMAN_OBSERVATION,Ross Mckay,1,,,2023,11,21,Australia,AU,Queensland,-27.280765,152.065722,EPSG:4326 +HUMAN_OBSERVATION,tatterson,1,,,2021,9,15,Australia,AU,Victoria,-37.797289,145.585259,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,,2022,6,26,Australia,AU,Queensland,-27.508617,153.106758,EPSG:4326 +HUMAN_OBSERVATION,wwe62020,1,,First time this little fellow has been seen in this area. Looks healthy and moves around easily. Didn’t like the attention much and moved around the tree to hide.,2020,1,5,Australia,AU,Queensland,-26.446494,151.806022,EPSG:4326 +HUMAN_OBSERVATION,joheals,1,,,2024,6,26,Australia,AU,Queensland,-27.527833,153.111953,EPSG:4326 +HUMAN_OBSERVATION,bertbohosouth,1,,,2022,9,2,Australia,AU,Victoria,-36.736237,145.73536,EPSG:4326 +HUMAN_OBSERVATION,sueruffles,1,,,2024,10,2,Australia,AU,New South Wales,-34.747717,146.548825,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,20,Australia,AU,Queensland,-27.529936,153.110998,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Not sure which koala this is.,2020,11,20,Australia,AU,New South Wales,-28.254443,153.377043,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Voluntary Rescue - trapped by dogs,2022,10,15,Australia,AU,Victoria,-37.643427,143.879942,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,5,Australia,AU,Queensland,-27.526099,153.093087,EPSG:4326 +HUMAN_OBSERVATION,Louis O'Neill,1,MALE,,2022,5,11,Australia,AU,Victoria,-37.214358,148.26822,EPSG:4326 +HUMAN_OBSERVATION,Sarah Foote,1,,,2022,9,17,Australia,AU,Victoria,-38.31934,142.360512,EPSG:4326 +HUMAN_OBSERVATION,Alasdair McAlpine,1,,,2024,4,25,Australia,AU,Queensland,-27.543254,153.072732,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Scat and runway tree ( high use tree),2022,11,25,Australia,AU,New South Wales,-33.19203,151.052811,EPSG:4326 +HUMAN_OBSERVATION,meganwilliam1968,1,,1st photo is two koalas(mum&baby?) she made her way up to give the little one a hug. 2nd photo mum snoozing in a blower branch.,2023,12,3,Australia,AU,Victoria,-38.666415,146.281382,EPSG:4326 +HUMAN_OBSERVATION,Neds,1,,Eating young eaucalyptus on the side of the road. Appeared healthy. Climbed back up tree happily,2020,9,27,Australia,AU,South Australia,-35.28587,138.693324,EPSG:4326 +HUMAN_OBSERVATION,Colin and Wendy Cook,1,MALE,Heard on back porch at night. Then it climbed a post supporting the roof. It then wandered into the garden.,2022,6,4,Australia,AU,Victoria,-37.808604,144.146636,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,4,23,Australia,AU,Queensland,-27.550829,153.053787,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,#1,2023,8,20,Australia,AU,Queensland,-27.511737,153.084231,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,1,20,Australia,AU,Queensland,-27.529619,153.103621,EPSG:4326 +HUMAN_OBSERVATION,Dominique Appay,1,FEMALE,"Small adult Koala in dominant gum tree, Janelle Court Park, 4160.",2022,12,23,Australia,AU,Queensland,-27.500395,153.234306,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,10,8,Australia,AU,New South Wales,-33.078389,151.089661,EPSG:4326 +HUMAN_OBSERVATION,damianjones,1,,,2020,4,24,Australia,AU,Victoria,-37.585842,144.376328,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,FEMALE,Mum and joey climbing a tree.,2022,9,3,Australia,AU,Queensland,-27.411218,153.456078,EPSG:4326 +HUMAN_OBSERVATION,janewhitticar,1,,"About 0.5 meters in length, was found sleeping in a tree.",2022,10,16,Australia,AU,Queensland,-19.123236,146.872178,EPSG:4326 +HUMAN_OBSERVATION,drusaus,1,,,2024,2,4,Australia,AU,Victoria,-38.347805,146.027789,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,10,14,Australia,AU,Queensland,-26.3624,151.74227,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,E.micrcorys,2020,10,12,Australia,AU,Queensland,-27.549822,153.060127,EPSG:4326 +HUMAN_OBSERVATION,nicomollon,1,,,2024,10,23,Australia,AU,Queensland,-19.123211,146.872147,EPSG:4326 +HUMAN_OBSERVATION,zw95,1,,,2024,2,26,Australia,AU,Victoria,-36.883062,145.522538,EPSG:4326 +HUMAN_OBSERVATION,Larissa Braz Sousa,1,,,2021,4,5,Australia,AU,South Australia,-34.969705,138.680319,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,,2024,9,17,Australia,AU,New South Wales,-34.770827,146.59221,EPSG:4326 +HUMAN_OBSERVATION,Grant Smith,1,,,2023,7,17,Australia,AU,Queensland,-18.810963,143.40534,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,This young one was wandering up the road as we drove along and found a tree when I got out with the camera. Then decided to change trees. Not overly perturbed by me.,2024,5,23,Australia,AU,Victoria,-37.792898,141.484852,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,19,Australia,AU,Queensland,-27.528815,153.109707,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,"Female found lying on ground unable to move. No sign of injury. Same female as previous observations 😢 Euthanised - eye problem, couldn’t see",2022,1,20,Australia,AU,Victoria,-38.67129,146.164033,EPSG:4326 +HUMAN_OBSERVATION,jango1971,1,,,2021,1,19,Australia,AU,Queensland,-19.128619,146.855835,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,4,1,Australia,AU,New South Wales,-29.870319,150.601207,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,FEMALE,Mother and Joey,2021,12,5,Australia,AU,Queensland,-27.529449,153.10356,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2023,12,23,Australia,AU,Queensland,-27.524307,153.093056,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,14,Australia,AU,South Australia,-34.889559,138.722723,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,1,5,Australia,AU,Victoria,-37.587254,143.883856,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey gum,2021,7,17,Australia,AU,Queensland,-27.547138,153.059077,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,17,Australia,AU,Queensland,-27.527204,153.111191,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In Scribbly gum tagged 1098.,2024,3,12,Australia,AU,Queensland,-27.557142,153.058585,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Lots of feed trees and lots of scat and activity,2023,8,20,Australia,AU,New South Wales,-33.169133,151.246314,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near cleaners donga,2023,8,10,Australia,AU,Queensland,-27.526924,153.091755,EPSG:4326 +HUMAN_OBSERVATION,Hamish Everett,1,,,2023,8,24,Australia,AU,Victoria,-38.832721,143.512682,EPSG:4326 +HUMAN_OBSERVATION,alannahrussell,1,,,2020,10,24,Australia,AU,Queensland,-27.134933,152.920852,EPSG:4326 +HUMAN_OBSERVATION,Oscar Dove,1,,,2022,8,30,Australia,AU,New South Wales,-31.458043,152.911666,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Seen often along this road. Observed by John Carey. Submitted via email.,2024,3,16,Australia,AU,Queensland,-26.522573,151.862643,EPSG:4326 +HUMAN_OBSERVATION,woodlandenviro,1,,3 koalas observed in the same location,2022,7,27,Australia,AU,Queensland,-27.581053,153.127815,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,13,Australia,AU,Queensland,-27.527011,153.107773,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,,"#roadkill Hit while crossing road, found at 7.30am still alive & died shortly after. No koala in area signs.",2022,3,25,Australia,AU,South Australia,-35.144977,138.660657,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,MALE,Male buck near house,2023,11,29,Australia,AU,Queensland,-27.358343,152.074639,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,11,9,Australia,AU,Queensland,-27.528377,153.111781,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,17,Australia,AU,Queensland,-27.529393,153.105754,EPSG:4326 +HUMAN_OBSERVATION,rosewise,1,,with young,2024,9,21,Australia,AU,New South Wales,-28.874057,153.161649,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,,2021,12,25,Australia,AU,Victoria,-38.178782,145.134356,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,,2023,1,26,Australia,AU,Queensland,-27.506011,153.078339,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Lophostemon confertus,2021,3,9,Australia,AU,Queensland,-27.544388,153.059113,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,4,19,Australia,AU,South Australia,-35.005356,138.641168,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,19,Australia,AU,Queensland,-27.527008,153.110479,EPSG:4326 +HUMAN_OBSERVATION,Karen Weaving,1,,"Wild, having a snooze high up a Eucalyptus tree, Heathfield, SA, Australia.",2021,7,4,Australia,AU,South Australia,-35.03557,138.709864,EPSG:4326 +HUMAN_OBSERVATION,Dianne Clarke,1,,Red tag on left ear,2022,4,4,Australia,AU,Queensland,-26.712819,152.825648,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Female koala with chlamydia - rescued by M Butlin for TKWR and taken to RSPCA Wacol Wildlife Hospital,2023,10,7,Australia,AU,Queensland,-27.472827,151.940341,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,? crusty eyes,2024,3,8,Australia,AU,Queensland,-27.52928,153.106414,EPSG:4326 +HUMAN_OBSERVATION,Federico,1,,,2024,9,8,Australia,AU,Queensland,-27.909659,153.372843,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,2,Australia,AU,Queensland,-27.528288,153.112721,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,25,Australia,AU,Queensland,-27.526702,153.090378,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - green tag LEFT ear - Joe, known as Bozo",2024,2,5,Australia,AU,Queensland,-27.527461,153.107248,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,,2020,9,25,Australia,AU,Queensland,-27.56522,153.134139,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,10,7,Australia,AU,Queensland,-27.551863,153.057848,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,4,4,Australia,AU,New South Wales,-28.26017,153.40206,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Submitted by Julie Clifford. Alive, healthy, adult. Sex unknow",2020,7,3,Australia,AU,Queensland,-26.539756,151.843129,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,,2024,7,5,Australia,AU,Queensland,-27.526812,153.108971,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Sitting high in a mature E.puncta,2022,12,16,Australia,AU,New South Wales,-33.1918,151.052764,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - white tag LEFT ear & small metal tag RIGHT ear - Bandit,2024,5,22,Australia,AU,Queensland,-27.52953,153.109755,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,10,Australia,AU,Queensland,-27.544385,153.0719,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Very high in a huge scribbly gum,2023,1,3,Australia,AU,Queensland,-27.528284,153.113737,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,,,2024,11,16,Australia,AU,Queensland,-27.40144,153.438689,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,Distinct koala cals heard on 10/7 at 6.58pm and 11/7 at 2:30am and 3:47am. Difficult to hear on the recordings but wanted a record of approx location and to correlate counts and comparison with Griffith University study.,2024,7,10,Australia,AU,Queensland,-27.823371,152.990827,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.383331,145.29715,EPSG:4326 +HUMAN_OBSERVATION,lynsh,1,,,2024,11,1,Australia,AU,Queensland,-27.979639,153.301047,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,9,30,Australia,AU,New South Wales,-33.076528,151.094986,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,11,Australia,AU,Queensland,-27.543503,153.07258,EPSG:4326 +HUMAN_OBSERVATION,enekoazkue,1,,,2024,5,2,Australia,AU,Victoria,-38.058367,141.920662,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,29,Australia,AU,Queensland,-27.528828,153.109651,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2022,1,11,Australia,AU,Queensland,-27.566487,152.110336,EPSG:4326 +HUMAN_OBSERVATION,eklemp,1,,,2024,11,5,Australia,AU,Queensland,-27.497803,153.399688,EPSG:4326 +HUMAN_OBSERVATION,David,1,,,2022,11,20,Australia,AU,South Australia,-34.906222,138.707989,EPSG:4326 +HUMAN_OBSERVATION,parwanfarm,1,,,2023,3,8,Australia,AU,Victoria,-37.714038,144.493928,EPSG:4326 +HUMAN_OBSERVATION,Gareth,1,MALE,,2024,8,24,Australia,AU,Victoria,-38.83569,143.515157,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Male koala in unknown tree,2020,1,28,Australia,AU,Queensland,-27.550786,153.055879,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,,2022,2,26,Australia,AU,Queensland,-27.542983,153.077086,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,MALE,,2023,9,10,Australia,AU,Queensland,-27.284473,153.000892,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,7,7,Australia,AU,New South Wales,-28.252932,153.376683,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland - inside nursery,2023,11,19,Australia,AU,Queensland,-27.528087,153.092268,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,Mum and bub just up from solar farm in bush land on opposite side,2022,11,4,Australia,AU,Queensland,-27.720972,151.529433,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,9,9,Australia,AU,South Australia,-35.00608,138.63851,EPSG:4326 +HUMAN_OBSERVATION,Tracy W,1,,,2020,8,3,Australia,AU,Queensland,-27.490427,153.180105,EPSG:4326 +HUMAN_OBSERVATION,peterkotsi,1,,,2024,4,16,Australia,AU,Victoria,-38.833508,143.51358,EPSG:4326 +HUMAN_OBSERVATION,Friends of Parks Queensland,1,,,2024,9,25,Australia,AU,Queensland,-26.246729,152.825484,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2022,12,28,Australia,AU,Queensland,-27.529833,153.103673,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear Naomi,2024,4,2,Australia,AU,Queensland,-27.529666,153.103793,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,24,Australia,AU,South Australia,-34.889956,138.722043,EPSG:4326 +HUMAN_OBSERVATION,Darcy Whittaker,1,,,2024,4,13,Australia,AU,Victoria,-38.03313,141.149343,EPSG:4326 +HUMAN_OBSERVATION,pdw181,1,MALE,Male koala,2023,5,26,Australia,AU,Victoria,-37.49709,144.54718,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2024,8,3,Australia,AU,Queensland,-27.510851,153.086747,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,26,Australia,AU,South Australia,-34.892657,138.722432,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,,Female koala high in ironbark with large choughs nest just above She has been seen in this area previously,2024,6,22,Australia,AU,Victoria,-37.817902,144.252683,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2024,6,20,Australia,AU,Victoria,-37.637331,143.884054,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,11,9,Australia,AU,Victoria,-38.671619,146.164483,EPSG:4326 +HUMAN_OBSERVATION,ormiston,1,,,2021,3,13,Australia,AU,Queensland,-27.523092,153.260975,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,FEMALE,,2022,8,10,Australia,AU,Queensland,-27.513952,153.081609,EPSG:4326 +HUMAN_OBSERVATION,lisaw1012,1,,,2021,10,14,Australia,AU,Queensland,-27.652522,152.898742,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,11,Australia,AU,Queensland,-27.525754,153.092055,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,8,6,Australia,AU,Queensland,-27.256186,152.044695,EPSG:4326 +HUMAN_OBSERVATION,Jason Ramsay,1,,Strong eucalypt smell. Found under canopy of Eucalyptus tereticornis.,2023,8,12,Australia,AU,Queensland,-27.276959,152.963846,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2021,8,20,Australia,AU,New South Wales,-28.256191,153.400955,EPSG:4326 +HUMAN_OBSERVATION,Steve Dew,1,,,2022,2,16,Australia,AU,Victoria,-38.800562,143.481831,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Healthy Joey,2022,10,25,Australia,AU,Queensland,-27.510694,153.082792,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,"Adult male, Healthy. Frequents the oak tree in the front yard. Observed by Paris Richardson. Submitted via email.",2023,6,24,Australia,AU,Queensland,-26.669634,152.006196,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,1,Australia,AU,Queensland,-27.547845,153.038418,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Photo Vicki Pomerenke seen at night in amongst some hay bailing activities,2023,10,22,Australia,AU,Queensland,-27.48784,152.434766,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,5,28,Australia,AU,Queensland,-27.529907,153.105025,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy and alert, 4th of 6 seen",2023,1,26,Australia,AU,Queensland,-27.34005,152.612747,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A18 RIGHT ear - Campo,2023,10,10,Australia,AU,Queensland,-27.528246,153.111149,EPSG:4326 +HUMAN_OBSERVATION,Liz Snow,1,,,2024,11,17,Australia,AU,Queensland,-27.54284,153.072242,EPSG:4326 +HUMAN_OBSERVATION,kymelen,1,,,2021,3,16,Australia,AU,Victoria,-35.875298,145.329187,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2022,2,9,Australia,AU,South Australia,-34.891973,138.716674,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Very young koala hiding amongst Monkey rope,2020,10,19,Australia,AU,Queensland,-27.55107,153.057439,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2024,10,7,Australia,AU,Queensland,-27.527311,153.09149,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.92355,147.731278,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,2,5,Australia,AU,Queensland,-27.539412,153.05498,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,No visible ear tags. About 30m agl in E tereticornis,2023,12,23,Australia,AU,Queensland,-27.509472,153.070692,EPSG:4326 +HUMAN_OBSERVATION,noddyblue,1,,koala? had euc smell,2024,7,22,Australia,AU,Victoria,-36.872553,145.414064,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear mother and joey,2023,11,26,Australia,AU,Queensland,-27.527985,153.093111,EPSG:4326 +HUMAN_OBSERVATION,ecoem22,1,,,2024,10,4,Australia,AU,New South Wales,-32.948875,151.500183,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2024,5,5,Australia,AU,Victoria,-37.57555,143.897103,EPSG:4326 +HUMAN_OBSERVATION,Katie Hannan,1,,,2022,1,15,Australia,AU,South Australia,-35.134689,138.514025,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"Faint but distinctive bellowing call in background. Koala counts 29th March 2024 7:00: 0 koalas 1 observer 45 minutes. 30th March 2024 7:45am: 0 koalas 2 observers (JT, AJT) 40 minutes.",2024,3,29,Australia,AU,Queensland,-27.823055,152.993429,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,3,23,Australia,AU,Queensland,-27.52717,153.091581,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2021,9,23,Australia,AU,South Australia,-34.865453,138.665875,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2021,8,3,Australia,AU,South Australia,-34.865605,138.656205,EPSG:4326 +HUMAN_OBSERVATION,fidug,1,,,2024,2,10,Australia,AU,Queensland,-27.584892,153.166564,EPSG:4326 +HUMAN_OBSERVATION,doreenmarchesan,1,MALE,Large and male (observed the scent glad on chest),2020,4,24,Australia,AU,South Australia,-34.827112,138.730534,EPSG:4326 +HUMAN_OBSERVATION,Louis O'Neill,1,,,2022,5,20,Australia,AU,Victoria,-37.222183,148.264297,EPSG:4326 +HUMAN_OBSERVATION,kb2700,1,,,2024,9,21,Australia,AU,New South Wales,-34.762738,146.583477,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,"Male koala high in manna gum, same position as recent sighting",2024,1,13,Australia,AU,Victoria,-37.81071,144.24875,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Female and Joey in Grey Ironbark,2020,10,30,Australia,AU,Queensland,-27.52783,153.048937,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,7,16,Australia,AU,Queensland,-27.330272,151.869355,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2024,8,24,Australia,AU,Queensland,-27.570587,152.103486,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,11,Australia,AU,Queensland,-27.529824,153.111302,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2023,5,8,Australia,AU,Queensland,-27.508003,153.067233,EPSG:4326 +HUMAN_OBSERVATION,Coffs Trails,1,,,2021,4,22,Australia,AU,New South Wales,-32.081292,151.899292,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2023,1,12,Australia,AU,Victoria,-38.326985,142.641098,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,22,Australia,AU,Queensland,-27.527275,153.108267,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,MALE,Male;,2022,12,20,Australia,AU,New South Wales,-28.254108,153.376931,EPSG:4326 +HUMAN_OBSERVATION,nealejr,1,,,2022,9,30,Australia,AU,Victoria,-38.843411,143.542887,EPSG:4326 +HUMAN_OBSERVATION,naomimurton,1,,Delighting the students at KICE Parndana school,2023,3,16,Australia,AU,South Australia,-35.786181,137.264128,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,9,9,Australia,AU,Queensland,-27.546861,153.07446,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Cindy Crawford and joey Lower wisteria car park,2023,11,12,Australia,AU,Queensland,-27.524636,153.092869,EPSG:4326 +HUMAN_OBSERVATION,rhiannonquigley,1,,"It's dark, I can't see the source of the noise but it's very loud, coming from high up in a tree.",2024,10,8,Australia,AU,Victoria,-38.52397,143.540704,EPSG:4326 +HUMAN_OBSERVATION,black-x,1,,,2022,11,9,Australia,AU,Queensland,-27.54857,153.053349,EPSG:4326 +HUMAN_OBSERVATION,wwendy,1,,Saw this little beauty scramble across the road and then up the tree. Pretty good at leaping between branches too.,2022,12,26,Australia,AU,Queensland,-27.267047,152.049287,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"Also heard at: 24/10 1:27am faint N koala1, 1:28am koala2 NW, 1:44am koala2 NW, 1:55am koala1 NNW, 24/10 11:50pm S faint, 25/1 1:32am S faint",2024,10,24,Australia,AU,Queensland,-27.822602,152.991687,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,4,13,Australia,AU,Queensland,-27.52676,153.09057,EPSG:4326 +HUMAN_OBSERVATION,murrah,1,,First koala sighted on property.,2021,8,31,Australia,AU,New South Wales,-36.548388,149.984603,EPSG:4326 +HUMAN_OBSERVATION,enekoazkue,1,,Spotted at night.,2023,12,5,Australia,AU,New South Wales,-28.639428,153.629046,EPSG:4326 +HUMAN_OBSERVATION,polyscias099,1,,,2023,8,3,Australia,AU,New South Wales,-34.212301,150.798844,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mother and Joey in E.tereticornis,2022,9,5,Australia,AU,Queensland,-27.525612,153.048313,EPSG:4326 +HUMAN_OBSERVATION,jahonan,1,,In suburban Manna Gum,2024,10,21,Australia,AU,Victoria,-38.389477,142.223174,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in Eucalyptus tereticornis.,2024,6,26,Australia,AU,Queensland,-27.92762,152.468718,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree next to tennis courts,2023,11,11,Australia,AU,Queensland,-27.525359,153.092749,EPSG:4326 +HUMAN_OBSERVATION,Luis Mata EntSocVic,1,,,2020,7,26,Australia,AU,Victoria,-38.265417,145.045941,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Stacey Wickson. Forwarded by email.,2021,9,2,Australia,AU,Queensland,-26.520612,151.856714,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Cleaners donga d block Possibly with joey,2024,10,6,Australia,AU,Queensland,-27.527026,153.091699,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2023,12,31,Australia,AU,South Australia,-34.83909,138.74138,EPSG:4326 +HUMAN_OBSERVATION,Ash,1,,,2024,8,13,Australia,AU,Queensland,-27.715645,153.14395,EPSG:4326 +HUMAN_OBSERVATION,Scott Rolph,1,,Heard call then sighted,2021,1,26,Australia,AU,Victoria,-37.854663,144.249556,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,13,Australia,AU,South Australia,-34.890964,138.716007,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2022,3,2,Australia,AU,Queensland,-27.546065,153.051044,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,5,26,Australia,AU,Queensland,-27.527734,153.09299,EPSG:4326 +HUMAN_OBSERVATION,pierce_clark,1,,,2024,10,5,Australia,AU,Queensland,-27.920167,153.376199,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Red tag R ear - female, possibly Cindy",2022,12,29,Australia,AU,Queensland,-27.527232,153.108925,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,,2024,6,22,Australia,AU,Queensland,-27.529103,153.106595,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2021,9,13,Australia,AU,South Australia,-34.86482,138.660984,EPSG:4326 +HUMAN_OBSERVATION,lizgould,1,,,2023,10,26,Australia,AU,Queensland,-28.918442,151.582017,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Female in Eucalyptus nicholii,2021,10,19,Australia,AU,Victoria,-38.671258,146.164183,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,2,15,Australia,AU,South Australia,-34.95866,138.697044,EPSG:4326 +HUMAN_OBSERVATION,Larissa Braz Sousa,1,,,2021,4,5,Australia,AU,South Australia,-34.9703,138.681031,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Two koalas same tree Wisteria carpark Jacob Jnr,2024,10,5,Australia,AU,Queensland,-27.524599,153.092109,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Melaleuca,2021,9,8,Australia,AU,Queensland,-27.551335,153.058249,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road,2024,7,21,Australia,AU,Queensland,-27.526926,153.090531,EPSG:4326 +HUMAN_OBSERVATION,Lucy Keith-Diagne,1,,,2024,11,20,Australia,AU,Queensland,-27.493653,153.402991,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,7,18,Australia,AU,Queensland,-27.543768,153.05462,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In mum’s trees Male testicles visible,2024,3,29,Australia,AU,Queensland,-27.526459,153.090995,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2020,7,12,Australia,AU,South Australia,-34.900742,138.702928,EPSG:4326 +HUMAN_OBSERVATION,Stephen Csurhes,1,,In council rehab area.,2022,7,14,Australia,AU,Queensland,-27.544344,153.104488,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2022,10,3,Australia,AU,South Australia,-35.085611,138.669786,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,Mum and (not so little) bub,2021,11,28,Australia,AU,Queensland,-27.721471,151.528966,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2024,7,7,Australia,AU,Queensland,-27.530295,153.03386,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,"Had been calling a little bit previous night also, tonight a lot of noise.",2020,11,26,Australia,AU,Queensland,-27.510478,153.069795,EPSG:4326 +HUMAN_OBSERVATION,Riley Walsh,1,FEMALE,,2022,8,9,Australia,AU,Queensland,-27.317321,152.647048,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Forest red gum,2023,2,18,Australia,AU,Queensland,-27.526884,153.090823,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2021,10,13,Australia,AU,South Australia,-34.971276,138.63815,EPSG:4326 +HUMAN_OBSERVATION,Graham Possingham,1,,,2023,10,26,Australia,AU,Victoria,-38.483007,143.737581,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,8,20,Australia,AU,New South Wales,-33.076522,151.094986,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Aldi gates,2024,9,28,Australia,AU,Queensland,-27.526733,153.093143,EPSG:4326 +HUMAN_OBSERVATION,mintyturtle,1,,Young koala that lives at local school.,2021,1,21,Australia,AU,Queensland,-27.590987,153.128812,EPSG:4326 +HUMAN_OBSERVATION,Charles Dove,1,MALE,,2022,7,16,Australia,AU,Queensland,-27.291624,151.812743,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,3,22,Australia,AU,Queensland,-27.529523,153.103133,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2024,4,28,Australia,AU,Victoria,-37.065515,145.342654,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area near blue bin,2023,6,24,Australia,AU,Queensland,-27.528289,153.092494,EPSG:4326 +HUMAN_OBSERVATION,jhagenx6,1,,Found droppings and heard Koala calling. Translocated for Raymond Island recently.,2022,9,29,Australia,AU,Victoria,-37.952922,147.669678,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - yellow tag RIGHT ear,2023,6,28,Australia,AU,Queensland,-27.529042,153.108969,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2023,4,23,Australia,AU,New South Wales,-36.172597,149.278428,EPSG:4326 +HUMAN_OBSERVATION,george_seagull,1,,Marengo Nature Conservation Reserve.,2024,7,10,Australia,AU,Victoria,-38.775539,143.65069,EPSG:4326 +HUMAN_OBSERVATION,elaffey,1,,,2023,9,16,Australia,AU,Victoria,-38.276245,141.420837,EPSG:4326 +HUMAN_OBSERVATION,explorermarkus,1,,,2024,7,3,Australia,AU,Victoria,-38.762335,143.605921,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,A large male in E.tereticornis on the ephemeral stream close to Leach Road. Was calling.,2024,1,22,Australia,AU,Queensland,-27.901993,153.136536,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,1,12,Australia,AU,South Australia,-34.868707,138.657912,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" dominant male in gully of 47 & 48 Baker Road. Today up slope on 48 Baker.",2020,2,21,Australia,AU,New South Wales,-30.520709,151.521026,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2023,10,21,Australia,AU,Victoria,-37.023178,145.522107,EPSG:4326 +HUMAN_OBSERVATION,cmorgans12,1,,,2020,3,10,Australia,AU,Queensland,-27.70346,152.468858,EPSG:4326 +HUMAN_OBSERVATION,rordale,1,,One male koala and a female with juvenile beside Crows Nest Creek.,2024,10,22,Australia,AU,Queensland,-27.261855,152.063964,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark. Not happy as another koala is stalking him at other end of branch,2020,10,8,Australia,AU,Queensland,-27.548505,153.052151,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - green tag LEFT ear - Joe (known as Bozo),2023,8,21,Australia,AU,Queensland,-27.527371,153.107258,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,12,14,Australia,AU,Victoria,-38.671279,146.163777,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2021,8,29,Australia,AU,Queensland,-27.565643,153.100261,EPSG:4326 +HUMAN_OBSERVATION,tracyrout,1,,,2024,3,16,Australia,AU,Queensland,-27.527477,153.070318,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2024,6,15,Australia,AU,Queensland,-27.575974,152.925705,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,4,2,Australia,AU,Victoria,-38.354354,146.388491,EPSG:4326 +HUMAN_OBSERVATION,Max,1,,,2023,11,22,Australia,AU,Queensland,-26.930133,152.47725,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Eucalyptus microcorys.,2021,3,9,Australia,AU,Queensland,-27.546045,153.057287,EPSG:4326 +HUMAN_OBSERVATION,Philipp Hoenle,1,,,2023,9,30,Australia,AU,Queensland,-27.54313,153.070494,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,7,3,Australia,AU,Queensland,-27.527469,153.092242,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,"Small koala, could be same one spotted previously in this area",2021,7,17,Australia,AU,Queensland,-28.164585,152.607336,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2024,11,4,Australia,AU,Queensland,-27.518283,153.068655,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2022,5,23,Australia,AU,New South Wales,-33.073514,151.094222,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"female trapped on house roof to escape dogs, rescued.",2021,10,6,Australia,AU,Victoria,-37.553758,143.888077,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Maisie - same tree as joey,2024,11,9,Australia,AU,Queensland,-27.526892,153.090344,EPSG:4326 +HUMAN_OBSERVATION,Roger MacRaild,1,,,2023,9,24,Australia,AU,Victoria,-37.504071,144.546338,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2022,5,4,Australia,AU,Queensland,-28.092227,152.843046,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"Feeding in its favourite Eucalyptus interstans, a Regionally significant tree in Lockyer Valley",2023,10,10,Australia,AU,Queensland,-27.40755,152.361617,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,3,3,Australia,AU,Victoria,-37.584539,143.890604,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,16,Australia,AU,Queensland,-27.526779,153.091462,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,6,Australia,AU,South Australia,-34.891049,138.724615,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,"Survey 1 LNSF FoN. Numerous koala markings discernable, amongst other scratchings on Grey Gum, known area (BioNet transect 2021)",2023,7,11,Australia,AU,New South Wales,-30.56026,152.993737,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,12,7,Australia,AU,Victoria,-37.644971,143.899209,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2023,12,27,Australia,AU,Queensland,-27.52487,153.092991,EPSG:4326 +HUMAN_OBSERVATION,victoria2000,1,,"Second one we spotted in Coombabah Lakelands, this one was moving looking for a better position to sleep",2023,4,25,Australia,AU,Queensland,-27.91193,153.372663,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,Adult male,2024,7,11,Australia,AU,Queensland,-27.48443,152.95627,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,2,15,Australia,AU,South Australia,-34.957451,138.695246,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road,2024,10,21,Australia,AU,Queensland,-27.526093,153.090782,EPSG:4326 +HUMAN_OBSERVATION,jango1971,1,,,2023,12,7,Australia,AU,Victoria,-38.139963,145.274379,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,This is one of two related iNaturalist records of a koala group comprising an adult and a juvenile koala. This record concerns the ADULT KOALA. Links to the relevant records are as follows: - Adult koala https://inaturalist.ala.org.au/observations/194693077 - Juvenile koala https://inaturalist.ala.org.au/observations/194693348,2023,12,23,Australia,AU,Queensland,-27.511158,153.084242,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,This could be a male?,2020,11,8,Australia,AU,New South Wales,-28.253975,153.376917,EPSG:4326 +HUMAN_OBSERVATION,joshpuglisi,1,,,2024,3,5,Australia,AU,Victoria,-37.187538,148.26857,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,18,Australia,AU,South Australia,-34.889011,138.734588,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,27,Australia,AU,Queensland,-27.529493,153.105242,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,4,1,Australia,AU,South Australia,-34.962008,138.700305,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Seen in tree very close to another individual in a separate tree. Observed by Wendy Taylor. Submitted by Denise Shaw via email.,2023,9,6,Australia,AU,Queensland,-26.363365,151.8094,EPSG:4326 +HUMAN_OBSERVATION,cleanlymoss,1,,,2024,1,1,Australia,AU,Queensland,-27.600052,151.895396,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to e block,2024,1,12,Australia,AU,Queensland,-27.526481,153.090585,EPSG:4326 +HUMAN_OBSERVATION,maddiegeorge,1,,,2022,11,16,Australia,AU,Queensland,-27.429168,151.828786,EPSG:4326 +HUMAN_OBSERVATION,harrycg,1,,"Healthy, alert, possibly a juvenile",2023,2,20,Australia,AU,Queensland,-27.544328,153.056564,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,Heard this fellow calling while observing the female Koala. Photo of tree that it was indicates a very often used tree for climbing.,2020,9,13,Australia,AU,Queensland,-26.16335,151.97277,EPSG:4326 +HUMAN_OBSERVATION,ametcalf,1,,"Sienna the koala (right ear tag, red 8263) high up in gum tree that’s base is on the roadside of the fence. Magpies still don’t like her presence but she’s sleeping.",2024,10,13,Australia,AU,Queensland,-27.220608,153.089221,EPSG:4326 +HUMAN_OBSERVATION,lynsh,1,,,2023,9,9,Australia,AU,Queensland,-28.093339,153.450138,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,7,Australia,AU,South Australia,-34.890895,138.731437,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,,2023,3,5,Australia,AU,Queensland,-27.909745,153.372062,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,2nd koala in tree,2024,3,5,Australia,AU,Victoria,-37.615254,143.895829,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Heard a bellowing last night too.,2022,6,25,Australia,AU,New South Wales,-28.253932,153.376938,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey eating some part of a Brush Box (Lophostemon confertus),2020,10,22,Australia,AU,Queensland,-27.54838,153.058642,EPSG:4326 +HUMAN_OBSERVATION,Radar,1,,,2022,1,19,Australia,AU,Queensland,-27.656238,153.158727,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,3,16,Australia,AU,New South Wales,-33.076633,151.095367,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2022,7,27,Australia,AU,Victoria,-38.62807,145.727937,EPSG:4326 +HUMAN_OBSERVATION,fraserj09,1,FEMALE,,2024,9,13,Australia,AU,Victoria,-38.203258,141.775102,EPSG:4326 +HUMAN_OBSERVATION,davidmck,1,,,2022,2,8,Australia,AU,Victoria,-37.932528,144.16815,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,8,18,Australia,AU,Queensland,-27.551036,153.057021,EPSG:4326 +HUMAN_OBSERVATION,daphnemona1925,1,,,2023,7,27,Australia,AU,Queensland,-27.673583,151.663422,EPSG:4326 +HUMAN_OBSERVATION,michaelmulvaney,1,,,2021,4,16,Australia,AU,South Australia,-35.671986,137.612458,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,9,23,Australia,AU,Queensland,-27.257551,152.044208,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2022,3,10,Australia,AU,Queensland,-27.490129,153.248024,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,,2024,4,25,Australia,AU,Queensland,-27.545712,153.073508,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2022,7,11,Australia,AU,New South Wales,-30.99372,150.240719,EPSG:4326 +HUMAN_OBSERVATION,cooleigh,1,,,2023,10,22,Australia,AU,Queensland,-27.633133,151.525754,EPSG:4326 +HUMAN_OBSERVATION,jackywinter,1,,,2024,3,9,Australia,AU,Victoria,-36.962008,145.617578,EPSG:4326 +HUMAN_OBSERVATION,benog,1,,,2024,10,4,Australia,AU,South Australia,-34.906189,138.70799,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,3,28,Australia,AU,Queensland,-27.546096,153.057804,EPSG:4326 +HUMAN_OBSERVATION,Peter Latta,1,,,2024,4,26,Australia,AU,Victoria,-38.786777,143.634669,EPSG:4326 +HUMAN_OBSERVATION,arturpodlaski_19,1,,,2024,4,9,Australia,AU,Victoria,-38.666596,143.858142,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,9,15,Australia,AU,Queensland,-27.525909,153.091977,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,24,Australia,AU,Queensland,-27.525821,153.090747,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,Scat,2023,9,9,Australia,AU,New South Wales,-29.866745,150.601584,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear,2023,10,10,Australia,AU,Queensland,-27.529788,153.104953,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female (tagged) with joey,2023,8,21,Australia,AU,Queensland,-27.529213,153.10909,EPSG:4326 +HUMAN_OBSERVATION,nmccormac,1,,,2020,4,23,Australia,AU,Victoria,-38.392422,145.176575,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,11,5,Australia,AU,Queensland,-27.436739,152.632349,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,I think this is Naomi's joey from last year,2023,5,26,Australia,AU,Queensland,-27.529517,153.10448,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,4,27,Australia,AU,Queensland,-27.642924,151.657546,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,,Suffering from clamidia (/bladder infection),2020,11,19,Australia,AU,Queensland,-27.458365,152.403241,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,8,7,Australia,AU,Queensland,-27.551377,153.059535,EPSG:4326 +HUMAN_OBSERVATION,Gavin Goodyear,1,,,2022,8,14,Australia,AU,Queensland,-27.476824,152.536821,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,8,29,Australia,AU,Queensland,-27.5449,153.071969,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Appeared healthy. May be same koala observed by Denise Shaw in the same location around the same date. Observed by Barb McNaire. Submitted by Denise Shaw via email.,2023,7,14,Australia,AU,Queensland,-26.498262,151.822525,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,4,24,Australia,AU,Queensland,-27.551415,153.057542,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,FEMALE,note joey protected beween mum and trunk.,2021,9,21,Australia,AU,Queensland,-27.50958,153.070308,EPSG:4326 +HUMAN_OBSERVATION,stephenfed,1,,,2024,4,10,Australia,AU,Victoria,-38.832721,143.512682,EPSG:4326 +HUMAN_OBSERVATION,JemmaCripps,1,,,2022,11,22,Australia,AU,Victoria,-38.552097,143.421773,EPSG:4326 +HUMAN_OBSERVATION,rjennion,1,,,2022,12,30,Australia,AU,Victoria,-37.924322,147.727403,EPSG:4326 +HUMAN_OBSERVATION,Francesco Martoni,1,,,2022,6,12,Australia,AU,Victoria,-38.318585,142.363778,EPSG:4326 +HUMAN_OBSERVATION,rosewise,1,,3 prs of Koalas (Adult & young) all in trees near each other,2024,9,21,Australia,AU,New South Wales,-28.875804,153.162206,EPSG:4326 +HUMAN_OBSERVATION,peter-,1,,,2023,11,5,Australia,AU,Queensland,-28.203106,152.897078,EPSG:4326 +HUMAN_OBSERVATION,kazhutcho,1,,Observed eating casuarina (she oak).,2023,12,1,Australia,AU,New South Wales,-30.293863,153.123961,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2020,3,11,Australia,AU,Victoria,-38.254199,141.392916,EPSG:4326 +HUMAN_OBSERVATION,jobrierley,1,,Tagged male,2024,6,25,Australia,AU,Queensland,-28.13713,153.432787,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,Adult male koala feeding on Flooded Gum tree.,2021,8,15,Australia,AU,New South Wales,-28.256302,153.401439,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2023,5,6,Australia,AU,Queensland,-26.379617,153.021266,EPSG:4326 +HUMAN_OBSERVATION,thismiaman,1,,,2024,2,18,Australia,AU,South Australia,-35.72798,137.465347,EPSG:4326 +HUMAN_OBSERVATION,benico,1,,"Koala displaced from its home after tree clearing on Green Rd, Heritage Park.",2021,11,15,Australia,AU,Queensland,-27.692142,153.063466,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,31,Australia,AU,Queensland,-27.529471,153.112416,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey,2024,11,9,Australia,AU,Queensland,-27.527108,153.091606,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,6,Australia,AU,Queensland,-27.529658,153.103826,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" male in stringybark. Stayed in this location all day. Calling a lot at night. His gluggy eye looks a bit better.",2020,11,19,Australia,AU,New South Wales,-30.520925,151.518926,EPSG:4326 +HUMAN_OBSERVATION,trishfox3875,1,,Male calling,2023,2,1,Australia,AU,Victoria,-37.909899,147.644073,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Monty,2024,3,3,Australia,AU,South Australia,-34.889813,138.72241,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In sport n rec picnic area Cindy Crawford?,2023,11,14,Australia,AU,Queensland,-27.525582,153.092249,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,12,Australia,AU,Queensland,-27.52706,153.110008,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,1,7,Australia,AU,Queensland,-27.527171,153.091741,EPSG:4326 +HUMAN_OBSERVATION,lilwal,1,,,2022,9,8,Australia,AU,Queensland,-19.122166,146.873837,EPSG:4326 +HUMAN_OBSERVATION,Helma51,1,,,2024,10,7,Australia,AU,Queensland,-27.932636,153.212136,EPSG:4326 +HUMAN_OBSERVATION,lil_1,1,,,2021,12,11,Australia,AU,Victoria,-37.624122,144.094192,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female. Unhealthy - Chlamydia. Rescued. Observed by Wendy Taylor. Submitted via msg.,2024,7,13,Australia,AU,Queensland,-26.136287,151.791881,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,8,5,Australia,AU,Queensland,-27.510498,153.085148,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,Unsure of the exact date. Boundary Road.,2023,4,13,Australia,AU,Queensland,-27.508889,153.07542,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Young male koala outside our pool fence Torrels eucalyptus,2023,2,19,Australia,AU,Queensland,-27.524223,153.092073,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,3,Australia,AU,South Australia,-34.89188,138.713072,EPSG:4326 +HUMAN_OBSERVATION,aslorach,1,FEMALE,Likely female,2024,4,18,Australia,AU,Victoria,-38.833725,143.513058,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Cindy Ireland. Submitted by Wendy Taylor.,2024,11,12,Australia,AU,Queensland,-26.136287,151.791881,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,5,19,Australia,AU,Queensland,-27.526932,153.090421,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside cleaners donga,2024,6,22,Australia,AU,Queensland,-27.526914,153.091747,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Healthy. Screenshots from 2 videos of the same koala. Observed by Nikki Kreis. Submitted via email.,2024,10,16,Australia,AU,Queensland,-25.618346,151.637465,EPSG:4326 +HUMAN_OBSERVATION,bilyanacottages,1,,,2024,10,14,Australia,AU,Queensland,-28.14442,152.641967,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2024,2,25,Australia,AU,South Australia,-34.903189,138.705663,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland middle,2023,12,19,Australia,AU,Queensland,-27.528112,153.092323,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Unknown sex. Adult. Healthy. Observed by Naomi Bishop. Submitted via msg,2023,7,13,Australia,AU,Queensland,-26.597663,151.81242,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,FEMALE,"Water tank muma, minus baby, which has gone to live by itself",2022,10,9,Australia,AU,Queensland,-27.545894,153.073192,EPSG:4326 +HUMAN_OBSERVATION,Eathan Douglas,1,,,2024,11,4,Australia,AU,Victoria,-38.319278,142.363592,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Scratch markings on known koala sight. Observed by Misty Neilson during CSIRO monitoring surveys.,2023,10,23,Australia,AU,Queensland,-24.99403,150.697266,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,11,5,Australia,AU,Queensland,-27.659889,153.160433,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,I think this is Naomi’s joey recently dispersed,2023,3,27,Australia,AU,Queensland,-27.530146,153.103434,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,"Site: K3 Tree no: 20 Tree DBH: 22.30 Sclerophyll notes: No time was recorded for when scats were found - 1pm has been put for all scat observations due to there being no records, all scats were collected on the same day at different sites Ecologist assessed",2021,8,25,Australia,AU,Queensland,-27.70093,152.08237,EPSG:4326 +HUMAN_OBSERVATION,Peta Jansma-Reid,1,,,2024,10,20,Australia,AU,Queensland,-27.144396,152.559595,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,Female koala with joey in pouch. Appears healthy.,2023,7,13,Australia,AU,New South Wales,-28.272918,153.394965,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery entrance Mother and joey,2023,11,19,Australia,AU,Queensland,-27.527303,153.091492,EPSG:4326 +HUMAN_OBSERVATION,graeme lunt,1,MALE,,2022,12,29,Australia,AU,Victoria,-37.689233,143.996795,EPSG:4326 +HUMAN_OBSERVATION,sloshy__,1,,,2024,9,30,Australia,AU,Queensland,-27.540475,153.06558,EPSG:4326 +HUMAN_OBSERVATION,rodneya63,1,,,2023,8,26,Australia,AU,Queensland,-28.07362,152.426714,EPSG:4326 +HUMAN_OBSERVATION,jraus,1,,,2024,11,10,Australia,AU,South Australia,-34.917415,138.780215,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Male koala high in ironbark,2023,2,28,Australia,AU,Victoria,-37.859222,144.189445,EPSG:4326 +HUMAN_OBSERVATION,goatzoo,1,,,2024,8,17,Australia,AU,Queensland,-19.1228,146.871187,EPSG:4326 +HUMAN_OBSERVATION,graeme lunt,1,,,2024,1,13,Australia,AU,Victoria,-38.333708,142.356434,EPSG:4326 +HUMAN_OBSERVATION,tashramsey,1,,,2023,5,6,Australia,AU,Queensland,-27.304157,152.996719,EPSG:4326 +HUMAN_OBSERVATION,sarahb412,1,,,2024,2,21,Australia,AU,New South Wales,-31.436887,152.905401,EPSG:4326 +HUMAN_OBSERVATION,Andrew Rock,1,,Point Halloran,2023,11,23,Australia,AU,Queensland,-27.568552,153.296548,EPSG:4326 +HUMAN_OBSERVATION,Richard Boon,1,,,2023,8,15,Australia,AU,Victoria,-38.350686,141.596647,EPSG:4326 +HUMAN_OBSERVATION,Gen C,1,,,2023,8,6,Australia,AU,South Australia,-35.004205,138.658301,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,13,Australia,AU,Queensland,-27.527106,153.091924,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,4,9,Australia,AU,Victoria,-37.641368,143.901126,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2024,10,6,Australia,AU,Queensland,-27.524551,153.092989,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland middle Possibly Frank Rooney?,2023,9,30,Australia,AU,Queensland,-27.528039,153.092342,EPSG:4326 +HUMAN_OBSERVATION,Ron Dowling,1,,,2024,1,3,Australia,AU,Queensland,-27.734145,153.101636,EPSG:4326 +HUMAN_OBSERVATION,ollie888,1,,,2024,11,10,Australia,AU,Queensland,-19.124108,146.870742,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Injured. Vehicle collision. Fractured pelvis. Multiple breaks in his left leg. Trauma to his stomach. Rescued and later euthanised. Observed by Wendy Taylor. Submitted via msg.,2024,9,5,Australia,AU,Queensland,-26.263554,151.881223,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi & joey,2024,1,22,Australia,AU,Queensland,-27.530052,153.103545,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,Photo credit: Colleges By the River,2020,7,23,Australia,AU,Queensland,-27.556722,152.801932,EPSG:4326 +HUMAN_OBSERVATION,curlewz,1,,,2024,9,8,Australia,AU,Queensland,-27.493221,153.403345,EPSG:4326 +HUMAN_OBSERVATION,bushychrismeibusch,1,,Looked like the bub??,2021,11,28,Australia,AU,Queensland,-27.721471,151.528966,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A18 RIGHT ear - Campo,2023,10,11,Australia,AU,Queensland,-27.52804,153.111361,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,MALE,,2024,5,27,Australia,AU,South Australia,-34.880853,138.732237,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,21,Australia,AU,Queensland,-27.545182,153.07226,EPSG:4326 +HUMAN_OBSERVATION,Anthony Kurek EntSocVic,1,,,2024,10,19,Australia,AU,Victoria,-38.356583,146.38992,EPSG:4326 +HUMAN_OBSERVATION,tracyrout,1,,,2021,10,27,Australia,AU,Queensland,-27.540247,153.073715,EPSG:4326 +HUMAN_OBSERVATION,venus5026,1,,,2023,3,21,Australia,AU,Victoria,-38.799429,143.487891,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,26,Australia,AU,South Australia,-34.89085,138.722435,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Brush Box. Female with Joey,2023,11,26,Australia,AU,Queensland,-27.528137,153.033585,EPSG:4326 +HUMAN_OBSERVATION,Phil Barron,1,,Has a Joey tucked away - handy when magpies are swooping & connecting,2022,10,9,Australia,AU,South Australia,-35.067253,138.881805,EPSG:4326 +HUMAN_OBSERVATION,kazza-62,1,,Near basketball court HZ Park,2020,12,4,Australia,AU,Queensland,-27.5342,153.283375,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria car park Three koalas same tree - interrupted?,2023,9,2,Australia,AU,Queensland,-27.525092,153.091963,EPSG:4326 +HUMAN_OBSERVATION,janicearmstrong,1,MALE,,2024,9,19,Australia,AU,South Australia,-34.904467,138.691468,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland area Very high up - eating Ocercasr cool morning,2023,8,6,Australia,AU,Queensland,-27.527727,153.092271,EPSG:4326 +HUMAN_OBSERVATION,muzza60,1,,,2022,6,1,Australia,AU,Victoria,-38.329054,145.120925,EPSG:4326 +HUMAN_OBSERVATION,beardedvulture,1,,,2020,4,18,Australia,AU,South Australia,-35.30964,138.553252,EPSG:4326 +HUMAN_OBSERVATION,luckychii,1,MALE,,2023,9,8,Australia,AU,South Australia,-34.90107,138.703557,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland rear Male yellow tag left ear Number not visible,2024,2,17,Australia,AU,Queensland,-27.528462,153.092866,EPSG:4326 +HUMAN_OBSERVATION,cleanlymoss,1,,,2022,8,2,Australia,AU,New South Wales,-30.489953,151.64102,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,Audio taken with mobile phone by Jackie.,2022,11,2,Australia,AU,New South Wales,-28.272625,153.39514,EPSG:4326 +HUMAN_OBSERVATION,nickowesto,1,,,2023,2,26,Australia,AU,New South Wales,-29.640949,152.830527,EPSG:4326 +HUMAN_OBSERVATION,Josh,1,,,2024,10,14,Australia,AU,Victoria,-35.954708,144.959021,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - green tag RIGHT ear,2023,4,26,Australia,AU,Queensland,-27.529413,153.112007,EPSG:4326 +HUMAN_OBSERVATION,julietandbrian,1,,,2022,9,25,Australia,AU,Queensland,-27.348609,152.062604,EPSG:4326 +HUMAN_OBSERVATION,Wyn Russell,1,,,2024,10,1,Australia,AU,Victoria,-38.349196,141.60211,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg,2024,1,26,Australia,AU,Queensland,-26.128936,151.756112,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Cheese tree,2021,3,4,Australia,AU,Queensland,-27.550923,153.057464,EPSG:4326 +HUMAN_OBSERVATION,Mike Youdale,1,,,2023,5,20,Australia,AU,Queensland,-27.914178,153.37262,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,5,11,Australia,AU,Queensland,-27.396357,152.609375,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,5,23,Australia,AU,Queensland,-27.506762,153.08485,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Sport n rec picnic area,2024,10,19,Australia,AU,Queensland,-27.525601,153.092732,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown,2020,9,3,Australia,AU,Queensland,-27.527485,153.049614,EPSG:4326 +HUMAN_OBSERVATION,Paul Coddington,1,,,2021,9,25,Australia,AU,South Australia,-35.136206,138.59237,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,19,Australia,AU,Queensland,-27.526319,153.093237,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,6,16,Australia,AU,Queensland,-27.527244,153.0908,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2020,6,2,Australia,AU,Queensland,-27.533395,153.130342,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2021,1,15,Australia,AU,New South Wales,-28.25632,153.401003,EPSG:4326 +HUMAN_OBSERVATION,warren cameron,1,,,2024,4,23,Australia,AU,Victoria,-37.912196,147.74231,EPSG:4326 +HUMAN_OBSERVATION,leito19,1,,,2024,3,31,Australia,AU,Victoria,-38.379762,145.313393,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Maisie with Joey in pouch,2024,6,2,Australia,AU,Queensland,-27.526512,153.090721,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,6,1,Australia,AU,Queensland,-27.526876,153.090952,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,29,Australia,AU,South Australia,-34.890643,138.721922,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,6,29,Australia,AU,Queensland,-27.703261,153.191853,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,16,Australia,AU,Queensland,-27.529829,153.105289,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,12,26,Australia,AU,South Australia,-34.889583,138.731127,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,,,2024,3,19,Australia,AU,New South Wales,-29.870458,150.60142,EPSG:4326 +HUMAN_OBSERVATION,wingspanner,1,,,2023,8,31,Australia,AU,Victoria,-38.833383,143.513067,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Outside nursery Matteo,2024,11,3,Australia,AU,Queensland,-27.527173,153.091382,EPSG:4326 +HUMAN_OBSERVATION,Tansnaturediary,1,,,2023,8,5,Australia,AU,Victoria,-37.233869,144.500252,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,6,8,Australia,AU,Queensland,-27.52857,153.092724,EPSG:4326 +HUMAN_OBSERVATION,dasyurid,1,,,2023,10,25,Australia,AU,Queensland,-22.723545,147.66635,EPSG:4326 +HUMAN_OBSERVATION,victoria2000,1,,"First koala we spotted in Coombabah Lakelands, sleeping",2023,4,25,Australia,AU,Queensland,-27.914132,153.372973,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Sport n rec picnic area Mother and joey,2024,9,20,Australia,AU,Queensland,-27.525696,153.092234,EPSG:4326 +HUMAN_OBSERVATION,davidmck,1,,,2024,3,25,Australia,AU,Victoria,-37.914578,144.179592,EPSG:4326 +HUMAN_OBSERVATION,Dr Melissa Staines,1,,,2022,11,16,Australia,AU,Queensland,-27.400707,153.437572,EPSG:4326 +HUMAN_OBSERVATION,lrathbone,1,,,2020,11,12,Australia,AU,Victoria,-37.919864,147.727225,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2023,11,25,Australia,AU,Queensland,-27.510493,153.086342,EPSG:4326 +HUMAN_OBSERVATION,Scott Warner,1,,,2022,4,19,Australia,AU,Queensland,-27.298696,152.227102,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Male calling in Manna Gum,2021,10,24,Australia,AU,Victoria,-38.671183,146.165029,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - yellow tag LEFT ear - I call him Buster,2023,11,7,Australia,AU,Queensland,-27.531371,153.105563,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,9,7,Australia,AU,Queensland,-27.528374,153.092922,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,9,Australia,AU,South Australia,-34.890088,138.729491,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.924112,147.730667,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,7,24,Australia,AU,Queensland,-27.552027,153.054764,EPSG:4326 +HUMAN_OBSERVATION,oconnej,1,,,2024,8,31,Australia,AU,Queensland,-28.06398,152.631001,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,8,22,Australia,AU,Queensland,-27.549121,153.072493,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,2,4,Australia,AU,Queensland,-27.550511,153.060108,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,Appears healthy - potentially female,2023,3,31,Australia,AU,Queensland,-27.548987,153.059364,EPSG:4326 +HUMAN_OBSERVATION,danicalockett,1,,,2023,10,27,Australia,AU,Queensland,-19.123331,146.870235,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Cindy - red tag A5 RIGHT ear,2023,6,5,Australia,AU,Queensland,-27.527021,153.108928,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2023,9,26,Australia,AU,Victoria,-37.620373,143.882349,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,3,14,Australia,AU,Queensland,-26.233378,151.924876,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2024,11,14,Australia,AU,Queensland,-27.659889,153.160433,EPSG:4326 +HUMAN_OBSERVATION,carolynavaisabel,1,,,2022,10,28,Australia,AU,South Australia,-35.009693,138.652444,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,4,3,Australia,AU,Queensland,-27.547752,153.05821,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,11,30,Australia,AU,Victoria,-37.648727,143.950715,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,FEMALE,Koala rescued from powerpole. Koala was ear tagged and previously had been rescued and released 3 years prior by myself. Sent to RSPCA Wildlife Hospital for assessment by TKWR,2023,11,7,Australia,AU,Queensland,-27.611711,151.948253,EPSG:4326 +HUMAN_OBSERVATION,Margaret Carew,1,,,2024,6,3,Australia,AU,Victoria,-38.827552,145.996671,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,,2023,8,5,Australia,AU,Queensland,-26.975555,152.078964,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2021,9,18,Australia,AU,Queensland,-27.919592,153.377016,EPSG:4326 +HUMAN_OBSERVATION,Tina Gillespie,1,,Mom and baby,2022,9,20,Australia,AU,South Australia,-34.939103,138.884767,EPSG:4326 +HUMAN_OBSERVATION,Radar,1,,,2023,8,11,Australia,AU,Queensland,-27.656247,153.158747,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"This could have been the same koala seen earlier in the day, though not necessarily as we do have more than one in an area at a time. There was a period where the male was very close by the brown female every day. This bellowing drew my attention to its presence. I think it may be a male.",2020,11,8,Australia,AU,New South Wales,-28.253668,153.376656,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,2,16,Australia,AU,Queensland,-27.544466,153.068353,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2023,4,30,Australia,AU,Victoria,-37.748637,143.90698,EPSG:4326 +HUMAN_OBSERVATION,Mike Youdale,1,,,2022,7,27,Australia,AU,New South Wales,-34.752945,146.547762,EPSG:4326 +HUMAN_OBSERVATION,razzaq_s,1,,,2022,10,29,Australia,AU,New South Wales,-30.501265,151.643989,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Near G block car parks,2023,6,11,Australia,AU,Queensland,-27.52567,153.090479,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2022,1,17,Australia,AU,Queensland,-27.543771,153.072537,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Melaleuca quinqennervia,2021,10,5,Australia,AU,Queensland,-27.54804,153.052188,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,In a nearby tree to another koala.,2023,11,22,Australia,AU,Queensland,-27.567855,151.716278,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Mother and joey Front of tafe outside student admin building Maisie,2023,12,3,Australia,AU,Queensland,-27.527038,153.091242,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,,2023,11,19,Australia,AU,Queensland,-27.284024,152.999706,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2021,11,1,Australia,AU,New South Wales,-33.076164,151.095536,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,6,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Mother and joey,2024,8,11,Australia,AU,Queensland,-27.527065,153.091194,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,MALE,Young male low in RG alert windy cold night,2023,1,4,Australia,AU,Victoria,-37.860302,144.277763,EPSG:4326 +HUMAN_OBSERVATION,Dennis,1,,,2021,8,14,Australia,AU,Queensland,-27.528928,153.115295,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,10,5,Australia,AU,Queensland,-26.089237,152.468645,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,In mum’s tree Maisie and joey,2024,10,12,Australia,AU,Queensland,-27.526439,153.090931,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum And Joey in Cheese tree. Joey very independent,2020,12,1,Australia,AU,Queensland,-27.546755,153.058092,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,11,7,Australia,AU,Queensland,-27.823855,152.993042,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In mum’s tree,2024,4,7,Australia,AU,Queensland,-27.526437,153.091077,EPSG:4326 +HUMAN_OBSERVATION,Ken Hurley,1,,,2023,11,25,Australia,AU,South Australia,-34.904816,138.707113,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,4,25,Australia,AU,Queensland,-27.726817,151.503463,EPSG:4326 +HUMAN_OBSERVATION,shania98,1,,,2024,4,21,Australia,AU,Queensland,-27.260687,152.187903,EPSG:4326 +HUMAN_OBSERVATION,donnamareetomkinson,1,,"Last photo is to show the tree it was in. High up, but luckily I have a zoom camera.",2023,8,24,Australia,AU,Queensland,-26.497711,152.626688,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,31,Australia,AU,Queensland,-27.527034,153.110072,EPSG:4326 +HUMAN_OBSERVATION,Sylvia Akers,1,,,2020,9,27,Australia,AU,Victoria,-37.90878,147.754464,EPSG:4326 +HUMAN_OBSERVATION,adamdav,1,,,2020,12,11,Australia,AU,Queensland,-27.544765,153.233733,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,12,Australia,AU,Queensland,-27.529551,153.102553,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,4,Australia,AU,Queensland,-27.526687,153.092762,EPSG:4326 +HUMAN_OBSERVATION,sonofhans,1,,,2020,11,21,Australia,AU,Queensland,-27.982414,153.332948,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,19,Australia,AU,Queensland,-27.530949,153.105494,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2020,6,7,Australia,AU,Victoria,-37.925001,147.729992,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,5,4,Australia,AU,Queensland,-27.331878,152.611237,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"3 in same tree - presume a male asleep in low fork, mum & joey higher up",2023,3,20,Australia,AU,Queensland,-27.527344,153.10731,EPSG:4326 +HUMAN_OBSERVATION,Lindaxslade,1,,,2023,5,10,Australia,AU,Queensland,-19.123317,146.871078,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,7,Australia,AU,Queensland,-27.526828,153.090621,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,6,20,Australia,AU,Queensland,-27.5591,153.067653,EPSG:4326 +HUMAN_OBSERVATION,Hugo Walton,1,,,2021,4,12,Australia,AU,Queensland,-19.12535,146.869355,EPSG:4326 +HUMAN_OBSERVATION,michaelrouse,1,,,2023,7,13,Australia,AU,Queensland,-27.577572,152.931412,EPSG:4326 +HUMAN_OBSERVATION,michikomarty,1,,,2021,11,28,Australia,AU,Queensland,-27.714922,151.521831,EPSG:4326 +HUMAN_OBSERVATION,mikaelamurray,1,,,2023,11,29,Australia,AU,Victoria,-37.483683,144.60303,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Young koala in Tallowood,2020,4,1,Australia,AU,Queensland,-27.551891,153.058156,EPSG:4326 +HUMAN_OBSERVATION,Dubravka Skalamera,1,,,2024,7,14,Australia,AU,Queensland,-27.49349,153.403182,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,neighbour's property,2021,10,26,Australia,AU,Victoria,-37.653526,143.916594,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe nursery,2023,5,30,Australia,AU,Queensland,-27.527216,153.091624,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2020,4,28,Australia,AU,Queensland,-27.551197,153.043825,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,MALE,,2023,11,29,Australia,AU,South Australia,-34.88981,138.722339,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,30,Australia,AU,Queensland,-27.531008,153.104373,EPSG:4326 +HUMAN_OBSERVATION,Ryan Harvey,1,,2 sighted,2023,2,8,Australia,AU,New South Wales,-31.920647,152.362756,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,6,Australia,AU,South Australia,-34.894872,138.724876,EPSG:4326 +HUMAN_OBSERVATION,Michael Keogh,1,,,2020,3,24,Australia,AU,Victoria,-38.633395,145.75391,EPSG:4326 +HUMAN_OBSERVATION,Dee Nolan,1,,,2021,5,29,Australia,AU,South Australia,-35.01031,138.644116,EPSG:4326 +HUMAN_OBSERVATION,patrix1,1,,,2023,9,26,Australia,AU,Queensland,-27.238264,152.424563,EPSG:4326 +HUMAN_OBSERVATION,cintajac,1,,,2022,1,10,Australia,AU,South Australia,-34.836871,138.71797,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2023,4,19,Australia,AU,Queensland,-27.551421,153.058255,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,27,Australia,AU,Queensland,-27.52719,153.103009,EPSG:4326 +HUMAN_OBSERVATION,tamarakarner,1,MALE,,2024,2,19,Australia,AU,Victoria,-37.964795,144.40808,EPSG:4326 +HUMAN_OBSERVATION,lil_1,1,,,2024,2,14,Australia,AU,Victoria,-37.623992,144.09552,EPSG:4326 +HUMAN_OBSERVATION,tr333s,1,,,2023,9,2,Australia,AU,New South Wales,-32.914195,151.542697,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,4,5,Australia,AU,South Australia,-35.015167,138.673291,EPSG:4326 +HUMAN_OBSERVATION,michaelbaileyblackswan,1,,,2023,10,4,Australia,AU,Queensland,-27.240863,152.999663,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,23,Australia,AU,Queensland,-27.525371,153.091964,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Koala in tree. May or may not have joey sitting with them.,2023,9,16,Australia,AU,Queensland,-27.28444,153.00084,EPSG:4326 +HUMAN_OBSERVATION,patrix1,1,,,2023,3,2,Australia,AU,Queensland,-27.094113,152.703309,EPSG:4326 +HUMAN_OBSERVATION,Colin and Wendy Cook,1,,"In a windbreak between two paddocks, and close to a patch of bush.",2023,8,11,Australia,AU,Victoria,-37.810841,144.144227,EPSG:4326 +HUMAN_OBSERVATION,Sarah Grady,1,,Seen just of the trail in Eucalyptus tree.,2020,8,1,Australia,AU,Queensland,-27.611522,151.971344,EPSG:4326 +HUMAN_OBSERVATION,craigiecampfiregg,1,,,2023,1,27,Australia,AU,South Australia,-34.907996,138.614483,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front car park,2023,10,31,Australia,AU,Queensland,-27.525427,153.090229,EPSG:4326 +HUMAN_OBSERVATION,Alan Dahl,1,,,2020,3,2,Australia,AU,Victoria,-38.797562,143.541468,EPSG:4326 +HUMAN_OBSERVATION,Hamish Beshara,1,,,2022,3,19,Australia,AU,Victoria,-37.665922,144.365628,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,Mother (with juvenile in same tree),2023,11,19,Australia,AU,Queensland,-27.671893,151.543384,EPSG:4326 +HUMAN_OBSERVATION,J Grant,1,,,2024,5,21,Australia,AU,Queensland,-27.511095,153.083481,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,Scats,2021,9,5,Australia,AU,Victoria,-38.174436,145.125709,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,MALE,,2022,10,17,Australia,AU,New South Wales,-28.269211,153.393002,EPSG:4326 +HUMAN_OBSERVATION,djehrame,1,,,2021,12,30,Australia,AU,South Australia,-35.625383,137.207663,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2020,6,11,Australia,AU,Queensland,-27.549685,153.049277,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Concourse tree. Next to pathway in tree on left facing Cavendish Room Maisie,2023,7,8,Australia,AU,Queensland,-27.52687,153.091539,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Woodland Mother and joey,2023,11,4,Australia,AU,Queensland,-27.528295,153.092879,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey,2024,11,3,Australia,AU,Queensland,-27.527159,153.091557,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2022,1,19,Australia,AU,Victoria,-38.671233,146.163925,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,12,29,Australia,AU,Queensland,-27.400683,153.437781,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,,2024,10,25,Australia,AU,Queensland,-27.526854,153.110529,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,4,Australia,AU,Queensland,-27.530286,153.10453,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,5,24,Australia,AU,Queensland,-27.529619,153.1045,EPSG:4326 +HUMAN_OBSERVATION,Margaret Carew,1,,,2024,6,9,Australia,AU,Victoria,-38.827734,145.996718,EPSG:4326 +HUMAN_OBSERVATION,Lukas Krug,1,,,2022,12,29,Australia,AU,Victoria,-37.330039,144.594597,EPSG:4326 +HUMAN_OBSERVATION,Helen,1,,,2024,3,15,Australia,AU,Victoria,-38.056492,141.923273,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2022,5,16,Australia,AU,South Australia,-34.971709,138.689018,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,1,30,Australia,AU,Queensland,-27.525052,153.092588,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2024,6,24,Australia,AU,Queensland,-27.548843,153.058972,EPSG:4326 +HUMAN_OBSERVATION,delanyd,1,,,2020,1,5,Australia,AU,Queensland,-27.609361,151.972115,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,9,22,Australia,AU,Queensland,-27.220637,153.062622,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,7,23,Australia,AU,Queensland,-27.551304,153.057366,EPSG:4326 +HUMAN_OBSERVATION,Lachlan Copeland,1,FEMALE,healthy female and baby,2021,10,17,Australia,AU,New South Wales,-30.347312,153.027278,EPSG:4326 +HUMAN_OBSERVATION,ispot,1,,,2023,11,14,Australia,AU,Queensland,-28.26,152.04,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,"vehicle strike, euthanized",2022,1,16,Australia,AU,Victoria,-37.636488,144.0703,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block picnic area,2024,10,20,Australia,AU,Queensland,-27.526042,153.090562,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,"Hard to photograph, kept moving to hide behind the tree. Ended up with a long distance image so as not to disturb it too much. Scratching.",2021,11,27,Australia,AU,Queensland,-27.33117,151.930038,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2024,4,7,Australia,AU,Victoria,-37.643236,143.896656,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Two koalas very close in same tree Koala 2,2023,4,22,Australia,AU,Queensland,-27.528121,153.092281,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Woodland Male yellow tag left ear,2024,6,23,Australia,AU,Queensland,-27.527759,153.09244,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,7,Australia,AU,Queensland,-27.52927,153.103669,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,24,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,7,18,Australia,AU,New South Wales,-28.254203,153.376978,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,,2024,7,6,Australia,AU,Queensland,-27.626553,152.901313,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Mum and joey. Regularly seen in the trees on Lawnton Road.,2023,8,6,Australia,AU,Queensland,-27.284418,153.000913,EPSG:4326 +HUMAN_OBSERVATION,wildlifewally,1,,,2022,6,11,Australia,AU,New South Wales,-28.287966,153.395167,EPSG:4326 +HUMAN_OBSERVATION,eveburb001,1,,mother and joey Dec2020 Buderim Qld,2020,12,17,Australia,AU,Queensland,-26.672734,153.054038,EPSG:4326 +HUMAN_OBSERVATION,JohnNewman,1,,,2022,7,11,Australia,AU,Queensland,-19.13028,146.868778,EPSG:4326 +HUMAN_OBSERVATION,theressa,1,,,2020,8,22,Australia,AU,Queensland,-27.165289,153.001389,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,9,11,Australia,AU,Queensland,-27.528194,153.092348,EPSG:4326 +HUMAN_OBSERVATION,sal_brook,1,,,2020,11,6,Australia,AU,Queensland,-27.764249,153.122916,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,A young male.,2024,1,26,Australia,AU,Queensland,-27.257115,152.046151,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,,2021,5,15,Australia,AU,New South Wales,-28.260476,153.401988,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In gully near Aldi gates,2024,1,26,Australia,AU,Queensland,-27.525962,153.093239,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - tag (? green) RIGHT ear,2023,4,15,Australia,AU,Queensland,-27.529502,153.109457,EPSG:4326 +HUMAN_OBSERVATION,Karen Roberts,1,,,2023,1,25,Australia,AU,Queensland,-27.635824,152.885798,EPSG:4326 +HUMAN_OBSERVATION,KDendle,1,,,2022,10,13,Australia,AU,Queensland,-26.712571,152.896765,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Tried and got 2 different angles to get more distinguishing features. seemed a smaller koala.,2020,7,2,Australia,AU,New South Wales,-28.252999,153.376688,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2024,1,13,Australia,AU,Victoria,-38.341307,142.631686,EPSG:4326 +HUMAN_OBSERVATION,Roxanne Lazarus,1,MALE,Sleeping and sounding a mating call.,2021,2,8,Australia,AU,New South Wales,-34.75654,146.56757,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2022,5,3,Australia,AU,South Australia,-34.971114,138.638087,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Young koala in Tallowwood,2021,1,22,Australia,AU,Queensland,-27.551279,153.057416,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,30,Australia,AU,South Australia,-34.890894,138.730279,EPSG:4326 +HUMAN_OBSERVATION,jdcamilleri82,1,,,2020,6,8,Australia,AU,Victoria,-37.90878,147.754464,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,5,Australia,AU,Queensland,-27.528345,153.110124,EPSG:4326 +HUMAN_OBSERVATION,aynature,1,,,2023,10,23,Australia,AU,Queensland,-26.388809,153.030818,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,8,Australia,AU,Queensland,-27.527192,153.110785,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland,2023,12,24,Australia,AU,Queensland,-27.524292,153.093071,EPSG:4326 +HUMAN_OBSERVATION,Peter Crowcroft,1,,Sitting in a weedy Pittosporum.,2021,1,11,Australia,AU,Victoria,-38.551688,143.983356,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Healthy joey koala at Amity Point in Straddie island Minjerribah.,2022,2,5,Australia,AU,Queensland,-27.401261,153.43911,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - red tag A5 RIGHT ear - Cindy,2023,9,15,Australia,AU,Queensland,-27.527227,153.108387,EPSG:4326 +HUMAN_OBSERVATION,Rusty,1,,,2022,1,6,Australia,AU,South Australia,-34.856546,138.730103,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Koala has crusty eyes - rescue attempted but unsuccessful,2024,2,26,Australia,AU,Queensland,-27.529808,153.104419,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,7,20,Australia,AU,Queensland,-27.257893,152.044786,EPSG:4326 +HUMAN_OBSERVATION,kateahmad,1,,,2023,10,7,Australia,AU,New South Wales,-34.067391,150.836122,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,1,15,Australia,AU,Queensland,-26.155079,151.749888,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"Yellow Tag, right ear, Number 027#",2024,6,21,Australia,AU,Queensland,-27.54055,153.074987,EPSG:4326 +HUMAN_OBSERVATION,econiko,1,,,2020,9,20,Australia,AU,South Australia,-35.145412,138.579134,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female red tag RIGHT ear - Cindy,2023,11,7,Australia,AU,Queensland,-27.527165,153.109367,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,spotted by Ainslie. seems quite small?,2021,9,11,Australia,AU,New South Wales,-28.255323,153.378362,EPSG:4326 +HUMAN_OBSERVATION,Dhugal Lindsay,1,,,2023,12,22,Australia,AU,South Australia,-34.903038,138.702055,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,"Last night, rangers were out doing their fortnightly fauna surveys in the Barrington Wildlife Sanctuary, where they spotted a wild Koala! This discovery left our rangers ecstatic as this is such an awesome discovery, proving the positive impact that the Barrington Wildlife Sanctuary has for our endangered wildlife. https://www.instagram.com/p/ChDol2trHo7/",2022,8,10,Australia,AU,New South Wales,-31.821874,151.466526,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Spotted by local resident Patricia,2024,8,5,Australia,AU,Queensland,-27.625673,152.875759,EPSG:4326 +HUMAN_OBSERVATION,g_crosby,1,,,2021,9,20,Australia,AU,Queensland,-27.963018,152.400684,EPSG:4326 +HUMAN_OBSERVATION,annifiesta,1,,,2023,11,5,Australia,AU,South Australia,-35.006829,138.63598,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Juvenile male. Healthy. In same tree as adult female with dirty bottom. Observed by Wendy Taylor. Submitted by Denise Shaw via email. Scat collected for testing as part of Burnett Catchment Care Association 'Burnett Koala Program'.,2023,7,29,Australia,AU,Queensland,-26.155358,151.750039,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,14,Australia,AU,Queensland,-27.527153,153.090695,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,Dead,2022,11,21,Australia,AU,New South Wales,-33.078397,151.090119,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2023,10,4,Australia,AU,South Australia,-34.903091,138.613545,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,Female Koala high in yellow gum. Found while looking for young male seen nearby earlier today. No sign of male and nose pattern was different for the 2 koalas,2023,1,23,Australia,AU,Victoria,-37.874355,144.290978,EPSG:4326 +HUMAN_OBSERVATION,bertbohosouth,1,,In a Manna Gum (Eucalyptus viminalis).,2020,6,26,Australia,AU,Victoria,-36.823054,145.708808,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2023,6,4,Australia,AU,Queensland,-27.527225,153.091648,EPSG:4326 +HUMAN_OBSERVATION,Nicholas John Fisher,1,MALE,"using property for at least a year, still haven't sighted him",2024,10,7,Australia,AU,Queensland,-27.987414,153.186244,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,"Koala descending from food tree. The camera had been in place for 23 days, and in that time had detected a wide range of wildlife, including 'cold blooded' species such as Lace Monitor and small Long-nosed Bandicoots, but had not detected a koala climbing this tree. It _might_ have gone up from the other side, but that is pretty much blocked by a Grass Tree, so it is possible that it has used a small tree behind the food tree as a ladder. The square white patch near its left knee indicates that this is a male that has been detected using several trees in the area over the last 2-3 months (i.e. as long as the cameras have been deployed in this area).",2021,11,8,Australia,AU,Queensland,-27.496295,152.248214,EPSG:4326 +HUMAN_OBSERVATION,martinkopp,1,,,2024,8,21,Australia,AU,New South Wales,-29.776436,151.344861,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,30,Australia,AU,South Australia,-34.882767,138.731912,EPSG:4326 +HUMAN_OBSERVATION,lrathbone,1,,,2021,2,10,Australia,AU,Victoria,-38.380519,145.278844,EPSG:4326 +HUMAN_OBSERVATION,cleanlymoss,1,,,2023,2,8,Australia,AU,Queensland,-27.600052,151.895396,EPSG:4326 +HUMAN_OBSERVATION,bramchau,1,,,2024,9,24,Australia,AU,Victoria,-37.921892,147.727072,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2021,8,27,Australia,AU,Queensland,-27.474855,151.953842,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,5,31,Australia,AU,New South Wales,-28.25363,153.376685,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,28,Australia,AU,South Australia,-34.886734,138.787309,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,Adult. Female with joey. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,11,7,Australia,AU,Queensland,-26.274028,151.76061,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,1,12,Australia,AU,Queensland,-27.527365,153.091,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,2 of 2 Koalas in the same tree observed courtship behaviour,2024,10,1,Australia,AU,New South Wales,-34.721755,146.496033,EPSG:4326 +HUMAN_OBSERVATION,taopina,1,,,2024,5,29,Australia,AU,New South Wales,-28.949206,153.317177,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,1,1,Australia,AU,Queensland,-27.597187,151.889808,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2023,1,4,Australia,AU,South Australia,-34.954283,138.690456,EPSG:4326 +HUMAN_OBSERVATION,Colin Trainor,1,,,2023,4,6,Australia,AU,Queensland,-27.526298,153.282324,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2021,9,26,Australia,AU,Queensland,-27.546426,153.050121,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,7,10,Australia,AU,Queensland,-27.529507,153.109825,EPSG:4326 +HUMAN_OBSERVATION,mariaborges,1,,,2021,11,4,Australia,AU,Queensland,-27.448689,152.564459,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Strong wind, rain, and hard to get a clear photo as behind leaves.",2021,10,22,Australia,AU,New South Wales,-28.252275,153.375649,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,28,Australia,AU,Queensland,-27.529671,153.104573,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,12,Australia,AU,Queensland,-27.530411,153.104518,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,5,31,Australia,AU,Queensland,-27.539429,153.054026,EPSG:4326 +HUMAN_OBSERVATION,Reiner Richter,1,,,2022,5,16,Australia,AU,Victoria,-37.86695,144.166247,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2020,11,5,Australia,AU,Queensland,-27.550543,153.060037,EPSG:4326 +HUMAN_OBSERVATION,jblatchly,1,,,2021,12,29,Australia,AU,Queensland,-27.56225,152.106506,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,,2022,3,9,Australia,AU,Victoria,-38.327086,142.640251,EPSG:4326 +HUMAN_OBSERVATION,Ray Turnbull,1,,,2022,2,28,Australia,AU,New South Wales,-34.753924,146.551348,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,6,4,Australia,AU,Queensland,-27.529561,153.104092,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Cheese tree,2020,11,26,Australia,AU,Queensland,-27.546768,153.058233,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,7,14,Australia,AU,Queensland,-27.907283,153.372513,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,16,Australia,AU,Queensland,-27.528305,153.11332,EPSG:4326 +HUMAN_OBSERVATION,danforster,1,,,2020,2,9,Australia,AU,Victoria,-38.318978,142.362946,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2021,9,15,Australia,AU,South Australia,-34.888818,138.734701,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Grey gum,2023,9,16,Australia,AU,Queensland,-27.548601,153.058872,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2021,11,22,Australia,AU,Victoria,-38.344837,145.302922,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2024,7,9,Australia,AU,Queensland,-27.52902,153.103585,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Tristania & Wisteria Woodland,2024,7,28,Australia,AU,Queensland,-27.523884,153.093012,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Beautiful healthy Joey,2022,10,18,Australia,AU,Queensland,-27.51308,153.083239,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2023,11,8,Australia,AU,South Australia,-34.903757,138.707859,EPSG:4326 +HUMAN_OBSERVATION,Queensland Trust for Nature,1,,,2021,6,11,Australia,AU,Queensland,-22.370492,149.572399,EPSG:4326 +HUMAN_OBSERVATION,Graham Possingham,1,,,2021,4,18,Australia,AU,Victoria,-37.95416,144.442348,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,E block,2024,6,9,Australia,AU,Queensland,-27.52648,153.090551,EPSG:4326 +HUMAN_OBSERVATION,Zoltán Stekkelpak,1,,,2024,3,23,Australia,AU,Victoria,-38.768828,143.508922,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,11,Australia,AU,Queensland,-27.527914,153.111473,EPSG:4326 +HUMAN_OBSERVATION,Stephen Csurhes,1,,,2022,8,15,Australia,AU,Queensland,-27.485198,152.958961,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,2,6,Australia,AU,Queensland,-27.529169,153.105515,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,2 koalas in tree. I am confident that they are a mum and her juvenile/joey. The younger koala climbed over her to climb further up the tree as I was photographing them. Very windy day.,2023,9,24,Australia,AU,Queensland,-27.283998,152.999762,EPSG:4326 +HUMAN_OBSERVATION,grahamjury,1,,"Animal found recently dead (had driven same stretch of rd 2 hrs previously and not present). Intact old growth rainforest adjoining farmland. 80 km/hr speed zone, probably at about 3pm",2023,4,8,Australia,AU,Victoria,-38.506065,143.55019,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2022,11,15,Australia,AU,Queensland,-27.551182,153.060014,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mum and Joey in Brush Box,2020,11,24,Australia,AU,Queensland,-27.552107,153.055081,EPSG:4326 +HUMAN_OBSERVATION,jackfegan,1,,,2023,4,22,Australia,AU,New South Wales,-32.735217,152.173307,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,FEMALE,,2022,4,30,Australia,AU,Queensland,-27.52855,153.104019,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2021,2,9,Australia,AU,Queensland,-27.552503,153.046756,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowoood,2020,3,25,Australia,AU,Queensland,-27.550734,153.058105,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Photos taken by Lesley.,2021,9,17,Australia,AU,New South Wales,-28.275801,153.394328,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2023,7,5,Australia,AU,Queensland,-27.9768,153.232247,EPSG:4326 +HUMAN_OBSERVATION,V. Gracanin,1,,"In grey gum, eating",2023,9,29,Australia,AU,New South Wales,-34.058721,150.878168,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,MALE,,2024,1,3,Australia,AU,Queensland,-27.358575,152.074576,EPSG:4326 +HUMAN_OBSERVATION,Nimzee,1,,I believe these are Koala Scats,2022,7,30,Australia,AU,Victoria,-36.3012,146.170483,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA3118 Confirmed as Koala scat by OWAD Environment,2022,11,12,Australia,AU,Queensland,-27.49783,152.16264,EPSG:4326 +HUMAN_OBSERVATION,bill_macrantha,1,,,2023,3,14,Australia,AU,Victoria,-37.765308,145.700163,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Maisie’s Joey in same tree,2024,3,16,Australia,AU,Queensland,-27.526583,153.090499,EPSG:4326 +HUMAN_OBSERVATION,jackie_zoe_steph,1,MALE,,2023,2,4,Australia,AU,Queensland,-27.384097,151.977862,EPSG:4326 +HUMAN_OBSERVATION,monarchdavid,1,,,2024,7,13,Australia,AU,South Australia,-34.872489,138.718682,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2023,9,22,Australia,AU,New South Wales,-33.076269,151.094533,EPSG:4326 +HUMAN_OBSERVATION,Jen,1,,,2022,12,21,Australia,AU,Queensland,-27.508419,153.106635,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Evelyn Verschaeren. Forwarded by email.,2020,11,30,Australia,AU,Queensland,-26.304521,151.994675,EPSG:4326 +HUMAN_OBSERVATION,Zali Clark,1,,,2024,9,20,Australia,AU,Victoria,-38.36457,144.942947,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,10,25,Australia,AU,Queensland,-27.527676,153.070546,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,4,6,Australia,AU,South Australia,-34.957531,138.699572,EPSG:4326 +HUMAN_OBSERVATION,maraj7,1,,Morialta Conservation Park,2020,6,7,Australia,AU,South Australia,-34.883453,138.807282,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Scribbly gum,2020,5,8,Australia,AU,Queensland,-27.551228,153.066753,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Soldiers point - waters edge. Sleeping high up in a Blackbutt (Eucalyptus pilularis),2023,7,22,Australia,AU,New South Wales,-32.698738,152.064133,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,"Photo credit: Ben, Karana Downs and Mt Crosby Residents Anstead Bushland Reserve",2020,5,10,Australia,AU,Queensland,-27.542516,152.859615,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Mommy and her joey resting on a eucalyptus branch over the road.,2021,10,2,Australia,AU,Queensland,-27.406338,153.449887,EPSG:4326 +HUMAN_OBSERVATION,Ken Hurley,1,,,2024,6,1,Australia,AU,South Australia,-34.90125,138.700819,EPSG:4326 +HUMAN_OBSERVATION,ainsliem,1,,,2020,9,5,Australia,AU,New South Wales,-28.253017,153.376862,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - not tagged,2023,10,18,Australia,AU,Queensland,-27.527617,153.110325,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,4,20,Australia,AU,Queensland,-27.527561,153.09266,EPSG:4326 +HUMAN_OBSERVATION,shei1ad,1,,,2023,11,17,Australia,AU,South Australia,-34.830364,138.727805,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In backyard next to Aldi gates,2024,7,14,Australia,AU,Queensland,-27.526945,153.093141,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,3,10,Australia,AU,Victoria,-38.671313,146.163742,EPSG:4326 +HUMAN_OBSERVATION,mary_gum,1,,Koala is sleeping on a tree. Has grey fur and and long talons on hands. Has a white fur on belly and near its bottom. Koala is around 2 feet tall.,2022,10,16,Australia,AU,Queensland,-19.123228,146.872147,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2023,2,22,Australia,AU,South Australia,-34.904116,138.614261,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2022,1,26,Australia,AU,Victoria,-38.354681,146.388882,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,12,Australia,AU,Queensland,-27.529894,153.103674,EPSG:4326 +HUMAN_OBSERVATION,queenslander,1,,,2021,11,17,Australia,AU,Queensland,-27.596393,153.274851,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree next to tennis court on townhouse side Male yellow tag left ear,2024,2,17,Australia,AU,Queensland,-27.52555,153.093185,EPSG:4326 +HUMAN_OBSERVATION,Mike and Cathy Beamish,1,MALE,,2020,10,27,Australia,AU,Victoria,-38.388921,146.271308,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,7,28,Australia,AU,Queensland,-27.528016,153.09286,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,12,Australia,AU,Queensland,-27.526938,153.10872,EPSG:4326 +HUMAN_OBSERVATION,michelesabto,1,,,2024,1,27,Australia,AU,Victoria,-38.394834,145.163857,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery Mother and joey,2024,11,3,Australia,AU,Queensland,-27.527201,153.091317,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,16,Australia,AU,Queensland,-27.792695,151.543941,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,12,11,Australia,AU,Victoria,-38.671283,146.164214,EPSG:4326 +HUMAN_OBSERVATION,miranda005,1,,,2024,6,7,Australia,AU,Queensland,-27.546811,153.074434,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2022,4,4,Australia,AU,Queensland,-27.53926,153.053873,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2021,10,23,Australia,AU,South Australia,-34.933992,138.698669,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,8,Australia,AU,Queensland,-27.530013,153.111021,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear,2024,7,5,Australia,AU,Queensland,-27.530382,153.103113,EPSG:4326 +HUMAN_OBSERVATION,Bob Brown,1,,Reconyx HF2,2023,1,21,Australia,AU,Queensland,-27.53098,152.18373,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,8,25,Australia,AU,Queensland,-27.527764,153.092294,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In nursery grounds,2024,5,26,Australia,AU,Queensland,-27.528116,153.092323,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,24,Australia,AU,South Australia,-34.891402,138.713046,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" male in yellow box. Called about 8 am. Has been in neighbourhood but not seen on our block for some time. Failed attempt made to trap him on 48 Baker Road in December due to suspected chlamydia. Right eye infected. However eye condition varies and could possibly be from an injury just below eye.",2021,1,3,Australia,AU,New South Wales,-30.519607,151.518629,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,17,Australia,AU,South Australia,-34.887287,138.720441,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2022,4,1,Australia,AU,South Australia,-34.956004,138.700179,EPSG:4326 +HUMAN_OBSERVATION,fobhm,1,,,2022,2,22,Australia,AU,South Australia,-34.863461,138.726396,EPSG:4326 +HUMAN_OBSERVATION,annemusser,1,,"Photographed by Transport NSW, Carpark Two",2023,11,19,Australia,AU,New South Wales,-33.817848,150.021847,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,A different example to earlier entry,2021,12,15,Australia,AU,South Australia,-34.865337,138.65682,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,3,Australia,AU,South Australia,-34.892285,138.713783,EPSG:4326 +HUMAN_OBSERVATION,thephoxinus,1,,,2023,3,26,Australia,AU,Victoria,-37.561837,149.758986,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,5,1,Australia,AU,Queensland,-27.528031,153.092208,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,4,2,Australia,AU,Queensland,-27.53312,153.038289,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2024,5,13,Australia,AU,Queensland,-27.542666,153.074649,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Vacant black at front of tafe cavendish road,2023,6,11,Australia,AU,Queensland,-27.527845,153.091362,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,11,19,Australia,AU,Queensland,-27.533258,153.038923,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Healthy koala at Amity Point in Straddie island Minjerribah.,2022,2,5,Australia,AU,Queensland,-27.401307,153.439377,EPSG:4326 +HUMAN_OBSERVATION,boodacious,1,,,2022,9,24,Australia,AU,New South Wales,-28.524145,152.998887,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,6,Australia,AU,Queensland,-27.545709,153.072205,EPSG:4326 +HUMAN_OBSERVATION,mikew65,1,,,2024,2,15,Australia,AU,South Australia,-34.83217,135.685924,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In tree in gully next to Woodland area,2023,6,17,Australia,AU,Queensland,-27.527614,153.092811,EPSG:4326 +HUMAN_OBSERVATION,polyscias099,1,,Scat in grey gum,2023,6,26,Australia,AU,New South Wales,-34.101124,150.813595,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,7,28,Australia,AU,Queensland,-27.715728,151.526658,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2024,8,14,Australia,AU,Victoria,-38.363496,146.394144,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark (#00001),2021,2,8,Australia,AU,Queensland,-27.550124,153.059593,EPSG:4326 +HUMAN_OBSERVATION,afisch80,1,MALE,"Pretty big koala, asleep, scratched, went back to sleep",2024,9,1,Australia,AU,Victoria,-37.861354,144.268951,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Asleep high up a tree.,2020,7,8,Australia,AU,Queensland,-27.547583,153.058687,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,FEMALE,First sighting of new female koala with joey on our property. We have named her Matilda and her young joey MJ (Matilda junior),2023,8,22,Australia,AU,Queensland,-27.41378,152.003772,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Cheese tree,2022,3,9,Australia,AU,Queensland,-27.548542,153.058999,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near cafeteria- tree next to stairs Mother and joey,2023,11,12,Australia,AU,Queensland,-27.527074,153.092545,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,In Stringybark. Possibly "Fluffy Eared Baby" from 2019,2024,4,25,Australia,AU,New South Wales,-30.520915,151.518981,EPSG:4326 +HUMAN_OBSERVATION,mdanko,1,,,2023,3,2,Australia,AU,Victoria,-38.333708,142.356434,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,,2024,4,2,Australia,AU,Queensland,-27.497629,153.399608,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,5,Australia,AU,Queensland,-27.715338,151.630172,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,4,22,Australia,AU,Queensland,-27.275638,152.937897,EPSG:4326 +HUMAN_OBSERVATION,Marianne Broug,1,,,2023,1,1,Australia,AU,South Australia,-35.011924,138.675197,EPSG:4326 +HUMAN_OBSERVATION,Cheryl,1,,,2022,12,4,Australia,AU,New South Wales,-30.296274,153.124887,EPSG:4326 +HUMAN_OBSERVATION,Sam S,1,,"Mature adult, possibly a male? Looked injured near right eye and muzzle with clear discharge dribbling from its nose. Sneezed to clear it. Sitting in a yellow box tree near manna gums, along riparian zone. Has been a resident in this area for a while.",2024,11,10,Australia,AU,Victoria,-37.018233,145.445094,EPSG:4326 +HUMAN_OBSERVATION,cucumbercap72,1,,,2024,5,2,Australia,AU,South Australia,-34.858716,138.623398,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,,2024,6,7,Australia,AU,Queensland,-27.621667,152.901828,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unreported sex. Rescued and observed by Qld Koala Rescue. Submitted by Denise Shaw via email.,2023,8,6,Australia,AU,Queensland,-26.431754,151.678942,EPSG:4326 +HUMAN_OBSERVATION,pdla,1,,,2023,5,9,Australia,AU,Queensland,-27.643469,151.657261,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,3,24,Australia,AU,Queensland,-27.527324,153.091218,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,We've got a bub in the backyard again.,2024,10,31,Australia,AU,Victoria,-37.874397,142.291021,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Christabelle - yellow 1032 RIGHT ear,2023,1,7,Australia,AU,Queensland,-27.53144,153.105348,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,12,12,Australia,AU,Queensland,-27.511059,153.087335,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,FEMALE,"Killed by car strike (blood on road). Female, with no joey.",2021,6,29,Australia,AU,Queensland,-27.453072,152.404335,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,2,13,Australia,AU,Queensland,-27.525655,153.092457,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,2,12,Australia,AU,Queensland,-27.551745,153.05769,EPSG:4326 +HUMAN_OBSERVATION,Heath Hunter,1,,,2023,1,5,Australia,AU,South Australia,-34.926138,138.694248,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Picnic area near e block Maybe with a joey,2024,8,15,Australia,AU,Queensland,-27.525804,153.090687,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2024,11,17,Australia,AU,South Australia,-35.041903,138.593748,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,,2024,9,15,Australia,AU,New South Wales,-34.757355,146.562487,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed and submitted by Wendy Taylor via msg.,2024,11,12,Australia,AU,Queensland,-26.187101,151.847254,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowood,2024,6,23,Australia,AU,Queensland,-27.528497,153.034994,EPSG:4326 +HUMAN_OBSERVATION,balove,1,,,2023,7,27,Australia,AU,Victoria,-38.895638,146.282363,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,4,Australia,AU,South Australia,-34.892407,138.72011,EPSG:4326 +HUMAN_OBSERVATION,mjjardine,1,,,2023,12,16,Australia,AU,Victoria,-38.321272,142.364685,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Mother and joey,2024,11,3,Australia,AU,Queensland,-27.527158,153.090788,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,3,2,Australia,AU,Queensland,-27.527887,153.093432,EPSG:4326 +HUMAN_OBSERVATION,René Campbell,1,,,2022,11,27,Australia,AU,South Australia,-35.008635,138.665463,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,,2023,1,7,Australia,AU,Queensland,-27.514373,153.082695,EPSG:4326 +HUMAN_OBSERVATION,tallangalook,1,,,2023,11,15,Australia,AU,Victoria,-37.089455,145.565078,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2022,1,14,Australia,AU,Victoria,-38.670997,146.164581,EPSG:4326 +HUMAN_OBSERVATION,johjesse,1,,Juvenile Male Koala found on window frame of new home build. Collected by carer for health check,2024,8,5,Australia,AU,Queensland,-27.296177,152.039084,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,7,29,Australia,AU,New South Wales,-28.254171,153.377379,EPSG:4326 +HUMAN_OBSERVATION,char6536,1,,Juvenile.,2023,1,13,Australia,AU,New South Wales,-28.637653,153.630022,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,8,12,Australia,AU,Queensland,-27.550989,153.053117,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2022,3,1,Australia,AU,Victoria,-38.127306,145.280483,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Very wet,2021,9,30,Australia,AU,Victoria,-38.67153,146.164108,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,,2022,7,30,Australia,AU,Queensland,-27.529072,153.107797,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,6,22,Australia,AU,South Australia,-34.86725,138.655885,EPSG:4326 +HUMAN_OBSERVATION,Ian D B Moodie,1,,,2020,6,8,Australia,AU,Victoria,-38.803267,143.533328,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2023,8,24,Australia,AU,Queensland,-27.33108,151.93228,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,In a Messmate Stringybark (E. obliqua).,2024,5,8,Australia,AU,Victoria,-38.500056,142.976433,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,25,Australia,AU,Queensland,-27.524359,153.090615,EPSG:4326 +HUMAN_OBSERVATION,ecocentric_consulting,1,,,2022,2,13,Australia,AU,Victoria,-38.501197,146.223161,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2023,12,10,Australia,AU,Queensland,-27.551863,153.057848,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2023,10,15,Australia,AU,South Australia,-34.921838,138.693818,EPSG:4326 +HUMAN_OBSERVATION,Jason Beynon Fankhauser,1,,,2024,9,29,Australia,AU,Queensland,-27.91172,153.372222,EPSG:4326 +HUMAN_OBSERVATION,g00ru,1,,,2023,6,17,Australia,AU,Queensland,-27.506308,153.084686,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,,2024,11,15,Australia,AU,Queensland,-27.545739,153.072034,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2020,6,27,Australia,AU,South Australia,-34.980633,138.644103,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,From a post on facebook- Jacinta S,2024,5,3,Australia,AU,New South Wales,-30.993163,150.240259,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Goossens,1,,,2023,4,13,Australia,AU,Victoria,-37.749445,143.903626,EPSG:4326 +HUMAN_OBSERVATION,Francesco Martoni,1,,,2022,1,28,Australia,AU,Victoria,-38.817297,143.526272,EPSG:4326 +HUMAN_OBSERVATION,abbiejane,1,,,2022,1,3,Australia,AU,Victoria,-38.318837,142.361259,EPSG:4326 +HUMAN_OBSERVATION,yasmeendaniels,1,,,2024,10,17,Australia,AU,New South Wales,-28.819986,153.302368,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2024,11,9,Australia,AU,Queensland,-27.719697,151.520645,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,,2023,3,19,Australia,AU,Queensland,-27.284415,153.000403,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,6,Australia,AU,Queensland,-27.527369,153.108582,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In lower car parks picnic area - tree next to stairs,2024,3,29,Australia,AU,Queensland,-27.52691,153.092218,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,7,24,Australia,AU,South Australia,-34.961189,138.700715,EPSG:4326 +HUMAN_OBSERVATION,Hiroya Kidoguchi,1,,"At least 3; Dominant male, 2 sub-adults",2024,7,19,Australia,AU,Queensland,-26.14941,152.865928,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,18,Australia,AU,Queensland,-27.528985,153.103187,EPSG:4326 +HUMAN_OBSERVATION,Alan Dahl,1,,,2020,3,2,Australia,AU,Victoria,-38.797562,143.541468,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,Mum and joey.,2023,9,30,Australia,AU,Queensland,-27.284489,152.999918,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,20,Australia,AU,Queensland,-27.529555,153.104769,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,10,19,Australia,AU,Victoria,-37.604133,143.875,EPSG:4326 +HUMAN_OBSERVATION,aquanautlloyd,1,,Smaller koala,2024,1,5,Australia,AU,New South Wales,-31.451089,152.907643,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Koala scratch’s on numerous large mature grey gums,2022,5,6,Australia,AU,New South Wales,-33.585762,151.168883,EPSG:4326 +HUMAN_OBSERVATION,Danny Stuart,1,,,2023,2,8,Australia,AU,Victoria,-38.217568,145.321709,EPSG:4326 +HUMAN_OBSERVATION,caesia,1,,,2022,2,12,Australia,AU,South Australia,-35.16657,138.580268,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"I think the tree is a Swamp Gum (E. ovata). Two views, one from north, one from south (makes imagery confusing, but it is all the same animal).",2024,5,8,Australia,AU,Victoria,-38.496767,142.980539,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"Single koala. Believe this may be a male? Believe same one seen in this area, slightly further towards Tomewin road, on 28th September - fluffy ears and nose markings are the same.",2021,10,16,Australia,AU,New South Wales,-28.252359,153.375539,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,8,10,Australia,AU,New South Wales,-28.252309,153.375712,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,3,14,Australia,AU,South Australia,-34.892314,138.72225,EPSG:4326 +HUMAN_OBSERVATION,Sharon Pearson,1,,,2023,8,24,Australia,AU,Victoria,-37.529945,149.740188,EPSG:4326 +HUMAN_OBSERVATION,Ashwin Srinivasan,1,,,2023,7,12,Australia,AU,Queensland,-19.129692,146.868281,EPSG:4326 +HUMAN_OBSERVATION,annewmelb,1,,,2024,11,3,Australia,AU,Victoria,-36.915878,145.715275,EPSG:4326 +HUMAN_OBSERVATION,mojorising2484,1,,Land clearing was occurring when this koala was photographed by a neighbour,2020,12,8,Australia,AU,New South Wales,-28.48631,153.2207,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor who was called by a concerned resident. Koala was found to healthy with plenty of trees in the area. Submitted by Denise Shaw.,2023,10,23,Australia,AU,Queensland,-26.312979,151.876072,EPSG:4326 +HUMAN_OBSERVATION,Lauren Fraser,1,,,2020,1,31,Australia,AU,Victoria,-38.744252,143.671203,EPSG:4326 +HUMAN_OBSERVATION,djchamp64,1,,,2021,5,10,Australia,AU,Queensland,-27.564628,153.136672,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Hiding amongst the Cheese trees,2020,8,24,Australia,AU,Queensland,-27.546235,153.058332,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,Koala counts: 29/8 7:30-8:00am 1 observer 0 koalas,2024,6,28,Australia,AU,Queensland,-27.822871,152.991881,EPSG:4326 +HUMAN_OBSERVATION,alice_in_wonderland,1,,,2024,11,10,Australia,AU,Queensland,-27.573913,152.933794,EPSG:4326 +HUMAN_OBSERVATION,Jacob Devine,1,,,2023,6,18,Australia,AU,Queensland,-27.552216,153.056231,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,"1 Young female, not disease noted, in an Acacia maidenii (Maidens wattle)",2020,1,19,Australia,AU,Queensland,-27.643611,152.055131,EPSG:4326 +HUMAN_OBSERVATION,aleckarcz,1,,,2023,9,22,Australia,AU,Queensland,-27.552298,153.054075,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.019361,138.656564,EPSG:4326 +HUMAN_OBSERVATION,Hayley Troupe,1,,,2021,10,23,Australia,AU,Queensland,-26.968083,152.164946,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,5,3,Australia,AU,Queensland,-27.528314,153.092336,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,21,Australia,AU,South Australia,-34.893429,138.716267,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,10,24,Australia,AU,Queensland,-27.506473,153.08473,EPSG:4326 +HUMAN_OBSERVATION,Caruna,1,,,2023,11,28,Australia,AU,Victoria,-38.666296,143.861211,EPSG:4326 +HUMAN_OBSERVATION,deejth,1,,,2020,12,21,Australia,AU,Victoria,-38.386983,145.120408,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,2,11,Australia,AU,Queensland,-27.526973,153.090653,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2020,5,27,Australia,AU,New South Wales,-28.254284,153.37702,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2023,10,18,Australia,AU,Queensland,-27.527427,153.107259,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,1,28,Australia,AU,Queensland,-27.527955,153.092644,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,"Spotlight count 29/7 6:15-7:30 1 hr 15 mins 1 observer JoT, 1 koala in large E. tereticornis, 5 gliders (2 x spotted gum -one in NE, one near front gate seen gliding across driveway , E.tereticornis near bat box, 2 bottlebrush on the river, 5 btp, 1 flying fox. Better photos to be uploaded.Diurnal counts 29/7 8:30-9:15am 45 minutes. 1 observer JoT 0 koalas.",2024,7,29,Australia,AU,Queensland,-27.823547,152.994125,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,FEMALE,,2023,1,2,Australia,AU,New South Wales,-34.09942,150.82724,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,female?,2021,12,6,Australia,AU,New South Wales,-28.252371,153.375202,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Scampering up a tree,2023,12,28,Australia,AU,Queensland,-27.527431,153.109998,EPSG:4326 +HUMAN_OBSERVATION,Matteo Grilli,1,,,2020,11,19,Australia,AU,Queensland,-27.436192,152.998361,EPSG:4326 +HUMAN_OBSERVATION,iwozza,1,,,2022,8,22,Australia,AU,Victoria,-38.297027,143.271114,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark,2021,7,30,Australia,AU,Queensland,-27.54962,153.04954,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,3,Australia,AU,Queensland,-27.527762,153.111662,EPSG:4326 +HUMAN_OBSERVATION,regan_scheuber,1,,,2023,9,22,Australia,AU,Queensland,-27.389895,151.940651,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,11,3,Australia,AU,Queensland,-27.649572,151.71463,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.921642,147.731492,EPSG:4326 +HUMAN_OBSERVATION,Colin Trainor,1,,,2023,10,14,Australia,AU,Queensland,-27.89935,153.370739,EPSG:4326 +HUMAN_OBSERVATION,JessCalcutt,1,,,2021,6,19,Australia,AU,Queensland,-19.130725,146.868956,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Joey being held tightly by mum.,2021,7,27,Australia,AU,New South Wales,-28.25785,153.400585,EPSG:4326 +HUMAN_OBSERVATION,emilyclaire02,1,,Male koala,2022,6,4,Australia,AU,Queensland,-27.420044,152.608495,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,MALE,Motley,2024,3,3,Australia,AU,South Australia,-34.892464,138.717442,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Male - dirty bum. Has been rescued today - taken to RSPCA for assessment. Named Rue,2024,2,17,Australia,AU,Queensland,-27.528477,153.111111,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Jaye Mallet Tree in car park CFO20,2023,11,14,Australia,AU,Queensland,-27.526922,153.091569,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg,2023,12,12,Australia,AU,Queensland,-26.155069,151.749867,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,MALE,,2024,11,3,Australia,AU,South Australia,-34.89159,138.719181,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Vehicle strike - rehabilitated,2021,7,31,Australia,AU,Victoria,-37.60471,143.882223,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Maisie and joey Mum’s trees,2023,10,15,Australia,AU,Queensland,-27.526468,153.091023,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2021,12,23,Australia,AU,New South Wales,-28.258429,153.402165,EPSG:4326 +HUMAN_OBSERVATION,Jessica Kohlman,1,,Near the train station. Quite high up the tree. Small koala. Photo is zoomed in.,2020,9,23,Australia,AU,Queensland,-27.523965,153.264872,EPSG:4326 +HUMAN_OBSERVATION,Patrick Connolly,1,,,2024,4,25,Australia,AU,Queensland,-27.543274,153.072659,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,10,20,Australia,AU,Queensland,-27.629913,151.573105,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,"Strangely calling from a Blackwood, Acacia melanoxylon",2021,10,21,Australia,AU,Victoria,-38.671397,146.16362,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,4,24,Australia,AU,Queensland,-27.273725,152.940033,EPSG:4326 +HUMAN_OBSERVATION,Glenn Cadman,1,,Found in the Birkdale Bushland Refuge,2021,11,1,Australia,AU,Queensland,-27.502627,153.220923,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,Female koala "Robin" with her back joey "CeeJay",2022,12,18,Australia,AU,Queensland,-27.413992,152.003232,EPSG:4326 +HUMAN_OBSERVATION,whittie,1,,,2023,10,22,Australia,AU,South Australia,-35.005996,138.638493,EPSG:4326 +HUMAN_OBSERVATION,SBERRY,1,,,2024,11,3,Australia,AU,Victoria,-38.254416,145.240331,EPSG:4326 +HUMAN_OBSERVATION,Steph Rummel,1,,,2023,2,7,Australia,AU,Victoria,-38.42177,144.95897,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,3134 offspring,2022,12,14,Australia,AU,Queensland,-27.545751,153.073555,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Between admin block and cleaners donga - middle tree,2023,8,21,Australia,AU,Queensland,-27.526927,153.091642,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Very cute encounter of the mother and her joey enjoying the sunset 😎,2021,9,4,Australia,AU,Queensland,-27.512275,153.083283,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Cheese tree,2021,2,26,Australia,AU,Queensland,-27.54806,153.058405,EPSG:4326 +HUMAN_OBSERVATION,philip-roetman,1,,,2022,4,30,Australia,AU,South Australia,-35.019247,138.655809,EPSG:4326 +HUMAN_OBSERVATION,sporopat,1,,,2022,4,13,Australia,AU,Victoria,-37.579699,144.122233,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Wisteria carpark,2024,10,4,Australia,AU,Queensland,-27.524547,153.092082,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,4,13,Australia,AU,Queensland,-27.527101,153.090787,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,9,17,Australia,AU,Queensland,-27.795137,151.561295,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Bald Ear"" Male, unfortunately with very infected eye. Other eye seems OK. Had just been calling before this picture. He is well within the territory in which he is the dominant male.",2020,11,2,Australia,AU,New South Wales,-30.519321,151.521058,EPSG:4326 +HUMAN_OBSERVATION,Phil,1,,,2023,5,1,Australia,AU,Victoria,-38.670468,143.861356,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,,"Male koala, looks young. Close to main road",2023,2,11,Australia,AU,South Australia,-35.038582,138.566984,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Tennis court tree,2024,10,27,Australia,AU,Queensland,-27.525292,153.092805,EPSG:4326 +HUMAN_OBSERVATION,jvanweenen,1,,,2024,4,21,Australia,AU,South Australia,-34.939583,138.703278,EPSG:4326 +HUMAN_OBSERVATION,Gavin Goodyear,1,,,2021,7,11,Australia,AU,Queensland,-26.794511,152.44471,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,No ear tags. In a Eucalyptus tereticornis.,2021,3,31,Australia,AU,Queensland,-27.50956,153.070432,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Red Mahogany,2021,2,1,Australia,AU,Queensland,-27.550839,153.058009,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,Very young koala,2023,10,18,Australia,AU,Queensland,-27.551203,153.057574,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Loud bellowing koala. May be the same one seen 17th August.,2021,8,16,Australia,AU,New South Wales,-28.252479,153.376109,EPSG:4326 +HUMAN_OBSERVATION,bilby25,1,,Mum and joey,2023,10,20,Australia,AU,Queensland,-27.551021,153.057754,EPSG:4326 +HUMAN_OBSERVATION,pookies,1,,,2023,11,27,Australia,AU,Victoria,-37.330167,144.594011,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside cleaners donga,2024,6,15,Australia,AU,Queensland,-27.526889,153.091863,EPSG:4326 +HUMAN_OBSERVATION,Lesley Hardiman,1,,Bigger than yesterdays observation similar area. Moving about,2020,9,22,Australia,AU,Queensland,-27.490447,153.24875,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to Woodland,2024,2,11,Australia,AU,Queensland,-27.527079,153.092076,EPSG:4326 +HUMAN_OBSERVATION,maree_h,1,,,2023,9,14,Australia,AU,Queensland,-28.290628,153.099442,EPSG:4326 +HUMAN_OBSERVATION,kirstlebut,1,,,2023,10,16,Australia,AU,Queensland,-27.55491,151.510776,EPSG:4326 +HUMAN_OBSERVATION,Susan Wiser,1,,,2023,9,10,Australia,AU,New South Wales,-31.442903,152.900969,EPSG:4326 +HUMAN_OBSERVATION,maddiknowles9,1,MALE,,2024,4,17,Australia,AU,Victoria,-38.836437,143.515397,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,6,12,Australia,AU,Queensland,-27.550691,153.043622,EPSG:4326 +HUMAN_OBSERVATION,patrickwhite57,1,,,2022,1,22,Australia,AU,South Australia,-35.002011,138.713841,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,9,6,Australia,AU,New South Wales,-33.076592,151.095031,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,9,4,Australia,AU,Queensland,-27.527137,153.110962,EPSG:4326 +HUMAN_OBSERVATION,kittenkong,1,,,2024,1,29,Australia,AU,Victoria,-37.940872,141.311793,EPSG:4326 +HUMAN_OBSERVATION,wildlifeinblackbutt,1,,,2023,11,25,Australia,AU,Queensland,-27.263513,152.050203,EPSG:4326 +HUMAN_OBSERVATION,Richard Johnson,1,,"Sunning in Eucalyptus tereticornis tree, Boonah Rail Trail",2023,6,16,Australia,AU,Queensland,-27.986587,152.677428,EPSG:4326 +HUMAN_OBSERVATION,bruceandjoy,1,,,2024,4,27,Australia,AU,South Australia,-34.875745,138.69905,EPSG:4326 +HUMAN_OBSERVATION,leito19,1,,,2024,3,31,Australia,AU,Victoria,-38.384213,145.304162,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,4,25,Australia,AU,Queensland,-27.719558,151.520675,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,Very sleepy :),2024,1,25,Australia,AU,New South Wales,-34.100489,150.825564,EPSG:4326 +HUMAN_OBSERVATION,Jenny Hanwell,1,,,2024,4,17,Australia,AU,Queensland,-27.91972,153.375468,EPSG:4326 +HUMAN_OBSERVATION,ajpate,1,,,2022,12,21,Australia,AU,Victoria,-38.484304,145.261644,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,16,Australia,AU,Queensland,-27.527118,153.108905,EPSG:4326 +HUMAN_OBSERVATION,theressa,1,,Photo taken by Dave Dunstan concern with Mother’s bottom,2022,1,11,Australia,AU,Queensland,-27.16561,153.00151,EPSG:4326 +HUMAN_OBSERVATION,Tom,1,,,2023,4,22,Australia,AU,Queensland,-19.129095,146.870984,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,,2022,11,27,Australia,AU,Victoria,-38.503156,142.983439,EPSG:4326 +HUMAN_OBSERVATION,bertbohosouth,1,,koala,2020,3,30,Australia,AU,Victoria,-36.803519,145.790039,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,FEMALE,Wilemina and Baby Wilemina,2022,11,16,Australia,AU,South Australia,-34.890902,138.731349,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2020,5,13,Australia,AU,Victoria,-37.627285,143.91346,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,7,Australia,AU,Queensland,-27.527226,153.108185,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,2,27,Australia,AU,Queensland,-27.525793,153.091827,EPSG:4326 +HUMAN_OBSERVATION,Lachlan Duncan,1,,Sitting in a small eucalypt alongside the fire trail,2022,1,5,Australia,AU,South Australia,-34.707426,138.841839,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn,1,,,2021,1,5,Australia,AU,Victoria,-37.9225,147.734167,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Gumby,2024,1,29,Australia,AU,South Australia,-34.891909,138.719169,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,Camera no. 8 Sclerophyll notes:,2021,9,3,Australia,AU,Queensland,-27.696933,152.08625,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery,2024,8,17,Australia,AU,Queensland,-27.527439,153.092239,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,MALE,Koala “Crusoe?ear tag sighted in large old Eucalyptus microcorys.,2023,5,7,Australia,AU,Queensland,-27.414538,152.003669,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,10,13,Australia,AU,Queensland,-27.551122,153.057495,EPSG:4326 +HUMAN_OBSERVATION,austinje,1,,,2024,8,12,Australia,AU,South Australia,-34.893165,138.626196,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Jamaca sutton. Forwarded by email.,2022,1,3,Australia,AU,Queensland,-26.571302,151.825394,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Photo Kathy Silk Road kill male Koala,2023,8,12,Australia,AU,Queensland,-27.478232,152.53638,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,MALE,"In blue gum, approx 20cm DBH",2024,9,21,Australia,AU,Queensland,-27.457387,152.401352,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,G Block? In tree with development sign,2023,7,2,Australia,AU,Queensland,-27.526322,153.091021,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in a Eucalyptus tereticornis,2024,6,20,Australia,AU,Queensland,-27.841639,152.513886,EPSG:4326 +HUMAN_OBSERVATION,alecjames,1,,,2021,2,18,Australia,AU,New South Wales,-33.983217,150.908889,EPSG:4326 +HUMAN_OBSERVATION,ainsliem,1,,,2020,12,22,Australia,AU,New South Wales,-28.253468,153.376821,EPSG:4326 +HUMAN_OBSERVATION,funnyfantail,1,,,2024,9,27,Australia,AU,Victoria,-38.80287,143.476933,EPSG:4326 +HUMAN_OBSERVATION,justiger,1,,,2021,1,5,Australia,AU,Queensland,-27.83122,153.056075,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Amanda Francis. Submitted by email.,2023,8,25,Australia,AU,Queensland,-26.111041,151.774653,EPSG:4326 +HUMAN_OBSERVATION,mikew65,1,,,2023,3,12,Australia,AU,South Australia,-34.621851,135.659154,EPSG:4326 +HUMAN_OBSERVATION,quollsskinks,1,,,2023,1,2,Australia,AU,Victoria,-38.056283,141.92343,EPSG:4326 +HUMAN_OBSERVATION,Leah Burns,1,,"On wall between 11 and 13 Edgehill St, Nathan. Seemed to consider climbing down the wall several times, but eventually went into a Golden Cane next to the wall. Toohey Forest is on the other side of the road, behind another row of houses.",2022,8,25,Australia,AU,Queensland,-27.54515,153.044308,EPSG:4326 +HUMAN_OBSERVATION,petermcclive,1,,,2023,1,21,Australia,AU,Victoria,-38.384875,145.309587,EPSG:4326 +HUMAN_OBSERVATION,Mike Youdale,1,,,2023,2,23,Australia,AU,Queensland,-27.546555,152.859833,EPSG:4326 +HUMAN_OBSERVATION,wildlifewally,1,,,2021,7,25,Australia,AU,New South Wales,-28.288588,153.394272,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,There are two in this pic,2022,3,29,Australia,AU,New South Wales,-34.75705,146.588622,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy Koala observation by Elsie M for TKWR,2023,10,3,Australia,AU,Queensland,-27.423607,151.885961,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2023,12,2,Australia,AU,Queensland,-26.16856,151.762506,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2023,1,16,Australia,AU,Queensland,-27.598761,151.893923,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,22,Australia,AU,Queensland,-27.527178,153.108303,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2021,2,23,Australia,AU,Queensland,-28.203765,153.193107,EPSG:4326 +HUMAN_OBSERVATION,leito19,1,,,2024,3,31,Australia,AU,Victoria,-38.385085,145.311923,EPSG:4326 +HUMAN_OBSERVATION,Wendy Heath,1,,Heritage Park - Nothing Harbour Euc tereticornis adjacent to Caboolture River,2024,10,20,Australia,AU,Queensland,-27.104947,152.991455,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In picnic area near Aldi gates car parks and cafeteria,2023,11,2,Australia,AU,Queensland,-27.527344,153.09222,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,11,1,Australia,AU,Queensland,-26.829613,152.714507,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,7,26,Australia,AU,Queensland,-27.396238,152.609603,EPSG:4326 +HUMAN_OBSERVATION,orchidlove,1,FEMALE,,2023,11,2,Australia,AU,New South Wales,-31.94965,152.301182,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to woodland,2023,12,31,Australia,AU,Queensland,-27.526454,153.093524,EPSG:4326 +HUMAN_OBSERVATION,zbailey,1,,Brown lake,2024,10,7,Australia,AU,Queensland,-27.492703,153.429962,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,14,Australia,AU,Queensland,-27.526872,153.090465,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,MALE,,2020,9,25,Australia,AU,Victoria,-38.175581,145.132149,EPSG:4326 +HUMAN_OBSERVATION,kaharris03,1,,,2024,6,3,Australia,AU,New South Wales,-29.023089,153.286075,EPSG:4326 +HUMAN_OBSERVATION,hannahbarrenger,1,,,2020,9,2,Australia,AU,Queensland,-27.71648,153.158342,EPSG:4326 +HUMAN_OBSERVATION,Liz Snow,1,,,2024,10,31,Australia,AU,Queensland,-27.401179,153.437797,EPSG:4326 +HUMAN_OBSERVATION,jinksi,1,,Spotted walking along the track ahead of me!,2020,10,7,Australia,AU,Queensland,-28.103967,153.446092,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,13,Australia,AU,Queensland,-27.545858,153.072853,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.020748,138.656366,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,Male - yellow tag LEFT ear - possibly Rue (1376),2024,7,29,Australia,AU,Queensland,-27.528435,153.111422,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,"Descending from a favoured food tree (Eucalyptus major) after climbing it six minutes before, and scent marking the trunk with its chest gland as it ascended. LCA3035",2021,11,15,Australia,AU,Queensland,-27.496005,152.246676,EPSG:4326 +HUMAN_OBSERVATION,eboys,1,,,2023,9,29,Australia,AU,Queensland,-27.987911,153.32599,EPSG:4326 +HUMAN_OBSERVATION,oconnej,1,,,2024,8,10,Australia,AU,Queensland,-28.068607,152.623956,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,11,24,Australia,AU,Queensland,-27.527131,153.091743,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,,,2024,9,20,Australia,AU,Queensland,-27.358597,152.074667,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,MALE,"Male - green tag LEFT ear - Joe, known as Bozo",2024,5,29,Australia,AU,Queensland,-27.527203,153.109183,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2024,4,27,Australia,AU,Queensland,-27.547111,153.056172,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery - mother and joey,2023,11,4,Australia,AU,Queensland,-27.527478,153.091263,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,Way up high in the rain,2020,7,28,Australia,AU,Victoria,-38.671212,146.163726,EPSG:4326 +HUMAN_OBSERVATION,Donald Hobern,1,,"Entomological Society of Victoria excursion, Morwell National Park, VIC, Australia, 19 October 2024 Photos show what looks like a small foot projecting sideways from the fur of the animal's belly - would this be a young koala?",2024,10,19,Australia,AU,Victoria,-38.356506,146.389741,EPSG:4326 +HUMAN_OBSERVATION,edtonks,1,,,2023,6,5,Australia,AU,Queensland,-27.2585,152.997038,EPSG:4326 +HUMAN_OBSERVATION,bird_valley,1,,Large active Koala,2024,4,2,Australia,AU,New South Wales,-28.809477,153.510488,EPSG:4326 +HUMAN_OBSERVATION,benp78,1,,Appears healthy - potentially female (clean white chest),2023,4,6,Australia,AU,Queensland,-27.551604,153.059468,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,possibly mauled by looks of injury. Reported the animal to a couple of passing Council workers who said they would report it and possibly collect it for examination.,2022,1,10,Australia,AU,Queensland,-27.513382,153.083903,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,"Recorded with mobile phone, turn volume up to maximum. Two koalas, one is high pitched juvenile or female & the other one is a male grunting.",2021,9,23,Australia,AU,New South Wales,-28.257658,153.402339,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown tree but hiding in Monkey Rope Vine,2020,1,30,Australia,AU,Queensland,-27.549416,153.059617,EPSG:4326 +HUMAN_OBSERVATION,Allan Lugg,1,,,2023,9,11,Australia,AU,Queensland,-19.128948,146.868245,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,30,Australia,AU,South Australia,-34.887683,138.73367,EPSG:4326 +HUMAN_OBSERVATION,seven_acre_wood,1,,,2021,12,5,Australia,AU,Victoria,-37.420987,144.270125,EPSG:4326 +HUMAN_OBSERVATION,jayne007,1,,Koala was spotted walking across an open paddock and then scurried up the tree,2021,10,9,Australia,AU,New South Wales,-28.815943,153.138153,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,6,Australia,AU,Queensland,-27.528969,153.105182,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,12,Australia,AU,Queensland,-27.413747,152.003769,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,5,Australia,AU,South Australia,-34.826458,138.735865,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,6,14,Australia,AU,Queensland,-27.528372,153.093426,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,10,22,Australia,AU,Queensland,-27.701124,153.189646,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,"Healthy Koala - Picnic Point Walking Track, 5/11/22 - Observer Nancy F. for Toowoomba Koala and Wildlife Rescue.",2022,11,5,Australia,AU,Queensland,-27.579246,151.989468,EPSG:4326 +HUMAN_OBSERVATION,Anton Citizen,1,,,2024,10,28,Australia,AU,Victoria,-38.433267,144.941588,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"About half a dozen scat pellets rained down over about 2 minutes, it then moved position.",2024,7,14,Australia,AU,Victoria,-38.482594,142.976761,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2022,8,22,Australia,AU,Queensland,-27.546939,153.058306,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2023,11,21,Australia,AU,Queensland,-26.831533,152.710674,EPSG:4326 +HUMAN_OBSERVATION,janemichaele,1,,,2024,1,16,Australia,AU,New South Wales,-30.261334,153.107555,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,FEMALE,,2024,10,21,Australia,AU,New South Wales,-28.261538,153.39782,EPSG:4326 +HUMAN_OBSERVATION,sandraharding,1,,,2020,5,4,Australia,AU,Queensland,-27.532787,153.242128,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,large koala in lemon scented gum,2020,4,13,Australia,AU,New South Wales,-28.25745,153.374145,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,6,Australia,AU,Queensland,-27.529453,153.057803,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,"This koala was in the same branches of the same tree yesterday morning, but had moved yesterday afternoon as I returned to try and photograph its nose clearly for identification and it was gone! But this morning it was back. Believed to be a male due to the bellows at night.",2021,1,3,Australia,AU,New South Wales,-28.254187,153.377606,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,8,11,Australia,AU,Queensland,-27.527529,153.091038,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2022,11,18,Australia,AU,Queensland,-28.069726,152.827889,EPSG:4326 +HUMAN_OBSERVATION,nyxaero,1,,,2023,8,22,Australia,AU,South Australia,-35.122492,138.508358,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,10,16,Australia,AU,Queensland,-27.527638,153.102707,EPSG:4326 +HUMAN_OBSERVATION,Tansnaturediary,1,,Dozens of scats under a messmate,2023,8,11,Australia,AU,Victoria,-37.302864,144.175093,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Female "spectacle eyes" in E. blakelyi,2020,5,12,Australia,AU,New South Wales,-30.52057,151.518894,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,In backyard of townhouse near woodland rear entry (Aldi gates) - down near rocky valley part Female possibly with Joey in pouch - early stages,2023,8,22,Australia,AU,Queensland,-27.527451,153.093236,EPSG:4326 +HUMAN_OBSERVATION,elizabethkakoschke,1,FEMALE,,2023,8,19,Australia,AU,New South Wales,-29.651992,150.824697,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,8,22,Australia,AU,Queensland,-27.505802,153.084263,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Wisteria car park Mother and joey likely Cindy Crawford with a new joey!!!,2024,8,15,Australia,AU,Queensland,-27.525335,153.092267,EPSG:4326 +HUMAN_OBSERVATION,sancabj88,1,,,2020,3,10,Australia,AU,Victoria,-38.817091,143.529463,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,5,17,Australia,AU,South Australia,-35.007376,138.656305,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery,2024,8,24,Australia,AU,Queensland,-27.527135,153.091514,EPSG:4326 +HUMAN_OBSERVATION,elroypine,1,,Mother and back young,2024,11,15,Australia,AU,New South Wales,-34.745342,146.534028,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala,2022,12,1,Australia,AU,Queensland,-28.002767,152.67929,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2020,12,2,Australia,AU,Victoria,-38.671688,146.164445,EPSG:4326 +HUMAN_OBSERVATION,Rusty,1,,,2021,10,17,Australia,AU,South Australia,-35.00985,138.639198,EPSG:4326 +HUMAN_OBSERVATION,Jenny Emeny,1,,"Unfortunately overbrowsing the mature red gum they were in, which also had hollow bearing species nesting in it.",2021,10,24,Australia,AU,Victoria,-38.321666,142.634044,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,10,27,Australia,AU,Queensland,-27.701124,153.189646,EPSG:4326 +HUMAN_OBSERVATION,linger,1,,,2020,6,30,Australia,AU,Victoria,-38.823056,143.593333,EPSG:4326 +HUMAN_OBSERVATION,trishmc69,1,MALE,,2022,3,30,Australia,AU,Queensland,-27.448563,152.567947,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of tafe cavendish road Behind two bus stops Mother and joey,2023,8,21,Australia,AU,Queensland,-27.52728,153.09065,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Brush Box,2020,3,15,Australia,AU,Queensland,-27.547992,153.059246,EPSG:4326 +HUMAN_OBSERVATION,Tricia Stewart,1,,,2022,7,14,Australia,AU,Victoria,-38.138972,145.274078,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,With a front Joey.,2023,9,3,Australia,AU,Queensland,-27.256264,152.046139,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2020,7,19,Australia,AU,Victoria,-38.130662,145.268258,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,19,Australia,AU,Queensland,-27.546458,153.074701,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,FEMALE,"Female koala in yellow gum, 4m high Nervous, watching me and trying to hide behind branch Windy and rain starting. She was licking her paw for moisture. She is a new koala, not seen here before. After 10mm rain she climbed higher and started eating new leaves",2023,2,2,Australia,AU,Victoria,-37.843442,144.282583,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2024,2,25,Australia,AU,Queensland,-26.853037,152.285114,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,High up edge of rocky waterholes bridge. Has been here for sometime as much scat underneath the red river gum,2022,9,2,Australia,AU,New South Wales,-34.755712,146.590667,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,11,27,Australia,AU,Queensland,-27.531549,153.105495,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2022,9,6,Australia,AU,South Australia,-34.970482,138.637202,EPSG:4326 +HUMAN_OBSERVATION,tracyrout,1,,,2024,2,13,Australia,AU,Queensland,-27.524835,153.068538,EPSG:4326 +HUMAN_OBSERVATION,Tim Bawden,1,,,2022,12,3,Australia,AU,Victoria,-37.97517,145.89868,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2024,5,21,Australia,AU,Queensland,-27.530715,153.10455,EPSG:4326 +HUMAN_OBSERVATION,g00ru,1,,,2022,2,19,Australia,AU,Queensland,-27.913785,153.375453,EPSG:4326 +HUMAN_OBSERVATION,Anneliese Mak,1,MALE,,2024,2,26,Australia,AU,Victoria,-37.924154,147.724317,EPSG:4326 +HUMAN_OBSERVATION,Colin Trainor,1,,,2023,2,28,Australia,AU,Queensland,-27.526342,153.282275,EPSG:4326 +HUMAN_OBSERVATION,linger,1,,,2020,6,29,Australia,AU,Victoria,-38.755152,143.669357,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,"Photo credit: Eliza, Karana Downs and Mt Crosby Residents RSPCA attempted capture for observation, dirty bottom. No luck.",2022,1,12,Australia,AU,Queensland,-27.531936,152.807639,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2020,6,27,Australia,AU,South Australia,-34.980689,138.644283,EPSG:4326 +HUMAN_OBSERVATION,Oliver S.,1,,,2020,12,29,Australia,AU,Victoria,-37.91784,147.726182,EPSG:4326 +HUMAN_OBSERVATION,dwillcox,1,,,2023,1,19,Australia,AU,New South Wales,-32.128106,152.152545,EPSG:4326 +HUMAN_OBSERVATION,michab444,1,,,2024,10,17,Australia,AU,Victoria,-38.352445,141.572617,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,10,Australia,AU,Queensland,-27.539322,153.066243,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,5,15,Australia,AU,Queensland,-27.545716,153.070795,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,30,Australia,AU,Queensland,-27.527789,153.092271,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania and Wisteria Woodland - front and middle,2023,8,13,Australia,AU,Queensland,-27.52424,153.093093,EPSG:4326 +HUMAN_OBSERVATION,bigfoot123,1,MALE,,2023,12,24,Australia,AU,Victoria,-37.902882,147.743497,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2022,12,15,Australia,AU,Queensland,-28.094775,152.837042,EPSG:4326 +HUMAN_OBSERVATION,Geoffrey Cox,1,,,2024,10,19,Australia,AU,South Australia,-35.018088,138.659654,EPSG:4326 +HUMAN_OBSERVATION,lrathbone,1,,,2023,11,27,Australia,AU,Victoria,-36.354314,146.677883,EPSG:4326 +HUMAN_OBSERVATION,Louis O'Neill,1,FEMALE,"1 of 4 seen in Leis Park. An adult that looks healthy. Tagged: 1(3)00 369652 on the back of the ear, 7347 on the front of the ear. reported to www.koalatracker.com.au",2023,11,2,Australia,AU,Queensland,-27.276632,152.980838,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,14,Australia,AU,Queensland,-27.529307,153.108668,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag RIGHT ear - & her joey,2023,1,18,Australia,AU,Queensland,-27.530051,153.103386,EPSG:4326 +HUMAN_OBSERVATION,cmk11,1,,,2023,5,31,Australia,AU,Victoria,-36.847363,145.380433,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi & joey,2022,12,19,Australia,AU,Queensland,-27.530179,153.103343,EPSG:4326 +HUMAN_OBSERVATION,bushyj,1,,Sitting in a stringy bark tree possibly Eucalyptus globoidea,2024,10,17,Australia,AU,New South Wales,-34.030862,150.974867,EPSG:4326 +HUMAN_OBSERVATION,Roger MacRaild,1,,,2021,5,19,Australia,AU,Victoria,-37.688277,144.325342,EPSG:4326 +HUMAN_OBSERVATION,Patrick Brabant,1,,,2020,9,29,Australia,AU,Queensland,-28.137954,153.441213,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,5,13,Australia,AU,South Australia,-34.865003,138.657122,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,4,11,Australia,AU,New South Wales,-33.076217,151.09497,EPSG:4326 +HUMAN_OBSERVATION,Rusty,1,,,2024,9,4,Australia,AU,South Australia,-35.174868,138.514489,EPSG:4326 +HUMAN_OBSERVATION,george_seagull,1,,Down and about after a hard day's sleeping. Wye River.,2021,12,5,Australia,AU,Victoria,-38.636155,143.887432,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,21,Australia,AU,South Australia,-34.893066,138.721595,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,Koala scat and trunk marks. Numerous fed trees around plus other trunks with scratch markings ( still no koala sighted like a needle in a hay stack out here),2022,9,27,Australia,AU,New South Wales,-33.147178,151.077888,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,11,19,Australia,AU,Queensland,-27.649588,151.714675,EPSG:4326 +HUMAN_OBSERVATION,Poppy,1,,,2024,7,6,Australia,AU,Victoria,-36.358086,146.69556,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,27,Australia,AU,Queensland,-27.527542,153.092696,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Koala spotted by Darryl in a Gum Top Box,2024,5,15,Australia,AU,Queensland,-27.621553,152.901742,EPSG:4326 +HUMAN_OBSERVATION,Rusty,1,,,2023,4,19,Australia,AU,South Australia,-34.931051,138.673786,EPSG:4326 +HUMAN_OBSERVATION,Ralph Foster,1,,,2021,1,26,Australia,AU,South Australia,-35.152715,138.734286,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Aldi gully Mother and joey same tree different branches,2024,9,29,Australia,AU,Queensland,-27.525887,153.093087,EPSG:4326 +HUMAN_OBSERVATION,maudieo,1,,,2024,11,17,Australia,AU,Queensland,-27.261167,152.062667,EPSG:4326 +HUMAN_OBSERVATION,Rush Ecology,1,,Returning after the fires. A younger koala has been seen here since. Observations and photo by Bilpin Cider Co.,2020,1,18,Australia,AU,New South Wales,-33.504041,150.530653,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,"""Black Lip"" Male in stringy bark",2021,1,31,Australia,AU,New South Wales,-30.520915,151.518981,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,30,Australia,AU,South Australia,-34.892863,138.720246,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2022,3,1,Australia,AU,Victoria,-37.586685,143.883183,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2021,7,11,Australia,AU,Queensland,-27.508983,153.085347,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,5,12,Australia,AU,South Australia,-34.865228,138.656722,EPSG:4326 +HUMAN_OBSERVATION,Crossing Westbrook,1,,,2022,12,25,Australia,AU,Queensland,-27.598839,151.890762,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,7,Australia,AU,Queensland,-27.823807,152.992995,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,BMC CAMERA,2024,9,26,Australia,AU,New South Wales,-33.076711,151.095441,EPSG:4326 +HUMAN_OBSERVATION,quollsskinks,1,,,2023,1,26,Australia,AU,Victoria,-38.127486,141.631716,EPSG:4326 +HUMAN_OBSERVATION,kb2700,1,,,2024,9,21,Australia,AU,New South Wales,-34.765198,146.587025,EPSG:4326 +HUMAN_OBSERVATION,Jon Alesech,1,,,2023,10,23,Australia,AU,Queensland,-28.140454,153.428488,EPSG:4326 +HUMAN_OBSERVATION,colemale,1,,Very hot day. Was in Poplar Box tree in the house garden,2020,1,3,Australia,AU,New South Wales,-29.301205,150.011356,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,7,26,Australia,AU,Queensland,-27.52686,153.091041,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.372425,145.31488,EPSG:4326 +HUMAN_OBSERVATION,Ian Wheatland,1,,,2023,2,3,Australia,AU,Queensland,-27.573992,153.176413,EPSG:4326 +HUMAN_OBSERVATION,Ross Mckay,1,,Parkland area corridor known for many sightings,2023,9,24,Australia,AU,Queensland,-27.2697,152.058378,EPSG:4326 +HUMAN_OBSERVATION,Richard Fuller,1,,,2020,1,8,Australia,AU,Queensland,-27.551905,153.176717,EPSG:4326 +HUMAN_OBSERVATION,AJ,1,,Grumpy,2024,6,1,Australia,AU,Victoria,-38.2769,147.049164,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A5 RIGHT ear - Cindy,2023,12,12,Australia,AU,Queensland,-27.527386,153.1102,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2023,8,25,Australia,AU,Queensland,-27.550164,153.034154,EPSG:4326 +HUMAN_OBSERVATION,Larissa Braz Sousa,1,,,2020,9,26,Australia,AU,South Australia,-35.011545,138.649323,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Yellow tag right ear just visible - Maisie B?,2024,5,26,Australia,AU,Queensland,-27.527119,153.091581,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2022,9,12,Australia,AU,South Australia,-34.969893,138.634357,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in a very unhealthy looking gum tree on the edge of the Council depot and showgrounds.,2022,8,2,Australia,AU,Queensland,-27.997129,152.684044,EPSG:4326 +HUMAN_OBSERVATION,Mango parker,1,,,2021,2,23,Australia,AU,South Australia,-34.970362,138.638119,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Tristania & Wisteria Woodland front,2023,12,29,Australia,AU,Queensland,-27.524532,153.093693,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,11,14,Australia,AU,South Australia,-34.892015,138.721298,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Maisie - female koala yellow tag right ear,2023,6,3,Australia,AU,Queensland,-27.527424,153.09086,EPSG:4326 +HUMAN_OBSERVATION,lynsh,1,,,2024,5,18,Australia,AU,Queensland,-28.094804,153.450049,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2024,3,30,Australia,AU,Queensland,-27.510541,153.085067,EPSG:4326 +HUMAN_OBSERVATION,samwak22,1,,,2024,6,1,Australia,AU,Queensland,-27.223547,153.069917,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2024,6,8,Australia,AU,Queensland,-27.525285,153.092391,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,9,6,Australia,AU,Queensland,-27.256175,152.044652,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,6,20,Australia,AU,South Australia,-34.958065,138.699871,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,,2020,11,4,Australia,AU,Victoria,-38.175495,145.132256,EPSG:4326 +HUMAN_OBSERVATION,Michael Keogh,1,,,2020,12,17,Australia,AU,Victoria,-37.221994,148.264257,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Lindsell,1,,,2023,9,1,Australia,AU,Queensland,-27.514174,153.093446,EPSG:4326 +HUMAN_OBSERVATION,Taylor,1,,,2021,1,2,Australia,AU,South Australia,-35.151603,138.584395,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,8,Australia,AU,South Australia,-34.888911,138.7319,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,7,24,Australia,AU,South Australia,-34.892446,138.723449,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Denise Shaw. Submitted via email.,2023,7,23,Australia,AU,Queensland,-26.172552,151.766256,EPSG:4326 +HUMAN_OBSERVATION,LFW-ScenicRim,1,,3 seperate koalas,2023,9,25,Australia,AU,Queensland,-27.886446,152.749637,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,Mother and Joey,2023,2,8,Australia,AU,Queensland,-27.545919,153.073202,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,5,17,Australia,AU,South Australia,-35.005263,138.658667,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,1,26,Australia,AU,Queensland,-27.52909,153.106551,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2024,4,28,Australia,AU,Queensland,-27.52803,153.092221,EPSG:4326 +HUMAN_OBSERVATION,bec5157,1,,Female with Joey. #koalawithjoey,2023,1,26,Australia,AU,South Australia,-35.076185,138.595117,EPSG:4326 +HUMAN_OBSERVATION,roxanneives,1,,,2021,6,8,Australia,AU,Queensland,-27.550965,153.054475,EPSG:4326 +HUMAN_OBSERVATION,lizgould,1,,,2022,3,26,Australia,AU,Queensland,-28.072701,152.425782,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,3,Australia,AU,South Australia,-34.89286,138.720381,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Mother and Joey in Tallowwood,2022,9,7,Australia,AU,Queensland,-27.551392,153.05759,EPSG:4326 +HUMAN_OBSERVATION,nathanpender,1,,Juvenile Male.,2024,3,11,Australia,AU,Victoria,-37.96811,144.140014,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"Calling intermittently, a lot of local industrial background noise.",2022,8,6,Australia,AU,Queensland,-27.510564,153.06996,EPSG:4326 +HUMAN_OBSERVATION,cattewell,1,,,2023,5,18,Australia,AU,Queensland,-27.275256,152.98979,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2023,2,9,Australia,AU,Queensland,-27.551517,153.057856,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,3,Australia,AU,Queensland,-27.52698,153.108313,EPSG:4326 +HUMAN_OBSERVATION,sloshy__,1,,,2024,9,25,Australia,AU,Queensland,-27.541682,153.073265,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,With Joey in Pink Bloodwood,2020,8,19,Australia,AU,Queensland,-27.550846,153.058064,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi & joey,2024,10,16,Australia,AU,Queensland,-27.530889,153.103435,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,In Eucalyptus microcorys.,2023,11,14,Australia,AU,Queensland,-28.261875,152.566792,EPSG:4326 +HUMAN_OBSERVATION,Allen Lyu,1,,,2020,1,26,Australia,AU,Victoria,-38.784374,143.608847,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,1,7,Australia,AU,Queensland,-27.52695,153.090867,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Large koala in cluster of trees to left of lemon scented gum,2020,3,13,Australia,AU,New South Wales,-28.25745,153.374145,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,"Same tree and pose as this observation, https://inaturalist.ala.org.au/observations/68346498, not sure if same individual though.",2021,1,31,Australia,AU,Queensland,-27.513599,153.079392,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,6,28,Australia,AU,Queensland,-27.529109,153.103023,EPSG:4326 +HUMAN_OBSERVATION,RuthHucko,1,,,2023,11,19,Australia,AU,Queensland,-26.828408,152.719273,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Tallowwood,2020,2,18,Australia,AU,Queensland,-27.551604,153.057326,EPSG:4326 +HUMAN_OBSERVATION,slamshed,1,,,2023,12,11,Australia,AU,Queensland,-27.531927,152.47295,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,Pair of koalas,2023,1,16,Australia,AU,Queensland,-27.530378,153.101251,EPSG:4326 +HUMAN_OBSERVATION,bartsv,1,,female koala very high in big messmate stringybark Seen from road on way to look for 2 males heard bellowing nearby,2022,9,20,Australia,AU,Victoria,-37.840697,144.276152,EPSG:4326 +HUMAN_OBSERVATION,killara,1,,,2022,11,7,Australia,AU,Victoria,-37.657676,141.325553,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,6,Australia,AU,South Australia,-34.892148,138.714806,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,10,13,Australia,AU,Queensland,-27.823873,152.993372,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2021,4,11,Australia,AU,South Australia,-35.00266,138.645631,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2023,10,25,Australia,AU,New South Wales,-33.07635,151.095128,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,6,4,Australia,AU,South Australia,-34.870078,138.654495,EPSG:4326 +HUMAN_OBSERVATION,kiarabauer,1,,"Site: K1 Tree no: 21 Tree DBH: 12.000 Sclerophyll notes: No time was recorded for when scats were found - 1pm has been put for all scat observations due to there being no records, all scats were collected on the same day at different sites Ecologist assessed",2021,8,25,Australia,AU,Queensland,-27.695155,152.087003,EPSG:4326 +HUMAN_OBSERVATION,Catherine Grenfell,1,,,2021,1,25,Australia,AU,New South Wales,-34.101692,150.822053,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing Joey known as Charlie,2024,4,16,Australia,AU,Queensland,-27.528471,153.103319,EPSG:4326 +HUMAN_OBSERVATION,lil_1,1,,,2022,1,6,Australia,AU,Victoria,-37.62403,144.09462,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2022,12,3,Australia,AU,Queensland,-27.525064,153.111538,EPSG:4326 +HUMAN_OBSERVATION,curiousbeggs,1,,Sighted during school hours by a student at Cavendish Rd State High,2021,4,29,Australia,AU,Queensland,-27.518155,153.074122,EPSG:4326 +HUMAN_OBSERVATION,janaeb,1,,,2021,5,2,Australia,AU,Victoria,-37.170688,144.930787,EPSG:4326 +HUMAN_OBSERVATION,Scott Rolph,1,,,2021,7,2,Australia,AU,Victoria,-37.8553,144.2364,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,Mom and Joey,2024,8,25,Australia,AU,Queensland,-27.17228,152.567765,EPSG:4326 +HUMAN_OBSERVATION,nicko_nicholls,1,,Cherry gardens fire,2021,1,28,Australia,AU,South Australia,-35.108075,138.683455,EPSG:4326 +HUMAN_OBSERVATION,Stephen Cox,1,,,2020,11,29,Australia,AU,Victoria,-38.669511,143.861035,EPSG:4326 +HUMAN_OBSERVATION,mariaborges,1,,,2021,11,2,Australia,AU,Queensland,-27.469748,152.591126,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,9,26,Australia,AU,Queensland,-27.542219,153.072776,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland - mating tree in gully,2023,10,14,Australia,AU,Queensland,-27.527423,153.092456,EPSG:4326 +HUMAN_OBSERVATION,Davislck,1,,,2023,10,28,Australia,AU,Queensland,-27.542471,153.075389,EPSG:4326 +HUMAN_OBSERVATION,two_feet,1,,,2022,8,6,Australia,AU,New South Wales,-34.759078,146.567285,EPSG:4326 +HUMAN_OBSERVATION,wattlenerd,1,,,2023,10,22,Australia,AU,Queensland,-28.229863,153.241133,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Female - blue/grey tag RIGHT ear, metal tag LEFT ear - ? Rowie",2024,6,28,Australia,AU,Queensland,-27.528992,153.103355,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male - green tag LEFT ear - Joe, known as Bozo",2024,4,22,Australia,AU,Queensland,-27.527158,153.109026,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,2,14,Australia,AU,South Australia,-34.828389,138.741358,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,21,Australia,AU,South Australia,-34.891859,138.713745,EPSG:4326 +HUMAN_OBSERVATION,Toby Esplin,1,,,2020,1,16,Australia,AU,South Australia,-35.020903,138.747261,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2024,10,11,Australia,AU,Queensland,-27.527375,153.111621,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Stringybark,2021,1,21,Australia,AU,Queensland,-27.545442,153.057877,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2024,10,8,Australia,AU,Queensland,-27.531556,153.105265,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2023,7,12,Australia,AU,Queensland,-27.529722,153.103245,EPSG:4326 +HUMAN_OBSERVATION,aquanautlloyd,1,,Tag in left ear,2024,1,5,Australia,AU,New South Wales,-31.455273,152.912731,EPSG:4326 +HUMAN_OBSERVATION,Adam Richardt,1,,"Koala had what appeared to be a sore left eye, as it was red and swollen. It was unperturbed however.",2022,8,28,Australia,AU,Queensland,-27.246998,152.930497,EPSG:4326 +HUMAN_OBSERVATION,carlabruinsma,1,,,2024,8,17,Australia,AU,New South Wales,-28.637402,153.629609,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2024,10,1,Australia,AU,New South Wales,-28.26711,153.389778,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,2,26,Australia,AU,Queensland,-27.530125,153.103343,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Dispersing joey,2024,3,12,Australia,AU,Queensland,-27.530164,153.103383,EPSG:4326 +HUMAN_OBSERVATION,chloektodd,1,,,2022,9,25,Australia,AU,South Australia,-34.987729,138.654792,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala bellowing at the lorikeets and galahs annoying it.,2023,8,21,Australia,AU,Queensland,-28.065728,152.595624,EPSG:4326 +HUMAN_OBSERVATION,tipetalaura,1,,,2020,11,2,Australia,AU,South Australia,-34.903485,138.702587,EPSG:4326 +HUMAN_OBSERVATION,tomeng,1,,,2023,3,24,Australia,AU,Victoria,-37.303182,144.100307,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside cleaners donga,2024,3,2,Australia,AU,Queensland,-27.526923,153.091771,EPSG:4326 +HUMAN_OBSERVATION,melissajane_images,1,,,2022,4,3,Australia,AU,Victoria,-37.35128,144.18245,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy Koala in Jacaranda Tree - attended in person by J Gray TKWR. Koala moved to feed tree in afternoon.,2023,9,3,Australia,AU,Queensland,-27.547819,151.970358,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,10,23,Australia,AU,Queensland,-26.409322,151.816325,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Crossing road. Observed by Fiona Reid. Submitted by Denise Shaw via email.,2023,7,5,Australia,AU,Queensland,-26.354129,151.688941,EPSG:4326 +HUMAN_OBSERVATION,Kymberley,1,,,2023,5,31,Australia,AU,Queensland,-21.687572,148.688115,EPSG:4326 +HUMAN_OBSERVATION,dale-bahrinna,1,,Photo and location supplied by member of public contacting Logan Alberts Rivers Catchment Association - Logan River Koala Project,2022,10,8,Australia,AU,Queensland,-28.10584,152.914336,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,12,21,Australia,AU,South Australia,-34.886444,138.730796,EPSG:4326 +HUMAN_OBSERVATION,williambennett75,1,,,2024,11,3,Australia,AU,Queensland,-27.508372,153.081489,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,7,12,Australia,AU,Queensland,-27.52907,153.103179,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,Left ear yellow tag. Cant see a tag number.,2023,8,26,Australia,AU,Queensland,-27.510074,153.068755,EPSG:4326 +HUMAN_OBSERVATION,lovemandrew,1,,,2020,8,9,Australia,AU,South Australia,-34.778333,138.695796,EPSG:4326 +HUMAN_OBSERVATION,hermanviviers,1,,,2023,1,15,Australia,AU,South Australia,-34.899323,138.721403,EPSG:4326 +HUMAN_OBSERVATION,bethstaylor,1,,,2024,8,2,Australia,AU,Queensland,-19.128533,146.867997,EPSG:4326 +HUMAN_OBSERVATION,Ricardo Simao,1,,,2021,6,14,Australia,AU,Victoria,-38.173372,145.17357,EPSG:4326 +HUMAN_OBSERVATION,kbals,1,,,2023,4,29,Australia,AU,Victoria,-37.875078,145.624088,EPSG:4326 +HUMAN_OBSERVATION,kylecrom,1,,,2024,3,21,Australia,AU,Victoria,-37.578918,143.891266,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2023,4,2,Australia,AU,South Australia,-34.903199,138.705596,EPSG:4326 +HUMAN_OBSERVATION,luxcanary,1,,Sitting in half-dead gum tree next to road,2024,1,16,Australia,AU,South Australia,-34.825443,138.69561,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,15,Australia,AU,Queensland,-27.528437,153.113464,EPSG:4326 +HUMAN_OBSERVATION,Thomas Brodribb,1,,,2022,11,17,Australia,AU,Queensland,-28.235153,152.741565,EPSG:4326 +HUMAN_OBSERVATION,LaurenR,1,,,2023,4,25,Australia,AU,Queensland,-27.531128,153.100211,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknow sex. Observed by Kai Wood-Willems. Submitted via email,2021,1,23,Australia,AU,Queensland,-26.16294,151.97597,EPSG:4326 +HUMAN_OBSERVATION,Pete Petinatos,1,,,2023,3,7,Australia,AU,Victoria,-38.550125,143.744645,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Tallowwood,2020,4,1,Australia,AU,Queensland,-27.551242,153.057361,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,Griffith University AI Koala Project - Learn more here: https://news.griffith.edu.au/2023/09/27/all-eyes-on-koala-movements-with-ai-tech-in-full-swing-this-spring/,2023,10,12,Australia,AU,Queensland,-27.701124,153.189646,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,Tree is Eucalyptus tereticornis.,2023,6,24,Australia,AU,Queensland,-28.120555,152.674879,EPSG:4326 +HUMAN_OBSERVATION,roxym,1,,,2021,9,13,Australia,AU,Victoria,-38.387063,145.133394,EPSG:4326 +HUMAN_OBSERVATION,fdetaille,1,,Healthy joey.,2022,10,25,Australia,AU,Queensland,-27.512433,153.082835,EPSG:4326 +HUMAN_OBSERVATION,benport,1,,,2022,2,27,Australia,AU,Victoria,-38.664559,146.26692,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,4,1,Australia,AU,South Australia,-34.95809,138.699499,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown,2020,6,4,Australia,AU,Queensland,-27.548169,153.058598,EPSG:4326 +HUMAN_OBSERVATION,arthurtsang,1,,,2024,6,23,Australia,AU,Victoria,-38.667222,143.861497,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,1,13,Australia,AU,Queensland,-27.545424,153.072334,EPSG:4326 +HUMAN_OBSERVATION,Lara Solyma,1,,Koala in planted gum on Boonah-Rathdowney Road next to police station.,2022,8,6,Australia,AU,Queensland,-27.999288,152.681361,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,,Young koala.,2023,12,3,Australia,AU,Queensland,-27.28446,152.999833,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,Stanky 2. An old male.,2024,4,8,Australia,AU,South Australia,-34.891814,138.721655,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,10,19,Australia,AU,Victoria,-38.354276,146.386486,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Maisie female koala yellow tag right ear Front of tafe near compressor / generator,2023,6,25,Australia,AU,Queensland,-27.526785,153.090825,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Cheese tree,2020,11,26,Australia,AU,Queensland,-27.551542,153.058169,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,1,Australia,AU,Queensland,-27.527801,153.092323,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,Young male.,2023,12,29,Australia,AU,Queensland,-27.257346,152.046406,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,12,Australia,AU,Queensland,-27.530178,153.10343,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Male. Unknown tree,2021,6,16,Australia,AU,Queensland,-27.551898,153.053949,EPSG:4326 +HUMAN_OBSERVATION,Naturally Gold Coast,1,,,2022,8,28,Australia,AU,Queensland,-27.918693,153.37601,EPSG:4326 +HUMAN_OBSERVATION,mudlark1,1,,,2024,10,23,Australia,AU,Queensland,-27.553013,153.052428,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,2,26,Australia,AU,Victoria,-38.671353,146.163742,EPSG:4326 +HUMAN_OBSERVATION,bel_lie,1,,,2020,12,29,Australia,AU,South Australia,-35.061783,138.612533,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,Unknown,2020,6,11,Australia,AU,Queensland,-27.550166,153.04897,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Mum & joey,2022,12,21,Australia,AU,Queensland,-27.529439,153.105258,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,1,29,Australia,AU,South Australia,-34.891963,138.713776,EPSG:4326 +HUMAN_OBSERVATION,margadelie,1,,Yes another koala..love them,2022,4,4,Australia,AU,South Australia,-34.965719,138.692248,EPSG:4326 +HUMAN_OBSERVATION,suecee,1,,Huge amount of droppings under a eucalypt. Koala known in area. No evidence of wombats or wallaby in reserve.,2021,6,6,Australia,AU,Victoria,-38.174557,145.125797,EPSG:4326 +HUMAN_OBSERVATION,Andrew Rock,1,MALE,,2022,10,31,Australia,AU,Queensland,-27.254561,152.108641,EPSG:4326 +HUMAN_OBSERVATION,Steve Dew,1,,,2022,2,28,Australia,AU,Victoria,-37.895649,142.061747,EPSG:4326 +HUMAN_OBSERVATION,faufauh,1,,,2021,4,1,Australia,AU,Queensland,-27.535087,153.221289,EPSG:4326 +HUMAN_OBSERVATION,linger,1,,,2021,1,13,Australia,AU,Victoria,-38.056576,141.923485,EPSG:4326 +HUMAN_OBSERVATION,faufauh,1,,,2021,1,17,Australia,AU,Queensland,-27.534938,153.221216,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,,2021,11,29,Australia,AU,Queensland,-27.329503,151.933822,EPSG:4326 +HUMAN_OBSERVATION,shnon,1,,,2023,10,20,Australia,AU,Victoria,-36.926985,145.54291,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,"Small koala arrived in tree, stayed briefly and moved on. Unclear where it came from and where it went. (photo: Janine Green) LCA3013",2021,10,16,Australia,AU,Queensland,-27.591155,152.194305,EPSG:4326 +HUMAN_OBSERVATION,crisolimat,1,,,2023,10,21,Australia,AU,Victoria,-38.669428,143.860793,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female carrying joey in pouch,2023,8,18,Australia,AU,Queensland,-27.529522,153.105416,EPSG:4326 +HUMAN_OBSERVATION,oliverfamily,1,,,2022,11,6,Australia,AU,Queensland,-27.41673,151.937676,EPSG:4326 +HUMAN_OBSERVATION,ckcdavis,1,,,2022,4,10,Australia,AU,Queensland,-27.510497,153.083345,EPSG:4326 +HUMAN_OBSERVATION,Alicia,1,,No collar no tags that I could see,2023,10,18,Australia,AU,Queensland,-27.93334,153.347788,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Mum & joey,2023,10,20,Australia,AU,Queensland,-27.528891,153.111166,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,14,Australia,AU,Queensland,-27.529347,153.109638,EPSG:4326 +HUMAN_OBSERVATION,laurenbeekman,1,,,2021,11,15,Australia,AU,Queensland,-27.736471,153.189987,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A5 RIGHT ear - Cindy,2023,12,9,Australia,AU,Queensland,-27.527405,153.110284,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,White foot and heel - right foot,2023,1,29,Australia,AU,Queensland,-27.526526,153.090705,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,27,Australia,AU,Queensland,-27.526989,153.090488,EPSG:4326 +HUMAN_OBSERVATION,Emerson Castle,1,,,2023,9,10,Australia,AU,South Australia,-35.156921,138.564218,EPSG:4326 +HUMAN_OBSERVATION,Nevarac,1,FEMALE,,2021,10,20,Australia,AU,Queensland,-27.622749,153.157043,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2024,1,31,Australia,AU,Queensland,-27.510545,153.085152,EPSG:4326 +HUMAN_OBSERVATION,rachael_williams,1,,,2022,9,18,Australia,AU,Queensland,-27.420672,153.493163,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,2,7,Australia,AU,New South Wales,-28.260465,153.399611,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,12,29,Australia,AU,Queensland,-27.530496,153.104448,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - orange tag RIGHT ear - Naomi,2023,7,14,Australia,AU,Queensland,-27.530026,153.103518,EPSG:4326 +HUMAN_OBSERVATION,bicky,1,,,2024,9,3,Australia,AU,Queensland,-27.509233,153.086373,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2024,5,8,Australia,AU,Queensland,-27.509065,153.068033,EPSG:4326 +HUMAN_OBSERVATION,Rush Ecology,1,,Scratches on a Grey Gum.. Sightings a few hundred metres away.,2023,5,22,Australia,AU,New South Wales,-33.497576,150.518155,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,3,30,Australia,AU,Queensland,-27.529255,153.10615,EPSG:4326 +HUMAN_OBSERVATION,khewison,1,,,2024,11,4,Australia,AU,South Australia,-35.024798,138.740828,EPSG:4326 +HUMAN_OBSERVATION,Martin Predavec,1,,,2024,1,9,Australia,AU,New South Wales,-33.076711,151.095146,EPSG:4326 +HUMAN_OBSERVATION,Michelle M,1,,,2023,11,6,Australia,AU,Queensland,-27.703163,153.192688,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,12,Australia,AU,Queensland,-26.371076,151.769552,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - rescued from a concrete block wall & released safely. She had descended much lower an hour later,2024,6,12,Australia,AU,Queensland,-27.528033,153.112474,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,2,Australia,AU,Queensland,-26.154652,151.801326,EPSG:4326 +HUMAN_OBSERVATION,carinogiulia,1,,,2024,3,8,Australia,AU,Victoria,-38.668067,143.860763,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2024,10,6,Australia,AU,Queensland,-27.547938,153.058084,EPSG:4326 +HUMAN_OBSERVATION,Bilby Blooms,1,,,2024,10,10,Australia,AU,New South Wales,-31.576008,149.341033,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,,2021,7,4,Australia,AU,Victoria,-37.595419,143.898763,EPSG:4326 +HUMAN_OBSERVATION,cv173,1,,,2024,10,15,Australia,AU,Queensland,-27.856406,152.693037,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,facing towards a cliff,2021,5,8,Australia,AU,Queensland,-28.200933,153.176436,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,,2022,9,20,Australia,AU,Queensland,-27.510405,153.069451,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,8,6,Australia,AU,Queensland,-27.549735,153.047097,EPSG:4326 +HUMAN_OBSERVATION,sean5155,1,,,2023,10,31,Australia,AU,South Australia,-35.008647,138.753447,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside nursery Mother and joey,2024,9,29,Australia,AU,Queensland,-27.527218,153.091534,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Young male. Observed crossing the road and joining an older female (possibly his mother). Observed by Lucy Finney. Submitted by Wendy Taylor via msg.,2024,7,22,Australia,AU,Queensland,-26.522552,151.867391,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,10,19,Australia,AU,Queensland,-27.529648,153.106031,EPSG:4326 +HUMAN_OBSERVATION,Tejas Damania,1,,,2022,10,26,Australia,AU,Victoria,-38.668711,143.861167,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2023,1,4,Australia,AU,South Australia,-34.954243,138.690337,EPSG:4326 +HUMAN_OBSERVATION,bar76,1,,,2024,4,27,Australia,AU,New South Wales,-33.114143,151.117373,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In shade in large Black Wattle,2020,2,3,Australia,AU,Queensland,-27.551036,153.057719,EPSG:4326 +HUMAN_OBSERVATION,Rusty,1,,,2022,10,25,Australia,AU,South Australia,-35.082054,138.725979,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,1,26,Australia,AU,Queensland,-27.528859,153.11183,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,"Male, tag LEFT ear ?? Bandit",2023,1,23,Australia,AU,Queensland,-27.529867,153.110274,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2020,4,6,Australia,AU,South Australia,-34.956881,138.697471,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,Joshua Kennish photographer,2021,10,28,Australia,AU,Queensland,-27.321903,152.617843,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2022,11,24,Australia,AU,Queensland,-27.544689,153.072246,EPSG:4326 +HUMAN_OBSERVATION,mikew65,1,,Adult female and joey.,2024,2,15,Australia,AU,South Australia,-34.825556,135.686667,EPSG:4326 +HUMAN_OBSERVATION,Anne-Marie Griffin,1,MALE,,2024,3,2,Australia,AU,New South Wales,-33.758096,149.472779,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,Koala with joey cuddled up in Flooded Gum tree.,2021,10,20,Australia,AU,New South Wales,-28.258515,153.402268,EPSG:4326 +HUMAN_OBSERVATION,David Gobbett,1,,,2024,1,15,Australia,AU,South Australia,-34.916747,138.538578,EPSG:4326 +HUMAN_OBSERVATION,Dave Kuchel,1,,,2021,8,15,Australia,AU,South Australia,-34.914958,138.558679,EPSG:4326 +HUMAN_OBSERVATION,annamills,1,,,2023,7,2,Australia,AU,Victoria,-38.464525,145.018892,EPSG:4326 +HUMAN_OBSERVATION,smoothygang,1,,2nd koala today. At the front gate. Very difficult to photograph with harsh light and glare in the AM. Tried again in afternoon - it had moved in the tree.,2024,11,11,Australia,AU,Queensland,-27.325487,151.935622,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,8,13,Australia,AU,South Australia,-34.889991,138.729876,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,9,18,Australia,AU,South Australia,-34.891725,138.723016,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,7,Australia,AU,South Australia,-34.890778,138.730435,EPSG:4326 +HUMAN_OBSERVATION,julietandbrian,1,,,2022,12,5,Australia,AU,Queensland,-27.348613,152.062961,EPSG:4326 +HUMAN_OBSERVATION,maria_hayes55,1,,Ric Nattrass Environmental Park,2023,7,19,Australia,AU,Queensland,-27.621983,152.902222,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2022,9,19,Australia,AU,New South Wales,-28.257885,153.400635,EPSG:4326 +HUMAN_OBSERVATION,ecologyluvr,1,,,2024,10,29,Australia,AU,Queensland,-28.187872,153.187566,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,3,22,Australia,AU,Queensland,-27.526804,153.091542,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,9,Australia,AU,Queensland,-27.521602,153.105719,EPSG:4326 +HUMAN_OBSERVATION,bulae,1,,,2022,5,28,Australia,AU,New South Wales,-34.756534,146.568058,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,8,11,Australia,AU,Queensland,-27.529502,153.105925,EPSG:4326 +HUMAN_OBSERVATION,lukeled,1,,,2023,10,27,Australia,AU,South Australia,-36.821806,140.070119,EPSG:4326 +HUMAN_OBSERVATION,Sam,1,,,2024,10,12,Australia,AU,Queensland,-19.127393,146.870014,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,female,2023,11,19,Australia,AU,Queensland,-27.759233,151.569298,EPSG:4326 +HUMAN_OBSERVATION,Romain SOUCHAUD,1,,,2024,5,5,Australia,AU,Queensland,-19.127278,146.868333,EPSG:4326 +HUMAN_OBSERVATION,Kathleen Stewart,1,,,2024,10,30,Australia,AU,Queensland,-27.276317,152.978438,EPSG:4326 +HUMAN_OBSERVATION,lesleybooks,1,,,2021,1,30,Australia,AU,Queensland,-27.582516,152.444556,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE - in block of land just sold for development,2023,5,6,Australia,AU,Queensland,-27.527784,153.091123,EPSG:4326 +HUMAN_OBSERVATION,Charley Hesse,1,,,2022,10,30,Australia,AU,Queensland,-27.508676,153.080366,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2023,12,29,Australia,AU,Queensland,-27.527001,153.090733,EPSG:4326 +HUMAN_OBSERVATION,Charles Lam,1,,,2023,8,12,Australia,AU,Queensland,-27.225656,153.071251,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,"Healthy Male Koala - Farm bushland, Silverleigh Qld. Seen regularly in different trees on property. Observer Wayne & Miriam C for Toowoomba Koala and Wildllife Rescue",2022,11,14,Australia,AU,Queensland,-27.338424,151.778008,EPSG:4326 +HUMAN_OBSERVATION,Dee Hulton-Smith,1,,,2022,10,28,Australia,AU,Queensland,-27.509631,153.090333,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,,2021,8,11,Australia,AU,Queensland,-27.547384,153.058882,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. A frequent visitor to the property. Observed by Ken Burke. Submitted via email.,2023,9,3,Australia,AU,Queensland,-26.208028,151.914231,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,FEMALE,"Adult mum & Joey. Healthy. Trapped on the advice of Koala rescue Australia after viewing photos, Mums eyes looked puffy and possibly had a wet bottom. Both were safely trapped, koala rescue Again carefully reviewed new photos along with the wildlife carer who was with the koalas. Both were given a healthy status on closer inspection and released back into the near by trees. Observed by Wendy Taylor. Submitted by Denise Shaw via email.",2023,10,24,Australia,AU,Queensland,-26.155358,151.750039,EPSG:4326 +HUMAN_OBSERVATION,cicadaexplorermore,1,,,2024,2,24,Australia,AU,South Australia,-35.083108,138.683411,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,2,10,Australia,AU,Queensland,-27.528205,153.103648,EPSG:4326 +HUMAN_OBSERVATION,nbhighfields,1,,,2023,2,11,Australia,AU,Queensland,-27.445924,151.955365,EPSG:4326 +HUMAN_OBSERVATION,Liz,1,,,2021,10,20,Australia,AU,South Australia,-34.898331,138.692724,EPSG:4326 +HUMAN_OBSERVATION,Marshal,1,,,2020,10,7,Australia,AU,Victoria,-38.802014,143.476941,EPSG:4326 +HUMAN_OBSERVATION,kenty_8881,1,,,2021,1,4,Australia,AU,South Australia,-37.967955,140.890013,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,In Eucalyptus nicholii!,2020,5,2,Australia,AU,Victoria,-38.671289,146.164181,EPSG:4326 +HUMAN_OBSERVATION,travisblack,1,,,2024,10,30,Australia,AU,Queensland,-27.811517,153.062366,EPSG:4326 +HUMAN_OBSERVATION,nhaass,1,,,2024,10,19,Australia,AU,Queensland,-27.502513,153.082474,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road,2024,3,9,Australia,AU,Queensland,-27.52642,153.090565,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Front of TAFE Cavendish Road Mother and joey,2023,12,9,Australia,AU,Queensland,-27.527134,153.091128,EPSG:4326 +HUMAN_OBSERVATION,Astrid Knirsch,1,,It stayed in the tree behind our house for half a day.,2020,11,17,Australia,AU,New South Wales,-30.535,151.656389,EPSG:4326 +HUMAN_OBSERVATION,Angel Ric,1,,,2023,11,15,Australia,AU,Victoria,-37.922263,147.727355,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,,Healthy adult koala- observation and health check by B Gray- Toowoomba Koala & Wildlife Rescue,2022,11,23,Australia,AU,Queensland,-27.467401,151.946392,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,23,Australia,AU,Queensland,-27.526834,153.091546,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,In Eucalyptus globulus,2020,4,30,Australia,AU,Victoria,-38.671446,146.163012,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,No ear tags seen. Reported that this koala is seen very regularly at this location and tree,2020,6,25,Australia,AU,Queensland,-27.506118,153.086672,EPSG:4326 +HUMAN_OBSERVATION,rhipiduraridge,1,,,2021,2,19,Australia,AU,Victoria,-38.671275,146.163742,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Next to I block theatrette Jacob Jnr,2024,9,29,Australia,AU,Queensland,-27.525905,153.091836,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Leen Rhetto Antro. Submitted via FB.,2024,8,18,Australia,AU,Queensland,-26.444967,151.969051,EPSG:4326 +HUMAN_OBSERVATION,Martin Bennett,1,,,2024,8,24,Australia,AU,Queensland,-27.710949,152.622335,EPSG:4326 +HUMAN_OBSERVATION,sharynbartlem,1,MALE,"Juvenile seen in the middle of a busy road, trying to cross",2023,6,26,Australia,AU,Queensland,-27.502178,153.074993,EPSG:4326 +HUMAN_OBSERVATION,melcm,1,,,2022,11,1,Australia,AU,Victoria,-37.690687,144.03112,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2024,8,30,Australia,AU,Queensland,-26.158158,151.752608,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.384507,145.306121,EPSG:4326 +HUMAN_OBSERVATION,Antoni Camozzato,1,,,2023,1,4,Australia,AU,South Australia,-34.957508,138.695451,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - orange tag RIGHT ear - Naomi,2024,5,3,Australia,AU,Queensland,-27.53058,153.103977,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland,2023,11,19,Australia,AU,Queensland,-27.528073,153.092366,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,FEMALE,Displaced Koala - Rescue arranged by TKWR and taken to Wacol RSPCA Wildlife Hospital for assessment. Photos by J Jellicoe for TKWR,2023,9,16,Australia,AU,Queensland,-27.578931,151.971054,EPSG:4326 +HUMAN_OBSERVATION,Karana Downs Koala Tracker,1,,"Young koala joey, about 10m up the tree, right on Mt Crosby Rd. Looked healthy and was eating leaf. Has moved on by the next day.",2021,1,15,Australia,AU,Queensland,-27.535778,152.806262,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,#3,2023,8,20,Australia,AU,Queensland,-27.511737,153.084231,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,9,15,Australia,AU,Queensland,-27.546473,153.058598,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2021,9,11,Australia,AU,Queensland,-28.002598,152.680615,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,5,17,Australia,AU,South Australia,-35.002649,138.656457,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2020,4,19,Australia,AU,South Australia,-35.008719,138.637438,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,"No ear tag seen, Resting in a Tallowwood, Eucalyptus microcorys.",2022,10,11,Australia,AU,Queensland,-27.510232,153.069209,EPSG:4326 +HUMAN_OBSERVATION,hollythefrog,1,,,2024,10,8,Australia,AU,Queensland,-27.917589,153.373406,EPSG:4326 +HUMAN_OBSERVATION,anscam,1,,,2020,9,26,Australia,AU,South Australia,-34.921111,138.779444,EPSG:4326 +HUMAN_OBSERVATION,Amaroo Environmental Education Centre,1,,,2023,9,11,Australia,AU,Queensland,-27.423883,151.947372,EPSG:4326 +HUMAN_OBSERVATION,Tim Boote,1,,,2022,2,6,Australia,AU,South Australia,-34.857217,138.675042,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag RIGHT ear - Cindy,2023,9,9,Australia,AU,Queensland,-27.527311,153.107285,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Yellow tag right ear,2023,3,19,Australia,AU,Queensland,-27.527115,153.092853,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,7,15,Australia,AU,Queensland,-27.529702,153.103689,EPSG:4326 +HUMAN_OBSERVATION,border1976,1,,"This was in the Environmental Park in Pottsville on the side of the road. It may have been a mum and joey, it was hard to make out.",2021,8,20,Australia,AU,New South Wales,-28.38335,153.562133,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside K block mowing shed,2023,12,25,Australia,AU,Queensland,-27.525887,153.090882,EPSG:4326 +HUMAN_OBSERVATION,Colin Trainor,1,,Seen by Emma Green,2023,8,17,Australia,AU,Queensland,-27.800635,153.207973,EPSG:4326 +HUMAN_OBSERVATION,eldutch,1,,,2022,12,23,Australia,AU,Victoria,-38.318367,142.362473,EPSG:4326 +HUMAN_OBSERVATION,Mike and Cathy Beamish,1,FEMALE,,2021,6,6,Australia,AU,Victoria,-38.387018,146.269469,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,4,24,Australia,AU,Queensland,-27.273362,152.939682,EPSG:4326 +HUMAN_OBSERVATION,jasonashwell,1,,"Was dark so silhouetted it against the moon, it was moving on the ground but climbed this young high pruned black wattle when I came bumbling along.",2023,5,28,Australia,AU,Victoria,-38.502403,142.981511,EPSG:4326 +HUMAN_OBSERVATION,mackay-pitham,1,,,2022,10,8,Australia,AU,Victoria,-38.402025,142.35919,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,3,11,Australia,AU,Queensland,-27.525719,153.110788,EPSG:4326 +HUMAN_OBSERVATION,krazzeekiwi1,1,,,2023,9,5,Australia,AU,Queensland,-27.258146,152.04571,EPSG:4326 +HUMAN_OBSERVATION,Vanessa Pinos,1,FEMALE,,2024,10,17,Australia,AU,South Australia,-35.043398,138.651767,EPSG:4326 +HUMAN_OBSERVATION,Donna Belder,1,,,2024,10,29,Australia,AU,South Australia,-35.707375,137.494675,EPSG:4326 +HUMAN_OBSERVATION,Teagan McKillop,1,,,2020,11,7,Australia,AU,Queensland,-27.457878,152.402991,EPSG:4326 +HUMAN_OBSERVATION,janclewett,1,,,2024,11,16,Australia,AU,Queensland,-27.295467,152.044433,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,,2022,1,3,Australia,AU,New South Wales,-34.130558,150.982222,EPSG:4326 +HUMAN_OBSERVATION,Michael Tervo,1,,,2024,8,24,Australia,AU,Queensland,-27.511062,153.087295,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Outside tafe nursery gates,2023,7,15,Australia,AU,Queensland,-27.527366,153.091533,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,7,7,Australia,AU,Queensland,-27.339465,152.613312,EPSG:4326 +HUMAN_OBSERVATION,Paddy Kemner,1,,,2022,10,25,Australia,AU,South Australia,-35.010942,138.655742,EPSG:4326 +HUMAN_OBSERVATION,timpage585,1,,,2023,2,3,Australia,AU,Queensland,-27.545491,153.073222,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,5,Australia,AU,Queensland,-26.152714,151.799648,EPSG:4326 +HUMAN_OBSERVATION,elizabethhatfield,1,,I'm pretty certain this is the girl who came to this tree on 11/6/23. She has been there all the time since. Not particularly active and she seems to have a couple of preferred forks for sitting in. The tree is a bluegum. I'm wondering if she is making a baby up there. She is very quiet. Previous observations: https://www.inaturalist.org/observations/166718119 https://www.inaturalist.org/observations/169110882,2023,7,7,Australia,AU,Victoria,-37.874554,142.29091,EPSG:4326 +HUMAN_OBSERVATION,Louis O'Neill,1,,,2024,10,6,Australia,AU,Victoria,-38.551995,143.748292,EPSG:4326 +HUMAN_OBSERVATION,Jo Track,1,,,2024,9,11,Australia,AU,Queensland,-27.823679,152.994034,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Sport n rec picnic area,2023,12,26,Australia,AU,Queensland,-27.525542,153.092115,EPSG:4326 +HUMAN_OBSERVATION,Isaac Clarey,1,,,2021,6,12,Australia,AU,Victoria,-38.555291,143.614761,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,28,Australia,AU,Queensland,-27.527261,153.091646,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Inside nursery grounds,2024,11,24,Australia,AU,Queensland,-27.528004,153.092362,EPSG:4326 +HUMAN_OBSERVATION,cmatheso,1,,,2024,6,13,Australia,AU,Queensland,-27.552268,153.056155,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,1,9,Australia,AU,New South Wales,-28.253559,153.377158,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Green tag RIGHT ear - probably Joy,2023,1,25,Australia,AU,Queensland,-27.527036,153.109291,EPSG:4326 +HUMAN_OBSERVATION,Leah Sun,1,,I was actually a bit surprised that there is only one Koala species :|,2024,10,29,Australia,AU,Victoria,-38.666569,143.857756,EPSG:4326 +HUMAN_OBSERVATION,spacelargo,1,,,2023,2,18,Australia,AU,Victoria,-38.792018,143.615473,EPSG:4326 +HUMAN_OBSERVATION,Gawain,1,,,2024,7,1,Australia,AU,Victoria,-38.374148,145.314576,EPSG:4326 +HUMAN_OBSERVATION,leito19,1,,,2024,6,11,Australia,AU,Queensland,-19.130982,146.869691,EPSG:4326 +HUMAN_OBSERVATION,Francesco Martoni,1,,,2022,1,29,Australia,AU,Victoria,-38.551586,143.736563,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2024,4,20,Australia,AU,Queensland,-27.529924,153.103414,EPSG:4326 +HUMAN_OBSERVATION,acamens,1,,,2021,5,2,Australia,AU,South Australia,-35.015824,138.670366,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,,2023,4,12,Australia,AU,Queensland,-27.526773,153.108369,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,6,24,Australia,AU,South Australia,-34.872606,138.731997,EPSG:4326 +HUMAN_OBSERVATION,diannebt,1,,Male "Bald Ear". Seen middle 45 Baker on 27/9. Called in night and just before this sighting.,2021,9,28,Australia,AU,New South Wales,-30.521537,151.519276,EPSG:4326 +HUMAN_OBSERVATION,Mononymous,1,,,2024,4,12,Australia,AU,Victoria,-38.372055,145.314941,EPSG:4326 +HUMAN_OBSERVATION,Christine Heiser,1,,,2024,10,7,Australia,AU,Queensland,-26.417057,151.823492,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,Brown female and joey,2020,10,6,Australia,AU,New South Wales,-28.254355,153.377453,EPSG:4326 +HUMAN_OBSERVATION,Thomas Mesaglio,1,,,2021,1,11,Australia,AU,New South Wales,-31.456097,152.886688,EPSG:4326 +HUMAN_OBSERVATION,truz,1,,,2024,2,3,Australia,AU,New South Wales,-32.713599,152.071494,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2023,11,29,Australia,AU,Queensland,-27.654855,151.604965,EPSG:4326 +HUMAN_OBSERVATION,Huey,1,,,2023,7,15,Australia,AU,South Australia,-35.960427,136.810048,EPSG:4326 +HUMAN_OBSERVATION,Ramit Singal,1,,,2023,9,30,Australia,AU,Queensland,-19.130772,146.865037,EPSG:4326 +HUMAN_OBSERVATION,regan_scheuber,1,,,2023,5,9,Australia,AU,Queensland,-27.566214,151.994284,EPSG:4326 +HUMAN_OBSERVATION,Matt Campbell,1,,,2023,1,15,Australia,AU,Victoria,-38.354793,146.387725,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,,2023,4,28,Australia,AU,Queensland,-27.526829,153.091507,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Seen approximately 1.2 km before the car park area on recreation road. Observed by Leanne Welch. Submitted via email.,2023,11,6,Australia,AU,Queensland,-26.448501,151.73145,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Male. Deceased. Hit by car & truck. Observed by Tracy Riddell and daughter. Submitted by Wendy Taylor via msg.,2024,10,23,Australia,AU,Queensland,-26.602338,151.829829,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of woodland Mother and joey,2023,9,10,Australia,AU,Queensland,-27.52742,153.092357,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Woodland gully,2024,3,10,Australia,AU,Queensland,-27.527549,153.092616,EPSG:4326 +HUMAN_OBSERVATION,Jo,1,,"Survey 2 LNSF FoN. Mixed fresh and older Koala markings on Grey Gum, known area (BioNet transect 2021)",2023,7,16,Australia,AU,New South Wales,-30.559978,152.993046,EPSG:4326 +HUMAN_OBSERVATION,kis4koala,1,FEMALE,"Joey exploring while Mum looks on / or perhaps joey has been told to move out? 4th photo shows tree both Mum and joey are sharing. Mum is in top left corner, joey bottom right.",2023,10,29,Australia,AU,Queensland,-27.284515,152.999856,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,MALE,Adult. Healthy. Unknown sex. Observed by Wendy Taylor. Submitted via msg.,2024,2,22,Australia,AU,Queensland,-26.137974,151.788299,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Top of Woodland gully,2024,6,2,Australia,AU,Queensland,-27.527422,153.092295,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi's joey - dispersed,2023,4,8,Australia,AU,Queensland,-27.530523,153.10386,EPSG:4326 +HUMAN_OBSERVATION,toohey-forest-wildlife,1,,In Spotted Gum,2020,2,19,Australia,AU,Queensland,-27.551591,153.05697,EPSG:4326 +HUMAN_OBSERVATION,allambiretreat,1,,,2022,6,11,Australia,AU,Queensland,-27.339705,152.848463,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,FEMALE,Female - known as Niki - & joey,2024,11,8,Australia,AU,Queensland,-27.528028,153.103956,EPSG:4326 +HUMAN_OBSERVATION,Judi Gray - Toowoomba Koala Wildlife Rescue,1,FEMALE,Healthy femaleadult koala. Joint observation with Madeline W. & J Gray Toowoomba Koala and Wildlife Rescue,2023,11,13,Australia,AU,Queensland,-27.474704,151.955615,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Unknown sex. Healthy. Observed by Wendy Taylor. Submitted via msg.,2023,12,17,Australia,AU,Queensland,-26.155079,151.749888,EPSG:4326 +HUMAN_OBSERVATION,soniaalcorn,1,,,2023,1,13,Australia,AU,Queensland,-28.081415,152.849872,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,MALE,Tristania & Wisteria Woodland Jacob Jnr Two koalas same tree,2024,10,12,Australia,AU,Queensland,-27.524089,153.09333,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,MALE,Photos are about 10min apart and in that time Koala has moved to a better spot?,2021,1,20,Australia,AU,Queensland,-27.513497,153.07948,EPSG:4326 +HUMAN_OBSERVATION,scottyw,1,,,2022,10,19,Australia,AU,Victoria,-38.398333,145.108056,EPSG:4326 +HUMAN_OBSERVATION,kerriecull7,1,MALE,Koala in tree near house. Not making a lot of noise but he is there.,2024,2,21,Australia,AU,Queensland,-27.358441,152.074603,EPSG:4326 +HUMAN_OBSERVATION,Mark Clarke,1,,,2021,11,14,Australia,AU,Queensland,-27.566556,153.097085,EPSG:4326 +HUMAN_OBSERVATION,Greg Tasney,1,,,2020,10,26,Australia,AU,Queensland,-27.549457,153.059838,EPSG:4326 +HUMAN_OBSERVATION,carolmaree,1,,,2022,12,13,Australia,AU,Queensland,-28.211487,152.866043,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,5,9,Australia,AU,South Australia,-34.871752,138.731945,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Naomi - orange tag R ear - & joey,2022,12,31,Australia,AU,Queensland,-27.529917,153.103182,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,8,Australia,AU,South Australia,-34.889549,138.722849,EPSG:4326 +HUMAN_OBSERVATION,Sean,1,,Peaceful nap high up in the tree.,2023,10,8,Australia,AU,Queensland,-27.752474,153.151276,EPSG:4326 +HUMAN_OBSERVATION,lca_inc,1,,LCA1953 (photo: Gordon Claridge),2020,1,20,Australia,AU,Queensland,-27.496634,152.249513,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2023,10,16,Australia,AU,South Australia,-34.889587,138.727329,EPSG:4326 +HUMAN_OBSERVATION,Misty Neilson,1,,Adult. Healthy. Unknown sex. In tree outside kitchen window. Observed by Ashlee Christensen. Forwarded by email.,2021,8,11,Australia,AU,Queensland,-25.539886,151.073295,EPSG:4326 +HUMAN_OBSERVATION,katietoney,1,,,2024,7,23,Australia,AU,South Australia,-34.866659,135.668719,EPSG:4326 +HUMAN_OBSERVATION,south49,1,,,2021,6,4,Australia,AU,Victoria,-36.556288,146.709852,EPSG:4326 +HUMAN_OBSERVATION,pittsworthlandcare,1,,,2024,1,27,Australia,AU,Queensland,-27.649705,151.715317,EPSG:4326 +HUMAN_OBSERVATION,mrsdew17,1,,,2024,4,30,Australia,AU,South Australia,-34.890289,138.731508,EPSG:4326 +HUMAN_OBSERVATION,"FoCC (Friends of the Canadian Corridor) Ballarat, Victoria, Australia",1,,Scat - collection for research on genetic diversity amongst local koala populations,2023,5,8,Australia,AU,Victoria,-37.834621,144.256373,EPSG:4326 +HUMAN_OBSERVATION,JemmaCripps,1,,,2022,11,22,Australia,AU,Victoria,-38.531318,143.494802,EPSG:4326 +HUMAN_OBSERVATION,Stephen Fricker,1,,,2020,4,26,Australia,AU,South Australia,-34.931048,138.702816,EPSG:4326 +HUMAN_OBSERVATION,happy_wanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.924432,147.727746,EPSG:4326 +HUMAN_OBSERVATION,greg n,1,,,2023,10,1,Australia,AU,Queensland,-27.508924,153.068874,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Entrance to woodland,2024,3,29,Australia,AU,Queensland,-27.527314,153.092262,EPSG:4326 +HUMAN_OBSERVATION,bevmill,1,,Female - red tag A18 RIGHT ear - Campo,2023,9,29,Australia,AU,Queensland,-27.527832,153.111491,EPSG:4326 +HUMAN_OBSERVATION,Rosee,1,,,2024,6,6,Australia,AU,South Australia,-34.935161,138.698572,EPSG:4326 +HUMAN_OBSERVATION,James H,1,,,2024,7,7,Australia,AU,Queensland,-27.339465,152.613312,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,,Front of TAFE Cavendish Road Maisie’s Joey,2024,11,10,Australia,AU,Queensland,-27.526817,153.090366,EPSG:4326 +HUMAN_OBSERVATION,zitafewster,1,,,2024,1,14,Australia,AU,South Australia,-35.012194,138.717296,EPSG:4326 +HUMAN_OBSERVATION,jasminers,1,,,2023,8,24,Australia,AU,Victoria,-38.835858,143.514663,EPSG:4326 +HUMAN_OBSERVATION,Susan,1,,,2020,4,29,Australia,AU,Queensland,-27.547275,153.066673,EPSG:4326 +HUMAN_OBSERVATION,kerryn01,1,,3 Koalas spotted in close proximity. One taken to wildlife hospital for checking by Koala Rescue,2024,9,21,Australia,AU,Queensland,-27.251628,152.975447,EPSG:4326 +HUMAN_OBSERVATION,Jess,1,,,2023,7,23,Australia,AU,Queensland,-27.798555,152.934629,EPSG:4326 +HUMAN_OBSERVATION,bluewren3719,1,,,2023,2,26,Australia,AU,Victoria,-36.955773,145.550477,EPSG:4326 +HUMAN_OBSERVATION,talialovelinay,1,FEMALE,Outside nursery,2024,10,12,Australia,AU,Queensland,-27.527123,153.091729,EPSG:4326 +HUMAN_OBSERVATION,Wade Hadwen,1,,,2024,5,2,Australia,AU,Queensland,-27.551329,153.057637,EPSG:4326 +HUMAN_OBSERVATION,sarahcobbaus,1,,,2021,2,8,Australia,AU,New South Wales,-28.252489,153.375901,EPSG:4326 +HUMAN_OBSERVATION,,1,MALE,"big male, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.401919,153.438314,EPSG:4326 +HUMAN_OBSERVATION,,1,,"mum & bub, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.403763,153.440233,EPSG:4326 +HUMAN_OBSERVATION,,1,MALE,,2020,10,17,Australia,AU,Queensland,-27.397136,153.440662,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,"mum & bub, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.395758,153.438974,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,10,17,Australia,AU,Queensland,-27.403815,153.440901,EPSG:4326 +HUMAN_OBSERVATION,,1,MALE,,2020,10,17,Australia,AU,Queensland,-27.401346,153.439445,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,10,17,Australia,AU,Queensland,-27.399804,153.439004,EPSG:4326 +HUMAN_OBSERVATION,,1,,"mum & bub, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.39249,153.441564,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,,2020,10,17,Australia,AU,Queensland,-27.393783,153.439558,EPSG:4326 +HUMAN_OBSERVATION,,1,,"mum & bub, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.395792,153.438879,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,10,17,Australia,AU,Queensland,-27.395914,153.4444,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,10,17,Australia,AU,Queensland,-27.409139,153.461457,EPSG:4326 +HUMAN_OBSERVATION,,1,,"mum & bub, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.395758,153.438974,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,,2020,10,17,Australia,AU,Queensland,-27.405235,153.437346,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,"missed by area 14, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.40217,153.438679,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,10,17,Australia,AU,Queensland,-27.40157,153.440184,EPSG:4326 +HUMAN_OBSERVATION,,1,,"mum & bub, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.40708,153.450534,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,"mum & bub, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.40708,153.450534,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,"mum & bub, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.401025,153.438179,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,,2020,10,17,Australia,AU,Queensland,-27.392489,153.442835,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,"mum & bub, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.395792,153.438879,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,10,17,Australia,AU,Queensland,-27.39625,153.438181,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,,2020,10,17,Australia,AU,Queensland,-27.400145,153.442596,EPSG:4326 +HUMAN_OBSERVATION,,1,,"same tree, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.40106,153.438554,EPSG:4326 +HUMAN_OBSERVATION,,1,MALE,,2020,10,17,Australia,AU,Queensland,-27.395252,153.44816,EPSG:4326 +HUMAN_OBSERVATION,,1,MALE,,2020,10,17,Australia,AU,Queensland,-27.403746,153.440102,EPSG:4326 +HUMAN_OBSERVATION,,1,MALE,,2020,10,17,Australia,AU,Queensland,-27.4034,153.438239,EPSG:4326 +HUMAN_OBSERVATION,,1,MALE,,2020,10,17,Australia,AU,Queensland,-27.392681,153.453095,EPSG:4326 +HUMAN_OBSERVATION,,1,MALE,"missed by Area 3, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.395231,153.441547,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,"mum & bub, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.403763,153.440233,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,"old school house park, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.397357,153.439186,EPSG:4326 +HUMAN_OBSERVATION,,1,MALE,"old school house park, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.397447,153.439126,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,,2020,10,17,Australia,AU,Queensland,-27.396249,153.432919,EPSG:4326 +HUMAN_OBSERVATION,,1,,"cabarita park, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.400259,153.437913,EPSG:4326 +HUMAN_OBSERVATION,,1,,"mum & bub, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.397119,153.440308,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,"mum & bub, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.397119,153.440308,EPSG:4326 +HUMAN_OBSERVATION,,1,MALE,,2020,10,17,Australia,AU,Queensland,-27.401096,153.441639,EPSG:4326 +HUMAN_OBSERVATION,,1,MALE,,2020,10,17,Australia,AU,Queensland,-27.394905,153.440951,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,"same tree, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.40106,153.438554,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,"old school house park, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.397592,153.439056,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,,2020,10,17,Australia,AU,Queensland,-27.393954,153.453141,EPSG:4326 +HUMAN_OBSERVATION,,1,MALE,"near beach, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.392183,153.442767,EPSG:4326 +HUMAN_OBSERVATION,,1,MALE,"elderly?, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.393662,153.439664,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,10,17,Australia,AU,Queensland,-27.404468,153.437333,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,"mum & bub, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.39249,153.441564,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,10,17,Australia,AU,Queensland,-27.398417,153.44093,EPSG:4326 +HUMAN_OBSERVATION,,1,,"mum & bub, Koala Status: Alive",2020,10,17,Australia,AU,Queensland,-27.401025,153.438179,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,"checked by DdV, Koala Status: Sick",2020,10,17,Australia,AU,Queensland,-27.395181,153.44201,EPSG:4326 +HUMAN_OBSERVATION,,1,MALE,,2020,10,17,Australia,AU,Queensland,-27.403736,153.437583,EPSG:4326 +HUMAN_OBSERVATION,,1,MALE,,2020,10,17,Australia,AU,Queensland,-27.393716,153.439571,EPSG:4326 +HUMAN_OBSERVATION,,1,FEMALE,,2020,10,17,Australia,AU,Queensland,-27.394967,153.44121,EPSG:4326 +HUMAN_OBSERVATION,,1,,,2020,10,17,Australia,AU,Queensland,-27.392359,153.442341,EPSG:4326 +HUMAN_OBSERVATION,Leigh Edmonds,1,,,2020,1,8,Australia,AU,Queensland,-27.487736,153.135342,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,7,2,Australia,AU,New South Wales,-28.67517,153.493644,EPSG:4326 +HUMAN_OBSERVATION,Lyndal Foley,1,,,2020,10,25,Australia,AU,New South Wales,-28.591,153.446,EPSG:4326 +HUMAN_OBSERVATION,Kimberly Sowers,1,,,2020,9,23,Australia,AU,New South Wales,-28.691,153.612,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,6,8,Australia,AU,New South Wales,-28.715264,153.595595,EPSG:4326 +HUMAN_OBSERVATION,-,1,,,2020,10,19,Australia,AU,New South Wales,-28.653,153.388,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,6,22,Australia,AU,New South Wales,-28.662215,153.60945,EPSG:4326 +HUMAN_OBSERVATION,renae baker,1,,,2020,9,16,Australia,AU,New South Wales,-28.558,153.473,EPSG:4326 +HUMAN_OBSERVATION,Linda North,1,,,2020,12,26,Australia,AU,New South Wales,-28.686,153.516,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,6,23,Australia,AU,New South Wales,-28.667061,153.51074,EPSG:4326 +HUMAN_OBSERVATION,Marian van der Kroon,1,,,2020,10,24,Australia,AU,New South Wales,-28.65,153.462,EPSG:4326 +HUMAN_OBSERVATION,Lisa,1,,,2020,11,23,Australia,AU,New South Wales,-28.723,153.598,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,4,3,Australia,AU,New South Wales,-28.667061,153.51074,EPSG:4326 +HUMAN_OBSERVATION,Ton Cohen,1,,,2020,12,9,Australia,AU,New South Wales,-28.661,153.615,EPSG:4326 +HUMAN_OBSERVATION,Marie Hayes,1,,,2020,7,11,Australia,AU,New South Wales,-28.661,153.61,EPSG:4326 +HUMAN_OBSERVATION,Frank Binkley,1,,,2020,5,3,Australia,AU,New South Wales,-28.703,153.473,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,31,Australia,AU,New South Wales,-28.753289,153.459894,EPSG:4326 +HUMAN_OBSERVATION,Nicholas,1,,,2020,1,10,Australia,AU,New South Wales,-28.549,153.414,EPSG:4326 +HUMAN_OBSERVATION,Elizabeth Leitch,1,,,2020,11,3,Australia,AU,New South Wales,-28.645,153.557,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,3,26,Australia,AU,New South Wales,-28.683747,153.61095,EPSG:4326 +HUMAN_OBSERVATION,Zom Osborne,1,,,2020,11,15,Australia,AU,New South Wales,-28.611,153.439,EPSG:4326 +HUMAN_OBSERVATION,Guam,1,,,2020,7,19,Australia,AU,New South Wales,-28.693,153.517,EPSG:4326 +HUMAN_OBSERVATION,Lisa Bridges,1,,,2020,11,28,Australia,AU,New South Wales,-28.594,153.461,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,3,,,2020,11,4,Australia,AU,Queensland,-28.1338,153.43424,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,7,2,Australia,AU,New South Wales,-28.675379,153.493489,EPSG:4326 +HUMAN_OBSERVATION,GlossyGal,3,,"Apparently a male, a female & one young (so I'm told - I'm no expert). ",2023,6,2,Australia,AU,Victoria,-37.562281,149.759578,EPSG:4326 +HUMAN_OBSERVATION,Kirstin,1,,,2020,7,2,Australia,AU,New South Wales,-28.675,153.494,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,1,4,Australia,AU,New South Wales,-28.573115,153.437475,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,5,21,Australia,AU,New South Wales,-28.654526,153.497305,EPSG:4326 +HUMAN_OBSERVATION,Jay Thomas-Burrows,1,,,2021,1,24,Australia,AU,New South Wales,-28.633,153.583,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,3,23,Australia,AU,New South Wales,-28.683737,153.614047,EPSG:4326 +HUMAN_OBSERVATION,Tammy Small,1,,,2021,1,5,Australia,AU,New South Wales,-28.69,153.609,EPSG:4326 +HUMAN_OBSERVATION,Dave Thorpe,1,,,2020,8,31,Australia,AU,New South Wales,-28.746865,153.464741,EPSG:4326 +HUMAN_OBSERVATION,Dale Viola,1,,,2020,9,8,Australia,AU,New South Wales,-28.695,153.496,EPSG:4326 +HUMAN_OBSERVATION,Dan Parker,3,,,2020,1,14,Australia,AU,Queensland,-27.560833,153.226944,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,30,Australia,AU,New South Wales,-28.711473,153.523046,EPSG:4326 +HUMAN_OBSERVATION,Lyndal Foley,1,,,2020,8,20,Australia,AU,New South Wales,-28.588,153.446,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,11,Australia,AU,New South Wales,-28.723846,153.593559,EPSG:4326 +HUMAN_OBSERVATION,Karen Valentinotti,1,,,2020,9,6,Australia,AU,New South Wales,-28.684,153.612,EPSG:4326 +HUMAN_OBSERVATION,Josephine West,1,,,2020,10,11,Australia,AU,New South Wales,-28.651,153.459,EPSG:4326 +HUMAN_OBSERVATION,Mary Boelen,1,,,2020,8,24,Australia,AU,New South Wales,-28.654,153.491,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,1,7,Australia,AU,New South Wales,-28.687199,153.519442,EPSG:4326 +HUMAN_OBSERVATION,Katrina,1,,,2020,7,26,Australia,AU,New South Wales,-28.667,153.49,EPSG:4326 +HUMAN_OBSERVATION,Margaret Hall,1,,,2020,10,12,Australia,AU,New South Wales,-28.559,153.397,EPSG:4326 +HUMAN_OBSERVATION,Linda NOrth,1,,,2021,1,29,Australia,AU,New South Wales,-28.653,153.498,EPSG:4326 +HUMAN_OBSERVATION,Katie,1,,,2020,12,11,Australia,AU,New South Wales,-28.66,153.616,EPSG:4326 +HUMAN_OBSERVATION,Annika,1,,,2020,11,22,Australia,AU,New South Wales,-28.684,153.611,EPSG:4326 +HUMAN_OBSERVATION,Ross Krippner,1,,,2020,9,15,Australia,AU,New South Wales,-28.677,153.597,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,13,Australia,AU,New South Wales,-28.573115,153.429342,EPSG:4326 +HUMAN_OBSERVATION,Angela,1,,,2020,11,20,Australia,AU,New South Wales,-28.635,153.534,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,6,23,Australia,AU,New South Wales,-28.667032,153.517337,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,7,25,Australia,AU,New South Wales,-28.639902,153.627965,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,7,13,Australia,AU,New South Wales,-28.705059,153.474085,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,4,4,Australia,AU,New South Wales,-28.575253,153.517178,EPSG:4326 +HUMAN_OBSERVATION,Joelle Baker,1,,,2020,6,13,Australia,AU,New South Wales,-28.689,153.475,EPSG:4326 +HUMAN_OBSERVATION,Jenny Woodward,3,,,2021,10,18,Australia,AU,Queensland,-27.49049,153.236672,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,1,5,Australia,AU,New South Wales,-28.651532,153.507459,EPSG:4326 +HUMAN_OBSERVATION,renae baker,1,,,2020,10,26,Australia,AU,New South Wales,-28.717,153.59995,EPSG:4326 +HUMAN_OBSERVATION,Anthony Muyt,1,,,2020,12,29,Australia,AU,New South Wales,-28.689,153.609,EPSG:4326 +HUMAN_OBSERVATION,Dave Thorpe,1,,,2020,8,31,Australia,AU,New South Wales,-28.753,153.46,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,5,19,Australia,AU,New South Wales,-28.55567,153.469126,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,3,Australia,AU,New South Wales,-28.572677,153.434666,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,19,Australia,AU,New South Wales,-28.692812,153.516578,EPSG:4326 +HUMAN_OBSERVATION,Timothy Mak,1,,,2020,9,16,Australia,AU,New South Wales,-28.656,153.616,EPSG:4326 +HUMAN_OBSERVATION,Dale Viola,1,,,2020,4,28,Australia,AU,New South Wales,-28.694,153.495,EPSG:4326 +HUMAN_OBSERVATION,Michelle Muir,3,,,2020,11,20,Australia,AU,Queensland,-27.50702,153.250244,EPSG:4326 +HUMAN_OBSERVATION,Leanne Lane,1,,,2020,2,27,Australia,AU,New South Wales,-28.729,153.433,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,7,5,Australia,AU,New South Wales,-28.638007,153.628907,EPSG:4326 +HUMAN_OBSERVATION,Megan Stringer,1,,,2020,10,27,Australia,AU,New South Wales,-28.58,153.51,EPSG:4326 +HUMAN_OBSERVATION,Mark Lyndon,1,,,2020,8,21,Australia,AU,New South Wales,-28.636,153.592,EPSG:4326 +HUMAN_OBSERVATION,Kelly Templeman,1,,,2020,11,25,Australia,AU,New South Wales,-28.687,153.609,EPSG:4326 +HUMAN_OBSERVATION,Margo Hills,1,,,2020,11,29,Australia,AU,New South Wales,-28.650521,153.456432,EPSG:4326 +HUMAN_OBSERVATION,Margaret Hall,1,,,2020,10,11,Australia,AU,New South Wales,-28.563,153.397,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,19,Australia,AU,New South Wales,-28.680073,153.283802,EPSG:4326 +HUMAN_OBSERVATION,Amber,1,,,2020,9,2,Australia,AU,New South Wales,-28.619,153.507,EPSG:4326 +HUMAN_OBSERVATION,Jodie Lunn,1,,,2020,8,14,Australia,AU,New South Wales,-28.57,153.549,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,3,14,Australia,AU,New South Wales,-28.661288,153.609458,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,3,3,Australia,AU,New South Wales,-28.636848,153.628741,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,6,13,Australia,AU,New South Wales,-28.689075,153.475539,EPSG:4326 +HUMAN_OBSERVATION,Lyndal Foley,1,,,2020,10,16,Australia,AU,New South Wales,-28.589,153.446,EPSG:4326 +HUMAN_OBSERVATION,Paul Green,1,,,2021,1,27,Australia,AU,New South Wales,-28.669,153.427,EPSG:4326 +HUMAN_OBSERVATION,Jodie Lunn,1,,,2020,8,18,Australia,AU,New South Wales,-28.571,153.552,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,1,12,Australia,AU,New South Wales,-28.545817,153.390241,EPSG:4326 +HUMAN_OBSERVATION,Jay Thomas-Burrows,1,,,2021,1,24,Australia,AU,New South Wales,-28.630128,153.58374,EPSG:4326 +HUMAN_OBSERVATION,Kristy,1,,,2020,11,25,Australia,AU,New South Wales,-28.672,153.452,EPSG:4326 +HUMAN_OBSERVATION,Sequoia Glastonbury,1,,,2021,1,3,Australia,AU,New South Wales,-28.574,153.434,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,12,Australia,AU,New South Wales,-28.649902,153.462656,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,3,,,2020,1,12,Australia,AU,Queensland,-27.500835,153.224474,EPSG:4326 +HUMAN_OBSERVATION,Joanne Dawkins,1,,,2020,10,8,Australia,AU,New South Wales,-28.542,153.482,EPSG:4326 +HUMAN_OBSERVATION,Louise,1,,,2020,2,13,Australia,AU,New South Wales,-28.573,153.425,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,7,26,Australia,AU,New South Wales,-28.685331,153.497035,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,6,23,Australia,AU,New South Wales,-28.6515,153.468766,EPSG:4326 +HUMAN_OBSERVATION,Sandy,1,,,2020,8,27,Australia,AU,New South Wales,-28.688,153.516,EPSG:4326 +HUMAN_OBSERVATION,Kate Brady,1,,,2020,10,13,Australia,AU,New South Wales,-28.660685,153.610954,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,7,19,Australia,AU,New South Wales,-28.673632,153.465972,EPSG:4326 +HUMAN_OBSERVATION,Claire Oelrichs,1,,,2020,7,20,Australia,AU,New South Wales,-28.703,153.561,EPSG:4326 +HUMAN_OBSERVATION,Amalia,1,,,2020,9,20,Australia,AU,New South Wales,-28.642,153.554,EPSG:4326 +HUMAN_OBSERVATION,Louise Humphreys,1,,,2020,9,3,Australia,AU,New South Wales,-28.686881,153.517966,EPSG:4326 +HUMAN_OBSERVATION,Marie Hayes,1,,,2020,3,1,Australia,AU,New South Wales,-28.661,153.61,EPSG:4326 +HUMAN_OBSERVATION,John McCaffery,1,,,2020,11,30,Australia,AU,New South Wales,-28.69,153.61,EPSG:4326 +HUMAN_OBSERVATION,Rebecca Green,1,,,2020,11,27,Australia,AU,New South Wales,-28.685,153.521,EPSG:4326 +HUMAN_OBSERVATION,Louise,1,,,2020,9,6,Australia,AU,New South Wales,-28.632776,153.463392,EPSG:4326 +HUMAN_OBSERVATION,Arika McElroy-Lakosta,1,,,2020,12,9,Australia,AU,New South Wales,-28.661,153.615,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,6,Australia,AU,New South Wales,-28.681229,153.532807,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,18,Australia,AU,New South Wales,-28.650627,153.461934,EPSG:4326 +HUMAN_OBSERVATION,Dave Thorpe,1,,,2020,8,31,Australia,AU,New South Wales,-28.753,153.46,EPSG:4326 +HUMAN_OBSERVATION,renae baker,1,,,2020,5,21,Australia,AU,New South Wales,-28.69061,153.49471,EPSG:4326 +HUMAN_OBSERVATION,Katherine Jones,1,,,2020,11,1,Australia,AU,New South Wales,-28.663,153.615,EPSG:4326 +HUMAN_OBSERVATION,Anna Hubbert,1,,,2020,12,9,Australia,AU,New South Wales,-28.661,153.615,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,2,21,Australia,AU,New South Wales,-28.620414,153.537089,EPSG:4326 +HUMAN_OBSERVATION,Josh,1,,,2020,9,8,Australia,AU,New South Wales,-28.616,153.507,EPSG:4326 +HUMAN_OBSERVATION,Gabriela,1,,,2020,3,3,Australia,AU,New South Wales,-28.638,153.629,EPSG:4326 +HUMAN_OBSERVATION,renae baker,1,,,2020,6,23,Australia,AU,New South Wales,-28.667061,153.51074,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,6,6,Australia,AU,New South Wales,-28.682634,153.613372,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,7,30,Australia,AU,New South Wales,-28.703622,153.480957,EPSG:4326 +HUMAN_OBSERVATION,Frank Binkley,1,,,2020,3,4,Australia,AU,New South Wales,-28.704,153.474,EPSG:4326 +HUMAN_OBSERVATION,Marian van der Kroon,1,,,2020,9,5,Australia,AU,New South Wales,-28.651,153.462,EPSG:4326 +HUMAN_OBSERVATION,Robyn Berrington,1,,,2020,10,19,Australia,AU,New South Wales,-28.575,153.434,EPSG:4326 +HUMAN_OBSERVATION,Marie Hayes,1,,,2021,1,25,Australia,AU,New South Wales,-28.661,153.61,EPSG:4326 +HUMAN_OBSERVATION,Val Short,1,,,2020,10,17,Australia,AU,New South Wales,-28.647,153.551,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,6,14,Australia,AU,New South Wales,-28.603818,153.509709,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,7,19,Australia,AU,New South Wales,-28.673649,153.468928,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,9,19,Australia,AU,New South Wales,-28.687381,153.515008,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,3,,,2020,1,12,Australia,AU,Queensland,-27.500774,153.22441,EPSG:4326 +HUMAN_OBSERVATION,Jacqueline White,1,,,2020,8,31,Australia,AU,New South Wales,-28.705,152.499,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,3,4,Australia,AU,New South Wales,-28.691444,153.517009,EPSG:4326 +HUMAN_OBSERVATION,Olivia Merrick,1,,,2020,11,21,Australia,AU,New South Wales,-28.683,153.611,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,7,30,Australia,AU,New South Wales,-28.560685,153.397508,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,3,1,Australia,AU,New South Wales,-28.661172,153.609847,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,6,30,Australia,AU,New South Wales,-28.667061,153.51074,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,18,Australia,AU,New South Wales,-28.569742,153.549427,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,4,24,Australia,AU,New South Wales,-28.732183,153.434038,EPSG:4326 +HUMAN_OBSERVATION,Margaret Hall,1,,,2020,10,28,Australia,AU,New South Wales,-28.561,153.397,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,9,28,Australia,AU,New South Wales,-28.684936,153.515584,EPSG:4326 +HUMAN_OBSERVATION,Giovanni Dercole,1,,,2021,1,10,Australia,AU,New South Wales,-28.636,153.636,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,6,Australia,AU,New South Wales,-28.669701,153.523553,EPSG:4326 +HUMAN_OBSERVATION,Richard Jones,1,,,2020,4,9,Australia,AU,New South Wales,-28.683227,153.489454,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,6,Australia,AU,New South Wales,-28.670918,153.523735,EPSG:4326 +HUMAN_OBSERVATION,Dale Viola,1,,,2020,9,25,Australia,AU,New South Wales,-28.694,153.496,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,3,21,Australia,AU,New South Wales,-28.731887,153.43429,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,3,,,2021,8,26,Australia,AU,Queensland,-27.512205,153.250069,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,27,Australia,AU,New South Wales,-28.688361,153.516301,EPSG:4326 +HUMAN_OBSERVATION,JOhn Sim,1,,,2021,1,24,Australia,AU,New South Wales,-28.676,153.608,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,7,27,Australia,AU,New South Wales,-28.65693,153.559376,EPSG:4326 +HUMAN_OBSERVATION,Tammy Small,1,,,2021,1,12,Australia,AU,New South Wales,-28.691,153.607,EPSG:4326 +HUMAN_OBSERVATION,Gabrielle Griffin,1,,,2020,10,7,Australia,AU,New South Wales,-28.59,153.452,EPSG:4326 +HUMAN_OBSERVATION,Mandy,1,,,2020,10,13,Australia,AU,New South Wales,-28.551,153.45,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,3,3,Australia,AU,New South Wales,-28.688702,153.513323,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,5,27,Australia,AU,New South Wales,-28.650214,153.462163,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,4,28,Australia,AU,New South Wales,-28.704546,153.497742,EPSG:4326 +HUMAN_OBSERVATION,Naomi Shine,1,,,2021,1,30,Australia,AU,New South Wales,-28.685,153.515,EPSG:4326 +HUMAN_OBSERVATION,Margaret Hall,1,,,2020,8,13,Australia,AU,New South Wales,-28.573,153.429,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,5,3,Australia,AU,New South Wales,-28.705548,153.473012,EPSG:4326 +HUMAN_OBSERVATION,Jodie Lunn,1,,,2020,7,12,Australia,AU,New South Wales,-28.571,153.554,EPSG:4326 +HUMAN_OBSERVATION,Katrina,1,,,2020,7,26,Australia,AU,New South Wales,-28.685,153.497,EPSG:4326 +HUMAN_OBSERVATION,Allison gilroy,3,,,2023,7,9,Australia,AU,Queensland,-27.500364,153.224076,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,24,Australia,AU,New South Wales,-28.655332,153.490609,EPSG:4326 +HUMAN_OBSERVATION,Linda sparrow,1,,,2020,9,28,Australia,AU,New South Wales,-28.686298,153.520752,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,21,Australia,AU,New South Wales,-28.63556,153.592405,EPSG:4326 +HUMAN_OBSERVATION,Linda North,1,,,2020,11,25,Australia,AU,New South Wales,-28.673,153.489,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,7,12,Australia,AU,New South Wales,-28.570626,153.553703,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,2,18,Australia,AU,New South Wales,-28.57351,153.42537,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,3,,,2020,1,15,Australia,AU,Queensland,-27.499968,153.257915,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,7,20,Australia,AU,New South Wales,-28.703206,153.561099,EPSG:4326 +HUMAN_OBSERVATION,Marie Hayes,1,,,2020,12,29,Australia,AU,New South Wales,-28.662,153.61,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,2,27,Australia,AU,New South Wales,-28.72789,153.434806,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,6,13,Australia,AU,New South Wales,-28.592667,153.515308,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,2,5,Australia,AU,New South Wales,-28.628296,153.427304,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,1,25,Australia,AU,New South Wales,-28.571967,153.515119,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,4,15,Australia,AU,New South Wales,-28.684774,153.519044,EPSG:4326 +HUMAN_OBSERVATION,Susan Wood,1,,,2020,11,16,Australia,AU,New South Wales,-28.663,153.615,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,5,6,Australia,AU,New South Wales,-28.580327,153.511009,EPSG:4326 +HUMAN_OBSERVATION,Lyndal Foley,1,,,2020,10,1,Australia,AU,New South Wales,-28.589,153.446,EPSG:4326 +HUMAN_OBSERVATION,Sol,1,,,2020,9,25,Australia,AU,New South Wales,-28.657,153.495,EPSG:4326 +HUMAN_OBSERVATION,Jools Macafee,1,,,2021,1,16,Australia,AU,New South Wales,-28.664,153.608,EPSG:4326 +HUMAN_OBSERVATION,Karen Valentinotti,1,,,2020,3,26,Australia,AU,New South Wales,-28.684,153.611,EPSG:4326 +HUMAN_OBSERVATION,Tracy,1,,,2021,1,27,Australia,AU,New South Wales,-28.686,153.608,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,9,1,Australia,AU,New South Wales,-28.692,153.517,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,6,2,Australia,AU,New South Wales,-28.557779,153.469474,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,5,6,Australia,AU,New South Wales,-28.580273,153.511108,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,7,11,Australia,AU,New South Wales,-28.661172,153.609847,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,3,,,2020,12,18,Australia,AU,New South Wales,-28.389253,153.560784,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,6,17,Australia,AU,New South Wales,-28.660685,153.610954,EPSG:4326 +HUMAN_OBSERVATION,James Bennett-Levy,1,,,2020,3,3,Australia,AU,New South Wales,-28.687,153.514,EPSG:4326 +HUMAN_OBSERVATION,Anita Mudge,3,FEMALE,,2024,8,24,Australia,AU,New South Wales,-28.287173,153.560256,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,18,Australia,AU,New South Wales,-28.653614,153.387981,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,3,MALE,,2020,12,18,Australia,AU,New South Wales,-28.389285,153.560285,EPSG:4326 +HUMAN_OBSERVATION,Mercedes Lazarou,3,,,2021,3,8,Australia,AU,New South Wales,-28.380154,153.565757,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,3,MALE,,2020,12,18,Australia,AU,New South Wales,-28.389187,153.56106,EPSG:4326 +HUMAN_OBSERVATION,David French,1,,,2020,9,25,Australia,AU,New South Wales,-28.711473,153.523046,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,3,,,2020,9,27,Australia,AU,New South Wales,-28.399144,153.555869,EPSG:4326 +HUMAN_OBSERVATION,Chelsea,1,,,2020,4,15,Australia,AU,New South Wales,-28.684774,153.519044,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,3,4,Australia,AU,New South Wales,-28.705379,153.47372,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,8,11,Australia,AU,New South Wales,-28.649473,153.462655,EPSG:4326 +HUMAN_OBSERVATION,Scott Abrahams,1,,,2020,9,27,Australia,AU,New South Wales,-28.690986,153.43881,EPSG:4326 +HUMAN_OBSERVATION,Gerard Loughran,3,,3 Koalas. A female adult with backrider and male in pursuit. 100% Identification as they were only 10yrds from me and pretty noisey.,2020,12,11,Australia,AU,Queensland,-27.452332,152.546448,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,4,9,Australia,AU,New South Wales,-28.683227,153.489454,EPSG:4326 +HUMAN_OBSERVATION,Morag Wilson,1,,,2020,9,26,Australia,AU,New South Wales,-28.558,153.469,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,4,4,Australia,AU,New South Wales,-28.575818,153.511749,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2020,4,28,Australia,AU,New South Wales,-28.618779,153.399097,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,8,Australia,AU,Queensland,-27.94524,153.25018,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,11,9,Australia,AU,Queensland,-27.9388,153.36164,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,24,Australia,AU,Queensland,-28.1729,153.41358,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,28,Australia,AU,Queensland,-27.8455,153.35786,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,20,Australia,AU,Queensland,-27.91345,153.37254,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,11,3,Australia,AU,Queensland,-28.10482,153.3906,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,3,,occurrenceRemarks withheld,2024,9,11,Australia,AU,New South Wales,-34.107829,150.818197,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,9,Australia,AU,Queensland,-27.92163,153.38403,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,8,15,Australia,AU,Queensland,-28.13865,153.45858,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,14,Australia,AU,Queensland,-28.1729,153.41358,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,28,Australia,AU,Queensland,-28.18098,153.43924,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,10,23,Australia,AU,Queensland,-28.09306,153.4478,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,12,18,Australia,AU,Queensland,-28.15658,153.44188,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250F,3,,occurrenceRemarks withheld,2024,9,22,Australia,AU,New South Wales,-32.654583,151.783851,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,28,Australia,AU,Queensland,-27.90565,153.32225,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,16,Australia,AU,Queensland,-28.15373,153.44682,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,9,Australia,AU,Queensland,-28.13205,153.44824,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,20,Australia,AU,Queensland,-27.97681,153.23237,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,12,Australia,AU,Queensland,-27.83645,153.31347,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102508,3,,occurrenceRemarks withheld,2024,9,25,Australia,AU,New South Wales,-28.700834,153.281848,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,26,Australia,AU,Queensland,-28.09988,153.45138,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,28,Australia,AU,Queensland,-28.14691,153.4581,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,7,9,Australia,AU,Queensland,-28.09126,153.45096,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,20,Australia,AU,Queensland,-28.15635,153.44501,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,5,Australia,AU,Queensland,-27.82252,153.31369,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,29,Australia,AU,Queensland,-27.94138,153.3667,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,10,Australia,AU,Queensland,-27.9338,153.36284,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,16,Australia,AU,Queensland,-28.0526,153.3151,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,18,Australia,AU,Queensland,-27.99361,153.30278,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,13,Australia,AU,Queensland,-27.97746,153.27948,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,31,Australia,AU,Queensland,-28.0203,153.31718,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2023,9,2,Australia,AU,Queensland,-28.12957,153.3518,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,3,Australia,AU,Queensland,-27.94847,153.379,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,22,Australia,AU,Queensland,-28.11049,153.37116,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,15,Australia,AU,Queensland,-28.10913,153.35794,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,3,Australia,AU,Queensland,-28.14341,153.44244,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,8,7,Australia,AU,Queensland,-27.92438,153.37895,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,15,Australia,AU,Queensland,-28.09276,153.45095,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,?Signs of disease,2023,10,28,Australia,AU,Queensland,-27.92223,153.38797,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,3,,occurrenceRemarks withheld,2024,9,27,Australia,AU,New South Wales,-34.773481,146.595594,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,22,Australia,AU,Queensland,-27.91354,153.33649,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,1,18,Australia,AU,Queensland,-28.09452,153.45624,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.9518,153.38301,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,6,Australia,AU,Queensland,-27.94078,153.36376,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,20,Australia,AU,Queensland,-27.95397,153.35724,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,19,Australia,AU,Queensland,-27.91669,153.28072,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,29,Australia,AU,Queensland,-28.09374,153.4547,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,5,27,Australia,AU,Queensland,-27.83484,153.2985,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,16,Australia,AU,Queensland,-27.94414,153.35907,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,1,Australia,AU,Queensland,-27.95007,153.37843,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,14,Australia,AU,Queensland,-27.92458,153.35408,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,16,Australia,AU,Queensland,-27.8373,153.36741,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,7,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,27,Australia,AU,Queensland,-27.88961,153.33421,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,10,Australia,AU,Queensland,-27.98114,153.32882,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,3,Australia,AU,Queensland,-27.93228,153.36201,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,10,Australia,AU,Queensland,-28.17239,153.42004,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,8,Australia,AU,Queensland,-28.15173,153.45801,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,21,Australia,AU,Queensland,-28.15651,153.45842,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,8,Australia,AU,Queensland,-27.82303,153.37886,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,25,Australia,AU,Queensland,-28.09224,153.44881,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,13,Australia,AU,Queensland,-27.94529,153.24984,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,6,Australia,AU,Queensland,-27.88754,153.32745,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,12,Australia,AU,Queensland,-28.17192,153.41985,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,16,Australia,AU,Queensland,-28.11978,153.37321,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,14,Australia,AU,Queensland,-28.14475,153.41684,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,13,Australia,AU,Queensland,-28.09753,153.4485,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,29,Australia,AU,Queensland,-28.12186,153.43018,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,25,Australia,AU,Queensland,-28.14145,153.45136,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,15,Australia,AU,Queensland,-27.97756,153.23105,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,13,Australia,AU,Queensland,-28.14475,153.41684,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,11,11,Australia,AU,Queensland,-27.97678,153.23213,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2023,10,22,Australia,AU,Queensland,-27.81168,153.27141,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,17,Australia,AU,Queensland,-27.95648,153.35761,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,19,Australia,AU,Queensland,-28.14119,153.44833,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,4,Australia,AU,Queensland,-27.92876,153.36459,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,29,Australia,AU,Queensland,-27.93641,153.36625,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,25,Australia,AU,Queensland,-27.94401,153.39297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,22,Australia,AU,Queensland,-27.94867,153.38297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,13,Australia,AU,Queensland,-28.14003,153.43425,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,17,Australia,AU,Queensland,-28.14513,153.41027,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,12,Australia,AU,Queensland,-27.93037,153.36651,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,28,Australia,AU,Queensland,-27.8906,153.32947,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,1,11,Australia,AU,Queensland,-27.94242,153.38697,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,17,Australia,AU,Queensland,-28.09108,153.36855,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,28,Australia,AU,Queensland,-28.09374,153.4547,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,20,Australia,AU,Queensland,-27.93914,153.35641,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,9,28,Australia,AU,Queensland,-28.08102,153.35347,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,18,Australia,AU,Queensland,-27.9521,153.20037,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,20,Australia,AU,Queensland,-28.0946,153.45642,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102508,3,,occurrenceRemarks withheld,2024,9,25,Australia,AU,New South Wales,-28.59695,153.277428,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,23,Australia,AU,Queensland,-28.00822,153.30492,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,1,Australia,AU,Queensland,-28.09885,153.31042,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,3,Australia,AU,Queensland,-28.14281,153.43939,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,18,Australia,AU,Queensland,-27.93031,153.36146,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,12,Australia,AU,Queensland,-27.97718,153.23214,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,28,Australia,AU,Queensland,-28.09353,153.44676,EPSG:4326 +HUMAN_OBSERVATION,"Chrissy Freestone, George Appleby",2,,Two seen fairly near each other upstream from the caravan park.,2021,9,19,Australia,AU,Victoria,-38.56543,143.96309,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,10,Australia,AU,Queensland,-28.11806,153.40825,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,3,Australia,AU,Queensland,-27.89077,153.32919,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,16,Australia,AU,Queensland,-28.14344,153.4422,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Signs of disease,2022,8,22,Australia,AU,Queensland,-28.11454,153.44294,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,19,Australia,AU,Queensland,-28.14484,153.43508,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - cause unknown,2020,10,8,Australia,AU,Queensland,-27.81333,153.35944,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2020,4,15,Australia,AU,Queensland,-27.95704,153.34392,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,17,Australia,AU,Queensland,-28.04836,153.33792,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,28,Australia,AU,Queensland,-27.90269,153.32831,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,30,Australia,AU,Queensland,-27.93326,153.36205,EPSG:4326 +HUMAN_OBSERVATION,Brad Ferrier ,2,,Two males aggressively calling.,2020,2,13,Australia,AU,Victoria,-37.8004,144.30109,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,14,Australia,AU,Queensland,-28.14197,153.41008,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,24,Australia,AU,Queensland,-27.95762,153.35785,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,25,Australia,AU,Queensland,-28.14775,153.45492,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,30,Australia,AU,Queensland,-28.15054,153.45925,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,5,Australia,AU,Queensland,-28.1147,153.3556,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,18,Australia,AU,Queensland,-28.17065,153.40634,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,16,Australia,AU,Queensland,-28.10065,153.44968,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,27,Australia,AU,Queensland,-27.98518,153.32277,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,1,Australia,AU,Queensland,-28.0349,153.33469,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,14,Australia,AU,Queensland,-27.94657,153.30125,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,1,Australia,AU,Queensland,-28.1183,153.42763,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,12,Australia,AU,Queensland,-28.16174,153.44162,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,24,Australia,AU,Queensland,-28.15788,153.40717,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,6,Australia,AU,Queensland,-27.92608,153.24633,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,14,Australia,AU,Queensland,-28.15415,153.46179,EPSG:4326 +HUMAN_OBSERVATION,Chrissy Freestone,2,,Female koala with joey,2021,11,24,Australia,AU,Victoria,-38.09929,144.28343,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) - Signs of disease ,2020,1,11,Australia,AU,Queensland,-27.9727,153.2246,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,9,Australia,AU,Queensland,-27.94104,153.35769,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,19,Australia,AU,Queensland,-27.78936,153.32951,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,19,Australia,AU,Queensland,-27.93914,153.35641,EPSG:4326 +HUMAN_OBSERVATION,GFNC Excursion ,2,,Two individuals in separate trees on the east side of You Yangs,2021,4,18,Australia,AU,Victoria,-37.93278,144.43194,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,20,Australia,AU,Queensland,-27.89826,153.32276,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,9,Australia,AU,Queensland,-28.10628,153.44069,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,23,Australia,AU,Queensland,-28.04147,153.33984,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,27,Australia,AU,Queensland,-28.09215,153.45258,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,2,12,Australia,AU,Queensland,-27.92918,153.36818,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,10,Australia,AU,Queensland,-27.93507,153.36335,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,9,17,Australia,AU,Queensland,-27.78611,153.25707,EPSG:4326 +HUMAN_OBSERVATION,Ross Auchettl,2,,"At about 21:25 two koalas called, probably males. They were in opposite directions but neither was very far away.",2021,12,30,Australia,AU,Victoria,-37.4745,144.44001,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,2,Australia,AU,Queensland,-27.90635,153.32673,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,1,Australia,AU,Queensland,-28.14191,153.44598,EPSG:4326 +HUMAN_OBSERVATION,Ross Auchettl,2,,"One male koala called several times after dark: 1845, 19:03, 19:46 to the northwest. One very small, young Koala spotted to the southeast while walking back to the car. ",2020,6,24,Australia,AU,Victoria,-37.7679,144.27215,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,19,Australia,AU,Queensland,-28.13823,153.43931,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,18,Australia,AU,Queensland,-27.94994,153.35724,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,2,Australia,AU,Queensland,-28.10161,153.45,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,27,Australia,AU,Queensland,-28.05264,153.31556,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,19,Australia,AU,Queensland,-27.8898,153.33543,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,28,Australia,AU,Queensland,-28.14508,153.41448,EPSG:4326 +HUMAN_OBSERVATION,Ross Auchettl,2,,"At 18:05 a male koala called from the northwest, or just after sunset. Later on a female was observed sitting in the fork of a messmate down to the south east. ",2020,6,4,Australia,AU,Victoria,-37.76896,144.27689,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,4,Australia,AU,Queensland,-28.14263,153.45011,EPSG:4326 +HUMAN_OBSERVATION,Debbie Sesso,2,,,2020,6,24,Australia,AU,Victoria,-38.1986,145.23065,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,19,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,10,Australia,AU,Queensland,-27.89082,153.32885,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,9,10,Australia,AU,Queensland,-28.1362,153.35129,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,18,Australia,AU,Queensland,-28.13749,153.43257,EPSG:4326 +HUMAN_OBSERVATION,Bertram Lobert,2,,,2020,5,4,Australia,AU,Victoria,-36.8805,145.88373,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,10,Australia,AU,Queensland,-28.10032,153.44414,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,6,Australia,AU,Queensland,-27.94054,153.36206,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,9,Australia,AU,Queensland,-28.12904,153.44271,EPSG:4326 +HUMAN_OBSERVATION,Vic Forests,2,,,2021,2,2,Australia,AU,Victoria,-37.40846,145.9746,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,16,Australia,AU,Queensland,-28.09894,153.44413,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,17,Australia,AU,Queensland,-28.05284,153.31454,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,10,Australia,AU,Queensland,-28.13654,153.38932,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,7,26,Australia,AU,Queensland,-27.93726,153.26308,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,10,Australia,AU,Queensland,-27.91428,153.36545,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,11,Australia,AU,Queensland,-27.88061,153.2277,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,7,Australia,AU,Queensland,-27.84659,153.32476,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,4,Australia,AU,Queensland,-28.17239,153.42661,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,13,Australia,AU,Queensland,-28.09583,153.45563,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,11,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,7,21,Australia,AU,Queensland,-28.00266,153.28894,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,29,Australia,AU,Queensland,-27.93735,153.3567,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,12,Australia,AU,Queensland,-28.14379,153.44173,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,11,5,Australia,AU,Queensland,-27.97681,153.23237,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,6,Australia,AU,Queensland,-28.03121,153.30665,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,10,8,Australia,AU,Queensland,-28.11427,153.38837,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,2,Australia,AU,Queensland,-28.14211,153.43696,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2023,7,10,Australia,AU,Queensland,-27.94588,153.36646,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,7,Australia,AU,Queensland,-28.17835,153.40699,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,10,3,Australia,AU,Queensland,-27.93229,153.36191,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,1,Australia,AU,Queensland,-27.95767,153.37608,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,15,Australia,AU,Queensland,-28.15329,153.47834,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,25,Australia,AU,Queensland,-27.93379,153.36283,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,?Hit by Vehicle,2021,8,12,Australia,AU,Queensland,-27.95737,153.37605,EPSG:4326 +HUMAN_OBSERVATION,Daniel Terrington,2,,,2020,11,2,Australia,AU,Victoria,-37.17586,148.22037,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,8,6,Australia,AU,Queensland,-28.09629,153.44573,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,18,Australia,AU,Queensland,-27.93914,153.35641,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,2,Australia,AU,Queensland,-28.10657,153.44079,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,13,Australia,AU,Queensland,-28.09754,153.44857,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,30,Australia,AU,Queensland,-28.13161,153.45666,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,12,Australia,AU,Queensland,-28.13028,153.44765,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,26,Australia,AU,Queensland,-27.93914,153.35641,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,10,Australia,AU,Queensland,-28.09335,153.44807,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,30,Australia,AU,Queensland,-28.00836,153.28764,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,5,14,Australia,AU,Queensland,-28.13957,153.40521,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,10,Australia,AU,Queensland,-27.93914,153.35641,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,?Hit by Vehicle,2020,9,7,Australia,AU,Queensland,-28.1298,153.44764,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,1,Australia,AU,Queensland,-28.19386,153.39023,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,8,14,Australia,AU,Queensland,-28.15359,153.42858,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,18,Australia,AU,Queensland,-28.09317,153.44474,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,9,16,Australia,AU,Queensland,-27.90528,153.32677,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,7,Australia,AU,Queensland,-28.11841,153.394,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,9,Australia,AU,Queensland,-28.15123,153.42981,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,1,11,Australia,AU,Queensland,-28.0205,153.31093,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,13,Australia,AU,Queensland,-27.89043,153.32938,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,2,,,2021,12,21,Australia,AU,Victoria,-38.54894,143.95905,EPSG:4326 +HUMAN_OBSERVATION,Jackson Clerke,2,,,2020,3,27,Australia,AU,Victoria,-38.39953,145.84446,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,6,Australia,AU,Queensland,-27.84066,153.33031,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,24,Australia,AU,Queensland,-27.91376,153.32991,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,19,Australia,AU,Queensland,-27.91929,153.38665,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,13,Australia,AU,Queensland,-27.92982,153.36232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,30,Australia,AU,Queensland,-27.97669,153.2323,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,6,8,Australia,AU,Queensland,-28.10867,153.42975,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,22,Australia,AU,Queensland,-27.89901,153.32647,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,5,31,Australia,AU,Queensland,-28.13882,153.26243,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,17,Australia,AU,Queensland,-28.17978,153.37073,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,12,Australia,AU,Queensland,-28.09519,153.45274,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,5,Australia,AU,Queensland,-27.95675,153.27646,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,17,Australia,AU,Queensland,-28.09371,153.45802,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,5,Australia,AU,Queensland,-27.93261,153.36087,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,30,Australia,AU,Queensland,-28.14899,153.45563,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,9,Australia,AU,Queensland,-28.11488,153.35353,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,17,Australia,AU,Queensland,-27.97684,153.23234,EPSG:4326 +HUMAN_OBSERVATION,Jemma Cripps,2,,,2020,1,21,Australia,AU,Victoria,-37.44442,145.53838,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,30,Australia,AU,Queensland,-28.01261,153.32773,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Signs of disease,2021,9,12,Australia,AU,Queensland,-27.95417,153.38186,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,30,Australia,AU,Queensland,-28.14383,153.41656,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,12,19,Australia,AU,Queensland,-27.94054,153.2971,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,3,Australia,AU,Queensland,-27.94517,153.25013,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,1,Australia,AU,Queensland,-27.93322,153.35908,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,15,Australia,AU,Queensland,-28.13327,153.45382,EPSG:4326 +HUMAN_OBSERVATION,Jess Waaleboer,2,,,2020,3,31,Australia,AU,Victoria,-37.15096,145.20664,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,1,Australia,AU,Queensland,-28.14139,153.44411,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,15,Australia,AU,Queensland,-28.14264,153.45671,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,9,Australia,AU,Queensland,-27.94308,153.36173,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,17,Australia,AU,Queensland,-27.8994,153.29924,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2021,8,16,Australia,AU,Queensland,-27.94975,153.37869,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,13,Australia,AU,Queensland,-28.09631,153.44685,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,8,Australia,AU,Queensland,-28.05194,153.31543,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,5,Australia,AU,Queensland,-27.81812,153.32548,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,6,Australia,AU,Queensland,-27.97696,153.23243,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,2,Australia,AU,Queensland,-27.93345,153.36204,EPSG:4326 +HUMAN_OBSERVATION,Samantha Strong,2,,,2020,3,30,Australia,AU,Victoria,-37.02887,145.45096,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,10,Australia,AU,Queensland,-27.92186,153.33165,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,4,Australia,AU,Queensland,-27.94543,153.25031,EPSG:4326 +HUMAN_OBSERVATION,Brett Goodman,2,,,2023,12,5,Australia,AU,Victoria,-37.07894,143.25603,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,2,,,2020,8,18,Australia,AU,Victoria,-38.54654,143.9809,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,17,Australia,AU,Queensland,-27.91746,153.35756,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,19,Australia,AU,Queensland,-27.97714,153.23213,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,6,10,Australia,AU,Queensland,-28.14422,153.41275,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,26,Australia,AU,Queensland,-27.88047,153.36705,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,20,Australia,AU,Queensland,-27.89017,153.32343,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,22,Australia,AU,Queensland,-28.15664,153.43814,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,2,,,2022,11,14,Australia,AU,Victoria,-38.21961,147.27506,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,13,Australia,AU,Queensland,-27.97714,153.23213,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,7,Australia,AU,Queensland,-27.93274,153.36313,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,9,Australia,AU,Queensland,-27.94023,153.36083,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,6,Australia,AU,Queensland,-28.14034,153.44647,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,8,Australia,AU,Queensland,-28.00349,153.32131,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,4,Australia,AU,Queensland,-27.95895,153.24751,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,20,Australia,AU,Queensland,-27.91216,153.37219,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,1,Australia,AU,Queensland,-28.14926,153.44154,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,3,Australia,AU,Queensland,-28.15723,153.40743,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2023,6,27,Australia,AU,Queensland,-27.97687,153.34432,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,3,Australia,AU,Queensland,-27.92954,153.36779,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,26,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,22,Australia,AU,Queensland,-27.97588,153.30539,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,19,Australia,AU,Queensland,-27.92896,153.36612,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,23,Australia,AU,Queensland,-28.10715,153.43564,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,7,Australia,AU,Queensland,-28.16542,153.41067,EPSG:4326 +HUMAN_OBSERVATION,Anthony Amis,2,,,2021,7,6,Australia,AU,Victoria,-38.45333,146.84502,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,2,Australia,AU,Queensland,-28.15414,153.45892,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,9,13,Australia,AU,Queensland,-27.95767,153.37608,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,24,Australia,AU,Queensland,-27.8914,153.33384,EPSG:4326 +HUMAN_OBSERVATION,Peter Homan,2,,,2022,1,3,Australia,AU,Victoria,-38.54833,143.97639,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,10,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,11,Australia,AU,Queensland,-28.05669,153.34699,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,30,Australia,AU,Queensland,-27.94998,153.35722,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - cause unknown. Same koala as 11017,2022,7,24,Australia,AU,Queensland,-27.90531,153.37105,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,25,Australia,AU,Queensland,-28.0993,153.35743,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,1,Australia,AU,Queensland,-28.05631,153.31217,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,10,Australia,AU,Queensland,-28.14733,153.45421,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of illness. Same koala as 9874,2021,3,3,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,18,Australia,AU,Queensland,-28.08866,153.45246,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,23,Australia,AU,Queensland,-28.09616,153.45264,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,3,Australia,AU,Queensland,-28.14647,153.42494,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,2,,,2020,10,15,Australia,AU,Victoria,-37.14843,145.20702,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,10,30,Australia,AU,Queensland,-27.8953,153.32895,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,8,Australia,AU,Queensland,-27.97664,153.23228,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,30,Australia,AU,Queensland,-28.12589,153.39951,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,25,Australia,AU,Queensland,-27.90551,153.32756,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,29,Australia,AU,Queensland,-27.91642,153.3747,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,2,Australia,AU,Queensland,-28.1417,153.4516,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,22,Australia,AU,Queensland,-28.09754,153.4485,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - cause unknown. Found near road,2022,5,22,Australia,AU,Queensland,-28.15787,153.46384,EPSG:4326 +HUMAN_OBSERVATION,Luke Woodford,2,,,2022,6,4,Australia,AU,Victoria,-37.27897,148.28953,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,28,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,14,Australia,AU,Queensland,-27.85162,153.34121,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,10,Australia,AU,Queensland,-28.10509,153.37817,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,14,Australia,AU,Queensland,-28.13866,153.45196,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,2,,,2020,7,8,Australia,AU,New South Wales,-28.692,153.51,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,26,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,12,Australia,AU,Queensland,-28.14747,153.45461,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,1,Australia,AU,Queensland,-27.91546,153.33186,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,6,Australia,AU,Queensland,-28.09135,153.46003,EPSG:4326 +HUMAN_OBSERVATION,Anne Jones,2,,,2021,1,3,Australia,AU,New South Wales,-28.735,153.417,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,20,Australia,AU,Queensland,-27.93223,153.36204,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,12,Australia,AU,Queensland,-27.93299,153.35882,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,13,Australia,AU,Queensland,-28.15375,153.44864,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,27,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,3,31,Australia,AU,Queensland,-27.97694,153.23265,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,30,Australia,AU,Queensland,-28.09126,153.45096,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,26,Australia,AU,Queensland,-27.94829,153.39294,EPSG:4326 +HUMAN_OBSERVATION,Joanna Immig,2,,,2020,11,26,Australia,AU,New South Wales,-28.683,153.488,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,11,Australia,AU,Queensland,-28.1072,153.44127,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,6,Australia,AU,Queensland,-28.00818,153.29973,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,9,Australia,AU,Queensland,-28.15368,153.44678,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,10,30,Australia,AU,Queensland,-27.89085,153.32899,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Heard only ,2020,8,10,Australia,AU,Queensland,-27.75838,153.19988,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,11,11,Australia,AU,Queensland,-27.95052,153.35268,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,9,Australia,AU,Queensland,-28.15938,153.43906,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,28,Australia,AU,Queensland,-27.91639,153.34013,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,29,Australia,AU,Queensland,-27.943,153.26312,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,11,24,Australia,AU,Queensland,-27.93165,153.37441,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,19,Australia,AU,Queensland,-27.92048,153.38451,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,20,Australia,AU,Queensland,-28.09215,153.45258,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,14,Australia,AU,Queensland,-28.1566,153.44558,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,1,Australia,AU,Queensland,-28.13778,153.4125,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,8,Australia,AU,Queensland,-27.93812,153.36492,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,18,Australia,AU,Queensland,-28.05157,153.31482,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,10,Australia,AU,Queensland,-28.00607,153.28633,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,12,Australia,AU,Queensland,-27.95489,153.38246,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,16,Australia,AU,Queensland,-27.94281,153.36695,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,12,Australia,AU,Queensland,-27.97704,153.232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,3,Australia,AU,Queensland,-28.10015,153.44948,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,13,Australia,AU,Queensland,-27.92206,153.38479,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,26,Australia,AU,Queensland,-27.95071,153.35623,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,9,Australia,AU,Queensland,-28.14218,153.4563,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,21,Australia,AU,Queensland,-28.10168,153.37504,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,25,Australia,AU,Queensland,-27.91944,153.38585,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,8,Australia,AU,Queensland,-28.15002,153.40645,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,26,Australia,AU,Queensland,-28.0939,153.44976,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,7,Australia,AU,Queensland,-28.13161,153.45666,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,3,Australia,AU,Queensland,-28.10776,153.44141,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,18,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,2,Australia,AU,Queensland,-28.10574,153.36162,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,24,Australia,AU,Queensland,-27.80436,153.2669,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,24,Australia,AU,Queensland,-27.89087,153.3292,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,9,Australia,AU,Queensland,-27.93222,153.36136,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,4,Australia,AU,Queensland,-27.84465,153.26504,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,8,Australia,AU,Queensland,-28.13252,153.45588,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,24,Australia,AU,Queensland,-28.12747,153.45887,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,22,Australia,AU,Queensland,-28.12725,153.44418,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,3,7,Australia,AU,Queensland,-28.14582,153.41959,EPSG:4326 +HUMAN_OBSERVATION,Scott Abrahams,2,,,2021,2,25,Australia,AU,New South Wales,-28.696,153.438,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,6,Australia,AU,Queensland,-27.97274,153.22484,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,16,Australia,AU,Queensland,-27.93922,153.35671,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,12,Australia,AU,Queensland,-28.1614,153.45036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,14,Australia,AU,Queensland,-27.87723,153.25638,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,24,Australia,AU,Queensland,-28.11049,153.37116,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,24,Australia,AU,Queensland,-27.78103,153.11327,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,27,Australia,AU,Queensland,-27.92161,153.38432,EPSG:4326 +HUMAN_OBSERVATION,taylor,2,,,2020,8,11,Australia,AU,New South Wales,-28.724,153.544,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,6,23,Australia,AU,Queensland,-28.16623,153.43239,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,2,,,2020,8,22,Australia,AU,New South Wales,-28.635669,153.592409,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,12,Australia,AU,Queensland,-28.0984,153.44871,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,16,Australia,AU,Queensland,-27.95648,153.35761,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,20,Australia,AU,Queensland,-27.82659,153.1797,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,29,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,6,Australia,AU,Queensland,-28.11894,153.42665,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,9,Australia,AU,Queensland,-28.04833,153.33766,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,11,Australia,AU,Queensland,-27.93132,153.36576,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,14,Australia,AU,Queensland,-28.03943,153.2789,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,9,26,Australia,AU,Queensland,-28.13755,153.45557,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,12,Australia,AU,Queensland,-28.1183,153.42763,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,31,Australia,AU,Queensland,-27.8443,153.17721,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,1,Australia,AU,Queensland,-28.13884,153.43785,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,2,15,Australia,AU,Queensland,-28.15449,153.4412,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,3,Australia,AU,Queensland,-27.94963,153.3781,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,8,16,Australia,AU,Queensland,-27.96163,153.3924,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,1,Australia,AU,Queensland,-28.1112,153.3927,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,17,Australia,AU,Queensland,-28.10966,153.3837,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,19,Australia,AU,Queensland,-28.12374,153.4288,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,9,7,Australia,AU,Queensland,-27.97723,153.23236,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,6,Australia,AU,Queensland,-27.93351,153.35882,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,1,Australia,AU,Queensland,-28.17175,153.42641,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,13,Australia,AU,Queensland,-28.09602,153.45307,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,30,Australia,AU,Queensland,-27.94059,153.35777,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,2,Australia,AU,Queensland,-28.1446,153.41632,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,3,Australia,AU,Queensland,-27.93294,153.35935,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,22,Australia,AU,Queensland,-28.15105,153.41899,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,2,10,Australia,AU,Queensland,-28.17272,153.41737,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,8,Australia,AU,Queensland,-27.94678,153.37893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,7,Australia,AU,Queensland,-27.93323,153.35894,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,23,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,24,Australia,AU,Queensland,-27.97716,153.23208,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,30,Australia,AU,Queensland,-28.09445,153.38173,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,6,Australia,AU,Queensland,-28.15191,153.45761,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,24,Australia,AU,Queensland,-27.93386,153.36294,EPSG:4326 +HUMAN_OBSERVATION,David French,2,,,2020,8,30,Australia,AU,New South Wales,-28.711473,153.523046,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,17,Australia,AU,Queensland,-28.11846,153.39406,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,14,Australia,AU,Queensland,-28.15091,153.42047,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,5,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,10,Australia,AU,Queensland,-28.15341,153.45637,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,21,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,11,11,Australia,AU,Queensland,-27.89279,153.38873,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,11,Australia,AU,Queensland,-28.09629,153.45273,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,20,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,renae baker,2,,,2020,8,22,Australia,AU,New South Wales,-28.636,153.592,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,5,Australia,AU,Queensland,-27.97714,153.23213,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,21,Australia,AU,Queensland,-27.90659,153.3265,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,16,Australia,AU,Queensland,-28.041,153.25677,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,2,Australia,AU,Queensland,-27.8994,153.29924,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,3,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,26,Australia,AU,Queensland,-27.934,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,25,Australia,AU,Queensland,-27.9988,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-28.0958,153.44526,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,1,Australia,AU,Queensland,-28.15066,153.4108,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.9518,153.38275,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,8,Australia,AU,Queensland,-28.1274,153.4589,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,23,Australia,AU,Queensland,-28.13271,153.3729,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,16,Australia,AU,Queensland,-28.1425,153.39912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,17,Australia,AU,Queensland,-28.10006,153.44818,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,13,Australia,AU,Queensland,-28.1183,153.42763,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,16,Australia,AU,Queensland,-27.9273,153.40224,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,15,Australia,AU,Queensland,-27.89089,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,19,Australia,AU,Queensland,-28.11724,153.41035,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,1,Australia,AU,Queensland,-28.09323,153.35451,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,18,Australia,AU,Queensland,-28.14207,153.4563,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,3,Australia,AU,Queensland,-27.92171,153.38426,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,6,6,Australia,AU,Queensland,-27.97714,153.23213,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,2,,,2020,9,28,Australia,AU,New South Wales,-28.690229,153.516093,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,13,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,1,Australia,AU,Queensland,-27.90386,153.37233,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,9,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,7,21,Australia,AU,Queensland,-28.15054,153.41242,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,13,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,26,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,25,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,13,Australia,AU,Queensland,-27.88,153.23,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,30,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,21,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,15,Australia,AU,Queensland,-28.15006,153.44079,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,18,Australia,AU,Queensland,-27.97716,153.23208,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,28,Australia,AU,Queensland,-27.97716,153.23208,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,17,Australia,AU,Queensland,-27.95437,153.36404,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,13,Australia,AU,Queensland,-27.93322,153.35864,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,25,Australia,AU,Queensland,-28.15375,153.41997,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,10,Australia,AU,Queensland,-28.10152,153.37308,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,2,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,7,Australia,AU,Queensland,-27.9222,153.38855,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,5,6,Australia,AU,Queensland,-27.9471,153.30193,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,23,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,17,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,11,11,Australia,AU,Queensland,-27.90276,153.31494,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,25,Australia,AU,Queensland,-28.10438,153.43866,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,15,Australia,AU,Queensland,-28.09985,153.4494,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,16,Australia,AU,Queensland,-27.9441,153.36529,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,18,Australia,AU,Queensland,-28.16252,153.44932,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,11,1,Australia,AU,Queensland,-28.0891,153.34154,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,6,Australia,AU,Queensland,-27.9086,153.26375,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,4,Australia,AU,Queensland,-28.04426,153.35031,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,14,Australia,AU,Queensland,-28.14426,153.41452,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,29,Australia,AU,Queensland,-27.82213,153.3795,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,28,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,27,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,30,Australia,AU,Queensland,-27.99417,153.31225,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,25,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,17,Australia,AU,Queensland,-28.09288,153.44671,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,10,27,Australia,AU,Queensland,-28.1493,153.41881,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,20,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,10,Australia,AU,Queensland,-28.09297,153.44682,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,10,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,6,Australia,AU,Queensland,-28.11837,153.42744,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,28,Australia,AU,Queensland,-28.09397,153.45286,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,20,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,27,Australia,AU,Queensland,-27.94046,153.35774,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,14,Australia,AU,Queensland,-28.13246,153.44172,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,9,25,Australia,AU,Queensland,-28.1784,153.37053,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,8,Australia,AU,Queensland,-28.11216,153.4121,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,15,Australia,AU,Queensland,-28.14153,153.44827,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,14,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,23,Australia,AU,Queensland,-28.13724,153.44693,EPSG:4326 +HUMAN_OBSERVATION,Chris Stapleton,2,,,2020,9,14,Australia,AU,New South Wales,-28.677,153.607,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,12,10,Australia,AU,Queensland,-27.933,153.27616,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,9,Australia,AU,Queensland,-27.90446,153.32382,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,9,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,2,,,2020,7,26,Australia,AU,New South Wales,-28.66697,153.409654,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,2,,,2020,7,8,Australia,AU,New South Wales,-28.690259,153.513824,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,11,Australia,AU,Queensland,-27.93914,153.35641,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,24,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,28,Australia,AU,Queensland,-28.16295,153.45007,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,19,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,23,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,8,Australia,AU,Queensland,-27.94972,153.37814,EPSG:4326 +HUMAN_OBSERVATION,Monique Collins,2,,,2020,10,31,Australia,AU,New South Wales,-28.667,153.509,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,17,Australia,AU,Queensland,-28.10792,153.44182,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,14,Australia,AU,Queensland,-28.13512,153.44511,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,12,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,7,28,Australia,AU,Queensland,-27.91568,153.3845,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,3,Australia,AU,Queensland,-27.99681,153.29836,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,27,Australia,AU,Queensland,-27.96104,153.35285,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,7,Australia,AU,Queensland,-28.09377,153.45315,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-28.10826,153.38396,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,12,Australia,AU,Queensland,-28.16174,153.44162,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,11,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,18,Australia,AU,Queensland,-27.94232,153.35063,EPSG:4326 +HUMAN_OBSERVATION,Dale Viola,2,,,2020,9,25,Australia,AU,New South Wales,-28.694,153.496,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,11,Australia,AU,Queensland,-28.03414,153.33469,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,6,30,Australia,AU,Queensland,-28.05254,153.31534,EPSG:4326 +HUMAN_OBSERVATION,Ben and Amy,2,,,2020,9,25,Australia,AU,New South Wales,-28.687852,153.514452,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,7,Australia,AU,Queensland,-28.14565,153.43454,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.72259,153.17852,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,8,21,Australia,AU,Queensland,-28.09342,153.44668,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,30,Australia,AU,Queensland,-28.11829,153.40767,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,26,Australia,AU,Queensland,-28.15684,153.26656,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,10,18,Australia,AU,Queensland,-27.94983,153.37701,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,1,Australia,AU,Queensland,-28.09215,153.45258,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,8,2,Australia,AU,Queensland,-27.85229,153.3348,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,24,Australia,AU,Queensland,-27.97668,153.23199,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,5,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,9,Australia,AU,Queensland,-28.09659,153.44863,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,1,30,Australia,AU,Queensland,-27.97709,153.23244,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,31,Australia,AU,Queensland,-27.91951,153.33221,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,4,20,Australia,AU,Queensland,-28.14937,153.45332,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,2,Australia,AU,Queensland,-27.93266,153.35898,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,17,Australia,AU,Queensland,-27.90702,153.33129,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,15,Australia,AU,Queensland,-28.16732,153.51846,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,24,Australia,AU,Queensland,-27.80301,153.18495,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,4,Australia,AU,Queensland,-27.90211,153.3343,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,25,Australia,AU,Queensland,-27.94364,153.34969,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,9,19,Australia,AU,Queensland,-28.14639,153.43479,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,1,Australia,AU,Queensland,-28.13637,153.44679,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,25,Australia,AU,Queensland,-27.97671,153.23212,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,2,Australia,AU,Queensland,-27.8905,153.3296,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,25,Australia,AU,Queensland,-27.93208,153.362,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,7,Australia,AU,Queensland,-27.89977,153.33592,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,1,Australia,AU,Queensland,-28.14178,153.45159,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,10,Australia,AU,Queensland,-27.97716,153.23179,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,22,Australia,AU,Queensland,-28.09564,153.44827,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,14,Australia,AU,Queensland,-28.09963,153.45113,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,13,Australia,AU,Queensland,-27.93914,153.35641,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,8,1,Australia,AU,Queensland,-28.1713,153.42917,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,6,Australia,AU,Queensland,-27.97865,153.24183,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,16,Australia,AU,Queensland,-27.92444,153.37937,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,3,Australia,AU,Queensland,-27.9335,153.3625,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,5,Australia,AU,Queensland,-27.9141,153.26515,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,9,Australia,AU,Queensland,-28.14344,153.44221,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,15,Australia,AU,Queensland,-27.92286,153.3847,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,8,20,Australia,AU,Queensland,-27.89417,153.3254,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Heard only ,2020,8,18,Australia,AU,Queensland,-28.11443,153.39282,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,4,Australia,AU,Queensland,-28.13868,153.39686,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,3,Australia,AU,Queensland,-28.09208,153.45187,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,13,Australia,AU,Queensland,-27.93914,153.35641,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,5,Australia,AU,Queensland,-27.9086,153.26375,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,13,Australia,AU,Queensland,-28.09881,153.44966,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,3,Australia,AU,Queensland,-27.97716,153.23208,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2022,7,14,Australia,AU,Queensland,-27.91916,153.34124,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,13,Australia,AU,Queensland,-28.14799,153.44996,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,22,Australia,AU,Queensland,-27.8908,153.3287,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,1,Australia,AU,Queensland,-27.94037,153.35825,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,19,Australia,AU,Queensland,-28.14476,153.41626,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,1,Australia,AU,Queensland,-28.09448,153.44438,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,16,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,6,Australia,AU,Queensland,-27.81834,153.32554,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,15,Australia,AU,Queensland,-27.93491,153.35381,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,1,Australia,AU,Queensland,-27.94498,153.37368,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,5,Australia,AU,Queensland,-27.93981,153.38076,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,16,Australia,AU,Queensland,-27.89073,153.32926,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,8,Australia,AU,Queensland,-28.09469,153.45266,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,6,Australia,AU,Queensland,-28.09237,153.45347,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,4,Australia,AU,Queensland,-27.93294,153.36226,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,8,28,Australia,AU,Queensland,-27.93917,153.35667,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,28,Australia,AU,Queensland,-27.93202,153.36188,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,2,9,Australia,AU,Queensland,-28.14905,153.45037,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,17,Australia,AU,Queensland,-27.89826,153.32276,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,7,4,Australia,AU,Queensland,-28.11771,153.45287,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,11,Australia,AU,Queensland,-28.13412,153.40435,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,5,Australia,AU,Queensland,-27.91366,153.37498,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,10,Australia,AU,Queensland,-27.87788,153.37483,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,24,Australia,AU,Queensland,-28.14043,153.44653,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,10,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,18,Australia,AU,Queensland,-27.99361,153.30278,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,8,Australia,AU,Queensland,-27.91729,153.38625,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,4,18,Australia,AU,Queensland,-28.13578,153.44699,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,7,20,Australia,AU,Queensland,-27.97716,153.23208,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,6,4,Australia,AU,Queensland,-28.16536,153.43236,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,5,Australia,AU,Queensland,-27.93742,153.35647,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,15,Australia,AU,Queensland,-28.09917,153.44929,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,26,Australia,AU,Queensland,-28.14835,153.45949,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) - Signs of disease,2022,1,18,Australia,AU,Queensland,-28.1496,153.2709,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,17,Australia,AU,Queensland,-27.93762,153.36396,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,10,Australia,AU,Queensland,-28.15271,153.41756,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2022,12,22,Australia,AU,Queensland,-27.92534,153.35847,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,5,Australia,AU,Queensland,-28.0156,153.31154,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,8,17,Australia,AU,Queensland,-28.16871,153.43366,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,12,Australia,AU,Queensland,-27.91708,153.29647,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,31,Australia,AU,Queensland,-27.9054,153.34365,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,6,8,Australia,AU,Queensland,-27.91545,153.34029,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,23,Australia,AU,Queensland,-28.11069,153.38526,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,4,Australia,AU,Queensland,-27.93374,153.36308,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,11,25,Australia,AU,Queensland,-27.97717,153.2321,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,12,Australia,AU,Queensland,-27.93262,153.36086,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,1,14,Australia,AU,Queensland,-27.97732,153.23163,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,7,7,Australia,AU,Queensland,-28.09904,153.45754,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,13,Australia,AU,Queensland,-28.10609,153.38959,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,9,17,Australia,AU,Queensland,-27.95733,153.37545,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,19,Australia,AU,Queensland,-27.89041,153.32875,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,30,Australia,AU,Queensland,-28.09512,153.44518,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,9,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,27,Australia,AU,Queensland,-28.12324,153.42467,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,25,Australia,AU,Queensland,-27.93399,153.36301,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,1,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,5,24,Australia,AU,Queensland,-28.17244,153.41864,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,1,12,Australia,AU,Queensland,-28.09382,153.45331,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,11,Australia,AU,Queensland,-28.0946,153.45678,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,20,Australia,AU,Queensland,-27.82299,153.37896,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,20,Australia,AU,Queensland,-27.93223,153.36204,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,12,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,22,Australia,AU,Queensland,-27.91168,153.37969,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,24,Australia,AU,Queensland,-27.78825,153.25157,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,9,Australia,AU,Queensland,-28.09952,153.4516,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,9,Australia,AU,Queensland,-27.91164,153.27554,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,13,Australia,AU,Queensland,-27.93578,153.35654,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,16,Australia,AU,Queensland,-27.93738,153.35647,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,24,Australia,AU,Queensland,-28.05246,153.31489,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,16,Australia,AU,Queensland,-27.92919,153.36659,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,8,Australia,AU,Queensland,-27.96183,153.25973,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2021,10,7,Australia,AU,Queensland,-28.14406,153.45034,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,11,Australia,AU,Queensland,-27.88066,153.36689,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,7,23,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,29,Australia,AU,Queensland,-28.13751,153.43985,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,29,Australia,AU,Queensland,-28.1002,153.45116,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,1,10,Australia,AU,Queensland,-27.94432,153.33959,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,22,Australia,AU,Queensland,-27.90388,153.32678,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,3,Australia,AU,Queensland,-27.89044,153.32938,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,10,19,Australia,AU,Queensland,-28.09587,153.4527,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,11,Australia,AU,Queensland,-28.10212,153.37432,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,9,Australia,AU,Queensland,-27.99765,153.27827,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.72259,153.17852,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,8,11,Australia,AU,Queensland,-27.94479,153.37186,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,24,Australia,AU,Queensland,-28.16988,153.40615,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,24,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,8,Australia,AU,Queensland,-27.79644,153.23137,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,16,Australia,AU,Queensland,-28.0915,153.4516,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,12,15,Australia,AU,Queensland,-27.93111,153.3593,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,30,Australia,AU,Queensland,-27.93644,153.36021,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,3,Australia,AU,Queensland,-28.15073,153.40568,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,17,Australia,AU,Queensland,-27.97696,153.34054,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,25,Australia,AU,Queensland,-28.09752,153.44846,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,15,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,17,Australia,AU,Queensland,-28.0135,153.31501,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,1,Australia,AU,Queensland,-27.95215,153.37864,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,30,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2021,1,23,Australia,AU,Queensland,-27.7588,153.24278,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,5,Australia,AU,Queensland,-28.14405,153.44301,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,15,Australia,AU,Queensland,-27.94113,153.35767,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,16,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,2,Australia,AU,Queensland,-28.09659,153.44778,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,3,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,23,Australia,AU,Queensland,-28.09543,153.44935,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,8,14,Australia,AU,Queensland,-28.15675,153.33755,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,5,12,Australia,AU,Queensland,-28.11375,153.39192,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,29,Australia,AU,Queensland,-28.109,153.43921,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,16,Australia,AU,Queensland,-28.09215,153.45258,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,5,24,Australia,AU,Queensland,-28.1609,153.45157,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,8,Australia,AU,Queensland,-28.17066,153.406,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,12,Australia,AU,Queensland,-28.13876,153.45198,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,16,Australia,AU,Queensland,-27.93359,153.36375,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,25,Australia,AU,Queensland,-27.97727,153.23215,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,22,Australia,AU,Queensland,-28.09658,153.4485,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,22,Australia,AU,Queensland,-27.89589,153.31622,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,11,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,10,Australia,AU,Queensland,-27.93366,153.35915,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,1,5,Australia,AU,Queensland,-27.88404,153.32853,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,7,16,Australia,AU,Queensland,-27.9772,153.23232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,16,Australia,AU,Queensland,-27.93533,153.3025,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,22,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,28,Australia,AU,Queensland,-28.16152,153.45081,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,5,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,30,Australia,AU,Queensland,-28.13161,153.45666,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,24,Australia,AU,Queensland,-28.11497,153.3954,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,22,Australia,AU,Queensland,-28.13365,153.39142,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,24,Australia,AU,Queensland,-28.17266,153.42779,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,6,Australia,AU,Queensland,-27.95034,153.35341,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,24,Australia,AU,Queensland,-27.89069,153.32894,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,31,Australia,AU,Queensland,-28.14205,153.4237,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,1,Australia,AU,Queensland,-28.09392,153.44892,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,19,Australia,AU,Queensland,-27.93422,153.36543,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,4,Australia,AU,Queensland,-28.11915,153.4347,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,18,Australia,AU,Queensland,-28.09505,153.45266,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,15,Australia,AU,Queensland,-27.93383,153.35931,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,4,Australia,AU,Queensland,-27.92999,153.37074,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,5,11,Australia,AU,Queensland,-28.153,153.42882,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,9,13,Australia,AU,Queensland,-27.85055,153.32737,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,29,Australia,AU,Queensland,-27.94158,153.35715,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,12,26,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,27,Australia,AU,Queensland,-28.09534,153.4459,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,17,Australia,AU,Queensland,-28.00711,153.30296,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,5,4,Australia,AU,Queensland,-28.14963,153.27078,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,2,12,Australia,AU,Queensland,-28.11403,153.39788,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,13,Australia,AU,Queensland,-27.93052,153.35957,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,19,Australia,AU,Queensland,-28.16138,153.43252,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,10,14,Australia,AU,Queensland,-28.10152,153.37308,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,5,Australia,AU,Queensland,-27.83294,153.36322,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,15,Australia,AU,Queensland,-28.0959,153.44924,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,24,Australia,AU,Queensland,-28.14504,153.40647,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,2,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,7,Australia,AU,Queensland,-28.14942,153.45004,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,7,19,Australia,AU,Queensland,-27.97723,153.23236,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,23,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,10,Australia,AU,Queensland,-28.16472,153.43625,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2022,9,1,Australia,AU,Queensland,-27.94531,153.38622,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,6,23,Australia,AU,Queensland,-27.84195,153.34857,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,24,Australia,AU,Queensland,-28.09677,153.31894,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,7,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,4,15,Australia,AU,Queensland,-28.13302,153.45753,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,20,Australia,AU,Queensland,-27.92198,153.388,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,15,Australia,AU,Queensland,-27.92932,153.36648,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,12,Australia,AU,Queensland,-27.89826,153.32276,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,16,Australia,AU,Queensland,-28.09741,153.44934,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,11,2,Australia,AU,Queensland,-28.15723,153.42843,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,28,Australia,AU,Queensland,-28.13969,153.45549,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,3,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,13,Australia,AU,Queensland,-27.82215,153.37935,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,8,2,Australia,AU,Queensland,-28.08836,153.36409,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,3,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,16,Australia,AU,Queensland,-27.84091,153.35305,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,10,21,Australia,AU,Queensland,-27.97716,153.23208,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,13,Australia,AU,Queensland,-27.89057,153.32944,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,7,14,Australia,AU,Queensland,-28.10167,153.44779,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,10,18,Australia,AU,Queensland,-27.97698,153.23279,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2021,9,27,Australia,AU,Queensland,-27.91517,153.38711,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,11,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.94024,153.36275,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,16,Australia,AU,Queensland,-28.19898,153.27074,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,9,15,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,27,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,24,Australia,AU,Queensland,-28.03325,153.31693,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,5,Australia,AU,Queensland,-28.16766,153.40471,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,6,28,Australia,AU,Queensland,-28.0966,153.44855,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,5,30,Australia,AU,Queensland,-28.10008,153.39602,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,3,Australia,AU,Queensland,-27.94253,153.35883,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,17,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,25,Australia,AU,Queensland,-28.12792,153.45793,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,2,Australia,AU,Queensland,-28.09877,153.44912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,25,Australia,AU,Queensland,-27.997,153.2571,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,14,Australia,AU,Queensland,-27.94091,153.35755,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,10,19,Australia,AU,Queensland,-27.99038,153.24637,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,5,Australia,AU,Queensland,-27.9339,153.36295,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,18,Australia,AU,Queensland,-28.09375,153.45569,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,3,Australia,AU,Queensland,-27.99819,153.26016,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,13,Australia,AU,Queensland,-28.02996,153.31133,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,24,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,21,Australia,AU,Queensland,-27.93991,153.35871,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,4,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,8,Australia,AU,Queensland,-28.11884,153.38792,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,14,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,8,Australia,AU,Queensland,-28.14043,153.44653,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,3,Australia,AU,Queensland,-27.9205,153.3291,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,19,Australia,AU,Queensland,-27.94102,153.35793,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,1,Australia,AU,Queensland,-28.14029,153.4464,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,27,Australia,AU,Queensland,-27.89009,153.32302,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,28,Australia,AU,Queensland,-27.94161,153.16246,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,9,13,Australia,AU,Queensland,-27.94241,153.37631,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,26,Australia,AU,Queensland,-27.9124,153.3039,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,12,Australia,AU,Queensland,-28.09482,153.4486,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,22,Australia,AU,Queensland,-27.91948,153.28917,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,1,Australia,AU,Queensland,-28.09459,153.45262,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,23,Australia,AU,Queensland,-27.83556,153.30909,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,2,Australia,AU,Queensland,-28.14862,153.45022,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2022,8,24,Australia,AU,Queensland,-27.87761,153.36113,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,5,Australia,AU,Queensland,-27.95767,153.37608,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,6,Australia,AU,Queensland,-27.9453,153.25001,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,7,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,13,Australia,AU,Queensland,-28.09059,153.45493,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,8,30,Australia,AU,Queensland,-28.09511,153.45226,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,27,Australia,AU,Queensland,-27.89071,153.32928,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,23,Australia,AU,Queensland,-28.13627,153.43337,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,22,Australia,AU,Queensland,-28.09198,153.45256,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,22,Australia,AU,Queensland,-27.96355,153.27024,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,15,Australia,AU,Queensland,-27.91668,153.32808,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,15,Australia,AU,Queensland,-28.13877,153.45204,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,26,Australia,AU,Queensland,-28.00356,153.31618,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,2,Australia,AU,Queensland,-27.88066,153.36734,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,7,29,Australia,AU,Queensland,-27.9091,153.3418,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,7,31,Australia,AU,Queensland,-27.83744,153.37057,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) - Signs of disease,2021,10,26,Australia,AU,Queensland,-27.85175,153.33622,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,7,11,Australia,AU,Queensland,-27.97714,153.23213,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,3,Australia,AU,Queensland,-27.81852,153.32579,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,27,Australia,AU,Queensland,-28.13128,153.41598,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,20,Australia,AU,Queensland,-28.09161,153.45268,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,23,Australia,AU,Queensland,-27.97699,153.23276,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,23,Australia,AU,Queensland,-28.16735,153.44881,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,30,Australia,AU,Queensland,-27.89085,153.32885,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,2,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,16,Australia,AU,Queensland,-28.09624,153.4529,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,13,Australia,AU,Queensland,-28.14347,153.44222,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,25,Australia,AU,Queensland,-27.91863,153.32702,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,25,Australia,AU,Queensland,-27.86866,153.23645,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,17,Australia,AU,Queensland,-27.94374,153.36719,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,29,Australia,AU,Queensland,-28.09448,153.44928,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,28,Australia,AU,Queensland,-28.10058,153.44807,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,1,9,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,6,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,27,Australia,AU,Queensland,-28.15648,153.43918,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,10,24,Australia,AU,Queensland,-27.93269,153.36118,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,12,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Heard only ,2020,4,5,Australia,AU,Queensland,-27.96225,153.37466,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,15,Australia,AU,Queensland,-27.90383,153.33461,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,19,Australia,AU,Queensland,-27.88051,153.36732,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,17,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,7,Australia,AU,Queensland,-27.84046,153.37099,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2022,11,13,Australia,AU,Queensland,-27.96145,153.35317,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,17,Australia,AU,Queensland,-27.89826,153.32276,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Heard only ,2020,3,21,Australia,AU,Queensland,-28.15213,153.39553,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,15,Australia,AU,Queensland,-27.97758,153.2664,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,29,Australia,AU,Queensland,-28.15068,153.40553,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,7,6,Australia,AU,Queensland,-28.09398,153.45393,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,16,Australia,AU,Queensland,-27.92772,153.36326,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,19,Australia,AU,Queensland,-28.16492,153.1934,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,28,Australia,AU,Queensland,-28.15022,153.42113,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,9,12,Australia,AU,Queensland,-27.91187,153.33199,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,10,30,Australia,AU,Queensland,-28.11045,153.38495,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,16,Australia,AU,Queensland,-28.13141,153.45623,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,19,Australia,AU,Queensland,-28.09754,153.44858,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,28,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,10,Australia,AU,Queensland,-28.09731,153.44888,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,1,Australia,AU,Queensland,-27.94078,153.35794,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,25,Australia,AU,Queensland,-27.94968,153.36473,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,1,Australia,AU,Queensland,-28.14391,153.43909,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,13,Australia,AU,Queensland,-28.09189,153.45198,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,30,Australia,AU,Queensland,-27.89217,153.33412,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,9,Australia,AU,Queensland,-28.00749,153.26688,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,11,Australia,AU,Queensland,-27.9335,153.36199,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,25,Australia,AU,Queensland,-28.14658,153.41102,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,11,Australia,AU,Queensland,-28.10051,153.44858,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,8,Australia,AU,Queensland,-28.17921,153.44434,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,5,Australia,AU,Queensland,-28.13085,153.43596,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,29,Australia,AU,Queensland,-28.09766,153.3705,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,30,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,26,Australia,AU,Queensland,-27.97529,153.23081,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,13,Australia,AU,Queensland,-27.93888,153.35657,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,10,Australia,AU,Queensland,-27.9163,153.38442,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,24,Australia,AU,Queensland,-27.9374,153.36203,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,10,Australia,AU,Queensland,-28.09759,153.44851,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,11,Australia,AU,Queensland,-28.13221,153.45528,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) - Signs of disease,2021,1,14,Australia,AU,Queensland,-28.02825,153.30391,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,22,Australia,AU,Queensland,-28.09562,153.44889,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,1,Australia,AU,Queensland,-27.93227,153.362,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,18,Australia,AU,Queensland,-28.15,153.44105,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,6,15,Australia,AU,Queensland,-27.94588,153.36646,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,15,Australia,AU,Queensland,-28.09272,153.44975,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,10,Australia,AU,Queensland,-27.9095,153.27322,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,26,Australia,AU,Queensland,-28.17779,153.3698,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,12,Australia,AU,Queensland,-27.93273,153.35906,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,3,Australia,AU,Queensland,-27.95556,153.38084,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,31,Australia,AU,Queensland,-28.09536,153.44577,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,6,1,Australia,AU,Queensland,-27.91376,153.32991,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,20,Australia,AU,Queensland,-27.89089,153.32891,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,23,Australia,AU,Queensland,-27.89084,153.32885,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,30,Australia,AU,Queensland,-27.80268,153.18487,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,25,Australia,AU,Queensland,-27.89072,153.32892,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,11,26,Australia,AU,Queensland,-28.12417,153.39139,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2023,10,4,Australia,AU,Queensland,-27.90467,153.34332,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,24,Australia,AU,Queensland,-28.10664,153.40513,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,11,18,Australia,AU,Queensland,-27.90829,153.33864,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,10,13,Australia,AU,Queensland,-27.92968,153.3638,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,3,Australia,AU,Queensland,-27.93288,153.36064,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,8,Australia,AU,Queensland,-28.00691,153.26801,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,9,28,Australia,AU,Queensland,-27.9997,153.26289,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,16,Australia,AU,Queensland,-28.01263,153.32913,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,5,Australia,AU,Queensland,-28.15593,153.43944,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,30,Australia,AU,Queensland,-28.13729,153.43275,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,7,Australia,AU,Queensland,-27.84236,153.3532,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,1,29,Australia,AU,Queensland,-27.97723,153.23182,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,3,Australia,AU,Queensland,-27.89079,153.32871,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,21,Australia,AU,Queensland,-27.82202,153.37926,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - cause unknown,2021,3,23,Australia,AU,Queensland,-28.13694,153.30722,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,11,Australia,AU,Queensland,-28.14317,153.39568,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,19,Australia,AU,Queensland,-27.92116,153.32686,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,4,Australia,AU,Queensland,-27.97682,153.23237,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,6,Australia,AU,Queensland,-28.10309,153.4473,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,24,Australia,AU,Queensland,-27.91463,153.37277,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,17,Australia,AU,Queensland,-27.88642,153.32475,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,2,12,Australia,AU,Queensland,-28.09398,153.45288,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,14,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,11,Australia,AU,Queensland,-27.8994,153.29923,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,14,Australia,AU,Queensland,-27.97396,153.29543,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,26,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,7,Australia,AU,Queensland,-28.1361,153.34813,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,8,Australia,AU,Queensland,-28.13273,153.45488,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,8,Australia,AU,Queensland,-27.95659,153.35584,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,24,Australia,AU,Queensland,-28.09507,153.37786,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,9,3,Australia,AU,Queensland,-27.83796,153.30252,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,6,28,Australia,AU,Queensland,-28.12091,153.41977,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,12,Australia,AU,Queensland,-27.8444,153.36873,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,7,Australia,AU,Queensland,-27.81762,153.32482,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,17,Australia,AU,Queensland,-28.1156,153.40525,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,19,Australia,AU,Queensland,-27.84495,153.35846,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,4,Australia,AU,Queensland,-27.92824,153.36414,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,18,Australia,AU,Queensland,-28.1561,153.43916,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,15,Australia,AU,Queensland,-27.8508,153.3362,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,1,14,Australia,AU,Queensland,-27.93907,153.37298,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,5,Australia,AU,Queensland,-28.11082,153.40374,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,14,Australia,AU,Queensland,-28.14181,153.43595,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,10,30,Australia,AU,Queensland,-28.13665,153.405,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,10,Australia,AU,Queensland,-27.91035,153.34185,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,1,Australia,AU,Queensland,-28.13822,153.43156,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,19,Australia,AU,Queensland,-28.0928,153.45089,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,12,8,Australia,AU,Queensland,-27.93477,153.36529,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,22,Australia,AU,Queensland,-28.14856,153.45945,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,1,14,Australia,AU,Queensland,-28.09133,153.35445,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,11,22,Australia,AU,Queensland,-28.09482,153.45253,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,12,Australia,AU,Queensland,-28.09677,153.44686,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,23,Australia,AU,Queensland,-27.97053,153.34363,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,24,Australia,AU,Queensland,-28.09688,153.45551,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Hit by Vehicle,2021,10,19,Australia,AU,Queensland,-27.92664,153.30336,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,3,Australia,AU,Queensland,-28.14002,153.44484,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,24,Australia,AU,Queensland,-28.11324,153.40559,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,6,17,Australia,AU,Queensland,-28.1237,153.39503,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,3,Australia,AU,Queensland,-28.09482,153.4486,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,22,Australia,AU,Queensland,-27.92205,153.31684,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,2,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,8,Australia,AU,Queensland,-27.9615,153.25959,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,12,25,Australia,AU,Queensland,-28.13317,153.45559,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,21,Australia,AU,Queensland,-27.82498,153.32635,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,9,Australia,AU,Queensland,-28.10036,153.4498,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,25,Australia,AU,Queensland,-28.09668,153.44886,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,12,Australia,AU,Queensland,-28.10342,153.3439,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,3,Australia,AU,Queensland,-27.93893,153.36399,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,13,Australia,AU,Queensland,-28.16319,153.44351,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,17,Australia,AU,Queensland,-28.15274,153.45346,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - cause unknown. Same koala as 11016,2022,7,25,Australia,AU,Queensland,-27.90531,153.37105,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,17,Australia,AU,Queensland,-28.12155,153.42199,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,23,Australia,AU,Queensland,-28.10062,153.37349,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,7,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,16,Australia,AU,Queensland,-27.94102,153.35771,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,9,28,Australia,AU,Queensland,-27.94656,153.30126,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,22,Australia,AU,Queensland,-27.89498,153.32819,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,18,Australia,AU,Queensland,-28.15788,153.40717,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,31,Australia,AU,Queensland,-27.80268,153.18487,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,23,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,4,Australia,AU,Queensland,-28.14997,153.44073,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,10,Australia,AU,Queensland,-28.13892,153.36311,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,27,Australia,AU,Queensland,-28.23783,153.24744,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,11,Australia,AU,Queensland,-27.93742,153.35649,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,12,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,16,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,2,Australia,AU,Queensland,-27.895,153.26271,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,19,Australia,AU,Queensland,-28.12408,153.4249,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,9,2,Australia,AU,Queensland,-27.92195,153.38381,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,9,27,Australia,AU,Queensland,-27.97718,153.23214,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,9,1,Australia,AU,Queensland,-27.91825,153.37744,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,17,Australia,AU,Queensland,-28.09119,153.45269,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,2,Australia,AU,Queensland,-28.13773,153.44836,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,8,Australia,AU,Queensland,-27.92534,153.33907,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,23,Australia,AU,Queensland,-28.09758,153.44816,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,2,Australia,AU,Queensland,-28.11761,153.3723,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,16,Australia,AU,Queensland,-27.91928,153.31272,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,28,Australia,AU,Queensland,-28.03485,153.31243,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,2,Australia,AU,Queensland,-28.09538,153.44446,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,14,Australia,AU,Queensland,-28.05237,153.31443,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,3,Australia,AU,Queensland,-27.95812,153.2795,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2020,1,4,Australia,AU,Queensland,-27.91967,153.33994,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,23,Australia,AU,Queensland,-27.82305,153.32758,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,10,Australia,AU,Queensland,-27.85565,153.33969,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,5,14,Australia,AU,Queensland,-28.12518,153.43459,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,2,15,Australia,AU,Queensland,-27.9772,153.23245,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,19,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,28,Australia,AU,Queensland,-27.9379,153.35692,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,3,11,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,23,Australia,AU,Queensland,-27.94112,153.24042,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,12,15,Australia,AU,Queensland,-28.02108,153.31612,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,5,Australia,AU,Queensland,-28.09756,153.44779,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,9,21,Australia,AU,Queensland,-27.91771,153.37907,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,21,Australia,AU,Queensland,-28.11037,153.37076,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,15,Australia,AU,Queensland,-27.92938,153.364,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,20,Australia,AU,Queensland,-28.09538,153.44446,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,28,Australia,AU,Queensland,-27.93044,153.36514,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,17,Australia,AU,Queensland,-28.12935,153.44286,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,11,18,Australia,AU,Queensland,-27.93165,153.37441,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,2,Australia,AU,Queensland,-27.82209,153.32855,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,24,Australia,AU,Queensland,-27.93786,153.36593,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,22,Australia,AU,Queensland,-27.92325,153.30124,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,24,Australia,AU,Queensland,-27.93192,153.3321,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,30,Australia,AU,Queensland,-27.93211,153.36079,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,16,Australia,AU,Queensland,-28.10414,153.39329,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,10,Australia,AU,Queensland,-27.93825,153.37997,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,20,Australia,AU,Queensland,-27.83187,153.36728,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,16,Australia,AU,Queensland,-28.13965,153.46167,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,5,Australia,AU,Queensland,-28.12155,153.42955,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,7,22,Australia,AU,Queensland,-27.97723,153.23236,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,12,6,Australia,AU,Queensland,-28.1498,153.4417,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,3,Australia,AU,Queensland,-28.16052,153.45421,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,14,Australia,AU,Queensland,-27.89826,153.32276,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,3,23,Australia,AU,Queensland,-27.83196,153.25913,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,8,10,Australia,AU,Queensland,-27.91915,153.37746,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,5,Australia,AU,Queensland,-27.9453,153.25002,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,17,Australia,AU,Queensland,-27.95775,153.35788,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,26,Australia,AU,Queensland,-28.09215,153.45258,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,3,Australia,AU,Queensland,-27.92826,153.36411,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,20,Australia,AU,Queensland,-27.92921,153.36395,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,13,Australia,AU,Queensland,-27.97718,153.23214,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,6,9,Australia,AU,Queensland,-27.94077,153.35744,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,28,Australia,AU,Queensland,-27.92287,153.38727,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,11,1,Australia,AU,Queensland,-28.14339,153.42632,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,7,Australia,AU,Queensland,-28.11949,153.45222,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,22,Australia,AU,Queensland,-27.82783,153.29842,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,13,Australia,AU,Queensland,-28.13468,153.35169,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,17,Australia,AU,Queensland,-28.11688,153.40853,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,8,Australia,AU,Queensland,-27.93418,153.36496,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,6,23,Australia,AU,Queensland,-27.97718,153.23215,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,16,Australia,AU,Queensland,-27.80097,153.25052,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,27,Australia,AU,Queensland,-28.13654,153.42884,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,11,Australia,AU,Queensland,-28.1559,153.4668,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,19,Australia,AU,Queensland,-27.89081,153.32879,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,11,Australia,AU,Queensland,-28.14756,153.45036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,20,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,16,Australia,AU,Queensland,-27.96245,153.38284,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,25,Australia,AU,Queensland,-27.9988,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,16,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,10,17,Australia,AU,Queensland,-27.78821,153.2516,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,20,Australia,AU,Queensland,-27.8907,153.32928,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,1,Australia,AU,Queensland,-27.93284,153.35901,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,22,Australia,AU,Queensland,-28.01022,153.32992,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,28,Australia,AU,Queensland,-27.83344,153.36654,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,7,5,Australia,AU,Queensland,-27.97714,153.23213,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,8,Australia,AU,Queensland,-27.95121,153.35744,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,31,Australia,AU,Queensland,-27.91103,153.3723,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,27,Australia,AU,Queensland,-28.09165,153.4516,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2023,4,16,Australia,AU,Queensland,-27.95375,153.34391,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,11,7,Australia,AU,Queensland,-27.89246,153.33786,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,7,Australia,AU,Queensland,-28.14948,153.45004,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,13,Australia,AU,Queensland,-27.89572,153.32437,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,1,Australia,AU,Queensland,-28.0196,153.2739,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,16,Australia,AU,Queensland,-27.94491,153.36529,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,8,12,Australia,AU,Queensland,-28.12982,153.35133,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2020,1,10,Australia,AU,Queensland,-27.98532,153.24427,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,15,Australia,AU,Queensland,-28.1442,153.43374,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,2,Australia,AU,Queensland,-28.1421,153.43006,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,16,Australia,AU,Queensland,-28.14455,153.41716,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,7,Australia,AU,Queensland,-27.97229,153.22465,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,6,4,Australia,AU,Queensland,-28.12976,153.42558,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2023,9,3,Australia,AU,Queensland,-28.10079,153.44994,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,9,Australia,AU,Queensland,-27.93293,153.38215,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,1,Australia,AU,Queensland,-27.8271,153.37895,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,27,Australia,AU,Queensland,-28.12195,153.42396,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,13,Australia,AU,Queensland,-28.14034,153.44701,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,8,Australia,AU,Queensland,-27.93382,153.36274,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,6,15,Australia,AU,Queensland,-27.97714,153.23213,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,10,2,Australia,AU,Queensland,-27.92135,153.38518,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,12,Australia,AU,Queensland,-28.09452,153.45015,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,28,Australia,AU,Queensland,-28.10664,153.44195,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,11,Australia,AU,Queensland,-27.93023,153.36823,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2022,10,13,Australia,AU,Queensland,-28.12982,153.35133,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,7,Australia,AU,Queensland,-28.14489,153.41385,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,3,Australia,AU,Queensland,-27.90536,153.3714,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,13,Australia,AU,Queensland,-27.83824,153.17976,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,31,Australia,AU,Queensland,-27.93449,153.36383,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,9,Australia,AU,Queensland,-28.15091,153.42047,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,31,Australia,AU,Queensland,-27.8806,153.3673,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,28,Australia,AU,Queensland,-28.09298,153.35461,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,7,8,Australia,AU,Queensland,-28.15294,153.44853,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,14,Australia,AU,Queensland,-27.94099,153.35772,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,6,8,Australia,AU,Queensland,-27.91544,153.33996,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,25,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,28,Australia,AU,Queensland,-28.00957,153.32073,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,11,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,30,Australia,AU,Queensland,-27.90009,153.29921,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,28,Australia,AU,Queensland,-28.10973,153.4442,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,20,Australia,AU,Queensland,-27.91142,153.37293,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,1,Australia,AU,Queensland,-27.96361,153.25531,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,13,Australia,AU,Queensland,-27.95732,153.37551,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,27,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,12,Australia,AU,Queensland,-27.94282,153.37955,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,7,Australia,AU,Queensland,-27.84362,153.36222,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,7,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,21,Australia,AU,Queensland,-28.12175,153.42322,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,27,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,15,Australia,AU,Queensland,-26.50276,153.07899,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,2,28,Australia,AU,Queensland,-27.90885,153.34162,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,9,Australia,AU,Queensland,-27.92171,153.38426,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,22,Australia,AU,Queensland,-27.89989,153.32846,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,28,Australia,AU,Queensland,-28.15611,153.43917,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,8,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,25,Australia,AU,Queensland,-27.93384,153.36296,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,31,Australia,AU,Queensland,-27.93345,153.36199,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2021,12,20,Australia,AU,Queensland,-27.88931,153.33123,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,12,20,Australia,AU,Queensland,-28.10104,153.44885,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,6,Australia,AU,Queensland,-27.82249,153.37923,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,24,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,20,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,23,Australia,AU,Queensland,-28.10165,153.37514,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,28,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,24,Australia,AU,Queensland,-28.15961,153.43933,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,2,Australia,AU,Queensland,-28.13639,153.44649,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,17,Australia,AU,Queensland,-28.02113,153.31612,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,18,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,6,Australia,AU,Queensland,-28.09513,153.44393,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,29,Australia,AU,Queensland,-28.13815,153.43996,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,16,Australia,AU,Queensland,-27.92546,153.35507,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,1,Australia,AU,Queensland,-28.05249,153.31427,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,10,17,Australia,AU,Queensland,-27.92015,153.33743,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,20,Australia,AU,Queensland,-28.14208,153.39987,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,19,Australia,AU,Queensland,-27.92633,153.37385,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,3,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,7,Australia,AU,Queensland,-28.12748,153.45872,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,10,Australia,AU,Queensland,-28.15788,153.40717,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,25,Australia,AU,Queensland,-28.13738,153.44955,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) - Signs of disease,2021,9,3,Australia,AU,Queensland,-27.97286,153.2337,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,2,9,Australia,AU,Queensland,-28.14477,153.4171,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,1,Australia,AU,Queensland,-28.16103,153.45382,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,15,Australia,AU,Queensland,-28.13523,153.40422,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,1,28,Australia,AU,Queensland,-27.92453,153.37869,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,8,6,Australia,AU,Queensland,-28.16445,153.4118,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,20,Australia,AU,Queensland,-27.91371,153.37344,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,5,1,Australia,AU,Queensland,-28.03707,153.34012,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,22,Australia,AU,Queensland,-28.09169,153.45627,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,4,Australia,AU,Queensland,-27.89756,153.37444,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,4,Australia,AU,Queensland,-27.93229,153.36191,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,22,Australia,AU,Queensland,-27.9691,153.24345,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,11,Australia,AU,Queensland,-28.09303,153.35467,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,5,Australia,AU,Queensland,-27.88884,153.25852,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,23,Australia,AU,Queensland,-27.99281,153.31707,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,22,Australia,AU,Queensland,-28.11844,153.42701,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,10,Australia,AU,Queensland,-27.93234,153.36191,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,18,Australia,AU,Queensland,-28.11981,153.37305,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,10,5,Australia,AU,Queensland,-27.91942,153.37704,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,22,Australia,AU,Queensland,-28.12855,153.45355,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,10,14,Australia,AU,Queensland,-27.97687,153.23212,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,19,Australia,AU,Queensland,-28.13657,153.44663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,13,Australia,AU,Queensland,-28.10744,153.43228,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,26,Australia,AU,Queensland,-28.02925,153.31074,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,3,20,Australia,AU,Queensland,-27.84469,153.36228,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,29,Australia,AU,Queensland,-28.09494,153.45258,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,28,Australia,AU,Queensland,-28.09065,153.35815,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,22,Australia,AU,Queensland,-28.09237,153.45258,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2020,10,3,Australia,AU,Queensland,-28.11482,153.43247,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,11,Australia,AU,Queensland,-27.89266,153.32594,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,14,Australia,AU,Queensland,-28.14836,153.45918,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,20,Australia,AU,Queensland,-28.09147,153.45167,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,8,7,Australia,AU,Queensland,-28.09657,153.45519,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,1,Australia,AU,Queensland,-27.83012,153.37609,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,22,Australia,AU,Queensland,-28.09756,153.44857,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,28,Australia,AU,Queensland,-28.16091,153.46023,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,20,Australia,AU,Queensland,-27.93353,153.35888,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,8,17,Australia,AU,Queensland,-28.18287,153.35855,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,10,21,Australia,AU,Queensland,-27.92224,153.38257,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,13,Australia,AU,Queensland,-28.149301,153.40724,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,14,Australia,AU,Queensland,-28.0931,153.35448,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,19,Australia,AU,Queensland,-28.13439,153.44359,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,19,Australia,AU,Queensland,-28.12324,153.42467,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,6,18,Australia,AU,Queensland,-28.14509,153.44427,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,11,Australia,AU,Queensland,-27.91577,153.38878,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,6,Australia,AU,Queensland,-27.89041,153.32875,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,9,Australia,AU,Queensland,-28.16099,153.42954,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,16,Australia,AU,Queensland,-27.89097,153.32944,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,27,Australia,AU,Queensland,-27.90074,153.32794,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,4,Australia,AU,Queensland,-27.89071,153.33485,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,1,Australia,AU,Queensland,-28.147,153.42383,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,15,Australia,AU,Queensland,-28.13718,153.44646,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,12,Australia,AU,Queensland,-27.93379,153.36283,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,9,Australia,AU,Queensland,-28.10103,153.37551,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,10,17,Australia,AU,Queensland,-27.9821,153.30921,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,11,Australia,AU,Queensland,-28.14448,153.44558,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,14,Australia,AU,Queensland,-28.14255,153.41089,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,24,Australia,AU,Queensland,-28.14506,153.44467,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,30,Australia,AU,Queensland,-28.05276,153.34843,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,28,Australia,AU,Queensland,-27.88997,153.3274,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,23,Australia,AU,Queensland,-28.03613,153.34108,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,29,Australia,AU,Queensland,-28.21848,153.38486,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,6,8,Australia,AU,Queensland,-28.14317,153.39568,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,29,Australia,AU,Queensland,-28.14151,153.4512,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,8,1,Australia,AU,Queensland,-28.09282,153.45109,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,7,Australia,AU,Queensland,-27.92275,153.32824,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,6,Australia,AU,Queensland,-28.1151,153.40231,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,9,21,Australia,AU,Queensland,-27.9218,153.29427,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,26,Australia,AU,Queensland,-28.09126,153.45096,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,11,11,Australia,AU,Queensland,-27.92206,153.38479,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,26,Australia,AU,Queensland,-28.12982,153.35133,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,19,Australia,AU,Queensland,-28.17195,153.42612,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,2,Australia,AU,Queensland,-27.89086,153.32895,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,25,Australia,AU,Queensland,-27.9374,153.36203,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,8,Australia,AU,Queensland,-27.83347,153.37423,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,20,Australia,AU,Queensland,-27.92633,153.26794,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,10,Australia,AU,Queensland,-27.94006,153.36305,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Signs of disease ,2020,1,10,Australia,AU,Queensland,-28.15035,153.42101,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,2,19,Australia,AU,Queensland,-27.93372,153.36278,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,2,Australia,AU,Queensland,-28.15442,153.44079,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,13,Australia,AU,Queensland,-28.0974,153.4484,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,29,Australia,AU,Queensland,-27.92218,153.38294,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,14,Australia,AU,Queensland,-27.9997,153.26289,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,6,Australia,AU,Queensland,-28.14652,153.40732,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,8,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,13,Australia,AU,Queensland,-28.14571,153.411,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,10,26,Australia,AU,Queensland,-28.09438,153.44553,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,27,Australia,AU,Queensland,-27.89614,153.37564,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,3,8,Australia,AU,Queensland,-28.14513,153.41418,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,9,Australia,AU,Queensland,-28.14475,153.41684,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,10,Australia,AU,Queensland,-28.17278,153.42712,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,10,12,Australia,AU,Queensland,-27.97748,153.23211,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,6,8,Australia,AU,Queensland,-28.10766,153.43238,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,7,1,Australia,AU,Queensland,-28.14551,153.42427,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,23,Australia,AU,Queensland,-28.13272,153.45106,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,4,Australia,AU,Queensland,-27.89041,153.32875,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,3,Australia,AU,Queensland,-27.93445,153.36437,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,4,Australia,AU,Queensland,-28.11567,153.40274,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,3,8,Australia,AU,Queensland,-28.14359,153.44571,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,17,Australia,AU,Queensland,-28.14258,153.45554,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,22,Australia,AU,Queensland,-28.11572,153.40286,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,29,Australia,AU,Queensland,-27.92987,153.36577,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,21,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,23,Australia,AU,Queensland,-28.13304,153.45445,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,28,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,11,Australia,AU,Queensland,-28.14412,153.4411,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,5,Australia,AU,Queensland,-28.00988,153.32963,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,4,6,Australia,AU,Queensland,-27.8441,153.33085,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,4,Australia,AU,Queensland,-27.97718,153.23214,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,27,Australia,AU,Queensland,-27.92824,153.36404,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,10,Australia,AU,Queensland,-28.13996,153.45527,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,23,Australia,AU,Queensland,-27.93234,153.36191,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,21,Australia,AU,Queensland,-28.17168,153.41655,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,10,Australia,AU,Queensland,-28.14719,153.45436,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,29,Australia,AU,Queensland,-27.9372,153.36252,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Heard only ,2020,11,7,Australia,AU,Queensland,-28.13408,153.44996,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,7,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,17,Australia,AU,Queensland,-28.15626,153.43922,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,7,Australia,AU,Queensland,-28.13021,153.434903,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,8,3,Australia,AU,Queensland,-28.15024,153.41224,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,21,Australia,AU,Queensland,-28.09711,153.44589,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) - Signs of disease,2021,11,15,Australia,AU,Queensland,-28.11802,153.38818,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,27,Australia,AU,Queensland,-28.13718,153.428,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,29,Australia,AU,Queensland,-27.8376,153.35687,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,12,Australia,AU,Queensland,-28.09432,153.44557,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,1,Australia,AU,Queensland,-28.14173,153.4513,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,31,Australia,AU,Queensland,-28.10827,153.369,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,17,Australia,AU,Queensland,-27.88044,153.36712,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,2,Australia,AU,Queensland,-27.94725,153.2271,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,12,Australia,AU,Queensland,-27.77662,153.19185,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,11,Australia,AU,Queensland,-27.93397,153.35911,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,23,Australia,AU,Queensland,-28.13743,153.44955,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,27,Australia,AU,Queensland,-28.09119,153.45269,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,1,Australia,AU,Queensland,-28.13734,153.45579,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,31,Australia,AU,Queensland,-28.09215,153.45258,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,27,Australia,AU,Queensland,-27.938,153.3569,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,7,14,Australia,AU,Queensland,-28.16037,153.4501,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,6,13,Australia,AU,Queensland,-27.89512,153.32827,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,10,23,Australia,AU,Queensland,-27.97707,153.23156,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,30,Australia,AU,Queensland,-28.09623,153.45301,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,13,Australia,AU,Queensland,-28.09753,153.4485,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,10,Australia,AU,Queensland,-28.13315,153.4538,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,27,Australia,AU,Queensland,-28.10627,153.44165,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,4,6,Australia,AU,Queensland,-27.93527,153.36565,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,15,Australia,AU,Queensland,-27.8933,153.2738,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,23,Australia,AU,Queensland,-28.09215,153.45258,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,30,Australia,AU,Queensland,-27.93914,153.35641,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,4,29,Australia,AU,Queensland,-27.97709,153.23184,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,25,Australia,AU,Queensland,-27.90796,153.31995,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,10,Australia,AU,Queensland,-27.90648,153.32774,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,3,26,Australia,AU,Queensland,-27.88197,153.23161,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,7,1,Australia,AU,Queensland,-27.89679,153.32127,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,22,Australia,AU,Queensland,-27.90608,153.32794,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,7,Australia,AU,Queensland,-28.15934,153.439,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,3,30,Australia,AU,Queensland,-27.97682,153.23237,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,11,11,Australia,AU,Queensland,-28.12773,153.35787,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,10,Australia,AU,Queensland,-28.14173,153.43251,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,25,Australia,AU,Queensland,-28.16122,153.46028,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) - Signs of disease,2021,2,18,Australia,AU,Queensland,-28.02404,153.26768,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,30,Australia,AU,Queensland,-27.91547,153.3415,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,14,Australia,AU,Queensland,-28.0919,153.45196,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,4,24,Australia,AU,Queensland,-27.97768,153.27595,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,29,Australia,AU,Queensland,-28.0563,153.3062,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,10,Australia,AU,Queensland,-28.09972,153.45127,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,9,13,Australia,AU,Queensland,-27.97718,153.23214,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,9,Australia,AU,Queensland,-28.15591,153.34046,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,4,26,Australia,AU,Queensland,-28.14448,153.41483,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,29,Australia,AU,Queensland,-28.11239,153.35982,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,1,3,Australia,AU,Queensland,-27.97719,153.23234,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,26,Australia,AU,Queensland,-27.9287,153.36542,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,20,Australia,AU,Queensland,-27.87215,153.21235,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,10,Australia,AU,Queensland,-28.05286,153.31507,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,8,Australia,AU,Queensland,-27.9615,153.25959,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,11,20,Australia,AU,Queensland,-28.14515,153.41763,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,28,Australia,AU,Queensland,-27.91357,153.34186,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,11,Australia,AU,Queensland,-28.16148,153.44092,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,27,Australia,AU,Queensland,-28.1471,153.45409,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,16,Australia,AU,Queensland,-27.94077,153.35794,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,9,Australia,AU,Queensland,-27.90296,153.32903,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,7,Australia,AU,Queensland,-27.97477,153.33404,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,29,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,1,Australia,AU,Queensland,-28.11528,153.40521,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,21,Australia,AU,Queensland,-27.9807,153.243,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,5,Australia,AU,Queensland,-27.934,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,3,1,Australia,AU,Queensland,-27.91687,153.38264,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,27,Australia,AU,Queensland,-28.14227,153.43254,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,13,Australia,AU,Queensland,-28.14402,153.44462,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,3,Australia,AU,Queensland,-28.12043,153.41949,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,20,Australia,AU,Queensland,-27.92241,153.38344,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,8,Australia,AU,Queensland,-28.14839,153.44966,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,1,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,11,23,Australia,AU,Queensland,-28.1572,153.42955,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,21,Australia,AU,Queensland,-28.0072,153.30297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Hit by Vehicle,2021,10,9,Australia,AU,Queensland,-27.97286,153.2337,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,19,Australia,AU,Queensland,-28.15073,153.40568,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,16,Australia,AU,Queensland,-28.16094,153.45157,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,2,8,Australia,AU,Queensland,-28.09622,153.45248,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,4,Australia,AU,Queensland,-28.09358,153.45249,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,7,Australia,AU,Queensland,-28.14582,153.41959,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,3,Australia,AU,Queensland,-28.09584,153.44897,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,11,29,Australia,AU,Queensland,-28.10346,153.44678,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,7,Australia,AU,Queensland,-28.10079,153.45087,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,19,Australia,AU,Queensland,-28.16094,153.45157,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,12,Australia,AU,Queensland,-28.1183,153.42763,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,27,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,25,Australia,AU,Queensland,-27.95131,153.37723,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,25,Australia,AU,Queensland,-27.82751,153.3346,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2023,11,16,Australia,AU,Queensland,-27.96207,153.39598,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,11,10,Australia,AU,Queensland,-27.94594,153.37315,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,24,Australia,AU,Queensland,-28.14669,153.44474,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,8,Australia,AU,Queensland,-28.05194,153.31543,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,28,Australia,AU,Queensland,-28.0916,153.45212,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,30,Australia,AU,Queensland,-27.89826,153.32276,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,30,Australia,AU,Queensland,-28.09178,153.4518,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,10,12,Australia,AU,Queensland,-27.90892,153.3419,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,14,Australia,AU,Queensland,-28.18003,153.37061,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,6,23,Australia,AU,Queensland,-27.78282,153.27263,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,17,Australia,AU,Queensland,-28.10065,153.39701,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,8,13,Australia,AU,Queensland,-27.98992,153.22725,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,2,Australia,AU,Queensland,-27.95072,153.37038,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,11,19,Australia,AU,Queensland,-28.148,153.42792,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,27,Australia,AU,Queensland,-27.8008,153.34013,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,21,Australia,AU,Queensland,-27.91376,153.30047,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,12,23,Australia,AU,Queensland,-28.1007,153.44825,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,4,1,Australia,AU,Queensland,-28.09914,153.44847,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,12,Australia,AU,Queensland,-28.09745,153.44858,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,1,Australia,AU,Queensland,-27.95848,153.37653,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,28,Australia,AU,Queensland,-27.93593,153.36374,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,10,Australia,AU,Queensland,-28.14829,153.45914,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,10,Australia,AU,Queensland,-28.09371,153.45798,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,12,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,16,Australia,AU,Queensland,-27.84148,153.18605,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,19,Australia,AU,Queensland,-28.1561,153.43539,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,24,Australia,AU,Queensland,-27.9294,153.3665,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,14,Australia,AU,Queensland,-27.90312,153.32813,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,13,Australia,AU,Queensland,-28.08967,153.34292,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,9,10,Australia,AU,Queensland,-27.89066,153.32881,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,17,Australia,AU,Queensland,-27.84465,153.26504,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,5,15,Australia,AU,Queensland,-27.83968,153.36229,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,15,Australia,AU,Queensland,-28.10143,153.37477,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,11,Australia,AU,Queensland,-28.10844,153.35466,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,13,Australia,AU,Queensland,-28.14696,153.4578,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,1,Australia,AU,Queensland,-27.94588,153.36646,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,13,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,9,28,Australia,AU,Queensland,-28.13518,153.44244,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,25,Australia,AU,Queensland,-28.11679,153.39139,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,15,Australia,AU,Queensland,-28.13622,153.35118,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,18,Australia,AU,Queensland,-28.12124,153.42197,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,12,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,18,Australia,AU,Queensland,-27.78821,153.2516,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,1,8,Australia,AU,Queensland,-27.91376,153.32991,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,26,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,9,21,Australia,AU,Queensland,-27.89254,153.33817,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,7,Australia,AU,Queensland,-28.14452,153.41786,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,25,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,6,Australia,AU,Queensland,-27.92489,153.38005,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,18,Australia,AU,Queensland,-28.03634,153.31518,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,18,Australia,AU,Queensland,-27.89039,153.32975,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,20,Australia,AU,Queensland,-27.81146,153.18257,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,17,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,28,Australia,AU,Queensland,-27.9617,153.26009,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,7,27,Australia,AU,Queensland,-27.99985,153.28814,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,6,Australia,AU,Queensland,-28.09185,153.45853,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,10,5,Australia,AU,Queensland,-28.14507,153.41453,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,28,Australia,AU,Queensland,-27.90843,153.33984,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,14,Australia,AU,Queensland,-28.14793,153.45761,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,9,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,11,Australia,AU,Queensland,-27.97229,153.22465,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,17,Australia,AU,Queensland,-28.05131,153.3153,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,5,Australia,AU,Queensland,-27.92989,153.3684,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,7,Australia,AU,Queensland,-27.93379,153.36283,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,20,Australia,AU,Queensland,-27.80103,153.1815,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,8,Australia,AU,Queensland,-28.18059,153.43007,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,12,Australia,AU,Queensland,-27.89084,153.329,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,5,Australia,AU,Queensland,-28.10012,153.44956,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,12,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,17,Australia,AU,Queensland,-28.12155,153.42955,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,9,22,Australia,AU,Queensland,-27.91342,153.33826,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,4,Australia,AU,Queensland,-28.13645,153.39162,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,10,19,Australia,AU,Queensland,-27.95403,153.3447,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) - Signs of disease ,2020,4,25,Australia,AU,Queensland,-28.00823,153.21846,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,15,Australia,AU,Queensland,-27.93323,153.35914,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,16,Australia,AU,Queensland,-28.09609,153.4524,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,15,Australia,AU,Queensland,-27.89059,153.32945,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,9,Australia,AU,Queensland,-28.02375,153.31526,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,20,Australia,AU,Queensland,-28.17237,153.42629,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,23,Australia,AU,Queensland,-28.15788,153.40717,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,28,Australia,AU,Queensland,-27.94203,153.35701,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,10,Australia,AU,Queensland,-27.89049,153.32961,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,27,Australia,AU,Queensland,-27.87962,153.36605,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,27,Australia,AU,Queensland,-27.84411,153.26644,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,4,Australia,AU,Queensland,-27.84465,153.26504,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,30,Australia,AU,Queensland,-27.83442,153.37184,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,6,8,Australia,AU,Queensland,-27.94128,153.36272,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,4,1,Australia,AU,Queensland,-27.90878,153.32566,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,11,Australia,AU,Queensland,-27.97714,153.23213,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,15,Australia,AU,Queensland,-27.93392,153.35915,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,13,Australia,AU,Queensland,-28.13815,153.45323,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,30,Australia,AU,Queensland,-27.94327,153.36594,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,26,Australia,AU,Queensland,-28.14208,153.39987,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,10,20,Australia,AU,Queensland,-28.14046,153.4464,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,8,3,Australia,AU,Queensland,-27.92972,153.36986,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,14,Australia,AU,Queensland,-27.93325,153.35904,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,30,Australia,AU,Queensland,-27.91688,153.33056,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,18,Australia,AU,Queensland,-27.94048,153.35776,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,30,Australia,AU,Queensland,-28.13242,153.45609,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,12,Australia,AU,Queensland,-27.89666,153.27728,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,29,Australia,AU,Queensland,-27.92991,153.36575,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,3,Australia,AU,Queensland,-27.84465,153.26504,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,9,Australia,AU,Queensland,-28.0403,153.32938,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,6,24,Australia,AU,Queensland,-27.95392,153.38527,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,26,Australia,AU,Queensland,-27.89088,153.32895,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,28,Australia,AU,Queensland,-28.09215,153.45258,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,10,Australia,AU,Queensland,-28.09753,153.44855,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,23,Australia,AU,Queensland,-27.88078,153.36709,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,21,Australia,AU,Queensland,-27.91455,153.32926,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,14,Australia,AU,Queensland,-27.94636,153.37025,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,19,Australia,AU,Queensland,-27.91596,153.33433,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,29,Australia,AU,Queensland,-28.09986,153.45139,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,13,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,11,Australia,AU,Queensland,-27.89083,153.32916,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,23,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,10,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,19,Australia,AU,Queensland,-28.03414,153.33467,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,16,Australia,AU,Queensland,-27.89212,153.26249,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,8,22,Australia,AU,Queensland,-28.15586,153.42706,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,21,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,1,3,Australia,AU,Queensland,-28.15063,153.41456,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,20,Australia,AU,Queensland,-28.14033,153.44646,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,4,Australia,AU,Queensland,-27.92856,153.36512,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,8,Australia,AU,Queensland,-27.92163,153.38847,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,3,Australia,AU,Queensland,-28.17307,153.41394,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,8,Australia,AU,Queensland,-27.9296,153.36336,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,25,Australia,AU,Queensland,-28.12256,153.43395,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,1,Australia,AU,Queensland,-28.11555,153.37099,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,9,Australia,AU,Queensland,-28.14202,153.40975,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,8,Australia,AU,Queensland,-28.14754,153.45138,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,2,Australia,AU,Queensland,-27.95072,153.37038,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,5,Australia,AU,Queensland,-27.97638,153.232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,5,6,Australia,AU,Queensland,-27.94588,153.36646,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,23,Australia,AU,Queensland,-27.88078,153.36709,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,20,Australia,AU,Queensland,-28.09643,153.45794,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,29,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,27,Australia,AU,Queensland,-28.10093,153.45205,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,23,Australia,AU,Queensland,-28.14349,153.43975,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,14,Australia,AU,Queensland,-27.84212,153.35913,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,9,21,Australia,AU,Queensland,-27.91708,153.28506,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,2,Australia,AU,Queensland,-27.94139,153.35795,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,20,Australia,AU,Queensland,-28.09719,153.44889,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,23,Australia,AU,Queensland,-28.05277,153.31486,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,20,Australia,AU,Queensland,-27.90156,153.3252,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,7,Australia,AU,Queensland,-27.99813,153.26009,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,18,Australia,AU,Queensland,-27.92877,153.36395,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,4,Australia,AU,Queensland,-27.91806,153.25484,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,14,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,18,Australia,AU,Queensland,-27.97933,153.32147,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,12,24,Australia,AU,Queensland,-27.97732,153.23163,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,25,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,29,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,10,Australia,AU,Queensland,-28.14946,153.45876,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,21,Australia,AU,Queensland,-28.00608,153.31987,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,10,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,?Signs of disease ,2020,1,7,Australia,AU,Queensland,-28.14864,153.45356,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,25,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,8,Australia,AU,Queensland,-28.16627,153.39695,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,13,Australia,AU,Queensland,-28.17201,153.42976,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,12,Australia,AU,Queensland,-27.84527,153.33126,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,28,Australia,AU,Queensland,-28.09126,153.45096,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,19,Australia,AU,Queensland,-27.93427,153.36334,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,23,Australia,AU,Queensland,-27.87984,153.36415,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,21,Australia,AU,Queensland,-28.02109,153.31625,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,30,Australia,AU,Queensland,-28.11557,153.40512,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,10,Australia,AU,Queensland,-27.89826,153.32276,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,12,10,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,28,Australia,AU,Queensland,-28.13407,153.44374,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,5,Australia,AU,Queensland,-28.18775,153.39896,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,11,5,Australia,AU,Queensland,-27.9679,153.24361,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,16,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,10,29,Australia,AU,Queensland,-27.91921,153.28386,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,4,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,12,Australia,AU,Queensland,-27.95723,153.35952,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,1,Australia,AU,Queensland,-27.9057,153.37047,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,2,18,Australia,AU,Queensland,-28.01278,153.32773,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,25,Australia,AU,Queensland,-27.96761,153.33865,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,16,Australia,AU,Queensland,-27.93459,153.35967,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,24,Australia,AU,Queensland,-27.93368,153.36271,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,22,Australia,AU,Queensland,-28.1223,153.44734,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,5,27,Australia,AU,Queensland,-28.17152,153.42216,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,15,Australia,AU,Queensland,-27.97664,153.23228,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,9,8,Australia,AU,Queensland,-28.11287,153.41769,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,10,9,Australia,AU,Queensland,-27.92977,153.36342,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,4,Australia,AU,Queensland,-27.82111,153.29306,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,14,Australia,AU,Queensland,-27.93315,153.35864,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,19,Australia,AU,Queensland,-28.09754,153.44851,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,12,Australia,AU,Queensland,-28.10127,153.44787,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,30,Australia,AU,Queensland,-27.94862,153.3957,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,11,Australia,AU,Queensland,-28.1463,153.45046,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,9,Australia,AU,Queensland,-27.97929,153.24055,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,7,14,Australia,AU,Queensland,-27.83139,153.25713,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,18,Australia,AU,Queensland,-27.94804,153.30123,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,1,Australia,AU,Queensland,-28.0968,153.4475,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,18,Australia,AU,Queensland,-27.91804,153.38733,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,30,Australia,AU,Queensland,-27.96147,153.25979,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,13,Australia,AU,Queensland,-27.88931,153.32347,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,27,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,25,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,13,Australia,AU,Queensland,-27.89612,153.27179,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,11,2,Australia,AU,Queensland,-27.98862,153.25935,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,7,Australia,AU,Queensland,-28.16156,153.45176,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,12,Australia,AU,Queensland,-27.89945,153.29912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,12,12,Australia,AU,Queensland,-27.92458,153.37827,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,9,Australia,AU,Queensland,-27.95767,153.37608,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,9,24,Australia,AU,Queensland,-28.14307,153.42614,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,28,Australia,AU,Queensland,-28.05198,153.31524,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,16,Australia,AU,Queensland,-27.94588,153.36646,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,1,1,Australia,AU,Queensland,-27.90909,153.34164,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,1,29,Australia,AU,Queensland,-28.13924,153.4529,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,29,Australia,AU,Queensland,-28.05202,153.31488,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,28,Australia,AU,Queensland,-27.93385,153.35706,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,11,22,Australia,AU,Queensland,-28.19197,153.41246,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,11,Australia,AU,Queensland,-27.89041,153.32875,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,15,Australia,AU,Queensland,-27.93348,153.36204,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,5,Australia,AU,Queensland,-28.04472,153.32565,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,17,Australia,AU,Queensland,-28.13063,153.41779,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,10,Australia,AU,Queensland,-27.91685,153.35804,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,8,Australia,AU,Queensland,-27.88137,153.3673,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,21,Australia,AU,Queensland,-27.89084,153.32867,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,8,Australia,AU,Queensland,-27.83174,153.30086,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,10,Australia,AU,Queensland,-27.83611,153.37451,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,7,Australia,AU,Queensland,-28.12597,153.44459,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,31,Australia,AU,Queensland,-28.16155,153.4509,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,16,Australia,AU,Queensland,-27.83927,153.36631,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,6,25,Australia,AU,Queensland,-28.16731,153.43276,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,25,Australia,AU,Queensland,-27.79785,153.27089,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,23,Australia,AU,Queensland,-28.12506,153.40045,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,9,10,Australia,AU,Queensland,-27.94813,153.38525,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,29,Australia,AU,Queensland,-27.82381,153.32499,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,14,Australia,AU,Queensland,-28.1584,153.42804,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,9,Australia,AU,Queensland,-27.84951,153.27639,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,29,Australia,AU,Queensland,-27.93735,153.3567,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,24,Australia,AU,Queensland,-28.07878,153.34865,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,12,Australia,AU,Queensland,-27.94852,153.36608,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,9,9,Australia,AU,Queensland,-28.14418,153.41151,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,17,Australia,AU,Queensland,-27.97716,153.23208,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,1,12,Australia,AU,Queensland,-28.09687,153.44662,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,10,Australia,AU,Queensland,-27.91379,153.3418,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,19,Australia,AU,Queensland,-27.84022,153.29552,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,4,Australia,AU,Queensland,-28.09421,153.45435,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,18,Australia,AU,Queensland,-28.00569,153.26763,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,23,Australia,AU,Queensland,-27.94484,153.36542,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,7,Australia,AU,Queensland,-28.00612,153.2679,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,16,Australia,AU,Queensland,-27.88055,153.36703,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,13,Australia,AU,Queensland,-28.16451,153.43236,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,30,Australia,AU,Queensland,-28.09275,153.45112,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) - Signs of disease,2021,12,22,Australia,AU,Queensland,-28.14274,153.44412,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,8,Australia,AU,Queensland,-27.90036,153.37278,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,20,Australia,AU,Queensland,-27.92212,153.38801,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,21,Australia,AU,Queensland,-28.09276,153.45118,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,5,Australia,AU,Queensland,-28.16766,153.40471,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,2,Australia,AU,Queensland,-28.1102,153.37246,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,3,Australia,AU,Queensland,-27.89077,153.32919,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,1,Australia,AU,Queensland,-27.9571,153.35069,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,3,Australia,AU,Queensland,-28.09494,153.45266,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,5,Australia,AU,Queensland,-28.09203,153.45157,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,17,Australia,AU,Queensland,-28.1449,153.41394,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,30,Australia,AU,Queensland,-28.13161,153.45666,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,28,Australia,AU,Queensland,-27.91762,153.37744,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,11,Australia,AU,Queensland,-27.93742,153.35649,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,6,Australia,AU,Queensland,-28.15705,153.40948,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,25,Australia,AU,Queensland,-27.9775,153.34288,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,9,Australia,AU,Queensland,-27.89873,153.32856,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,30,Australia,AU,Queensland,-28.10943,153.40407,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,6,Australia,AU,Queensland,-28.10656,153.39843,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,26,Australia,AU,Queensland,-27.88062,153.36704,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,29,Australia,AU,Queensland,-28.15114,153.45779,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,11,Australia,AU,Queensland,-28.16627,153.39695,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,11,2,Australia,AU,Queensland,-27.89473,153.29333,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,30,Australia,AU,Queensland,-27.88054,153.36701,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,7,28,Australia,AU,Queensland,-27.97716,153.23208,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,14,Australia,AU,Queensland,-27.83448,153.33159,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,28,Australia,AU,Queensland,-28.13597,153.45514,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,6,Australia,AU,Queensland,-28.11819,153.42698,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,8,Australia,AU,Queensland,-28.13941,153.44931,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,15,Australia,AU,Queensland,-27.89701,153.32614,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,11,11,Australia,AU,Queensland,-27.94591,153.37091,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,7,19,Australia,AU,Queensland,-27.91534,153.33957,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,9,26,Australia,AU,Queensland,-27.97716,153.23208,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,29,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,12,Australia,AU,Queensland,-28.12022,153.32014,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,14,Australia,AU,Queensland,-28.15629,153.4361,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,8,Australia,AU,Queensland,-28.12116,153.34777,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,7,Australia,AU,Queensland,-28.02163,153.3155,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,8,Australia,AU,Queensland,-28.11442,153.41866,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,17,Australia,AU,Queensland,-27.93402,153.36291,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,16,Australia,AU,Queensland,-28.16137,153.45191,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,16,Australia,AU,Queensland,-28.15513,153.43859,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,21,Australia,AU,Queensland,-27.91667,153.37509,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,10,13,Australia,AU,Queensland,-27.95767,153.37608,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,16,Australia,AU,Queensland,-28.14485,153.44471,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,6,Australia,AU,Queensland,-27.84465,153.26504,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,1,6,Australia,AU,Queensland,-27.84138,153.3354,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,31,Australia,AU,Queensland,-27.9711,153.26734,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,12,Australia,AU,Queensland,-28.14402,153.44462,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,7,Australia,AU,Queensland,-28.10114,153.44007,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,16,Australia,AU,Queensland,-28.14407,153.44308,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,6,Australia,AU,Queensland,-28.17069,153.40594,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,29,Australia,AU,Queensland,-27.83426,153.37727,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,10,10,Australia,AU,Queensland,-27.97718,153.23214,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,7,Australia,AU,Queensland,-28.08993,153.45533,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,9,22,Australia,AU,Queensland,-28.09765,153.44904,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,3,Australia,AU,Queensland,-28.09738,153.44923,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,23,Australia,AU,Queensland,-27.89084,153.32885,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,25,Australia,AU,Queensland,-28.01147,153.32637,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,8,15,Australia,AU,Queensland,-27.94549,153.25033,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,6,Australia,AU,Queensland,-27.91194,153.34156,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,12,Australia,AU,Queensland,-28.14713,153.409,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,9,Australia,AU,Queensland,-28.09343,153.44761,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,25,Australia,AU,Queensland,-27.93762,153.36137,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,18,Australia,AU,Queensland,-27.941,153.37309,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,8,31,Australia,AU,Queensland,-27.83329,153.36972,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,10,Australia,AU,Queensland,-27.92259,153.36286,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,12,Australia,AU,Queensland,-27.92265,153.3863,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,15,Australia,AU,Queensland,-27.8955,153.3741,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,20,Australia,AU,Queensland,-28.11844,153.42743,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,27,Australia,AU,Queensland,-28.14154,153.45116,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,1,Australia,AU,Queensland,-27.9772,153.23232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,27,Australia,AU,Queensland,-27.89084,153.329,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,19,Australia,AU,Queensland,-28.01629,153.29653,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,15,Australia,AU,Queensland,-27.95784,153.37914,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,24,Australia,AU,Queensland,-28.08952,153.34251,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,12,Australia,AU,Queensland,-28.14893,153.44959,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,7,23,Australia,AU,Queensland,-27.92175,153.32729,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,14,Australia,AU,Queensland,-28.09149,153.45169,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,5,Australia,AU,Queensland,-27.9673,153.24286,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,3,Australia,AU,Queensland,-27.99201,153.27805,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,18,Australia,AU,Queensland,-27.92977,153.36824,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,28,Australia,AU,Queensland,-28.09962,153.45116,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,11,Australia,AU,Queensland,-28.10061,153.44844,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,15,Australia,AU,Queensland,-27.9166,153.32806,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,8,19,Australia,AU,Queensland,-27.95429,153.37404,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,10,Australia,AU,Queensland,-28.1563,153.38968,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,26,Australia,AU,Queensland,-28.14493,153.44503,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,5,Australia,AU,Queensland,-28.09752,153.44854,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,24,Australia,AU,Queensland,-28.11472,153.35547,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,7,Australia,AU,Queensland,-28.14297,153.42586,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,16,Australia,AU,Queensland,-28.09948,153.37296,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,21,Australia,AU,Queensland,-28.10744,153.43741,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,8,Australia,AU,Queensland,-28.13988,153.44283,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,12,3,Australia,AU,Queensland,-28.16078,153.45105,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,8,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,3,8,Australia,AU,Queensland,-28.16407,153.4549,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,27,Australia,AU,Queensland,-28.14472,153.44507,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,12,Australia,AU,Queensland,-28.17159,153.40717,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,26,Australia,AU,Queensland,-27.96045,153.37106,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,25,Australia,AU,Queensland,-27.9457,153.24998,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,20,Australia,AU,Queensland,-28.09804,153.45295,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,5,Australia,AU,Queensland,-28.17161,153.40706,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,24,Australia,AU,Queensland,-28.09658,153.4529,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,24,Australia,AU,Queensland,-27.87044,153.21218,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,11,Australia,AU,Queensland,-27.93665,153.36086,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,24,Australia,AU,Queensland,-27.92,153.33061,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,3,Australia,AU,Queensland,-28.14659,153.45019,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,25,Australia,AU,Queensland,-27.95924,153.37014,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,10,7,Australia,AU,Queensland,-27.91654,153.37006,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,17,Australia,AU,Queensland,-28.14475,153.41684,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,8,Australia,AU,Queensland,-28.12213,153.39209,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,10,Australia,AU,Queensland,-28.09179,153.45159,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,7,Australia,AU,Queensland,-27.89265,153.31657,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,1,Australia,AU,Queensland,-27.9728,153.22473,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,6,11,Australia,AU,Queensland,-27.95712,153.3598,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,3,Australia,AU,Queensland,-27.92826,153.36434,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,22,Australia,AU,Queensland,-27.84168,153.353,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2023,7,24,Australia,AU,Queensland,-27.89343,153.33613,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,17,Australia,AU,Queensland,-28.10353,153.40383,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,7,14,Australia,AU,Queensland,-27.82505,153.25597,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,12,9,Australia,AU,Queensland,-27.9224,153.38787,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,31,Australia,AU,Queensland,-28.14132,153.45599,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,11,30,Australia,AU,Queensland,-27.36775,152.99413,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,6,1,Australia,AU,Queensland,-28.14878,153.44167,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,17,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,27,Australia,AU,Queensland,-28.0146,153.31529,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,29,Australia,AU,Queensland,-28.09144,153.45251,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,1,Australia,AU,Queensland,-27.82226,153.37893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,24,Australia,AU,Queensland,-27.89406,153.31673,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,1,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,22,Australia,AU,Queensland,-28.10597,153.44566,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,6,Australia,AU,Queensland,-28.0085,153.26538,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,9,15,Australia,AU,Queensland,-27.93888,153.36103,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,2,12,Australia,AU,Queensland,-28.09578,153.45167,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,3,Australia,AU,Queensland,-27.93007,153.36561,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,5,Australia,AU,Queensland,-27.9374,153.36203,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,23,Australia,AU,Queensland,-28.12745,153.4588,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,28,Australia,AU,Queensland,-28.14341,153.42597,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,13,Australia,AU,Queensland,-28.09506,153.44907,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,8,Australia,AU,Queensland,-28.12055,153.39003,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,30,Australia,AU,Queensland,-28.12289,153.42314,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,28,Australia,AU,Queensland,-28.17778,153.42446,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,24,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,5,31,Australia,AU,Queensland,-28.10579,153.43778,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,21,Australia,AU,Queensland,-28.13136,153.44039,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,18,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,17,Australia,AU,Queensland,-28.1213,153.34704,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,5,10,Australia,AU,Queensland,-27.9772,153.23232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,4,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,23,Australia,AU,Queensland,-28.09476,153.44909,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,6,29,Australia,AU,Queensland,-27.97723,153.23236,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,7,Australia,AU,Queensland,-28.15469,153.458189,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,9,Australia,AU,Queensland,-28.15051,153.40513,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2023,2,1,Australia,AU,Queensland,-28.14595,153.42471,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,11,7,Australia,AU,Queensland,-27.89318,153.33707,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,8,12,Australia,AU,Queensland,-27.9165,153.38859,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,14,Australia,AU,Queensland,-27.93012,153.3658,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,6,Australia,AU,Queensland,-28.04063,153.26985,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,9,Australia,AU,Queensland,-28.14374,153.44842,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,5,Australia,AU,Queensland,-28.09754,153.4485,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,30,Australia,AU,Queensland,-27.84105,153.33391,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,21,Australia,AU,Queensland,-28.0503,153.33853,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,5,Australia,AU,Queensland,-27.95861,153.27687,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,1,Australia,AU,Queensland,-27.78821,153.2516,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,11,Australia,AU,Queensland,-28.1154,153.39253,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,25,Australia,AU,Queensland,-28.09792,153.44877,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,9,Australia,AU,Queensland,-27.97704,153.232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,17,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,20,Australia,AU,Queensland,-27.93348,153.36201,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,12,Australia,AU,Queensland,-28.11652,153.36349,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,27,Australia,AU,Queensland,-28.05198,153.31524,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,7,Australia,AU,Queensland,-28.15403,153.40909,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,4,Australia,AU,Queensland,-28.13359,153.45479,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,13,Australia,AU,Queensland,-28.03412,153.3346,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,28,Australia,AU,Queensland,-28.1301,153.41855,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,13,Australia,AU,Queensland,-28.16476,153.44439,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,4,Australia,AU,Queensland,-27.92203,153.38803,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,7,8,Australia,AU,Queensland,-27.97714,153.23213,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,10,Australia,AU,Queensland,-27.91206,153.32783,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,5,Australia,AU,Queensland,-27.8908,153.32873,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2020,10,3,Australia,AU,Queensland,-28.11482,153.43247,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,9,28,Australia,AU,Queensland,-27.96255,153.2895,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,9,11,Australia,AU,Queensland,-27.97718,153.23214,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,5,Australia,AU,Queensland,-28.09204,153.45618,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,2,Australia,AU,Queensland,-28.13962,153.34544,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,11,21,Australia,AU,Queensland,-28.10001,153.44981,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Heard only ,2020,9,21,Australia,AU,Queensland,-28.13173,153.45697,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,2,22,Australia,AU,Queensland,-27.89534,153.32888,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,24,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,5,Australia,AU,Queensland,-28.13977,153.4482,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,21,Australia,AU,Queensland,-28.09753,153.4485,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,21,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,2,Australia,AU,Queensland,-27.9064,153.32786,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,6,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,8,Australia,AU,Queensland,-27.97709,153.23162,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,7,Australia,AU,Queensland,-27.84526,153.35751,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,2,Australia,AU,Queensland,-28.15916,153.41449,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,17,Australia,AU,Queensland,-27.94383,153.36717,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,14,Australia,AU,Queensland,-28.15837,153.46368,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,9,Australia,AU,Queensland,-27.94289,153.37444,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,19,Australia,AU,Queensland,-27.9772,153.23232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,8,Australia,AU,Queensland,-28.09206,153.45556,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,28,Australia,AU,Queensland,-28.00126,153.335,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,13,Australia,AU,Queensland,-28.1494,153.45691,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,9,10,Australia,AU,Queensland,-28.13694,153.43284,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,5,9,Australia,AU,Queensland,-27.94323,153.27214,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,9,5,Australia,AU,Queensland,-27.90524,153.33206,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,17,Australia,AU,Queensland,-27.90543,153.37138,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,5,8,Australia,AU,Queensland,-28.13659,153.43292,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,4,Australia,AU,Queensland,-27.96743,153.37127,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,17,Australia,AU,Queensland,-27.92824,153.36409,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,7,9,Australia,AU,Queensland,-27.90296,153.32903,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,27,Australia,AU,Queensland,-28.17141,153.43301,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,5,Australia,AU,Queensland,-28.14187,153.44447,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,9,8,Australia,AU,Queensland,-27.97714,153.23213,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,8,Australia,AU,Queensland,-28.09847,153.44869,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,15,Australia,AU,Queensland,-27.9302,153.36571,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2021,9,10,Australia,AU,Queensland,-28.09528,153.45246,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,13,Australia,AU,Queensland,-27.9453,153.25002,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,21,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,4,Australia,AU,Queensland,-27.91673,153.33684,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,5,Australia,AU,Queensland,-28.09843,153.4493,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,11,Australia,AU,Queensland,-27.91432,153.37469,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,20,Australia,AU,Queensland,-27.94723,153.39488,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.93511,153.35951,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,5,Australia,AU,Queensland,-28.09271,153.45124,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,22,Australia,AU,Queensland,-28.09617,153.44578,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,7,8,Australia,AU,Queensland,-28.02084,153.31039,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,8,29,Australia,AU,Queensland,-27.89486,153.33247,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,6,Australia,AU,Queensland,-28.14965,153.4417,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,9,12,Australia,AU,Queensland,-28.11568,153.40526,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,19,Australia,AU,Queensland,-28.11891,153.45491,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,5,Australia,AU,Queensland,-28.16483,153.38295,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,9,13,Australia,AU,Queensland,-28.09631,153.44685,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2021,5,12,Australia,AU,Queensland,-28.16682,153.43248,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Signs of disease,2023,1,11,Australia,AU,Queensland,-27.93281,153.35905,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,10,Australia,AU,Queensland,-27.93387,153.36292,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,15,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,24,Australia,AU,Queensland,-27.909,153.34244,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,6,11,Australia,AU,Queensland,-27.9772,153.23232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,8,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,16,Australia,AU,Queensland,-28.09204,153.4483,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,17,Australia,AU,Queensland,-27.93354,153.35737,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,7,Australia,AU,Queensland,-28.09381,153.45506,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,29,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,27,Australia,AU,Queensland,-27.94931,153.36212,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,30,Australia,AU,Queensland,-28.09539,153.44447,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,10,Australia,AU,Queensland,-28.14977,153.44227,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,18,Australia,AU,Queensland,-28.14328,153.44217,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,24,Australia,AU,Queensland,-27.97687,153.23212,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,9,Australia,AU,Queensland,-28.09756,153.44847,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,16,Australia,AU,Queensland,-27.94997,153.3572,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,15,Australia,AU,Queensland,-27.89071,153.32885,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,13,Australia,AU,Queensland,-28.13568,153.44528,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,9,29,Australia,AU,Queensland,-27.92599,153.32792,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,8,Australia,AU,Queensland,-28.17248,153.41677,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,4,Australia,AU,Queensland,-27.96181,153.25972,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,12,Australia,AU,Queensland,-28.14475,153.41684,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,1,5,Australia,AU,Queensland,-27.89911,153.31591,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,9,3,Australia,AU,Queensland,-27.97718,153.23214,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,13,Australia,AU,Queensland,-27.91605,153.28905,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,14,Australia,AU,Queensland,-28.11069,153.38526,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2022,12,4,Australia,AU,Queensland,-28.09581,153.45262,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,16,Australia,AU,Queensland,-28.14033,153.44649,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,20,Australia,AU,Queensland,-27.88021,153.28906,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,27,Australia,AU,Queensland,-27.94742,153.37492,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,17,Australia,AU,Queensland,-28.09196,153.45589,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,24,Australia,AU,Queensland,-28.17153,153.40856,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,10,Australia,AU,Queensland,-27.95157,153.38258,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,11,Australia,AU,Queensland,-28.01587,153.27836,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,8,Australia,AU,Queensland,-27.97716,153.23183,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,12,28,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,11,4,Australia,AU,Queensland,-27.89689,153.32579,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,25,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,22,Australia,AU,Queensland,-27.90571,153.3818,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,6,Australia,AU,Queensland,-28.09729,153.44816,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,22,Australia,AU,Queensland,-27.95417,153.35865,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,10,Australia,AU,Queensland,-28.1247,153.44401,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,2,Australia,AU,Queensland,-27.92994,153.36572,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,1,5,Australia,AU,Queensland,-28.09592,153.45224,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,27,Australia,AU,Queensland,-28.147343,153.45592,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,20,Australia,AU,Queensland,-28.14489,153.41353,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,16,Australia,AU,Queensland,-27.89212,153.26249,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,23,Australia,AU,Queensland,-28.12929,153.3597,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,10,Australia,AU,Queensland,-28.09334,153.44746,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,13,Australia,AU,Queensland,-27.93309,153.35905,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,2,13,Australia,AU,Queensland,-28.14043,153.44653,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,10,Australia,AU,Queensland,-27.91612,153.33185,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,8,Australia,AU,Queensland,-28.11806,153.40825,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,8,28,Australia,AU,Queensland,-27.909,153.3387,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,2,Australia,AU,Queensland,-28.17243,153.4186,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,9,Australia,AU,Queensland,-28.11479,153.39295,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,9,15,Australia,AU,Queensland,-27.93914,153.36162,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,8,3,Australia,AU,Queensland,-27.91508,153.37325,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,20,Australia,AU,Queensland,-27.89091,153.32921,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,26,Australia,AU,Queensland,-27.92203,153.388,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,5,Australia,AU,Queensland,-28.16161,153.45121,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,10,25,Australia,AU,Queensland,-28.13687,153.45417,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,8,Australia,AU,Queensland,-28.1183,153.42763,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,7,1,Australia,AU,Queensland,-28.14823,153.41765,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,4,15,Australia,AU,Queensland,-27.95762,153.37597,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,30,Australia,AU,Queensland,-28.10174,153.37523,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,9,4,Australia,AU,Queensland,-28.11454,153.41025,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,5,Australia,AU,Queensland,-27.9807,153.243,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,20,Australia,AU,Queensland,-28.09226,153.44649,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,19,Australia,AU,Queensland,-27.94694,153.37323,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,28,Australia,AU,Queensland,-27.94588,153.36646,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,16,Australia,AU,Queensland,-27.97674,153.23226,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,31,Australia,AU,Queensland,-28.11811,153.40378,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,7,21,Australia,AU,Queensland,-27.84971,153.3322,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.90943,153.33418,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,29,Australia,AU,Queensland,-28.10007,153.44946,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,25,Australia,AU,Queensland,-27.94576,153.36796,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,8,Australia,AU,Queensland,-27.94111,153.35786,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,11,Australia,AU,Queensland,-28.14496,153.41408,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,9,Australia,AU,Queensland,-28.09758,153.44816,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,9,Australia,AU,Queensland,-27.89136,153.33553,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,21,Australia,AU,Queensland,-28.12775,153.46025,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,3,Australia,AU,Queensland,-28.01874,153.24099,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,9,Australia,AU,Queensland,-27.92134,153.32522,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,16,Australia,AU,Queensland,-28.10439,153.44562,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,2,Australia,AU,Queensland,-27.91935,153.37704,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,12,Australia,AU,Queensland,-27.91699,153.33095,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,28,Australia,AU,Queensland,-28.13322,153.43663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,12,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,14,Australia,AU,Queensland,-28.15232,153.45849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,29,Australia,AU,Queensland,-28.16194,153.33488,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,7,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,4,Australia,AU,Queensland,-28.09169,153.45248,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,25,Australia,AU,Queensland,-27.93998,153.35638,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,7,Australia,AU,Queensland,-27.93293,153.38215,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,10,16,Australia,AU,Queensland,-28.10969,153.40407,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,3,11,Australia,AU,Queensland,-28.10059,153.44482,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,27,Australia,AU,Queensland,-27.92852,153.36501,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,19,Australia,AU,Queensland,-28.09258,153.45098,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,13,Australia,AU,Queensland,-27.93293,153.38215,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,2,Australia,AU,Queensland,-28.15064,153.41062,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,12,31,Australia,AU,Queensland,-28.10852,153.40739,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,13,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,18,Australia,AU,Queensland,-28.09895,153.44946,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,18,Australia,AU,Queensland,-27.91817,153.37785,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,14,Australia,AU,Queensland,-28.13777,153.44973,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,6,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,16,Australia,AU,Queensland,-27.99418,153.27546,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,4,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,16,Australia,AU,Queensland,-28.12272,153.421,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,20,Australia,AU,Queensland,-27.89926,153.22911,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,11,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,14,Australia,AU,Queensland,-28.15541,153.44747,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,7,Australia,AU,Queensland,-28.13655,153.43312,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,18,Australia,AU,Queensland,-27.83649,153.3748,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,23,Australia,AU,Queensland,-27.88411,153.23173,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,4,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,28,Australia,AU,Queensland,-28.09205,153.45192,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,25,Australia,AU,Queensland,-28.13771,153.44973,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,9,Australia,AU,Queensland,-27.9075,153.37222,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,8,20,Australia,AU,Queensland,-27.91343,153.30188,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,2,27,Australia,AU,Queensland,-27.88062,153.36733,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,2,Australia,AU,Queensland,-27.8439,153.36836,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,12,Australia,AU,Queensland,-27.89498,153.32819,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,12,7,Australia,AU,Queensland,-28.0349,153.33469,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,9,7,Australia,AU,Queensland,-27.9548,153.37319,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,28,Australia,AU,Queensland,-28.10091,153.45015,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,10,Australia,AU,Queensland,-27.95391,153.38276,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,12,Australia,AU,Queensland,-28.14409,153.43926,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,21,Australia,AU,Queensland,-27.89041,153.32875,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,30,Australia,AU,Queensland,-28.14824,153.44735,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,5,Australia,AU,Queensland,-27.9374,153.36203,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,4,Australia,AU,Queensland,-27.94441,153.23808,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,2,Australia,AU,Queensland,-28.14793,153.45764,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,11,Australia,AU,Queensland,-27.89084,153.32884,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,25,Australia,AU,Queensland,-27.9325,153.36221,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,16,Australia,AU,Queensland,-27.97202,153.22833,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,15,Australia,AU,Queensland,-27.93605,153.36845,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.94031,153.3623,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,8,Australia,AU,Queensland,-27.81847,153.32576,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,29,Australia,AU,Queensland,-27.88964,153.33138,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,24,Australia,AU,Queensland,-27.78838,153.25052,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,30,Australia,AU,Queensland,-28.09469,153.45248,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,24,Australia,AU,Queensland,-27.92824,153.36412,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,20,Australia,AU,Queensland,-27.93209,153.36203,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,21,Australia,AU,Queensland,-27.94504,153.35265,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,20,Australia,AU,Queensland,-27.8909,153.3295,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,3,Australia,AU,Queensland,-28.10735,153.4369,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.93511,153.35951,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,15,Australia,AU,Queensland,-27.84479,153.3323,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,19,Australia,AU,Queensland,-27.90609,153.32795,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,5,20,Australia,AU,Queensland,-28.18014,153.43019,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,1,Australia,AU,Queensland,-28.15232,153.41676,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,16,Australia,AU,Queensland,-28.09126,153.45096,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,21,Australia,AU,Queensland,-28.13175,153.45699,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,6,12,Australia,AU,Queensland,-28.1586,153.46355,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,6,Australia,AU,Queensland,-28.10645,153.39841,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,22,Australia,AU,Queensland,-28.02423,153.05084,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,10,22,Australia,AU,Queensland,-28.09529,153.45238,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,3,Australia,AU,Queensland,-27.94779,153.24145,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,19,Australia,AU,Queensland,-27.93898,153.35686,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,29,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,4,Australia,AU,Queensland,-27.83236,153.36641,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,3,Australia,AU,Queensland,-28.14428,153.41084,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Deceased - Hit by Vehicle ,2023,10,29,Australia,AU,Queensland,-27.95254,153.26318,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,15,Australia,AU,Queensland,-28.14043,153.44653,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,10,23,Australia,AU,Queensland,-28.0925,153.45406,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,1,Australia,AU,Queensland,-28.14958,153.45569,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,7,Australia,AU,Queensland,-28.09611,153.4525,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,30,Australia,AU,Queensland,-27.88124,153.36737,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,5,Australia,AU,Queensland,-28.12942,153.41884,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,4,Australia,AU,Queensland,-28.11476,153.39285,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,19,Australia,AU,Queensland,-27.9133,153.37439,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,28,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,15,Australia,AU,Queensland,-27.91458,153.33144,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,27,Australia,AU,Queensland,-28.10115,153.44984,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,30,Australia,AU,Queensland,-28.11386,153.39293,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,21,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.78821,153.2516,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.95396,153.36484,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,9,9,Australia,AU,Queensland,-28.12809,153.42529,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,15,Australia,AU,Queensland,-28.16097,153.42988,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,5,Australia,AU,Queensland,-28.15659,153.43156,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,9,2,Australia,AU,Queensland,-28.10664,153.44195,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,9,Australia,AU,Queensland,-28.05275,153.31513,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,24,Australia,AU,Queensland,-28.15788,153.40717,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,6,Australia,AU,Queensland,-27.93425,153.36553,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,6,4,Australia,AU,Queensland,-28.12976,153.42558,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,6,Australia,AU,Queensland,-27.93425,153.36553,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,9,14,Australia,AU,Queensland,-27.85385,153.33763,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,2,Australia,AU,Queensland,-27.93385,153.35706,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,24,Australia,AU,Queensland,-28.14475,153.41684,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,8,Australia,AU,Queensland,-27.82222,153.37941,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,1,Australia,AU,Queensland,-27.89181,153.32494,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,14,Australia,AU,Queensland,-27.90991,153.33014,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,8,7,Australia,AU,Queensland,-27.89265,153.31657,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,15,Australia,AU,Queensland,-27.9765,153.23207,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit) ,2020,9,28,Australia,AU,Queensland,-27.90894,153.3416,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,15,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,17,Australia,AU,Queensland,-28.14035,153.44644,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,10,5,Australia,AU,Queensland,-27.84049,153.37093,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,25,Australia,AU,Queensland,-28.11081,153.37483,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,20,Australia,AU,Queensland,-28.10078,153.34788,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,8,28,Australia,AU,Queensland,-28.1858,153.43108,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,4,Australia,AU,Queensland,-28.0085,153.32762,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.93983,153.3616,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,5,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,12,Australia,AU,Queensland,-28.10132,153.37501,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,11,Australia,AU,Queensland,-27.96918,153.30312,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,5,Australia,AU,Queensland,-27.91659,153.325,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,13,Australia,AU,Queensland,-27.77363,153.23697,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,10,Australia,AU,Queensland,-28.11057,153.39278,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,15,Australia,AU,Queensland,-27.97433,153.27557,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,24,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,31,Australia,AU,Queensland,-27.93737,153.35661,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,10,19,Australia,AU,Queensland,-27.97718,153.23214,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,22,Australia,AU,Queensland,-27.89069,153.32926,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,14,Australia,AU,Queensland,-28.09639,153.45276,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,13,Australia,AU,Queensland,-28.12028,153.43343,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,5,Australia,AU,Queensland,-27.95378,153.22201,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,10,25,Australia,AU,Queensland,-28.15031,153.40416,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,3,Australia,AU,Queensland,-27.95496,153.35623,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,14,Australia,AU,Queensland,-27.91385,153.33026,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,10,21,Australia,AU,Queensland,-28.10127,153.44787,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Signs of disease,2022,4,23,Australia,AU,Queensland,-27.88533,153.32755,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,17,Australia,AU,Queensland,-27.9342,153.35912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,17,Australia,AU,Queensland,-27.94915,153.37751,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,6,Australia,AU,Queensland,-28.12338,153.39417,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,4,5,Australia,AU,Queensland,-27.84472,153.36234,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,29,Australia,AU,Queensland,-28.09582,153.4525,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,29,Australia,AU,Queensland,-28.1301,153.41855,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,7,6,Australia,AU,Queensland,-27.97714,153.23213,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,26,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,12,Australia,AU,Queensland,-28.1272,153.2303,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,8,Australia,AU,Queensland,-28.09848,153.44867,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,26,Australia,AU,Queensland,-27.92864,153.36401,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,23,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,10,3,Australia,AU,Queensland,-28.14032,153.44647,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,9,Australia,AU,Queensland,-28.13977,153.44697,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,8,27,Australia,AU,Queensland,-28.09372,153.45499,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,6,Australia,AU,Queensland,-27.934,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,27,Australia,AU,Queensland,-27.91355,153.33293,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,16,Australia,AU,Queensland,-27.93362,153.35756,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,19,Australia,AU,Queensland,-28.13888,153.43781,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,3,Australia,AU,Queensland,-28.0253,153.3081,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,10,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,22,Australia,AU,Queensland,-27.89096,153.32916,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,9,Australia,AU,Queensland,-27.8905,153.3296,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,24,Australia,AU,Queensland,-28.01354,153.32712,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,8,22,Australia,AU,Queensland,-28.15586,153.42706,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,19,Australia,AU,Queensland,-28.139,153.43705,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,11,Australia,AU,Queensland,-28.12229,153.42762,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,18,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,9,2,Australia,AU,Queensland,-28.1259,153.4572,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,29,Australia,AU,Queensland,-28.14508,153.43464,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,8,Australia,AU,Queensland,-27.84465,153.26504,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,15,Australia,AU,Queensland,-28.14164,153.45129,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,7,Australia,AU,Queensland,-28.13543,153.38148,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,14,Australia,AU,Queensland,-28.09895,153.45486,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,16,Australia,AU,Queensland,-28.1215,153.34769,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,12,Australia,AU,Queensland,-27.90851,153.37492,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,16,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,10,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,18,Australia,AU,Queensland,-27.94045,153.35772,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,4,Australia,AU,Queensland,-28.156009,153.341043,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,5,Australia,AU,Queensland,-28.15659,153.43156,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,9,7,Australia,AU,Queensland,-28.11436,153.41864,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,16,Australia,AU,Queensland,-28.1184,153.42743,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,16,Australia,AU,Queensland,-28.14821,153.46108,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,15,Australia,AU,Queensland,-27.8248,153.27691,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,31,Australia,AU,Queensland,-28.00746,153.31409,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,8,6,Australia,AU,Queensland,-28.01913,153.24062,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,3,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,10,14,Australia,AU,Queensland,-28.16539,153.43237,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,27,Australia,AU,Queensland,-27.93165,153.37441,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,18,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,11,Australia,AU,Queensland,-27.93165,153.36489,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,17,Australia,AU,Queensland,-28.03502,153.24733,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,12,14,Australia,AU,Queensland,-28.09443,153.45285,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,23,Australia,AU,Queensland,-27.84192,153.34844,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,26,Australia,AU,Queensland,-28.01279,153.32774,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,16,Australia,AU,Queensland,-28.09449,153.45465,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,14,Australia,AU,Queensland,-27.94107,153.35781,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,23,Australia,AU,Queensland,-27.92922,153.36426,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,25,Australia,AU,Queensland,-27.89093,153.32951,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,28,Australia,AU,Queensland,-28.09758,153.44816,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,10,6,Australia,AU,Queensland,-28.15664,153.43814,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,29,Australia,AU,Queensland,-28.14586,153.4071,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,16,Australia,AU,Queensland,-27.93403,153.35909,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,12,27,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,1,2,Australia,AU,Queensland,-27.9772,153.23232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,12,Australia,AU,Queensland,-28.14495,153.44514,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,23,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,22,Australia,AU,Queensland,-27.96047,153.37097,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,1,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,27,Australia,AU,Queensland,-27.91694,153.33083,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,31,Australia,AU,Queensland,-27.89041,153.32875,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,19,Australia,AU,Queensland,-27.84612,153.35788,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Signs of disease,2020,9,23,Australia,AU,Queensland,-27.92225,153.35641,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,5,Australia,AU,Queensland,-27.84726,153.33471,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,17,Australia,AU,Queensland,-28.01403,153.26838,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,8,Australia,AU,Queensland,-27.909,153.34184,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,25,Australia,AU,Queensland,-28.09188,153.45199,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,12,Australia,AU,Queensland,-27.88863,153.34269,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,3,Australia,AU,Queensland,-27.93441,153.3738,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,23,Australia,AU,Queensland,-27.92436,153.3528,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,13,Australia,AU,Queensland,-28.11885,153.41396,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,3,Australia,AU,Queensland,-27.94155,153.35715,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,3,Australia,AU,Queensland,-28.0998,153.45143,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,18,Australia,AU,Queensland,-28.1216,153.42965,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,13,Australia,AU,Queensland,-28.09841,153.44864,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,15,Australia,AU,Queensland,-27.9772,153.23253,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,22,Australia,AU,Queensland,-28.2048,153.39812,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Heard only ,2020,8,22,Australia,AU,Queensland,-27.93389,153.36477,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,3,Australia,AU,Queensland,-27.9029,153.35949,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,25,Australia,AU,Queensland,-27.90796,153.31995,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,8,Australia,AU,Queensland,-27.90222,153.32849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,14,Australia,AU,Queensland,-27.81423,153.33611,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,16,Australia,AU,Queensland,-27.94282,153.37955,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,23,Australia,AU,Queensland,-28.13214,153.45093,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,11,Australia,AU,Queensland,-28.16161,153.44076,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2022,10,5,Australia,AU,Queensland,-27.94156,153.37325,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,10,Australia,AU,Queensland,-28.13132,153.45618,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,18,Australia,AU,Queensland,-28.16617,153.43645,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,4,30,Australia,AU,Queensland,-28.14659,153.45019,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,19,Australia,AU,Queensland,-27.95002,153.35726,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2022,7,30,Australia,AU,Queensland,-28.16966,153.43785,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,3,16,Australia,AU,Queensland,-27.83191,153.25919,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,14,Australia,AU,Queensland,-28.1549,153.4595,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,10,16,Australia,AU,Queensland,-28.09205,153.44575,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,5,Australia,AU,Queensland,-28.15363,153.42884,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,5,28,Australia,AU,Queensland,-28.16274,153.45642,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,4,26,Australia,AU,Queensland,-28.1443,153.45056,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,9,Australia,AU,Queensland,-27.92238,153.3835,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,12,Australia,AU,Queensland,-28.11744,153.44086,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,7,Australia,AU,Queensland,-27.97698,153.23279,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,27,Australia,AU,Queensland,-28.14175,153.42737,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,11,Australia,AU,Queensland,-27.89438,153.38989,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,4,28,Australia,AU,Queensland,-27.95031,153.3648,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,17,Australia,AU,Queensland,-28.14328,153.44217,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,7,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,3,Australia,AU,Queensland,-27.90246,153.32691,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,15,Australia,AU,Queensland,-28.15788,153.40717,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,3,Australia,AU,Queensland,-27.9618,153.22699,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,13,Australia,AU,Queensland,-28.11292,153.37871,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,7,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,9,1,Australia,AU,Queensland,-28.19386,153.39023,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,7,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,2,Australia,AU,Queensland,-27.92951,153.36782,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,6,Australia,AU,Queensland,-28.10013,153.4521,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,9,30,Australia,AU,Queensland,-28.0924,153.45087,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,17,Australia,AU,Queensland,-27.84484,153.35736,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,4,Australia,AU,Queensland,-27.9338,153.36284,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,1,Australia,AU,Queensland,-27.89826,153.36845,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,10,Australia,AU,Queensland,-27.95487,153.36181,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,12,13,Australia,AU,Queensland,-28.14835,153.45018,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,11,9,Australia,AU,Queensland,-28.13822,153.45348,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,19,Australia,AU,Queensland,-28.09601,153.44535,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,27,Australia,AU,Queensland,-28.13796,153.34775,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,10,30,Australia,AU,Queensland,-28.11761,153.38892,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,29,Australia,AU,Queensland,-28.13844,153.43879,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,27,Australia,AU,Queensland,-28.09215,153.45258,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,5,18,Australia,AU,Queensland,-28.09794,153.44299,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,11,Australia,AU,Queensland,-28.15788,153.40717,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,19,Australia,AU,Queensland,-28.09765,153.44904,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,27,Australia,AU,Queensland,-27.95207,153.38523,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,10,28,Australia,AU,Queensland,-27.9211,153.38339,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,6,Australia,AU,Queensland,-28.052,153.31539,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,6,Australia,AU,Queensland,-27.84245,153.34867,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,13,Australia,AU,Queensland,-27.90062,153.32776,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,23,Australia,AU,Queensland,-27.88388,153.23209,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,17,Australia,AU,Queensland,-28.13852,153.45509,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,4,Australia,AU,Queensland,-27.93227,153.36211,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,31,Australia,AU,Queensland,-28.09655,153.45254,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,3,Australia,AU,Queensland,-27.92259,153.38439,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,20,Australia,AU,Queensland,-27.89471,153.32505,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,27,Australia,AU,Queensland,-27.89247,153.31581,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,30,Australia,AU,Queensland,-27.9335,153.36201,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,11,3,Australia,AU,Queensland,-27.8408,153.35281,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,12,18,Australia,AU,Queensland,-27.89667,153.32414,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,14,Australia,AU,Queensland,-27.95163,153.36648,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,27,Australia,AU,Queensland,-27.89009,153.32921,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,13,Australia,AU,Queensland,-28.12192,153.43407,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,29,Australia,AU,Queensland,-27.84201,153.34802,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,19,Australia,AU,Queensland,-28.11742,153.40999,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,27,Australia,AU,Queensland,-28.17228,153.42027,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,2,Australia,AU,Queensland,-27.96512,153.38167,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,29,Australia,AU,Queensland,-27.89086,153.32889,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,19,Australia,AU,Queensland,-28.13232,153.45584,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,22,Australia,AU,Queensland,-28.15431,153.43312,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,11,Australia,AU,Queensland,-27.89048,153.32961,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,7,Australia,AU,Queensland,-27.95356,153.2228,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,30,Australia,AU,Queensland,-28.01315,153.27205,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,26,Australia,AU,Queensland,-28.09543,153.44695,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,17,Australia,AU,Queensland,-27.85493,153.33845,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,14,Australia,AU,Queensland,-28.15015,153.41873,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,21,Australia,AU,Queensland,-27.94026,153.36102,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,8,7,Australia,AU,Queensland,-28.09357,153.44339,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,1,27,Australia,AU,Queensland,-28.14289,153.45552,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,4,Australia,AU,Queensland,-27.96671,153.24525,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,24,Australia,AU,Queensland,-27.90732,153.33904,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,3,Australia,AU,Queensland,-27.93822,153.35685,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,12,Australia,AU,Queensland,-28.08924,153.38813,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,8,31,Australia,AU,Queensland,-28.0926,153.44778,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,5,Australia,AU,Queensland,-28.09287,153.45975,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,6,Australia,AU,Queensland,-28.1546,153.44108,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,18,Australia,AU,Queensland,-28.02928,153.31078,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,5,Australia,AU,Queensland,-28.11951,153.39581,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,22,Australia,AU,Queensland,-28.11806,153.40825,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,15,Australia,AU,Queensland,-28.09549,153.45214,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,6,Australia,AU,Queensland,-28.09435,153.45613,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,11,Australia,AU,Queensland,-28.11825,153.4491,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,1,Australia,AU,Queensland,-28.14739,153.42778,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,15,Australia,AU,Queensland,-28.15264,153.42324,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,27,Australia,AU,Queensland,-27.92842,153.36304,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,28,Australia,AU,Queensland,-28.10664,153.44195,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,17,Australia,AU,Queensland,-27.94891,153.35438,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,14,Australia,AU,Queensland,-28.1381,153.45798,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,9,Australia,AU,Queensland,-27.9474,153.383,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,11,17,Australia,AU,Queensland,-27.9772,153.23245,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,26,Australia,AU,Queensland,-28.131,153.438,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,8,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,6,Australia,AU,Queensland,-28.11806,153.40825,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2023,10,13,Australia,AU,Queensland,-27.81077,153.27041,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,19,Australia,AU,Queensland,-28.0577,153.31916,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,22,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,15,Australia,AU,Queensland,-27.92826,153.36421,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,21,Australia,AU,Queensland,-27.84465,153.26504,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,19,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,9,15,Australia,AU,Queensland,-28.07936,153.3621,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,7,29,Australia,AU,Queensland,-28.0964,153.31163,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,11,19,Australia,AU,Queensland,-27.84635,153.32157,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,4,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,27,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,11,Australia,AU,Queensland,-27.92194,153.33282,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,1,12,Australia,AU,Queensland,-27.8927,153.33447,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,21,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,18,Australia,AU,Queensland,-27.93386,153.35928,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,11,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,26,Australia,AU,Queensland,-28.13012,153.4358,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,20,Australia,AU,Queensland,-28.09729,153.44794,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,20,Australia,AU,Queensland,-28.14111,153.45141,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,10,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,11,8,Australia,AU,Queensland,-28.09393,153.45319,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,12,Australia,AU,Queensland,-27.97723,153.23236,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,16,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,30,Australia,AU,Queensland,-28.09178,153.4518,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,7,Australia,AU,Queensland,-27.91055,153.37412,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,17,Australia,AU,Queensland,-27.93214,153.3578,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,25,Australia,AU,Queensland,-28.08985,153.32578,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,11,12,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,13,Australia,AU,Queensland,-28.09729,153.44794,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,?Hit by Vehicle,2020,11,9,Australia,AU,Queensland,-28.09777,153.44769,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,26,Australia,AU,Queensland,-28.14713,153.45396,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,1,Australia,AU,Queensland,-28.0405,153.33959,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,5,Australia,AU,Queensland,-27.97725,153.23235,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,27,Australia,AU,Queensland,-27.90492,153.38608,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,11,18,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Heard only ,2020,8,11,Australia,AU,Queensland,-28.14922,153.44881,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,3,Australia,AU,Queensland,-27.91989,153.3218,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,3,Australia,AU,Queensland,-28.10805,153.44101,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,19,Australia,AU,Queensland,-28.16069,153.45149,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,3,Australia,AU,Queensland,-27.93914,153.35641,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,20,Australia,AU,Queensland,-28.13545,153.3815,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,3,Australia,AU,Queensland,-27.84526,153.35751,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,2,Australia,AU,Queensland,-27.94704,153.22721,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,5,30,Australia,AU,Queensland,-27.9772,153.23232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,19,Australia,AU,Queensland,-27.89254,153.33817,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,24,Australia,AU,Queensland,-27.9374,153.36203,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,7,Australia,AU,Queensland,-28.16222,153.44904,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,8,Australia,AU,Queensland,-27.97781,153.2316,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,9,Australia,AU,Queensland,-27.89769,153.37055,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,27,Australia,AU,Queensland,-27.89254,153.33817,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,20,Australia,AU,Queensland,-27.92333,153.32729,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,9,26,Australia,AU,Queensland,-28.12342,153.43012,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,10,6,Australia,AU,Queensland,-27.97716,153.23217,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,10,3,Australia,AU,Queensland,-28.15045,153.42207,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,11,Australia,AU,Queensland,-28.13616,153.31896,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,15,Australia,AU,Queensland,-27.9453,153.25002,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,28,Australia,AU,Queensland,-27.91764,153.3812,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,7,Australia,AU,Queensland,-27.91856,153.37715,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,4,Australia,AU,Queensland,-27.89254,153.33817,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,9,Australia,AU,Queensland,-28.14991,153.42059,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,23,Australia,AU,Queensland,-28.0921,153.45188,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,27,Australia,AU,Queensland,-27.86102,153.29336,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,10,Australia,AU,Queensland,-27.93405,153.35906,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,23,Australia,AU,Queensland,-28.12944,153.44436,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,16,Australia,AU,Queensland,-27.92606,153.32736,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2022,3,25,Australia,AU,Queensland,-28.01711,153.18436,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,12,Australia,AU,Queensland,-27.9453,153.25002,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,28,Australia,AU,Queensland,-28.09275,153.45001,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,28,Australia,AU,Queensland,-27.94766,153.27493,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,10,25,Australia,AU,Queensland,-28.10921,153.36942,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,6,4,Australia,AU,Queensland,-28.16536,153.43236,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,5,Australia,AU,Queensland,-28.11952,153.39586,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,7,24,Australia,AU,Queensland,-28.14696,153.40571,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,27,Australia,AU,Queensland,-28.15372,153.44842,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,2,Australia,AU,Queensland,-28.13985,153.45426,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,23,Australia,AU,Queensland,-28.1014,153.37477,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,19,Australia,AU,Queensland,-27.91389,153.33346,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,6,Australia,AU,Queensland,-27.93425,153.36561,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,12,Australia,AU,Queensland,-27.93899,153.35682,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,1,4,Australia,AU,Queensland,-27.94401,153.39297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Hit by Vehicle,2022,9,6,Australia,AU,Queensland,-27.94014,153.373,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,9,25,Australia,AU,Queensland,-28.14246,153.4431,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,11,Australia,AU,Queensland,-28.16155,153.44969,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,7,15,Australia,AU,Queensland,-27.93318,153.35866,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,6,6,Australia,AU,Queensland,-28.09538,153.44581,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,20,Australia,AU,Queensland,-27.95651,153.3597,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,24,Australia,AU,Queensland,-27.93786,153.36588,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,29,Australia,AU,Queensland,-28.10614,153.36693,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,20,Australia,AU,Queensland,-28.14352,153.44236,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,11,Australia,AU,Queensland,-27.84543,153.35748,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,20,Australia,AU,Queensland,-28.11411,153.40135,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,3,17,Australia,AU,Queensland,-28.04272,153.29956,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,20,Australia,AU,Queensland,-28.14618,153.4536,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,10,Australia,AU,Queensland,-28.15236,153.40564,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,7,Australia,AU,Queensland,-27.92863,153.36409,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,7,15,Australia,AU,Queensland,-27.97723,153.23236,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,2,Australia,AU,Queensland,-27.93195,153.35868,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,30,Australia,AU,Queensland,-28.09352,153.4442,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,13,Australia,AU,Queensland,-27.89988,153.29964,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,13,Australia,AU,Queensland,-27.98484,153.29931,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,6,Australia,AU,Queensland,-27.93409,153.36442,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,3,26,Australia,AU,Queensland,-28.12296,153.43453,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,29,Australia,AU,Queensland,-28.09166,153.4516,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,17,Australia,AU,Queensland,-27.83597,153.37589,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,31,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,1,27,Australia,AU,Queensland,-28.10049,153.44731,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,10,Australia,AU,Queensland,-28.12448,153.39172,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,2,Australia,AU,Queensland,-28.09166,153.44906,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,16,Australia,AU,Queensland,-28.14928,153.44957,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,7,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,12,Australia,AU,Queensland,-28.1705,153.40644,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,31,Australia,AU,Queensland,-27.97716,153.23208,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,23,Australia,AU,Queensland,-28.10085,153.44877,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,17,Australia,AU,Queensland,-27.89044,153.32938,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,28,Australia,AU,Queensland,-27.96045,153.37103,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,27,Australia,AU,Queensland,-28.09383,153.45472,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,18,Australia,AU,Queensland,-27.94733,153.38827,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,7,19,Australia,AU,Queensland,-28.09204,153.45187,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,19,Australia,AU,Queensland,-27.95824,153.3786,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,30,Australia,AU,Queensland,-27.89944,153.29906,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,12,18,Australia,AU,Queensland,-27.92449,153.37867,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,26,Australia,AU,Queensland,-28.11844,153.42761,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,4,23,Australia,AU,Queensland,-27.92634,153.37154,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,17,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,21,Australia,AU,Queensland,-27.89087,153.33406,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,23,Australia,AU,Queensland,-28.10905,153.35817,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,10,Australia,AU,Queensland,-27.94158,153.35715,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,1,31,Australia,AU,Queensland,-27.90424,153.37126,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,16,Australia,AU,Queensland,-28.09549,153.44803,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,14,Australia,AU,Queensland,-28.13639,153.44583,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,30,Australia,AU,Queensland,-28.10382,153.43917,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,14,Australia,AU,Queensland,-28.09697,153.45041,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,13,Australia,AU,Queensland,-27.88956,153.32329,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,9,13,Australia,AU,Queensland,-27.95418,153.36592,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,23,Australia,AU,Queensland,-27.89085,153.32895,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,6,Australia,AU,Queensland,-28.14948,153.44216,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,9,14,Australia,AU,Queensland,-27.93955,153.34517,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,9,Australia,AU,Queensland,-28.14251,153.43696,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,6,Australia,AU,Queensland,-28.15788,153.40717,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,13,Australia,AU,Queensland,-28.13751,153.45389,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,1,Australia,AU,Queensland,-27.90294,153.32818,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,10,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,12,Australia,AU,Queensland,-27.83737,153.33697,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,22,Australia,AU,Queensland,-28.09631,153.45291,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,3,Australia,AU,Queensland,-27.94935,153.3654,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,9,Australia,AU,Queensland,-27.89041,153.32939,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,7,Australia,AU,Queensland,-27.92676,153.36206,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,27,Australia,AU,Queensland,-27.97683,153.23226,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,2,Australia,AU,Queensland,-28.13934,153.43732,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,14,Australia,AU,Queensland,-28.15254,153.45772,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,23,Australia,AU,Queensland,-28.09352,153.3576,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,12,7,Australia,AU,Queensland,-28.10114,153.44007,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,21,Australia,AU,Queensland,-27.89059,153.3295,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,13,Australia,AU,Queensland,-28.1469,153.4577,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,28,Australia,AU,Queensland,-27.98517,153.40366,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,2,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,7,28,Australia,AU,Queensland,-28.13786,153.44692,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,9,Australia,AU,Queensland,-27.97364,153.31909,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,23,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,9,14,Australia,AU,Queensland,-28.10846,153.39235,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,5,Australia,AU,Queensland,-28.10059,153.44843,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,14,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,14,Australia,AU,Queensland,-27.92915,153.36668,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,10,17,Australia,AU,Queensland,-27.97716,153.23208,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,28,Australia,AU,Queensland,-28.11519,153.40517,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,1,Australia,AU,Queensland,-27.82608,153.3192,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,5,Australia,AU,Queensland,-28.01155,153.25237,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,10,Australia,AU,Queensland,-28.09209,153.45192,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,1,Australia,AU,Queensland,-28.09165,153.45159,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,16,Australia,AU,Queensland,-27.94475,153.36569,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,7,Australia,AU,Queensland,-28.12409,153.42558,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,9,Australia,AU,Queensland,-27.97717,153.23246,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,24,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,1,31,Australia,AU,Queensland,-27.97738,153.23174,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,24,Australia,AU,Queensland,-28.13818,153.43936,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,23,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,10,29,Australia,AU,Queensland,-28.12982,153.35133,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,24,Australia,AU,Queensland,-28.17535,153.41259,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-28.12389,153.42547,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,25,Australia,AU,Queensland,-28.09215,153.45258,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,7,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,25,Australia,AU,Queensland,-28.12688,153.44179,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2021,10,21,Australia,AU,Queensland,-28.09073,153.35465,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,21,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,29,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,19,Australia,AU,Queensland,-27.89993,153.32686,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,8,Australia,AU,Queensland,-28.02137,153.31681,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,25,Australia,AU,Queensland,-27.89095,153.32884,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,10,25,Australia,AU,Queensland,-27.93229,153.35916,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,9,14,Australia,AU,Queensland,-27.97697,153.23269,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,23,Australia,AU,Queensland,-27.89086,153.3289,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,15,Australia,AU,Queensland,-27.97196,153.22982,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,13,Australia,AU,Queensland,-27.89059,153.32944,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,11,Australia,AU,Queensland,-28.13213,153.45046,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,19,Australia,AU,Queensland,-27.934,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,17,Australia,AU,Queensland,-28.09229,153.45393,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,3,Australia,AU,Queensland,-28.01538,153.29092,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,22,Australia,AU,Queensland,-27.87802,153.28312,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,30,Australia,AU,Queensland,-27.83278,153.36893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,18,Australia,AU,Queensland,-28.11639,153.40603,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,1,10,Australia,AU,Queensland,-28.05397,153.24268,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,8,Australia,AU,Queensland,-28.18238,153.4299,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,12,Australia,AU,Queensland,-27.99855,153.27646,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,2,Australia,AU,Queensland,-28.14357,153.44267,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,1,22,Australia,AU,Queensland,-27.97464,153.23015,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,11,4,Australia,AU,Queensland,-27.9329,153.27621,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,8,Australia,AU,Queensland,-27.89826,153.32276,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,15,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,14,Australia,AU,Queensland,-27.8909,153.3295,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,16,Australia,AU,Queensland,-28.15611,153.43912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,12,Australia,AU,Queensland,-27.89088,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,17,Australia,AU,Queensland,-27.80268,153.18487,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,7,31,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,6,Australia,AU,Queensland,-28.0969,153.45307,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,28,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,15,Australia,AU,Queensland,-28.12122,153.42199,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,3,23,Australia,AU,Queensland,-27.97686,153.23234,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,25,Australia,AU,Queensland,-27.94055,153.3576,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,6,Australia,AU,Queensland,-28.09753,153.44854,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,11,24,Australia,AU,Queensland,-27.9772,153.23232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,15,Australia,AU,Queensland,-28.11301,153.40489,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,10,12,Australia,AU,Queensland,-28.00801,153.31661,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,6,15,Australia,AU,Queensland,-27.94806,153.3856,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,8,7,Australia,AU,Queensland,-28.09906,153.45775,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,20,Australia,AU,Queensland,-27.91702,153.28853,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,9,Australia,AU,Queensland,-27.90906,153.32339,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,3,5,Australia,AU,New South Wales,-28.58893,153.46178,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,9,4,Australia,AU,Queensland,-27.97716,153.23208,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,9,30,Australia,AU,Queensland,-27.97718,153.23214,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,10,Australia,AU,Queensland,-28.13885,153.43787,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,27,Australia,AU,Queensland,-28.13718,153.44646,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,14,Australia,AU,Queensland,-27.87584,153.37685,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,15,Australia,AU,Queensland,-27.89049,153.32294,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,20,Australia,AU,Queensland,-28.11307,153.39373,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,9,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,26,Australia,AU,Queensland,-28.09197,153.45922,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,18,Australia,AU,Queensland,-27.9961,153.27641,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,12,Australia,AU,Queensland,-28.11568,153.40526,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,9,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,6,Australia,AU,Queensland,-27.9988,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,21,Australia,AU,Queensland,-27.92115,153.32505,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,9,18,Australia,AU,Queensland,-27.91898,153.37643,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,9,Australia,AU,Queensland,-28.11839,153.39706,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,4,4,Australia,AU,Queensland,-27.90894,153.34157,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,3,Australia,AU,Queensland,-27.94118,153.37342,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,27,Australia,AU,Queensland,-28.13871,153.45198,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,9,Australia,AU,Queensland,-27.8231,153.37905,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,21,Australia,AU,Queensland,-27.8924,153.37948,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,5,Australia,AU,Queensland,-27.93415,153.3631,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,10,29,Australia,AU,Queensland,-28.11831,153.41364,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,25,Australia,AU,Queensland,-27.97286,153.2337,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,9,Australia,AU,Queensland,-27.83863,153.36842,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,21,Australia,AU,Queensland,-26.75037,152.76378,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,23,Australia,AU,Queensland,-27.90819,153.33708,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,15,Australia,AU,Queensland,-27.89639,153.32413,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,19,Australia,AU,Queensland,-28.14209,153.44636,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,18,Australia,AU,Queensland,-27.84476,153.30518,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,12,Australia,AU,Queensland,-27.91657,153.34037,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,21,Australia,AU,Queensland,-27.89231,153.38011,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,9,8,Australia,AU,Queensland,-28.15399,153.44678,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,1,Australia,AU,Queensland,-28.09625,153.45252,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,13,Australia,AU,Queensland,-28.15788,153.40717,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,6,Australia,AU,Queensland,-27.93565,153.3658,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,16,Australia,AU,Queensland,-27.91434,153.3306,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,26,Australia,AU,Queensland,-28.09736,153.45514,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,1,1,Australia,AU,Queensland,-27.9772,153.23232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,26,Australia,AU,Queensland,-28.09552,153.44923,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,3,Australia,AU,Queensland,-27.84526,153.35751,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,18,Australia,AU,Queensland,-28.09458,153.45354,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,28,Australia,AU,Queensland,-27.89086,153.32884,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,30,Australia,AU,Queensland,-28.0914,153.45159,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,21,Australia,AU,Queensland,-28.01516,153.31022,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,7,29,Australia,AU,Queensland,-27.977,153.23245,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,12,Australia,AU,Queensland,-28.11806,153.40825,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,11,Australia,AU,Queensland,-28.09417,153.35906,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,21,Australia,AU,Queensland,-27.92449,153.37867,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,17,Australia,AU,Queensland,-28.09176,153.45926,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,9,Australia,AU,Queensland,-28.16156,153.4484,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,11,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,12,Australia,AU,Queensland,-28.10594,153.36244,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,11,16,Australia,AU,Queensland,-27.97679,153.23222,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,22,Australia,AU,Queensland,-28.11639,153.40603,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,3,Australia,AU,Queensland,-27.9209,153.38568,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,13,Australia,AU,Queensland,-28.01677,153.26387,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,21,Australia,AU,Queensland,-27.91655,153.32732,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,1,Australia,AU,Queensland,-27.8482,153.32685,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,20,Australia,AU,Queensland,-27.83749,153.27389,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,10,10,Australia,AU,Queensland,-27.82319,153.3099,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,7,10,Australia,AU,Queensland,-28.15631,153.42812,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,19,Australia,AU,Queensland,-28.10122,153.34188,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,1,Australia,AU,Queensland,-28.14475,153.41684,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,25,Australia,AU,Queensland,-27.93243,153.35902,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,9,Australia,AU,Queensland,-27.94197,153.35882,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,23,Australia,AU,Queensland,-28.12755,153.3581,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,5,Australia,AU,Queensland,-28.14208,153.39987,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,11,17,Australia,AU,Queensland,-28.1561,153.43916,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,3,Australia,AU,Queensland,-27.9567,153.38019,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,24,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,2,20,Australia,AU,Queensland,-27.89913,153.29652,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,13,Australia,AU,Queensland,-27.82317,153.3787,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2022,10,19,Australia,AU,Queensland,-28.10614,153.44177,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) - Signs of disease,2022,11,15,Australia,AU,Queensland,-27.95298,153.22212,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,10,10,Australia,AU,Queensland,-28.12584,153.44454,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,9,7,Australia,AU,Queensland,-28.03856,153.3157,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,9,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,12,Australia,AU,Queensland,-28.11815,153.39382,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,14,Australia,AU,Queensland,-27.97704,153.232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,15,Australia,AU,Queensland,-27.83978,153.27326,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,20,Australia,AU,Queensland,-27.977,153.23267,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,8,5,Australia,AU,Queensland,-27.95068,153.36457,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,15,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,5,Australia,AU,Queensland,-27.97531,153.23198,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,18,Australia,AU,Queensland,-27.84047,153.35334,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,13,Australia,AU,Queensland,-28.14489,153.44519,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,19,Australia,AU,Queensland,-27.8955,153.3741,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,29,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,19,Australia,AU,Queensland,-28.17189,153.43551,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,8,17,Australia,AU,Queensland,-27.97715,153.23213,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,9,13,Australia,AU,Queensland,-28.19695,153.42402,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,7,Australia,AU,Queensland,-27.89088,153.33408,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,13,Australia,AU,Queensland,-27.84526,153.35751,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,4,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,12,Australia,AU,Queensland,-28.15919,153.26649,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,12,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,27,Australia,AU,Queensland,-27.97707,153.23156,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,20,Australia,AU,Queensland,-27.92876,153.36553,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,7,24,Australia,AU,Queensland,-27.97716,153.23208,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,15,Australia,AU,Queensland,-27.8909,153.3295,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,22,Australia,AU,Queensland,-28.12205,153.44769,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,13,Australia,AU,Queensland,-28.04862,153.28065,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,15,Australia,AU,Queensland,-27.9338,153.3604,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,10,Australia,AU,Queensland,-28.14969,153.44176,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,7,Australia,AU,Queensland,-27.88041,153.36702,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,17,Australia,AU,Queensland,-27.89826,153.32276,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,28,Australia,AU,Queensland,-27.8442,153.33077,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,6,Australia,AU,Queensland,-28.10645,153.39841,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,4,Australia,AU,Queensland,-28.12019,153.43116,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,8,28,Australia,AU,Queensland,-28.17978,153.43811,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,10,Australia,AU,Queensland,-27.89084,153.33499,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,26,Australia,AU,Queensland,-27.93241,153.36505,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,2,Australia,AU,Queensland,-28.16078,153.45105,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,5,Australia,AU,Queensland,-27.82304,153.31279,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,2,Australia,AU,Queensland,-27.88874,153.31743,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,1,Australia,AU,Queensland,-28.16035,153.44473,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,19,Australia,AU,Queensland,-27.93976,153.3797,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,15,Australia,AU,Queensland,-28.14685,153.43386,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,9,19,Australia,AU,Queensland,-28.1647,153.43229,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,11,28,Australia,AU,Queensland,-28.07759,153.25037,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,23,Australia,AU,Queensland,-27.97683,153.34345,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,23,Australia,AU,Queensland,-28.09538,153.44446,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,10,Australia,AU,Queensland,-28.09347,153.44972,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,2,Australia,AU,Queensland,-28.12303,153.42416,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,21,Australia,AU,Queensland,-27.9453,153.25001,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,2,Australia,AU,Queensland,-27.9548,153.37319,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,16,Australia,AU,Queensland,-28.00853,153.32761,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,11,2,Australia,AU,Queensland,-28.10881,153.3767,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,5,Australia,AU,Queensland,-28.14401,153.41071,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,11,2,Australia,AU,Queensland,-28.10512,153.44219,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,6,9,Australia,AU,Queensland,-27.94197,153.35882,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,12,18,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,8,21,Australia,AU,Queensland,-27.96664,153.24523,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,2,Australia,AU,Queensland,-27.92486,153.37824,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,22,Australia,AU,Queensland,-27.90995,153.37989,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,21,Australia,AU,Queensland,-27.90093,153.26969,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,24,Australia,AU,Queensland,-28.12287,153.43366,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,14,Australia,AU,Queensland,-27.93345,153.36204,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,10,4,Australia,AU,Queensland,-27.97718,153.23214,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,11,Australia,AU,Queensland,-27.89057,153.32944,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,9,Australia,AU,Queensland,-27.89071,153.32892,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,20,Australia,AU,Queensland,-27.84465,153.26504,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,1,21,Australia,AU,Queensland,-27.97742,153.23214,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,27,Australia,AU,Queensland,-28.11838,153.42744,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,10,31,Australia,AU,Queensland,-27.94693,153.32587,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,12,Australia,AU,Queensland,-28.13312,153.45745,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.93899,153.36118,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,8,Australia,AU,Queensland,-28.13882,153.43743,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,4,Australia,AU,Queensland,-28.15956,153.43882,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,5,21,Australia,AU,Queensland,-27.9441,153.36529,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,5,Australia,AU,Queensland,-28.0928,153.34425,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,27,Australia,AU,Queensland,-28.15361,153.45544,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,7,17,Australia,AU,Queensland,-27.97198,153.2243,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,16,Australia,AU,Queensland,-28.14444,153.41482,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,1,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,7,Australia,AU,Queensland,-27.92971,153.36842,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,22,Australia,AU,Queensland,-27.89045,153.3294,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,9,Australia,AU,Queensland,-27.92742,153.25903,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,1,Australia,AU,Queensland,-27.91574,153.32798,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,26,Australia,AU,Queensland,-28.01039,153.26571,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,9,23,Australia,AU,Queensland,-27.97704,153.23199,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - cause unknown,2023,8,8,Australia,AU,Queensland,-28.10611,153.33761,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,6,Australia,AU,Queensland,-27.97745,153.27847,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,27,Australia,AU,Queensland,-28.0921,153.45196,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,3,Australia,AU,Queensland,-28.15614,153.43916,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,15,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,30,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,3,Australia,AU,Queensland,-28.14929,153.46135,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,14,Australia,AU,Queensland,-27.83524,153.36339,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,22,Australia,AU,Queensland,-28.14765,153.42231,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,1,25,Australia,AU,Queensland,-27.72052,153.21314,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,26,Australia,AU,Queensland,-28.14399,153.41072,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,8,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,7,Australia,AU,Queensland,-27.97707,153.23273,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,22,Australia,AU,Queensland,-27.92943,153.36439,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,7,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,8,Australia,AU,Queensland,-28.14452,153.44507,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,1,Australia,AU,Queensland,-28.09539,153.44447,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,27,Australia,AU,Queensland,-28.13235,153.41769,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,21,Australia,AU,Queensland,-28.10654,153.39433,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,24,Australia,AU,Queensland,-28.14956,153.42321,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,10,Australia,AU,Queensland,-28.09319,153.44784,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,3,Australia,AU,Queensland,-28.03754,153.33289,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,13,Australia,AU,Queensland,-28.14605,153.42433,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,2,9,Australia,AU,Queensland,-27.96853,153.33527,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,1,21,Australia,AU,Queensland,-27.91897,153.3884,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,4,Australia,AU,Queensland,-28.10148,153.37476,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,20,Australia,AU,Queensland,-27.91377,153.32989,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,1,Australia,AU,Queensland,-28.10018,153.45203,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,20,Australia,AU,Queensland,-28.13092,153.45524,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,12,Australia,AU,Queensland,-27.92987,153.36556,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,19,Australia,AU,Queensland,-28.15046,153.42089,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,16,Australia,AU,Queensland,-27.94068,153.26567,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,8,18,Australia,AU,Queensland,-28.11639,153.40603,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,21,Australia,AU,Queensland,-27.88456,153.32751,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,25,Australia,AU,Queensland,-28.09434,153.44553,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,24,Australia,AU,Queensland,-27.93226,153.36199,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,21,Australia,AU,Queensland,-28.14135,153.45117,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,6,Australia,AU,Queensland,-27.90618,153.32792,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,19,Australia,AU,Queensland,-27.93297,153.27617,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,29,Australia,AU,Queensland,-28.09552,153.45265,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,8,Australia,AU,Queensland,-28.05638,153.34736,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,26,Australia,AU,Queensland,-27.96687,153.27101,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,26,Australia,AU,Queensland,-28.14275,153.38264,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,9,Australia,AU,Queensland,-28.10983,153.39345,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,26,Australia,AU,Queensland,-27.92238,153.3835,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,27,Australia,AU,Queensland,-28.1494,153.44178,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,5,Australia,AU,Queensland,-27.94588,153.25075,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,21,Australia,AU,Queensland,-27.95037,153.38,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,1,Australia,AU,Queensland,-27.97705,153.23199,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,15,Australia,AU,Queensland,-28.09122,153.35265,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,16,Australia,AU,Queensland,-27.95424,153.38116,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,28,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,2,13,Australia,AU,Queensland,-28.20138,153.40891,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,1,Australia,AU,Queensland,-27.94092,153.36551,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,7,4,Australia,AU,Queensland,-28.11405,153.44021,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,20,Australia,AU,Queensland,-27.98496,153.35448,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,28,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,2,25,Australia,AU,Queensland,-28.15029,153.41807,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,18,Australia,AU,Queensland,-28.13995,153.44276,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,13,Australia,AU,Queensland,-27.92921,153.36215,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,6,Australia,AU,Queensland,-28.14999,153.44065,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,2,Australia,AU,Queensland,-27.93389,153.36324,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,28,Australia,AU,Queensland,-27.87381,153.25045,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,29,Australia,AU,Queensland,-28.09751,153.44853,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,22,Australia,AU,Queensland,-27.92352,153.39283,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,2,Australia,AU,Queensland,-27.92938,153.36336,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,10,Australia,AU,Queensland,-28.09845,153.44862,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,17,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,6,Australia,AU,Queensland,-28.09677,153.4535,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,9,19,Australia,AU,Queensland,-27.89266,153.32594,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,30,Australia,AU,Queensland,-28.10023,153.37351,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,17,Australia,AU,Queensland,-27.9511,153.36589,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,6,22,Australia,AU,Queensland,-27.93025,153.36588,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,2,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,9,Australia,AU,Queensland,-27.82277,153.37894,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,7,8,Australia,AU,Queensland,-28.01703,153.31224,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,27,Australia,AU,Queensland,-28.09324,153.35458,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,1,15,Australia,AU,Queensland,-28.16841,153.43271,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,22,Australia,AU,Queensland,-27.9189,153.35493,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,22,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,1,2,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,16,Australia,AU,Queensland,-28.13592,153.43355,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,11,3,Australia,AU,Queensland,-28.10635,153.44173,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,7,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,4,Australia,AU,Queensland,-27.85106,153.32867,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,3,Australia,AU,Queensland,-27.88049,153.36378,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,26,Australia,AU,Queensland,-28.13121,153.455,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,8,Australia,AU,Queensland,-27.999,153.27641,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,15,Australia,AU,Queensland,-27.8909,153.32921,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,6,28,Australia,AU,Queensland,-27.9123,153.3302,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,11,7,Australia,AU,Queensland,-28.15115,153.44145,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,10,Australia,AU,Queensland,-27.99826,153.27657,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,17,Australia,AU,Queensland,-28.11677,153.41003,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,17,Australia,AU,Queensland,-28.15996,153.44964,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,14,Australia,AU,Queensland,-27.92971,153.36234,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,19,Australia,AU,Queensland,-27.92102,153.30097,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,17,Australia,AU,Queensland,-28.15091,153.42047,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,3,Australia,AU,Queensland,-27.84465,153.26504,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,16,Australia,AU,Queensland,-28.1729,153.41358,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,30,Australia,AU,Queensland,-28.18197,153.43407,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,13,Australia,AU,Queensland,-27.90208,153.33102,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,8,10,Australia,AU,Queensland,-27.90014,153.32772,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,28,Australia,AU,Queensland,-27.94005,153.35917,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,26,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,4,Australia,AU,Queensland,-28.13605,153.44528,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,13,Australia,AU,Queensland,-27.87446,153.37699,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,27,Australia,AU,Queensland,-28.13696,153.44709,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,25,Australia,AU,Queensland,-27.92307,153.32936,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,28,Australia,AU,Queensland,-28.1596,153.45937,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,8,Australia,AU,Queensland,-28.17161,153.40769,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,1,Australia,AU,Queensland,-27.94119,153.36638,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,8,27,Australia,AU,Queensland,-28.09393,153.44563,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,26,Australia,AU,Queensland,-28.13751,153.45413,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,1,18,Australia,AU,Queensland,-27.97674,153.23226,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,19,Australia,AU,Queensland,-28.11496,153.44121,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,10,13,Australia,AU,Queensland,-28.14378,153.44807,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,6,Australia,AU,Queensland,-27.93276,153.35896,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,4,Australia,AU,Queensland,-28.09754,153.4485,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2021,10,17,Australia,AU,Queensland,-28.01962,153.31213,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,3,Australia,AU,Queensland,-27.9618,153.22699,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,18,Australia,AU,Queensland,-27.85987,153.28099,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,16,Australia,AU,Queensland,-27.87213,153.21202,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,23,Australia,AU,Queensland,-28.09325,153.44769,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,24,Australia,AU,Queensland,-27.93855,153.35694,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,25,Australia,AU,Queensland,-27.93241,153.36518,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,6,Australia,AU,Queensland,-28.14948,153.44216,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,1,Australia,AU,Queensland,-28.12943,153.43808,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,24,Australia,AU,Queensland,-28.09782,153.45033,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,20,Australia,AU,Queensland,-28.14344,153.4422,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,16,Australia,AU,Queensland,-28.15513,153.43859,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,1,8,Australia,AU,Queensland,-28.15042,153.42099,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,4,Australia,AU,Queensland,-28.14475,153.41684,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,7,Australia,AU,Queensland,-27.97716,153.23208,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,8,Australia,AU,Queensland,-27.93671,153.36066,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,29,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,30,Australia,AU,Queensland,-28.03899,153.31165,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,11,Australia,AU,Queensland,-27.91693,153.29667,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,27,Australia,AU,Queensland,-28.09454,153.44913,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,21,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,18,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,26,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,14,Australia,AU,Queensland,-28.14808,153.45882,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,13,Australia,AU,Queensland,-27.95748,153.37612,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,5,Australia,AU,Queensland,-27.8909,153.3295,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,8,Australia,AU,Queensland,-27.94249,153.30595,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,14,Australia,AU,Queensland,-28.12835,153.45822,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,2,Australia,AU,Queensland,-28.14204,153.39994,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,17,Australia,AU,Queensland,-28.1183,153.42763,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,12,Australia,AU,Queensland,-27.92286,153.3847,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,1,Australia,AU,Queensland,-28.14216,153.44385,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,9,14,Australia,AU,Queensland,-28.1549,153.4595,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,4,Australia,AU,Queensland,-27.89719,153.32214,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,20,Australia,AU,Queensland,-27.93416,153.35922,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,3,Australia,AU,Queensland,-28.15629,153.4361,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,11,10,Australia,AU,Queensland,-27.91563,153.33103,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,5,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,18,Australia,AU,Queensland,-28.13603,153.35015,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,17,Australia,AU,Queensland,-27.93345,153.36204,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,19,Australia,AU,Queensland,-28.15031,153.42056,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,3,Australia,AU,Queensland,-27.90238,153.32681,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,28,Australia,AU,Queensland,-27.9471,153.30193,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,5,8,Australia,AU,Queensland,-28.17194,153.41497,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,25,Australia,AU,Queensland,-28.1402,153.4362,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,3,Australia,AU,Queensland,-28.13079,153.45518,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,20,Australia,AU,Queensland,-27.91346,153.37336,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,16,Australia,AU,Queensland,-27.97689,153.23241,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,16,Australia,AU,Queensland,-28.13141,153.45623,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,15,Australia,AU,Queensland,-27.8909,153.3295,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,26,Australia,AU,Queensland,-27.92837,153.36452,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,17,Australia,AU,Queensland,-27.93552,153.36545,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,19,Australia,AU,Queensland,-27.93019,153.36162,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,14,Australia,AU,Queensland,-27.73336,153.20541,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,13,Australia,AU,Queensland,-28.17233,153.42622,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) - Signs of disease,2022,4,19,Australia,AU,Queensland,-27.83843,153.37143,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,11,7,Australia,AU,Queensland,-27.96461,153.38675,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,20,Australia,AU,Queensland,-27.91739,153.32849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,10,6,Australia,AU,Queensland,-27.93837,153.37986,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,6,Australia,AU,Queensland,-27.91998,153.19479,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,8,Australia,AU,Queensland,-28.11455,153.40156,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,24,Australia,AU,Queensland,-28.09431,153.44438,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,20,Australia,AU,Queensland,-27.91403,153.26812,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,3,Australia,AU,Queensland,-27.97701,153.23166,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,20,Australia,AU,Queensland,-28.09144,153.44783,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,7,Australia,AU,Queensland,-28.10013,153.45204,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,17,Australia,AU,Queensland,-28.03872,153.3106,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,15,Australia,AU,Queensland,-28.09353,153.44668,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,20,Australia,AU,Queensland,-28.09246,153.45119,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,2,8,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,8,13,Australia,AU,Queensland,-28.09522,153.44585,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,3,Australia,AU,Queensland,-27.84127,153.18524,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,25,Australia,AU,Queensland,-27.93665,153.36405,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,6,Australia,AU,Queensland,-27.93439,153.36573,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,11,Australia,AU,Queensland,-27.90314,153.32814,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,8,10,Australia,AU,Queensland,-27.95767,153.37608,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,20,Australia,AU,Queensland,-28.1796,153.37082,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,22,Australia,AU,Queensland,-27.97686,153.23234,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,3,5,Australia,AU,Queensland,-28.15103,153.42745,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,13,Australia,AU,Queensland,-28.09631,153.44954,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,2,Australia,AU,Queensland,-28.0078,153.28516,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,19,Australia,AU,Queensland,-28.09754,153.44861,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,20,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,10,Australia,AU,Queensland,-27.93324,153.35862,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,13,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,12,5,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,31,Australia,AU,Queensland,-28.13241,153.45094,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,2,Australia,AU,Queensland,-28.17234,153.42628,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,7,Australia,AU,Queensland,-27.95131,153.37723,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,2,9,Australia,AU,Queensland,-27.94348,153.28403,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,17,Australia,AU,Queensland,-27.9988,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,30,Australia,AU,Queensland,-27.93036,153.36145,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,8,Australia,AU,Queensland,-27.8806,153.3672,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,2,8,Australia,AU,Queensland,-28.07151,153.32956,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,8,Australia,AU,Queensland,-27.89082,153.32884,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,8,Australia,AU,Queensland,-27.9426,153.30595,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,7,Australia,AU,Queensland,-28.05149,153.31548,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,8,23,Australia,AU,Queensland,-28.15026,153.4408,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,23,Australia,AU,Queensland,-27.9988,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,9,Australia,AU,Queensland,-28.13318,153.44564,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,7,Australia,AU,Queensland,-28.1113,153.23993,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,7,Australia,AU,Queensland,-28.19237,153.42316,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,10,Australia,AU,Queensland,-27.91618,153.33137,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,12,Australia,AU,Queensland,-28.13688,153.44194,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,10,Australia,AU,Queensland,-28.15066,153.42266,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,7,Australia,AU,Queensland,-27.93369,153.3627,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,22,Australia,AU,Queensland,-27.93042,153.36533,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,10,1,Australia,AU,Queensland,-28.11143,153.40897,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,21,Australia,AU,Queensland,-27.89759,153.32579,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,11,Australia,AU,Queensland,-28.09442,153.35843,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,26,Australia,AU,Queensland,-28.16455,153.43626,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,25,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,26,Australia,AU,Queensland,-28.15413,153.44853,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,18,Australia,AU,Queensland,-27.94632,153.38071,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,16,Australia,AU,Queensland,-27.9162,153.33103,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,13,Australia,AU,Queensland,-28.15924,153.44025,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,15,Australia,AU,Queensland,-28.05214,153.31515,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,28,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,6,8,Australia,AU,Queensland,-28.13857,153.45155,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,7,Australia,AU,Queensland,-28.09411,153.45306,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,20,Australia,AU,Queensland,-28.1312,153.41599,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,7,Australia,AU,Queensland,-27.94043,153.35774,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,21,Australia,AU,Queensland,-27.94292,153.26273,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,18,Australia,AU,Queensland,-28.09754,153.44858,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,2,Australia,AU,Queensland,-27.93991,153.3563,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,25,Australia,AU,Queensland,-27.93165,153.37441,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,18,Australia,AU,Queensland,-28.0965,153.45341,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,1,Australia,AU,Queensland,-28.17987,153.37056,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,9,Australia,AU,Queensland,-28.14745,153.43399,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,26,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2022,8,5,Australia,AU,Queensland,-28.11566,153.431,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,18,Australia,AU,Queensland,-28.13885,153.43771,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,7,Australia,AU,Queensland,-27.933,153.35931,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2021,3,30,Australia,AU,Queensland,-27.93171,153.37607,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,9,Australia,AU,Queensland,-28.1,153.45007,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,6,Australia,AU,Queensland,-27.89075,153.32864,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,27,Australia,AU,Queensland,-27.898,153.32652,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,27,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,6,22,Australia,AU,Queensland,-27.94652,153.37537,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,12,Australia,AU,Queensland,-27.82106,153.3139,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,3,Australia,AU,Queensland,-27.96357,153.37098,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,27,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,3,2,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,10,Australia,AU,Queensland,-28.0372,153.30376,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,22,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,9,Australia,AU,Queensland,-27.92742,153.25903,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,1,Australia,AU,Queensland,-28.09615,153.45339,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,9,Australia,AU,Queensland,-27.92991,153.3658,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,8,Australia,AU,Queensland,-27.9453,153.25002,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,9,Australia,AU,Queensland,-27.95474,153.35624,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,25,Australia,AU,Queensland,-28.02615,153.26812,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,27,Australia,AU,Queensland,-27.9772,153.23245,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,2,Australia,AU,Queensland,-28.16129,153.43262,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,8,Australia,AU,Queensland,-28.09206,153.4519,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,23,Australia,AU,Queensland,-27.89926,153.37239,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Signs of disease ,2020,8,22,Australia,AU,Queensland,-28.14996,153.44061,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,6,5,Australia,AU,Queensland,-28.10104,153.44987,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,29,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,2,Australia,AU,Queensland,-27.89086,153.32895,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,10,15,Australia,AU,Queensland,-28.11456,153.39413,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2023,8,26,Australia,AU,Queensland,-27.82321,153.29379,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,24,Australia,AU,Queensland,-27.8027,153.18466,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,4,19,Australia,AU,Queensland,-27.83701,153.37173,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,15,Australia,AU,Queensland,-27.93897,153.3801,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,26,Australia,AU,Queensland,-27.909,153.34186,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,29,Australia,AU,Queensland,-27.88122,153.36737,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,2,12,Australia,AU,Queensland,-28.11806,153.40825,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,23,Australia,AU,Queensland,-28.1641,153.41978,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,20,Australia,AU,Queensland,-27.94817,153.38005,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,2,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,14,Australia,AU,Queensland,-28.15284,153.45405,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,8,Australia,AU,Queensland,-27.9194,153.37744,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,22,Australia,AU,Queensland,-27.9391,153.3649,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,10,13,Australia,AU,Queensland,-28.02785,153.30402,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,7,24,Australia,AU,Queensland,-28.14407,153.41148,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,18,Australia,AU,Queensland,-27.9346,153.36726,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,2,Australia,AU,Queensland,-27.93991,153.3563,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,20,Australia,AU,Queensland,-27.91049,153.33228,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,23,Australia,AU,Queensland,-28.10413,153.35446,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,21,Australia,AU,Queensland,-28.1401,153.4406,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,16,Australia,AU,Queensland,-27.89043,153.32937,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,5,Australia,AU,Queensland,-28.13638,153.44681,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,8,Australia,AU,Queensland,-27.90504,153.33419,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,10,4,Australia,AU,Queensland,-27.9072,153.3228,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,10,Australia,AU,Queensland,-27.80001,153.3035,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,11,13,Australia,AU,Queensland,-27.81793,153.33329,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,10,Australia,AU,Queensland,-27.81886,153.32621,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,1,Australia,AU,Queensland,-27.89077,153.32919,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,13,Australia,AU,Queensland,-28.16144,153.45995,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,26,Australia,AU,Queensland,-28.00413,153.32451,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,23,Australia,AU,Queensland,-28.09497,153.44598,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,10,Australia,AU,Queensland,-27.9374,153.36203,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,6,10,Australia,AU,Queensland,-27.9772,153.23232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,14,Australia,AU,Queensland,-27.90689,153.32392,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,23,Australia,AU,Queensland,-28.14043,153.44643,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,1,Australia,AU,Queensland,-27.94782,153.27829,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,9,Australia,AU,Queensland,-27.89071,153.32856,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,26,Australia,AU,Queensland,-27.99692,153.28008,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,17,Australia,AU,Queensland,-28.16078,153.45105,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,16,Australia,AU,Queensland,-27.97716,153.23208,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,11,Australia,AU,Queensland,-27.90307,153.31441,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,6,22,Australia,AU,Queensland,-27.97723,153.23236,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,28,Australia,AU,Queensland,-27.94044,153.35775,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,9,Australia,AU,Queensland,-28.14154,153.45116,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,9,Australia,AU,Queensland,-27.88157,153.36655,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,12,Australia,AU,Queensland,-27.95217,153.36568,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,10,Australia,AU,Queensland,-27.90014,153.32772,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,12,1,Australia,AU,Queensland,-28.1105,153.43064,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,8,Australia,AU,Queensland,-28.09906,153.44944,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,17,Australia,AU,Queensland,-28.0928,153.45089,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,21,Australia,AU,Queensland,-28.14346,153.41071,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,6,1,Australia,AU,Queensland,-28.10607,153.43878,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,6,26,Australia,AU,Queensland,-28.14046,153.4464,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,19,Australia,AU,Queensland,-27.88304,153.33294,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,10,Australia,AU,Queensland,-27.9453,153.25002,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,15,Australia,AU,Queensland,-27.8339,153.3667,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,9,8,Australia,AU,Queensland,-28.10841,153.4297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,24,Australia,AU,Queensland,-28.15961,153.43933,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,11,27,Australia,AU,Queensland,-28.1206,153.40467,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,6,Australia,AU,Queensland,-27.93227,153.362,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,8,17,Australia,AU,Queensland,-28.1088,153.43236,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,21,Australia,AU,Queensland,-28.14065,153.43363,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,11,Australia,AU,Queensland,-28.11806,153.40825,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,10,Australia,AU,Queensland,-28.09452,153.44573,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,9,Australia,AU,Queensland,-27.93183,153.35818,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,9,17,Australia,AU,Queensland,-27.93948,153.34644,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,10,22,Australia,AU,Queensland,-28.14041,153.44636,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,1,Australia,AU,Queensland,-28.00629,153.2676,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,29,Australia,AU,Queensland,-28.14043,153.44653,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,7,16,Australia,AU,Queensland,-28.14205,153.47748,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,31,Australia,AU,Queensland,-28.09398,153.45342,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,9,Australia,AU,Queensland,-28.09743,153.44853,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,13,Australia,AU,Queensland,-27.94036,153.36262,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,27,Australia,AU,Queensland,-28.1534,153.47868,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,9,Australia,AU,Queensland,-28.09332,153.44746,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,7,Australia,AU,Queensland,-27.94872,153.34439,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,13,Australia,AU,Queensland,-27.89084,153.32868,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,30,Australia,AU,Queensland,-27.91702,153.37615,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,11,Australia,AU,Queensland,-28.14043,153.44653,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,5,Australia,AU,Queensland,-28.13318,153.45493,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,17,Australia,AU,Queensland,-28.01582,153.26552,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,9,3,Australia,AU,Queensland,-28.12885,153.35984,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,10,21,Australia,AU,Queensland,-28.12053,153.45073,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,11,Australia,AU,Queensland,-28.15623,153.43916,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,17,Australia,AU,Queensland,-27.88993,153.27342,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,8,5,Australia,AU,Queensland,-28.0934,153.44754,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,30,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,10,31,Australia,AU,Queensland,-27.91664,153.3754,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,26,Australia,AU,Queensland,-28.13024,153.43579,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,2,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,8,11,Australia,AU,Queensland,-27.90237,153.3634,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,18,Australia,AU,Queensland,-27.92287,153.30024,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,15,Australia,AU,Queensland,-27.89539,153.37745,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,3,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,19,Australia,AU,Queensland,-27.8905,153.32962,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,25,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,2,20,Australia,AU,Queensland,-28.10527,153.37598,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,24,Australia,AU,Queensland,-27.89084,153.32885,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,9,Australia,AU,Queensland,-28.09394,153.45292,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,3,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,15,Australia,AU,Queensland,-28.09029,153.45163,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,12,22,Australia,AU,Queensland,-28.09528,153.45237,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,2,Australia,AU,Queensland,-28.09166,153.45161,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,1,1,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,8,25,Australia,AU,Queensland,-28.09463,153.4568,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,31,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,12,13,Australia,AU,Queensland,-28.14355,153.38094,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,12,Australia,AU,Queensland,-27.91285,153.18676,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,15,Australia,AU,Queensland,-27.95471,153.27838,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,10,31,Australia,AU,Queensland,-27.95146,153.36486,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,9,25,Australia,AU,Queensland,-27.89688,153.32581,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,23,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,22,Australia,AU,Queensland,-28.14572,153.40485,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,2,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,10,Australia,AU,Queensland,-28.09465,153.45217,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,30,Australia,AU,Queensland,-28.01951,153.32329,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,31,Australia,AU,Queensland,-27.97668,153.23199,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,2,10,Australia,AU,Queensland,-27.88038,153.36747,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,3,31,Australia,AU,Queensland,-27.88057,153.36706,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,8,Australia,AU,Queensland,-28.1216,153.42918,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2021,5,14,Australia,AU,Queensland,-27.98047,153.28053,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,7,24,Australia,AU,Queensland,-27.91406,153.30163,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2020,11,5,Australia,AU,Queensland,-27.89765,153.32213,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,13,Australia,AU,Queensland,-28.13753,153.44938,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,12,20,Australia,AU,Queensland,-27.80811,153.33674,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,12,Australia,AU,Queensland,-28.15113,153.45775,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,17,Australia,AU,Queensland,-27.90919,153.27321,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,29,Australia,AU,Queensland,-28.12201,153.3888,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,21,Australia,AU,Queensland,-28.03973,153.33958,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,16,Australia,AU,Queensland,-27.92956,153.36362,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,12,Australia,AU,Queensland,-28.13868,153.43769,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,13,Australia,AU,Queensland,-27.88181,153.36783,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,12,Australia,AU,Queensland,-28.09698,153.44705,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,3,Australia,AU,Queensland,-28.152,153.449,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,7,Australia,AU,Queensland,-28.11092,153.40355,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,25,Australia,AU,Queensland,-27.93021,153.37006,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,18,Australia,AU,Queensland,-27.89948,153.29889,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,5,Australia,AU,Queensland,-28.09287,153.45975,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,25,Australia,AU,Queensland,-28.09752,153.44854,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,9,27,Australia,AU,Queensland,-27.92928,153.36592,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,24,Australia,AU,Queensland,-27.97707,153.23156,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,12,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,7,19,Australia,AU,Queensland,-28.18947,153.42025,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,17,Australia,AU,Queensland,-27.79052,153.2349,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,2,9,Australia,AU,Queensland,-28.16306,153.44968,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,2,Australia,AU,Queensland,-28.09754,153.4485,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,25,Australia,AU,Queensland,-28.14287,153.43934,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,8,Australia,AU,Queensland,-28.17188,153.42002,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,9,Australia,AU,Queensland,-28.10292,153.44747,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,3,Australia,AU,Queensland,-27.95123,153.36423,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,8,Australia,AU,Queensland,-28.09976,153.38654,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,14,Australia,AU,Queensland,-28.13122,153.45503,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,14,Australia,AU,Queensland,-27.97847,153.3414,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,16,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit) ,2020,8,8,Australia,AU,Queensland,-28.14308,153.4257,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,9,6,Australia,AU,Queensland,-28.10639,153.442,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,12,16,Australia,AU,Queensland,-27.94576,153.36629,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,7,2,Australia,AU,Queensland,-28.10103,153.34185,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,29,Australia,AU,Queensland,-27.94158,153.35715,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,17,Australia,AU,Queensland,-27.82214,153.31815,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,7,Australia,AU,Queensland,-28.09627,153.45361,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,20,Australia,AU,Queensland,-27.91361,153.37463,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,12,Australia,AU,Queensland,-28.09344,153.44813,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,8,8,Australia,AU,Queensland,-27.95767,153.37608,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,12,Australia,AU,Queensland,-28.13829,153.45367,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,28,Australia,AU,Queensland,-28.1459,153.40721,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,11,Australia,AU,Queensland,-27.91435,153.26539,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,5,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,2,Australia,AU,Queensland,-27.91164,153.34152,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,10,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,11,Australia,AU,Queensland,-28.15064,153.42109,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,19,Australia,AU,Queensland,-28.11065,153.38548,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,23,Australia,AU,Queensland,-28.11067,153.38508,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,14,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,16,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,14,Australia,AU,Queensland,-28.14899,153.45563,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,27,Australia,AU,Queensland,-28.11806,153.40825,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,6,7,Australia,AU,Queensland,-27.97722,153.23233,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,18,Australia,AU,Queensland,-27.92831,153.36437,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,10,Australia,AU,Queensland,-28.10065,153.44832,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,25,Australia,AU,Queensland,-28.15281,153.42895,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,2,Australia,AU,Queensland,-27.89085,153.32888,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,12,Australia,AU,Queensland,-28.17238,153.42616,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,31,Australia,AU,Queensland,-28.097,153.45041,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,3,8,Australia,AU,Queensland,-28.14475,153.41684,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,24,Australia,AU,Queensland,-27.9453,153.25002,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,20,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,8,10,Australia,AU,Queensland,-27.97716,153.23208,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,4,Australia,AU,Queensland,-28.13661,153.39308,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,9,Australia,AU,Queensland,-28.12155,153.42194,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,26,Australia,AU,Queensland,-27.94788,153.34747,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,5,17,Australia,AU,Queensland,-27.97695,153.2327,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,23,Australia,AU,Queensland,-28.12069,153.33225,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,23,Australia,AU,Queensland,-28.14842,153.43636,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,1,15,Australia,AU,Queensland,-27.97738,153.23174,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,7,Australia,AU,Queensland,-28.13459,153.44386,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,2,Australia,AU,Queensland,-28.13304,153.40693,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,4,Australia,AU,Queensland,-27.90017,153.30373,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,5,22,Australia,AU,Queensland,-27.97714,153.23213,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,11,1,Australia,AU,Queensland,-27.84332,153.35666,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,6,Australia,AU,Queensland,-27.93806,153.36383,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,1,Australia,AU,Queensland,-27.88997,153.3274,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,3,Australia,AU,Queensland,-28.01887,153.31229,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,19,Australia,AU,Queensland,-28.14706,153.45594,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,29,Australia,AU,Queensland,-27.93021,153.36242,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,1,27,Australia,AU,Queensland,-27.97725,153.23185,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,19,Australia,AU,Queensland,-28.12156,153.422,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,8,Australia,AU,Queensland,-27.91755,153.28896,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,4,Australia,AU,Queensland,-28.14199,153.44632,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,31,Australia,AU,Queensland,-27.93979,153.3569,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,3,15,Australia,AU,Queensland,-28.14583,153.4506,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,6,Australia,AU,Queensland,-28.14741,153.45412,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,31,Australia,AU,Queensland,-28.14485,153.44471,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,3,Australia,AU,Queensland,-28.16994,153.40605,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,4,Australia,AU,Queensland,-27.81872,153.32535,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,7,7,Australia,AU,Queensland,-28.06749,153.22949,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,4,Australia,AU,Queensland,-27.93768,153.36403,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,24,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,30,Australia,AU,Queensland,-28.09364,153.45789,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,24,Australia,AU,Queensland,-27.83745,153.33337,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,25,Australia,AU,Queensland,-27.88052,153.36703,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,26,Australia,AU,Queensland,-28.095,153.44728,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,11,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,18,Australia,AU,Queensland,-28.10101,153.44994,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,28,Australia,AU,Queensland,-28.10053,153.37978,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,3,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,14,Australia,AU,Queensland,-27.92942,153.36066,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,28,Australia,AU,Queensland,-28.1226,153.34833,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,27,Australia,AU,Queensland,-27.84492,153.35739,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,3,Australia,AU,Queensland,-27.92095,153.32463,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2021,10,8,Australia,AU,Queensland,-27.90892,153.34172,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,6,Australia,AU,Queensland,-27.90467,153.34332,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,29,Australia,AU,Queensland,-28.09331,153.44772,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,20,Australia,AU,Queensland,-28.13119,153.41766,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,11,6,Australia,AU,Queensland,-27.97687,153.23212,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,16,Australia,AU,Queensland,-28.09251,153.45385,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,4,28,Australia,AU,Queensland,-27.95058,153.36431,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2020,1,8,Australia,AU,Queensland,-27.91394,153.31966,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,12,Australia,AU,Queensland,-28.09333,153.44754,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,8,14,Australia,AU,Queensland,-27.95265,153.33885,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,22,Australia,AU,Queensland,-28.14509,153.44439,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,15,Australia,AU,Queensland,-28.13949,153.43883,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,7,Australia,AU,Queensland,-28.0398,153.3142,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,12,Australia,AU,Queensland,-28.10698,153.3578,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,3,26,Australia,AU,Queensland,-28.1169,153.37087,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,5,6,Australia,AU,Queensland,-28.14459,153.41662,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,29,Australia,AU,Queensland,-27.88964,153.33138,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2023,9,2,Australia,AU,Queensland,-28.12982,153.35133,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,31,Australia,AU,Queensland,-27.93152,153.36039,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,13,Australia,AU,Queensland,-28.18218,153.43063,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,19,Australia,AU,Queensland,-28.15933,153.39595,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,24,Australia,AU,Queensland,-27.90318,153.26987,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,20,Australia,AU,Queensland,-28.17029,153.40792,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,8,22,Australia,AU,Queensland,-27.89373,153.31703,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,30,Australia,AU,Queensland,-27.93725,153.3637,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,8,Australia,AU,Queensland,-27.94601,153.37075,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,24,Australia,AU,Queensland,-27.94114,153.37347,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,24,Australia,AU,Queensland,-28.09364,153.45789,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,24,Australia,AU,Queensland,-28.09411,153.45503,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,6,Australia,AU,Queensland,-27.89955,153.38659,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,5,Australia,AU,Queensland,-28.11899,153.38945,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,8,Australia,AU,Queensland,-28.14155,153.45293,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,31,Australia,AU,Queensland,-28.10661,153.43901,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,11,9,Australia,AU,Queensland,-27.96957,153.22098,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,13,Australia,AU,Queensland,-28.09394,153.45643,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,31,Australia,AU,Queensland,-28.16104,153.45487,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,22,Australia,AU,Queensland,-27.8994,153.29924,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,21,Australia,AU,Queensland,-28.13457,153.45708,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,21,Australia,AU,Queensland,-28.09005,153.36624,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,29,Australia,AU,Queensland,-28.1443,153.45056,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,25,Australia,AU,Queensland,-28.13262,153.39099,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,5,Australia,AU,Queensland,-27.83564,153.36348,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,23,Australia,AU,Queensland,-27.89074,153.32887,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,31,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,16,Australia,AU,Queensland,-28.14579,153.34583,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2022,9,7,Australia,AU,Queensland,-28.10127,153.44787,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,18,Australia,AU,Queensland,-28.09332,153.36573,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,9,1,Australia,AU,Queensland,-28.13568,153.45057,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,24,Australia,AU,Queensland,-28.13214,153.45504,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,24,Australia,AU,Queensland,-27.89053,153.32927,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,12,Australia,AU,Queensland,-28.1367,153.44698,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,4,Australia,AU,Queensland,-27.88038,153.36706,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,14,Australia,AU,Queensland,-27.94255,153.35919,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,6,Australia,AU,Queensland,-27.92416,153.38021,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2022,11,27,Australia,AU,Queensland,-28.1342,153.29342,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,8,Australia,AU,Queensland,-27.93415,153.3631,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,7,Australia,AU,Queensland,-28.01587,153.31122,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,31,Australia,AU,Queensland,-28.13881,153.43787,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,6,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,19,Australia,AU,Queensland,-28.12091,153.41977,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,10,Australia,AU,Queensland,-28.16737,153.42633,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,3,2,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,15,Australia,AU,Queensland,-28.09371,153.45802,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,14,Australia,AU,Queensland,-27.91444,153.3303,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,9,14,Australia,AU,Queensland,-28.11814,153.42731,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,9,Australia,AU,Queensland,-27.88253,153.37396,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,13,Australia,AU,Queensland,-27.82748,153.31977,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,2,Australia,AU,Queensland,-27.94055,153.35759,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,28,Australia,AU,Queensland,-27.94656,153.30126,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,25,Australia,AU,Queensland,-28.15363,153.45289,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2021,8,3,Australia,AU,Queensland,-27.96993,153.26786,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,13,Australia,AU,Queensland,-28.09146,153.45383,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,2,8,Australia,AU,Queensland,-27.99652,153.27713,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,12,Australia,AU,Queensland,-28.13071,153.43677,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,1,3,Australia,AU,Queensland,-28.09518,153.45307,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,5,Australia,AU,Queensland,-27.87228,153.21189,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,7,Australia,AU,Queensland,-28.1563,153.38968,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,1,Australia,AU,Queensland,-28.09594,153.4523,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,19,Australia,AU,Queensland,-28.12237,153.42714,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,8,Australia,AU,Queensland,-28.10082,153.44145,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,25,Australia,AU,Queensland,-28.13614,153.44596,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,3,Australia,AU,Queensland,-27.93954,153.38052,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,2,13,Australia,AU,Queensland,-28.07645,153.22671,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,1,Australia,AU,Queensland,-28.16366,153.3231,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,21,Australia,AU,Queensland,-27.896,153.32784,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,7,10,Australia,AU,Queensland,-27.97723,153.23236,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,10,Australia,AU,Queensland,-28.12702,153.44175,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,11,5,Australia,AU,Queensland,-27.96791,153.24362,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,8,Australia,AU,Queensland,-28.09306,153.3546,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,29,Australia,AU,Queensland,-28.14679,153.4338,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,18,Australia,AU,Queensland,-28.09326,153.44483,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,18,Australia,AU,Queensland,-28.15634,153.40783,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,1,Australia,AU,Queensland,-28.03941,153.24627,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,8,Australia,AU,Queensland,-27.89077,153.32919,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,3,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,14,Australia,AU,Queensland,-27.90163,153.31963,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,12,Australia,AU,Queensland,-27.92213,153.3811,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,1,Australia,AU,Queensland,-28.14832,153.4381,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,23,Australia,AU,Queensland,-28.09505,153.44969,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,11,27,Australia,AU,Queensland,-27.97725,153.23237,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,1,Australia,AU,Queensland,-28.13615,153.44636,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,13,Australia,AU,Queensland,-28.10062,153.44848,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,22,Australia,AU,Queensland,-28.17986,153.37064,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,6,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,6,Australia,AU,Queensland,-28.1616,153.45105,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,28,Australia,AU,Queensland,-27.97552,153.23841,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,12,Australia,AU,Queensland,-28.14893,153.44959,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,2,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,2,Australia,AU,Queensland,-27.92944,153.36593,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,19,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,19,Australia,AU,Queensland,-27.9358,153.3055,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,4,Australia,AU,Queensland,-27.9219,153.38474,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,1,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,27,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,19,Australia,AU,Queensland,-28.09769,153.3752,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,1,Australia,AU,Queensland,-27.93229,153.36191,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,30,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Hit by Vehicle,2023,5,29,Australia,AU,Queensland,-27.89395,153.33083,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,3,21,Australia,AU,Queensland,-27.9772,153.23232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,22,Australia,AU,Queensland,-28.1727,153.41669,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,16,Australia,AU,Queensland,-27.97668,153.33754,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,5,Australia,AU,Queensland,-27.9988,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,23,Australia,AU,Queensland,-27.9429,153.37331,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,21,Australia,AU,Queensland,-28.14043,153.44653,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,25,Australia,AU,Queensland,-28.13878,153.45519,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,12,Australia,AU,Queensland,-27.93369,153.3627,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,1,Australia,AU,Queensland,-27.8909,153.32896,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,28,Australia,AU,Queensland,-28.14735,153.45426,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,30,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,7,Australia,AU,Queensland,-27.93085,153.36498,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,31,Australia,AU,Queensland,-27.95146,153.36486,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,15,Australia,AU,Queensland,-28.13918,153.44791,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,18,Australia,AU,Queensland,-27.93333,153.36257,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,12,Australia,AU,Queensland,-27.89097,153.32944,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,3,Australia,AU,Queensland,-27.93422,153.36332,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,14,Australia,AU,Queensland,-28.01188,153.31687,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,22,Australia,AU,Queensland,-28.15654,153.43781,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,17,Australia,AU,Queensland,-27.89056,153.32924,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,19,Australia,AU,Queensland,-27.89084,153.32885,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,26,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,15,Australia,AU,Queensland,-28.17246,153.42636,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,2,Australia,AU,Queensland,-28.09756,153.44855,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,9,Australia,AU,Queensland,-28.11049,153.37116,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,9,17,Australia,AU,Queensland,-28.11961,153.37626,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,14,Australia,AU,Queensland,-28.14148,153.4514,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,17,Australia,AU,Queensland,-28.14994,153.42443,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,21,Australia,AU,Queensland,-28.09332,153.44742,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,25,Australia,AU,Queensland,-27.95286,153.3661,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,21,Australia,AU,Queensland,-28.10001,153.44981,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,9,Australia,AU,Queensland,-27.90782,153.34183,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,3,Australia,AU,Queensland,-27.82608,153.34167,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,9,Australia,AU,Queensland,-27.93416,153.35939,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,25,Australia,AU,Queensland,-27.9287,153.36554,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,8,15,Australia,AU,Queensland,-27.84117,153.18719,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,4,Australia,AU,Queensland,-28.09794,153.44782,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,8,10,Australia,AU,Queensland,-28.14409,153.45097,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,1,Australia,AU,Queensland,-27.93489,153.36628,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,23,Australia,AU,Queensland,-27.97694,153.23265,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,17,Australia,AU,Queensland,-27.8897,153.25225,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,21,Australia,AU,Queensland,-27.91307,153.32994,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,20,Australia,AU,Queensland,-27.93219,153.3606,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,7,4,Australia,AU,Queensland,-28.02158,153.32345,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,25,Australia,AU,Queensland,-27.9411,153.35759,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,24,Australia,AU,Queensland,-28.05252,153.31497,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,23,Australia,AU,Queensland,-28.09322,153.44799,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,16,Australia,AU,Queensland,-28.10533,153.37468,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,1,Australia,AU,Queensland,-27.95461,153.34547,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,17,Australia,AU,Queensland,-27.97329,153.22911,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,16,Australia,AU,Queensland,-27.95662,153.27651,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,10,Australia,AU,Queensland,-27.89269,153.31656,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,19,Australia,AU,Queensland,-28.17192,153.41985,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,29,Australia,AU,Queensland,-28.14342,153.42291,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,22,Australia,AU,Queensland,-27.88985,153.32355,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,8,Australia,AU,Queensland,-28.1216,153.42918,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,9,Australia,AU,Queensland,-28.05201,153.31487,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,22,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,15,Australia,AU,Queensland,-27.95676,153.37201,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,23,Australia,AU,Queensland,-28.15757,153.46705,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,22,Australia,AU,Queensland,-28.12639,153.3396,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,15,Australia,AU,Queensland,-27.9291,153.36526,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,3,Australia,AU,Queensland,-27.85165,153.34154,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,29,Australia,AU,Queensland,-28.09167,153.45161,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,4,Australia,AU,Queensland,-27.92945,153.36249,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,1,Australia,AU,Queensland,-28.08866,153.45246,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,20,Australia,AU,Queensland,-27.91261,153.3732,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,21,Australia,AU,Queensland,-27.90883,153.26884,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,17,Australia,AU,Queensland,-27.93818,153.35717,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,7,11,Australia,AU,Queensland,-28.15056,153.41559,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,5,Australia,AU,Queensland,-27.93818,153.35717,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,25,Australia,AU,Queensland,-27.97694,153.23265,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,28,Australia,AU,Queensland,-28.09168,153.45162,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,30,Australia,AU,Queensland,-28.13608,153.43343,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,9,Australia,AU,Queensland,-27.94035,153.35969,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,5,27,Australia,AU,Queensland,-27.92703,153.35913,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,27,Australia,AU,Queensland,-28.04901,153.32657,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,30,Australia,AU,Queensland,-27.82475,153.32238,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,21,Australia,AU,Queensland,-27.92241,153.38344,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,30,Australia,AU,Queensland,-28.00644,153.3272,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,9,Australia,AU,Queensland,-28.15788,153.40717,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,14,Australia,AU,Queensland,-27.95163,153.36648,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,9,Australia,AU,Queensland,-27.95278,153.38155,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,12,Australia,AU,Queensland,-28.13053,153.43673,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,12,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,1,Australia,AU,Queensland,-27.93229,153.36191,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,27,Australia,AU,Queensland,-28.13232,153.41731,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,12,1,Australia,AU,Queensland,-28.11092,153.40365,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,2,13,Australia,AU,Queensland,-27.97719,153.23244,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,28,Australia,AU,Queensland,-28.09464,153.44927,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,29,Australia,AU,Queensland,-28.13824,153.43907,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,28,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,1,Australia,AU,Queensland,-28.12344,153.39081,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,12,17,Australia,AU,Queensland,-28.14251,153.39637,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,10,Australia,AU,Queensland,-27.93281,153.35905,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.9408,153.3624,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,29,Australia,AU,Queensland,-27.93378,153.3597,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,14,Australia,AU,Queensland,-28.01093,153.26707,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,1,Australia,AU,Queensland,-27.84189,153.2949,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,3,Australia,AU,Queensland,-28.10491,153.37659,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,3,Australia,AU,Queensland,-28.13079,153.45518,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,23,Australia,AU,Queensland,-27.94811,153.36774,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Signs of disease,2023,9,26,Australia,AU,Queensland,-27.92961,153.36433,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,8,Australia,AU,Queensland,-28.11604,153.39174,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,1,Australia,AU,Queensland,-27.92818,153.36403,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,15,Australia,AU,Queensland,-28.15916,153.41449,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,1,Australia,AU,Queensland,-28.15966,153.43891,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,10,Australia,AU,Queensland,-28.09316,153.44847,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,19,Australia,AU,Queensland,-27.89949,153.29889,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,16,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,3,13,Australia,AU,Queensland,-28.14043,153.44653,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,22,Australia,AU,Queensland,-28.1438,153.39849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,10,Australia,AU,Queensland,-28.14905,153.46004,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,3,18,Australia,AU,Queensland,-28.15628,153.44462,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,25,Australia,AU,Queensland,-28.1183,153.42763,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,15,Australia,AU,Queensland,-28.1597,153.43924,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,14,Australia,AU,Queensland,-28.13568,153.45057,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,15,Australia,AU,Queensland,-28.12234,153.42763,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,27,Australia,AU,Queensland,-28.095,153.456,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2021,10,4,Australia,AU,Queensland,-28.02974,153.3516,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,13,Australia,AU,Queensland,-28.17237,153.42623,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,25,Australia,AU,Queensland,-27.84356,153.35972,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,14,Australia,AU,Queensland,-28.16127,153.45132,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,25,Australia,AU,Queensland,-28.14154,153.45116,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,5,25,Australia,AU,Queensland,-28.09213,153.45559,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,7,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,20,Australia,AU,Queensland,-27.80392,153.33918,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,8,Australia,AU,Queensland,-27.82106,153.3139,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,4,Australia,AU,Queensland,-28.09271,153.45163,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,30,Australia,AU,Queensland,-27.91608,153.34008,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,26,Australia,AU,Queensland,-27.83849,153.37169,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,8,Australia,AU,Queensland,-28.15787,153.45882,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,27,Australia,AU,Queensland,-28.1007,153.44825,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,16,Australia,AU,Queensland,-28.09112,153.45255,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,3,6,Australia,AU,Queensland,-27.84526,153.35751,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,15,Australia,AU,Queensland,-28.09673,153.45535,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,11,Australia,AU,Queensland,-27.92286,153.3847,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,28,Australia,AU,Queensland,-27.9523,153.36576,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,?Hit by Vehicle,2022,8,24,Australia,AU,Queensland,-27.94049,153.37351,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,7,Australia,AU,Queensland,-27.89973,153.33598,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,29,Australia,AU,Queensland,-28.14911,153.44206,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,10,Australia,AU,Queensland,-28.09623,153.45271,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,10,Australia,AU,Queensland,-27.90641,153.24396,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,17,Australia,AU,Queensland,-28.10557,153.43693,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,26,Australia,AU,Queensland,-27.89063,153.32875,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,19,Australia,AU,Queensland,-28.1071,153.36875,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,30,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,9,Australia,AU,Queensland,-28.10014,153.45015,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,9,Australia,AU,Queensland,-27.90701,153.33569,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,28,Australia,AU,Queensland,-27.92839,153.36451,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,6,2,Australia,AU,Queensland,-28.11401,153.409,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,30,Australia,AU,Queensland,-28.17907,153.43011,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,29,Australia,AU,Queensland,-28.13853,153.43976,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,21,Australia,AU,Queensland,-27.93893,153.365,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,19,Australia,AU,Queensland,-28.14114,153.4453,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,17,Australia,AU,Queensland,-28.10718,153.35731,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,15,Australia,AU,Queensland,-27.93385,153.35706,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,18,Australia,AU,Queensland,-27.89097,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,12,10,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,28,Australia,AU,Queensland,-28.15809,153.44065,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,15,Australia,AU,Queensland,-27.89585,153.32822,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,7,Australia,AU,Queensland,-27.9453,153.25002,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,31,Australia,AU,Queensland,-27.95845,153.37237,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,23,Australia,AU,Queensland,-28.09036,153.44769,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,25,Australia,AU,Queensland,-28.09215,153.45258,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,19,Australia,AU,Queensland,-27.89046,153.32952,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2020,1,8,Australia,AU,Queensland,-27.91398,153.31966,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,19,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,12,1,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,3,Australia,AU,Queensland,-27.92919,153.36698,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,11,Australia,AU,Queensland,-28.09758,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,8,10,Australia,AU,Queensland,-27.80268,153.18487,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,6,Australia,AU,Queensland,-28.1464,153.42907,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,14,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,6,Australia,AU,Queensland,-27.93884,153.37966,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,23,Australia,AU,Queensland,-27.97681,153.23237,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,11,8,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,19,Australia,AU,Queensland,-28.1183,153.42729,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,4,Australia,AU,Queensland,-28.10626,153.44186,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,26,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,5,6,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,1,Australia,AU,Queensland,-27.91838,153.33122,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,3,22,Australia,AU,Queensland,-28.13696,153.44709,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,9,17,Australia,AU,Queensland,-28.16273,153.45424,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,29,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,30,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,30,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,4,Australia,AU,Queensland,-28.1137,153.4105,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,17,Australia,AU,Queensland,-27.93385,153.35706,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,11,9,Australia,AU,Queensland,-27.89265,153.31657,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,5,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,25,Australia,AU,Queensland,-27.94575,153.35073,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,27,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,28,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,15,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,3,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,20,Australia,AU,Queensland,-27.97705,153.232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,2,Australia,AU,Queensland,-28.14154,153.45116,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,1,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,27,Australia,AU,Queensland,-28.09148,153.45178,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,8,Australia,AU,Queensland,-27.92885,153.36412,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,26,Australia,AU,Queensland,-28.09753,153.44854,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,9,Australia,AU,Queensland,-28.10204,153.4501,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,3,Australia,AU,Queensland,-27.89042,153.33517,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,11,Australia,AU,Queensland,-28.05186,153.31467,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,2,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,21,Australia,AU,Queensland,-27.9086,153.36445,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,18,Australia,AU,Queensland,-28.01049,153.32363,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,15,Australia,AU,Queensland,-27.89085,153.329,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,12,Australia,AU,Queensland,-28.14499,153.44503,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,8,6,Australia,AU,Queensland,-28.09549,153.45256,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,27,Australia,AU,Queensland,-27.89826,153.32276,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,19,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,9,7,Australia,AU,Queensland,-27.95234,153.26073,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,28,Australia,AU,Queensland,-28.14221,153.4388,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,20,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,4,8,Australia,AU,Queensland,-27.82212,153.30652,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,5,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,1,14,Australia,AU,Queensland,-27.94589,153.25074,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,10,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,29,Australia,AU,Queensland,-27.94535,153.38136,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,1,Australia,AU,Queensland,-28.14059,153.44673,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,19,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Heard only ,2020,8,31,Australia,AU,Queensland,-28.02967,153.3105,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,29,Australia,AU,Queensland,-27.94047,153.35773,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,8,10,Australia,AU,Queensland,-27.93306,153.36109,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,28,Australia,AU,Queensland,-28.15373,153.44682,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,31,Australia,AU,Queensland,-27.93357,153.36185,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2021,9,28,Australia,AU,Queensland,-27.99112,153.28263,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,4,Australia,AU,Queensland,-27.91383,153.33543,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,7,9,Australia,AU,Queensland,-28.15603,153.43548,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,3,Australia,AU,Queensland,-27.97601,153.33505,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,30,Australia,AU,Queensland,-28.14714,153.40556,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,11,12,Australia,AU,Queensland,-27.94931,153.36212,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,6,Australia,AU,Queensland,-28.15616,153.43932,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,23,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,17,Australia,AU,Queensland,-27.94773,153.37388,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,6,Australia,AU,Queensland,-28.15905,153.42921,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,20,Australia,AU,Queensland,-27.93379,153.36283,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,19,Australia,AU,Queensland,-28.13718,153.43335,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,1,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,14,Australia,AU,Queensland,-28.00079,153.29798,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,24,Australia,AU,Queensland,-27.94021,153.35669,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,27,Australia,AU,Queensland,-28.14064,153.44671,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,4,Australia,AU,Queensland,-27.89086,153.32895,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,12,Australia,AU,Queensland,-28.10701,153.38958,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,11,Australia,AU,Queensland,-27.9152,153.26821,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,28,Australia,AU,Queensland,-28.1158,153.39409,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,10,7,Australia,AU,Queensland,-28.11564,153.40355,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,27,Australia,AU,Queensland,-27.94256,153.36305,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,3,Australia,AU,Queensland,-27.93387,153.36293,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,10,11,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,11,3,Australia,AU,Queensland,-27.94517,153.24362,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,10,Australia,AU,Queensland,-27.91469,153.36311,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,9,28,Australia,AU,Queensland,-27.95826,153.37687,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,30,Australia,AU,Queensland,-28.10688,153.40474,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,10,27,Australia,AU,Queensland,-28.11202,153.38275,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,10,24,Australia,AU,Queensland,-27.90425,153.32398,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,5,Australia,AU,Queensland,-28.10973,153.37517,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,12,Australia,AU,Queensland,-27.92311,153.38506,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,4,Australia,AU,Queensland,-28.091,153.45491,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,16,Australia,AU,Queensland,-27.84938,153.32701,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,2,Australia,AU,Queensland,-27.89533,153.32086,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,6,15,Australia,AU,Queensland,-27.92293,153.38587,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,11,Australia,AU,Queensland,-28.152,153.449,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,15,Australia,AU,Queensland,-28.16078,153.45105,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,2,Australia,AU,Queensland,-27.82085,153.3142,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,30,Australia,AU,Queensland,-27.94054,153.3576,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,3,Australia,AU,Queensland,-27.81905,153.32598,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,2,24,Australia,AU,Queensland,-27.82479,153.32442,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,2,Australia,AU,Queensland,-28.09629,153.45231,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,7,20,Australia,AU,Queensland,-28.09248,153.45209,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,12,30,Australia,AU,Queensland,-28.157,153.4294,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,11,Australia,AU,Queensland,-28.16101,153.46098,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,4,28,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2022,7,19,Australia,AU,Queensland,-27.94452,153.37234,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,11,24,Australia,AU,Queensland,-27.93855,153.35694,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,11,Australia,AU,Queensland,-28.1415,153.45592,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,30,Australia,AU,Queensland,-27.91591,153.33125,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,12,6,Australia,AU,Queensland,-28.0957,153.45256,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,5,Australia,AU,Queensland,-28.10623,153.35146,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,14,Australia,AU,Queensland,-27.92152,153.38465,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,20,Australia,AU,Queensland,-27.93798,153.35682,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,10,Australia,AU,Queensland,-27.82475,153.30051,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,7,7,Australia,AU,Queensland,-27.97696,153.23243,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,8,Australia,AU,Queensland,-27.94743,153.37493,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,13,Australia,AU,Queensland,-28.16552,153.43248,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,6,29,Australia,AU,Queensland,-28.16689,153.44014,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,20,Australia,AU,Queensland,-28.14977,153.44101,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,18,Australia,AU,Queensland,-28.11291,153.35167,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,8,Australia,AU,Queensland,-27.90277,153.36525,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,13,Australia,AU,Queensland,-28.14761,153.42226,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,15,Australia,AU,Queensland,-27.89089,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,3,Australia,AU,Queensland,-27.94569,153.38237,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,25,Australia,AU,Queensland,-27.94614,153.36963,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,11,3,Australia,AU,Queensland,-27.93072,153.36543,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,8,14,Australia,AU,Queensland,-28.09686,153.45221,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,8,Australia,AU,Queensland,-28.15682,153.42115,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,7,Australia,AU,Queensland,-27.97822,153.26799,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,7,Australia,AU,Queensland,-28.1183,153.42763,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,12,Australia,AU,Queensland,-28.09208,153.4519,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,8,Australia,AU,Queensland,-27.90721,153.32284,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,6,Australia,AU,Queensland,-28.11806,153.40825,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,24,Australia,AU,Queensland,-28.15722,153.40744,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,9,Australia,AU,Queensland,-28.09741,153.44832,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,19,Australia,AU,Queensland,-28.1211,153.42228,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,22,Australia,AU,Queensland,-28.12325,153.42468,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,28,Australia,AU,Queensland,-28.16967,153.40575,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,10,13,Australia,AU,Queensland,-27.97714,153.23213,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,3,8,Australia,AU,Queensland,-28.14495,153.41444,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,10,23,Australia,AU,Queensland,-27.9054,153.37144,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,26,Australia,AU,Queensland,-28.15375,153.44864,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,5,13,Australia,AU,Queensland,-28.15999,153.42894,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,27,Australia,AU,Queensland,-27.93373,153.36278,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,24,Australia,AU,Queensland,-27.82347,153.37997,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,11,Australia,AU,Queensland,-28.08082,153.33195,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,23,Australia,AU,Queensland,-28.02252,153.33298,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,11,Australia,AU,Queensland,-27.90628,153.331,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,14,Australia,AU,Queensland,-28.18311,153.4096,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,13,Australia,AU,Queensland,-28.15967,153.43934,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,17,Australia,AU,Queensland,-28.13303,153.45751,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,26,Australia,AU,Queensland,-27.89017,153.32315,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,30,Australia,AU,Queensland,-27.93855,153.35694,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,23,Australia,AU,Queensland,-28.0896,153.44626,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,12,29,Australia,AU,Queensland,-28.11772,153.4099,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,21,Australia,AU,Queensland,-27.91172,153.33,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,30,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,6,Australia,AU,Queensland,-28.10656,153.39843,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,1,Australia,AU,Queensland,-27.93293,153.38215,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,27,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,7,Australia,AU,Queensland,-27.91526,153.3314,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,10,18,Australia,AU,Queensland,-27.90881,153.31967,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,30,Australia,AU,Queensland,-28.13712,153.43993,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,19,Australia,AU,Queensland,-28.13689,153.43295,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,14,Australia,AU,Queensland,-28.18249,153.41062,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,28,Australia,AU,Queensland,-27.76799,153.13112,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,16,Australia,AU,Queensland,-27.90602,153.38271,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,13,Australia,AU,Queensland,-27.93016,153.36575,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,31,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,4,2,Australia,AU,Queensland,-28.19025,153.42654,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,5,Australia,AU,Queensland,-27.89217,153.38056,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,3,Australia,AU,Queensland,-28.11541,153.44121,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,4,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,13,Australia,AU,Queensland,-28.02785,153.30402,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,6,Australia,AU,Queensland,-27.9339,153.36295,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,14,Australia,AU,Queensland,-28.09126,153.35464,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,27,Australia,AU,Queensland,-27.93263,153.34686,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,26,Australia,AU,Queensland,-28.09279,153.45112,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,5,Australia,AU,Queensland,-27.96145,153.3316,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,14,Australia,AU,Queensland,-28.14262,153.41095,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,8,11,Australia,AU,Queensland,-28.20647,153.40087,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,25,Australia,AU,Queensland,-27.79778,153.2712,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,27,Australia,AU,Queensland,-28.11641,153.40607,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,24,Australia,AU,Queensland,-28.13027,153.35023,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,18,Australia,AU,Queensland,-27.9358,153.35669,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,25,Australia,AU,Queensland,-27.88747,153.33236,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,13,Australia,AU,Queensland,-28.13794,153.45337,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,5,Australia,AU,Queensland,-27.99801,153.25994,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,13,Australia,AU,Queensland,-28.10796,153.37298,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,4,Australia,AU,Queensland,-28.09371,153.45802,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,6,22,Australia,AU,Queensland,-27.843,153.22307,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,30,Australia,AU,Queensland,-28.14205,153.44652,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,4,Australia,AU,Queensland,-28.09371,153.45802,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,9,Australia,AU,Queensland,-27.87476,153.25543,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,9,23,Australia,AU,Queensland,-28.16238,153.44312,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,22,Australia,AU,Queensland,-28.17255,153.41853,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,25,Australia,AU,Queensland,-28.13748,153.44941,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,1,Australia,AU,Queensland,-28.11092,153.40372,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,8,Australia,AU,Queensland,-28.09511,153.44866,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,8,Australia,AU,Queensland,-28.09029,153.45163,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,31,Australia,AU,Queensland,-28.13705,153.45375,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,9,2,Australia,AU,Queensland,-28.1259,153.4572,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,17,Australia,AU,Queensland,-27.93385,153.35706,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,14,Australia,AU,Queensland,-27.9223,153.3887,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,4,Australia,AU,Queensland,-27.84465,153.26504,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,15,Australia,AU,Queensland,-28.11125,153.44088,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,11,9,Australia,AU,Queensland,-27.94028,153.30725,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,25,Australia,AU,Queensland,-28.1183,153.42763,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,12,Australia,AU,Queensland,-28.16103,153.45382,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,12,Australia,AU,Queensland,-28.15661,153.43986,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,17,Australia,AU,Queensland,-28.14464,153.43733,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,6,Australia,AU,Queensland,-27.80273,153.18516,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,3,10,Australia,AU,Queensland,-28.09277,153.35603,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,5,Australia,AU,Queensland,-28.00813,153.256,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2021,10,25,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,16,Australia,AU,Queensland,-27.94465,153.36569,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,4,Australia,AU,Queensland,-27.87267,153.21167,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,30,Australia,AU,Queensland,-28.13892,153.4497,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,2,Australia,AU,Queensland,-28.15022,153.42113,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,1,Australia,AU,Queensland,-28.14901,153.44204,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,16,Australia,AU,Queensland,-27.90675,153.32281,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,27,Australia,AU,Queensland,-27.8991,153.31599,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,29,Australia,AU,Queensland,-28.1002,153.45116,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,9,17,Australia,AU,Queensland,-27.7863,153.25756,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,8,7,Australia,AU,Queensland,-28.16072,153.45305,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,28,Australia,AU,Queensland,-28.09347,153.44685,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,17,Australia,AU,Queensland,-27.93306,153.36243,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,22,Australia,AU,Queensland,-28.15931,153.44573,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,7,Australia,AU,Queensland,-28.10097,153.45,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,16,Australia,AU,Queensland,-27.93381,153.35932,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,11,Australia,AU,Queensland,-28.09279,153.45123,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,29,Australia,AU,Queensland,-27.84246,153.3633,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,24,Australia,AU,Queensland,-27.91667,153.38467,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,7,18,Australia,AU,Queensland,-28.14043,153.44643,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,8,18,Australia,AU,Queensland,-27.94027,153.36256,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,23,Australia,AU,Queensland,-28.15712,153.43192,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,7,Australia,AU,Queensland,-28.13879,153.4378,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,30,Australia,AU,Queensland,-28.14076,153.40934,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,2,1,Australia,AU,Queensland,-27.83282,153.36936,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,30,Australia,AU,Queensland,-28.11375,153.39192,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,12,Australia,AU,Queensland,-27.8429,153.35291,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,11,Australia,AU,Queensland,-28.0021,153.30023,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,29,Australia,AU,Queensland,-28.09215,153.45258,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,10,Australia,AU,Queensland,-27.90641,153.24396,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,3,Australia,AU,Queensland,-27.83409,153.36528,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,21,Australia,AU,Queensland,-27.90585,153.341,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,10,Australia,AU,Queensland,-27.96512,153.38167,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,12,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,3,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,6,Australia,AU,Queensland,-28.15616,153.43932,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,8,Australia,AU,Queensland,-28.12178,153.36127,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,24,Australia,AU,Queensland,-28.10079,153.37338,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,1,Australia,AU,Queensland,-27.94826,153.36615,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,29,Australia,AU,Queensland,-28.17028,153.40597,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,8,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,5,Australia,AU,Queensland,-27.93385,153.35706,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,17,Australia,AU,Queensland,-27.92281,153.33,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,23,Australia,AU,Queensland,-28.13082,153.45644,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,7,Australia,AU,Queensland,-28.11563,153.34521,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,2,Australia,AU,Queensland,-27.92812,153.36388,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,1,Australia,AU,Queensland,-27.93379,153.36283,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,9,Australia,AU,Queensland,-27.93244,153.36109,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,3,31,Australia,AU,Queensland,-27.92245,153.38801,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,11,Australia,AU,Queensland,-28.11072,153.40296,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,1,Australia,AU,Queensland,-27.91055,153.37412,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,21,Australia,AU,Queensland,-27.93373,153.36278,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,12,Australia,AU,Queensland,-28.09622,153.45257,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,20,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,20,Australia,AU,Queensland,-27.89084,153.32885,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,5,Australia,AU,Queensland,-27.84138,153.2477,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,21,Australia,AU,Queensland,-28.15172,153.33479,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,16,Australia,AU,Queensland,-28.15274,153.45346,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,7,12,Australia,AU,Queensland,-27.91564,153.329,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,4,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,29,Australia,AU,Queensland,-28.09663,153.45321,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,20,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,31,Australia,AU,Queensland,-27.90144,153.31919,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,14,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,15,Australia,AU,Queensland,-27.85552,153.33968,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,19,Australia,AU,Queensland,-27.99572,153.27651,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,31,Australia,AU,Queensland,-27.9177,153.37991,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,20,Australia,AU,Queensland,-27.83934,153.37144,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,29,Australia,AU,Queensland,-28.14757,153.45203,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,29,Australia,AU,Queensland,-28.12217,153.38902,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,3,Australia,AU,Queensland,-27.91477,153.3721,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,23,Australia,AU,Queensland,-27.8299,153.37702,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,4,Australia,AU,Queensland,-28.0984,153.44921,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,1,Australia,AU,Queensland,-28.12854,153.43589,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,1,Australia,AU,Queensland,-28.09754,153.4485,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,6,24,Australia,AU,Queensland,-28.09841,153.44869,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit) ,2020,9,28,Australia,AU,Queensland,-27.91877,153.28915,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,4,6,Australia,AU,Queensland,-27.93417,153.36488,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,2,Australia,AU,Queensland,-27.9621,153.37435,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,24,Australia,AU,Queensland,-28.12541,153.42655,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,26,Australia,AU,Queensland,-27.89243,153.32198,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,27,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,14,Australia,AU,Queensland,-28.16911,153.43389,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,9,Australia,AU,Queensland,-27.91116,153.33649,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,11,Australia,AU,Queensland,-27.934,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,19,Australia,AU,Queensland,-28.16078,153.45105,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,9,Australia,AU,Queensland,-27.84465,153.26504,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,1,17,Australia,AU,Queensland,-27.92049,153.32914,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,8,Australia,AU,Queensland,-28.08993,153.45533,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,26,Australia,AU,Queensland,-27.93385,153.35706,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,27,Australia,AU,Queensland,-28.10079,153.44861,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,3,Australia,AU,Queensland,-28.12313,153.42471,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,31,Australia,AU,Queensland,-27.84526,153.35751,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,22,Australia,AU,Queensland,-28.15505,153.45864,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,3,Australia,AU,Queensland,-27.94042,153.35778,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,21,Australia,AU,Queensland,-28.15091,153.42047,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Signs of disease,2021,2,8,Australia,AU,Queensland,-28.11049,153.37116,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,7,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,23,Australia,AU,Queensland,-27.93206,153.36205,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,7,Australia,AU,Queensland,-27.95012,153.35392,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,3,Australia,AU,Queensland,-28.13708,153.37996,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,4,Australia,AU,Queensland,-27.91656,153.38859,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,18,Australia,AU,Queensland,-28.07194,153.335,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,6,Australia,AU,Queensland,-27.82617,153.25731,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,21,Australia,AU,Queensland,-28.09276,153.45095,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,18,Australia,AU,Queensland,-28.09276,153.4552,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,9,12,Australia,AU,Queensland,-28.10536,153.35504,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,6,Australia,AU,Queensland,-28.14288,153.45554,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,9,30,Australia,AU,Queensland,-28.09328,153.44748,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,1,Australia,AU,Queensland,-27.83332,153.09192,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,17,Australia,AU,Queensland,-27.97701,153.23201,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,1,26,Australia,AU,Queensland,-27.84176,153.36294,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,22,Australia,AU,Queensland,-28.14493,153.44512,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,16,Australia,AU,Queensland,-28.09533,153.44606,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,30,Australia,AU,Queensland,-27.95385,153.38262,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,3,Australia,AU,Queensland,-27.90226,153.36278,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,6,Australia,AU,Queensland,-28.09506,153.4526,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,2,Australia,AU,Queensland,-27.97748,153.22937,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,3,Australia,AU,Queensland,-28.13754,153.44899,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,21,Australia,AU,Queensland,-27.89084,153.32885,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,5,Australia,AU,Queensland,-27.97531,153.23197,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,16,Australia,AU,Queensland,-28.14877,153.45007,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,21,Australia,AU,Queensland,-28.11806,153.40825,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,16,Australia,AU,Queensland,-27.96313,153.27421,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,16,Australia,AU,Queensland,-27.81579,153.28104,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,2,Australia,AU,Queensland,-28.0946,153.44498,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,21,Australia,AU,Queensland,-27.92872,153.36389,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,28,Australia,AU,Queensland,-28.11049,153.37116,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,5,17,Australia,AU,Queensland,-27.78826,153.25157,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,3,12,Australia,AU,Queensland,-28.14586,153.40714,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,3,Australia,AU,Queensland,-27.97828,153.2731,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,10,Australia,AU,Queensland,-27.93737,153.37232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,24,Australia,AU,Queensland,-27.97671,153.23212,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,28,Australia,AU,Queensland,-28.0998,153.45143,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,9,19,Australia,AU,Queensland,-28.0898,153.32569,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,13,Australia,AU,Queensland,-28.09215,153.45258,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,30,Australia,AU,Queensland,-27.89936,153.32824,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,27,Australia,AU,Queensland,-28.13625,153.44705,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,20,Australia,AU,Queensland,-28.12229,153.39213,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,14,Australia,AU,Queensland,-27.9453,153.25002,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,21,Australia,AU,Queensland,-28.09744,153.44867,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,12,Australia,AU,Queensland,-27.93338,153.35913,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,12,Australia,AU,Queensland,-27.93903,153.38009,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,17,Australia,AU,Queensland,-28.09539,153.45222,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,20,Australia,AU,Queensland,-28.09261,153.45124,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,4,Australia,AU,Queensland,-28.11806,153.40825,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,30,Australia,AU,Queensland,-27.97534,153.23197,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,23,Australia,AU,Queensland,-27.89091,153.32898,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,9,Australia,AU,Queensland,-27.94981,153.35699,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,7,Australia,AU,Queensland,-27.95399,153.37139,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,13,Australia,AU,Queensland,-27.89125,153.32834,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,2,Australia,AU,Queensland,-28.09504,153.45206,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,31,Australia,AU,Queensland,-28.11373,153.43851,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,12,Australia,AU,Queensland,-27.89085,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,6,Australia,AU,Queensland,-27.934,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,29,Australia,AU,Queensland,-28.14791,153.40583,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,1,7,Australia,AU,Queensland,-27.82804,153.29801,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2021,10,30,Australia,AU,Queensland,-27.94282,153.37955,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,20,Australia,AU,Queensland,-27.92825,153.36418,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,7,12,Australia,AU,Queensland,-27.97712,153.23229,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,12,30,Australia,AU,Queensland,-27.83285,153.36893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,20,Australia,AU,Queensland,-28.13857,153.45194,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,8,8,Australia,AU,Queensland,-27.95131,153.37723,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) - Signs of disease,2021,11,3,Australia,AU,Queensland,-27.77802,153.36111,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,15,Australia,AU,Queensland,-27.88144,153.36735,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,30,Australia,AU,Queensland,-27.89015,153.32958,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,15,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,29,Australia,AU,Queensland,-28.11092,153.40365,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,2,Australia,AU,Queensland,-27.90241,153.34068,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,7,Australia,AU,Queensland,-27.92024,153.38413,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,28,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,24,Australia,AU,Queensland,-27.78821,153.2516,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,6,23,Australia,AU,Queensland,-27.78373,153.26801,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,9,27,Australia,AU,Queensland,-27.93029,153.36587,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,22,Australia,AU,Queensland,-27.88457,153.22873,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,10,6,Australia,AU,Queensland,-28.14056,153.42853,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,11,Australia,AU,Queensland,-28.09768,153.44905,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,9,Australia,AU,Queensland,-27.89087,153.32892,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) ,2020,10,6,Australia,AU,Queensland,-27.905,153.32659,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,5,Australia,AU,Queensland,-27.91254,153.37303,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,1,23,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,29,Australia,AU,Queensland,-28.14491,153.43779,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,3,Australia,AU,Queensland,-27.93288,153.36064,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,23,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,3,22,Australia,AU,Queensland,-27.977,153.23243,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,28,Australia,AU,Queensland,-27.89076,153.32921,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,2,Australia,AU,Queensland,-28.14216,153.43572,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,31,Australia,AU,Queensland,-27.93325,153.3625,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,27,Australia,AU,Queensland,-27.89074,153.32931,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,2,Australia,AU,Queensland,-28.11792,153.40424,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,9,Australia,AU,Queensland,-28.09303,153.44942,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,3,31,Australia,AU,Queensland,-28.10438,153.39167,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,2,Australia,AU,Queensland,-28.15039,153.44033,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,1,Australia,AU,Queensland,-27.9063,153.37884,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,25,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - cause unknown,2020,3,25,Australia,AU,Queensland,-28.09687,153.44788,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,11,2,Australia,AU,Queensland,-27.90657,153.34166,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,6,16,Australia,AU,Queensland,-27.97723,153.23215,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,6,20,Australia,AU,Queensland,-27.97668,153.23196,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,23,Australia,AU,Queensland,-28.09314,153.44695,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2023,6,12,Australia,AU,Queensland,-27.92008,153.32316,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,15,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,20,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,8,Australia,AU,Queensland,-27.92608,153.24633,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,9,Australia,AU,Queensland,-27.9227,153.38936,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,2,Australia,AU,Queensland,-28.14726,153.45841,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,22,Australia,AU,Queensland,-27.84437,153.29561,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,16,Australia,AU,Queensland,-28.12154,153.42956,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,27,Australia,AU,Queensland,-27.90447,153.32625,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,21,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,26,Australia,AU,Queensland,-27.92919,153.36393,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,6,23,Australia,AU,Queensland,-27.912,153.33023,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,12,Australia,AU,Queensland,-27.94009,153.37314,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,8,10,Australia,AU,Queensland,-27.92251,153.38755,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,11,Australia,AU,Queensland,-28.10152,153.37308,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,13,Australia,AU,Queensland,-28.15091,153.42047,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,13,Australia,AU,Queensland,-28.15488,153.44634,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,19,Australia,AU,Queensland,-28.10415,153.43988,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,23,Australia,AU,Queensland,-27.89993,153.32921,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,15,Australia,AU,Queensland,-27.97534,153.23197,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,21,Australia,AU,Queensland,-27.90697,153.33608,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,13,Australia,AU,Queensland,-28.14345,153.44218,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,6,Australia,AU,Queensland,-27.97625,153.23766,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,23,Australia,AU,Queensland,-28.13374,153.44945,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,5,Australia,AU,Queensland,-27.97718,153.23214,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,5,Australia,AU,Queensland,-28.01188,153.31687,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,20,Australia,AU,Queensland,-28.10121,153.44912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,15,Australia,AU,Queensland,-27.84526,153.35751,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,1,18,Australia,AU,Queensland,-28.00129,153.31775,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,7,Australia,AU,Queensland,-27.93943,153.36523,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,22,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,10,Australia,AU,Queensland,-28.09248,153.45117,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,22,Australia,AU,Queensland,-27.99879,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,20,Australia,AU,Queensland,-27.80103,153.1815,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,29,Australia,AU,Queensland,-27.94706,153.37313,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,1,5,Australia,AU,Queensland,-28.09172,153.45157,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,9,Australia,AU,Queensland,-27.80268,153.18487,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,9,14,Australia,AU,Queensland,-27.93424,153.37394,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,11,Australia,AU,Queensland,-27.9772,153.23245,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,28,Australia,AU,Queensland,-28.09711,153.44589,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,23,Australia,AU,Queensland,-27.93411,153.36311,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,31,Australia,AU,Queensland,-27.89089,153.32927,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,8,Australia,AU,Queensland,-27.90292,153.36146,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,28,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,11,Australia,AU,Queensland,-27.97772,153.24005,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,2,Australia,AU,Queensland,-28.13965,153.45153,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,16,Australia,AU,Queensland,-27.93341,153.35888,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,10,Australia,AU,Queensland,-27.97711,153.23251,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,25,Australia,AU,Queensland,-28.09146,153.45157,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,2,Australia,AU,Queensland,-28.1376,153.43674,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,11,Australia,AU,Queensland,-27.89041,153.32875,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,24,Australia,AU,Queensland,-28.10742,153.40459,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,19,Australia,AU,Queensland,-27.9772,153.23244,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,5,30,Australia,AU,Queensland,-28.11978,153.37321,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,10,4,Australia,AU,Queensland,-28.11959,153.41912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,27,Australia,AU,Queensland,-27.92955,153.36442,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,13,Australia,AU,Queensland,-27.95268,153.38193,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,3,Australia,AU,Queensland,-27.9476,153.38481,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,3,Australia,AU,Queensland,-27.91457,153.33124,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,19,Australia,AU,Queensland,-27.95446,153.37279,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,22,Australia,AU,Queensland,-27.94197,153.35882,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,4,13,Australia,AU,Queensland,-27.9374,153.36203,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Hit by Vehicle,2022,10,4,Australia,AU,Queensland,-27.93293,153.38215,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,13,Australia,AU,Queensland,-28.13078,153.43842,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,14,Australia,AU,Queensland,-27.94082,153.35743,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,25,Australia,AU,Queensland,-27.89075,153.33517,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,24,Australia,AU,Queensland,-28.09752,153.44853,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,6,Australia,AU,Queensland,-27.84388,153.26429,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Signs of disease,2021,1,7,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,6,30,Australia,AU,Queensland,-27.97683,153.23236,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,20,Australia,AU,Queensland,-28.10626,153.44157,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,2,Australia,AU,Queensland,-27.95123,153.36423,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,20,Australia,AU,Queensland,-28.13062,153.41849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,30,Australia,AU,Queensland,-28.10974,153.39273,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2022,8,20,Australia,AU,Queensland,-27.96021,153.34803,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,8,29,Australia,AU,Queensland,-27.84313,153.35809,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,12,Australia,AU,Queensland,-28.14016,153.45265,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,18,Australia,AU,Queensland,-27.83957,153.37173,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,24,Australia,AU,Queensland,-27.89053,153.32935,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,15,Australia,AU,Queensland,-28.09828,153.44809,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,18,Australia,AU,Queensland,-27.82546,153.34108,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,11,Australia,AU,Queensland,-27.89085,153.32919,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,18,Australia,AU,Queensland,-28.14064,153.44671,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,25,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,14,Australia,AU,Queensland,-28.09873,153.44908,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,6,Australia,AU,Queensland,-27.82202,153.37952,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,11,26,Australia,AU,Queensland,-27.81126,153.2752,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,14,Australia,AU,Queensland,-27.89107,153.32282,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,17,Australia,AU,Queensland,-28.11231,153.44153,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,15,Australia,AU,Queensland,-27.92918,153.36677,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,8,21,Australia,AU,Queensland,-27.90182,153.32207,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,24,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,7,Australia,AU,Queensland,-27.9326,153.36534,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2021,8,18,Australia,AU,Queensland,-28.11806,153.40825,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,7,12,Australia,AU,Queensland,-28.09616,153.44876,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,4,Australia,AU,Queensland,-27.89969,153.32822,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,15,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,18,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,9,Australia,AU,Queensland,-27.94074,153.35733,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,29,Australia,AU,Queensland,-27.9988,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,23,Australia,AU,Queensland,-27.9453,153.25001,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,10,Australia,AU,Queensland,-28.15178,153.42934,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,1,Australia,AU,Queensland,-28.10347,153.4418,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,4,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,11,Australia,AU,Queensland,-28.13747,153.44914,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,6,25,Australia,AU,Queensland,-27.97718,153.23215,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,20,Australia,AU,Queensland,-28.09555,153.45269,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,26,Australia,AU,Queensland,-28.17994,153.42984,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,14,Australia,AU,Queensland,-27.96181,153.27787,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,21,Australia,AU,Queensland,-27.96187,153.37425,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,14,Australia,AU,Queensland,-28.10378,153.33537,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,27,Australia,AU,Queensland,-28.00853,153.32765,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,16,Australia,AU,Queensland,-27.94491,153.36529,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,1,Australia,AU,Queensland,-27.9772,153.23245,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,9,Australia,AU,Queensland,-27.97425,153.27563,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,8,Australia,AU,Queensland,-27.9791,153.32118,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,6,13,Australia,AU,Queensland,-28.14034,153.44361,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,8,Australia,AU,Queensland,-27.89992,153.37127,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,30,Australia,AU,Queensland,-28.14974,153.42052,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,11,14,Australia,AU,Queensland,-27.89541,153.32857,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,19,Australia,AU,Queensland,-27.95405,153.37429,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,1,14,Australia,AU,Queensland,-28.09957,153.45119,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,18,Australia,AU,Queensland,-28.09299,153.35453,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,1,7,Australia,AU,Queensland,-28.14313,153.41052,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,19,Australia,AU,Queensland,-28.14059,153.44704,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,3,18,Australia,AU,Queensland,-27.92147,153.38741,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,16,Australia,AU,Queensland,-27.92895,153.36435,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,10,12,Australia,AU,Queensland,-27.78307,153.269,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,25,Australia,AU,Queensland,-28.09486,153.45663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,18,Australia,AU,Queensland,-28.11435,153.40132,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,23,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,12,Australia,AU,Queensland,-27.93738,153.35648,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,21,Australia,AU,Queensland,-27.99524,153.31569,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,18,Australia,AU,Queensland,-28.13821,153.43934,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,27,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,11,Australia,AU,Queensland,-28.0932,153.44787,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,5,Australia,AU,Queensland,-27.8371,153.35753,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,24,Australia,AU,Queensland,-27.89083,153.32895,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,29,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,14,Australia,AU,Queensland,-27.94139,153.35795,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,6,20,Australia,AU,Queensland,-28.20877,153.41053,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,15,Australia,AU,Queensland,-27.93914,153.35641,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,17,Australia,AU,Queensland,-27.94065,153.35841,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,9,29,Australia,AU,Queensland,-28.14078,153.44506,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,29,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,16,Australia,AU,Queensland,-27.91027,153.32473,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,17,Australia,AU,Queensland,-28.05415,153.35195,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,8,Australia,AU,Queensland,-27.92028,153.3841,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,10,Australia,AU,Queensland,-27.82378,153.32522,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,6,Australia,AU,Queensland,-27.92255,153.38734,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,14,Australia,AU,Queensland,-27.94306,153.35999,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,10,Australia,AU,Queensland,-28.01639,153.26971,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,30,Australia,AU,Queensland,-28.13882,153.43785,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,10,15,Australia,AU,Queensland,-28.13722,153.45282,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,18,Australia,AU,Queensland,-27.9374,153.36203,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,16,Australia,AU,Queensland,-28.09119,153.45269,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,1,Australia,AU,Queensland,-28.1363,153.44652,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,27,Australia,AU,Queensland,-27.94941,153.36789,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,29,Australia,AU,Queensland,-27.94176,153.3571,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,20,Australia,AU,Queensland,-27.9988,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,26,Australia,AU,Queensland,-28.09188,153.45195,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,11,10,Australia,AU,Queensland,-27.93126,153.36522,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,21,Australia,AU,Queensland,-27.84246,153.35606,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,12,Australia,AU,Queensland,-28.14807,153.44141,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2022,6,22,Australia,AU,Queensland,-28.15538,153.45892,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,31,Australia,AU,Queensland,-28.09722,153.44694,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,9,7,Australia,AU,Queensland,-28.17835,153.40699,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,27,Australia,AU,Queensland,-27.9988,153.27663,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,5,Australia,AU,Queensland,-28.14401,153.41072,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,3,Australia,AU,Queensland,-28.17237,153.42657,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,19,Australia,AU,Queensland,-28.1327,153.45167,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,9,Australia,AU,Queensland,-27.9374,153.36203,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,28,Australia,AU,Queensland,-28.1363,153.44621,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,28,Australia,AU,Queensland,-28.14485,153.44471,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,28,Australia,AU,Queensland,-28.13783,153.44579,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,8,24,Australia,AU,Queensland,-27.78821,153.2516,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,13,Australia,AU,Queensland,-27.88397,153.32783,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,5,Australia,AU,Queensland,-28.16141,153.45194,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,31,Australia,AU,Queensland,-27.9304,153.36145,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,28,Australia,AU,Queensland,-27.93605,153.36036,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,4,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,27,Australia,AU,Queensland,-27.91489,153.33075,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,5,Australia,AU,Queensland,-28.09537,153.45263,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,24,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,9,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,20,Australia,AU,Queensland,-27.92902,153.36612,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,6,25,Australia,AU,Queensland,-28.12648,153.42489,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,21,Australia,AU,Queensland,-27.87226,153.21165,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,3,16,Australia,AU,Queensland,-27.799,153.29571,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,4,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,12,28,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,20,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,16,Australia,AU,Queensland,-27.93301,153.36093,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,13,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,21,Australia,AU,Queensland,-28.13882,153.45201,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,8,19,Australia,AU,Queensland,-28.09276,153.45095,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,9,3,Australia,AU,Queensland,-28.09807,153.44761,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,28,Australia,AU,Queensland,-27.92325,153.30126,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,7,17,Australia,AU,Queensland,-27.9772,153.23232,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,13,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,31,Australia,AU,Queensland,-27.97689,153.23241,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,13,Australia,AU,Queensland,-28.09206,153.45188,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2021,11,10,Australia,AU,Queensland,-28.1554,153.43858,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,1,6,Australia,AU,Queensland,-27.97689,153.23241,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,5,15,Australia,AU,Queensland,-28.16103,153.42925,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,2,Australia,AU,Queensland,-27.90441,153.33025,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,25,Australia,AU,Queensland,-28.15623,153.44167,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,25,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,5,Australia,AU,Queensland,-28.09602,153.44894,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,28,Australia,AU,Queensland,-27.98496,153.27309,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,15,Australia,AU,Queensland,-27.94048,153.35774,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,16,Australia,AU,Queensland,-28.20908,153.39194,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,25,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,1,Australia,AU,Queensland,-27.82618,153.31913,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,20,Australia,AU,Queensland,-28.15497,153.45835,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,11,Australia,AU,Queensland,-27.89438,153.38989,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,18,Australia,AU,Queensland,-28.1561,153.43917,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,24,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,2,Australia,AU,Queensland,-28.09458,153.45354,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,25,Australia,AU,Queensland,-28.11081,153.37483,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,8,4,Australia,AU,Queensland,-28.12985,153.35143,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,9,Australia,AU,Queensland,-28.10001,153.44981,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,16,Australia,AU,Queensland,-28.10623,153.44167,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,28,Australia,AU,Queensland,-28.14493,153.44489,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,20,Australia,AU,Queensland,-28.17893,153.37083,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,31,Australia,AU,Queensland,-28.20867,153.37452,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,27,Australia,AU,Queensland,-27.97691,153.23229,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,8,3,Australia,AU,Queensland,-27.93818,153.35717,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,19,Australia,AU,Queensland,-28.14538,153.43474,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,21,Australia,AU,Queensland,-28.16129,153.45518,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,8,Australia,AU,Queensland,-27.93681,153.36071,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,3,Australia,AU,Queensland,-27.9295,153.36302,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,24,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,11,Australia,AU,Queensland,-28.12051,153.25242,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,5,31,Australia,AU,Queensland,-27.82546,153.34102,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,4,Australia,AU,Queensland,-27.91495,153.38674,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,4,Australia,AU,Queensland,-27.94282,153.37955,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,17,Australia,AU,Queensland,-28.14713,153.409,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,17,Australia,AU,Queensland,-27.91882,153.38681,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,8,Australia,AU,Queensland,-28.01849,153.31225,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,11,12,Australia,AU,Queensland,-27.94965,153.3635,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,12,12,Australia,AU,Queensland,-27.934,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,2,Australia,AU,Queensland,-28.10168,153.37515,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,17,Australia,AU,Queensland,-27.91607,153.34152,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Signs of disease,2022,8,25,Australia,AU,Queensland,-27.97994,153.27694,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,18,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,25,Australia,AU,Queensland,-27.84642,153.29225,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,21,Australia,AU,Queensland,-27.89087,153.3293,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,28,Australia,AU,Queensland,-28.15994,153.44962,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,16,Australia,AU,Queensland,-28.14035,153.44644,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,24,Australia,AU,Queensland,-28.03093,153.26202,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,2,3,Australia,AU,Queensland,-28.10461,153.44059,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,7,Australia,AU,Queensland,-27.83195,153.37299,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,5,Australia,AU,Queensland,-27.93818,153.35717,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,1,Australia,AU,Queensland,-28.00788,153.30653,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,12,Australia,AU,Queensland,-27.89087,153.32899,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Crossing road (unhit),2021,10,17,Australia,AU,Queensland,-28.09259,153.44878,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,25,Australia,AU,Queensland,-28.16088,153.44798,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,8,17,Australia,AU,Queensland,-27.94684,153.38603,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,31,Australia,AU,Queensland,-27.91339,153.37306,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,11,Australia,AU,Queensland,-28.0928,153.45113,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2021,10,9,Australia,AU,Queensland,-28.14464,153.43733,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,9,Australia,AU,Queensland,-27.92023,153.38393,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,19,Australia,AU,Queensland,-28.11555,153.37099,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,15,Australia,AU,Queensland,-27.88604,153.32638,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,11,Australia,AU,Queensland,-27.93305,153.35363,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,10,Australia,AU,Queensland,-28.14273,153.45007,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,5,Australia,AU,Queensland,-28.09204,153.45163,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,17,Australia,AU,Queensland,-27.9511,153.36589,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,27,Australia,AU,Queensland,-28.10656,153.44154,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,14,Australia,AU,Queensland,-28.13302,153.45408,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,6,Australia,AU,Queensland,-27.89082,153.32884,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,5,Australia,AU,Queensland,-27.83989,153.2726,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,10,4,Australia,AU,Queensland,-27.93033,153.07371,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,9,25,Australia,AU,Queensland,-28.09793,153.44879,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,17,Australia,AU,Queensland,-28.01279,153.32774,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,17,Australia,AU,Queensland,-28.09503,153.45263,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,2,Australia,AU,Queensland,-27.93418,153.37713,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,27,Australia,AU,Queensland,-28.09728,153.45407,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,11,19,Australia,AU,Queensland,-28.14706,153.45594,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,4,Australia,AU,Queensland,-27.9183,153.33055,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,27,Australia,AU,Queensland,-28.13288,153.4546,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,25,Australia,AU,Queensland,-27.92993,153.36229,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,2,Australia,AU,Queensland,-27.91942,153.37704,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,17,Australia,AU,Queensland,-27.93227,153.36198,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,3,1,Australia,AU,Queensland,-27.83306,153.37096,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,19,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,24,Australia,AU,Queensland,-27.9568,153.38024,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,2,Australia,AU,Queensland,-27.99672,153.27698,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,3,Australia,AU,Queensland,-28.15956,153.43882,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,18,Australia,AU,Queensland,-28.01201,153.27126,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,23,Australia,AU,Queensland,-28.09324,153.45676,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,4,28,Australia,AU,Queensland,-27.93411,153.35809,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2021,1,23,Australia,AU,Queensland,-27.76464,153.24738,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,11,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2022,9,10,Australia,AU,Queensland,-27.79305,153.17781,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,28,Australia,AU,Queensland,-28.13328,153.44696,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,6,3,Australia,AU,Queensland,-28.09411,153.45278,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,6,25,Australia,AU,Queensland,-28.14135,153.45102,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,29,Australia,AU,Queensland,-27.84205,153.2949,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,22,Australia,AU,Queensland,-27.89074,153.32923,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,5,27,Australia,AU,Queensland,-27.9753,153.23197,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,1,Australia,AU,Queensland,-27.90385,153.37234,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,7,29,Australia,AU,Queensland,-27.89044,153.32938,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,8,Australia,AU,Queensland,-27.93234,153.36191,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,23,Australia,AU,Queensland,-27.94737,153.37486,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,29,Australia,AU,Queensland,-27.89076,153.32921,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,2,Australia,AU,Queensland,-27.97529,153.23099,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,11,Australia,AU,Queensland,-28.14197,153.41008,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,5,17,Australia,AU,Queensland,-27.93302,153.35611,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2023,4,13,Australia,AU,Queensland,-27.9374,153.36203,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,15,Australia,AU,Queensland,-27.93379,153.36283,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,17,Australia,AU,Queensland,-27.90909,153.37449,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,1,Australia,AU,Queensland,-27.93283,153.35885,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,7,14,Australia,AU,Queensland,-28.09475,153.45278,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,6,8,Australia,AU,Queensland,-27.83716,153.35704,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,1,Australia,AU,Queensland,-28.0964,153.45271,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,8,5,Australia,AU,Queensland,-28.10103,153.4501,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,24,Australia,AU,Queensland,-28.09938,153.44822,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,20,Australia,AU,Queensland,-28.05113,153.31415,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,7,Australia,AU,Queensland,-28.10639,153.44197,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,22,Australia,AU,Queensland,-27.98091,153.27716,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,10,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,10,23,Australia,AU,Queensland,-28.11806,153.40825,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,27,Australia,AU,Queensland,-27.93558,153.36421,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,26,Australia,AU,Queensland,-28.09029,153.45163,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,19,Australia,AU,Queensland,-27.89097,153.32944,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,3,25,Australia,AU,Queensland,-27.91123,153.2029,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,26,Australia,AU,Queensland,-28.16049,153.45111,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,9,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,29,Australia,AU,Queensland,-28.13122,153.45574,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,13,Australia,AU,Queensland,-27.89072,153.32927,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,2,2,Australia,AU,Queensland,-28.09744,153.44857,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,7,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,22,Australia,AU,Queensland,-27.91977,153.37231,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,6,6,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,12,Australia,AU,Queensland,-27.94931,153.36212,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,14,Australia,AU,Queensland,-28.11912,153.43528,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,13,Australia,AU,Queensland,-27.95767,153.37608,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,12,6,Australia,AU,Queensland,-28.09356,153.31412,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,16,Australia,AU,Queensland,-28.0133,153.32298,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,3,Australia,AU,Queensland,-27.93399,153.36297,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,7,Australia,AU,Queensland,-27.94815,153.37408,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,30,Australia,AU,Queensland,-28.13637,153.44678,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,9,15,Australia,AU,Queensland,-27.97944,153.27634,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,6,Australia,AU,Queensland,-28.15111,153.44142,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,26,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,15,Australia,AU,Queensland,-28.13512,153.40415,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,8,15,Australia,AU,Queensland,-28.13862,153.45889,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,4,Australia,AU,Queensland,-28.15357,153.44978,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,12,17,Australia,AU,Queensland,-28.11841,153.40753,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Signs of disease,2021,9,9,Australia,AU,Queensland,-27.9148,153.3854,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,6,28,Australia,AU,Queensland,-28.09606,153.45261,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,29,Australia,AU,Queensland,-27.95347,153.36252,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit) - Signs of disease,2022,11,23,Australia,AU,Queensland,-28.16541,153.43233,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,5,Australia,AU,Queensland,-27.89076,153.32923,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,18,Australia,AU,Queensland,-27.95005,153.35729,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,11,18,Australia,AU,Queensland,-28.14475,153.41684,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,4,28,Australia,AU,Queensland,-28.09568,153.45287,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,1,30,Australia,AU,Queensland,-27.97742,153.23137,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,12,13,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,10,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,11,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,3,Australia,AU,Queensland,-28.09637,153.45353,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,11,Australia,AU,Queensland,-28.15968,153.43924,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,7,16,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,6,28,Australia,AU,Queensland,-28.09374,153.4547,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,1,Australia,AU,Queensland,-27.93688,153.36039,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,7,23,Australia,AU,Queensland,-27.977,153.23245,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,23,Australia,AU,Queensland,-28.09195,153.44591,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,25,Australia,AU,Queensland,-28.11204,153.43176,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,25,Australia,AU,Queensland,-28.17173,153.42083,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,7,20,Australia,AU,Queensland,-27.89093,153.32922,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,8,Australia,AU,Queensland,-27.83705,153.37344,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,19,Australia,AU,Queensland,-28.15937,153.46215,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,27,Australia,AU,Queensland,-28.16862,153.40609,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,10,22,Australia,AU,Queensland,-27.93914,153.35641,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,25,Australia,AU,Queensland,-27.94101,153.35756,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,9,23,Australia,AU,Queensland,-27.99466,153.27544,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2022,3,1,Australia,AU,Queensland,-28.15801,153.46437,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,25,Australia,AU,Queensland,-28.13642,153.44647,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,26,Australia,AU,Queensland,-28.14034,153.44645,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,30,Australia,AU,Queensland,-28.159,153.43429,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,12,Australia,AU,Queensland,-28.13235,153.45207,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,9,20,Australia,AU,Queensland,-27.97718,153.23214,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,2,3,Australia,AU,Queensland,-28.09742,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,25,Australia,AU,Queensland,-27.84163,153.35657,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,26,Australia,AU,Queensland,-28.08484,153.38131,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,5,Australia,AU,Queensland,-27.89498,153.32819,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,3,Australia,AU,Queensland,-27.97582,153.23121,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,6,Australia,AU,Queensland,-27.93713,153.35671,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,2,Australia,AU,Queensland,-27.96158,153.2222,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2020,5,3,Australia,AU,Queensland,-28.16261,153.44369,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,1,7,Australia,AU,Queensland,-28.14856,153.45945,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,5,1,Australia,AU,Queensland,-27.95351,153.38072,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,14,Australia,AU,Queensland,-27.95562,153.37331,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,13,Australia,AU,Queensland,-27.82421,153.32643,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,9,24,Australia,AU,Queensland,-27.91299,153.37502,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,8,Australia,AU,Queensland,-28.1269,153.39321,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,1,11,Australia,AU,Queensland,-27.97186,153.23246,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,16,Australia,AU,Queensland,-27.82146,153.32695,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,5,31,Australia,AU,Queensland,-27.93055,153.36532,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,26,Australia,AU,Queensland,-28.13888,153.43785,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,24,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,7,19,Australia,AU,Queensland,-28.11042,153.37097,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,5,16,Australia,AU,Queensland,-27.97686,153.23234,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,14,Australia,AU,Queensland,-27.982296,153.331278,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,20,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,25,Australia,AU,Queensland,-28.14027,153.44649,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,4,Australia,AU,Queensland,-28.14932,153.44754,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,8,12,Australia,AU,Queensland,-28.09275,153.45001,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,14,Australia,AU,Queensland,-27.93605,153.3525,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2020,10,31,Australia,AU,Queensland,-28.0907,153.3413,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2023,4,14,Australia,AU,Queensland,-27.91109,153.38831,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,9,27,Australia,AU,Queensland,-28.11869,153.43713,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,30,Australia,AU,Queensland,-28.1212,153.3476,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,13,Australia,AU,Queensland,-28.14299,153.42631,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,9,28,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,15,Australia,AU,Queensland,-27.8909,153.3295,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,3,16,Australia,AU,Queensland,-27.89088,153.3287,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,30,Australia,AU,Queensland,-27.89941,153.29901,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,12,19,Australia,AU,Queensland,-28.11713,153.41026,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,22,Australia,AU,Queensland,-27.91377,153.32989,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,6,21,Australia,AU,Queensland,-27.97695,153.23204,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2022,7,17,Australia,AU,Queensland,-27.9086,153.34253,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,1,24,Australia,AU,Queensland,-28.18167,153.41056,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,8,10,Australia,AU,Queensland,-27.91206,153.32783,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,24,Australia,AU,Queensland,-27.93238,153.36209,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,3,2,Australia,AU,Queensland,-27.84146,153.18596,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,3,4,Australia,AU,Queensland,-28.16681,153.43256,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,29,Australia,AU,Queensland,-28.14129,153.44533,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,2,3,Australia,AU,Queensland,-27.95565,153.37694,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,9,24,Australia,AU,Queensland,-27.91929,153.38665,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease,2020,12,2,Australia,AU,Queensland,-28.12798,153.44403,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,2,22,Australia,AU,Queensland,-27.95128,153.34442,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,11,5,Australia,AU,Queensland,-27.94035,153.35688,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,3,31,Australia,AU,Queensland,-27.94257,153.35887,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,19,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,10,29,Australia,AU,Queensland,-28.11749,153.38902,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,8,14,Australia,AU,Queensland,-28.11395,153.40965,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,28,Australia,AU,Queensland,-28.14395,153.44526,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,6,Australia,AU,Queensland,-27.91428,153.33046,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,23,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,10,Australia,AU,Queensland,-28.09294,153.45119,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,24,Australia,AU,Queensland,-28.20897,153.22555,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,7,8,Australia,AU,Queensland,-28.09752,153.44806,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,25,Australia,AU,Queensland,-27.9453,153.25002,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,26,Australia,AU,Queensland,-27.93588,153.36401,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,10,7,Australia,AU,Queensland,-28.14115,153.44694,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,17,Australia,AU,Queensland,-27.91726,153.37666,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,10,12,Australia,AU,Queensland,-27.99411,153.2814,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,8,6,Australia,AU,Queensland,-27.94999,153.37836,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,8,27,Australia,AU,Queensland,-27.88567,153.33023,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,12,4,Australia,AU,Queensland,-27.94225,153.34529,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,26,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,5,19,Australia,AU,Queensland,-28.01266,153.32765,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,2,23,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,7,2,Australia,AU,Queensland,-28.09161,153.45634,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,2,17,Australia,AU,Queensland,-28.11635,153.40823,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Crossing road (unhit),2021,7,7,Australia,AU,Queensland,-28.09402,153.45312,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,4,22,Australia,AU,Queensland,-28.09578,153.45219,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2022,8,13,Australia,AU,Queensland,-28.09754,153.44849,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,10,24,Australia,AU,Queensland,-27.84492,153.35695,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2020,11,26,Australia,AU,Queensland,-27.94574,153.25008,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2023,11,4,Australia,AU,Queensland,-27.93343,153.36207,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Deceased - Hit by Vehicle ,2023,11,3,Australia,AU,Queensland,-28.03986,153.33943,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,,2021,4,26,Australia,AU,Queensland,-27.84379,153.2951,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,1,,Signs of disease ,2020,9,26,Australia,AU,Queensland,-28.14493,153.44503,EPSG:4326 +HUMAN_OBSERVATION,Stephanie Hernandez,1,,,2021,10,11,Australia,AU,New South Wales,-28.889062,153.29991,EPSG:4326 +HUMAN_OBSERVATION,Linda Sparrow,1,,,2021,11,6,Australia,AU,New South Wales,-29.0855,153.239589,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,"Not the best pics, but there's no mistaking the cute grey furred, big eared, eucalyptus eating lazy bones.",2020,2,25,Australia,AU,South Australia,-35.011088,138.61,EPSG:4326 +HUMAN_OBSERVATION, Rosalie Neve | questagame.com,1,,single individual just doing what they do. nice to see them still around.,2024,4,2,Australia,AU,Queensland,-27.4,152.6,EPSG:4326 +HUMAN_OBSERVATION, Lauren | questagame.com,1,,"This tree is regularly used by this species, they generally only stay for 24 hours then move on. they choose one of 2 trees only about 20 metres from the house, and don't seem bothered by the bustle. This one did a mating call regularly for the 24 hours it stayed here.",2023,2,14,Australia,AU,New South Wales,-33.5,150.7,EPSG:4326 +HUMAN_OBSERVATION, SuperSuperBunny | questagame.com,1,,,2024,8,25,Australia,AU,New South Wales,-33.8,151.2,EPSG:4326 +HUMAN_OBSERVATION, Beastquest | questagame.com,1,,gorgeous visitor to our camp-site. we think a female as the belly looked very heavy when it walked. ,2021,4,15,Australia,AU,Queensland,-27.4,153.5,EPSG:4326 +HUMAN_OBSERVATION, Chris Solum | questagame.com,1,,Heard calling up a eucalyptus tree.,2020,11,21,Australia,AU,Victoria,-38.771422,143.658813,EPSG:4326 +HUMAN_OBSERVATION, Bio Tracker | questagame.com,1,,"Appearance: Medium-sized marsupial, grayish-brown fur with lighter patches. Large, fluffy ears.Behavior: Solitary and arboreal; observed climbing and resting in eucalyptus trees.Feeding: Strictly herbivorous, specialising in eucalyptus leaves.Vocalizations: Occasional grunts and bellows during mating season; otherwise quiet.Habitat: Prefers mature eucalyptus forests from coast to mountains.Reproduction: Breeding season from August to February; females rear single young in pouch.Conservation: Faces threats from habitat loss, road accidents, and disease; crucial to local ecosystem health.Conclusion: The Queensland Koala adapts well to diverse habitats within Queensland, playing a vital ecological role despite conservation challenges.",2023,3,30,Australia,AU,Queensland,-27.4,153.1,EPSG:4326 +HUMAN_OBSERVATION, AJB | questagame.com,1,,,2022,3,31,Australia,AU,Queensland,-27.4,152.6,EPSG:4326 +HUMAN_OBSERVATION, Rosalie Neve | questagame.com,1,,thought I submitted this yesterday but could not find comms to say it went through,2022,2,3,Australia,AU,Queensland,-27.4,152.6,EPSG:4326 +HUMAN_OBSERVATION, Em Roberts | questagame.com,1,,,2020,3,29,Australia,AU,South Australia,-34.834544,138.845657,EPSG:4326 +HUMAN_OBSERVATION, Shrike | questagame.com,1,,,2020,6,27,Australia,AU,South Australia,-34.99907,138.651945,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,8,13,Australia,AU,South Australia,-35.010859,138.609939,EPSG:4326 +HUMAN_OBSERVATION, SophiePro | questagame.com,1,,,2021,1,5,Australia,AU,New South Wales,-34.8,146.6,EPSG:4326 +HUMAN_OBSERVATION, Magpieman101 | questagame.com,1,,,2020,4,18,Australia,AU,South Australia,-34.847359,138.995291,EPSG:4326 +HUMAN_OBSERVATION, broncoboy32 | questagame.com,1,,marsupial,2020,1,3,Australia,AU,South Australia,-34.8562,138.959324,EPSG:4326 +HUMAN_OBSERVATION, Jamman | questagame.com,1,,,2023,1,6,Australia,AU,South Australia,-34.9,135.7,EPSG:4326 +HUMAN_OBSERVATION, David | questagame.com,1,,,2023,1,7,Australia,AU,South Australia,-34.9,135.7,EPSG:4326 +HUMAN_OBSERVATION, Chaousis | questagame.com,1,,,2021,11,7,Australia,AU,South Australia,-35.1,138.6,EPSG:4326 +HUMAN_OBSERVATION, DaAvocado | questagame.com,1,,,2022,3,18,Australia,AU,New South Wales,-28.8,153.3,EPSG:4326 +HUMAN_OBSERVATION, Future Scientist | questagame.com,1,,,2020,5,12,Australia,AU,Queensland,-27.394295,152.924788,EPSG:4326 +HUMAN_OBSERVATION, David | questagame.com,1,,,2020,6,3,Australia,AU,South Australia,-35.094583,138.692118,EPSG:4326 +HUMAN_OBSERVATION, Lauren | questagame.com,1,,"We have several trees near this spot which these animals use, yet the most popular seems to be the one above the pool, and they don't seem to care at all about the splashing children. we do keep the noise and splashing down once we realise they're there, however!! This one only stayed here for 24 hours, which seems to be our experience every time we have one. ",2022,10,20,Australia,AU,New South Wales,-33.5,150.7,EPSG:4326 +HUMAN_OBSERVATION, ChelonaJ | questagame.com,1,,,2023,10,23,Australia,AU,Queensland,-22.3,149.1,EPSG:4326 +HUMAN_OBSERVATION, MaskedLapwing | questagame.com,1,,,2021,9,11,Australia,AU,New South Wales,-30.886764,153.074106,EPSG:4326 +HUMAN_OBSERVATION, Surfap | questagame.com,1,,,2020,8,22,Australia,AU,South Australia,-34.904723,138.706115,EPSG:4326 +HUMAN_OBSERVATION, The Martineers | questagame.com,1,,Found in a tree just above head height with a baby on its back. ,2021,10,17,Australia,AU,Queensland,-27.4,152.5,EPSG:4326 +HUMAN_OBSERVATION, The Pekin Bantams | questagame.com,1,,,2023,1,6,Australia,AU,South Australia,-34.9,135.7,EPSG:4326 +HUMAN_OBSERVATION, sparkymcspark | questagame.com,1,,"This furry, grey marsupial was fast asleep in the fork of a tree, approx 10m off the ground. It was a cold day and it didn't move, so the photos are somewhat limited. It looked very round, grey with some small patches of brown and white, and was very fluffy",2022,4,21,Australia,AU,Victoria,-37.6,144,EPSG:4326 +HUMAN_OBSERVATION, adammwm | questagame.com,1,,,2020,7,19,Australia,AU,Victoria,-38.346242,141.595923,EPSG:4326 +HUMAN_OBSERVATION, cwpaine | questagame.com,1,,mid morning crossing a small track in a popular bush walking area - next to a large dam. ,2022,2,13,Australia,AU,Queensland,-27.4,152.9,EPSG:4326 +HUMAN_OBSERVATION, cwpaine | questagame.com,1,,2 males in adjoining gums beside the ocean,2022,7,8,Australia,AU,Queensland,-27.4,153.4,EPSG:4326 +HUMAN_OBSERVATION, cwpaine | questagame.com,1,,,2021,1,6,Australia,AU,Queensland,-27.4,152.5,EPSG:4326 +HUMAN_OBSERVATION, David | questagame.com,1,,,2022,2,24,Australia,AU,South Australia,-34.9,139,EPSG:4326 +HUMAN_OBSERVATION, The Cathcarts | questagame.com,1,,Cuddly lump in tree,2022,1,19,Australia,AU,Queensland,-27.4,153.5,EPSG:4326 +HUMAN_OBSERVATION, NoelPreece | questagame.com,1,,"Rescued from Atherton, male",2022,1,21,Australia,AU,Queensland,-17.419219,145.60757,EPSG:4326 +HUMAN_OBSERVATION, DTMOLR | questagame.com,1,,,2020,1,18,Australia,AU,South Australia,-34.947763,138.656901,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,9,23,Australia,AU,South Australia,-35.010901,138.610168,EPSG:4326 +HUMAN_OBSERVATION, The Pekin Bantams | questagame.com,1,,,2023,1,7,Australia,AU,South Australia,-34.9,135.7,EPSG:4326 +HUMAN_OBSERVATION, Luca | questagame.com,1,,Spotted in a Eucalyptus tereticornis eating leaves in and proposed subdivision lot!,2020,10,16,Australia,AU,New South Wales,-33.5,150.7,EPSG:4326 +HUMAN_OBSERVATION, Otto | questagame.com,1,,Koala seen originally crossing a road. By the time I got out to photograph it it was climbing at a fast rate an eucalyptus tree ,2024,2,24,Australia,AU,Victoria,-38.6,145.9,EPSG:4326 +HUMAN_OBSERVATION, MaskedLapwing | questagame.com,1,,,2022,4,5,Australia,AU,Victoria,-38.034469,141.144964,EPSG:4326 +HUMAN_OBSERVATION, Kyal_Snell | questagame.com,1,,,2020,12,9,Australia,AU,Queensland,-21.3,149.1,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,"Grey, furry, cuddly marsupial. Forever sleeping in positions that appear quite uncomfortable. ",2020,4,1,Australia,AU,South Australia,-35.010886,138.610244,EPSG:4326 +HUMAN_OBSERVATION, Lauren | questagame.com,1,,"Heard for the last 2 nights growling. seen today, in the eucalyptus closest to the house (about 20m from house). not seen eating yet, just sleeping and changing positions every few hours. We believe there is a 2nd male on the opposite side of the house. not yet seen, but can be heard growling at night too. this is only the 3rd time we have had this animal in the yard since moving here 8 years ago, but never so close to the house. ",2021,10,24,Australia,AU,New South Wales,-33.5,150.7,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,4,16,Australia,AU,South Australia,-35.014107,138.602968,EPSG:4326 +HUMAN_OBSERVATION, David | questagame.com,1,,,2022,4,9,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,9,25,Australia,AU,South Australia,-35.010829,138.61026,EPSG:4326 +HUMAN_OBSERVATION, HappyChaos | questagame.com,1,,koala in gum tree,2020,3,23,Australia,AU,South Australia,-34.831787,138.740127,EPSG:4326 +HUMAN_OBSERVATION, cwpaine | questagame.com,1,,ITS a BOY!!!,2020,4,15,Australia,AU,Queensland,-27.35958,152.939397,EPSG:4326 +HUMAN_OBSERVATION, Chook | questagame.com,1,,sighted 9th May 2020 while walking on the Waite loop. It was happy for me to come up close and seemed as interested in me as I was in it. Was it showing me it's tummy? ,2020,5,9,Australia,AU,South Australia,-34.974407,138.642075,EPSG:4326 +HUMAN_OBSERVATION, Rosalie Neve | questagame.com,1,,,2024,4,7,Australia,AU,Queensland,-27.4,152.6,EPSG:4326 +HUMAN_OBSERVATION, supernova21 | questagame.com,1,,,2020,4,27,Australia,AU,South Australia,-34.956805,138.617278,EPSG:4326 +HUMAN_OBSERVATION, AngryBlob | questagame.com,1,,very exciting to see a wild one,2024,1,10,Australia,AU,Queensland,-27.507331,153.083154,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,A stocky grey furry marsupial seen high in a eucalyptus tree. Holding on with strong looking claws.,2020,1,24,Australia,AU,South Australia,-35.01081,138.610275,EPSG:4326 +HUMAN_OBSERVATION, palaeofry | questagame.com,1,,,2020,4,30,Australia,AU,South Australia,-34.907458,138.759798,EPSG:4326 +HUMAN_OBSERVATION, cwpaine | questagame.com,1,,this little female has Cystitis. Koala Care group assisted in capturing her and hopefully she'll be cared back to full health. Grunting 50 meters away was a large male who was probably disappointed she was taken. ,2020,8,13,Australia,AU,Queensland,-27.357586,152.940004,EPSG:4326 +HUMAN_OBSERVATION, Future Scientist | questagame.com,1,,,2023,7,7,Australia,AU,Queensland,-27.4,152.9,EPSG:4326 +HUMAN_OBSERVATION, Bayrad | questagame.com,1,,in eucalypt tree. slept allot,2021,9,25,Australia,AU,Queensland,-27.1,152.6,EPSG:4326 +HUMAN_OBSERVATION, Luan | questagame.com,1,,,2020,8,22,Australia,AU,Queensland,-27.348883,152.441471,EPSG:4326 +HUMAN_OBSERVATION, David | questagame.com,1,,,2023,3,15,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, NowUseeT | questagame.com,1,,We found this sleeping on a tree branch,2022,7,19,Australia,AU,New South Wales,-32.3,148.6,EPSG:4326 +HUMAN_OBSERVATION, CeruleanBreeze | questagame.com,1,,After-dinner visitor maintaining social distance. Have seen evidence of them being in the yard however this is the first sighting in the yard. ,2020,5,17,Australia,AU,Victoria,-38.253662,141.712022,EPSG:4326 +HUMAN_OBSERVATION, Phoenix | questagame.com,1,,,2020,4,23,Australia,AU,South Australia,-34.903081,138.703851,EPSG:4326 +HUMAN_OBSERVATION, Rosalie Neve | questagame.com,1,,birds alerted us to a koala crossing the open back yard and climbing up a mangrove tree by the water,2020,6,6,Australia,AU,Queensland,-27.26164,153.077557,EPSG:4326 +HUMAN_OBSERVATION, Bloodwood | questagame.com,1,,Captured on remote motion-activated infrared camera in an intact old growth bushland remnant. There has been an increasing amount of night time roaring as spring progresses.,2021,9,19,Australia,AU,Queensland,-28,151.5,EPSG:4326 +HUMAN_OBSERVATION, David | questagame.com,1,,,2021,2,21,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, alissa | questagame.com,1,,,2020,4,16,Australia,AU,South Australia,-34.183092,140.773564,EPSG:4326 +HUMAN_OBSERVATION, Lani | questagame.com,1,,,2022,1,13,Australia,AU,New South Wales,-30.3,153.1,EPSG:4326 +HUMAN_OBSERVATION, David | questagame.com,1,,Three in one tree,2022,1,16,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, Beetlejuice 2.0 | questagame.com,1,,,2020,1,6,Australia,AU,South Australia,-35.041517,138.759167,EPSG:4326 +HUMAN_OBSERVATION, Duells | questagame.com,1,,,2022,1,28,Australia,AU,Victoria,-38.1,141.2,EPSG:4326 +HUMAN_OBSERVATION, fatCrumpet | questagame.com,1,,,2021,5,30,Australia,AU,South Australia,-34.9,138.7,EPSG:4326 +HUMAN_OBSERVATION, giraffegirl101 | questagame.com,1,,,2020,4,12,Australia,AU,South Australia,-34.900775,138.718161,EPSG:4326 +HUMAN_OBSERVATION, Lauren | questagame.com,1,,"Photo quality is terrible on this one - tried not to get too close but the lighting was poor too. Hopefully you can make out what it is sitting the centre of the tree. it only sat there for 24 hours, then moved on. ",2022,9,21,Australia,AU,New South Wales,-33.5,150.7,EPSG:4326 +HUMAN_OBSERVATION, Mistralis | questagame.com,1,,"Observed sleeping, and then waking up to scratch itself, yawn, and start calling. Was not as large as others in the area, may just have been matured. ",2021,10,17,Australia,AU,Victoria,-38.3,142.4,EPSG:4326 +HUMAN_OBSERVATION, Surfap | questagame.com,1,,,2020,1,23,Australia,AU,Queensland,-28.182941,153.218783,EPSG:4326 +HUMAN_OBSERVATION, David | questagame.com,1,,"A mammal hanging from the underside of a freer branch, waiting for an unsuspecting tourist to drop on",2022,1,16,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, Surfap | questagame.com,1,,,2020,11,8,Australia,AU,South Australia,-34.9,138.7,EPSG:4326 +HUMAN_OBSERVATION, The Pekin Bantams | questagame.com,1,,,2021,2,20,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, Jamman | questagame.com,1,,,2022,8,8,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, CeruleanBreeze | questagame.com,1,,,2020,2,26,Australia,AU,Victoria,-38.276845,141.5934,EPSG:4326 +HUMAN_OBSERVATION, mrady | questagame.com,1,,seen on circuit track ,2021,3,20,Australia,AU,Queensland,-27.510265,153.082229,EPSG:4326 +HUMAN_OBSERVATION, Jamman | questagame.com,1,,,2022,11,26,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, David | questagame.com,1,,,2020,12,17,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, David | questagame.com,1,,A lot like a koala but hangs from the underside of the branch. Was too scared to walk underneath in case it dropped on me. Was making a horrible squeaking sound,2021,9,19,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, shadow18 | questagame.com,1,,,2020,4,26,Australia,AU,South Australia,-34.900517,138.60265,EPSG:4326 +HUMAN_OBSERVATION, Lukeenright123 | questagame.com,1,,"large mammal found in a tree at night. not sure what the red tag means, perhaps it was released after the bushfires ",2022,4,5,Australia,AU,South Australia,-35.7,137.6,EPSG:4326 +HUMAN_OBSERVATION, cwpaine | questagame.com,1,,lone tagged male with possible signs of cystitis,2022,1,25,Australia,AU,Queensland,-27.2,153.1,EPSG:4326 +HUMAN_OBSERVATION, PoppyScientist | questagame.com,1,,,2022,5,15,Australia,AU,Queensland,-27.5,153.1,EPSG:4326 +HUMAN_OBSERVATION, Johnny B. Goode | questagame.com,1,,,2020,3,29,Australia,AU,South Australia,-34.829846,138.737443,EPSG:4326 +HUMAN_OBSERVATION, Lukeenright123 | questagame.com,1,,found a couple of vicious drop bears. absolute threats to humanity ,2023,1,22,Australia,AU,Queensland,-27.9,153.4,EPSG:4326 +HUMAN_OBSERVATION, David | questagame.com,1,,Crossing the road at night,2022,4,14,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, David | questagame.com,1,,,2022,1,8,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, Helene | questagame.com,1,,,2020,3,14,Australia,AU,South Australia,-34.990659,138.635362,EPSG:4326 +HUMAN_OBSERVATION, wgore53 | questagame.com,1,,,2020,4,13,Australia,AU,South Australia,-34.969953,138.775833,EPSG:4326 +HUMAN_OBSERVATION, Eden | questagame.com,1,,,2021,7,16,Australia,AU,Queensland,-27.5,153.4,EPSG:4326 +HUMAN_OBSERVATION, Rosalie Neve | questagame.com,1,,,2021,3,14,Australia,AU,Queensland,-27.4,152.6,EPSG:4326 +HUMAN_OBSERVATION, bugs! | questagame.com,1,,,2020,8,28,Australia,AU,Victoria,-37.470778,145.264489,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,"It amazes me the contorted positions these animals will sleep in. They often look like they're dead.Grey fur all over, about 50-60cm long and sharp black claws for climbing trees.",2020,1,1,Australia,AU,South Australia,-35.011088,138.61,EPSG:4326 +HUMAN_OBSERVATION, Corymbia | questagame.com,1,,,2020,3,10,Australia,AU,Queensland,-27.565993,153.199617,EPSG:4326 +HUMAN_OBSERVATION, RuthA | questagame.com,1,,"This mammal was grey in colour with large, fluffy, rounded ears, a black nose and a white stripe of fur under its neck. It had large claws and two thumbs on it’s front paws so that it could grip the tree as it climbed.It was originally wandering next to the road when I first saw it, but as I approached, it ran on all fours to a eucalyptus tree and began to climb. It claimed a few metres at a time and took a few breaks as it went. Occasionally it looked down at me, possibly to make sure I wasn’t trying to follow it. Eventually it reached the canopy of the tree and it’s grey fur made it blend in with the leaves so I could barely see it.Once in the canopy it seemed to start eating some leaves, but it was hard to tell as it blended in a lot and was obscured from sight by the leaves.",2022,8,29,Australia,AU,New South Wales,-30.5,151.6,EPSG:4326 +HUMAN_OBSERVATION, Niin | questagame.com,1,,Not a Koala bear or a mammal. Its a marsupial. Observed chilling out on a bottle brush tree in our back yard and was not fussed of us.,2021,2,1,Australia,AU,Queensland,-27.5,153.3,EPSG:4326 +HUMAN_OBSERVATION, David | questagame.com,1,,,2021,9,19,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, David | questagame.com,1,,There are a lot of these around now that the bushfire has burnt the conservation park,2021,2,23,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, Lauren | questagame.com,1,,"Have heard this guy's mating call not far from the house for a couple of weeks now. tonight heard his call much closer, went and found him about 100 metres from the house. Intermittent mating calls, more often at night and very early am. Only one seen. presuming it's male due to the mating call..? ",2024,1,28,Australia,AU,New South Wales,-33.5,150.7,EPSG:4326 +HUMAN_OBSERVATION, jazwiz | questagame.com,1,,"Not a very great photo, as they were very high up in the tree on the bad side of the sun. In the trees along the path/road as you walk up to Morialta. There were several amongst the trees.",2020,4,25,Australia,AU,South Australia,-34.908561,138.711804,EPSG:4326 +HUMAN_OBSERVATION, Debellius | questagame.com,1,,Dark blue tag on ear. Resting then climbing tree. ,2022,1,30,Australia,AU,South Australia,-34.9,138.7,EPSG:4326 +HUMAN_OBSERVATION, HarzmeyerBoys | questagame.com,1,,,2023,1,25,Australia,AU,Victoria,-38.3,141.7,EPSG:4326 +HUMAN_OBSERVATION, Jamman | questagame.com,1,,Big grey mammal sleeping in the rain,2022,8,13,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, Yog | questagame.com,1,,,2022,1,6,Australia,AU,South Australia,-36,136.8,EPSG:4326 +HUMAN_OBSERVATION, Daddy | questagame.com,1,,"Down one tree, up another in Waite Abortoreum",2020,2,28,Australia,AU,South Australia,-34.970558,138.633347,EPSG:4326 +HUMAN_OBSERVATION, deleted account | questagame.com,1,,,2021,6,19,Australia,AU,Queensland,-27.6,153.2,EPSG:4326 +HUMAN_OBSERVATION, Amphibiaphiles | questagame.com,1,,"Two grey-furred individuals observed high in a gum tree on university campus section of Toohey forest. Very active over course of day, foraging and climbing.",2022,10,8,Australia,AU,Queensland,-27.550909,153.057535,EPSG:4326 +HUMAN_OBSERVATION, Tracy12 | questagame.com,1,,,2021,5,16,Australia,AU,Queensland,-27.9,153.4,EPSG:4326 +HUMAN_OBSERVATION, HappyChaos | questagame.com,1,,,2020,10,5,Australia,AU,South Australia,-34.9,138.6,EPSG:4326 +HUMAN_OBSERVATION, AleMardones | questagame.com,1,,,2022,7,20,Australia,AU,Victoria,-38.6,143.9,EPSG:4326 +HUMAN_OBSERVATION, MaskedLapwing | questagame.com,1,,,2022,4,3,Australia,AU,Victoria,-38.05377,141.274108,EPSG:4326 +HUMAN_OBSERVATION, RuStarSloth | questagame.com,1,,Found in a tree in the park,2023,1,28,Australia,AU,Queensland,-27.4,151.7,EPSG:4326 +HUMAN_OBSERVATION, Maz99 | questagame.com,1,,Noisily climbed a tree and then sat,2022,8,28,Australia,AU,Queensland,-28.7,151.9,EPSG:4326 +HUMAN_OBSERVATION, cwpaine | questagame.com,1,,screeching alerted us to its presence and eyes in the torchlight identified his location high up in one of next doors gum - pretty sure its a male,2020,4,9,Australia,AU,Queensland,-27.357953,152.9403,EPSG:4326 +HUMAN_OBSERVATION, FizzleFuzz | questagame.com,1,,"Very lazy koala, not very high up (approx. 3 metres from ground level). Didn’t seem bothered by our presence and began to scratch its butt lazily until we left. Captured: 15/04/2020 at Black Hill Conservation Park, South Australia ",2020,4,15,Australia,AU,South Australia,-34.87525,138.725069,EPSG:4326 +HUMAN_OBSERVATION, enthusiasticnature | questagame.com,1,,,2022,8,2,Australia,AU,New South Wales,-30.5,151.6,EPSG:4326 +HUMAN_OBSERVATION, HappyChaos | questagame.com,1,,,2020,2,2,Australia,AU,South Australia,-34.892223,138.718047,EPSG:4326 +HUMAN_OBSERVATION, David | questagame.com,1,,,2020,12,3,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, captainwhitebeardarrgghh | questagame.com,1,,,2022,6,28,Australia,AU,Victoria,-38.6,143.9,EPSG:4326 +HUMAN_OBSERVATION, BrettBoys | questagame.com,1,,,2020,9,5,Australia,AU,Queensland,-27.761052,153.004893,EPSG:4326 +HUMAN_OBSERVATION, HappyChaos | questagame.com,1,,,2020,4,3,Australia,AU,South Australia,-34.839073,138.741348,EPSG:4326 +HUMAN_OBSERVATION, Agent.C.Noodles | questagame.com,1,,,2022,2,25,Australia,AU,New South Wales,-30.3,152.8,EPSG:4326 +HUMAN_OBSERVATION, Bowie Elke | questagame.com,1,,Around puddles on road ,2021,3,25,Australia,AU,New South Wales,-28.9,153.3,EPSG:4326 +HUMAN_OBSERVATION, Chris Solum | questagame.com,1,,,2020,12,5,Australia,AU,Victoria,-37.718055,141.971192,EPSG:4326 +HUMAN_OBSERVATION, Wildlifepro | questagame.com,1,,,2020,5,30,Australia,AU,Queensland,-27.737,152.767473,EPSG:4326 +HUMAN_OBSERVATION, cwpaine | questagame.com,1,,I think was about to change trees before I disturbed it - so she (I think) headed back up,2020,7,26,Australia,AU,Queensland,-27.357711,152.94031,EPSG:4326 +HUMAN_OBSERVATION, Samson | questagame.com,1,,Far away having a sleep in a pine tree. Sorry for the blurred picture.,2020,1,5,Australia,AU,Queensland,-26.396647,153.086554,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,3,29,Australia,AU,South Australia,-35.007999,138.635189,EPSG:4326 +HUMAN_OBSERVATION, David | questagame.com,1,,Grey mammal walking down the road. Quickly climbed the tree when we went past. Typically spend most of the day in a tree eating gum leaves or sleeping ,2023,2,12,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,6,9,Australia,AU,South Australia,-35.010856,138.610229,EPSG:4326 +HUMAN_OBSERVATION, MaskedLapwing | questagame.com,1,,,2020,10,9,Australia,AU,New South Wales,-31.443707,152.90364,EPSG:4326 +HUMAN_OBSERVATION, Lauren.in.the.sky | questagame.com,1,,,2020,6,2,Australia,AU,Victoria,-38.638951,145.713924,EPSG:4326 +HUMAN_OBSERVATION, L.Barry1 | questagame.com,1,,,2022,5,20,Australia,AU,Queensland,-27.7,153.2,EPSG:4326 +HUMAN_OBSERVATION, The Pekin Bantams | questagame.com,1,,TREEEEEEEEEEE,2022,4,2,Australia,AU,South Australia,-35.1,138.7,EPSG:4326 +HUMAN_OBSERVATION, RachQUT | questagame.com,1,,Mother and baby in tree. Whites Hill,2023,7,30,Australia,AU,Queensland,-27.5,153.1,EPSG:4326 +HUMAN_OBSERVATION, Emeny's | questagame.com,1,,Sleepong in a redgum,2020,4,9,Australia,AU,Victoria,-38.324909,142.631702,EPSG:4326 +HUMAN_OBSERVATION, jeff wiggle | questagame.com,1,,Clinging to the branch in strong winds,2020,4,4,Australia,AU,South Australia,-35.023943,138.630908,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,4,19,Australia,AU,South Australia,-35.003144,138.646294,EPSG:4326 +HUMAN_OBSERVATION, Aimzrose | questagame.com,1,,,2022,3,15,Australia,AU,Queensland,-27.5,153.1,EPSG:4326 +HUMAN_OBSERVATION, Leah | questagame.com,1,,,2020,1,27,Australia,AU,South Australia,-35.112316,138.630166,EPSG:4326 +HUMAN_OBSERVATION, Em Roberts | questagame.com,1,,,2020,4,13,Australia,AU,South Australia,-34.932866,138.649715,EPSG:4326 +HUMAN_OBSERVATION, jank | questagame.com,1,,Grey furry iconic Australian animal,2022,10,18,Australia,AU,Queensland,-27.5,152.9,EPSG:4326 +HUMAN_OBSERVATION, yaxm | questagame.com,1,,,2020,2,29,Australia,AU,South Australia,-34.889277,138.632181,EPSG:4326 +HUMAN_OBSERVATION, Max | questagame.com,1,,,2020,4,18,Australia,AU,South Australia,-34.932007,138.614835,EPSG:4326 +HUMAN_OBSERVATION, lawrence98 | questagame.com,1,,,2020,4,10,Australia,AU,South Australia,-34.826976,138.735312,EPSG:4326 +HUMAN_OBSERVATION, Em Roberts | questagame.com,1,,,2020,2,4,Australia,AU,South Australia,-34.948988,138.650453,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,Our resident backyard koala.,2020,5,18,Australia,AU,South Australia,-35.010966,138.610092,EPSG:4326 +HUMAN_OBSERVATION, The Pekin Bantams | questagame.com,1,,,2020,6,3,Australia,AU,South Australia,-35.102867,138.67698,EPSG:4326 +HUMAN_OBSERVATION, Raz | questagame.com,1,,,2021,7,13,Australia,AU,Victoria,-38.3,141.6,EPSG:4326 +HUMAN_OBSERVATION, Lily O | questagame.com,1,,In suburban backyard. Across from parkland. Regularly seen in warmer months looking for food and water ,2021,10,7,Australia,AU,South Australia,-34.9,138.6,EPSG:4326 +HUMAN_OBSERVATION, Firefly | questagame.com,1,,,2021,2,28,Australia,AU,Queensland,-27.5,153.1,EPSG:4326 +HUMAN_OBSERVATION, jank | questagame.com,1,,Furry iconic grey sleeping mammal up a tree,2022,12,30,Australia,AU,Queensland,-27.5,152.9,EPSG:4326 +HUMAN_OBSERVATION, KRay1997 | questagame.com,1,,"a young doe, photo taken when she left one tree to go to another. ",2020,3,26,Australia,AU,South Australia,-34.772599,138.740448,EPSG:4326 +HUMAN_OBSERVATION, Rogerdooper | questagame.com,1,,,2023,12,27,Australia,AU,New South Wales,-32.8,152.1,EPSG:4326 +HUMAN_OBSERVATION, Tommo | questagame.com,1,,"A grey furry ball, which slowly woke up and uncurled into a much more familiar shape. This was quite a large individual. There was another one, about 2/3 to 3/4 the size of this one in a tree about 100m away.",2023,4,8,Australia,AU,South Australia,-34.8,138.7,EPSG:4326 +HUMAN_OBSERVATION, jank | questagame.com,1,,Grey iconic furry teddy bear like mammal up a gum tree. Neighbours said this is the third year in a row this lovely creature has revisited this spot,2022,6,28,Australia,AU,Queensland,-27.5,153,EPSG:4326 +HUMAN_OBSERVATION, Bazman2011 | questagame.com,1,,,2022,5,1,Australia,AU,Queensland,-27.5,153.1,EPSG:4326 +HUMAN_OBSERVATION, Daddy | questagame.com,1,,On manna gum inside Michael Perry Reserve,2020,3,12,Australia,AU,South Australia,-34.939206,138.673919,EPSG:4326 +HUMAN_OBSERVATION, jank | questagame.com,1,,Grey furry mammal iconic for Australia spotted snoozing up a tree. Likes eating gum leaves,2021,12,28,Australia,AU,Queensland,-27.5,152.9,EPSG:4326 +HUMAN_OBSERVATION, Whipbird50 | questagame.com,1,,,2023,5,27,Australia,AU,Queensland,-27.5,153.1,EPSG:4326 +HUMAN_OBSERVATION, Humbug | questagame.com,1,,,2021,3,5,Australia,AU,New South Wales,-28.5,153.2,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,8,12,Australia,AU,South Australia,-35.011072,138.61006,EPSG:4326 +HUMAN_OBSERVATION, Bloodwood | questagame.com,1,,"Located in bush regeneration area, cleared in 1995 with only isolated mature trees left. Thick scrub has regenerated, however there is still quite a walk between large trees in some areas.",2021,10,2,Australia,AU,Queensland,-28,151.5,EPSG:4326 +HUMAN_OBSERVATION, Hefree | questagame.com,1,,In a conservation park in the Adelaide Hills. I never get tired of seeing them.,2020,8,23,Australia,AU,South Australia,-34.930467,138.703755,EPSG:4326 +HUMAN_OBSERVATION, ChloeChristian | questagame.com,1,,"lucky enough to spot another Koala! This one was smaller than the last one I spotted and I happened to see it when it was a bit active, moving its head around at least. really high up in a tree though so hard to get a good photo. ",2020,4,18,Australia,AU,South Australia,-34.177302,140.755474,EPSG:4326 +HUMAN_OBSERVATION, TrojanMonkey | questagame.com,1,,"Walk last Sunday and only sw one koala, but this one was in a very small tree, strangely it was an Acacia I reckon, but made for an easy capture. Saw two more today, put them in later.",2020,4,12,Australia,AU,South Australia,-34.953501,138.688862,EPSG:4326 +HUMAN_OBSERVATION, cwpaine | questagame.com,1,,,2020,6,18,Australia,AU,Queensland,-27.358177,152.939871,EPSG:4326 +HUMAN_OBSERVATION, jank | questagame.com,1,,Grey furry gum leaf eating iconic Australian animal that is seen up tall trees. This specimen had its face hidden in the trunk while it was napping,2023,4,26,Australia,AU,Queensland,-27.5,152.9,EPSG:4326 +HUMAN_OBSERVATION, Aimzrose | questagame.com,1,,,2022,3,15,Australia,AU,Queensland,-27.5,153.1,EPSG:4326 +HUMAN_OBSERVATION, Dirtgirl | questagame.com,1,,Spotted this cool guy walking on the road after dropping off my kids to school. Parked my car on the kerbside to watch it climb onto a tree. ,2020,10,15,Australia,AU,South Australia,-34.8,138.7,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,A pair of koalas looking to mate. The male climbed the wrong tree and was quite confused/frustrated. Then they paused for something to eat and a nap.,2020,1,24,Australia,AU,South Australia,-35.01081,138.610275,EPSG:4326 +HUMAN_OBSERVATION, Owldelyn | questagame.com,1,,"Fat and healthy looking specimen. Living in a small bushland reserve (dry eucalypt forest) next to a power station, close to a busy road. Alert and interactive in the daytime. No evidence of babies or other relatives in the reserve (quite rare to spot this animal so close to town).",2021,3,29,Australia,AU,Queensland,-27.6,151.9,EPSG:4326 +HUMAN_OBSERVATION, PKspider | questagame.com,1,,Found resting on a tall tree at the edge of a forest near a high hill. Location rained heavily just before the photo was taken. Time was afternoon. ,2022,12,28,Australia,AU,Queensland,-27.510229,153.085282,EPSG:4326 +HUMAN_OBSERVATION, HappyChaos | questagame.com,1,,came down the tree and toddled off looking for another one,2020,4,19,Australia,AU,South Australia,-34.838462,138.745041,EPSG:4326 +HUMAN_OBSERVATION, NigelThornberry | questagame.com,1,,saw this one on our morning walk along the creek1st i have seen in about 15 years,2022,1,6,Australia,AU,Queensland,-27.2,151.3,EPSG:4326 +HUMAN_OBSERVATION, Bloodwood | questagame.com,1,,Captured on motion-activated infra-red trail camera at night in a large old growth bush remnant in dry sand country. Individual was walking between trees,2021,12,30,Australia,AU,Queensland,-28,151.5,EPSG:4326 +HUMAN_OBSERVATION, jank | questagame.com,1,,Furry grey arboreal gum leaf eating mammal ,2022,10,26,Australia,AU,Queensland,-27.5,152.9,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,Cute and cuddly. Grey fur all over. Consumes eucalyptus leaves and sleeps most of the time.,2020,1,17,Australia,AU,South Australia,-35.01081,138.610275,EPSG:4326 +HUMAN_OBSERVATION, MaskedLapwing | questagame.com,1,,,2021,10,1,Australia,AU,New South Wales,-31.443979,152.898293,EPSG:4326 +HUMAN_OBSERVATION, jank | questagame.com,1,,Iconic grey Australian mammal halfway up a gum tree. ,2021,9,25,Australia,AU,Queensland,-27.5,152.9,EPSG:4326 +HUMAN_OBSERVATION, HeyQueenGurlYouveDoneItAgain | questagame.com,1,,,2020,4,27,Australia,AU,South Australia,-35.072804,138.607759,EPSG:4326 +HUMAN_OBSERVATION, CharlotteKH | questagame.com,1,,,2021,7,9,Australia,AU,New South Wales,-34,151.1,EPSG:4326 +HUMAN_OBSERVATION, Kalidjan | questagame.com,1,,,2020,9,2,Australia,AU,South Australia,-35.059488,138.59801,EPSG:4326 +HUMAN_OBSERVATION, jank | questagame.com,1,,Large male grey furry mammal asleep in the fork of a gum tree,2023,9,2,Australia,AU,Queensland,-27.5,152.9,EPSG:4326 +HUMAN_OBSERVATION, Willswildlife | questagame.com,1,,"koala at banks street reserve, got some better footage of it but I can only upload photos here ",2020,5,30,Australia,AU,Queensland,-27.434648,152.997753,EPSG:4326 +HUMAN_OBSERVATION, Garlone Moulin | questagame.com,1,,large tree dwelling mammal,2021,5,24,Australia,AU,Queensland,-20.3,147.9,EPSG:4326 +HUMAN_OBSERVATION, jank | questagame.com,1,,Female iconic grey furry mammal,2023,9,2,Australia,AU,Queensland,-27.5,152.9,EPSG:4326 +HUMAN_OBSERVATION, jjswagger | questagame.com,1,,,2020,4,9,Australia,AU,South Australia,-35.046794,138.76158,EPSG:4326 +HUMAN_OBSERVATION, Helenium | questagame.com,1,,,2021,10,8,Australia,AU,Queensland,-27.5,153.4,EPSG:4326 +HUMAN_OBSERVATION, Helene | questagame.com,1,,,2020,4,5,Australia,AU,South Australia,-34.989087,138.637909,EPSG:4326 +HUMAN_OBSERVATION, shinybright | questagame.com,1,,,2020,4,6,Australia,AU,South Australia,-34.99288,138.744713,EPSG:4326 +HUMAN_OBSERVATION, jank | questagame.com,1,,Grey iconic Australian marsupial spotted up a gum tree,2021,8,29,Australia,AU,Queensland,-27.5,152.9,EPSG:4326 +HUMAN_OBSERVATION, jank | questagame.com,1,,Arboreal female grey furry mammal which is the Queensland fauna emblem ,2022,12,30,Australia,AU,Queensland,-27.5,152.9,EPSG:4326 +HUMAN_OBSERVATION, North-Stone | questagame.com,1,,,2020,10,14,Australia,AU,Queensland,-27.5,152.5,EPSG:4326 +HUMAN_OBSERVATION, jank | questagame.com,1,,Iconic Australian mammal up gum tree,2021,11,28,Australia,AU,Queensland,-27.5,152.9,EPSG:4326 +HUMAN_OBSERVATION, The Martineers | questagame.com,1,,The female chased the male across the road and and up the tree and then mated. ,2020,4,21,Australia,AU,Queensland,-27.394215,152.493439,EPSG:4326 +HUMAN_OBSERVATION, TimothyLim | questagame.com,1,,,2020,4,27,Australia,AU,South Australia,-34.902815,138.701713,EPSG:4326 +HUMAN_OBSERVATION, Aimzrose | questagame.com,1,,,2022,1,26,Australia,AU,Queensland,-27.3,153,EPSG:4326 +HUMAN_OBSERVATION, KatieS | questagame.com,1,,,2023,3,13,Australia,AU,Victoria,-38.7,143.9,EPSG:4326 +HUMAN_OBSERVATION, Grubby | questagame.com,1,,,2020,5,2,Australia,AU,Queensland,-26.67271,152.865782,EPSG:4326 +HUMAN_OBSERVATION, SootyRulz | questagame.com,1,,Found this mammal awake in a tree moving. It looked straight at me.,2022,7,2,Australia,AU,Queensland,-27.5,152,EPSG:4326 +HUMAN_OBSERVATION, PipH | questagame.com,1,,,2020,4,2,Australia,AU,South Australia,-34.899689,138.696547,EPSG:4326 +HUMAN_OBSERVATION, adl_alex | questagame.com,1,,,2020,4,4,Australia,AU,South Australia,-34.896628,138.718336,EPSG:4326 +HUMAN_OBSERVATION, Rowan | questagame.com,1,,Two adults in a gum. One with a baby on its back! ,2021,10,10,Australia,AU,Victoria,-38.4,141.5,EPSG:4326 +HUMAN_OBSERVATION, PeppermintTree | questagame.com,1,,In a eucalyptus tree ,2020,5,4,Australia,AU,Queensland,-28.1,153.4,EPSG:4326 +HUMAN_OBSERVATION, vitalitd | questagame.com,1,,17ish meters high in the Euc tree. Quiet and not moving. Red tinged fur. We might have woken him/her when we stopped tge car to show the family.,2021,1,2,Australia,AU,New South Wales,-34.769573,146.588083,EPSG:4326 +HUMAN_OBSERVATION, The Owl Whisperer | questagame.com,1,,Belair national park South Australia,2022,12,18,Australia,AU,South Australia,-35.005683,138.641237,EPSG:4326 +HUMAN_OBSERVATION, Pen | questagame.com,1,,,2021,11,7,Australia,AU,Queensland,-27.1,152.9,EPSG:4326 +HUMAN_OBSERVATION, Dirtgirl | questagame.com,1,,"Spotted at Anstey Hill, during my morning walk ",2021,3,22,Australia,AU,South Australia,-34.8,138.7,EPSG:4326 +HUMAN_OBSERVATION, ChloeChristian | questagame.com,1,,,2020,4,2,Australia,AU,South Australia,-34.178945,140.756505,EPSG:4326 +HUMAN_OBSERVATION, cwpaine | questagame.com,1,,Male koala,2020,4,10,Australia,AU,Queensland,-27.357505,152.940498,EPSG:4326 +HUMAN_OBSERVATION, Questagamekid | questagame.com,1,,The Koala was awake in the morning. He was moving trees because the sun was getting hot. He moved trees and began eating.,2022,1,29,Australia,AU,New South Wales,-30.2,153.1,EPSG:4326 +HUMAN_OBSERVATION, isaodrio | questagame.com,1,,,2023,1,11,Australia,AU,South Australia,-35.154061,138.564553,EPSG:4326 +HUMAN_OBSERVATION, Harley1231 | questagame.com,1,,In small sapling gum tree,2021,5,16,Australia,AU,Victoria,-38.4,143.3,EPSG:4326 +HUMAN_OBSERVATION, Python_Girl | questagame.com,1,,"Poop on ground in large and small size, suggesting female and Joey. Eating leaves in the crown of the tree. Active while weather overcast. ",2020,8,30,Australia,AU,Queensland,-27.664422,153.072176,EPSG:4326 +HUMAN_OBSERVATION, Buzzbees | questagame.com,1,,Observed climbing Eucalyptus tree and eating leaves.,2023,3,23,Australia,AU,Queensland,-26.9,152.9,EPSG:4326 +HUMAN_OBSERVATION, CtM | questagame.com,1,,"Absolutely devastated to find this wonderful creature by the wayside. Stopped to check that it was dead and not just injured but, unfortunately, it was cold and rigamortis had well and truly set in.Even more concerning was that it wasn’t the only tragedy on the road just outside Portland Victoria.Checked for pouch & possible youngster?negative ",2023,7,27,Australia,AU,Victoria,-38.2,141.7,EPSG:4326 +HUMAN_OBSERVATION, ltide13 | questagame.com,1,,,2020,4,15,Australia,AU,South Australia,-34.90336,138.698121,EPSG:4326 +HUMAN_OBSERVATION, LadyDuff | questagame.com,1,,"While we watched it slept for a few minutes before waking and started making a grumpy throaty loud noise, then it fell back asleep. It was only a metre and a half above the ground and right next to the track. It didn't seem to care much about us at all. There was another one a little further down the hill.",2020,8,29,Australia,AU,South Australia,-34.903662,138.704971,EPSG:4326 +HUMAN_OBSERVATION, Aimzrose | questagame.com,1,,Red tag in ear. In a very thin tree,2022,1,26,Australia,AU,Queensland,-27.3,153,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,Grey fur all over except chest area where it is white. About 60-70cm sitting height. Large fluffy ears but small beady eyes. Large claws for climbing and gripping. This specimen was so close I didn't crop the images.,2020,2,23,Australia,AU,South Australia,-35.01081,138.610275,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,7,13,Australia,AU,South Australia,-35.011199,138.609451,EPSG:4326 +HUMAN_OBSERVATION, jank | questagame.com,1,,Furry grey iconic Australian mammal which eats Eucalyptus leaves,2023,11,13,Australia,AU,Queensland,-27.5,152.9,EPSG:4326 +HUMAN_OBSERVATION, TrojanMonkey | questagame.com,1,,"Raining, every time I got out the car, and the koalas were very high but this one was at least recognisable.",2020,4,30,Australia,AU,South Australia,-34.901524,138.700915,EPSG:4326 +HUMAN_OBSERVATION, HappyChaos | questagame.com,1,,,2021,2,7,Australia,AU,South Australia,-34.8,138.7,EPSG:4326 +HUMAN_OBSERVATION, HappyChaos | questagame.com,1,,,2020,3,27,Australia,AU,South Australia,-34.827743,138.744995,EPSG:4326 +HUMAN_OBSERVATION, cwpaine | questagame.com,1,,have heard and seen a few in recent weeks. ,2020,7,25,Australia,AU,Queensland,-27.357769,152.940223,EPSG:4326 +HUMAN_OBSERVATION, Caveman | questagame.com,1,,Trying it's best to sleep through the noisy people below,2020,1,7,Australia,AU,Queensland,-27.072515,152.614593,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,A koala!,2020,4,2,Australia,AU,South Australia,-34.902796,138.702919,EPSG:4326 +HUMAN_OBSERVATION, Kieranimolicious | questagame.com,1,,,2020,7,9,Australia,AU,Victoria,-38.729557,145.939831,EPSG:4326 +HUMAN_OBSERVATION, Bloodwood | questagame.com,1,,"Relaxing approximately 15m from the ground in an Angophora costata tree. We see them here from time to time, but never when we look for them. ",2021,8,25,Australia,AU,Queensland,-28.1,151.5,EPSG:4326 +HUMAN_OBSERVATION, Zanzoo | questagame.com,1,,,2022,8,3,Australia,AU,Queensland,-15.4,145.2,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,5,19,Australia,AU,South Australia,-35.011004,138.610092,EPSG:4326 +HUMAN_OBSERVATION, Surfap | questagame.com,1,,,2020,3,8,Australia,AU,South Australia,-34.903707,138.710647,EPSG:4326 +HUMAN_OBSERVATION, saskiaaa | questagame.com,1,,,2021,5,3,Australia,AU,Queensland,-27.6,152,EPSG:4326 +HUMAN_OBSERVATION, TrojanMonkey | questagame.com,1,,Always in the valley at Morialta. ,2021,4,6,Australia,AU,South Australia,-34.9,138.7,EPSG:4326 +HUMAN_OBSERVATION, olydoc | questagame.com,1,,Spotted in the wild near Grey River ,2020,11,21,Australia,AU,Victoria,-37.9,144.6,EPSG:4326 +HUMAN_OBSERVATION, DanBenji | questagame.com,1,,two koala sightings on one walk! i think they've come out to see why all the humans are in the forest all of a sudden,2020,4,5,Australia,AU,Queensland,-27.513863,153.080001,EPSG:4326 +HUMAN_OBSERVATION, Aimzrose | questagame.com,1,,1 of 3 I saw on today’s walk. Sleepy,2022,1,31,Australia,AU,Queensland,-27.3,152.9,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,"A furry, eucalyptus eating mammal in a tree.",2024,3,19,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, Zanzoo | questagame.com,1,,,2024,6,28,Australia,AU,Queensland,-19.1,146.8,EPSG:4326 +HUMAN_OBSERVATION, cwpaine | questagame.com,1,,,2022,4,4,Australia,AU,Queensland,-27.3,152.6,EPSG:4326 +HUMAN_OBSERVATION, Emeny's | questagame.com,1,,Medium sized individual in a manna gum in a plantation.,2020,9,13,Australia,AU,Victoria,-38.32478,142.632572,EPSG:4326 +HUMAN_OBSERVATION, Fossy | questagame.com,1,,,2020,4,14,Australia,AU,South Australia,-34.904502,138.616976,EPSG:4326 +HUMAN_OBSERVATION, AleMardones | questagame.com,1,,,2022,4,12,Australia,AU,Victoria,-38.5,145.2,EPSG:4326 +HUMAN_OBSERVATION, Aimzrose | questagame.com,1,,Looking a bit uncomfy in the middle of a branch with no back support haha,2022,2,19,Australia,AU,Queensland,-27.3,152.9,EPSG:4326 +HUMAN_OBSERVATION, Jimmy | questagame.com,1,,,2020,4,6,Australia,AU,South Australia,-34.976249,138.703846,EPSG:4326 +HUMAN_OBSERVATION, Aimzrose | questagame.com,1,,At the start of the trail. Stretching,2022,2,19,Australia,AU,Queensland,-27.3,152.9,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,A cute grey mammal up a gum tree.,2021,5,29,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, Em Roberts | questagame.com,1,,,2020,3,29,Australia,AU,South Australia,-34.955533,138.743848,EPSG:4326 +HUMAN_OBSERVATION, cptnRedbeard | questagame.com,1,,,2022,12,28,Australia,AU,Queensland,-27.3,152.1,EPSG:4326 +HUMAN_OBSERVATION, yaxm | questagame.com,1,,old mate Bazza seemed non-perplexed by our presence. Look how close he let me get to him!! I think he's even smiling in one pic,2020,2,29,Australia,AU,South Australia,-34.885628,138.648636,EPSG:4326 +HUMAN_OBSERVATION, olydoc | questagame.com,1,,Spotted in wild habitat in the Tower Hill reserve. A baby can be seen clinging to its mum clearly in one picture. ,2020,12,18,Australia,AU,Victoria,-38.3,142.5,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,A solid marsupial sleeping in a gum tree.,2020,10,30,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, earthnurse | questagame.com,1,,Taken on lode creek Rd sugarloaf ,2022,11,11,Australia,AU,Queensland,-28.7,152,EPSG:4326 +HUMAN_OBSERVATION, EndryaTheLynx | questagame.com,1,,,2021,5,1,Australia,AU,New South Wales,-30.4,153.1,EPSG:4326 +HUMAN_OBSERVATION, ChloeChristian | questagame.com,1,,Found in eucalyptus trees near the river. ,2020,8,2,Australia,AU,South Australia,-34.178946,140.761644,EPSG:4326 +HUMAN_OBSERVATION, Mitch | questagame.com,1,,,2020,10,31,Australia,AU,Victoria,-38.3,142.5,EPSG:4326 +HUMAN_OBSERVATION, MaskedLapwing | questagame.com,1,,,2020,2,28,Australia,AU,New South Wales,-31.459586,152.929004,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2021,10,11,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, cactus | questagame.com,1,,"Slept all day, very weary of noise.Must have been moving during the night to a more suitable home and food source. ",2020,4,23,Australia,AU,South Australia,-34.947713,138.660079,EPSG:4326 +HUMAN_OBSERVATION, cwpaine | questagame.com,1,,,2020,8,8,Australia,AU,Queensland,-27.357859,152.940038,EPSG:4326 +HUMAN_OBSERVATION, Raz | questagame.com,1,,He claimed on to the second story of our house and sat on this pole all day he is safely back home in a gum tree now though ,2021,6,1,Australia,AU,Victoria,-38.3,141.6,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,12,26,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, Aussie_Panda18 | questagame.com,1,,This koala nearly climbed up my dad! Walked right in front of him! Sighted at First Trail at Morialta Conservation Park.,2020,6,14,Australia,AU,South Australia,-34.854081,138.635445,EPSG:4326 +HUMAN_OBSERVATION, sir-duck | questagame.com,1,,,2022,3,30,Australia,AU,Queensland,-19.1,146.9,EPSG:4326 +HUMAN_OBSERVATION, fluke | questagame.com,1,,,2020,3,31,Australia,AU,Queensland,-27.471577,152.930789,EPSG:4326 +HUMAN_OBSERVATION, CeruleanBreeze | questagame.com,1,,My 6yo daughter shouted for me like she was being murdered when she spotted this from her bedroom window. ,2022,12,21,Australia,AU,Victoria,-38.3,141.6,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,10,29,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, ChoicestMorsel | questagame.com,1,,"Snoozing in a eucalypt tree. Large claws, grey coloured body with white on rump. White tufted ears. Large black nose. ",2022,12,28,Australia,AU,Queensland,-27.3,152.1,EPSG:4326 +HUMAN_OBSERVATION, FlyingBlue | questagame.com,1,,A lone koala besides a walking trail.,2020,4,17,Australia,AU,South Australia,-34.775417,138.684016,EPSG:4326 +HUMAN_OBSERVATION, Caique | questagame.com,1,,,2020,1,14,Australia,AU,Victoria,-38.771366,143.545837,EPSG:4326 +HUMAN_OBSERVATION, msvleitch | questagame.com,1,,,2022,7,3,Australia,AU,Victoria,-38.684348,143.709941,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,4,19,Australia,AU,South Australia,-35.003732,138.643385,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,Solid tree-dwelling marsupial. Fluffy and grey. Sleeps a lot.,2021,11,12,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2023,2,4,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, Chivoo | questagame.com,1,,,2020,4,26,Australia,AU,South Australia,-34.815709,138.50568,EPSG:4326 +HUMAN_OBSERVATION, beelady | questagame.com,1,,,2024,1,14,Australia,AU,New South Wales,-34,151,EPSG:4326 +HUMAN_OBSERVATION, Libby Lou | questagame.com,1,,,2020,1,11,Australia,AU,Victoria,-38.722057,143.654008,EPSG:4326 +HUMAN_OBSERVATION, TrojanMonkey | questagame.com,1,,"Not the best image but unmistakable what it is. Sitting high in an unknown species of Eucalyptus, not surprisingly given it spends much of the day eating the leaves of these trees.",2021,3,29,Australia,AU,South Australia,-34.9,138.7,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,A sleepy looking arboreal mammal. Grey-Brown fur with white around the ears and forearms. Spends a lot of time sleeping in eucalyptus trees.,2024,7,30,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, linx | questagame.com,1,,,2022,5,28,Australia,AU,Queensland,-27.486428,153.232728,EPSG:4326 +HUMAN_OBSERVATION, LadyDuff | questagame.com,1,,"Funny story, we were at Belair National Park for a wedding and as we were leaving I was commenting to my family that it would have been nice if I could have seen a koala in the park. Just as I finish saying that, my sister looks up into the trees as we are driving along and sees one!!! We stop and turn around and are all able to see him. He looked quite happy, scratched himself a few times and watched us. ??",2020,3,7,Australia,AU,South Australia,-35.017779,138.655731,EPSG:4326 +HUMAN_OBSERVATION, Tmac | questagame.com,1,,Sleepy boy. Grey. about the size of a dog.,2022,1,10,Australia,AU,South Australia,-34.9,138.7,EPSG:4326 +HUMAN_OBSERVATION, MaskedLapwing | questagame.com,1,,,2022,3,26,Australia,AU,Victoria,-38.314737,142.364392,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,11,8,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, Charles Darwin | questagame.com,1,,,2022,11,2,Australia,AU,Queensland,-28.2,153.2,EPSG:4326 +HUMAN_OBSERVATION, Rosalie Neve | questagame.com,1,,,2022,7,28,Australia,AU,Queensland,-27.3,152.5,EPSG:4326 +HUMAN_OBSERVATION, Owldelyn | questagame.com,1,,"Sighted in mountainous bushland reserve on the edge of town. Despite it being mid-morning, this smallish cuddly bear was not only awake but very active. In the five minutes we observed her she munched some tasty gum leaves, craned around to look for better pickings then jumped (yes! I couldn’t believe it!) three times to make her way towards a slender upper branch where she showed no concern whatsoever at being swayed to dubious angles by the the gusting autumn wind. You may gather by my description that I was completely pumped by the experience (my previous sightings of these animals in the wild have been so still you’d swear they were stuffed!)",2021,5,15,Australia,AU,Queensland,-27.6,151.9,EPSG:4326 +HUMAN_OBSERVATION, CeruleanBreeze | questagame.com,1,,Sitting in a tree by the road. Quite large in size. ,2020,10,31,Australia,AU,Victoria,-38.2,141.7,EPSG:4326 +HUMAN_OBSERVATION, spaghettitoes | questagame.com,1,,,2020,4,29,Australia,AU,South Australia,-34.97068,138.706423,EPSG:4326 +HUMAN_OBSERVATION, Belladene | questagame.com,1,,A gorgeous Koala just hanging out in a Eucalyptus!,2020,1,27,Australia,AU,South Australia,-35.019929,138.642048,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,Our backyard cuddly koala.,2020,2,28,Australia,AU,South Australia,-35.01081,138.610275,EPSG:4326 +HUMAN_OBSERVATION, msjenno | questagame.com,1,,walking to another tree,2020,6,12,Australia,AU,Victoria,-38.014023,141.660912,EPSG:4326 +HUMAN_OBSERVATION, Weir Keepers | questagame.com,1,,"In a Redgum tree in the bush, awake but kept moving head the other way ",2021,1,10,Australia,AU,Victoria,-36,145.8,EPSG:4326 +HUMAN_OBSERVATION, SeanA4 | questagame.com,1,,,2021,5,30,Australia,AU,South Australia,-35,138.7,EPSG:4326 +HUMAN_OBSERVATION, CeruleanBreeze | questagame.com,1,,,2020,1,8,Australia,AU,Victoria,-38.121864,141.634505,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,"Chubby, furry grey marsupial with a habit of sleeping in eucalyptus trees.",2020,11,22,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, CeruleanBreeze | questagame.com,1,,looks like an adult and juvenile. ,2022,12,22,Australia,AU,Victoria,-38.4,141.6,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,Furry grey marsupial with large ears seen in a eucalyptus tree. ,2022,1,3,Australia,AU,South Australia,-34.9,138.7,EPSG:4326 +HUMAN_OBSERVATION, cwpaine | questagame.com,1,,A female with significant cystitis - sad face,2020,4,18,Australia,AU,Queensland,-27.358759,152.939892,EPSG:4326 +HUMAN_OBSERVATION, The Martineers | questagame.com,1,,Found sitting on a fence right next to a main road. Adult with lots of light patches. Black nose. Large ears. Claws for climbing trees Looked very healthy,2020,4,14,Australia,AU,Queensland,-27.394195,152.496445,EPSG:4326 +HUMAN_OBSERVATION, Chloeclojo | questagame.com,1,,"small, probably a female. In a recreation park in the Adelaide Hills.",2020,8,23,Australia,AU,South Australia,-34.827199,138.733899,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,"Iconic Australian mammal. Hefty grey furry critter, in a eucalyptus tree.",2022,11,17,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, Otto | questagame.com,1,,Koala seen in a area where there had been fire,2021,10,29,Australia,AU,Queensland,-28.1,152.2,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,10,21,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, Hefree | questagame.com,1,,Adelaide Hills. The second photo was taken about 30 minutes after the first photo (on the walk back).,2020,10,31,Australia,AU,South Australia,-34.932596,138.708068,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,A fluffy grey arboreal mammal.Loves sleeping and eating gum leaves.,2021,1,3,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,10,22,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,Hairy eucalyptus mammal lolling around in the trees during the heat of the day.,2023,1,12,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2021,5,8,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, SeanA4 | questagame.com,1,,,2021,8,29,Australia,AU,South Australia,-34.8,135.7,EPSG:4326 +HUMAN_OBSERVATION, seqwater | questagame.com,1,,,2021,9,1,Australia,AU,Queensland,-27.3,152.9,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,"Furry grey marsupial. Loves gum trees. Often seen sleeping in eucalyptus branches in positions more like they're dead, like this case.",2020,2,10,Australia,AU,South Australia,-35.006336,138.636803,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,"A sleepy, solid looking grey and white mammal. Observed in a eucalyptus tree.",2022,6,11,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, GibberGavin | questagame.com,1,,,2020,7,16,Australia,AU,Queensland,-19.1,146.9,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,4,4,Australia,AU,South Australia,-35.011167,138.610202,EPSG:4326 +HUMAN_OBSERVATION, Niin | questagame.com,1,,a young koala taking his/her morning stroll at the Qld/NSW border,2021,8,15,Australia,AU,Queensland,-28.3,152.7,EPSG:4326 +HUMAN_OBSERVATION, KatieS | questagame.com,1,,,2023,3,17,Australia,AU,Victoria,-38.3,142.4,EPSG:4326 +HUMAN_OBSERVATION, TrojanMonkey | questagame.com,1,,This big fella was just climbing the tree but stopped to snack on the little branch right in front of him. He needs to keep eating. And sleeping.,2021,4,8,Australia,AU,South Australia,-35,138.7,EPSG:4326 +HUMAN_OBSERVATION, Parablennius | questagame.com,1,,,2022,11,12,Australia,AU,Victoria,-38.8,143.6,EPSG:4326 +HUMAN_OBSERVATION, Tahvy | questagame.com,1,,,2021,10,23,Australia,AU,Queensland,-19.1,146.8,EPSG:4326 +HUMAN_OBSERVATION, CactusJoe | questagame.com,1,,"Large, arboreal mammal taking a nap. Poor thing was being harassed by currawongs",2021,9,30,Australia,AU,Queensland,-27.6,152,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2024,9,15,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, HappyChaos | questagame.com,1,,This male was making some fierce noises towards a nearby male. you can see the female he was interested in in the third picture - she's on the left and he's on the right,2020,1,26,Australia,AU,South Australia,-34.903331,138.703887,EPSG:4326 +HUMAN_OBSERVATION, CeruleanBreeze | questagame.com,1,,,2020,2,26,Australia,AU,Victoria,-38.271208,141.594483,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2024,1,27,Australia,AU,South Australia,-34.9,138.7,EPSG:4326 +HUMAN_OBSERVATION, JohnMcLean | questagame.com,1,,,2020,10,31,Australia,AU,South Australia,-35,138.7,EPSG:4326 +HUMAN_OBSERVATION, cwpaine | questagame.com,1,,"a large male - grunting in the night, making us aware of his presence",2020,8,12,Australia,AU,Queensland,-27.357159,152.940331,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,Cute grey marsupial about to climb a eucalyptus tree. It looks guilty....,2021,1,3,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, Brushturkey | questagame.com,1,,"Unless there has been a very recent revision of the koala subspecies and regional variants, there is only one species of koala: Phascolarctos cinereus. In fact it is the only living member of the family Phascolarctidae, all other species being now extinct.",2023,5,7,Australia,AU,New South Wales,-30.4,153.1,EPSG:4326 +HUMAN_OBSERVATION, shebots0509 | questagame.com,1,,,2022,1,19,Australia,AU,New South Wales,-30.6,153,EPSG:4326 +HUMAN_OBSERVATION, Aimzrose | questagame.com,1,,Second of the 3 saw on today’s walk. In a tree by the lake,2022,1,31,Australia,AU,Queensland,-27.3,152.9,EPSG:4326 +HUMAN_OBSERVATION, Daddy | questagame.com,1,,Up 15m in tree above wetlands. Eating and sleeping,2020,2,21,Australia,AU,South Australia,-34.965885,138.618584,EPSG:4326 +HUMAN_OBSERVATION, Greg McCroary | questagame.com,1,,Koala way up a tree. Photo is lightened and adjusted so that it doesn't look like a dark blob. One of three koalas sighted on the island. ,2020,2,29,Australia,AU,Queensland,-20.933456,149.435039,EPSG:4326 +HUMAN_OBSERVATION, JenniferAlba | questagame.com,1,,,2020,7,9,Australia,AU,Victoria,-38.733087,145.939077,EPSG:4326 +HUMAN_OBSERVATION, Hefree | questagame.com,1,,"A big boy right at the very top of a gum. At least 10 metres off the ground. I've been told a dirty bum is a sign of chlamydia, so I always check. This guy looked clean and healthy.",2020,7,5,Australia,AU,South Australia,-34.86852,138.655737,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,A sleepy mammal in the gum tree.,2024,9,21,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, cwpaine | questagame.com,1,,,2020,5,4,Australia,AU,Queensland,-27.273562,152.938152,EPSG:4326 +HUMAN_OBSERVATION, Zadeh | questagame.com,1,,,2020,1,1,Australia,AU,Victoria,-37.963392,141.742492,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,12,9,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, Aimzrose | questagame.com,1,,Third of the 3 seen on today’s walk. Quite low in the tree. Looking rather Uncomfy,2022,1,31,Australia,AU,Queensland,-27.3,152.9,EPSG:4326 +HUMAN_OBSERVATION, cwpaine | questagame.com,1,,,2020,7,17,Australia,AU,Queensland,-27.35819,152.939802,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,Wrong tree little fella!,2022,1,10,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, TrojanMonkey | questagame.com,1,,"This guy was just chilling in the tree. Neither sleeping or eating, which is a bit unusual, and looked like it was missing only a cocktail or a G&T perhaps. Then it noticed me, and I apologised for disturbing it and kept walking. Australian wildlife is the best. ",2021,4,3,Australia,AU,South Australia,-35,138.7,EPSG:4326 +HUMAN_OBSERVATION, CoronaHiker | questagame.com,1,,,2020,3,29,Australia,AU,South Australia,-34.899662,138.712275,EPSG:4326 +HUMAN_OBSERVATION, CeruleanBreeze | questagame.com,1,,Sleepy fella. ,2020,10,20,Australia,AU,Victoria,-38.4,141.6,EPSG:4326 +HUMAN_OBSERVATION, Ashleigh | questagame.com,1,,First time we have seen one in Carrington Rd,2021,7,6,Australia,AU,Queensland,-17.3,145.5,EPSG:4326 +HUMAN_OBSERVATION, Surfap | questagame.com,1,,,2020,10,10,Australia,AU,South Australia,-35,138.7,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,11,13,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, PatchOfHeaven | questagame.com,1,,"Healthy male spotted around midnight. No sign of any disease, in habitat dominated by Eucalypts, mainly Tallowwood",2020,8,19,Australia,AU,Queensland,-28.039554,153.253008,EPSG:4326 +HUMAN_OBSERVATION, CeruleanBreeze | questagame.com,1,,,2022,12,17,Australia,AU,Victoria,-38.3,141.6,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,"A hefty furry tree dwelling mammal. Grey and white. This one has cimbed the wrong tree, and looks confused as it searches for food.",2020,11,20,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, HappyChaos | questagame.com,1,,,2021,11,13,Australia,AU,South Australia,-34.9,138.6,EPSG:4326 +HUMAN_OBSERVATION, HarrisonSchultz | questagame.com,1,,Large Koala found very close to the River Torrens and not far from the coast. Was quite high up in a gum tree so unable to get a better photo.,2020,4,2,Australia,AU,South Australia,-34.930377,138.520019,EPSG:4326 +HUMAN_OBSERVATION, David | questagame.com,1,,Not a very good photo (sorry). A mammal that sits in the tree eating leaves and sleeping all day. Made a very distinct grunting noise,2021,8,14,Australia,AU,South Australia,-35,138.7,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2024,9,28,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, Penelope | questagame.com,1,,"Not one, but TWO koalas spotted within 50 m of each other at the Mt Gravatt Lookout Reserve, Qld.",2020,6,7,Australia,AU,Queensland,-27.542869,153.073671,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2023,11,23,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, ChloeChristian | questagame.com,1,,"Cute, furry native Australian animal. Eats eucalyptus leaves. Sleeps 20 hours per day. ",2020,8,25,Australia,AU,South Australia,-34.178969,140.761825,EPSG:4326 +HUMAN_OBSERVATION, Kemoaby | questagame.com,1,,"Based on the growl that alerted us to its presence, we’re guessing this lovely creature is a male. ",2022,1,15,Australia,AU,Victoria,-38.8,143.6,EPSG:4326 +HUMAN_OBSERVATION, cactusbird | questagame.com,1,,,2021,8,14,Australia,AU,South Australia,-34.9,138.6,EPSG:4326 +HUMAN_OBSERVATION, Yrev | questagame.com,1,,"(-27.5103444, 153.0855369) observed at 10:13am 04/07/21 a sunny day after several days rain 1x female + 1x juvenile and a separate sex-undetermined individual all sleeping and all visible in tree tops 6-15m from the Ridge Line track at Whites Hill Bushland Reserve. ",2021,7,4,Australia,AU,Queensland,-27.5,153.1,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,Cute little fella! I think this specimen must recently left mum. It is the smallest one I've seen. Grey and brown fur all over but a streak of white across the chest. Looked a little miserable in the rain.,2021,5,10,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,Grey-brown arboreal marsupial. Large fluffy white ears. Sleeps most of the time and eats gum leaves the rest of the time.,2021,4,30,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, CeruleanBreeze | questagame.com,1,,Sat on my fence for an hour and then headed across the road to the trees. ,2021,1,17,Australia,AU,Victoria,-38.3,141.6,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2023,6,16,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2020,4,4,Australia,AU,South Australia,-35.01111,138.610245,EPSG:4326 +HUMAN_OBSERVATION, Tahvy | questagame.com,1,,A koala is a marsupial.,2021,8,2,Australia,AU,Queensland,-19.1,146.9,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,"An unfortunate find in our front yard: the forelimb of a mammal.Notable features include obvious fingerprints and the two fingers closest to the thumb are fused, apart from the claws.",2021,3,17,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, Jiayue | questagame.com,1,,,2020,3,30,Australia,AU,South Australia,-34.921887,138.606619,EPSG:4326 +HUMAN_OBSERVATION, sweatyginge | questagame.com,1,,,2020,4,28,Australia,AU,South Australia,-34.629339,138.743442,EPSG:4326 +HUMAN_OBSERVATION, Emeny's | questagame.com,1,,"On the move on a back road, climbed this tree until I’d gone past.",2020,10,30,Australia,AU,Victoria,-38.336663,142.530724,EPSG:4326 +HUMAN_OBSERVATION, Mitchells | questagame.com,1,,,2020,7,18,Australia,AU,Victoria,-38.574149,143.909266,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2023,11,6,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, Jamman | questagame.com,1,,,2022,8,8,Australia,AU,South Australia,-35,138.7,EPSG:4326 +HUMAN_OBSERVATION, Titch | questagame.com,1,,licking water from the road.,2021,1,13,Australia,AU,South Australia,-35,138.7,EPSG:4326 +HUMAN_OBSERVATION, TinLizard | questagame.com,1,,Two animals resting in tree during heat of day.,2021,9,27,Australia,AU,Queensland,-19.1,146.9,EPSG:4326 +HUMAN_OBSERVATION, jspenny17 | questagame.com,1,,"A one from last year I think, not much opportunity for exploring with quarantine going on, looking back though my vaults ",2020,4,8,Australia,AU,South Australia,-34.833792,138.728939,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2023,1,11,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2021,4,5,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,,2021,2,24,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, octonaughts | questagame.com,1,,Can you see him among the gum leaves? Grey/brown/white furry marsupial.,2021,12,6,Australia,AU,South Australia,-35,138.6,EPSG:4326 +HUMAN_OBSERVATION, wyanda | questagame.com,1,,QUEST SPECIES,2022,1,6,Australia,AU,Victoria,-36.359558,146.701541,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,2,Australia,AU,Queensland,-27.511609,153.24992,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,28,Australia,AU,Queensland,-27.511692,153.2514,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,8,15,Australia,AU,Queensland,-27.523256,153.26062,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,5,Australia,AU,Queensland,-27.575242,153.27197,EPSG:4326 +HUMAN_OBSERVATION,Caren Gillis,1,,,2022,11,24,Australia,AU,Queensland,-27.548516,153.201918,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2021,4,13,Australia,AU,Queensland,-27.490719,153.248485,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,19,Australia,AU,Queensland,-27.490995,153.24556,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,7,6,Australia,AU,Queensland,-27.503429,153.19371,EPSG:4326 +HUMAN_OBSERVATION,Adam Reid,1,MALE,,2024,8,9,Australia,AU,Queensland,-27.50987,153.250881,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,24,Australia,AU,Queensland,-27.512748,153.256078,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,10,21,Australia,AU,Queensland,-27.48958,153.247238,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,9,27,Australia,AU,Queensland,-27.50412,153.195023,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,19,Australia,AU,Queensland,-27.511597,153.251918,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,9,Australia,AU,Queensland,-27.510928,153.200168,EPSG:4326 +HUMAN_OBSERVATION,John Baker,1,FEMALE,,2021,1,1,Australia,AU,Queensland,-27.494794,153.255609,EPSG:4326 +HUMAN_OBSERVATION,Julie Elliott,1,FEMALE,,2023,3,22,Australia,AU,Queensland,-27.432085,153.523816,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,19,Australia,AU,Queensland,-27.507948,153.232193,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,28,Australia,AU,Queensland,-27.511702,153.253819,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,10,24,Australia,AU,Queensland,-27.512992,153.24187,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2024,2,7,Australia,AU,Queensland,-27.504375,153.19458,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,3,6,Australia,AU,Queensland,-27.575318,153.271025,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,25,Australia,AU,Queensland,-27.491316,153.243469,EPSG:4326 +HUMAN_OBSERVATION,Tinneke Van Leur,1,MALE,,2022,10,14,Australia,AU,Queensland,-27.494279,153.405275,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,9,26,Australia,AU,Queensland,-27.575547,153.270789,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,6,10,Australia,AU,Queensland,-27.576688,153.271841,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,18,Australia,AU,Queensland,-27.511462,153.247709,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,3,22,Australia,AU,Queensland,-27.48966,153.245453,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,8,Australia,AU,Queensland,-27.489954,153.248993,EPSG:4326 +HUMAN_OBSERVATION,Amy Strong,1,,,2023,2,28,Australia,AU,Queensland,-27.500228,153.221983,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2021,10,9,Australia,AU,Queensland,-27.4934,153.405581,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,11,21,Australia,AU,Queensland,-27.525843,153.283329,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,23,Australia,AU,Queensland,-27.502539,153.25021,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,8,31,Australia,AU,Queensland,-27.490329,153.249192,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,19,Australia,AU,Queensland,-27.513302,153.255107,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,2,14,Australia,AU,Queensland,-27.51138,153.250223,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,15,Australia,AU,Queensland,-27.496903,153.245932,EPSG:4326 +HUMAN_OBSERVATION,Emilee Cooper,1,FEMALE,,2021,10,9,Australia,AU,Queensland,-27.400296,153.439373,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,3,18,Australia,AU,Queensland,-27.512945,153.202957,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,22,Australia,AU,Queensland,-27.511599,153.248692,EPSG:4326 +HUMAN_OBSERVATION,Brian Wood,1,,,2021,11,7,Australia,AU,Queensland,-27.427002,153.538359,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,7,Australia,AU,Queensland,-27.513937,153.19751,EPSG:4326 +HUMAN_OBSERVATION,Caren Gillis,1,MALE,,2023,9,13,Australia,AU,Queensland,-27.512222,153.259001,EPSG:4326 +HUMAN_OBSERVATION,Amanda Duignan,1,,,2022,2,26,Australia,AU,Queensland,-27.511621,153.251359,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,4,17,Australia,AU,Queensland,-27.511368,153.250277,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,13,Australia,AU,Queensland,-27.575143,153.271603,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,4,Australia,AU,Queensland,-27.490385,153.245086,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,8,30,Australia,AU,Queensland,-27.54628,153.268539,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,21,Australia,AU,Queensland,-27.503072,153.25114,EPSG:4326 +HUMAN_OBSERVATION,Deb Tabbart,1,MALE,,2021,10,8,Australia,AU,Queensland,-27.393433,153.439675,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,31,Australia,AU,Queensland,-27.511465,153.248601,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,8,2,Australia,AU,Queensland,-27.501164,153.2521,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,5,Australia,AU,Queensland,-27.496115,153.222015,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2024,2,7,Australia,AU,Queensland,-27.509653,153.196411,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2024,2,18,Australia,AU,Queensland,-27.510695,153.198288,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,10,Australia,AU,Queensland,-27.49096,153.248232,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,29,Australia,AU,Queensland,-27.51087,153.200226,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,30,Australia,AU,Queensland,-27.511741,153.250672,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,,,2024,7,29,Australia,AU,Queensland,-27.613394,153.198105,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,5,13,Australia,AU,Queensland,-27.62116,153.20672,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,,,2024,9,9,Australia,AU,Queensland,-27.564629,153.304794,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,19,Australia,AU,Queensland,-27.511171,153.199142,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,12,10,Australia,AU,Queensland,-27.502655,153.225401,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,13,Australia,AU,Queensland,-27.489662,153.245453,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,30,Australia,AU,Queensland,-27.490048,153.249546,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,12,7,Australia,AU,Queensland,-27.489143,153.246262,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,6,19,Australia,AU,Queensland,-27.572769,153.272603,EPSG:4326 +HUMAN_OBSERVATION,Rom Cris,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-27.4002,153.43918,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2021,3,3,Australia,AU,Queensland,-27.497924,153.246092,EPSG:4326 +HUMAN_OBSERVATION,Alison Woodley,1,,,2021,7,17,Australia,AU,Queensland,-27.491018,153.248716,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,8,Australia,AU,Queensland,-27.575204,153.269759,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,4,8,Australia,AU,Queensland,-27.49093,153.24543,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,7,1,Australia,AU,Queensland,-27.505886,153.232986,EPSG:4326 +HUMAN_OBSERVATION,Greg Latapie,1,,,2022,12,23,Australia,AU,Queensland,-27.502215,153.231457,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,11,21,Australia,AU,Queensland,-27.513783,153.256038,EPSG:4326 +HUMAN_OBSERVATION,Karen Robertson,1,FEMALE,,2022,10,17,Australia,AU,Queensland,-27.55551,153.232605,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,21,Australia,AU,Queensland,-27.574737,153.271051,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,9,27,Australia,AU,Queensland,-27.528944,153.272552,EPSG:4326 +HUMAN_OBSERVATION,Yasmin Butler,1,,,2022,1,23,Australia,AU,Queensland,-27.489778,153.247995,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2022,12,9,Australia,AU,Queensland,-27.425619,153.520771,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,6,15,Australia,AU,Queensland,-27.576726,153.271862,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,6,Australia,AU,Queensland,-27.613459,153.198471,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,4,Australia,AU,Queensland,-27.576659,153.272061,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,16,Australia,AU,Queensland,-27.506153,153.233398,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,4,17,Australia,AU,Queensland,-27.576421,153.272903,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,3,Australia,AU,Queensland,-27.489929,153.245117,EPSG:4326 +HUMAN_OBSERVATION,Cathryn Dexter,1,FEMALE,,2021,10,9,Australia,AU,Queensland,-27.391539,153.448778,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,2,26,Australia,AU,Queensland,-27.506384,153.233093,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2024,1,23,Australia,AU,Queensland,-27.502926,153.22559,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,12,22,Australia,AU,Queensland,-27.400578,153.43795,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,27,Australia,AU,Queensland,-27.491139,153.244958,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,10,26,Australia,AU,Queensland,-27.489709,153.248893,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,9,5,Australia,AU,Queensland,-27.532576,153.281819,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,4,1,Australia,AU,Queensland,-27.500996,153.23172,EPSG:4326 +HUMAN_OBSERVATION,Amanda Gerber,1,,,2022,10,14,Australia,AU,Queensland,-27.396297,153.438783,EPSG:4326 +HUMAN_OBSERVATION,John Baker,1,FEMALE,,2020,11,8,Australia,AU,Queensland,-27.493616,153.254149,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2023,12,2,Australia,AU,Queensland,-27.497588,153.246027,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,9,13,Australia,AU,Queensland,-27.490662,153.24827,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,21,Australia,AU,Queensland,-27.502241,153.232452,EPSG:4326 +HUMAN_OBSERVATION,Di Cartmill,1,FEMALE,,2024,10,11,Australia,AU,Queensland,-27.395655,153.442296,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2022,5,1,Australia,AU,Queensland,-27.546544,153.259696,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,8,Australia,AU,Queensland,-27.575623,153.27094,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,9,Australia,AU,Queensland,-27.511513,153.201447,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,5,Australia,AU,Queensland,-27.511355,153.250312,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2024,9,22,Australia,AU,Queensland,-27.511731,153.250572,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,29,Australia,AU,Queensland,-27.5117,153.250521,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2021,1,5,Australia,AU,Queensland,-27.49576,153.245213,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,8,2,Australia,AU,Queensland,-27.511676,153.250843,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,11,23,Australia,AU,Queensland,-27.489882,153.249208,EPSG:4326 +HUMAN_OBSERVATION,stuart Gudgeon,1,MALE,,2024,7,15,Australia,AU,Queensland,-27.569805,153.29863,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,9,18,Australia,AU,Queensland,-27.490725,153.248452,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,6,2,Australia,AU,Queensland,-27.490728,153.248275,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,1,Australia,AU,Queensland,-27.512198,153.255614,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2024,7,24,Australia,AU,Queensland,-27.494668,153.21788,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,13,Australia,AU,Queensland,-27.491291,153.24784,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2023,7,31,Australia,AU,Queensland,-27.422871,153.515589,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,10,7,Australia,AU,Queensland,-27.493787,153.403291,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,7,Australia,AU,Queensland,-27.613317,153.199646,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,11,15,Australia,AU,Queensland,-27.488209,153.244522,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,21,Australia,AU,Queensland,-27.613079,153.199554,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,8,Australia,AU,Queensland,-27.512319,153.242225,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,12,Australia,AU,Queensland,-27.51174,153.253684,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,18,Australia,AU,Queensland,-27.622513,153.208694,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,11,13,Australia,AU,Queensland,-27.490586,153.248135,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,15,Australia,AU,Queensland,-27.575698,153.271058,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,7,6,Australia,AU,Queensland,-27.540329,153.269424,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,16,Australia,AU,Queensland,-27.490517,153.248337,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,26,Australia,AU,Queensland,-27.510536,153.198364,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,12,Australia,AU,Queensland,-27.511545,153.248537,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,12,Australia,AU,Queensland,-27.490109,153.248253,EPSG:4326 +HUMAN_OBSERVATION,Cathryn Dexter,1,FEMALE,,2022,11,15,Australia,AU,Queensland,-27.506072,153.201324,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,1,31,Australia,AU,Queensland,-27.508215,153.200958,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,5,13,Australia,AU,Queensland,-27.396045,153.446385,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,14,Australia,AU,Queensland,-27.511579,153.250675,EPSG:4326 +HUMAN_OBSERVATION,Megan Traynor,1,,,2021,12,13,Australia,AU,Queensland,-27.62,153.4,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,6,Australia,AU,Queensland,-27.511375,153.250232,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,26,Australia,AU,Queensland,-27.567814,153.296906,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2024,5,26,Australia,AU,Queensland,-27.494999,153.430567,EPSG:4326 +HUMAN_OBSERVATION,Terasia Gerding,1,FEMALE,,2021,8,24,Australia,AU,Queensland,-27.533558,153.231743,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,9,15,Australia,AU,Queensland,-27.532635,153.259476,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2021,8,23,Australia,AU,Queensland,-27.514837,153.089955,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,8,9,Australia,AU,Queensland,-27.511424,153.24727,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,6,27,Australia,AU,Queensland,-27.511661,153.251456,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,9,Australia,AU,Queensland,-27.511498,153.204082,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,6,22,Australia,AU,Queensland,-27.511447,153.246869,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,12,26,Australia,AU,Queensland,-27.574729,153.271519,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,9,30,Australia,AU,Queensland,-27.613426,153.198868,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,4,Australia,AU,Queensland,-27.511465,153.247148,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,9,19,Australia,AU,Queensland,-27.511264,153.249889,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,11,Australia,AU,Queensland,-27.575204,153.271433,EPSG:4326 +HUMAN_OBSERVATION,Fraser Carrier-Hubbard,1,,,2023,1,17,Australia,AU,Queensland,-27.398356,153.437998,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2023,11,2,Australia,AU,Queensland,-27.525886,153.281775,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2021,9,6,Australia,AU,Queensland,-27.490289,153.248634,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,9,27,Australia,AU,Queensland,-27.504677,153.234055,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,1,9,Australia,AU,Queensland,-27.502888,153.253098,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,8,7,Australia,AU,Queensland,-27.531877,153.282012,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,1,5,Australia,AU,Queensland,-27.489882,153.249144,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,3,2,Australia,AU,Queensland,-27.575566,153.270832,EPSG:4326 +HUMAN_OBSERVATION,Chris Moriarty,1,FEMALE,,2022,11,6,Australia,AU,Queensland,-27.482888,153.239096,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,30,Australia,AU,Queensland,-27.490676,153.248506,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2021,10,15,Australia,AU,Queensland,-27.531638,153.250694,EPSG:4326 +HUMAN_OBSERVATION,Greg Latapie,1,,,2022,12,23,Australia,AU,Queensland,-27.500194,153.231464,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,9,9,Australia,AU,Queensland,-27.565456,153.304611,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,7,18,Australia,AU,Queensland,-27.615135,153.197693,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2022,11,15,Australia,AU,Queensland,-27.424926,153.520117,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,3,8,Australia,AU,Queensland,-27.575261,153.271455,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,25,Australia,AU,Queensland,-27.512212,153.251924,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,9,2,Australia,AU,Queensland,-27.5117,153.20192,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,22,Australia,AU,Queensland,-27.574082,153.271648,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,27,Australia,AU,Queensland,-27.511356,153.250195,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,,,2023,9,28,Australia,AU,Queensland,-27.498372,153.225447,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,27,Australia,AU,Queensland,-27.490319,153.248526,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,12,Australia,AU,Queensland,-27.511584,153.249983,EPSG:4326 +HUMAN_OBSERVATION,Emilee Cooper,1,,,2021,10,9,Australia,AU,Queensland,-27.426024,153.516941,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,3,13,Australia,AU,Queensland,-27.568907,153.295029,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,21,Australia,AU,Queensland,-27.5745,153.272163,EPSG:4326 +HUMAN_OBSERVATION,Caitlin Stewart,1,,,2024,10,11,Australia,AU,Queensland,-27.412381,153.457883,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,2,Australia,AU,Queensland,-27.511564,153.250773,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,22,Australia,AU,Queensland,-27.511573,153.250072,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,25,Australia,AU,Queensland,-27.491012,153.244863,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,10,Australia,AU,Queensland,-27.490837,153.244954,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,10,1,Australia,AU,Queensland,-27.395957,153.444499,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,8,Australia,AU,Queensland,-27.505827,153.233139,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,8,Australia,AU,Queensland,-27.511779,153.253868,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,9,15,Australia,AU,Queensland,-27.615328,153.197403,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,8,16,Australia,AU,Queensland,-27.511421,153.24772,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,22,Australia,AU,Queensland,-27.575242,153.271712,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,7,Australia,AU,Queensland,-27.500896,153.251883,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2022,8,22,Australia,AU,Queensland,-27.508354,153.246119,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,3,27,Australia,AU,Queensland,-27.49223,153.21445,EPSG:4326 +HUMAN_OBSERVATION,Deb Tabbart,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-27.496988,153.398943,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,13,Australia,AU,Queensland,-27.489833,153.248679,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,1,Australia,AU,Queensland,-27.506226,153.197968,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,8,5,Australia,AU,Queensland,-27.490398,153.248635,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2023,9,30,Australia,AU,Queensland,-27.494307,153.402749,EPSG:4326 +HUMAN_OBSERVATION,Kelli Longworth,1,,,2022,10,14,Australia,AU,Queensland,-27.499091,153.400066,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,11,Australia,AU,Queensland,-27.489487,153.245514,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,7,8,Australia,AU,Queensland,-27.5093,153.251678,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,1,Australia,AU,Queensland,-27.490229,153.249451,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,25,Australia,AU,Queensland,-27.621141,153.206711,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,17,Australia,AU,Queensland,-27.511334,153.250124,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,15,Australia,AU,Queensland,-27.489934,153.245259,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,8,19,Australia,AU,Queensland,-27.511627,153.250866,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,6,28,Australia,AU,Queensland,-27.490963,153.248733,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,14,Australia,AU,Queensland,-27.575143,153.271603,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2023,11,2,Australia,AU,Queensland,-27.395012,153.441925,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,11,15,Australia,AU,Queensland,-27.511633,153.249687,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,8,Australia,AU,Queensland,-27.514377,153.255996,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2021,1,7,Australia,AU,Queensland,-27.495843,153.245282,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,24,Australia,AU,Queensland,-27.513305,153.255218,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2021,12,21,Australia,AU,Queensland,-27.547812,153.258854,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,11,7,Australia,AU,Queensland,-27.498795,153.246811,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,11,Australia,AU,Queensland,-27.515365,153.2398,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,1,1,Australia,AU,Queensland,-27.496342,153.245594,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,12,31,Australia,AU,Queensland,-27.575147,153.271691,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,10,1,Australia,AU,Queensland,-27.496985,153.246081,EPSG:4326 +HUMAN_OBSERVATION,Richard Stone,1,,,2022,11,21,Australia,AU,Queensland,-27.496035,153.253478,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,25,Australia,AU,Queensland,-27.511889,153.248443,EPSG:4326 +HUMAN_OBSERVATION,T rundle ,1,,,2023,2,9,Australia,AU,Queensland,-27.56195,153.227187,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,9,18,Australia,AU,Queensland,-27.51129,153.249992,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,22,Australia,AU,Queensland,-27.576639,153.272961,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,3,Australia,AU,Queensland,-27.500435,153.248603,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,5,Australia,AU,Queensland,-27.490714,153.248468,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,12,29,Australia,AU,Queensland,-27.501249,153.252397,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,6,Australia,AU,Queensland,-27.513897,153.202469,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,9,8,Australia,AU,Queensland,-27.490831,153.248452,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,25,Australia,AU,Queensland,-27.504702,153.200638,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,2,8,Australia,AU,Queensland,-27.48999,153.244308,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,4,28,Australia,AU,Queensland,-27.56876,153.2948,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,17,Australia,AU,Queensland,-27.511382,153.250274,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,12,17,Australia,AU,Queensland,-27.574405,153.27242,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,10,2,Australia,AU,Queensland,-27.490169,153.248506,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,4,22,Australia,AU,Queensland,-27.613537,153.198563,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,3,Australia,AU,Queensland,-27.620533,153.204468,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,5,Australia,AU,Queensland,-27.490768,153.247828,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,4,28,Australia,AU,Queensland,-27.56876,153.2948,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,23,Australia,AU,Queensland,-27.502677,153.250431,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,18,Australia,AU,Queensland,-27.513641,153.255037,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,3,Australia,AU,Queensland,-27.574767,153.27109,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,3,Australia,AU,Queensland,-27.575033,153.271948,EPSG:4326 +HUMAN_OBSERVATION,Natalie Oconnor,1,,,2021,12,18,Australia,AU,Queensland,-27.549859,153.228555,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,17,Australia,AU,Queensland,-27.574024,153.271744,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,3,Australia,AU,Queensland,-27.511311,153.250332,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,MALE,,2024,6,9,Australia,AU,Queensland,-27.509157,153.252312,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,8,26,Australia,AU,Queensland,-27.489745,153.248758,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,10,28,Australia,AU,Queensland,-27.513094,153.242373,EPSG:4326 +HUMAN_OBSERVATION,Shirley Willey,1,,,2024,10,11,Australia,AU,Queensland,-27.40138,153.43961,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2022,12,3,Australia,AU,Queensland,-27.49443,153.217885,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,9,14,Australia,AU,Queensland,-27.511703,153.252553,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,17,Australia,AU,Queensland,-27.51358,153.256005,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,FEMALE,,2023,10,23,Australia,AU,Queensland,-27.512225,153.255509,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,5,Australia,AU,Queensland,-27.490324,153.245464,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,29,Australia,AU,Queensland,-27.489737,153.245178,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,16,Australia,AU,Queensland,-27.500921,153.235229,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,12,9,Australia,AU,Queensland,-27.511523,153.2502,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,8,26,Australia,AU,Queensland,-27.511523,153.249391,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,14,Australia,AU,Queensland,-27.513252,153.255077,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,3,4,Australia,AU,Queensland,-27.499846,153.199188,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2022,12,5,Australia,AU,Queensland,-27.497683,153.403331,EPSG:4326 +HUMAN_OBSERVATION,Micheal del Manso,1,FEMALE,,2023,11,1,Australia,AU,Queensland,-27.58511,153.28189,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,26,Australia,AU,Queensland,-27.511687,153.253428,EPSG:4326 +HUMAN_OBSERVATION,Jan Simpson,1,,,2021,4,21,Australia,AU,Queensland,-27.502743,153.225574,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,6,Australia,AU,Queensland,-27.490129,153.248788,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,15,Australia,AU,Queensland,-27.57566,153.271358,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2023,1,4,Australia,AU,Queensland,-27.575623,153.271476,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,16,Australia,AU,Queensland,-27.5009,153.251994,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,22,Australia,AU,Queensland,-27.490021,153.246307,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,MALE,,2024,6,10,Australia,AU,Queensland,-27.509325,153.251867,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,18,Australia,AU,Queensland,-27.491146,153.245285,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,6,13,Australia,AU,Queensland,-27.50931,153.251923,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,28,Australia,AU,Queensland,-27.511343,153.250298,EPSG:4326 +HUMAN_OBSERVATION,Bronte Kulp,1,,,2021,9,6,Australia,AU,Queensland,-27.53103,153.23885,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,10,Australia,AU,Queensland,-27.575547,153.270639,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,12,23,Australia,AU,Queensland,-27.495718,153.245252,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,19,Australia,AU,Queensland,-27.490229,153.247238,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,4,Australia,AU,Queensland,-27.49625,153.245644,EPSG:4326 +HUMAN_OBSERVATION,Cathryn Dexter,1,FEMALE,,2022,11,2,Australia,AU,Queensland,-27.508283,153.203259,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,9,2,Australia,AU,Queensland,-27.516802,153.219818,EPSG:4326 +HUMAN_OBSERVATION,Adam Reid,1,,,2024,5,28,Australia,AU,Queensland,-27.511145,153.250346,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,7,Australia,AU,Queensland,-27.5116,153.250937,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,4,Australia,AU,Queensland,-27.5116,153.249989,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,4,Australia,AU,Queensland,-27.5745,153.272141,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,5,16,Australia,AU,Queensland,-27.533322,153.282344,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,6,13,Australia,AU,Queensland,-27.490575,153.248669,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,3,Australia,AU,Queensland,-27.513945,153.199463,EPSG:4326 +HUMAN_OBSERVATION,Erica Siegel,1,,,2023,4,25,Australia,AU,Queensland,-27.500435,153.216767,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,28,Australia,AU,Queensland,-27.511359,153.247543,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2023,8,5,Australia,AU,Queensland,-27.394164,153.446337,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,20,Australia,AU,Queensland,-27.511078,153.247956,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,6,3,Australia,AU,Queensland,-27.613314,153.1978,EPSG:4326 +HUMAN_OBSERVATION,Willemijn Seijn,1,FEMALE,,2024,10,11,Australia,AU,Queensland,-27.399553,153.443278,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,4,Australia,AU,Queensland,-27.490896,153.244848,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,25,Australia,AU,Queensland,-27.490665,153.248403,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,2,12,Australia,AU,Queensland,-27.500911,153.251998,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,3,5,Australia,AU,Queensland,-27.510239,153.201996,EPSG:4326 +HUMAN_OBSERVATION,Bec Philipp,1,,,2021,8,31,Australia,AU,Queensland,-27.534135,153.273911,EPSG:4326 +HUMAN_OBSERVATION,Rachel Wright,1,FEMALE,,2021,9,25,Australia,AU,Queensland,-27.551827,153.270329,EPSG:4326 +HUMAN_OBSERVATION,Brian Wood,1,,,2024,2,24,Australia,AU,Queensland,-27.392941,153.440021,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,8,12,Australia,AU,Queensland,-27.509494,153.251383,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,10,Australia,AU,Queensland,-27.511584,153.249983,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,25,Australia,AU,Queensland,-27.489653,153.245255,EPSG:4326 +HUMAN_OBSERVATION,Sanchia Murton,1,,,2022,3,10,Australia,AU,Queensland,-27.539289,153.215761,EPSG:4326 +HUMAN_OBSERVATION,Willemijn Seijn,1,,,2024,10,11,Australia,AU,Queensland,-27.400894,153.438269,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,4,8,Australia,AU,Queensland,-27.61248,153.19764,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,6,27,Australia,AU,Queensland,-27.575642,153.273815,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2021,10,2,Australia,AU,Queensland,-27.530943,153.244531,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,5,12,Australia,AU,Queensland,-27.396062,153.446624,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,5,Australia,AU,Queensland,-27.511645,153.2505,EPSG:4326 +HUMAN_OBSERVATION,Sharna Schmith,1,MALE,,2023,12,8,Australia,AU,Queensland,-27.495092,153.210928,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,11,Australia,AU,Queensland,-27.511364,153.247236,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,10,3,Australia,AU,Queensland,-27.490052,153.249042,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,30,Australia,AU,Queensland,-27.49014,153.248318,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,22,Australia,AU,Queensland,-27.489359,153.245285,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,7,Australia,AU,Queensland,-27.506411,153.233124,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,2,4,Australia,AU,Queensland,-27.538258,153.243313,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-27.494999,153.402782,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,7,18,Australia,AU,Queensland,-27.490124,153.247452,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,23,Australia,AU,Queensland,-27.511318,153.250289,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,7,15,Australia,AU,Queensland,-27.509403,153.251834,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,25,Australia,AU,Queensland,-27.576631,153.271841,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,27,Australia,AU,Queensland,-27.511816,153.253792,EPSG:4326 +HUMAN_OBSERVATION,Jasmine Spletter,1,,,2021,5,12,Australia,AU,Queensland,-27.29,153.16,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,29,Australia,AU,Queensland,-27.490509,153.248101,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,5,8,Australia,AU,Queensland,-27.511697,153.251499,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2023,4,20,Australia,AU,Queensland,-27.490861,153.24848,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,3,13,Australia,AU,Queensland,-27.51111,153.201675,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,FEMALE,,2023,8,15,Australia,AU,Queensland,-27.543904,153.275806,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2022,2,6,Australia,AU,Queensland,-27.498541,153.225943,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,1,7,Australia,AU,Queensland,-27.501386,153.252475,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,7,23,Australia,AU,Queensland,-27.511429,153.247569,EPSG:4326 +HUMAN_OBSERVATION,Richard Coleman,1,,,2023,5,10,Australia,AU,Queensland,-27.497252,153.245952,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,12,30,Australia,AU,Queensland,-27.491381,153.244709,EPSG:4326 +HUMAN_OBSERVATION,Andrew Dart,1,,,2023,10,18,Australia,AU,Queensland,-27.649168,153.265972,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,11,Australia,AU,Queensland,-27.491356,153.243738,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,9,3,Australia,AU,Queensland,-27.490502,153.244869,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,12,Australia,AU,Queensland,-27.511355,153.250211,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,12,17,Australia,AU,Queensland,-27.574843,153.272356,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,2,15,Australia,AU,Queensland,-27.5388,153.27061,EPSG:4326 +HUMAN_OBSERVATION,Tom Short,1,,,2023,7,29,Australia,AU,Queensland,-27.511416,153.249501,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,18,Australia,AU,Queensland,-27.491594,153.244732,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,11,23,Australia,AU,Queensland,-27.4905,153.24802,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,21,Australia,AU,Queensland,-27.489943,153.245257,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,3,11,Australia,AU,Queensland,-27.56887,153.29552,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,FEMALE,,2020,12,17,Australia,AU,Queensland,-27.554528,153.272345,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,5,2,Australia,AU,Queensland,-27.532991,153.282087,EPSG:4326 +HUMAN_OBSERVATION,Scott Bretherton,1,FEMALE,,2023,7,30,Australia,AU,Queensland,-27.398775,153.440828,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,3,Australia,AU,Queensland,-27.490152,153.248283,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,26,Australia,AU,Queensland,-27.575128,153.27124,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,2,16,Australia,AU,Queensland,-27.490777,153.247893,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,11,1,Australia,AU,Queensland,-27.490366,153.244934,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,1,12,Australia,AU,Queensland,-27.498827,153.2462,EPSG:4326 +HUMAN_OBSERVATION,Bethany Cramb,1,FEMALE,,2022,10,15,Australia,AU,Queensland,-27.511613,153.254619,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,1,1,Australia,AU,Queensland,-27.502061,153.250579,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,19,Australia,AU,Queensland,-27.5146,153.241968,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,24,Australia,AU,Queensland,-27.511751,153.249777,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,12,25,Australia,AU,Queensland,-27.574443,153.271734,EPSG:4326 +HUMAN_OBSERVATION,Sipke Vriend,1,,,2023,4,18,Australia,AU,Queensland,-27.489732,153.245531,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,19,Australia,AU,Queensland,-27.49741,153.246235,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,12,Australia,AU,Queensland,-27.513556,153.255982,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,6,Australia,AU,Queensland,-27.511448,153.250211,EPSG:4326 +HUMAN_OBSERVATION,Kelli Longworth,1,FEMALE,,2022,10,14,Australia,AU,Queensland,-27.393594,153.43968,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,18,Australia,AU,Queensland,-27.575508,153.271626,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,14,Australia,AU,Queensland,-27.489989,153.249358,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,11,15,Australia,AU,Queensland,-27.490641,153.248199,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,2,26,Australia,AU,Queensland,-27.512291,153.202011,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,MALE,,2023,2,25,Australia,AU,Queensland,-27.526594,153.282827,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,11,26,Australia,AU,Queensland,-27.489605,153.248935,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,1,17,Australia,AU,Queensland,-27.510278,153.198611,EPSG:4326 +HUMAN_OBSERVATION,Fiona W,1,,,2021,7,27,Australia,AU,Queensland,-27.501905,153.260139,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,11,11,Australia,AU,Queensland,-27.511295,153.204742,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,4,Australia,AU,Queensland,-27.511592,153.250435,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,6,5,Australia,AU,Queensland,-27.511266,153.249979,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,2,8,Australia,AU,Queensland,-27.574691,153.272012,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,10,12,Australia,AU,Queensland,-27.489955,153.248639,EPSG:4326 +HUMAN_OBSERVATION,Bethany Cramb,1,FEMALE,,2024,2,29,Australia,AU,Queensland,-27.547203,153.217822,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,MALE,,2022,12,1,Australia,AU,Queensland,-27.525664,153.283664,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,9,28,Australia,AU,Queensland,-27.515371,153.239818,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,31,Australia,AU,Queensland,-27.514589,153.251886,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,12,1,Australia,AU,Queensland,-27.489719,153.244239,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,15,Australia,AU,Queensland,-27.515384,153.239818,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,10,20,Australia,AU,Queensland,-27.490355,153.248549,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,10,16,Australia,AU,Queensland,-27.489216,153.242264,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,,,2023,10,13,Australia,AU,Queensland,-27.501322,153.224731,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,3,Australia,AU,Queensland,-27.489588,153.243973,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,MALE,,2024,9,26,Australia,AU,Queensland,-27.511556,153.242288,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,11,17,Australia,AU,Queensland,-27.497758,153.245886,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2022,9,28,Australia,AU,Queensland,-27.53591,153.271542,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,8,31,Australia,AU,Queensland,-27.53139,153.282151,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,15,Australia,AU,Queensland,-27.573606,153.271497,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,7,Australia,AU,Queensland,-27.501371,153.252273,EPSG:4326 +HUMAN_OBSERVATION,Gregor Kirkpatrick,1,,,2022,10,25,Australia,AU,Queensland,-27.538711,153.270694,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,9,14,Australia,AU,Queensland,-27.511285,153.250205,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,7,Australia,AU,Queensland,-27.51143,153.25022,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,FEMALE,,2021,2,16,Australia,AU,Queensland,-27.524421,153.283994,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,19,Australia,AU,Queensland,-27.574234,153.27227,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,29,Australia,AU,Queensland,-27.511566,153.250172,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,6,Australia,AU,Queensland,-27.615389,153.198151,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,4,8,Australia,AU,Queensland,-27.61345,153.20107,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,2,Australia,AU,Queensland,-27.511736,153.2507,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,11,15,Australia,AU,Queensland,-27.511648,153.250183,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,5,8,Australia,AU,Queensland,-27.534026,153.282894,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,2,Australia,AU,Queensland,-27.512601,153.256319,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,8,17,Australia,AU,Queensland,-27.509439,153.251401,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,22,Australia,AU,Queensland,-27.535692,153.27153,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,25,Australia,AU,Queensland,-27.574272,153.271605,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,3,21,Australia,AU,Queensland,-27.497351,153.246187,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,9,16,Australia,AU,Queensland,-27.613871,153.199448,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,4,10,Australia,AU,Queensland,-27.490435,153.245002,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,3,Australia,AU,Queensland,-27.614563,153.197769,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,5,21,Australia,AU,Queensland,-27.489344,153.242905,EPSG:4326 +HUMAN_OBSERVATION,Darryl Wilkins,1,,,2023,9,19,Australia,AU,Queensland,-27.596486,153.274877,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,8,Australia,AU,Queensland,-27.51179,153.250865,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,25,Australia,AU,Queensland,-27.574432,153.272291,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,9,16,Australia,AU,Queensland,-27.511426,153.250189,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,19,Australia,AU,Queensland,-27.512764,153.25681,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,8,Australia,AU,Queensland,-27.511226,153.250384,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,6,3,Australia,AU,Queensland,-27.490138,153.249063,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,1,11,Australia,AU,Queensland,-27.498749,153.247094,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,22,Australia,AU,Queensland,-27.490159,153.248754,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,MALE,,2021,12,26,Australia,AU,Queensland,-27.53828,153.182094,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,23,Australia,AU,Queensland,-27.491044,153.244992,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,9,Australia,AU,Queensland,-27.511502,153.247622,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,9,28,Australia,AU,Queensland,-27.575642,153.270832,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2023,7,16,Australia,AU,Queensland,-27.424424,153.518475,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,5,Australia,AU,Queensland,-27.511028,153.201279,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,3,Australia,AU,Queensland,-27.511481,153.247108,EPSG:4326 +HUMAN_OBSERVATION,Anna Marcora,1,,,2023,9,10,Australia,AU,Queensland,-27.513299,153.255947,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,3,17,Australia,AU,Queensland,-27.511505,153.247572,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,11,Australia,AU,Queensland,-27.615261,153.198135,EPSG:4326 +HUMAN_OBSERVATION,Willemijn Seijn,1,,,2024,10,11,Australia,AU,Queensland,-27.399275,153.439589,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,6,17,Australia,AU,Queensland,-27.61371,153.199188,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,28,Australia,AU,Queensland,-27.511633,153.243334,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,5,24,Australia,AU,Queensland,-27.574576,153.272098,EPSG:4326 +HUMAN_OBSERVATION,Greg Latapie,1,MALE,,2022,10,14,Australia,AU,Queensland,-27.429723,153.535334,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,9,28,Australia,AU,Queensland,-27.513554,153.256031,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,5,25,Australia,AU,Queensland,-27.574653,153.272055,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,3,Australia,AU,Queensland,-27.490826,153.244897,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,31,Australia,AU,Queensland,-27.490768,153.244974,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,24,Australia,AU,Queensland,-27.576607,153.273161,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,3,Australia,AU,Queensland,-27.500938,153.251998,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,10,13,Australia,AU,Queensland,-27.546614,153.26825,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,3,24,Australia,AU,Queensland,-27.491489,153.245621,EPSG:4326 +HUMAN_OBSERVATION,Scott Bretherton,1,,,2023,8,7,Australia,AU,Queensland,-27.398926,153.44043,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,6,24,Australia,AU,Queensland,-27.513543,153.251939,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,7,31,Australia,AU,Queensland,-27.490561,153.248465,EPSG:4326 +HUMAN_OBSERVATION,Laura Clyne,1,,,2021,10,9,Australia,AU,Queensland,-27.398555,153.440326,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,6,Australia,AU,Queensland,-27.576802,153.272034,EPSG:4326 +HUMAN_OBSERVATION,BRENDAN WATSON,1,,,2021,9,25,Australia,AU,Queensland,-27.554927,153.275022,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,6,Australia,AU,Queensland,-27.576402,153.273343,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,1,Australia,AU,Queensland,-27.511784,153.250078,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,MALE,,2024,5,19,Australia,AU,Queensland,-27.511064,153.248344,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,25,Australia,AU,Queensland,-27.512334,153.256051,EPSG:4326 +HUMAN_OBSERVATION,Sue White,1,,,2024,10,11,Australia,AU,Queensland,-27.511475,153.250011,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,1,13,Australia,AU,Queensland,-27.490835,153.248055,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,10,19,Australia,AU,Queensland,-27.489056,153.244675,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,6,21,Australia,AU,Queensland,-27.575242,153.271959,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,9,2,Australia,AU,Queensland,-27.509274,153.202209,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,27,Australia,AU,Queensland,-27.490706,153.245101,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2021,7,28,Australia,AU,Queensland,-27.539967,153.263657,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,3,7,Australia,AU,Queensland,-27.490808,153.247726,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,6,30,Australia,AU,Queensland,-27.495471,153.245953,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2021,1,3,Australia,AU,Queensland,-27.495777,153.245249,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,18,Australia,AU,Queensland,-27.615278,153.198105,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,5,Australia,AU,Queensland,-27.620535,153.204575,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,2,Australia,AU,Queensland,-27.490594,153.248519,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,30,Australia,AU,Queensland,-27.511365,153.2503,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,12,Australia,AU,Queensland,-27.575586,153.271644,EPSG:4326 +HUMAN_OBSERVATION,Kristy Kimlin,1,,,2023,3,7,Australia,AU,Queensland,-27.562357,153.226343,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,28,Australia,AU,Queensland,-27.511848,153.253881,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2023,11,8,Australia,AU,Queensland,-27.511781,153.253823,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,27,Australia,AU,Queensland,-27.574672,153.271691,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2023,12,11,Australia,AU,Queensland,-27.51182,153.254823,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2022,2,20,Australia,AU,Queensland,-27.502652,153.25012,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,6,24,Australia,AU,Queensland,-27.513212,153.198441,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,5,Australia,AU,Queensland,-27.62182,153.208099,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,10,3,Australia,AU,Queensland,-27.520414,153.286453,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,26,Australia,AU,Queensland,-27.489822,153.24919,EPSG:4326 +HUMAN_OBSERVATION,Michael Clover,1,,,2021,12,30,Australia,AU,Queensland,-27.500514,153.224219,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,16,Australia,AU,Queensland,-27.575377,153.271148,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,17,Australia,AU,Queensland,-27.490234,153.249495,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,26,Australia,AU,Queensland,-27.490365,153.248742,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,9,15,Australia,AU,Queensland,-27.511763,153.255124,EPSG:4326 +HUMAN_OBSERVATION,John Baker,1,FEMALE,,2020,10,17,Australia,AU,Queensland,-27.49402,153.254009,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,8,21,Australia,AU,Queensland,-27.511602,153.249595,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,6,Australia,AU,Queensland,-27.511308,153.25012,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,FEMALE,,2023,11,1,Australia,AU,Queensland,-27.511546,153.24963,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,16,Australia,AU,Queensland,-27.490268,153.248096,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,23,Australia,AU,Queensland,-27.513913,153.256042,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,30,Australia,AU,Queensland,-27.514441,153.251974,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,24,Australia,AU,Queensland,-27.511375,153.250309,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,12,7,Australia,AU,Queensland,-27.574976,153.271133,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,,,2023,10,28,Australia,AU,Queensland,-27.503575,153.225586,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,25,Australia,AU,Queensland,-27.511314,153.250051,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2021,12,19,Australia,AU,Queensland,-27.547078,153.258719,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,27,Australia,AU,Queensland,-27.624491,153.206894,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,6,29,Australia,AU,Queensland,-27.496576,153.245794,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,9,5,Australia,AU,Queensland,-27.489988,153.249268,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,20,Australia,AU,Queensland,-27.511915,153.250029,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,11,1,Australia,AU,Queensland,-27.489676,153.244832,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,22,Australia,AU,Queensland,-27.511356,153.250373,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,11,7,Australia,AU,Queensland,-27.507128,153.196198,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,12,31,Australia,AU,Queensland,-27.500375,153.248302,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,12,Australia,AU,Queensland,-27.51458,153.241825,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,5,13,Australia,AU,Queensland,-27.491046,153.244763,EPSG:4326 +HUMAN_OBSERVATION,Brian Wood,1,,,2023,1,31,Australia,AU,Queensland,-27.511231,153.248184,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,7,28,Australia,AU,Queensland,-27.511822,153.253768,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,26,Australia,AU,Queensland,-27.576574,153.271905,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,10,14,Australia,AU,Queensland,-27.510983,153.203339,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,17,Australia,AU,Queensland,-27.497095,153.245828,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,10,29,Australia,AU,Queensland,-27.575586,153.271644,EPSG:4326 +HUMAN_OBSERVATION,Penny Engeman,1,,,2023,4,3,Australia,AU,Queensland,-27.527599,153.275868,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,1,20,Australia,AU,Queensland,-27.511784,153.253865,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,10,Australia,AU,Queensland,-27.490737,153.244807,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,9,18,Australia,AU,Queensland,-27.497945,153.246274,EPSG:4326 +HUMAN_OBSERVATION,Dominic Al-Mudaris,1,MALE,,2021,6,9,Australia,AU,Queensland,-27.54717,153.216998,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,4,Australia,AU,Queensland,-27.575337,153.271176,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,7,Australia,AU,Queensland,-27.513742,153.196808,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,8,25,Australia,AU,Queensland,-27.499738,153.246577,EPSG:4326 +HUMAN_OBSERVATION,Simon Gray,1,,,2023,12,9,Australia,AU,Queensland,-27.539372,153.271181,EPSG:4326 +HUMAN_OBSERVATION,Cathryn Dexter,1,,,2021,10,9,Australia,AU,Queensland,-27.498191,153.402767,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,12,15,Australia,AU,Queensland,-27.574291,153.272431,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,28,Australia,AU,Queensland,-27.513246,153.255084,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,27,Australia,AU,Queensland,-27.511406,153.250304,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,7,Australia,AU,Queensland,-27.489231,153.249696,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,7,Australia,AU,Queensland,-27.514657,153.241986,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,6,2,Australia,AU,Queensland,-27.576726,153.271927,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,2,15,Australia,AU,Queensland,-27.51153,153.247554,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,2,Australia,AU,Queensland,-27.511781,153.251043,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,5,5,Australia,AU,Queensland,-27.511258,153.250247,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,MALE,,2021,10,8,Australia,AU,Queensland,-27.400119,153.437931,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,6,15,Australia,AU,Queensland,-27.491388,153.243691,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,19,Australia,AU,Queensland,-27.489695,153.245255,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,16,Australia,AU,Queensland,-27.573865,153.271616,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,6,Australia,AU,Queensland,-27.506395,153.197144,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,4,22,Australia,AU,Queensland,-27.50201,153.232559,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,9,Australia,AU,Queensland,-27.511781,153.250583,EPSG:4326 +HUMAN_OBSERVATION,Tinneke Van Leur,1,FEMALE,,2022,10,14,Australia,AU,Queensland,-27.403524,153.440749,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,7,11,Australia,AU,Queensland,-27.488226,153.24614,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,25,Australia,AU,Queensland,-27.495873,153.245196,EPSG:4326 +HUMAN_OBSERVATION,Caren Gillis,1,FEMALE,,2023,8,9,Australia,AU,Queensland,-27.581462,153.295291,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,10,16,Australia,AU,Queensland,-27.572126,153.299698,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,7,8,Australia,AU,Queensland,-27.569609,153.298798,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,13,Australia,AU,Queensland,-27.490562,153.249287,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2023,12,3,Australia,AU,Queensland,-27.511711,153.251021,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,8,31,Australia,AU,Queensland,-27.490545,153.249085,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,5,10,Australia,AU,Queensland,-27.511487,153.248539,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,26,Australia,AU,Queensland,-27.514498,153.19632,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,4,1,Australia,AU,Queensland,-27.613386,153.201431,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,3,Australia,AU,Queensland,-27.49055,153.245438,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,7,Australia,AU,Queensland,-27.575697,153.271499,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,28,Australia,AU,Queensland,-27.511358,153.250292,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2022,12,24,Australia,AU,Queensland,-27.497764,153.400031,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,9,27,Australia,AU,Queensland,-27.513808,153.256026,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,4,15,Australia,AU,Queensland,-27.546486,153.268417,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,9,20,Australia,AU,Queensland,-27.575204,153.271058,EPSG:4326 +HUMAN_OBSERVATION,Deb Tabbart,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-27.425452,153.519181,EPSG:4326 +HUMAN_OBSERVATION,Rachel Wright,1,,,2021,8,10,Australia,AU,Queensland,-27.551841,153.270409,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,14,Australia,AU,Queensland,-27.511324,153.250292,EPSG:4326 +HUMAN_OBSERVATION,Rom Cris,1,MALE,,2021,10,8,Australia,AU,Queensland,-27.39685,153.44063,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,1,Australia,AU,Queensland,-27.511567,153.24998,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,23,Australia,AU,Queensland,-27.576607,153.273161,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,8,6,Australia,AU,Queensland,-27.506912,153.232651,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,24,Australia,AU,Queensland,-27.576574,153.27197,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,9,28,Australia,AU,Queensland,-27.61498,153.198134,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,10,29,Australia,AU,Queensland,-27.50036,153.248386,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,11,16,Australia,AU,Queensland,-27.5749,153.272271,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,9,Australia,AU,Queensland,-27.5138,153.198898,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,9,28,Australia,AU,Queensland,-27.598081,153.20745,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,8,Australia,AU,Queensland,-27.514859,153.256023,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,12,9,Australia,AU,Queensland,-27.575033,153.271304,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,6,2,Australia,AU,Queensland,-27.511439,153.247025,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,12,5,Australia,AU,Queensland,-27.497908,153.400497,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,27,Australia,AU,Queensland,-27.57487,153.272227,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,5,22,Australia,AU,Queensland,-27.509285,153.251709,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,12,8,Australia,AU,Queensland,-27.5011,153.249353,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,7,30,Australia,AU,Queensland,-27.511668,153.251369,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2024,1,23,Australia,AU,Queensland,-27.501072,153.224559,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,1,Australia,AU,Queensland,-27.513608,153.256052,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,19,Australia,AU,Queensland,-27.488634,153.243729,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2022,1,19,Australia,AU,Queensland,-27.498565,153.225482,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,12,14,Australia,AU,Queensland,-27.57568,153.271455,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,19,Australia,AU,Queensland,-27.511429,153.250049,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,7,5,Australia,AU,Queensland,-27.50932,153.251923,EPSG:4326 +HUMAN_OBSERVATION,Caio Neto,1,FEMALE,,2021,7,14,Australia,AU,Queensland,-27.509328,153.201745,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,2,13,Australia,AU,Queensland,-27.53692,153.273552,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,4,25,Australia,AU,Queensland,-27.490103,153.246033,EPSG:4326 +HUMAN_OBSERVATION,Sarah Helliwell,1,,,2023,5,6,Australia,AU,Queensland,-27.494235,153.252105,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,15,Australia,AU,Queensland,-27.513577,153.255933,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,12,2,Australia,AU,Queensland,-27.489587,153.248935,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,6,17,Australia,AU,Queensland,-27.489899,153.245056,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,FEMALE,,2023,1,22,Australia,AU,Queensland,-27.42488,153.51913,EPSG:4326 +HUMAN_OBSERVATION,Katrina Anderson,1,,,2023,1,15,Australia,AU,Queensland,-27.539332,153.271703,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,24,Australia,AU,Queensland,-27.576003,153.271219,EPSG:4326 +HUMAN_OBSERVATION,Caren Gillis,1,FEMALE,,2022,11,20,Australia,AU,Queensland,-27.499564,153.221061,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,10,27,Australia,AU,Queensland,-27.510103,153.247881,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,10,25,Australia,AU,Queensland,-27.512378,153.255548,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,9,9,Australia,AU,Queensland,-27.512955,153.195023,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,6,24,Australia,AU,Queensland,-27.497007,153.245959,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2023,1,24,Australia,AU,Queensland,-27.489674,153.2444,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-27.49434,153.40279,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,13,Australia,AU,Queensland,-27.610979,153.221954,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,9,16,Australia,AU,Queensland,-27.489575,153.244316,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,21,Australia,AU,Queensland,-27.500983,153.251944,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,1,31,Australia,AU,Queensland,-27.48992,153.244202,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,9,5,Australia,AU,Queensland,-27.49033,153.247299,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,29,Australia,AU,Queensland,-27.575377,153.271148,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,FEMALE,,2024,7,26,Australia,AU,Queensland,-27.511787,153.254137,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,5,Australia,AU,Queensland,-27.51142,153.250262,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,18,Australia,AU,Queensland,-27.506077,153.197891,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,30,Australia,AU,Queensland,-27.575326,153.269883,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,13,Australia,AU,Queensland,-27.575697,153.271499,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,11,9,Australia,AU,Queensland,-27.575697,153.271499,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,11,25,Australia,AU,Queensland,-27.575642,153.271004,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,29,Australia,AU,Queensland,-27.511777,153.253438,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,7,Australia,AU,Queensland,-27.511541,153.250591,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,11,Australia,AU,Queensland,-27.491346,153.2435,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,4,3,Australia,AU,Queensland,-27.539793,153.271088,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,12,26,Australia,AU,Queensland,-27.503063,153.251835,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,12,Australia,AU,Queensland,-27.489857,153.248661,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,,,2022,12,20,Australia,AU,Queensland,-27.554813,153.275081,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,23,Australia,AU,Queensland,-27.513855,153.202988,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,11,1,Australia,AU,Queensland,-27.511633,153.250838,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,10,28,Australia,AU,Queensland,-27.489352,153.243018,EPSG:4326 +HUMAN_OBSERVATION,Rachel Wright,1,,,2021,9,23,Australia,AU,Queensland,-27.552028,153.270199,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,6,25,Australia,AU,Queensland,-27.514352,153.251939,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,4,7,Australia,AU,Queensland,-27.491345,153.243786,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,10,22,Australia,AU,Queensland,-27.511606,153.250034,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,18,Australia,AU,Queensland,-27.51135,153.250216,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2022,11,5,Australia,AU,Queensland,-27.575584,153.271315,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,22,Australia,AU,Queensland,-27.575395,153.271891,EPSG:4326 +HUMAN_OBSERVATION,Amanda Gerber,1,,,2022,10,14,Australia,AU,Queensland,-27.501111,153.356237,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,12,Australia,AU,Queensland,-27.511915,153.253114,EPSG:4326 +HUMAN_OBSERVATION,Liz Foote,1,MALE,,2022,10,14,Australia,AU,Queensland,-27.494025,153.403136,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,21,Australia,AU,Queensland,-27.511362,153.250179,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,21,Australia,AU,Queensland,-27.51116,153.249966,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,19,Australia,AU,Queensland,-27.51173,153.253788,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,14,Australia,AU,Queensland,-27.490713,153.247269,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2023,5,31,Australia,AU,Queensland,-27.469636,153.424094,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,16,Australia,AU,Queensland,-27.613293,153.201385,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,9,Australia,AU,Queensland,-27.511504,153.248602,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,27,Australia,AU,Queensland,-27.512075,153.2422,EPSG:4326 +HUMAN_OBSERVATION,Daniel Dezentje,1,,,2023,3,4,Australia,AU,Queensland,-27.500225,153.221949,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,21,Australia,AU,Queensland,-27.575395,153.271891,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,3,Australia,AU,Queensland,-27.511761,153.203827,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,3,4,Australia,AU,Queensland,-27.499846,153.199188,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,6,10,Australia,AU,Queensland,-27.509246,153.251869,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,20,Australia,AU,Queensland,-27.512213,153.255517,EPSG:4326 +HUMAN_OBSERVATION,Detection Dogs for Conservation UniSC,1,FEMALE,,2022,8,9,Australia,AU,Queensland,-27.488483,153.244106,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,29,Australia,AU,Queensland,-27.501087,153.234421,EPSG:4326 +HUMAN_OBSERVATION,Kelli Longworth,1,,,2022,10,14,Australia,AU,Queensland,-27.496952,153.402191,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,8,22,Australia,AU,Queensland,-27.490165,153.247256,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,10,Australia,AU,Queensland,-27.575395,153.271891,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,10,22,Australia,AU,Queensland,-27.511556,153.250215,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,27,Australia,AU,Queensland,-27.511377,153.250136,EPSG:4326 +HUMAN_OBSERVATION,Steph Jones,1,,,2023,11,10,Australia,AU,Queensland,-27.497204,153.246086,EPSG:4326 +HUMAN_OBSERVATION,Amy Carmichael,1,,,2022,12,26,Australia,AU,Queensland,-27.491456,153.198273,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2021,11,10,Australia,AU,Queensland,-27.547013,153.259234,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,9,15,Australia,AU,Queensland,-27.624348,153.206985,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,3,Australia,AU,Queensland,-27.489917,153.248827,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,8,3,Australia,AU,Queensland,-27.536697,153.272308,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,29,Australia,AU,Queensland,-27.514499,153.25195,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,2,22,Australia,AU,Queensland,-27.574329,153.272249,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,2,8,Australia,AU,Queensland,-27.489834,153.245346,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,3,Australia,AU,Queensland,-27.489529,153.245392,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,16,Australia,AU,Queensland,-27.511243,153.250293,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,MALE,,2021,10,8,Australia,AU,Queensland,-27.405222,153.437375,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,21,Australia,AU,Queensland,-27.511615,153.249381,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,11,27,Australia,AU,Queensland,-27.575337,153.271154,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,18,Australia,AU,Queensland,-27.576387,153.272547,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,6,17,Australia,AU,Queensland,-27.509295,153.251892,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,23,Australia,AU,Queensland,-27.49051,153.248656,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,4,30,Australia,AU,Queensland,-27.576117,153.273343,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,10,19,Australia,AU,Queensland,-27.490221,153.248444,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,28,Australia,AU,Queensland,-27.51142,153.250049,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,27,Australia,AU,Queensland,-27.512015,153.251735,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,1,11,Australia,AU,Queensland,-27.490164,153.246978,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,6,9,Australia,AU,Queensland,-27.511505,153.248583,EPSG:4326 +HUMAN_OBSERVATION,Cathryn Dexter,1,MALE,,2023,4,1,Australia,AU,Queensland,-27.501532,153.252701,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,6,Australia,AU,Queensland,-27.514026,153.255903,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,,,2022,4,19,Australia,AU,Queensland,-27.549829,153.271315,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,5,6,Australia,AU,Queensland,-27.500996,153.232086,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,13,Australia,AU,Queensland,-27.511385,153.25009,EPSG:4326 +HUMAN_OBSERVATION,Willemijn Seijn,1,FEMALE,,2024,10,11,Australia,AU,Queensland,-27.398478,153.440283,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,9,16,Australia,AU,Queensland,-27.569403,153.297974,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,11,29,Australia,AU,Queensland,-27.575604,153.270832,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,12,17,Australia,AU,Queensland,-27.490287,153.2482,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,15,Australia,AU,Queensland,-27.491414,153.244629,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2024,1,31,Australia,AU,Queensland,-27.548808,153.255956,EPSG:4326 +HUMAN_OBSERVATION,Adam Reid,1,,,2024,6,21,Australia,AU,Queensland,-27.511982,153.253533,EPSG:4326 +HUMAN_OBSERVATION,Patrick Wyllie,1,,,2023,9,12,Australia,AU,Queensland,-27.569377,153.297541,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,8,27,Australia,AU,Queensland,-27.511767,153.253816,EPSG:4326 +HUMAN_OBSERVATION,Gabrielle McKee,1,,,2021,8,21,Australia,AU,Queensland,-27.430046,153.528317,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,4,Australia,AU,Queensland,-27.511761,153.25378,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,11,Australia,AU,Queensland,-27.490472,153.24843,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,16,Australia,AU,Queensland,-27.575623,153.270983,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,7,Australia,AU,Queensland,-27.513255,153.256803,EPSG:4326 +HUMAN_OBSERVATION,Kathy Stanek,1,,,2023,11,21,Australia,AU,Queensland,-27.529328,153.274223,EPSG:4326 +HUMAN_OBSERVATION,Tracey Woolford,1,,,2023,2,7,Australia,AU,Queensland,-27.55897,153.273729,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,10,10,Australia,AU,Queensland,-27.498817,153.246362,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,7,18,Australia,AU,Queensland,-27.513334,153.202728,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,28,Australia,AU,Queensland,-27.501768,153.25265,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2021,10,9,Australia,AU,Queensland,-27.39655,153.439053,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,5,3,Australia,AU,Queensland,-27.488878,153.245789,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,4,28,Australia,AU,Queensland,-27.50721,153.202,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,,,2024,5,22,Australia,AU,Queensland,-27.622965,153.207108,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,16,Australia,AU,Queensland,-27.511341,153.250288,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,23,Australia,AU,Queensland,-27.503448,153.251685,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,15,Australia,AU,Queensland,-27.511428,153.24762,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,3,30,Australia,AU,Queensland,-27.50939,153.19814,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,12,13,Australia,AU,Queensland,-27.495759,153.245201,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,13,Australia,AU,Queensland,-27.507936,153.196594,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2022,12,1,Australia,AU,Queensland,-27.488847,153.246625,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,6,Australia,AU,Queensland,-27.576155,153.27154,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,16,Australia,AU,Queensland,-27.575051,153.271401,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,2,10,Australia,AU,Queensland,-27.500975,153.252009,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,14,Australia,AU,Queensland,-27.51136,153.250394,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,9,28,Australia,AU,Queensland,-27.512065,153.242054,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,30,Australia,AU,Queensland,-27.511466,153.248662,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,11,1,Australia,AU,Queensland,-27.491407,153.235275,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,9,29,Australia,AU,Queensland,-27.39295,153.441952,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,22,Australia,AU,Queensland,-27.51132,153.250267,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,6,5,Australia,AU,Queensland,-27.511415,153.247154,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,2,Australia,AU,Queensland,-27.575147,153.271948,EPSG:4326 +HUMAN_OBSERVATION,Bethany Cramb,1,MALE,,2023,3,12,Australia,AU,Queensland,-27.39355,153.440789,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2022,2,6,Australia,AU,Queensland,-27.493959,153.213535,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,7,Australia,AU,Queensland,-27.511753,153.254403,EPSG:4326 +HUMAN_OBSERVATION,Michael C,1,,,2023,5,4,Australia,AU,Queensland,-27.501934,153.225114,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,24,Australia,AU,Queensland,-27.511793,153.253824,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,4,25,Australia,AU,Queensland,-27.575775,153.27315,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,6,Australia,AU,Queensland,-27.400685,153.438128,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,,,2022,3,26,Australia,AU,Queensland,-27.55293,153.277795,EPSG:4326 +HUMAN_OBSERVATION,Jude Mcfarlane,1,,,2023,1,4,Australia,AU,Queensland,-27.42302,153.514042,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,19,Australia,AU,Queensland,-27.499043,153.246228,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,6,26,Australia,AU,Queensland,-27.513954,153.25195,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,9,30,Australia,AU,Queensland,-27.490111,153.24857,EPSG:4326 +HUMAN_OBSERVATION,Tracey Justice,1,,,2022,1,31,Australia,AU,Queensland,-27.554984,153.252969,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,7,Australia,AU,Queensland,-27.511198,153.201309,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,1,Australia,AU,Queensland,-27.62237,153.202026,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,11,Australia,AU,Queensland,-27.497994,153.246311,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,5,Australia,AU,Queensland,-27.504025,153.252231,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,21,Australia,AU,Queensland,-27.514058,153.256002,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,5,3,Australia,AU,Queensland,-27.511337,153.199554,EPSG:4326 +HUMAN_OBSERVATION,Shirley Willey,1,,,2024,10,11,Australia,AU,Queensland,-27.40034,153.43947,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,8,Australia,AU,Queensland,-27.489833,153.249299,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,25,Australia,AU,Queensland,-27.575528,153.27109,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,16,Australia,AU,Queensland,-27.496968,153.245884,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,4,25,Australia,AU,Queensland,-27.505604,153.19902,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,1,Australia,AU,Queensland,-27.575467,153.270897,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,4,26,Australia,AU,Queensland,-27.575623,153.273278,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,MALE,,2024,10,25,Australia,AU,Queensland,-27.510165,153.247913,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,10,16,Australia,AU,Queensland,-27.54003,153.268646,EPSG:4326 +HUMAN_OBSERVATION,Cathryn Dexter,1,MALE,,2021,10,1,Australia,AU,Queensland,-27.546497,153.25609,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,11,Australia,AU,Queensland,-27.498792,153.246848,EPSG:4326 +HUMAN_OBSERVATION,Caren Gillis,1,MALE,,2022,11,19,Australia,AU,Queensland,-27.49196,153.245373,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,3,21,Australia,AU,Queensland,-27.537366,153.275886,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,12,18,Australia,AU,Queensland,-27.574234,153.271862,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,14,Australia,AU,Queensland,-27.511617,153.250649,EPSG:4326 +HUMAN_OBSERVATION,Laurel-Lea Ross,1,,,2021,4,30,Australia,AU,Queensland,-27.532496,153.231232,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,5,Australia,AU,Queensland,-27.511372,153.250252,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,10,Australia,AU,Queensland,-27.50218,153.250228,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,21,Australia,AU,Queensland,-27.501074,153.252111,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,8,30,Australia,AU,Queensland,-27.488506,153.243927,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,12,30,Australia,AU,Queensland,-27.574253,153.271444,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,6,1,Australia,AU,Queensland,-27.511481,153.247132,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,25,Australia,AU,Queensland,-27.614954,153.197601,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,2,16,Australia,AU,Queensland,-27.511464,153.247541,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,6,22,Australia,AU,Queensland,-27.509215,153.251807,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,9,21,Australia,AU,Queensland,-27.511293,153.250007,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,5,10,Australia,AU,Queensland,-27.511267,153.249961,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,5,2,Australia,AU,Queensland,-27.53396,153.282816,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,2,1,Australia,AU,Queensland,-27.501861,153.252682,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,10,11,Australia,AU,Queensland,-27.498038,153.246261,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,FEMALE,,2024,1,27,Australia,AU,Queensland,-27.502624,153.22544,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,21,Australia,AU,Queensland,-27.574386,153.271583,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2024,8,15,Australia,AU,Queensland,-27.498984,153.230009,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,16,Australia,AU,Queensland,-27.490808,153.246022,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,29,Australia,AU,Queensland,-27.512517,153.242094,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2020,12,20,Australia,AU,Queensland,-27.511469,153.248162,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,6,7,Australia,AU,Queensland,-27.511806,153.254265,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,2,26,Australia,AU,Queensland,-27.612839,153.199112,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,4,23,Australia,AU,Queensland,-27.56858,153.2965,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2022,11,2,Australia,AU,Queensland,-27.57565,153.270838,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2023,1,16,Australia,AU,Queensland,-27.425174,153.519452,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,5,Australia,AU,Queensland,-27.511665,153.251048,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,5,31,Australia,AU,Queensland,-27.511491,153.248728,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,6,24,Australia,AU,Queensland,-27.489561,153.244934,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,FEMALE,,2023,11,2,Australia,AU,Queensland,-27.526668,153.284221,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,,,2023,10,15,Australia,AU,Queensland,-27.501789,153.225158,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,7,31,Australia,AU,Queensland,-27.490639,153.24896,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,3,18,Australia,AU,Queensland,-27.568682,153.295105,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,4,Australia,AU,Queensland,-27.511324,153.249907,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,10,15,Australia,AU,Queensland,-27.489333,153.242433,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,,,2021,2,23,Australia,AU,Queensland,-27.554128,153.272238,EPSG:4326 +HUMAN_OBSERVATION,Karen Tebbit,1,,,2021,7,31,Australia,AU,Queensland,-27.5301,153.240045,EPSG:4326 +HUMAN_OBSERVATION,Scott Bretherton,1,MALE,,2023,7,29,Australia,AU,Queensland,-27.398834,153.44097,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,6,Australia,AU,Queensland,-27.489912,153.245468,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,20,Australia,AU,Queensland,-27.511557,153.25184,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,5,25,Australia,AU,Queensland,-27.509322,153.251688,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,1,Australia,AU,Queensland,-27.506563,153.196106,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,22,Australia,AU,Queensland,-27.497839,153.246266,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,8,5,Australia,AU,Queensland,-27.511442,153.246768,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,2,Australia,AU,Queensland,-27.50107,153.25206,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,23,Australia,AU,Queensland,-27.57665,153.271948,EPSG:4326 +HUMAN_OBSERVATION,Elizabeth,1,,,2021,10,8,Australia,AU,Queensland,-27.399718,153.439245,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2021,9,24,Australia,AU,Queensland,-27.499628,153.24648,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,5,Australia,AU,Queensland,-27.613527,153.198227,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,9,Australia,AU,Queensland,-27.514491,153.255964,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,6,3,Australia,AU,Queensland,-27.509176,153.203461,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,12,6,Australia,AU,Queensland,-27.575566,153.270918,EPSG:4326 +HUMAN_OBSERVATION,Anne Roberts,1,,,2021,7,11,Australia,AU,Queensland,-27.518883,153.261872,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,12,27,Australia,AU,Queensland,-27.490847,153.24746,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,16,Australia,AU,Queensland,-27.511616,153.251059,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,9,18,Australia,AU,Queensland,-27.511775,153.253856,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,11,15,Australia,AU,Queensland,-27.512299,153.255514,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,7,6,Australia,AU,Queensland,-27.510462,153.198486,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,12,Australia,AU,Queensland,-27.575052,153.271991,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,29,Australia,AU,Queensland,-27.513934,153.255937,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,9,3,Australia,AU,Queensland,-27.49143,153.244841,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,12,10,Australia,AU,Queensland,-27.575604,153.270854,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,23,Australia,AU,Queensland,-27.575642,153.271111,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,9,Australia,AU,Queensland,-27.504411,153.200389,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,7,18,Australia,AU,Queensland,-27.507673,153.196671,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,9,30,Australia,AU,Queensland,-27.546833,153.258247,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,3,21,Australia,AU,Queensland,-27.511491,153.247572,EPSG:4326 +HUMAN_OBSERVATION,Deb Tabbard,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-27.392795,153.441705,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,16,Australia,AU,Queensland,-27.574024,153.271616,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,4,Australia,AU,Queensland,-27.575501,153.271036,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,3,19,Australia,AU,Queensland,-27.511514,153.247616,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,6,23,Australia,AU,Queensland,-27.511567,153.250525,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,15,Australia,AU,Queensland,-27.510473,153.200729,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,10,5,Australia,AU,Queensland,-27.490797,153.247894,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,9,17,Australia,AU,Queensland,-27.511292,153.250076,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,16,Australia,AU,Queensland,-27.497829,153.245921,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,26,Australia,AU,Queensland,-27.569456,153.298126,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,18,Australia,AU,Queensland,-27.511398,153.250316,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,26,Australia,AU,Queensland,-27.511619,153.250852,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,12,26,Australia,AU,Queensland,-27.511889,153.253053,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,7,6,Australia,AU,Queensland,-27.61273,153.198349,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,4,Australia,AU,Queensland,-27.57547,153.271219,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,8,22,Australia,AU,Queensland,-27.490361,153.245379,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2021,10,9,Australia,AU,Queensland,-27.494375,153.405375,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,11,17,Australia,AU,Queensland,-27.511389,153.250354,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,24,Australia,AU,Queensland,-27.51141,153.250305,EPSG:4326 +HUMAN_OBSERVATION,Lara Herrero,1,,,2021,5,3,Australia,AU,Queensland,-27.530677,153.281969,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,6,24,Australia,AU,Queensland,-27.569353,153.298035,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,,,2024,4,8,Australia,AU,Queensland,-27.61248,153.19764,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,10,Australia,AU,Queensland,-27.511278,153.250054,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,14,Australia,AU,Queensland,-27.511606,153.250002,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,29,Australia,AU,Queensland,-27.507017,153.195068,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,15,Australia,AU,Queensland,-27.514666,153.198685,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,11,Australia,AU,Queensland,-27.511545,153.248551,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,7,1,Australia,AU,Queensland,-27.489626,153.244659,EPSG:4326 +HUMAN_OBSERVATION,Alice Gudge,1,,,2023,2,13,Australia,AU,Queensland,-27.537808,153.254825,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,11,28,Australia,AU,Queensland,-27.492468,153.244308,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,11,14,Australia,AU,Queensland,-27.511751,153.253826,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,17,Australia,AU,Queensland,-27.499096,153.24653,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,5,Australia,AU,Queensland,-27.510912,153.203064,EPSG:4326 +HUMAN_OBSERVATION,Sharyn Rundle-Thiele,1,,,2021,6,10,Australia,AU,Queensland,-27.504541,153.181343,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,30,Australia,AU,Queensland,-27.513549,153.256019,EPSG:4326 +HUMAN_OBSERVATION,Sue White,1,,,2024,8,28,Australia,AU,Queensland,-27.51164,153.248913,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,2,8,Australia,AU,Queensland,-27.500862,153.252035,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,8,30,Australia,AU,Queensland,-27.49028,153.248441,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,13,Australia,AU,Queensland,-27.505995,153.195648,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,10,3,Australia,AU,Queensland,-27.515543,153.239904,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,8,Australia,AU,Queensland,-27.511719,153.250567,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,17,Australia,AU,Queensland,-27.511785,153.250482,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2022,5,2,Australia,AU,Queensland,-27.546514,153.259674,EPSG:4326 +HUMAN_OBSERVATION,Yasmin Butler,1,,,2022,3,27,Australia,AU,Queensland,-27.511389,153.24681,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,,,2022,12,14,Australia,AU,Queensland,-27.501084,153.249387,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,4,Australia,AU,Queensland,-27.511611,153.250725,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,10,4,Australia,AU,Queensland,-27.500492,153.246856,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,20,Australia,AU,Queensland,-27.575586,153.271644,EPSG:4326 +HUMAN_OBSERVATION,Deb Tabbart,1,MALE,,2021,10,8,Australia,AU,Queensland,-27.424932,153.518359,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,MALE,,2023,11,6,Australia,AU,Queensland,-27.500483,153.224075,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,5,Australia,AU,Queensland,-27.615158,153.197845,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,3,27,Australia,AU,Queensland,-27.5687,153.29518,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,7,1,Australia,AU,Queensland,-27.508247,153.202301,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,5,28,Australia,AU,Queensland,-27.51138,153.250282,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2021,1,27,Australia,AU,Queensland,-27.497588,153.245882,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,5,13,Australia,AU,Queensland,-27.511784,153.254267,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2021,7,13,Australia,AU,Queensland,-27.490764,153.248569,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,6,14,Australia,AU,Queensland,-27.510327,153.200747,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,13,Australia,AU,Queensland,-27.51128,153.199463,EPSG:4326 +HUMAN_OBSERVATION,Kieralee Tori,1,FEMALE,,2021,10,9,Australia,AU,Queensland,-27.50228,153.403038,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2022,8,15,Australia,AU,Queensland,-27.54667,153.267926,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,20,Australia,AU,Queensland,-27.514364,153.195099,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,8,25,Australia,AU,Queensland,-27.509496,153.251371,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2023,1,5,Australia,AU,Queensland,-27.537434,153.273804,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,11,7,Australia,AU,Queensland,-27.538607,153.270691,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,4,23,Australia,AU,Queensland,-27.56839,153.29539,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,24,Australia,AU,Queensland,-27.575737,153.271025,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2022,10,14,Australia,AU,Queensland,-27.422627,153.514325,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,9,27,Australia,AU,Queensland,-27.50333,153.250767,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,6,24,Australia,AU,Queensland,-27.509279,153.250961,EPSG:4326 +HUMAN_OBSERVATION,Kelly Jones,1,,,2023,4,29,Australia,AU,Queensland,-27.532546,153.281319,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,15,Australia,AU,Queensland,-27.511568,153.249963,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,9,Australia,AU,Queensland,-27.575813,153.271326,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,21,Australia,AU,Queensland,-27.490753,153.247391,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,7,9,Australia,AU,Queensland,-27.489407,153.244049,EPSG:4326 +HUMAN_OBSERVATION,stuart Gudgeon,1,FEMALE,,2024,7,15,Australia,AU,Queensland,-27.568413,153.296326,EPSG:4326 +HUMAN_OBSERVATION,Karen Tebbit,1,,,2023,7,23,Australia,AU,Queensland,-27.507727,153.251122,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,1,17,Australia,AU,Queensland,-27.49124,153.245026,EPSG:4326 +HUMAN_OBSERVATION,Tinneke Van Leur,1,MALE,,2022,10,14,Australia,AU,Queensland,-27.425711,153.516759,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,8,Australia,AU,Queensland,-27.576821,153.272077,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,25,Australia,AU,Queensland,-27.490873,153.244979,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,14,Australia,AU,Queensland,-27.5118,153.253894,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,6,24,Australia,AU,Queensland,-27.511527,153.247733,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,3,Australia,AU,Queensland,-27.502732,153.250332,EPSG:4326 +HUMAN_OBSERVATION,Scott Bretherton,1,,,2023,8,4,Australia,AU,Queensland,-27.398906,153.440525,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,30,Australia,AU,Queensland,-27.49023,153.248613,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2022,3,25,Australia,AU,Queensland,-27.490923,153.248312,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,9,14,Australia,AU,Queensland,-27.511302,153.249863,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,17,Australia,AU,Queensland,-27.575377,153.271148,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,19,Australia,AU,Queensland,-27.511512,153.250095,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,13,Australia,AU,Queensland,-27.509341,153.251768,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,11,21,Australia,AU,Queensland,-27.523592,153.285736,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,6,Australia,AU,Queensland,-27.392631,153.440643,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,12,6,Australia,AU,Queensland,-27.496896,153.246017,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,8,8,Australia,AU,Queensland,-27.490826,153.248656,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,1,Australia,AU,Queensland,-27.513909,153.255939,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,5,30,Australia,AU,Queensland,-27.51148,153.247046,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,10,1,Australia,AU,Queensland,-27.393315,153.441807,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,3,23,Australia,AU,Queensland,-27.490152,153.247437,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,8,Australia,AU,Queensland,-27.498676,153.224503,EPSG:4326 +HUMAN_OBSERVATION,Joe Gao,1,FEMALE,,2022,10,14,Australia,AU,Queensland,-27.399824,153.438647,EPSG:4326 +HUMAN_OBSERVATION,Christina Holmes,1,,,2023,10,21,Australia,AU,Queensland,-27.556601,153.282266,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,4,20,Australia,AU,Queensland,-27.575528,153.273515,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,1,11,Australia,AU,Queensland,-27.500846,153.252051,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,,,2024,5,22,Australia,AU,Queensland,-27.511635,153.249008,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,4,Australia,AU,Queensland,-27.511264,153.250176,EPSG:4326 +HUMAN_OBSERVATION,Deb Tabbard,1,,,2021,10,8,Australia,AU,Queensland,-27.393433,153.439675,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2022,11,10,Australia,AU,Queensland,-27.575832,153.271197,EPSG:4326 +HUMAN_OBSERVATION,Jack Devlin,1,FEMALE,,2022,10,14,Australia,AU,Queensland,-27.407287,153.46349,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,3,27,Australia,AU,Queensland,-27.490349,153.245105,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,9,Australia,AU,Queensland,-27.511561,153.248648,EPSG:4326 +HUMAN_OBSERVATION,Michael C,1,,,2023,7,18,Australia,AU,Queensland,-27.507175,153.223111,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,3,20,Australia,AU,Queensland,-27.498097,153.246088,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,11,Australia,AU,Queensland,-27.50075,153.234573,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,10,19,Australia,AU,Queensland,-27.620731,153.206497,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,8,26,Australia,AU,Queensland,-27.509655,153.251733,EPSG:4326 +HUMAN_OBSERVATION,John Baker,1,FEMALE,,2021,6,27,Australia,AU,Queensland,-27.49335,153.252282,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,6,18,Australia,AU,Queensland,-27.498003,153.245948,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,4,10,Australia,AU,Queensland,-27.490494,153.244944,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,29,Australia,AU,Queensland,-27.502683,153.250241,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,9,Australia,AU,Queensland,-27.511764,153.253431,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,5,Australia,AU,Queensland,-27.511281,153.250221,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,7,25,Australia,AU,Queensland,-27.490431,153.245193,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,8,1,Australia,AU,Queensland,-27.511746,153.253647,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,9,Australia,AU,Queensland,-27.490782,153.248316,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,6,30,Australia,AU,Queensland,-27.576574,153.273128,EPSG:4326 +HUMAN_OBSERVATION,Maria Dotlic,1,,,2021,10,31,Australia,AU,Queensland,-27.546457,153.228023,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,,,2023,9,25,Australia,AU,Queensland,-27.515567,153.239839,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,6,Australia,AU,Queensland,-27.621227,153.204071,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,6,Australia,AU,Queensland,-27.57568,153.271562,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,1,Australia,AU,Queensland,-27.511412,153.250268,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,5,27,Australia,AU,Queensland,-27.50873,153.204224,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,9,Australia,AU,Queensland,-27.575604,153.270918,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2024,8,15,Australia,AU,Queensland,-27.495067,153.219447,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,,,2024,9,30,Australia,AU,Queensland,-27.508062,153.203506,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,2,26,Australia,AU,Queensland,-27.490059,153.246017,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,29,Australia,AU,Queensland,-27.511318,153.24758,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,6,18,Australia,AU,Queensland,-27.572579,153.272817,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,9,6,Australia,AU,Queensland,-27.524868,153.280571,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,8,Australia,AU,Queensland,-27.511834,153.254238,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,16,Australia,AU,Queensland,-27.501228,153.234604,EPSG:4326 +HUMAN_OBSERVATION,stuart Gudgeon,1,FEMALE,,2024,7,15,Australia,AU,Queensland,-27.505301,153.233734,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,9,24,Australia,AU,Queensland,-27.510919,153.244364,EPSG:4326 +HUMAN_OBSERVATION,Jonathan Simpson,1,,,2023,4,24,Australia,AU,Queensland,-27.490964,153.248011,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,5,19,Australia,AU,Queensland,-27.569441,153.298386,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,8,23,Australia,AU,Queensland,-27.511995,153.253049,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,7,Australia,AU,Queensland,-27.510986,153.201141,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,3,4,Australia,AU,Queensland,-27.511288,153.198517,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,13,Australia,AU,Queensland,-27.501373,153.252379,EPSG:4326 +HUMAN_OBSERVATION,Kathy Stanek,1,,,2024,3,31,Australia,AU,Queensland,-27.538877,153.274584,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,5,25,Australia,AU,Queensland,-27.511381,153.249854,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,4,22,Australia,AU,Queensland,-27.614571,153.197632,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,,,2024,3,4,Australia,AU,Queensland,-27.490318,153.245087,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,1,12,Australia,AU,Queensland,-27.501268,153.224849,EPSG:4326 +HUMAN_OBSERVATION,Alyssa F,1,,,2022,10,15,Australia,AU,Queensland,-27.520908,153.236039,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,7,16,Australia,AU,Queensland,-27.497217,153.246061,EPSG:4326 +HUMAN_OBSERVATION,Ellanah Moormann recording on behalf of Jarred Myburg,1,,,2024,5,26,Australia,AU,Queensland,-27.499248,153.257797,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,16,Australia,AU,Queensland,-27.490985,153.248312,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,11,Australia,AU,Queensland,-27.514605,153.241859,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2022,11,13,Australia,AU,Queensland,-27.469439,153.424351,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,7,Australia,AU,Queensland,-27.575718,153.271283,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,31,Australia,AU,Queensland,-27.574691,153.271283,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,5,6,Australia,AU,Queensland,-27.509462,153.251511,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,18,Australia,AU,Queensland,-27.575927,153.271197,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,5,Australia,AU,Queensland,-27.490577,153.248833,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,FEMALE,,2024,9,29,Australia,AU,Queensland,-27.513594,153.255975,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,11,11,Australia,AU,Queensland,-27.511042,153.201782,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,6,10,Australia,AU,Queensland,-27.569275,153.297836,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,11,21,Australia,AU,Queensland,-27.490482,153.248924,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,11,13,Australia,AU,Queensland,-27.499262,153.223135,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,5,9,Australia,AU,Queensland,-27.539095,153.272759,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,12,Australia,AU,Queensland,-27.511967,153.252977,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,12,23,Australia,AU,Queensland,-27.574596,153.271669,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,7,25,Australia,AU,Queensland,-27.540131,153.268982,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,1,30,Australia,AU,Queensland,-27.50542,153.198047,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2022,12,27,Australia,AU,Queensland,-27.575432,153.271143,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,3,1,Australia,AU,Queensland,-27.499763,153.246251,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,20,Australia,AU,Queensland,-27.511562,153.250794,EPSG:4326 +HUMAN_OBSERVATION,Tahlie Page,1,,,2024,10,11,Australia,AU,Queensland,-27.396778,153.439844,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,9,6,Australia,AU,Queensland,-27.511793,153.251677,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2022,8,31,Australia,AU,Queensland,-27.490463,153.248677,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,1,Australia,AU,Queensland,-27.502855,153.250316,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,21,Australia,AU,Queensland,-27.511497,153.25264,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,10,9,Australia,AU,Queensland,-27.572584,153.299698,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,6,Australia,AU,Queensland,-27.514498,153.241957,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,7,Australia,AU,Queensland,-27.497617,153.246167,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,22,Australia,AU,Queensland,-27.490076,153.248154,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,12,Australia,AU,Queensland,-27.575622,153.271101,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,9,30,Australia,AU,Queensland,-27.510655,153.245734,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,MALE,,2023,7,12,Australia,AU,Queensland,-27.490597,153.245406,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,6,14,Australia,AU,Queensland,-27.505069,153.201266,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,5,27,Australia,AU,Queensland,-27.569235,153.298492,EPSG:4326 +HUMAN_OBSERVATION,Richard Stone,1,,,2022,11,9,Australia,AU,Queensland,-27.496023,153.253471,EPSG:4326 +HUMAN_OBSERVATION,Claire Tweddle,1,FEMALE,,2022,11,28,Australia,AU,Queensland,-27.499088,153.222606,EPSG:4326 +HUMAN_OBSERVATION,Julie Elliott,1,MALE,,2023,11,13,Australia,AU,Queensland,-27.432175,153.523716,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,FEMALE,,2023,10,28,Australia,AU,Queensland,-27.499417,153.223131,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,11,1,Australia,AU,Queensland,-27.489269,153.242249,EPSG:4326 +HUMAN_OBSERVATION,John Baker,1,,,2021,7,5,Australia,AU,Queensland,-27.500254,153.259417,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,3,Australia,AU,Queensland,-27.490859,153.248506,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,12,Australia,AU,Queensland,-27.574329,153.272442,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,12,15,Australia,AU,Queensland,-27.490959,153.245453,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,8,Australia,AU,Queensland,-27.515372,153.239813,EPSG:4326 +HUMAN_OBSERVATION,T rundle ,1,,,2022,12,23,Australia,AU,Queensland,-27.56168,153.228024,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,10,15,Australia,AU,Queensland,-27.513543,153.251853,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,4,28,Australia,AU,Queensland,-27.61508,153.191814,EPSG:4326 +HUMAN_OBSERVATION,Richie Hall,1,,,2024,10,12,Australia,AU,Queensland,-27.568,153.295,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,11,11,Australia,AU,Queensland,-27.506294,153.197144,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,2,Australia,AU,Queensland,-27.490881,153.245071,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,9,Australia,AU,Queensland,-27.511328,153.250175,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,11,3,Australia,AU,Queensland,-27.490663,153.248023,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,13,Australia,AU,Queensland,-27.612938,153.197662,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,8,Australia,AU,Queensland,-27.504419,153.187744,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,22,Australia,AU,Queensland,-27.50325,153.251381,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,8,Australia,AU,Queensland,-27.5114,153.250126,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,11,29,Australia,AU,Queensland,-27.52689,153.282745,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2021,10,9,Australia,AU,Queensland,-27.396108,153.438364,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,10,7,Australia,AU,Queensland,-27.489429,153.247177,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,23,Australia,AU,Queensland,-27.513853,153.255974,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,13,Australia,AU,Queensland,-27.490232,153.246948,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,1,19,Australia,AU,Queensland,-27.511518,153.249692,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,16,Australia,AU,Queensland,-27.489477,153.245346,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,8,12,Australia,AU,Queensland,-27.51164,153.250908,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,8,Australia,AU,Queensland,-27.575128,153.271948,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,3,Australia,AU,Queensland,-27.490246,153.249083,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,6,Australia,AU,Queensland,-27.511873,153.253898,EPSG:4326 +HUMAN_OBSERVATION,Candy Daunt,1,FEMALE,,2021,10,9,Australia,AU,Queensland,-27.427604,153.530116,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,12,9,Australia,AU,Queensland,-27.500901,153.249405,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2024,7,25,Australia,AU,Queensland,-27.512052,153.254862,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,26,Australia,AU,Queensland,-27.511667,153.250491,EPSG:4326 +HUMAN_OBSERVATION,Christina Zdenek,1,,,2023,3,22,Australia,AU,Queensland,-27.514522,153.203019,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,9,28,Australia,AU,Queensland,-27.512072,153.24205,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,29,Australia,AU,Queensland,-27.503878,153.232193,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,19,Australia,AU,Queensland,-27.575166,153.271304,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,4,Australia,AU,Queensland,-27.511647,153.249984,EPSG:4326 +HUMAN_OBSERVATION,Cathryn Dexter,1,MALE,,2022,10,14,Australia,AU,Queensland,-27.404462,153.437379,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,7,22,Australia,AU,Queensland,-27.509267,153.251668,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,3,14,Australia,AU,Queensland,-27.511501,153.248162,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,3,Australia,AU,Queensland,-27.502834,153.25027,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,9,Australia,AU,Queensland,-27.503204,153.2513,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,24,Australia,AU,Queensland,-27.511229,153.250023,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,10,21,Australia,AU,Queensland,-27.508228,153.203979,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,26,Australia,AU,Queensland,-27.490726,153.244966,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,11,Australia,AU,Queensland,-27.501018,153.25201,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,24,Australia,AU,Queensland,-27.490579,153.248516,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,1,11,Australia,AU,Queensland,-27.491056,153.245725,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,14,Australia,AU,Queensland,-27.490117,153.249321,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,FEMALE,,2023,10,4,Australia,AU,Queensland,-27.5,153.23,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,9,27,Australia,AU,Queensland,-27.510618,153.198624,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,19,Australia,AU,Queensland,-27.491034,153.248632,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,MALE,,2024,2,18,Australia,AU,Queensland,-27.511486,153.247677,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,24,Australia,AU,Queensland,-27.572102,153.272867,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2023,1,24,Australia,AU,Queensland,-27.491043,153.244919,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,10,7,Australia,AU,Queensland,-27.515541,153.239901,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,4,25,Australia,AU,Queensland,-27.49012,153.245209,EPSG:4326 +HUMAN_OBSERVATION,Stuart Cameron,1,,,2022,10,14,Australia,AU,Queensland,-27.397946,153.438578,EPSG:4326 +HUMAN_OBSERVATION,Lara Herrero,1,,,2021,11,10,Australia,AU,Queensland,-27.530724,153.28195,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,10,21,Australia,AU,Queensland,-27.592668,153.246914,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,22,Australia,AU,Queensland,-27.513583,153.255234,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,11,Australia,AU,Queensland,-27.490934,153.248809,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,25,Australia,AU,Queensland,-27.513306,153.255142,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,12,27,Australia,AU,Queensland,-27.575984,153.271347,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,2,24,Australia,AU,Queensland,-27.500984,153.252025,EPSG:4326 +HUMAN_OBSERVATION,stuart Gudgeon,1,FEMALE,,2024,7,15,Australia,AU,Queensland,-27.489779,153.245026,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,1,8,Australia,AU,Queensland,-27.510568,153.25223,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2023,5,20,Australia,AU,Queensland,-27.500273,153.404621,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,3,13,Australia,AU,Queensland,-27.530923,153.282216,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,29,Australia,AU,Queensland,-27.514619,153.241885,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,4,18,Australia,AU,Queensland,-27.489185,153.242981,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,9,22,Australia,AU,Queensland,-27.490601,153.248164,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,6,10,Australia,AU,Queensland,-27.50931,153.251648,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,10,26,Australia,AU,Queensland,-27.511631,153.250807,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,20,Australia,AU,Queensland,-27.51145,153.25003,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,9,30,Australia,AU,Queensland,-27.508049,153.203537,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,12,16,Australia,AU,Queensland,-27.574938,153.272163,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,9,15,Australia,AU,Queensland,-27.546171,153.26976,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,6,22,Australia,AU,Queensland,-27.612606,153.198196,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,FEMALE,,2024,9,27,Australia,AU,Queensland,-27.513637,153.256037,EPSG:4326 +HUMAN_OBSERVATION,Bethany Cramb,1,MALE,,2022,10,23,Australia,AU,Queensland,-27.569635,153.1997,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,12,Australia,AU,Queensland,-27.515358,153.239821,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,9,Australia,AU,Queensland,-27.511413,153.250096,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,4,24,Australia,AU,Queensland,-27.491297,153.244816,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2022,9,6,Australia,AU,Queensland,-27.490526,153.248581,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,18,Australia,AU,Queensland,-27.61347,153.199829,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,5,19,Australia,AU,Queensland,-27.511419,153.249919,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,5,9,Australia,AU,Queensland,-27.508483,153.197262,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,6,4,Australia,AU,Queensland,-27.511504,153.248178,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,,,2024,7,27,Australia,AU,Queensland,-27.511624,153.250515,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,14,Australia,AU,Queensland,-27.489618,153.244858,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,7,Australia,AU,Queensland,-27.515372,153.239803,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,7,18,Australia,AU,Queensland,-27.61293,153.197571,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,21,Australia,AU,Queensland,-27.567892,153.29686,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,6,Australia,AU,Queensland,-27.615093,153.197693,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,12,Australia,AU,Queensland,-27.499745,153.246779,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,3,20,Australia,AU,Queensland,-27.511502,153.24769,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,9,12,Australia,AU,Queensland,-27.490023,153.249406,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,9,25,Australia,AU,Queensland,-27.5103,153.245093,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,30,Australia,AU,Queensland,-27.511673,153.25138,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,3,1,Australia,AU,Queensland,-27.575642,153.271004,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,21,Australia,AU,Queensland,-27.511411,153.24854,EPSG:4326 +HUMAN_OBSERVATION,Deb Tabbard,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-27.393433,153.439675,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,21,Australia,AU,Queensland,-27.511407,153.247174,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,9,26,Australia,AU,Queensland,-27.51537,153.239813,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2022,12,28,Australia,AU,Queensland,-27.575432,153.271058,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,6,17,Australia,AU,Queensland,-27.50925,153.251895,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,MALE,,2022,3,9,Australia,AU,Queensland,-27.51152,153.248517,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,12,23,Australia,AU,Queensland,-27.503277,153.251207,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,11,18,Australia,AU,Queensland,-27.490642,153.248154,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,27,Australia,AU,Queensland,-27.574348,153.271283,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,17,Australia,AU,Queensland,-27.574653,153.271455,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,4,29,Australia,AU,Queensland,-27.511747,153.252711,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,9,9,Australia,AU,Queensland,-27.489639,153.244385,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,FEMALE,,2024,10,4,Australia,AU,Queensland,-27.511725,153.25055,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,20,Australia,AU,Queensland,-27.576631,153.271905,EPSG:4326 +HUMAN_OBSERVATION,Adam Reid,1,,,2024,6,24,Australia,AU,Queensland,-27.526065,153.275548,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,10,21,Australia,AU,Queensland,-27.490549,153.248101,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,20,Australia,AU,Queensland,-27.511611,153.249522,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,25,Australia,AU,Queensland,-27.495749,153.245226,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,27,Australia,AU,Queensland,-27.511402,153.250232,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,12,7,Australia,AU,Queensland,-27.503542,153.19371,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,13,Australia,AU,Queensland,-27.505342,153.19722,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,29,Australia,AU,Queensland,-27.511267,153.250173,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,29,Australia,AU,Queensland,-27.614145,153.197006,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,30,Australia,AU,Queensland,-27.511759,153.250608,EPSG:4326 +HUMAN_OBSERVATION,dodger29@bigpond.net.au dodger29@bigpond.net.au,1,MALE,,2021,12,6,Australia,AU,Queensland,-27.537074,153.180434,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,12,Australia,AU,Queensland,-27.613417,153.198502,EPSG:4326 +HUMAN_OBSERVATION,Cathryn Dexter,1,FEMALE,,2023,9,5,Australia,AU,Queensland,-27.490582,153.245656,EPSG:4326 +HUMAN_OBSERVATION,Detection Dogs for Conservation UniSC,1,FEMALE,,2022,8,9,Australia,AU,Queensland,-27.489713,153.248879,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,28,Australia,AU,Queensland,-27.490338,153.248409,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,11,2,Australia,AU,Queensland,-27.511057,153.245834,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,27,Australia,AU,Queensland,-27.513701,153.256015,EPSG:4326 +HUMAN_OBSERVATION,Shirley Willey,1,FEMALE,,2024,10,11,Australia,AU,Queensland,-27.40092,153.43826,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2022,9,28,Australia,AU,Queensland,-27.54652,153.268058,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,29,Australia,AU,Queensland,-27.49118,153.244659,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,9,17,Australia,AU,Queensland,-27.511391,153.24989,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,2,Australia,AU,Queensland,-27.490946,153.24836,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,3,5,Australia,AU,Queensland,-27.575394,153.27109,EPSG:4326 +HUMAN_OBSERVATION,Julie Elliott,1,MALE,,2021,8,25,Australia,AU,Queensland,-27.431893,153.523742,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,28,Australia,AU,Queensland,-27.490052,153.24861,EPSG:4326 +HUMAN_OBSERVATION,John Baker,1,MALE,,2021,1,1,Australia,AU,Queensland,-27.494794,153.255609,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,17,Australia,AU,Queensland,-27.49084,153.247516,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,,,2023,6,11,Australia,AU,Queensland,-27.556107,153.2733,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,9,29,Australia,AU,Queensland,-27.574329,153.271787,EPSG:4326 +HUMAN_OBSERVATION,Chris Orpen,1,,,2023,12,21,Australia,AU,Queensland,-27.531507,153.271637,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,16,Australia,AU,Queensland,-27.511373,153.250163,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,5,Australia,AU,Queensland,-27.53956,153.270645,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,30,Australia,AU,Queensland,-27.511386,153.250136,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,18,Australia,AU,Queensland,-27.511274,153.250129,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,10,29,Australia,AU,Queensland,-27.489674,153.248841,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,12,16,Australia,AU,Queensland,-27.574481,153.27212,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2022,5,8,Australia,AU,Queensland,-27.546553,153.259771,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,26,Australia,AU,Queensland,-27.511429,153.250163,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,3,19,Australia,AU,Queensland,-27.51451,153.1985,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,16,Australia,AU,Queensland,-27.49238,153.244624,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2023,1,24,Australia,AU,Queensland,-27.538385,153.270844,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,25,Australia,AU,Queensland,-27.511435,153.201462,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,14,Australia,AU,Queensland,-27.576383,153.273214,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2024,1,17,Australia,AU,Queensland,-27.509235,153.197915,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,10,13,Australia,AU,Queensland,-27.606379,153.228348,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,3,26,Australia,AU,Queensland,-27.53527,153.27849,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,5,25,Australia,AU,Queensland,-27.5122,153.255557,EPSG:4326 +HUMAN_OBSERVATION,Bernadette Williams,1,,,2022,12,7,Australia,AU,Queensland,-27.396145,153.438213,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,25,Australia,AU,Queensland,-27.511613,153.25002,EPSG:4326 +HUMAN_OBSERVATION,Julie Elliott,1,MALE,,2024,7,8,Australia,AU,Queensland,-27.432785,153.5237,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,8,Australia,AU,Queensland,-27.513566,153.256035,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,29,Australia,AU,Queensland,-27.490631,153.245575,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,9,29,Australia,AU,Queensland,-27.510823,153.243091,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,8,Australia,AU,Queensland,-27.50125,153.252694,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,11,13,Australia,AU,Queensland,-27.503714,153.22556,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,2,Australia,AU,Queensland,-27.511414,153.250133,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,3,24,Australia,AU,Queensland,-27.61314,153.19807,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,8,28,Australia,AU,Queensland,-27.51179,153.254353,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,10,14,Australia,AU,Queensland,-27.514364,153.198593,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,2,20,Australia,AU,Queensland,-27.490575,153.248969,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,1,Australia,AU,Queensland,-27.576398,153.272688,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,29,Australia,AU,Queensland,-27.511303,153.25293,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,22,Australia,AU,Queensland,-27.575699,153.270961,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,19,Australia,AU,Queensland,-27.516359,153.22142,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,11,5,Australia,AU,Queensland,-27.490513,153.248076,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,10,27,Australia,AU,Queensland,-27.5077,153.205658,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,23,Australia,AU,Queensland,-27.511393,153.250352,EPSG:4326 +HUMAN_OBSERVATION,Russell Miller,1,MALE,,2024,3,5,Australia,AU,Queensland,-27.568724,153.295303,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,22,Australia,AU,Queensland,-27.512748,153.242205,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,2,26,Australia,AU,Queensland,-27.511642,153.24504,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,9,28,Australia,AU,Queensland,-27.532003,153.259781,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,23,Australia,AU,Queensland,-27.503402,153.25156,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,11,7,Australia,AU,Queensland,-27.575361,153.271961,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,8,4,Australia,AU,Queensland,-27.511657,153.252445,EPSG:4326 +HUMAN_OBSERVATION,David Vance,1,MALE,,2022,11,27,Australia,AU,Queensland,-27.54444,153.273032,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,2,22,Australia,AU,Queensland,-27.539175,153.271378,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,11,6,Australia,AU,Queensland,-27.575395,153.271891,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,12,15,Australia,AU,Queensland,-27.489729,153.244507,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,9,5,Australia,AU,Queensland,-27.490871,153.24527,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2022,12,6,Australia,AU,Queensland,-27.49873,153.226388,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,10,8,Australia,AU,Queensland,-27.506235,153.224258,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,27,Australia,AU,Queensland,-27.567863,153.296509,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,4,15,Australia,AU,Queensland,-27.538576,153.270584,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,18,Australia,AU,Queensland,-27.511446,153.250099,EPSG:4326 +HUMAN_OBSERVATION,Sarah Weldon,1,,,2021,11,15,Australia,AU,Queensland,-27.532183,153.233972,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,12,7,Australia,AU,Queensland,-27.613012,153.199722,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2023,11,12,Australia,AU,Queensland,-27.491367,153.243765,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,1,14,Australia,AU,Queensland,-27.489923,153.249305,EPSG:4326 +HUMAN_OBSERVATION,Margaret McNeil,1,MALE,,2021,9,7,Australia,AU,Queensland,-27.507655,153.201851,EPSG:4326 +HUMAN_OBSERVATION,Christina Zdenek,1,MALE,,2024,3,24,Australia,AU,Queensland,-27.510733,153.200364,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,10,27,Australia,AU,Queensland,-27.503083,153.225725,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,1,31,Australia,AU,Queensland,-27.488651,153.244034,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,FEMALE,,2023,1,12,Australia,AU,Queensland,-27.499793,153.223132,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,9,22,Australia,AU,Queensland,-27.515378,153.239821,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,22,Australia,AU,Queensland,-27.511741,153.253797,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,29,Australia,AU,Queensland,-27.513189,153.20224,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,2,Australia,AU,Queensland,-27.511457,153.250093,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,12,25,Australia,AU,Queensland,-27.57509,153.271476,EPSG:4326 +HUMAN_OBSERVATION,Tom Short,1,,,2024,1,21,Australia,AU,Queensland,-27.51445,153.251908,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,20,Australia,AU,Queensland,-27.49089,153.245019,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,11,Australia,AU,Queensland,-27.575395,153.271891,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,2,Australia,AU,Queensland,-27.503195,153.251317,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,6,10,Australia,AU,Queensland,-27.489649,153.24472,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,8,2,Australia,AU,Queensland,-27.511612,153.250712,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,MALE,,2024,5,23,Australia,AU,Queensland,-27.509244,153.251667,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,5,22,Australia,AU,Queensland,-27.511262,153.250278,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2022,9,28,Australia,AU,Queensland,-27.608927,153.233597,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2021,6,24,Australia,AU,Queensland,-27.48985,153.250008,EPSG:4326 +HUMAN_OBSERVATION,Laurel-Lea Ross,1,MALE,,2021,5,5,Australia,AU,Queensland,-27.532972,153.232369,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,6,10,Australia,AU,Queensland,-27.621159,153.207855,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,12,Australia,AU,Queensland,-27.501099,153.252347,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2021,10,9,Australia,AU,Queensland,-27.493411,153.405589,EPSG:4326 +HUMAN_OBSERVATION,Jane Fox,1,MALE,,2023,10,17,Australia,AU,Queensland,-27.496501,153.2061,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2022,3,31,Australia,AU,Queensland,-27.544781,153.259213,EPSG:4326 +HUMAN_OBSERVATION,Terry Lovejoy,1,FEMALE,,2023,4,24,Australia,AU,Queensland,-27.501138,153.234067,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,3,8,Australia,AU,Queensland,-27.511375,153.25028,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,14,Australia,AU,Queensland,-27.512829,153.240343,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,9,25,Australia,AU,Queensland,-27.575166,153.270929,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,21,Australia,AU,Queensland,-27.511564,153.25166,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,6,20,Australia,AU,Queensland,-27.572827,153.273278,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2021,3,28,Australia,AU,Queensland,-27.4909,153.247964,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2021,10,9,Australia,AU,Queensland,-27.493447,153.405611,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2022,8,6,Australia,AU,Queensland,-27.546714,153.243012,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,5,12,Australia,AU,Queensland,-27.491097,153.24469,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,7,Australia,AU,Queensland,-27.49033,153.246841,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,22,Australia,AU,Queensland,-27.490539,153.248093,EPSG:4326 +HUMAN_OBSERVATION,Kelli Longworth,1,,,2022,10,14,Australia,AU,Queensland,-27.39356,153.441678,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2023,1,5,Australia,AU,Queensland,-27.546566,153.272156,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,15,Australia,AU,Queensland,-27.511757,153.253627,EPSG:4326 +HUMAN_OBSERVATION,Loretta Jeynes,1,FEMALE,,2023,9,3,Australia,AU,Queensland,-27.55099,153.272967,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,3,11,Australia,AU,Queensland,-27.51341,153.202077,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,8,6,Australia,AU,Queensland,-27.506912,153.232651,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,8,22,Australia,AU,Queensland,-27.48964,153.24814,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,9,27,Australia,AU,Queensland,-27.515359,153.239791,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,9,Australia,AU,Queensland,-27.393035,153.440114,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,11,4,Australia,AU,Queensland,-27.501333,153.249481,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,7,Australia,AU,Queensland,-27.511371,153.250221,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,3,7,Australia,AU,Queensland,-27.489676,153.245209,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,13,Australia,AU,Queensland,-27.489548,153.245285,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,25,Australia,AU,Queensland,-27.501259,153.252143,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,2,Australia,AU,Queensland,-27.511563,153.250095,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,4,10,Australia,AU,Queensland,-27.576212,153.272098,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,5,27,Australia,AU,Queensland,-27.573949,153.272206,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,7,Australia,AU,Queensland,-27.507566,153.232178,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,16,Australia,AU,Queensland,-27.509217,153.251827,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,2,Australia,AU,Queensland,-27.5745,153.271347,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,11,10,Australia,AU,Queensland,-27.511832,153.254366,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,MALE,,2022,11,16,Australia,AU,Queensland,-27.494934,153.21913,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,4,8,Australia,AU,Queensland,-27.48992,153.24612,EPSG:4326 +HUMAN_OBSERVATION,Bruno Teixeira,1,,,2024,1,6,Australia,AU,Queensland,-27.497361,153.206253,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,11,13,Australia,AU,Queensland,-27.574867,153.272275,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,11,13,Australia,AU,Queensland,-27.511759,153.253857,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,23,Australia,AU,Queensland,-27.511531,153.248648,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,7,14,Australia,AU,Queensland,-27.511455,153.247808,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,23,Australia,AU,Queensland,-27.513914,153.256011,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2023,12,18,Australia,AU,Queensland,-27.496516,153.245567,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,1,11,Australia,AU,Queensland,-27.495735,153.245804,EPSG:4326 +HUMAN_OBSERVATION,Deb Tabbart,1,MALE,,2021,10,8,Australia,AU,Queensland,-27.499177,153.400348,EPSG:4326 +HUMAN_OBSERVATION,Caren Gillis,1,FEMALE,,2024,10,23,Australia,AU,Queensland,-27.498069,153.21174,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,9,Australia,AU,Queensland,-27.511805,153.253851,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,29,Australia,AU,Queensland,-27.48984,153.249407,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,8,26,Australia,AU,Queensland,-27.511645,153.251161,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,26,Australia,AU,Queensland,-27.613434,153.198456,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,22,Australia,AU,Queensland,-27.490057,153.249313,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,18,Australia,AU,Queensland,-27.575528,153.271047,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,15,Australia,AU,Queensland,-27.514678,153.242007,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,5,22,Australia,AU,Queensland,-27.509288,153.2517,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,28,Australia,AU,Queensland,-27.489934,153.249295,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,26,Australia,AU,Queensland,-27.489994,153.249329,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,18,Australia,AU,Queensland,-27.490833,153.247454,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2022,3,13,Australia,AU,Queensland,-27.532973,153.282192,EPSG:4326 +HUMAN_OBSERVATION,Claire Wright,1,,,2022,10,14,Australia,AU,Queensland,-27.396058,153.440434,EPSG:4326 +HUMAN_OBSERVATION,Louisa Cass,1,,,2024,5,1,Australia,AU,Queensland,-27.513058,153.255158,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,21,Australia,AU,Queensland,-27.507467,153.232285,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,1,26,Australia,AU,Queensland,-27.50087,153.251717,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,4,3,Australia,AU,Queensland,-27.490385,153.248489,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,16,Australia,AU,Queensland,-27.511419,153.247096,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,30,Australia,AU,Queensland,-27.502871,153.250796,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,10,3,Australia,AU,Queensland,-27.490805,153.244921,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,30,Australia,AU,Queensland,-27.511296,153.250418,EPSG:4326 +HUMAN_OBSERVATION,Fiona Wythes,1,,,2022,2,19,Australia,AU,Queensland,-27.50155,153.259554,EPSG:4326 +HUMAN_OBSERVATION,Patty,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-27.425318,153.537938,EPSG:4326 +HUMAN_OBSERVATION,Scott Bretherton,1,FEMALE,,2023,9,9,Australia,AU,Queensland,-27.398865,153.441045,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,30,Australia,AU,Queensland,-27.511253,153.25042,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,8,Australia,AU,Queensland,-27.511314,153.25037,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2024,7,24,Australia,AU,Queensland,-27.495063,153.21957,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,5,Australia,AU,Queensland,-27.575623,153.270961,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,6,24,Australia,AU,Queensland,-27.56881,153.295563,EPSG:4326 +HUMAN_OBSERVATION,Willemijn Seijn,1,,,2023,10,1,Australia,AU,Queensland,-27.493824,153.404923,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,19,Australia,AU,Queensland,-27.621668,153.208542,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,12,7,Australia,AU,Queensland,-27.612837,153.199585,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,3,11,Australia,AU,Queensland,-27.48997,153.24524,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,4,3,Australia,AU,Queensland,-27.50106,153.232758,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,10,16,Australia,AU,Queensland,-27.513274,153.25195,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,8,2,Australia,AU,Queensland,-27.490244,153.248634,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,13,Australia,AU,Queensland,-27.620489,153.20488,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2023,11,15,Australia,AU,Queensland,-27.491372,153.243759,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,6,29,Australia,AU,Queensland,-27.491165,153.245483,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,FEMALE,,2023,10,5,Australia,AU,Queensland,-27.503897,153.225661,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,10,23,Australia,AU,Queensland,-27.489527,153.248912,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2022,12,20,Australia,AU,Queensland,-27.503642,153.225541,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,28,Australia,AU,Queensland,-27.514524,153.251906,EPSG:4326 +HUMAN_OBSERVATION,Di Cartmill,1,FEMALE,,2024,10,11,Australia,AU,Queensland,-27.497765,153.399633,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,11,18,Australia,AU,Queensland,-27.49711,153.24595,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,4,18,Australia,AU,Queensland,-27.510416,153.195343,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,26,Australia,AU,Queensland,-27.564884,153.305481,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,10,23,Australia,AU,Queensland,-27.490229,153.248583,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,10,4,Australia,AU,Queensland,-27.489935,153.249336,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,11,Australia,AU,Queensland,-27.500939,153.251992,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,26,Australia,AU,Queensland,-27.502574,153.250217,EPSG:4326 +HUMAN_OBSERVATION,Scott Bretherton,1,FEMALE,,2023,9,10,Australia,AU,Queensland,-27.39877,153.440576,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,14,Australia,AU,Queensland,-27.501749,153.25256,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2024,1,16,Australia,AU,Queensland,-27.508595,153.203156,EPSG:4326 +HUMAN_OBSERVATION,Tom Short,1,FEMALE,,2023,10,9,Australia,AU,Queensland,-27.511692,153.251419,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,8,Australia,AU,Queensland,-27.51139,153.250151,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,12,15,Australia,AU,Queensland,-27.604959,153.229309,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,23,Australia,AU,Queensland,-27.51133,153.250291,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,18,Australia,AU,Queensland,-27.511158,153.246222,EPSG:4326 +HUMAN_OBSERVATION,Yasmin Butler,1,,,2022,1,23,Australia,AU,Queensland,-27.489493,153.248228,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,10,Australia,AU,Queensland,-27.57585,153.271101,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,5,Australia,AU,Queensland,-27.509132,153.250931,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,4,15,Australia,AU,Queensland,-27.501408,153.232391,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,3,18,Australia,AU,Queensland,-27.511501,153.247283,EPSG:4326 +HUMAN_OBSERVATION,Roberta jays,1,,,2023,8,17,Australia,AU,Queensland,-27.511503,153.247256,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,3,2,Australia,AU,Queensland,-27.511584,153.249961,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,FEMALE,,2020,12,19,Australia,AU,Queensland,-27.554243,153.272431,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,7,25,Australia,AU,Queensland,-27.491041,153.244946,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,7,Australia,AU,Queensland,-27.501374,153.252691,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,10,25,Australia,AU,Queensland,-27.513088,153.242127,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,7,Australia,AU,Queensland,-27.490612,153.248215,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,1,31,Australia,AU,Queensland,-27.50913,153.201828,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,9,16,Australia,AU,Queensland,-27.490359,153.248149,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,3,5,Australia,AU,Queensland,-27.500095,153.231049,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,1,Australia,AU,Queensland,-27.490505,153.248184,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,30,Australia,AU,Queensland,-27.511865,153.253769,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,7,3,Australia,AU,Queensland,-27.569464,153.298111,EPSG:4326 +HUMAN_OBSERVATION,Straddie Spotter,1,,,2024,4,21,Australia,AU,Queensland,-27.431594,153.52653,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,3,Australia,AU,Queensland,-27.489622,153.245605,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,23,Australia,AU,Queensland,-27.511753,153.250253,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,11,Australia,AU,Queensland,-27.513024,153.202441,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,9,Australia,AU,Queensland,-27.500962,153.252078,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,21,Australia,AU,Queensland,-27.512175,153.201813,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,5,Australia,AU,Queensland,-27.511587,153.249974,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2021,5,10,Australia,AU,Queensland,-27.490522,153.24842,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2024,10,9,Australia,AU,Queensland,-27.511567,153.250648,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,7,3,Australia,AU,Queensland,-27.509256,153.251697,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,9,Australia,AU,Queensland,-27.575413,153.271994,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,11,7,Australia,AU,Queensland,-27.546438,153.268845,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,18,Australia,AU,Queensland,-27.490753,153.244989,EPSG:4326 +HUMAN_OBSERVATION,Bernadette Williams,1,,,2022,12,5,Australia,AU,Queensland,-27.396613,153.438889,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,5,6,Australia,AU,Queensland,-27.507469,153.203445,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,5,27,Australia,AU,Queensland,-27.509276,153.251674,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,4,14,Australia,AU,Queensland,-27.501186,153.252975,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,20,Australia,AU,Queensland,-27.574177,153.271583,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,14,Australia,AU,Queensland,-27.509326,153.251948,EPSG:4326 +HUMAN_OBSERVATION,Helen Hinton,1,MALE,,2023,1,16,Australia,AU,Queensland,-27.544298,153.271782,EPSG:4326 +HUMAN_OBSERVATION,Ellanah Moormann,1,MALE,,2023,12,10,Australia,AU,Queensland,-27.511592,153.250244,EPSG:4326 +HUMAN_OBSERVATION,Brian Wood,1,,,2024,2,24,Australia,AU,Queensland,-27.393455,153.439838,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,7,Australia,AU,Queensland,-27.514477,153.251986,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,9,Australia,AU,Queensland,-27.490891,153.248376,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,3,Australia,AU,Queensland,-27.489918,153.244049,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,11,15,Australia,AU,Queensland,-27.490091,153.249298,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,5,Australia,AU,Queensland,-27.511328,153.250312,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,10,17,Australia,AU,Queensland,-27.510104,153.247907,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,31,Australia,AU,Queensland,-27.511672,153.250619,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,17,Australia,AU,Queensland,-27.575946,153.271347,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,11,4,Australia,AU,Queensland,-27.569761,153.299728,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,21,Australia,AU,Queensland,-27.514427,153.25195,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,18,Australia,AU,Queensland,-27.511797,153.25383,EPSG:4326 +HUMAN_OBSERVATION,Michael C,1,FEMALE,,2023,1,1,Australia,AU,Queensland,-27.498992,153.230628,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,6,25,Australia,AU,Queensland,-27.576593,153.273193,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,3,4,Australia,AU,Queensland,-27.512814,153.203003,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,6,Australia,AU,Queensland,-27.513571,153.255239,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,28,Australia,AU,Queensland,-27.574737,153.271051,EPSG:4326 +HUMAN_OBSERVATION,Kelli Longworth,1,,,2022,10,14,Australia,AU,Queensland,-27.496197,153.399329,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,11,2,Australia,AU,Queensland,-27.490848,153.247856,EPSG:4326 +HUMAN_OBSERVATION,Marie Petersen,1,,,2021,5,23,Australia,AU,Queensland,-27.52279,153.261188,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,4,27,Australia,AU,Queensland,-27.491363,153.244743,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,15,Australia,AU,Queensland,-27.509366,153.251785,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,9,30,Australia,AU,Queensland,-27.573986,153.272517,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,FEMALE,,2023,9,10,Australia,AU,Queensland,-27.502661,153.225448,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,3,16,Australia,AU,Queensland,-27.490746,153.248656,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2021,1,2,Australia,AU,Queensland,-27.497358,153.246151,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,13,Australia,AU,Queensland,-27.513472,153.202362,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,4,Australia,AU,Queensland,-27.513165,153.22435,EPSG:4326 +HUMAN_OBSERVATION,Amy Carmichael,1,MALE,,2023,3,15,Australia,AU,Queensland,-27.491779,153.199292,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,9,7,Australia,AU,Queensland,-27.547303,153.259127,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,27,Australia,AU,Queensland,-27.575356,153.271133,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,4,12,Australia,AU,Queensland,-27.576631,153.272249,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,9,30,Australia,AU,Queensland,-27.490294,153.245498,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,12,9,Australia,AU,Queensland,-27.503421,153.251026,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2021,10,17,Australia,AU,Queensland,-27.53476,153.273665,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,14,Australia,AU,Queensland,-27.574653,153.272098,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2022,11,16,Australia,AU,Queensland,-27.491224,153.244853,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,8,2,Australia,AU,Queensland,-27.509311,153.251942,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,4,18,Australia,AU,Queensland,-27.490534,153.248688,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,29,Australia,AU,Queensland,-27.50122,153.252392,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,9,21,Australia,AU,Queensland,-27.574861,153.270886,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,3,24,Australia,AU,Queensland,-27.61335,153.19826,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,9,30,Australia,AU,Queensland,-27.614197,153.198944,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,MALE,,2023,10,13,Australia,AU,Queensland,-27.523547,153.285659,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,19,Australia,AU,Queensland,-27.511501,153.250073,EPSG:4326 +HUMAN_OBSERVATION,Willemijn Seijn,1,,,2022,10,14,Australia,AU,Queensland,-27.426575,153.530158,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,9,30,Australia,AU,Queensland,-27.515299,153.19841,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,23,Australia,AU,Queensland,-27.490238,153.236542,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,1,28,Australia,AU,Queensland,-27.61326,153.198582,EPSG:4326 +HUMAN_OBSERVATION,Jasmyn Heffernan,1,,,2024,10,23,Australia,AU,Queensland,-27.551941,153.244622,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,18,Australia,AU,Queensland,-27.489859,153.245331,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,3,8,Australia,AU,Queensland,-27.612696,153.198303,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,15,Australia,AU,Queensland,-27.511647,153.250135,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,4,15,Australia,AU,Queensland,-27.489119,153.242996,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,20,Australia,AU,Queensland,-27.513984,153.256073,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,1,Australia,AU,Queensland,-27.513523,153.202469,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2023,11,6,Australia,AU,Queensland,-27.53807,153.17837,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2022,12,20,Australia,AU,Queensland,-27.499388,153.223314,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,5,6,Australia,AU,Queensland,-27.491127,153.244669,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,10,31,Australia,AU,Queensland,-27.510091,153.24796,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,,,2024,3,24,Australia,AU,Queensland,-27.61326,153.20119,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,13,Australia,AU,Queensland,-27.511513,153.248618,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,2,26,Australia,AU,Queensland,-27.51187,153.241843,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,FEMALE,,2023,10,6,Australia,AU,Queensland,-27.490105,153.249351,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,23,Australia,AU,Queensland,-27.51281,153.242111,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,27,Australia,AU,Queensland,-27.511614,153.250638,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,2,Australia,AU,Queensland,-27.575585,153.27094,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,9,25,Australia,AU,Queensland,-27.511511,153.242277,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,3,14,Australia,AU,Queensland,-27.490904,153.248463,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,5,14,Australia,AU,Queensland,-27.491132,153.244687,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn ,1,FEMALE,,2022,10,21,Australia,AU,Queensland,-27.553325,153.271158,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,,,2023,10,14,Australia,AU,Queensland,-27.503128,153.225617,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,23,Australia,AU,Queensland,-27.49067,153.248941,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,10,26,Australia,AU,Queensland,-27.510118,153.248053,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,27,Australia,AU,Queensland,-27.515703,153.196915,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,5,25,Australia,AU,Queensland,-27.511808,153.253854,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,7,Australia,AU,Queensland,-27.504492,153.25254,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,8,13,Australia,AU,Queensland,-27.509187,153.251708,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,12,7,Australia,AU,Queensland,-27.613239,153.199753,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,10,9,Australia,AU,Queensland,-27.511688,153.25173,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,9,26,Australia,AU,Queensland,-27.510543,153.245182,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,10,23,Australia,AU,Queensland,-27.504934,153.193344,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,23,Australia,AU,Queensland,-27.501084,153.252116,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,31,Australia,AU,Queensland,-27.490248,153.249227,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,6,24,Australia,AU,Queensland,-27.489643,153.245056,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,11,12,Australia,AU,Queensland,-27.499497,153.246422,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,21,Australia,AU,Queensland,-27.512682,153.256034,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,2,22,Australia,AU,Queensland,-27.490267,153.245438,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,5,22,Australia,AU,Queensland,-27.50157,153.232544,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,4,Australia,AU,Queensland,-27.511362,153.250097,EPSG:4326 +HUMAN_OBSERVATION,Deb Tabbart,1,MALE,,2021,10,8,Australia,AU,Queensland,-27.394674,153.441167,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,24,Australia,AU,Queensland,-27.514361,153.251993,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,1,18,Australia,AU,Queensland,-27.498829,153.246507,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,10,27,Australia,AU,Queensland,-27.513104,153.242462,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,7,29,Australia,AU,Queensland,-27.511793,153.254042,EPSG:4326 +HUMAN_OBSERVATION,Cathryn Dexter,1,FEMALE,,2022,10,16,Australia,AU,Queensland,-27.494938,153.404464,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,6,17,Australia,AU,Queensland,-27.506273,153.233749,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,29,Australia,AU,Queensland,-27.4974,153.24609,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,4,Australia,AU,Queensland,-27.515341,153.239869,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,6,17,Australia,AU,Queensland,-27.506273,153.233749,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,4,29,Australia,AU,Queensland,-27.546344,153.259825,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,FEMALE,,2020,12,24,Australia,AU,Queensland,-27.554319,153.272173,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,6,23,Australia,AU,Queensland,-27.511541,153.243817,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,6,Australia,AU,Queensland,-27.511389,153.250099,EPSG:4326 +HUMAN_OBSERVATION,Laura Clyne,1,,,2021,10,28,Australia,AU,Queensland,-27.398993,153.442802,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,23,Australia,AU,Queensland,-27.505962,153.198914,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,19,Australia,AU,Queensland,-27.51166,153.203735,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2022,9,9,Australia,AU,Queensland,-27.489385,153.249842,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,9,29,Australia,AU,Queensland,-27.515368,153.239821,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,9,25,Australia,AU,Queensland,-27.490606,153.248086,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,12,Australia,AU,Queensland,-27.511425,153.247243,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,3,Australia,AU,Queensland,-27.625813,153.208664,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,6,4,Australia,AU,Queensland,-27.576688,153.271927,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,,,2023,10,15,Australia,AU,Queensland,-27.50385,153.225678,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,FEMALE,,2023,9,16,Australia,AU,Queensland,-27.495389,153.219346,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,11,12,Australia,AU,Queensland,-27.494354,153.219186,EPSG:4326 +HUMAN_OBSERVATION,Amy Carmichael,1,,,2023,1,2,Australia,AU,Queensland,-27.491599,153.197865,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,13,Australia,AU,Queensland,-27.613251,153.198883,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,3,5,Australia,AU,Queensland,-27.506691,153.233337,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,9,Australia,AU,Queensland,-27.574158,153.271841,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,12,Australia,AU,Queensland,-27.57684,153.272034,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,4,2,Australia,AU,Queensland,-27.50861,153.20222,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,9,15,Australia,AU,Queensland,-27.511669,153.25075,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,11,Australia,AU,Queensland,-27.489555,153.245468,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,13,Australia,AU,Queensland,-27.511655,153.252534,EPSG:4326 +HUMAN_OBSERVATION,Julie Elliott,1,MALE,,2023,3,22,Australia,AU,Queensland,-27.432096,153.523865,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,11,10,Australia,AU,Queensland,-27.49549,153.219492,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,5,7,Australia,AU,Queensland,-27.490994,153.24839,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,10,Australia,AU,Queensland,-27.511524,153.248555,EPSG:4326 +HUMAN_OBSERVATION,Ymkje Vaessen,1,,,2023,10,15,Australia,AU,Queensland,-27.538889,153.268236,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2022,11,16,Australia,AU,Queensland,-27.496652,153.245866,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,8,16,Australia,AU,Queensland,-27.511497,153.247642,EPSG:4326 +HUMAN_OBSERVATION,Ross K,1,,,2023,11,15,Australia,AU,Queensland,-27.501941,153.257164,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2024,1,16,Australia,AU,Queensland,-27.514233,153.202942,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,3,7,Australia,AU,Queensland,-27.48983,153.245972,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,19,Australia,AU,Queensland,-27.490954,153.248334,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,3,31,Australia,AU,Queensland,-27.511499,153.243313,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,23,Australia,AU,Queensland,-27.511359,153.250251,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,9,15,Australia,AU,Queensland,-27.504223,153.200668,EPSG:4326 +HUMAN_OBSERVATION,Stuart Cameron,1,,,2022,10,14,Australia,AU,Queensland,-27.397847,153.438462,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,6,24,Australia,AU,Queensland,-27.513311,153.202682,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2022,11,23,Australia,AU,Queensland,-27.501824,153.249505,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,8,26,Australia,AU,Queensland,-27.519273,153.261993,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,10,29,Australia,AU,Queensland,-27.51018,153.247836,EPSG:4326 +HUMAN_OBSERVATION,Brian Wood,1,,,2022,3,4,Australia,AU,Queensland,-27.490323,153.24666,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,6,3,Australia,AU,Queensland,-27.509064,153.251617,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,10,2,Australia,AU,Queensland,-27.49042,153.248078,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,2,Australia,AU,Queensland,-27.575604,153.271004,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,16,Australia,AU,Queensland,-27.491213,153.243744,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2024,10,23,Australia,AU,Queensland,-27.500668,153.230674,EPSG:4326 +HUMAN_OBSERVATION,Bec Philipp,1,,,2024,5,6,Australia,AU,Queensland,-27.554834,153.274861,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2023,11,24,Australia,AU,Queensland,-27.575699,153.270875,EPSG:4326 +HUMAN_OBSERVATION,Vikki Siliato,1,FEMALE,,2024,10,11,Australia,AU,Queensland,-27.402921,153.440758,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,28,Australia,AU,Queensland,-27.490657,153.245618,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2022,11,8,Australia,AU,Queensland,-27.576002,153.271487,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,11,2,Australia,AU,Queensland,-27.508244,153.203354,EPSG:4326 +HUMAN_OBSERVATION,Julie Elliott,1,,,2022,7,29,Australia,AU,Queensland,-27.425815,153.52085,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,3,19,Australia,AU,Queensland,-27.53222,153.281904,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,12,30,Australia,AU,Queensland,-27.501428,153.249739,EPSG:4326 +HUMAN_OBSERVATION,Amy Carmichael,1,,,2022,10,7,Australia,AU,Queensland,-27.491675,153.199743,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,23,Australia,AU,Queensland,-27.511404,153.247601,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,7,27,Australia,AU,Queensland,-27.567318,153.298527,EPSG:4326 +HUMAN_OBSERVATION,Deb Tabbart,1,,,2021,10,8,Australia,AU,Queensland,-27.498924,153.400387,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2024,1,30,Australia,AU,Queensland,-27.525009,153.284223,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,1,31,Australia,AU,Queensland,-27.538393,153.270798,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,1,22,Australia,AU,Queensland,-27.506399,153.233215,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,1,31,Australia,AU,Queensland,-27.525719,153.283302,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,3,2,Australia,AU,Queensland,-27.574824,153.271991,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2023,11,6,Australia,AU,Queensland,-27.427642,153.532519,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,5,7,Australia,AU,Queensland,-27.490761,153.248205,EPSG:4326 +HUMAN_OBSERVATION,Glenn Cottrell,1,,,2023,10,22,Australia,AU,Queensland,-27.557677,153.281729,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,12,17,Australia,AU,Queensland,-27.49613,153.245641,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,9,Australia,AU,Queensland,-27.614819,153.197928,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2022,11,7,Australia,AU,Queensland,-27.575888,153.271358,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,9,Australia,AU,Queensland,-27.511455,153.250199,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2023,10,1,Australia,AU,Queensland,-27.575071,153.271562,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,10,7,Australia,AU,Queensland,-27.490893,153.247985,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,10,Australia,AU,Queensland,-27.575888,153.273032,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,1,11,Australia,AU,Queensland,-27.489781,153.246986,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,4,Australia,AU,Queensland,-27.511243,153.250266,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,5,Australia,AU,Queensland,-27.490673,153.248004,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,23,Australia,AU,Queensland,-27.511586,153.250726,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,1,26,Australia,AU,Queensland,-27.48983,153.249118,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,2,Australia,AU,Queensland,-27.514769,153.241823,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,2,14,Australia,AU,Queensland,-27.613249,153.198746,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,3,6,Australia,AU,Queensland,-27.51137,153.25019,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,22,Australia,AU,Queensland,-27.512796,153.242252,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,6,24,Australia,AU,Queensland,-27.571001,153.274271,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,17,Australia,AU,Queensland,-27.490784,153.248824,EPSG:4326 +HUMAN_OBSERVATION,Bethany Cramb,1,,,2023,10,6,Australia,AU,Queensland,-27.552665,153.270333,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,6,26,Australia,AU,Queensland,-27.506902,153.223143,EPSG:4326 +HUMAN_OBSERVATION,Lara Herrero,1,,,2021,5,7,Australia,AU,Queensland,-27.530408,153.281718,EPSG:4326 +HUMAN_OBSERVATION,Scott Bretherton,1,,,2023,9,9,Australia,AU,Queensland,-27.398949,153.440753,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,16,Australia,AU,Queensland,-27.5745,153.272184,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,18,Australia,AU,Queensland,-27.511319,153.250171,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,7,29,Australia,AU,Queensland,-27.508556,153.201813,EPSG:4326 +HUMAN_OBSERVATION,Sipke Vriend,1,,,2023,9,7,Australia,AU,Queensland,-27.489299,153.242281,EPSG:4326 +HUMAN_OBSERVATION,Tracey Woolford,1,,,2023,2,8,Australia,AU,Queensland,-27.559484,153.273751,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,5,Australia,AU,Queensland,-27.489197,153.244354,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,9,27,Australia,AU,Queensland,-27.510261,153.245101,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,10,24,Australia,AU,Queensland,-27.490618,153.248184,EPSG:4326 +HUMAN_OBSERVATION,Redlands Resident,1,,,2021,7,16,Australia,AU,Queensland,-27.518843,153.259187,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,9,9,Australia,AU,Queensland,-27.488499,153.244064,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,6,24,Australia,AU,Queensland,-27.511507,153.24769,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,4,29,Australia,AU,Queensland,-27.57627,153.273359,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,7,12,Australia,AU,Queensland,-27.51171,153.253587,EPSG:4326 +HUMAN_OBSERVATION,Amanda Gerber,1,FEMALE,,2022,10,14,Australia,AU,Queensland,-27.3964,153.439078,EPSG:4326 +HUMAN_OBSERVATION,Erica Siegel,1,,,2023,6,30,Australia,AU,Queensland,-27.518825,153.244589,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,7,1,Australia,AU,Queensland,-27.568857,153.295731,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,3,Australia,AU,Queensland,-27.511388,153.249938,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2024,1,23,Australia,AU,Queensland,-27.499689,153.22308,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,10,14,Australia,AU,Queensland,-27.508497,153.203857,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,21,Australia,AU,Queensland,-27.574253,153.271369,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,22,Australia,AU,Queensland,-27.511332,153.250292,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,11,14,Australia,AU,Queensland,-27.511359,153.250202,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,1,30,Australia,AU,Queensland,-27.507489,153.232839,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,6,14,Australia,AU,Queensland,-27.61269,153.197685,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,5,30,Australia,AU,Queensland,-27.574234,153.271626,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,2,10,Australia,AU,Queensland,-27.490098,153.24861,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,7,27,Australia,AU,Queensland,-27.509237,153.251689,EPSG:4326 +HUMAN_OBSERVATION,Scott Bretherton,1,,,2023,9,7,Australia,AU,Queensland,-27.398773,153.440656,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,10,6,Australia,AU,Queensland,-27.501423,153.24957,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,25,Australia,AU,Queensland,-27.512821,153.203018,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,6,20,Australia,AU,Queensland,-27.489661,153.248859,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2024,10,22,Australia,AU,Queensland,-27.511735,153.253546,EPSG:4326 +HUMAN_OBSERVATION,Trinity Metzler ,1,,,2023,8,27,Australia,AU,Queensland,-27.496706,153.212533,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,FEMALE,,2021,9,8,Australia,AU,Queensland,-27.519434,153.261931,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,19,Australia,AU,Queensland,-27.511962,153.254328,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,11,15,Australia,AU,Queensland,-27.488281,153.244278,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,8,4,Australia,AU,Queensland,-27.523582,153.260925,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,,,2024,2,26,Australia,AU,Queensland,-27.61314,153.199753,EPSG:4326 +HUMAN_OBSERVATION,Willemijn Seijn,1,,,2023,10,1,Australia,AU,Queensland,-27.493206,153.403915,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,13,Australia,AU,Queensland,-27.575566,153.271004,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,26,Australia,AU,Queensland,-27.489729,153.248395,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,9,2,Australia,AU,Queensland,-27.570034,153.298889,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,19,Australia,AU,Queensland,-27.575642,153.271111,EPSG:4326 +HUMAN_OBSERVATION,Lara Herrero,1,,,2023,1,13,Australia,AU,Queensland,-27.530981,153.281859,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,8,26,Australia,AU,Queensland,-27.511771,153.253382,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,6,19,Australia,AU,Queensland,-27.576764,153.27197,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,28,Australia,AU,Queensland,-27.511444,153.252661,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,10,15,Australia,AU,Queensland,-27.511655,153.25129,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,5,13,Australia,AU,Queensland,-27.56733,153.29788,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,18,Australia,AU,Queensland,-27.490053,153.24942,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,6,22,Australia,AU,Queensland,-27.508032,153.195374,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,12,17,Australia,AU,Queensland,-27.489886,153.249192,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,10,27,Australia,AU,Queensland,-27.613281,153.199036,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,21,Australia,AU,Queensland,-27.612535,153.198486,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,7,Australia,AU,Queensland,-27.504705,153.233963,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,30,Australia,AU,Queensland,-27.511311,153.250222,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,22,Australia,AU,Queensland,-27.573424,153.272947,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,5,Australia,AU,Queensland,-27.507151,153.232361,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,27,Australia,AU,Queensland,-27.574737,153.271051,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,9,Australia,AU,Queensland,-27.575356,153.269985,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2021,10,9,Australia,AU,Queensland,-27.431544,153.524375,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2022,11,11,Australia,AU,Queensland,-27.425737,153.52031,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,27,Australia,AU,Queensland,-27.576612,153.271841,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,1,22,Australia,AU,Queensland,-27.505381,153.197205,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,9,28,Australia,AU,Queensland,-27.608927,153.233597,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,7,20,Australia,AU,Queensland,-27.511536,153.24872,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,7,Australia,AU,Queensland,-27.575413,153.271734,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,19,Australia,AU,Queensland,-27.569551,153.298233,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,8,14,Australia,AU,Queensland,-27.48959,153.244858,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,8,10,Australia,AU,Queensland,-27.490827,153.244942,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2023,12,29,Australia,AU,Queensland,-27.511768,153.253714,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,20,Australia,AU,Queensland,-27.513247,153.255088,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,6,22,Australia,AU,Queensland,-27.490906,153.248232,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,29,Australia,AU,Queensland,-27.511158,153.19902,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,18,Australia,AU,Queensland,-27.515219,153.198242,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,11,1,Australia,AU,Queensland,-27.575412,153.271898,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,11,20,Australia,AU,Queensland,-27.514392,153.25569,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2022,2,4,Australia,AU,Queensland,-27.546871,153.259556,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,25,Australia,AU,Queensland,-27.511402,153.24989,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,8,22,Australia,AU,Queensland,-27.488892,153.245276,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,8,3,Australia,AU,Queensland,-27.522989,153.260757,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,19,Australia,AU,Queensland,-27.511406,153.250233,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,20,Australia,AU,Queensland,-27.575071,153.271884,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,10,7,Australia,AU,Queensland,-27.490966,153.248296,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,20,Australia,AU,Queensland,-27.575052,153.271283,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,9,28,Australia,AU,Queensland,-27.393012,153.441346,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,14,Australia,AU,Queensland,-27.51523,153.22258,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2021,10,9,Australia,AU,Queensland,-27.397194,153.438972,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,11,Australia,AU,Queensland,-27.575623,153.270854,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,9,9,Australia,AU,Queensland,-27.571283,153.291977,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,12,21,Australia,AU,Queensland,-27.4978,153.399981,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,2,14,Australia,AU,Queensland,-27.574405,153.272184,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,7,29,Australia,AU,Queensland,-27.489895,153.246124,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,29,Australia,AU,Queensland,-27.489964,153.244934,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,9,Australia,AU,Queensland,-27.511328,153.250318,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,5,11,Australia,AU,Queensland,-27.388675,153.453169,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,10,15,Australia,AU,Queensland,-27.501106,153.249508,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,3,24,Australia,AU,Queensland,-27.490833,153.244873,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2020,12,21,Australia,AU,Queensland,-27.52523,153.284112,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,1,31,Australia,AU,Queensland,-27.546757,153.270203,EPSG:4326 +HUMAN_OBSERVATION,Kelli Longworth,1,FEMALE,,2022,10,14,Australia,AU,Queensland,-27.496257,153.399265,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,,,2024,2,19,Australia,AU,Queensland,-27.511339,153.25,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,,,2021,1,3,Australia,AU,Queensland,-27.554195,153.272012,EPSG:4326 +HUMAN_OBSERVATION,Julie Elliott,1,MALE,,2024,5,5,Australia,AU,Queensland,-27.432062,153.523652,EPSG:4326 +HUMAN_OBSERVATION,Ainsley Ringma,1,,,2022,4,8,Australia,AU,Queensland,-27.590336,153.228702,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,10,10,Australia,AU,Queensland,-27.490898,153.244977,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,6,10,Australia,AU,Queensland,-27.511023,153.199203,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,21,Australia,AU,Queensland,-27.511382,153.250113,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,10,31,Australia,AU,Queensland,-27.575262,153.272174,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,16,Australia,AU,Queensland,-27.511782,153.25054,EPSG:4326 +HUMAN_OBSERVATION,Caren Gillis,1,MALE,,2024,10,23,Australia,AU,Queensland,-27.498069,153.21174,EPSG:4326 +HUMAN_OBSERVATION,Jane Fox,1,,,2023,9,19,Australia,AU,Queensland,-27.496528,153.206159,EPSG:4326 +HUMAN_OBSERVATION,Laura Clyne,1,,,2020,10,12,Australia,AU,Queensland,-27.547608,153.217737,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,13,Australia,AU,Queensland,-27.502951,153.250965,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,2,12,Australia,AU,Queensland,-27.489971,153.24864,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,7,29,Australia,AU,Queensland,-27.61451,153.197342,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,10,22,Australia,AU,Queensland,-27.511465,153.250146,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,3,25,Australia,AU,Queensland,-27.575469,153.271852,EPSG:4326 +HUMAN_OBSERVATION,Anne Mcburnie,1,,,2023,2,8,Australia,AU,Queensland,-27.560879,153.226944,EPSG:4326 +HUMAN_OBSERVATION,Malcom Spiden,1,,,2021,10,12,Australia,AU,Queensland,-27.645846,153.222311,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,22,Australia,AU,Queensland,-27.511296,153.250286,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,10,Australia,AU,Queensland,-27.500499,153.249342,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2023,11,20,Australia,AU,Queensland,-27.575566,153.271004,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,10,8,Australia,AU,Queensland,-27.510155,153.249146,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,23,Australia,AU,Queensland,-27.575413,153.271994,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,26,Australia,AU,Queensland,-27.502663,153.250267,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,3,18,Australia,AU,Queensland,-27.513962,153.198624,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2021,10,9,Australia,AU,Queensland,-27.400233,153.437906,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,3,16,Australia,AU,Queensland,-27.511534,153.248119,EPSG:4326 +HUMAN_OBSERVATION,Rom Cris,1,,,2021,10,8,Australia,AU,Queensland,-27.39702,153.44072,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,11,Australia,AU,Queensland,-27.615305,153.198334,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,11,15,Australia,AU,Queensland,-27.499744,153.223101,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,5,Australia,AU,Queensland,-27.574615,153.27212,EPSG:4326 +HUMAN_OBSERVATION,Detection Dogs for Conservation UniSC,1,FEMALE,,2022,8,9,Australia,AU,Queensland,-27.521338,153.260824,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,18,Australia,AU,Queensland,-27.506947,153.232773,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,16,Australia,AU,Queensland,-27.489795,153.249283,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,28,Australia,AU,Queensland,-27.48995,153.249676,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,12,Australia,AU,Queensland,-27.565067,153.30571,EPSG:4326 +HUMAN_OBSERVATION,Terry Lovejoy,1,,,2023,5,26,Australia,AU,Queensland,-27.501239,153.22477,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,23,Australia,AU,Queensland,-27.511495,153.248635,EPSG:4326 +HUMAN_OBSERVATION,Molly Ashdown,1,FEMALE,,2023,8,27,Australia,AU,Queensland,-27.532326,153.281765,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,7,6,Australia,AU,Queensland,-27.50932,153.251896,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,12,4,Australia,AU,Queensland,-27.495741,153.245238,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,MALE,,2023,7,24,Australia,AU,Queensland,-27.4905,153.248403,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,11,23,Australia,AU,Queensland,-27.489595,153.248683,EPSG:4326 +HUMAN_OBSERVATION,JO Bennett,1,,,2023,9,6,Australia,AU,Queensland,-27.536416,153.27065,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,8,Australia,AU,Queensland,-27.575642,153.271004,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,27,Australia,AU,Queensland,-27.511604,153.249887,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,6,10,Australia,AU,Queensland,-27.615282,153.198044,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,14,Australia,AU,Queensland,-27.569553,153.298447,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,19,Australia,AU,Queensland,-27.511677,153.250097,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,9,30,Australia,AU,Queensland,-27.490783,153.247433,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,2,26,Australia,AU,Queensland,-27.61331,153.199738,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2021,8,6,Australia,AU,Queensland,-27.540541,153.263774,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,,,2024,7,8,Australia,AU,Queensland,-27.612751,153.19754,EPSG:4326 +HUMAN_OBSERVATION,Lisa Neilson,1,,,2024,10,15,Australia,AU,Queensland,-27.500192,153.230717,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,2,14,Australia,AU,Queensland,-27.497089,153.246076,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,5,23,Australia,AU,Queensland,-27.509369,153.203766,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,3,Australia,AU,Queensland,-27.51132,153.25037,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,10,4,Australia,AU,Queensland,-27.49648,153.245408,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,12,Australia,AU,Queensland,-27.62446,153.206802,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,14,Australia,AU,Queensland,-27.511699,153.252495,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,26,Australia,AU,Queensland,-27.490231,153.24498,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,7,27,Australia,AU,Queensland,-27.50922,153.251541,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2022,4,14,Australia,AU,Queensland,-27.501106,153.247202,EPSG:4326 +HUMAN_OBSERVATION,Scott Bretherton,1,,,2023,7,29,Australia,AU,Queensland,-27.398727,153.440686,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,12,8,Australia,AU,Queensland,-27.575014,153.271197,EPSG:4326 +HUMAN_OBSERVATION,Pat Janes,1,,,2024,10,15,Australia,AU,Queensland,-27.607935,153.21036,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,6,Australia,AU,Queensland,-27.51536,153.239818,EPSG:4326 +HUMAN_OBSERVATION,Scott Bretherton,1,,,2023,7,30,Australia,AU,Queensland,-27.398884,153.441432,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,FEMALE,,2024,8,27,Australia,AU,Queensland,-27.494691,153.218148,EPSG:4326 +HUMAN_OBSERVATION,Fiona Wythes,1,,,2021,10,4,Australia,AU,Queensland,-27.50267,153.258251,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,23,Australia,AU,Queensland,-27.574253,153.271819,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2023,1,23,Australia,AU,Queensland,-27.490684,153.430059,EPSG:4326 +HUMAN_OBSERVATION,stuart Gudgeon,1,MALE,,2024,7,15,Australia,AU,Queensland,-27.509674,153.204391,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,28,Australia,AU,Queensland,-27.502559,153.250335,EPSG:4326 +HUMAN_OBSERVATION,Rom Cris,1,,,2021,8,8,Australia,AU,Queensland,-27.49853,153.400212,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,11,7,Australia,AU,Queensland,-27.620832,153.206253,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,1,6,Australia,AU,Queensland,-27.525221,153.284027,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,23,Australia,AU,Queensland,-27.501016,153.252207,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,3,7,Australia,AU,Queensland,-27.540371,153.269989,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,7,1,Australia,AU,Queensland,-27.569477,153.298447,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,19,Australia,AU,Queensland,-27.491642,153.241211,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,7,29,Australia,AU,Queensland,-27.567816,153.301559,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,8,15,Australia,AU,Queensland,-27.600455,153.20745,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2023,2,12,Australia,AU,Queensland,-27.487127,153.409894,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,10,3,Australia,AU,Queensland,-27.540506,153.2715,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,11,Australia,AU,Queensland,-27.575113,153.271664,EPSG:4326 +HUMAN_OBSERVATION,Cherie Carothers,1,FEMALE,,2022,10,25,Australia,AU,Queensland,-27.50221,153.219302,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,6,Australia,AU,Queensland,-27.575697,153.271499,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,1,30,Australia,AU,Queensland,-27.489419,153.244456,EPSG:4326 +HUMAN_OBSERVATION,Laura Clyne,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-27.425389,153.51911,EPSG:4326 +HUMAN_OBSERVATION,Sarah Helliwell,1,,,2023,6,9,Australia,AU,Queensland,-27.494796,153.251574,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,10,Australia,AU,Queensland,-27.514523,153.241936,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,8,22,Australia,AU,Queensland,-27.523871,153.26475,EPSG:4326 +HUMAN_OBSERVATION,Taren Rundle ,1,,,2022,12,23,Australia,AU,Queensland,-27.561365,153.228736,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,6,20,Australia,AU,Queensland,-27.490276,153.245686,EPSG:4326 +HUMAN_OBSERVATION,Bethany Cramb,1,FEMALE,,2024,1,17,Australia,AU,Queensland,-27.572686,153.195478,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,,,2024,2,26,Australia,AU,Queensland,-27.505419,153.197159,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,,,2021,1,3,Australia,AU,Queensland,-27.554138,153.272002,EPSG:4326 +HUMAN_OBSERVATION,Jasmine Spletter,1,,,2021,4,25,Australia,AU,Queensland,-27.4,153.45,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2023,12,16,Australia,AU,Queensland,-27.511664,153.251056,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,10,5,Australia,AU,Queensland,-27.490791,153.247956,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,10,Australia,AU,Queensland,-27.511636,153.250166,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,26,Australia,AU,Queensland,-27.575113,153.271664,EPSG:4326 +HUMAN_OBSERVATION,Sue White,1,FEMALE,,2024,10,10,Australia,AU,Queensland,-27.511374,153.247304,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,17,Australia,AU,Queensland,-27.511599,153.253702,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,2,1,Australia,AU,Queensland,-27.574786,153.27139,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,6,Australia,AU,Queensland,-27.511831,153.253833,EPSG:4326 +HUMAN_OBSERVATION,Leigh Williams,1,,,2023,11,18,Australia,AU,Queensland,-27.498117,153.222097,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,4,3,Australia,AU,Queensland,-27.490034,153.246277,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,8,29,Australia,AU,Queensland,-27.511496,153.248639,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,12,11,Australia,AU,Queensland,-27.576136,153.271326,EPSG:4326 +HUMAN_OBSERVATION,Adam Reid,1,,,2024,8,31,Australia,AU,Queensland,-27.511277,153.248215,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,4,18,Australia,AU,Queensland,-27.489668,153.245041,EPSG:4326 +HUMAN_OBSERVATION,Julie Elliott,1,FEMALE,,2021,10,20,Australia,AU,Queensland,-27.431968,153.523839,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,7,22,Australia,AU,Queensland,-27.617824,153.204657,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2023,10,8,Australia,AU,Queensland,-27.48912,153.431196,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,8,Australia,AU,Queensland,-27.511371,153.250221,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,29,Australia,AU,Queensland,-27.575356,153.271497,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,15,Australia,AU,Queensland,-27.511577,153.249985,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,5,Australia,AU,Queensland,-27.515358,153.239842,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,5,23,Australia,AU,Queensland,-27.509274,153.251767,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,10,28,Australia,AU,Queensland,-27.490727,153.244929,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,10,4,Australia,AU,Queensland,-27.515403,153.239897,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,14,Australia,AU,Queensland,-27.511381,153.250425,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2023,10,3,Australia,AU,Queensland,-27.618125,153.21192,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,15,Australia,AU,Queensland,-27.511142,153.250206,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,10,6,Australia,AU,Queensland,-27.515361,153.239798,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,6,Australia,AU,Queensland,-27.575336,153.27132,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,6,Australia,AU,Queensland,-27.617435,153.20433,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,23,Australia,AU,Queensland,-27.495779,153.245257,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,1,Australia,AU,Queensland,-27.511456,153.199799,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2023,6,24,Australia,AU,Queensland,-27.546638,153.258904,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2021,11,8,Australia,AU,Queensland,-27.537139,153.27728,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,4,25,Australia,AU,Queensland,-27.511782,153.202133,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,8,Australia,AU,Queensland,-27.499503,153.247245,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,16,Australia,AU,Queensland,-27.511966,153.254249,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,21,Australia,AU,Queensland,-27.511381,153.250213,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,8,15,Australia,AU,Queensland,-27.511727,153.253288,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,20,Australia,AU,Queensland,-27.490803,153.247519,EPSG:4326 +HUMAN_OBSERVATION,Kelli Longworth,1,,,2022,10,14,Australia,AU,Queensland,-27.497328,153.399063,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,6,5,Australia,AU,Queensland,-27.511524,153.247161,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,19,Australia,AU,Queensland,-27.511049,153.247936,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,22,Australia,AU,Queensland,-27.615374,153.1987,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,14,Australia,AU,Queensland,-27.502953,153.25048,EPSG:4326 +HUMAN_OBSERVATION,Bethany Cramb,1,FEMALE,,2024,2,28,Australia,AU,Queensland,-27.547302,153.216995,EPSG:4326 +HUMAN_OBSERVATION,Anna Marcora,1,,,2023,7,2,Australia,AU,Queensland,-27.514023,153.255994,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,5,Australia,AU,Queensland,-27.514866,153.197388,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,8,Australia,AU,Queensland,-27.511212,153.250239,EPSG:4326 +HUMAN_OBSERVATION,Mike Oakey,1,,,2024,1,21,Australia,AU,Queensland,-27.545302,153.255324,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,27,Australia,AU,Queensland,-27.511316,153.250316,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,12,14,Australia,AU,Queensland,-27.489365,153.245316,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,,,2020,12,26,Australia,AU,Queensland,-27.554328,153.272206,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,31,Australia,AU,Queensland,-27.511361,153.250149,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,8,Australia,AU,Queensland,-27.514625,153.241944,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,11,Australia,AU,Queensland,-27.511461,153.248511,EPSG:4326 +HUMAN_OBSERVATION,Yasmin Butler,1,FEMALE,,2022,12,11,Australia,AU,Queensland,-27.582786,153.189018,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,11,Australia,AU,Queensland,-27.511363,153.250174,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,FEMALE,,2024,8,26,Australia,AU,Queensland,-27.495348,153.251435,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,5,6,Australia,AU,Queensland,-27.568865,153.294647,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,1,Australia,AU,Queensland,-27.575528,153.270725,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,3,21,Australia,AU,Queensland,-27.568853,153.295197,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,4,3,Australia,AU,Queensland,-27.490814,153.24472,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,2,18,Australia,AU,Queensland,-27.511611,153.247685,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2022,10,2,Australia,AU,Queensland,-27.532895,153.281808,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,11,2,Australia,AU,Queensland,-27.490284,153.246964,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,8,1,Australia,AU,Queensland,-27.511585,153.249872,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,28,Australia,AU,Queensland,-27.511381,153.250182,EPSG:4326 +HUMAN_OBSERVATION,Caren Gillis,1,FEMALE,,2022,12,4,Australia,AU,Queensland,-27.547721,153.270307,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,11,Australia,AU,Queensland,-27.511836,153.254495,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,25,Australia,AU,Queensland,-27.511566,153.250079,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2022,12,24,Australia,AU,Queensland,-27.493653,153.402972,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,24,Australia,AU,Queensland,-27.511756,153.250661,EPSG:4326 +HUMAN_OBSERVATION,Detection Dogs for Conservation UniSC,1,MALE,,2022,8,9,Australia,AU,Queensland,-27.489872,153.24467,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,,,2024,2,26,Australia,AU,Queensland,-27.503168,153.198685,EPSG:4326 +HUMAN_OBSERVATION,Sipke Vriend,1,,,2023,8,24,Australia,AU,Queensland,-27.482814,153.238513,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,3,23,Australia,AU,Queensland,-27.490659,153.244953,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,4,18,Australia,AU,Queensland,-27.506811,153.232574,EPSG:4326 +HUMAN_OBSERVATION,Michael C,1,FEMALE,,2022,11,5,Australia,AU,Queensland,-27.503266,153.225441,EPSG:4326 +HUMAN_OBSERVATION,Lewis Peach,1,,,2023,7,12,Australia,AU,Queensland,-27.502231,153.260173,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,11,15,Australia,AU,Queensland,-27.50751,153.221984,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,3,24,Australia,AU,Queensland,-27.489687,153.245565,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2022,9,7,Australia,AU,Queensland,-27.49046,153.248709,EPSG:4326 +HUMAN_OBSERVATION,Tom Short,1,FEMALE,,2024,9,14,Australia,AU,Queensland,-27.511469,153.250544,EPSG:4326 +HUMAN_OBSERVATION,Adam Reid,1,,,2024,5,31,Australia,AU,Queensland,-27.511535,153.248785,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,22,Australia,AU,Queensland,-27.511615,153.251418,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,5,1,Australia,AU,Queensland,-27.546893,153.258419,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,1,1,Australia,AU,Queensland,-27.575756,153.271712,EPSG:4326 +HUMAN_OBSERVATION,Lara Herrero,1,,,2021,11,17,Australia,AU,Queensland,-27.530268,153.281556,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,10,11,Australia,AU,Queensland,-27.500822,153.252068,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,1,Australia,AU,Queensland,-27.51178,153.250126,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,9,28,Australia,AU,Queensland,-27.400797,153.438068,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,23,Australia,AU,Queensland,-27.511303,153.199646,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2022,4,4,Australia,AU,Queensland,-27.536777,153.272141,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,11,13,Australia,AU,Queensland,-27.503682,153.225571,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,4,Australia,AU,Queensland,-27.511749,153.253764,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,12,18,Australia,AU,Queensland,-27.574519,153.271862,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,5,22,Australia,AU,Queensland,-27.50157,153.232544,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,4,22,Australia,AU,Queensland,-27.576041,153.273021,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,21,Australia,AU,Queensland,-27.511467,153.248504,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,4,Australia,AU,Queensland,-27.503163,153.251327,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,9,21,Australia,AU,Queensland,-27.502418,153.24996,EPSG:4326 +HUMAN_OBSERVATION,catherine campbell,1,,,2024,9,10,Australia,AU,Queensland,-27.576796,153.299825,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,15,Australia,AU,Queensland,-27.511227,153.250234,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,7,31,Australia,AU,Queensland,-27.50945,153.251391,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2023,1,19,Australia,AU,Queensland,-27.608955,153.22966,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,6,7,Australia,AU,Queensland,-27.511305,153.250273,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,10,2,Australia,AU,Queensland,-27.546897,153.258891,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,22,Australia,AU,Queensland,-27.511698,153.25141,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,1,9,Australia,AU,Queensland,-27.4993,153.246602,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,,,2023,2,7,Australia,AU,Queensland,-27.559103,153.273858,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,10,7,Australia,AU,Queensland,-27.490536,153.248009,EPSG:4326 +HUMAN_OBSERVATION,Vikki Siliato,1,MALE,,2024,10,11,Australia,AU,Queensland,-27.392992,153.441349,EPSG:4326 +HUMAN_OBSERVATION,Jen Louw,1,MALE,,2024,10,11,Australia,AU,Queensland,-27.394898,153.442881,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,4,Australia,AU,Queensland,-27.511299,153.249835,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,5,Australia,AU,Queensland,-27.511371,153.250221,EPSG:4326 +HUMAN_OBSERVATION,Tahlie Page,1,,,2024,10,11,Australia,AU,Queensland,-27.396952,153.439462,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,9,5,Australia,AU,Queensland,-27.490892,153.245132,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,29,Australia,AU,Queensland,-27.489809,153.245117,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,3,Australia,AU,Queensland,-27.514684,153.2418,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,21,Australia,AU,Queensland,-27.576652,153.273179,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,12,24,Australia,AU,Queensland,-27.498403,153.400031,EPSG:4326 +HUMAN_OBSERVATION,Amanda Gerber,1,,,2022,10,14,Australia,AU,Queensland,-27.396553,153.4403,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,,,2024,5,21,Australia,AU,Queensland,-27.489569,153.24559,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,12,Australia,AU,Queensland,-27.576174,153.27315,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,3,4,Australia,AU,Queensland,-27.507231,153.233002,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,7,1,Australia,AU,Queensland,-27.48987,153.245239,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,6,Australia,AU,Queensland,-27.511362,153.25035,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2023,5,3,Australia,AU,Queensland,-27.490614,153.248744,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,10,Australia,AU,Queensland,-27.490821,153.247967,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,9,26,Australia,AU,Queensland,-27.511442,153.242202,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,23,Australia,AU,Queensland,-27.511379,153.25009,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,10,19,Australia,AU,Queensland,-27.614861,153.199234,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,13,Australia,AU,Queensland,-27.511646,153.253564,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,1,Australia,AU,Queensland,-27.575699,153.27109,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,16,Australia,AU,Queensland,-27.48908,153.236084,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2021,8,2,Australia,AU,Queensland,-27.501735,153.252389,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,10,24,Australia,AU,Queensland,-27.489596,153.248926,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,6,Australia,AU,Queensland,-27.511738,153.253431,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,5,Australia,AU,Queensland,-27.513927,153.255965,EPSG:4326 +HUMAN_OBSERVATION,Shirley Willey,1,MALE,,2024,10,11,Australia,AU,Queensland,-27.40308,153.44058,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,4,3,Australia,AU,Queensland,-27.512446,153.241521,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,5,Australia,AU,Queensland,-27.575356,153.271347,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,4,21,Australia,AU,Queensland,-27.491344,153.243799,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,24,Australia,AU,Queensland,-27.490681,153.248358,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,10,Australia,AU,Queensland,-27.511386,153.250232,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,4,Australia,AU,Queensland,-27.511271,153.250139,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,16,Australia,AU,Queensland,-27.511577,153.250622,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,11,17,Australia,AU,Queensland,-27.575697,153.271499,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,1,Australia,AU,Queensland,-27.511349,153.250167,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,8,30,Australia,AU,Queensland,-27.490219,153.248778,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,6,17,Australia,AU,Queensland,-27.506273,153.233749,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,10,16,Australia,AU,Queensland,-27.502181,153.24968,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,11,Australia,AU,Queensland,-27.511456,153.250148,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,9,25,Australia,AU,Queensland,-27.490773,153.248909,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,13,Australia,AU,Queensland,-27.511411,153.250119,EPSG:4326 +HUMAN_OBSERVATION,Cathryn Dexter,1,,,2021,9,8,Australia,AU,Queensland,-27.521256,153.239211,EPSG:4326 +HUMAN_OBSERVATION,Erica Siegel,1,,,2023,4,9,Australia,AU,Queensland,-27.50045,153.216764,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,3,Australia,AU,Queensland,-27.511607,153.251036,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,14,Australia,AU,Queensland,-27.505413,153.196967,EPSG:4326 +HUMAN_OBSERVATION,Desley Cook,1,,,2021,5,14,Australia,AU,Queensland,-27.497658,153.245998,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,31,Australia,AU,Queensland,-27.490514,153.248124,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,15,Australia,AU,Queensland,-27.511283,153.250234,EPSG:4326 +HUMAN_OBSERVATION,Tahlie Page,1,MALE,,2024,10,11,Australia,AU,Queensland,-27.397476,153.440192,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,6,29,Australia,AU,Queensland,-27.490159,153.249435,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,16,Australia,AU,Queensland,-27.511557,153.247397,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,5,Australia,AU,Queensland,-27.491497,153.241211,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2023,4,9,Australia,AU,Queensland,-27.490951,153.247888,EPSG:4326 +HUMAN_OBSERVATION,Amanda Blackman,1,,,2022,10,15,Australia,AU,Queensland,-27.535511,153.254986,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2022,12,20,Australia,AU,Queensland,-27.503509,153.225557,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,8,Australia,AU,Queensland,-27.575143,153.271603,EPSG:4326 +HUMAN_OBSERVATION,Caren Gillis,1,MALE,,2022,12,4,Australia,AU,Queensland,-27.547721,153.270307,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,14,Australia,AU,Queensland,-27.615008,153.198111,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,28,Australia,AU,Queensland,-27.499372,153.246698,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,3,4,Australia,AU,Queensland,-27.501356,153.196548,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,8,10,Australia,AU,Queensland,-27.511491,153.248651,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,10,Australia,AU,Queensland,-27.491359,153.24368,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,3,Australia,AU,Queensland,-27.491297,153.244741,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,3,6,Australia,AU,Queensland,-27.510555,153.25196,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,4,25,Australia,AU,Queensland,-27.51178,153.253623,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,20,Australia,AU,Queensland,-27.511782,153.253923,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,27,Australia,AU,Queensland,-27.511549,153.249438,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,2,Australia,AU,Queensland,-27.575623,153.270918,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,5,14,Australia,AU,Queensland,-27.50684,153.20096,EPSG:4326 +HUMAN_OBSERVATION,Willemijn Seijn,1,,,2023,8,13,Australia,AU,Queensland,-27.393871,153.44274,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2022,12,16,Australia,AU,Queensland,-27.498551,153.225632,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,4,1,Australia,AU,Queensland,-27.512886,153.202988,EPSG:4326 +HUMAN_OBSERVATION,Mim Skelly,1,MALE,,2021,10,10,Australia,AU,Queensland,-27.556319,153.228702,EPSG:4326 +HUMAN_OBSERVATION,Sophie Whitton,1,,,2024,9,13,Australia,AU,Queensland,-27.56943,153.298064,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2024,9,21,Australia,AU,Queensland,-27.511368,153.250249,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,,,2021,9,20,Australia,AU,Queensland,-27.554832,153.275124,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,26,Australia,AU,Queensland,-27.5138,153.255945,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,30,Australia,AU,Queensland,-27.49569,153.245276,EPSG:4326 +HUMAN_OBSERVATION,Amy Carmichael,1,,,2023,10,30,Australia,AU,Queensland,-27.492189,153.199861,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,8,3,Australia,AU,Queensland,-27.500938,153.232986,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,18,Australia,AU,Queensland,-27.511698,153.250654,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,10,29,Australia,AU,Queensland,-27.490544,153.248334,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,11,10,Australia,AU,Queensland,-27.575697,153.271499,EPSG:4326 +HUMAN_OBSERVATION,Louisa Cass,1,MALE,,2024,5,12,Australia,AU,Queensland,-27.513064,153.255189,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2022,8,15,Australia,AU,Queensland,-27.53663,153.273293,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,10,21,Australia,AU,Queensland,-27.502982,153.251258,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,13,Australia,AU,Queensland,-27.489882,153.245331,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2023,2,4,Australia,AU,Queensland,-27.546487,153.259541,EPSG:4326 +HUMAN_OBSERVATION,Adam Reid,1,,,2024,6,24,Australia,AU,Queensland,-27.511778,153.253629,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,11,15,Australia,AU,Queensland,-27.511728,153.25365,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,6,18,Australia,AU,Queensland,-27.509413,153.251808,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,16,Australia,AU,Queensland,-27.489485,153.2453,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2023,11,17,Australia,AU,Queensland,-27.574615,153.271734,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,25,Australia,AU,Queensland,-27.489687,153.24617,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,3,13,Australia,AU,Queensland,-27.488914,153.244476,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,9,5,Australia,AU,Queensland,-27.506477,153.232986,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,9,Australia,AU,Queensland,-27.511272,153.200562,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,6,28,Australia,AU,Queensland,-27.511373,153.247324,EPSG:4326 +HUMAN_OBSERVATION,Lara Herrero,1,,,2021,4,9,Australia,AU,Queensland,-27.52934,153.281075,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,4,Australia,AU,Queensland,-27.511452,153.250158,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,10,Australia,AU,Queensland,-27.513777,153.256024,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,12,Australia,AU,Queensland,-27.574938,153.271326,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,17,Australia,AU,Queensland,-27.511338,153.250239,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,9,28,Australia,AU,Queensland,-27.513621,153.256028,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,10,28,Australia,AU,Queensland,-27.502512,153.249659,EPSG:4326 +HUMAN_OBSERVATION,Matilda Stevenson,1,,,2020,10,20,Australia,AU,Queensland,-27.595669,153.163222,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,4,1,Australia,AU,Queensland,-27.509836,153.250854,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,9,20,Australia,AU,Queensland,-27.511267,153.249971,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,4,25,Australia,AU,Queensland,-27.546893,153.258322,EPSG:4326 +HUMAN_OBSERVATION,tara small,1,,,2024,8,28,Australia,AU,Queensland,-27.542439,153.263778,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,6,Australia,AU,Queensland,-27.513106,153.255419,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,2,20,Australia,AU,Queensland,-27.574348,153.272184,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2022,12,16,Australia,AU,Queensland,-27.424793,153.518829,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2024,3,13,Australia,AU,Queensland,-27.498284,153.224323,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,1,10,Australia,AU,Queensland,-27.495741,153.245798,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,12,14,Australia,AU,Queensland,-27.489408,153.245193,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,3,13,Australia,AU,Queensland,-27.531264,153.281744,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,1,25,Australia,AU,Queensland,-27.511361,153.250144,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,27,Australia,AU,Queensland,-27.489885,153.245468,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,8,Australia,AU,Queensland,-27.576212,153.273021,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,19,Australia,AU,Queensland,-27.623398,153.206924,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2021,11,26,Australia,AU,Queensland,-27.544796,153.258322,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,29,Australia,AU,Queensland,-27.574975,153.271658,EPSG:4326 +HUMAN_OBSERVATION,Tinneke Van Leur,1,FEMALE,,2022,10,14,Australia,AU,Queensland,-27.400943,153.438621,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,1,17,Australia,AU,Queensland,-27.50737,153.232788,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,7,29,Australia,AU,Queensland,-27.620687,153.206406,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,14,Australia,AU,Queensland,-27.511575,153.249996,EPSG:4326 +HUMAN_OBSERVATION,A C,1,,,2022,10,19,Australia,AU,Queensland,-27.428652,153.529129,EPSG:4326 +HUMAN_OBSERVATION,Adam Reid,1,,,2024,6,5,Australia,AU,Queensland,-27.511088,153.24931,EPSG:4326 +HUMAN_OBSERVATION,Bethany Cramb,1,,,2024,5,26,Australia,AU,Queensland,-27.546824,153.258339,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,4,Australia,AU,Queensland,-27.395958,153.444556,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,2,8,Australia,AU,Queensland,-27.489634,153.245483,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,8,31,Australia,AU,Queensland,-27.511182,153.24834,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,3,31,Australia,AU,Queensland,-27.511531,153.249686,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,8,Australia,AU,Queensland,-27.575622,153.271358,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,16,Australia,AU,Queensland,-27.502067,153.250123,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,16,Australia,AU,Queensland,-27.511514,153.250668,EPSG:4326 +HUMAN_OBSERVATION,Sanchia Murton,1,,,2022,2,22,Australia,AU,Queensland,-27.537825,153.215641,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,8,15,Australia,AU,Queensland,-27.490848,153.248575,EPSG:4326 +HUMAN_OBSERVATION,Lisa Bailey,1,,,2022,10,14,Australia,AU,Queensland,-27.498418,153.409693,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,3,18,Australia,AU,Queensland,-27.48984,153.24529,EPSG:4326 +HUMAN_OBSERVATION,JO Bennett,1,,,2022,8,2,Australia,AU,Queensland,-27.536703,153.273366,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,1,31,Australia,AU,Queensland,-27.508215,153.201584,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,2,Australia,AU,Queensland,-27.513629,153.255938,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,9,29,Australia,AU,Queensland,-27.503223,153.250772,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2021,1,3,Australia,AU,Queensland,-27.490762,153.244864,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,10,7,Australia,AU,Queensland,-27.507196,153.202515,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,1,17,Australia,AU,Queensland,-27.500373,153.230792,EPSG:4326 +HUMAN_OBSERVATION,Bernadette Williams,1,FEMALE,,2022,12,8,Australia,AU,Queensland,-27.39138,153.455056,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,MALE,,2021,10,8,Australia,AU,Queensland,-27.426054,153.522442,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,3,30,Australia,AU,Queensland,-27.57568,153.271176,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,16,Australia,AU,Queensland,-27.501111,153.252002,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,10,Australia,AU,Queensland,-27.5031,153.251209,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,12,9,Australia,AU,Queensland,-27.511597,153.250989,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,12,10,Australia,AU,Queensland,-27.575737,153.270854,EPSG:4326 +HUMAN_OBSERVATION,Tom Short,1,,,2023,9,28,Australia,AU,Queensland,-27.493325,153.403092,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,7,11,Australia,AU,Queensland,-27.612719,153.198318,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,5,3,Australia,AU,Queensland,-27.500748,153.234238,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,MALE,,2020,12,23,Australia,AU,Queensland,-27.539146,153.272527,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,15,Australia,AU,Queensland,-27.490459,153.249385,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,27,Australia,AU,Queensland,-27.511345,153.250345,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,13,Australia,AU,Queensland,-27.490576,153.247132,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,9,28,Australia,AU,Queensland,-27.50478,153.200821,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,21,Australia,AU,Queensland,-27.511743,153.253829,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,9,23,Australia,AU,Queensland,-27.502421,153.250033,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,12,15,Australia,AU,Queensland,-27.538734,153.274216,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,11,Australia,AU,Queensland,-27.48876,153.24559,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,19,Australia,AU,Queensland,-27.575377,153.271148,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,18,Australia,AU,Queensland,-27.575697,153.271499,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,25,Australia,AU,Queensland,-27.575501,153.271036,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,23,Australia,AU,Queensland,-27.575964,153.271744,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,3,31,Australia,AU,Queensland,-27.531383,153.282012,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,11,23,Australia,AU,Queensland,-27.498069,153.246,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,12,13,Australia,AU,Queensland,-27.575889,153.271326,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,19,Australia,AU,Queensland,-27.51141,153.250192,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,19,Australia,AU,Queensland,-27.48941,153.243988,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,1,30,Australia,AU,Queensland,-27.491051,153.2451,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,27,Australia,AU,Queensland,-27.624491,153.206894,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2023,11,10,Australia,AU,Queensland,-27.511801,153.254342,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,7,16,Australia,AU,Queensland,-27.509325,153.251784,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,14,Australia,AU,Queensland,-27.511336,153.25008,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,10,25,Australia,AU,Queensland,-27.575356,153.271047,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2023,11,14,Australia,AU,Queensland,-27.49137,153.243759,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,29,Australia,AU,Queensland,-27.51176,153.2538,EPSG:4326 +HUMAN_OBSERVATION,Adam Reid,1,MALE,,2024,8,7,Australia,AU,Queensland,-27.509881,153.250906,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,2,17,Australia,AU,Queensland,-27.575489,153.271669,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,5,27,Australia,AU,Queensland,-27.568708,153.295044,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,22,Australia,AU,Queensland,-27.49136,153.243607,EPSG:4326 +HUMAN_OBSERVATION,Melodie Garrad,1,,,2023,2,19,Australia,AU,Queensland,-27.506455,153.218234,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,1,Australia,AU,Queensland,-27.511764,153.250777,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,4,13,Australia,AU,Queensland,-27.576022,153.273171,EPSG:4326 +HUMAN_OBSERVATION,Tinneke Van Leur,1,,,2022,10,14,Australia,AU,Queensland,-27.493395,153.404632,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,8,8,Australia,AU,Queensland,-27.511656,153.250967,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2022,4,18,Australia,AU,Queensland,-27.500965,153.247148,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,12,9,Australia,AU,Queensland,-27.490498,153.248352,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,14,Australia,AU,Queensland,-27.489732,153.245558,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,9,28,Australia,AU,Queensland,-27.513612,153.256011,EPSG:4326 +HUMAN_OBSERVATION,Cathryn Dexter,1,,,2023,4,1,Australia,AU,Queensland,-27.500392,153.248099,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,3,20,Australia,AU,Queensland,-27.499107,153.246903,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,3,4,Australia,AU,Queensland,-27.489622,153.244919,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,13,Australia,AU,Queensland,-27.504225,153.195175,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,13,Australia,AU,Queensland,-27.490325,153.248167,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,30,Australia,AU,Queensland,-27.574596,153.271197,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,FEMALE,,2024,9,25,Australia,AU,Queensland,-27.513999,153.256079,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,10,Australia,AU,Queensland,-27.511398,153.250159,EPSG:4326 +HUMAN_OBSERVATION,Cathryn Dexter,1,,,2022,9,14,Australia,AU,Queensland,-27.548648,153.218156,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,8,Australia,AU,Queensland,-27.511415,153.250097,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,1,Australia,AU,Queensland,-27.511301,153.250312,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,18,Australia,AU,Queensland,-27.511729,153.253647,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,26,Australia,AU,Queensland,-27.511353,153.250382,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2024,8,5,Australia,AU,Queensland,-27.500096,153.223675,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2022,3,20,Australia,AU,Queensland,-27.490377,153.248098,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,1,14,Australia,AU,Queensland,-27.490569,153.245465,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,3,24,Australia,AU,Queensland,-27.6134,153.20114,EPSG:4326 +HUMAN_OBSERVATION,John Tracey,1,,,2022,12,22,Australia,AU,Queensland,-27.429167,153.534648,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2024,1,22,Australia,AU,Queensland,-27.511377,153.198578,EPSG:4326 +HUMAN_OBSERVATION,Jane White,1,MALE,,2021,9,26,Australia,AU,Queensland,-27.492997,153.243645,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,9,13,Australia,AU,Queensland,-27.511316,153.249968,EPSG:4326 +HUMAN_OBSERVATION,Louisa Cass,1,,,2024,4,29,Australia,AU,Queensland,-27.513031,153.255189,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,6,23,Australia,AU,Queensland,-27.511746,153.253595,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2023,1,24,Australia,AU,Queensland,-27.490641,153.247849,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,5,31,Australia,AU,Queensland,-27.511448,153.247046,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,11,13,Australia,AU,Queensland,-27.511394,153.250265,EPSG:4326 +HUMAN_OBSERVATION,William Stevens,1,,,2021,4,10,Australia,AU,Queensland,-27.519738,153.24278,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,5,Australia,AU,Queensland,-27.509716,153.204407,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,10,6,Australia,AU,Queensland,-27.515361,153.248605,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,24,Australia,AU,Queensland,-27.511466,153.250163,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,21,Australia,AU,Queensland,-27.575432,153.271315,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,9,Australia,AU,Queensland,-27.511643,153.251199,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,27,Australia,AU,Queensland,-27.513725,153.255987,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,13,Australia,AU,Queensland,-27.490295,153.248154,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,11,13,Australia,AU,Queensland,-27.511766,153.253838,EPSG:4326 +HUMAN_OBSERVATION,Fiona Wythes,1,,,2022,3,9,Australia,AU,Queensland,-27.501664,153.260157,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,19,Australia,AU,Queensland,-27.511421,153.249928,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,29,Australia,AU,Queensland,-27.615204,153.197769,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,6,Australia,AU,Queensland,-27.488892,153.242691,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,13,Australia,AU,Queensland,-27.504988,153.233856,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-27.425389,153.51911,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,5,21,Australia,AU,Queensland,-27.569441,153.298386,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,2,18,Australia,AU,Queensland,-27.511278,153.250089,EPSG:4326 +HUMAN_OBSERVATION,Willemijn Seijn,1,,,2024,10,11,Australia,AU,Queensland,-27.39845,153.440386,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,9,Australia,AU,Queensland,-27.575661,153.271648,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,12,21,Australia,AU,Queensland,-27.495815,153.245255,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2023,12,27,Australia,AU,Queensland,-27.511374,153.250269,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,4,10,Australia,AU,Queensland,-27.491053,153.244847,EPSG:4326 +HUMAN_OBSERVATION,Lisa Murby,1,,,2021,9,1,Australia,AU,Queensland,-27.499031,153.230677,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,4,3,Australia,AU,Queensland,-27.490005,153.245514,EPSG:4326 +HUMAN_OBSERVATION,Fiona W,1,,,2021,8,18,Australia,AU,Queensland,-27.501723,153.260252,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,28,Australia,AU,Queensland,-27.505033,153.197784,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,8,31,Australia,AU,Queensland,-27.531765,153.28185,EPSG:4326 +HUMAN_OBSERVATION,Erica Siegel,1,,,2023,6,7,Australia,AU,Queensland,-27.500442,153.216782,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2023,1,26,Australia,AU,Queensland,-27.490777,153.245011,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,2,10,Australia,AU,Queensland,-27.500895,153.252035,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,8,Australia,AU,Queensland,-27.506868,153.232697,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,24,Australia,AU,Queensland,-27.511618,153.250763,EPSG:4326 +HUMAN_OBSERVATION,Lara Herrero,1,,,2021,8,18,Australia,AU,Queensland,-27.529986,153.281357,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,11,10,Australia,AU,Queensland,-27.495405,153.219274,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,10,2,Australia,AU,Queensland,-27.48975,153.244665,EPSG:4326 +HUMAN_OBSERVATION,Kelli Longworth,1,MALE,,2022,10,14,Australia,AU,Queensland,-27.394989,153.440934,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,7,Australia,AU,Queensland,-27.512913,153.242121,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,28,Australia,AU,Queensland,-27.511477,153.247577,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,10,1,Australia,AU,Queensland,-27.48958,153.248763,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,9,5,Australia,AU,Queensland,-27.621201,153.20433,EPSG:4326 +HUMAN_OBSERVATION,Julie Elliott,1,MALE,,2023,2,12,Australia,AU,Queensland,-27.432069,153.524223,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,10,Australia,AU,Queensland,-27.496485,153.246022,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,11,7,Australia,AU,Queensland,-27.613146,153.199554,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2024,2,19,Australia,AU,Queensland,-27.511281,153.201438,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,4,25,Australia,AU,Queensland,-27.56863,153.29513,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,26,Australia,AU,Queensland,-27.512721,153.256049,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,1,20,Australia,AU,Queensland,-27.511603,153.251915,EPSG:4326 +HUMAN_OBSERVATION,Brett Rafton,1,,,2022,2,23,Australia,AU,Queensland,-27.492476,153.23892,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,30,Australia,AU,Queensland,-27.575163,153.269974,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,3,Australia,AU,Queensland,-27.574576,153.272098,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,10,17,Australia,AU,Queensland,-27.490697,153.248345,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,2,Australia,AU,Queensland,-27.490534,153.248575,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2022,11,5,Australia,AU,Queensland,-27.575729,153.271272,EPSG:4326 +HUMAN_OBSERVATION,Leesa Matthews,1,,,2021,9,9,Australia,AU,Queensland,-27.563602,153.204989,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,1,31,Australia,AU,Queensland,-27.511703,153.25259,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,5,23,Australia,AU,Queensland,-27.509285,153.251709,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,15,Australia,AU,Queensland,-27.491019,153.248538,EPSG:4326 +HUMAN_OBSERVATION,Brett Rafton,1,,,2022,3,30,Australia,AU,Queensland,-27.49177,153.238069,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2022,10,9,Australia,AU,Queensland,-27.511622,153.252322,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,12,27,Australia,AU,Queensland,-27.495846,153.245308,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,6,29,Australia,AU,Queensland,-27.612724,153.198227,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,13,Australia,AU,Queensland,-27.613775,153.197083,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,MALE,,2024,5,25,Australia,AU,Queensland,-27.568663,153.295237,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2021,10,8,Australia,AU,Queensland,-27.495033,153.403522,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,2,Australia,AU,Queensland,-27.512167,153.252102,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,9,26,Australia,AU,Queensland,-27.513804,153.256017,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,18,Australia,AU,Queensland,-27.511464,153.247568,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,1,Australia,AU,Queensland,-27.511301,153.25034,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,11,25,Australia,AU,Queensland,-27.575604,153.270983,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,4,26,Australia,AU,Queensland,-27.511812,153.253993,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,10,4,Australia,AU,Queensland,-27.496401,153.24577,EPSG:4326 +HUMAN_OBSERVATION,Jen Louw,1,,,2024,10,11,Australia,AU,Queensland,-27.496253,153.39915,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,12,14,Australia,AU,Queensland,-27.539131,153.272507,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,6,Australia,AU,Queensland,-27.511371,153.250221,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,7,29,Australia,AU,Queensland,-27.510075,153.251862,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,9,Australia,AU,Queensland,-27.513834,153.256338,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,4,25,Australia,AU,Queensland,-27.61862,153.26763,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2023,10,20,Australia,AU,Queensland,-27.581552,153.280337,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,1,20,Australia,AU,Queensland,-27.511561,153.24992,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,7,8,Australia,AU,Queensland,-27.512442,153.202179,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,1,22,Australia,AU,Queensland,-27.505861,153.233994,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,28,Australia,AU,Queensland,-27.511335,153.250358,EPSG:4326 +HUMAN_OBSERVATION,Caren Gillis,1,,,2023,8,31,Australia,AU,Queensland,-27.515846,153.239825,EPSG:4326 +HUMAN_OBSERVATION,Donna Smith,1,,,2023,10,25,Australia,AU,Queensland,-27.567985,153.255401,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,21,Australia,AU,Queensland,-27.513699,153.199203,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,6,2,Australia,AU,Queensland,-27.490638,153.248662,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,30,Australia,AU,Queensland,-27.495796,153.244327,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,28,Australia,AU,Queensland,-27.490725,153.248573,EPSG:4326 +HUMAN_OBSERVATION,stuart Gudgeon,1,FEMALE,,2024,7,15,Australia,AU,Queensland,-27.489111,153.243408,EPSG:4326 +HUMAN_OBSERVATION,Bethany Cramb,1,MALE,,2023,11,19,Australia,AU,Queensland,-27.546518,153.217644,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,13,Australia,AU,Queensland,-27.511918,153.24995,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,1,Australia,AU,Queensland,-27.511767,153.250659,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,11,23,Australia,AU,Queensland,-27.51147,153.249174,EPSG:4326 +HUMAN_OBSERVATION,Lara Herrero,1,,,2021,11,17,Australia,AU,Queensland,-27.531058,153.281915,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,,,2023,11,13,Australia,AU,Queensland,-27.500289,153.223922,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,11,13,Australia,AU,Queensland,-27.511759,153.253854,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,5,24,Australia,AU,Queensland,-27.509272,153.251691,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,1,Australia,AU,Queensland,-27.505215,153.233307,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,6,9,Australia,AU,Queensland,-27.490713,153.245461,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,7,Australia,AU,Queensland,-27.490417,153.246719,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,1,9,Australia,AU,Queensland,-27.495749,153.245723,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,10,Australia,AU,Queensland,-27.57431,153.272227,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,4,25,Australia,AU,Queensland,-27.513723,153.202408,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,9,29,Australia,AU,Queensland,-27.392372,153.442659,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,12,Australia,AU,Queensland,-27.495945,153.24775,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2022,2,8,Australia,AU,Queensland,-27.51456,153.242218,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,17,Australia,AU,Queensland,-27.511384,153.250104,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,FEMALE,,2023,11,7,Australia,AU,Queensland,-27.42795,153.524261,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,2,13,Australia,AU,Queensland,-27.531678,153.281904,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,3,Australia,AU,Queensland,-27.511763,153.250859,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2023,10,31,Australia,AU,Queensland,-27.575581,153.270897,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,22,Australia,AU,Queensland,-27.490944,153.244995,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,14,Australia,AU,Queensland,-27.512881,153.256822,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,2,Australia,AU,Queensland,-27.511265,153.250313,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,7,22,Australia,AU,Queensland,-27.50922,153.204132,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,28,Australia,AU,Queensland,-27.49565,153.24621,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,11,11,Australia,AU,Queensland,-27.514212,153.198853,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2021,4,27,Australia,AU,Queensland,-27.490859,153.248231,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,11,26,Australia,AU,Queensland,-27.575604,153.270961,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,,,2022,11,2,Australia,AU,Queensland,-27.527807,153.255066,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,8,Australia,AU,Queensland,-27.490478,153.245,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,29,Australia,AU,Queensland,-27.511449,153.248373,EPSG:4326 +HUMAN_OBSERVATION,Caren Gillis,1,,,2023,6,13,Australia,AU,Queensland,-27.650708,153.408966,EPSG:4326 +HUMAN_OBSERVATION,Tom Short,1,,,2024,3,29,Australia,AU,Queensland,-27.514483,153.251969,EPSG:4326 +HUMAN_OBSERVATION,Detection Dogs for Conservation UniSC,1,FEMALE,,2022,8,9,Australia,AU,Queensland,-27.489669,153.245429,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,3,5,Australia,AU,Queensland,-27.511384,153.250232,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,3,Australia,AU,Queensland,-27.511731,153.253806,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,25,Australia,AU,Queensland,-27.514492,153.241968,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,5,9,Australia,AU,Queensland,-27.511663,153.251209,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,25,Australia,AU,Queensland,-27.490381,153.247986,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,28,Australia,AU,Queensland,-27.503633,153.251638,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,7,21,Australia,AU,Queensland,-27.509318,153.251891,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,19,Australia,AU,Queensland,-27.511834,153.253819,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,25,Australia,AU,Queensland,-27.575242,153.269931,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,30,Australia,AU,Queensland,-27.51147,153.250238,EPSG:4326 +HUMAN_OBSERVATION,Gregor Kirkpatrick,1,FEMALE,,2022,10,12,Australia,AU,Queensland,-27.539661,153.271042,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2021,9,6,Australia,AU,Queensland,-27.534807,153.273643,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,19,Australia,AU,Queensland,-27.492548,153.244385,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2021,4,13,Australia,AU,Queensland,-27.491116,153.244922,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,20,Australia,AU,Queensland,-27.514583,153.251906,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,26,Australia,AU,Queensland,-27.515429,153.222458,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,6,10,Australia,AU,Queensland,-27.513639,153.199356,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,11,1,Australia,AU,Queensland,-27.513174,153.202316,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,3,Australia,AU,Queensland,-27.511414,153.250254,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,8,22,Australia,AU,Queensland,-27.511259,153.250299,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,1,14,Australia,AU,Queensland,-27.497872,153.245952,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,6,Australia,AU,Queensland,-27.57547,153.271015,EPSG:4326 +HUMAN_OBSERVATION,Kristy Kimlin,1,,,2023,3,10,Australia,AU,Queensland,-27.562613,153.226248,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,15,Australia,AU,Queensland,-27.511503,153.247978,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,21,Australia,AU,Queensland,-27.491172,153.24471,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2022,8,22,Australia,AU,Queensland,-27.490464,153.246817,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,8,15,Australia,AU,Queensland,-27.511707,153.25016,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,11,3,Australia,AU,Queensland,-27.613218,153.199005,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,4,12,Australia,AU,Queensland,-27.515208,153.241211,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,10,Australia,AU,Queensland,-27.511817,153.251023,EPSG:4326 +HUMAN_OBSERVATION,Julie Elliott,1,MALE,,2021,2,13,Australia,AU,Queensland,-27.431824,153.523748,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,4,3,Australia,AU,Queensland,-27.490822,153.247726,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,14,Australia,AU,Queensland,-27.515392,153.239821,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,2,26,Australia,AU,Queensland,-27.512377,153.202011,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,5,15,Australia,AU,Queensland,-27.394025,153.44181,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,20,Australia,AU,Queensland,-27.501109,153.252279,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,12,30,Australia,AU,Queensland,-27.496453,153.245759,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,9,1,Australia,AU,Queensland,-27.51118,153.248056,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2023,12,16,Australia,AU,Queensland,-27.511637,153.250161,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,8,30,Australia,AU,Queensland,-27.500586,153.232483,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,22,Australia,AU,Queensland,-27.511679,153.252521,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,9,1,Australia,AU,Queensland,-27.490803,153.248625,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,FEMALE,,2020,12,23,Australia,AU,Queensland,-27.554414,153.272281,EPSG:4326 +HUMAN_OBSERVATION,Greg Latapie,1,FEMALE,,2022,10,14,Australia,AU,Queensland,-27.398382,153.439961,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2021,10,9,Australia,AU,Queensland,-27.494375,153.405375,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,4,11,Australia,AU,Queensland,-27.576222,153.272404,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,7,29,Australia,AU,Queensland,-27.509423,153.251476,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,13,Australia,AU,Queensland,-27.57315,153.271369,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,17,Australia,AU,Queensland,-27.511476,153.250239,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,27,Australia,AU,Queensland,-27.511362,153.25007,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,6,3,Australia,AU,Queensland,-27.489969,153.245987,EPSG:4326 +HUMAN_OBSERVATION,Eliza Silverwood,1,,,2023,10,12,Australia,AU,Queensland,-27.500942,153.250958,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,FEMALE,,2020,12,25,Australia,AU,Queensland,-27.554404,153.272442,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,6,17,Australia,AU,Queensland,-27.576745,153.271905,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,8,30,Australia,AU,Queensland,-27.499077,153.245422,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-27.401181,153.439028,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,5,21,Australia,AU,Queensland,-27.489557,153.24559,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,29,Australia,AU,Queensland,-27.576459,153.272012,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,1,3,Australia,AU,Queensland,-27.538302,153.242927,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2023,1,24,Australia,AU,Queensland,-27.48999,153.245911,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,28,Australia,AU,Queensland,-27.511605,153.251065,EPSG:4326 +HUMAN_OBSERVATION,Lisa Bannister,1,,,2022,2,9,Australia,AU,Queensland,-27.526894,153.24789,EPSG:4326 +HUMAN_OBSERVATION,Detection Dogs for Conservation UniSC,1,MALE,,2022,8,9,Australia,AU,Queensland,-27.513747,153.24141,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,30,Australia,AU,Queensland,-27.490552,153.248237,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,11,23,Australia,AU,Queensland,-27.490514,153.24813,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,3,23,Australia,AU,Queensland,-27.57625,153.271111,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,9,Australia,AU,Queensland,-27.490817,153.248474,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,12,27,Australia,AU,Queensland,-27.574976,153.272055,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,5,Australia,AU,Queensland,-27.490875,153.244962,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,3,5,Australia,AU,Queensland,-27.514368,153.195114,EPSG:4326 +HUMAN_OBSERVATION,Caren Sutch,1,,,2024,10,20,Australia,AU,Queensland,-27.526522,153.27683,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,7,29,Australia,AU,Queensland,-27.567314,153.297485,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,,,2024,1,11,Australia,AU,Queensland,-27.499847,153.230531,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,22,Australia,AU,Queensland,-27.511641,153.25366,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,28,Australia,AU,Queensland,-27.50783,153.232391,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,1,6,Australia,AU,Queensland,-27.512458,153.242176,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,11,4,Australia,AU,Queensland,-27.511658,153.250534,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,16,Australia,AU,Queensland,-27.507368,153.19487,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,7,26,Australia,AU,Queensland,-27.511605,153.250761,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,9,9,Australia,AU,Queensland,-27.518948,153.217834,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2022,2,5,Australia,AU,Queensland,-27.501839,153.249536,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,12,Australia,AU,Queensland,-27.511539,153.250103,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2022,11,6,Australia,AU,Queensland,-27.576002,153.271202,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,8,Australia,AU,Queensland,-27.490737,153.248516,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,9,Australia,AU,Queensland,-27.502507,153.250337,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,11,4,Australia,AU,Queensland,-27.613066,153.198608,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,FEMALE,,2023,10,6,Australia,AU,Queensland,-27.49495,153.218798,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,7,19,Australia,AU,Queensland,-27.511374,153.249536,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,2,22,Australia,AU,Queensland,-27.489698,153.245102,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,5,9,Australia,AU,Queensland,-27.501187,153.252401,EPSG:4326 +HUMAN_OBSERVATION,Julie Elliott,1,FEMALE,,2023,2,12,Australia,AU,Queensland,-27.432046,153.524192,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,2,Australia,AU,Queensland,-27.490173,153.248722,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,3,13,Australia,AU,Queensland,-27.489878,153.245346,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,7,14,Australia,AU,Queensland,-27.50934,153.251834,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,10,22,Australia,AU,Queensland,-27.511668,153.250032,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,11,15,Australia,AU,Queensland,-27.574867,153.272275,EPSG:4326 +HUMAN_OBSERVATION,Caren Gillis,1,,,2023,8,19,Australia,AU,Queensland,-27.525472,153.279146,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,6,Australia,AU,Queensland,-27.511623,153.251492,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,30,Australia,AU,Queensland,-27.575196,153.2713,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,26,Australia,AU,Queensland,-27.497595,153.246413,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,4,10,Australia,AU,Queensland,-27.490767,153.247036,EPSG:4326 +HUMAN_OBSERVATION,Caren Gillis,1,FEMALE,,2023,8,18,Australia,AU,Queensland,-27.525486,153.279266,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2023,1,19,Australia,AU,Queensland,-27.546358,153.268829,EPSG:4326 +HUMAN_OBSERVATION,Emily Fernan,1,,,2024,10,26,Australia,AU,Queensland,-27.503263,153.226821,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,4,28,Australia,AU,Queensland,-27.612909,153.19841,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,2,22,Australia,AU,Queensland,-27.490114,153.245422,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,1,24,Australia,AU,Queensland,-27.502817,153.251205,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,1,Australia,AU,Queensland,-27.612509,153.197769,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,7,Australia,AU,Queensland,-27.511651,153.250279,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,23,Australia,AU,Queensland,-27.504042,153.234009,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,28,Australia,AU,Queensland,-27.49062,153.247994,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,10,Australia,AU,Queensland,-27.514428,153.256153,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,9,Australia,AU,Queensland,-27.514635,153.24189,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,31,Australia,AU,Queensland,-27.51376,153.256112,EPSG:4326 +HUMAN_OBSERVATION,Kelly Jones,1,FEMALE,,2022,8,5,Australia,AU,Queensland,-27.534932,153.278684,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,4,18,Australia,AU,Queensland,-27.489561,153.245468,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,10,27,Australia,AU,Queensland,-27.61375,153.199356,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,21,Australia,AU,Queensland,-27.511465,153.250168,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,3,Australia,AU,Queensland,-27.504433,153.198563,EPSG:4326 +HUMAN_OBSERVATION,Richard Stone,1,MALE,,2022,11,14,Australia,AU,Queensland,-27.496089,153.253283,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,12,Australia,AU,Queensland,-27.505907,153.23378,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,FEMALE,,2022,10,14,Australia,AU,Queensland,-27.402917,153.441526,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,26,Australia,AU,Queensland,-27.57409,153.272699,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,MALE,,2023,11,22,Australia,AU,Queensland,-27.491625,153.244732,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,4,Australia,AU,Queensland,-27.491391,153.244856,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,8,7,Australia,AU,Queensland,-27.531257,153.281668,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,5,19,Australia,AU,Queensland,-27.502928,153.225415,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,2,Australia,AU,Queensland,-27.511366,153.249981,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,9,5,Australia,AU,Queensland,-27.531787,153.282065,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,25,Australia,AU,Queensland,-27.490428,153.248189,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,5,8,Australia,AU,Queensland,-27.491042,153.244737,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2022,1,7,Australia,AU,Queensland,-27.575003,153.270954,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,10,Australia,AU,Queensland,-27.511466,153.248575,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,7,Australia,AU,Queensland,-27.501314,153.235092,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,8,Australia,AU,Queensland,-27.51158,153.248658,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,12,10,Australia,AU,Queensland,-27.51154,153.250184,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,9,15,Australia,AU,Queensland,-27.511413,153.249902,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,8,8,Australia,AU,Queensland,-27.49087,153.244847,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,4,Australia,AU,Queensland,-27.513115,153.255398,EPSG:4326 +HUMAN_OBSERVATION,Jane Fox,1,,,2023,12,26,Australia,AU,Queensland,-27.496606,153.206325,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,5,22,Australia,AU,Queensland,-27.511605,153.248615,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,8,15,Australia,AU,Queensland,-27.505302,153.20166,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,10,3,Australia,AU,Queensland,-27.395841,153.446423,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,21,Australia,AU,Queensland,-27.51402,153.255895,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,10,Australia,AU,Queensland,-27.490764,153.248455,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,21,Australia,AU,Queensland,-27.511717,153.252309,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,1,22,Australia,AU,Queensland,-27.514791,153.194778,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,7,30,Australia,AU,Queensland,-27.509204,153.251025,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2023,1,24,Australia,AU,Queensland,-27.490431,153.247131,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,4,22,Australia,AU,Queensland,-27.491342,153.243759,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,9,5,Australia,AU,Queensland,-27.491362,153.243668,EPSG:4326 +HUMAN_OBSERVATION,Kelli Longworth,1,FEMALE,,2022,10,14,Australia,AU,Queensland,-27.395565,153.439016,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,17,Australia,AU,Queensland,-27.511461,153.247189,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,7,3,Australia,AU,Queensland,-27.56875,153.295135,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,18,Australia,AU,Queensland,-27.502319,153.231598,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,7,25,Australia,AU,Queensland,-27.489899,153.248322,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,MALE,,2022,12,1,Australia,AU,Queensland,-27.525417,153.277355,EPSG:4326 +HUMAN_OBSERVATION,Amy Strong,1,MALE,,2022,8,2,Australia,AU,Queensland,-27.503506,153.225642,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,,,2024,5,21,Australia,AU,Queensland,-27.568626,153.29512,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,FEMALE,,2021,9,7,Australia,AU,Queensland,-27.519349,153.26194,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,12,3,Australia,AU,Queensland,-27.575566,153.270875,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,6,13,Australia,AU,Queensland,-27.576745,153.271884,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,22,Australia,AU,Queensland,-27.514459,153.251881,EPSG:4326 +HUMAN_OBSERVATION,Liz Foote,1,FEMALE,,2022,10,14,Australia,AU,Queensland,-27.400946,153.438177,EPSG:4326 +HUMAN_OBSERVATION,Scott Bretherton,1,,,2023,8,1,Australia,AU,Queensland,-27.398868,153.440654,EPSG:4326 +HUMAN_OBSERVATION,Terasia Gerding,1,FEMALE,,2021,8,8,Australia,AU,Queensland,-27.533558,153.231743,EPSG:4326 +HUMAN_OBSERVATION,Deb Tabbart,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-27.395513,153.4385,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,2,Australia,AU,Queensland,-27.57625,153.273386,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,17,Australia,AU,Queensland,-27.574138,153.271744,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,1,29,Australia,AU,Queensland,-27.511485,153.248173,EPSG:4326 +HUMAN_OBSERVATION,Emily Ogle,1,,,2024,8,7,Australia,AU,Queensland,-27.52,153.23,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,13,Australia,AU,Queensland,-27.489739,153.249106,EPSG:4326 +HUMAN_OBSERVATION,Lisa Smith,1,FEMALE,,2023,11,20,Australia,AU,Queensland,-27.540199,153.268919,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,10,26,Australia,AU,Queensland,-27.51183,153.254331,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,10,29,Australia,AU,Queensland,-27.511727,153.253624,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,7,21,Australia,AU,Queensland,-27.511695,153.251539,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,29,Australia,AU,Queensland,-27.511635,153.252562,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2024,6,27,Australia,AU,Queensland,-27.54868,153.256118,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,4,26,Australia,AU,Queensland,-27.511446,153.250156,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,12,9,Australia,AU,Queensland,-27.575699,153.27094,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,6,24,Australia,AU,Queensland,-27.508234,153.201981,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,1,Australia,AU,Queensland,-27.615105,153.197784,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2022,12,2,Australia,AU,Queensland,-27.42493,153.519223,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,FEMALE,,2021,8,27,Australia,AU,Queensland,-27.511596,153.250532,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,21,Australia,AU,Queensland,-27.575451,153.27094,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,,,2023,11,13,Australia,AU,Queensland,-27.503753,153.225678,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,,,2024,5,30,Australia,AU,Queensland,-27.511734,153.24861,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,15,Australia,AU,Queensland,-27.574348,153.272313,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2021,1,30,Australia,AU,Queensland,-27.490875,153.247873,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,8,Australia,AU,Queensland,-27.489721,153.245651,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,3,Australia,AU,Queensland,-27.511403,153.25023,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,3,13,Australia,AU,Queensland,-27.512789,153.203003,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2024,10,3,Australia,AU,Queensland,-27.511615,153.250903,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,19,Australia,AU,Queensland,-27.511709,153.253849,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,7,Australia,AU,Queensland,-27.511282,153.250326,EPSG:4326 +HUMAN_OBSERVATION,Kate Woodley,1,,,2023,8,3,Australia,AU,Queensland,-27.525579,153.281918,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,10,9,Australia,AU,Queensland,-27.510561,153.198273,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,10,21,Australia,AU,Queensland,-27.505575,153.225235,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,9,16,Australia,AU,Queensland,-27.50803,153.20195,EPSG:4326 +HUMAN_OBSERVATION,Rom Cris,1,MALE,,2021,10,8,Australia,AU,Queensland,-27.40005,153.4389,EPSG:4326 +HUMAN_OBSERVATION,M P,1,,,2023,10,8,Australia,AU,Queensland,-27.493978,153.253376,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,28,Australia,AU,Queensland,-27.491347,153.244742,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,10,26,Australia,AU,Queensland,-27.490555,153.248173,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,6,6,Australia,AU,Queensland,-27.511691,153.2513,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,8,24,Australia,AU,Queensland,-27.509106,153.251067,EPSG:4326 +HUMAN_OBSERVATION,Kelli Longworth,1,,,2022,10,14,Australia,AU,Queensland,-27.49796,153.40181,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,25,Australia,AU,Queensland,-27.514651,153.251921,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,13,Australia,AU,Queensland,-27.511254,153.25027,EPSG:4326 +HUMAN_OBSERVATION,Terasia Gerding,1,,,2021,7,25,Australia,AU,Queensland,-27.533558,153.231743,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,8,4,Australia,AU,Queensland,-27.611816,153.219818,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,9,26,Australia,AU,Queensland,-27.503188,153.250628,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,5,2,Australia,AU,Queensland,-27.511646,153.251606,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,7,Australia,AU,Queensland,-27.574767,153.272012,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,3,4,Australia,AU,Queensland,-27.574919,153.271927,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2024,1,23,Australia,AU,Queensland,-27.502602,153.225422,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,2,Australia,AU,Queensland,-27.51537,153.239814,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,1,Australia,AU,Queensland,-27.490602,153.248924,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,15,Australia,AU,Queensland,-27.576764,153.272067,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,5,22,Australia,AU,Queensland,-27.622965,153.207108,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,10,3,Australia,AU,Queensland,-27.50976,153.196503,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,9,23,Australia,AU,Queensland,-27.488792,153.244407,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,26,Australia,AU,Queensland,-27.575394,153.270274,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,21,Australia,AU,Queensland,-27.575242,153.271433,EPSG:4326 +HUMAN_OBSERVATION,Kelli Longworth,1,FEMALE,,2022,10,14,Australia,AU,Queensland,-27.395709,153.439072,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,1,28,Australia,AU,Queensland,-27.54682,153.258805,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,6,10,Australia,AU,Queensland,-27.509058,153.20311,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,6,13,Australia,AU,Queensland,-27.525918,153.28306,EPSG:4326 +HUMAN_OBSERVATION,Tracey Mann,1,,,2022,10,14,Australia,AU,Queensland,-27.39698,153.440817,EPSG:4326 +HUMAN_OBSERVATION,Laura Clyne,1,,,2020,8,31,Australia,AU,Queensland,-27.546747,153.21795,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2021,12,22,Australia,AU,Queensland,-27.547261,153.258344,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,29,Australia,AU,Queensland,-27.575566,153.271068,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,31,Australia,AU,Queensland,-27.575311,153.2714,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,9,15,Australia,AU,Queensland,-27.490813,153.247594,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,5,Australia,AU,Queensland,-27.575014,153.27139,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,FEMALE,,2023,8,26,Australia,AU,Queensland,-27.511602,153.250091,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2022,8,6,Australia,AU,Queensland,-27.48955,153.244042,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,3,7,Australia,AU,Queensland,-27.546328,153.268387,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,14,Australia,AU,Queensland,-27.615006,153.198112,EPSG:4326 +HUMAN_OBSERVATION,Amy Strong,1,,,2023,1,22,Australia,AU,Queensland,-27.503074,153.225487,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,8,9,Australia,AU,Queensland,-27.535396,153.250962,EPSG:4326 +HUMAN_OBSERVATION,Daniel Dezentje,1,,,2023,3,3,Australia,AU,Queensland,-27.500876,153.221596,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,3,Australia,AU,Queensland,-27.51078,153.200241,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,11,17,Australia,AU,Queensland,-27.514513,153.241875,EPSG:4326 +HUMAN_OBSERVATION,Annette Taylor,1,,,2022,10,13,Australia,AU,Queensland,-27.546856,153.261963,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,2,15,Australia,AU,Queensland,-27.53534,153.27058,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,7,8,Australia,AU,Queensland,-27.505064,153.233444,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,9,7,Australia,AU,Queensland,-27.511245,153.249932,EPSG:4326 +HUMAN_OBSERVATION,Caren Gillis,1,,,2023,4,3,Australia,AU,Queensland,-27.495028,153.253809,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,28,Australia,AU,Queensland,-27.575377,153.271148,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,7,29,Australia,AU,Queensland,-27.52534,153.284411,EPSG:4326 +HUMAN_OBSERVATION,jessie laing,1,MALE,,2023,9,29,Australia,AU,Queensland,-27.429261,153.529577,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,12,1,Australia,AU,Queensland,-27.490519,153.248044,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2022,11,19,Australia,AU,Queensland,-27.426151,153.522001,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,11,2,Australia,AU,Queensland,-27.490643,153.247926,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,12,1,Australia,AU,Queensland,-27.4896,153.244994,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,5,16,Australia,AU,Queensland,-27.490387,153.247055,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,12,7,Australia,AU,Queensland,-27.620499,153.204727,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,24,Australia,AU,Queensland,-27.575501,153.271036,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,FEMALE,,2023,10,14,Australia,AU,Queensland,-27.507244,153.222947,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2024,7,4,Australia,AU,Queensland,-27.499429,153.223152,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,9,9,Australia,AU,Queensland,-27.617893,153.204971,EPSG:4326 +HUMAN_OBSERVATION,Caitlin Stewart,1,FEMALE,,2024,10,11,Australia,AU,Queensland,-27.407348,153.450864,EPSG:4326 +HUMAN_OBSERVATION,Kelli Longworth,1,FEMALE,,2022,10,14,Australia,AU,Queensland,-27.497968,153.399608,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,25,Australia,AU,Queensland,-27.575623,153.270961,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,3,24,Australia,AU,Queensland,-27.62269,153.19827,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,17,Australia,AU,Queensland,-27.576611,153.272002,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,19,Australia,AU,Queensland,-27.51155,153.249989,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,3,11,Australia,AU,Queensland,-27.61276,153.19747,EPSG:4326 +HUMAN_OBSERVATION,John Hook,1,,,2023,10,4,Australia,AU,Queensland,-27.490323,153.205459,EPSG:4326 +HUMAN_OBSERVATION,Abigail Robinson,1,,,2021,10,30,Australia,AU,Queensland,-27.536392,153.27925,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,4,22,Australia,AU,Queensland,-27.50808,153.20171,EPSG:4326 +HUMAN_OBSERVATION,Cathryn Dexter,1,FEMALE,,2022,8,3,Australia,AU,Queensland,-27.505043,153.198729,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,3,9,Australia,AU,Queensland,-27.575585,153.270961,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2021,10,9,Australia,AU,Queensland,-27.430989,153.526267,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,7,12,Australia,AU,Queensland,-27.511424,153.247209,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,5,22,Australia,AU,Queensland,-27.509096,153.2516,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,10,6,Australia,AU,Queensland,-27.532632,153.281958,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,2,27,Australia,AU,Queensland,-27.574424,153.272141,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,29,Australia,AU,Queensland,-27.50625,153.197876,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,9,28,Australia,AU,Queensland,-27.39601,153.444603,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2022,9,29,Australia,AU,Queensland,-27.531896,153.281937,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,2,26,Australia,AU,Queensland,-27.504461,153.202332,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,3,22,Australia,AU,Queensland,-27.539635,153.271042,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,5,15,Australia,AU,Queensland,-27.394877,153.441464,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,9,Australia,AU,Queensland,-27.511243,153.249503,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2021,10,16,Australia,AU,Queensland,-27.502655,153.249691,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,8,8,Australia,AU,Queensland,-27.511703,153.251872,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,12,15,Australia,AU,Queensland,-27.546385,153.268707,EPSG:4326 +HUMAN_OBSERVATION,Gemma Finch,1,MALE,,2024,8,19,Australia,AU,Queensland,-27.548482,153.217142,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,2,Australia,AU,Queensland,-27.502983,153.250551,EPSG:4326 +HUMAN_OBSERVATION,Rebecca Wood,1,,,2021,9,4,Australia,AU,Queensland,-27.396785,153.439981,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,8,Australia,AU,Queensland,-27.51477,153.251991,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,4,28,Australia,AU,Queensland,-27.512978,153.202835,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,9,28,Australia,AU,Queensland,-27.503398,153.251019,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,17,Australia,AU,Queensland,-27.502931,153.251214,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,9,30,Australia,AU,Queensland,-27.513046,153.202698,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,7,Australia,AU,Queensland,-27.504959,153.197921,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,10,13,Australia,AU,Queensland,-27.625097,153.206787,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,3,25,Australia,AU,Queensland,-27.490185,153.249042,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,17,Australia,AU,Queensland,-27.57587,153.271176,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,8,Australia,AU,Queensland,-27.51158,153.250527,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,4,3,Australia,AU,Queensland,-27.546545,153.26886,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,14,Australia,AU,Queensland,-27.51143,153.247801,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,9,Australia,AU,Queensland,-27.501035,153.252211,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,FEMALE,,2023,11,19,Australia,AU,Queensland,-27.495243,153.219078,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,23,Australia,AU,Queensland,-27.490332,153.249247,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,8,Australia,AU,Queensland,-27.511612,153.250781,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,2,20,Australia,AU,Queensland,-27.511425,153.249952,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2021,3,30,Australia,AU,Queensland,-27.490262,153.24872,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,2,26,Australia,AU,Queensland,-27.505367,153.197296,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,6,Australia,AU,Queensland,-27.505304,153.197113,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,1,30,Australia,AU,Queensland,-27.490148,153.247003,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,FEMALE,,2020,12,19,Australia,AU,Queensland,-27.554347,153.272377,EPSG:4326 +HUMAN_OBSERVATION,Matt Prime,1,,,2023,6,29,Australia,AU,Queensland,-27.492331,153.244837,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,11,2,Australia,AU,Queensland,-27.488796,153.243973,EPSG:4326 +HUMAN_OBSERVATION,Christina Zdenek,1,,,2023,3,9,Australia,AU,Queensland,-27.512236,153.201828,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,10,13,Australia,AU,Queensland,-27.489132,153.245193,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,FEMALE,,2023,11,16,Australia,AU,Queensland,-27.485473,153.408859,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,MALE,,2020,12,18,Australia,AU,Queensland,-27.551484,153.274126,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,6,Australia,AU,Queensland,-27.511287,153.250372,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,28,Australia,AU,Queensland,-27.514021,153.200241,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,23,Australia,AU,Queensland,-27.496006,153.245578,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,6,16,Australia,AU,Queensland,-27.511405,153.247183,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,14,Australia,AU,Queensland,-27.573416,153.271497,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2021,1,15,Australia,AU,Queensland,-27.498305,153.246531,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,15,Australia,AU,Queensland,-27.511336,153.25008,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,6,Australia,AU,Queensland,-27.511403,153.250064,EPSG:4326 +HUMAN_OBSERVATION,Deb Tabbart,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-27.425452,153.519181,EPSG:4326 +HUMAN_OBSERVATION,Amelia Barker,1,,,2021,12,17,Australia,AU,Queensland,-27.514371,153.25563,EPSG:4326 +HUMAN_OBSERVATION,John Flemming,1,MALE,,2023,2,25,Australia,AU,Queensland,-27.498233,153.223609,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,22,Australia,AU,Queensland,-27.614483,153.197433,EPSG:4326 +HUMAN_OBSERVATION,Marian Henbery,1,,,2022,10,11,Australia,AU,Queensland,-27.547476,153.217982,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,15,Australia,AU,Queensland,-27.511782,153.253602,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,29,Australia,AU,Queensland,-27.511503,153.249908,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,MALE,,2024,6,1,Australia,AU,Queensland,-27.49852,153.225489,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,8,29,Australia,AU,Queensland,-27.501289,153.252537,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,9,26,Australia,AU,Queensland,-27.508011,153.231781,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,14,Australia,AU,Queensland,-27.564442,153.306122,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,5,Australia,AU,Queensland,-27.490587,153.248787,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,6,Australia,AU,Queensland,-27.393212,153.439904,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,17,Australia,AU,Queensland,-27.575585,153.27109,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2023,1,24,Australia,AU,Queensland,-27.490913,153.244956,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,10,5,Australia,AU,Queensland,-27.515357,153.239807,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,23,Australia,AU,Queensland,-27.511568,153.249677,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,8,1,Australia,AU,Queensland,-27.490131,153.2485,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,14,Australia,AU,Queensland,-27.490174,153.245268,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,10,17,Australia,AU,Queensland,-27.490696,153.245021,EPSG:4326 +HUMAN_OBSERVATION,Marie Petersen,1,,,2021,4,10,Australia,AU,Queensland,-27.520257,153.25959,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,24,Australia,AU,Queensland,-27.490181,153.248602,EPSG:4326 +HUMAN_OBSERVATION,Chris Moriarty,1,FEMALE,,2023,7,21,Australia,AU,Queensland,-27.482867,153.238576,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,2,22,Australia,AU,Queensland,-27.490444,153.247726,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,10,20,Australia,AU,Queensland,-27.620802,153.206636,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,20,Australia,AU,Queensland,-27.511298,153.249995,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,12,17,Australia,AU,Queensland,-27.502423,153.250053,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,14,Australia,AU,Queensland,-27.574424,153.272356,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,9,Australia,AU,Queensland,-27.575604,153.270897,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,13,Australia,AU,Queensland,-27.51169,153.253664,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,8,Australia,AU,Queensland,-27.51225,153.255539,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,10,16,Australia,AU,Queensland,-27.506016,153.201172,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,1,Australia,AU,Queensland,-27.490124,153.246902,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,9,12,Australia,AU,Queensland,-27.511236,153.249943,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,7,8,Australia,AU,Queensland,-27.56736,153.297165,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,10,2,Australia,AU,Queensland,-27.489911,153.245287,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,12,2,Australia,AU,Queensland,-27.621217,153.204269,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,12,7,Australia,AU,Queensland,-27.510918,153.203156,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,12,12,Australia,AU,Queensland,-27.503691,153.225528,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2023,1,5,Australia,AU,Queensland,-27.546566,153.272156,EPSG:4326 +HUMAN_OBSERVATION,Jane Hunter,1,MALE,,2022,11,13,Australia,AU,Queensland,-27.428984,153.530745,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,24,Australia,AU,Queensland,-27.490752,153.245614,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2022,3,22,Australia,AU,Queensland,-27.574912,153.270473,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,9,22,Australia,AU,Queensland,-27.574975,153.271358,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,17,Australia,AU,Queensland,-27.576387,153.272547,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,10,20,Australia,AU,Queensland,-27.489586,153.248841,EPSG:4326 +HUMAN_OBSERVATION,Maria Dotlic,1,,,2021,12,1,Australia,AU,Queensland,-27.551341,153.252676,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,3,Australia,AU,Queensland,-27.513191,153.242174,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2022,1,28,Australia,AU,Queensland,-27.544236,153.188939,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2022,12,20,Australia,AU,Queensland,-27.546594,153.270336,EPSG:4326 +HUMAN_OBSERVATION,Gemma Finch,1,,,2024,9,10,Australia,AU,Queensland,-27.493807,153.252735,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,10,2,Australia,AU,Queensland,-27.39616,153.444784,EPSG:4326 +HUMAN_OBSERVATION,Sandra Rolls,1,FEMALE,,2022,11,19,Australia,AU,Queensland,-27.549659,153.205013,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,18,Australia,AU,Queensland,-27.505056,153.196701,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,2,15,Australia,AU,Queensland,-27.627955,153.202663,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,9,Australia,AU,Queensland,-27.490977,153.244986,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,29,Australia,AU,Queensland,-27.503622,153.19368,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,9,2,Australia,AU,Queensland,-27.490734,153.247954,EPSG:4326 +HUMAN_OBSERVATION,Adam Reid,1,,,2024,7,19,Australia,AU,Queensland,-27.479245,153.069158,EPSG:4326 +HUMAN_OBSERVATION,Janet Kohlmannhuber,1,,,2020,12,4,Australia,AU,Queensland,-27.569191,153.300131,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,26,Australia,AU,Queensland,-27.513917,153.255953,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,8,23,Australia,AU,Queensland,-27.511676,153.251359,EPSG:4326 +HUMAN_OBSERVATION,Keith Eigeland,1,,,2022,5,5,Australia,AU,Queensland,-27.492721,153.200151,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,FEMALE,,2022,11,26,Australia,AU,Queensland,-27.494397,153.217714,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,16,Australia,AU,Queensland,-27.490878,153.248173,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,29,Australia,AU,Queensland,-27.511382,153.25033,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,22,Australia,AU,Queensland,-27.49172,153.244204,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,3,12,Australia,AU,Queensland,-27.490038,153.245094,EPSG:4326 +HUMAN_OBSERVATION,Chris Orpen,1,,,2023,5,26,Australia,AU,Queensland,-27.5298,153.272766,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,10,19,Australia,AU,Queensland,-27.539585,153.27063,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2021,9,27,Australia,AU,Queensland,-27.534775,153.273729,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,9,2,Australia,AU,Queensland,-27.617191,153.210114,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,2,Australia,AU,Queensland,-27.51167,153.250748,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,11,14,Australia,AU,Queensland,-27.490659,153.248095,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,6,25,Australia,AU,Queensland,-27.490104,153.245635,EPSG:4326 +HUMAN_OBSERVATION,Julie Elliott,1,MALE,,2023,3,9,Australia,AU,Queensland,-27.432067,153.524233,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,6,5,Australia,AU,Queensland,-27.577506,153.273064,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,2,15,Australia,AU,Queensland,-27.511559,153.250068,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,11,14,Australia,AU,Queensland,-27.491018,153.245032,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,MALE,,2023,11,7,Australia,AU,Queensland,-27.53829,153.182233,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2023,1,13,Australia,AU,Queensland,-27.490947,153.248119,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,19,Australia,AU,Queensland,-27.574767,153.271283,EPSG:4326 +HUMAN_OBSERVATION,Jessica Fidler,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-27.427402,153.51912,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2024,3,8,Australia,AU,Queensland,-27.500215,153.223837,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,6,Australia,AU,Queensland,-27.514064,153.255987,EPSG:4326 +HUMAN_OBSERVATION,Caroline Watson,1,,,2024,1,12,Australia,AU,Queensland,-27.611312,153.295794,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2021,10,18,Australia,AU,Queensland,-27.536644,153.278439,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,6,21,Australia,AU,Queensland,-27.513428,153.242787,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,9,17,Australia,AU,Queensland,-27.514484,153.196426,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,11,1,Australia,AU,Queensland,-27.491142,153.2453,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,6,3,Australia,AU,Queensland,-27.568825,153.294586,EPSG:4326 +HUMAN_OBSERVATION,Cherie Carothers,1,,,2022,10,23,Australia,AU,Queensland,-27.399004,153.437988,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,5,14,Australia,AU,Queensland,-27.490464,153.248905,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,7,19,Australia,AU,Queensland,-27.509372,153.251437,EPSG:4326 +HUMAN_OBSERVATION,Eden Johnston,1,,,2024,10,11,Australia,AU,Queensland,-27.502611,153.407057,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,6,Australia,AU,Queensland,-27.503892,153.252625,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,10,14,Australia,AU,Queensland,-27.570223,153.290131,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,16,Australia,AU,Queensland,-27.511973,153.25426,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,7,22,Australia,AU,Queensland,-27.56963,153.298676,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,8,22,Australia,AU,Queensland,-27.531696,153.282087,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,26,Australia,AU,Queensland,-27.511411,153.250278,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,1,Australia,AU,Queensland,-27.5032,153.251575,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,28,Australia,AU,Queensland,-27.514501,153.241856,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2022,5,4,Australia,AU,Queensland,-27.490736,153.248862,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,3,19,Australia,AU,Queensland,-27.4898,153.24529,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,31,Australia,AU,Queensland,-27.511499,153.248659,EPSG:4326 +HUMAN_OBSERVATION,Claire Casey,1,MALE,,2024,11,6,Australia,AU,Queensland,-27.512043,153.235239,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,8,Australia,AU,Queensland,-27.575812,153.271358,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,14,Australia,AU,Queensland,-27.511416,153.250341,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,FEMALE,,2023,1,10,Australia,AU,Queensland,-27.499726,153.223137,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,31,Australia,AU,Queensland,-27.511851,153.249821,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,4,Australia,AU,Queensland,-27.576041,153.27345,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,6,14,Australia,AU,Queensland,-27.511424,153.247558,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,31,Australia,AU,Queensland,-27.511352,153.249967,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,4,28,Australia,AU,Queensland,-27.501377,153.230682,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,23,Australia,AU,Queensland,-27.50773,153.23233,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,7,Australia,AU,Queensland,-27.513124,153.202545,EPSG:4326 +HUMAN_OBSERVATION,Laura Clyne,1,,,2022,2,16,Australia,AU,Queensland,-27.490632,153.247039,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,12,Australia,AU,Queensland,-27.50135,153.252658,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,2,29,Australia,AU,Queensland,-27.511452,153.250181,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,11,Australia,AU,Queensland,-27.511577,153.250274,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,10,Australia,AU,Queensland,-27.511436,153.250392,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,8,7,Australia,AU,Queensland,-27.491023,153.248613,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,1,Australia,AU,Queensland,-27.511242,153.250174,EPSG:4326 +HUMAN_OBSERVATION,Patricia Meldrum,1,MALE,,2021,10,9,Australia,AU,Queensland,-27.395319,153.441822,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,3,22,Australia,AU,Queensland,-27.531348,153.281894,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,6,7,Australia,AU,Queensland,-27.576726,153.271927,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,7,21,Australia,AU,Queensland,-27.509318,153.251891,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,4,1,Australia,AU,Queensland,-27.613125,153.198471,EPSG:4326 +HUMAN_OBSERVATION,Tracey Mann,1,MALE,,2022,10,14,Australia,AU,Queensland,-27.397137,153.4426,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,2,Australia,AU,Queensland,-27.490998,153.247817,EPSG:4326 +HUMAN_OBSERVATION,Chris Orpen,1,,,2022,11,7,Australia,AU,Queensland,-27.539251,153.274228,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,7,Australia,AU,Queensland,-27.575204,153.27153,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2021,3,4,Australia,AU,Queensland,-27.497573,153.24622,EPSG:4326 +HUMAN_OBSERVATION,John Sutherland,1,,,2021,6,21,Australia,AU,Queensland,-27.493825,153.252947,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,16,Australia,AU,Queensland,-27.612942,153.197144,EPSG:4326 +HUMAN_OBSERVATION,Terasia Gerding,1,,,2021,7,20,Australia,AU,Queensland,-27.533558,153.231743,EPSG:4326 +HUMAN_OBSERVATION,Chris Orpen,1,FEMALE,,2023,8,6,Australia,AU,Queensland,-27.536877,153.278412,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,12,Australia,AU,Queensland,-27.503065,153.250956,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,3,27,Australia,AU,Queensland,-27.533064,153.282077,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,FEMALE,,2023,10,8,Australia,AU,Queensland,-27.511695,153.250917,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,9,23,Australia,AU,Queensland,-27.515358,153.239831,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,16,Australia,AU,Queensland,-27.490015,153.249305,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,12,Australia,AU,Queensland,-27.511649,153.250903,EPSG:4326 +HUMAN_OBSERVATION,Dominic Al-Mudaris,1,MALE,,2021,10,4,Australia,AU,Queensland,-27.588191,153.253887,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,10,19,Australia,AU,Queensland,-27.510544,153.248306,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,7,8,Australia,AU,Queensland,-27.513535,153.197983,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,10,13,Australia,AU,Queensland,-27.533566,153.255371,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,13,Australia,AU,Queensland,-27.490311,153.24909,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,31,Australia,AU,Queensland,-27.575619,153.270746,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,4,Australia,AU,Queensland,-27.498009,153.246711,EPSG:4326 +HUMAN_OBSERVATION,Jasmyn Heffernan,1,,,2024,10,25,Australia,AU,Queensland,-27.553368,153.245051,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,1,Australia,AU,Queensland,-27.490904,153.248194,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,3,Australia,AU,Queensland,-27.575584,153.270757,EPSG:4326 +HUMAN_OBSERVATION,Alice Gudge,1,,,2021,7,18,Australia,AU,Queensland,-27.511355,153.249381,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,2,14,Australia,AU,Queensland,-27.612848,153.198227,EPSG:4326 +HUMAN_OBSERVATION,Kaitlyn ,1,,,2022,10,28,Australia,AU,Queensland,-27.55322,153.271149,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,5,13,Australia,AU,Queensland,-27.613277,153.197922,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,7,22,Australia,AU,Queensland,-27.488617,153.24295,EPSG:4326 +HUMAN_OBSERVATION,Patricia Meldrum,1,,,2021,10,9,Australia,AU,Queensland,-27.395648,153.444846,EPSG:4326 +HUMAN_OBSERVATION,Gemma Finch,1,,,2024,9,10,Australia,AU,Queensland,-27.629946,153.282044,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,1,30,Australia,AU,Queensland,-27.489878,153.244967,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,8,3,Australia,AU,Queensland,-27.509176,153.251067,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,29,Australia,AU,Queensland,-27.490183,153.247955,EPSG:4326 +HUMAN_OBSERVATION,V Breadsell,1,,,2021,9,26,Australia,AU,Queensland,-27.498334,153.205528,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,10,21,Australia,AU,Queensland,-27.48954,153.248858,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,12,15,Australia,AU,Queensland,-27.497711,153.244858,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,25,Australia,AU,Queensland,-27.51462,153.251829,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,8,30,Australia,AU,Queensland,-27.511281,153.250363,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,3,11,Australia,AU,Queensland,-27.57547,153.271047,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,28,Australia,AU,Queensland,-27.511343,153.250344,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,12,7,Australia,AU,Queensland,-27.491126,153.24504,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,29,Australia,AU,Queensland,-27.506208,153.201279,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,7,22,Australia,AU,Queensland,-27.511311,153.20285,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,9,Australia,AU,Queensland,-27.511287,153.250179,EPSG:4326 +HUMAN_OBSERVATION,Kay Weston-Green,1,,,2023,4,4,Australia,AU,Queensland,-27.50831,153.232005,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,2,Australia,AU,Queensland,-27.496185,153.245686,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,FEMALE,,2023,10,8,Australia,AU,Queensland,-27.511695,153.250917,EPSG:4326 +HUMAN_OBSERVATION,Damien Kelly,1,FEMALE,,2022,3,25,Australia,AU,Queensland,-27.546248,153.228768,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,9,15,Australia,AU,Queensland,-27.606987,153.226517,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,2,20,Australia,AU,Queensland,-27.511675,153.250921,EPSG:4326 +HUMAN_OBSERVATION,Yasmin Butler,1,,,2022,3,10,Australia,AU,Queensland,-27.552473,153.278148,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,22,Australia,AU,Queensland,-27.500941,153.251974,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,4,Australia,AU,Queensland,-27.511768,153.250952,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,7,26,Australia,AU,Queensland,-27.509333,153.251962,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,12,14,Australia,AU,Queensland,-27.545547,153.270264,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,30,Australia,AU,Queensland,-27.576707,153.271819,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,8,4,Australia,AU,Queensland,-27.545322,153.269989,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,8,20,Australia,AU,Queensland,-27.509819,153.251561,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,29,Australia,AU,Queensland,-27.511379,153.250311,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,9,Australia,AU,Queensland,-27.575356,153.271841,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,16,Australia,AU,Queensland,-27.514562,153.242003,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,22,Australia,AU,Queensland,-27.489494,153.244812,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,2,Australia,AU,Queensland,-27.490703,153.248589,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,7,22,Australia,AU,Queensland,-27.51392,153.200211,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,19,Australia,AU,Queensland,-27.507339,153.20256,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,9,23,Australia,AU,Queensland,-27.575051,153.271358,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,26,Australia,AU,Queensland,-27.575642,153.27139,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,1,30,Australia,AU,Queensland,-27.511302,153.20283,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,5,Australia,AU,Queensland,-27.505449,153.202194,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,16,Australia,AU,Queensland,-27.511333,153.247232,EPSG:4326 +HUMAN_OBSERVATION,Kathy Stanek,1,,,2024,3,20,Australia,AU,Queensland,-27.535893,153.276132,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,7,17,Australia,AU,Queensland,-27.51171,153.253659,EPSG:4326 +HUMAN_OBSERVATION,Erica Siegel,1,,,2023,4,14,Australia,AU,Queensland,-27.500435,153.216763,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,16,Australia,AU,Queensland,-27.513794,153.203094,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,10,9,Australia,AU,Queensland,-27.490618,153.248001,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,23,Australia,AU,Queensland,-27.490339,153.249074,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,6,3,Australia,AU,Queensland,-27.569315,153.297882,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,28,Australia,AU,Queensland,-27.490077,153.248631,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,4,8,Australia,AU,Queensland,-27.61248,153.19764,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,12,Australia,AU,Queensland,-27.511444,153.201248,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,3,Australia,AU,Queensland,-27.574292,153.271682,EPSG:4326 +HUMAN_OBSERVATION,Kelli Longworth,1,,,2022,10,14,Australia,AU,Queensland,-27.497204,153.39913,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,1,Australia,AU,Queensland,-27.500925,153.252043,EPSG:4326 +HUMAN_OBSERVATION,Alison Woodley,1,,,2023,10,20,Australia,AU,Queensland,-27.523469,153.285797,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,,,2023,10,25,Australia,AU,Queensland,-27.504014,153.225525,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,22,Australia,AU,Queensland,-27.511743,153.250433,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,9,9,Australia,AU,Queensland,-27.569696,153.298874,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,20,Australia,AU,Queensland,-27.51218,153.255654,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,,,2023,9,27,Australia,AU,Queensland,-27.498581,153.225861,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,28,Australia,AU,Queensland,-27.51129,153.25005,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,8,29,Australia,AU,Queensland,-27.490618,153.248677,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,10,13,Australia,AU,Queensland,-27.615119,153.198511,EPSG:4326 +HUMAN_OBSERVATION,Kathy Stanek,1,,,2024,7,27,Australia,AU,Queensland,-27.53672,153.275435,EPSG:4326 +HUMAN_OBSERVATION,John Baker,1,,,2020,10,1,Australia,AU,Queensland,-27.494653,153.255753,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,6,7,Australia,AU,Queensland,-27.511641,153.2505,EPSG:4326 +HUMAN_OBSERVATION,Jasmine Spletter,1,,,2021,5,4,Australia,AU,Queensland,-27.4,153.44,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,19,Australia,AU,Queensland,-27.490779,153.248519,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,30,Australia,AU,Queensland,-27.511692,153.253583,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,11,7,Australia,AU,Queensland,-27.498606,153.246659,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2022,10,30,Australia,AU,Queensland,-27.511262,153.24946,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,11,4,Australia,AU,Queensland,-27.49009,153.24695,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,10,30,Australia,AU,Queensland,-27.510066,153.24792,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,6,3,Australia,AU,Queensland,-27.505726,153.23378,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2022,11,14,Australia,AU,Queensland,-27.576003,153.271369,EPSG:4326 +HUMAN_OBSERVATION,Ben Wilkinson,1,MALE,,2021,4,27,Australia,AU,Queensland,-27.697002,153.31895,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,9,24,Australia,AU,Queensland,-27.613548,153.199738,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,16,Australia,AU,Queensland,-27.490179,153.249134,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,6,3,Australia,AU,Queensland,-27.567532,153.296036,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,21,Australia,AU,Queensland,-27.512882,153.202957,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2024,1,22,Australia,AU,Queensland,-27.525511,153.281937,EPSG:4326 +HUMAN_OBSERVATION,Richard Stone,1,,,2022,11,14,Australia,AU,Queensland,-27.496183,153.253271,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,4,27,Australia,AU,Queensland,-27.576209,153.273236,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,1,Australia,AU,Queensland,-27.489679,153.248377,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,8,18,Australia,AU,Queensland,-27.394858,153.441511,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,14,Australia,AU,Queensland,-27.511809,153.253833,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,1,8,Australia,AU,Queensland,-27.499092,153.246517,EPSG:4326 +HUMAN_OBSERVATION,Mike Oakey,1,,,2024,1,21,Australia,AU,Queensland,-27.545268,153.255273,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,5,2,Australia,AU,Queensland,-27.53581,153.248205,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2024,5,23,Australia,AU,Queensland,-27.548686,153.256145,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,1,5,Australia,AU,Queensland,-27.512933,153.242265,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,10,19,Australia,AU,Queensland,-27.490364,153.24852,EPSG:4326 +HUMAN_OBSERVATION,Rach Chi,1,,,2023,8,31,Australia,AU,Queensland,-27.484059,153.240743,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,8,3,Australia,AU,Queensland,-27.617811,153.2052,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2023,6,20,Australia,AU,Queensland,-27.401585,153.439769,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,12,15,Australia,AU,Queensland,-27.574748,153.27227,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,3,22,Australia,AU,Queensland,-27.489864,153.245941,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,6,Australia,AU,Queensland,-27.574653,153.271562,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,5,21,Australia,AU,Queensland,-27.568602,153.295151,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,4,10,Australia,AU,Queensland,-27.490931,153.248109,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,27,Australia,AU,Queensland,-27.490964,153.244886,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,2,4,Australia,AU,Queensland,-27.490052,153.249144,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,FEMALE,,2023,3,26,Australia,AU,Queensland,-27.486383,153.43154,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2021,12,3,Australia,AU,Queensland,-27.50229,153.249664,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,9,28,Australia,AU,Queensland,-27.490569,153.247991,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,15,Australia,AU,Queensland,-27.511439,153.252398,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,4,3,Australia,AU,Queensland,-27.618845,153.205505,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,2,13,Australia,AU,Queensland,-27.532555,153.282001,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,18,Australia,AU,Queensland,-27.574957,153.271626,EPSG:4326 +HUMAN_OBSERVATION,John Hook,1,FEMALE,,2024,7,21,Australia,AU,Queensland,-27.490456,153.205392,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,6,17,Australia,AU,Queensland,-27.506792,153.202774,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,25,Australia,AU,Queensland,-27.511283,153.250266,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,8,4,Australia,AU,Queensland,-27.509429,153.251425,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,3,Australia,AU,Queensland,-27.491545,153.241226,EPSG:4326 +HUMAN_OBSERVATION,Cathryn Dexter,1,FEMALE,,2022,10,14,Australia,AU,Queensland,-27.496935,153.405855,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,8,Australia,AU,Queensland,-27.502696,153.250297,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,6,Australia,AU,Queensland,-27.574386,153.271497,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,6,20,Australia,AU,Queensland,-27.509269,153.251927,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,7,Australia,AU,Queensland,-27.491024,153.245003,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,11,11,Australia,AU,Queensland,-27.507105,153.194885,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,8,30,Australia,AU,Queensland,-27.536732,153.271454,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,3,Australia,AU,Queensland,-27.515385,153.239847,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,8,Australia,AU,Queensland,-27.511381,153.250201,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,4,1,Australia,AU,Queensland,-27.568651,153.295013,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,11,3,Australia,AU,Queensland,-27.490236,153.245026,EPSG:4326 +HUMAN_OBSERVATION,A C,1,,,2022,10,12,Australia,AU,Queensland,-27.428995,153.529258,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,4,24,Australia,AU,Queensland,-27.575889,153.273128,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,3,Australia,AU,Queensland,-27.489015,153.246193,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,9,16,Australia,AU,Queensland,-27.50293,153.22649,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2022,11,22,Australia,AU,Queensland,-27.40067,153.437862,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,2,8,Australia,AU,Queensland,-27.490564,153.246933,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,10,16,Australia,AU,Queensland,-27.529127,153.254745,EPSG:4326 +HUMAN_OBSERVATION,YVETTE,1,MALE,,2023,12,11,Australia,AU,Queensland,-27.582144,153.296737,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,23,Australia,AU,Queensland,-27.490593,153.248304,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,12,Australia,AU,Queensland,-27.57566,153.271186,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,4,8,Australia,AU,Queensland,-27.56894,153.29468,EPSG:4326 +HUMAN_OBSERVATION,Alan Taylor,1,,,2022,2,23,Australia,AU,Queensland,-27.519368,153.254303,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,31,Australia,AU,Queensland,-27.490906,153.248307,EPSG:4326 +HUMAN_OBSERVATION,Detection Dogs for Conservation UniSC,1,MALE,,2022,8,9,Australia,AU,Queensland,-27.502308,153.250108,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,19,Australia,AU,Queensland,-27.575451,153.271476,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,6,5,Australia,AU,Queensland,-27.51124,153.200516,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,13,Australia,AU,Queensland,-27.505671,153.197682,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,30,Australia,AU,Queensland,-27.490805,153.245601,EPSG:4326 +HUMAN_OBSERVATION,Leah Soutar,1,FEMALE,,2024,11,2,Australia,AU,Queensland,-27.571811,153.2744,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,4,Australia,AU,Queensland,-27.490923,153.244979,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,19,Australia,AU,Queensland,-27.511427,153.250235,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,2,Australia,AU,Queensland,-27.575143,153.271603,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,10,27,Australia,AU,Queensland,-27.515734,153.197235,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,15,Australia,AU,Queensland,-27.51164,153.249973,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2024,2,19,Australia,AU,Queensland,-27.505472,153.199112,EPSG:4326 +HUMAN_OBSERVATION,Gregor Kirkpatrick,1,MALE,,2022,10,12,Australia,AU,Queensland,-27.539601,153.270831,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,29,Australia,AU,Queensland,-27.503226,153.251542,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,21,Australia,AU,Queensland,-27.575014,153.271433,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,11,28,Australia,AU,Queensland,-27.490574,153.248076,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,18,Australia,AU,Queensland,-27.575304,153.271168,EPSG:4326 +HUMAN_OBSERVATION,Joe Gao,1,,,2022,11,12,Australia,AU,Queensland,-27.537407,153.278434,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,8,30,Australia,AU,Queensland,-27.524193,153.263174,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,12,Australia,AU,Queensland,-27.512674,153.256764,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,2,25,Australia,AU,Queensland,-27.511366,153.250263,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,22,Australia,AU,Queensland,-27.511482,153.248654,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,10,24,Australia,AU,Queensland,-27.514488,153.242232,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,26,Australia,AU,Queensland,-27.501096,153.252342,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,3,21,Australia,AU,Queensland,-27.49079,153.2448,EPSG:4326 +HUMAN_OBSERVATION,Colin Forrest,1,,,2023,1,14,Australia,AU,Queensland,-27.422566,153.515915,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,9,9,Australia,AU,Queensland,-27.508106,153.201736,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2022,4,29,Australia,AU,Queensland,-27.532698,153.281894,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,14,Australia,AU,Queensland,-27.573416,153.271497,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,2,8,Australia,AU,Queensland,-27.489965,153.245392,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,21,Australia,AU,Queensland,-27.511672,153.250142,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,14,Australia,AU,Queensland,-27.57679,153.27202,EPSG:4326 +HUMAN_OBSERVATION,Paul Coyne,1,,,2021,3,12,Australia,AU,Queensland,-27.533048,153.282274,EPSG:4326 +HUMAN_OBSERVATION,Tracey Mann,1,MALE,,2022,10,14,Australia,AU,Queensland,-27.398746,153.440128,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,3,24,Australia,AU,Queensland,-27.574899,153.272088,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,3,4,Australia,AU,Queensland,-27.509523,153.20076,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,9,30,Australia,AU,Queensland,-27.489551,153.243965,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,8,26,Australia,AU,Queensland,-27.511595,153.250193,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,8,31,Australia,AU,Queensland,-27.490171,153.248634,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,12,18,Australia,AU,Queensland,-27.491421,153.244792,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,22,Australia,AU,Queensland,-27.57547,153.271004,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,13,Australia,AU,Queensland,-27.489445,153.24527,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,7,18,Australia,AU,Queensland,-27.509714,153.195969,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,12,15,Australia,AU,Queensland,-27.489534,153.245255,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,5,13,Australia,AU,Queensland,-27.510084,153.25174,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,8,29,Australia,AU,Queensland,-27.511507,153.248361,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,6,Australia,AU,Queensland,-27.514543,153.256378,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,4,Australia,AU,Queensland,-27.511838,153.254388,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,1,20,Australia,AU,Queensland,-27.490615,153.248334,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,3,10,Australia,AU,Queensland,-27.39814,153.439394,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,4,8,Australia,AU,Queensland,-27.61345,153.20107,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,9,Australia,AU,Queensland,-27.622161,153.206891,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,30,Australia,AU,Queensland,-27.574673,153.271104,EPSG:4326 +HUMAN_OBSERVATION,Fiona Wythes,1,,,2022,1,21,Australia,AU,Queensland,-27.5001,153.257534,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,6,Australia,AU,Queensland,-27.567369,153.297348,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,,,2023,4,8,Australia,AU,Queensland,-27.558485,153.273987,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,17,Australia,AU,Queensland,-27.514511,153.241965,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,7,15,Australia,AU,Queensland,-27.614233,153.198792,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,6,3,Australia,AU,Queensland,-27.511581,153.250394,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2023,5,8,Australia,AU,Queensland,-27.490794,153.247993,EPSG:4326 +HUMAN_OBSERVATION,Fiona Wythes,1,,,2022,2,20,Australia,AU,Queensland,-27.500114,153.258318,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,25,Australia,AU,Queensland,-27.50724,153.232391,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,31,Australia,AU,Queensland,-27.502883,153.250389,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,14,Australia,AU,Queensland,-27.575604,153.271197,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2023,11,13,Australia,AU,Queensland,-27.491425,153.243755,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,4,Australia,AU,Queensland,-27.5116,153.249951,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,8,Australia,AU,Queensland,-27.511382,153.250248,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,13,Australia,AU,Queensland,-27.510933,153.198883,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,4,24,Australia,AU,Queensland,-27.491331,153.244868,EPSG:4326 +HUMAN_OBSERVATION,Mark Pickering,1,,,2023,9,29,Australia,AU,Queensland,-27.513034,153.255275,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,6,21,Australia,AU,Queensland,-27.509269,153.251668,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,7,1,Australia,AU,Queensland,-27.567892,153.297073,EPSG:4326 +HUMAN_OBSERVATION,Detection Dogs for Conservation UniSC,1,FEMALE,,2022,8,9,Australia,AU,Queensland,-27.490234,153.247288,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,6,Australia,AU,Queensland,-27.501087,153.234024,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,3,5,Australia,AU,Queensland,-27.574653,153.272055,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,2,22,Australia,AU,Queensland,-27.545811,153.270126,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,29,Australia,AU,Queensland,-27.507133,153.232407,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2024,11,3,Australia,AU,Queensland,-27.495234,153.219345,EPSG:4326 +HUMAN_OBSERVATION,Ymkje Vaessen,1,,,2023,10,1,Australia,AU,Queensland,-27.540564,153.270789,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2021,10,9,Australia,AU,Queensland,-27.396786,153.439417,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,29,Australia,AU,Queensland,-27.50148,153.231995,EPSG:4326 +HUMAN_OBSERVATION,Shanyn Patten,1,,,2021,8,10,Australia,AU,Queensland,-27.49057,153.247223,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,10,31,Australia,AU,Queensland,-27.50187,153.253263,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,4,Australia,AU,Queensland,-27.490896,153.244848,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,12,23,Australia,AU,Queensland,-27.48982,153.249257,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,9,Australia,AU,Queensland,-27.507471,153.23291,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,8,Australia,AU,Queensland,-27.574253,153.272334,EPSG:4326 +HUMAN_OBSERVATION,Scott Bretherton,1,,,2023,7,30,Australia,AU,Queensland,-27.398877,153.440976,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,9,Australia,AU,Queensland,-27.511785,153.253458,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2022,11,16,Australia,AU,Queensland,-27.576022,153.271111,EPSG:4326 +HUMAN_OBSERVATION,Bernadette Williams,1,,,2022,12,6,Australia,AU,Queensland,-27.399562,153.438041,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,6,7,Australia,AU,Queensland,-27.490636,153.248458,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,2,10,Australia,AU,Queensland,-27.574215,153.272377,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,4,Australia,AU,Queensland,-27.575496,153.271054,EPSG:4326 +HUMAN_OBSERVATION,Maree Tyrrell,1,MALE,,2022,1,4,Australia,AU,Queensland,-27.501786,153.225101,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,10,22,Australia,AU,Queensland,-27.490487,153.248193,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2024,10,4,Australia,AU,Queensland,-27.511761,153.250536,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,21,Australia,AU,Queensland,-27.575242,153.271573,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,4,Australia,AU,Queensland,-27.511339,153.250088,EPSG:4326 +HUMAN_OBSERVATION,Adrienne Mace,1,,,2023,7,14,Australia,AU,Queensland,-27.495619,153.245483,EPSG:4326 +HUMAN_OBSERVATION,stuart Gudgeon,1,MALE,,2024,7,15,Australia,AU,Queensland,-27.509295,153.251846,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,8,Australia,AU,Queensland,-27.490917,153.248188,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,6,12,Australia,AU,Queensland,-27.612528,153.197983,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,11,4,Australia,AU,Queensland,-27.503592,153.226822,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2024,1,27,Australia,AU,Queensland,-27.500264,153.223949,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,9,Australia,AU,Queensland,-27.575085,153.271663,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,17,Australia,AU,Queensland,-27.511495,153.247519,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2022,8,30,Australia,AU,Queensland,-27.489988,153.249374,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,23,Australia,AU,Queensland,-27.511716,153.253623,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,10,12,Australia,AU,Queensland,-27.490782,153.248495,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,10,6,Australia,AU,Queensland,-27.496418,153.24574,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,6,9,Australia,AU,Queensland,-27.511494,153.247627,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,18,Australia,AU,Queensland,-27.576649,153.272002,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,8,22,Australia,AU,Queensland,-27.48867,153.244058,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2023,1,11,Australia,AU,Queensland,-27.575356,153.271261,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,11,Australia,AU,Queensland,-27.491402,153.247647,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,25,Australia,AU,Queensland,-27.5042,153.232712,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,19,Australia,AU,Queensland,-27.538784,153.268204,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,27,Australia,AU,Queensland,-27.501556,153.252604,EPSG:4326 +HUMAN_OBSERVATION,Kate Harper-King,1,,,2022,10,3,Australia,AU,Queensland,-27.502574,153.218646,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,21,Australia,AU,Queensland,-27.489975,153.248682,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,11,21,Australia,AU,Queensland,-27.505907,153.195679,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,3,Australia,AU,Queensland,-27.496093,153.245709,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,15,Australia,AU,Queensland,-27.511431,153.247612,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,29,Australia,AU,Queensland,-27.489508,153.243805,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,7,Australia,AU,Queensland,-27.511313,153.250392,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,5,4,Australia,AU,Queensland,-27.490575,153.244954,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,7,Australia,AU,Queensland,-27.574291,153.271701,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,FEMALE,,2023,10,24,Australia,AU,Queensland,-27.500773,153.231232,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2022,11,9,Australia,AU,Queensland,-27.576003,153.271347,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,10,25,Australia,AU,Queensland,-27.510044,153.247964,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2021,10,9,Australia,AU,Queensland,-27.397133,153.439136,EPSG:4326 +HUMAN_OBSERVATION,Caroline Watson,1,MALE,,2024,1,12,Australia,AU,Queensland,-27.611306,153.296606,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,1,Australia,AU,Queensland,-27.574672,153.271154,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,6,3,Australia,AU,Queensland,-27.488525,153.24408,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,MALE,,2022,10,14,Australia,AU,Queensland,-27.395982,153.44449,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,8,27,Australia,AU,Queensland,-27.511579,153.251877,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,9,Australia,AU,Queensland,-27.490173,153.248205,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,6,24,Australia,AU,Queensland,-27.509263,153.250993,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,MALE,,2024,6,11,Australia,AU,Queensland,-27.509158,153.251801,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,17,Australia,AU,Queensland,-27.497725,153.246489,EPSG:4326 +HUMAN_OBSERVATION,Erica Siegel,1,,,2023,5,31,Australia,AU,Queensland,-27.500437,153.216752,EPSG:4326 +HUMAN_OBSERVATION,Richard Curwen,1,,,2022,11,12,Australia,AU,Queensland,-27.493708,153.199901,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,3,22,Australia,AU,Queensland,-27.501377,153.235168,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,5,Australia,AU,Queensland,-27.511545,153.250045,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,10,7,Australia,AU,Queensland,-27.567734,153.295731,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,8,7,Australia,AU,Queensland,-27.490647,153.24843,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,12,7,Australia,AU,Queensland,-27.49119,153.244723,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,8,7,Australia,AU,Queensland,-27.511661,153.251086,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,MALE,,2024,7,26,Australia,AU,Queensland,-27.509298,153.251834,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,18,Australia,AU,Queensland,-27.573854,153.272077,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,8,13,Australia,AU,Queensland,-27.511817,153.254052,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,MALE,,2022,1,20,Australia,AU,Queensland,-27.531031,153.281915,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2023,12,30,Australia,AU,Queensland,-27.495668,153.244957,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,11,Australia,AU,Queensland,-27.575585,153.270875,EPSG:4326 +HUMAN_OBSERVATION,Sanchia Murton,1,,,2023,9,7,Australia,AU,Queensland,-27.537184,153.216195,EPSG:4326 +HUMAN_OBSERVATION,Liz Foote,1,FEMALE,,2022,10,14,Australia,AU,Queensland,-27.426201,153.520684,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,5,Australia,AU,Queensland,-27.514779,153.24185,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2022,12,20,Australia,AU,Queensland,-27.499626,153.223212,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,9,30,Australia,AU,Queensland,-27.569626,153.297394,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,3,Australia,AU,Queensland,-27.513885,153.202423,EPSG:4326 +HUMAN_OBSERVATION,Fiona Wythes,1,,,2022,1,31,Australia,AU,Queensland,-27.501602,153.260153,EPSG:4326 +HUMAN_OBSERVATION,Cathryn Dexter,1,,,2023,1,22,Australia,AU,Queensland,-27.546189,153.25559,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,11,18,Australia,AU,Queensland,-27.512361,153.242046,EPSG:4326 +HUMAN_OBSERVATION,Jess Falwasser,1,,,2023,6,6,Australia,AU,Queensland,-27.507427,153.232107,EPSG:4326 +HUMAN_OBSERVATION,Paul Macdonnell,1,,,2023,7,2,Australia,AU,Queensland,-27.51312,153.255988,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,12,2,Australia,AU,Queensland,-27.489484,153.242879,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,10,31,Australia,AU,Queensland,-27.490367,153.248072,EPSG:4326 +HUMAN_OBSERVATION,Karen Tebbit,1,,,2021,4,5,Australia,AU,Queensland,-27.514216,153.241589,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,17,Australia,AU,Queensland,-27.497058,153.245991,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,6,8,Australia,AU,Queensland,-27.576688,153.271884,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,2,19,Australia,AU,Queensland,-27.574538,153.272077,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,29,Australia,AU,Queensland,-27.511332,153.250318,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,3,Australia,AU,Queensland,-27.575547,153.271798,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,3,22,Australia,AU,Queensland,-27.490759,153.248121,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,10,19,Australia,AU,Queensland,-27.497044,153.244644,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,14,Australia,AU,Queensland,-27.575697,153.271499,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,29,Australia,AU,Queensland,-27.490901,153.244836,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,5,21,Australia,AU,Queensland,-27.51156,153.249552,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,10,7,Australia,AU,Queensland,-27.496278,153.245687,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,9,24,Australia,AU,Queensland,-27.49038,153.249021,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,8,31,Australia,AU,Queensland,-27.490064,153.248656,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,9,5,Australia,AU,Queensland,-27.492142,153.244568,EPSG:4326 +HUMAN_OBSERVATION,Kathy Stanek,1,,,2022,11,14,Australia,AU,Queensland,-27.540297,153.275392,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,8,1,Australia,AU,Queensland,-27.5117,153.250407,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,23,Australia,AU,Queensland,-27.49077,153.248286,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,6,5,Australia,AU,Queensland,-27.540597,153.269595,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,,,2024,6,3,Australia,AU,Queensland,-27.569099,153.297958,EPSG:4326 +HUMAN_OBSERVATION,Lara Herrero,1,,,2021,5,21,Australia,AU,Queensland,-27.530607,153.281914,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,1,17,Australia,AU,Queensland,-27.49102,153.244922,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,20,Australia,AU,Queensland,-27.574006,153.272463,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,5,14,Australia,AU,Queensland,-27.498616,153.246567,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,6,18,Australia,AU,Queensland,-27.490724,153.245501,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,18,Australia,AU,Queensland,-27.515349,153.239864,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,11,16,Australia,AU,Queensland,-27.511749,153.252873,EPSG:4326 +HUMAN_OBSERVATION,Mike Oakey,1,,,2024,1,21,Australia,AU,Queensland,-27.545141,153.255249,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,7,22,Australia,AU,Queensland,-27.613768,153.199432,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,10,7,Australia,AU,Queensland,-27.513712,153.202087,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,25,Australia,AU,Queensland,-27.501142,153.252347,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,9,22,Australia,AU,Queensland,-27.502424,153.249983,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,4,15,Australia,AU,Queensland,-27.615406,153.198151,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,3,1,Australia,AU,Queensland,-27.575528,153.271283,EPSG:4326 +HUMAN_OBSERVATION,Yasmin Butler,1,,,2022,12,24,Australia,AU,Queensland,-27.525286,153.283906,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,12,4,Australia,AU,Queensland,-27.49144,153.244646,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2024,8,17,Australia,AU,Queensland,-27.494606,153.218234,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,11,14,Australia,AU,Queensland,-27.511751,153.253826,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,10,30,Australia,AU,Queensland,-27.575697,153.271499,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,23,Australia,AU,Queensland,-27.501221,153.251992,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,28,Australia,AU,Queensland,-27.490315,153.248502,EPSG:4326 +HUMAN_OBSERVATION,Laura Clyne,1,,,2021,10,9,Australia,AU,Queensland,-27.397017,153.441159,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,6,11,Australia,AU,Queensland,-27.509372,153.251894,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,3,Australia,AU,Queensland,-27.490564,153.248337,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2023,1,19,Australia,AU,Queensland,-27.508196,153.200806,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,3,12,Australia,AU,Queensland,-27.39511,153.44122,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,26,Australia,AU,Queensland,-27.490011,153.245911,EPSG:4326 +HUMAN_OBSERVATION,Josh Topping,1,,,2023,8,12,Australia,AU,Queensland,-27.501342,153.218242,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,6,21,Australia,AU,Queensland,-27.576536,153.272141,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,7,15,Australia,AU,Queensland,-27.571846,153.289673,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,8,Australia,AU,Queensland,-27.490311,153.24707,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,16,Australia,AU,Queensland,-27.511492,153.250617,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,1,Australia,AU,Queensland,-27.490371,153.24909,EPSG:4326 +HUMAN_OBSERVATION,Deb Tabbart,1,MALE,,2021,10,8,Australia,AU,Queensland,-27.499898,153.400897,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,29,Australia,AU,Queensland,-27.511234,153.250202,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,4,27,Australia,AU,Queensland,-27.490906,153.245028,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,23,Australia,AU,Queensland,-27.490378,153.249321,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,4,15,Australia,AU,Queensland,-27.509768,153.250885,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,21,Australia,AU,Queensland,-27.512922,153.242238,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,4,9,Australia,AU,Queensland,-27.491339,153.243765,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,7,6,Australia,AU,Queensland,-27.511727,153.25386,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,3,10,Australia,AU,Queensland,-27.57547,153.271154,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,7,10,Australia,AU,Queensland,-27.51181,153.253945,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,18,Australia,AU,Queensland,-27.511013,153.200851,EPSG:4326 +HUMAN_OBSERVATION,Caren Gillis,1,FEMALE,,2023,9,17,Australia,AU,Queensland,-27.515846,153.239825,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,9,9,Australia,AU,Queensland,-27.510773,153.245529,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,9,28,Australia,AU,Queensland,-27.513487,153.256004,EPSG:4326 +HUMAN_OBSERVATION,Dominic Al-Mudaris,1,MALE,,2022,3,15,Australia,AU,Queensland,-27.495862,153.25445,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,6,28,Australia,AU,Queensland,-27.490915,153.244906,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,4,Australia,AU,Queensland,-27.511763,153.253856,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,14,Australia,AU,Queensland,-27.51543,153.197708,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,10,9,Australia,AU,Queensland,-27.507553,153.196838,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,10,11,Australia,AU,Queensland,-27.490294,153.248566,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2023,1,24,Australia,AU,Queensland,-27.489466,153.244904,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,10,12,Australia,AU,Queensland,-27.498186,153.246644,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,19,Australia,AU,Queensland,-27.572201,153.29924,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,16,Australia,AU,Queensland,-27.511661,153.250299,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,11,11,Australia,AU,Queensland,-27.508911,153.203629,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,5,8,Australia,AU,Queensland,-27.490189,153.24894,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,,,2024,5,22,Australia,AU,Queensland,-27.511635,153.249008,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,1,Australia,AU,Queensland,-27.50045,153.248384,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,9,30,Australia,AU,Queensland,-27.503303,153.251767,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,6,Australia,AU,Queensland,-27.511678,153.253294,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,2,8,Australia,AU,Queensland,-27.48991,153.245224,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,14,Australia,AU,Queensland,-27.490316,153.248392,EPSG:4326 +HUMAN_OBSERVATION,Tom Short,1,,,2023,12,16,Australia,AU,Queensland,-27.511594,153.251144,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,4,23,Australia,AU,Queensland,-27.576117,153.273085,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,5,Australia,AU,Queensland,-27.502688,153.250442,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,6,23,Australia,AU,Queensland,-27.511538,153.249629,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,22,Australia,AU,Queensland,-27.490303,153.246277,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,7,11,Australia,AU,Queensland,-27.537455,153.273834,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,2,6,Australia,AU,Queensland,-27.613221,153.19949,EPSG:4326 +HUMAN_OBSERVATION,Laura Clyne,1,FEMALE,,2021,10,9,Australia,AU,Queensland,-27.396994,153.440318,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,10,22,Australia,AU,Queensland,-27.511668,153.250032,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,17,Australia,AU,Queensland,-27.490717,153.248495,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,16,Australia,AU,Queensland,-27.489187,153.242859,EPSG:4326 +HUMAN_OBSERVATION,Julie Elliott,1,MALE,,2021,5,14,Australia,AU,Queensland,-27.43,153.52,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,2,26,Australia,AU,Queensland,-27.489679,153.244858,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,6,18,Australia,AU,Queensland,-27.575718,153.271047,EPSG:4326 +HUMAN_OBSERVATION,Bernadette Williams,1,,,2022,12,6,Australia,AU,Queensland,-27.391986,153.444387,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,12,7,Australia,AU,Queensland,-27.54026,153.271164,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,4,Australia,AU,Queensland,-27.51485,153.241878,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,17,Australia,AU,Queensland,-27.515365,153.239813,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2021,12,21,Australia,AU,Queensland,-27.54756,153.258489,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,1,11,Australia,AU,Queensland,-27.490778,153.247408,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,10,30,Australia,AU,Queensland,-27.497276,153.245834,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,29,Australia,AU,Queensland,-27.491366,153.244733,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,11,11,Australia,AU,Queensland,-27.575697,153.271499,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,1,12,Australia,AU,Queensland,-27.499716,153.223148,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,5,27,Australia,AU,Queensland,-27.509254,153.251724,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2021,10,16,Australia,AU,Queensland,-27.547611,153.259052,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2023,1,23,Australia,AU,Queensland,-27.491635,153.430338,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,FEMALE,,2024,9,26,Australia,AU,Queensland,-27.513943,153.256059,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,19,Australia,AU,Queensland,-27.490405,153.248544,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,6,17,Australia,AU,Queensland,-27.489223,153.244247,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,8,7,Australia,AU,Queensland,-27.511773,153.253878,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,1,11,Australia,AU,Queensland,-27.490147,153.248897,EPSG:4326 +HUMAN_OBSERVATION,Steph Jones,1,,,2023,11,10,Australia,AU,Queensland,-27.497204,153.246086,EPSG:4326 +HUMAN_OBSERVATION,Tracey Mann,1,MALE,,2022,10,14,Australia,AU,Queensland,-27.397037,153.441499,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,7,15,Australia,AU,Queensland,-27.620224,153.206253,EPSG:4326 +HUMAN_OBSERVATION,Adam Reid,1,MALE,,2024,6,20,Australia,AU,Queensland,-27.509216,153.251821,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,18,Australia,AU,Queensland,-27.576079,153.271476,EPSG:4326 +HUMAN_OBSERVATION,John Baker,1,,,2020,9,3,Australia,AU,Queensland,-27.498101,153.252243,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,11,Australia,AU,Queensland,-27.490135,153.249268,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,9,6,Australia,AU,Queensland,-27.490745,153.248637,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,12,12,Australia,AU,Queensland,-27.575946,153.271304,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,20,Australia,AU,Queensland,-27.511695,153.253666,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,10,18,Australia,AU,Queensland,-27.510133,153.247839,EPSG:4326 +HUMAN_OBSERVATION,Ellanah Moormann,1,,,2023,9,2,Australia,AU,Queensland,-27.51186,153.25451,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,3,9,Australia,AU,Queensland,-27.575585,153.270875,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,7,Australia,AU,Queensland,-27.51143,153.250131,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,18,Australia,AU,Queensland,-27.507324,153.233032,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,10,Australia,AU,Queensland,-27.575432,153.271197,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,9,21,Australia,AU,Queensland,-27.515362,153.239791,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,3,6,Australia,AU,Queensland,-27.574976,153.271927,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,8,14,Australia,AU,Queensland,-27.511367,153.249906,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,6,21,Australia,AU,Queensland,-27.569374,153.297882,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,12,15,Australia,AU,Queensland,-27.508358,153.200867,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,17,Australia,AU,Queensland,-27.575223,153.271991,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,31,Australia,AU,Queensland,-27.511305,153.25032,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,19,Australia,AU,Queensland,-27.490616,153.248662,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,25,Australia,AU,Queensland,-27.51138,153.250223,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,9,Australia,AU,Queensland,-27.401128,153.438387,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,30,Australia,AU,Queensland,-27.511799,153.250051,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,9,20,Australia,AU,Queensland,-27.511274,153.250035,EPSG:4326 +HUMAN_OBSERVATION,Kieralee Tori,1,MALE,,2021,10,9,Australia,AU,Queensland,-27.61478,153.360115,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,9,23,Australia,AU,Queensland,-27.490495,153.249192,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,FEMALE,,2021,11,21,Australia,AU,Queensland,-27.525531,153.283923,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,19,Australia,AU,Queensland,-27.511432,153.250157,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,4,28,Australia,AU,Queensland,-27.575752,153.273665,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,7,Australia,AU,Queensland,-27.490609,153.245484,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,3,Australia,AU,Queensland,-27.490389,153.248476,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,6,Australia,AU,Queensland,-27.489981,153.24617,EPSG:4326 +HUMAN_OBSERVATION,Anna Marcora,1,,,2023,10,2,Australia,AU,Queensland,-27.514099,153.255973,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,1,Australia,AU,Queensland,-27.574574,153.271342,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,13,Australia,AU,Queensland,-27.51537,153.239821,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,9,Australia,AU,Queensland,-27.50617,153.20134,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,10,Australia,AU,Queensland,-27.575623,153.271283,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,7,Australia,AU,Queensland,-27.490162,153.249417,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,1,Australia,AU,Queensland,-27.489796,153.246185,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2022,11,12,Australia,AU,Queensland,-27.575964,153.27153,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,19,Australia,AU,Queensland,-27.575697,153.271499,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,5,28,Australia,AU,Queensland,-27.511611,153.250319,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,7,22,Australia,AU,Queensland,-27.509243,153.251709,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,9,Australia,AU,Queensland,-27.514445,153.255939,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,23,Australia,AU,Queensland,-27.511732,153.25358,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2022,11,15,Australia,AU,Queensland,-27.575813,153.270918,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,3,11,Australia,AU,Queensland,-27.61276,153.1977,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,11,15,Australia,AU,Queensland,-27.511374,153.250146,EPSG:4326 +HUMAN_OBSERVATION,Zoe de Plevitz,1,,,2022,10,14,Australia,AU,Queensland,-27.399111,153.440331,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,3,Australia,AU,Queensland,-27.511758,153.250581,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,2,Australia,AU,Queensland,-27.49085,153.244948,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,11,Australia,AU,Queensland,-27.491038,153.245019,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,30,Australia,AU,Queensland,-27.513093,153.24256,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2022,8,15,Australia,AU,Queensland,-27.500268,153.234375,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2021,6,29,Australia,AU,Queensland,-27.489747,153.247909,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,11,13,Australia,AU,Queensland,-27.511758,153.253853,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,1,10,Australia,AU,Queensland,-27.49974,153.223169,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,8,26,Australia,AU,Queensland,-27.511752,153.253399,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,18,Australia,AU,Queensland,-27.513746,153.202408,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,3,20,Australia,AU,Queensland,-27.490669,153.245652,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,14,Australia,AU,Queensland,-27.490825,153.247731,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,2,26,Australia,AU,Queensland,-27.51165,153.243234,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,2,22,Australia,AU,Queensland,-27.490055,153.245071,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2021,5,8,Australia,AU,Queensland,-27.547061,153.258102,EPSG:4326 +HUMAN_OBSERVATION,Michael C,1,FEMALE,,2023,10,10,Australia,AU,Queensland,-27.498929,153.221211,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,5,Australia,AU,Queensland,-27.489734,153.248527,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,6,17,Australia,AU,Queensland,-27.506273,153.233749,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,24,Australia,AU,Queensland,-27.511419,153.250146,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,3,Australia,AU,Queensland,-27.489576,153.245087,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2022,10,8,Australia,AU,Queensland,-27.511689,153.252408,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,16,Australia,AU,Queensland,-27.507463,153.193176,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,21,Australia,AU,Queensland,-27.612917,153.199585,EPSG:4326 +HUMAN_OBSERVATION,Amanda Winchester ,1,,,2023,8,14,Australia,AU,Queensland,-27.618035,153.292859,EPSG:4326 +HUMAN_OBSERVATION,Wendy Carroll,1,,,2022,9,22,Australia,AU,Queensland,-27.530156,153.270639,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,20,Australia,AU,Queensland,-27.51147,153.250032,EPSG:4326 +HUMAN_OBSERVATION,Vikki Siliato,1,MALE,,2024,10,11,Australia,AU,Queensland,-27.431012,153.526234,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,21,Australia,AU,Queensland,-27.575585,153.270983,EPSG:4326 +HUMAN_OBSERVATION,Alyssa F,1,,,2024,8,29,Australia,AU,Queensland,-27.519633,153.236318,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,5,21,Australia,AU,Queensland,-27.489344,153.242905,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,10,21,Australia,AU,Queensland,-27.569588,153.295212,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,6,Australia,AU,Queensland,-27.490374,153.245015,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,24,Australia,AU,Queensland,-27.51148,153.248619,EPSG:4326 +HUMAN_OBSERVATION,Norm Oneissy,1,,,2021,9,6,Australia,AU,Queensland,-27.545982,153.227472,EPSG:4326 +HUMAN_OBSERVATION,Fiona Wythes,1,,,2022,1,25,Australia,AU,Queensland,-27.500044,153.25849,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,19,Australia,AU,Queensland,-27.509356,153.251678,EPSG:4326 +HUMAN_OBSERVATION,Yasmin Butler,1,,,2022,3,10,Australia,AU,Queensland,-27.55245,153.278197,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,12,27,Australia,AU,Queensland,-27.490902,153.247658,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,25,Australia,AU,Queensland,-27.495993,153.245249,EPSG:4326 +HUMAN_OBSERVATION,Liz Foote,1,MALE,,2022,10,14,Australia,AU,Queensland,-27.403448,153.437721,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,12,1,Australia,AU,Queensland,-27.506928,153.202919,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,29,Australia,AU,Queensland,-27.574367,153.27124,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2021,10,8,Australia,AU,Queensland,-27.496077,153.404862,EPSG:4326 +HUMAN_OBSERVATION,Lisa Murby,1,,,2023,9,28,Australia,AU,Queensland,-27.502468,153.228327,EPSG:4326 +HUMAN_OBSERVATION,Scott Bretherton,1,,,2023,8,3,Australia,AU,Queensland,-27.398842,153.44115,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,16,Australia,AU,Queensland,-27.511437,153.24726,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,9,16,Australia,AU,Queensland,-27.514,153.202972,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,1,,,2020,10,30,Australia,AU,Queensland,-27.531228,153.211259,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,4,15,Australia,AU,Queensland,-27.568876,153.295258,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,11,Australia,AU,Queensland,-27.512756,153.256072,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2021,11,21,Australia,AU,Queensland,-27.535235,153.247658,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,10,Australia,AU,Queensland,-27.491043,153.248511,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2022,12,10,Australia,AU,Queensland,-27.525619,153.283678,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,11,20,Australia,AU,Queensland,-27.490813,153.248035,EPSG:4326 +HUMAN_OBSERVATION,Steven Wells,1,,,2023,10,15,Australia,AU,Queensland,-27.489692,153.24897,EPSG:4326 +HUMAN_OBSERVATION,Helen Hinton,1,MALE,,2023,7,19,Australia,AU,Queensland,-27.544196,153.270727,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,7,29,Australia,AU,Queensland,-27.569592,153.298706,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,16,Australia,AU,Queensland,-27.49039,153.24541,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,6,12,Australia,AU,Queensland,-27.509375,153.251897,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,12,14,Australia,AU,Queensland,-27.497326,153.244888,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,10,Australia,AU,Queensland,-27.490871,153.245678,EPSG:4326 +HUMAN_OBSERVATION,Straddie Spotter,1,,,2024,4,21,Australia,AU,Queensland,-27.431594,153.52653,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,15,Australia,AU,Queensland,-27.511822,153.253849,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,19,Australia,AU,Queensland,-27.507208,153.232697,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,5,Australia,AU,Queensland,-27.511281,153.250221,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2023,6,28,Australia,AU,Queensland,-27.493445,153.403025,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,11,Australia,AU,Queensland,-27.511567,153.249589,EPSG:4326 +HUMAN_OBSERVATION,Bernadette Williams,1,,,2022,12,8,Australia,AU,Queensland,-27.396692,153.440006,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,12,Australia,AU,Queensland,-27.511423,153.250319,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,22,Australia,AU,Queensland,-27.490245,153.248762,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,12,2,Australia,AU,Queensland,-27.490448,153.245378,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,12,7,Australia,AU,Queensland,-27.505108,153.19722,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,20,Australia,AU,Queensland,-27.575377,153.271148,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,10,Australia,AU,Queensland,-27.51538,153.239829,EPSG:4326 +HUMAN_OBSERVATION,Lara Herrero,1,,,2021,4,12,Australia,AU,Queensland,-27.529207,153.281091,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2024,1,23,Australia,AU,Queensland,-27.500311,153.22391,EPSG:4326 +HUMAN_OBSERVATION,Nikki Beckinsale,1,,,2023,10,19,Australia,AU,Queensland,-27.488283,153.196332,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,12,Australia,AU,Queensland,-27.509459,153.251312,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,17,Australia,AU,Queensland,-27.511409,153.250115,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,9,15,Australia,AU,Queensland,-27.538078,153.270889,EPSG:4326 +HUMAN_OBSERVATION,Lex Kimlin ,1,MALE,,2023,6,9,Australia,AU,Queensland,-27.549735,153.252148,EPSG:4326 +HUMAN_OBSERVATION,Detection Dogs for Conservation UniSC,1,FEMALE,,2022,8,9,Australia,AU,Queensland,-27.489439,153.249418,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2023,7,16,Australia,AU,Queensland,-27.548421,153.256341,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,4,28,Australia,AU,Queensland,-27.508713,153.252335,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,5,21,Australia,AU,Queensland,-27.509232,153.251801,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,5,Australia,AU,Queensland,-27.575501,153.271036,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,3,Australia,AU,Queensland,-27.511322,153.250135,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,14,Australia,AU,Queensland,-27.511373,153.250238,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,2,10,Australia,AU,Queensland,-27.489832,153.248591,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,9,9,Australia,AU,Queensland,-27.498447,153.246408,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,26,Australia,AU,Queensland,-27.509583,153.251694,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,5,5,Australia,AU,Queensland,-27.511286,153.250251,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,21,Australia,AU,Queensland,-27.511615,153.250425,EPSG:4326 +HUMAN_OBSERVATION,Amy Carmichael,1,,,2022,11,20,Australia,AU,Queensland,-27.492017,153.20102,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,5,17,Australia,AU,Queensland,-27.491049,153.244731,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,8,Australia,AU,Queensland,-27.511333,153.250336,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2022,11,8,Australia,AU,Queensland,-27.575908,153.271197,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,7,29,Australia,AU,Queensland,-27.489578,153.244247,EPSG:4326 +HUMAN_OBSERVATION,Caren Gillis,1,,,2023,6,22,Australia,AU,Queensland,-27.507128,153.237486,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,8,14,Australia,AU,Queensland,-27.581069,153.220154,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,7,Australia,AU,Queensland,-27.505335,153.197372,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,19,Australia,AU,Queensland,-27.61323,153.197891,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,15,Australia,AU,Queensland,-27.513252,153.255076,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,23,Australia,AU,Queensland,-27.514472,153.251885,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-27.405222,153.437274,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,23,Australia,AU,Queensland,-27.490807,153.248566,EPSG:4326 +HUMAN_OBSERVATION,John Baker,1,FEMALE,,2020,9,3,Australia,AU,Queensland,-27.494656,153.25552,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,12,Australia,AU,Queensland,-27.575813,153.271304,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,10,Australia,AU,Queensland,-27.511478,153.250028,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,9,1,Australia,AU,Queensland,-27.493336,153.403092,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,16,Australia,AU,Queensland,-27.511717,153.203979,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,9,5,Australia,AU,Queensland,-27.489668,153.245316,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,11,6,Australia,AU,Queensland,-27.490465,153.24842,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,8,14,Australia,AU,Queensland,-27.567993,153.296875,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,10,23,Australia,AU,Queensland,-27.490858,153.24827,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,4,Australia,AU,Queensland,-27.5749,153.271519,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,30,Australia,AU,Queensland,-27.514534,153.241998,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,8,5,Australia,AU,Queensland,-27.490537,153.248473,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,8,16,Australia,AU,Queensland,-27.511814,153.250081,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,3,2,Australia,AU,Queensland,-27.504141,153.249986,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,9,2,Australia,AU,Queensland,-27.514551,153.194672,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,21,Australia,AU,Queensland,-27.514468,153.242166,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,2,28,Australia,AU,Queensland,-27.568653,153.296204,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,9,30,Australia,AU,Queensland,-27.515363,153.239802,EPSG:4326 +HUMAN_OBSERVATION,Kelli Longworth,1,MALE,,2022,10,14,Australia,AU,Queensland,-27.393463,153.439897,EPSG:4326 +HUMAN_OBSERVATION,Chris Orpen,1,,,2023,11,1,Australia,AU,Queensland,-27.53244,153.281722,EPSG:4326 +HUMAN_OBSERVATION,Erica Siegel,1,,,2023,6,30,Australia,AU,Queensland,-27.500454,153.216763,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,5,Australia,AU,Queensland,-27.511401,153.250237,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,28,Australia,AU,Queensland,-27.575033,153.271476,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,10,3,Australia,AU,Queensland,-27.567944,153.298935,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,2,Australia,AU,Queensland,-27.511263,153.250172,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,1,Australia,AU,Queensland,-27.575109,153.271862,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,MALE,,2021,10,8,Australia,AU,Queensland,-27.401842,153.438272,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,11,25,Australia,AU,Queensland,-27.51209,153.254969,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,11,14,Australia,AU,Queensland,-27.574867,153.272275,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,13,Australia,AU,Queensland,-27.490246,153.248413,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,26,Australia,AU,Queensland,-27.511542,153.250054,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2023,12,3,Australia,AU,Queensland,-27.497511,153.24602,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,12,6,Australia,AU,Queensland,-27.50186,153.252615,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,12,10,Australia,AU,Queensland,-27.511439,153.250263,EPSG:4326 +HUMAN_OBSERVATION,Louisa Cass,1,MALE,,2024,5,13,Australia,AU,Queensland,-27.513008,153.255189,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,7,1,Australia,AU,Queensland,-27.61363,153.199417,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,23,Australia,AU,Queensland,-27.490925,153.248346,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,FEMALE,,2021,10,16,Australia,AU,Queensland,-27.545979,153.258462,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,19,Australia,AU,Queensland,-27.573968,153.272012,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,10,31,Australia,AU,Queensland,-27.490862,153.247958,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,10,13,Australia,AU,Queensland,-27.54084,153.271194,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,12,20,Australia,AU,Queensland,-27.608844,153.233733,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,5,Australia,AU,Queensland,-27.511663,153.253859,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,30,Australia,AU,Queensland,-27.574957,153.271927,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,29,Australia,AU,Queensland,-27.50195,153.25255,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,7,Australia,AU,Queensland,-27.513638,153.256023,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,12,10,Australia,AU,Queensland,-27.500748,153.249591,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,12,Australia,AU,Queensland,-27.614538,153.197327,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,11,12,Australia,AU,Queensland,-27.575142,153.272336,EPSG:4326 +HUMAN_OBSERVATION,Amy Carmichael,1,,,2022,10,17,Australia,AU,Queensland,-27.491522,153.199368,EPSG:4326 +HUMAN_OBSERVATION,John Baker,1,FEMALE,,2020,8,31,Australia,AU,Queensland,-27.494377,153.25549,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,4,3,Australia,AU,Queensland,-27.489981,153.245316,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,21,Australia,AU,Queensland,-27.576536,153.271927,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,26,Australia,AU,Queensland,-27.490137,153.249021,EPSG:4326 +HUMAN_OBSERVATION,Lara Herrero,1,,,2022,1,8,Australia,AU,Queensland,-27.530905,153.281987,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,26,Australia,AU,Queensland,-27.490254,153.248619,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,29,Australia,AU,Queensland,-27.490337,153.247192,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,4,8,Australia,AU,Queensland,-27.49132,153.24359,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,10,16,Australia,AU,Queensland,-27.498363,153.245224,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,FEMALE,,2024,5,25,Australia,AU,Queensland,-27.568064,153.29685,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,22,Australia,AU,Queensland,-27.490861,153.248492,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,29,Australia,AU,Queensland,-27.490352,153.248141,EPSG:4326 +HUMAN_OBSERVATION,Nikki Beckinsale,1,,,2023,9,6,Australia,AU,Queensland,-27.549978,153.260886,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,7,14,Australia,AU,Queensland,-27.511656,153.25151,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,4,15,Australia,AU,Queensland,-27.612656,153.198502,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,1,6,Australia,AU,Queensland,-27.499178,153.24657,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,1,31,Australia,AU,Queensland,-27.512939,153.242233,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,1,Australia,AU,Queensland,-27.515373,153.239853,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-27.495374,153.404444,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2023,10,13,Australia,AU,Queensland,-27.525661,153.281925,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,9,23,Australia,AU,Queensland,-27.490951,153.248068,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,31,Australia,AU,Queensland,-27.511436,153.25016,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,12,Australia,AU,Queensland,-27.498037,153.246033,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2022,9,4,Australia,AU,Queensland,-27.490304,153.248532,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,3,22,Australia,AU,Queensland,-27.511522,153.247647,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,29,Australia,AU,Queensland,-27.513409,153.202271,EPSG:4326 +HUMAN_OBSERVATION,Lara Herrero,1,,,2022,1,8,Australia,AU,Queensland,-27.531525,153.281907,EPSG:4326 +HUMAN_OBSERVATION,Caren Gillis,1,,,2023,2,2,Australia,AU,Queensland,-27.550492,153.250432,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,6,Australia,AU,Queensland,-27.511635,153.250974,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,9,Australia,AU,Queensland,-27.505934,153.233643,EPSG:4326 +HUMAN_OBSERVATION,Matilda Stevenson,1,,,2020,10,20,Australia,AU,Queensland,-27.501001,153.058106,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2021,10,18,Australia,AU,Queensland,-27.534797,153.273665,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,3,Australia,AU,Queensland,-27.575604,153.270918,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,12,2,Australia,AU,Queensland,-27.495663,153.245286,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,22,Australia,AU,Queensland,-27.575585,153.271562,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,18,Australia,AU,Queensland,-27.5019,153.232559,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,1,10,Australia,AU,Queensland,-27.511721,153.250468,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,13,Australia,AU,Queensland,-27.48959,153.245087,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,16,Australia,AU,Queensland,-27.504982,153.201248,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,29,Australia,AU,Queensland,-27.511762,153.25367,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,5,Australia,AU,Queensland,-27.575623,153.270875,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,10,Australia,AU,Queensland,-27.511613,153.249982,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,9,Australia,AU,Queensland,-27.50433,153.20046,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,5,Australia,AU,Queensland,-27.51135,153.250165,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,25,Australia,AU,Queensland,-27.488955,153.245941,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2022,4,9,Australia,AU,Queensland,-27.498384,153.226275,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,6,14,Australia,AU,Queensland,-27.509283,153.251754,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,3,Australia,AU,Queensland,-27.511813,153.25012,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,5,1,Australia,AU,Queensland,-27.490125,153.24976,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,4,8,Australia,AU,Queensland,-27.491335,153.243802,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,25,Australia,AU,Queensland,-27.490469,153.245011,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,12,Australia,AU,Queensland,-27.489635,153.24471,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,13,Australia,AU,Queensland,-27.5392,153.270767,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,10,Australia,AU,Queensland,-27.511524,153.248555,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,29,Australia,AU,Queensland,-27.615221,153.198135,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,1,26,Australia,AU,Queensland,-27.511526,153.248149,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,6,10,Australia,AU,Queensland,-27.569031,153.294601,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,7,21,Australia,AU,Queensland,-27.511547,153.248688,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,2,Australia,AU,Queensland,-27.511342,153.250127,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,17,Australia,AU,Queensland,-27.511312,153.250403,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,18,Australia,AU,Queensland,-27.511009,153.252105,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,2,12,Australia,AU,Queensland,-27.575623,153.271219,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,29,Australia,AU,Queensland,-27.574659,153.27111,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,1,29,Australia,AU,Queensland,-27.49087,153.244965,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,1,6,Australia,AU,Queensland,-27.490403,153.245161,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,12,23,Australia,AU,Queensland,-27.49063,153.248236,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,4,Australia,AU,Queensland,-27.574557,153.272141,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,7,25,Australia,AU,Queensland,-27.507786,153.232193,EPSG:4326 +HUMAN_OBSERVATION,Lewis Peach,1,,,2022,9,13,Australia,AU,Queensland,-27.492227,153.215249,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,31,Australia,AU,Queensland,-27.501177,153.252321,EPSG:4326 +HUMAN_OBSERVATION,Laura Clyne,1,,,2020,10,12,Australia,AU,Queensland,-27.546976,153.217904,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,4,Australia,AU,Queensland,-27.490692,153.248677,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,5,9,Australia,AU,Queensland,-27.501293,153.234829,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,11,Australia,AU,Queensland,-27.503059,153.25074,EPSG:4326 +HUMAN_OBSERVATION,Desley Cook,1,,,2021,5,17,Australia,AU,Queensland,-27.5,153.25,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,FEMALE,,2024,9,21,Australia,AU,Queensland,-27.511611,153.251408,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,3,22,Australia,AU,Queensland,-27.490419,153.247177,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,8,30,Australia,AU,Queensland,-27.491184,153.248248,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,8,Australia,AU,Queensland,-27.491069,153.244973,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,21,Australia,AU,Queensland,-27.51269,153.25603,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,9,Australia,AU,Queensland,-27.512534,153.256381,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,12,Australia,AU,Queensland,-27.489855,153.248334,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,10,11,Australia,AU,Queensland,-27.497936,153.246537,EPSG:4326 +HUMAN_OBSERVATION,Deb Tabbard,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-27.392912,153.441554,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,12,12,Australia,AU,Queensland,-27.575585,153.270983,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,21,Australia,AU,Queensland,-27.51144,153.250138,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,12,Australia,AU,Queensland,-27.575528,153.271154,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,29,Australia,AU,Queensland,-27.507759,153.194672,EPSG:4326 +HUMAN_OBSERVATION,Tinneke Van Leur,1,,,2022,10,14,Australia,AU,Queensland,-27.399894,153.438444,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,12,6,Australia,AU,Queensland,-27.503023,153.250759,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,22,Australia,AU,Queensland,-27.504488,153.233307,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,FEMALE,,2020,12,18,Australia,AU,Queensland,-27.554319,153.272152,EPSG:4326 +HUMAN_OBSERVATION,Caitríona Bennett,1,,,2023,11,7,Australia,AU,Queensland,-27.489858,153.249114,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,1,11,Australia,AU,Queensland,-27.489875,153.244372,EPSG:4326 +HUMAN_OBSERVATION,Alyssa F,1,,,2023,1,9,Australia,AU,Queensland,-27.521231,153.236146,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,7,25,Australia,AU,Queensland,-27.509298,153.251719,EPSG:4326 +HUMAN_OBSERVATION,Laura Clyne,1,,,2021,12,8,Australia,AU,Queensland,-27.547223,153.255676,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2022,12,20,Australia,AU,Queensland,-27.539067,153.272806,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,MALE,,2023,10,7,Australia,AU,Queensland,-27.493668,153.403063,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,11,8,Australia,AU,Queensland,-27.575697,153.271499,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,12,7,Australia,AU,Queensland,-27.495766,153.245271,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,20,Australia,AU,Queensland,-27.513935,153.256029,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2024,1,22,Australia,AU,Queensland,-27.507341,153.19693,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,FEMALE,,2022,11,6,Australia,AU,Queensland,-27.491312,153.244697,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,FEMALE,,2021,8,27,Australia,AU,Queensland,-27.511477,153.250598,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,4,4,Australia,AU,Queensland,-27.568867,153.29457,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,9,24,Australia,AU,Queensland,-27.575508,153.270854,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,6,6,Australia,AU,Queensland,-27.576688,153.271905,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,20,Australia,AU,Queensland,-27.490592,153.249023,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,11,Australia,AU,Queensland,-27.512194,153.255543,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,7,16,Australia,AU,Queensland,-27.490089,153.248575,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,8,4,Australia,AU,Queensland,-27.511399,153.250295,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,20,Australia,AU,Queensland,-27.509316,153.251645,EPSG:4326 +HUMAN_OBSERVATION,Yasmin Butler,1,,,2022,10,28,Australia,AU,Queensland,-27.524801,153.284508,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,6,5,Australia,AU,Queensland,-27.507425,153.232224,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,5,26,Australia,AU,Queensland,-27.574386,153.271626,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,14,Australia,AU,Queensland,-27.490467,153.248592,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,27,Australia,AU,Queensland,-27.490786,153.248029,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,20,Australia,AU,Queensland,-27.509328,153.25189,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,4,3,Australia,AU,Queensland,-27.50688,153.232727,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,12,Australia,AU,Queensland,-27.511405,153.247205,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,9,20,Australia,AU,Queensland,-27.515365,153.239818,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,9,9,Australia,AU,Queensland,-27.614119,153.199265,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,8,Australia,AU,Queensland,-27.490907,153.247965,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,MALE,,2024,9,27,Australia,AU,Queensland,-27.511578,153.242107,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,1,Australia,AU,Queensland,-27.514474,153.251902,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,29,Australia,AU,Queensland,-27.511675,153.25061,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,1,22,Australia,AU,Queensland,-27.612908,153.197835,EPSG:4326 +HUMAN_OBSERVATION,Vikki Siliato,1,MALE,,2024,10,11,Australia,AU,Queensland,-27.395066,153.44095,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,14,Australia,AU,Queensland,-27.511267,153.25009,EPSG:4326 +HUMAN_OBSERVATION,Karen Tebbit,1,,,2023,8,20,Australia,AU,Queensland,-27.515427,153.239858,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,10,28,Australia,AU,Queensland,-27.510145,153.247948,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,9,19,Australia,AU,Queensland,-27.515346,153.23981,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,3,14,Australia,AU,Queensland,-27.496922,153.245654,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,4,16,Australia,AU,Queensland,-27.576402,153.272957,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,6,3,Australia,AU,Queensland,-27.513792,153.242755,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,10,16,Australia,AU,Queensland,-27.523592,153.285614,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2021,9,3,Australia,AU,Queensland,-27.546601,153.258204,EPSG:4326 +HUMAN_OBSERVATION,Richard Stone,1,,,2022,12,24,Australia,AU,Queensland,-27.496121,153.253053,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,21,Australia,AU,Queensland,-27.509261,153.25175,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,18,Australia,AU,Queensland,-27.49825,153.245998,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,20,Australia,AU,Queensland,-27.490543,153.248709,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,5,Australia,AU,Queensland,-27.489941,153.248797,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,FEMALE,,2023,10,14,Australia,AU,Queensland,-27.502095,153.225227,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,11,17,Australia,AU,Queensland,-27.511715,153.253622,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2022,11,3,Australia,AU,Queensland,-27.575623,153.271111,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,3,7,Australia,AU,Queensland,-27.575242,153.271176,EPSG:4326 +HUMAN_OBSERVATION,sian mackenzie,1,,,2023,3,26,Australia,AU,Queensland,-27.394936,153.440927,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,6,17,Australia,AU,Queensland,-27.490268,153.245228,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2023,1,12,Australia,AU,Queensland,-27.544354,153.271857,EPSG:4326 +HUMAN_OBSERVATION,Tahlie Page,1,,,2024,10,11,Australia,AU,Queensland,-27.397086,153.439358,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,23,Australia,AU,Queensland,-27.500989,153.251976,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,5,7,Australia,AU,Queensland,-27.57431,153.272206,EPSG:4326 +HUMAN_OBSERVATION,Chris Moriarty,1,FEMALE,,2023,8,17,Australia,AU,Queensland,-27.482639,153.238758,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2022,11,22,Australia,AU,Queensland,-27.525616,153.283834,EPSG:4326 +HUMAN_OBSERVATION,Amanda Gerber,1,,,2022,10,14,Australia,AU,Queensland,-27.397058,153.439075,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,26,Australia,AU,Queensland,-27.511943,153.254273,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,4,18,Australia,AU,Queensland,-27.500633,153.233963,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,7,10,Australia,AU,Queensland,-27.576821,153.272034,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2022,12,31,Australia,AU,Queensland,-27.575908,153.271304,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2021,5,11,Australia,AU,Queensland,-27.490827,153.248538,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,11,1,Australia,AU,Queensland,-27.489319,153.244873,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,7,10,Australia,AU,Queensland,-27.511726,153.25387,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,16,Australia,AU,Queensland,-27.513758,153.255901,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,8,31,Australia,AU,Queensland,-27.574633,153.271226,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,3,Australia,AU,Queensland,-27.512929,153.256023,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,8,Australia,AU,Queensland,-27.489384,153.244064,EPSG:4326 +HUMAN_OBSERVATION,Di Cartmill,1,MALE,,2024,10,11,Australia,AU,Queensland,-27.49624,153.39913,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,FEMALE,,2023,8,15,Australia,AU,Queensland,-27.543904,153.275806,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2022,11,15,Australia,AU,Queensland,-27.491205,153.244869,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,1,Australia,AU,Queensland,-27.575794,153.27124,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,12,4,Australia,AU,Queensland,-27.49007,153.248446,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,1,17,Australia,AU,Queensland,-27.489592,153.245453,EPSG:4326 +HUMAN_OBSERVATION,Yasmin Butler,1,,,2022,3,26,Australia,AU,Queensland,-27.551969,153.275966,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,5,Australia,AU,Queensland,-27.575642,153.270918,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,29,Australia,AU,Queensland,-27.530722,153.267899,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,15,Australia,AU,Queensland,-27.573872,153.271616,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,9,27,Australia,AU,Queensland,-27.505293,153.201614,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,4,18,Australia,AU,Queensland,-27.488363,153.246124,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,5,31,Australia,AU,Queensland,-27.511396,153.24987,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,11,4,Australia,AU,Queensland,-27.613853,153.198853,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,12,2,Australia,AU,Queensland,-27.489911,153.249222,EPSG:4326 +HUMAN_OBSERVATION,Amy Strong,1,,,2023,3,12,Australia,AU,Queensland,-27.500998,153.221723,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,2,Australia,AU,Queensland,-27.490565,153.248677,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,10,7,Australia,AU,Queensland,-27.511654,153.251067,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,8,7,Australia,AU,Queensland,-27.531257,153.281674,EPSG:4326 +HUMAN_OBSERVATION,Bethany Cramb,1,FEMALE,,2022,10,11,Australia,AU,Queensland,-27.568508,153.193381,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,6,1,Australia,AU,Queensland,-27.489769,153.249004,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,FEMALE,,2023,2,17,Australia,AU,Queensland,-27.514805,153.251864,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,,,2024,1,12,Australia,AU,Queensland,-27.499739,153.230667,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,,,2024,7,27,Australia,AU,Queensland,-27.511543,153.249496,EPSG:4326 +HUMAN_OBSERVATION,Amy Carmichael,1,,,2022,12,1,Australia,AU,Queensland,-27.493578,153.406134,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,12,31,Australia,AU,Queensland,-27.489868,153.249283,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,8,20,Australia,AU,Queensland,-27.511702,153.252035,EPSG:4326 +HUMAN_OBSERVATION,Chloe Olliver,1,,,2021,4,24,Australia,AU,Queensland,-27.424757,153.517671,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,3,7,Australia,AU,Queensland,-27.489765,153.244644,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,31,Australia,AU,Queensland,-27.574615,153.272055,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,14,Australia,AU,Queensland,-27.511451,153.247572,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,9,8,Australia,AU,Queensland,-27.490646,153.248122,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,27,Australia,AU,Queensland,-27.501252,153.252566,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,22,Australia,AU,Queensland,-27.496534,153.222534,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,11,13,Australia,AU,Queensland,-27.499215,153.223115,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,3,22,Australia,AU,Queensland,-27.613285,153.201149,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,12,10,Australia,AU,Queensland,-27.506768,153.223341,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,6,24,Australia,AU,Queensland,-27.496473,153.24578,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,24,Australia,AU,Queensland,-27.574405,153.27109,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,12,21,Australia,AU,Queensland,-27.574101,153.271497,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,4,7,Australia,AU,Queensland,-27.511347,153.25001,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,MALE,,2024,9,28,Australia,AU,Queensland,-27.51213,153.242034,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,27,Australia,AU,Queensland,-27.513975,153.202545,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2023,12,29,Australia,AU,Queensland,-27.511374,153.250269,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,1,3,Australia,AU,Queensland,-27.490523,153.248752,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,5,Australia,AU,Queensland,-27.573664,153.27315,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,3,Australia,AU,Queensland,-27.513312,153.257133,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,2,22,Australia,AU,Queensland,-27.490177,153.247742,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,5,25,Australia,AU,Queensland,-27.512245,153.255563,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,9,25,Australia,AU,Queensland,-27.514069,153.25604,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,9,24,Australia,AU,Queensland,-27.515366,153.239798,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,6,13,Australia,AU,Queensland,-27.490452,153.248682,EPSG:4326 +HUMAN_OBSERVATION,Julie Elliott,1,FEMALE,,2023,1,15,Australia,AU,Queensland,-27.4314,153.523864,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,2,3,Australia,AU,Queensland,-27.511596,153.249463,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,15,Australia,AU,Queensland,-27.51142,153.250197,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,1,13,Australia,AU,Queensland,-27.490753,153.24842,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,6,11,Australia,AU,Queensland,-27.511455,153.247118,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,9,26,Australia,AU,Queensland,-27.570202,153.300705,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,11,15,Australia,AU,Queensland,-27.497417,153.245804,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,7,Australia,AU,Queensland,-27.511446,153.250152,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,3,22,Australia,AU,Queensland,-27.511324,153.250036,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,8,5,Australia,AU,Queensland,-27.489996,153.248763,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,16,Australia,AU,Queensland,-27.491486,153.244461,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,11,Australia,AU,Queensland,-27.513678,153.256375,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,2,23,Australia,AU,Queensland,-27.511361,153.25007,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,30,Australia,AU,Queensland,-27.574861,153.271873,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,5,23,Australia,AU,Queensland,-27.501294,153.25225,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,7,8,Australia,AU,Queensland,-27.613783,153.199127,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,5,16,Australia,AU,Queensland,-27.506847,153.232788,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,6,5,Australia,AU,Queensland,-27.511738,153.25377,EPSG:4326 +HUMAN_OBSERVATION,Tahlie Page,1,,,2024,10,11,Australia,AU,Queensland,-27.397093,153.441801,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,6,21,Australia,AU,Queensland,-27.567339,153.297348,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2021,4,17,Australia,AU,Queensland,-27.546338,153.258054,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,7,30,Australia,AU,Queensland,-27.509208,153.251003,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,10,19,Australia,AU,Queensland,-27.502188,153.250292,EPSG:4326 +HUMAN_OBSERVATION,Patricia Meldrum,1,,,2021,10,9,Australia,AU,Queensland,-27.395325,153.441701,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,10,14,Australia,AU,Queensland,-27.612688,153.198517,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,11,16,Australia,AU,Queensland,-27.511812,153.253611,EPSG:4326 +HUMAN_OBSERVATION,Amy Carmichael,1,,,2023,11,7,Australia,AU,Queensland,-27.492293,153.199979,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,16,Australia,AU,Queensland,-27.57587,153.271412,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,18,Australia,AU,Queensland,-27.612635,153.198517,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,9,24,Australia,AU,Queensland,-27.496433,153.245887,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2021,3,27,Australia,AU,Queensland,-27.490843,153.247905,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,9,23,Australia,AU,Queensland,-27.572853,153.272881,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,10,19,Australia,AU,Queensland,-27.510106,153.247906,EPSG:4326 +HUMAN_OBSERVATION,Tim Leach,1,,,2023,4,5,Australia,AU,Queensland,-27.505642,153.248121,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,7,Australia,AU,Queensland,-27.511133,153.201416,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,10,28,Australia,AU,Queensland,-27.49071,153.248551,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,3,31,Australia,AU,Queensland,-27.514497,153.251938,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,3,10,Australia,AU,Queensland,-27.489868,153.249308,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,13,Australia,AU,Queensland,-27.506916,153.233261,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,5,Australia,AU,Queensland,-27.569809,153.298584,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,2,10,Australia,AU,Queensland,-27.51558,153.240804,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,31,Australia,AU,Queensland,-27.576725,153.27213,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,4,14,Australia,AU,Queensland,-27.501323,153.252566,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,9,26,Australia,AU,Queensland,-27.489884,153.248756,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,28,Australia,AU,Queensland,-27.574348,153.27154,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2023,8,26,Australia,AU,Queensland,-27.511671,153.250812,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2020,12,31,Australia,AU,Queensland,-27.511604,153.243727,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,7,12,Australia,AU,Queensland,-27.511358,153.250047,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,17,Australia,AU,Queensland,-27.511495,153.247309,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,7,8,Australia,AU,Queensland,-27.508854,153.204208,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,4,27,Australia,AU,Queensland,-27.498552,153.246674,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,12,Australia,AU,Queensland,-27.490269,153.249388,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,6,7,Australia,AU,Queensland,-27.509277,153.251897,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,1,Australia,AU,Queensland,-27.511377,153.250114,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,8,24,Australia,AU,Queensland,-27.490661,153.245547,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2021,1,11,Australia,AU,Queensland,-27.495724,153.245244,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2023,8,8,Australia,AU,Queensland,-27.548571,153.256197,EPSG:4326 +HUMAN_OBSERVATION,Sarah Helliwell,1,,,2023,5,6,Australia,AU,Queensland,-27.49413,153.254213,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,10,19,Australia,AU,Queensland,-27.490958,153.245035,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,FEMALE,,2024,7,22,Australia,AU,Queensland,-27.505762,153.23317,EPSG:4326 +HUMAN_OBSERVATION,Bernadette Williams,1,,,2022,12,6,Australia,AU,Queensland,-27.400139,153.438745,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,2,11,Australia,AU,Queensland,-27.575813,153.271326,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2022,5,8,Australia,AU,Queensland,-27.53216,153.281636,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,26,Australia,AU,Queensland,-27.511426,153.250082,EPSG:4326 +HUMAN_OBSERVATION,Claire Tweddle,1,FEMALE,,2024,9,23,Australia,AU,Queensland,-27.513961,153.255906,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,,,2023,10,25,Australia,AU,Queensland,-27.500528,153.230561,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,2,6,Australia,AU,Queensland,-27.489908,153.244995,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,10,23,Australia,AU,Queensland,-27.511717,153.253763,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,FEMALE,,2024,6,16,Australia,AU,Queensland,-27.511752,153.253759,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,4,18,Australia,AU,Queensland,-27.50686,153.20284,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,9,25,Australia,AU,Queensland,-27.515371,153.239813,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,8,26,Australia,AU,Queensland,-27.509441,153.204086,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,3,7,Australia,AU,Queensland,-27.488152,153.246002,EPSG:4326 +HUMAN_OBSERVATION,Kelli Longworth,1,MALE,,2022,10,14,Australia,AU,Queensland,-27.395546,153.438831,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,8,11,Australia,AU,Queensland,-27.511725,153.250581,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,4,23,Australia,AU,Queensland,-27.511766,153.252894,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,6,Australia,AU,Queensland,-27.573549,153.272377,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,MALE,,2021,10,8,Australia,AU,Queensland,-27.401279,153.439524,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,10,14,Australia,AU,Queensland,-27.614206,153.198837,EPSG:4326 +HUMAN_OBSERVATION,Laura Clyne,1,,,2020,10,12,Australia,AU,Queensland,-27.547014,153.217872,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,6,7,Australia,AU,Queensland,-27.491046,153.248624,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,28,Australia,AU,Queensland,-27.495493,153.245004,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,26,Australia,AU,Queensland,-27.511298,153.250343,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2022,8,15,Australia,AU,Queensland,-27.614897,153.23949,EPSG:4326 +HUMAN_OBSERVATION,beth seedsman,1,,,2024,5,17,Australia,AU,Queensland,-27.502456,153.258956,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2024,7,14,Australia,AU,Queensland,-27.511763,153.253797,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,MALE,,2024,9,9,Australia,AU,Queensland,-27.564762,153.304671,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2023,10,23,Australia,AU,Queensland,-27.614331,153.199931,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,10,26,Australia,AU,Queensland,-27.513099,153.242061,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,FEMALE,,2024,5,23,Australia,AU,Queensland,-27.501648,153.232529,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,6,24,Australia,AU,Queensland,-27.490804,153.248027,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2022,10,19,Australia,AU,Queensland,-27.488783,153.246078,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2023,11,24,Australia,AU,Queensland,-27.498084,153.246275,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,,,2022,8,27,Australia,AU,Queensland,-27.532887,153.248763,EPSG:4326 +HUMAN_OBSERVATION,Bernadette Williams,1,,,2022,12,7,Australia,AU,Queensland,-27.396252,153.440313,EPSG:4326 +HUMAN_OBSERVATION,Paul Weston,1,,,2023,12,11,Australia,AU,Queensland,-27.511613,153.250028,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,11,21,Australia,AU,Queensland,-27.491432,153.245361,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,10,3,Australia,AU,Queensland,-27.61302,153.197084,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,10,20,Australia,AU,Queensland,-27.499515,153.223079,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,1,12,Australia,AU,Queensland,-27.496058,153.246343,EPSG:4326 +HUMAN_OBSERVATION,Stuart Cameron,1,,,2022,10,14,Australia,AU,Queensland,-27.396799,153.439335,EPSG:4326 +HUMAN_OBSERVATION,Reagan Bettell,1,MALE,,2022,8,22,Australia,AU,Queensland,-27.536693,153.272152,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,MALE,,2023,11,1,Australia,AU,Queensland,-27.526978,153.282333,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2023,9,16,Australia,AU,Queensland,-27.52652,153.276611,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,5,28,Australia,AU,Queensland,-27.57644,153.272012,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2022,10,14,Australia,AU,Queensland,-27.429374,153.540064,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,10,Australia,AU,Queensland,-27.575451,153.271025,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,8,2,Australia,AU,Queensland,-27.489795,153.248656,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,7,Australia,AU,Queensland,-27.490843,153.247893,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,4,4,Australia,AU,Queensland,-27.574805,153.272978,EPSG:4326 +HUMAN_OBSERVATION,Fiona Wythes,1,,,2022,3,8,Australia,AU,Queensland,-27.511166,153.248215,EPSG:4326 +HUMAN_OBSERVATION,micheal del manso ,1,,,2023,6,22,Australia,AU,Queensland,-27.58511,153.28189,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,,,2021,10,9,Australia,AU,Queensland,-27.430692,153.528642,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2021,4,2,Australia,AU,Queensland,-27.512832,153.242286,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,29,Australia,AU,Queensland,-27.511421,153.250417,EPSG:4326 +HUMAN_OBSERVATION,Fleur Carter,1,MALE,,2024,5,13,Australia,AU,Queensland,-27.56886,153.29462,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,MALE,,2023,11,8,Australia,AU,Queensland,-27.491379,153.243691,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2023,10,22,Australia,AU,Queensland,-27.575147,153.269974,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,MALE,,2023,8,8,Australia,AU,Queensland,-27.490023,153.244934,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,9,9,Australia,AU,Queensland,-27.515362,153.239874,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,10,24,Australia,AU,Queensland,-27.575128,153.269738,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,MALE,,2023,2,17,Australia,AU,Queensland,-27.514921,153.251499,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,10,Australia,AU,Queensland,-27.514446,153.256091,EPSG:4326 +HUMAN_OBSERVATION,Joel Alphonso,1,,,2023,10,5,Australia,AU,Queensland,-27.502679,153.225418,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,MALE,,2024,7,26,Australia,AU,Queensland,-27.56934,153.298528,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,,,2024,9,4,Australia,AU,Queensland,-27.490384,153.245417,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,7,29,Australia,AU,Queensland,-27.511507,153.249031,EPSG:4326 +HUMAN_OBSERVATION,Chris Orpen,1,,,2022,11,7,Australia,AU,Queensland,-27.538908,153.275027,EPSG:4326 +HUMAN_OBSERVATION,Stuart Gudgeon,1,MALE,,2024,10,21,Australia,AU,Queensland,-27.509909,153.247345,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,5,18,Australia,AU,Queensland,-27.511416,153.247709,EPSG:4326 +HUMAN_OBSERVATION,Alan Moxon,1,FEMALE,,2024,1,7,Australia,AU,Queensland,-27.497652,153.245922,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2023,11,9,Australia,AU,Queensland,-27.575547,153.270897,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,8,31,Australia,AU,Queensland,-27.509414,153.251063,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,MALE,,2020,11,28,Australia,AU,Queensland,-27.489863,153.249042,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,29,Australia,AU,Queensland,-27.511668,153.250906,EPSG:4326 +HUMAN_OBSERVATION,Scott Hayward,1,MALE,,2021,7,15,Australia,AU,Queensland,-27.519105,153.261362,EPSG:4326 +HUMAN_OBSERVATION,G Miller,1,,,2023,10,15,Australia,AU,Queensland,-27.500892,153.224364,EPSG:4326 +HUMAN_OBSERVATION,Adam Reid,1,,,2024,8,8,Australia,AU,Queensland,-27.511685,153.251259,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,9,2,Australia,AU,Queensland,-27.511168,153.248291,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,FEMALE,,2023,10,14,Australia,AU,Queensland,-27.511627,153.250893,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,2,20,Australia,AU,Queensland,-27.489266,153.242544,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,FEMALE,,2020,12,23,Australia,AU,Queensland,-27.554271,153.272184,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,11,18,Australia,AU,Queensland,-27.511477,153.245066,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,11,17,Australia,AU,Queensland,-27.490655,153.248066,EPSG:4326 +HUMAN_OBSERVATION,Caroline Richards,1,,,2024,6,8,Australia,AU,Queensland,-27.511373,153.250124,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,7,15,Australia,AU,Queensland,-27.511711,153.250432,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,10,10,Australia,AU,Queensland,-27.490575,153.248012,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,8,13,Australia,AU,Queensland,-27.511963,153.202225,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,6,24,Australia,AU,Queensland,-27.612726,153.199539,EPSG:4326 +HUMAN_OBSERVATION,Nikki Beckinsale,1,FEMALE,,2023,10,17,Australia,AU,Queensland,-27.493754,153.253504,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,MALE,,2024,8,14,Australia,AU,Queensland,-27.509298,153.251712,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,10,31,Australia,AU,Queensland,-27.490522,153.248174,EPSG:4326 +HUMAN_OBSERVATION,Chris Orpen,1,,,2022,11,4,Australia,AU,Queensland,-27.531983,153.282967,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,FEMALE,,2024,1,28,Australia,AU,Queensland,-27.575774,153.271101,EPSG:4326 +HUMAN_OBSERVATION,Cedar Staggard,1,FEMALE,,2024,2,13,Australia,AU,Queensland,-27.510988,153.201843,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,3,5,Australia,AU,Queensland,-27.612799,153.199799,EPSG:4326 +HUMAN_OBSERVATION,Carys Martin,1,MALE,,2023,3,29,Australia,AU,Queensland,-27.538909,153.27065,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2020,9,28,Australia,AU,Queensland,-27.490504,153.245421,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,FEMALE,,2020,11,11,Australia,AU,Queensland,-27.490529,153.248197,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,1,8,Australia,AU,Queensland,-27.574919,153.271755,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,MALE,,2024,2,18,Australia,AU,Queensland,-27.57587,153.271369,EPSG:4326 +HUMAN_OBSERVATION,Marian Henbery,1,MALE,,2022,10,24,Australia,AU,Queensland,-27.516808,153.227493,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2021,7,26,Australia,AU,Queensland,-27.490137,153.248463,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2024,1,9,Australia,AU,Queensland,-27.51127,153.250298,EPSG:4326 +HUMAN_OBSERVATION,Miranda Braakhuis,1,FEMALE,,2023,9,5,Australia,AU,Queensland,-27.49058,153.24559,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,4,27,Australia,AU,Queensland,-27.490511,153.248538,EPSG:4326 +HUMAN_OBSERVATION,Bernadette Williams,1,,,2022,12,4,Australia,AU,Queensland,-27.400582,153.438054,EPSG:4326 +HUMAN_OBSERVATION,Asitha Samarawickrama,1,FEMALE,,2024,5,21,Australia,AU,Queensland,-27.515013,153.197296,EPSG:4326 +HUMAN_OBSERVATION,roberta jays,1,,,2023,12,4,Australia,AU,Queensland,-27.511808,153.250964,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2023,3,3,Australia,AU,Queensland,-27.490512,153.248387,EPSG:4326 +HUMAN_OBSERVATION,Celia Moxon,1,,,2022,8,30,Australia,AU,Queensland,-27.490302,153.249321,EPSG:4326 +HUMAN_OBSERVATION,5829,1,,,2020,9,7,Australia,AU,Queensland,-27.528838,153.147819,EPSG:4326 +HUMAN_OBSERVATION,AliClaw,1,,,2024,9,4,Australia,AU,New South Wales,-29.097702,153.367917,EPSG:4326 +HUMAN_OBSERVATION,TimL,1,,,2024,1,2,Australia,AU,Queensland,-27.513656,153.255961,EPSG:4326 +HUMAN_OBSERVATION,jonvanbeest,1,,Camera trap images from July 2024,2024,7,14,Australia,AU,New South Wales,-31.406387,152.515385,EPSG:4326 +HUMAN_OBSERVATION,TimL,1,,"A Joey, recently independent from his mother. See following sighting 4544621 for additional information. ",2024,1,12,Australia,AU,Queensland,-27.511352,153.250177,EPSG:4326 +HUMAN_OBSERVATION,jonvanbeest,1,,,2024,8,5,Australia,AU,New South Wales,-31.406542,152.515435,EPSG:4326 +HUMAN_OBSERVATION,MichaelMulvaney,1,,,2021,4,16,Australia,AU,South Australia,-35.671986,137.612458,EPSG:4326 +HUMAN_OBSERVATION,Petesteamer,1,,"Mating season, calling regularly, in regenerated bluegum plantation. Seen regularly in this area. Has a large selection of eucalypt species nearby.",2021,1,20,Australia,AU,Victoria,-38.293495,145.974733,EPSG:4326 +HUMAN_OBSERVATION,DMeco,1,,,2024,10,10,Australia,AU,Victoria,-36.190069,146.943719,EPSG:4326 +HUMAN_OBSERVATION,jonvanbeest,1,,Cungarlmayler Carramar conservation agreement ,2022,8,5,Australia,AU,New South Wales,-31.406556,152.515445,EPSG:4326 +HUMAN_OBSERVATION,TimL,1,,Additional information to sighting 4481865.,2023,4,6,Australia,AU,Queensland,-27.505642,153.248125,EPSG:4326 +HUMAN_OBSERVATION,HappyWanderer,1,,,2024,10,6,Australia,AU,New South Wales,-34.774423,146.584698,EPSG:4326 +HUMAN_OBSERVATION,DonFletcher,1,,"Reported in Field Naturalists Newsletter of Jan 2022. Sighting, photos and and report all by Colin Pask. Uploaded image hopefully includes his text as well as the koala photos.",2021,12,14,Australia,AU,New South Wales,-35.344156,149.258156,EPSG:4326 +HUMAN_OBSERVATION,jonvanbeest,1,,Cungarlmayler Carramar conservation agreement ,2022,12,13,Australia,AU,New South Wales,-31.406537,152.515429,EPSG:4326 +HUMAN_OBSERVATION,TimL,1,,Thanks to Barbara for the initial sighting of this young Koala. It was in a tree between a station carpark and the rail line. Because of the location it was reported to the local wildlife rescue. Not the best of images as the koala was in a tree with the setting sun directly behind it. ,2023,12,6,Australia,AU,Queensland,-27.513755,153.255956,EPSG:4326 +HUMAN_OBSERVATION,TimL,1,,Thanks to Barbara for the initial sighting. ,2023,12,16,Australia,AU,Queensland,-27.513577,153.255948,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,1,24,Australia,AU,Queensland,-27.89083,153.32893,EPSG:4326 +HUMAN_OBSERVATION,jonvanbeest,1,,Cungarlmayler Carramar conservation agreement ,2022,8,31,Australia,AU,New South Wales,-31.406531,152.515425,EPSG:4326 +HUMAN_OBSERVATION,Alburyconservationcompany,1,,In planted blue gum ,2021,12,6,Australia,AU,Victoria,-36.347897,146.693055,EPSG:4326 +HUMAN_OBSERVATION,jonvanbeest,1,,Cungarlmayler Carramar conservation agreement ,2022,12,5,Australia,AU,New South Wales,-31.406544,152.515447,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,24,Australia,AU,Queensland,-27.89044,153.32939,EPSG:4326 +HUMAN_OBSERVATION,HappyWanderer,1,,,2024,10,6,Australia,AU,New South Wales,-34.767326,146.582685,EPSG:4326 +HUMAN_OBSERVATION,Michelleco,1,,Young koala. Seems it may have previously been in a nearby tree that had fallen. Almost looked too young to be on it's own. ,2020,8,5,Australia,AU,Victoria,-36.128619,146.952283,EPSG:4326 +HUMAN_OBSERVATION,TimL,1,,Thanks to Barbara for the initial sighting. ,2023,12,13,Australia,AU,Queensland,-27.513423,153.255998,EPSG:4326 +HUMAN_OBSERVATION,TimL,1,,"Thanks to Barbara for the initial sighting of the Koala sitting high in a Eucalypt with its back to the strong wind and showers. The orange ear tag appears to have the number 240. (The last digit is difficult to read, possibly 246, 248?). ",2024,1,6,Australia,AU,Queensland,-27.511582,153.250462,EPSG:4326 +HUMAN_OBSERVATION,TimL,1,,,2024,1,23,Australia,AU,Queensland,-27.511432,153.250637,EPSG:4326 +HUMAN_OBSERVATION,HappyWanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.922175,147.727758,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,12,7,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,WalkYonder,1,,Along Forts walk,2023,8,15,Australia,AU,Queensland,-19.144123,146.850267,EPSG:4326 +HUMAN_OBSERVATION,jonvanbeest,1,,Cungarlmayler Carramar conservation agreement ,2022,2,19,Australia,AU,New South Wales,-31.406549,152.515439,EPSG:4326 +HUMAN_OBSERVATION,TimL,1,,"The ear tag appeared to read '240.' Not quite sure about the zero, could have been 246 or 248. Thanks to Barbara for the initial sighting of the Koala high up in a eucalypt. ",2023,12,15,Australia,AU,Queensland,-27.511477,153.25001,EPSG:4326 +HUMAN_OBSERVATION,AlexJ,1,,Burpengary East,2023,9,21,Australia,AU,Queensland,-27.157634,153.01229,EPSG:4326 +HUMAN_OBSERVATION,teeniiee,1,,Spotted in the Eucalypt forest at tidbinbilla ,2022,9,7,Australia,AU,Australian Capital Territory,-35.46,148.9,EPSG:4326 +HUMAN_OBSERVATION,samreid007,1,,Seen by a friend (Chris Griffin) in the Tinderry's.,2023,8,6,Australia,AU,New South Wales,-35.740311,149.24678,EPSG:4326 +HUMAN_OBSERVATION,GlossyGal,1,,With Curiosity & Aussiegall doing the Great Glossy Hunt. We saw some birds making a fuss high in the canopy. When we investigated we saw a Brown-headed Honeyeater picking fur off a koala! Image of Honeyeater with koala fur in its bill from Curiosity. ,2024,9,7,Australia,AU,New South Wales,-34.759756,150.055861,EPSG:4326 +HUMAN_OBSERVATION,Doris,1,,,2024,1,4,Australia,AU,New South Wales,-29.450684,152.378037,EPSG:4326 +HUMAN_OBSERVATION,jonvanbeest,1,,Cungarlmayler Carramar conservation agreement ,2021,8,13,Australia,AU,New South Wales,-31.406545,152.515444,EPSG:4326 +HUMAN_OBSERVATION,jonvanbeest,1,,,2024,8,10,Australia,AU,New South Wales,-31.406547,152.515464,EPSG:4326 +HUMAN_OBSERVATION,NJ,1,,Koala in Tuckers Nob SF. In a Eucalyptus microcorys (Tallowood) in sapling/juvenile growth stage (5-10yrs). Due to location this is a very significant find and would be good to get uploaded to bionet NSW as area is currently under active logging.,2024,2,8,Australia,AU,New South Wales,-30.42415,152.903081,EPSG:4326 +HUMAN_OBSERVATION,MB,1,,,2023,10,16,Australia,AU,Victoria,-35.893712,145.646006,EPSG:4326 +HUMAN_OBSERVATION,HappyWanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.923523,147.731339,EPSG:4326 +HUMAN_OBSERVATION,HappyWanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.920219,147.727001,EPSG:4326 +HUMAN_OBSERVATION,MB,1,,,2023,10,18,Australia,AU,New South Wales,-35.834042,145.411771,EPSG:4326 +HUMAN_OBSERVATION,HappyWanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.923845,147.730679,EPSG:4326 +HUMAN_OBSERVATION,HappyWanderer,1,,,2023,12,31,Australia,AU,Victoria,-37.924839,147.729917,EPSG:4326 +HUMAN_OBSERVATION,WallumWarrior,1,,Koala sighted in the trees near our house on Omega Circuit in Brunswick Heads. Photos taken 18th September 2020,2020,9,17,Australia,AU,New South Wales,-28.556631,153.549826,EPSG:4326 +HUMAN_OBSERVATION,Milobear,1,,,2020,8,11,Australia,AU,New South Wales,-35.573406,149.270075,EPSG:4326 +HUMAN_OBSERVATION,JKates,1,,healthy koala spotted this morning on Captains Flat Road Carwoola 05:30am at Wanna Wanna end.,2024,8,9,Australia,AU,New South Wales,-35.357073,149.288926,EPSG:4326 +HUMAN_OBSERVATION,Feathers,1,,Surprised to see in the South-east ,2023,10,27,Australia,AU,South Australia,-36.819902,140.066092,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,13,Australia,AU,Queensland,-27.9019,153.31931,EPSG:4326 +HUMAN_OBSERVATION,Csteele4,1,,"Running across the road at UNE, then up into the pine, where it scoffed a bunch of needles while I shot photos.",2024,2,20,Australia,AU,New South Wales,-30.490998,151.644948,EPSG:4326 +HUMAN_OBSERVATION,jonvanbeest,1,,Cungarlmayler Carramar conservation agreement. ,2021,9,19,Australia,AU,New South Wales,-31.406525,152.515446,EPSG:4326 +HUMAN_OBSERVATION,MattFox,1,,"Taken on what I believe was the coldest day on record for Magnetic Island, and this poor little guy was looking pretty freezing!",2022,7,4,Australia,AU,Queensland,-19.131206,146.869125,EPSG:4326 +HUMAN_OBSERVATION,TimL,1,,Sighted very high up in a Eucalypt.,2023,12,16,Australia,AU,Queensland,-27.511402,153.250148,EPSG:4326 +HUMAN_OBSERVATION,Darcy,1,,Single koala snoozing in a tree,2024,10,29,Australia,AU,Victoria,-36.128428,146.609723,EPSG:4326 +HUMAN_OBSERVATION,jonvanbeest,1,,Cungarlmayler Carramar conservation agreement ,2023,11,2,Australia,AU,New South Wales,-31.406556,152.515436,EPSG:4326 +HUMAN_OBSERVATION,MB,1,,,2022,9,23,Australia,AU,Victoria,-35.929174,144.949726,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,2,Australia,AU,Queensland,-27.93897,153.35694,EPSG:4326 +HUMAN_OBSERVATION,HappyWanderer,1,,,2024,10,6,Australia,AU,New South Wales,-34.771078,146.586836,EPSG:4326 +HUMAN_OBSERVATION,TimL,1,,,2024,1,12,Australia,AU,Queensland,-27.512852,153.256025,EPSG:4326 +HUMAN_OBSERVATION,jonvanbeest,1,,Cungarlmayler Carramar conservation agreement ,2023,9,15,Australia,AU,New South Wales,-31.406528,152.515437,EPSG:4326 +HUMAN_OBSERVATION,lbradley,1,,,2024,8,16,Australia,AU,Queensland,-19.130797,146.865067,EPSG:4326 +HUMAN_OBSERVATION,TimL,1,,"A Joey, recently independent from his mother. See previous sighting 4544620 for additional information. ",2024,1,12,Australia,AU,Queensland,-27.511338,153.250182,EPSG:4326 +HUMAN_OBSERVATION,TimL,1,,Sighted high up in a Gum tree. The Koala had a tagged right ear. Additional information is provided in following sighting 4481866. ,2023,4,6,Australia,AU,Queensland,-27.505642,153.248121,EPSG:4326 +HUMAN_OBSERVATION,AliClaw,1,,,2024,9,4,Australia,AU,New South Wales,-29.097656,153.367956,EPSG:4326 +HUMAN_OBSERVATION,WingsToWander,1,,Mum and bub in an acacia. Just off Ewarts. Rd.,2020,9,4,Australia,AU,Victoria,-36.258999,146.835102,EPSG:4326 +HUMAN_OBSERVATION,EmmBee,1,,"This lovely koala was trundelling past our rock overhang camp site when they spied us, and shot up a tree. My partner Bruce B climbed above the overhang to get this eye level shot. The koala did not budge while we were there obviously wary of us. ",2023,10,31,Australia,AU,New South Wales,-33.259925,150.340867,EPSG:4326 +HUMAN_OBSERVATION,Cate Geary,1,,,2021,10,20,Australia,AU,Queensland,-25.426213,151.637059,EPSG:4326 +HUMAN_OBSERVATION,Julie Clifford,1,,,2020,7,12,Australia,AU,Queensland,-25.426213,151.637059,EPSG:4326 +HUMAN_OBSERVATION,Charlie Spagalli,1,MALE,,2020,8,31,Australia,AU,Queensland,-25.426213,151.637059,EPSG:4326 +HUMAN_OBSERVATION,Susan Rayner,1,,,2020,8,4,Australia,AU,Queensland,-25.426213,151.637059,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,12,18,Australia,AU,Queensland,-27.91196,153.37488,EPSG:4326 +HUMAN_OBSERVATION,Bev Joiner-Swift,1,,,2021,10,18,Australia,AU,Queensland,-25.426213,151.637059,EPSG:4326 +HUMAN_OBSERVATION,Ev Verschaeren ,1,,,2020,11,29,Australia,AU,Queensland,-25.426213,151.637059,EPSG:4326 +HUMAN_OBSERVATION,Toni Kindleysides,1,FEMALE,,2020,4,8,Australia,AU,Queensland,-25.426213,151.637059,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,9,15,Australia,AU,Queensland,-27.94029,153.36234,EPSG:4326 +HUMAN_OBSERVATION,Lyn Combe,1,,,2021,10,22,Australia,AU,Queensland,-25.426213,151.637059,EPSG:4326 +HUMAN_OBSERVATION,Julz Farrell,1,,,2020,7,7,Australia,AU,Queensland,-25.426213,151.637059,EPSG:4326 +HUMAN_OBSERVATION,Dave Rayner,1,,,2021,7,31,Australia,AU,Queensland,-25.426213,151.637059,EPSG:4326 +HUMAN_OBSERVATION,Venessa Hansen,1,,,2022,4,8,Australia,AU,Queensland,-25.426213,151.637059,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,Signs of disease,2023,10,28,Australia,AU,Queensland,-27.92957,153.36353,EPSG:4326 +HUMAN_OBSERVATION,Tony Baylis,1,,,2022,1,28,Australia,AU,Queensland,-25.426213,151.637059,EPSG:4326 +HUMAN_OBSERVATION,Charlie Spagalli,1,,,2020,3,8,Australia,AU,Queensland,-25.426213,151.637059,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,11,6,Australia,AU,Queensland,-21.44091,148.87172,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,13,Australia,AU,Queensland,-21.740289,148.738861,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,16,Australia,AU,Queensland,-21.69772,148.69175,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,8,Australia,AU,Queensland,-21.665972,148.673447,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,MALE,,2024,4,10,Australia,AU,Queensland,-21.88226,148.934,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,MALE,,2023,11,5,Australia,AU,Queensland,-22.3614,149.301386,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,8,22,Australia,AU,Queensland,-21.720775,148.603064,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,4,27,Australia,AU,Queensland,-21.44374,148.50992,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,9,10,Australia,AU,Queensland,-21.55624,148.75863,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,11,19,Australia,AU,Queensland,-21.72761,148.7316,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,9,18,Australia,AU,Queensland,-21.22,148.890556,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,11,1,Australia,AU,Queensland,-21.684184,148.686438,EPSG:4326 +HUMAN_OBSERVATION,Steven Cullen,1,,,2023,4,25,Australia,AU,Queensland,-21.147226,148.769217,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,8,9,Australia,AU,Queensland,-21.41861,148.90262,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,3,11,Australia,AU,Queensland,-21.464029,148.844994,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,8,22,Australia,AU,Queensland,-21.50758,148.79285,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,2,11,Australia,AU,Queensland,-21.68917,148.68821,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,3,2,Australia,AU,Queensland,-21.638394,148.694628,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,10,9,Australia,AU,Queensland,-21.68791,148.98936,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,11,16,Australia,AU,Queensland,-21.44865,148.86458,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,6,28,Australia,AU,Queensland,-21.362623,148.940744,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,6,24,Australia,AU,Queensland,-21.687228,148.684376,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2021,7,29,Australia,AU,Queensland,-21.697453,148.693511,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,27,Australia,AU,Queensland,-21.55978,148.75706,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,7,Australia,AU,Queensland,-21.74255,148.740556,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2021,8,14,Australia,AU,Queensland,-21.679617,148.687408,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2022,3,9,Australia,AU,Queensland,-21.697129,148.69152,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,MALE,,2021,6,8,Australia,AU,Queensland,-21.341088,148.936182,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,11,Australia,AU,Queensland,-21.68536,148.685502,EPSG:4326 +HUMAN_OBSERVATION,Michelle Gilliver,1,,,2022,10,12,Australia,AU,Queensland,-21.41949,148.901467,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,FEMALE,,2022,11,9,Australia,AU,Queensland,-21.155562,148.741111,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2021,4,6,Australia,AU,Queensland,-22.895664,149.665704,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,3,Australia,AU,Queensland,-21.69213,148.68915,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2023,4,11,Australia,AU,Queensland,-21.4308,148.882468,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,30,Australia,AU,Queensland,-21.723569,148.692424,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,28,Australia,AU,Queensland,-21.75,148.7455,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,11,7,Australia,AU,Queensland,-22.44774,149.15072,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,9,6,Australia,AU,Queensland,-21.468526,148.831744,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,9,17,Australia,AU,Queensland,-21.738697,148.737984,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,27,Australia,AU,Queensland,-21.66757,148.67479,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,11,Australia,AU,Queensland,-21.694967,148.690186,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,13,Australia,AU,Queensland,-21.63675,148.67147,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,12,Australia,AU,Queensland,-21.73946,148.73836,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,8,22,Australia,AU,Queensland,-21.37118,148.94458,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,19,Australia,AU,Queensland,-21.405022,148.925903,EPSG:4326 +HUMAN_OBSERVATION,Patrick Doolan,1,,,2023,4,18,Australia,AU,Queensland,-21.462246,148.849308,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,18,Australia,AU,Queensland,-21.68083,148.70249,EPSG:4326 +HUMAN_OBSERVATION,Dan Dent,1,MALE,,2021,9,9,Australia,AU,Queensland,-21.469343,148.829154,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,24,Australia,AU,Queensland,-21.67456,148.67876,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,7,Australia,AU,Queensland,-21.44628,148.86668,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,6,28,Australia,AU,Queensland,-21.729384,148.732544,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,7,23,Australia,AU,Queensland,-21.649771,148.694084,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,5,Australia,AU,Queensland,-21.747203,148.742661,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,8,2,Australia,AU,Queensland,-21.60575,148.73036,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,9,9,Australia,AU,Queensland,-21.69499,148.690111,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,6,Australia,AU,Queensland,-21.72854,148.73195,EPSG:4326 +HUMAN_OBSERVATION,Jacinta Smith,1,,,2023,9,25,Australia,AU,Queensland,-21.361563,149.091178,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,7,5,Australia,AU,Queensland,-21.706344,148.643788,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,10,7,Australia,AU,Queensland,-21.682643,148.685829,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,13,Australia,AU,Queensland,-21.695761,148.668639,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,8,16,Australia,AU,Queensland,-21.897515,148.77317,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,12,18,Australia,AU,Queensland,-21.66979,148.69184,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,24,Australia,AU,Queensland,-21.430022,148.885792,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,13,Australia,AU,Queensland,-21.724463,148.692185,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,27,Australia,AU,Queensland,-21.571997,148.748752,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,9,26,Australia,AU,Queensland,-21.695235,148.688994,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,5,14,Australia,AU,Queensland,-21.68353,148.68404,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,3,Australia,AU,Queensland,-21.7096,148.63443,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2023,4,27,Australia,AU,Queensland,-21.172369,149.017171,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,15,Australia,AU,Queensland,-21.694886,148.690111,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,15,Australia,AU,Queensland,-21.6387,149.00687,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,11,16,Australia,AU,Queensland,-21.46944,148.82925,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2021,6,9,Australia,AU,Queensland,-21.775214,148.7739,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,12,18,Australia,AU,Queensland,-21.75774,148.75039,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,10,Australia,AU,Queensland,-21.63979,148.6715,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,8,22,Australia,AU,Queensland,-21.46367,148.84554,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,12,Australia,AU,Queensland,-21.70466,148.69499,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,2,2,Australia,AU,Queensland,-21.71248,148.70218,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,3,1,Australia,AU,Queensland,-22.57595,148.33594,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,14,Australia,AU,Queensland,-21.73948,148.73867,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2024,7,31,Australia,AU,Queensland,-21.43007,148.883286,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,18,Australia,AU,Queensland,-21.69772,148.6918,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2022,9,25,Australia,AU,Queensland,-21.427998,148.889339,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,7,19,Australia,AU,Queensland,-21.7603,148.75185,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,7,4,Australia,AU,Queensland,-21.2984,149.293631,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,3,18,Australia,AU,Queensland,-21.6932,148.68766,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,7,26,Australia,AU,Queensland,-21.53076,148.77104,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,8,2,Australia,AU,Queensland,-21.770102,148.792198,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,10,23,Australia,AU,Queensland,-21.696903,148.689298,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,28,Australia,AU,Queensland,-21.67999,148.6826,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,7,20,Australia,AU,Queensland,-21.41156,148.9099,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,2,28,Australia,AU,Queensland,-21.697514,148.690415,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,14,Australia,AU,Queensland,-21.70488,148.69828,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,11,6,Australia,AU,Queensland,-21.697828,148.691583,EPSG:4326 +HUMAN_OBSERVATION,Rachel Rae,1,,,2020,9,18,Australia,AU,Queensland,-21.417731,148.904036,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,7,12,Australia,AU,Queensland,-21.5092,148.78842,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2024,9,13,Australia,AU,Queensland,-21.61781,148.71306,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,27,Australia,AU,Queensland,-21.72609,148.7304,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,8,8,Australia,AU,Queensland,-21.4071,148.92198,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,15,Australia,AU,Queensland,-21.41372,148.9074,EPSG:4326 +HUMAN_OBSERVATION,Sandy Whittington-Shaw,1,,,2024,4,29,Australia,AU,Queensland,-21.450521,149.144743,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,8,14,Australia,AU,Queensland,-21.707798,148.63974,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,12,15,Australia,AU,Queensland,-21.73278,148.73474,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,2,5,Australia,AU,Queensland,-21.72371,148.72893,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,9,8,Australia,AU,Queensland,-21.696708,148.690744,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,9,3,Australia,AU,Queensland,-21.17818,149.056837,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,27,Australia,AU,Queensland,-21.67299,148.67777,EPSG:4326 +HUMAN_OBSERVATION,Emma Smith,1,,,2023,11,7,Australia,AU,Queensland,-21.467275,149.125886,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2023,5,8,Australia,AU,Queensland,-21.726675,148.973206,EPSG:4326 +HUMAN_OBSERVATION,Saskia von Fahland,1,,,2023,7,31,Australia,AU,Queensland,-21.333656,149.062157,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,12,Australia,AU,Queensland,-21.684673,148.686515,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,6,28,Australia,AU,Queensland,-21.751697,148.746506,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,6,3,Australia,AU,Queensland,-21.455278,148.858889,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,2,16,Australia,AU,Queensland,-21.67353,148.69208,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke ,1,MALE,,2020,5,3,Australia,AU,Queensland,-21.555189,148.759155,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,10,Australia,AU,Queensland,-21.6928,148.68949,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,25,Australia,AU,Queensland,-21.684834,148.689787,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,10,4,Australia,AU,Queensland,-21.44043,148.87216,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2023,1,3,Australia,AU,Queensland,-21.771028,148.787456,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,11,2,Australia,AU,Queensland,-21.39485,148.93709,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,8,24,Australia,AU,Queensland,-21.555824,148.758852,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,9,30,Australia,AU,Queensland,-21.189402,149.067277,EPSG:4326 +HUMAN_OBSERVATION,Rolf Sclagloth,1,FEMALE,,2023,11,5,Australia,AU,Queensland,-22.533783,149.526547,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,4,Australia,AU,Queensland,-21.7121,148.72174,EPSG:4326 +HUMAN_OBSERVATION,Tammy Maguire,1,FEMALE,,2021,7,16,Australia,AU,Queensland,-21.512169,149.116347,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,31,Australia,AU,Queensland,-21.59844,148.73903,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,10,15,Australia,AU,Queensland,-21.65952,148.6938,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,6,Australia,AU,Queensland,-21.76495,148.754058,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,1,22,Australia,AU,Queensland,-21.698164,148.689275,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,11,6,Australia,AU,Queensland,-21.40588,148.92476,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,11,16,Australia,AU,Queensland,-21.54635,148.49357,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,10,Australia,AU,Queensland,-21.68833,148.68274,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,10,Australia,AU,Queensland,-21.70834,148.71492,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,8,18,Australia,AU,Queensland,-21.437361,148.875278,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,10,17,Australia,AU,Queensland,-21.81843,148.67252,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,8,9,Australia,AU,Queensland,-21.39404,148.93766,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,4,17,Australia,AU,Queensland,-21.697395,148.690519,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,14,Australia,AU,Queensland,-21.75605,148.74938,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,9,Australia,AU,Queensland,-21.5038,148.7974,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,9,28,Australia,AU,Queensland,-21.42063,148.89982,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,2,9,Australia,AU,Queensland,-21.67025,148.67614,EPSG:4326 +HUMAN_OBSERVATION,Alan Voll,1,,,2022,7,26,Australia,AU,Queensland,-21.410577,148.911986,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,2,1,Australia,AU,Queensland,-21.71469,148.723,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,11,9,Australia,AU,Queensland,-21.570879,148.749585,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,11,Australia,AU,Queensland,-21.624775,148.698411,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,MALE,,2024,1,12,Australia,AU,Queensland,-23.865867,148.143666,EPSG:4326 +HUMAN_OBSERVATION,Tennille Danvers,1,FEMALE,,2024,1,28,Australia,AU,Queensland,-22.565278,150.091944,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2023,11,25,Australia,AU,Queensland,-21.415226,148.961502,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2024,5,5,Australia,AU,Queensland,-22.186,149.06183,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,11,Australia,AU,Queensland,-21.623692,148.6996,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,9,26,Australia,AU,Queensland,-21.657006,149.009915,EPSG:4326 +HUMAN_OBSERVATION,S. Scriha,1,,,2023,10,21,Australia,AU,Queensland,-21.324594,149.0628,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,11,29,Australia,AU,Queensland,-21.69757,148.69154,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2023,9,27,Australia,AU,Queensland,-21.697463,148.693444,EPSG:4326 +HUMAN_OBSERVATION,Robert Brown,1,FEMALE,,2023,10,18,Australia,AU,Queensland,-21.714942,148.701837,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,10,Australia,AU,Queensland,-21.67999,148.6825,EPSG:4326 +HUMAN_OBSERVATION,Jacinta Smith,1,,,2021,7,31,Australia,AU,Queensland,-21.363971,149.088378,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,MALE,,2023,11,5,Australia,AU,Queensland,-22.409976,149.249474,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,11,22,Australia,AU,Queensland,-21.80913,148.68225,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,10,24,Australia,AU,Queensland,-21.69743,148.69046,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,8,8,Australia,AU,Queensland,-21.698894,148.662342,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,11,4,Australia,AU,Queensland,-21.60703,148.72844,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,16,Australia,AU,Queensland,-21.76158,148.75244,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,10,Australia,AU,Queensland,-21.70782,148.71103,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,10,19,Australia,AU,Queensland,-21.67559,148.69239,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,MALE,,2023,9,6,Australia,AU,Queensland,-21.35417,148.941075,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,24,Australia,AU,Queensland,-21.730259,148.733114,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,7,23,Australia,AU,Queensland,-21.632385,148.693509,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,6,Australia,AU,Queensland,-21.74305,148.74045,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,12,19,Australia,AU,Queensland,-21.68106,148.69337,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2023,4,11,Australia,AU,Queensland,-21.431334,148.881961,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,5,1,Australia,AU,Queensland,-21.6783,148.69249,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2023,9,24,Australia,AU,Queensland,-21.67004,148.67603,EPSG:4326 +HUMAN_OBSERVATION,Mehul Thanki,1,,,2021,9,28,Australia,AU,Queensland,-21.616379,148.718112,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,3,30,Australia,AU,Queensland,-21.395575,148.936667,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,26,Australia,AU,Queensland,-21.69209,148.68919,EPSG:4326 +HUMAN_OBSERVATION,Mackay Environment,1,FEMALE,,2020,8,19,Australia,AU,Queensland,-22.637773,149.258318,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,6,5,Australia,AU,Queensland,-21.45211,148.86249,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,7,Australia,AU,Queensland,-21.314,148.93438,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,8,18,Australia,AU,Queensland,-21.432206,148.88019,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,8,20,Australia,AU,Queensland,-21.731006,148.733651,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,9,6,Australia,AU,Queensland,-21.696513,148.690602,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,31,Australia,AU,Queensland,-21.514766,148.782618,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,14,Australia,AU,Queensland,-21.73737,148.73719,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2020,8,11,Australia,AU,Queensland,-21.692681,148.673874,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,2,26,Australia,AU,Queensland,-21.4374,148.87499,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2020,10,1,Australia,AU,Queensland,-21.1819,149.056564,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,10,10,Australia,AU,Queensland,-22.8947,149.6325,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,FEMALE,,2022,10,31,Australia,AU,Queensland,-21.449879,148.863912,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,30,Australia,AU,Queensland,-21.70493,148.69951,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,13,Australia,AU,Queensland,-21.71887,148.72574,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,7,28,Australia,AU,Queensland,-21.69674,148.690601,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,10,3,Australia,AU,Queensland,-21.44043,148.87216,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,,,2022,12,7,Australia,AU,Queensland,-22.547064,147.515653,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,2,26,Australia,AU,Queensland,-21.40202,148.92998,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,3,Australia,AU,Queensland,-21.6359,148.67117,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2024,6,23,Australia,AU,Queensland,-21.57482,148.74777,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,6,7,Australia,AU,Queensland,-21.70552,148.7023,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,31,Australia,AU,Queensland,-21.61609,148.71667,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2023,10,29,Australia,AU,Queensland,-21.69347,148.68976,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,7,5,Australia,AU,Queensland,-21.5302,148.77158,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,8,27,Australia,AU,Queensland,-21.614753,148.718432,EPSG:4326 +HUMAN_OBSERVATION,Charlie Geddes,1,MALE,,2022,9,7,Australia,AU,Queensland,-21.39862,148.93396,EPSG:4326 +HUMAN_OBSERVATION,Lisa Bastedo,1,,,2023,6,23,Australia,AU,Queensland,-21.691213,148.688568,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,8,24,Australia,AU,Queensland,-21.49723,148.803,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2024,9,10,Australia,AU,Queensland,-21.42022,148.9003,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,5,18,Australia,AU,Queensland,-21.40432,148.92697,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,8,7,Australia,AU,Queensland,-21.478953,148.81361,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,10,16,Australia,AU,Queensland,-21.506748,148.794811,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,12,8,Australia,AU,Queensland,-21.45656,148.85728,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,8,2,Australia,AU,Queensland,-21.60516,148.73146,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,12,18,Australia,AU,Queensland,-21.69989,148.69936,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,11,22,Australia,AU,Queensland,-21.67896,148.69247,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,11,2,Australia,AU,Queensland,-21.58468,148.74493,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,11,Australia,AU,Queensland,-21.681347,148.682983,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,8,Australia,AU,Queensland,-21.71498,148.72308,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,1,16,Australia,AU,Queensland,-22.638613,149.553872,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,4,Australia,AU,Queensland,-21.43135,148.88178,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,29,Australia,AU,Queensland,-21.67852,148.68076,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,4,Australia,AU,Queensland,-21.72792,148.73152,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,14,Australia,AU,Queensland,-21.68906,148.68766,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,11,2,Australia,AU,Queensland,-21.394482,148.93736,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,17,Australia,AU,Queensland,-21.71106,148.70232,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2023,11,6,Australia,AU,Queensland,-22.435194,148.327759,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,7,Australia,AU,Queensland,-21.61675,148.71443,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,10,23,Australia,AU,Queensland,-21.42809,148.88919,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2020,8,16,Australia,AU,Queensland,-21.68978,148.688053,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,10,11,Australia,AU,Queensland,-21.73662,148.73683,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,6,24,Australia,AU,Queensland,-21.40051,148.932,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,10,17,Australia,AU,Queensland,-21.40784,148.9202,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2020,7,6,Australia,AU,Queensland,-21.43117,148.882521,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,10,23,Australia,AU,Queensland,-21.41626,148.90554,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,8,23,Australia,AU,Queensland,-21.318725,148.936447,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,10,11,Australia,AU,Queensland,-21.69377,148.68974,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,21,Australia,AU,Queensland,-21.750361,148.745836,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,5,13,Australia,AU,Queensland,-21.410667,148.911972,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2023,10,21,Australia,AU,Queensland,-21.69795,148.69031,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2021,9,16,Australia,AU,Queensland,-21.7442,148.69545,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,7,Australia,AU,Queensland,-21.74255,148.740556,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,MALE,,2023,11,5,Australia,AU,Queensland,-22.40987,149.245439,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,11,Australia,AU,Queensland,-21.72377,148.72897,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,30,Australia,AU,Queensland,-21.6791,148.68145,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,8,23,Australia,AU,Queensland,-21.22156,148.75121,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,9,3,Australia,AU,Queensland,-21.747955,148.743428,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,11,12,Australia,AU,Queensland,-21.750061,148.744567,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,7,26,Australia,AU,Queensland,-21.721923,148.599752,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,4,4,Australia,AU,Queensland,-21.515067,148.782809,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,19,Australia,AU,Queensland,-21.67868,148.68217,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,,,2023,11,27,Australia,AU,Queensland,-21.20251,148.677769,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,24,Australia,AU,Queensland,-21.72012,148.72659,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,11,8,Australia,AU,Queensland,-21.36664,148.941237,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2021,8,6,Australia,AU,Queensland,-21.697032,148.691368,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,5,Australia,AU,Queensland,-21.736881,148.737092,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,16,Australia,AU,Queensland,-21.73285,148.73475,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,10,23,Australia,AU,Queensland,-21.46378,148.84544,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,12,18,Australia,AU,Queensland,-21.67004,148.69184,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,5,3,Australia,AU,Queensland,-20.06635,148.47122,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2023,10,8,Australia,AU,Queensland,-21.46306,148.84752,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,24,Australia,AU,Queensland,-21.67846,148.68076,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,7,Australia,AU,Queensland,-21.467733,148.835328,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,8,24,Australia,AU,Queensland,-21.73011,148.733034,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,8,Australia,AU,Queensland,-21.7219,148.59979,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,2,11,Australia,AU,Queensland,-21.6925,148.68945,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,11,4,Australia,AU,Queensland,-21.47959,148.81278,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,8,22,Australia,AU,Queensland,-21.61054,148.72428,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,12,16,Australia,AU,Queensland,-21.722666,148.700619,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2023,9,28,Australia,AU,Queensland,-21.160681,149.062276,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,20,Australia,AU,Queensland,-21.680672,148.687714,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,8,15,Australia,AU,Queensland,-21.697164,148.691697,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,9,12,Australia,AU,Queensland,-21.621734,149.026866,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2023,10,20,Australia,AU,Queensland,-21.69161,148.68732,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,2,5,Australia,AU,Queensland,-21.76771,148.75521,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,18,Australia,AU,Queensland,-21.690036,148.688005,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,14,Australia,AU,Queensland,-21.72642,148.73075,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,11,Australia,AU,Queensland,-21.73079,148.7337,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,9,28,Australia,AU,Queensland,-22.734856,149.736029,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,3,23,Australia,AU,Queensland,-21.434703,148.877629,EPSG:4326 +HUMAN_OBSERVATION,Raymond Greaves,1,,,2022,2,25,Australia,AU,Queensland,-21.551562,149.104602,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,14,Australia,AU,Queensland,-21.5595,148.75727,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2022,2,17,Australia,AU,Queensland,-21.4628,148.84775,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,17,Australia,AU,Queensland,-21.634602,148.687868,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,26,Australia,AU,Queensland,-21.72599,148.73042,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2024,8,2,Australia,AU,Queensland,-21.152027,148.713636,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,10,23,Australia,AU,Queensland,-21.42303,148.89621,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,30,Australia,AU,Queensland,-21.68533,148.68433,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,2,Australia,AU,Queensland,-21.52355,148.77609,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,18,Australia,AU,Queensland,-21.634153,148.674303,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,9,11,Australia,AU,Queensland,-21.51907,148.78046,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,27,Australia,AU,Queensland,-21.551779,148.759185,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,9,26,Australia,AU,Queensland,-21.693033,148.68787,EPSG:4326 +HUMAN_OBSERVATION,Sandy Whittington-Shaw,1,,,2023,10,7,Australia,AU,Queensland,-21.362195,149.076107,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,8,15,Australia,AU,Queensland,-21.531283,148.836267,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,6,5,Australia,AU,Queensland,-21.41058,148.91199,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2023,9,25,Australia,AU,Queensland,-21.8451,148.61576,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,14,Australia,AU,Queensland,-21.77337,148.75808,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,7,27,Australia,AU,Queensland,-21.4728,148.819045,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,13,Australia,AU,Queensland,-21.737981,148.737442,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2024,3,10,Australia,AU,Queensland,-21.68564,148.68478,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,12,3,Australia,AU,Queensland,-22.82075,147.63591,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,13,Australia,AU,Queensland,-21.69124,148.68887,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,8,22,Australia,AU,Queensland,-21.777511,148.762007,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,12,14,Australia,AU,Queensland,-21.68604,148.68476,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2023,1,2,Australia,AU,Queensland,-21.68293,148.68594,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2023,5,15,Australia,AU,Queensland,-21.75045,148.74504,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,1,10,Australia,AU,Queensland,-22.807321,148.722132,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,12,Australia,AU,Queensland,-21.718825,148.725631,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,MALE,,2023,9,28,Australia,AU,Queensland,-22.604407,149.535348,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,7,25,Australia,AU,Queensland,-21.721097,148.602047,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,9,18,Australia,AU,Queensland,-21.363446,149.227195,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,10,3,Australia,AU,Queensland,-21.700858,148.699886,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,25,Australia,AU,Queensland,-21.687154,148.684405,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2020,11,12,Australia,AU,Queensland,-21.533096,148.768852,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,10,Australia,AU,Queensland,-21.697797,148.692244,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,6,26,Australia,AU,Queensland,-21.685744,148.686841,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,5,30,Australia,AU,Queensland,-21.56307,148.75474,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,10,8,Australia,AU,Queensland,-21.4301,148.88577,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,6,Australia,AU,Queensland,-21.709889,148.720536,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,10,Australia,AU,Queensland,-21.676397,148.692397,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,9,12,Australia,AU,Queensland,-21.42747,148.89004,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,10,29,Australia,AU,Queensland,-21.70548,148.70223,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,6,29,Australia,AU,Queensland,-21.703682,148.651736,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,12,14,Australia,AU,Queensland,-21.72246,148.72794,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,10,5,Australia,AU,Queensland,-21.698923,148.688985,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,9,21,Australia,AU,Queensland,-21.760852,148.685565,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,13,Australia,AU,Queensland,-21.764044,148.753661,EPSG:4326 +HUMAN_OBSERVATION,Melissa Rowe ,1,FEMALE,,2021,6,2,Australia,AU,Queensland,-22.586391,148.341315,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,9,24,Australia,AU,Queensland,-21.695278,148.695833,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2022,1,5,Australia,AU,Queensland,-21.697975,148.691745,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2024,7,3,Australia,AU,Queensland,-21.440858,148.871872,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,8,11,Australia,AU,Queensland,-21.37743,148.9481,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,3,4,Australia,AU,Queensland,-21.697718,148.691695,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,3,24,Australia,AU,Queensland,-21.69,148.686338,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,14,Australia,AU,Queensland,-21.74653,148.74277,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,11,Australia,AU,Queensland,-21.70692,148.70842,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,7,Australia,AU,Queensland,-21.74722,148.74245,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,9,6,Australia,AU,Queensland,-21.47682,148.81729,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2022,11,7,Australia,AU,Queensland,-21.451114,148.863147,EPSG:4326 +HUMAN_OBSERVATION,Alistair Melzer,1,,,2021,8,19,Australia,AU,Queensland,-22.165481,149.510622,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,7,24,Australia,AU,Queensland,-21.40031,148.93218,EPSG:4326 +HUMAN_OBSERVATION,Tennille Danvers,1,,,2024,1,18,Australia,AU,Queensland,-22.5625,149.530278,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2024,9,13,Australia,AU,Queensland,-21.40827,148.91844,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,8,20,Australia,AU,Queensland,-22.85089,149.44215,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2021,8,8,Australia,AU,Queensland,-21.68051,148.68801,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,5,13,Australia,AU,Queensland,-21.42947,148.88713,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,MALE,,2020,10,26,Australia,AU,Queensland,-21.58386,148.616049,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,9,5,Australia,AU,Queensland,-21.50804,148.79181,EPSG:4326 +HUMAN_OBSERVATION,Mark Trindorfer,1,,,2024,2,8,Australia,AU,Queensland,-21.852232,149.368565,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2023,9,25,Australia,AU,Queensland,-21.334237,148.93745,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,12,15,Australia,AU,Queensland,-21.77515,148.75953,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,11,2,Australia,AU,Queensland,-21.49117,148.80568,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,8,22,Australia,AU,Queensland,-21.74776,148.74352,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,19,Australia,AU,Queensland,-21.78891,148.68184,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,26,Australia,AU,Queensland,-21.703823,148.651679,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,2,18,Australia,AU,Queensland,-21.808491,148.682157,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2023,5,23,Australia,AU,Queensland,-21.43124,148.881905,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2022,11,6,Australia,AU,Queensland,-21.62519,148.698063,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,15,Australia,AU,Queensland,-21.697797,148.691636,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,23,Australia,AU,Queensland,-21.680406,148.687028,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,16,Australia,AU,Queensland,-21.74687,148.74269,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,8,7,Australia,AU,Queensland,-21.54505,148.75985,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2020,1,3,Australia,AU,Queensland,-22.780196,149.799167,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,8,31,Australia,AU,Queensland,-21.56979,148.75001,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,13,Australia,AU,Queensland,-21.70792,148.71082,EPSG:4326 +HUMAN_OBSERVATION,Jacinta Smith,1,MALE,,2022,9,12,Australia,AU,Queensland,-21.360294,149.090309,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,11,6,Australia,AU,Queensland,-21.618123,148.712356,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2021,9,21,Australia,AU,Queensland,-21.447943,148.974164,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,9,26,Australia,AU,Queensland,-21.710836,148.695354,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,26,Australia,AU,Queensland,-21.71373,148.72261,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,FEMALE,,2023,9,1,Australia,AU,Queensland,-21.687282,148.933006,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,3,26,Australia,AU,Queensland,-21.54729,148.7597,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,10,Australia,AU,Queensland,-21.68136,148.68293,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,9,26,Australia,AU,Queensland,-21.702653,148.988519,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,9,13,Australia,AU,Queensland,-21.61771,148.71302,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,27,Australia,AU,Queensland,-21.710836,148.695354,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,10,29,Australia,AU,Queensland,-22.561213,149.530293,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,27,Australia,AU,Queensland,-21.415588,148.906003,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2024,9,27,Australia,AU,Queensland,-21.178407,149.05709,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2024,4,27,Australia,AU,Queensland,-21.59233,148.62658,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,7,18,Australia,AU,Queensland,-21.55608,148.75859,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,4,24,Australia,AU,Queensland,-21.39747,148.93503,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,11,29,Australia,AU,Queensland,-21.660628,148.675066,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,9,10,Australia,AU,Queensland,-21.57897,148.7466,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,24,Australia,AU,Queensland,-21.73287,148.73468,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2022,2,6,Australia,AU,Queensland,-21.68554,148.703292,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,11,11,Australia,AU,Queensland,-21.694289,148.6879,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,1,31,Australia,AU,Queensland,-21.697067,148.69144,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,10,16,Australia,AU,Queensland,-21.5341,148.76759,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2023,11,19,Australia,AU,Queensland,-21.67633,148.69228,EPSG:4326 +HUMAN_OBSERVATION,John Webster,1,,,2022,8,1,Australia,AU,Queensland,-21.372089,148.945586,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,8,27,Australia,AU,Queensland,-21.429697,148.88675,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2020,8,22,Australia,AU,Queensland,-21.656102,148.692313,EPSG:4326 +HUMAN_OBSERVATION,Mehul Thanki,1,MALE,,2021,9,14,Australia,AU,Queensland,-21.616221,148.717797,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,3,26,Australia,AU,Queensland,-21.413252,148.907913,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,28,Australia,AU,Queensland,-21.69312,148.68957,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,6,Australia,AU,Queensland,-21.7615,148.75246,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2022,2,1,Australia,AU,Queensland,-21.447659,148.974103,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,7,4,Australia,AU,Queensland,-21.684673,148.686489,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,8,15,Australia,AU,Queensland,-21.61681,148.71498,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,14,Australia,AU,Queensland,-21.66656,148.69176,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2020,9,27,Australia,AU,Queensland,-21.470191,148.826742,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,19,Australia,AU,Queensland,-21.59834,148.7391,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,7,25,Australia,AU,Queensland,-21.721877,148.599835,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,5,Australia,AU,Queensland,-21.70694,148.64235,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,FEMALE,,2023,4,11,Australia,AU,Queensland,-21.431224,148.882223,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,14,Australia,AU,Queensland,-21.75169,148.74652,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,14,Australia,AU,Queensland,-21.6925,148.68932,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,14,Australia,AU,Queensland,-21.77337,148.75808,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,10,10,Australia,AU,Queensland,-21.443495,148.869169,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,2,19,Australia,AU,Queensland,-21.68615,148.68453,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,14,Australia,AU,Queensland,-21.5595,148.75727,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,14,Australia,AU,Queensland,-21.77691,148.76039,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,28,Australia,AU,Queensland,-21.681808,148.683134,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,9,11,Australia,AU,Queensland,-21.50819,148.79089,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2022,9,4,Australia,AU,Queensland,-21.305585,148.933215,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,31,Australia,AU,Queensland,-21.436691,148.875551,EPSG:4326 +HUMAN_OBSERVATION,Sandy Whittington-Shaw,1,,,2023,10,23,Australia,AU,Queensland,-21.458241,149.167364,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,11,4,Australia,AU,Queensland,-21.43136,148.8822,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,14,Australia,AU,Queensland,-21.67457,148.67886,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,11,5,Australia,AU,Queensland,-21.682005,148.697739,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2024,8,18,Australia,AU,Queensland,-21.7059,148.70596,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,11,29,Australia,AU,Queensland,-21.69712,148.69265,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,11,Australia,AU,Queensland,-21.616042,148.716597,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2024,8,18,Australia,AU,Queensland,-21.178253,149.056491,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,11,5,Australia,AU,Queensland,-21.717728,148.611948,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2021,10,3,Australia,AU,Queensland,-21.688059,148.686028,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2021,7,26,Australia,AU,Queensland,-21.269948,149.064368,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,10,3,Australia,AU,Queensland,-21.690178,148.686465,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,8,Australia,AU,Queensland,-21.686044,148.700714,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,3,1,Australia,AU,Queensland,-21.698201,148.69137,EPSG:4326 +HUMAN_OBSERVATION,Shanna Bignell,1,MALE,,2022,9,21,Australia,AU,Queensland,-21.784282,148.683173,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,8,Australia,AU,Queensland,-21.674606,148.678728,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,1,10,Australia,AU,Queensland,-21.697693,148.691046,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2022,2,22,Australia,AU,Queensland,-21.758552,149.373567,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2022,4,27,Australia,AU,Queensland,-22.52195,147.650233,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,8,Australia,AU,Queensland,-21.675269,148.679214,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2021,11,6,Australia,AU,Queensland,-21.698128,148.691907,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,3,Australia,AU,Queensland,-21.67031,148.67601,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,12,23,Australia,AU,Queensland,-22.3922,149.11656,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,24,Australia,AU,Queensland,-21.720116,148.726591,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2023,5,24,Australia,AU,Queensland,-22.38548,148.26649,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,2,1,Australia,AU,Queensland,-21.74301,148.74045,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,9,10,Australia,AU,Queensland,-21.774331,148.879832,EPSG:4326 +HUMAN_OBSERVATION,Mehul Thanki,1,,,2024,3,2,Australia,AU,Queensland,-21.165825,149.14588,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,,,2021,6,1,Australia,AU,Queensland,-22.234589,149.055608,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,8,26,Australia,AU,Queensland,-21.45277,148.86192,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2020,8,14,Australia,AU,Queensland,-21.697095,148.691599,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,5,Australia,AU,Queensland,-21.80351,148.70396,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,14,Australia,AU,Queensland,-21.479418,148.812754,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,12,5,Australia,AU,Queensland,-21.697728,148.691721,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,10,Australia,AU,Queensland,-21.6956,148.6904,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,12,Australia,AU,Queensland,-21.69203,148.68952,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2020,10,27,Australia,AU,Queensland,-22.580988,148.327837,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,11,Australia,AU,Queensland,-21.773932,148.759353,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,4,12,Australia,AU,Queensland,-21.41089,148.91116,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,8,30,Australia,AU,Queensland,-22.424425,149.175107,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,MALE,,2021,8,10,Australia,AU,Queensland,-21.381199,148.946647,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,2,12,Australia,AU,Queensland,-21.73074,148.73359,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,11,27,Australia,AU,Queensland,-21.55364,148.54461,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,26,Australia,AU,Queensland,-21.68926,148.68834,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2020,8,11,Australia,AU,Queensland,-21.724162,148.564854,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,9,29,Australia,AU,Queensland,-21.576017,148.747441,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2022,3,24,Australia,AU,Queensland,-21.61695,148.71423,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,10,21,Australia,AU,Queensland,-21.281867,148.96076,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,12,15,Australia,AU,Queensland,-21.77515,148.75953,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,9,6,Australia,AU,Queensland,-21.49866,148.80205,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2021,10,8,Australia,AU,Queensland,-21.871336,148.466148,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,7,20,Australia,AU,Queensland,-21.737515,148.737247,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,7,Australia,AU,Queensland,-21.455289,148.858978,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,7,2,Australia,AU,Queensland,-21.747497,148.743435,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,8,Australia,AU,Queensland,-21.739853,148.739806,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2024,9,1,Australia,AU,Queensland,-21.447765,148.865096,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,14,Australia,AU,Queensland,-21.7532,148.7474,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,10,Australia,AU,Queensland,-21.77424,148.7591,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2024,9,17,Australia,AU,Queensland,-21.338755,148.937628,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,9,23,Australia,AU,Queensland,-21.730106,148.732988,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,11,2,Australia,AU,Queensland,-21.52359,148.7761,EPSG:4326 +HUMAN_OBSERVATION,Charmain Snell,1,,,2022,9,20,Australia,AU,Queensland,-21.34256,148.936436,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2023,11,14,Australia,AU,Queensland,-21.357021,148.938898,EPSG:4326 +HUMAN_OBSERVATION,Charmain Snell,1,,,2022,9,12,Australia,AU,Queensland,-21.356564,148.938389,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,9,4,Australia,AU,Queensland,-21.35195,148.940781,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,8,Australia,AU,Queensland,-21.740489,148.739303,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2021,10,26,Australia,AU,Queensland,-21.698091,148.691831,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,13,Australia,AU,Queensland,-21.67417,148.67865,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,9,7,Australia,AU,Queensland,-21.688334,148.687555,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,18,Australia,AU,Queensland,-21.68908,148.69109,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,6,28,Australia,AU,Queensland,-21.767622,148.75486,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,9,11,Australia,AU,Queensland,-21.43567,148.87686,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,5,12,Australia,AU,Queensland,-21.55078,148.75934,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,17,Australia,AU,Queensland,-21.690448,148.688282,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,31,Australia,AU,Queensland,-21.480144,148.812164,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2023,1,3,Australia,AU,Queensland,-21.771028,148.787456,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,10,15,Australia,AU,Queensland,-21.38407,148.94454,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,11,6,Australia,AU,Queensland,-21.77151,148.83165,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,27,Australia,AU,Queensland,-21.74309,148.74036,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,5,30,Australia,AU,Queensland,-21.62181,148.70355,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2021,10,6,Australia,AU,Queensland,-22.589626,148.353545,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,2,20,Australia,AU,Queensland,-21.698159,148.691382,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2020,11,18,Australia,AU,Queensland,-21.539313,148.763792,EPSG:4326 +HUMAN_OBSERVATION,Yvette Jeffs,1,MALE,,2020,11,29,Australia,AU,Queensland,-21.596687,149.043281,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,12,31,Australia,AU,Queensland,-21.459385,148.854104,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,11,7,Australia,AU,Queensland,-22.41166,149.12908,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,6,29,Australia,AU,Queensland,-21.684923,148.689425,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,13,Australia,AU,Queensland,-21.68488,148.68479,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,5,30,Australia,AU,Queensland,-21.45876,148.85466,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,10,Australia,AU,Queensland,-21.69249,148.68931,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,11,Australia,AU,Queensland,-21.72377,148.72897,EPSG:4326 +HUMAN_OBSERVATION,Tyler Hood,1,,,2021,9,16,Australia,AU,Queensland,-21.61706,148.717884,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,26,Australia,AU,Queensland,-21.67805,148.6915,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,22,Australia,AU,Queensland,-21.28781,148.94145,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,9,29,Australia,AU,Queensland,-21.515128,148.782547,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,8,22,Australia,AU,Queensland,-21.50745,148.79341,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,8,20,Australia,AU,Queensland,-21.697822,148.69176,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,10,Australia,AU,Queensland,-21.77431,148.75929,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,15,Australia,AU,Queensland,-21.77809,148.88575,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,9,20,Australia,AU,Queensland,-21.354758,148.937373,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,2,19,Australia,AU,Queensland,-21.72042,148.72669,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,6,23,Australia,AU,Queensland,-21.681344,148.683083,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,11,Australia,AU,Queensland,-21.73367,148.73522,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,5,Australia,AU,Queensland,-21.68563,148.68437,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2022,3,6,Australia,AU,Queensland,-21.531044,148.770626,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,5,22,Australia,AU,Queensland,-21.67732,148.69235,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,11,22,Australia,AU,Queensland,-21.690171,148.688113,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,11,28,Australia,AU,Queensland,-21.69223,148.68912,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,5,15,Australia,AU,Queensland,-21.56732,148.75138,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2023,10,29,Australia,AU,Queensland,-21.697643,148.69155,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,,,2021,1,7,Australia,AU,Queensland,-22.418731,149.212278,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,10,23,Australia,AU,Queensland,-21.692541,148.68759,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,2,17,Australia,AU,Queensland,-21.697204,148.691341,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,30,Australia,AU,Queensland,-21.67301,148.67739,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2022,2,1,Australia,AU,Queensland,-21.444472,148.973483,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,6,Australia,AU,Queensland,-21.72795,148.73154,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,31,Australia,AU,Queensland,-21.42362,148.89531,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2024,6,23,Australia,AU,Queensland,-21.57496,148.74774,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,11,16,Australia,AU,Queensland,-21.42103,148.89904,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,10,15,Australia,AU,Queensland,-21.43606,148.87636,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,26,Australia,AU,Queensland,-21.69781,148.69175,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,10,29,Australia,AU,Queensland,-21.57298,148.74837,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,30,Australia,AU,Queensland,-21.68644,148.68715,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,9,5,Australia,AU,Queensland,-21.17843,149.057037,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,8,29,Australia,AU,Queensland,-21.648764,148.674626,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,8,7,Australia,AU,Queensland,-21.38387,148.94463,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,7,12,Australia,AU,Queensland,-21.703721,148.651582,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,11,Australia,AU,Queensland,-21.618978,148.710847,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,22,Australia,AU,Queensland,-21.453069,148.860991,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,20,Australia,AU,Queensland,-21.63328,148.69382,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,2,Australia,AU,Queensland,-21.49497,148.80396,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,2,21,Australia,AU,Queensland,-21.442715,148.870042,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,2,11,Australia,AU,Queensland,-21.69331,148.68973,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,12,Australia,AU,Queensland,-21.69491,148.69017,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,9,2,Australia,AU,Queensland,-21.53818,148.76458,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,12,Australia,AU,Queensland,-21.674544,148.678654,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,7,30,Australia,AU,Queensland,-21.45147,148.86282,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,9,28,Australia,AU,Queensland,-22.537311,149.526917,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,9,21,Australia,AU,Queensland,-21.69474,148.688457,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,16,Australia,AU,Queensland,-21.73367,148.73523,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2024,6,10,Australia,AU,Queensland,-21.63668,148.69422,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2021,8,13,Australia,AU,Queensland,-22.758225,148.459224,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,8,14,Australia,AU,Queensland,-21.561116,148.756464,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,2,12,Australia,AU,Queensland,-21.71419,148.72298,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,8,Australia,AU,Queensland,-21.6956,148.6904,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,10,Australia,AU,Queensland,-21.73105,148.73381,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,10,24,Australia,AU,Queensland,-21.48034,148.81209,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2020,9,2,Australia,AU,Queensland,-21.738603,148.966944,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,8,22,Australia,AU,Queensland,-22.366413,149.108288,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,19,Australia,AU,Queensland,-21.69774,148.69163,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,6,Australia,AU,Queensland,-21.737431,148.736464,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,10,29,Australia,AU,Queensland,-22.034144,148.026566,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,9,19,Australia,AU,Queensland,-21.704463,148.694962,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2023,7,5,Australia,AU,Queensland,-21.715426,148.701877,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,17,Australia,AU,Queensland,-21.68753,148.6882,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,25,Australia,AU,Queensland,-21.66701,148.67445,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2023,9,22,Australia,AU,Queensland,-21.743317,148.69626,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,7,Australia,AU,Queensland,-21.454619,148.859939,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,27,Australia,AU,Queensland,-21.572711,148.74844,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,9,20,Australia,AU,Queensland,-21.326473,148.939194,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,8,Australia,AU,Queensland,-21.69873,148.66299,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,14,Australia,AU,Queensland,-21.71918,148.7258,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,15,Australia,AU,Queensland,-21.55324,148.75949,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,9,25,Australia,AU,Queensland,-21.60462,148.73236,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,17,Australia,AU,Queensland,-21.72667,148.7309,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,FEMALE,,2023,9,1,Australia,AU,Queensland,-21.705964,148.935237,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,10,8,Australia,AU,Queensland,-21.51029,148.78611,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2023,1,1,Australia,AU,Queensland,-21.179618,149.05624,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,11,5,Australia,AU,Queensland,-21.678184,148.68018,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2022,1,1,Australia,AU,Queensland,-21.64938,149.00592,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,7,13,Australia,AU,Queensland,-21.64159,148.69455,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,10,Australia,AU,Queensland,-21.74823,148.74418,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,7,13,Australia,AU,Queensland,-21.46865,148.83164,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2021,11,19,Australia,AU,Queensland,-21.553103,148.75909,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,6,24,Australia,AU,Queensland,-21.466606,148.839157,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,9,27,Australia,AU,Queensland,-21.61261,148.72201,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,17,Australia,AU,Queensland,-21.71487,148.72312,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,8,22,Australia,AU,Queensland,-21.4245,148.89395,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,10,24,Australia,AU,Queensland,-21.68718,148.68831,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2022,2,2,Australia,AU,Queensland,-21.432603,148.970373,EPSG:4326 +HUMAN_OBSERVATION,Jacinta Smith,1,,,2022,9,11,Australia,AU,Queensland,-21.361613,149.091532,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,9,19,Australia,AU,Queensland,-21.669144,148.69199,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,1,Australia,AU,Queensland,-21.69774,148.69168,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,,,2024,3,2,Australia,AU,Queensland,-22.665371,149.159823,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,27,Australia,AU,Queensland,-21.515527,148.782421,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,14,Australia,AU,Queensland,-21.6924,148.68926,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,15,Australia,AU,Queensland,-21.695156,148.690247,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,5,7,Australia,AU,Queensland,-21.458096,148.855301,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2020,7,17,Australia,AU,Queensland,-21.679408,148.729984,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,9,26,Australia,AU,Queensland,-21.685027,148.689113,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,31,Australia,AU,Queensland,-21.514127,148.783316,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,5,Australia,AU,Queensland,-21.678078,148.680664,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,9,25,Australia,AU,Queensland,-21.815845,148.6787,EPSG:4326 +HUMAN_OBSERVATION,Mackay Environment,1,,,2021,10,17,Australia,AU,Queensland,-21.530443,149.018252,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,11,8,Australia,AU,Queensland,-21.690446,148.688289,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,7,4,Australia,AU,Queensland,-21.684703,148.686488,EPSG:4326 +HUMAN_OBSERVATION,Shanna Bignell,1,MALE,,2022,6,15,Australia,AU,Queensland,-21.627398,148.695784,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,30,Australia,AU,Queensland,-21.67288,148.67793,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,10,20,Australia,AU,Queensland,-21.16151,149.083612,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,27,Australia,AU,Queensland,-21.680137,148.682542,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,11,13,Australia,AU,Queensland,-21.182093,149.04067,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,27,Australia,AU,Queensland,-21.680011,148.682472,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,7,3,Australia,AU,Queensland,-21.77074,148.68448,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,9,16,Australia,AU,Queensland,-21.663871,148.691617,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,12,15,Australia,AU,Queensland,-21.73303,148.73535,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,11,4,Australia,AU,Queensland,-21.683426,148.683304,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,5,5,Australia,AU,Queensland,-21.696825,148.69044,EPSG:4326 +HUMAN_OBSERVATION,Anne Smith,1,FEMALE,,2022,11,9,Australia,AU,Queensland,-21.642676,149.030917,EPSG:4326 +HUMAN_OBSERVATION,Pat Doolan,1,MALE,,2023,7,20,Australia,AU,Queensland,-21.345555,148.939853,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,11,1,Australia,AU,Queensland,-22.621537,149.64163,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,4,25,Australia,AU,Queensland,-21.778604,148.899796,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,13,Australia,AU,Queensland,-21.64997,148.67495,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,4,24,Australia,AU,Queensland,-21.86236,148.74904,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,22,Australia,AU,Queensland,-21.461376,148.849136,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,9,3,Australia,AU,Queensland,-23.445319,148.896314,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,7,10,Australia,AU,Queensland,-21.683811,148.684083,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,24,Australia,AU,Queensland,-21.66703,148.67448,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,14,Australia,AU,Queensland,-21.678283,148.682128,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,10,16,Australia,AU,Queensland,-21.57849,148.74669,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,8,30,Australia,AU,Queensland,-21.717995,148.610727,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,18,Australia,AU,Queensland,-21.55205,148.4643,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,6,5,Australia,AU,Queensland,-21.44624,148.86655,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,12,2,Australia,AU,Queensland,-21.529286,148.772484,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,9,Australia,AU,Queensland,-21.684947,148.686356,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2020,8,28,Australia,AU,Queensland,-21.419434,148.9012,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,19,Australia,AU,Queensland,-21.610724,148.724263,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,30,Australia,AU,Queensland,-21.68258,148.69539,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,20,Australia,AU,Queensland,-21.57463,148.747724,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,14,Australia,AU,Queensland,-21.73947,148.73957,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,7,14,Australia,AU,Queensland,-22.392986,148.27063,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,11,Australia,AU,Queensland,-21.697837,148.690923,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,31,Australia,AU,Queensland,-21.47352,148.81828,EPSG:4326 +HUMAN_OBSERVATION,Angus Mecoles,1,,,2022,8,31,Australia,AU,Queensland,-21.329078,148.522609,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,5,13,Australia,AU,Queensland,-21.697394,148.690464,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,29,Australia,AU,Queensland,-21.63764,148.67179,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,10,16,Australia,AU,Queensland,-21.53964,148.76358,EPSG:4326 +HUMAN_OBSERVATION,Dan Dent,1,,,2023,9,27,Australia,AU,Queensland,-21.399287,148.933416,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,11,12,Australia,AU,Queensland,-21.750061,148.744567,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,3,Australia,AU,Queensland,-21.7096,148.63443,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,30,Australia,AU,Queensland,-21.44406,148.86874,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,10,Australia,AU,Queensland,-21.68159,148.68303,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,12,18,Australia,AU,Queensland,-21.68242,148.71118,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2023,10,20,Australia,AU,Queensland,-21.697494,148.6934,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2023,11,13,Australia,AU,Queensland,-21.356074,148.937179,EPSG:4326 +HUMAN_OBSERVATION,Jodie Harker ,1,MALE,,2020,11,14,Australia,AU,Queensland,-21.801786,148.68199,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,5,Australia,AU,Queensland,-21.698022,148.691894,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2023,10,8,Australia,AU,Queensland,-21.69677,148.69038,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,8,18,Australia,AU,Queensland,-21.6105,148.72424,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,10,9,Australia,AU,Queensland,-21.777781,148.894034,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,27,Australia,AU,Queensland,-21.72372,148.72896,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,8,8,Australia,AU,Queensland,-21.66288,148.69177,EPSG:4326 +HUMAN_OBSERVATION,Yvette Jeffs,1,MALE,,2020,11,16,Australia,AU,Queensland,-21.420197,149.209504,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,4,24,Australia,AU,Queensland,-21.80599,148.69818,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,22,Australia,AU,Queensland,-21.678761,148.691756,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2021,10,4,Australia,AU,Queensland,-21.63138,148.683875,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,17,Australia,AU,Queensland,-21.68908,148.69109,EPSG:4326 +HUMAN_OBSERVATION,Sandy Shaw,1,,,2024,2,14,Australia,AU,Queensland,-21.459151,149.17143,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,10,28,Australia,AU,Queensland,-21.697701,148.690564,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,MALE,,2020,7,20,Australia,AU,Queensland,-21.409322,148.915318,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,MALE,,2023,9,2,Australia,AU,Queensland,-22.358264,149.279073,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2024,4,27,Australia,AU,Queensland,-21.43765,148.50867,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2024,7,14,Australia,AU,Queensland,-21.78663,148.68233,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,14,Australia,AU,Queensland,-21.70529,148.70414,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,11,4,Australia,AU,Queensland,-21.687172,148.684435,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,9,6,Australia,AU,Queensland,-21.7844,148.68283,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,24,Australia,AU,Queensland,-21.70363,148.65208,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2023,11,30,Australia,AU,Queensland,-21.749724,148.686877,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,,,2020,7,21,Australia,AU,Queensland,-21.609637,148.645374,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2023,8,28,Australia,AU,Queensland,-21.751991,148.949417,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2020,11,28,Australia,AU,Queensland,-22.294447,148.192994,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2024,5,29,Australia,AU,Queensland,-21.5883,148.62248,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,2,26,Australia,AU,Queensland,-21.60566,148.73063,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,25,Australia,AU,Queensland,-21.64998,148.67499,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,9,5,Australia,AU,Queensland,-21.697051,148.691452,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,6,11,Australia,AU,Queensland,-21.712261,148.696454,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,8,23,Australia,AU,Queensland,-21.641255,148.671326,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,11,8,Australia,AU,Queensland,-21.690458,148.688291,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,9,10,Australia,AU,Queensland,-21.60069,148.63391,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,7,4,Australia,AU,Queensland,-21.86266,148.57369,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,9,18,Australia,AU,Queensland,-21.695765,148.690508,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,12,18,Australia,AU,Queensland,-21.76724,148.75497,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,1,Australia,AU,Queensland,-21.69774,148.69168,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,8,4,Australia,AU,Queensland,-21.55827,148.75775,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,11,Australia,AU,Queensland,-21.619686,148.709519,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2020,8,18,Australia,AU,Queensland,-21.508061,148.791329,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,10,5,Australia,AU,Queensland,-21.69558,148.69148,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,24,Australia,AU,Queensland,-21.555921,148.758894,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,2,14,Australia,AU,Queensland,-21.70477,148.69498,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,FEMALE,,2023,10,6,Australia,AU,Queensland,-22.759334,149.329092,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2023,6,19,Australia,AU,Queensland,-21.82756,148.65502,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2020,11,21,Australia,AU,Queensland,-22.349527,149.524696,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2022,10,31,Australia,AU,Queensland,-21.507754,148.792492,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,15,Australia,AU,Queensland,-21.689553,148.687871,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,24,Australia,AU,Queensland,-21.7114,148.69507,EPSG:4326 +HUMAN_OBSERVATION,Raymond Greaves,1,,,2022,3,19,Australia,AU,Queensland,-21.550828,149.10553,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,7,29,Australia,AU,Queensland,-21.6963,148.69702,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,11,8,Australia,AU,Queensland,-21.69492,148.690104,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,9,9,Australia,AU,Queensland,-21.640738,148.671418,EPSG:4326 +HUMAN_OBSERVATION,Philip Orestes,1,,,2020,9,9,Australia,AU,Queensland,-22.164267,147.562074,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,3,19,Australia,AU,Queensland,-21.198867,149.018244,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,13,Australia,AU,Queensland,-21.64997,148.67495,EPSG:4326 +HUMAN_OBSERVATION,Dan Dent,1,FEMALE,,2021,10,6,Australia,AU,Queensland,-22.407849,149.255055,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,9,16,Australia,AU,Queensland,-21.683856,148.689959,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,9,9,Australia,AU,Queensland,-21.72179,148.72811,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,18,Australia,AU,Queensland,-21.716984,148.613698,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,3,10,Australia,AU,Queensland,-21.69497,148.690137,EPSG:4326 +HUMAN_OBSERVATION,Nigel Robinson,1,FEMALE,,2023,8,28,Australia,AU,Queensland,-21.455638,148.974334,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2020,12,22,Australia,AU,Queensland,-21.59937,148.632783,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,10,Australia,AU,Queensland,-21.68493,148.68636,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,6,22,Australia,AU,Queensland,-21.73033,148.73324,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,27,Australia,AU,Queensland,-21.74929,148.74516,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke ,1,FEMALE,,2020,6,25,Australia,AU,Queensland,-21.471807,148.820557,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,29,Australia,AU,Queensland,-21.68104,148.68656,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,9,2,Australia,AU,Queensland,-22.672315,149.59747,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2020,12,15,Australia,AU,Queensland,-21.743929,148.434554,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,21,Australia,AU,Queensland,-21.684306,148.686446,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2021,7,4,Australia,AU,Queensland,-21.775214,148.7739,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,9,14,Australia,AU,Queensland,-21.70357,148.652296,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,10,22,Australia,AU,Queensland,-21.42693,148.89091,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,12,Australia,AU,Queensland,-21.728219,148.731797,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2020,8,31,Australia,AU,Queensland,-21.626793,148.710938,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,7,Australia,AU,Queensland,-21.711304,148.694501,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2023,6,4,Australia,AU,Queensland,-21.69558,148.68892,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,4,Australia,AU,Queensland,-21.74611,148.74238,EPSG:4326 +HUMAN_OBSERVATION,Angus Mecoles,1,,,2023,2,5,Australia,AU,Queensland,-21.44614,148.5308,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,8,27,Australia,AU,Queensland,-21.61798,148.712666,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,7,17,Australia,AU,Queensland,-21.619579,148.709657,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,10,5,Australia,AU,Queensland,-21.466103,148.839245,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2023,9,8,Australia,AU,Queensland,-22.03462,148.02935,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,13,Australia,AU,Queensland,-21.77544,148.75946,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,30,Australia,AU,Queensland,-21.63763,148.67172,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,8,27,Australia,AU,Queensland,-21.407231,148.921403,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2020,11,10,Australia,AU,Queensland,-21.450777,148.863257,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,12,14,Australia,AU,Queensland,-21.70384,148.65175,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,8,3,Australia,AU,Queensland,-21.862464,148.573744,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,6,Australia,AU,Queensland,-21.74201,148.73986,EPSG:4326 +HUMAN_OBSERVATION,Raymond Greaves,1,MALE,,2023,12,1,Australia,AU,Queensland,-21.551609,149.10452,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,11,19,Australia,AU,Queensland,-21.72761,148.7316,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,12,15,Australia,AU,Queensland,-21.7367,148.737,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,18,Australia,AU,Queensland,-21.773778,148.759156,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,27,Australia,AU,Queensland,-21.41919,148.90175,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,10,17,Australia,AU,Queensland,-21.8,148.6816,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,7,3,Australia,AU,Queensland,-21.76049,148.75192,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,9,27,Australia,AU,Queensland,-21.39429,148.93759,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,11,1,Australia,AU,Queensland,-21.286732,148.944001,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,2,4,Australia,AU,Queensland,-21.40506,148.92583,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,14,Australia,AU,Queensland,-21.68463,148.68652,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,9,28,Australia,AU,Queensland,-21.791666,148.726559,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2021,6,24,Australia,AU,Queensland,-21.411934,148.908949,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,FEMALE,,2023,8,31,Australia,AU,Queensland,-22.609872,149.269674,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2021,8,25,Australia,AU,Queensland,-21.343352,148.940599,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,8,24,Australia,AU,Queensland,-21.697054,148.691561,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2021,8,10,Australia,AU,Queensland,-21.756614,148.742845,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2021,9,27,Australia,AU,Queensland,-21.710031,148.694906,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,10,Australia,AU,Queensland,-21.71428,148.72293,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,10,Australia,AU,Queensland,-21.72783,148.73168,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2023,10,17,Australia,AU,Queensland,-21.674241,148.995437,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,9,15,Australia,AU,Queensland,-21.56711,148.75154,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,17,Australia,AU,Queensland,-21.6342,148.67436,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,12,18,Australia,AU,Queensland,-21.73674,148.73703,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,9,24,Australia,AU,Queensland,-21.500114,148.801388,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2022,9,27,Australia,AU,Queensland,-22.487074,147.904303,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,11,5,Australia,AU,Queensland,-21.681455,148.700096,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,22,Australia,AU,Queensland,-21.679861,148.687456,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,14,Australia,AU,Queensland,-21.69524,148.69026,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,11,Australia,AU,Queensland,-21.697692,148.69139,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,7,3,Australia,AU,Queensland,-21.36003,148.94147,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,15,Australia,AU,Queensland,-21.69039,148.68829,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,8,2,Australia,AU,Queensland,-21.61594,148.71694,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,12,5,Australia,AU,Queensland,-21.688494,148.6825,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2021,8,23,Australia,AU,Queensland,-21.514806,148.782885,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,28,Australia,AU,Queensland,-21.68598,148.68489,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,26,Australia,AU,Queensland,-21.70733,148.70978,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,6,Australia,AU,Queensland,-21.71679,148.72415,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,11,14,Australia,AU,Queensland,-21.353619,148.131495,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2021,11,20,Australia,AU,Queensland,-21.178201,149.056896,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,,,2021,6,1,Australia,AU,Queensland,-21.338652,148.939024,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2023,11,8,Australia,AU,Queensland,-21.679346,148.681574,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,12,26,Australia,AU,Queensland,-21.674593,148.688964,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,10,29,Australia,AU,Queensland,-21.68759,148.68412,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,1,6,Australia,AU,Queensland,-21.697125,148.691552,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,24,Australia,AU,Queensland,-21.654203,148.692878,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,5,1,Australia,AU,Queensland,-21.698138,148.69185,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,3,26,Australia,AU,Queensland,-21.63913,148.69458,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2023,4,11,Australia,AU,Queensland,-21.517738,148.781574,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,8,26,Australia,AU,Queensland,-21.42428,148.89409,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,6,Australia,AU,Queensland,-21.737631,148.737258,EPSG:4326 +HUMAN_OBSERVATION,Sandra Walters,1,FEMALE,,2023,9,27,Australia,AU,Queensland,-21.712201,148.702157,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,11,6,Australia,AU,Queensland,-21.69812,148.691892,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,5,Australia,AU,Queensland,-21.68368,148.68333,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,12,14,Australia,AU,Queensland,-21.68468,148.68469,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,FEMALE,,2022,10,25,Australia,AU,Queensland,-21.856416,148.576857,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,12,18,Australia,AU,Queensland,-21.72036,148.72701,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,12,18,Australia,AU,Queensland,-21.76757,148.7549,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,10,15,Australia,AU,Queensland,-21.6597,148.69341,EPSG:4326 +HUMAN_OBSERVATION,Mackay Environment,1,MALE,,2020,11,11,Australia,AU,Queensland,-21.449899,148.863918,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,24,Australia,AU,Queensland,-21.70996,148.69418,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,5,Australia,AU,Queensland,-21.7137,148.72247,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2024,7,15,Australia,AU,Queensland,-21.41302,148.90811,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2022,10,15,Australia,AU,Queensland,-21.6597,148.69341,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,6,1,Australia,AU,Queensland,-21.382571,148.945526,EPSG:4326 +HUMAN_OBSERVATION,Yvette Jeffs,1,MALE,,2020,11,16,Australia,AU,Queensland,-21.421013,149.215916,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,7,Australia,AU,Queensland,-21.474416,148.817582,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,9,23,Australia,AU,Queensland,-21.740745,148.739069,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,14,Australia,AU,Queensland,-21.72858,148.73195,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,3,24,Australia,AU,Queensland,-21.689463,148.686348,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,4,28,Australia,AU,Queensland,-21.698152,148.69189,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,12,11,Australia,AU,Queensland,-21.697201,148.69178,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,9,23,Australia,AU,Queensland,-21.59496,148.742477,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,5,Australia,AU,Queensland,-21.698022,148.691894,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,2,12,Australia,AU,Queensland,-21.73132,148.73376,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,31,Australia,AU,Queensland,-21.59856,148.73893,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,11,13,Australia,AU,Queensland,-21.4686,148.83218,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,8,25,Australia,AU,Queensland,-21.685176,148.688469,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,11,Australia,AU,Queensland,-21.75014,148.745652,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,4,24,Australia,AU,Queensland,-21.86264,148.74966,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,31,Australia,AU,Queensland,-21.516323,148.782652,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,9,20,Australia,AU,Queensland,-21.709902,148.690208,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,8,31,Australia,AU,Queensland,-21.43134,148.88276,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,8,22,Australia,AU,Queensland,-21.51811,148.7814,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,2,5,Australia,AU,Queensland,-21.77039,148.79008,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,30,Australia,AU,Queensland,-21.680866,148.702433,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,3,4,Australia,AU,Queensland,-21.697735,148.691682,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,8,16,Australia,AU,Queensland,-21.56045,148.757119,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,11,5,Australia,AU,Queensland,-21.717634,148.610888,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,,,2023,9,15,Australia,AU,Queensland,-22.68916,149.629168,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,5,Australia,AU,Queensland,-21.65504,148.67609,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2024,6,26,Australia,AU,Queensland,-21.60276,148.63593,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2020,8,11,Australia,AU,Queensland,-21.599459,148.738225,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,20,Australia,AU,Queensland,-21.680719,148.687697,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,11,10,Australia,AU,Queensland,-21.26545,148.971552,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,FEMALE,,2021,1,7,Australia,AU,Queensland,-22.357343,149.342155,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,6,Australia,AU,Queensland,-21.730192,148.732589,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2023,11,7,Australia,AU,Queensland,-21.770281,148.792023,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,5,Australia,AU,Queensland,-21.692056,148.689147,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,,,2023,11,6,Australia,AU,Queensland,-21.203402,148.679851,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2020,8,17,Australia,AU,Queensland,-21.696943,148.691428,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,7,23,Australia,AU,Queensland,-21.645617,148.694469,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2022,3,2,Australia,AU,Queensland,-21.698118,148.691166,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,11,3,Australia,AU,Queensland,-21.813189,148.681519,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2021,10,19,Australia,AU,Queensland,-21.857725,148.575654,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,6,17,Australia,AU,Queensland,-21.39336,148.93812,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,9,17,Australia,AU,Queensland,-21.772648,148.9273,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,11,16,Australia,AU,Queensland,-21.690744,148.68829,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,2,Australia,AU,Queensland,-21.69774,148.69164,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,10,Australia,AU,Queensland,-21.76757,148.75484,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,24,Australia,AU,Queensland,-21.649482,148.694112,EPSG:4326 +HUMAN_OBSERVATION,Mackay Environment,1,,,2020,10,15,Australia,AU,Queensland,-21.424746,148.890257,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2021,8,9,Australia,AU,Queensland,-21.22739,148.533642,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,5,18,Australia,AU,Queensland,-21.40564,148.92511,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,18,Australia,AU,Queensland,-21.44,148.872222,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2022,10,31,Australia,AU,Queensland,-21.613765,148.72008,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,8,Australia,AU,Queensland,-21.71148,148.69502,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,8,Australia,AU,Queensland,-21.413739,148.907364,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,10,Australia,AU,Queensland,-21.72758,148.7315,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2024,5,14,Australia,AU,Queensland,-21.6906,148.69232,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,21,Australia,AU,Queensland,-21.775819,148.759672,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,7,12,Australia,AU,Queensland,-21.50895,148.78914,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,10,23,Australia,AU,Queensland,-21.68705,148.68836,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,10,30,Australia,AU,Queensland,-21.79925,148.68159,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,13,Australia,AU,Queensland,-21.76653,148.75444,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,1,2,Australia,AU,Queensland,-21.697131,148.691439,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,5,10,Australia,AU,Queensland,-21.43723,148.87528,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,8,12,Australia,AU,Queensland,-21.519874,148.779591,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,6,28,Australia,AU,Queensland,-21.751721,148.746511,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,9,12,Australia,AU,Queensland,-21.72811,148.73172,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2020,11,28,Australia,AU,Queensland,-22.271345,148.178688,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,7,8,Australia,AU,Queensland,-21.52938,148.77219,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,13,Australia,AU,Queensland,-21.739897,148.738525,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,11,Australia,AU,Queensland,-21.69808,148.69183,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,3,2,Australia,AU,Queensland,-21.660469,148.692094,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,12,14,Australia,AU,Queensland,-21.71008,148.63311,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,4,Australia,AU,Queensland,-21.46997,148.82674,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,14,Australia,AU,Queensland,-21.684215,148.686586,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,8,31,Australia,AU,Queensland,-21.696991,148.691311,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,10,23,Australia,AU,Queensland,-21.44045,148.87227,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,14,Australia,AU,Queensland,-21.6949,148.69013,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,10,8,Australia,AU,Queensland,-21.567,148.7514,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,8,Australia,AU,Queensland,-21.408281,148.918136,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,1,2,Australia,AU,Queensland,-21.697134,148.691277,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2022,11,16,Australia,AU,Queensland,-21.619505,148.656371,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,9,7,Australia,AU,Queensland,-21.39867,148.93402,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,8,23,Australia,AU,Queensland,-21.46871,148.83174,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2023,4,19,Australia,AU,Queensland,-21.697435,148.690486,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2021,7,28,Australia,AU,Queensland,-21.697219,148.690875,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2023,9,27,Australia,AU,Queensland,-21.398133,148.934612,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,9,28,Australia,AU,Queensland,-21.710717,148.694396,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,11,7,Australia,AU,Queensland,-21.75943,148.75117,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,13,Australia,AU,Queensland,-21.73711,148.73721,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,5,5,Australia,AU,Queensland,-22.08286,149.09399,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,2,26,Australia,AU,Queensland,-21.40196,148.93062,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,MALE,,2023,8,31,Australia,AU,Queensland,-22.63156,149.267456,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,29,Australia,AU,Queensland,-21.67285,148.67789,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,11,3,Australia,AU,Queensland,-21.67475,148.69218,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,14,Australia,AU,Queensland,-21.479398,148.812781,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,9,17,Australia,AU,Queensland,-21.65612,149.010605,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,23,Australia,AU,Queensland,-21.680381,148.68695,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,,,2021,9,19,Australia,AU,Queensland,-21.520397,148.778725,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,23,Australia,AU,Queensland,-21.68921,148.68777,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,6,Australia,AU,Queensland,-21.767344,148.754853,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,28,Australia,AU,Queensland,-21.69495,148.69081,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,8,7,Australia,AU,Queensland,-21.38405,148.94439,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,3,Australia,AU,Queensland,-21.32879,148.93947,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,9,17,Australia,AU,Queensland,-21.697049,148.691529,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,8,11,Australia,AU,Queensland,-21.46,148.85355,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,8,26,Australia,AU,Queensland,-21.43782,148.8749,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,21,Australia,AU,Queensland,-21.7355,148.7363,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,8,Australia,AU,Queensland,-21.72942,148.73259,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,15,Australia,AU,Queensland,-21.54434,148.76013,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,14,Australia,AU,Queensland,-21.77258,148.75767,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2023,6,12,Australia,AU,Queensland,-21.685303,148.685558,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,8,24,Australia,AU,Queensland,-21.729646,148.732719,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,,,2023,11,27,Australia,AU,Queensland,-21.202502,148.677772,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2023,10,2,Australia,AU,Queensland,-21.698166,148.691851,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,6,11,Australia,AU,Queensland,-21.672168,148.69214,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,9,Australia,AU,Queensland,-21.695522,148.690353,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,27,Australia,AU,Queensland,-21.72417,148.7292,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2022,12,22,Australia,AU,Queensland,-21.696207,148.691706,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,11,1,Australia,AU,Queensland,-21.684181,148.686518,EPSG:4326 +HUMAN_OBSERVATION,Rachel Rae,1,MALE,,2020,9,18,Australia,AU,Queensland,-21.415206,148.906269,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,10,16,Australia,AU,Queensland,-21.70884,148.99436,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,MALE,,2023,9,15,Australia,AU,Queensland,-22.495238,149.511401,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2022,2,18,Australia,AU,Queensland,-21.508868,148.343312,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,12,18,Australia,AU,Queensland,-21.72247,148.72774,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,3,Australia,AU,Queensland,-21.692159,148.689248,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2024,6,7,Australia,AU,Queensland,-21.42483,148.89346,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,24,Australia,AU,Queensland,-21.7114,148.69507,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,6,13,Australia,AU,Queensland,-21.46892,148.83064,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,6,10,Australia,AU,Queensland,-21.685216,148.690016,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,10,Australia,AU,Queensland,-21.71885,148.72551,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,6,5,Australia,AU,Queensland,-21.42527,148.89281,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,27,Australia,AU,Queensland,-21.74752,148.74344,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,7,18,Australia,AU,Queensland,-21.62572,148.69757,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,11,19,Australia,AU,Queensland,-21.72761,148.7316,EPSG:4326 +HUMAN_OBSERVATION,Raymond Greaves,1,,,2022,11,10,Australia,AU,Queensland,-21.551812,149.104593,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,6,6,Australia,AU,Queensland,-21.976,148.2309,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,10,Australia,AU,Queensland,-21.72862,148.73218,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,4,5,Australia,AU,Queensland,-21.468159,148.834164,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,5,Australia,AU,Queensland,-21.69247,148.68939,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2024,5,13,Australia,AU,Queensland,-21.42946,148.8871,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,10,Australia,AU,Queensland,-21.72191,148.59982,EPSG:4326 +HUMAN_OBSERVATION,Charmain Snell,1,,,2022,9,19,Australia,AU,Queensland,-21.349748,148.933904,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,9,6,Australia,AU,Queensland,-21.7844,148.68283,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,13,Australia,AU,Queensland,-21.73942,148.73867,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,8,7,Australia,AU,Queensland,-22.5904,148.332534,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,8,7,Australia,AU,Queensland,-21.50961,148.78686,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,11,13,Australia,AU,Queensland,-21.437238,148.875187,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,8,11,Australia,AU,Queensland,-21.684528,148.68809,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,11,13,Australia,AU,Queensland,-21.456237,148.857293,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,12,14,Australia,AU,Queensland,-21.70734,148.64171,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2024,8,28,Australia,AU,Queensland,-21.62685,148.6964,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,14,Australia,AU,Queensland,-21.5595,148.75727,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,27,Australia,AU,Queensland,-21.383646,148.944725,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,2,19,Australia,AU,Queensland,-21.67017,148.67611,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,8,23,Australia,AU,Queensland,-21.47049,148.82485,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2024,4,27,Australia,AU,Queensland,-21.43765,148.50867,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,8,1,Australia,AU,Queensland,-21.55094,148.7593,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,9,1,Australia,AU,Queensland,-21.749981,149.368562,EPSG:4326 +HUMAN_OBSERVATION,Raymond Greaves,1,,,2022,9,28,Australia,AU,Queensland,-21.551291,149.105158,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,19,Australia,AU,Queensland,-21.6161,148.716615,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,1,27,Australia,AU,Queensland,-22.510641,148.42668,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,19,Australia,AU,Queensland,-21.6981,148.69182,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,6,29,Australia,AU,Queensland,-21.703558,148.652262,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,7,18,Australia,AU,Queensland,-21.46767,148.83513,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2021,12,7,Australia,AU,Queensland,-21.526282,149.016014,EPSG:4326 +HUMAN_OBSERVATION,Erin Furmage,1,,,2023,5,9,Australia,AU,Queensland,-21.292468,149.279687,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2023,7,13,Australia,AU,Queensland,-20.030242,148.212594,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,7,20,Australia,AU,Queensland,-21.60101,148.73684,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,13,Australia,AU,Queensland,-21.73667,148.73713,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,9,21,Australia,AU,Queensland,-21.694778,148.68845,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,4,Australia,AU,Queensland,-21.72757,148.7316,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,8,25,Australia,AU,Queensland,-21.697206,148.691752,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,7,24,Australia,AU,Queensland,-21.67706,148.6924,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,10,18,Australia,AU,Queensland,-21.6867,148.69005,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,11,22,Australia,AU,Queensland,-21.690171,148.688113,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,10,4,Australia,AU,Queensland,-21.695227,148.696661,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,8,16,Australia,AU,Queensland,-21.47137,148.82198,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,18,Australia,AU,Queensland,-21.755147,148.748733,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,11,5,Australia,AU,Queensland,-21.709365,148.70254,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,1,Australia,AU,Queensland,-21.69774,148.69168,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,7,15,Australia,AU,Queensland,-21.84697,148.73511,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,11,6,Australia,AU,Queensland,-21.6948,148.68853,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,18,Australia,AU,Queensland,-21.707796,148.639769,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,12,18,Australia,AU,Queensland,-21.72168,148.72724,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2022,4,19,Australia,AU,Queensland,-21.427836,148.96794,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,5,22,Australia,AU,Queensland,-21.597887,148.631587,EPSG:4326 +HUMAN_OBSERVATION,Craig Simmons,1,,,2023,8,7,Australia,AU,Queensland,-22.634004,147.717673,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,10,Australia,AU,Queensland,-21.675147,148.679122,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,27,Australia,AU,Queensland,-21.390563,148.939749,EPSG:4326 +HUMAN_OBSERVATION,Katie McFadzen,1,,,2020,10,28,Australia,AU,Queensland,-21.690738,148.69248,EPSG:4326 +HUMAN_OBSERVATION,Raymond Greaves,1,,,2022,3,23,Australia,AU,Queensland,-21.551304,149.104325,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,9,26,Australia,AU,Queensland,-21.469683,148.828258,EPSG:4326 +HUMAN_OBSERVATION,Saskia von Fahland,1,,,2021,7,18,Australia,AU,Queensland,-21.332682,149.061733,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,17,Australia,AU,Queensland,-21.63408,148.67434,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,6,6,Australia,AU,Queensland,-21.46727,148.83626,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,11,29,Australia,AU,Queensland,-21.680482,148.682768,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2021,9,1,Australia,AU,Queensland,-21.272856,148.837631,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,9,22,Australia,AU,Queensland,-21.718228,148.610107,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2021,8,26,Australia,AU,Queensland,-21.834094,148.644364,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,31,Australia,AU,Queensland,-21.60471,148.73202,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,10,19,Australia,AU,Queensland,-21.47058,148.82506,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2024,6,7,Australia,AU,Queensland,-21.56678,148.75186,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,5,22,Australia,AU,Queensland,-21.41336,148.907789,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,21,Australia,AU,Queensland,-21.721561,148.727569,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,MALE,,2021,8,12,Australia,AU,Queensland,-21.334651,148.937499,EPSG:4326 +HUMAN_OBSERVATION,Rachel Rae,1,MALE,,2020,9,8,Australia,AU,Queensland,-21.441642,148.871156,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,2,8,Australia,AU,Queensland,-21.697783,148.691717,EPSG:4326 +HUMAN_OBSERVATION,Des Smith,1,MALE,,2022,10,18,Australia,AU,Queensland,-21.742906,148.679611,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,6,27,Australia,AU,Queensland,-21.62469,148.69862,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,6,25,Australia,AU,Queensland,-21.33883,148.937938,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2020,11,25,Australia,AU,Queensland,-21.820151,148.667765,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,10,29,Australia,AU,Queensland,-21.70318,148.70115,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2020,8,25,Australia,AU,Queensland,-21.703614,148.652197,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,10,17,Australia,AU,Queensland,-21.180119,149.056406,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,27,Australia,AU,Queensland,-21.70762,148.71053,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2023,10,30,Australia,AU,Queensland,-21.69204,148.68755,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,9,20,Australia,AU,Queensland,-22.466151,148.336285,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,8,22,Australia,AU,Queensland,-21.42469,148.89381,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,5,Australia,AU,Queensland,-21.72331,148.72893,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2021,6,24,Australia,AU,Queensland,-21.686054,148.684716,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,6,28,Australia,AU,Queensland,-21.732889,148.734849,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,9,20,Australia,AU,Queensland,-21.696713,148.690445,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,9,16,Australia,AU,Queensland,-21.433973,148.878592,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2023,10,7,Australia,AU,Queensland,-21.6979,148.69034,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2020,9,26,Australia,AU,Queensland,-21.438028,148.874476,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2021,8,23,Australia,AU,Queensland,-21.61646,148.714886,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,8,16,Australia,AU,Queensland,-21.50704,148.79332,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,11,9,Australia,AU,Queensland,-21.55282,148.75944,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,31,Australia,AU,Queensland,-21.56636,148.75193,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,7,23,Australia,AU,Queensland,-21.623638,148.699759,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,2,11,Australia,AU,Queensland,-21.67459,148.67882,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2024,8,26,Australia,AU,Queensland,-21.69065,148.69541,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,13,Australia,AU,Queensland,-21.70524,148.703568,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,27,Australia,AU,Queensland,-21.560501,148.756749,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,11,29,Australia,AU,Queensland,-21.68888,148.68822,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,6,22,Australia,AU,Queensland,-21.739891,148.738918,EPSG:4326 +HUMAN_OBSERVATION,Dan Dent,1,,,2023,6,20,Australia,AU,Queensland,-22.368664,149.322598,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,6,10,Australia,AU,Queensland,-21.435363,148.877299,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,10,Australia,AU,Queensland,-21.70766,148.63973,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke ,1,FEMALE,,2020,1,1,Australia,AU,Queensland,-21.754992,148.686158,EPSG:4326 +HUMAN_OBSERVATION,Charmain Snell,1,,,2022,8,29,Australia,AU,Queensland,-21.356713,148.937356,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,8,Australia,AU,Queensland,-21.68106,148.68658,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,21,Australia,AU,Queensland,-21.721561,148.727569,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,12,15,Australia,AU,Queensland,-21.7332,148.73531,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,27,Australia,AU,Queensland,-21.55894,148.757381,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,27,Australia,AU,Queensland,-21.72785,148.73151,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,FEMALE,,2020,7,16,Australia,AU,Queensland,-21.462944,148.847633,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,10,25,Australia,AU,Queensland,-21.289069,148.939721,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,28,Australia,AU,Queensland,-21.6891,148.68821,EPSG:4326 +HUMAN_OBSERVATION,Mehul Thanki,1,FEMALE,,2021,9,14,Australia,AU,Queensland,-21.616622,148.717797,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,12,15,Australia,AU,Queensland,-21.7367,148.737,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,22,Australia,AU,Queensland,-21.684521,148.68644,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,7,5,Australia,AU,Queensland,-21.8543,148.57946,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,2,21,Australia,AU,Queensland,-21.70485,148.69866,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,,,2021,8,8,Australia,AU,Queensland,-21.331447,148.938007,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,13,Australia,AU,Queensland,-21.67896,148.70981,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,15,Australia,AU,Queensland,-21.69712,148.69176,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,2,Australia,AU,Queensland,-21.51762,148.78165,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,10,17,Australia,AU,Queensland,-21.66577,148.69164,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,6,Australia,AU,Queensland,-21.767428,148.755128,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,11,6,Australia,AU,Queensland,-21.616059,148.716607,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,10,6,Australia,AU,Queensland,-21.696909,148.691058,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,8,27,Australia,AU,Queensland,-21.552737,148.759219,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,19,Australia,AU,Queensland,-21.612493,148.722029,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,8,31,Australia,AU,Queensland,-21.177357,149.144608,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,8,Australia,AU,Queensland,-21.7703,148.790087,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,8,31,Australia,AU,Queensland,-21.707817,148.639745,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,5,Australia,AU,Queensland,-22.7119,149.66912,EPSG:4326 +HUMAN_OBSERVATION,Alistair Melzer,1,,,2021,8,19,Australia,AU,Queensland,-22.470813,149.495859,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2022,1,31,Australia,AU,Queensland,-21.6766,148.6901,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,30,Australia,AU,Queensland,-21.677664,148.680344,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,27,Australia,AU,Queensland,-21.74752,148.74344,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,10,18,Australia,AU,Queensland,-21.54808,148.75975,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2024,7,28,Australia,AU,Queensland,-21.50766,148.792391,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,8,27,Australia,AU,Queensland,-21.45,148.86,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2023,9,19,Australia,AU,Queensland,-22.22367,148.19192,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2023,10,28,Australia,AU,Queensland,-21.69332,148.68768,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,13,Australia,AU,Queensland,-21.76255,148.75299,EPSG:4326 +HUMAN_OBSERVATION,Rachel Rae,1,,,2020,9,28,Australia,AU,Queensland,-21.470219,148.826253,EPSG:4326 +HUMAN_OBSERVATION,Pat Doolan,1,MALE,,2023,6,27,Australia,AU,Queensland,-21.624681,148.698671,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,8,28,Australia,AU,Queensland,-21.42586,148.89198,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,22,Australia,AU,Queensland,-21.451848,148.863577,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,8,27,Australia,AU,Queensland,-21.67506,148.69225,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,10,19,Australia,AU,Queensland,-21.67427,148.69227,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2021,11,6,Australia,AU,Queensland,-21.687365,148.688123,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,20,Australia,AU,Queensland,-21.65477,148.69352,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,9,21,Australia,AU,Queensland,-21.684206,148.686562,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,11,14,Australia,AU,Queensland,-21.41221,148.909,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,9,22,Australia,AU,Queensland,-21.684566,148.684546,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,9,19,Australia,AU,Queensland,-21.690634,148.678284,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,8,12,Australia,AU,Queensland,-21.684701,148.686514,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,11,4,Australia,AU,Queensland,-21.693857,148.689769,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,7,10,Australia,AU,Queensland,-21.81221,148.68224,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2023,9,3,Australia,AU,Queensland,-21.149385,149.065935,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,8,21,Australia,AU,Queensland,-21.63111,148.69385,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,10,29,Australia,AU,Queensland,-21.69707,148.691443,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2021,9,7,Australia,AU,Queensland,-21.630473,148.694136,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,6,22,Australia,AU,Queensland,-21.70356,148.65225,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2023,11,11,Australia,AU,Queensland,-21.49973,148.801351,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,10,Australia,AU,Queensland,-21.77599,148.75977,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,8,18,Australia,AU,Queensland,-21.432206,148.88019,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2024,11,11,Australia,AU,Queensland,-21.88048,148.41939,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2020,8,24,Australia,AU,Queensland,-21.55006,148.480635,EPSG:4326 +HUMAN_OBSERVATION,Dan Dent,1,,,2021,10,6,Australia,AU,Queensland,-21.778434,148.885952,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,12,11,Australia,AU,Queensland,-21.698061,148.691875,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,7,30,Australia,AU,Queensland,-21.178434,149.057083,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,18,Australia,AU,Queensland,-21.634489,148.685378,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2020,8,25,Australia,AU,Queensland,-22.453553,148.280215,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,12,16,Australia,AU,Queensland,-21.749298,148.690883,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,7,Australia,AU,Queensland,-21.739969,148.738983,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,8,24,Australia,AU,Queensland,-21.697089,148.691583,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,10,7,Australia,AU,Queensland,-21.754779,148.686387,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2021,9,22,Australia,AU,Queensland,-21.530414,149.018294,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,,,2021,8,11,Australia,AU,Queensland,-22.471405,149.49646,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2021,10,23,Australia,AU,Queensland,-21.679095,148.687474,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,5,1,Australia,AU,Queensland,-21.76041,148.68567,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,10,27,Australia,AU,Queensland,-21.45281,148.86193,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,10,16,Australia,AU,Queensland,-21.5785,148.74668,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2024,5,14,Australia,AU,Queensland,-21.67972,148.68244,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,8,22,Australia,AU,Queensland,-21.60836,148.72674,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,5,Australia,AU,Queensland,-21.724218,148.729263,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,9,9,Australia,AU,Queensland,-21.333344,148.939027,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2023,10,7,Australia,AU,Queensland,-21.69812,148.69185,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2024,9,8,Australia,AU,Queensland,-21.71797,148.7014,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2021,11,14,Australia,AU,Queensland,-21.393658,148.937631,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,6,Australia,AU,Queensland,-21.71679,148.72415,EPSG:4326 +HUMAN_OBSERVATION,Angus Mecoles,1,,,2023,2,21,Australia,AU,Queensland,-21.179285,148.677368,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,9,Australia,AU,Queensland,-21.681665,148.688568,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2020,10,28,Australia,AU,Queensland,-21.33964,148.938403,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,9,13,Australia,AU,Queensland,-21.535764,148.766334,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,10,Australia,AU,Queensland,-21.7199,148.72631,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,5,Australia,AU,Queensland,-21.72331,148.72893,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2021,9,14,Australia,AU,Queensland,-21.530278,149.018333,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,16,Australia,AU,Queensland,-21.70465,148.69813,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2024,8,28,Australia,AU,Queensland,-21.45051,148.86352,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,26,Australia,AU,Queensland,-21.71493,148.72306,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,10,6,Australia,AU,Queensland,-21.697369,148.690464,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,5,Australia,AU,Queensland,-21.7229,148.72917,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,9,18,Australia,AU,Queensland,-21.378579,148.947887,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,2,Australia,AU,Queensland,-21.68285,148.68609,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,10,17,Australia,AU,Queensland,-21.61884,148.71128,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,9,26,Australia,AU,Queensland,-21.357322,148.93725,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2022,1,5,Australia,AU,Queensland,-21.5582,148.75773,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2021,11,12,Australia,AU,Queensland,-21.699792,148.688982,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,9,16,Australia,AU,Queensland,-21.427987,148.889428,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,24,Australia,AU,Queensland,-21.596167,148.741256,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,4,24,Australia,AU,Queensland,-21.88086,148.76048,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,8,16,Australia,AU,Queensland,-21.548756,148.759583,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,11,25,Australia,AU,Queensland,-21.33552,149.064748,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,17,Australia,AU,Queensland,-21.69033,148.68835,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,6,22,Australia,AU,Queensland,-21.685445,148.686164,EPSG:4326 +HUMAN_OBSERVATION,Merel Goedegebuure,1,,,2021,6,1,Australia,AU,Queensland,-21.41169,148.909035,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,7,26,Australia,AU,Queensland,-21.429814,148.886402,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,11,Australia,AU,Queensland,-21.697219,148.690977,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,7,1,Australia,AU,Queensland,-21.696652,148.667365,EPSG:4326 +HUMAN_OBSERVATION,Mehul Thanki,1,MALE,,2020,11,28,Australia,AU,Queensland,-21.568952,148.750622,EPSG:4326 +HUMAN_OBSERVATION,Jacinta Smith,1,,,2021,8,20,Australia,AU,Queensland,-21.359574,149.089172,EPSG:4326 +HUMAN_OBSERVATION,Katie McFadzen,1,,,2020,10,18,Australia,AU,Queensland,-21.690702,148.693109,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,17,Australia,AU,Queensland,-21.634522,148.671299,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,7,Australia,AU,Queensland,-21.53597,148.76582,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,FEMALE,,2023,9,1,Australia,AU,Queensland,-21.713301,148.995397,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,5,2,Australia,AU,Queensland,-21.42922,148.88742,EPSG:4326 +HUMAN_OBSERVATION,Jodie Harker ,1,MALE,,2020,1,9,Australia,AU,Queensland,-21.9892,148.0255,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,6,12,Australia,AU,Queensland,-21.47111,148.82228,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,9,24,Australia,AU,Queensland,-21.459669,148.85381,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,2,12,Australia,AU,Queensland,-21.76358,148.75341,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,6,Australia,AU,Queensland,-21.740992,148.739167,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,5,22,Australia,AU,Queensland,-21.495872,148.803771,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2023,6,12,Australia,AU,Queensland,-21.50773,148.792664,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,11,29,Australia,AU,Queensland,-21.61945,148.65634,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,3,24,Australia,AU,Queensland,-21.693283,148.687598,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,3,Australia,AU,Queensland,-21.67896,148.68115,EPSG:4326 +HUMAN_OBSERVATION,Dan Dent,1,,,2021,10,6,Australia,AU,Queensland,-22.361284,149.302018,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,10,31,Australia,AU,Queensland,-21.81638,148.67792,EPSG:4326 +HUMAN_OBSERVATION,Rod Schlencker,1,,,2021,2,5,Australia,AU,Queensland,-21.81724,148.9294,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,11,8,Australia,AU,Queensland,-21.431003,148.882764,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2021,6,12,Australia,AU,Queensland,-21.648568,149.107851,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2021,12,19,Australia,AU,Queensland,-21.697174,148.691856,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,FEMALE,,2023,11,24,Australia,AU,Queensland,-21.59892,148.73868,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,6,Australia,AU,Queensland,-21.730281,148.733139,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2023,10,2,Australia,AU,Queensland,-21.69809,148.691467,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,3,Australia,AU,Queensland,-21.68497,148.68637,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,9,1,Australia,AU,Queensland,-21.697421,148.690443,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2024,8,19,Australia,AU,Queensland,-21.94229,148.29594,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,7,Australia,AU,Queensland,-21.36988,148.94345,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,27,Australia,AU,Queensland,-21.684282,148.686373,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2022,10,17,Australia,AU,Queensland,-21.697465,148.690611,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,,,2021,8,10,Australia,AU,Queensland,-21.381135,148.94656,EPSG:4326 +HUMAN_OBSERVATION,Dan Dent,1,MALE,,2023,9,27,Australia,AU,Queensland,-21.418487,148.902904,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,25,Australia,AU,Queensland,-21.68973,148.68802,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,1,3,Australia,AU,Queensland,-21.67848,148.68071,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,24,Australia,AU,Queensland,-21.7114,148.69507,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,2,11,Australia,AU,Queensland,-21.69242,148.68937,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,11,Australia,AU,Queensland,-21.707756,148.639664,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,10,30,Australia,AU,Queensland,-21.80689,148.68214,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,10,Australia,AU,Queensland,-21.68533,148.68493,EPSG:4326 +HUMAN_OBSERVATION,Rolf Schlagloth,1,MALE,,2023,8,31,Australia,AU,Queensland,-22.630781,149.266234,EPSG:4326 +HUMAN_OBSERVATION,Erin Furmage,1,,,2024,8,11,Australia,AU,Queensland,-21.299245,149.226987,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,18,Australia,AU,Queensland,-21.692496,148.689314,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,26,Australia,AU,Queensland,-21.70477,148.69833,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2021,10,18,Australia,AU,Queensland,-21.303888,148.93581,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2020,11,30,Australia,AU,Queensland,-21.452315,148.862199,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2022,1,12,Australia,AU,Queensland,-21.410509,148.912456,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,1,17,Australia,AU,Queensland,-21.72667,148.7309,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,11,6,Australia,AU,Queensland,-21.77134,148.82213,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,23,Australia,AU,Queensland,-21.730607,148.73329,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,11,Australia,AU,Queensland,-21.681864,148.683153,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2023,11,11,Australia,AU,Queensland,-21.3958,148.38299,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,1,15,Australia,AU,Queensland,-21.69712,148.69176,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,7,5,Australia,AU,Queensland,-21.54311,148.76055,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2024,5,14,Australia,AU,Queensland,-21.68348,148.68392,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,11,7,Australia,AU,Queensland,-21.665833,148.710556,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,9,6,Australia,AU,Queensland,-21.695269,148.690231,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,2,6,Australia,AU,Queensland,-21.62784,148.69536,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,15,Australia,AU,Queensland,-21.77063,148.78689,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2021,5,8,Australia,AU,Queensland,-22.63022,147.726308,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,7,Australia,AU,Queensland,-21.45772,148.85565,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,14,Australia,AU,Queensland,-21.7285,148.73201,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,9,27,Australia,AU,Queensland,-21.710025,148.694862,EPSG:4326 +HUMAN_OBSERVATION,Rachel Rae,1,MALE,,2020,8,23,Australia,AU,Queensland,-21.413689,148.907456,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,7,Australia,AU,Queensland,-21.73983,148.73838,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2023,9,27,Australia,AU,Queensland,-21.697823,148.691605,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,10,19,Australia,AU,Queensland,-21.67565,148.69225,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2021,6,21,Australia,AU,Queensland,-21.715789,148.701653,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke ,1,FEMALE,,2020,6,25,Australia,AU,Queensland,-21.47742,148.814778,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,8,9,Australia,AU,Queensland,-21.50078,148.80085,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2020,7,9,Australia,AU,Queensland,-21.5362,148.7657,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,5,10,Australia,AU,Queensland,-21.686314,148.686905,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,18,Australia,AU,Queensland,-21.746253,148.742431,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2024,5,14,Australia,AU,Queensland,-21.68079,148.68291,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2020,12,16,Australia,AU,Queensland,-21.74309,148.433104,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2022,9,13,Australia,AU,Queensland,-21.6166,148.71551,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2022,11,22,Australia,AU,Queensland,-21.57978,148.599417,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,11,6,Australia,AU,Queensland,-21.615428,148.717618,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,FEMALE,,2021,9,30,Australia,AU,Queensland,-21.843089,148.625561,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2020,11,11,Australia,AU,Queensland,-21.80268,148.7059,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,MALE,,2020,6,9,Australia,AU,Queensland,-21.409322,148.915318,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,MALE,,2021,8,12,Australia,AU,Queensland,-21.337995,148.937008,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,12,15,Australia,AU,Queensland,-21.74638,148.74232,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2022,3,27,Australia,AU,Queensland,-21.55243,148.46313,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,24,Australia,AU,Queensland,-21.637076,148.694276,EPSG:4326 +HUMAN_OBSERVATION,Sandy Whittington-Shaw,1,,,2023,12,11,Australia,AU,Queensland,-21.450832,149.143792,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2023,5,26,Australia,AU,Queensland,-21.698168,148.691854,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,10,20,Australia,AU,Queensland,-21.66402,148.6916,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2021,4,4,Australia,AU,Queensland,-21.45114,148.86318,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,10,19,Australia,AU,Queensland,-21.67537,148.69229,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,MALE,,2024,10,9,Australia,AU,Queensland,-21.470323,148.825503,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2021,6,10,Australia,AU,Queensland,-21.430203,148.885483,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,10,27,Australia,AU,Queensland,-21.74958,148.74526,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2020,12,16,Australia,AU,Queensland,-21.768355,148.470035,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,8,Australia,AU,Queensland,-21.684953,148.686386,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2021,8,23,Australia,AU,Queensland,-21.681828,148.683123,EPSG:4326 +HUMAN_OBSERVATION,Timothy Dalton,1,FEMALE,,2021,8,15,Australia,AU,Queensland,-21.32223,148.32396,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,,,2020,8,31,Australia,AU,Queensland,-21.628969,148.694619,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,6,Australia,AU,Queensland,-21.740992,148.739167,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,18,Australia,AU,Queensland,-21.72854,148.73245,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,10,Australia,AU,Queensland,-21.70839,148.71436,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2023,9,26,Australia,AU,Queensland,-21.779763,148.760924,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,3,Australia,AU,Queensland,-21.72042,148.70116,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,16,Australia,AU,Queensland,-21.634177,148.670316,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2023,4,11,Australia,AU,Queensland,-21.674836,148.678939,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2020,8,11,Australia,AU,Queensland,-21.68531,148.68685,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,4,Australia,AU,Queensland,-21.67996,148.68252,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,8,11,Australia,AU,Queensland,-21.46818,148.83392,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,10,19,Australia,AU,Queensland,-21.615351,148.717705,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,1,6,Australia,AU,Queensland,-21.737631,148.737258,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,8,21,Australia,AU,Queensland,-21.439196,148.873383,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,9,Australia,AU,Queensland,-21.693045,148.689566,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2021,9,25,Australia,AU,Queensland,-21.707475,148.640733,EPSG:4326 +HUMAN_OBSERVATION,Hayley Denman,1,,,2023,4,11,Australia,AU,Queensland,-21.488548,148.806901,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2020,8,11,Australia,AU,Queensland,-21.707836,148.639782,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2021,9,19,Australia,AU,Queensland,-21.694431,148.670986,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,FEMALE,,2021,9,19,Australia,AU,Queensland,-21.772426,148.947751,EPSG:4326 +HUMAN_OBSERVATION,Tyler Hood,1,,,2021,9,5,Australia,AU,Queensland,-21.197385,148.419408,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,10,22,Australia,AU,Queensland,-21.77697,148.76894,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,4,23,Australia,AU,Queensland,-21.679614,148.687578,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2022,1,13,Australia,AU,Queensland,-21.71886,148.7257,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2024,8,6,Australia,AU,Queensland,-21.746633,148.742652,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,13,Australia,AU,Queensland,-21.775294,148.759353,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,8,24,Australia,AU,Queensland,-21.697757,148.69095,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,MALE,,2024,9,15,Australia,AU,Queensland,-21.39504,148.93706,EPSG:4326 +HUMAN_OBSERVATION,Jody Baguley,1,,,2021,8,26,Australia,AU,Queensland,-21.697513,148.6911,EPSG:4326 +HUMAN_OBSERVATION,Ian Gottke,1,MALE,,2020,9,12,Australia,AU,Queensland,-21.536538,148.765685,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2022,11,12,Australia,AU,Queensland,-21.750061,148.744567,EPSG:4326 +HUMAN_OBSERVATION,Alan Voll,1,MALE,,2022,7,26,Australia,AU,Queensland,-21.862714,148.573744,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,FEMALE,,2023,1,12,Australia,AU,Queensland,-21.737739,148.737381,EPSG:4326 +HUMAN_OBSERVATION,Tyler Hood,1,,,2021,9,16,Australia,AU,Queensland,-21.617058,148.717861,EPSG:4326 +HUMAN_OBSERVATION,Charley Geddes,1,,,2023,4,21,Australia,AU,Queensland,-21.740422,148.738831,EPSG:4326 +HUMAN_OBSERVATION,Tweed Shire Council,1,,,2024,3,19,Australia,AU,New South Wales,-28.331479,153.553413,EPSG:4326 +HUMAN_OBSERVATION,Tweed Shire Council,1,,,2024,3,6,Australia,AU,New South Wales,-28.335426,153.545955,EPSG:4326 +HUMAN_OBSERVATION,Tweed Shire Council,1,,,2024,3,19,Australia,AU,New South Wales,-28.331479,153.553413,EPSG:4326 +HUMAN_OBSERVATION,Tweed Shire Council,1,,,2024,3,19,Australia,AU,New South Wales,-28.331479,153.553413,EPSG:4326 +HUMAN_OBSERVATION,Tweed Shire Council,1,,,2024,3,7,Australia,AU,New South Wales,-28.335426,153.545955,EPSG:4326 +HUMAN_OBSERVATION,Tweed Shire Council,1,,,2024,3,7,Australia,AU,New South Wales,-28.335426,153.545955,EPSG:4326 +HUMAN_OBSERVATION,Alan Dorber,1,,,2020,3,28,Australia,AU,Queensland,-27.61296,153.226262,EPSG:4326 +HUMAN_OBSERVATION,Zoë Bos,1,,,2023,1,14,Australia,AU,Queensland,-27.531679,153.071675,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2020,9,26,Australia,AU,Queensland,-27.534972,153.278664,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2021,8,18,Australia,AU,Queensland,-27.498803,153.230779,EPSG:4326 +HUMAN_OBSERVATION,Kris McBride,1,,,2022,11,26,Australia,AU,Queensland,-27.50811,153.228164,EPSG:4326 +HUMAN_OBSERVATION,Sarah Mapstone,1,,,2021,5,31,Australia,AU,Queensland,-27.517275,153.255448,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,11,15,Australia,AU,Queensland,-27.525156,153.279771,EPSG:4326 +HUMAN_OBSERVATION,Kirstyn Brown,1,,,2021,8,10,Australia,AU,Queensland,-27.180783,153.01657,EPSG:4326 +HUMAN_OBSERVATION,Troy Fender,1,,,2022,2,21,Australia,AU,Queensland,-27.546022,152.414757,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,14,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,paul gibbins,1,,,2020,8,4,Australia,AU,Queensland,-26.702277,152.967008,EPSG:4326 +HUMAN_OBSERVATION,Colleen Creaney,1,,,2020,8,26,Australia,AU,Queensland,-26.438253,152.997803,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2023,1,12,Australia,AU,Queensland,-27.538697,153.273854,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2023,4,14,Australia,AU,Queensland,-27.497621,153.222752,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2022,8,30,Australia,AU,Queensland,-27.502846,153.234311,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,6,30,Australia,AU,Queensland,-28.09557,153.45231,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,1,,,2020,7,25,Australia,AU,Queensland,-27.525438,153.281712,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,1,,,2020,10,20,Australia,AU,Queensland,-27.525139,153.284016,EPSG:4326 +HUMAN_OBSERVATION,ROSLYN Walters,1,,,2020,1,22,Australia,AU,Queensland,-27.87661,153.117977,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2020,10,17,Australia,AU,Queensland,-27.553351,153.271039,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,10,2,Australia,AU,Queensland,-27.489955,153.248241,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,10,17,Australia,AU,Queensland,-28.10023,153.45184,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,4,16,Australia,AU,Queensland,-27.548318,153.260685,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2020,12,9,Australia,AU,Queensland,-27.59517,153.264754,EPSG:4326 +HUMAN_OBSERVATION,Krystal-Louise McAlister,1,,,2020,11,2,Australia,AU,Queensland,-27.162829,152.985132,EPSG:4326 +HUMAN_OBSERVATION,Bob Aldred,1,,,2022,3,30,Australia,AU,Queensland,-27.521869,153.241383,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,12,19,Australia,AU,Queensland,-27.89065,153.32912,EPSG:4326 +HUMAN_OBSERVATION,Dori Sheldon,1,,,2021,7,27,Australia,AU,Queensland,-27.531786,152.848429,EPSG:4326 +HUMAN_OBSERVATION,Taryn Walters,1,,,2020,9,19,Australia,AU,Queensland,-27.594953,153.249353,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,11,5,Australia,AU,Queensland,-27.548577,153.256282,EPSG:4326 +HUMAN_OBSERVATION,Mike Graff,1,,,2021,2,14,Australia,AU,Queensland,-27.594953,153.249353,EPSG:4326 +HUMAN_OBSERVATION,Jenny Niall,1,,,2020,5,8,Australia,AU,Queensland,-27.488126,153.234088,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,10,9,Australia,AU,Queensland,-27.525665,153.281937,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,8,16,Australia,AU,Queensland,-27.540981,153.262084,EPSG:4326 +HUMAN_OBSERVATION,Morgan Phillips,1,,,2023,1,3,Australia,AU,Queensland,-27.814502,153.097658,EPSG:4326 +HUMAN_OBSERVATION,Vivienne Wilson,1,,,2023,9,24,Australia,AU,Queensland,-28.094661,153.327684,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,4,17,Australia,AU,Queensland,-27.490105,153.249199,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,9,14,Australia,AU,Queensland,-27.89017,153.32304,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,9,13,Australia,AU,Queensland,-28.14154,153.45116,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,10,22,Australia,AU,Queensland,-28.11845,153.42706,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2023,6,3,Australia,AU,Queensland,-27.511693,153.244402,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,8,18,Australia,AU,Queensland,-27.498803,153.230775,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,1,6,Australia,AU,Queensland,-27.511714,153.24884,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,10,10,Australia,AU,Queensland,-27.525293,153.284167,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2020,5,28,Australia,AU,Queensland,-27.594953,153.249353,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc.,1,,,2021,5,9,Australia,AU,Queensland,-27.549201,153.204148,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,2,19,Australia,AU,Queensland,-27.527771,153.206093,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,9,30,Australia,AU,Queensland,-27.544641,153.198872,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,2,11,Australia,AU,Queensland,-27.53148,153.282182,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,6,14,Australia,AU,Queensland,-27.548212,153.255852,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,2,11,Australia,AU,Queensland,-27.525424,153.284491,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,12,28,Australia,AU,Queensland,-27.542128,153.230154,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,10,20,Australia,AU,Queensland,-27.548526,153.256283,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,6,22,Australia,AU,Queensland,-27.548541,153.256273,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,1,,,2022,9,16,Australia,AU,Queensland,-27.532135,153.281929,EPSG:4326 +HUMAN_OBSERVATION,Michelle Douglas,1,,,2020,6,22,Australia,AU,Queensland,-27.626789,153.244799,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,4,23,Australia,AU,Queensland,-27.83763,153.37078,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2021,9,21,Australia,AU,Queensland,-27.524676,153.284496,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,1,17,Australia,AU,Queensland,-27.53295,153.282285,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2020,3,19,Australia,AU,Queensland,-27.502952,153.254192,EPSG:4326 +HUMAN_OBSERVATION,T Young,1,,,2024,7,18,Australia,AU,Queensland,-27.790618,152.635337,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2023,10,1,Australia,AU,Queensland,-27.53772,153.273683,EPSG:4326 +HUMAN_OBSERVATION,Harry Tucker,1,,,2021,11,11,Australia,AU,Queensland,-27.497832,153.245877,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2020,12,23,Australia,AU,Queensland,-27.553172,153.271391,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2022,12,5,Australia,AU,Queensland,-27.531922,153.274127,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,2,12,Australia,AU,Queensland,-28.1445,153.41465,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,10,10,Australia,AU,Queensland,-27.516038,153.250648,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,11,5,Australia,AU,Queensland,-27.5374,153.273797,EPSG:4326 +HUMAN_OBSERVATION,Victor Leeon,1,,,2021,7,3,Australia,AU,Queensland,-27.547545,153.252257,EPSG:4326 +HUMAN_OBSERVATION,Hilary Stubbs,1,,,2020,2,27,Australia,AU,Queensland,-27.916601,153.283364,EPSG:4326 +HUMAN_OBSERVATION,Daniel Petrak,1,,,2023,7,21,Australia,AU,Queensland,-27.535474,153.090355,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2020,1,11,Australia,AU,Queensland,-27.539057,153.272739,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2020,10,17,Australia,AU,Queensland,-27.553351,153.271039,EPSG:4326 +HUMAN_OBSERVATION,Gerald Richards,1,,,2021,10,21,Australia,AU,Queensland,-26.667472,153.043836,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2024,3,22,Australia,AU,Queensland,-27.525153,153.284176,EPSG:4326 +HUMAN_OBSERVATION,Lisa Phillips,1,,,2023,10,17,Australia,AU,Queensland,-27.539444,153.250492,EPSG:4326 +HUMAN_OBSERVATION,Chris Tritter,1,,,2021,3,10,Australia,AU,Queensland,-27.546095,153.204179,EPSG:4326 +HUMAN_OBSERVATION,Cheryl Bolzenius,1,,,2020,5,3,Australia,AU,Queensland,-27.490672,153.244937,EPSG:4326 +HUMAN_OBSERVATION,Peter McCallum,1,,,2023,10,16,Australia,AU,Queensland,-27.501072,153.245299,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2024,5,25,Australia,AU,Queensland,-27.525192,153.284088,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2020,12,9,Australia,AU,Queensland,-27.554209,153.271896,EPSG:4326 +HUMAN_OBSERVATION,Kylie Neville,1,,,2020,2,8,Australia,AU,Queensland,-27.380999,152.937074,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,8,21,Australia,AU,Queensland,-27.525654,153.283321,EPSG:4326 +HUMAN_OBSERVATION,Malachy Purcell,1,,,2022,4,29,Australia,AU,Queensland,-27.507949,153.246283,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,3,13,Australia,AU,Queensland,-27.490861,153.247726,EPSG:4326 +HUMAN_OBSERVATION,Jenny Woodward,1,,,2021,11,5,Australia,AU,Queensland,-27.489999,153.236671,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,10,5,Australia,AU,Queensland,-27.93739,153.35659,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,1,17,Australia,AU,Queensland,-28.14359,153.41671,EPSG:4326 +HUMAN_OBSERVATION,Kent Haylock,1,,,2021,11,8,Australia,AU,Queensland,-27.53251,153.25211,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2020,10,31,Australia,AU,Queensland,-27.540947,153.274219,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2022,11,7,Australia,AU,Queensland,-28.11045,153.38495,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2023,7,22,Australia,AU,Queensland,-27.515222,153.250465,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,10,2,Australia,AU,Queensland,-27.548521,153.256279,EPSG:4326 +HUMAN_OBSERVATION,Jennifer Niall,1,,,2020,7,31,Australia,AU,Queensland,-27.490951,153.249526,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2020,7,18,Australia,AU,Queensland,-27.50354,153.260419,EPSG:4326 +HUMAN_OBSERVATION,Chris Watson,1,,,2021,2,5,Australia,AU,Queensland,-26.285213,152.735376,EPSG:4326 +HUMAN_OBSERVATION,Jeni Josefski,1,,,2024,1,21,Australia,AU,Queensland,-27.514699,153.25195,EPSG:4326 +HUMAN_OBSERVATION,Victor Leeon,1,,,2020,1,18,Australia,AU,Queensland,-27.533302,153.282462,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,5,2,Australia,AU,Queensland,-25.320127,152.857114,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,8,14,Australia,AU,Queensland,-28.11395,153.40965,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,11,1,Australia,AU,Queensland,-27.583841,153.281316,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,10,27,Australia,AU,Queensland,-28.14409,153.43926,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,8,6,Australia,AU,Queensland,-27.525966,153.283307,EPSG:4326 +HUMAN_OBSERVATION,Peter McCallum,1,,,2020,12,27,Australia,AU,Queensland,-27.501323,153.245162,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,3,11,Australia,AU,Queensland,-27.525871,153.283474,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Inc,1,,,2023,9,6,Australia,AU,Queensland,-27.491286,153.242037,EPSG:4326 +HUMAN_OBSERVATION,Angelina Martinez,1,,,2021,10,2,Australia,AU,Queensland,-27.502484,153.070572,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,1,Australia,AU,Queensland,-27.89066,153.32912,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,9,29,Australia,AU,Queensland,-28.11538,153.40567,EPSG:4326 +HUMAN_OBSERVATION,Cheryl Bolzenius,1,,,2020,9,30,Australia,AU,Queensland,-27.49748,153.23056,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2022,4,16,Australia,AU,Queensland,-27.537749,153.273691,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2023,3,2,Australia,AU,Queensland,-27.553451,153.252611,EPSG:4326 +HUMAN_OBSERVATION,Victor Leeon,1,,,2020,1,29,Australia,AU,Queensland,-27.556523,153.251608,EPSG:4326 +HUMAN_OBSERVATION,Linda Garbett,1,,,2020,1,3,Australia,AU,Queensland,-27.536777,153.176877,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2024,4,22,Australia,AU,Queensland,-27.538729,153.273683,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2021,4,30,Australia,AU,Queensland,-27.548777,153.256464,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2020,10,3,Australia,AU,Queensland,-27.534233,153.28358,EPSG:4326 +HUMAN_OBSERVATION,Tara Leigh,1,,,2020,5,15,Australia,AU,Queensland,-27.381574,152.97824,EPSG:4326 +HUMAN_OBSERVATION,RACH SALMON,1,,,2020,11,3,Australia,AU,Queensland,-27.543139,153.273662,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2020,1,5,Australia,AU,Queensland,-27.551436,153.27206,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2021,8,13,Australia,AU,Queensland,-27.548852,153.256377,EPSG:4326 +HUMAN_OBSERVATION,Sally Brink,1,,,2023,6,15,Australia,AU,Queensland,-27.915992,153.384901,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,11,27,Australia,AU,Queensland,-27.54442,153.271952,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2020,4,8,Australia,AU,Queensland,-27.513133,153.242601,EPSG:4326 +HUMAN_OBSERVATION,Daniel Petrak,1,,,2024,10,24,Australia,AU,Queensland,-27.535222,153.089977,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2021,4,26,Australia,AU,Queensland,-27.9122,153.34165,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,8,24,Australia,AU,Queensland,-28.093919,153.457392,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2023,11,15,Australia,AU,Queensland,-27.529556,153.276628,EPSG:4326 +HUMAN_OBSERVATION,Peter Miani,1,,,2021,8,14,Australia,AU,Queensland,-27.494664,153.234749,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Inc,1,,,2023,8,29,Australia,AU,Queensland,-27.569094,153.302276,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2020,11,8,Australia,AU,Queensland,-27.553103,153.271474,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2020,10,22,Australia,AU,Queensland,-27.545519,153.269964,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,2,Australia,AU,Queensland,-27.95863,153.37702,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,11,3,Australia,AU,Queensland,-27.525564,153.283858,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2021,1,8,Australia,AU,Queensland,-27.553627,153.27359,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,10,31,Australia,AU,Queensland,-27.548573,153.256276,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,7,20,Australia,AU,Queensland,-28.11066,153.37114,EPSG:4326 +HUMAN_OBSERVATION,Kaye Weston,1,,,2021,8,30,Australia,AU,Queensland,-27.526693,153.095341,EPSG:4326 +HUMAN_OBSERVATION,Carol Reid,1,,,2022,3,18,Australia,AU,Queensland,-27.500197,153.231434,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2020,10,11,Australia,AU,Queensland,-27.551979,153.272081,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,10,19,Australia,AU,Queensland,-27.507564,153.224888,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2020,9,26,Australia,AU,Queensland,-27.529655,153.282466,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,1,24,Australia,AU,Queensland,-27.550143,153.228892,EPSG:4326 +HUMAN_OBSERVATION,Lydia Ford,1,,,2023,4,16,Australia,AU,Queensland,-26.530611,151.836679,EPSG:4326 +HUMAN_OBSERVATION,Rebecca Bennett,1,,,2023,3,13,Australia,AU,Queensland,-27.48803,153.233303,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,1,,,2020,11,12,Australia,AU,Queensland,-27.524591,153.284467,EPSG:4326 +HUMAN_OBSERVATION,Amanda Pahlke,1,,,2020,9,15,Australia,AU,Queensland,-27.715559,153.172751,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,25,Australia,AU,Queensland,-28.09636,153.45302,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,10,30,Australia,AU,Queensland,-27.548566,153.256259,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2020,11,15,Australia,AU,Queensland,-27.549476,153.203504,EPSG:4326 +HUMAN_OBSERVATION,Helen O,1,,,2020,10,13,Australia,AU,Queensland,-27.53398,153.264019,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2020,10,3,Australia,AU,Queensland,-27.531929,153.28188,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2024,8,24,Australia,AU,Queensland,-27.569036,153.297373,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,10,22,Australia,AU,Queensland,-27.5587,153.273411,EPSG:4326 +HUMAN_OBSERVATION,Michelle Douglas,1,,,2020,5,7,Australia,AU,Queensland,-27.627242,153.24517,EPSG:4326 +HUMAN_OBSERVATION,julie koppe,1,,,2021,5,3,Australia,AU,Queensland,-27.542327,153.252125,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,5,18,Australia,AU,Queensland,-27.544322,153.277223,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,8,15,Australia,AU,Queensland,-27.511729,153.249815,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,8,24,Australia,AU,Queensland,-27.548563,153.256276,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,9,29,Australia,AU,Queensland,-27.538627,153.182013,EPSG:4326 +HUMAN_OBSERVATION,Karen Schell,1,,,2020,1,22,Australia,AU,Queensland,-27.540455,153.25352,EPSG:4326 +HUMAN_OBSERVATION,Jessica Rachel,1,,,2021,9,8,Australia,AU,Queensland,-27.27332,152.976693,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2020,9,23,Australia,AU,Queensland,-27.55,153.27,EPSG:4326 +HUMAN_OBSERVATION,Nina Johnson,1,,,2022,9,26,Australia,AU,Queensland,-27.759123,153.127007,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,11,21,Australia,AU,Queensland,-27.544294,153.277284,EPSG:4326 +HUMAN_OBSERVATION,Grace Marshall,1,,,2021,6,21,Australia,AU,Queensland,-27.511491,153.103554,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,10,1,Australia,AU,Queensland,-28.09703,153.44696,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2020,11,9,Australia,AU,Queensland,-27.89069,153.32894,EPSG:4326 +HUMAN_OBSERVATION,Robert Fishlock,1,,,2024,10,31,Australia,AU,New South Wales,-34.004089,150.894867,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2022,8,12,Australia,AU,Queensland,-27.503093,153.196728,EPSG:4326 +HUMAN_OBSERVATION,Megan Manning,1,,,2021,1,30,Australia,AU,Queensland,-27.581733,153.277942,EPSG:4326 +HUMAN_OBSERVATION,Tim Mawn,1,,,2020,9,26,Australia,AU,Queensland,-27.248834,152.985595,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,12,21,Australia,AU,Queensland,-27.539923,153.274759,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2023,6,3,Australia,AU,Queensland,-27.510691,153.248775,EPSG:4326 +HUMAN_OBSERVATION,City of Gold Coast,2,,,2023,11,19,Australia,AU,Queensland,-27.93334,153.35896,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2020,4,3,Australia,AU,Queensland,-27.539747,153.271068,EPSG:4326 +HUMAN_OBSERVATION,Katrina-Rose Evans,1,,,2021,10,17,Australia,AU,Queensland,-26.689958,153.066595,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,1,,,2022,4,30,Australia,AU,Queensland,-27.489611,153.247726,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,6,16,Australia,AU,Queensland,-27.53866,153.270659,EPSG:4326 +HUMAN_OBSERVATION,Gilberto Castillo,1,,,2020,8,14,Australia,AU,Queensland,-27.513239,153.220162,EPSG:4326 +HUMAN_OBSERVATION,Andrew Blinco,1,,,2021,8,1,Australia,AU,Queensland,-27.409476,152.918004,EPSG:4326 +HUMAN_OBSERVATION,Charlotte Carter,1,,,2021,10,4,Australia,AU,Queensland,-27.5477,153.257344,EPSG:4326 +HUMAN_OBSERVATION,Becky Green,1,,,2020,11,16,Australia,AU,Queensland,-27.120487,152.978809,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,12,2,Australia,AU,Queensland,-27.531713,153.282083,EPSG:4326 +HUMAN_OBSERVATION,Trudy Stone,1,,,2021,11,5,Australia,AU,Queensland,-27.497618,153.206057,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2020,11,27,Australia,AU,Queensland,-27.552161,153.270126,EPSG:4326 +HUMAN_OBSERVATION,Peter McCallum,1,,,2022,8,27,Australia,AU,Queensland,-27.500945,153.245125,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,3,16,Australia,AU,Queensland,-27.532878,153.282223,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,10,27,Australia,AU,Queensland,-27.493856,153.217528,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,1,,,2022,4,26,Australia,AU,Queensland,-27.494257,153.252313,EPSG:4326 +HUMAN_OBSERVATION,Kate Henderson,1,,,2021,9,8,Australia,AU,Queensland,-27.493762,153.218785,EPSG:4326 +HUMAN_OBSERVATION,Anne McBurnie,1,,,2020,2,18,Australia,AU,Queensland,-27.560734,153.226958,EPSG:4326 +HUMAN_OBSERVATION,Carol Reid,1,,,2022,3,26,Australia,AU,Queensland,-27.500197,153.231434,EPSG:4326 +HUMAN_OBSERVATION,Emily,1,,,2023,3,29,Australia,AU,Queensland,-27.54885,152.860825,EPSG:4326 +HUMAN_OBSERVATION,Melanie,2,,2 koalas in one tree . They stayed for several weeks.,2021,2,22,Australia,AU,New South Wales,-28.556988,153.549493,EPSG:4326 +HUMAN_OBSERVATION,L Li,1,,,2023,5,22,Australia,AU,Queensland,-27.525336,153.278386,EPSG:4326 +HUMAN_OBSERVATION,Amy Carmichael,1,,,2021,12,27,Australia,AU,Queensland,-27.491142,153.197097,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2023,1,14,Australia,AU,Queensland,-27.498973,153.244636,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,10,27,Australia,AU,Queensland,-27.595599,153.296943,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,10,16,Australia,AU,Queensland,-27.525031,153.284058,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2021,5,24,Australia,AU,Queensland,-27.534164,153.279939,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2024,6,13,Australia,AU,Queensland,-27.544214,153.276855,EPSG:4326 +HUMAN_OBSERVATION,Ruth Knight,1,,,2021,6,27,Australia,AU,Queensland,-27.492193,153.195979,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,9,28,Australia,AU,Queensland,-27.531425,153.252995,EPSG:4326 +HUMAN_OBSERVATION,Karen Knight,1,,,2020,8,14,Australia,AU,Queensland,-27.556563,153.249587,EPSG:4326 +HUMAN_OBSERVATION,Cheryl Bolzenius,1,,,2020,8,6,Australia,AU,Queensland,-27.568508,153.360839,EPSG:4326 +HUMAN_OBSERVATION,David Clark,1,,,2023,11,7,Australia,AU,Queensland,-27.51694,153.192864,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2021,9,21,Australia,AU,Queensland,-27.525361,153.281835,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,6,22,Australia,AU,Queensland,-27.526888,153.281677,EPSG:4326 +HUMAN_OBSERVATION,TimL,2,,Thanks to Barbara for the initial sighting.,2023,11,17,Australia,AU,Queensland,-27.532405,153.281932,EPSG:4326 +HUMAN_OBSERVATION,Kylie Castellari,1,,,2020,9,10,Australia,AU,Queensland,-27.498658,153.228867,EPSG:4326 +HUMAN_OBSERVATION,Liz Clarke,1,,,2021,8,4,Australia,AU,Queensland,-27.531721,153.251681,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2021,11,23,Australia,AU,Queensland,-27.534912,153.276249,EPSG:4326 +HUMAN_OBSERVATION,John Singleton,1,,,2021,11,15,Australia,AU,Queensland,-27.419252,151.743289,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2020,11,9,Australia,AU,Queensland,-27.545254,153.279135,EPSG:4326 +HUMAN_OBSERVATION,Ben Avery,1,,,2021,10,18,Australia,AU,Queensland,-27.500782,153.230385,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,11,13,Australia,AU,Queensland,-27.53143,153.282084,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,7,19,Australia,AU,Queensland,-27.529448,153.281216,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,10,26,Australia,AU,Queensland,-27.525267,153.278838,EPSG:4326 +HUMAN_OBSERVATION,Scott Clark,1,,,2020,1,1,Australia,AU,Queensland,-27.320861,152.935811,EPSG:4326 +HUMAN_OBSERVATION,TESS SEBASTIAN,1,,,2023,5,27,Australia,AU,Queensland,-27.280642,152.965402,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,4,8,Australia,AU,Queensland,-27.54863,153.260903,EPSG:4326 +HUMAN_OBSERVATION,Leo Tompkins,1,,,2020,1,17,Australia,AU,Queensland,-26.24252,152.662895,EPSG:4326 +HUMAN_OBSERVATION,pdmantis,2,,mum and joey,2020,9,12,Australia,AU,New South Wales,-34.490357,150.465243,EPSG:4326 +HUMAN_OBSERVATION,Katherine Dewane,1,,,2020,10,10,Australia,AU,Queensland,-27.480369,152.934325,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,4,5,Australia,AU,Queensland,-27.603566,153.246366,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2022,8,3,Australia,AU,Queensland,-27.535603,153.273846,EPSG:4326 +HUMAN_OBSERVATION,Annelise Brown,1,,,2022,9,28,Australia,AU,Queensland,-27.212189,152.953827,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,10,12,Australia,AU,Queensland,-27.536857,153.276102,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,5,7,Australia,AU,Queensland,-27.548597,153.256251,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,4,6,Australia,AU,Queensland,-27.533948,153.282986,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2022,8,20,Australia,AU,Queensland,-27.535603,153.273846,EPSG:4326 +HUMAN_OBSERVATION,Alyce Kirkwood,1,,,2020,8,31,Australia,AU,Queensland,-27.568508,153.360839,EPSG:4326 +HUMAN_OBSERVATION,Katia Strounina,1,,,2020,2,14,Australia,AU,Queensland,-27.612663,153.294769,EPSG:4326 +HUMAN_OBSERVATION,Andrew Coombes,1,,,2020,11,17,Australia,AU,Queensland,-27.496323,153.235328,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,5,7,Australia,AU,Queensland,-27.53101,153.281667,EPSG:4326 +HUMAN_OBSERVATION,Kev De,1,,,2020,3,3,Australia,AU,Queensland,-27.549659,153.271932,EPSG:4326 +HUMAN_OBSERVATION,Mark Barrett,1,,,2021,10,29,Australia,AU,Queensland,-26.725784,153.023247,EPSG:4326 +HUMAN_OBSERVATION,Susanne Maree Capewell,2,FEMALE,,2021,10,23,Australia,AU,Queensland,-25.426213,151.637059,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,11,20,Australia,AU,Queensland,-27.525783,153.283422,EPSG:4326 +HUMAN_OBSERVATION,Andrew Struthers,2,,,2021,9,23,Australia,AU,Queensland,-25.426213,151.637059,EPSG:4326 +HUMAN_OBSERVATION,Peter McCallum,1,,,2021,8,19,Australia,AU,Queensland,-27.501126,153.244863,EPSG:4326 +HUMAN_OBSERVATION,Suzanne Birkett,1,,,2021,2,11,Australia,AU,Queensland,-27.519014,153.261858,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,10,8,Australia,AU,Queensland,-27.548573,153.256277,EPSG:4326 +HUMAN_OBSERVATION,Coral morton,1,,,2020,9,20,Australia,AU,Queensland,-27.54624,153.269463,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,12,28,Australia,AU,Queensland,-27.539412,153.274536,EPSG:4326 +HUMAN_OBSERVATION,kataryna mcmillan,1,,,2022,12,26,Australia,AU,Queensland,-27.508825,153.08068,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,11,20,Australia,AU,Queensland,-27.526613,153.276684,EPSG:4326 +HUMAN_OBSERVATION,Nathan Marshall,1,,,2023,4,11,Australia,AU,Queensland,-28.106415,153.393838,EPSG:4326 +HUMAN_OBSERVATION,Dean Thompson,1,,,2022,1,8,Australia,AU,Queensland,-27.316825,152.932923,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2023,4,13,Australia,AU,Queensland,-27.511702,153.252507,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,7,16,Australia,AU,Queensland,-27.548587,153.256279,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,5,10,Australia,AU,Queensland,-27.546019,153.262485,EPSG:4326 +HUMAN_OBSERVATION,Brenda Birch,1,,,2023,7,23,Australia,AU,Queensland,-26.22168,152.648759,EPSG:4326 +HUMAN_OBSERVATION,Melissa Hines,1,,,2021,3,7,Australia,AU,Queensland,-27.758552,153.115224,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2020,2,18,Australia,AU,Queensland,-27.546443,153.271287,EPSG:4326 +HUMAN_OBSERVATION,Robyn McNally,2,FEMALE,,2022,10,11,Australia,AU,Queensland,-25.426213,151.637059,EPSG:4326 +HUMAN_OBSERVATION,Alkira Muckan,1,,,2023,2,15,Australia,AU,Queensland,-27.241801,152.993304,EPSG:4326 +HUMAN_OBSERVATION,Allan Jefford,1,,,2021,10,9,Australia,AU,Queensland,-27.489838,153.236582,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2023,9,30,Australia,AU,Queensland,-27.490285,153.241201,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2020,4,9,Australia,AU,Queensland,-27.4938,153.239507,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2021,8,12,Australia,AU,Queensland,-27.519062,153.258899,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2022,9,6,Australia,AU,Queensland,-27.499992,153.239467,EPSG:4326 +HUMAN_OBSERVATION,Carolyn Coughran,1,,,2020,10,23,Australia,AU,Queensland,-27.730278,153.171944,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2022,11,19,Australia,AU,Queensland,-27.531922,153.274127,EPSG:4326 +HUMAN_OBSERVATION,Caroline Watson,1,,,2022,9,10,Australia,AU,Queensland,-27.611128,153.295714,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,2,,,2023,1,1,Australia,AU,Queensland,-27.525093,153.28388,EPSG:4326 +HUMAN_OBSERVATION,Reece Musson,1,,,2021,10,10,Australia,AU,Queensland,-27.250757,153.009896,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,4,5,Australia,AU,Queensland,-27.539083,153.27232,EPSG:4326 +HUMAN_OBSERVATION,Eileen Morgan,1,,,2020,11,10,Australia,AU,Queensland,-27.49898,153.091089,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2020,12,4,Australia,AU,Queensland,-27.564712,153.304835,EPSG:4326 +HUMAN_OBSERVATION,David Tooes,1,,,2023,5,4,Australia,AU,Queensland,-26.09176,152.781122,EPSG:4326 +HUMAN_OBSERVATION,Lancec Hewlett,1,,,2020,12,4,Australia,AU,Queensland,-27.566208,153.30421,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc.,1,,,2020,1,14,Australia,AU,Queensland,-27.553088,153.257154,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2021,10,7,Australia,AU,Queensland,-27.548887,153.256294,EPSG:4326 +HUMAN_OBSERVATION,Helen,1,,,2021,11,17,Australia,AU,Queensland,-28.03563,153.265147,EPSG:4326 +HUMAN_OBSERVATION,Julia Morgan,1,,,2023,1,9,Australia,AU,Queensland,-27.240651,152.981586,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,8,29,Australia,AU,Queensland,-27.495174,153.231814,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2022,11,27,Australia,AU,Queensland,-27.304296,152.945583,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,1,,,2020,8,28,Australia,AU,Queensland,-27.525573,153.28186,EPSG:4326 +HUMAN_OBSERVATION,Deidre May,1,,,2023,5,2,Australia,AU,Queensland,-26.418161,152.714682,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2021,10,15,Australia,AU,Queensland,-27.547654,153.257447,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,6,26,Australia,AU,Queensland,-27.525585,153.281941,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,1,18,Australia,AU,Queensland,-27.49182,153.214924,EPSG:4326 +HUMAN_OBSERVATION,David Roberts,1,,,2020,10,28,Australia,AU,Queensland,-27.567269,153.197267,EPSG:4326 +HUMAN_OBSERVATION,Peter McCallum,1,,,2021,2,16,Australia,AU,Queensland,-27.501433,153.24513,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,8,28,Australia,AU,Queensland,-27.548098,153.266502,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2020,10,25,Australia,AU,Queensland,-27.553363,153.271063,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,3,25,Australia,AU,Queensland,-27.531066,153.281854,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2023,6,3,Australia,AU,Queensland,-27.579389,153.294123,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2020,12,1,Australia,AU,Queensland,-27.529471,153.281422,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,1,25,Australia,AU,Queensland,-27.525655,153.283527,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2024,3,22,Australia,AU,Queensland,-27.525161,153.284144,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2024,5,5,Australia,AU,Queensland,-27.532588,153.282033,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,3,15,Australia,AU,Queensland,-27.540236,153.271214,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2020,6,25,Australia,AU,Queensland,-27.609531,153.295472,EPSG:4326 +HUMAN_OBSERVATION,Tony McCracken,1,,,2020,12,17,Australia,AU,Queensland,-27.519954,153.261206,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,1,11,Australia,AU,Queensland,-27.538701,153.274244,EPSG:4326 +HUMAN_OBSERVATION,Allison gilroy,1,,,2023,7,23,Australia,AU,Queensland,-27.502782,153.225405,EPSG:4326 +HUMAN_OBSERVATION,Anna Simpson,1,,,2021,9,7,Australia,AU,Queensland,-27.556866,153.278945,EPSG:4326 +HUMAN_OBSERVATION,Margaret McDonald,1,,,2021,5,28,Australia,AU,Queensland,-27.533286,153.061897,EPSG:4326 +HUMAN_OBSERVATION,Betty Clarke,2,,,2021,9,13,Australia,AU,Queensland,-27.531575,153.251569,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2023,5,10,Australia,AU,Queensland,-27.531917,153.274133,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,12,2,Australia,AU,Queensland,-27.503366,153.237628,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,1,19,Australia,AU,Queensland,-27.642425,153.306823,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2020,8,18,Australia,AU,Queensland,-27.529153,153.272051,EPSG:4326 +HUMAN_OBSERVATION,Leah Burns,2,,,2020,9,12,Australia,AU,Queensland,-27.545639,153.044699,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,11,14,Australia,AU,Queensland,-27.502231,153.097131,EPSG:4326 +HUMAN_OBSERVATION,Rachael Irvine,1,,,2020,12,11,Australia,AU,Queensland,-27.516341,153.085635,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,9,30,Australia,AU,Queensland,-27.525216,153.284142,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2021,11,17,Australia,AU,Queensland,-27.535045,153.27625,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,6,6,Australia,AU,Queensland,-27.530216,153.281791,EPSG:4326 +HUMAN_OBSERVATION,Julia Whittaker,1,,,2022,9,7,Australia,AU,Queensland,-27.515753,153.061107,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2021,4,26,Australia,AU,Queensland,-27.533105,153.28264,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2023,6,19,Australia,AU,Queensland,-27.498504,153.228972,EPSG:4326 +HUMAN_OBSERVATION,Nicole Boulton,1,,,2020,3,6,Australia,AU,Queensland,-27.527939,153.111616,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2020,7,19,Australia,AU,Queensland,-27.525571,153.281907,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2020,9,17,Australia,AU,Queensland,-27.484275,152.95015,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,4,12,Australia,AU,Queensland,-27.525348,153.281833,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2020,12,5,Australia,AU,Queensland,-27.582653,153.279203,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2022,1,16,Australia,AU,Queensland,-27.539369,153.273615,EPSG:4326 +HUMAN_OBSERVATION,Lucas Owen,1,,,2021,12,4,Australia,AU,Queensland,-27.518757,152.931854,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2023,10,1,Australia,AU,Queensland,-27.53772,153.273704,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,2,,,2020,6,11,Australia,AU,Queensland,-27.52556,153.281857,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2024,9,19,Australia,AU,Queensland,-27.52559,153.2821,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,1,13,Australia,AU,Queensland,-27.538832,153.274577,EPSG:4326 +HUMAN_OBSERVATION,CM Bindels,2,,,2021,1,31,Australia,AU,Queensland,-27.293143,152.955766,EPSG:4326 +HUMAN_OBSERVATION,Meg Johnson,1,,,2022,10,17,Australia,AU,Queensland,-27.498527,153.224881,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2023,6,22,Australia,AU,Queensland,-27.502571,153.225558,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,10,2,Australia,AU,Queensland,-27.490044,153.247405,EPSG:4326 +HUMAN_OBSERVATION,Kelly Halliwell,1,,,2023,12,28,Australia,AU,Queensland,-27.361139,152.092388,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2021,1,4,Australia,AU,Queensland,-27.553389,153.271057,EPSG:4326 +HUMAN_OBSERVATION,Nancy FitzSimmons,1,,,2020,11,21,Australia,AU,Queensland,-27.49663,153.403531,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,12,4,Australia,AU,Queensland,-27.537622,153.180918,EPSG:4326 +HUMAN_OBSERVATION,Lynne Livingstone,1,,,2020,10,1,Australia,AU,Queensland,-27.547652,153.257785,EPSG:4326 +HUMAN_OBSERVATION,Jennifer Niall,1,,,2021,2,2,Australia,AU,Queensland,-27.535445,153.243088,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,5,18,Australia,AU,Queensland,-27.548579,153.256277,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,1,,,2020,2,1,Australia,AU,Queensland,-27.527018,153.282044,EPSG:4326 +HUMAN_OBSERVATION,Aimee Wilson,1,,,2021,10,8,Australia,AU,Queensland,-27.525094,153.069879,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,8,29,Australia,AU,Queensland,-27.497378,153.230668,EPSG:4326 +HUMAN_OBSERVATION,Jes Michel,1,,,2022,10,12,Australia,AU,Queensland,-27.660842,153.140807,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,1,22,Australia,AU,Queensland,-27.549981,153.260023,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,10,25,Australia,AU,Queensland,-27.536739,153.273633,EPSG:4326 +HUMAN_OBSERVATION,Amanda Armstrong,1,,,2024,4,29,Australia,AU,Queensland,-26.62207,151.721535,EPSG:4326 +HUMAN_OBSERVATION,Lisa Marie,1,,,2021,9,17,Australia,AU,Queensland,-27.498013,153.230653,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2020,9,26,Australia,AU,Queensland,-27.525506,153.282015,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,1,,,2020,12,30,Australia,AU,Queensland,-27.525751,153.283303,EPSG:4326 +HUMAN_OBSERVATION,Eric Fehr,1,,,2020,10,20,Australia,AU,Queensland,-27.513242,153.0992,EPSG:4326 +HUMAN_OBSERVATION,Allan Jefford,2,,,2021,10,7,Australia,AU,Queensland,-27.48934,153.236371,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2020,12,20,Australia,AU,Queensland,-27.539408,153.274545,EPSG:4326 +HUMAN_OBSERVATION,Nicole Mackay,1,,,2021,9,6,Australia,AU,Queensland,-27.776557,153.009045,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,2,,,2021,11,19,Australia,AU,Queensland,-27.525289,153.284114,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2020,9,26,Australia,AU,Queensland,-27.525935,153.277316,EPSG:4326 +HUMAN_OBSERVATION,Aimee Wagner,1,,,2020,7,1,Australia,AU,Queensland,-27.590237,153.295324,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2023,12,12,Australia,AU,Queensland,-27.53795,153.271208,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2020,1,25,Australia,AU,Queensland,-27.498505,153.400767,EPSG:4326 +HUMAN_OBSERVATION,Sian Marta,1,,,2021,4,21,Australia,AU,Queensland,-27.629437,153.268833,EPSG:4326 +HUMAN_OBSERVATION,Anne McBurnie,2,,,2020,3,24,Australia,AU,Queensland,-27.560833,153.226944,EPSG:4326 +HUMAN_OBSERVATION,Victor Leeon,1,,,2020,9,30,Australia,AU,Queensland,-27.547594,153.252526,EPSG:4326 +HUMAN_OBSERVATION,alice_travis89@yahoo.com.au,2,,,2021,7,10,Australia,AU,Queensland,-27.529089,153.272954,EPSG:4326 +HUMAN_OBSERVATION,Matt,1,,,2022,4,28,Australia,AU,Queensland,-27.326559,152.937847,EPSG:4326 +HUMAN_OBSERVATION,Daniel Petrak,1,,,2024,1,21,Australia,AU,Queensland,-27.535454,153.090463,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,12,15,Australia,AU,Queensland,-27.5156,153.251561,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,10,4,Australia,AU,Queensland,-27.531309,153.250575,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2021,1,31,Australia,AU,Queensland,-27.539414,153.273647,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,8,27,Australia,AU,Queensland,-27.531479,153.28195,EPSG:4326 +HUMAN_OBSERVATION,Maria Joliffe,1,,,2020,9,12,Australia,AU,Queensland,-27.541191,153.271174,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,1,24,Australia,AU,Queensland,-27.549624,153.229274,EPSG:4326 +HUMAN_OBSERVATION,Peter McCallum,1,,,2020,12,27,Australia,AU,Queensland,-27.501273,153.245087,EPSG:4326 +HUMAN_OBSERVATION,Andrew Gurnett,1,,,2021,1,5,Australia,AU,Queensland,-27.554214,153.27198,EPSG:4326 +HUMAN_OBSERVATION,DonLesley Richardson,1,,,2021,9,1,Australia,AU,Queensland,-27.535522,153.057243,EPSG:4326 +HUMAN_OBSERVATION,Tara Ross,1,,,2022,10,11,Australia,AU,Queensland,-27.55109,153.06202,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,10,10,Australia,AU,Queensland,-27.525198,153.284132,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,2,11,Australia,AU,Queensland,-27.529342,153.281241,EPSG:4326 +HUMAN_OBSERVATION,Leah Burns,2,,,2020,9,11,Australia,AU,Queensland,-27.5458,153.044673,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,3,25,Australia,AU,Queensland,-27.529464,153.281321,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,4,21,Australia,AU,Queensland,-27.490113,153.249341,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2020,10,6,Australia,AU,Queensland,-27.499832,153.222909,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,6,8,Australia,AU,Queensland,-27.530721,153.281795,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,4,7,Australia,AU,Queensland,-27.620528,153.387158,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2024,6,29,Australia,AU,Queensland,-27.532533,153.28198,EPSG:4326 +HUMAN_OBSERVATION,calaischick84,1,,,2023,9,16,Australia,AU,Queensland,-27.295,152.9927,EPSG:4326 +HUMAN_OBSERVATION,Ebonie Kammholz,2,,,2023,11,15,Australia,AU,Queensland,-27.504777,152.566907,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,2,,,2021,9,19,Australia,AU,Queensland,-27.543984,153.275123,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,12,21,Australia,AU,Queensland,-27.530818,153.281905,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2021,9,21,Australia,AU,Queensland,-27.526293,153.282608,EPSG:4326 +HUMAN_OBSERVATION,John Murton,1,,,2021,10,8,Australia,AU,Queensland,-26.726645,152.051676,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2021,9,5,Australia,AU,Queensland,-27.529905,153.271762,EPSG:4326 +HUMAN_OBSERVATION,Peter Redmond,1,,,2020,12,3,Australia,AU,Queensland,-27.721428,153.187946,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,8,9,Australia,AU,Queensland,-27.49906,153.228661,EPSG:4326 +HUMAN_OBSERVATION,Peter McCallum,1,,,2021,9,19,Australia,AU,Queensland,-27.501103,153.245244,EPSG:4326 +HUMAN_OBSERVATION,Kerry May,1,,,2022,8,15,Australia,AU,Queensland,-26.747028,153.031654,EPSG:4326 +HUMAN_OBSERVATION,Louise Bell,1,,,2023,5,8,Australia,AU,Queensland,-27.250055,152.940209,EPSG:4326 +HUMAN_OBSERVATION,Leah Burns,1,,,2020,9,14,Australia,AU,Queensland,-27.5458,153.044673,EPSG:4326 +HUMAN_OBSERVATION,Carol Reid,1,,,2021,9,30,Australia,AU,Queensland,-27.501515,153.231812,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,2,4,Australia,AU,Queensland,-27.562619,153.252497,EPSG:4326 +HUMAN_OBSERVATION,Grant Shatford,1,,,2021,4,7,Australia,AU,Queensland,-28.117917,153.388045,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,11,5,Australia,AU,Queensland,-27.548412,153.255844,EPSG:4326 +HUMAN_OBSERVATION,Anna Gooding,1,,,2021,9,18,Australia,AU,Queensland,-27.554832,153.274856,EPSG:4326 +HUMAN_OBSERVATION,Heidi Robson,1,,,2021,12,28,Australia,AU,Queensland,-26.458721,152.994649,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,7,30,Australia,AU,Queensland,-27.427456,153.530099,EPSG:4326 +HUMAN_OBSERVATION,Miara Feather,1,,,2021,7,22,Australia,AU,Queensland,-27.555003,153.067017,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,2,18,Australia,AU,Queensland,-27.525783,153.28305,EPSG:4326 +HUMAN_OBSERVATION,Harry Tucker,1,,,2021,9,24,Australia,AU,Queensland,-27.499461,153.246628,EPSG:4326 +HUMAN_OBSERVATION,Victor Leeon,1,,,2021,2,5,Australia,AU,Queensland,-27.529476,153.281242,EPSG:4326 +HUMAN_OBSERVATION,Meryl Vanhinsbergh,1,,,2024,10,5,Australia,AU,Queensland,-27.538797,153.269298,EPSG:4326 +HUMAN_OBSERVATION,Jade Welch,1,,,2021,6,26,Australia,AU,Queensland,-27.502657,153.207929,EPSG:4326 +HUMAN_OBSERVATION,Marty Fay,1,,,2022,3,3,Australia,AU,Queensland,-27.534347,153.283476,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2020,11,17,Australia,AU,Queensland,-27.526354,153.283615,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,1,14,Australia,AU,Queensland,-27.490351,153.248205,EPSG:4326 +HUMAN_OBSERVATION,alex mackenzie,1,,,2023,1,6,Australia,AU,Queensland,-27.183446,151.273885,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2020,9,15,Australia,AU,Queensland,-27.508354,153.224369,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,1,25,Australia,AU,Queensland,-27.538807,153.274213,EPSG:4326 +HUMAN_OBSERVATION,Jennifer Niall,1,,,2020,7,27,Australia,AU,Queensland,-27.583326,153.281696,EPSG:4326 +HUMAN_OBSERVATION,Jose Salvo,2,,,2020,11,18,Australia,AU,Queensland,-27.530833,153.098861,EPSG:4326 +HUMAN_OBSERVATION,Katrina L,1,,,2023,2,11,Australia,AU,Queensland,-27.523154,152.128716,EPSG:4326 +HUMAN_OBSERVATION,David Murphy,1,,,2021,12,1,Australia,AU,Queensland,-27.50149,153.17157,EPSG:4326 +HUMAN_OBSERVATION,Eden Skye,2,,,2021,8,17,Australia,AU,Queensland,-27.529661,153.084203,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,2,,,2020,3,11,Australia,AU,Queensland,-27.526328,153.282594,EPSG:4326 +HUMAN_OBSERVATION,Cheryl Bolzenius,1,,,2021,3,10,Australia,AU,Queensland,-27.490365,153.245241,EPSG:4326 +HUMAN_OBSERVATION,Susan Jarvis,1,,,2021,8,18,Australia,AU,Queensland,-27.502319,153.082201,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2021,12,29,Australia,AU,Queensland,-27.530826,153.282211,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2021,2,24,Australia,AU,Queensland,-27.553196,153.271545,EPSG:4326 +HUMAN_OBSERVATION,Patrina McLeod,1,,,2023,3,3,Australia,AU,Queensland,-27.247327,152.426778,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2022,4,20,Australia,AU,Queensland,-27.532805,153.281417,EPSG:4326 +HUMAN_OBSERVATION,Sarah Glassford,1,,,2022,9,24,Australia,AU,Queensland,-27.493064,153.208108,EPSG:4326 +HUMAN_OBSERVATION,Jan Simpson,1,,,2020,9,12,Australia,AU,Queensland,-27.502771,153.225628,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,8,20,Australia,AU,Queensland,-27.525897,153.267719,EPSG:4326 +HUMAN_OBSERVATION,Jared Salem,1,,,2021,3,29,Australia,AU,Queensland,-27.554336,153.272032,EPSG:4326 +HUMAN_OBSERVATION,Graeme Shaw,1,,,2023,1,23,Australia,AU,Queensland,-27.503566,153.225423,EPSG:4326 +HUMAN_OBSERVATION,Bailey Biro,1,,,2022,12,23,Australia,AU,Queensland,-27.557954,153.050781,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2020,4,4,Australia,AU,Queensland,-27.530719,153.281842,EPSG:4326 +HUMAN_OBSERVATION,Jenny Woodward,1,,,2021,11,17,Australia,AU,Queensland,-27.490582,153.23679,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,4,17,Australia,AU,Queensland,-27.490864,153.248025,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2023,1,1,Australia,AU,Queensland,-27.537107,153.278253,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,11,3,Australia,AU,Queensland,-27.532693,153.278926,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,3,19,Australia,AU,Queensland,-27.530057,153.20949,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2023,4,13,Australia,AU,Queensland,-27.551569,153.252144,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2020,12,22,Australia,AU,Queensland,-27.536862,153.273809,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc.,1,,,2020,7,28,Australia,AU,Queensland,-27.543145,153.254698,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,8,8,Australia,AU,Queensland,-27.525878,153.284023,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2024,7,30,Australia,AU,Queensland,-27.525552,153.283812,EPSG:4326 +HUMAN_OBSERVATION,Brooke Mundey,1,,,2020,1,5,Australia,AU,Queensland,-28.030977,153.307047,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,10,12,Australia,AU,Queensland,-27.544324,153.27724,EPSG:4326 +HUMAN_OBSERVATION,Narelle Andrews-Tate,1,,,2020,8,30,Australia,AU,Queensland,-27.73576,153.172578,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2020,9,27,Australia,AU,Queensland,-27.543553,153.272898,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2023,4,13,Australia,AU,Queensland,-27.497722,153.223372,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2023,11,19,Australia,AU,Queensland,-27.526147,153.274184,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2022,4,3,Australia,AU,Queensland,-27.536808,153.272574,EPSG:4326 +HUMAN_OBSERVATION,Monica Barker,2,,,2022,12,6,Australia,AU,Queensland,-28.033499,153.336411,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc.,1,,,2021,8,18,Australia,AU,Queensland,-27.509185,153.201852,EPSG:4326 +HUMAN_OBSERVATION,Daniel Petrak,2,,,2023,4,14,Australia,AU,Queensland,-27.535427,153.090375,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2020,8,2,Australia,AU,Queensland,-27.979445,152.74624,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,2,,,2021,9,29,Australia,AU,Queensland,-27.574398,153.271366,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,5,25,Australia,AU,Queensland,-27.548585,153.256295,EPSG:4326 +HUMAN_OBSERVATION,Dave Taylor,1,,,2021,1,1,Australia,AU,Queensland,-27.543031,153.055861,EPSG:4326 +HUMAN_OBSERVATION,David Sutton,1,,,2021,12,30,Australia,AU,Queensland,-27.410808,152.890006,EPSG:4326 +HUMAN_OBSERVATION,Carrie McCarthy,1,,,2021,8,22,Australia,AU,Queensland,-27.551003,153.054383,EPSG:4326 +HUMAN_OBSERVATION,Diana & Jock Murray,2,,,2021,2,24,Australia,AU,Queensland,-27.519138,153.259832,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2024,3,15,Australia,AU,Queensland,-27.544253,153.2761,EPSG:4326 +HUMAN_OBSERVATION,Kristina Patch,1,,,2021,10,25,Australia,AU,Queensland,-27.622251,152.899858,EPSG:4326 +HUMAN_OBSERVATION,Mark Quinn,1,,,2021,1,5,Australia,AU,Queensland,-27.496883,153.093768,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2021,3,10,Australia,AU,Queensland,-27.547146,153.204083,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,9,26,Australia,AU,Queensland,-27.525222,153.284122,EPSG:4326 +HUMAN_OBSERVATION,Liam Dobson,2,,,2020,8,14,Australia,AU,Queensland,-27.498679,153.225217,EPSG:4326 +HUMAN_OBSERVATION,Erin Walmsley,2,,,2021,8,5,Australia,AU,Queensland,-27.408414,152.920006,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2020,10,24,Australia,AU,Queensland,-27.531819,153.211066,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,2,,,2020,3,11,Australia,AU,Queensland,-27.526337,153.282594,EPSG:4326 +HUMAN_OBSERVATION,Jason Russell,1,,,2021,10,8,Australia,AU,Queensland,-27.429747,153.520288,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,1,1,Australia,AU,Queensland,-27.525333,153.281857,EPSG:4326 +HUMAN_OBSERVATION,Kent Haylock,1,,,2021,11,14,Australia,AU,Queensland,-27.53309,153.252171,EPSG:4326 +HUMAN_OBSERVATION,Tom Elze,1,,,2023,3,6,Australia,AU,Queensland,-27.299113,152.970421,EPSG:4326 +HUMAN_OBSERVATION,Matt Dryden,1,,,2020,5,1,Australia,AU,Queensland,-26.473089,153.061599,EPSG:4326 +HUMAN_OBSERVATION,Tim 9,1,,,2020,10,19,Australia,AU,Queensland,-27.146463,152.968333,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,10,11,Australia,AU,Queensland,-27.544326,153.27724,EPSG:4326 +HUMAN_OBSERVATION,Ronald Schuepfer,1,,,2023,1,27,Australia,AU,Queensland,-26.142408,152.863584,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,2,,,2023,9,12,Australia,AU,Queensland,-27.537421,153.27384,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,7,15,Australia,AU,Queensland,-27.525734,153.283958,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2023,4,26,Australia,AU,Queensland,-27.473538,153.239319,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2021,11,27,Australia,AU,Queensland,-27.512101,153.251526,EPSG:4326 +HUMAN_OBSERVATION,John Muller ,1,,,2020,10,31,Australia,AU,Queensland,-27.594953,153.249353,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,1,,,2020,10,8,Australia,AU,Queensland,-27.52556,153.28193,EPSG:4326 +HUMAN_OBSERVATION,Vikki Lowe,1,,,2020,8,7,Australia,AU,Queensland,-27.913344,153.208314,EPSG:4326 +HUMAN_OBSERVATION,Clodagh Harding,1,,,2020,9,9,Australia,AU,Queensland,-27.594953,153.249353,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,5,2,Australia,AU,Queensland,-27.525304,153.284091,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2021,10,14,Australia,AU,Queensland,-27.498112,153.228861,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,2,,,2020,9,3,Australia,AU,Queensland,-27.49977,153.257852,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2023,3,25,Australia,AU,Queensland,-27.646883,153.231282,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,10,15,Australia,AU,Queensland,-27.52349,153.285787,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,4,12,Australia,AU,Queensland,-27.535336,153.278462,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2023,12,29,Australia,AU,Queensland,-27.53803,153.273608,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2021,3,12,Australia,AU,Queensland,-27.536918,153.278539,EPSG:4326 +HUMAN_OBSERVATION,Theressan Julian Hansen,1,,,2022,12,9,Australia,AU,Queensland,-27.725328,153.047335,EPSG:4326 +HUMAN_OBSERVATION,Alison Woodley,1,,,2021,2,8,Australia,AU,Queensland,-27.494041,153.404711,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,2,,,2020,6,11,Australia,AU,Queensland,-27.525597,153.281832,EPSG:4326 +HUMAN_OBSERVATION,David Roberts,1,,,2020,11,7,Australia,AU,Queensland,-27.568554,153.197601,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,12,23,Australia,AU,Queensland,-27.531424,153.282105,EPSG:4326 +HUMAN_OBSERVATION,Anne McBurnie,2,,,2020,1,14,Australia,AU,Queensland,-27.560763,153.226969,EPSG:4326 +HUMAN_OBSERVATION,Lawry Scandar,1,,,2020,6,18,Australia,AU,Queensland,-27.626596,153.244471,EPSG:4326 +HUMAN_OBSERVATION,Matt Prime,1,,,2020,10,25,Australia,AU,Queensland,-27.492232,153.244772,EPSG:4326 +HUMAN_OBSERVATION,Scott Behnke,1,,,2023,2,16,Australia,AU,Queensland,-27.81932,153.137922,EPSG:4326 +HUMAN_OBSERVATION,Barb Rooyen,1,,,2020,9,6,Australia,AU,Queensland,-27.568508,153.360839,EPSG:4326 +HUMAN_OBSERVATION,Dave Basham,1,,,2023,4,20,Australia,AU,Queensland,-26.675976,152.464432,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,12,6,Australia,AU,Queensland,-27.494819,153.21198,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2020,9,19,Australia,AU,Queensland,-27.123759,152.938485,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2020,12,9,Australia,AU,Queensland,-27.55312,153.27186,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,9,30,Australia,AU,Queensland,-27.532919,153.282117,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,10,21,Australia,AU,Queensland,-27.534885,153.278542,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,9,2,Australia,AU,Queensland,-27.537522,153.276145,EPSG:4326 +HUMAN_OBSERVATION,Victor Leeon,1,,,2020,2,11,Australia,AU,Queensland,-27.547425,153.253198,EPSG:4326 +HUMAN_OBSERVATION,Nicholas Harman,1,,,2020,10,12,Australia,AU,Queensland,-28.018894,153.168057,EPSG:4326 +HUMAN_OBSERVATION,Victor Leeon,1,,,2020,2,3,Australia,AU,Queensland,-27.539818,153.274746,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,3,7,Australia,AU,Queensland,-27.503289,153.226957,EPSG:4326 +HUMAN_OBSERVATION,Dominic Al-Mudaris,1,,,2020,10,28,Australia,AU,Queensland,-27.597951,153.258147,EPSG:4326 +HUMAN_OBSERVATION,Porsche Rothlisberg,1,,,2021,5,23,Australia,AU,Queensland,-27.551801,153.253477,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2020,4,4,Australia,AU,Queensland,-27.532166,153.281678,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2023,7,6,Australia,AU,Queensland,-27.500485,153.233879,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,11,12,Australia,AU,Queensland,-27.537418,153.273877,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2021,5,15,Australia,AU,Queensland,-27.489999,153.248737,EPSG:4326 +HUMAN_OBSERVATION,Homegrown Gardengirl,1,,,2022,9,22,Australia,AU,Queensland,-27.72063,153.183526,EPSG:4326 +HUMAN_OBSERVATION,Sarah Cahill,2,,,2020,3,28,Australia,AU,Queensland,-27.529782,153.281247,EPSG:4326 +HUMAN_OBSERVATION,Bob Aldred,1,,,2022,1,18,Australia,AU,Queensland,-27.521869,153.241383,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2020,9,23,Australia,AU,Queensland,-27.553354,153.271151,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,3,13,Australia,AU,Queensland,-27.490205,153.248327,EPSG:4326 +HUMAN_OBSERVATION,Jenny Edwards,1,,,2021,4,23,Australia,AU,Queensland,-27.408595,152.918321,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,10,15,Australia,AU,Queensland,-27.525545,153.282155,EPSG:4326 +HUMAN_OBSERVATION,Sandra Barclay,2,,,2020,9,18,Australia,AU,Queensland,-26.456589,152.881365,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2020,7,19,Australia,AU,Queensland,-27.530601,153.281829,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2023,10,1,Australia,AU,Queensland,-27.537739,153.273704,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2020,9,22,Australia,AU,Queensland,-27.551912,153.273261,EPSG:4326 +HUMAN_OBSERVATION,Ann-Maree Land,1,,,2020,11,27,Australia,AU,Queensland,-27.501956,153.221956,EPSG:4326 +HUMAN_OBSERVATION,Vicki Hawkins,1,,,2021,5,22,Australia,AU,Queensland,-27.518415,153.103795,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2023,3,31,Australia,AU,Queensland,-27.531922,153.274127,EPSG:4326 +HUMAN_OBSERVATION,Tracey Crain,1,,,2021,9,13,Australia,AU,Queensland,-28.090355,153.326683,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,11,27,Australia,AU,Queensland,-27.495923,153.253586,EPSG:4326 +HUMAN_OBSERVATION,Allan Jefford,1,,,2020,9,2,Australia,AU,Queensland,-27.500297,153.234082,EPSG:4326 +HUMAN_OBSERVATION,Hugh Marshall,1,,,2020,10,1,Australia,AU,Queensland,-27.538924,153.058915,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2023,8,19,Australia,AU,Queensland,-27.489384,153.20425,EPSG:4326 +HUMAN_OBSERVATION,Linda Garbett,1,,,2020,1,3,Australia,AU,Queensland,-27.536648,153.176889,EPSG:4326 +HUMAN_OBSERVATION,Liz Clarke,1,,,2021,8,19,Australia,AU,Queensland,-27.531641,153.252426,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,1,25,Australia,AU,Queensland,-27.525579,153.282147,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2020,2,15,Australia,AU,Queensland,-27.553354,153.270969,EPSG:4326 +HUMAN_OBSERVATION,Peter McCallum,1,,,2023,1,15,Australia,AU,Queensland,-27.500837,153.24551,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,8,5,Australia,AU,Queensland,-27.540803,153.264014,EPSG:4326 +HUMAN_OBSERVATION,John Sutherland,1,,,2021,12,14,Australia,AU,Queensland,-27.495896,153.254277,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2024,6,27,Australia,AU,Queensland,-27.537452,153.276128,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,2,,,2020,1,29,Australia,AU,Queensland,-27.543984,153.261312,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2021,9,13,Australia,AU,Queensland,-27.548884,153.256304,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,3,5,Australia,AU,Queensland,-27.508447,153.250239,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2021,7,13,Australia,AU,Queensland,-27.548836,153.256374,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2024,3,12,Australia,AU,Queensland,-27.537481,153.276089,EPSG:4326 +HUMAN_OBSERVATION,Abi Koellner,1,,,2020,11,24,Australia,AU,Queensland,-27.639864,153.257844,EPSG:4326 +HUMAN_OBSERVATION,Liz Worthington,1,,,2020,1,9,Australia,AU,Queensland,-27.294576,152.951171,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2021,10,17,Australia,AU,Queensland,-27.548888,153.256286,EPSG:4326 +HUMAN_OBSERVATION,Sophie Jensen,1,,,2022,3,15,Australia,AU,Queensland,-27.516295,153.086043,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,6,15,Australia,AU,Queensland,-27.548583,153.256285,EPSG:4326 +HUMAN_OBSERVATION,Claire Hicks,1,,,2023,7,27,Australia,AU,Queensland,-27.73659,153.195388,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,5,19,Australia,AU,Queensland,-27.548581,153.256281,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2021,11,1,Australia,AU,Queensland,-27.548885,153.256283,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,3,12,Australia,AU,Queensland,-27.525046,153.28415,EPSG:4326 +HUMAN_OBSERVATION,Sue McGruer,1,,,2022,6,28,Australia,AU,Queensland,-27.521212,152.866323,EPSG:4326 +HUMAN_OBSERVATION,Allan Morrison,1,,,2023,9,11,Australia,AU,Queensland,-27.499164,153.091026,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,8,31,Australia,AU,Queensland,-27.498787,153.230403,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,5,19,Australia,AU,Queensland,-27.548552,153.256308,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2021,10,6,Australia,AU,Queensland,-27.539005,153.272708,EPSG:4326 +HUMAN_OBSERVATION,Jane Hitchcock,1,,,2020,8,14,Australia,AU,Queensland,-27.594953,153.249353,EPSG:4326 +HUMAN_OBSERVATION,Sharon Gooderham,1,,,2023,8,27,Australia,AU,Queensland,-27.646747,151.974356,EPSG:4326 +HUMAN_OBSERVATION,Peter McCallum,1,,,2023,12,5,Australia,AU,Queensland,-27.50102,153.245115,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,4,18,Australia,AU,Queensland,-27.548592,153.256251,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2020,9,19,Australia,AU,Queensland,-27.54093,153.271201,EPSG:4326 +HUMAN_OBSERVATION,Colleen Wight,1,,,2020,9,7,Australia,AU,Queensland,-27.513722,153.229604,EPSG:4326 +HUMAN_OBSERVATION,Christopher Brown,1,,,2021,9,16,Australia,AU,Queensland,-27.442353,152.922053,EPSG:4326 +HUMAN_OBSERVATION,Peter Kallaste,1,,,2020,12,3,Australia,AU,Queensland,-26.20498,152.481265,EPSG:4326 +HUMAN_OBSERVATION,Kent Haylock,1,,,2021,11,14,Australia,AU,Queensland,-27.594953,153.249353,EPSG:4326 +HUMAN_OBSERVATION,Joanne Crane,1,,,2020,12,14,Australia,AU,Queensland,-27.55293,153.231812,EPSG:4326 +HUMAN_OBSERVATION,Samantha Simmonds,2,,,2023,6,7,Australia,AU,Queensland,-27.837164,153.357291,EPSG:4326 +HUMAN_OBSERVATION,Leanne Ryan,1,,,2020,8,24,Australia,AU,Queensland,-27.69999,153.193219,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2020,9,26,Australia,AU,Queensland,-27.539073,153.271101,EPSG:4326 +HUMAN_OBSERVATION,Dan Parker,1,,,2020,1,14,Australia,AU,Queensland,-27.560807,153.22698,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,1,,,2020,9,26,Australia,AU,Queensland,-27.534776,153.283544,EPSG:4326 +HUMAN_OBSERVATION,Jade Welch,2,,,2021,6,28,Australia,AU,Queensland,-27.502743,153.207747,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2021,12,29,Australia,AU,Queensland,-27.531397,153.282146,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2021,7,30,Australia,AU,Queensland,-27.549772,153.203368,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,1,1,Australia,AU,Queensland,-27.52654,153.28291,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,2,11,Australia,AU,Queensland,-27.525598,153.283697,EPSG:4326 +HUMAN_OBSERVATION,Christopher Parr,1,,,2021,4,14,Australia,AU,Queensland,-27.513111,153.080556,EPSG:4326 +HUMAN_OBSERVATION,Jenny Woodward,1,,,2021,11,8,Australia,AU,Queensland,-27.489961,153.236511,EPSG:4326 +HUMAN_OBSERVATION,Kent Haylock,1,,,2021,11,18,Australia,AU,Queensland,-27.53309,153.252171,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2020,11,25,Australia,AU,Queensland,-27.553206,153.271319,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,3,12,Australia,AU,Queensland,-27.532961,153.282138,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,2,,,2023,4,14,Australia,AU,Queensland,-27.490059,153.248475,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,3,12,Australia,AU,Queensland,-27.530983,153.282195,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2023,5,5,Australia,AU,Queensland,-27.507145,153.233122,EPSG:4326 +HUMAN_OBSERVATION,Kelly Robertson,1,,,2021,2,3,Australia,AU,Queensland,-27.511214,153.248017,EPSG:4326 +HUMAN_OBSERVATION,Liz Schultze,1,,,2020,5,18,Australia,AU,Queensland,-27.530511,153.110991,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,11,13,Australia,AU,Queensland,-27.531453,153.282126,EPSG:4326 +HUMAN_OBSERVATION,Victor Leeon,1,,,2021,2,5,Australia,AU,Queensland,-27.529171,153.280963,EPSG:4326 +HUMAN_OBSERVATION,Alison Woodley,1,,,2021,2,8,Australia,AU,Queensland,-27.401315,153.438306,EPSG:4326 +HUMAN_OBSERVATION,Koala,1,,,2021,9,21,Australia,AU,Queensland,-27.552112,153.077939,EPSG:4326 +HUMAN_OBSERVATION,Josh Amey,1,,,2022,9,17,Australia,AU,Queensland,-27.546486,153.2669,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2020,12,1,Australia,AU,Queensland,-27.534299,153.283336,EPSG:4326 +HUMAN_OBSERVATION,Dominic Al-Mudaris,1,,,2020,7,22,Australia,AU,Queensland,-27.54766,153.217213,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,12,25,Australia,AU,Queensland,-27.538266,153.182175,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2021,9,12,Australia,AU,Queensland,-27.558171,153.277665,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2021,5,15,Australia,AU,Queensland,-27.49039,153.248106,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2022,9,16,Australia,AU,Queensland,-27.524625,153.284479,EPSG:4326 +HUMAN_OBSERVATION,Jennifer Niall,2,,,2024,9,23,Australia,AU,Queensland,-27.488257,153.20129,EPSG:4326 +HUMAN_OBSERVATION,Narelle Fegan,2,,,2023,8,17,Australia,AU,Queensland,-27.558295,153.045259,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,2,,,2021,9,25,Australia,AU,Queensland,-27.490224,153.248361,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,5,3,Australia,AU,Queensland,-27.51163,153.247701,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2020,10,5,Australia,AU,Queensland,-27.549518,153.200777,EPSG:4326 +HUMAN_OBSERVATION,Daniel Petrak,1,,,2024,9,30,Australia,AU,Queensland,-27.535557,153.090197,EPSG:4326 +HUMAN_OBSERVATION,Lisa Holliday,1,,,2022,1,18,Australia,AU,Queensland,-27.491989,153.21508,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,1,1,Australia,AU,Queensland,-27.490096,153.248298,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2021,9,21,Australia,AU,Queensland,-27.525437,153.283702,EPSG:4326 +HUMAN_OBSERVATION,Melissa Goldsworthy,1,,,2020,9,11,Australia,AU,Queensland,-27.498714,153.257245,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,2,4,Australia,AU,Queensland,-27.519006,153.259083,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2022,2,1,Australia,AU,Queensland,-27.499001,153.228141,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2023,10,3,Australia,AU,Queensland,-27.489412,153.242402,EPSG:4326 +HUMAN_OBSERVATION,Michael C,1,,,2023,1,18,Australia,AU,Queensland,-27.499647,153.22308,EPSG:4326 +HUMAN_OBSERVATION,Maria Joliffe,1,,,2020,9,12,Australia,AU,Queensland,-27.539041,153.271079,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,10,28,Australia,AU,Queensland,-27.538856,153.27457,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,1,,,2023,3,22,Australia,AU,Queensland,-27.525324,153.281942,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,4,16,Australia,AU,Queensland,-27.540522,153.263488,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,3,25,Australia,AU,Queensland,-27.526547,153.282841,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,2,,,2021,11,13,Australia,AU,Queensland,-27.525353,153.284017,EPSG:4326 +HUMAN_OBSERVATION,Michael McNamara,1,,,2024,3,22,Australia,AU,Queensland,-27.54131,153.035141,EPSG:4326 +HUMAN_OBSERVATION,Cassie Sherwood,1,,,2020,8,18,Australia,AU,Queensland,-27.568508,153.360839,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,5,27,Australia,AU,Queensland,-27.568895,153.296875,EPSG:4326 +HUMAN_OBSERVATION,Peter Andersen,1,,,2022,8,25,Australia,AU,Queensland,-27.531597,153.070976,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,11,1,Australia,AU,Queensland,-27.524211,153.256393,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,7,31,Australia,AU,Queensland,-27.532754,153.282168,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,4,30,Australia,AU,Queensland,-27.490837,153.248509,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,2,4,Australia,AU,Queensland,-27.51932,153.261716,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2022,4,26,Australia,AU,Queensland,-27.525821,153.283498,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,6,10,Australia,AU,Queensland,-27.539012,153.271446,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,8,29,Australia,AU,Queensland,-27.534758,153.276254,EPSG:4326 +HUMAN_OBSERVATION,Richmal Robinson,1,,,2020,8,4,Australia,AU,Queensland,-27.536658,153.278906,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,9,20,Australia,AU,Queensland,-27.525155,153.284203,EPSG:4326 +HUMAN_OBSERVATION,Victor Leeon,1,,,2021,1,8,Australia,AU,Queensland,-27.556534,153.251524,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2020,12,13,Australia,AU,Queensland,-27.690955,153.174096,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,9,26,Australia,AU,Queensland,-27.530004,153.252676,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2020,4,14,Australia,AU,Queensland,-27.501282,153.25215,EPSG:4326 +HUMAN_OBSERVATION,Brad Clemments,1,,,2021,10,31,Australia,AU,Queensland,-27.417675,152.889261,EPSG:4326 +HUMAN_OBSERVATION,Jenny Woodward,1,,,2021,12,2,Australia,AU,Queensland,-27.489885,153.236425,EPSG:4326 +HUMAN_OBSERVATION,Abby West,2,,,2023,5,18,Australia,AU,Queensland,-27.298853,153.004683,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,2,18,Australia,AU,Queensland,-27.525309,153.284092,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,4,17,Australia,AU,Queensland,-27.490376,153.248539,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2020,10,14,Australia,AU,Queensland,-27.552334,153.27133,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,10,3,Australia,AU,Queensland,-21.390097,149.097139,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,10,18,Australia,AU,Queensland,-27.553892,153.225737,EPSG:4326 +HUMAN_OBSERVATION,Peter McCallum,1,,,2021,9,25,Australia,AU,Queensland,-27.500825,153.245061,EPSG:4326 +HUMAN_OBSERVATION,Vanessa COOPER,2,,,2020,2,8,Australia,AU,Queensland,-27.537017,153.278322,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2024,1,10,Australia,AU,Queensland,-27.52967,153.281316,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,1,,,2020,6,27,Australia,AU,Queensland,-27.525568,153.281753,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,2,,,2020,1,5,Australia,AU,Queensland,-27.495739,153.253662,EPSG:4326 +HUMAN_OBSERVATION,Victor Leeon,1,,,2020,2,3,Australia,AU,Queensland,-27.544405,153.278569,EPSG:4326 +HUMAN_OBSERVATION,Daniel Petrak,1,,,2023,3,28,Australia,AU,Queensland,-27.535507,153.090226,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2023,8,23,Australia,AU,Queensland,-27.537752,153.273876,EPSG:4326 +HUMAN_OBSERVATION,Tatjana Graetz,1,,,2022,11,26,Australia,AU,Queensland,-27.570593,153.196868,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,11,10,Australia,AU,Queensland,-27.537121,153.278046,EPSG:4326 +HUMAN_OBSERVATION,Leah Burns,1,,,2020,2,1,Australia,AU,Queensland,-27.5458,153.044673,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2020,10,30,Australia,AU,Queensland,-27.525537,153.281834,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,3,10,Australia,AU,Queensland,-27.527008,153.281686,EPSG:4326 +HUMAN_OBSERVATION,Roslyn Takamaa,1,,,2020,7,18,Australia,AU,Queensland,-27.532335,153.269591,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,1,2,Australia,AU,Queensland,-27.52721,153.281426,EPSG:4326 +HUMAN_OBSERVATION,Geoff Smith,2,,,2022,12,27,Australia,AU,Queensland,-27.530384,153.079655,EPSG:4326 +HUMAN_OBSERVATION,Jenny Woodward,2,,,2021,10,7,Australia,AU,Queensland,-27.490843,153.236697,EPSG:4326 +HUMAN_OBSERVATION,Geena Thomson,1,,,2024,9,22,Australia,AU,Queensland,-28.031512,153.180335,EPSG:4326 +HUMAN_OBSERVATION,Peter Tunstall,1,,,2020,1,21,Australia,AU,Queensland,-27.575395,153.182187,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2023,9,13,Australia,AU,Queensland,-27.535539,153.276153,EPSG:4326 +HUMAN_OBSERVATION,Kate Harrison,1,,,2021,7,3,Australia,AU,Queensland,-27.537031,153.278561,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,10,16,Australia,AU,Queensland,-27.525067,153.284033,EPSG:4326 +HUMAN_OBSERVATION,Chantelle Youngberg,1,,,2021,8,7,Australia,AU,Queensland,-27.709544,153.160719,EPSG:4326 +HUMAN_OBSERVATION,Jenny Murfield,1,,,2021,6,15,Australia,AU,Queensland,-27.612624,153.268433,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2020,11,25,Australia,AU,Queensland,-27.537278,153.279188,EPSG:4326 +HUMAN_OBSERVATION,Jackie Payne,1,,,2020,9,15,Australia,AU,Queensland,-27.523525,153.235929,EPSG:4326 +HUMAN_OBSERVATION,Brendon Van Ras,1,,,2020,1,11,Australia,AU,Queensland,-27.62972,153.2737,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,2,,,2021,12,21,Australia,AU,Queensland,-27.525209,153.28417,EPSG:4326 +HUMAN_OBSERVATION,James Cunich,1,,,2021,8,6,Australia,AU,Queensland,-27.563796,153.228411,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,1,31,Australia,AU,Queensland,-27.52943,153.281258,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,2,,,2020,8,7,Australia,AU,Queensland,-27.525792,153.28399,EPSG:4326 +HUMAN_OBSERVATION,Anne McBurnie,1,,,2020,2,4,Australia,AU,Queensland,-27.560556,153.226944,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2021,1,1,Australia,AU,Queensland,-27.55,153.27,EPSG:4326 +HUMAN_OBSERVATION,Ian James,1,,,2021,6,19,Australia,AU,Queensland,-27.89795,153.127106,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,2,,,2020,4,27,Australia,AU,Queensland,-27.525547,153.282156,EPSG:4326 +HUMAN_OBSERVATION,Jan Cox,1,,,2020,10,28,Australia,AU,Queensland,-27.55335,153.271072,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,10,12,Australia,AU,Queensland,-27.512101,153.201818,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,12,20,Australia,AU,Queensland,-27.539423,153.274557,EPSG:4326 +HUMAN_OBSERVATION,Fiona Milne,2,,,2020,8,27,Australia,AU,Queensland,-27.523911,153.087543,EPSG:4326 +HUMAN_OBSERVATION,Stephanie Gaunt,1,,,2020,12,26,Australia,AU,Queensland,-27.519094,153.260622,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,6,13,Australia,AU,Queensland,-27.537824,153.273793,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2021,1,12,Australia,AU,Queensland,-27.538285,153.275916,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2021,10,24,Australia,AU,Queensland,-27.52486,153.284398,EPSG:4326 +HUMAN_OBSERVATION,Daniel Petrak,1,,,2023,8,26,Australia,AU,Queensland,-27.535516,153.090119,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,11,19,Australia,AU,Queensland,-27.530759,153.281847,EPSG:4326 +HUMAN_OBSERVATION,Hayley Karsten,1,,,2023,1,19,Australia,AU,Queensland,-27.479983,153.080015,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2020,7,19,Australia,AU,Queensland,-27.53158,153.281969,EPSG:4326 +HUMAN_OBSERVATION,Maree Tyrrell,2,,,2021,11,3,Australia,AU,Queensland,-27.50201,153.225149,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,8,7,Australia,AU,Queensland,-27.400483,152.573411,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,11,14,Australia,AU,Queensland,-27.53811,153.263583,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,10,25,Australia,AU,Queensland,-27.537079,153.277885,EPSG:4326 +HUMAN_OBSERVATION,Mim Skelly,1,,,2020,3,21,Australia,AU,Queensland,-27.586688,153.255317,EPSG:4326 +HUMAN_OBSERVATION,Amanda Ainley,1,,,2020,8,29,Australia,AU,Queensland,-27.594953,153.249353,EPSG:4326 +HUMAN_OBSERVATION,Finn Hawkins,2,,,2020,1,17,Australia,AU,Queensland,-27.484321,153.153549,EPSG:4326 +HUMAN_OBSERVATION,Beth Clouston,2,,,2020,8,15,Australia,AU,Queensland,-27.568508,153.360839,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,4,12,Australia,AU,Queensland,-27.525329,153.281854,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2020,4,4,Australia,AU,Queensland,-27.532959,153.282156,EPSG:4326 +HUMAN_OBSERVATION,Gael Paul,2,,,2021,1,8,Australia,AU,Queensland,-27.373749,152.990183,EPSG:4326 +HUMAN_OBSERVATION,Jane Hitchcock,1,,,2020,8,6,Australia,AU,Queensland,-27.594953,153.249353,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,2,,,2023,4,14,Australia,AU,Queensland,-27.489987,153.24841,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,10,12,Australia,AU,Queensland,-27.547357,153.226429,EPSG:4326 +HUMAN_OBSERVATION,Joanne Wilson,1,,,2024,1,23,Australia,AU,Queensland,-27.511695,153.251014,EPSG:4326 +HUMAN_OBSERVATION,Beryl Fanning,1,,,2020,11,9,Australia,AU,Queensland,-27.503602,153.225777,EPSG:4326 +HUMAN_OBSERVATION,Malcolm Jones,1,,,2020,12,31,Australia,AU,Queensland,-27.531841,153.210693,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2022,8,3,Australia,AU,Queensland,-27.554591,153.254038,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,11,4,Australia,AU,Queensland,-27.533017,153.257954,EPSG:4326 +HUMAN_OBSERVATION,Victor Leeon,1,,,2020,1,17,Australia,AU,Queensland,-27.547645,153.252494,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2020,4,4,Australia,AU,Queensland,-27.531922,153.281603,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2023,6,14,Australia,AU,Queensland,-27.49055,153.245516,EPSG:4326 +HUMAN_OBSERVATION,B Bates,1,,,2021,4,16,Australia,AU,Queensland,-27.355789,152.935607,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,1,,,2020,11,25,Australia,AU,Queensland,-27.533178,153.282117,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,1,3,Australia,AU,Queensland,-27.530807,153.28186,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2021,1,19,Australia,AU,Queensland,-27.550976,153.07549,EPSG:4326 +HUMAN_OBSERVATION,Julianne Cregan,1,,,2023,7,15,Australia,AU,Queensland,-27.531692,153.210365,EPSG:4326 +HUMAN_OBSERVATION,Tracy Evans,1,,,2020,9,14,Australia,AU,Queensland,-27.532991,152.807517,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2021,5,15,Australia,AU,Queensland,-27.490856,153.248501,EPSG:4326 +HUMAN_OBSERVATION,Eva Coulam,2,,,2020,12,23,Australia,AU,Queensland,-27.424462,153.517751,EPSG:4326 +HUMAN_OBSERVATION,Grant Graves,1,,,2022,5,12,Australia,AU,Queensland,-28.138601,153.452933,EPSG:4326 +HUMAN_OBSERVATION,Phil Horn,2,,,2021,1,16,Australia,AU,Queensland,-27.537129,153.062092,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2020,9,20,Australia,AU,Queensland,-27.524325,153.264642,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,11,7,Australia,AU,Queensland,-27.535813,153.23827,EPSG:4326 +HUMAN_OBSERVATION,Ranjan Kumar,1,,,2020,12,19,Australia,AU,Queensland,-28.065738,152.491711,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2022,12,23,Australia,AU,Queensland,-27.536759,153.272631,EPSG:4326 +HUMAN_OBSERVATION,Chris Walker,1,,,2021,11,26,Australia,AU,Queensland,-27.530734,153.281775,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2021,10,10,Australia,AU,Queensland,-27.548894,153.256299,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,3,16,Australia,AU,Queensland,-27.532926,153.282117,EPSG:4326 +HUMAN_OBSERVATION,Alison Free,2,,,2020,1,8,Australia,AU,Queensland,-27.494391,153.254937,EPSG:4326 +HUMAN_OBSERVATION,Penelope Ritchie,1,,,2020,1,14,Australia,AU,Queensland,-27.555011,153.275215,EPSG:4326 +HUMAN_OBSERVATION,Nicholas Walker,1,,,2021,10,12,Australia,AU,Queensland,-27.531074,153.282157,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2021,1,9,Australia,AU,Queensland,-27.538445,153.275815,EPSG:4326 +HUMAN_OBSERVATION,Diana Pascoe,2,,,2020,5,1,Australia,AU,Queensland,-27.542157,153.073343,EPSG:4326 +HUMAN_OBSERVATION,Katia Strounina,1,,,2021,11,13,Australia,AU,Queensland,-27.614143,153.293759,EPSG:4326 +HUMAN_OBSERVATION,Sara Dammasch,2,,,2021,11,9,Australia,AU,Queensland,-27.465118,152.651682,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,2,,,2020,10,16,Australia,AU,Queensland,-27.525676,153.283194,EPSG:4326 +HUMAN_OBSERVATION,Richard Phillis,1,,,2022,4,3,Australia,AU,Queensland,-27.451101,152.661789,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc.,1,,,2021,4,3,Australia,AU,Queensland,-27.544064,153.198204,EPSG:4326 +HUMAN_OBSERVATION,Malcolm Jones,1,,,2021,10,2,Australia,AU,Queensland,-27.531825,153.210791,EPSG:4326 +HUMAN_OBSERVATION,Timothy Murray,2,,,2021,3,16,Australia,AU,Queensland,-27.144223,152.969959,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,3,24,Australia,AU,Queensland,-27.525633,153.282047,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,11,4,Australia,AU,Queensland,-27.54858,153.256286,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,11,12,Australia,AU,Queensland,-27.490231,153.248272,EPSG:4326 +HUMAN_OBSERVATION,Kate Harrison,1,,,2021,6,14,Australia,AU,Queensland,-27.528997,153.272874,EPSG:4326 +HUMAN_OBSERVATION,Shanell Beth,1,,,2020,4,8,Australia,AU,Queensland,-27.545611,152.856765,EPSG:4326 +HUMAN_OBSERVATION,Lauren Burton ,1,,,2020,8,27,Australia,AU,Queensland,-26.872922,152.167675,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2021,10,11,Australia,AU,Queensland,-27.548887,153.25629,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,5,3,Australia,AU,Queensland,-27.493896,153.255074,EPSG:4326 +HUMAN_OBSERVATION,Meg Johnson,1,,,2021,9,29,Australia,AU,Queensland,-27.511483,153.247578,EPSG:4326 +HUMAN_OBSERVATION,Dan Parker,1,,,2020,1,18,Australia,AU,Queensland,-27.533758,153.180416,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,2,,,2020,8,16,Australia,AU,Queensland,-27.525031,153.284288,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2020,9,26,Australia,AU,Queensland,-27.525576,153.284312,EPSG:4326 +HUMAN_OBSERVATION,Bob Hope,1,,,2022,5,4,Australia,AU,Queensland,-27.551314,153.06922,EPSG:4326 +HUMAN_OBSERVATION,Grace Marshall,1,,,2021,7,4,Australia,AU,Queensland,-27.505462,153.10537,EPSG:4326 +HUMAN_OBSERVATION,Ross Murray,1,,,2023,6,8,Australia,AU,Queensland,-27.396398,152.905204,EPSG:4326 +HUMAN_OBSERVATION,kim Staunton,1,,,2020,12,24,Australia,AU,Queensland,-27.526737,153.14254,EPSG:4326 +HUMAN_OBSERVATION,Jason Russell,1,,,2021,10,8,Australia,AU,Queensland,-27.425747,153.516952,EPSG:4326 +HUMAN_OBSERVATION,Bob Aldred,1,,,2021,9,3,Australia,AU,Queensland,-27.521948,153.242255,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2022,12,14,Australia,AU,Queensland,-27.531922,153.274127,EPSG:4326 +HUMAN_OBSERVATION,Meg Johnson,1,,,2021,8,12,Australia,AU,Queensland,-27.505137,153.244379,EPSG:4326 +HUMAN_OBSERVATION,Jenny Woodward,1,,,2021,11,22,Australia,AU,Queensland,-27.489438,153.23639,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2020,10,27,Australia,AU,Queensland,-27.530124,153.274119,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,7,16,Australia,AU,Queensland,-27.525532,153.284509,EPSG:4326 +HUMAN_OBSERVATION,Matt Prime ,1,,,2021,2,15,Australia,AU,Queensland,-27.594953,153.249353,EPSG:4326 +HUMAN_OBSERVATION,Haley Dell,1,,,2020,9,27,Australia,AU,Queensland,-27.647595,153.30005,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,1,,,2022,10,23,Australia,AU,Queensland,-27.508735,153.221776,EPSG:4326 +HUMAN_OBSERVATION,David McPate,1,,,2020,11,14,Australia,AU,Queensland,-27.506097,153.237044,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,2,,,2020,1,5,Australia,AU,Queensland,-27.495732,153.253114,EPSG:4326 +HUMAN_OBSERVATION,L. Peachey,1,,,2021,9,2,Australia,AU,Queensland,-27.546125,153.10785,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,1,24,Australia,AU,Queensland,-27.538729,153.274312,EPSG:4326 +HUMAN_OBSERVATION,Jan Acton,1,,,2023,12,30,Australia,AU,Queensland,-27.538016,153.273679,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,1,23,Australia,AU,Queensland,-27.538712,153.274323,EPSG:4326 +HUMAN_OBSERVATION,Victor Leeon,1,,,2021,5,31,Australia,AU,Queensland,-27.547564,153.25278,EPSG:4326 +HUMAN_OBSERVATION,Peter McCallum,1,,,2021,1,17,Australia,AU,Queensland,-27.501343,153.244973,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2023,1,15,Australia,AU,Queensland,-27.539961,153.274729,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,2,,,2023,11,13,Australia,AU,Queensland,-27.5681,153.295815,EPSG:4326 +HUMAN_OBSERVATION,Jillian Power,1,,,2020,12,8,Australia,AU,Queensland,-27.497442,153.204818,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2022,2,18,Australia,AU,Queensland,-27.531154,153.281802,EPSG:4326 +HUMAN_OBSERVATION,Jennifer Niall,1,,,2021,2,1,Australia,AU,Queensland,-27.533543,153.235997,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2020,6,18,Australia,AU,Queensland,-27.548537,153.256305,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2020,3,18,Australia,AU,Queensland,-27.559244,153.220054,EPSG:4326 +HUMAN_OBSERVATION,Emily Jane,1,,,2020,1,25,Australia,AU,Queensland,-27.763892,153.183501,EPSG:4326 +HUMAN_OBSERVATION,Georgie Chapple,1,,,2022,11,3,Australia,AU,Queensland,-27.981003,152.510383,EPSG:4326 +HUMAN_OBSERVATION,Jennifer Niall,1,,,2022,9,9,Australia,AU,Queensland,-27.492188,153.215467,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,1,,,2020,10,15,Australia,AU,Queensland,-27.525307,153.281834,EPSG:4326 +HUMAN_OBSERVATION,Redlands Special School,1,,,2020,5,19,Australia,AU,Queensland,-27.594953,153.249353,EPSG:4326 +HUMAN_OBSERVATION,Sandra Smith,1,,,2021,10,18,Australia,AU,Queensland,-27.493137,153.244124,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,1,,,2020,10,24,Australia,AU,Queensland,-27.525395,153.284655,EPSG:4326 +HUMAN_OBSERVATION,Linda Muller,1,,,2023,7,10,Australia,AU,Queensland,-27.597146,153.293119,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,1,,,2021,9,14,Australia,AU,Queensland,-27.531082,153.281687,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,1,,,2020,1,15,Australia,AU,Queensland,-27.541585,153.253753,EPSG:4326 +HUMAN_OBSERVATION,Kent Buddle,1,,,2021,9,16,Australia,AU,Queensland,-27.476279,153.165427,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc.,1,,,2020,4,6,Australia,AU,Queensland,-27.529173,153.273961,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,MALE,,2021,1,10,Australia,AU,New South Wales,-28.2525,153.374722,EPSG:4326 +HUMAN_OBSERVATION,Melise Smith,1,,,2024,8,29,Australia,AU,New South Wales,-28.324971,153.465174,EPSG:4326 +HUMAN_OBSERVATION,Bruce MacGregor,1,,,2021,10,14,Australia,AU,New South Wales,-28.387972,153.564028,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,7,30,Australia,AU,New South Wales,-28.240329,153.505993,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,1,20,Australia,AU,New South Wales,-28.247811,153.410281,EPSG:4326 +HUMAN_OBSERVATION,Magdalena Filipkowska,1,,,2024,8,12,Australia,AU,New South Wales,-28.3323,153.534257,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2021,7,17,Australia,AU,New South Wales,-28.382917,153.561356,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2021,10,10,Australia,AU,New South Wales,-28.21365,153.522788,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2020,7,13,Australia,AU,New South Wales,-28.25059,153.373615,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,9,3,Australia,AU,New South Wales,-28.391267,153.562726,EPSG:4326 +HUMAN_OBSERVATION,Denise ,1,,,2021,7,6,Australia,AU,New South Wales,-28.40778,153.552753,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,9,29,Australia,AU,New South Wales,-28.374668,153.564052,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,,,2022,11,21,Australia,AU,New South Wales,-28.237308,153.466671,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2021,9,8,Australia,AU,Queensland,-27.519173,153.260948,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,2,18,Australia,AU,New South Wales,-28.399102,153.555824,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2021,6,22,Australia,AU,New South Wales,-28.236784,153.501758,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,11,11,Australia,AU,New South Wales,-28.368068,153.516363,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,9,21,Australia,AU,New South Wales,-28.385585,153.561427,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,11,26,Australia,AU,New South Wales,-28.399282,153.555944,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2023,5,16,Australia,AU,New South Wales,-28.397082,153.557228,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2024,2,18,Australia,AU,New South Wales,-28.256111,153.370556,EPSG:4326 +HUMAN_OBSERVATION,irene timmins,1,FEMALE,,2020,10,16,Australia,AU,New South Wales,-28.371257,153.559742,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2023,1,19,Australia,AU,New South Wales,-28.403228,153.555441,EPSG:4326 +HUMAN_OBSERVATION,Tamielle Brunt,2,,,2020,8,13,Australia,AU,Queensland,-27.540469,153.075575,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2022,11,25,Australia,AU,New South Wales,-28.396686,153.557625,EPSG:4326 +HUMAN_OBSERVATION,Christie Kemp,1,,,2023,7,28,Australia,AU,New South Wales,-28.387578,153.559679,EPSG:4326 +HUMAN_OBSERVATION,Jennifer Niall,2,,,2024,10,30,Australia,AU,Queensland,-27.489271,153.206652,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,,,2021,5,12,Australia,AU,New South Wales,-28.414391,153.555591,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,10,8,Australia,AU,New South Wales,-28.329373,153.467912,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,MALE,,2024,11,8,Australia,AU,New South Wales,-28.384036,153.562425,EPSG:4326 +HUMAN_OBSERVATION,Christopher Bowdler,1,,,2020,12,14,Australia,AU,New South Wales,-28.332073,153.56286,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,1,19,Australia,AU,New South Wales,-28.311276,153.476784,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,9,3,Australia,AU,New South Wales,-28.407968,153.556465,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,11,Australia,AU,New South Wales,-28.379277,153.333213,EPSG:4326 +HUMAN_OBSERVATION,Wendy Pluckrose,1,,,2024,9,24,Australia,AU,New South Wales,-28.388696,153.557617,EPSG:4326 +HUMAN_OBSERVATION,Brooke M,1,,,2020,1,9,Australia,AU,New South Wales,-28.300791,153.333564,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,8,22,Australia,AU,New South Wales,-28.399149,153.555833,EPSG:4326 +HUMAN_OBSERVATION,Mohan Govindasamy,1,,,2022,11,22,Australia,AU,New South Wales,-28.223973,153.498294,EPSG:4326 +HUMAN_OBSERVATION,Nadia Clark,1,,,2021,11,28,Australia,AU,New South Wales,-28.396606,153.541961,EPSG:4326 +HUMAN_OBSERVATION,Susie Hearder,1,,,2022,9,9,Australia,AU,New South Wales,-28.272384,153.411949,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,3,15,Australia,AU,New South Wales,-28.384773,153.561382,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2020,12,9,Australia,AU,New South Wales,-28.393024,153.561715,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,10,20,Australia,AU,New South Wales,-28.399929,153.556505,EPSG:4326 +HUMAN_OBSERVATION,Allan Jefford,2,,,2020,9,17,Australia,AU,Queensland,-27.493664,153.236557,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2021,10,16,Australia,AU,New South Wales,-28.398535,153.556056,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2024,8,21,Australia,AU,New South Wales,-28.385942,153.564117,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,1,5,Australia,AU,New South Wales,-28.400142,153.556701,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,10,16,Australia,AU,New South Wales,-28.397271,153.557252,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,,,2020,7,25,Australia,AU,New South Wales,-28.384369,153.562904,EPSG:4326 +HUMAN_OBSERVATION,Al Davis,1,,,2021,6,29,Australia,AU,New South Wales,-28.38553,153.56145,EPSG:4326 +HUMAN_OBSERVATION,Lesley,1,MALE,,2024,8,13,Australia,AU,New South Wales,-28.219672,153.530075,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2024,11,5,Australia,AU,New South Wales,-28.396713,153.55758,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,2,,,2023,10,16,Australia,AU,Queensland,-27.54426,153.27599,EPSG:4326 +HUMAN_OBSERVATION,Rhonda James,1,MALE,,2021,8,13,Australia,AU,New South Wales,-28.377326,153.515065,EPSG:4326 +HUMAN_OBSERVATION,Renee Gilmore,1,,,2024,10,21,Australia,AU,New South Wales,-28.380244,153.567479,EPSG:4326 +HUMAN_OBSERVATION,Derin Talu,2,,,2020,11,16,Australia,AU,Queensland,-27.563198,153.272327,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2024,1,26,Australia,AU,New South Wales,-28.388411,153.557933,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2023,8,1,Australia,AU,New South Wales,-28.368427,153.553572,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,3,4,Australia,AU,New South Wales,-28.400014,153.556778,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,10,15,Australia,AU,New South Wales,-28.393779,153.559218,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,FEMALE,,2022,9,9,Australia,AU,New South Wales,-28.393719,153.557522,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,9,13,Australia,AU,New South Wales,-28.393411,153.56327,EPSG:4326 +HUMAN_OBSERVATION,Asha Igoe,1,,,2021,7,13,Australia,AU,New South Wales,-28.386071,153.561913,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,FEMALE,,2022,9,9,Australia,AU,New South Wales,-28.397563,153.556946,EPSG:4326 +HUMAN_OBSERVATION,Fiona Murray,1,,,2024,10,23,Australia,AU,New South Wales,-28.373683,153.560418,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,8,23,Australia,AU,New South Wales,-28.243606,153.555823,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,5,2,Australia,AU,New South Wales,-28.216138,153.483346,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,2,10,Australia,AU,New South Wales,-28.378508,153.567422,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,8,22,Australia,AU,New South Wales,-28.393472,153.561649,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,1,24,Australia,AU,New South Wales,-28.336159,153.564434,EPSG:4326 +HUMAN_OBSERVATION,Satoko,1,,,2021,7,4,Australia,AU,New South Wales,-28.388909,153.54768,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2024,8,18,Australia,AU,New South Wales,-28.380833,153.564167,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,11,15,Australia,AU,New South Wales,-28.38969,153.558805,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,12,14,Australia,AU,New South Wales,-28.389497,153.560261,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2021,5,4,Australia,AU,New South Wales,-28.454651,153.284859,EPSG:4326 +HUMAN_OBSERVATION,Amy Williamson,2,,,2020,11,19,Australia,AU,Queensland,-27.393202,152.940527,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,,,2024,10,6,Australia,AU,New South Wales,-28.389192,153.561847,EPSG:4326 +HUMAN_OBSERVATION,Joel Taylor,1,,,2024,10,13,Australia,AU,New South Wales,-28.260494,153.470367,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,10,7,Australia,AU,New South Wales,-28.388884,153.546746,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,2,21,Australia,AU,New South Wales,-28.37735,153.556243,EPSG:4326 +HUMAN_OBSERVATION,Whitney Tate,1,,,2021,4,20,Australia,AU,New South Wales,-28.372579,153.558593,EPSG:4326 +HUMAN_OBSERVATION,Robert Johnson,1,,,2024,7,27,Australia,AU,New South Wales,-28.40825,153.556253,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,9,2,Australia,AU,New South Wales,-28.398184,153.555641,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,1,17,Australia,AU,New South Wales,-28.393425,153.563403,EPSG:4326 +HUMAN_OBSERVATION,Ken Rawlins,2,,,2020,11,25,Australia,AU,Queensland,-27.531018,153.282412,EPSG:4326 +HUMAN_OBSERVATION,Debbie Pointing,2,,,2020,4,27,Australia,AU,Queensland,-27.525623,153.282048,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,MALE,,2024,9,23,Australia,AU,New South Wales,-28.37347,153.564383,EPSG:4326 +HUMAN_OBSERVATION,Desley Pike,1,,,2020,4,8,Australia,AU,New South Wales,-28.228295,153.412883,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,,,2024,11,1,Australia,AU,New South Wales,-28.389145,153.56189,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,MALE,,2021,5,19,Australia,AU,New South Wales,-28.383751,153.56206,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2024,10,20,Australia,AU,New South Wales,-28.222544,153.498144,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,11,6,Australia,AU,New South Wales,-28.393378,153.561414,EPSG:4326 +HUMAN_OBSERVATION,Donald Croucher,2,,,2020,9,2,Australia,AU,Queensland,-27.498711,153.228911,EPSG:4326 +HUMAN_OBSERVATION,Joel Taylor,1,,,2024,10,2,Australia,AU,New South Wales,-28.261378,153.468522,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,11,19,Australia,AU,New South Wales,-28.385558,153.561372,EPSG:4326 +HUMAN_OBSERVATION,Sarah Tuddenham,1,,,2021,7,22,Australia,AU,New South Wales,-28.388545,153.557532,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,FEMALE,,2024,10,6,Australia,AU,New South Wales,-28.380786,153.564544,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,8,7,Australia,AU,New South Wales,-28.228197,153.490079,EPSG:4326 +HUMAN_OBSERVATION,Maree Tyrrell,2,,,2021,12,8,Australia,AU,Queensland,-27.502821,153.225346,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,,,2024,8,22,Australia,AU,New South Wales,-28.279609,153.222497,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,1,26,Australia,AU,New South Wales,-28.26228,153.4691,EPSG:4326 +HUMAN_OBSERVATION,Joel Taylor,1,,,2024,6,6,Australia,AU,New South Wales,-28.262092,153.468706,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,FEMALE,,2024,11,8,Australia,AU,New South Wales,-28.199886,153.533753,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,3,1,Australia,AU,New South Wales,-28.397528,153.557172,EPSG:4326 +HUMAN_OBSERVATION,Robyn Grant,1,,,2023,10,1,Australia,AU,New South Wales,-28.241817,153.510122,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,FEMALE,,2024,8,22,Australia,AU,New South Wales,-28.37945,153.214461,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2022,12,25,Australia,AU,Queensland,-27.528899,153.273506,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,4,25,Australia,AU,New South Wales,-28.328909,153.494089,EPSG:4326 +HUMAN_OBSERVATION,Kirsty Wallis,1,,,2023,2,18,Australia,AU,New South Wales,-28.383586,153.554792,EPSG:4326 +HUMAN_OBSERVATION,Anthony Hough,1,,,2022,5,9,Australia,AU,New South Wales,-28.254048,153.493728,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2021,1,22,Australia,AU,New South Wales,-28.254464,153.495958,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,1,28,Australia,AU,New South Wales,-28.384976,153.561127,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,,,2023,8,22,Australia,AU,New South Wales,-28.329457,153.5481,EPSG:4326 +HUMAN_OBSERVATION,Oliver Brown-Hovelt,1,,,2022,5,25,Australia,AU,New South Wales,-28.38855,153.557601,EPSG:4326 +HUMAN_OBSERVATION,Kathy Hockley,2,,,2023,8,26,Australia,AU,Queensland,-27.511432,153.246495,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,2,,,2023,9,29,Australia,AU,Queensland,-27.56812,153.296618,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2024,8,21,Australia,AU,New South Wales,-28.380817,153.564147,EPSG:4326 +HUMAN_OBSERVATION,Jess Kamnerdkan,1,,,2023,12,1,Australia,AU,New South Wales,-28.331185,153.559223,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,,,2021,6,28,Australia,AU,New South Wales,-28.236882,153.49413,EPSG:4326 +HUMAN_OBSERVATION,Bruce Waight,1,,,2020,12,11,Australia,AU,New South Wales,-28.274143,153.442773,EPSG:4326 +HUMAN_OBSERVATION,Robert Johnson,1,,,2024,8,8,Australia,AU,New South Wales,-28.408185,153.556326,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2022,1,17,Australia,AU,New South Wales,-28.38674,153.523666,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,MALE,,2021,1,30,Australia,AU,New South Wales,-28.398509,153.556098,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2023,6,25,Australia,AU,New South Wales,-28.384563,153.562603,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,,,2024,9,15,Australia,AU,New South Wales,-28.389159,153.561873,EPSG:4326 +HUMAN_OBSERVATION,Renata Cascaes,1,,,2023,6,12,Australia,AU,New South Wales,-28.388474,153.557459,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,3,25,Australia,AU,New South Wales,-28.399509,153.555878,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,8,10,Australia,AU,New South Wales,-28.331142,153.557818,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,9,17,Australia,AU,New South Wales,-28.419806,153.456689,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,,,2022,11,16,Australia,AU,New South Wales,-28.305823,153.377257,EPSG:4326 +HUMAN_OBSERVATION,Chris Farnell,1,,,2023,7,28,Australia,AU,New South Wales,-28.37778,153.556034,EPSG:4326 +HUMAN_OBSERVATION,Erin McFarlane,1,,,2021,9,19,Australia,AU,New South Wales,-28.394284,153.558399,EPSG:4326 +HUMAN_OBSERVATION,Erin McFarlane,1,,,2021,6,26,Australia,AU,New South Wales,-28.394137,153.55836,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,11,14,Australia,AU,New South Wales,-28.327859,153.564682,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,2,,,2021,9,29,Australia,AU,Queensland,-27.574398,153.271366,EPSG:4326 +HUMAN_OBSERVATION,Tara Howell,1,,,2021,4,28,Australia,AU,New South Wales,-28.371592,153.557729,EPSG:4326 +HUMAN_OBSERVATION,Jesse Baker,1,,,2024,10,4,Australia,AU,New South Wales,-28.389402,153.56368,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,11,14,Australia,AU,New South Wales,-28.226882,153.498072,EPSG:4326 +HUMAN_OBSERVATION,TSC YouTube,1,,,2022,11,14,Australia,AU,New South Wales,-28.353407,153.559441,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,MALE,,2022,6,2,Australia,AU,New South Wales,-28.232497,153.47843,EPSG:4326 +HUMAN_OBSERVATION,Robert Johnson,1,,,2024,7,29,Australia,AU,New South Wales,-28.408245,153.556522,EPSG:4326 +HUMAN_OBSERVATION,Lynne Livingstone,2,,,2021,9,29,Australia,AU,Queensland,-27.552104,153.270114,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2022,9,23,Australia,AU,New South Wales,-28.222942,153.498187,EPSG:4326 +HUMAN_OBSERVATION,Nikita Gates,1,MALE,,2024,6,16,Australia,AU,New South Wales,-28.388392,153.557437,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins ,1,,,2020,1,24,Australia,AU,New South Wales,-28.400992,153.557022,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2023,10,8,Australia,AU,New South Wales,-28.392434,153.567133,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,,,2024,9,18,Australia,AU,New South Wales,-28.38914,153.561825,EPSG:4326 +HUMAN_OBSERVATION,Joel Taylor,1,,,2024,8,8,Australia,AU,New South Wales,-28.262386,153.469069,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,12,8,Australia,AU,New South Wales,-28.336136,153.564385,EPSG:4326 +HUMAN_OBSERVATION,Susan M and Nyree ,1,MALE,,2024,10,16,Australia,AU,New South Wales,-28.376831,153.55593,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2023,8,28,Australia,AU,New South Wales,-28.322296,153.459558,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2023,11,13,Australia,AU,New South Wales,-28.22333,153.498938,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group Qld Inc,2,,,2022,8,18,Australia,AU,Queensland,-27.497384,153.232616,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,6,5,Australia,AU,New South Wales,-28.384192,153.562273,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,9,10,Australia,AU,New South Wales,-28.392594,153.563158,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,,,2023,6,19,Australia,AU,New South Wales,-28.227394,153.494519,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,10,29,Australia,AU,New South Wales,-28.393297,153.56122,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2021,1,11,Australia,AU,Queensland,-27.536561,153.061837,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,5,15,Australia,AU,New South Wales,-28.39334,153.561199,EPSG:4326 +HUMAN_OBSERVATION,Colleen Drady,1,,,2023,7,24,Australia,AU,New South Wales,-28.378224,153.555887,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,,,2021,5,24,Australia,AU,New South Wales,-28.237356,153.467083,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,MALE,,2024,10,5,Australia,AU,New South Wales,-28.387998,153.563896,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2020,9,15,Australia,AU,New South Wales,-28.251322,153.373266,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,2,5,Australia,AU,New South Wales,-28.290966,153.244397,EPSG:4326 +HUMAN_OBSERVATION,andrew browne,1,,,2021,8,20,Australia,AU,New South Wales,-28.391181,153.563878,EPSG:4326 +HUMAN_OBSERVATION,Jan Mcdougall,2,,,2022,12,30,Australia,AU,Queensland,-27.523182,153.084528,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,9,21,Australia,AU,New South Wales,-28.381234,153.557109,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,7,8,Australia,AU,New South Wales,-28.388822,153.564428,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,5,14,Australia,AU,New South Wales,-28.244008,153.490288,EPSG:4326 +HUMAN_OBSERVATION,irene timmins,1,MALE,,2024,5,17,Australia,AU,New South Wales,-28.384633,153.562785,EPSG:4326 +HUMAN_OBSERVATION,Koala Action Group,2,,,2022,11,1,Australia,AU,Queensland,-27.488762,153.236225,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,7,8,Australia,AU,New South Wales,-28.399127,153.555926,EPSG:4326 +HUMAN_OBSERVATION,Betty Walker,2,,,2024,1,10,Australia,AU,Queensland,-27.532896,153.282106,EPSG:4326 +HUMAN_OBSERVATION,Glen Mara,1,,,2021,11,1,Australia,AU,New South Wales,-28.250411,153.371739,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,16,Australia,AU,New South Wales,-28.400461,153.557006,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,,,2022,8,13,Australia,AU,New South Wales,-28.230068,153.495349,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,20,Australia,AU,New South Wales,-28.277245,153.334283,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,,,2020,9,23,Australia,AU,New South Wales,-28.391295,153.562646,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,7,23,Australia,AU,New South Wales,-28.393341,153.561106,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,2,12,Australia,AU,New South Wales,-28.237207,153.458876,EPSG:4326 +HUMAN_OBSERVATION,Chilli Powell,1,,,2023,11,19,Australia,AU,New South Wales,-28.377195,153.568053,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2024,10,19,Australia,AU,New South Wales,-28.246439,153.483942,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,10,4,Australia,AU,New South Wales,-28.231058,153.491708,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,1,12,Australia,AU,New South Wales,-28.385238,153.55439,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,MALE,,2021,5,8,Australia,AU,New South Wales,-28.38545,153.562707,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,MALE,,2020,11,22,Australia,AU,New South Wales,-28.399167,153.555833,EPSG:4326 +HUMAN_OBSERVATION,Uforage,1,,,2023,9,5,Australia,AU,New South Wales,-28.37037,153.346846,EPSG:4326 +HUMAN_OBSERVATION,Eli Szandala,1,,,2023,2,27,Australia,AU,New South Wales,-28.372792,153.556565,EPSG:4326 +HUMAN_OBSERVATION,Moniique Ferguson,1,,,2023,1,11,Australia,AU,New South Wales,-28.21586,153.51934,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,MALE,,2020,11,23,Australia,AU,New South Wales,-28.389232,153.561433,EPSG:4326 +HUMAN_OBSERVATION,Peta Lahiff,2,FEMALE,,2021,8,12,Australia,AU,New South Wales,-28.392231,153.541296,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,,,2023,1,11,Australia,AU,New South Wales,-28.387053,153.5618,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,8,1,Australia,AU,New South Wales,-28.388121,153.556905,EPSG:4326 +HUMAN_OBSERVATION,Roger Ellison,1,,,2021,8,17,Australia,AU,New South Wales,-28.391207,153.562732,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2021,6,27,Australia,AU,New South Wales,-28.399308,153.556044,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,MALE,,2020,11,17,Australia,AU,New South Wales,-28.390195,153.561418,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2023,10,3,Australia,AU,New South Wales,-28.223352,153.499196,EPSG:4326 +HUMAN_OBSERVATION,Tanya Fountain,1,,,2022,4,8,Australia,AU,New South Wales,-28.36432,153.560828,EPSG:4326 +HUMAN_OBSERVATION,irene timmins,1,,,2020,1,1,Australia,AU,New South Wales,-28.371012,153.555546,EPSG:4326 +HUMAN_OBSERVATION,Kane Durrant,1,,,2022,1,5,Australia,AU,New South Wales,-28.330606,153.561774,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,2,FEMALE,,2021,6,12,Australia,AU,New South Wales,-28.384015,153.562037,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,9,17,Australia,AU,New South Wales,-28.38719,153.565845,EPSG:4326 +HUMAN_OBSERVATION,Rich Moody,1,,,2024,9,29,Australia,AU,New South Wales,-28.328574,153.471885,EPSG:4326 +HUMAN_OBSERVATION,Josie Styles,1,MALE,,2024,10,9,Australia,AU,New South Wales,-28.388315,153.557995,EPSG:4326 +HUMAN_OBSERVATION,Trevor White,1,,,2023,9,27,Australia,AU,New South Wales,-28.356845,153.360079,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,FEMALE,,2021,9,10,Australia,AU,New South Wales,-28.259715,153.397897,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,,,2021,1,11,Australia,AU,New South Wales,-28.237277,153.466063,EPSG:4326 +HUMAN_OBSERVATION,Greg Lollback,1,,,2020,10,12,Australia,AU,New South Wales,-28.3707,153.5597,EPSG:4326 +HUMAN_OBSERVATION,Rachel Foster,1,,,2021,3,26,Australia,AU,New South Wales,-28.384435,153.561567,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2024,10,19,Australia,AU,New South Wales,-28.222876,153.498766,EPSG:4326 +HUMAN_OBSERVATION,Kelsey Lea,1,,,2022,10,15,Australia,AU,New South Wales,-28.372144,153.559671,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2023,7,14,Australia,AU,New South Wales,-28.38529,153.561368,EPSG:4326 +HUMAN_OBSERVATION,irene timmins,1,MALE,,2024,4,29,Australia,AU,New South Wales,-28.378379,153.555586,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2023,10,7,Australia,AU,New South Wales,-28.391023,153.565121,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,MALE,,2021,9,1,Australia,AU,New South Wales,-28.398564,153.556069,EPSG:4326 +HUMAN_OBSERVATION,Tom Livingstone,1,,,2023,8,8,Australia,AU,New South Wales,-28.38064,153.564177,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2023,8,31,Australia,AU,New South Wales,-28.223337,153.49896,EPSG:4326 +HUMAN_OBSERVATION,Elise Doniger,1,,,2023,8,15,Australia,AU,New South Wales,-28.227892,153.457958,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2020,11,2,Australia,AU,New South Wales,-28.330978,153.560962,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,2,21,Australia,AU,New South Wales,-28.399486,153.556034,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,FEMALE,,2024,9,24,Australia,AU,New South Wales,-28.241549,153.513454,EPSG:4326 +HUMAN_OBSERVATION,Erin McFarlane,1,,,2021,10,19,Australia,AU,New South Wales,-28.39427,153.558467,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,2,Australia,AU,New South Wales,-28.371176,153.559696,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2023,2,26,Australia,AU,New South Wales,-28.375236,153.555936,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,1,24,Australia,AU,New South Wales,-28.24154,153.471848,EPSG:4326 +HUMAN_OBSERVATION,Yvonne Gardiner,1,,,2024,10,18,Australia,AU,New South Wales,-28.384204,153.562388,EPSG:4326 +HUMAN_OBSERVATION,Rachel Foster,2,FEMALE,,2020,9,16,Australia,AU,New South Wales,-28.384411,153.561539,EPSG:4326 +HUMAN_OBSERVATION,Rodney Keevers,1,,,2023,9,15,Australia,AU,New South Wales,-28.326705,153.47353,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,11,26,Australia,AU,New South Wales,-28.398854,153.556009,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2022,2,11,Australia,AU,New South Wales,-28.252984,153.376512,EPSG:4326 +HUMAN_OBSERVATION,Joel Taylor,1,,,2024,6,29,Australia,AU,New South Wales,-28.26085,153.470183,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,FEMALE,,2022,1,14,Australia,AU,New South Wales,-28.237535,153.466167,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2021,10,6,Australia,AU,New South Wales,-28.383603,153.56215,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,12,8,Australia,AU,New South Wales,-28.251271,153.502222,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,,,2023,2,14,Australia,AU,New South Wales,-28.237356,153.466058,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2024,1,8,Australia,AU,New South Wales,-28.388442,153.557433,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,8,30,Australia,AU,New South Wales,-28.391123,153.561847,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,9,2,Australia,AU,New South Wales,-28.396236,153.526587,EPSG:4326 +HUMAN_OBSERVATION,Liz Edwards,2,,,2022,10,14,Australia,AU,New South Wales,-28.398833,153.555907,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,2,11,Australia,AU,New South Wales,-28.396851,153.557526,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2022,11,21,Australia,AU,New South Wales,-28.387552,153.564228,EPSG:4326 +HUMAN_OBSERVATION,irene timmins,1,MALE,,2024,4,2,Australia,AU,New South Wales,-28.388371,153.557872,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,12,21,Australia,AU,New South Wales,-28.397012,153.557309,EPSG:4326 +HUMAN_OBSERVATION,Tanya Fountain,1,,,2021,5,20,Australia,AU,New South Wales,-28.384722,153.562222,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2024,10,16,Australia,AU,New South Wales,-28.380972,153.563799,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2023,7,24,Australia,AU,New South Wales,-28.377676,153.556107,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2023,11,14,Australia,AU,New South Wales,-28.387913,153.563998,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,,,2021,4,13,Australia,AU,New South Wales,-28.389131,153.5597,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins ,1,,,2020,6,4,Australia,AU,New South Wales,-28.400197,153.557617,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,MALE,,2021,8,10,Australia,AU,New South Wales,-28.328333,153.559444,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,FEMALE,,2024,9,27,Australia,AU,New South Wales,-28.384572,153.562606,EPSG:4326 +HUMAN_OBSERVATION,Bruce MacGregor,1,,,2021,8,25,Australia,AU,New South Wales,-28.387582,153.566026,EPSG:4326 +HUMAN_OBSERVATION,Josie Styles,1,MALE,,2024,1,29,Australia,AU,New South Wales,-28.388333,153.557668,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,MALE,,2021,5,8,Australia,AU,New South Wales,-28.387194,153.561808,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,7,8,Australia,AU,New South Wales,-28.397533,153.557112,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2020,12,22,Australia,AU,New South Wales,-28.35123,153.471272,EPSG:4326 +HUMAN_OBSERVATION,paula searle,1,,,2023,12,17,Australia,AU,New South Wales,-28.369147,153.556772,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,MALE,,2024,9,24,Australia,AU,New South Wales,-28.384193,153.562221,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,3,5,Australia,AU,New South Wales,-28.400944,153.556935,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,FEMALE,,2024,11,15,Australia,AU,New South Wales,-28.384544,153.562714,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2021,1,28,Australia,AU,New South Wales,-28.394378,153.557603,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,4,7,Australia,AU,New South Wales,-28.336216,153.56409,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,4,8,Australia,AU,New South Wales,-28.393755,153.559543,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,2,14,Australia,AU,New South Wales,-28.394606,153.557679,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,,,2020,9,25,Australia,AU,New South Wales,-28.398965,153.555914,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,6,15,Australia,AU,New South Wales,-28.399153,153.555909,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,11,11,Australia,AU,New South Wales,-28.384755,153.561341,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,1,14,Australia,AU,New South Wales,-28.370334,153.555196,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,,,2024,9,28,Australia,AU,New South Wales,-28.389135,153.561913,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,3,14,Australia,AU,New South Wales,-28.393962,153.557961,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2024,7,13,Australia,AU,New South Wales,-28.394336,153.558413,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2024,8,6,Australia,AU,New South Wales,-28.388531,153.558014,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,5,28,Australia,AU,New South Wales,-28.397644,153.556713,EPSG:4326 +HUMAN_OBSERVATION,Laurence Palmer,1,,,2023,8,23,Australia,AU,New South Wales,-28.389956,153.565119,EPSG:4326 +HUMAN_OBSERVATION,Mohan Govindasamy,1,,,2022,12,17,Australia,AU,New South Wales,-28.223562,153.498734,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,FEMALE,,2020,9,6,Australia,AU,New South Wales,-28.221719,153.531608,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,5,22,Australia,AU,New South Wales,-28.353989,153.168177,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,2,12,Australia,AU,New South Wales,-28.399095,153.555912,EPSG:4326 +HUMAN_OBSERVATION,ken playford,1,,,2022,3,31,Australia,AU,New South Wales,-28.394081,153.558496,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,14,Australia,AU,New South Wales,-28.373466,153.56233,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,,,2021,7,12,Australia,AU,New South Wales,-28.383121,153.561956,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins ,1,,,2020,4,22,Australia,AU,New South Wales,-28.3967,153.5578,EPSG:4326 +HUMAN_OBSERVATION,Fay Perry,1,,,2023,1,10,Australia,AU,New South Wales,-28.400305,153.557209,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,MALE,,2023,11,14,Australia,AU,New South Wales,-28.389255,153.561854,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,2,FEMALE,,2020,11,28,Australia,AU,New South Wales,-28.252334,153.374763,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,9,17,Australia,AU,New South Wales,-28.386313,153.561579,EPSG:4326 +HUMAN_OBSERVATION,Joel Taylor,1,,,2024,3,18,Australia,AU,New South Wales,-28.260758,153.470275,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,20,Australia,AU,New South Wales,-28.400332,153.557215,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,9,16,Australia,AU,New South Wales,-28.241621,153.511577,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,1,22,Australia,AU,New South Wales,-28.249243,153.478339,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,3,14,Australia,AU,New South Wales,-28.396494,153.557721,EPSG:4326 +HUMAN_OBSERVATION,Hannah Munro,2,FEMALE,,2020,10,27,Australia,AU,New South Wales,-28.320689,153.463836,EPSG:4326 +HUMAN_OBSERVATION,Anita Mudge,2,FEMALE,,2023,11,18,Australia,AU,New South Wales,-28.287007,153.560752,EPSG:4326 +HUMAN_OBSERVATION,Gillian Eurell,2,FEMALE,,2022,12,23,Australia,AU,New South Wales,-28.230652,153.518875,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,FEMALE,,2024,9,30,Australia,AU,New South Wales,-28.397464,153.55715,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,4,25,Australia,AU,New South Wales,-28.333102,153.544066,EPSG:4326 +HUMAN_OBSERVATION,Peter Bracs,1,FEMALE,,2024,2,18,Australia,AU,New South Wales,-28.325992,153.470139,EPSG:4326 +HUMAN_OBSERVATION,Donna Handley,1,,,2023,1,23,Australia,AU,New South Wales,-28.388498,153.55759,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,9,19,Australia,AU,New South Wales,-28.238141,153.502075,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,,,2023,11,15,Australia,AU,New South Wales,-28.389182,153.561823,EPSG:4326 +HUMAN_OBSERVATION,Noel Hart,2,,,2021,7,29,Australia,AU,New South Wales,-28.380908,153.564393,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,9,Australia,AU,New South Wales,-28.242245,153.494377,EPSG:4326 +HUMAN_OBSERVATION,Anita Mudge,1,,,2021,8,3,Australia,AU,New South Wales,-28.287376,153.560377,EPSG:4326 +HUMAN_OBSERVATION,David Charley,1,,,2022,3,22,Australia,AU,New South Wales,-28.40453,153.527861,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,11,19,Australia,AU,New South Wales,-28.368921,153.559028,EPSG:4326 +HUMAN_OBSERVATION,Corey Lawrence,1,,,2021,8,15,Australia,AU,New South Wales,-28.380772,153.563961,EPSG:4326 +HUMAN_OBSERVATION,Fay Perry,1,,,2023,11,16,Australia,AU,New South Wales,-28.398776,153.555956,EPSG:4326 +HUMAN_OBSERVATION,Joy Lewis,1,,,2020,8,21,Australia,AU,New South Wales,-28.388596,153.558007,EPSG:4326 +HUMAN_OBSERVATION,Helen Flood,1,MALE,,2023,11,8,Australia,AU,New South Wales,-28.387814,153.563815,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,8,3,Australia,AU,New South Wales,-28.388661,153.557923,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,9,6,Australia,AU,New South Wales,-28.360009,153.35622,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,MALE,,2024,10,8,Australia,AU,New South Wales,-28.388328,153.557615,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,5,20,Australia,AU,New South Wales,-28.227743,153.488326,EPSG:4326 +HUMAN_OBSERVATION,Janos Leier,1,,,2022,11,15,Australia,AU,New South Wales,-28.332526,153.545254,EPSG:4326 +HUMAN_OBSERVATION,Robert Johnson,1,,,2024,8,16,Australia,AU,New South Wales,-28.408148,153.556249,EPSG:4326 +HUMAN_OBSERVATION,Tania Burke,1,,,2023,7,22,Australia,AU,New South Wales,-28.328258,153.568311,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,2,FEMALE,,2020,11,18,Australia,AU,New South Wales,-28.398753,153.555983,EPSG:4326 +HUMAN_OBSERVATION,Brian Bailey,1,,,2024,2,24,Australia,AU,New South Wales,-28.216448,153.510981,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,2,5,Australia,AU,New South Wales,-28.29284,153.243706,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,,,2024,9,14,Australia,AU,New South Wales,-28.389135,153.561809,EPSG:4326 +HUMAN_OBSERVATION,Jac Amorosa,1,,,2022,10,7,Australia,AU,New South Wales,-28.388545,153.557526,EPSG:4326 +HUMAN_OBSERVATION,Robert Johnson,1,,,2024,7,25,Australia,AU,New South Wales,-28.408167,153.5563,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,3,1,Australia,AU,New South Wales,-28.400128,153.556747,EPSG:4326 +HUMAN_OBSERVATION,Fay Perry,1,,,2023,11,1,Australia,AU,New South Wales,-28.398866,153.555838,EPSG:4326 +HUMAN_OBSERVATION,irene timmins,1,FEMALE,,2023,11,26,Australia,AU,New South Wales,-28.371301,153.559753,EPSG:4326 +HUMAN_OBSERVATION,Terese Cooke,2,FEMALE,,2023,7,16,Australia,AU,New South Wales,-28.242169,153.505408,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2023,3,10,Australia,AU,New South Wales,-28.397501,153.557122,EPSG:4326 +HUMAN_OBSERVATION,Danielle Robins & Josie Styles,1,MALE,,2024,2,10,Australia,AU,New South Wales,-28.388387,153.557512,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,7,29,Australia,AU,New South Wales,-28.383754,153.562415,EPSG:4326 +HUMAN_OBSERVATION,Judy Murray,1,,,2022,9,9,Australia,AU,New South Wales,-28.361203,153.532187,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,9,27,Australia,AU,New South Wales,-28.392627,153.563184,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,7,13,Australia,AU,New South Wales,-28.310977,153.498076,EPSG:4326 +HUMAN_OBSERVATION, Helen Dunkley,2,,,2024,4,2,Australia,AU,New South Wales,-28.384026,153.562606,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,FEMALE,,2020,10,20,Australia,AU,New South Wales,-28.254577,153.49683,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,3,18,Australia,AU,New South Wales,-28.396913,153.557587,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2024,1,9,Australia,AU,New South Wales,-28.388433,153.558272,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,3,30,Australia,AU,New South Wales,-28.387719,153.564237,EPSG:4326 +HUMAN_OBSERVATION,Ava Hollis,1,,,2021,4,16,Australia,AU,New South Wales,-28.37077,153.559427,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,4,19,Australia,AU,New South Wales,-28.272041,153.460073,EPSG:4326 +HUMAN_OBSERVATION,Donna Rishton-Potter,1,,,2024,3,21,Australia,AU,New South Wales,-28.376255,153.555602,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,FEMALE,,2021,4,9,Australia,AU,New South Wales,-28.380544,153.564338,EPSG:4326 +HUMAN_OBSERVATION,Miranda Luscombe,1,,,2024,3,18,Australia,AU,New South Wales,-28.378771,153.555597,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,1,24,Australia,AU,New South Wales,-28.399591,153.556042,EPSG:4326 +HUMAN_OBSERVATION,Ecosure,1,,,2021,10,31,Australia,AU,New South Wales,-28.367257,153.561786,EPSG:4326 +HUMAN_OBSERVATION,ERIN MCFARLANE,1,,,2021,8,3,Australia,AU,New South Wales,-28.394194,153.558289,EPSG:4326 +HUMAN_OBSERVATION,Robert Johnson,1,,,2024,6,23,Australia,AU,New South Wales,-28.408245,153.556205,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,1,5,Australia,AU,New South Wales,-28.328913,153.496278,EPSG:4326 +HUMAN_OBSERVATION,Donna Handley,1,MALE,,2023,4,4,Australia,AU,New South Wales,-28.387292,153.565702,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2022,7,12,Australia,AU,New South Wales,-28.396592,153.55756,EPSG:4326 +HUMAN_OBSERVATION,Peter Bracs,1,,,2024,3,7,Australia,AU,New South Wales,-28.326218,153.469863,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,9,22,Australia,AU,New South Wales,-28.399201,153.555885,EPSG:4326 +HUMAN_OBSERVATION,Jac Amoroso,1,,,2023,12,18,Australia,AU,New South Wales,-28.377412,153.556337,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2021,10,5,Australia,AU,New South Wales,-28.405,153.548611,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,1,14,Australia,AU,New South Wales,-28.37234,153.556207,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2024,7,28,Australia,AU,New South Wales,-28.397261,153.557024,EPSG:4326 +HUMAN_OBSERVATION,Liz Edwards,2,,,2022,11,6,Australia,AU,New South Wales,-28.398812,153.555897,EPSG:4326 +HUMAN_OBSERVATION,Barbara Lucena,1,,,2021,9,10,Australia,AU,New South Wales,-28.38947,153.563487,EPSG:4326 +HUMAN_OBSERVATION,resident on Bottlebrush,1,,,2021,8,24,Australia,AU,New South Wales,-28.372784,153.560396,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,3,4,Australia,AU,New South Wales,-28.397356,153.557183,EPSG:4326 +HUMAN_OBSERVATION,Tania Burke,1,,,2022,8,18,Australia,AU,New South Wales,-28.328294,153.567606,EPSG:4326 +HUMAN_OBSERVATION,Anita Mudge,1,,,2021,8,29,Australia,AU,New South Wales,-28.286866,153.559675,EPSG:4326 +HUMAN_OBSERVATION,Sandy-Lee Rosenblatt-Prince,1,,,2023,8,28,Australia,AU,New South Wales,-28.389704,153.56526,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2023,6,22,Australia,AU,New South Wales,-28.385714,153.561557,EPSG:4326 +HUMAN_OBSERVATION,Jayavinda,1,,,2020,8,31,Australia,AU,New South Wales,-28.304107,153.233958,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,,,2024,9,18,Australia,AU,New South Wales,-28.389145,153.561809,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins ,1,MALE,,2020,1,6,Australia,AU,New South Wales,-28.393697,153.559739,EPSG:4326 +HUMAN_OBSERVATION,Christopher Graves,1,,,2022,12,31,Australia,AU,New South Wales,-28.390008,153.546464,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,MALE,,2023,1,11,Australia,AU,New South Wales,-28.398726,153.556012,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,FEMALE,,2021,10,27,Australia,AU,New South Wales,-28.4371,153.4064,EPSG:4326 +HUMAN_OBSERVATION,Oliver Brown-hovelt,2,FEMALE,,2022,11,22,Australia,AU,New South Wales,-28.397007,153.557314,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2023,10,2,Australia,AU,New South Wales,-28.240346,153.505377,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,24,Australia,AU,New South Wales,-28.373789,153.558181,EPSG:4326 +HUMAN_OBSERVATION,Lauren Morley,1,,,2020,4,13,Australia,AU,New South Wales,-28.37576,153.566262,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,FEMALE,,2021,12,5,Australia,AU,New South Wales,-28.397415,153.557034,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,27,Australia,AU,New South Wales,-28.374739,153.562697,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2020,8,21,Australia,AU,New South Wales,-28.331049,153.558708,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,3,15,Australia,AU,New South Wales,-28.187681,153.503083,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,11,9,Australia,AU,New South Wales,-28.516985,153.181628,EPSG:4326 +HUMAN_OBSERVATION,Chris Cherry,1,MALE,,2023,10,2,Australia,AU,New South Wales,-28.424519,153.48756,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2023,6,25,Australia,AU,New South Wales,-28.384158,153.562481,EPSG:4326 +HUMAN_OBSERVATION,Rachel Foster,1,,,2020,12,2,Australia,AU,New South Wales,-28.385053,153.560947,EPSG:4326 +HUMAN_OBSERVATION,Diane Kemper,2,,,2022,6,20,Australia,AU,New South Wales,-28.38586,153.561568,EPSG:4326 +HUMAN_OBSERVATION,Rachel Foster,2,FEMALE,,2021,9,17,Australia,AU,New South Wales,-28.385487,153.561507,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins ,2,FEMALE,,2020,1,24,Australia,AU,New South Wales,-28.396753,153.557739,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,25,Australia,AU,New South Wales,-28.223126,153.499496,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,4,24,Australia,AU,New South Wales,-28.397442,153.557144,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2022,11,4,Australia,AU,New South Wales,-28.22333,153.499024,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2022,11,1,Australia,AU,New South Wales,-28.223567,153.498659,EPSG:4326 +HUMAN_OBSERVATION,irene timmins and Erin MacFarlane,2,FEMALE,,2022,6,14,Australia,AU,New South Wales,-28.386672,153.561629,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,8,3,Australia,AU,New South Wales,-28.385638,153.561506,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,15,Australia,AU,New South Wales,-28.3875,153.555313,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,7,26,Australia,AU,New South Wales,-28.380843,153.555149,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,MALE,,2020,10,7,Australia,AU,New South Wales,-28.399483,153.556122,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,MALE,,2020,1,25,Australia,AU,New South Wales,-28.399064,153.555888,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,11,19,Australia,AU,New South Wales,-28.268077,153.458175,EPSG:4326 +HUMAN_OBSERVATION,Maree ,1,MALE,,2024,8,17,Australia,AU,New South Wales,-28.399972,153.556594,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,,,2023,11,2,Australia,AU,New South Wales,-28.253417,153.464524,EPSG:4326 +HUMAN_OBSERVATION,scottbirch@bigpond.com scottbirch@bigpond.com,2,,,2020,10,20,Australia,AU,New South Wales,-28.383281,153.562089,EPSG:4326 +HUMAN_OBSERVATION,Anita Mudge,1,,,2021,8,1,Australia,AU,New South Wales,-28.286564,153.560399,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,3,3,Australia,AU,New South Wales,-28.400064,153.556803,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2022,11,3,Australia,AU,New South Wales,-28.223179,153.49941,EPSG:4326 +HUMAN_OBSERVATION,Callie Wynd,1,,,2021,10,16,Australia,AU,New South Wales,-28.354594,153.572475,EPSG:4326 +HUMAN_OBSERVATION,"Josie Styles, Amanda Whineray",1,MALE,,2024,1,30,Australia,AU,New South Wales,-28.388505,153.557518,EPSG:4326 +HUMAN_OBSERVATION,Robert Johnson,1,,,2024,8,10,Australia,AU,New South Wales,-28.408205,153.556439,EPSG:4326 +HUMAN_OBSERVATION,Stewart Brawley,1,,,2020,9,12,Australia,AU,New South Wales,-28.402046,153.556929,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,FEMALE,,2020,12,22,Australia,AU,New South Wales,-28.389286,153.561186,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,MALE,,2021,4,9,Australia,AU,New South Wales,-28.380461,153.56441,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2020,10,7,Australia,AU,New South Wales,-28.21712,153.533716,EPSG:4326 +HUMAN_OBSERVATION,Jason Powell & Bettina Bodley,1,,,2023,7,26,Australia,AU,New South Wales,-28.388625,153.557497,EPSG:4326 +HUMAN_OBSERVATION,Kathryn Schuback,1,,,2020,6,6,Australia,AU,New South Wales,-28.385784,153.563515,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,2,1,Australia,AU,New South Wales,-28.371944,153.555833,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,MALE,,2022,2,21,Australia,AU,New South Wales,-28.237573,153.466081,EPSG:4326 +HUMAN_OBSERVATION,Rene Martin,1,,,2024,6,25,Australia,AU,New South Wales,-28.226358,153.465839,EPSG:4326 +HUMAN_OBSERVATION,Amber Cameron,1,,,2022,6,21,Australia,AU,New South Wales,-28.388103,153.557765,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,8,11,Australia,AU,New South Wales,-28.313877,153.272353,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,8,30,Australia,AU,New South Wales,-28.603257,153.517868,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,9,11,Australia,AU,New South Wales,-28.235962,153.520101,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,9,30,Australia,AU,New South Wales,-28.220704,153.522363,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,4,13,Australia,AU,New South Wales,-28.394156,153.558228,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,2,6,Australia,AU,New South Wales,-28.400371,153.5569,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2021,3,12,Australia,AU,New South Wales,-28.355594,153.272431,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2023,10,4,Australia,AU,New South Wales,-28.223573,153.498863,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,9,3,Australia,AU,New South Wales,-28.389679,153.558072,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2020,10,1,Australia,AU,New South Wales,-28.394319,153.557525,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,FEMALE,,2021,1,10,Australia,AU,New South Wales,-28.2525,153.374722,EPSG:4326 +HUMAN_OBSERVATION,Yvonne Gardiner,1,,,2020,8,20,Australia,AU,New South Wales,-28.369199,153.558592,EPSG:4326 +HUMAN_OBSERVATION,irene timmins,2,FEMALE,,2024,11,8,Australia,AU,New South Wales,-28.385935,153.564161,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,7,14,Australia,AU,New South Wales,-28.390181,153.563451,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,9,10,Australia,AU,New South Wales,-28.39363,153.559659,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,10,16,Australia,AU,New South Wales,-28.393177,153.559907,EPSG:4326 +HUMAN_OBSERVATION,Lynda Heeley,1,,,2020,2,27,Australia,AU,New South Wales,-28.391188,153.562713,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2021,9,3,Australia,AU,New South Wales,-28.238862,153.48834,EPSG:4326 +HUMAN_OBSERVATION,Rodney Keevers,1,,,2024,9,16,Australia,AU,New South Wales,-28.355099,153.274614,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,FEMALE,,2020,8,13,Australia,AU,New South Wales,-28.328066,153.564424,EPSG:4326 +HUMAN_OBSERVATION,Melissa Arnold,1,,,2024,11,17,Australia,AU,New South Wales,-28.213426,153.493605,EPSG:4326 +HUMAN_OBSERVATION,Tanya Fountain,1,FEMALE,,2021,1,15,Australia,AU,New South Wales,-28.367331,153.561739,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,MALE,,2021,2,10,Australia,AU,New South Wales,-28.389209,153.561346,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,,,2024,10,2,Australia,AU,New South Wales,-28.389272,153.561934,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,8,26,Australia,AU,New South Wales,-28.41521,153.554216,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,FEMALE,,2020,11,26,Australia,AU,New South Wales,-28.399966,153.556379,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,4,25,Australia,AU,New South Wales,-28.393312,153.561196,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,7,26,Australia,AU,New South Wales,-28.229928,153.525844,EPSG:4326 +HUMAN_OBSERVATION,Denise ,1,FEMALE,,2021,7,22,Australia,AU,New South Wales,-28.226932,153.494107,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins ,1,,,2020,5,10,Australia,AU,New South Wales,-28.394183,153.558303,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,,,2024,9,12,Australia,AU,New South Wales,-28.399309,153.55599,EPSG:4326 +HUMAN_OBSERVATION,Joel Taylor,1,,,2024,10,5,Australia,AU,New South Wales,-28.261697,153.468978,EPSG:4326 +HUMAN_OBSERVATION,Anna Lane,1,MALE,,2024,9,17,Australia,AU,New South Wales,-28.371927,153.559883,EPSG:4326 +HUMAN_OBSERVATION,Melissa Smith,1,,,2023,1,7,Australia,AU,New South Wales,-28.329334,153.55137,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2021,10,1,Australia,AU,New South Wales,-28.230101,153.525759,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,6,11,Australia,AU,New South Wales,-28.479923,153.335477,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,1,6,Australia,AU,New South Wales,-28.393303,153.563435,EPSG:4326 +HUMAN_OBSERVATION,Joel Taylor,1,,,2024,7,29,Australia,AU,New South Wales,-28.261208,153.468475,EPSG:4326 +HUMAN_OBSERVATION,Scott Hetherington,1,MALE,,2020,9,19,Australia,AU,New South Wales,-28.386314,153.565173,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,,,2024,7,15,Australia,AU,New South Wales,-28.397374,153.557369,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,11,9,Australia,AU,New South Wales,-28.389211,153.559031,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,24,Australia,AU,New South Wales,-28.374485,153.56316,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,1,31,Australia,AU,New South Wales,-28.399921,153.556382,EPSG:4326 +HUMAN_OBSERVATION,scottbirch@bigpond.com scottbirch@bigpond.com,1,MALE,,2020,11,1,Australia,AU,New South Wales,-28.380608,153.564194,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,9,9,Australia,AU,New South Wales,-28.398612,153.556106,EPSG:4326 +HUMAN_OBSERVATION,Karina Appo,1,,,2022,7,30,Australia,AU,New South Wales,-28.330994,153.556508,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,10,17,Australia,AU,New South Wales,-28.394251,153.558243,EPSG:4326 +HUMAN_OBSERVATION,Carol Matasci,1,,,2023,9,20,Australia,AU,New South Wales,-28.387927,153.563949,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2021,11,9,Australia,AU,New South Wales,-28.218826,153.523302,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,,,2021,7,6,Australia,AU,New South Wales,-28.40779,153.552788,EPSG:4326 +HUMAN_OBSERVATION,irene timmins,1,FEMALE,,2022,6,9,Australia,AU,New South Wales,-28.363195,153.560176,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,3,5,Australia,AU,New South Wales,-28.393288,153.557349,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,11,6,Australia,AU,New South Wales,-28.386921,153.557426,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,,,2023,1,11,Australia,AU,New South Wales,-28.398271,153.556397,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,MALE,,2024,9,23,Australia,AU,New South Wales,-28.370935,153.556309,EPSG:4326 +HUMAN_OBSERVATION,Asha Igoe,1,,,2021,7,13,Australia,AU,New South Wales,-28.388041,153.561464,EPSG:4326 +HUMAN_OBSERVATION,Bruce MacGregor,1,,,2022,6,21,Australia,AU,New South Wales,-28.385699,153.561541,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,6,27,Australia,AU,New South Wales,-28.387638,153.557323,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,12,21,Australia,AU,New South Wales,-28.3986,153.555798,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,3,25,Australia,AU,New South Wales,-28.399509,153.555878,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,1,26,Australia,AU,New South Wales,-28.246907,153.482997,EPSG:4326 +HUMAN_OBSERVATION,irene timmins,1,FEMALE,,2021,10,15,Australia,AU,New South Wales,-28.394034,153.558668,EPSG:4326 +HUMAN_OBSERVATION,Anita Mudge,1,,,2021,6,15,Australia,AU,New South Wales,-28.286772,153.560416,EPSG:4326 +HUMAN_OBSERVATION,Toneill Corlis,1,,,2023,4,8,Australia,AU,New South Wales,-28.331063,153.561041,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2020,11,7,Australia,AU,New South Wales,-28.394358,153.557617,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,8,11,Australia,AU,New South Wales,-28.313877,153.272353,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,10,11,Australia,AU,New South Wales,-28.32819,153.467897,EPSG:4326 +HUMAN_OBSERVATION,Robert Johnson,1,,,2024,7,18,Australia,AU,New South Wales,-28.407577,153.557957,EPSG:4326 +HUMAN_OBSERVATION,Joel Taylor,1,,,2024,7,11,Australia,AU,New South Wales,-28.2608,153.470078,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,4,16,Australia,AU,New South Wales,-28.393807,153.55781,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,8,20,Australia,AU,New South Wales,-28.243663,153.555683,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,10,10,Australia,AU,New South Wales,-28.3813,153.563539,EPSG:4326 +HUMAN_OBSERVATION,scottbirch@bigpond.com scottbirch@bigpond.com,1,MALE,,2020,11,4,Australia,AU,New South Wales,-28.382647,153.562364,EPSG:4326 +HUMAN_OBSERVATION,Patricia Hale,1,,,2020,10,28,Australia,AU,New South Wales,-28.37407,153.560622,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2023,3,10,Australia,AU,New South Wales,-28.397337,153.55672,EPSG:4326 +HUMAN_OBSERVATION,Alison Kyle,1,,,2020,1,19,Australia,AU,New South Wales,-28.387794,153.557274,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,FEMALE,,2021,8,27,Australia,AU,New South Wales,-28.247172,153.472227,EPSG:4326 +HUMAN_OBSERVATION,Phil Henley,1,,,2023,3,31,Australia,AU,New South Wales,-28.254683,153.445745,EPSG:4326 +HUMAN_OBSERVATION,Susan M,2,FEMALE,,2024,8,15,Australia,AU,New South Wales,-28.35045,153.26662,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,9,17,Australia,AU,New South Wales,-28.223,153.499378,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,,,2022,3,30,Australia,AU,New South Wales,-28.229973,153.492249,EPSG:4326 +HUMAN_OBSERVATION,"irene timmins, Helene Sheehan",1,,,2024,9,11,Australia,AU,New South Wales,-28.373534,153.558372,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,MALE,,2021,3,15,Australia,AU,New South Wales,-28.384369,153.562334,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,11,15,Australia,AU,New South Wales,-28.383579,153.561989,EPSG:4326 +HUMAN_OBSERVATION,Jeremy Tomlinson,1,,,2023,10,3,Australia,AU,New South Wales,-28.234631,153.448083,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,FEMALE,,2022,7,23,Australia,AU,New South Wales,-28.393654,153.559673,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,3,22,Australia,AU,New South Wales,-28.392089,153.562331,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2024,8,1,Australia,AU,New South Wales,-28.397536,153.556975,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,3,4,Australia,AU,New South Wales,-28.400014,153.556778,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,MALE,,2022,6,8,Australia,AU,New South Wales,-28.237308,153.466467,EPSG:4326 +HUMAN_OBSERVATION,Robert Johnson,1,,,2024,7,9,Australia,AU,New South Wales,-28.408207,153.556241,EPSG:4326 +HUMAN_OBSERVATION,Robert Johnson,1,,,2024,7,28,Australia,AU,New South Wales,-28.408219,153.556212,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2023,2,24,Australia,AU,New South Wales,-28.38333,153.559205,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,9,28,Australia,AU,New South Wales,-28.393689,153.559586,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,4,10,Australia,AU,New South Wales,-28.393779,153.55781,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,11,16,Australia,AU,New South Wales,-28.394222,153.55828,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,7,17,Australia,AU,New South Wales,-28.388386,153.55749,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2022,2,22,Australia,AU,New South Wales,-28.397093,153.557263,EPSG:4326 +HUMAN_OBSERVATION,Lynda Heeley,1,,,2020,2,1,Australia,AU,New South Wales,-28.392306,153.562542,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,5,16,Australia,AU,New South Wales,-28.398547,153.556057,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,7,27,Australia,AU,New South Wales,-28.388392,153.557805,EPSG:4326 +HUMAN_OBSERVATION,Anita Mudge,1,,,2020,11,12,Australia,AU,New South Wales,-28.28902,153.561338,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,,,2024,10,6,Australia,AU,New South Wales,-28.38922,153.561873,EPSG:4326 +HUMAN_OBSERVATION,Melissa Smith,1,,,2023,1,7,Australia,AU,New South Wales,-28.330064,153.516988,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,,,2024,10,20,Australia,AU,New South Wales,-28.389201,153.561879,EPSG:4326 +HUMAN_OBSERVATION,Michael Banks,1,,,2024,8,28,Australia,AU,New South Wales,-28.328876,153.549396,EPSG:4326 +HUMAN_OBSERVATION,Tammy Jones,1,,,2023,9,1,Australia,AU,New South Wales,-28.261056,153.47177,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,10,15,Australia,AU,New South Wales,-28.393411,153.563264,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,9,17,Australia,AU,New South Wales,-28.387175,153.560891,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,10,16,Australia,AU,New South Wales,-28.393663,153.559707,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,3,3,Australia,AU,New South Wales,-28.400064,153.556803,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,1,24,Australia,AU,New South Wales,-28.336159,153.564401,EPSG:4326 +HUMAN_OBSERVATION,paula searle,1,MALE,,2023,12,14,Australia,AU,New South Wales,-28.369107,153.556734,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,24,Australia,AU,New South Wales,-28.393549,153.557066,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,,,2024,9,15,Australia,AU,New South Wales,-28.389069,153.561852,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,10,24,Australia,AU,New South Wales,-28.235416,153.461419,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,7,13,Australia,AU,New South Wales,-28.310977,153.498076,EPSG:4326 +HUMAN_OBSERVATION,Lindi McMullin,1,,,2023,3,14,Australia,AU,New South Wales,-28.388531,153.499217,EPSG:4326 +HUMAN_OBSERVATION,Susan M (FoK),1,MALE,,2023,2,18,Australia,AU,New South Wales,-28.415444,153.477853,EPSG:4326 +HUMAN_OBSERVATION,Janie Edwards,1,,,2022,11,17,Australia,AU,New South Wales,-28.434324,153.472082,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,1,21,Australia,AU,New South Wales,-28.397244,153.557549,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2020,11,27,Australia,AU,New South Wales,-28.252292,153.374688,EPSG:4326 +HUMAN_OBSERVATION,Rachel Foster,2,FEMALE,,2021,8,13,Australia,AU,New South Wales,-28.385605,153.561545,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2024,10,18,Australia,AU,New South Wales,-28.222922,153.499241,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,FEMALE,,2021,2,10,Australia,AU,New South Wales,-28.391217,153.561829,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,6,20,Australia,AU,New South Wales,-28.393779,153.559478,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2021,6,9,Australia,AU,New South Wales,-28.390324,153.324552,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2022,12,26,Australia,AU,New South Wales,-28.22333,153.498766,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,12,8,Australia,AU,New South Wales,-28.251271,153.502222,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,,,2021,3,2,Australia,AU,New South Wales,-28.398698,153.55592,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,,,2020,7,25,Australia,AU,New South Wales,-28.387266,153.562712,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,9,27,Australia,AU,New South Wales,-28.232986,153.443557,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,3,16,Australia,AU,New South Wales,-28.21383,153.51374,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,7,8,Australia,AU,New South Wales,-28.393748,153.559532,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,1,6,Australia,AU,New South Wales,-28.330657,153.561808,EPSG:4326 +HUMAN_OBSERVATION,Joel Taylor,1,,,2024,4,27,Australia,AU,New South Wales,-28.26075,153.469927,EPSG:4326 +HUMAN_OBSERVATION,Fay Perry,1,,,2023,2,11,Australia,AU,New South Wales,-28.400272,153.556836,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2022,10,27,Australia,AU,New South Wales,-28.223491,153.498874,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,9,3,Australia,AU,New South Wales,-28.368956,153.572557,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,FEMALE,,2022,3,25,Australia,AU,New South Wales,-28.393708,153.559633,EPSG:4326 +HUMAN_OBSERVATION,Joel Taylor,1,,,2024,3,10,Australia,AU,New South Wales,-28.261166,153.470045,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,2,28,Australia,AU,New South Wales,-28.398844,153.555957,EPSG:4326 +HUMAN_OBSERVATION,Jacki Wyper,1,,,2023,1,14,Australia,AU,New South Wales,-28.38855,153.557554,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2020,8,6,Australia,AU,New South Wales,-28.415225,153.554747,EPSG:4326 +HUMAN_OBSERVATION,Rod Keevers,1,,,2024,8,5,Australia,AU,New South Wales,-28.324825,153.465132,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,MALE,,2024,9,17,Australia,AU,New South Wales,-28.376912,153.555884,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,7,19,Australia,AU,New South Wales,-28.339384,153.219631,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,10,5,Australia,AU,New South Wales,-28.392146,153.562398,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,11,5,Australia,AU,New South Wales,-28.46623,153.461614,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,FEMALE,,2021,6,9,Australia,AU,New South Wales,-28.38367,153.562275,EPSG:4326 +HUMAN_OBSERVATION,irene timmins,1,FEMALE,,2020,10,2,Australia,AU,New South Wales,-28.371295,153.559704,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,11,18,Australia,AU,New South Wales,-28.399086,153.555804,EPSG:4326 +HUMAN_OBSERVATION,irene timmins & Jenell George,1,,,2021,5,13,Australia,AU,New South Wales,-28.37268,153.556565,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,,,2020,10,28,Australia,AU,New South Wales,-28.381709,153.562995,EPSG:4326 +HUMAN_OBSERVATION,"Ken Playford, Bruce MacGregor",1,,,2021,8,25,Australia,AU,New South Wales,-28.388031,153.563846,EPSG:4326 +HUMAN_OBSERVATION,Suzanne Evans,1,,,2020,10,11,Australia,AU,New South Wales,-28.33094,153.556466,EPSG:4326 +HUMAN_OBSERVATION,Rachel Foster,2,FEMALE,,2020,8,8,Australia,AU,New South Wales,-28.385519,153.561326,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,9,12,Australia,AU,New South Wales,-28.244504,153.49078,EPSG:4326 +HUMAN_OBSERVATION,Mercedes Lazarou,1,,,2021,4,9,Australia,AU,New South Wales,-28.374668,153.563915,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins ,1,,,2020,4,9,Australia,AU,New South Wales,-28.40089,153.556997,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,12,3,Australia,AU,New South Wales,-28.399168,153.555851,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,27,Australia,AU,New South Wales,-28.374906,153.562809,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,10,3,Australia,AU,New South Wales,-28.203027,153.438638,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,8,4,Australia,AU,New South Wales,-28.387475,153.561399,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,9,14,Australia,AU,New South Wales,-28.237942,153.516048,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,11,24,Australia,AU,New South Wales,-28.235204,153.462354,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,2,FEMALE,,2020,10,7,Australia,AU,New South Wales,-28.399522,153.556092,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,11,19,Australia,AU,New South Wales,-28.368921,153.559028,EPSG:4326 +HUMAN_OBSERVATION,Susan M (FoK),1,MALE,,2023,7,16,Australia,AU,New South Wales,-28.41718,153.482784,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2023,7,29,Australia,AU,New South Wales,-28.388533,153.557467,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,20,Australia,AU,New South Wales,-28.399617,153.556043,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,FEMALE,,2021,6,9,Australia,AU,New South Wales,-28.383321,153.562022,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,10,15,Australia,AU,New South Wales,-28.35228,153.571052,EPSG:4326 +HUMAN_OBSERVATION,Chilli Powell,1,,,2023,11,19,Australia,AU,New South Wales,-28.377162,153.567994,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2021,11,11,Australia,AU,New South Wales,-28.387975,153.564056,EPSG:4326 +HUMAN_OBSERVATION,Karyn McKinnon,2,FEMALE,,2021,9,12,Australia,AU,New South Wales,-28.397422,153.556726,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,9,1,Australia,AU,New South Wales,-28.333004,153.537312,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2022,9,20,Australia,AU,New South Wales,-28.228717,153.492796,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,FEMALE,,2023,2,14,Australia,AU,New South Wales,-28.237293,153.466863,EPSG:4326 +HUMAN_OBSERVATION,Sarah Cobb,1,FEMALE,,2020,12,12,Australia,AU,New South Wales,-28.253671,153.37723,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,,,2021,1,3,Australia,AU,New South Wales,-28.228239,153.490644,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,6,13,Australia,AU,New South Wales,-28.398694,153.555943,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2024,10,16,Australia,AU,New South Wales,-28.384211,153.562592,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins ,1,,,2020,3,4,Australia,AU,New South Wales,-28.400103,153.556825,EPSG:4326 +HUMAN_OBSERVATION,Paula Searle,1,,,2024,9,7,Australia,AU,New South Wales,-28.372579,153.564502,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,,,2024,11,3,Australia,AU,New South Wales,-28.264682,153.355407,EPSG:4326 +HUMAN_OBSERVATION,Sim Lobascher,1,,,2022,11,19,Australia,AU,New South Wales,-28.388597,153.565513,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,10,4,Australia,AU,New South Wales,-28.393085,153.561768,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2024,10,16,Australia,AU,New South Wales,-28.383769,153.562211,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,5,18,Australia,AU,New South Wales,-28.393661,153.557536,EPSG:4326 +HUMAN_OBSERVATION,Mo Newman,1,,,2020,7,27,Australia,AU,New South Wales,-28.258902,153.370187,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,11,7,Australia,AU,New South Wales,-28.24379,153.55491,EPSG:4326 +HUMAN_OBSERVATION,Yvonne Gardiner,1,,,2021,2,17,Australia,AU,New South Wales,-28.384396,153.562606,EPSG:4326 +HUMAN_OBSERVATION,Lilas Monniot-Kerr,1,,,2020,1,4,Australia,AU,New South Wales,-28.375063,153.564752,EPSG:4326 +HUMAN_OBSERVATION,Robert Johnson,1,,,2024,8,11,Australia,AU,New South Wales,-28.408213,153.556552,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2022,10,29,Australia,AU,New South Wales,-28.223189,153.498917,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,2,6,Australia,AU,New South Wales,-28.400371,153.5569,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,FEMALE,,2022,9,9,Australia,AU,New South Wales,-28.396424,153.557758,EPSG:4326 +HUMAN_OBSERVATION,Anita Mudge,1,,,2023,10,24,Australia,AU,New South Wales,-28.286672,153.560674,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,8,16,Australia,AU,New South Wales,-28.390181,153.563451,EPSG:4326 +HUMAN_OBSERVATION,ken playford,1,,,2024,11,2,Australia,AU,New South Wales,-28.395869,153.557901,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,13,Australia,AU,New South Wales,-28.372948,153.563634,EPSG:4326 +HUMAN_OBSERVATION,Mitchell Cambridge,1,,,2022,10,26,Australia,AU,New South Wales,-28.372208,153.56241,EPSG:4326 +HUMAN_OBSERVATION,Helen Flood,1,,,2021,9,3,Australia,AU,New South Wales,-28.387927,153.563999,EPSG:4326 +HUMAN_OBSERVATION,Anita Mudge,1,FEMALE,,2021,3,7,Australia,AU,New South Wales,-28.287886,153.559782,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,MALE,,2021,5,8,Australia,AU,New South Wales,-28.388682,153.561535,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2023,8,29,Australia,AU,New South Wales,-28.223563,153.498938,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,11,8,Australia,AU,New South Wales,-28.399168,153.555851,EPSG:4326 +HUMAN_OBSERVATION,Amalia Pahlow,1,,,2024,9,9,Australia,AU,New South Wales,-28.27542,153.430101,EPSG:4326 +HUMAN_OBSERVATION,Tracey Boniface,1,,,2023,11,28,Australia,AU,New South Wales,-28.248294,153.481557,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,10,25,Australia,AU,New South Wales,-28.387951,153.56398,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,FEMALE,,2024,11,15,Australia,AU,New South Wales,-28.38459,153.562622,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,7,27,Australia,AU,New South Wales,-28.404377,153.527843,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2023,9,16,Australia,AU,New South Wales,-28.385621,153.561443,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,3,22,Australia,AU,New South Wales,-28.399832,153.556301,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,2,,,2023,11,12,Australia,AU,New South Wales,-28.22342,153.499324,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2020,6,5,Australia,AU,New South Wales,-28.400321,153.557212,EPSG:4326 +HUMAN_OBSERVATION,Greg Lollback,1,MALE,,2020,1,26,Australia,AU,New South Wales,-28.470615,153.228679,EPSG:4326 +HUMAN_OBSERVATION,Joseph DeGrazia,1,,,2020,11,5,Australia,AU,New South Wales,-28.382587,153.562241,EPSG:4326 +HUMAN_OBSERVATION,Nadia Clark,1,,,2021,10,22,Australia,AU,New South Wales,-28.396572,153.541925,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,11,18,Australia,AU,New South Wales,-28.397354,153.557046,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2020,10,27,Australia,AU,New South Wales,-28.374599,153.562237,EPSG:4326 +HUMAN_OBSERVATION,Nick Cropp,1,FEMALE,,2023,9,2,Australia,AU,New South Wales,-28.231356,153.445326,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,6,12,Australia,AU,New South Wales,-28.376147,153.561321,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2020,10,27,Australia,AU,New South Wales,-28.321162,153.463368,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,10,19,Australia,AU,New South Wales,-28.393945,153.559092,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,7,14,Australia,AU,New South Wales,-28.393307,153.561184,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,2,FEMALE,,2022,11,7,Australia,AU,New South Wales,-28.23731,153.466245,EPSG:4326 +HUMAN_OBSERVATION,Marie via Josie Styles,1,,,2024,2,12,Australia,AU,New South Wales,-28.394081,153.55866,EPSG:4326 +HUMAN_OBSERVATION,Rachel Foster,2,FEMALE,,2020,7,11,Australia,AU,New South Wales,-28.385497,153.561351,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,,,2024,9,24,Australia,AU,New South Wales,-28.384989,153.563263,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,1,20,Australia,AU,New South Wales,-28.327038,153.459485,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2023,3,10,Australia,AU,New South Wales,-28.386544,153.561886,EPSG:4326 +HUMAN_OBSERVATION,Denise ,1,,,2021,7,18,Australia,AU,New South Wales,-28.237404,153.466171,EPSG:4326 +HUMAN_OBSERVATION,Beth Hall,1,,,2021,12,29,Australia,AU,New South Wales,-28.413281,153.554402,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,,,2021,6,3,Australia,AU,New South Wales,-28.399887,153.556289,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,12,7,Australia,AU,New South Wales,-28.258198,153.474456,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,10,28,Australia,AU,New South Wales,-28.381373,153.563161,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,2,12,Australia,AU,New South Wales,-28.331098,153.561373,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,MALE,,2021,1,28,Australia,AU,New South Wales,-28.388795,153.561867,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,FEMALE,,2024,9,20,Australia,AU,New South Wales,-28.38797,153.563909,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2020,11,19,Australia,AU,New South Wales,-28.408523,153.559162,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2022,9,29,Australia,AU,New South Wales,-28.223378,153.499174,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,MALE,,2020,12,20,Australia,AU,New South Wales,-28.388905,153.560992,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,MALE,,2020,8,1,Australia,AU,New South Wales,-28.394206,153.558425,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,2,13,Australia,AU,New South Wales,-28.400244,153.556979,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,10,7,Australia,AU,New South Wales,-28.39009,153.56086,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2023,3,10,Australia,AU,New South Wales,-28.383315,153.55922,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,4,20,Australia,AU,New South Wales,-28.244216,153.48519,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,7,28,Australia,AU,New South Wales,-28.378469,153.555618,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,MALE,,2021,8,26,Australia,AU,New South Wales,-28.398611,153.556667,EPSG:4326 +HUMAN_OBSERVATION,Joel Taylor,1,,,2024,5,12,Australia,AU,New South Wales,-28.261593,153.468597,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,2,,,2021,10,16,Australia,AU,New South Wales,-28.393795,153.55946,EPSG:4326 +HUMAN_OBSERVATION,Tanya Fountain,1,,,2021,9,8,Australia,AU,New South Wales,-28.367891,153.561633,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,,,2022,9,12,Australia,AU,New South Wales,-28.237696,153.466038,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,MALE,,2022,9,18,Australia,AU,New South Wales,-28.391102,153.363352,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,2,MALE,,2020,12,21,Australia,AU,New South Wales,-28.389489,153.560089,EPSG:4326 +HUMAN_OBSERVATION,Anita Mudge,1,MALE,,2024,8,24,Australia,AU,New South Wales,-28.286877,153.560095,EPSG:4326 +HUMAN_OBSERVATION,Sasha Kruse,1,,,2020,1,12,Australia,AU,New South Wales,-28.373277,153.557165,EPSG:4326 +HUMAN_OBSERVATION,Josie Styles,1,MALE,,2024,10,9,Australia,AU,New South Wales,-28.387794,153.557389,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,2,17,Australia,AU,New South Wales,-28.330883,153.555051,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,11,9,Australia,AU,New South Wales,-28.389838,153.559492,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2023,6,11,Australia,AU,New South Wales,-28.385765,153.561774,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2022,3,9,Australia,AU,Queensland,-28.248741,153.355605,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,FEMALE,,2024,9,18,Australia,AU,New South Wales,-28.388334,153.558278,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2022,11,25,Australia,AU,New South Wales,-28.223378,153.499174,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,9,13,Australia,AU,New South Wales,-28.393418,153.563264,EPSG:4326 +HUMAN_OBSERVATION,Scott Fischer,1,,,2024,4,14,Australia,AU,New South Wales,-28.243368,153.375997,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,10,4,Australia,AU,New South Wales,-28.239539,153.503502,EPSG:4326 +HUMAN_OBSERVATION,Robert Johnson,1,,,2024,8,15,Australia,AU,New South Wales,-28.408166,153.556336,EPSG:4326 +HUMAN_OBSERVATION,Rachel Foster,1,,,2020,12,24,Australia,AU,New South Wales,-28.381339,153.564035,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2021,8,26,Australia,AU,New South Wales,-28.403401,153.555254,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2021,2,6,Australia,AU,New South Wales,-28.400283,153.557114,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,3,1,Australia,AU,New South Wales,-28.400128,153.556747,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,7,28,Australia,AU,New South Wales,-28.194829,153.517873,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,4,22,Australia,AU,New South Wales,-28.393386,153.561219,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2021,2,28,Australia,AU,New South Wales,-28.391716,153.524537,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,3,3,Australia,AU,New South Wales,-28.399392,153.555779,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,11,11,Australia,AU,New South Wales,-28.38096,153.563517,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2021,2,6,Australia,AU,New South Wales,-28.394633,153.557433,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,MALE,,2024,11,15,Australia,AU,New South Wales,-28.388356,153.558089,EPSG:4326 +HUMAN_OBSERVATION,"Renee, Ollie and Noah Gilmore",1,,,2021,8,25,Australia,AU,New South Wales,-28.375262,153.555751,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,12,1,Australia,AU,New South Wales,-28.391241,153.562595,EPSG:4326 +HUMAN_OBSERVATION,Al Davis,1,,,2022,10,14,Australia,AU,New South Wales,-28.385548,153.561336,EPSG:4326 +HUMAN_OBSERVATION,Jenell George & Susan Monkley,1,,,2024,2,11,Australia,AU,New South Wales,-28.373508,153.556466,EPSG:4326 +HUMAN_OBSERVATION,irene timmins,1,FEMALE,,2021,3,8,Australia,AU,New South Wales,-28.36428,153.560834,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2021,12,3,Australia,AU,New South Wales,-28.315833,153.391845,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,MALE,,2020,11,5,Australia,AU,New South Wales,-28.251819,153.373851,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,MALE,,2024,10,4,Australia,AU,New South Wales,-28.497324,153.240562,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2021,8,6,Australia,AU,New South Wales,-28.394642,153.557511,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,1,8,Australia,AU,New South Wales,-28.286805,153.39323,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,4,26,Australia,AU,New South Wales,-28.393911,153.558768,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,8,17,Australia,AU,New South Wales,-28.332128,153.540581,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,FEMALE,,2021,1,8,Australia,AU,New South Wales,-28.38145,153.563417,EPSG:4326 +HUMAN_OBSERVATION,Mercedes Lazarou,1,,,2020,9,29,Australia,AU,New South Wales,-28.37467,153.564009,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,,,2021,6,17,Australia,AU,New South Wales,-28.358392,153.522273,EPSG:4326 +HUMAN_OBSERVATION,Al Davis,1,,,2021,7,5,Australia,AU,New South Wales,-28.385899,153.561623,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,2,FEMALE,,2023,1,1,Australia,AU,New South Wales,-28.22343,153.498734,EPSG:4326 +HUMAN_OBSERVATION,scottbirch@bigpond.com scottbirch@bigpond.com,2,FEMALE,,2020,11,8,Australia,AU,New South Wales,-28.381181,153.563736,EPSG:4326 +HUMAN_OBSERVATION,Tanya Fountain,1,,,2020,1,6,Australia,AU,New South Wales,-28.408402,153.556801,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,9,8,Australia,AU,New South Wales,-28.392594,153.563183,EPSG:4326 +HUMAN_OBSERVATION,Analie Boland,1,FEMALE,,2024,6,4,Australia,AU,New South Wales,-28.332186,153.541381,EPSG:4326 +HUMAN_OBSERVATION,Tim Marshall,1,,,2022,12,25,Australia,AU,New South Wales,-28.38553,153.561416,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,10,15,Australia,AU,New South Wales,-28.224592,153.501114,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2023,5,27,Australia,AU,New South Wales,-28.384128,153.562319,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,MALE,,2021,1,19,Australia,AU,New South Wales,-28.186409,153.519965,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,1,18,Australia,AU,New South Wales,-28.399896,153.556353,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,7,21,Australia,AU,New South Wales,-28.375307,153.555849,EPSG:4326 +HUMAN_OBSERVATION,Kathryn Schuback,1,,,2023,6,2,Australia,AU,New South Wales,-28.381159,153.556804,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2024,10,16,Australia,AU,New South Wales,-28.384097,153.562469,EPSG:4326 +HUMAN_OBSERVATION,Pottsville Gumnuts Early Learning and Pre School,1,,,2021,9,12,Australia,AU,New South Wales,-28.393392,153.563248,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,3,7,Australia,AU,New South Wales,-28.397359,153.557375,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2023,6,21,Australia,AU,New South Wales,-28.381074,153.563912,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,,,2024,9,3,Australia,AU,New South Wales,-28.246895,153.483167,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,9,22,Australia,AU,New South Wales,-28.229026,153.532096,EPSG:4326 +HUMAN_OBSERVATION,Kyiah Jones,1,,,2022,9,15,Australia,AU,New South Wales,-28.327034,153.398932,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,12,16,Australia,AU,New South Wales,-28.3123,153.475131,EPSG:4326 +HUMAN_OBSERVATION,Lyn Richardson,1,,,2024,4,26,Australia,AU,New South Wales,-28.37752,153.556382,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,12,9,Australia,AU,New South Wales,-28.398935,153.555948,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,FEMALE,,2022,9,18,Australia,AU,New South Wales,-28.237484,153.465844,EPSG:4326 +HUMAN_OBSERVATION,Nic Porter,1,,,2021,10,7,Australia,AU,New South Wales,-28.388732,153.546218,EPSG:4326 +HUMAN_OBSERVATION,Simon Dawson,1,MALE,,2020,11,4,Australia,AU,New South Wales,-28.335019,153.564448,EPSG:4326 +HUMAN_OBSERVATION,Christopher Graves,1,,,2023,2,24,Australia,AU,New South Wales,-28.388961,153.547172,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2022,9,27,Australia,AU,New South Wales,-28.223378,153.499174,EPSG:4326 +HUMAN_OBSERVATION,Christal Alexander,1,,,2024,5,3,Australia,AU,New South Wales,-28.325189,153.465325,EPSG:4326 +HUMAN_OBSERVATION,Jo Higgins,1,,,2021,10,8,Australia,AU,New South Wales,-28.328904,153.468557,EPSG:4326 +HUMAN_OBSERVATION,Noel Hart,1,,,2024,9,10,Australia,AU,New South Wales,-28.373334,153.559297,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2021,7,30,Australia,AU,New South Wales,-28.32933,153.5657,EPSG:4326 +HUMAN_OBSERVATION,Robert Johnson,1,,,2024,9,14,Australia,AU,New South Wales,-28.408178,153.55643,EPSG:4326 +HUMAN_OBSERVATION,Bruce MacGregor,1,,,2021,10,13,Australia,AU,New South Wales,-28.388033,153.563655,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,2,25,Australia,AU,New South Wales,-28.399483,153.556012,EPSG:4326 +HUMAN_OBSERVATION,Susan M,2,FEMALE,,2023,5,21,Australia,AU,New South Wales,-28.38548,153.561372,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,3,29,Australia,AU,New South Wales,-28.393736,153.559618,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,1,24,Australia,AU,New South Wales,-28.404354,153.527643,EPSG:4326 +HUMAN_OBSERVATION,irene timmins,1,FEMALE,,2021,4,21,Australia,AU,New South Wales,-28.371042,153.559686,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,2,FEMALE,,2024,9,1,Australia,AU,New South Wales,-28.255722,153.495889,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,7,27,Australia,AU,New South Wales,-28.404377,153.527843,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,FEMALE,,2020,11,12,Australia,AU,New South Wales,-28.229437,153.49189,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,2,,,2023,3,7,Australia,AU,New South Wales,-28.393647,153.559623,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2024,8,1,Australia,AU,New South Wales,-28.397536,153.556975,EPSG:4326 +HUMAN_OBSERVATION,Cherise Cooper,1,,,2021,7,16,Australia,AU,New South Wales,-28.237443,153.496814,EPSG:4326 +HUMAN_OBSERVATION,Elise Doniger,1,,,2023,5,31,Australia,AU,New South Wales,-28.262129,153.450165,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,8,7,Australia,AU,New South Wales,-28.365997,153.574456,EPSG:4326 +HUMAN_OBSERVATION,Meredith Dennis,1,,,2023,6,21,Australia,AU,New South Wales,-28.315753,153.240856,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,MALE,,2020,12,9,Australia,AU,New South Wales,-28.251194,153.3728,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,MALE,,2021,3,28,Australia,AU,New South Wales,-28.388052,153.563931,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,24,Australia,AU,New South Wales,-28.399735,153.556055,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,3,14,Australia,AU,New South Wales,-28.396942,153.557446,EPSG:4326 +HUMAN_OBSERVATION,irene timmins,1,,,2021,10,1,Australia,AU,New South Wales,-28.372548,153.556518,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2023,2,12,Australia,AU,New South Wales,-28.394019,153.558566,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,MALE,,2021,5,19,Australia,AU,New South Wales,-28.38924,153.561513,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,3,22,Australia,AU,New South Wales,-28.397359,153.557262,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,1,31,Australia,AU,New South Wales,-28.397252,153.556977,EPSG:4326 +HUMAN_OBSERVATION,Tom Livingstone,1,,,2023,2,9,Australia,AU,New South Wales,-28.376375,153.555688,EPSG:4326 +HUMAN_OBSERVATION,David Charley,1,MALE,,2020,9,28,Australia,AU,New South Wales,-28.40827,153.555388,EPSG:4326 +HUMAN_OBSERVATION,Maddy hilli,1,,,2020,1,15,Australia,AU,New South Wales,-28.396392,153.557953,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,1,26,Australia,AU,New South Wales,-28.397381,153.557439,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2024,10,16,Australia,AU,New South Wales,-28.380925,153.564025,EPSG:4326 +HUMAN_OBSERVATION,Rachel Foster,1,,,2020,12,8,Australia,AU,New South Wales,-28.388123,153.560914,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,2,22,Australia,AU,New South Wales,-28.397314,153.556988,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,2,17,Australia,AU,New South Wales,-28.32982,153.555115,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,7,28,Australia,AU,New South Wales,-28.30084,153.389567,EPSG:4326 +HUMAN_OBSERVATION,Coral Nathan,1,,,2022,6,20,Australia,AU,New South Wales,-28.388597,153.55752,EPSG:4326 +HUMAN_OBSERVATION,Danielle Robins,1,,,2024,3,24,Australia,AU,New South Wales,-28.388673,153.557528,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,1,15,Australia,AU,New South Wales,-28.397367,153.557006,EPSG:4326 +HUMAN_OBSERVATION,Oliver Brown- hovelt,1,,,2023,2,4,Australia,AU,New South Wales,-28.388503,153.557558,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,11,27,Australia,AU,New South Wales,-28.255211,153.378076,EPSG:4326 +HUMAN_OBSERVATION,Fay Perry,2,FEMALE,,2022,12,7,Australia,AU,New South Wales,-28.40031,153.556868,EPSG:4326 +HUMAN_OBSERVATION,Christine Ambroisine,1,,,2020,9,2,Australia,AU,New South Wales,-28.258765,153.474069,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,8,20,Australia,AU,New South Wales,-28.233314,153.527242,EPSG:4326 +HUMAN_OBSERVATION,Fay Perry,1,,,2022,11,21,Australia,AU,New South Wales,-28.40005,153.55671,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,4,13,Australia,AU,New South Wales,-28.389917,153.562425,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins ,1,,,2020,4,9,Australia,AU,New South Wales,-28.403117,153.556044,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2020,11,18,Australia,AU,New South Wales,-28.394275,153.557464,EPSG:4326 +HUMAN_OBSERVATION,"Mark Baxter, Irene Timmins and Noel Hart",1,FEMALE,,2024,10,14,Australia,AU,New South Wales,-28.366065,153.561262,EPSG:4326 +HUMAN_OBSERVATION,Mo Newman,1,MALE,,2020,9,26,Australia,AU,New South Wales,-28.259275,153.370133,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,7,31,Australia,AU,New South Wales,-28.388597,153.557297,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2021,5,22,Australia,AU,New South Wales,-28.228416,153.48113,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,18,Australia,AU,New South Wales,-28.389204,153.561166,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2022,3,8,Australia,AU,New South Wales,-28.404832,153.54932,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,7,8,Australia,AU,New South Wales,-28.398598,153.556187,EPSG:4326 +HUMAN_OBSERVATION,Celine Ogg,1,,,2020,12,20,Australia,AU,New South Wales,-28.261702,153.433313,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2022,1,5,Australia,AU,New South Wales,-28.408776,153.555267,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,11,4,Australia,AU,New South Wales,-28.387975,153.563994,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,10,Australia,AU,New South Wales,-28.436217,153.255785,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2020,12,14,Australia,AU,New South Wales,-28.392953,153.56185,EPSG:4326 +HUMAN_OBSERVATION,Mitch Alward,1,,,2020,11,25,Australia,AU,New South Wales,-28.233303,153.526673,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2022,3,8,Australia,AU,New South Wales,-28.404832,153.54932,EPSG:4326 +HUMAN_OBSERVATION,Bruce Jamieson,1,MALE,,2023,8,13,Australia,AU,New South Wales,-28.247201,153.482648,EPSG:4326 +HUMAN_OBSERVATION,Mo Newman,1,,,2021,1,27,Australia,AU,New South Wales,-28.258897,153.370418,EPSG:4326 +HUMAN_OBSERVATION,Tanya Fountain,1,,,2020,5,28,Australia,AU,New South Wales,-28.393943,153.558143,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,15,Australia,AU,New South Wales,-28.386939,153.561767,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,,,2023,11,17,Australia,AU,New South Wales,-28.388988,153.561752,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,8,4,Australia,AU,New South Wales,-28.325477,153.465627,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2021,6,10,Australia,AU,New South Wales,-28.264043,153.47209,EPSG:4326 +HUMAN_OBSERVATION,Elisha Smith,1,MALE,,2023,9,19,Australia,AU,New South Wales,-28.238096,153.502055,EPSG:4326 +HUMAN_OBSERVATION,Belinda Davies,1,,,2022,10,3,Australia,AU,New South Wales,-28.223349,153.446973,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2021,2,23,Australia,AU,New South Wales,-28.252332,153.375095,EPSG:4326 +HUMAN_OBSERVATION,Josie Styles,1,FEMALE,,2024,3,24,Australia,AU,New South Wales,-28.388384,153.55745,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,10,27,Australia,AU,New South Wales,-28.393581,153.557512,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2022,3,14,Australia,AU,New South Wales,-28.398479,153.55609,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,,,2023,9,22,Australia,AU,New South Wales,-28.238243,153.433619,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2024,8,21,Australia,AU,New South Wales,-28.386584,153.562939,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,FEMALE,,2021,10,10,Australia,AU,New South Wales,-28.397447,153.55705,EPSG:4326 +HUMAN_OBSERVATION,Anita Mudge,1,MALE,,2020,10,6,Australia,AU,New South Wales,-28.286809,153.561133,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,2,22,Australia,AU,New South Wales,-28.326808,153.466987,EPSG:4326 +HUMAN_OBSERVATION,Heidi Fletcher,1,,,2020,10,2,Australia,AU,New South Wales,-28.237583,153.465285,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,8,24,Australia,AU,New South Wales,-28.381087,153.563734,EPSG:4326 +HUMAN_OBSERVATION,Janine Pollard,1,,,2023,8,31,Australia,AU,New South Wales,-28.329372,153.562877,EPSG:4326 +HUMAN_OBSERVATION,J Mallee,2,,,2020,2,14,Australia,AU,New South Wales,-28.404028,153.548894,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2021,7,24,Australia,AU,New South Wales,-28.288936,153.39463,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2023,3,10,Australia,AU,New South Wales,-28.393866,153.55926,EPSG:4326 +HUMAN_OBSERVATION,Sylvia Turner,1,,,2020,9,8,Australia,AU,New South Wales,-28.232736,153.518851,EPSG:4326 +HUMAN_OBSERVATION,Lochie Hilli ,1,,,2020,1,15,Australia,AU,New South Wales,-28.397239,153.557739,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2021,9,29,Australia,AU,New South Wales,-28.36821,153.573188,EPSG:4326 +HUMAN_OBSERVATION,"Karen, Lomandra Drive resident",1,FEMALE,,2020,11,11,Australia,AU,New South Wales,-28.368998,153.55913,EPSG:4326 +HUMAN_OBSERVATION,ken playford,1,,,2022,2,20,Australia,AU,New South Wales,-28.394137,153.558372,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2022,9,30,Australia,AU,New South Wales,-28.223491,153.499045,EPSG:4326 +HUMAN_OBSERVATION,Jamie - reported to TVWC - Koala Coordinator TVWC,1,FEMALE,,2024,10,22,Australia,AU,New South Wales,-28.249657,153.413474,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,,,2024,9,13,Australia,AU,New South Wales,-28.389022,153.561895,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,9,3,Australia,AU,New South Wales,-28.33583,153.541106,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2023,9,25,Australia,AU,New South Wales,-28.371558,153.556415,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,1,15,Australia,AU,New South Wales,-28.396989,153.557475,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,,,2024,10,10,Australia,AU,New South Wales,-28.23463,153.490444,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2024,1,2,Australia,AU,New South Wales,-28.388242,153.558,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,11,5,Australia,AU,New South Wales,-28.251271,153.502222,EPSG:4326 +HUMAN_OBSERVATION,Tanya Fountain,1,FEMALE,,2022,4,8,Australia,AU,New South Wales,-28.367279,153.561699,EPSG:4326 +HUMAN_OBSERVATION," Renae, Sheryl Mcmullen ",1,,,2021,9,24,Australia,AU,New South Wales,-28.386438,153.567341,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,5,30,Australia,AU,New South Wales,-28.232574,153.47857,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2020,10,20,Australia,AU,New South Wales,-28.400357,153.557147,EPSG:4326 +HUMAN_OBSERVATION,Renee Gilmore ,1,,,2024,9,30,Australia,AU,New South Wales,-28.37526,153.555908,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,10,10,Australia,AU,New South Wales,-28.289734,153.559556,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,6,21,Australia,AU,New South Wales,-28.248694,153.477993,EPSG:4326 +HUMAN_OBSERVATION,Marcel Widmer,2,FEMALE,,2022,10,13,Australia,AU,New South Wales,-28.386657,153.564671,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2024,8,22,Australia,AU,New South Wales,-28.353414,153.259633,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,FEMALE,,2021,2,18,Australia,AU,New South Wales,-28.369256,153.558418,EPSG:4326 +HUMAN_OBSERVATION,Fay Perry,1,,,2023,3,3,Australia,AU,New South Wales,-28.400291,153.556756,EPSG:4326 +HUMAN_OBSERVATION,Renee Gilmore and Irene Timmins,1,,,2023,7,21,Australia,AU,New South Wales,-28.375219,153.555875,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,6,15,Australia,AU,New South Wales,-28.400022,153.556688,EPSG:4326 +HUMAN_OBSERVATION,Shenaii,1,,,2023,6,1,Australia,AU,New South Wales,-28.442728,153.267446,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford and Irene Timmins,1,,,2022,10,12,Australia,AU,New South Wales,-28.387946,153.563939,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,8,30,Australia,AU,New South Wales,-28.39117,153.562466,EPSG:4326 +HUMAN_OBSERVATION,Nathan Williams,1,,,2023,8,28,Australia,AU,New South Wales,-28.195932,153.540846,EPSG:4326 +HUMAN_OBSERVATION,Janet -> TVWC hotline Koala Coordinator TVWC,1,FEMALE,,2024,11,6,Australia,AU,New South Wales,-28.197031,153.532761,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2022,2,7,Australia,AU,New South Wales,-28.28575,153.56029,EPSG:4326 +HUMAN_OBSERVATION,Scott Benitez Hetherington,1,,,2023,5,20,Australia,AU,New South Wales,-28.404528,153.548981,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,9,9,Australia,AU,New South Wales,-28.398078,153.555612,EPSG:4326 +HUMAN_OBSERVATION,Lay la Lee,1,,,2024,9,4,Australia,AU,New South Wales,-28.334547,153.564837,EPSG:4326 +HUMAN_OBSERVATION,Margaret Mangelsdorf,1,MALE,,2022,10,11,Australia,AU,New South Wales,-28.223964,153.49838,EPSG:4326 +HUMAN_OBSERVATION,Bruce Ray,1,MALE,,2020,9,23,Australia,AU,New South Wales,-28.437691,153.261077,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,FEMALE,,2024,10,23,Australia,AU,New South Wales,-28.363083,153.561384,EPSG:4326 +HUMAN_OBSERVATION,irene timmins and Ken Playford,1,,,2021,2,21,Australia,AU,New South Wales,-28.387986,153.563995,EPSG:4326 +HUMAN_OBSERVATION,Robert Johnson,1,,,2024,8,12,Australia,AU,New South Wales,-28.408131,153.556103,EPSG:4326 +HUMAN_OBSERVATION,Kay Post,1,,,2023,1,2,Australia,AU,New South Wales,-28.239334,153.490065,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,6,13,Australia,AU,New South Wales,-28.394024,153.558285,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,8,22,Australia,AU,New South Wales,-28.392608,153.563196,EPSG:4326 +HUMAN_OBSERVATION,Robyn Briais & Robyn Mills,1,,,2021,9,19,Australia,AU,New South Wales,-28.390466,153.562175,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,7,Australia,AU,New South Wales,-28.288372,153.416797,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2023,1,3,Australia,AU,New South Wales,-28.385582,153.561535,EPSG:4326 +HUMAN_OBSERVATION,Talitha Natt,1,,,2022,3,17,Australia,AU,New South Wales,-28.254361,153.495627,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,FEMALE,,2020,8,25,Australia,AU,New South Wales,-28.229862,153.427208,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2022,3,12,Australia,AU,New South Wales,-28.464957,153.461284,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,MALE,,2020,12,29,Australia,AU,New South Wales,-28.391285,153.562505,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,9,11,Australia,AU,New South Wales,-28.393401,153.561596,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,2,FEMALE,,2021,8,4,Australia,AU,New South Wales,-28.327767,153.564642,EPSG:4326 +HUMAN_OBSERVATION,Alan Swift,1,,,2020,1,3,Australia,AU,New South Wales,-28.387771,153.325549,EPSG:4326 +HUMAN_OBSERVATION,Mitchell Cambridge,1,,,2022,12,5,Australia,AU,New South Wales,-28.389615,153.565028,EPSG:4326 +HUMAN_OBSERVATION,Robert Johnson,2,,,2024,7,6,Australia,AU,New South Wales,-28.40823,153.556218,EPSG:4326 +HUMAN_OBSERVATION,Liesa Brennan,1,,,2021,9,9,Australia,AU,New South Wales,-28.391396,153.564397,EPSG:4326 +HUMAN_OBSERVATION,Joanne Green,1,,,2021,6,19,Australia,AU,New South Wales,-28.222508,153.49866,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,2,21,Australia,AU,New South Wales,-28.398946,153.555796,EPSG:4326 +HUMAN_OBSERVATION,Anna Lane,1,,,2021,4,18,Australia,AU,New South Wales,-28.371386,153.559853,EPSG:4326 +HUMAN_OBSERVATION,Mandy Schaefer,1,,,2020,9,17,Australia,AU,New South Wales,-28.360009,153.35622,EPSG:4326 +HUMAN_OBSERVATION,John Creasey,1,,,2024,8,19,Australia,AU,New South Wales,-28.368727,153.419191,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2022,3,19,Australia,AU,New South Wales,-28.394686,153.557586,EPSG:4326 +HUMAN_OBSERVATION,paula searle,1,,,2020,12,11,Australia,AU,New South Wales,-28.370785,153.556209,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,2,FEMALE,,2021,7,29,Australia,AU,New South Wales,-28.398603,153.556057,EPSG:4326 +HUMAN_OBSERVATION,Fay Perry,1,,,2021,7,6,Australia,AU,New South Wales,-28.40001,153.556647,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,7,27,Australia,AU,New South Wales,-28.326579,153.465827,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2020,11,22,Australia,AU,New South Wales,-28.396944,153.557778,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2023,3,28,Australia,AU,New South Wales,-28.393611,153.559681,EPSG:4326 +HUMAN_OBSERVATION,Colleen Talbot,1,MALE,,2023,7,22,Australia,AU,New South Wales,-28.38838,153.557217,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,,,2023,1,11,Australia,AU,New South Wales,-28.397366,153.557232,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,,,2024,10,21,Australia,AU,New South Wales,-28.284035,153.389582,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,2,18,Australia,AU,New South Wales,-28.394514,153.557611,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,,,2024,10,18,Australia,AU,New South Wales,-28.363296,153.202841,EPSG:4326 +HUMAN_OBSERVATION,Ben Sommers,1,,,2021,6,13,Australia,AU,New South Wales,-28.257896,153.474541,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,9,29,Australia,AU,New South Wales,-28.187167,153.462302,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,2,FEMALE,,2021,11,30,Australia,AU,New South Wales,-28.397082,153.557416,EPSG:4326 +HUMAN_OBSERVATION,Tanya Koens,1,,,2024,7,29,Australia,AU,New South Wales,-28.393798,153.541124,EPSG:4326 +HUMAN_OBSERVATION,Melissa Manning,2,FEMALE,,2023,8,31,Australia,AU,New South Wales,-28.332602,153.544911,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2023,7,27,Australia,AU,New South Wales,-28.378385,153.555453,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,10,20,Australia,AU,New South Wales,-28.399119,153.55589,EPSG:4326 +HUMAN_OBSERVATION,Ken Playfor,1,,,2022,6,8,Australia,AU,New South Wales,-28.393883,153.559233,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,2,FEMALE,,2020,8,14,Australia,AU,New South Wales,-28.385548,153.562111,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2021,2,25,Australia,AU,New South Wales,-28.380833,153.564167,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2023,3,10,Australia,AU,New South Wales,-28.398746,153.555933,EPSG:4326 +HUMAN_OBSERVATION,Josie Styles,1,MALE,,2024,1,8,Australia,AU,New South Wales,-28.388387,153.557477,EPSG:4326 +HUMAN_OBSERVATION,Susan M,2,FEMALE,,2023,7,14,Australia,AU,New South Wales,-28.249349,153.478336,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,MALE,,2024,10,7,Australia,AU,New South Wales,-28.397534,153.556778,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,9,17,Australia,AU,New South Wales,-28.385616,153.56144,EPSG:4326 +HUMAN_OBSERVATION,Tanya Fountain,1,MALE,,2020,8,13,Australia,AU,New South Wales,-28.35799,153.303636,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2020,9,25,Australia,AU,New South Wales,-28.252222,153.374444,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,16,Australia,AU,New South Wales,-28.397524,153.5572,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,,,2023,6,19,Australia,AU,New South Wales,-28.378447,153.55563,EPSG:4326 +HUMAN_OBSERVATION,Adelle Jarvis & Nature Explorers,1,,,2023,3,6,Australia,AU,New South Wales,-28.384161,153.562434,EPSG:4326 +HUMAN_OBSERVATION,Lew Spratt,1,FEMALE,,2021,9,2,Australia,AU,New South Wales,-28.393996,153.560115,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2021,1,22,Australia,AU,New South Wales,-28.254464,153.495958,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,MALE,,2020,12,14,Australia,AU,New South Wales,-28.251337,153.373197,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,MALE,,2024,9,24,Australia,AU,New South Wales,-28.380817,153.563982,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,MALE,,2023,9,15,Australia,AU,New South Wales,-28.380511,153.564354,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,MALE,,2021,5,24,Australia,AU,New South Wales,-28.237336,153.465495,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,30,Australia,AU,New South Wales,-28.2261,153.465926,EPSG:4326 +HUMAN_OBSERVATION,Carla -> Koala Coordinator TVWC,1,,,2024,11,7,Australia,AU,New South Wales,-28.323843,153.460132,EPSG:4326 +HUMAN_OBSERVATION,scottbirch@bigpond.com scottbirch@bigpond.com,1,,,2020,11,11,Australia,AU,New South Wales,-28.381295,153.56342,EPSG:4326 +HUMAN_OBSERVATION,Joanne Green,1,,,2021,9,11,Australia,AU,New South Wales,-28.362476,153.331312,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,MALE,,2020,9,18,Australia,AU,New South Wales,-28.398963,153.555834,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,3,3,Australia,AU,New South Wales,-28.399392,153.555779,EPSG:4326 +HUMAN_OBSERVATION,Jodie Maree,1,,,2023,1,7,Australia,AU,New South Wales,-28.241607,153.511236,EPSG:4326 +HUMAN_OBSERVATION,carol Matasci,1,,,2023,9,20,Australia,AU,New South Wales,-28.381282,153.563236,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,6,5,Australia,AU,New South Wales,-28.234366,153.520242,EPSG:4326 +HUMAN_OBSERVATION,Michael Banks,1,,,2021,8,27,Australia,AU,New South Wales,-28.361556,153.563269,EPSG:4326 +HUMAN_OBSERVATION,Beth Hall,2,,,2022,1,5,Australia,AU,New South Wales,-28.407803,153.55336,EPSG:4326 +HUMAN_OBSERVATION,Jordan Vickers,1,FEMALE,,2024,9,12,Australia,AU,New South Wales,-28.329005,153.549962,EPSG:4326 +HUMAN_OBSERVATION,Elisa Periott,1,,,2023,8,5,Australia,AU,New South Wales,-28.244665,153.506985,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2020,11,11,Australia,AU,New South Wales,-28.249381,153.377742,EPSG:4326 +HUMAN_OBSERVATION,Marion Riordan,1,MALE,,2023,9,26,Australia,AU,New South Wales,-28.324952,153.474455,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,10,20,Australia,AU,New South Wales,-28.399074,153.555716,EPSG:4326 +HUMAN_OBSERVATION,Rob Stuttle,2,FEMALE,,2020,10,5,Australia,AU,New South Wales,-28.247673,153.482165,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,9,6,Australia,AU,New South Wales,-28.399215,153.555628,EPSG:4326 +HUMAN_OBSERVATION,Josie Styles,1,MALE,,2023,12,26,Australia,AU,New South Wales,-28.388418,153.557566,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2023,3,27,Australia,AU,New South Wales,-28.387913,153.564011,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2021,9,11,Australia,AU,New South Wales,-28.392104,153.56231,EPSG:4326 +HUMAN_OBSERVATION,Tanya Fountain,1,MALE,,2020,8,12,Australia,AU,New South Wales,-28.39508,153.557985,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,MALE,,2021,6,9,Australia,AU,New South Wales,-28.380335,153.564544,EPSG:4326 +HUMAN_OBSERVATION,Robert Johnson,1,,,2024,8,9,Australia,AU,New South Wales,-28.408199,153.556418,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2022,2,5,Australia,AU,New South Wales,-28.383844,153.562317,EPSG:4326 +HUMAN_OBSERVATION,Liz Edwards,2,,,2022,10,14,Australia,AU,New South Wales,-28.398314,153.556163,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,11,7,Australia,AU,New South Wales,-28.387951,153.564037,EPSG:4326 +HUMAN_OBSERVATION,Denise,1,MALE,,2021,7,16,Australia,AU,New South Wales,-28.400365,153.556904,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,9,25,Australia,AU,New South Wales,-28.388928,153.543966,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,,,2024,10,4,Australia,AU,New South Wales,-28.389206,153.561777,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2020,8,25,Australia,AU,New South Wales,-28.229862,153.427208,EPSG:4326 +HUMAN_OBSERVATION,Karen McKinnon,2,FEMALE,,2022,11,11,Australia,AU,New South Wales,-28.392972,153.561844,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,FEMALE,,2022,11,21,Australia,AU,New South Wales,-28.237195,153.466081,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2022,1,1,Australia,AU,New South Wales,-28.380983,153.567429,EPSG:4326 +HUMAN_OBSERVATION,Rachel Foster,1,,,2020,2,15,Australia,AU,New South Wales,-28.388407,153.557582,EPSG:4326 +HUMAN_OBSERVATION,Susan M,2,MALE,,2023,7,31,Australia,AU,New South Wales,-28.38842,153.557673,EPSG:4326 +HUMAN_OBSERVATION,Yvonne Gardiner,1,MALE,,2021,1,29,Australia,AU,New South Wales,-28.38468,153.561341,EPSG:4326 +HUMAN_OBSERVATION,Kylie Kane-Rogers,1,,,2020,1,26,Australia,AU,New South Wales,-28.250297,153.478146,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2021,12,24,Australia,AU,New South Wales,-28.287731,153.395107,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,1,MALE,,2021,2,19,Australia,AU,New South Wales,-28.388894,153.561749,EPSG:4326 +HUMAN_OBSERVATION,irene timmins,1,FEMALE,,2020,10,6,Australia,AU,New South Wales,-28.371361,153.559727,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,FEMALE,,2023,2,24,Australia,AU,New South Wales,-28.383293,153.55917,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,8,22,Australia,AU,New South Wales,-28.391286,153.563628,EPSG:4326 +HUMAN_OBSERVATION,David Palmer,1,MALE,,2020,9,14,Australia,AU,New South Wales,-28.383891,153.137314,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,16,Australia,AU,New South Wales,-28.393638,153.557027,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2020,1,31,Australia,AU,New South Wales,-28.252098,153.374264,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,FEMALE,,2020,9,12,Australia,AU,New South Wales,-28.332234,153.564524,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,7,28,Australia,AU,New South Wales,-28.388513,153.557472,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,,,2024,10,4,Australia,AU,New South Wales,-28.389488,153.563412,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,5,7,Australia,AU,New South Wales,-28.372279,153.556602,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,,,2024,9,24,Australia,AU,New South Wales,-28.389182,153.561932,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,9,19,Australia,AU,New South Wales,-28.373982,153.558056,EPSG:4326 +HUMAN_OBSERVATION,Renata Cascaes,1,,,2023,6,12,Australia,AU,New South Wales,-28.388503,153.557523,EPSG:4326 +HUMAN_OBSERVATION,Elise Doniger,1,,,2023,3,3,Australia,AU,New South Wales,-28.260391,153.449221,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2020,9,5,Australia,AU,New South Wales,-28.325282,153.406923,EPSG:4326 +HUMAN_OBSERVATION,Eli Szandala,1,,,2024,1,31,Australia,AU,New South Wales,-28.376772,153.555998,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2020,11,5,Australia,AU,New South Wales,-28.398822,153.555939,EPSG:4326 +HUMAN_OBSERVATION,Koala Coordinator TVWC,1,MALE,,2024,9,18,Australia,AU,New South Wales,-28.384194,153.562364,EPSG:4326 +HUMAN_OBSERVATION,Rowan Maissen,1,,,2021,6,19,Australia,AU,New South Wales,-28.376657,153.568218,EPSG:4326 +HUMAN_OBSERVATION,Kym Dryden,1,,,2024,9,22,Australia,AU,New South Wales,-28.389121,153.561868,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,4,17,Australia,AU,New South Wales,-28.394204,153.557079,EPSG:4326 +HUMAN_OBSERVATION,Saving Our Koalas SOK,1,,,2023,1,11,Australia,AU,New South Wales,-28.398924,153.555877,EPSG:4326 +HUMAN_OBSERVATION,"Crystal (visitor), Shirley",1,,,2024,10,3,Australia,AU,New South Wales,-28.376057,153.566422,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,MALE,,2022,1,18,Australia,AU,New South Wales,-28.330888,153.555108,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,5,13,Australia,AU,New South Wales,-28.39384,153.559268,EPSG:4326 +HUMAN_OBSERVATION,Susan M,1,MALE,,2023,8,4,Australia,AU,New South Wales,-28.380706,153.564243,EPSG:4326 +HUMAN_OBSERVATION,Ken Playford,1,,,2022,3,22,Australia,AU,New South Wales,-28.393769,153.559531,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,30,Australia,AU,New South Wales,-28.373989,153.560523,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,10,26,Australia,AU,New South Wales,-28.37446,153.560235,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2021,7,29,Australia,AU,New South Wales,-28.381558,153.563531,EPSG:4326 +HUMAN_OBSERVATION,Joel Taylor,1,,,2024,8,29,Australia,AU,New South Wales,-28.261392,153.468747,EPSG:4326 +HUMAN_OBSERVATION,Heidi Fletcher,1,,,2024,11,8,Australia,AU,New South Wales,-28.241618,153.505273,EPSG:4326 +HUMAN_OBSERVATION,Miranda Luscombe and Irene Timmins,1,,,2024,6,14,Australia,AU,New South Wales,-28.378563,153.555629,EPSG:4326 +HUMAN_OBSERVATION,Bill Hoskins,1,,,2020,11,11,Australia,AU,New South Wales,-28.394264,153.557511,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,1,,,2020,12,5,Australia,AU,New South Wales,-28.398648,153.556197,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,1,,,2024,10,29,Australia,AU,New South Wales,-28.344958,153.56116,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2021,11,28,Australia,AU,Victoria,-37.3046,144.158,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2021,12,1,Australia,AU,Victoria,-37.294,144.153,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2021,11,30,Australia,AU,Victoria,-37.1168,144.3,EPSG:4326 +MACHINE_OBSERVATION,Bradley Clarke-Wood - Museums Victoria,1,,,2023,2,15,Australia,AU,Victoria,-36.5112,146.687,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,5,4,Australia,AU,Victoria,-38.4571,143.492,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2021,12,27,Australia,AU,Victoria,-37.7565,143.84,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,4,28,Australia,AU,Victoria,-38.5406,143.594,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,3,28,Australia,AU,Victoria,-38.4837,143.768,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,5,11,Australia,AU,Victoria,-38.5204,143.623,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2021,12,6,Australia,AU,Victoria,-37.2881,143.442,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2021,11,18,Australia,AU,Victoria,-37.4561,143.913,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,3,24,Australia,AU,Victoria,-37.0906,143.24,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,5,5,Australia,AU,Victoria,-38.5194,143.622,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2021,12,22,Australia,AU,Victoria,-37.7304,143.832,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,5,11,Australia,AU,Victoria,-38.4517,143.576,EPSG:4326 +MACHINE_OBSERVATION,Megan McLeod - Museums Victoria,1,,,2023,3,29,Australia,AU,Victoria,-36.8255,146.155,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,4,27,Australia,AU,Victoria,-38.531,143.358,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,5,6,Australia,AU,Victoria,-38.5204,143.623,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,4,1,Australia,AU,Victoria,-37.091,143.241,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2021,12,21,Australia,AU,Victoria,-37.7746,143.804,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,5,12,Australia,AU,Victoria,-38.5204,143.623,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2021,12,7,Australia,AU,Victoria,-37.1158,144.3,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2021,12,2,Australia,AU,Victoria,-37.2326,144.244,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,5,16,Australia,AU,Victoria,-38.4462,143.39,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2021,11,22,Australia,AU,Victoria,-37.0947,144.279,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,4,29,Australia,AU,Victoria,-38.4616,143.55,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2023,2,20,Australia,AU,Victoria,-36.5273,146.688,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,5,10,Australia,AU,Victoria,-38.6482,143.246,EPSG:4326 +MACHINE_OBSERVATION,Bradley Clarke-Wood - Museums Victoria,1,,,2022,12,17,Australia,AU,Victoria,-36.7776,143.244,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,4,2,Australia,AU,Victoria,-38.4937,143.772,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,4,5,Australia,AU,Victoria,-38.4937,143.772,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,4,1,Australia,AU,Victoria,-38.4937,143.772,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,1,22,Australia,AU,Victoria,-37.6846,146.359,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,5,8,Australia,AU,Victoria,-38.4504,143.558,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2021,11,28,Australia,AU,Victoria,-37.291,143.433,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Megan McLeod - Museums Victoria,1,,,2023,1,26,Australia,AU,Victoria,-36.4801,146.697,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,4,12,Australia,AU,Victoria,-38.4942,143.772,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2023,2,13,Australia,AU,Victoria,-36.4911,146.661,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2021,11,17,Australia,AU,Victoria,-37.4382,143.917,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,4,22,Australia,AU,Victoria,-38.531,143.358,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,5,17,Australia,AU,Victoria,-38.4342,143.409,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,3,6,Australia,AU,Victoria,-37.0906,143.24,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Megan McLeod - Museums Victoria,1,,,2023,4,29,Australia,AU,Victoria,-36.8255,146.155,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,12,15,Australia,AU,Victoria,-37.0977,143.527,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2023,4,29,Australia,AU,Victoria,-38.1133,146.442,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,4,10,Australia,AU,Victoria,-38.4937,143.772,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2021,12,28,Australia,AU,Victoria,-37.7746,143.804,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,3,29,Australia,AU,Victoria,-38.4849,143.768,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,5,9,Australia,AU,Victoria,-38.4462,143.39,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2021,11,18,Australia,AU,Victoria,-37.4511,143.928,EPSG:4326 +MATERIAL_SAMPLE,Emily Hynes | Michael Lynch,1,,,2021,8,9,Australia,AU,Victoria,-38.3783,141.6,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2021,12,19,Australia,AU,Victoria,-37.7304,143.832,EPSG:4326 +MACHINE_OBSERVATION,Erin Thomas - Museums Victoria,1,,,2022,5,3,Australia,AU,Victoria,-38.4568,143.493,EPSG:4326 +PRESERVED_SPECIMEN,,1,,,2022,1,1,Australia,AU,Queensland,-20.925,149.442778,EPSG:4326 +HUMAN_OBSERVATION,Nick Christofis,1,,,2020,12,26,Australia,AU,Queensland,-27.518914,153.259194,EPSG:4326 +HUMAN_OBSERVATION,Dominique Appay,1,,"This sighting is of a large koala, probably the male koala I recorded yesterday, which had been loudly calling outside my window at 10:45PM.This location gets infrequent koalas so I would expect this to be the male.",2022,12,19,Australia,AU,Queensland,-27.50046,153.234083,EPSG:4326 +HUMAN_OBSERVATION,Rebecca Larkin,1,,"Reported to us through our website ikps.com.au by a local over several days in the same tree, photos were supplied but I am unable to upload them.",2021,2,24,Australia,AU,Queensland,-27.811707,152.667746,EPSG:4326 +HUMAN_OBSERVATION,Shane Holborn,1,,,2021,8,17,Australia,AU,Queensland,-27.527231,153.246094,EPSG:4326 +HUMAN_OBSERVATION,David Laurie,1,,,2021,8,30,Australia,AU,Queensland,-27.562109,153.223124,EPSG:4326 +HUMAN_OBSERVATION,Daniel Gayton,1,,Koala seen climbing down tree in wildlife corridor that runs behind Eucalypt Street fenceline,2021,8,31,Australia,AU,Queensland,-27.486699,153.154191,EPSG:4326 +HUMAN_OBSERVATION,Jaymie Rains,1,,female in good health,2021,7,14,Australia,AU,Queensland,-19.428541,146.934773,EPSG:4326 +HUMAN_OBSERVATION,Christina Pirayesh,1,,,2022,8,10,Australia,AU,Queensland,-27.524771,153.102829,EPSG:4326 +HUMAN_OBSERVATION,Hadas Porat,1,,young koala spotted crossing the rd,2020,10,9,Australia,AU,Queensland,-27.510311,152.812245,EPSG:4326 +HUMAN_OBSERVATION,Steven Howell,1,,"8m high in tree, next to walking track, healthy, likely female",2021,1,2,Australia,AU,Queensland,-27.507031,153.079728,EPSG:4326 +HUMAN_OBSERVATION,Dr John Hunter,1,,Found with remote camera trap,2023,5,28,Australia,AU,New South Wales,-30.347877,150.926206,EPSG:4326 +HUMAN_OBSERVATION,Denise Graveston,2,MALE,,2020,12,21,Australia,AU,New South Wales,-28.389494,153.560154,EPSG:4326 +HUMAN_OBSERVATION,Hadas Porat,1,,,2021,9,10,Australia,AU,Queensland,-27.53635,152.812046,EPSG:4326 +HUMAN_OBSERVATION,James Greer,1,,,2022,2,28,Australia,AU,Victoria,-37.586635,141.406227,EPSG:4326 +HUMAN_OBSERVATION,Rob Kelly,1,,,2022,8,8,Australia,AU,Queensland,-27.651923,153.189706,EPSG:4326 +HUMAN_OBSERVATION,Eve Webb,1,,,2022,4,27,Australia,AU,New South Wales,-34.73716,146.532329,EPSG:4326 +HUMAN_OBSERVATION,Michelle Newstead,1,,Recording this on behalf of the residents at Bessie St who took the picture and spotted mother and baby Koala,2020,9,8,Australia,AU,New South Wales,-29.741902,152.943052,EPSG:4326 +HUMAN_OBSERVATION,Bill Peel,1,,Mature individual in a ~30 year-old planted Tallowwood Eucalyptus microcorys. High in the mid-crown of the trees literally swatting at mobbing Noisy Miners and Blue-faced Honeyeaters. At times retreating but persisting and staying put as the birds eventually desisted.,2021,9,3,Australia,AU,New South Wales,-30.460847,152.906413,EPSG:4326 +HUMAN_OBSERVATION,Joachim Blatchly,1,,Observed in Eucalyptus tereticornis,2021,7,29,Australia,AU,Queensland,-27.566147,152.11031,EPSG:4326 +HUMAN_OBSERVATION,Shannon Michael,1,,,2020,7,7,Australia,AU,Queensland,-27.455046,151.946722,EPSG:4326 +HUMAN_OBSERVATION,David Myatt,1,,,2021,10,17,Australia,AU,Queensland,-27.537124,153.073759,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2022,10,22,Australia,AU,Queensland,-27.548889,153.256281,EPSG:4326 +HUMAN_OBSERVATION,James Greer,1,,,2022,4,14,Australia,AU,Victoria,-38.435481,145.525132,EPSG:4326 +HUMAN_OBSERVATION,Wendy Hawes,1,,Koala in old growth Eucalyptus blakelyi. Tree coppiced with 4 stems each greater than 80cm diameter at breast height,2020,4,5,Australia,AU,New South Wales,-29.78625,151.19598,EPSG:4326 +HUMAN_OBSERVATION,Jared Kidd,1,,Had moved on before first light the following morning,2020,5,3,Australia,AU,New South Wales,-34.061504,151.000546,EPSG:4326 +HUMAN_OBSERVATION,Kira Perry,1,,,2021,11,22,Australia,AU,Queensland,-27.378111,153.004606,EPSG:4326 +HUMAN_OBSERVATION,Melina CELIK,1,,Koala sitting in the middle of the road.,2022,11,22,Australia,AU,Queensland,-27.525291,153.02274,EPSG:4326 +HUMAN_OBSERVATION,Chris Orpen,1,,"Spotted walking on footpath, then climbing gum tree.",2022,10,11,Australia,AU,Queensland,-27.535274,153.278342,EPSG:4326 +HUMAN_OBSERVATION,James Gillian-Gibson,1,,,2020,9,21,Australia,AU,Victoria,-38.28881,145.090667,EPSG:4326 +HUMAN_OBSERVATION,Janice Hipperson,1,,,2021,4,15,Australia,AU,Queensland,-27.915713,153.360081,EPSG:4326 +HUMAN_OBSERVATION,Joachim Blatchly,1,,In Eucalyptus tereticornis.,2021,7,29,Australia,AU,Queensland,-27.541199,152.085162,EPSG:4326 +HUMAN_OBSERVATION,Lesley Tibbetts,1,,,2021,11,2,Australia,AU,Queensland,-27.49753,153.206641,EPSG:4326 +HUMAN_OBSERVATION,Aaron Wiggan,1,,In fork of tree,2020,9,26,Australia,AU,Queensland,-27.288758,153.01898,EPSG:4326 +HUMAN_OBSERVATION,Dee Kurrer,1,,Too dark to take photos ,2022,3,26,Australia,AU,Queensland,-27.533306,153.233435,EPSG:4326 +HUMAN_OBSERVATION,Elizabeth Lambert,1,,,2021,4,23,Australia,AU,Victoria,-38.458596,145.703602,EPSG:4326 +HUMAN_OBSERVATION,dee evans,1,,,2022,12,10,Australia,AU,Queensland,-28.032945,153.339994,EPSG:4326 +HUMAN_OBSERVATION,Joanne Green,1,,"Young male, was around for 2 days then moved on.",2021,9,4,Australia,AU,New South Wales,-28.33307,153.537089,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2022,7,13,Australia,AU,Queensland,-27.548889,153.256281,EPSG:4326 +HUMAN_OBSERVATION,Rob Williams,1,,,2022,9,19,Australia,AU,Queensland,-27.502764,153.229936,EPSG:4326 +HUMAN_OBSERVATION,Wendy Hawes,1,,Patch of Eucalyptus blakelyi grassy woodland in which koalas are regularly seen,2020,2,2,Australia,AU,New South Wales,-29.78625,151.19598,EPSG:4326 +HUMAN_OBSERVATION,Wendy Hawes,1,,Patch of Eucalyptus blakelyi in which koalas are regularly seen,2020,1,9,Australia,AU,New South Wales,-29.78625,151.19598,EPSG:4326 +HUMAN_OBSERVATION,Elizabeth Kakoschke,1,,"Female, clear eyes, looks in good condition. Reports of male calling days prior. Large male seen in same location several months prior.",2021,11,10,Australia,AU,New South Wales,-29.863158,150.57827,EPSG:4326 +HUMAN_OBSERVATION,Maria Fletcher,1,,2 koalas in tree. Had been growling all night of the 19 Sep. Found themm happily sleeping in the morning! Both healthy. 1 large (male?) 1 higher up the tree (smaller female?) ,2020,9,19,Australia,AU,Queensland,-27.525732,153.279247,EPSG:4326 +HUMAN_OBSERVATION,cody vagg,1,,,2020,4,9,Australia,AU,Queensland,-28.01231,152.673591,EPSG:4326 +HUMAN_OBSERVATION,Julie Solorzano,1,,,2020,7,17,Australia,AU,Queensland,-27.540481,152.863855,EPSG:4326 +HUMAN_OBSERVATION,David Myatt,1,,Two adults and one juvenile ,2021,9,18,Australia,AU,Queensland,-27.532772,153.058333,EPSG:4326 +HUMAN_OBSERVATION,scottbirch@bigpond.com scottbirch@bigpond.com,2,FEMALE,,2020,11,4,Australia,AU,New South Wales,-28.380667,153.564256,EPSG:4326 +HUMAN_OBSERVATION,Marie Petersen,1,,Healthy looking young koala,2022,8,6,Australia,AU,Queensland,-27.532,153.282,EPSG:4326 +HUMAN_OBSERVATION,Dee Kurrer,1,,This koala has been hanging out in our garden on and off since 01 April 2021 inclusive of todays date. He has been favouring a few trees on our property. The attached photos have been taken since 01 April 2021,2021,4,18,Australia,AU,Queensland,-27.542961,153.233727,EPSG:4326 +HUMAN_OBSERVATION,Oliver Essebier,1,,1 Koala in gumtree just outside of toilet block - being hassled by Magpie,2021,9,10,Australia,AU,Queensland,-27.69068,153.180878,EPSG:4326 +HUMAN_OBSERVATION,Ian Gray,1,,"We have seen this male Koala a couple of times recently. I have also captured several on my motion sensitive camera moving along the creek (Plumbago) if you are interested. Cheers, Ian Gray.",2020,2,15,Australia,AU,New South Wales,-28.879101,152.4335,EPSG:4326 +HUMAN_OBSERVATION,Robert Mezzatesta,1,,observed climbing large eucalypt tree,2021,2,13,Australia,AU,Victoria,-38.651438,146.202551,EPSG:4326 +HUMAN_OBSERVATION,Ben Phythian,1,,Was found walking on the road.,2021,8,23,Australia,AU,Queensland,-27.834269,153.369713,EPSG:4326 +HUMAN_OBSERVATION,Hadas Porat,1,,"Koala in Kulmaren Grove. Reported to RSPCA for a check-up, slightly dirty bum. ",2021,9,12,Australia,AU,Queensland,-27.531846,152.807541,EPSG:4326 +HUMAN_OBSERVATION,Nicola Cole,1,,,2022,12,5,Australia,AU,Queensland,-27.357116,151.866674,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,FEMALE,,2020,12,5,Australia,AU,New South Wales,-28.399137,153.555884,EPSG:4326 +HUMAN_OBSERVATION,Karen McKinnon,2,FEMALE,,2022,11,13,Australia,AU,New South Wales,-28.397261,153.556836,EPSG:4326 +HUMAN_OBSERVATION,Joanne Green,1,,Male? in melaeuca,2021,8,29,Australia,AU,New South Wales,-28.387398,153.564774,EPSG:4326 +HUMAN_OBSERVATION,Sandra Jacob,1,,Koala sitting on the ground.,2021,7,11,Australia,AU,Queensland,-27.569272,153.29706,EPSG:4326 +HUMAN_OBSERVATION,Hadas Porat,1,,What: Koala trapped between the new guardrail and the traffic - and assisted by MOP to safety.When: 1900 Thursday 29th July 2021Where: Eastern side of Bunya Street on Mount Crosby RoadPhoto Credit: @Karana Downs and Mount Crosby Residents,2021,8,3,Australia,AU,Queensland,-27.528783,152.840742,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2022,7,11,Australia,AU,Queensland,-27.548889,153.256281,EPSG:4326 +HUMAN_OBSERVATION,Sue Hansen,1,,Sleeping on a branch,2020,12,27,Australia,AU,New South Wales,-32.719025,152.136124,EPSG:4326 +HUMAN_OBSERVATION,Tom Cotter,1,,found dead on ground with head facing into grass tussock,2020,5,12,Australia,AU,Queensland,-27.845438,153.075693,EPSG:4326 +HUMAN_OBSERVATION,Lauren Easey,1,,Koala sighted at 9:45am on 24/2/2021.,2021,2,23,Australia,AU,Queensland,-27.512861,153.108487,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,2,FEMALE,,2020,11,22,Australia,AU,New South Wales,-28.399167,153.555833,EPSG:4326 +HUMAN_OBSERVATION,Hadas Porat,1,,"Young koala joey, about 10m up the tree, right on My Crosby Rd. Looked healthy and was eating leaf. Has moved on by the next day. ",2021,1,15,Australia,AU,Queensland,-27.534527,152.805285,EPSG:4326 +HUMAN_OBSERVATION,Dr John Hunter,1,,Found on camera trap,2023,6,9,Australia,AU,New South Wales,-30.343103,150.910913,EPSG:4326 +HUMAN_OBSERVATION,James Greer,1,,Far end of Moonlight Creek trail,2022,4,10,Australia,AU,Victoria,-38.274687,145.971429,EPSG:4326 +HUMAN_OBSERVATION,Heidi Fletcher,2,FEMALE,,2024,11,10,Australia,AU,New South Wales,-28.241669,153.506285,EPSG:4326 +HUMAN_OBSERVATION,Hadas Porat,1,,"Orphaned joey, female, head injury. Karana Downs, Brisbane West.",2020,8,28,Australia,AU,Queensland,-27.530471,152.807332,EPSG:4326 +HUMAN_OBSERVATION,robyn Moffat,1,,,2020,4,1,Australia,AU,Queensland,-27.25714,152.379697,EPSG:4326 +HUMAN_OBSERVATION,Jo Campbell,1,,The magpies and mynors were quite upset by the koalas presence! ,2020,10,26,Australia,AU,Queensland,-27.484726,153.080035,EPSG:4326 +HUMAN_OBSERVATION,Karyn McKinnon,2,,,2020,1,15,Australia,AU,New South Wales,-28.397195,153.556941,EPSG:4326 +HUMAN_OBSERVATION,Julie Solorzano,1,,,2020,7,3,Australia,AU,Queensland,-27.540481,152.863855,EPSG:4326 +HUMAN_OBSERVATION,Wendy Hawes,1,,Eucalyptus melliodora 30cm diameter at breast height,2020,3,14,Australia,AU,New South Wales,-29.78653,151.19597,EPSG:4326 +HUMAN_OBSERVATION,Jacinta Mulholland,1,,,2021,7,25,Australia,AU,Queensland,-27.498311,153.229011,EPSG:4326 +HUMAN_OBSERVATION,Matthew Wellington,1,,resting a mature Causarina tree.,2021,9,16,Australia,AU,Queensland,-28.12233,153.229446,EPSG:4326 +HUMAN_OBSERVATION,Karyn McKinnon,2,FEMALE,,2020,1,15,Australia,AU,New South Wales,-28.397139,153.556922,EPSG:4326 +HUMAN_OBSERVATION,Siobhan Reiter,1,,,2021,11,30,Australia,AU,Queensland,-27.590064,153.11454,EPSG:4326 +HUMAN_OBSERVATION,Peter McCallum,1,,The Kola's left eye appeared to be damaged i.e. opaque looking.,2021,6,24,Australia,AU,Queensland,-27.502912,153.197767,EPSG:4326 +HUMAN_OBSERVATION,Satoko Kuroda,1,,,2020,8,13,Australia,AU,Queensland,-27.778815,153.123475,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,FEMALE,,2020,10,18,Australia,AU,New South Wales,-28.322836,153.465634,EPSG:4326 +HUMAN_OBSERVATION,Amanda Bjorklund,1,,,2020,10,22,Australia,AU,New South Wales,-28.261052,153.444479,EPSG:4326 +HUMAN_OBSERVATION,matthew joe sparks,1,,"Small area of native old growth forest between cleared pine plantation, 7 ringtails and one sugar glider also observed. ",2022,5,29,Australia,AU,Victoria,-38.265883,146.694582,EPSG:4326 +HUMAN_OBSERVATION,Laura Cummings,1,,Believed to be a maleHealthy conditionEating she-oak or casuarina tree Moved from campsite to tree on track closer to beachfront ,2022,1,5,Australia,AU,Queensland,-27.404673,153.47057,EPSG:4326 +HUMAN_OBSERVATION,Andrew Kitchen,1,,,2020,10,20,Australia,AU,Queensland,-28.108995,153.40249,EPSG:4326 +HUMAN_OBSERVATION,Brodie Smith,1,,Mother koala and baby,2022,8,18,Australia,AU,Queensland,-27.921097,153.324926,EPSG:4326 +HUMAN_OBSERVATION,Daniel Gall,1,,,2020,9,20,Australia,AU,Queensland,-27.304248,153.007313,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,FEMALE,,2020,12,9,Australia,AU,New South Wales,-28.398935,153.555948,EPSG:4326 +HUMAN_OBSERVATION,Carly Abraham,1,,,2020,10,25,Australia,AU,Queensland,-27.497665,153.206314,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,FEMALE,,2021,11,6,Australia,AU,New South Wales,-28.398821,153.555987,EPSG:4326 +HUMAN_OBSERVATION,Rebecca Diete,1,,Juvenile sitting at base of tree. Photographed by Dylan Sutton,2020,1,19,Australia,AU,Queensland,-28.189969,153.428148,EPSG:4326 +HUMAN_OBSERVATION,Marama Hopkins,2,FEMALE,,2020,8,11,Australia,AU,New South Wales,-28.327875,153.564663,EPSG:4326 +HUMAN_OBSERVATION,Mia Tickner,1,,,2021,8,25,Australia,AU,Queensland,-27.549427,153.229198,EPSG:4326 +HUMAN_OBSERVATION,Kristin Di Salvo,1,,,2022,6,1,Australia,AU,Queensland,-27.533817,153.28274,EPSG:4326 +HUMAN_OBSERVATION,Josh Bowell,1,,,2020,4,12,Australia,AU,Queensland,-27.724201,153.06355,EPSG:4326 +HUMAN_OBSERVATION,Joachim Blatchly,1,,Resting in Eucalyptus melanophloia.,2021,7,29,Australia,AU,Queensland,-27.561401,152.106763,EPSG:4326 +HUMAN_OBSERVATION,jan betts,1,,,2021,1,7,Australia,AU,New South Wales,-28.326539,153.467861,EPSG:4326 +HUMAN_OBSERVATION,Hadas Porat,1,,"What: Koala deceased beside the newly installed barriers on Mount Crosby Road.When: 1930 Friday 30th July 2021Where: 5m from original crossing location, Eastern side of Bunya Street on Mount Crosby RoadPhoto Credit: @Karana Downs and Mount Crosby Residents",2021,8,3,Australia,AU,Queensland,-27.528783,152.840742,EPSG:4326 +HUMAN_OBSERVATION,Anita Mudge,2,,,2022,10,1,Australia,AU,New South Wales,-28.286486,153.559889,EPSG:4326 +HUMAN_OBSERVATION,Heidi Kolkert,1,,Adult male koala,2021,10,31,Australia,AU,New South Wales,-30.518178,151.500881,EPSG:4326 +HUMAN_OBSERVATION,Nikki Kilpatrick,1,,"One deceased adult male koala hanging over guardrail on the highway, southbound side, just south of Kooltandra Road intersection. ",2022,8,14,Australia,AU,Queensland,-22.740992,149.760861,EPSG:4326 +HUMAN_OBSERVATION,CRaig Parr,1,,Seen from Kayak. ,2020,9,30,Australia,AU,Queensland,-26.71947,152.891868,EPSG:4326 +HUMAN_OBSERVATION,Anita Mudge,2,MALE,,2023,11,22,Australia,AU,New South Wales,-28.286951,153.560725,EPSG:4326 +HUMAN_OBSERVATION,Ross Kleinschmidt,1,,,2020,11,1,Australia,AU,Queensland,-27.502317,153.260146,EPSG:4326 +HUMAN_OBSERVATION,Lynn Roberts,1,,,2022,10,7,Australia,AU,Queensland,-27.575642,153.271358,EPSG:4326 +HUMAN_OBSERVATION,Daniel Browning,1,,Jouvenile?,2020,2,2,Australia,AU,Queensland,-27.638333,153.17,EPSG:4326 +HUMAN_OBSERVATION,Friends of the Koala,2,FEMALE,,2020,10,16,Australia,AU,New South Wales,-28.399676,153.556036,EPSG:4326 +HUMAN_OBSERVATION,Michael Mills,1,,,2020,6,30,Australia,AU,Queensland,-27.14524,152.950909,EPSG:4326 +HUMAN_OBSERVATION,R H,2,,Koala walked across road with baby on back and relocated and climbed in a tree in the corner of the road ,2021,6,18,Australia,AU,Queensland,-27.515984,153.088659,EPSG:4326 +HUMAN_OBSERVATION,Kat Kaurila,2,,Joey also,2022,11,11,Australia,AU,Queensland,-27.524029,153.072345,EPSG:4326 +HUMAN_OBSERVATION,Hadas Porat,1,,"This beauty was spotted by Amy at 1PM in a tree off Mt Crosby Rd, next to the water treatment plant concrete tank, heading towards the bowling club.",2021,1,14,Australia,AU,Queensland,-27.532621,152.803627,EPSG:4326 +HUMAN_OBSERVATION,Carolyn Polson,2,,Mother & joey ,2022,7,30,Australia,AU,Queensland,-27.507314,153.087868,EPSG:4326 +HUMAN_OBSERVATION,Wendy Hawes,1,,In river red gum along the Mehi River,2022,8,17,Australia,AU,New South Wales,-29.461929,149.843884,EPSG:4326 +HUMAN_OBSERVATION,Rob Williams,1,,I'm pretty sure it's the same one I photographed on Wednesday and appears to be a young male. Nice and healthy.,2022,9,22,Australia,AU,Queensland,-27.5028,153.228867,EPSG:4326 +HUMAN_OBSERVATION,Candy Daunt,1,,,2020,1,2,Australia,AU,Queensland,-27.500161,153.259033,EPSG:4326 +HUMAN_OBSERVATION,Tereza Jakubcova,1,,,2022,12,21,Australia,AU,Queensland,-26.371375,152.652758,EPSG:4326 +HUMAN_OBSERVATION,Matthew Wellington,1,,on the ground moving near roadside ,2021,9,6,Australia,AU,Queensland,-27.790453,153.100672,EPSG:4326 +HUMAN_OBSERVATION,Bruce Weeks,2,,Sighted walking along road and then climbing tree.,2021,8,25,Australia,AU,Queensland,-27.53455,153.10679,EPSG:4326 +HUMAN_OBSERVATION,Julie Solorzano,1,,"2 koalas observed in separate trees, maybe 80m from each other",2020,6,28,Australia,AU,Queensland,-27.545058,152.859868,EPSG:4326 +HUMAN_OBSERVATION,Peter Plater,1,,Noticed Koala on side of road while driving and he climbed up a hill away from us as we were taking photos. Looked young and healthy ,2021,10,15,Australia,AU,New South Wales,-28.257992,153.446356,EPSG:4326 +HUMAN_OBSERVATION,David Wood,1,,,2020,10,23,Australia,AU,New South Wales,-30.208889,153.138889,EPSG:4326 +HUMAN_OBSERVATION,Robyn McNally,1,,,2022,10,26,Australia,AU,Queensland,-26.675912,152.025927,EPSG:4326 +HUMAN_OBSERVATION,Kirsty McCoy,1,,Koala and Joey ,2022,9,25,Australia,AU,Queensland,-27.540036,153.063028,EPSG:4326 +HUMAN_OBSERVATION,Hadas Porat,1,,,2021,8,7,Australia,AU,Queensland,-27.529464,152.806816,EPSG:4326 +HUMAN_OBSERVATION,Sathish Sathyamoorthy,2,,,2021,6,28,Australia,AU,Victoria,-37.71859,145.546875,EPSG:4326 +HUMAN_OBSERVATION,Rob Williams,1,,,2022,11,5,Australia,AU,Queensland,-27.502814,153.229906,EPSG:4326 +HUMAN_OBSERVATION,Alana Middlemass,1,,Mid sized Koala in gum. Has been here a few days. Can hear calling (grunting) at night. ,2021,5,8,Australia,AU,Queensland,-27.510693,153.070176,EPSG:4326 +HUMAN_OBSERVATION,Nicole Brosing,1,,Have noted a tree close to walking path with koala markings on trunk. Today discovered this one was on the ground moving easily. When it spotted me it climbed tree as in picture. Looked well and moved easily. Stayed low in tree while I observed it. ,2021,12,11,Australia,AU,Queensland,-27.702088,153.18856,EPSG:4326 +HUMAN_OBSERVATION,Julie Solorzano,1,,,2020,7,25,Australia,AU,Queensland,-27.540481,152.863855,EPSG:4326 +HUMAN_OBSERVATION,Helen Knight,1,,Spotted him/her crossing the road opposite the railway side. We slowed down to see better as it had gone off the road into a ditch and it stopped and watched us pass. It seemed quite small but looked healthy. I have not seen one since approx 18 yrs ago in the exact same area.,2020,5,13,Australia,AU,Queensland,-26.699996,152.961977,EPSG:4326 +HUMAN_OBSERVATION,stephen cullen,1,,Healthy mother and young in e.melliodora.Also another medium sized in same area.,2020,10,7,Australia,AU,New South Wales,-29.690439,150.925627,EPSG:4326 +HUMAN_OBSERVATION,Julie Elliott,1,,,2022,7,13,Australia,AU,Queensland,-27.430733,153.523555,EPSG:4326 +HUMAN_OBSERVATION,Matt Smyth,1,,There were multiple Koalas!! Lovely spot after visiting a friend at Bayside Community Addiction and Mental Health Services. ,2021,6,16,Australia,AU,Queensland,-27.542664,153.252167,EPSG:4326 +HUMAN_OBSERVATION,Hadas Porat,2,,"2x Kulmaren Grove Koalas, Karana Downs, West Brisbane.",2021,9,10,Australia,AU,Queensland,-27.53646,152.812257,EPSG:4326 +HUMAN_OBSERVATION,Rob Williams,1,,"Same koala as last week, same tree, different branch.",2022,11,11,Australia,AU,Queensland,-27.502719,153.229814,EPSG:4326 +HUMAN_OBSERVATION,Eileen Newey,1,,,2022,11,1,Australia,AU,Queensland,-27.548436,153.256312,EPSG:4326 +HUMAN_OBSERVATION,Mike Wood,1,,Adult female with youngster on her back.,2020,9,9,Australia,AU,Queensland,-27.659812,151.637206,EPSG:4326 +HUMAN_OBSERVATION,Lisa Wilson,1,,"Female koala spotted, her bottom looked brown and wet so Redlands Wildlife Rescue were called. ",2020,12,13,Australia,AU,Queensland,-27.554369,153.272321,EPSG:4326 +HUMAN_OBSERVATION,M R,1,,,2020,10,31,Australia,AU,Queensland,-27.320497,152.429187,EPSG:4326 +HUMAN_OBSERVATION,Julie Elliott,1,,Male,2022,6,23,Australia,AU,Queensland,-27.431976,153.523738,EPSG:4326 +HUMAN_OBSERVATION,Nadine Walker,1,,,2020,4,5,Australia,AU,Queensland,-27.547829,153.204953,EPSG:4326 +HUMAN_OBSERVATION,Joanne Green,1,,,2021,8,6,Australia,AU,New South Wales,-28.55907,153.37919,EPSG:4326 +HUMAN_OBSERVATION,Ian Gray,1,,Large Male recorded here several times in the past.,2020,10,10,Australia,AU,New South Wales,-28.878855,152.434508,EPSG:4326 +HUMAN_OBSERVATION,Hadas Porat,1,,"Female. No joey. Hit by car crossing road, Mount Crosby Road, at Kholo Creek Bridge.",2021,9,10,Australia,AU,Queensland,-27.531617,152.847924,EPSG:4326 +HUMAN_OBSERVATION,Jennifer Halket,2,,"2 Koalas, one large located up in tree opposite #6. The other is a smaller Juvenile down the end in a smaller gumtree in front of a parked boat. ",2022,5,24,Australia,AU,Queensland,-27.502338,153.258151,EPSG:4326 +HUMAN_OBSERVATION,Jacky Overington,1,,"Evidence of Koalas by Scat and Tree Markings. No animal sighted by self, but other community members report seeing a Koala there on 2.9.2020.",2020,9,2,Australia,AU,Queensland,-27.32077,153.074813,EPSG:4326 +HUMAN_OBSERVATION,stephen cullen,1,,Medium sized individual in good health asleep then seen grazing in E. Blakelyi.,2020,10,31,Australia,AU,New South Wales,-29.690439,150.925627,EPSG:4326 +HUMAN_OBSERVATION,stephen cullen,1,,Mother with young on her back. Drying environmental conditions.Sightings becoming infrequent due to exclusion fencing erected by neighbourThis type of fencing should be banned in koala habitat.,2020,10,19,Australia,AU,New South Wales,-29.690439,150.925627,EPSG:4326 +HUMAN_OBSERVATION,stephen cullen,1,,Large male. Drying conditions. Was barking during the day.Infrequent sightings due to exclusion fencing on neighbouring properties.,2020,10,13,Australia,AU,New South Wales,-29.690439,150.925627,EPSG:4326 +HUMAN_OBSERVATION,Wendy Hawes,1,,"In Eucalyptus blakelyi - tree coppiced, 2 stems at 50cm diameter each",2020,1,9,Australia,AU,New South Wales,-29.78625,151.19598,EPSG:4326 +HUMAN_OBSERVATION,janine koppel,1,,"It was on the ground and then climbed up the closest tree, a spotted gum. ",2021,6,3,Australia,AU,New South Wales,-32.975037,151.581963,EPSG:4326 +HUMAN_OBSERVATION,Marty & Michele Nunn,2,,They were mating,2021,12,3,Australia,AU,Queensland,-27.499848,153.223069,EPSG:4326 +HUMAN_OBSERVATION,Robyn Mitchell,1,,,2020,11,4,Australia,AU,New South Wales,-29.355285,153.287838,EPSG:4326 +HUMAN_OBSERVATION,Brian Bodle,1,,,2020,8,20,Australia,AU,Queensland,-27.497428,153.206082,EPSG:4326 +HUMAN_OBSERVATION,Deo Gratias,1,,Heard a Male Koala Calling ,2022,11,30,Australia,AU,Queensland,-28.055122,153.344389,EPSG:4326 +HUMAN_OBSERVATION,Valerie Smart,1,,"We have spotted Koala in this park in previous months as well as in the past week. Yesterday, at the time noted, koala ran across Byng Road which is a busy road.",2020,9,8,Australia,AU,Queensland,-27.497271,153.20632,EPSG:4326 +HUMAN_OBSERVATION,Wendy Hawes,1,,Eucalyptus melliodora (planted) 40cm diameter at breast height,2020,3,4,Australia,AU,New South Wales,-29.78625,151.19598,EPSG:4326 +HUMAN_OBSERVATION,Tereza Jakubcova,2,,Mum with baby ,2023,1,1,Australia,AU,Queensland,-26.372675,152.653656,EPSG:4326 +HUMAN_OBSERVATION,stephen cullen,2,,Medium sized mature adult female with younger smaller individual higher in canopy of E. Blakelyi. Drying environment. Water stations established throughout bushland on property.,2020,11,16,Australia,AU,New South Wales,-29.690439,150.925627,EPSG:4326 +HUMAN_OBSERVATION,Elizabeth Kakoschke,1,,Healthy female with joey on back.Unable to load photo,2020,10,2,Australia,AU,New South Wales,-29.86728,150.601942,EPSG:4326 +HUMAN_OBSERVATION,Will Griffiths,1,,,2023,1,7,Australia,AU,Queensland,-27.507136,153.079972,EPSG:4326 +HUMAN_OBSERVATION,James Greer,2,,,2021,11,17,Australia,AU,Victoria,-38.318577,142.363329,EPSG:4326 +HUMAN_OBSERVATION,Robert Sargent,1,,,2022,6,1,Australia,AU,Queensland,-27.499153,153.230772,EPSG:4326 +HUMAN_OBSERVATION,Kat Kaurila,1,,,2022,6,7,Australia,AU,Queensland,-27.523949,153.072459,EPSG:4326 +HUMAN_OBSERVATION,Dominique Appay,2,,Koala had attempted to cross the road three times before climbing up the roadside power pole.The 2nd witness had shepherded it off the road away from car traffic three times.,2020,11,16,Australia,AU,Queensland,-27.50938,153.235635,EPSG:4326 +HUMAN_OBSERVATION,Karen Roberts,1,,,2021,5,29,Australia,AU,Queensland,-27.530463,152.857472,EPSG:4326 +HUMAN_OBSERVATION,Craig Mitchell,1,,,2021,10,25,Australia,AU,Queensland,-27.519176,153.073422,EPSG:4326 +HUMAN_OBSERVATION,iain hughes,1,,"This tree was earmarked for removal to make way for a car park for nursery rd special school, community action stopped the car park...now we have koalas here.",2021,9,8,Australia,AU,Queensland,-27.5348,153.066152,EPSG:4326 +HUMAN_OBSERVATION,Julie Solorzano,1,,,2020,7,4,Australia,AU,Queensland,-27.540481,152.863855,EPSG:4326 +HUMAN_OBSERVATION,Jamie Reilly,1,,Juvenile,2020,4,11,Australia,AU,Queensland,-27.434708,152.99758,EPSG:4326 +HUMAN_OBSERVATION,Jeffrey Rabbidge,1,,,2022,11,11,Australia,AU,Queensland,-27.222745,153.069463,EPSG:4326 +HUMAN_OBSERVATION,Wil Kemp,1,,,2021,10,21,Australia,AU,Queensland,-18.620159,143.878541,EPSG:4326 +HUMAN_OBSERVATION,vanessa pelly,1,,,2020,8,31,Australia,AU,New South Wales,-28.523078,153.188821,EPSG:4326 +HUMAN_OBSERVATION,Ronnie Gardiner,1,,,2021,8,19,Australia,AU,Queensland,-27.146706,152.901567,EPSG:4326 +HUMAN_OBSERVATION,Phillip Reaper,1,,,2020,9,25,Australia,AU,Queensland,-27.536409,153.269067,EPSG:4326 +HUMAN_OBSERVATION,Bulimba Creek,1,,Koala seen moving around the park in the morning. Appeared to be a young female in healthy condition.,2020,4,3,Australia,AU,Queensland,-27.514257,153.094606,EPSG:4326 +HUMAN_OBSERVATION,Dee Kurrer,1,,,2022,3,25,Australia,AU,Queensland,-27.533285,153.233398,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2023,5,31,Australia,AU,South Australia,-35.32686,138.55005,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,7,14,Australia,AU,South Australia,-35.02967,138.70917,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,10,8,Australia,AU,South Australia,-35.11454,138.69791,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2022,9,11,Australia,AU,South Australia,-35.0827,138.67424,EPSG:4326 +HUMAN_OBSERVATION,FEWSTER Z. Zita,1,,Sitting in Stringybark tree near track; PHOTO = photo1-20201207-084727; TIME = 7:17 PM,2020,12,7,Australia,AU,South Australia,-35.01274,138.71667,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2022,3,7,Australia,AU,South Australia,-35.00511,138.71753,EPSG:4326 +HUMAN_OBSERVATION,Matthew Wellington,2,,mother with juvenile resting in Spooted Gum tree. ,2021,9,8,Australia,AU,Queensland,-27.944047,152.876103,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,11,6,Australia,AU,South Australia,-35.10565,138.67616,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,under roadside Manna Gums,2020,8,14,Australia,AU,South Australia,-35.08736,138.78286,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,TIME = 11:27 pm; On ground,2022,7,27,Australia,AU,South Australia,-34.99024,138.7065,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,10,18,Australia,AU,South Australia,-35.10565,138.67616,EPSG:4326 +HUMAN_OBSERVATION,DURANT M. Mick,1,,,2021,5,6,Australia,AU,South Australia,-34.83283,138.80632,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,11,25,Australia,AU,South Australia,-34.985,138.68592,EPSG:4326 +HUMAN_OBSERVATION,SPEIGHT K.N. Katherine,1,,Opportunistic faecal sample collection from koalas,2020,4,20,Australia,AU,South Australia,-34.95011,138.68332,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,1,10,Australia,AU,South Australia,-35.01277,138.78286,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,10,11,Australia,AU,South Australia,-35.08615,138.64789,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,fresh droppings under Euc. viminalis,2021,9,15,Australia,AU,South Australia,-35.1083,138.73756,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2022,2,28,Australia,AU,South Australia,-35.01647,138.71099,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2022,9,27,Australia,AU,South Australia,-35.10743,138.71656,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2022,10,3,Australia,AU,South Australia,-35.11246,138.74315,EPSG:4326 +HUMAN_OBSERVATION,LEGGETT T. Tammy,1,,Resting in tree; TIME = 9:32 am,2022,9,17,Australia,AU,South Australia,-34.68817,138.83179,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2021,10,7,Australia,AU,South Australia,-35.10743,138.71656,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,10,17,Australia,AU,South Australia,-35.10187,138.66485,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | AYRE J.S. Jackie,1,,observed by J. Ayre,2022,6,14,Australia,AU,South Australia,-35.74552,137.58715,EPSG:4326 +HUMAN_OBSERVATION,POBKE K. Katrina,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = On the ground; Notes = Large male koala crossing Highway heading north at 8:45am. Overcast and cool weather. This form is giving me a Error 422 message unless I enter the tree field.,2021,11,18,Australia,AU,South Australia,-34.65349,135.85653,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,10,22,Australia,AU,South Australia,-35.05169,138.83105,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,14,Australia,AU,South Australia,-35.12749,138.72936,EPSG:4326 +HUMAN_OBSERVATION,Louis Petrucco,2,,joey was visible,2021,9,10,Australia,AU,New South Wales,-34.083779,150.99961,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2022,9,5,Australia,AU,South Australia,-35.06865,138.74616,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,4,8,Australia,AU,South Australia,-34.9168,138.71812,EPSG:4326 +HUMAN_OBSERVATION,VAN WEENEN J. Jason,1,,Snoozing in a Eucalyptus camaldulensis. ; TIME = 12:23 pm; NO. of PHOTOS available = 1; SEX = M; created_date = 11/14/2022 1:06 pm,2022,11,14,Australia,AU,South Australia,-34.72228,139.17638,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,carcase scattered; presume of animal burnt in last summers bushfire,2021,9,23,Australia,AU,South Australia,-35.10422,138.70113,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,26,Australia,AU,South Australia,-35.13158,138.6802,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,fresh scats under largestRed Gum in park on eastern boundary,2020,7,7,Australia,AU,South Australia,-34.93106,138.67518,EPSG:4326 +HUMAN_OBSERVATION,Stacey McLean,2,,"The adult female and juvenile were located approximately 20m up a Narrow-leaved Spotted Gum, itself being approx. 23m in height. ",2020,1,3,Australia,AU,Queensland,-27.502214,153.220715,EPSG:4326 +HUMAN_OBSERVATION,ADELAIDE UNIVERSITY STUDENTS N/A | SPEIGHT K.N. Katherine | ADELAIDE UNIVERSITY ROSEWORTHY CAMP,1,,Post mortem examination at University of Adelaide School of Animal and Veterinary Science of dead wild koala (euthanased or died),2021,2,28,Australia,AU,South Australia,-34.1743,140.7443,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,17,Australia,AU,South Australia,-35.08356,138.64494,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2022,9,2,Australia,AU,South Australia,-35.08399,138.6622,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,very old skull,2022,1,24,Australia,AU,South Australia,-35.06163,138.57927,EPSG:4326 +HUMAN_OBSERVATION,SPEIGHT K.N. Katherine,1,,Opportunistic faecal sample collection from koalas,2020,4,20,Australia,AU,South Australia,-34.95011,138.68332,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,1,14,Australia,AU,South Australia,-34.82606,138.72993,EPSG:4326 +HUMAN_OBSERVATION,Nicole Nash,2,,Kola was spotted by driver and passenger. It was clear it was a koala due to head and shape of it. Very clear to both it was a Lola. Unfortunately we were towing and unable to pullover safely to further examine,2023,1,28,Australia,AU,Queensland,-17.107279,145.429781,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,photo taken and reported by Eliza Higgins,2023,2,26,Australia,AU,South Australia,-35.45644,138.69099,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,12,18,Australia,AU,South Australia,-35.00206,138.7534,EPSG:4326 +HUMAN_OBSERVATION,HARDING C. Claire,1,,ID = 7786_240208155147; parentrowid = {C4638A60-79DD-410E-A182-F271AED65737}; TIME = 3:46 pm,2024,1,11,Australia,AU,South Australia,-37.97355,140.84161,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,11,9,Australia,AU,South Australia,-35.11435,138.67393,EPSG:4326 +HUMAN_OBSERVATION,POBKE K. Katrina,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Sleeping in a tree; Notes = Seen while conducting opportunistic bird survey with Peter Wilkins in SA Water land to the north of the recent 2020 prescribed burn zone.; Photo/Movie reference = ID_Koal_149.jpg,2021,1,8,Australia,AU,South Australia,-34.78559,135.78813,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,10,8,Australia,AU,South Australia,-35.10187,138.66485,EPSG:4326 +HUMAN_OBSERVATION,ADELAIDE UNIVERSITY STUDENTS N/A | SPEIGHT K.N. Katherine | ADELAIDE UNIVERSITY ROSEWORTHY CAMP,1,,Post mortem examination at University of Adelaide School of Animal and Veterinary Science of dead wild koala (euthanased or died),2020,8,3,Australia,AU,South Australia,-34.1743,140.7443,EPSG:4326 +HUMAN_OBSERVATION,Liz Leckie,2,,Two koala - heard their vocalisation and was able to track their location through our forest. We have 36 acres of which mostly natural bush.. they were both up the same tree - a relatively small spindly tree (unsure of species ) ,2021,8,13,Australia,AU,Queensland,-26.510737,152.973638,EPSG:4326 +HUMAN_OBSERVATION,SPEIGHT K.N. Katherine,1,,Opportunistic faecal sample collection from koalas,2020,4,20,Australia,AU,South Australia,-34.95011,138.68332,EPSG:4326 +HUMAN_OBSERVATION,SPEIGHT K.N. Katherine,1,,Opportunistic faecal sample collection from koalas,2020,4,20,Australia,AU,South Australia,-34.95011,138.68332,EPSG:4326 +HUMAN_OBSERVATION,HAYWOOD B.T. Bryan,1,,UV light trapping night,2020,4,24,Australia,AU,South Australia,-34.87787,138.70248,EPSG:4326 +HUMAN_OBSERVATION,Diane Gordon,2,,,2022,10,13,Australia,AU,Queensland,-27.502854,153.22184,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2022,8,31,Australia,AU,South Australia,-35.08274,138.68145,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2022,8,24,Australia,AU,South Australia,-35.08274,138.68145,EPSG:4326 +HUMAN_OBSERVATION,GENERAL PUBLIC N/A,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = On the ground; Other comment = Attempting to cross the road on dusk. Heavy traffic at that time.; Notes = Looked to be in very good condition.; Photo/Movie reference = ID_Koal_146.jpg,2020,8,4,Australia,AU,South Australia,-34.69416,135.85477,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,12,27,Australia,AU,South Australia,-34.99555,138.73958,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,5,16,Australia,AU,South Australia,-35.00272,138.75569,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,10,3,Australia,AU,South Australia,-35.08612,138.64804,EPSG:4326 +HUMAN_OBSERVATION,LEGGETT T. Tammy,1,,healthy possible female; TIME = 9:47 AM,2020,12,3,Australia,AU,South Australia,-34.68821,138.83157,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,26,Australia,AU,South Australia,-35.09246,138.68353,EPSG:4326 +HUMAN_OBSERVATION,GENERAL PUBLIC N/A,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Feeding in a tree; Notes = Sunny day; Photo/Movie reference = ID_Koal_147.jpg,2020,11,17,Australia,AU,South Australia,-34.68679,135.85256,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2022,12,21,Australia,AU,South Australia,-35.08356,138.64494,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2022,8,25,Australia,AU,South Australia,-35.0827,138.67424,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,12,29,Australia,AU,South Australia,-34.99957,138.72469,EPSG:4326 +HUMAN_OBSERVATION,James Greer,2,,,2021,12,7,Australia,AU,Victoria,-38.518537,145.710762,EPSG:4326 +HUMAN_OBSERVATION,LANG D. Deb,1,,ID = 1502_240209061123; parentrowid = {E64AC45D-5D16-4650-9A56-CABE4EE33B97}; TIME = 6:20 pm,2023,11,2,Australia,AU,South Australia,-37.84217,140.81896,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,2,22,Australia,AU,South Australia,-34.70637,138.91743,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,9,24,Australia,AU,South Australia,-35.00625,138.6986,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2022,9,6,Australia,AU,South Australia,-35.12428,138.69027,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,TIME = 3:15 pm; On ground travelling SE between trees; SEX = M,2022,9,26,Australia,AU,South Australia,-34.99066,138.70708,EPSG:4326 +HUMAN_OBSERVATION,ROUGH K. Kirsten (Kirsty),1,,PHOTO = https://biocollect.ala.org.au/image?id=45975E7C-AB69-4D17-B027-F909F98DDF08.jpeg,2022,9,18,Australia,AU,South Australia,-34.70542,135.84404,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,10,1,Australia,AU,South Australia,-35.11435,138.67393,EPSG:4326 +HUMAN_OBSERVATION,GENERAL PUBLIC N/A,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Feeding in a tree; Notes = Awake alive & looked happy. Was in the same spot same tree 5 hours later!; Photo/Movie reference = ID_Koal_148.jpg,2021,1,13,Australia,AU,South Australia,-34.78735,135.80473,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,sitting on freeway 22:00 hrs,2022,12,10,Australia,AU,South Australia,-34.99878,138.70947,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,11,19,Australia,AU,South Australia,-35.00668,138.72154,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,7,6,Australia,AU,South Australia,-34.99131,138.62983,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,9,25,Australia,AU,South Australia,-35.11435,138.67393,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2022,9,22,Australia,AU,South Australia,-35.08274,138.68145,EPSG:4326 +HUMAN_OBSERVATION,GENERAL PUBLIC N/A,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Dead; Notes = Shoulder of flinders Highway. Presumed roadkill. Looked a few days old. Definitely a Male.; Photo/Movie reference = ID_Koal_152.jpg,2021,7,6,Australia,AU,South Australia,-34.61292,135.66141,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2022,9,5,Australia,AU,South Australia,-35.10743,138.71656,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,6,8,Australia,AU,South Australia,-35.00627,138.67396,EPSG:4326 +HUMAN_OBSERVATION,HAYWOOD B.T. Bryan,1,,,2020,12,15,Australia,AU,South Australia,-34.87787,138.70248,EPSG:4326 +HUMAN_OBSERVATION,PICKETT F. Fred (Frederick),1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Climbing tree; Notes = Crossed Lincoln Highway then climbed tree. 11.30pm; Photo/Movie reference = ID_Koal_154.jpg,2021,9,19,Australia,AU,South Australia,-34.694,135.8547,EPSG:4326 +HUMAN_OBSERVATION,HARDING C. Claire,1,,TIME = 6:01 pm,2022,8,2,Australia,AU,South Australia,-38.03825,140.72455,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,not fresh,2022,6,14,Australia,AU,South Australia,-35.78658,137.64619,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,10,21,Australia,AU,South Australia,-35.08521,138.65419,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2022,2,23,Australia,AU,South Australia,-35.02585,138.71071,EPSG:4326 +HUMAN_OBSERVATION,Clare Seaton,2,,Another larger koala was in the vacinity but no photos,2022,1,2,Australia,AU,Queensland,-27.490062,153.249164,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2023,2,10,Australia,AU,South Australia,-34.99932,138.72537,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,In SA Blue Gum near falls; TIME = 12:17 PM,2022,4,25,Australia,AU,South Australia,-35.00847,138.66764,EPSG:4326 +HUMAN_OBSERVATION,POBKE K. Katrina,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Dead; Notes = Road killed koala adult male. Collected of hind leg taken for SA museum tissue sample database on instruction from David Stemmer.,2022,4,12,Australia,AU,South Australia,-34.63871,135.70089,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2023,9,8,Australia,AU,South Australia,-35.12718,138.7218,EPSG:4326 +HUMAN_OBSERVATION,Robyn McCosh,2,,One was grunting. Not sure which one. Sorry about the quality of the photo. ,2021,11,1,Australia,AU,Queensland,-27.277513,152.937828,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,intact but not fresh,2022,6,13,Australia,AU,South Australia,-35.75381,137.59933,EPSG:4326 +HUMAN_OBSERVATION,HAYWOOD B.T. Bryan,1,,,2020,10,1,Australia,AU,South Australia,-34.87787,138.70248,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,9,23,Australia,AU,South Australia,-35.10718,138.69326,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,In SA Blue Gum; TIME = 11:55 AM,2022,4,25,Australia,AU,South Australia,-35.00825,138.67257,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,11,Australia,AU,South Australia,-35.10972,138.6618,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2022,9,20,Australia,AU,South Australia,-35.06865,138.74616,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,ID = 30_240104101905; parentrowid = {7EFC4363-8FC2-4954-8D60-F0D0927D42A6}; TIME = 10:20 am; SEX = M,2024,1,4,Australia,AU,South Australia,-34.99039,138.70695,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,Blue Gum open woodland & pasture,2020,5,8,Australia,AU,South Australia,-34.99803,138.68319,EPSG:4326 +HUMAN_OBSERVATION,GENERAL PUBLIC N/A,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Sleeping in a tree; Notes = Sleeping 8:00am ish cloudy day some light rain; Photo/Movie reference = ID_Koal_166.jpg,2022,4,18,Australia,AU,South Australia,-34.76728,135.82407,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2022,9,2,Australia,AU,South Australia,-35.09018,138.72922,EPSG:4326 +HUMAN_OBSERVATION,Eric Fehr,2,,Mother with Joey crossing road. She was moving fairly quickly and the Joey was a decent size on her back.,2020,12,3,Australia,AU,Queensland,-27.515858,153.086983,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,3,4,Australia,AU,South Australia,-34.98823,138.69404,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,7,7,Australia,AU,South Australia,-34.99125,138.67642,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2021,10,30,Australia,AU,South Australia,-35.07237,138.70415,EPSG:4326 +HUMAN_OBSERVATION,Jamie Reilly,2,,2 adults,2020,4,12,Australia,AU,Queensland,-27.434708,152.99758,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,TIME = 6:18 PM,2022,1,9,Australia,AU,South Australia,-34.99033,138.7067,EPSG:4326 +HUMAN_OBSERVATION,HILLYARD K. Karl,1,,PHOTO = photo1-20210616-223700; TIME = 8:04 AM,2021,6,17,Australia,AU,South Australia,-34.97262,138.61619,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2022,9,24,Australia,AU,South Australia,-35.12428,138.69027,EPSG:4326 +HUMAN_OBSERVATION,SMITH A. Allison,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Other; Other comment = very high in tree awake and watching us and did a lot of sleeping; Notes = we thought this was the same Koala visiting every 2.5 - 3 weeks but on 08/03 we observed a Koala in a tree on Para street out f,2022,3,6,Australia,AU,South Australia,-34.70768,135.85085,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,14,Australia,AU,South Australia,-35.08282,138.72451,EPSG:4326 +HUMAN_OBSERVATION,POBKE K. Katrina,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Dead; Other comment = Overcast 6/8. Temp: Mild mid twenties.; Notes = NPWS Eyre and Far West staff collected thigh muscle sample to freeze for SA Museum tissue collection (as per direction from David Stemmer Collection Manage,2021,12,8,Australia,AU,South Australia,-34.69118,135.85476,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2022,9,18,Australia,AU,South Australia,-35.09491,138.73343,EPSG:4326 +HUMAN_OBSERVATION,SPEIGHT K.N. Katherine,1,,Monthly opportunistic collection of urine (collection tray) and faeces of captive koalas. AEC S2021-081,2023,3,2,Australia,AU,South Australia,-34.96383,138.5556,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2022,9,26,Australia,AU,South Australia,-35.10626,138.73235,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,3,Australia,AU,South Australia,-35.0786,138.73651,EPSG:4326 +HUMAN_OBSERVATION,WHITTAKER K. Kendall,1,,Image No. = SYFR0036,2022,6,19,Australia,AU,South Australia,-34.9889,138.77629,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,10,Australia,AU,South Australia,-35.11435,138.67393,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2023,9,9,Australia,AU,South Australia,-35.11016,138.66041,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,skull presume of koala burnt in last summers fire,2021,9,10,Australia,AU,South Australia,-35.08836,138.68835,EPSG:4326 +HUMAN_OBSERVATION,HARDING C. Claire,1,,ID = 7786_240208155854; parentrowid = {C8DD1781-7483-47EF-93AF-24447D631C13}; TIME = 3:56 pm,2023,12,14,Australia,AU,South Australia,-37.96744,140.8397,EPSG:4326 +HUMAN_OBSERVATION,SMITH A. Allison,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Other; Other comment = awake and watching us; Notes = It looked like it was maybe malting (old fur and new fur) it appeared to be an old Koala,2022,1,1,Australia,AU,South Australia,-34.70764,135.85079,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,fresh scats,2022,6,15,Australia,AU,South Australia,-35.7687,137.62076,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2022,9,16,Australia,AU,South Australia,-35.07894,138.7476,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,4,29,Australia,AU,South Australia,-34.9991,138.67409,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,26,Australia,AU,South Australia,-35.08414,138.73434,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,TIME = 1:56 pm;In Eucalyptus globulus; ID = 30_230530141823; parentrowid = {3A3BCC18-9988-495A-A075-8E949A644516},2023,5,30,Australia,AU,South Australia,-34.99159,138.70567,EPSG:4326 +HUMAN_OBSERVATION,MCKENZIE T. Tara,1,,,2022,3,15,Australia,AU,South Australia,-34.04977,140.81423,EPSG:4326 +HUMAN_OBSERVATION,HARDING C. Claire,1,,seen escaping fire Fire response,2021,10,23,Australia,AU,South Australia,-38.04427,140.72414,EPSG:4326 +HUMAN_OBSERVATION,Nadine Walker,2,,1 Male & 1 Female,2022,5,2,Australia,AU,Queensland,-27.547829,153.204953,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,TIME = 6:00 pm; Crossing road and climbing Eucalyptus globulus; ID = 30_230709090531; parentrowid = {E5F44AFC-1236-4598-8D02-15B037A0B223},2023,7,5,Australia,AU,South Australia,-34.99156,138.70567,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,ID = 30_231222122104; parentrowid = {192B412C-D0B4-46E9-8300-F4ECC6B771D9}; TIME = 11:45 am; Crossing road; SEX = M,2023,12,22,Australia,AU,South Australia,-34.99039,138.70695,EPSG:4326 +HUMAN_OBSERVATION,ADELAIDE UNIVERSITY STUDENTS N/A | SPEIGHT K.N. Katherine | ADELAIDE UNIVERSITY ROSEWORTHY CAMP,1,,Post mortem examination at University of Adelaide School of Animal and Veterinary Science of dead wild koala (euthanased or died),2020,6,4,Australia,AU,South Australia,-34.17442,140.7443,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,10,2,Australia,AU,South Australia,-35.11392,138.67914,EPSG:4326 +HUMAN_OBSERVATION,GENERAL PUBLIC N/A,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Feeding in a tree,2020,5,6,Australia,AU,South Australia,-34.93654,135.66623,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2023,6,27,Australia,AU,South Australia,-35.30866,138.58238,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,2,25,Australia,AU,South Australia,-35.00302,138.75937,EPSG:4326 +HUMAN_OBSERVATION,SMITH A. Allison,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Other; Other comment = awake and watching us; Notes = This is the first time we have seen a Koala in this tree and it does not appear to be the same as the one that visited English st 06/03. This one appears to be fluffy aroun,2022,3,8,Australia,AU,South Australia,-34.70731,135.85124,EPSG:4326 +HUMAN_OBSERVATION,HARDING C. Claire,1,,,2021,11,25,Australia,AU,South Australia,-38.02567,140.79092,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,TIME = 6:22 PM,2021,11,3,Australia,AU,South Australia,-34.99038,138.70671,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,ID = 30_231217134057; parentrowid = {824FA12A-464E-43B7-907A-576CF2AD5695}; TIME = 6:35 am; SEX = M,2023,12,17,Australia,AU,South Australia,-34.99039,138.70695,EPSG:4326 +HUMAN_OBSERVATION,THOMPSON K. Kim,1,,https://biocollect.ala.org.au/image?id=373429FE-2D3A-4A71-8167-B128EB1DC2E4.jpeg.,2020,7,21,Australia,AU,South Australia,-34.82185,138.88401,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2022,9,22,Australia,AU,South Australia,-35.11435,138.67393,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,TIME = 7:45 am; SEX = F,2022,10,16,Australia,AU,South Australia,-34.99046,138.70683,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,4,21,Australia,AU,South Australia,-34.99934,138.75151,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2021,10,5,Australia,AU,South Australia,-35.08421,138.71907,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,7,8,Australia,AU,South Australia,-34.94252,138.67444,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,5,22,Australia,AU,South Australia,-34.99632,138.72718,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,10,30,Australia,AU,South Australia,-35.10565,138.67616,EPSG:4326 +HUMAN_OBSERVATION,FEWSTER Z. Zita,1,,In stringybark tree on side of road was calling;PHOTO = photo1-20211122-075226; TIME = 6:19 PM,2021,11,22,Australia,AU,South Australia,-35.01191,138.71558,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,TIME = 7:40 PM; On ground wading through garden pond; SEX = M,2023,1,11,Australia,AU,South Australia,-34.99039,138.70654,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2021,10,31,Australia,AU,South Australia,-35.0876,138.71443,EPSG:4326 +HUMAN_OBSERVATION,SPEIGHT K.N. Katherine,1,,Opportunistic faecal sample collection from koalas,2020,4,20,Australia,AU,South Australia,-34.95011,138.68332,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,16,Australia,AU,South Australia,-35.10626,138.73235,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,10,6,Australia,AU,South Australia,-35.0842,138.71904,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,19,Australia,AU,South Australia,-35.0786,138.73651,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,Calling; TIME = 2:42 PM,2020,9,27,Australia,AU,South Australia,-35.07823,138.70715,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,TIME = 8:46 AM,2022,1,25,Australia,AU,South Australia,-34.99042,138.70687,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,TIME = 3:18 PM; In Eucalyptus obliqua; PHOTO = image2-20220522-161854 Pfarmer.; SOURCE = BDBSA Version 2.,2022,5,22,Australia,AU,South Australia,-34.99074,138.69728,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,2,7,Australia,AU,South Australia,-35.40432,138.73676,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2022,9,2,Australia,AU,South Australia,-35.09246,138.68353,EPSG:4326 +HUMAN_OBSERVATION,GENERAL PUBLIC N/A,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = On the ground; Notes = Time of day: 8:25pm Walking across dirt road; Photo/Movie reference = ID_Koal_151.mov,2021,1,9,Australia,AU,South Australia,-34.8898,135.67009,EPSG:4326 +HUMAN_OBSERVATION,CARPENTER J.B. Jesse,1,,EBS project number= G90901,2020,1,23,Australia,AU,South Australia,-34.77328,138.73802,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,28,Australia,AU,South Australia,-35.08987,138.69566,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,TIME = 4:31 am; No. of PHOTOS available = 1,2023,1,12,Australia,AU,South Australia,-34.99039,138.70654,EPSG:4326 +HUMAN_OBSERVATION,GENERAL PUBLIC N/A,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = On the ground; Notes = It has to cross a very busy road to get to the trees on the other side. Taken on Proper Bay Road; Photo/Movie reference = ID_Koal_170.jpg,2022,2,20,Australia,AU,South Australia,-34.84819,135.85006,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2022,9,23,Australia,AU,South Australia,-35.07446,138.74655,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,29,Australia,AU,South Australia,-35.12319,138.67925,EPSG:4326 +HUMAN_OBSERVATION,Dominique Appay,2,,Mother and baby koala,2021,10,23,Australia,AU,Queensland,-27.500472,153.234398,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,10,27,Australia,AU,South Australia,-35.11988,138.73815,EPSG:4326 +HUMAN_OBSERVATION,HILLYARD K. Karl,1,,ID = 5396_231104145630; parentrowid = {752D467B-3FEA-4748-B2F1-117163B82719}; TIME = 2:55 pm;No. of. PHOTOS available = 1,2023,11,4,Australia,AU,South Australia,-34.86802,138.6999,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,6,Australia,AU,South Australia,-35.08274,138.68145,EPSG:4326 +HUMAN_OBSERVATION,GENERAL PUBLIC N/A,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = On the ground,2022,2,21,Australia,AU,South Australia,-34.71964,135.83832,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2022,9,7,Australia,AU,South Australia,-35.13158,138.6802,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2022,9,29,Australia,AU,South Australia,-35.07446,138.74655,EPSG:4326 +HUMAN_OBSERVATION,ANGRAVE M. Matt,2,,Mum and joey on camera trap; TIME = 3:43 pm; SEX = F,2022,1,17,Australia,AU,South Australia,-35.96621,137.60413,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,20,Australia,AU,South Australia,-35.06881,138.74588,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,2,,,2022,6,17,Australia,AU,South Australia,-35.81113,137.68124,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,TIME = 4:18 am; No. of PHOTOS available = 1,2023,1,13,Australia,AU,South Australia,-34.99039,138.70654,EPSG:4326 +HUMAN_OBSERVATION,RAJIC T. Tania | ANDERSON R. Ross,2,,ID = 1176-5024_231101065058; parentrowid = {48F53F97-2355-4B50-9FD0-FBB16F2680F5}; TIME = 7:27 pm; Female with joey on its back; SEX = F,2023,10,28,Australia,AU,South Australia,-37.80778,140.86578,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,25,Australia,AU,South Australia,-35.1083,138.73756,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,7,15,Australia,AU,South Australia,-35.00149,138.69839,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,TIME = 6:26 am; SEX = M,2022,11,21,Australia,AU,South Australia,-34.99069,138.70718,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2022,9,19,Australia,AU,South Australia,-35.10743,138.71656,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,Blue Gum open woodland & pasture,2020,5,8,Australia,AU,South Australia,-34.99539,138.67843,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2022,1,18,Australia,AU,South Australia,-35.0158,138.694,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,9,20,Australia,AU,South Australia,-35.12341,138.69119,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,7,6,Australia,AU,South Australia,-34.9888,138.63903,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,9,21,Australia,AU,South Australia,-35.08615,138.64789,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2023,2,19,Australia,AU,South Australia,-34.98959,138.70867,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,9,23,Australia,AU,South Australia,-35.11435,138.67393,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,9,21,Australia,AU,South Australia,-35.12319,138.67924,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2023,2,8,Australia,AU,South Australia,-35.01494,138.78339,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2022,10,17,Australia,AU,South Australia,-35.00313,138.75654,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,skull presume of koala burnt in last summers fire,2021,9,6,Australia,AU,South Australia,-35.07946,138.68577,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,11,10,Australia,AU,South Australia,-35.12428,138.69027,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,10,Australia,AU,South Australia,-35.12278,138.73194,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,2,27,Australia,AU,South Australia,-34.99416,138.66228,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,9,28,Australia,AU,South Australia,-35.1083,138.73756,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,2,,female and sub-adult off-spring,2021,11,17,Australia,AU,South Australia,-34.9123,138.61226,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,20,Australia,AU,South Australia,-35.12749,138.72936,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2021,9,8,Australia,AU,South Australia,-35.0823,138.69648,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,6,25,Australia,AU,South Australia,-35.00016,138.93088,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,9,20,Australia,AU,South Australia,-35.12278,138.73193,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,12,29,Australia,AU,South Australia,-35.00196,138.75352,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,2,,adult with juvenile on back,2020,4,21,Australia,AU,South Australia,-34.99808,138.75094,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,ID = 30_231128193038; parentrowid = {0E9754DC-B03F-496F-90B9-08446E58ADD5}; TIME = 6:05 pm; SEX = M,2023,11,27,Australia,AU,South Australia,-34.99039,138.70695,EPSG:4326 +HUMAN_OBSERVATION,HARDING C. Claire,1,,,2021,11,15,Australia,AU,South Australia,-38.03835,140.72458,EPSG:4326 +HUMAN_OBSERVATION,SMITH A. Allison,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Sitting in tree; Other comment = sitting high up and making noise; Notes = were alerted to the Koala in the tree early evening / dusk as it appeared to be sounding a mating call.,2021,12,16,Australia,AU,South Australia,-34.70746,135.85159,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,10,12,Australia,AU,South Australia,-35.13158,138.6802,EPSG:4326 +HUMAN_OBSERVATION,HARDING C. Claire,2,,Female and joey,2021,10,21,Australia,AU,South Australia,-38.03453,140.7163,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2021,8,13,Australia,AU,South Australia,-35.14914,138.73621,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,observed and reported by Jill Tugwell,2023,4,4,Australia,AU,South Australia,-35.2233,138.7325,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,4,7,Australia,AU,South Australia,-34.9988,138.67345,EPSG:4326 +HUMAN_OBSERVATION,GENERAL PUBLIC N/A,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Sleeping in a tree; Notes = Koala comes here every year for last several years possible (male?) singular koala hangs around for a few days.; Photo/Movie reference = ID_Koal_167.jpg,2022,3,7,Australia,AU,South Australia,-34.77891,135.82965,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2022,9,20,Australia,AU,South Australia,-35.07446,138.74655,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,about a dozen scats beside track,2020,4,20,Australia,AU,South Australia,-35.26796,138.68176,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,8,Australia,AU,South Australia,-35.07996,138.70163,EPSG:4326 +HUMAN_OBSERVATION,HILLYARD K. Karl,1,,PHOTO = photo1-20210507-010749.; TIME = 10:35 AM,2021,5,7,Australia,AU,South Australia,-35.01733,138.65861,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,11,1,Australia,AU,South Australia,-35.10565,138.67616,EPSG:4326 +HUMAN_OBSERVATION,SMITH A. Allison,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Feeding in a tree; Notes = We think this Koala is visiting the same tree approx every 3 weeks. My husband check morning a night for it. the last 2 times he has been up very high and unable to get a photo,2022,2,14,Australia,AU,South Australia,-34.70762,135.85078,EPSG:4326 +HUMAN_OBSERVATION,GENERAL PUBLIC N/A,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Other; Other comment = On the ground then climbed up a tree to feed.; Notes = Mild spring day. Climbed quickly. Made grunting sounds.; Photo/Movie reference = ID_Koal_153.jpg,2020,10,13,Australia,AU,South Australia,-34.6976,135.85259,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,2,,adult with small juvenile attached to back of neck,2022,1,2,Australia,AU,South Australia,-35.06734,138.58233,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2022,12,10,Australia,AU,South Australia,-35.0564,138.83678,EPSG:4326 +HUMAN_OBSERVATION,GENERAL PUBLIC N/A,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Sleeping in a tree,2022,2,23,Australia,AU,South Australia,-34.71996,135.84085,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,5,20,Australia,AU,South Australia,-35.00845,138.75587,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,5,28,Australia,AU,South Australia,-35.02863,138.71502,EPSG:4326 +HUMAN_OBSERVATION,GENERAL PUBLIC N/A,2,,Adult = 1; Joey/Juvenile = 1; What was the koala doing when you saw it? = Feeding in a tree; Notes = mother koala part way up tree protection baby koala further up branches as dog barking at base of tree,2022,2,27,Australia,AU,South Australia,-34.76989,135.82416,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,ID = 30_240216183559; parentrowid = {7B075DF2-44ED-4BF9-96BE-0556A4CF9E8A}; TIME = 6:35 pm; SEX = M,2024,2,16,Australia,AU,South Australia,-34.9902,138.70661,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,9,24,Australia,AU,South Australia,-35.1083,138.73756,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,28,Australia,AU,South Australia,-35.1083,138.73756,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2022,9,27,Australia,AU,South Australia,-35.09491,138.73343,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,11,10,Australia,AU,South Australia,-35.12319,138.67925,EPSG:4326 +HUMAN_OBSERVATION,SPEIGHT K.N. Katherine,1,,Opportunistic faecal sample collection from koalas,2020,4,20,Australia,AU,South Australia,-34.95011,138.68332,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,16,Australia,AU,South Australia,-35.08282,138.72451,EPSG:4326 +HUMAN_OBSERVATION,SPEIGHT K.N. Katherine,1,,Opportunistic faecal sample collection from koalas,2020,4,20,Australia,AU,South Australia,-34.95011,138.68332,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,2,,,2020,2,3,Australia,AU,South Australia,-34.71083,138.90559,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,TIME = 6:10 PM,2022,1,25,Australia,AU,South Australia,-34.99042,138.70687,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,12,30,Australia,AU,South Australia,-34.83473,138.73801,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,10,29,Australia,AU,South Australia,-35.08356,138.64494,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2022,1,7,Australia,AU,South Australia,-35.0982,138.7128,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,1,,TIME = 11:12 am; ID = 30_230910135722; parentrowid = {2E8CD7DA-ED2E-43B7-8370-36E07E28AD4C}; On ground sitting at base of Eucalyptus obliqua,2023,9,9,Australia,AU,South Australia,-34.99024,138.7065,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,10,4,Australia,AU,South Australia,-35.10044,138.65755,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2022,9,18,Australia,AU,South Australia,-35.11392,138.67914,EPSG:4326 +HUMAN_OBSERVATION,SMITH A. Allison,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Feeding in a tree; Notes = If it is the same Koala we sited 01/01/2022 it appear to be healthy and was shifting around in the tree more.,2022,1,23,Australia,AU,South Australia,-34.70764,135.84903,EPSG:4326 +HUMAN_OBSERVATION,HAYWOOD B.T. Bryan,1,,UV light trapping night,2020,4,25,Australia,AU,South Australia,-34.87787,138.70248,EPSG:4326 +HUMAN_OBSERVATION,FEWSTER Z. Zita,1,,In backyard tree small individual. PHOTO = photo1-20200608-074642-1. TIME = 5:14 PM,2020,6,8,Australia,AU,South Australia,-35.01152,138.71526,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,7,7,Australia,AU,South Australia,-34.99004,138.67295,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,2,,TIME = 3:48 pm; ID = 30_230827160803; parentrowid = {892CD212-1AC2-4EAA-8EF3-68E96E5AB1B5}; F with joey in Eucalyptus globulus; SEX = F,2023,8,27,Australia,AU,South Australia,-34.99168,138.70759,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2022,9,13,Australia,AU,South Australia,-35.09491,138.73343,EPSG:4326 +HUMAN_OBSERVATION,GENERAL PUBLIC N/A,1,,Adult = 1; Joey/Juvenile = 0; What was the koala doing when you saw it? = Feeding in a tree; Notes = 6-7 magpies alerted me to the mid section of the tree as they were making quite a fuss over the koala... I''ve never seen a koala bear on our property before. (21 years); Photo/Movie reference = ID_K,2020,2,7,Australia,AU,South Australia,-34.67691,135.80851,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,12,30,Australia,AU,South Australia,-34.83663,138.73012,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,2,,2 adults about 50m apart,2022,1,20,Australia,AU,South Australia,-35.00654,138.75346,EPSG:4326 +HUMAN_OBSERVATION,HOWARD T. Tim,1,,TIME = 3:33 pm; In tree. Healthy; PHOTO = image2-20220807-154011; SEX = F,2022,8,7,Australia,AU,South Australia,-34.68794,138.83157,EPSG:4326 +HUMAN_OBSERVATION,HOWARD T. Tim,1,,TIME = 3:40 pm; PHOTO = image2-20220807-154116; SEX = F,2022,8,7,Australia,AU,South Australia,-34.68794,138.83157,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,3,6,Australia,AU,South Australia,-34.96591,138.6483,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2021,10,31,Australia,AU,South Australia,-35.08356,138.64494,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Burnt,2022,9,22,Australia,AU,South Australia,-35.06389,138.74255,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2020,4,21,Australia,AU,South Australia,-35.02219,138.6975,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David | SHEATH A Andrew (Andy) | WHITTAKER K. Kendall,1,,,2023,9,25,Australia,AU,South Australia,-35.12278,138.73194,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,1,,,2022,1,5,Australia,AU,South Australia,-35.00082,138.72112,EPSG:4326 +HUMAN_OBSERVATION,LINTERN K. K,1,,PHOTO = photo1-20201231-154520.jpg; TIME = 3:43 PM,2020,12,31,Australia,AU,South Australia,-34.6882,138.8313,EPSG:4326 +HUMAN_OBSERVATION,AMLR - FIRE MANAGEMENT GROUP N/A,1,,Unburnt,2022,9,29,Australia,AU,South Australia,-35.11784,138.72412,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042I,1,,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-34.75377,146.55732,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-30.23952,152.90276,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-28.70571,153.526374,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.46685,150.522372,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.92389,152.381029,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-31.649845,152.828334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-34.4636,150.52348,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-31.468579,152.9156,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-34.5231,150.60004,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-31.79003,152.69647,EPSG:4326 +HUMAN_OBSERVATION,OPJG18122002,1,,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-30.218552,152.792895,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2020,5,22,Australia,AU,New South Wales,-33.526982,150.659634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.4466,150.514286,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200G,1,,occurrenceRemarks withheld,2024,4,28,Australia,AU,New South Wales,-32.05739,152.53804,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-31.62991,152.787067,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-31.480359,152.921151,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-32.69442,151.64852,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-29.48396,153.093613,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,7,25,Australia,AU,New South Wales,-28.61131,153.20543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.446746,150.516143,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,FEMALE,occurrenceRemarks withheld,2022,8,23,Australia,AU,New South Wales,-32.756832,152.102118,EPSG:4326 +HUMAN_OBSERVATION,BREHS-HO,1,,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-33.122846,151.17919,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,9,4,Australia,AU,New South Wales,-34.8746,146.83156,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.420983,150.630222,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,12,16,Australia,AU,New South Wales,-28.991215,153.437014,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.1829,153.003163,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-34.134334,150.79422,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2022,10,14,Australia,AU,New South Wales,-28.827266,153.30453,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,13,Australia,AU,New South Wales,-29.483834,153.104096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.418247,150.633769,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,11,,Australia,AU,New South Wales,-34.462,150.549897,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-29.484955,153.096103,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.446482,150.516891,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,3,6,Australia,AU,New South Wales,-28.65348,153.45439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.432232,150.605586,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.464523,150.521886,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101U,1,,occurrenceRemarks withheld,2023,12,15,Australia,AU,New South Wales,-31.440628,152.924741,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-31.26329,152.82929,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.43514,150.609072,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-29.53762,153.01473,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2024,1,8,Australia,AU,New South Wales,-29.490203,153.109739,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-34.094032,150.83352,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-28.815615,153.288427,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-30.44817,153.04154,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,MALE,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-34.09996,150.809506,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-28.558157,153.07555,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-33.714589,150.785579,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-31.13523,150.05034,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.419947,150.60252,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-28.384452,153.562423,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-30.456101,152.712063,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-31.447926,152.881366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.47008,150.516279,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.463998,150.523958,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.447283,150.514179,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,6,Australia,AU,New South Wales,-28.81661,153.328268,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.447636,150.516454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.44789,150.51698,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2024,5,18,Australia,AU,New South Wales,-33.11801,151.235428,EPSG:4326 +HUMAN_OBSERVATION,OJJS20110901;OJJS20110903;OJJS20110904,1,,occurrenceRemarks withheld,2020,8,10,Australia,AU,New South Wales,-30.64834,152.957605,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.541583,150.016902,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.53402,150.62278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.46571,150.520359,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,4,22,Australia,AU,New South Wales,-31.471214,152.926755,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,5,Australia,AU,New South Wales,-33.70544,150.785318,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-31.534422,152.805354,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,8,Australia,AU,New South Wales,-31.430048,152.884721,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,4,22,Australia,AU,New South Wales,-29.667247,152.868061,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.451721,150.52271,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.41754,150.63306,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.4658,150.520368,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,20,Australia,AU,New South Wales,-33.706015,150.786175,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-28.676412,153.360023,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003883,1,,occurrenceRemarks withheld,2023,4,22,Australia,AU,New South Wales,-28.885991,153.23581,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152A,1,,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-28.889525,153.23033,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004154,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.428586,152.98183,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210J,1,MALE,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-28.275677,153.394689,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,15,Australia,AU,New South Wales,-30.44393,152.637195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.41909,150.610356,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,6,25,Australia,AU,New South Wales,-32.77939,151.9232,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-31.44152,152.910537,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.45338,150.524522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.44668,150.51288,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-28.81374,153.321383,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-32.683275,151.696625,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.463379,150.53485,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,25,Australia,AU,New South Wales,-28.986157,153.01022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.393773,150.640919,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.45186,150.602947,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-29.477581,153.091178,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,2,Australia,AU,New South Wales,-29.490427,153.107995,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.451717,150.522536,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152E,1,,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-28.617398,152.98432,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,5,Australia,AU,New South Wales,-29.489928,153.110608,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.423771,150.637334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.435999,150.615674,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-28.816931,153.304289,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-28.83385,153.352906,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,2,27,Australia,AU,New South Wales,-31.638877,152.793958,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.454593,150.607146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.390104,150.627384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.438083,150.604233,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,11,Australia,AU,New South Wales,-28.331142,153.557818,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-29.48721,153.090781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.44957,150.516233,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307101O,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-29.747449,151.081893,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041C,1,,occurrenceRemarks withheld,2022,8,28,Australia,AU,New South Wales,-29.772474,151.092488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.448157,150.526592,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,3,15,Australia,AU,New South Wales,-34.49156,150.331826,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.43605,150.616456,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,4,8,Australia,AU,New South Wales,-31.629382,152.78697,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.386262,150.63107,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-31.631125,152.78275,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.411571,150.59608,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012505,1,,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-31.458908,152.925436,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,1,29,Australia,AU,New South Wales,-34.149919,150.823359,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR1511120M;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-28.54593,153.52954,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.449523,150.615725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.39058,150.627306,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-29.48558,153.103489,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.420407,150.608991,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.65226,152.814766,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,16,Australia,AU,New South Wales,-28.396989,153.557475,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004240,1,,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-28.861328,153.333311,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-31.12214,150.10109,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.45338,150.524522,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.201744,152.745302,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,8,Australia,AU,New South Wales,-29.489918,153.110549,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,26,Australia,AU,New South Wales,-29.48997,153.101258,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.42086,150.630399,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.471003,150.530239,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-34.029227,151.04862,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.45145,150.604079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.465374,150.52161,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,2,Australia,AU,New South Wales,-29.490404,153.108194,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303280B,1,,occurrenceRemarks withheld,2023,7,4,Australia,AU,New South Wales,-32.748434,152.069221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.43687,150.619196,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-29.490549,153.109342,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402130A,1,,occurrenceRemarks withheld,2024,1,14,Australia,AU,New South Wales,-31.460608,152.92311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.444867,150.518603,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.72742,152.006179,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,4,23,Australia,AU,New South Wales,-30.28553,153.111267,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002841,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-29.49491,153.093058,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-31.435875,152.896115,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.399905,150.640061,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.467892,150.529721,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.43059,150.617068,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-32.714759,152.151251,EPSG:4326 +HUMAN_OBSERVATION,ODFK23120704,1,,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-29.393372,152.804743,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-29.482232,153.104262,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.46418,150.524933,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-28.960579,153.39438,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004044,1,FEMALE,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-28.637878,153.62882,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-34.39366,150.893548,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,FEMALE,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-31.933133,152.412385,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270U,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-31.15604,152.880336,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103104,1,,occurrenceRemarks withheld,2023,1,15,Australia,AU,New South Wales,-33.492172,149.55134,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.392158,150.63383,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.514707,149.962048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.436431,150.609644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.437322,150.605419,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.435017,150.60419,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.446476,150.514377,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080901,1,MALE,occurrenceRemarks withheld,2023,7,5,Australia,AU,New South Wales,-28.51607,153.457947,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-31.443635,152.898766,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.423825,150.637344,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401110D,1,,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,6,30,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004004,1,,occurrenceRemarks withheld,2023,3,9,Australia,AU,New South Wales,-28.673442,153.558467,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,4,22,Australia,AU,New South Wales,-31.979846,152.39804,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.453466,150.518099,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151F,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-28.383818,153.56201,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,14,Australia,AU,New South Wales,-28.82356,153.298141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.445068,150.518739,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-29.489727,153.10519,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,3,28,Australia,AU,New South Wales,-34.761405,146.588411,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,4,21,Australia,AU,New South Wales,-31.970201,152.38858,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-36.340889,149.4768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.454533,150.515597,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,3,23,Australia,AU,New South Wales,-31.91019,152.40941,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.46511,150.522336,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.41335,150.597139,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.435832,150.616353,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.424568,150.602802,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.433025,150.613865,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-31.490642,152.909022,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,3,17,Australia,AU,New South Wales,-31.459518,152.91531,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.396327,150.641021,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,8,13,Australia,AU,New South Wales,-32.7479,152.066839,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,4,1,Australia,AU,New South Wales,-31.465823,152.910059,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,14,Australia,AU,New South Wales,-31.458795,152.89442,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-29.49025,153.110184,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-33.192609,151.053033,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-34.90192,150.06202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.38584,150.624634,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-34.101454,150.960978,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,3,Australia,AU,New South Wales,-32.711309,152.061498,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.399779,150.61729,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,5,24,Australia,AU,New South Wales,-34.27298,150.72741,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-32.706625,152.06373,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190C,1,,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-31.476912,152.913455,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.483735,150.6351,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,7,12,Australia,AU,New South Wales,-29.672332,151.03073,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.305045,152.02831,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,1,26,Australia,AU,New South Wales,-32.724658,152.07615,EPSG:4326 +HUMAN_OBSERVATION,OPJG21060804,1,,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-30.880764,152.892003,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-33.782586,150.06823,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160J,1,,occurrenceRemarks withheld,2023,1,8,Australia,AU,New South Wales,-32.732488,152.10399,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,4,Australia,AU,New South Wales,-29.49018,153.108081,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,4,27,Australia,AU,New South Wales,-31.439139,152.916535,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,11,Australia,AU,New South Wales,-35.074674,150.039121,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.42387,150.637342,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,5,15,Australia,AU,New South Wales,-29.486764,153.09717,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-33.713671,150.784789,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,9,17,Australia,AU,New South Wales,-30.334389,153.09636,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-31.47334,152.86816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.458908,150.526808,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.430533,150.610443,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.821668,153.3033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.429761,150.61015,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.437543,150.604716,EPSG:4326 +HUMAN_OBSERVATION,OJQS16052400,1,,occurrenceRemarks withheld,2020,4,,Australia,AU,New South Wales,-30.589822,151.77014,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,10,12,Australia,AU,New South Wales,-31.44663,152.92221,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,8,Australia,AU,New South Wales,-32.319249,152.023887,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110Z,1,,occurrenceRemarks withheld,2023,7,24,Australia,AU,New South Wales,-31.478434,152.913376,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.928007,152.382059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.420965,150.62698,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-31.447065,152.901207,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100A,1,,occurrenceRemarks withheld,2022,8,15,Australia,AU,New South Wales,-34.189755,150.78569,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153U,1,MALE,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-28.748604,153.34501,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,3,20,Australia,AU,New South Wales,-34.10075,150.972939,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.426682,150.604384,EPSG:4326 +HUMAN_OBSERVATION,OPXE96061101,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.969929,153.409428,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-30.53177,152.917762,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.465591,150.525609,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-31.435119,152.91949,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2020,6,4,Australia,AU,New South Wales,-29.66721,152.867932,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,,occurrenceRemarks withheld,2023,3,24,Australia,AU,New South Wales,-28.96062,153.402832,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.46343,150.519545,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-34.068368,150.913678,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,FEMALE,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-31.92834,152.403917,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.39273,150.639175,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,7,Australia,AU,New South Wales,-29.48551,153.103744,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403060D;OLHP2403060E,1,,occurrenceRemarks withheld,2024,2,10,Australia,AU,New South Wales,-31.972434,152.56073,EPSG:4326 +HUMAN_OBSERVATION,ODMP23070402,1,,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-31.27583,150.29628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.416259,150.600689,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-32.03516,152.39268,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-30.397,151.704,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091904,1,,occurrenceRemarks withheld,2024,8,28,Australia,AU,New South Wales,-32.423153,152.283667,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.42378,150.637356,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.444378,150.516714,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-30.44833,153.04111,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,11,10,Australia,AU,New South Wales,-32.245824,151.843338,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-31.479204,152.918,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160B,1,,occurrenceRemarks withheld,2023,6,3,Australia,AU,New South Wales,-33.48909,149.398274,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030U,1,,occurrenceRemarks withheld,2022,7,13,Australia,AU,New South Wales,-32.710536,152.072609,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.20241,152.667755,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-29.489568,153.103935,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-29.762752,151.110282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.397835,150.622065,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-36.115954,150.060139,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.341355,152.605967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.46576,150.522426,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083000,1,,occurrenceRemarks withheld,2021,1,5,Australia,AU,Victoria,-35.919304,145.672763,EPSG:4326 +HUMAN_OBSERVATION,OPUR19092400,1,,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-28.880436,153.323523,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080903,1,,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-31.459519,152.860451,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,MALE,occurrenceRemarks withheld,2024,5,13,Australia,AU,New South Wales,-31.4646,152.9278,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-28.632728,153.586079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.38621,150.62744,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-34.098743,150.871078,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.419743,150.611469,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.097846,150.967947,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-32.003965,152.157422,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-31.941413,152.475301,EPSG:4326 +HUMAN_OBSERVATION,DOUS-HO,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-33.824396,150.101052,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,4,12,Australia,AU,New South Wales,-33.772915,150.058877,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,3,7,Australia,AU,New South Wales,-29.642903,152.829547,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-29.05296,153.30413,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.937089,153.316984,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-28.649902,153.304202,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,10,22,Australia,AU,New South Wales,-31.92365,152.315318,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,2,Australia,AU,New South Wales,-33.707658,150.785501,EPSG:4326 +HUMAN_OBSERVATION,OPJG15082102,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.254788,152.94172,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-31.241796,152.901817,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.057995,150.892639,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290M,1,,occurrenceRemarks withheld,2022,3,4,Australia,AU,New South Wales,-32.709368,152.062857,EPSG:4326 +HUMAN_OBSERVATION,CHADL,1,,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-28.558892,152.74877,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-31.91019,152.40941,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.922656,152.383296,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,4,Australia,AU,New South Wales,-29.479935,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,9,15,Australia,AU,New South Wales,-31.65075,152.818454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.463264,150.519365,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.471385,150.53038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.465653,150.521134,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-31.91878,152.372218,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-28.323003,153.465565,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-36.541583,150.016902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.445221,150.515622,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-30.22871,153.00608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.45545,150.653638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.388906,150.62421,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-31.936905,152.510302,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,11,12,Australia,AU,New South Wales,-32.722482,152.077233,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,1,29,Australia,AU,New South Wales,-31.466934,152.908776,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.446348,150.513837,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.388906,150.62421,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,1,3,Australia,AU,New South Wales,-28.890093,153.231466,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433153,150.615809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.438493,150.606278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.385816,150.625254,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-28.715871,153.402931,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,24,Australia,AU,New South Wales,-31.678285,152.80028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419716,150.611448,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,6,26,Australia,AU,New South Wales,-31.445256,152.921657,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,3,30,Australia,AU,New South Wales,-29.667322,152.867868,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,24,Australia,AU,New South Wales,-32.708774,152.064338,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,12,Australia,AU,New South Wales,-29.49018,153.110506,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153U,1,,occurrenceRemarks withheld,2022,10,13,Australia,AU,New South Wales,-28.749739,153.344637,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.465518,150.522009,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-30.326216,151.649793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.442866,150.516399,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-29.490623,153.108087,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010702,1,FEMALE,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-29.494276,153.094846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-34.444728,150.603336,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.421226,150.62743,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-29.490152,153.110501,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031812,1,,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-28.598067,153.089558,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-29.48551,153.103763,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.399683,150.62483,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-30.33807,153.09298,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032100,1,,occurrenceRemarks withheld,2023,1,2,Australia,AU,New South Wales,-32.728982,152.106284,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-36.16835,149.375633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.465736,150.520326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.411571,150.59608,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,9,3,Australia,AU,New South Wales,-34.019191,150.882228,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.393244,150.64387,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-29.488695,153.093179,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022604,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.53525,152.708605,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-29.00341,153.342669,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2021,2,11,Australia,AU,New South Wales,-30.36367,153.08615,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.651127,152.818189,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240Z,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-32.728879,152.129821,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-28.821624,153.31185,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-28.838694,153.391483,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,MALE,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-31.919823,152.353593,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-29.491604,153.099809,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2020,12,16,Australia,AU,New South Wales,-32.727783,152.078206,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-31.45295,152.913089,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.432262,150.606662,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.433775,150.617184,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-31.459736,152.88248,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-28.576441,153.179945,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.453363,150.523757,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140Q,1,FEMALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-28.924729,153.159345,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,2,17,Australia,AU,New South Wales,-28.818582,153.302213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.485169,150.635636,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.45781,150.526035,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,22,Australia,AU,New South Wales,-33.704891,150.784913,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042A,1,FEMALE,occurrenceRemarks withheld,2022,10,10,Australia,AU,New South Wales,-31.470311,150.652977,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-28.981516,152.885273,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.432332,150.612122,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.44825,150.516055,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.427619,150.605761,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.393488,150.639676,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,23,Australia,AU,New South Wales,-29.489587,153.103918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.488515,150.637545,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.446415,150.516708,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160J,1,,occurrenceRemarks withheld,2022,10,9,Australia,AU,New South Wales,-32.727135,152.104913,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,18,Australia,AU,New South Wales,-28.86466,153.293451,EPSG:4326 +HUMAN_OBSERVATION,OPJG23060600,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-30.720778,152.682382,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,4,10,Australia,AU,New South Wales,-31.919012,152.37948,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-31.629663,152.786545,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2024,2,29,Australia,AU,New South Wales,-30.889653,153.068415,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.461662,150.532376,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,MALE,occurrenceRemarks withheld,2022,6,2,Australia,AU,New South Wales,-31.441294,152.902902,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.46573,150.522688,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-31.473844,152.911347,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032904,1,,occurrenceRemarks withheld,2022,12,8,Australia,AU,New South Wales,-32.641817,151.769196,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,25,Australia,AU,New South Wales,-28.821114,153.311888,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.427052,150.604885,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-28.286805,153.39323,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.438648,150.606861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.38971,150.627058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-34.44599,150.513118,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-29.477446,153.10424,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-31.920792,152.378767,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.423725,150.637303,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-34.160358,150.789795,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.466452,150.521393,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.123864,152.895702,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,12,2,Australia,AU,New South Wales,-29.489045,153.103436,EPSG:4326 +HUMAN_OBSERVATION,OJJS19122408,1,,occurrenceRemarks withheld,2023,12,28,Australia,AU,New South Wales,-31.925262,152.403199,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270U,1,,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-31.159687,152.890587,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-29.488765,153.10195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.421279,150.627352,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.388883,150.630953,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.63092,152.756701,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.395392,150.64307,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.459813,150.51901,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102509,1,,occurrenceRemarks withheld,2024,9,12,Australia,AU,New South Wales,-31.462129,152.928045,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-28.394081,153.558496,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.45274,152.925852,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100518,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.442216,152.881699,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,4,Australia,AU,New South Wales,-29.49003,153.110522,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,4,18,Australia,AU,New South Wales,-28.84234,153.403976,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-28.816423,153.303415,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-29.485141,153.104037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.42395,150.637297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.459881,150.525462,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-32.309328,152.344522,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-31.47813,152.920058,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090S,1,MALE,occurrenceRemarks withheld,2023,11,16,Australia,AU,Queensland,-27.295094,152.992659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.463825,150.52257,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004052,1,,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-28.881314,153.198697,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140O,1,FEMALE,occurrenceRemarks withheld,2022,2,9,Australia,AU,New South Wales,-32.764661,152.115257,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-29.485417,153.103876,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-32.713852,152.070348,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-31.447732,152.894418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.420663,150.60918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-34.439975,150.618466,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.420497,150.62794,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,4,Australia,AU,New South Wales,-33.709699,150.78591,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.389817,150.627947,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031415,1,,occurrenceRemarks withheld,2021,12,25,Australia,AU,New South Wales,-33.493105,149.55746,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-28.818576,153.330989,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,3,Australia,AU,New South Wales,-33.706834,150.78584,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,MALE,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-36.149577,149.381747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.454432,150.517254,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.446457,150.514323,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.420387,150.630173,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-29.692524,152.851464,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100503,1,,occurrenceRemarks withheld,2024,6,25,Australia,AU,New South Wales,-31.473213,152.924126,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,2,20,Australia,AU,New South Wales,-31.48053,152.913355,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.418732,150.602664,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-31.929119,152.383869,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,OJKB21070600,1,,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-33.61721,149.57375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.450931,150.51579,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.455,150.51419,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,5,25,Australia,AU,New South Wales,-31.434963,152.92473,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.226267,152.189573,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003933,1,MALE,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-29.088252,153.373422,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,7,7,Australia,AU,New South Wales,-34.047267,150.996787,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.457543,150.519959,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-28.849837,153.315736,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,3,29,Australia,AU,New South Wales,-29.480198,153.104251,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,9,Australia,AU,New South Wales,-29.487971,153.0915,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210H,1,,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091904,1,,occurrenceRemarks withheld,2024,8,28,Australia,AU,New South Wales,-32.405658,152.28107,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,MALE,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-32.720977,151.991386,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.459005,150.659438,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-29.483717,153.104117,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,5,13,Australia,AU,New South Wales,-31.948252,152.300422,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-30.356111,153.079993,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.484913,150.635883,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-31.532371,152.836598,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.432249,150.605574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.420886,150.630355,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.389396,150.626708,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.456433,150.60533,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,,occurrenceRemarks withheld,2024,6,12,Australia,AU,New South Wales,-31.145777,152.899333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.438001,150.60417,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032116,1,,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-32.712452,152.066255,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-34.438099,150.616093,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-28.828246,153.280054,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-28.779439,153.333511,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052012,1,FEMALE,occurrenceRemarks withheld,2024,4,23,Australia,AU,New South Wales,-31.468842,152.91358,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-29.490787,153.109304,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.503633,150.008014,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.850693,153.311775,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-29.48566,153.103741,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-28.469309,153.042957,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-29.505196,152.824668,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-34.42133,150.47453,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040410,1,FEMALE,occurrenceRemarks withheld,2023,5,3,Australia,AU,New South Wales,-34.025052,150.87626,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.49161,150.639069,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,8,28,Australia,AU,New South Wales,-29.49025,153.110291,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,14,Australia,AU,New South Wales,-28.864525,153.29295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.383814,150.622908,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,FEMALE,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-34.141866,150.790593,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-29.01741,153.395619,EPSG:4326 +HUMAN_OBSERVATION,OPUR23081702;ODFK2310250A,1,,occurrenceRemarks withheld,2023,,,Australia,AU,New South Wales,-29.185754,153.114387,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,19,Australia,AU,New South Wales,-28.394514,153.557611,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-28.62063,152.983255,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,26,Australia,AU,New South Wales,-28.84372,153.302885,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.437802,150.605993,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.492696,150.638821,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.560724,152.209846,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-28.617975,153.006335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.46664,150.521333,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,3,27,Australia,AU,New South Wales,-31.918684,152.385263,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.458347,150.65852,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.42436,153.045771,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-34.511282,150.55446,EPSG:4326 +HUMAN_OBSERVATION,OJJS20082503;OPJG21123101,1,FEMALE,occurrenceRemarks withheld,2022,3,2,Australia,AU,New South Wales,-32.773532,152.097134,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.466123,150.521653,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,FEMALE,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-30.365697,153.017645,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,6,16,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.485554,150.636398,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.588919,153.55227,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-33.527129,150.659073,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,1,27,Australia,AU,New South Wales,-34.189358,150.79077,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-28.535988,153.085229,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-34.141271,150.82369,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2024,1,20,Australia,AU,New South Wales,-32.032495,151.963148,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.539893,150.189109,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011004,1,,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-31.475222,152.897369,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022523,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-32.487777,152.269498,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-28.959978,153.395156,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.459954,150.525493,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.541892,153.145608,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,6,24,Australia,AU,New South Wales,-30.281572,153.100447,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,20,Australia,AU,New South Wales,-29.490409,153.108017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419334,150.63586,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.44635,152.894537,EPSG:4326 +HUMAN_OBSERVATION,ODFK24082901;ODFK2409020A,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-31.934305,152.414417,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.384491,150.625292,EPSG:4326 +HUMAN_OBSERVATION,OEIJ21090900,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-30.886194,153.07375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.44625,150.517039,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17215,152.90954,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.394266,150.642167,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-28.40779,153.552788,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.433445,150.616454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.450618,150.51593,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050Y,1,FEMALE,occurrenceRemarks withheld,2024,3,11,Australia,AU,New South Wales,-31.453553,152.887821,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.420939,150.62796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.450044,150.516524,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003800,1,,occurrenceRemarks withheld,2023,2,27,Australia,AU,New South Wales,-28.48916,153.022743,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-31.641704,152.79288,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030T,1,,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-28.816543,153.312391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419615,150.61182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.426875,150.604128,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,4,26,Australia,AU,New South Wales,-32.654355,151.789431,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030604,1,,occurrenceRemarks withheld,2024,2,15,Australia,AU,New South Wales,-31.438375,152.894376,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,6,10,Australia,AU,New South Wales,-31.458825,152.925939,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-29.491809,153.097336,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.818579,153.296004,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.392808,150.635758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.50051,150.533343,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,2,19,Australia,AU,New South Wales,-32.766602,152.075901,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-31.631973,152.785866,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.48869,150.634002,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211S,1,,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-32.71168,152.06619,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002777,1,,occurrenceRemarks withheld,2020,12,25,Australia,AU,New South Wales,-29.493011,153.092796,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140Z,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-35.11532,149.926583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.43562,150.520052,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150A,1,,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.028817,151.046331,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-29.490161,153.110522,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-31.474075,152.921206,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-28.822003,153.311298,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,1,1,Australia,AU,New South Wales,-31.902418,152.396884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.43648,150.615856,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.418567,150.602494,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.447604,150.517978,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,20,Australia,AU,New South Wales,-33.71882,150.782343,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2020,4,25,Australia,AU,New South Wales,-29.667271,152.868052,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,1,Australia,AU,New South Wales,-33.710269,150.78449,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-31.918408,152.371095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.436434,150.615814,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-29.667322,152.868576,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,30,Australia,AU,New South Wales,-29.490525,153.109412,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.397072,150.644133,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022605,1,,occurrenceRemarks withheld,2020,2,3,Australia,AU,New South Wales,-31.457695,152.875543,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,3,10,Australia,AU,New South Wales,-33.713632,150.78549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.45519,150.51955,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.46569,150.520741,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,4,27,Australia,AU,New South Wales,-33.716982,150.785077,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,2,28,Australia,AU,New South Wales,-31.94582,152.40417,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001963,1,,occurrenceRemarks withheld,2024,6,6,Australia,AU,New South Wales,-31.906297,152.37748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.420758,150.629804,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.421216,150.627365,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221K,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-32.734244,152.104371,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-31.126545,152.794388,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-32.723591,152.150659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.397777,150.621882,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004111,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.668167,153.517284,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,23,Australia,AU,New South Wales,-28.864644,153.293171,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.84847,152.734049,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,3,30,Australia,AU,New South Wales,-34.099865,150.974029,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.465746,150.52173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.420631,150.630678,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-29.483246,153.104214,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100403,1,,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-32.9383,151.141009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.42378,150.637334,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021510,1,,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-31.933801,152.408726,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,2,Australia,AU,New South Wales,-28.827692,153.297816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.465527,150.521573,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,2,6,Australia,AU,New South Wales,-32.717118,152.072789,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.396905,150.641581,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.438698,150.617686,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.447622,150.51801,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.503633,150.008014,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,18,Australia,AU,New South Wales,-29.490082,153.101086,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.188482,150.787655,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.919974,152.379331,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-31.444233,152.92382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.422941,150.604447,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-30.379498,153.033575,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072703;OLHP23072704,1,,occurrenceRemarks withheld,2023,5,29,Australia,AU,New South Wales,-31.614784,152.187703,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-29.48665,153.102985,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,10,Australia,AU,New South Wales,-33.716972,150.784167,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041A,1,MALE,occurrenceRemarks withheld,2022,7,22,Australia,AU,New South Wales,-29.339964,151.112615,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.444524,153.050306,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.437758,150.517932,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.469972,150.530498,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.541583,150.016902,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427017,150.604962,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-30.425757,153.020649,EPSG:4326 +HUMAN_OBSERVATION,OGEM18052300,1,,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-36.563902,149.999945,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-28.602226,153.405114,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,7,Australia,AU,New South Wales,-28.637097,153.558263,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004198,1,MALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.386418,153.561316,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308240G,1,,occurrenceRemarks withheld,2021,1,9,Australia,AU,New South Wales,-32.661379,152.174456,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190A,1,,occurrenceRemarks withheld,2023,3,4,Australia,AU,New South Wales,-29.484803,153.09619,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,10,16,Australia,AU,New South Wales,-30.506442,152.920826,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003922,1,FEMALE,occurrenceRemarks withheld,2023,1,13,Australia,AU,New South Wales,-28.919792,153.32305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.386177,150.625277,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-29.490586,153.108162,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090400,1,,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-30.89729,153.069149,EPSG:4326 +HUMAN_OBSERVATION,OJJS20072903,1,MALE,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-31.474536,152.917449,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132D,1,MALE,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-36.215154,149.397705,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,27,Australia,AU,New South Wales,-33.716931,150.784139,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-28.68004,153.493926,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.438847,150.603199,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-29.490446,153.109465,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.437855,150.605001,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.469568,150.52658,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.466523,150.52089,EPSG:4326 +HUMAN_OBSERVATION,OMCE97032109,1,,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-30.995047,152.714259,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-31.16157,152.910888,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.465852,150.521607,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-32.710364,152.065031,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.42378,150.637334,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,4,Australia,AU,New South Wales,-33.718161,150.784513,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140Q,1,,occurrenceRemarks withheld,2020,7,13,Australia,AU,New South Wales,-28.66117,152.068778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.455813,150.608678,EPSG:4326 +HUMAN_OBSERVATION,ODFK23111401,1,,occurrenceRemarks withheld,2024,9,4,Australia,AU,New South Wales,-31.571017,152.173488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.438663,150.603922,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-28.65505,153.59019,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,ODFK2307190M,1,,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-29.642428,152.832189,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,4,Australia,AU,New South Wales,-31.465483,152.910582,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,FEMALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-31.442723,152.90105,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,7,10,Australia,AU,New South Wales,-28.626581,153.403554,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-29.489848,153.10137,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-34.111366,150.846603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.446419,150.51378,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,7,Australia,AU,New South Wales,-29.48481,153.103892,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-31.449809,152.899265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.439098,150.515553,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2022,9,9,Australia,AU,New South Wales,-34.46011,150.501264,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.395426,150.629888,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-28.36775,152.980855,EPSG:4326 +HUMAN_OBSERVATION,ODMP22100603,1,,occurrenceRemarks withheld,2022,9,2,Australia,AU,New South Wales,-28.975004,153.29168,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.488083,150.636654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.451398,150.518345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.471437,150.524065,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,7,25,Australia,AU,New South Wales,-31.1201,152.817096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.466152,150.521282,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,10,Australia,AU,New South Wales,-29.490876,153.109267,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.49498,150.609073,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.42796,150.600616,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,29,Australia,AU,New South Wales,-29.48961,153.103961,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.079579,150.80858,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151K,1,,occurrenceRemarks withheld,2022,7,25,Australia,AU,New South Wales,-28.725206,153.458429,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.460307,150.566447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.420463,150.637395,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.053299,150.844695,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-34.125321,150.973524,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041R,1,MALE,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-33.699723,149.543438,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,14,Australia,AU,New South Wales,-29.490521,153.108156,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-29.485594,153.10379,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.420661,150.630862,EPSG:4326 +HUMAN_OBSERVATION,ODMP23033100,1,,occurrenceRemarks withheld,2022,3,10,Australia,AU,New South Wales,-32.78189,151.98565,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,3,8,Australia,AU,New South Wales,-32.5215,151.9266,EPSG:4326 +HUMAN_OBSERVATION,OLHP23120100,1,MALE,occurrenceRemarks withheld,2022,10,,Australia,AU,New South Wales,-31.84213,150.209,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.437752,150.602969,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,5,23,Australia,AU,New South Wales,-28.822665,153.3061,EPSG:4326 +HUMAN_OBSERVATION,BROOS-HO,1,FEMALE,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-33.419281,149.577506,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003864,1,,occurrenceRemarks withheld,2023,2,16,Australia,AU,New South Wales,-28.646094,153.168833,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.389701,150.627994,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-28.938534,153.474256,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,5,6,Australia,AU,New South Wales,-28.999986,153.375627,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030500,1,,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-32.081971,152.317037,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-32.727783,152.078206,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004063,1,FEMALE,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-28.841103,153.397629,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.39988,150.617374,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.419037,150.610401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-34.44009,150.616047,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-31.92265,152.378462,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.46569,150.520719,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66111,153.60863,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,6,21,Australia,AU,New South Wales,-30.505935,152.919597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.433503,150.606507,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2021,12,24,Australia,AU,New South Wales,-31.466614,152.929353,EPSG:4326 +HUMAN_OBSERVATION,OJJS19051305,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-34.262064,150.703546,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-29.489605,153.10387,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-29.485898,153.103613,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.454035,150.520389,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.459257,150.522705,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-36.541583,150.016902,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,,occurrenceRemarks withheld,2023,3,15,Australia,AU,New South Wales,-32.23908,152.19974,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-28.854763,153.391388,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.427655,150.605738,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-28.386921,153.557426,EPSG:4326 +HUMAN_OBSERVATION,OPJG21031205,1,MALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-28.662577,153.423967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419995,150.61008,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-33.431526,150.617368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.43284,150.615492,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-33.713073,150.786123,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004241,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-28.598929,153.090241,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,FEMALE,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-28.82448,153.217935,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,MALE,occurrenceRemarks withheld,2024,5,21,Australia,AU,New South Wales,-28.384228,153.562622,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.386867,150.626453,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-30.230223,152.939111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.452774,150.517303,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,18,Australia,AU,New South Wales,-28.659915,153.610728,EPSG:4326 +HUMAN_OBSERVATION,OJTP21020300,1,,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-28.412855,153.022176,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.390084,150.627776,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-28.843373,153.32037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.432812,150.609911,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.447574,150.517424,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,9,Australia,AU,New South Wales,-33.715673,150.78524,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-33.820504,151.1059,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2024,1,8,Australia,AU,New South Wales,-31.465054,152.924694,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,4,5,Australia,AU,New South Wales,-28.959159,153.39415,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.42012,150.631312,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2020,12,18,Australia,AU,New South Wales,-31.933636,152.415177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.452232,150.523054,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.437515,150.606991,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,24,Australia,AU,New South Wales,-28.864694,153.292797,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.454259,150.60709,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.46375,150.521963,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-29.485566,153.103913,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-28.285215,152.455576,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071101,1,,occurrenceRemarks withheld,2024,5,9,Australia,AU,New South Wales,-32.66973,152.037669,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.452159,150.523862,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.502429,152.871433,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-33.703775,150.786979,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,2,25,Australia,AU,New South Wales,-32.706441,152.063455,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-34.83636,150.0043,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,3,Australia,AU,New South Wales,-33.71759,150.78397,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-28.814645,153.335729,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251Z,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-32.761922,152.079275,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.42183,150.63629,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,6,4,Australia,AU,New South Wales,-28.353694,153.166469,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.491918,150.639148,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,4,11,Australia,AU,New South Wales,-28.819961,153.301101,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.420795,150.630336,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-33.719343,150.78242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.434234,150.616246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.39731,150.646225,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-196,1,MALE,occurrenceRemarks withheld,2024,7,26,Australia,AU,New South Wales,-30.336874,152.887828,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.414057,150.598696,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-31.448047,152.924717,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,7,11,Australia,AU,New South Wales,-29.489918,153.101231,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003931,1,,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-28.646836,153.211583,EPSG:4326 +HUMAN_OBSERVATION,ODFK24012500;ODFK24012501,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-33.686705,150.572354,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.430596,150.610442,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290B,1,,occurrenceRemarks withheld,2023,1,1,Australia,AU,New South Wales,-32.768177,151.761336,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.464993,150.5237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.464578,150.521928,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.42097,150.627698,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-29.490744,153.109479,EPSG:4326 +HUMAN_OBSERVATION,ODMP23033109,1,,occurrenceRemarks withheld,2022,6,13,Australia,AU,New South Wales,-32.66561,151.643511,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,4,18,Australia,AU,New South Wales,-36.59937,149.956884,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,6,Australia,AU,New South Wales,-29.490635,153.109422,EPSG:4326 +HUMAN_OBSERVATION,ODMP22090800,1,MALE,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-28.768784,153.499155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.420272,150.6275,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-28.553626,152.988366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.394844,150.628708,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.457616,150.658954,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.846843,153.314609,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-32.706253,152.063568,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,11,Australia,AU,New South Wales,-29.490488,153.10799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.436208,150.602415,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-29.489591,153.103902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.434201,150.616378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.39963,150.624907,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-30.75059,151.37623,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.38913,150.631098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-34.446777,150.518112,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-30.24445,152.92875,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060503,1,,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-28.838902,153.313836,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.458304,150.659545,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,3,20,Australia,AU,New South Wales,-28.820371,153.295183,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,,occurrenceRemarks withheld,2023,4,6,Australia,AU,New South Wales,-28.960039,153.395158,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032107,1,,occurrenceRemarks withheld,2022,11,6,Australia,AU,New South Wales,-32.73675,152.08889,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110H,1,,occurrenceRemarks withheld,2023,7,4,Australia,AU,New South Wales,-32.687025,151.688296,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-28.384015,153.562037,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-33.491227,149.552169,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.38614,150.625245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.427493,150.603491,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.424511,150.60449,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-28.695364,153.350016,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,24,Australia,AU,New South Wales,-31.460082,152.924362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.437474,150.60487,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-34.272808,150.695053,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081111,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-29.253111,150.147222,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-30.40855,153.006614,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-31.127477,152.801804,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866891,153.343646,EPSG:4326 +HUMAN_OBSERVATION,OPUR15021900,1,,occurrenceRemarks withheld,2022,4,18,Australia,AU,New South Wales,-29.943563,150.640457,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111502,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.056467,150.836748,EPSG:4326 +HUMAN_OBSERVATION,Obs_2557,1,MALE,occurrenceRemarks withheld,2024,9,19,Australia,AU,New South Wales,-33.96871,150.910199,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.420683,150.627315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.431358,150.615294,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.398307,150.6404,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.395872,150.643644,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111323,1,FEMALE,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-31.470976,152.924348,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.427468,150.603557,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150X,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-33.57034,150.6624,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,7,6,Australia,AU,New South Wales,-34.093645,150.98335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.451685,150.51517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.432515,150.603924,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-31.469912,152.923406,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-29.485398,153.103758,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032403,1,,occurrenceRemarks withheld,2024,5,9,Australia,AU,New South Wales,-34.14215,150.79753,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-28.840992,153.290603,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,1,25,Australia,AU,New South Wales,-31.478142,152.922279,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.42692,150.604127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.388941,150.626025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.435771,150.616486,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,4,2,Australia,AU,New South Wales,-31.409201,152.900716,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.447289,150.51802,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071004,1,MALE,occurrenceRemarks withheld,2024,6,9,Australia,AU,New South Wales,-31.934615,152.415013,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,24,Australia,AU,New South Wales,-29.490287,153.108022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.385769,150.62332,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-33.120706,151.235854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.436678,150.608005,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-29.477637,153.104364,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,1,23,Australia,AU,New South Wales,-28.64268,153.625095,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-30.286732,152.609055,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.490917,150.638218,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-28.865241,153.290168,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,HARDING C. Claire,2,,Female and joey; Female and joey;,2021,1,20,Australia,AU,South Australia,-38.03839,140.72486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.437434,150.607015,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-29.702796,152.93857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.437687,150.519284,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,2,18,Australia,AU,New South Wales,-32.58763,151.78344,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.450817,150.515522,EPSG:4326 +HUMAN_OBSERVATION,ODFK23072004,1,,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-32.65154,152.178381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.430515,150.610477,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,3,Australia,AU,New South Wales,-33.717913,150.784923,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.564757,150.015337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,12,Australia,AU,New South Wales,-34.440333,150.616008,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-30.066931,152.250288,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100515,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-31.469112,152.909442,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.438023,150.604365,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.467205,150.521654,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-28.653446,153.454341,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-31.631062,152.787245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.390361,150.62903,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,15,Australia,AU,New South Wales,-28.824641,153.215032,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-31.227627,152.734564,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.464831,150.521485,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.493108,150.639179,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,15,Australia,AU,New South Wales,-28.783596,153.502914,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.3916,150.645112,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022601,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.483861,152.7824,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-31.554983,152.848989,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032110,1,,occurrenceRemarks withheld,2022,11,5,Australia,AU,New South Wales,-32.430089,152.192902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.421374,150.626708,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,11,Australia,AU,New South Wales,-31.439965,152.888426,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.438059,150.604386,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210A,1,,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-32.726441,152.159309,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-29.48989,153.101102,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-31.498368,152.870596,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.178025,152.825467,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.564757,150.015337,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,29,Australia,AU,New South Wales,-29.483311,153.095169,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.431175,150.615169,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-30.24051,152.90626,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290C,1,,occurrenceRemarks withheld,2023,12,29,Australia,AU,New South Wales,-32.055223,151.912715,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436392,150.615957,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,7,24,Australia,AU,New South Wales,-34.04771,150.99578,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-34.086126,150.78278,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-31.542662,152.814383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.38845,150.630933,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-31.459618,152.929128,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-31.85809,152.355785,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-30.338205,153.082144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.453979,150.520293,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003837,1,MALE,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-28.692228,153.494972,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002776,1,,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-29.722728,152.932488,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-31.915481,152.374075,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-31.471095,152.93087,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.43581,150.61618,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-28.890648,153.229493,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.453663,150.517124,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.453921,150.52098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.420432,150.630183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.491724,150.638935,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-28.650602,153.461934,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-28.643366,153.555183,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-31.465411,152.927512,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072601;ODMP2212210O,1,,occurrenceRemarks withheld,2022,5,3,Australia,AU,New South Wales,-28.260267,153.401614,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.471327,150.530654,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,5,11,Australia,AU,New South Wales,-28.823739,153.319334,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,,occurrenceRemarks withheld,2021,2,5,Australia,AU,New South Wales,-33.779934,150.085658,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.45442,150.607488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435536,150.615535,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130D,1,MALE,occurrenceRemarks withheld,2024,4,9,Australia,AU,New South Wales,-31.984607,152.34329,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.42386,150.637299,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-30.332248,152.620848,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081107,1,MALE,occurrenceRemarks withheld,2023,3,2,Australia,AU,New South Wales,-29.54578,150.564273,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.438742,150.617206,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,1,28,Australia,AU,New South Wales,-28.822212,153.311645,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.393253,150.643859,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.633581,149.921178,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131Z,1,,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-30.41503,152.886294,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062101,1,FEMALE,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.771738,146.595606,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-30.41365,153.01326,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2024,3,29,Australia,AU,New South Wales,-31.445598,152.91669,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.417717,150.633382,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,2,21,Australia,AU,New South Wales,-30.89607,153.03635,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-30.351365,152.606717,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.449088,150.516063,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.488048,150.636731,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,7,7,Australia,AU,New South Wales,-31.532597,152.667637,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.388095,150.631182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.435978,150.608624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.463058,150.535458,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,5,Australia,AU,New South Wales,-28.661184,153.240078,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-29.478029,153.104096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.451943,150.51723,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050S,1,,occurrenceRemarks withheld,2023,2,15,Australia,AU,New South Wales,-30.887521,153.071959,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.421385,150.627262,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211D,1,,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-32.71942,151.988171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.389092,150.631002,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.458489,150.661662,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.454116,150.606735,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-30.35981,153.06158,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.448814,150.516735,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.564757,150.015337,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,3,29,Australia,AU,New South Wales,-28.827343,153.317732,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,16,Australia,AU,New South Wales,-33.395509,150.980468,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,28,Australia,AU,New South Wales,-28.820491,153.302334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.447229,150.519045,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.388906,150.62421,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100515,1,,occurrenceRemarks withheld,2023,12,11,Australia,AU,New South Wales,-31.474207,152.900285,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-29.025688,153.29621,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-28.616578,153.403612,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.392698,150.639372,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-28.383891,153.137314,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081108,1,,occurrenceRemarks withheld,2023,4,3,Australia,AU,New South Wales,-28.242042,153.488675,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2020,5,22,Australia,AU,New South Wales,-28.39923,153.31739,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.429467,150.614499,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-28.679393,153.27827,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004259,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.864257,153.283855,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-31.448301,152.877144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.394719,150.643666,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,5,20,Australia,AU,New South Wales,-28.37377,153.141952,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,7,24,Australia,AU,New South Wales,-34.045963,151.004758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.383254,150.623347,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-32.216754,152.192089,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.401097,152.813274,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-31.631388,152.778678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.387785,150.631473,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,22,Australia,AU,New South Wales,-28.611011,153.435922,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004212,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.817309,153.29838,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003943,1,,occurrenceRemarks withheld,2023,2,9,Australia,AU,New South Wales,-28.884592,153.418432,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.419743,150.611469,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090504,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-31.125577,152.791066,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.528059,152.868901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.453759,150.517437,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.465754,150.520315,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,4,23,Australia,AU,New South Wales,-31.469083,152.912519,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-30.17626,152.90776,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-31.649838,152.826247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.428871,150.615398,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,13,Australia,AU,New South Wales,-33.717449,150.784952,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190I,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-28.819153,153.302567,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-31.429839,152.884572,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.554597,149.949397,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.418652,150.633225,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,14,Australia,AU,New South Wales,-29.490203,153.110538,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-29.48241,153.104224,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-34.464136,150.522322,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.488655,150.637334,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,2,14,Australia,AU,New South Wales,-31.636525,152.787407,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.39289,150.632983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-31.453206,152.873582,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,11,Australia,AU,New South Wales,-31.452741,152.925861,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003805,1,,occurrenceRemarks withheld,2023,1,15,Australia,AU,New South Wales,-28.388609,153.558319,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031404,1,,occurrenceRemarks withheld,2024,3,28,Australia,AU,New South Wales,-31.575281,152.81513,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-30.321276,153.085663,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.447593,150.515225,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.394129,150.642518,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.410178,150.59723,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.41895,150.632825,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2020,6,5,Australia,AU,New South Wales,-32.515004,151.735887,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.46657,150.527681,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-31.127211,152.793466,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.435566,150.615218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.390074,150.62819,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.468781,150.519779,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-28.65289,153.544101,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,7,Australia,AU,New South Wales,-29.490245,153.108092,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.070006,150.834857,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002110S,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-33.707279,151.215455,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.443215,150.603869,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-33.706813,150.785679,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.418451,150.633546,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.220759,152.193373,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-30.353773,153.078341,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-28.238698,153.506293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.393426,150.639743,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-34.404651,150.643496,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.432239,150.605488,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-32.736164,152.03103,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-31.453216,152.875157,EPSG:4326 +HUMAN_OBSERVATION,OJJS06031407,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-36.057154,149.273996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.419125,150.609343,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-29.489858,153.103334,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-34.191062,150.791254,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.438689,150.617719,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308250D,1,,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-32.662649,152.173499,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-28.818237,153.334258,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-34.078232,150.839671,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-33.534702,150.668449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.397581,150.622942,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-29.488121,153.092219,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,1,16,Australia,AU,New South Wales,-34.113944,150.938932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.449128,150.516246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.440369,150.604004,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.387373,150.63117,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003978,1,,occurrenceRemarks withheld,2023,5,19,Australia,AU,New South Wales,-28.681335,153.361556,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-29.629872,152.896425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.49152,150.639105,EPSG:4326 +HUMAN_OBSERVATION,ODFK2404120L,1,,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-33.061666,151.484557,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-29.489946,153.110533,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290K,1,MALE,occurrenceRemarks withheld,2024,4,6,Australia,AU,New South Wales,-31.965684,152.398822,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-29.483512,153.094922,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-31.163889,152.861613,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,2,22,Australia,AU,New South Wales,-31.640274,152.792375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.488626,150.635343,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.424738,150.604581,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032901,1,,occurrenceRemarks withheld,2022,10,20,Australia,AU,New South Wales,-32.728543,152.08642,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-31.458934,152.926013,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,FEMALE,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-28.849295,153.307114,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.422477,150.604189,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,8,29,Australia,AU,New South Wales,-30.404135,151.722031,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.438619,150.615937,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-29.490418,153.109363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.469436,150.527205,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.446572,150.518237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.455306,150.659291,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.067894,150.883667,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2024,3,27,Australia,AU,New South Wales,-33.526909,150.658799,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001217,1,,occurrenceRemarks withheld,2020,1,,Australia,AU,New South Wales,-28.719912,153.599259,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.451628,150.517261,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-31.453584,152.880228,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.456586,150.519454,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-34.024433,150.990995,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240Y,1,,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-32.697069,151.694573,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100209,1,FEMALE,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-36.147866,149.369922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.395761,150.626257,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.424427,150.604372,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.451203,150.519439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.44491,150.515838,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052709,1,,occurrenceRemarks withheld,2024,5,19,Australia,AU,New South Wales,-32.710644,152.071143,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003865,1,,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-28.765444,153.497432,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-31.918917,152.377783,EPSG:4326 +HUMAN_OBSERVATION,ODMP22100600,1,MALE,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-34.064221,150.841327,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002777,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-29.492683,153.09341,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082306,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.417341,152.995149,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,22,Australia,AU,New South Wales,-32.706071,152.063513,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-29.478898,153.104181,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100M,1,,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-28.59751,153.476395,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004038,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-28.387433,153.566219,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.560665,152.210166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.439381,150.603314,EPSG:4326 +HUMAN_OBSERVATION,ODLA17110400,1,,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.070322,150.99155,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.862857,153.317651,EPSG:4326 +HUMAN_OBSERVATION,OICG23062200,1,FEMALE,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-29.742754,151.05885,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-31.24248,152.900189,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-29.491179,153.096081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.414288,150.596264,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251Z,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-32.766559,152.045481,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-32.724795,152.073087,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307101O,1,,occurrenceRemarks withheld,2023,6,11,Australia,AU,New South Wales,-29.747449,151.081893,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211V,1,,occurrenceRemarks withheld,2022,10,14,Australia,AU,New South Wales,-32.700928,152.064596,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130R,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-31.45146,152.924036,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.435536,150.615535,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-34.440697,150.516583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.433653,150.616023,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002841,1,,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-29.490404,153.109495,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.420867,150.630323,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.386787,150.62514,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.397004,150.640154,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,5,23,Australia,AU,New South Wales,-32.654093,151.789864,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-30.39268,152.93946,EPSG:4326 +HUMAN_OBSERVATION,ODMP06091900,1,,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-31.450564,152.916571,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.42146,150.627412,EPSG:4326 +HUMAN_OBSERVATION,Obs_2505,1,,occurrenceRemarks withheld,2024,7,17,Australia,AU,New South Wales,-32.69804,151.765371,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-33.439079,150.885195,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,2,14,Australia,AU,New South Wales,-28.637897,153.592011,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.453972,150.520391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.464572,150.521623,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-31.311055,152.245765,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.464386,150.523098,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-29.490404,153.108081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.418384,150.63382,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-32.474492,152.063749,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.42101,150.629764,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070B,1,,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-32.767888,152.036211,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-29.487341,153.090845,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.428813,152.861947,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090408,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-32.655518,151.961297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.425572,150.604329,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-34.031204,150.989618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-34.440072,150.616015,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-31.43032,152.873956,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.447453,150.514555,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062801,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-31.129995,152.860613,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-29.176691,150.182867,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.396813,150.641921,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040U,1,MALE,occurrenceRemarks withheld,2023,6,11,Australia,AU,New South Wales,-30.241763,152.865907,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.139704,150.842405,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041N,1,MALE,occurrenceRemarks withheld,2022,10,10,Australia,AU,New South Wales,-34.078738,150.837478,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.429256,150.616148,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-28.869963,153.200467,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-28.388909,153.54768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.42369,150.637358,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,4,27,Australia,AU,New South Wales,-32.654484,151.788851,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,15,Australia,AU,New South Wales,-31.468878,152.919079,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,7,Australia,AU,New South Wales,-29.490455,153.109438,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,14,Australia,AU,New South Wales,-31.63866,152.794103,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.864597,153.293107,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.650638,153.619751,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.446336,150.513717,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2024,1,23,Australia,AU,New South Wales,-31.644196,152.794574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.447144,150.513106,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091705,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-31.935857,152.411696,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-36.429736,148.729017,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-28.394264,153.557511,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,11,7,Australia,AU,New South Wales,-31.439699,152.890306,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.385605,150.626478,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.420361,150.63025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.430533,150.610454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.454436,150.517939,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.464821,150.522312,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436429,150.520844,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-28.386971,153.561963,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.432075,150.611847,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050O,1,FEMALE,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-28.268443,153.473889,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-36.435679,149.980514,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151M,1,,occurrenceRemarks withheld,2022,10,13,Australia,AU,New South Wales,-28.815709,153.27392,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-28.825805,153.298208,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-31.450512,152.900579,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.460024,150.518721,EPSG:4326 +HUMAN_OBSERVATION,Obs_0165,1,,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-32.322436,149.936104,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-28.656536,153.356805,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041A,1,MALE,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-30.516811,151.517753,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.437082,150.613891,EPSG:4326 +HUMAN_OBSERVATION,SHARM,1,,occurrenceRemarks withheld,2024,9,15,Australia,AU,New South Wales,-32.627779,149.554722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.388888,150.624232,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-30.239132,152.903071,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.469481,150.522294,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.423725,150.637303,EPSG:4326 +HUMAN_OBSERVATION,Obs_2557,1,,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-33.537963,150.632934,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,4,16,Australia,AU,New South Wales,-30.887358,153.071698,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-29.631611,152.899625,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.431877,150.611874,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.427573,150.603412,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,8,4,Australia,AU,New South Wales,-36.554484,149.949575,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-28.623614,153.007423,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,7,1,Australia,AU,New South Wales,-29.490297,153.108146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.461395,150.524547,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-29.770638,150.937814,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODMP06091900,1,MALE,occurrenceRemarks withheld,2022,4,9,Australia,AU,New South Wales,-31.450803,152.916468,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,MALE,occurrenceRemarks withheld,2024,4,24,Australia,AU,New South Wales,-34.022337,150.991951,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-34.39482,150.641912,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.452232,150.523043,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-32.766559,152.045481,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-28.228915,153.489569,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418913,150.632739,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-29.489419,153.101671,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.421527,150.627628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.418296,150.632549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.383913,150.622883,EPSG:4326 +HUMAN_OBSERVATION,OKAJ09082800,1,,occurrenceRemarks withheld,2020,8,9,Australia,AU,New South Wales,-33.614222,150.658547,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.454468,150.515522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.398701,150.621181,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.392748,150.639164,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,5,4,Australia,AU,New South Wales,-34.025143,150.989261,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.632151,149.941399,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290N,1,,occurrenceRemarks withheld,2022,6,30,Australia,AU,New South Wales,-32.709645,152.061381,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,8,29,Australia,AU,New South Wales,-34.158317,150.808166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.427203,150.604783,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.632151,149.941399,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,26,Australia,AU,New South Wales,-28.399509,153.555878,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-32.771982,152.109243,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-31.484327,152.915369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.459961,150.519169,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.436998,150.605439,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,12,6,Australia,AU,New South Wales,-34.068546,150.842335,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,7,1,Australia,AU,New South Wales,-31.45483,152.908804,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.911832,152.819706,EPSG:4326 +HUMAN_OBSERVATION,OPUR15021900,1,,occurrenceRemarks withheld,2020,7,16,Australia,AU,New South Wales,-29.241905,150.752853,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.464317,150.523241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.423824,150.637278,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070U,1,,occurrenceRemarks withheld,2020,12,23,Australia,AU,New South Wales,-28.643659,153.31025,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-31.197644,152.909494,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102500,1,MALE,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.762857,146.603295,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-34.449987,150.526001,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-28.260652,153.402668,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100503,1,,occurrenceRemarks withheld,2024,6,27,Australia,AU,New South Wales,-31.473213,152.924126,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300V,1,,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-32.721793,152.075123,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2024,1,20,Australia,AU,New South Wales,-32.287481,151.828312,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,12,24,Australia,AU,New South Wales,-30.347255,153.08576,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.632151,149.941399,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,MALE,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-28.557078,153.077381,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050V,1,,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-31.536756,152.80737,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-28.676028,153.321075,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.554597,149.949397,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151D,1,FEMALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-29.015679,153.396801,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-28.818305,153.299172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.428949,150.60049,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-28.816675,153.330332,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.388865,150.63091,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.453015,150.52339,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-34.212613,150.788705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.420929,150.630234,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-29.616021,152.240128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.459178,150.521924,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,9,19,Australia,AU,New South Wales,-31.457101,152.908061,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.469646,150.516651,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,FEMALE,occurrenceRemarks withheld,2022,7,19,Australia,AU,New South Wales,-34.536721,150.564483,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.428661,150.600966,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-30.496339,152.978836,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102506,1,MALE,occurrenceRemarks withheld,2024,9,22,Australia,AU,New South Wales,-32.945055,151.545269,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,15,Australia,AU,New South Wales,-36.112977,149.308686,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041400,1,MALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-28.870712,153.26798,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130B,1,MALE,occurrenceRemarks withheld,2023,8,21,Australia,AU,New South Wales,-30.885823,153.071543,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140H,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-32.592053,151.772773,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.459308,150.534556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.442117,150.517727,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,13,Australia,AU,New South Wales,-31.485646,152.91826,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-30.333952,153.055997,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152A,1,,occurrenceRemarks withheld,2022,8,15,Australia,AU,New South Wales,-28.889229,153.22958,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.39451,150.642638,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.454357,150.608415,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.4516,150.517229,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-29.490147,153.110522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.419695,150.609914,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-29.83437,150.844966,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,1,29,Australia,AU,New South Wales,-30.889839,153.068176,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-31.253754,152.797624,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032807;OLHP2310050T,1,,occurrenceRemarks withheld,2022,10,13,Australia,AU,New South Wales,-32.152693,152.357979,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.254577,153.49683,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2023,11,29,Australia,AU,New South Wales,-31.439621,152.884555,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,3,16,Australia,AU,New South Wales,-31.454158,152.925351,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,1,MALE,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-28.626783,153.427718,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.46585,150.522412,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-28.58524,153.553093,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220O,1,,occurrenceRemarks withheld,2024,3,18,Australia,AU,New South Wales,-32.726825,152.104705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.446267,150.51385,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.488542,150.637555,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,22,Australia,AU,New South Wales,-29.489676,153.104702,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,3,29,Australia,AU,New South Wales,-34.757016,146.588358,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-28.697081,153.505378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.488086,150.63587,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-33.717039,150.785298,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-31.650117,152.82672,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-31.447732,152.894418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.430034,150.607999,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100515,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.47366,152.901256,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.491908,150.640019,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,MALE,occurrenceRemarks withheld,2024,6,17,Australia,AU,New South Wales,-31.903308,152.396718,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.450535,150.515835,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.231881,152.200143,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210P,1,,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-32.754239,152.068459,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100209,1,FEMALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-35.992587,149.362018,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503;ODFK23090504,1,,occurrenceRemarks withheld,2023,6,12,Australia,AU,New South Wales,-30.578731,151.717022,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-31.638825,152.793476,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092000,1,,occurrenceRemarks withheld,2023,4,20,Australia,AU,New South Wales,-29.485622,153.103527,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2022,9,5,Australia,AU,New South Wales,-34.11832,150.796911,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.387033,150.631745,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-30.450237,153.048473,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-31.441363,152.883103,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290L,1,,occurrenceRemarks withheld,2022,6,29,Australia,AU,New South Wales,-32.741007,152.090601,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-34.314153,150.725491,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.448123,152.894543,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082307,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.408813,152.996426,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,3,26,Australia,AU,New South Wales,-33.781815,150.105059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.433602,150.616634,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-31.484445,152.915732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.465357,150.520773,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.396613,150.644211,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-34.196052,150.791889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.446721,150.515774,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.464524,150.521907,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004162,1,FEMALE,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.873791,153.279211,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-31.452751,152.925853,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,,occurrenceRemarks withheld,2023,3,31,Australia,AU,New South Wales,-28.959253,153.394305,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-28.644672,153.359672,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202,1,,occurrenceRemarks withheld,2022,3,29,Australia,AU,New South Wales,-30.640537,151.413159,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,26,Australia,AU,New South Wales,-28.639487,153.629155,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003837,1,FEMALE,occurrenceRemarks withheld,2023,1,18,Australia,AU,New South Wales,-28.693798,153.496948,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.447968,150.519469,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.436887,150.606693,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-28.921733,153.469064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.437975,150.604247,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.147792,152.720855,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-31.455063,152.878235,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,4,19,Australia,AU,New South Wales,-29.747273,151.060476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.421221,150.626233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.397284,150.64578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419107,150.610279,EPSG:4326 +HUMAN_OBSERVATION,OJQS16052400,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-30.522309,151.676385,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-31.629219,152.786631,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062902,1,,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-33.562382,149.525568,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-28.904624,153.383996,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-29.489395,153.101773,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,HOBCD-HO;ODMP09041409,1,,occurrenceRemarks withheld,2022,1,28,Australia,AU,New South Wales,-32.313847,151.951824,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,3,10,Australia,AU,New South Wales,-31.455806,152.915131,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121101,1,,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-34.399947,150.485535,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-31.461362,152.820191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.388856,150.630954,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2020,7,24,Australia,AU,New South Wales,-34.091467,150.828382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.423807,150.637355,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.469378,150.527435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.492697,150.638886,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004237,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.92962,153.268421,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-28.660196,153.618086,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,16,Australia,AU,New South Wales,-34.438783,150.616041,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004263,1,,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-28.808055,153.360693,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,2,15,Australia,AU,New South Wales,-32.724694,152.073064,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-32.027673,152.20779,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-33.718742,150.78266,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-29.485576,153.103827,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OPUR18082000,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-31.934865,152.411729,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,MALE,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-34.055548,150.838247,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-29.485702,153.10372,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-31.448372,152.878835,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.439037,150.517438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.449934,150.609542,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-31.455225,152.915126,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140E,1,,occurrenceRemarks withheld,2023,12,28,Australia,AU,New South Wales,-31.255599,152.963712,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052011,1,,occurrenceRemarks withheld,2024,4,16,Australia,AU,New South Wales,-34.061174,150.996267,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,7,Australia,AU,New South Wales,-29.485576,153.103468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.43718,150.613845,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.514707,149.962048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.437535,150.605717,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-36.439844,149.976313,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-36.572676,150.000139,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.434949,150.606694,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.451841,150.518419,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.418434,150.633601,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-28.856616,153.274981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.444734,150.516039,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.466416,150.521841,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-29.82424,150.945366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.426313,150.605809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.452265,150.522868,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,14,Australia,AU,New South Wales,-29.486762,153.097159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.387523,150.631013,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-31.475427,152.896986,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-31.443834,152.899371,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,12,29,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,MALE,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-29.630846,152.899239,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,19,Australia,AU,New South Wales,-29.482933,153.104401,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-29.726753,152.929462,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,MALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.84965,153.307824,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.470439,150.528645,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.492983,150.639227,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-33.71901,150.784123,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.445862,150.517453,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.460307,150.566447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.384051,150.622607,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004280,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.902001,153.209038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.465773,150.52039,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.429687,150.618856,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,7,Australia,AU,New South Wales,-31.448427,152.879351,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-34.117826,150.800086,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-29.490147,153.110302,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-31.466932,152.922663,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-29.490292,153.108167,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-31.455018,152.914608,EPSG:4326 +HUMAN_OBSERVATION,ODMP21083102,1,,occurrenceRemarks withheld,2022,7,5,Australia,AU,New South Wales,-32.243631,150.967967,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.832918,153.589469,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.439237,150.604679,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.397364,150.645756,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310040E,1,MALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-33.124375,151.199524,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,5,9,Australia,AU,New South Wales,-28.912713,153.31657,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.210386,152.962579,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003867,1,,occurrenceRemarks withheld,2023,5,8,Australia,AU,New South Wales,-28.815186,153.317468,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072601;ODMP2212210O,1,,occurrenceRemarks withheld,2022,3,26,Australia,AU,New South Wales,-28.259484,153.402021,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-31.430738,152.895472,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,14,Australia,AU,New South Wales,-28.310977,153.498076,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050X,1,,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-31.468342,152.919622,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-34.464264,150.522427,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-31.437282,152.890106,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.464947,150.525868,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080306,1,FEMALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-31.257938,152.901753,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.446344,150.514098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.457371,150.65932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.494081,150.640535,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.443586,150.515442,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.444772,150.514362,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,7,3,Australia,AU,New South Wales,-32.735437,152.040981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.438967,150.604262,EPSG:4326 +HUMAN_OBSERVATION,ODFK2312070A,1,,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-29.728044,152.926802,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.419046,150.609498,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.435405,150.602819,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-31.642025,152.792919,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-33.492907,149.545615,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-28.814346,153.296605,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132N,1,,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-31.427239,152.897493,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,10,2,Australia,AU,New South Wales,-31.454075,152.924794,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2022,12,22,Australia,AU,New South Wales,-33.491215,149.551968,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.450846,150.515608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.455501,150.520661,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.630911,152.899636,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090503;OLHP23090504,1,FEMALE,occurrenceRemarks withheld,2021,1,19,Australia,AU,New South Wales,-30.494096,152.941748,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-29.490231,153.108178,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-29.485357,153.103857,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-31.464468,152.927602,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2024,2,13,Australia,AU,New South Wales,-29.483498,153.095164,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-28.937798,153.277658,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004245,1,,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-28.618147,153.508004,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.418324,150.632603,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.886464,153.300206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-34.466237,150.522368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.485904,150.634919,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-29.489419,153.102969,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.465614,150.52809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.466586,150.521335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.462275,150.534632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.425708,150.602084,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.420854,150.630552,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2020,7,17,Australia,AU,New South Wales,-29.515065,152.811327,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.449951,150.516353,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-34.429935,150.613083,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032807,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-31.472531,152.831974,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,4,11,Australia,AU,New South Wales,-31.604206,152.803852,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.425636,150.602086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.427202,150.603336,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210N,1,,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-32.716302,152.183721,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.445912,150.514133,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-34.387419,150.529258,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.447869,150.51328,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-29.486407,153.103382,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100404,1,,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-30.48117,151.693592,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,8,Australia,AU,New South Wales,-28.380941,153.561693,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,10,Australia,AU,New South Wales,-31.203566,152.391488,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-28.864665,153.293201,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.420948,150.627057,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-33.539183,149.43508,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031401,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-31.46068,152.928477,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.437976,150.516057,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.420029,150.634502,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.42567,150.602009,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091904,1,,occurrenceRemarks withheld,2024,8,30,Australia,AU,New South Wales,-32.564607,151.974883,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,9,19,Australia,AU,New South Wales,-33.778301,150.062838,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152H,1,,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-28.819384,153.299474,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.437771,150.60718,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012908,1,,occurrenceRemarks withheld,2023,12,5,Australia,AU,New South Wales,-31.454104,152.925143,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.132345,150.795236,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-31.297636,152.864964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.392934,150.632971,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,3,5,Australia,AU,New South Wales,-31.458245,152.910213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.39433,150.630082,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.437076,150.602978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.447296,150.514364,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.465722,150.520511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.393288,150.641019,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,5,24,Australia,AU,New South Wales,-32.654702,151.789246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.417505,150.633116,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-31.430327,152.874028,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-34.514666,150.595561,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-29.728939,152.924545,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-33.774293,150.104524,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.41469,150.59746,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040414,1,MALE,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-29.693116,152.851231,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082806,1,,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-30.172503,152.888795,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,8,Australia,AU,New South Wales,-28.845735,153.576078,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,7,5,Australia,AU,New South Wales,-31.488715,152.908709,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240X,1,,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-32.729647,152.08478,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.453166,150.614827,EPSG:4326 +HUMAN_OBSERVATION,OJJS20020407,1,FEMALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-32.728964,152.106615,EPSG:4326 +HUMAN_OBSERVATION,ODMP21083102,1,,occurrenceRemarks withheld,2022,7,5,Australia,AU,New South Wales,-32.236293,150.960447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.491404,150.639173,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.38969,153.558805,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.460211,150.531972,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.387417,150.631103,EPSG:4326 +HUMAN_OBSERVATION,OJJS17032800,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-31.000351,150.110489,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,1,16,Australia,AU,New South Wales,-29.505144,152.824706,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.449028,150.516619,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,4,21,Australia,AU,New South Wales,-31.970298,152.389131,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-29.490287,153.110243,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-29.48968,153.101301,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,19,Australia,AU,New South Wales,-28.398963,153.555834,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.454436,150.606922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.397066,150.641011,EPSG:4326 +HUMAN_OBSERVATION,Obs_0165,1,,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-32.322436,149.936104,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030L,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-30.610471,151.286033,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.438865,150.60457,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150Q,1,,occurrenceRemarks withheld,2024,1,21,Australia,AU,New South Wales,-32.330298,152.541761,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050S,1,,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-30.885054,153.071024,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,20,Australia,AU,New South Wales,-29.484763,153.095786,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-29.488854,153.101955,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419018,150.610347,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,13,Australia,AU,New South Wales,-29.485548,153.103811,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-31.472569,152.899529,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.431895,150.611895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.387582,150.631229,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.437902,150.605576,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.432634,150.607707,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.350933,150.620818,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-33.318389,151.303696,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-29.354409,150.200421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.488909,150.637861,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004056,1,,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-28.887305,153.226116,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.434894,150.608948,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.436395,150.615173,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,4,16,Australia,AU,New South Wales,-29.489587,153.103854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.437203,150.603953,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.442438,150.518436,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.190155,150.794506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.392972,150.633024,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202241L,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-29.561416,152.959172,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,7,Australia,AU,New South Wales,-29.490105,153.110544,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-28.820356,153.295738,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.420237,150.631287,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.447167,150.519558,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004135,1,,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-28.886731,152.567714,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130W,1,,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-31.947218,152.435797,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-31.370483,152.784233,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-987,1,,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-30.166618,152.728863,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-31.494293,152.87435,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140O,1,FEMALE,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-32.759739,152.103937,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003920,1,MALE,occurrenceRemarks withheld,2023,4,7,Australia,AU,New South Wales,-28.732183,153.434038,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,24,Australia,AU,New South Wales,-29.485095,153.096204,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001927,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-28.663819,153.612458,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083001,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.044639,150.871804,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.420938,150.630234,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-33.717718,150.784244,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,4,3,Australia,AU,New South Wales,-34.124693,150.812345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.455556,150.607946,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.818579,153.296004,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-34.147009,150.794328,EPSG:4326 +HUMAN_OBSERVATION,OPUR15101800,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-30.522373,151.656983,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.542417,152.819577,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081309,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-33.704428,150.291083,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060U,1,,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-31.460091,152.924369,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-31.140276,152.809751,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.457083,150.65984,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-31.469096,152.919619,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.464105,150.52525,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.430386,150.616802,EPSG:4326 +HUMAN_OBSERVATION,OCHV19051300,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-29.691643,152.867666,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-32.706088,152.063299,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.435812,150.615353,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.435144,150.608854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.431271,150.606734,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,17,Australia,AU,New South Wales,-36.067445,149.315401,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110X,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-32.579085,151.812605,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.469624,150.526677,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260E,1,,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-32.737604,152.041034,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-32.34057,151.817463,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050Q,1,,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-34.077732,150.828991,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041303,1,,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-31.944046,152.413281,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.494016,150.640428,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-29.485538,153.103747,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,20,Australia,AU,New South Wales,-34.014382,150.879594,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.436859,150.619121,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-28.868027,153.336688,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.618562,149.923643,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002776,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-29.641626,152.865958,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.727342,152.007748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.420938,150.627003,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-28.738086,153.271913,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.436534,150.520678,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,FEMALE,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-28.846215,153.302464,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-31.630254,152.782715,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190O,1,,occurrenceRemarks withheld,2024,8,7,Australia,AU,New South Wales,-31.950185,152.335517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.43449,150.616424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.424791,150.602687,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004225,1,,occurrenceRemarks withheld,2023,7,20,Australia,AU,New South Wales,-28.524027,153.004046,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003881,1,,occurrenceRemarks withheld,2023,4,4,Australia,AU,New South Wales,-28.827612,153.317755,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,,occurrenceRemarks withheld,2022,6,1,Australia,AU,New South Wales,-31.454751,152.926878,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102104,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-32.710795,152.06153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.386174,150.626527,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457023,150.528148,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,6,16,Australia,AU,New South Wales,-34.011762,150.897103,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,4,24,Australia,AU,New South Wales,-31.909968,152.355432,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.447109,150.513172,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,,occurrenceRemarks withheld,2023,3,20,Australia,AU,New South Wales,-31.81557,152.709367,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.467244,150.520434,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,10,Australia,AU,New South Wales,-34.970239,150.105773,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.421937,150.636189,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-31.482605,152.915736,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,4,25,Australia,AU,New South Wales,-32.654353,151.790104,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-28.74311,153.205077,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003935,1,,occurrenceRemarks withheld,2023,1,13,Australia,AU,New South Wales,-28.637218,153.629643,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,12,Australia,AU,New South Wales,-33.711191,150.786028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418769,150.609146,EPSG:4326 +HUMAN_OBSERVATION,ODMP2302060B,1,,occurrenceRemarks withheld,2024,4,20,Australia,AU,New South Wales,-34.150131,150.825496,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-28.807128,153.341302,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.451442,150.518311,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-29.477207,153.104321,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131O,1,,occurrenceRemarks withheld,2024,2,4,Australia,AU,New South Wales,-31.651665,152.602382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.453789,150.520679,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-32.706407,152.063414,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.919748,152.380618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.421019,150.626979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.458578,150.663488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.464069,150.523924,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251E,1,MALE,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-32.630046,151.704695,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,22,Australia,AU,New South Wales,-31.476751,152.912152,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435989,150.615642,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-34.060984,150.866027,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-29.478688,153.104149,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250K,1,FEMALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-32.739577,152.090012,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.418342,150.632613,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-32.706747,152.063775,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.390065,150.628201,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-32.16053,152.485682,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031407,1,,occurrenceRemarks withheld,2022,1,2,Australia,AU,New South Wales,-28.570297,152.370912,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-31.915428,152.374318,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.464743,150.529172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.458938,150.530116,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.434978,150.603103,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.065877,150.848175,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.387812,150.631484,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-28.385605,153.561545,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-29.480205,153.104262,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,1,25,Australia,AU,New South Wales,-28.416309,153.518454,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,FEMALE,occurrenceRemarks withheld,2024,6,12,Australia,AU,New South Wales,-31.157916,152.897833,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.425671,150.604326,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-28.951803,153.460843,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-34.108288,150.872528,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070F,1,,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-30.40063,152.867388,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-29.634028,150.701879,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-36.503585,149.989088,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-29.060314,153.346803,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.485984,150.634884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.445857,150.513188,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.298453,149.318031,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-34.071525,150.994223,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-29.490147,153.109664,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.396295,150.642186,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,3,24,Australia,AU,New South Wales,-28.724932,153.410278,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,1,3,Australia,AU,New South Wales,-34.121293,150.968763,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.434631,150.616746,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021402,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.646417,152.294656,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.391244,150.644894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.459923,150.519105,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.463037,150.524172,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-29.490665,153.108183,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-29.889732,152.173702,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022604,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.533617,152.704428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.447362,150.514525,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-28.62063,152.983255,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-31.629527,152.785748,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,4,1,Australia,AU,New South Wales,-28.830391,153.217972,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.433028,150.614039,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.397987,150.639691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.427505,150.603643,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.461326,150.524266,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.581514,149.880784,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-34.751612,146.547548,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011008,1,MALE,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-31.464393,152.870644,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.409764,150.597242,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419621,150.611679,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,10,Australia,AU,New South Wales,-29.483507,153.094984,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.447468,150.514402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.449096,150.516432,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.454118,150.520474,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-29.492753,153.109615,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2022,9,22,Australia,AU,New South Wales,-28.851919,153.313984,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.390583,150.626087,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-31.459831,152.925074,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-28.633989,153.484382,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,5,26,Australia,AU,New South Wales,-34.25225,150.73258,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.423766,150.634767,EPSG:4326 +HUMAN_OBSERVATION,OIXR1511120C,1,MALE,occurrenceRemarks withheld,2024,4,3,Australia,AU,New South Wales,-28.556548,153.468753,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.483971,150.492113,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.386689,150.625186,EPSG:4326 +HUMAN_OBSERVATION,Obs_0229,1,MALE,occurrenceRemarks withheld,2024,6,7,Australia,AU,New South Wales,-31.449896,152.927689,EPSG:4326 +HUMAN_OBSERVATION,OPJG19080903,1,,occurrenceRemarks withheld,2024,4,19,Australia,AU,New South Wales,-31.201103,152.745219,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-31.85809,152.355785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.446366,150.517384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.465991,150.508498,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.451371,150.518367,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-34.188134,150.790596,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.393019,150.645279,EPSG:4326 +HUMAN_OBSERVATION,OJJS20072900,1,,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-34.491196,150.470616,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150U,1,,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-28.684339,153.527144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.466516,150.521435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.452053,150.517335,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,6,Australia,AU,New South Wales,-28.830756,153.283318,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.446097,150.517457,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.06142,150.884903,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.432093,150.615567,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.41878,150.609266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.436869,150.606661,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.422682,150.636952,EPSG:4326 +HUMAN_OBSERVATION,OJJS11062906,1,,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-31.463587,152.924717,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.456226,150.606707,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-29.487556,153.110635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.464238,150.522504,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.401325,150.64683,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,2,Australia,AU,New South Wales,-28.876766,153.390153,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.504679,149.957517,EPSG:4326 +HUMAN_OBSERVATION,OPJG15082100,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.484628,152.782367,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.937089,153.316984,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103106,1,,occurrenceRemarks withheld,2023,1,3,Australia,AU,New South Wales,-30.380012,152.734195,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.827832,153.385091,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-34.105583,150.871597,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-29.484165,153.104133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.47255,150.529159,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-32.051029,151.858188,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-31.443116,152.893844,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.447538,150.514324,EPSG:4326 +HUMAN_OBSERVATION,ODMP22111600,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-34.757477,146.565419,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,18,Australia,AU,New South Wales,-28.882773,153.212903,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.418957,150.609555,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.343887,152.604958,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.927624,152.383563,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-33.716936,150.78395,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.464919,150.521362,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.395509,150.642567,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004108,1,,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-28.827651,153.322479,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-31.477482,152.912587,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,23,Australia,AU,New South Wales,-29.490278,153.10997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.459492,150.515624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.420839,150.627941,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.418984,150.609554,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.809858,152.826226,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,25,Australia,AU,New South Wales,-29.480028,153.104122,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,6,Australia,AU,New South Wales,-28.249102,153.480811,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-33.271566,150.285785,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-30.353222,153.079011,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080306,1,MALE,occurrenceRemarks withheld,2022,5,1,Australia,AU,New South Wales,-30.521125,151.519104,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.498724,150.582596,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,6,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.446971,150.513927,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100206,1,MALE,occurrenceRemarks withheld,2022,8,28,Australia,AU,New South Wales,-28.360172,153.553656,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.398169,150.639294,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-33.718216,150.785129,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.430571,150.617036,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-36.447255,149.959252,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OJXR24091300,1,,occurrenceRemarks withheld,2024,9,26,Australia,AU,New South Wales,-32.978968,150.989748,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004230,1,,occurrenceRemarks withheld,2023,8,29,Australia,AU,New South Wales,-28.713379,153.295364,EPSG:4326 +HUMAN_OBSERVATION,OPUR20021302,1,,occurrenceRemarks withheld,2022,9,12,Australia,AU,New South Wales,-31.144825,152.877448,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,1,16,Australia,AU,New South Wales,-28.367331,153.561739,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003826,1,,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-28.809671,153.510417,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.588285,149.913134,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.43816,150.604492,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-28.398935,153.555948,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004143,1,,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-28.631323,153.171154,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,2,6,Australia,AU,New South Wales,-28.697854,153.375193,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-33.767616,150.055885,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-28.960715,153.399865,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002758,1,,occurrenceRemarks withheld,2020,6,28,Australia,AU,New South Wales,-29.487173,153.102888,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101A,1,,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-29.575004,152.80716,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003983,1,,occurrenceRemarks withheld,2023,5,18,Australia,AU,New South Wales,-29.637159,152.770125,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.465734,150.521578,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-30.23931,152.903023,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.51058,152.677467,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-32.100867,152.156411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.393388,150.631239,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030W,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-30.88572,153.07025,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260D,1,,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-28.615442,153.454735,EPSG:4326 +HUMAN_OBSERVATION,CHADL,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-28.943812,153.22336,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-34.042728,150.987011,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.397219,150.639604,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211J,1,,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-32.733376,152.017084,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420091,150.610382,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290W,1,,occurrenceRemarks withheld,2023,3,31,Australia,AU,New South Wales,-31.448774,152.747549,EPSG:4326 +HUMAN_OBSERVATION,OJJS17062707,1,,occurrenceRemarks withheld,2020,4,7,Australia,AU,New South Wales,-32.491055,151.880407,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.469588,150.526678,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100P,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-30.436667,152.832792,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-29.489704,153.101553,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.421147,150.628019,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070H,1,,occurrenceRemarks withheld,2020,3,8,Australia,AU,New South Wales,-32.705541,152.063403,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-29.484371,153.10401,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.444292,152.889349,EPSG:4326 +HUMAN_OBSERVATION,OCMK22081600,1,,occurrenceRemarks withheld,2022,5,10,Australia,AU,New South Wales,-33.228143,151.106083,EPSG:4326 +HUMAN_OBSERVATION,OPJG16091402,1,,occurrenceRemarks withheld,2022,9,2,Australia,AU,New South Wales,-31.796895,152.591196,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.423744,150.637324,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-28.280407,152.472497,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-29.485613,153.103715,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.457674,150.606579,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003814,1,,occurrenceRemarks withheld,2023,3,31,Australia,AU,New South Wales,-28.924929,153.159096,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071101,1,,occurrenceRemarks withheld,2024,5,7,Australia,AU,New South Wales,-32.199624,152.132529,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100H,1,,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-32.578884,151.60505,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.40304,150.641311,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,9,Australia,AU,New South Wales,-28.817008,153.327647,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,29,Australia,AU,New South Wales,-33.710812,150.785087,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,4,20,Australia,AU,New South Wales,-31.326927,152.903765,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419676,150.635372,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003809,1,,occurrenceRemarks withheld,2023,5,18,Australia,AU,New South Wales,-28.819255,153.276354,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-33.772861,150.059246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.421797,150.63739,EPSG:4326 +HUMAN_OBSERVATION,OIXR16111000;OSHD19121001,1,FEMALE,occurrenceRemarks withheld,2023,6,4,Australia,AU,New South Wales,-34.098206,150.808563,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102100,1,,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-32.738386,152.090707,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041C,1,,occurrenceRemarks withheld,2023,4,9,Australia,AU,New South Wales,-29.873659,150.606341,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-32.70907,152.064593,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.951265,153.262628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.420243,150.627414,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-31.936905,152.510302,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.320689,153.463836,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.417722,150.603106,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150L,1,,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-28.817349,153.300295,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,1,11,Australia,AU,New South Wales,-28.2525,153.374722,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-29.01557,153.398066,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.420942,150.627188,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-29.480827,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-31.46395,152.870213,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-29.485632,153.103741,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2023,4,24,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,13,Australia,AU,New South Wales,-28.888959,153.298809,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150U,1,,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-28.693316,153.495403,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-31.63738,152.796852,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,10,Australia,AU,New South Wales,-31.446849,152.893115,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.446425,150.516751,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-33.712535,150.786239,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,10,Australia,AU,New South Wales,-29.490581,153.108162,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.632867,149.949786,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-32.706538,152.063764,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,MALE,occurrenceRemarks withheld,2022,2,22,Australia,AU,New South Wales,-33.12666,151.168349,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,1,3,Australia,AU,New South Wales,-32.096996,152.356581,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435772,150.519993,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.447703,150.517986,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.395302,150.63,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.492981,150.639096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.450882,150.615588,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.467812,150.529353,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.450807,150.520778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.393145,150.645276,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,6,2,Australia,AU,New South Wales,-30.319099,153.089446,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-28.864745,153.292751,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.470958,150.530208,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-29.483904,153.095325,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100604,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-32.592014,152.108516,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-28.695396,153.352187,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100H,1,,occurrenceRemarks withheld,2020,3,3,Australia,AU,New South Wales,-32.67,151.726,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-29.489928,153.101226,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,6,17,Australia,AU,New South Wales,-29.031491,153.413378,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003821,1,,occurrenceRemarks withheld,2023,5,10,Australia,AU,New South Wales,-28.249367,153.479409,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.43763,150.6064,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072703;OLHP23072704,1,MALE,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.626185,152.159378,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-31.545537,152.847035,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-31.442508,152.901014,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.429795,150.599486,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250L,1,,occurrenceRemarks withheld,2024,9,5,Australia,AU,New South Wales,-33.501078,150.740497,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.458722,150.532778,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-31.457231,152.898844,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.451628,150.517239,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-31.124819,152.798537,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.465774,150.520434,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-34.4474,150.49963,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,22,Australia,AU,New South Wales,-28.653446,153.454341,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-30.341332,152.619513,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-28.723846,153.593559,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-30.883362,153.038863,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,29,Australia,AU,New South Wales,-29.484114,153.095421,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,2,6,Australia,AU,New South Wales,-30.325519,152.985504,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.428089,150.600297,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.099795,150.809404,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004272,1,,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-28.875821,153.463046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.393159,150.644155,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-34.452664,150.525047,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222F,1,,occurrenceRemarks withheld,2021,2,11,Australia,AU,New South Wales,-32.71099,152.07169,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011101,1,,occurrenceRemarks withheld,2023,11,25,Australia,AU,New South Wales,-32.777513,152.109985,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.144146,152.808889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.490635,150.638531,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-30.018307,152.245604,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.471262,150.510997,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-30.304266,153.119945,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,8,Australia,AU,New South Wales,-29.486019,153.103554,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-31.948252,152.300422,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260E,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-32.732743,152.040412,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.441425,150.522274,EPSG:4326 +HUMAN_OBSERVATION,OPUR16092100,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-33.533613,149.554836,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,3,Australia,AU,New South Wales,-31.475057,152.897387,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,9,Australia,AU,New South Wales,-33.717274,150.784241,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-32.40466,151.75241,EPSG:4326 +PRESERVED_SPECIMEN,SHARM,1,FEMALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-32.644384,149.558935,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-36.511423,149.969776,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.418965,150.609467,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,26,Australia,AU,New South Wales,-29.48559,153.10379,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,2,21,Australia,AU,New South Wales,-32.632872,151.709585,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004249,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-28.902453,153.25443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.420463,150.637395,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,4,21,Australia,AU,New South Wales,-34.07023,150.84213,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080904,1,,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-28.963656,152.862933,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210I,1,,occurrenceRemarks withheld,2024,2,8,Australia,AU,New South Wales,-32.718442,152.070738,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.45549,150.657621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.446034,150.513052,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,21,Australia,AU,New South Wales,-33.717322,150.784119,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.343024,152.609071,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,4,23,Australia,AU,New South Wales,-29.48559,153.10379,EPSG:4326 +HUMAN_OBSERVATION,OPUR15021900,1,,occurrenceRemarks withheld,2020,3,10,Australia,AU,New South Wales,-29.225616,150.754807,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-28.820206,153.314107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.452033,150.517227,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,,occurrenceRemarks withheld,2022,11,7,Australia,AU,New South Wales,-29.045822,153.395841,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-34.045302,151.009047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.437281,150.605638,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-28.39117,153.562466,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-31.637624,152.810193,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,21,Australia,AU,New South Wales,-33.710998,150.785858,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420206,150.610248,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.394128,150.642475,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.862857,153.317651,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.826957,153.317051,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-34.091113,150.985569,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.447263,150.518968,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250H,1,,occurrenceRemarks withheld,2024,9,18,Australia,AU,New South Wales,-34.101712,150.820986,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-29.490264,153.108205,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.434506,150.616315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-34.442921,150.603594,EPSG:4326 +HUMAN_OBSERVATION,OPJG21031204,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-32.299858,152.219727,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-31.933238,152.415118,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032007,1,,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-32.71075,152.07261,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,MALE,occurrenceRemarks withheld,2023,4,14,Australia,AU,New South Wales,-28.849989,153.320004,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-28.595802,153.474507,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,11,Australia,AU,New South Wales,-30.422497,151.540936,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.728838,152.006494,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,10,18,Australia,AU,New South Wales,-31.632523,152.783997,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-34.114736,150.941027,EPSG:4326 +HUMAN_OBSERVATION,OCEM12101700,1,,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-28.403806,153.450915,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-29.490208,153.108108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.455131,150.658643,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.401275,150.646114,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-31.454114,152.925021,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.452811,150.517345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.447286,150.518771,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.436222,150.615994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.421813,150.636302,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.396303,150.642131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.420702,150.608852,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-31.466249,152.793073,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260E,1,,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-32.737719,152.040591,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2020,4,10,Australia,AU,New South Wales,-29.667173,152.867889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.425106,150.599914,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303200F,1,,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-32.707667,152.067734,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.436003,150.615891,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250L,1,FEMALE,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-32.738096,152.090504,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-29.490287,153.110141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.439145,150.619796,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-29.490465,153.107974,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,10,12,Australia,AU,New South Wales,-28.398653,153.556245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.421234,150.627375,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,6,12,Australia,AU,New South Wales,-31.912724,152.359068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.466314,150.524369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.447314,150.513928,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.418624,150.632736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.425758,150.602354,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.392437,150.633822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.455004,150.600528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.457405,150.518504,EPSG:4326 +HUMAN_OBSERVATION,ODMP22111606,1,,occurrenceRemarks withheld,2023,11,26,Australia,AU,New South Wales,-32.691335,151.70964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.434107,150.615749,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110U,1,,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-31.443163,152.913418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.392898,150.639464,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.825378,152.66622,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.827832,153.385091,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.397533,153.557112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.384465,150.622563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.410207,150.597316,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-34.127969,150.822863,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,7,16,Australia,AU,New South Wales,-30.342885,153.073937,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.488076,150.635815,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-33.712265,150.785987,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-31.644902,152.794065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.446412,150.51834,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2022,1,28,Australia,AU,New South Wales,-28.260319,153.402283,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-31.435751,152.905315,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003871,1,,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-28.78792,153.386455,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,21,Australia,AU,New South Wales,-28.227743,153.488326,EPSG:4326 +HUMAN_OBSERVATION,OPJL98052800,1,,occurrenceRemarks withheld,2022,5,26,Australia,AU,New South Wales,-31.458484,151.486938,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2022,2,15,Australia,AU,New South Wales,-34.177896,150.800651,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-31.459245,152.924908,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-33.991958,150.89266,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,13,Australia,AU,New South Wales,-28.570637,153.553697,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-31.635824,152.715119,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,3,18,Australia,AU,New South Wales,-31.429077,152.894891,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.422654,150.607252,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,19,Australia,AU,New South Wales,-31.464587,152.909933,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100501,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-31.680596,152.698744,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-32.79319,151.677656,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031415,1,,occurrenceRemarks withheld,2021,12,23,Australia,AU,New South Wales,-33.495102,149.557785,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200M,1,,occurrenceRemarks withheld,2024,4,1,Australia,AU,New South Wales,-31.643962,152.800908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.394658,150.635869,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-34.111088,150.81337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.389008,150.626676,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-28.671969,153.608174,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002761,1,MALE,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-29.611382,152.882284,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,13,Australia,AU,New South Wales,-28.399095,153.555912,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.446024,150.513901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.454235,150.605883,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,8,6,Australia,AU,New South Wales,-30.340052,153.041454,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,7,23,Australia,AU,New South Wales,-28.824264,153.318231,EPSG:4326 +HUMAN_OBSERVATION,Obs_2772,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-31.444894,152.905245,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304051H,1,,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-32.484811,151.879593,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-29.488914,153.102427,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.455238,150.519668,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.455135,150.610896,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,8,29,Australia,AU,New South Wales,-34.091163,150.985466,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020703,1,,occurrenceRemarks withheld,2020,5,6,Australia,AU,New South Wales,-30.663598,152.95688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.436816,150.619187,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-29.483787,153.104208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.385403,150.626756,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003926,1,,occurrenceRemarks withheld,2023,6,22,Australia,AU,New South Wales,-28.804061,153.368924,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,9,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030O,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-31.254301,152.966117,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-28.571052,153.554084,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.917372,152.380619,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011014,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-32.732033,152.039598,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-28.697186,153.32387,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.459298,150.523379,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,10,2,Australia,AU,New South Wales,-31.94611,152.565275,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.872021,153.339182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.438703,150.604106,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419063,150.610335,EPSG:4326 +HUMAN_OBSERVATION,ODMP99082301,1,,occurrenceRemarks withheld,2023,6,14,Australia,AU,New South Wales,-31.611749,152.178328,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.491519,150.639039,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,16,Australia,AU,New South Wales,-29.490437,153.107985,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.420617,150.630874,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,22,Australia,AU,New South Wales,-29.490199,153.110517,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2024,2,20,Australia,AU,New South Wales,-31.257735,152.902531,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,4,29,Australia,AU,New South Wales,-33.711585,150.78629,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.177315,149.380098,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2024,2,15,Australia,AU,New South Wales,-30.888051,153.071317,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-31.783109,152.623354,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.479755,150.533247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.427284,150.60478,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.429252,150.606748,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,12,10,Australia,AU,New South Wales,-28.664505,153.454494,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060E,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-32.70257,151.693333,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,22,Australia,AU,New South Wales,-33.703321,150.785303,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,22,Australia,AU,New South Wales,-28.694927,153.568665,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004227,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.794169,153.470723,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.392685,150.639177,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.84847,152.734049,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211O,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-32.525778,151.798213,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,3,2,Australia,AU,New South Wales,-31.477052,152.92404,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.285075,152.873462,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.142364,150.79422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.397753,150.622013,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,1,1,Australia,AU,New South Wales,-32.706556,152.063694,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040410,1,MALE,occurrenceRemarks withheld,2022,7,18,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250J,1,FEMALE,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.762624,146.563259,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-31.915474,152.37407,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-28.723846,153.593559,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,23,Australia,AU,New South Wales,-29.489619,153.104401,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,5,8,Australia,AU,New South Wales,-29.489559,153.103935,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150S,1,,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-31.939705,152.471711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.452473,150.522917,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.446757,150.515805,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150U,1,FEMALE,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-28.693316,153.495403,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.824259,153.297228,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.435481,150.603469,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,20,Australia,AU,New South Wales,-31.629191,152.786811,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-28.822003,153.311298,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101B,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-30.991878,150.251989,EPSG:4326 +HUMAN_OBSERVATION,ODFK23071915,1,,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-29.591198,152.916075,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.390125,150.626187,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.18252,153.002802,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140Q,1,,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-28.651897,152.083327,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110D,1,MALE,occurrenceRemarks withheld,2023,3,20,Australia,AU,New South Wales,-32.640003,151.769263,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290M,1,,occurrenceRemarks withheld,2022,7,14,Australia,AU,New South Wales,-32.708881,152.062354,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-33.774293,150.104524,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.393965,150.641022,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-28.399887,153.556289,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-30.290419,152.699623,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.418957,150.609555,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2023,12,15,Australia,AU,New South Wales,-33.558237,149.553504,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,2,25,Australia,AU,New South Wales,-32.706212,152.063508,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-31.638983,152.793869,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.425285,150.604892,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-32.298705,152.345731,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-29.484782,153.095807,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-32.673976,152.109885,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,2,,2 adults,2020,4,21,Australia,AU,South Australia,-35.02276,138.69847,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-29.490147,153.110538,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.397278,150.645932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.389371,150.623566,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-29.489984,153.101268,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-32.237057,152.190362,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041304,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-31.470757,152.891857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.434997,150.617008,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,6,Australia,AU,New South Wales,-33.713651,150.784737,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,3,13,Australia,AU,New South Wales,-28.887255,153.270137,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,6,28,Australia,AU,New South Wales,-28.553296,153.07678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.418027,150.597952,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-31.454908,152.921975,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.420304,150.611572,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.420226,150.635378,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.953149,153.369052,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-28.958831,153.392913,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,8,15,Australia,AU,New South Wales,-31.447575,152.896393,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-32.706579,152.063831,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-33.718629,150.78299,EPSG:4326 +HUMAN_OBSERVATION,OLHP24013008,1,,occurrenceRemarks withheld,2023,12,5,Australia,AU,New South Wales,-31.469665,152.913748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.388425,150.631488,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.541583,150.016902,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003965,1,,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-28.637745,153.629825,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,MALE,occurrenceRemarks withheld,2022,12,10,Australia,AU,New South Wales,-34.746424,146.534383,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,19,Australia,AU,New South Wales,-32.227629,152.139995,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.399074,153.555716,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.459925,150.519181,EPSG:4326 +HUMAN_OBSERVATION,OLHP2312140G,1,FEMALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-29.721328,150.937899,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2023,6,11,Australia,AU,New South Wales,-29.036902,152.974392,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.388073,150.624484,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.459018,150.659176,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.451758,150.52235,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.438712,150.603682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436265,150.615895,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,1,16,Australia,AU,New South Wales,-34.098742,150.808934,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-29.740683,153.230185,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.439237,150.604679,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-29.490213,153.108038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.400082,150.639882,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.458791,150.525516,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.820088,153.273941,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457064,150.527929,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,7,21,Australia,AU,New South Wales,-32.878295,151.562082,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-29.485795,153.103682,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.085987,150.833136,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070P,1,,occurrenceRemarks withheld,2020,12,21,Australia,AU,New South Wales,-34.75122,146.556337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.462935,150.535146,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-29.489923,153.103366,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-34.191062,150.791254,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303200E,1,,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-32.706407,152.063553,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-28.827647,153.305872,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.450043,150.51647,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,17,Australia,AU,New South Wales,-30.599478,152.908557,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.443497,150.515945,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-34.025735,150.992558,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190H,1,,occurrenceRemarks withheld,2024,9,8,Australia,AU,New South Wales,-32.04018,152.459576,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.418395,150.603413,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251C,1,FEMALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-32.739099,152.059278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.391061,150.645193,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.388882,150.630888,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.393427,150.639776,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,5,Australia,AU,New South Wales,-29.485585,153.1038,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,20,Australia,AU,New South Wales,-28.825824,153.318068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.418914,150.632815,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-29.484338,153.104047,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-29.490297,153.108151,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.445939,150.514143,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100315,1,,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-34.052537,150.846298,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.447587,150.518022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.440293,150.517553,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.465745,150.521654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.451459,150.522283,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.419117,150.610322,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-34.072832,150.858731,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,1,5,Australia,AU,New South Wales,-31.448679,152.893484,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.421781,150.638859,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,30,Australia,AU,New South Wales,-29.490161,153.101156,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,23,Australia,AU,New South Wales,-31.280774,152.861853,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,MALE,occurrenceRemarks withheld,2022,10,13,Australia,AU,New South Wales,-28.827266,153.30453,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.914414,152.385144,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,7,22,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,9,Australia,AU,New South Wales,-29.48552,153.103988,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.233757,149.401731,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,12,2,Australia,AU,New South Wales,-30.514456,151.53657,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.429722,150.614177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.420905,150.630387,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,6,12,Australia,AU,New South Wales,-36.445856,149.967796,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052703,1,,occurrenceRemarks withheld,2024,4,22,Australia,AU,New South Wales,-32.720863,152.080706,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,11,13,Australia,AU,New South Wales,-34.208357,150.788238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.437177,150.518178,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,12,26,Australia,AU,New South Wales,-34.094969,150.961393,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-28.721624,153.529978,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-31.552945,152.852598,EPSG:4326 +HUMAN_OBSERVATION,OJJS17121205,1,,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-33.707222,151.215278,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,5,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.457818,150.525066,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,13,Australia,AU,New South Wales,-29.480406,153.104155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.422112,150.637316,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110U,1,,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-31.452791,152.925859,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.413963,150.640667,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.446392,150.513814,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-31.59445,152.837868,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-33.745837,150.082863,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.941392,153.361038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.433725,150.616957,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.434778,150.608538,EPSG:4326 +HUMAN_OBSERVATION,CAVJ-AGIS,1,,occurrenceRemarks withheld,2021,1,7,Australia,AU,New South Wales,-29.259028,152.987718,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.388961,150.629352,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.429784,150.606722,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2024,2,9,Australia,AU,New South Wales,-31.639655,152.790834,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.426088,150.598004,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,10,22,Australia,AU,New South Wales,-29.631018,152.900022,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-31.444986,152.912254,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-34.40127,150.486,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102104,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-32.699116,152.063986,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-33.704012,150.78712,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-29.489886,153.103323,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-29.394612,153.358845,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.419928,150.602488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.450184,150.518054,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.437976,150.604279,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060W,1,,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-31.45148,152.915163,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.488881,150.637829,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,2,15,Australia,AU,New South Wales,-29.76276,151.1103,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,MALE,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-34.149874,150.823368,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-28.977316,153.306378,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.454167,150.516652,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.494127,150.640566,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-31.13808,150.1308,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.188582,149.267156,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303280B,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-32.748434,152.069221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.395255,150.630382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.447322,150.51433,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404,1,,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-31.766429,152.127017,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,24,Australia,AU,New South Wales,-33.015404,151.577692,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,21,Australia,AU,New South Wales,-28.888756,153.298936,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-28.391207,153.562732,EPSG:4326 +HUMAN_OBSERVATION,OGDO18061300,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-34.4223,150.1443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.447247,150.51418,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260M,1,,occurrenceRemarks withheld,2020,2,6,Australia,AU,New South Wales,-32.737413,152.040803,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.392721,150.639176,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-28.692779,153.605266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.395807,150.626299,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,6,13,Australia,AU,New South Wales,-29.037756,153.401058,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-29.490222,153.108226,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,7,2,Australia,AU,New South Wales,-30.212442,152.797948,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100503,1,,occurrenceRemarks withheld,2024,6,12,Australia,AU,New South Wales,-31.473213,152.924126,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081006,1,,occurrenceRemarks withheld,2023,2,1,Australia,AU,New South Wales,-29.490507,153.108135,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004128,1,FEMALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-29.028428,153.315258,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-36.439844,149.976313,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,FEMALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-32.865166,151.497183,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-31.357274,152.807535,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.475764,150.53294,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-29.705764,152.85216,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-28.911229,153.109884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.419442,150.633083,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.491094,150.638485,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040409,1,,occurrenceRemarks withheld,2024,3,15,Australia,AU,New South Wales,-31.47907,152.872858,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.455731,150.606798,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.418321,150.631972,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-33.705582,150.785503,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.434253,150.617214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.45869,150.525432,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,3,1,Australia,AU,New South Wales,-31.640283,152.791517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.428897,150.614385,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,5,1,Australia,AU,New South Wales,-31.92602,152.21249,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-34.097442,150.8212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.465661,150.520611,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-28.819161,153.297678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.436418,150.516743,EPSG:4326 +HUMAN_OBSERVATION,ODMP06091900,1,MALE,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-31.450779,152.916389,EPSG:4326 +HUMAN_OBSERVATION,ODMP2302060B,1,FEMALE,occurrenceRemarks withheld,2023,1,26,Australia,AU,New South Wales,-34.149966,150.825337,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100G,1,,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-32.671847,151.68942,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.435074,150.606625,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.914468,152.373628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.492886,150.640264,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.452637,150.517242,EPSG:4326 +HUMAN_OBSERVATION,ODFK23121107,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-29.432507,153.16828,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-28.880963,153.400782,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160F,1,,occurrenceRemarks withheld,2022,9,2,Australia,AU,New South Wales,-34.122114,150.795034,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-30.258572,152.816678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.42094,150.627568,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-28.817405,153.303214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.46606,150.521198,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,4,23,Australia,AU,New South Wales,-36.210767,149.327226,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.433993,150.614534,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-31.454121,152.925179,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-31.470441,152.91178,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021507,1,,occurrenceRemarks withheld,2024,5,12,Australia,AU,New South Wales,-30.887048,153.07195,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-29.028217,153.418295,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012505,1,,occurrenceRemarks withheld,2024,2,10,Australia,AU,New South Wales,-31.45156,152.926272,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-31.441289,152.885551,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,19,Australia,AU,New South Wales,-29.485683,153.103741,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,7,26,Australia,AU,New South Wales,-30.506073,152.923276,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-31.918365,152.378218,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-33.717361,150.784153,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-31.458032,152.927735,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.469417,150.527162,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-29.489559,153.103918,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-29.490404,153.109444,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-29.82887,150.85195,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091900,1,,occurrenceRemarks withheld,2024,9,8,Australia,AU,New South Wales,-32.052189,151.99966,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.436915,150.607193,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-32.705896,152.06354,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,6,12,Australia,AU,New South Wales,-28.82068,153.296869,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-34.191103,150.799977,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.425684,150.595796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.446961,150.513851,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-32.079849,151.897949,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031805,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-28.822063,153.311223,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,FEMALE,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-32.733047,152.09001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.431074,150.613714,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.463379,150.53485,EPSG:4326 +HUMAN_OBSERVATION,ODMP06091900,1,,occurrenceRemarks withheld,2022,1,12,Australia,AU,New South Wales,-31.45077,152.916453,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,8,Australia,AU,New South Wales,-31.630036,152.78403,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-34.46681,150.438462,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,22,Australia,AU,New South Wales,-29.490502,153.109353,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102210,1,,occurrenceRemarks withheld,2022,9,17,Australia,AU,New South Wales,-32.710684,152.072367,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0005721,1,MALE,occurrenceRemarks withheld,2024,10,9,Australia,AU,New South Wales,-34.043333,150.863333,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003957,1,,occurrenceRemarks withheld,2023,2,27,Australia,AU,New South Wales,-28.862552,153.230484,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.435733,150.615453,EPSG:4326 +HUMAN_OBSERVATION,OPJG1703020A,1,,occurrenceRemarks withheld,2023,1,24,Australia,AU,New South Wales,-37.368951,149.645843,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-31.51885,152.872849,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070300,1,,occurrenceRemarks withheld,2022,4,27,Australia,AU,New South Wales,-30.442958,152.638022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.444918,150.51845,EPSG:4326 +HUMAN_OBSERVATION,MILJACK-SEF;OJJS21010504;OPJG2208110I;OPJG2208110J,1,MALE,occurrenceRemarks withheld,2022,7,24,Australia,AU,New South Wales,-34.817497,149.894231,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.446076,150.514204,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310040B,1,,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-31.633109,152.754959,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-29.49011,153.110485,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.489341,150.638774,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.418221,150.634749,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.385816,150.627125,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W;ODMP22022523,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-32.487777,152.269498,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-28.846402,153.319916,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.418375,150.63382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.435047,150.606626,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-28.791981,153.35998,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,12,18,Australia,AU,New South Wales,-28.600502,153.443107,EPSG:4326 +HUMAN_OBSERVATION,ODFK24030501,1,,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-32.709247,152.069626,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-29.477077,153.104396,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.418839,150.609971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.462353,150.51888,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,22,Australia,AU,New South Wales,-29.485786,153.103715,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-34.2132,150.786015,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-29.490063,153.101129,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.453561,150.608753,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-28.821266,153.308007,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.420653,150.630873,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060I,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-30.64945,152.978822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.420791,150.609263,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-32.733047,152.09001,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-31.44795,152.923954,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.453092,150.524966,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.421413,150.600966,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-29.490871,153.109304,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,10,Australia,AU,New South Wales,-28.79859,153.293006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,9,Australia,AU,New South Wales,-34.440879,150.615339,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.469403,150.530439,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-28.573914,153.517009,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-31.454129,152.92518,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-31.927828,152.40408,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.295634,149.324348,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-29.483441,153.095228,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,22,Australia,AU,New South Wales,-31.308743,151.204507,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-31.45274,152.925903,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.438012,150.604267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.39014,150.626024,EPSG:4326 +HUMAN_OBSERVATION,OJJS1208150Z,1,MALE,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-32.64283,151.58005,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220O,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-32.72845,152.106292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.445939,150.514143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.438027,150.604126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.432689,150.611927,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,23,Australia,AU,New South Wales,-29.479005,153.104155,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-29.483344,153.095078,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.437158,150.602583,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-31.241904,152.901166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.486303,150.63506,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-33.778358,150.101397,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-29.632963,152.897308,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.434083,150.608493,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.433922,150.61459,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.438639,150.606861,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040701,1,,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-32.66016,151.659967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.464345,150.522435,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-28.398698,153.55592,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-30.17444,152.91095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.447197,150.513072,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.447429,150.518713,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-31.425771,152.89528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.397677,150.62232,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.471195,150.529896,EPSG:4326 +HUMAN_OBSERVATION,OPUR22062301,1,,occurrenceRemarks withheld,2022,9,22,Australia,AU,New South Wales,-33.81592,150.02211,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435535,150.61548,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,2,6,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,1,24,Australia,AU,New South Wales,-31.933122,152.412417,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160B,1,,occurrenceRemarks withheld,2022,10,12,Australia,AU,New South Wales,-33.489095,149.39835,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.421151,150.630065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.432584,150.614868,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.458753,150.525419,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-31.475,152.897389,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-28.632556,153.583401,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.81222,153.313992,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.199908,150.790469,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404,1,,occurrenceRemarks withheld,2020,12,3,Australia,AU,New South Wales,-31.806444,152.432398,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.8543,153.3136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.447204,150.519612,EPSG:4326 +HUMAN_OBSERVATION,OJJT03070100,1,,occurrenceRemarks withheld,2021,1,19,Australia,AU,New South Wales,-30.5006,151.6674,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.423286,150.605025,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050D,1,,occurrenceRemarks withheld,2024,2,3,Australia,AU,New South Wales,-34.199869,150.79047,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-34.337522,150.788111,EPSG:4326 +HUMAN_OBSERVATION,ODFK24030507,1,,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-32.745502,152.170157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.447189,150.51576,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.226267,152.189573,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,7,,Australia,AU,New South Wales,-28.71419,153.599216,EPSG:4326 +HUMAN_OBSERVATION,ODFK24012502,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-33.693449,150.574014,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.389084,150.631078,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-28.394052,153.558648,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.7387,152.060624,EPSG:4326 +HUMAN_OBSERVATION,OPJG18122002,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-30.334939,153.046847,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090405,1,,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-34.068422,150.835214,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-28.83166,153.363078,EPSG:4326 +HUMAN_OBSERVATION,OPJL98052800,1,,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-30.763757,151.407716,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-33.41357,150.70328,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-31.455827,152.92627,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.433812,150.608043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.465745,150.521654,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,8,Australia,AU,New South Wales,-29.485188,153.104149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418843,150.63286,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,3,Australia,AU,New South Wales,-29.49046,153.109417,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.397715,150.62196,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-31.44871,152.901003,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,3,8,Australia,AU,New South Wales,-29.667401,152.867846,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,MALE,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-28.982502,153.415236,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.470755,150.517968,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.466416,150.521394,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,MALE,occurrenceRemarks withheld,2020,8,15,Australia,AU,New South Wales,-32.61947,151.636193,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,22,Australia,AU,New South Wales,-34.437835,150.615513,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.418859,150.632784,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-29.490329,153.115634,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,16,Australia,AU,New South Wales,-33.713862,150.785136,EPSG:4326 +HUMAN_OBSERVATION,OJJS20072903,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-31.474536,152.917449,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-31.555062,152.852001,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-29.477128,153.104348,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.418453,150.63322,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260T,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-32.50174,151.704389,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-29.055106,153.305957,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.488002,150.636656,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-31.91572,152.374927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.454257,150.606981,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,3,15,Australia,AU,New South Wales,-34.488492,150.465425,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,28,Australia,AU,New South Wales,-33.705673,150.785822,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,FEMALE,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-34.073777,150.837381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.418388,150.63358,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090400,1,MALE,occurrenceRemarks withheld,2020,3,23,Australia,AU,New South Wales,-32.732566,152.08772,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,2,,adult with juvenile attached to upper back/neck,2022,1,19,Australia,AU,South Australia,-35.03312,138.6975,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-29.488013,153.09179,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-32.72752,152.005087,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.431618,150.613383,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-28.545817,153.390241,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,6,13,Australia,AU,New South Wales,-32.738418,151.879693,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-28.808536,153.348726,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-31.45123,152.900793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.418904,150.632739,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.186032,150.78931,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.430719,150.610754,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-31.438484,152.898841,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,6,Australia,AU,New South Wales,-28.930196,153.284303,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062101,1,,occurrenceRemarks withheld,2023,4,5,Australia,AU,New South Wales,-34.74133,146.524771,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,4,3,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,4,Australia,AU,New South Wales,-29.489526,153.103951,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210X,1,,occurrenceRemarks withheld,2022,11,12,Australia,AU,New South Wales,-32.706611,152.06318,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.458938,150.530116,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030C,1,FEMALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-35.988681,149.379572,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.476679,152.913896,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003908,1,,occurrenceRemarks withheld,2023,5,28,Australia,AU,New South Wales,-28.755022,152.928777,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2020,7,21,Australia,AU,New South Wales,-32.047128,151.746717,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.427402,150.603885,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419995,150.61008,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.742468,152.098389,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-28.732179,153.434308,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-29.788125,150.94519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.433783,150.607946,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-28.871112,153.40521,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,2,14,Australia,AU,New South Wales,-31.636525,152.787407,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-33.705975,150.785856,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-28.820415,153.302351,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030X,1,,occurrenceRemarks withheld,2022,5,2,Australia,AU,New South Wales,-28.382684,153.562372,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,2,18,Australia,AU,New South Wales,-28.930447,153.329903,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-29.263456,152.950145,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154P,1,MALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-28.678443,153.279451,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022608,1,MALE,occurrenceRemarks withheld,2022,12,9,Australia,AU,New South Wales,-32.511408,151.678884,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-34.455,150.591027,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-31.919628,152.379414,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-33.12962,151.078358,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.426715,150.601467,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,12,9,Australia,AU,New South Wales,-31.456312,152.923393,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-31.922055,152.3804,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-28.923353,153.262924,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180N,1,MALE,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-28.93413,153.27876,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,25,Australia,AU,New South Wales,-33.718643,150.783186,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,6,Australia,AU,New South Wales,-28.650527,153.46202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.452791,150.517259,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.486439,150.6351,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-31.639632,152.793006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.433523,150.6089,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.389673,150.627048,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.420783,150.63014,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.423736,150.63739,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-31.43474,152.907965,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-34.021477,150.985655,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-34.187646,150.724812,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,12,Australia,AU,New South Wales,-29.491048,153.108038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.459176,150.52138,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR16092800;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-28.63691,153.5914,EPSG:4326 +HUMAN_OBSERVATION,ODMP22111601,1,MALE,occurrenceRemarks withheld,2022,10,10,Australia,AU,New South Wales,-33.492389,149.551101,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.422487,150.60841,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.470997,150.530805,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-29.47753,153.10438,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS;ODFK23090501,1,,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-30.433101,151.673575,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.486082,150.634816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.439272,150.604188,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.402395,150.645724,EPSG:4326 +HUMAN_OBSERVATION,OPJG22081702,1,,occurrenceRemarks withheld,2022,6,10,Australia,AU,New South Wales,-31.779181,152.58443,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022604,1,,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-32.178221,152.100617,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.448739,150.517499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.438429,150.604386,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.397831,150.640033,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-34.188134,150.790596,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.463705,150.523771,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,6,5,Australia,AU,New South Wales,-29.692524,152.851464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.462487,150.535312,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,5,17,Australia,AU,New South Wales,-31.594188,152.837904,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.386234,150.625427,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150G,1,FEMALE,occurrenceRemarks withheld,2020,3,28,Australia,AU,New South Wales,-35.096731,150.069922,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-31.442979,152.912288,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,FEMALE,occurrenceRemarks withheld,2020,1,23,Australia,AU,New South Wales,-36.18352,149.35486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.417602,150.633037,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-31.564639,152.834121,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.446087,150.512974,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.69032,153.60237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.437965,150.615694,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020601,1,,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-30.879415,153.072417,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-34.464072,150.52228,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,23,Australia,AU,New South Wales,-28.399149,153.555833,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021302,1,,occurrenceRemarks withheld,2024,1,17,Australia,AU,New South Wales,-32.000786,152.13015,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-29.490483,153.109444,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-30.46086,152.89196,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-32.219628,152.19096,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032108,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-32.643164,151.75781,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-30.52432,152.6077,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-28.549768,153.0686,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-31.2816,152.83195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.390571,150.627306,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.430128,150.607746,EPSG:4326 +HUMAN_OBSERVATION,ODMP21070804;ODMP21070805,1,,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-33.95751,150.9288,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.454469,150.515566,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,20,Australia,AU,New South Wales,-29.48827,153.110211,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.429458,150.614978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.452072,150.51913,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,23,Australia,AU,New South Wales,-31.467465,152.914901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.419374,150.610097,EPSG:4326 +HUMAN_OBSERVATION,OPUR20091102;OPUR20120700,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-31.035875,150.132239,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,18,Australia,AU,New South Wales,-33.775745,150.055423,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-33.717644,150.78393,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.458077,150.659475,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-31.460487,152.895049,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090406,1,,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-30.367375,153.018923,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,1,15,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.467978,150.52063,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-33.143153,151.083517,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,3,9,Australia,AU,New South Wales,-28.930082,153.27718,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-31.91455,152.373741,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.446707,150.51289,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181I,1,,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-28.6031,153.0368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.42116,150.630086,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022522,1,,occurrenceRemarks withheld,2022,12,17,Australia,AU,New South Wales,-32.725425,152.077093,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003941,1,FEMALE,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-28.817001,153.301097,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-30.420348,152.978967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.453789,150.52069,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-32.7691,152.0521,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.453779,150.520625,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100G,1,,occurrenceRemarks withheld,2022,4,26,Australia,AU,New South Wales,-31.186055,152.970215,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,3,23,Australia,AU,New South Wales,-32.732566,152.08772,EPSG:4326 +HUMAN_OBSERVATION,OLHP2312140G,1,,occurrenceRemarks withheld,2022,1,22,Australia,AU,New South Wales,-29.721302,150.937817,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.415973,150.640186,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,23,Australia,AU,New South Wales,-31.467465,152.914901,EPSG:4326 +HUMAN_OBSERVATION,OPJG20061602,1,,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-30.19877,152.77565,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,3,Australia,AU,New South Wales,-29.490838,153.109278,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.29278,149.324725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.383496,150.6237,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,FEMALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-29.353942,150.200496,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-32.48708,152.269144,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-30.332207,153.097071,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,FEMALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-31.440086,152.884774,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,MALE,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-34.017584,150.890427,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-36.024875,149.369011,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,23,Australia,AU,New South Wales,-28.386297,153.561717,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-30.450237,153.048473,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2022,8,13,Australia,AU,New South Wales,-34.09831,150.808614,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866277,153.367822,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-28.868027,153.336688,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,12,25,Australia,AU,New South Wales,-32.706008,152.063606,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.449937,150.520129,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.925329,152.404303,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.466418,150.52417,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.380735,150.537335,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2024,7,19,Australia,AU,New South Wales,-29.651473,150.831486,EPSG:4326 +HUMAN_OBSERVATION,ODMP0311141U;OJKB21080309;OPJG22012500,1,,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-28.51027,153.53859,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-30.240487,153.054871,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021501,1,MALE,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-31.63917,152.79028,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-28.390181,153.563451,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.46484,150.522399,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.14386,150.79408,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-28.601545,153.554996,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100I,1,,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-31.449678,152.8788,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.434537,150.608229,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,26,Australia,AU,New South Wales,-33.716408,150.784953,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.399231,150.639711,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-32.24002,152.20795,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-29.491613,153.099777,EPSG:4326 +HUMAN_OBSERVATION,OPJG20060402,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-32.72114,150.97662,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.453486,150.518207,EPSG:4326 +HUMAN_OBSERVATION,Obs_2557,1,,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-33.495739,150.517224,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020608,1,,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-31.4531,152.91585,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.389904,150.625454,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-32.72247,152.077237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.42237,150.608424,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,FEMALE,occurrenceRemarks withheld,2021,10,12,Australia,AU,New South Wales,-29.354412,150.200462,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-28.386971,153.561963,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041307,1,,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.080942,150.860548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-34.44734,150.51433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.431316,150.615034,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.69032,153.60237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.493035,150.639127,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.720323,152.749335,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.430361,152.994409,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-28.834848,153.286501,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.428855,150.6012,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041Y,1,,occurrenceRemarks withheld,2022,8,18,Australia,AU,New South Wales,-29.7667,151.1166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.421269,150.627309,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-28.98187,153.407895,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-30.6653,152.956,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,21,Australia,AU,New South Wales,-32.2273,152.19331,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,29,Australia,AU,New South Wales,-29.48551,153.103779,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060500,1,,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-28.83683,153.315933,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041R,1,,occurrenceRemarks withheld,2022,7,12,Australia,AU,New South Wales,-33.699723,149.543438,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-34.20866,150.809,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-31.457893,152.928724,EPSG:4326 +HUMAN_OBSERVATION,OLHP23071104,1,,occurrenceRemarks withheld,2023,6,28,Australia,AU,New South Wales,-31.631884,152.77244,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-33.699723,149.543438,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,8,29,Australia,AU,New South Wales,-30.303863,153.105705,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,7,3,Australia,AU,New South Wales,-32.70682,152.06443,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080903,1,,occurrenceRemarks withheld,2021,1,19,Australia,AU,New South Wales,-31.45929,152.862817,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-30.888223,153.070285,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.448267,150.516033,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031525,1,,occurrenceRemarks withheld,2022,9,5,Australia,AU,New South Wales,-28.323277,153.464202,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.581514,149.880784,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090C,1,,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-31.466612,152.92566,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-29.667471,152.868447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.46518,150.521823,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-29.490208,153.10813,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.821668,153.3033,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,3,Australia,AU,New South Wales,-28.817829,153.336451,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-28.693131,153.445905,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.141271,150.82369,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-29.465157,153.116299,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-36.586615,149.920031,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151R,1,,occurrenceRemarks withheld,2022,8,29,Australia,AU,New South Wales,-28.709687,153.45232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.420734,150.609145,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-34.251556,150.793611,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.434917,150.602778,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-28.84707,153.180055,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-31.480956,152.921237,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-33.999016,150.900125,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-29.505494,152.824636,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.437594,150.606869,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-31.126932,152.793635,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-29.48728,153.103082,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152Z,1,,occurrenceRemarks withheld,2022,7,14,Australia,AU,New South Wales,-28.992784,153.291961,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-29.487588,153.103275,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419052,150.610226,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-29.692524,152.851464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.421795,150.636324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.386429,150.625715,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-30.508393,151.665854,EPSG:4326 +HUMAN_OBSERVATION,OIXR16012802,1,,occurrenceRemarks withheld,2022,12,22,Australia,AU,New South Wales,-28.967517,152.990338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.412977,150.597443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-34.466895,150.522338,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.485045,152.874162,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.3881,150.631465,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-28.843373,153.32037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.453541,150.518216,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-30.23703,152.90555,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-33.709455,150.785204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.434448,150.61661,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.453462,150.517446,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.442354,152.90178,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011106,1,,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-32.71298,152.070088,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-28.82292,153.31584,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,25,Australia,AU,New South Wales,-29.485608,153.103774,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-31.445376,152.92565,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-30.2384,152.90497,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-32.769937,151.755685,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.447946,150.517979,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.53509,152.862834,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.450185,152.90604,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121402,1,,occurrenceRemarks withheld,2022,9,18,Australia,AU,New South Wales,-29.934892,152.7273,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.434361,150.615372,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-34.20866,150.809,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,11,26,Australia,AU,New South Wales,-31.439889,152.920256,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.465713,150.521404,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-28.264652,153.472975,EPSG:4326 +HUMAN_OBSERVATION,OJJS20050401,1,,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-31.452139,152.8527,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102501,1,,occurrenceRemarks withheld,2024,9,25,Australia,AU,New South Wales,-34.194318,150.785332,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091709,1,FEMALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-33.993433,150.996969,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-29.662176,152.879262,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270I,1,,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-29.75876,151.718126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-34.497491,150.536525,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.14263,150.79787,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.45773,150.606675,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.409924,150.596693,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,26,Australia,AU,New South Wales,-29.490222,153.108092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.418288,150.632626,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.451986,150.517598,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-33.709609,150.785978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.397622,150.62318,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-28.635618,153.591837,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-29.485949,153.103623,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-29.480883,153.104149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.434479,150.61588,EPSG:4326 +HUMAN_OBSERVATION,OSYK02050800,1,,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-31.6704,152.18685,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-30.4375,152.9814,EPSG:4326 +HUMAN_OBSERVATION,OGEM18052300,1,,occurrenceRemarks withheld,2023,6,19,Australia,AU,New South Wales,-36.579451,149.952618,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-32.722569,152.077015,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.435535,150.615459,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-29.642903,152.829547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.389765,150.628068,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250D,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-32.73736,152.03675,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0006091,1,MALE,occurrenceRemarks withheld,2024,7,22,Australia,AU,New South Wales,-31.431123,152.628617,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100608,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-32.671233,151.726179,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-34.090201,150.9865,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012503,1,,occurrenceRemarks withheld,2023,12,2,Australia,AU,New South Wales,-30.354913,153.073782,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.806282,152.432368,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-29.4882,153.092095,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.821488,153.284492,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004238,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.855525,153.323433,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110L,1,FEMALE,occurrenceRemarks withheld,2023,7,17,Australia,AU,New South Wales,-31.47469,152.86829,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.085723,150.978618,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,20,Australia,AU,New South Wales,-31.458368,152.877853,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033009,1,,occurrenceRemarks withheld,2020,6,24,Australia,AU,New South Wales,-33.132832,151.104205,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-28.666818,153.284266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.450016,150.516481,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.418296,150.632093,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.456596,150.51953,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,5,Australia,AU,New South Wales,-28.574061,153.517213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.46125,150.51961,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.409744,150.534708,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.389793,150.628111,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,27,Australia,AU,New South Wales,-29.490208,153.109755,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.43104,150.61613,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.448852,150.516831,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011014,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-32.732712,152.039439,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.953149,153.369052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.398252,150.645024,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-32.70776,152.063267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.396899,150.64032,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-28.964199,153.402704,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.399065,150.616701,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-31.638231,152.789723,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100Y,1,FEMALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-32.739099,152.059278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.389572,150.62878,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-31.456829,152.891735,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,7,1,Australia,AU,New South Wales,-30.2184,152.793633,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,12,8,Australia,AU,New South Wales,-32.722463,152.077253,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.430211,150.607809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.453689,150.517515,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.399917,150.624388,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-34.185935,150.790799,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,6,27,Australia,AU,New South Wales,-30.4527,152.88866,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.452628,150.523913,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012913,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-32.184185,151.972825,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.420864,150.627842,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-29.492379,153.097637,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,10,Australia,AU,New South Wales,-29.491613,153.099772,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-31.432432,152.893946,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.436381,150.615859,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-31.443561,152.905268,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,22,Australia,AU,New South Wales,-29.485258,153.103967,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-31.459395,152.924902,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181T,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-28.735249,153.591395,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.465599,150.520689,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-31.452685,152.835793,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-34.140359,150.792747,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,MALE,occurrenceRemarks withheld,2023,1,26,Australia,AU,New South Wales,-28.822705,153.301913,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040700,1,,occurrenceRemarks withheld,2020,12,16,Australia,AU,New South Wales,-28.817277,153.327443,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLHP2407120H,1,,occurrenceRemarks withheld,2024,6,14,Australia,AU,New South Wales,-33.734898,150.645921,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081105,1,FEMALE,occurrenceRemarks withheld,2022,12,5,Australia,AU,New South Wales,-34,151,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,6,26,Australia,AU,New South Wales,-31.642022,152.698567,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.493126,150.639157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435837,150.602795,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251J,1,FEMALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-32.722008,152.077829,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,13,Australia,AU,New South Wales,-28.864618,153.293478,EPSG:4326 +HUMAN_OBSERVATION,ODFK24030600,1,,occurrenceRemarks withheld,2024,2,27,Australia,AU,New South Wales,-32.707195,152.066656,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-31.445964,152.918428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.418535,150.632782,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-33.145008,151.069305,EPSG:4326 +HUMAN_OBSERVATION,ODMP21041902,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-30.554671,152.65413,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.431472,150.615161,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.471213,150.529895,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-30.38978,152.9433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.446412,150.51834,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,9,1,Australia,AU,New South Wales,-29.631816,152.898617,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,28,Australia,AU,New South Wales,-30.39093,152.94379,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,8,Australia,AU,New South Wales,-29.489162,153.103269,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.464264,150.522427,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,21,Australia,AU,New South Wales,-31.632454,152.785356,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-31.457063,152.905243,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-29.808086,152.811234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.451858,150.51794,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.419037,150.604874,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-31.945277,152.298145,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.411625,150.596068,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.184528,153.003034,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,4,26,Australia,AU,New South Wales,-34.02535,150.97938,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.446758,150.516741,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.385349,150.626725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.437719,150.61606,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.29802,149.321901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.390359,150.629378,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,,occurrenceRemarks withheld,2024,4,1,Australia,AU,New South Wales,-34.025907,150.990071,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.454193,150.595958,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,27,Australia,AU,New South Wales,-29.490278,153.108178,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.447555,150.514225,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090U,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-32.646794,152.031308,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,4,9,Australia,AU,New South Wales,-30.887293,153.071657,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.445861,150.514711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.433665,150.606959,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.68121,153.60155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.434307,150.617234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.419167,150.609211,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.581514,149.880784,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.420404,150.627355,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.491313,150.639089,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.465347,150.521622,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.447299,150.520305,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-28.249959,153.372792,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.435978,150.520401,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-30.36024,153.06102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.453466,150.518099,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.418982,150.610337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.423808,150.605413,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.42132,150.626698,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304170E,1,MALE,occurrenceRemarks withheld,2022,12,10,Australia,AU,New South Wales,-34.062606,150.84221,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-30.333952,153.055997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-34.437397,150.615689,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180M,1,FEMALE,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-28.889174,153.229691,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140Q,1,,occurrenceRemarks withheld,2022,12,11,Australia,AU,New South Wales,-28.924752,153.159047,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-32.706988,151.793304,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866277,153.367822,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.417576,150.63307,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.42773,150.604964,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-32.235407,152.19328,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-34.141271,150.82369,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-31.642221,152.792895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.454009,150.662658,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031806,1,,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-28.888568,153.299604,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,ODMP10100606,1,,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-34.188134,150.790596,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.080193,150.849941,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457691,150.531284,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-31.435448,152.922814,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,7,9,Australia,AU,New South Wales,-31.425029,152.875973,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,12,4,Australia,AU,New South Wales,-28.819938,153.302555,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.432178,150.612975,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.453583,150.51988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.427402,150.602982,EPSG:4326 +HUMAN_OBSERVATION,HILA,1,,occurrenceRemarks withheld,2023,3,5,Australia,AU,New South Wales,-31.598374,152.764317,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041307,1,FEMALE,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-34.080527,150.848835,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,2,21,Australia,AU,New South Wales,-29.490675,153.099246,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,10,2,Australia,AU,New South Wales,-28.824162,153.19115,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.396822,150.641943,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041402,1,,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-31.896106,151.770239,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-33.717285,150.784282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.465527,150.5256,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-36.447255,149.959252,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003970,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-28.81768,153.07297,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151F,1,,occurrenceRemarks withheld,2022,9,15,Australia,AU,New South Wales,-28.386826,153.562668,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100209,1,FEMALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-35.988571,149.328896,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-31.52176,152.724004,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.394532,150.630294,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,11,14,Australia,AU,New South Wales,-31.920613,152.318115,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.146302,150.790385,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.19933,150.79088,EPSG:4326 +HUMAN_OBSERVATION,ODFK2404260E,1,,occurrenceRemarks withheld,2024,3,29,Australia,AU,New South Wales,-32.302205,152.337832,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.298767,149.319781,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-31.923715,152.383632,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,13,Australia,AU,New South Wales,-29.487238,153.090797,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23040505,1,,occurrenceRemarks withheld,2023,5,14,Australia,AU,New South Wales,-32.403422,149.761113,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,FEMALE,occurrenceRemarks withheld,2020,12,27,Australia,AU,New South Wales,-32.738085,152.111973,EPSG:4326 +HUMAN_OBSERVATION,OPUR16032300,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.514409,150.666695,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.436875,150.603756,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,8,27,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022418,1,,occurrenceRemarks withheld,2022,2,9,Australia,AU,New South Wales,-32.7498,152.168799,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2023,4,15,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031512,1,,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-28.93243,153.278736,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,1,5,Australia,AU,New South Wales,-30.50636,152.9262,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-31.442328,152.891714,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-28.395703,153.55779,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.420398,150.635406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.454002,150.520945,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-28.816073,153.306593,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.387408,150.631093,EPSG:4326 +HUMAN_OBSERVATION,OPUR21080904,1,,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-29.5427,150.57289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.389238,150.628768,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-28.414391,153.555591,EPSG:4326 +HUMAN_OBSERVATION,CAVJ-AGIS,1,,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-29.488475,153.094617,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,2,15,Australia,AU,New South Wales,-31.465801,152.927064,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.680336,149.96634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.457901,150.526076,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153Z,1,,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-28.818643,153.311244,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-29.479454,153.104063,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,ODFK24030603,1,,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-32.727628,152.005331,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031415,1,,occurrenceRemarks withheld,2023,2,25,Australia,AU,New South Wales,-33.494935,149.557978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.43955,150.619338,EPSG:4326 +HUMAN_OBSERVATION,ODMP21083102,1,,occurrenceRemarks withheld,2022,7,5,Australia,AU,New South Wales,-32.232696,150.956378,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020200,1,FEMALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-32.557297,151.764118,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,,occurrenceRemarks withheld,2024,6,29,Australia,AU,New South Wales,-31.94673,152.299058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.466302,150.524249,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-32.237057,152.190362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.395699,150.636993,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,11,23,Australia,AU,New South Wales,-34.092286,150.982931,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001217,1,,occurrenceRemarks withheld,2021,12,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.43017,150.613087,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.380292,152.755272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.390306,150.62901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.462023,150.523973,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.397275,150.622951,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.442078,150.518436,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.465721,150.521382,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.018885,150.964623,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.494025,150.640439,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,7,Australia,AU,New South Wales,-33.708055,150.784778,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083002,1,,occurrenceRemarks withheld,2022,4,22,Australia,AU,New South Wales,-34.069476,150.834685,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.452861,150.525158,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.592167,153.263242,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-33.70624,150.786219,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.453584,150.524353,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.445916,150.513001,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.811037,152.82374,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-28.672704,153.556318,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,2,19,Australia,AU,New South Wales,-29.020219,153.429857,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,13,Australia,AU,New South Wales,-33.717289,150.784214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.465793,150.520466,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-28.387756,153.558084,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.459926,150.52545,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-34.396821,150.650774,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151D,1,MALE,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-29.019887,153.394231,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,16,Australia,AU,New South Wales,-31.154008,152.979415,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102104,1,,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-32.710795,152.06153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.390102,150.627319,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-29.488466,153.103586,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.427018,150.59764,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-31.553362,152.854037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.388856,150.630932,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.488077,150.519407,EPSG:4326 +HUMAN_OBSERVATION,OPJG20060401,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-28.30651,153.55964,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150N,1,FEMALE,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-28.39301,153.567207,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.400091,150.639893,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,8,Australia,AU,New South Wales,-29.490609,153.109331,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,6,19,Australia,AU,New South Wales,-34.03451,151.02698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.386447,150.630848,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-31.42526,152.874981,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,2,Australia,AU,New South Wales,-32.706114,152.063595,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-28.469302,153.042946,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.491467,150.63916,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,13,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,FEMALE,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-28.849837,153.315736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.447532,150.517534,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.45873,150.532745,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-31.156814,152.559854,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-32.705809,152.063523,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,6,Australia,AU,New South Wales,-29.480794,153.104074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.462133,150.534734,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-28.848406,153.303098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.42954,150.616848,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,6,7,Australia,AU,New South Wales,-33.382404,150.780718,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-33.713905,150.785484,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.396294,150.642121,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.937089,153.316984,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.488348,150.635448,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.429784,150.606722,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.937089,153.316984,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,25,Australia,AU,New South Wales,-28.984278,153.410497,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.45977,150.51912,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.420967,150.627546,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,7,23,Australia,AU,New South Wales,-34.01848,150.884927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.394478,150.629806,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140X,1,,occurrenceRemarks withheld,2023,2,26,Australia,AU,New South Wales,-31.442053,152.901508,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-31.943285,152.471384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.442141,150.517977,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,15,Australia,AU,New South Wales,-28.888915,153.186783,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.396984,150.640056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.437279,150.518741,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-29.480056,153.104286,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-31.465101,152.924749,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907171A,1,MALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-29.707235,152.879562,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003956,1,,occurrenceRemarks withheld,2023,1,24,Australia,AU,New South Wales,-28.822664,153.302425,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-30.89503,152.994981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.423837,150.637485,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021304,1,,occurrenceRemarks withheld,2024,1,21,Australia,AU,New South Wales,-32.329916,152.541567,EPSG:4326 +HUMAN_OBSERVATION,ODFK23122105,1,FEMALE,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-34.337539,150.448399,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260O,1,FEMALE,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-31.576445,149.333385,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-31.443058,152.8933,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110U,1,,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-31.449071,152.926061,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.453074,150.517457,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151D,1,MALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-29.015679,153.396801,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.44683,150.520265,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,4,24,Australia,AU,New South Wales,-36.313388,149.341446,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.419193,150.603608,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-31.423978,152.881757,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-28.826036,153.304436,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-28.834841,153.321546,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.395124,150.6292,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,FEMALE,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-28.847242,153.296921,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.45923,150.521367,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-29.490222,153.108221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.480023,150.534045,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,1,25,Australia,AU,New South Wales,-31.923129,152.37104,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-31.10181,150.11597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.453843,150.520656,EPSG:4326 +HUMAN_OBSERVATION,OLHP2312140E,1,MALE,occurrenceRemarks withheld,2022,4,6,Australia,AU,New South Wales,-30.47619,152.969466,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-29.485489,153.103822,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-31.439288,152.92219,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-28.818531,153.28003,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-29.485655,153.103741,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436377,150.616088,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-32.837813,151.481504,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,30,Australia,AU,New South Wales,-28.823763,153.320895,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,12,28,Australia,AU,New South Wales,-29.935354,152.228038,EPSG:4326 +HUMAN_OBSERVATION,ODMP23033106,1,,occurrenceRemarks withheld,2022,4,26,Australia,AU,New South Wales,-32.582565,151.815261,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.445671,150.513835,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-31.485835,152.916183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.388611,150.629438,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,2,Australia,AU,New South Wales,-31.470262,152.930242,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,1,19,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,6,Australia,AU,New South Wales,-33.714183,150.78569,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-29.489503,153.101596,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,20,Australia,AU,New South Wales,-34.440655,150.615422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.436376,150.609592,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.384564,150.622517,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040422,1,,occurrenceRemarks withheld,2023,5,13,Australia,AU,New South Wales,-31.093492,150.929799,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-30.210155,152.749191,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-28.661989,153.479463,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,21,Australia,AU,New South Wales,-32.298753,152.017104,EPSG:4326 +HUMAN_OBSERVATION,OJJS10032403,1,,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-28.26577,153.413761,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,25,Australia,AU,New South Wales,-29.489605,153.103913,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-31.435643,152.905042,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.383655,150.623097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.433124,150.607421,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.420643,150.630862,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-32.65447,151.7905,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.466619,150.520289,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,7,16,Australia,AU,New South Wales,-31.444996,152.915024,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,FEMALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-28.257722,153.401999,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.564757,150.015337,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.68121,153.60155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.435517,150.603501,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.447545,150.515064,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004015,1,,occurrenceRemarks withheld,2023,9,8,Australia,AU,New South Wales,-28.489326,153.022552,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-34.447321,150.51383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.440435,150.603252,EPSG:4326 +HUMAN_OBSERVATION,ODMP06092700;OJJS17062707;OJJS20041402,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-32.531311,151.857833,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.4514,150.604277,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.417098,150.597043,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140G,1,,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-28.30386,153.38036,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-31.439779,152.922916,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,7,21,Australia,AU,New South Wales,-34.015286,150.883632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.434473,150.606817,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190I,1,,occurrenceRemarks withheld,2023,1,28,Australia,AU,New South Wales,-28.820343,153.302121,EPSG:4326 +HUMAN_OBSERVATION,ODMP22070800,1,FEMALE,occurrenceRemarks withheld,2022,10,12,Australia,AU,New South Wales,-31.460622,152.921887,EPSG:4326 +HUMAN_OBSERVATION,OIXR14091500;OJJS19102104,1,,occurrenceRemarks withheld,2020,3,25,Australia,AU,New South Wales,-31.077054,150.09752,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.862857,153.317651,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.165437,149.368535,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.385822,150.62508,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-31.425909,152.220048,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-33.711249,150.785517,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-34.04522,151.008863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.387391,150.631147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.42068,150.630872,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300N,1,,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-32.728237,152.080111,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-34.017297,150.886215,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-303;SFOBS-714;OPJG16032900;OPJG22022105,1,,occurrenceRemarks withheld,2024,7,11,Australia,AU,New South Wales,-31.952018,152.424173,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-31.125374,152.807472,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021803,1,,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-29.36183,150.113584,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,6,30,Australia,AU,New South Wales,-31.442348,152.918821,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS20051106,1,,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-29.375474,151.344408,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.454743,150.520618,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.440244,150.517369,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.820088,153.273941,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-31.402427,152.872881,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,7,6,Australia,AU,New South Wales,-28.400484,153.557,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-33.714273,150.78583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.427715,150.600971,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,4,27,Australia,AU,New South Wales,-31.272867,150.456297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.451735,150.522536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.436523,150.615278,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,15,Australia,AU,New South Wales,-29.489923,153.101263,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.423825,150.637344,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.469955,150.530575,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.418409,150.633743,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-29.43722,150.91555,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-29.489694,153.101478,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-29.484292,153.104015,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090B,1,,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-30.631245,151.521034,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-31.492498,152.837072,EPSG:4326 +HUMAN_OBSERVATION,ODLC98101500,1,,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-28.350224,152.963266,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,5,Australia,AU,New South Wales,-29.490441,153.108108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.425812,150.602353,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.471066,150.531097,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-33.713821,150.785637,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-28.236784,153.501758,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-28.949727,153.425736,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-31.431129,152.872676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.388882,150.630855,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.452565,150.51991,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.429485,150.616795,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-31.948252,152.300422,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-28.944235,153.448053,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,20,Australia,AU,New South Wales,-29.478987,153.104187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.451991,150.517391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.446311,150.513805,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2023,3,8,Australia,AU,New South Wales,-30.246236,152.869286,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.419167,150.609211,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.429488,150.610027,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.446685,150.515796,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100317,1,MALE,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-31.42495,152.610808,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.466087,150.522068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.435177,150.616992,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-31.473876,152.900474,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.494113,150.640305,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-28.286772,153.560416,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091705,1,MALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-31.935808,152.413847,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OMFZ23033002;ODFK24051300,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-33.251654,150.887239,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.447109,150.515827,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.418946,150.609446,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.43355,150.610325,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-34.190649,150.790463,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.129807,150.978729,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.10852,150.82075,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-31.477808,152.892385,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-31.434539,152.910248,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.385818,150.627223,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.466534,150.52766,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,28,Australia,AU,New South Wales,-30.221438,151.626968,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.456482,150.519653,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.43224,150.605575,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.400503,150.624361,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,11,Australia,AU,New South Wales,-31.439244,152.891245,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.69032,153.60237,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,3,21,Australia,AU,New South Wales,-31.437715,152.905732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.436013,150.602127,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,20,Australia,AU,New South Wales,-29.490525,153.109422,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041C,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-29.762752,151.110282,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,4,28,Australia,AU,New South Wales,-33.774415,150.060153,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150V,1,FEMALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.083125,150.99898,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.711089,152.065787,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.396462,150.644313,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.447818,150.517004,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-31.256856,152.743408,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.469483,150.526822,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,15,Australia,AU,New South Wales,-33.717296,150.784248,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003884,1,,occurrenceRemarks withheld,2023,5,9,Australia,AU,New South Wales,-29.018522,153.42593,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.443176,150.517457,EPSG:4326 +HUMAN_OBSERVATION,SCHM-035,1,,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.351266,150.616794,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.426292,150.605211,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-30.256304,152.81478,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.421539,150.637539,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021306,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.478594,152.915587,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.444415,150.519009,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-28.819981,153.320406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.446927,150.520175,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.420266,150.627196,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051402,1,,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-30.194587,152.773135,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,3,25,Australia,AU,New South Wales,-33.778642,150.057818,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.38615,150.624331,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,5,24,Australia,AU,New South Wales,-29.184276,153.003753,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.435126,150.606548,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040418,1,,occurrenceRemarks withheld,2022,9,2,Australia,AU,New South Wales,-34.188134,150.790596,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090406,1,,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.367369,153.018937,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-29.47982,153.104208,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-33.779357,150.101352,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.465927,150.521289,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-29.631666,152.899894,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-880,1,,occurrenceRemarks withheld,2021,1,3,Australia,AU,New South Wales,-30.298272,153.121061,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-29.030705,152.9863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.457818,150.525066,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-29.49003,153.108746,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-30.275314,152.916677,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-29.490231,153.108119,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-36.255228,149.428728,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.454497,150.515598,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.418205,150.632019,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.421315,150.627362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.395553,150.642533,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-29.480135,153.10424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.435996,150.616425,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-223,1,,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-31.743645,152.057923,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,FEMALE,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-34.05565,150.838797,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801101C,1,FEMALE,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-32.73161,152.15365,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-29.485636,153.103784,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,10,Australia,AU,New South Wales,-29.4901,153.10747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.397207,150.646489,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.469357,150.516605,EPSG:4326 +HUMAN_OBSERVATION,OPJG22120100,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.801777,152.435797,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.56082,152.210153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.396276,150.642132,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,6,Australia,AU,New South Wales,-31.453544,152.921258,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.810468,152.823679,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083003,1,,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-31.148049,152.911125,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-31.461028,152.89647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.443901,150.51453,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-31.63003,152.784427,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,5,26,Australia,AU,New South Wales,-33.777303,150.056482,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,3,17,Australia,AU,New South Wales,-28.870998,153.361561,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002758,1,,occurrenceRemarks withheld,2020,6,28,Australia,AU,New South Wales,-29.488209,153.102194,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.428314,150.604435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.491675,150.639176,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.445749,153.050376,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.420604,150.630678,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-31.447944,152.925723,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,26,Australia,AU,New South Wales,-28.806874,153.340398,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-28.62669,153.48144,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,19,Australia,AU,New South Wales,-31.470525,152.921734,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090406,1,,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-30.364627,153.018977,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130B,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-30.885823,153.071543,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061004,1,,occurrenceRemarks withheld,2020,6,29,Australia,AU,New South Wales,-30.217223,152.797106,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-34.047642,150.992085,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-28.720572,153.394041,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303310D,1,,occurrenceRemarks withheld,2023,6,14,Australia,AU,New South Wales,-28.588488,153.523716,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-31.448871,152.879994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.45249,150.522883,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.424649,150.604649,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-34.143607,150.813707,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050C,1,,occurrenceRemarks withheld,2024,2,11,Australia,AU,New South Wales,-31.451861,152.926349,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.411301,150.596578,EPSG:4326 +HUMAN_OBSERVATION,ODFK23111401,1,,occurrenceRemarks withheld,2024,9,4,Australia,AU,New South Wales,-31.571542,152.173684,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-36.341292,149.475275,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-31.426223,152.711236,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2020,12,25,Australia,AU,New South Wales,-31.465885,152.819297,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-29.48982,153.101773,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022414,1,,occurrenceRemarks withheld,2022,11,6,Australia,AU,New South Wales,-32.700472,152.185284,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,3,8,Australia,AU,New South Wales,-34.09331,150.989532,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-31.160261,152.820431,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,MALE,occurrenceRemarks withheld,2022,6,1,Australia,AU,New South Wales,-31.454481,152.926404,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.390195,153.561418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.395308,150.630315,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,4,21,Australia,AU,New South Wales,-31.965174,152.394269,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-29.490395,153.108237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.42707,150.60396,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-28.649902,153.304202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.392767,150.635988,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290N,1,,occurrenceRemarks withheld,2022,7,3,Australia,AU,New South Wales,-32.709627,152.061357,EPSG:4326 +HUMAN_OBSERVATION,OJJT03070100,1,,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-30.9833,151.6,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-30.665874,152.884757,EPSG:4326 +HUMAN_OBSERVATION,OPJG22081702,1,,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-31.809272,152.441467,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,MALE,occurrenceRemarks withheld,2023,7,26,Australia,AU,New South Wales,-28.821494,153.299472,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-33.718874,150.782691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.469316,150.526599,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,10,Australia,AU,New South Wales,-29.479561,153.104224,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.448768,150.515844,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-31.28018,152.831,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.554597,149.949397,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-28.388545,153.557532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.434234,150.616246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.434012,150.608549,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-29.66694,152.868125,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041Q,1,MALE,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-34.016936,150.980951,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866277,153.367822,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-28.844361,153.302823,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.421005,150.627675,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-31.432296,152.893924,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.446397,150.514064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.424555,150.604445,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.42928,150.60678,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,3,Australia,AU,New South Wales,-29.490497,153.109422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.418398,150.633624,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866891,153.343646,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,1,23,Australia,AU,New South Wales,-28.661508,153.413445,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-36.474664,149.917922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.399711,150.624883,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-31.469196,152.914702,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.466089,150.52173,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.427563,150.594654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.436413,150.609634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.395735,150.643082,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.411445,150.596117,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.469507,150.526669,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.465634,150.520612,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.426737,150.603545,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-29.490292,153.110404,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121100,1,,occurrenceRemarks withheld,2024,6,24,Australia,AU,New South Wales,-31.937349,152.456085,EPSG:4326 +HUMAN_OBSERVATION,OPUR18082000,1,,occurrenceRemarks withheld,2021,11,,Australia,AU,New South Wales,-28.771137,152.901602,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004228,1,,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-29.028095,153.157837,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041403,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-29.729503,151.083939,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866891,153.343646,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-31.060477,152.848198,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.418937,150.609435,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-30.927082,153.071751,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,6,24,Australia,AU,New South Wales,-31.882977,152.385032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.455247,150.519678,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-28.709278,153.490755,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010703,1,,occurrenceRemarks withheld,2020,6,2,Australia,AU,New South Wales,-29.727079,152.929709,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-29.490792,153.109245,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-31.478874,152.908032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.446582,150.514287,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030S,1,,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-32.776185,152.081375,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2020,12,13,Australia,AU,New South Wales,-29.515242,152.811295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.42136,150.62735,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031415,1,,occurrenceRemarks withheld,2022,5,2,Australia,AU,New South Wales,-33.494896,149.557947,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,12,24,Australia,AU,New South Wales,-34.018957,150.988839,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-29.490497,153.109433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.494185,150.640782,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004259,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.864257,153.283855,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.447036,150.516646,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-34.19412,150.78988,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-29.488149,153.092385,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,FEMALE,occurrenceRemarks withheld,2024,5,16,Australia,AU,New South Wales,-31.4349,152.8881,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-28.825935,153.284729,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.451654,150.522527,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290K,1,,occurrenceRemarks withheld,2023,12,15,Australia,AU,New South Wales,-31.93913,152.403779,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,MALE,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-34.016736,150.885889,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-31.448177,152.8814,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,MALE,occurrenceRemarks withheld,2021,2,19,Australia,AU,New South Wales,-32.76786,152.04316,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082302;ODFK23082303;ODFK23082304;ODFK23082306,1,FEMALE,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.068805,150.884737,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.421165,150.636875,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.438683,150.604031,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-34.20866,150.809,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-31.214814,152.9249,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.431087,150.614812,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.387573,150.631251,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153F,1,,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-28.584045,153.212595,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-31.802811,152.424857,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-28.878,153.18755,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.070312,150.884872,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OPJG09091000,1,,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-30.106178,152.771,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-28.958976,153.394064,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031403,1,,occurrenceRemarks withheld,2024,2,11,Australia,AU,Queensland,-28.1485,152.967206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.420664,150.609223,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,2,24,Australia,AU,New South Wales,-33.60486,150.757608,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-28.386971,153.561963,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,10,13,Australia,AU,New South Wales,-30.066931,152.250288,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2024,10,13,Australia,AU,New South Wales,-34.148056,150.790833,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-34.097138,150.986459,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.420251,150.627381,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,4,8,Australia,AU,New South Wales,-32.716605,152.162576,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-31.447645,152.907235,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240P,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-32.528033,151.794957,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.4363,150.615839,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-33.534396,150.666541,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.438705,150.604237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.458647,150.52551,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.465558,150.522203,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-36.573425,150.003439,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031N,1,,occurrenceRemarks withheld,2024,1,30,Australia,AU,New South Wales,-31.459542,152.926887,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.423815,150.637311,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290P,1,,occurrenceRemarks withheld,2023,12,25,Australia,AU,New South Wales,-32.585101,151.780764,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-33.782885,150.072106,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.460288,150.518876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.464199,150.52368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.392627,150.640396,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-31.441596,152.746264,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.144709,150.793311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.437474,150.60536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.438095,150.616343,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-33.70602,150.786175,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.186227,150.801219,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-28.938117,153.277563,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190C,1,,occurrenceRemarks withheld,2024,5,19,Australia,AU,New South Wales,-32.069989,152.357267,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17555,152.90631,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,2,17,Australia,AU,New South Wales,-32.706526,152.063752,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-29.490488,153.109567,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002777,1,,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-29.494261,153.094719,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.460205,150.516996,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,1,4,Australia,AU,New South Wales,-34.024104,150.991693,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-29.480014,153.104146,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-31.450468,152.914916,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2021,1,24,Australia,AU,New South Wales,-32.728656,152.037048,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-28.953,153.43396,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-31.453169,152.925906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.433772,150.617054,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,3,20,Australia,AU,New South Wales,-30.880291,153.071724,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.418307,150.632658,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.454099,150.520431,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODWB00081100,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.659943,149.968909,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.421869,150.627564,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.451915,150.602978,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202,1,,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-30.509,151.523,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,15,Australia,AU,New South Wales,-29.485244,153.103983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.423769,150.637247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.493145,150.639189,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-32.688193,151.654877,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.464595,150.521862,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,1,Australia,AU,New South Wales,-29.490521,153.109385,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-28.371944,153.555833,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,3,23,Australia,AU,New South Wales,-32.736906,152.057723,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042W,1,FEMALE,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-34.140203,150.809735,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.488911,150.637501,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-28.876416,153.367963,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.392471,150.633701,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,3,27,Australia,AU,New South Wales,-29.490451,153.108333,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-31.915708,152.374468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.389301,150.628755,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.437281,150.605648,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-31.454118,152.925267,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,28,Australia,AU,New South Wales,-31.444176,152.907325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.459047,150.659763,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.420636,150.630482,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.388777,150.630597,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2022,12,20,Australia,AU,New South Wales,-34.304797,150.738094,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-32.7105,152.072735,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.439004,150.604294,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.42091,150.630202,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-28.819938,153.302555,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010703,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-29.726427,152.929763,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-28.783062,152.092401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.41237,150.601866,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.435427,150.519427,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-32.815056,151.480202,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-34.90779,150.0369,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100B,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-30.468214,152.889824,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-30.307633,153.077582,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-28.385605,153.561545,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-31.526289,152.796711,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-34.287614,150.674854,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-31.433321,152.883674,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.447191,150.515879,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.455177,150.659175,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150U,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.693263,153.495538,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.465793,150.520477,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-31.438954,152.824764,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.452016,150.517293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.393253,150.64387,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-31.933261,152.415078,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.299136,149.322933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.458798,150.528944,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004092,1,,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-28.821699,153.306792,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-34.446659,150.512739,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,7,1,Australia,AU,New South Wales,-32.070691,152.036748,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-28.993002,153.437114,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,31,Australia,AU,New South Wales,-31.445024,152.916628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.420479,150.627962,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-33.238957,150.646848,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.944154,153.448114,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,3,17,Australia,AU,New South Wales,-29.486066,153.103583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.393373,150.639821,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.395933,150.642131,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.458228,150.662671,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,17,Australia,AU,New South Wales,-33.717318,150.784231,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2023,4,27,Australia,AU,New South Wales,-34.199985,150.788388,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-33.712303,150.786046,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-30.119255,152.138925,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.465775,150.520488,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032802,1,,occurrenceRemarks withheld,2021,11,,Australia,AU,New South Wales,-32.664348,151.721089,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,8,20,Australia,AU,New South Wales,-34.090667,150.82878,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866277,153.367822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.443226,150.518619,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.45182,150.599498,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090405,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-32.732775,152.038001,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-36.458883,149.990705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.393644,150.64449,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,8,7,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004075,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.654222,153.520955,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-31.506633,152.776829,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,28,Australia,AU,New South Wales,-29.490166,153.110506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.422047,150.636306,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,12,25,Australia,AU,New South Wales,-31.466891,152.929319,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004073,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.647407,153.320406,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022609,1,,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-34.083034,150.998946,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,14,Australia,AU,New South Wales,-33.716012,150.784159,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-29.507595,152.822056,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-29.677379,152.877303,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-30.879779,153.071815,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122103,1,,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-30.883276,153.071181,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180D,1,MALE,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-28.864534,153.293409,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070R,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-33.542109,149.682012,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,6,Australia,AU,New South Wales,-29.489937,153.101247,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,10,22,Australia,AU,New South Wales,-33.114532,151.122951,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.446125,150.517522,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,1,29,Australia,AU,New South Wales,-30.345203,153.085425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433124,150.607443,EPSG:4326 +HUMAN_OBSERVATION,OLHP24051302,1,,occurrenceRemarks withheld,2024,4,23,Australia,AU,New South Wales,-31.684292,152.346708,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.395563,150.642543,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-28.869443,153.282902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.447024,150.513839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.420912,150.627972,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-31.629212,152.786715,EPSG:4326 +HUMAN_OBSERVATION,BREHS-HO,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-33.381662,150.898169,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152J,1,FEMALE,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-28.809142,153.362836,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.437694,150.517858,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,28,Australia,AU,New South Wales,-30.394953,152.943371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.387104,150.626566,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.452074,152.878833,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-31.475309,152.922675,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-33.719583,150.785071,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.687022,153.516143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.488743,150.635328,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.449282,150.516264,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2022,4,17,Australia,AU,New South Wales,-32.764638,152.115731,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-28.82983,153.221068,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-33.419281,149.577506,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,6,1,Australia,AU,New South Wales,-29.486575,153.103253,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-29.484749,153.103945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.418366,150.63382,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180D,1,MALE,occurrenceRemarks withheld,2022,11,7,Australia,AU,New South Wales,-28.864588,153.292968,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.389363,150.623599,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-31.446523,152.893759,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.452592,150.519898,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,17,Australia,AU,New South Wales,-29.017366,153.428647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.452523,150.519596,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-28.846732,153.408997,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-28.725919,153.519536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.449006,150.516022,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103100,1,,occurrenceRemarks withheld,2023,1,28,Australia,AU,New South Wales,-32.710617,152.072564,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.447267,150.516497,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.430751,150.613299,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.454033,150.520291,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-29.490549,153.109374,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-34.498996,150.533856,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-28.709278,153.490755,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122003,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-30.890801,153.077601,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040R,1,FEMALE,occurrenceRemarks withheld,2022,7,15,Australia,AU,New South Wales,-34.047876,150.982395,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,MALE,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-29.055286,153.306145,EPSG:4326 +HUMAN_OBSERVATION,OLHP24010915,1,,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-31.454165,152.912481,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.450152,150.516477,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-31.415433,152.126308,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.392623,150.636003,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150U,1,,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-31.782439,152.710175,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,3,26,Australia,AU,New South Wales,-33.776359,150.061156,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-29.488391,153.110943,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-34.067842,150.850173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.452303,150.522976,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030R,1,,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-30.643985,151.440447,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011200,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.953289,152.188204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.457833,150.527144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.410179,150.597273,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-28.850153,153.436964,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-36.653292,149.964605,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.465698,150.521579,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405270B,1,,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-30.402213,151.624706,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,6,3,Australia,AU,New South Wales,-31.458122,152.911609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.436484,150.603604,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-31.444558,152.926813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.452903,150.524123,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-28.864674,153.293069,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419018,150.609422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.464288,150.522295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-34.397104,150.642054,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,27,Australia,AU,New South Wales,-35.078249,150.120028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.446338,150.513804,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-31.518778,152.809841,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.430534,150.610509,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-30.296163,152.621538,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-28.647325,153.563412,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-29.487981,153.091983,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-34.218966,150.791503,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250J,1,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.763847,146.601837,EPSG:4326 +HUMAN_OBSERVATION,OEMM0911130Y,1,MALE,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-37.177314,149.355934,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-34.092377,150.984658,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.421036,150.626935,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418275,150.63564,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436392,150.615957,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.451558,150.523586,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.392765,150.635846,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003949,1,,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-28.873862,153.277993,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003970,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-28.654666,153.360706,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.443184,150.518294,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-31.276309,152.814725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.457334,150.526582,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-28.632035,153.502114,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.446567,150.514897,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2023,5,12,Australia,AU,New South Wales,-34.305246,150.738115,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,19,Australia,AU,New South Wales,-28.651298,153.447783,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004114,1,,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-28.821804,153.300787,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-34.028573,150.988561,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-28.889794,153.189405,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.447321,150.512959,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003826,1,FEMALE,occurrenceRemarks withheld,2023,2,1,Australia,AU,New South Wales,-28.808776,153.510488,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,FEMALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.902284,152.388709,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,2,6,Australia,AU,New South Wales,-31.479653,152.925697,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-28.398535,153.556056,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-31.448304,152.918861,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,2,8,Australia,AU,New South Wales,-31.459262,152.924977,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,30,Australia,AU,New South Wales,-28.825104,153.28464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.388488,150.631486,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-30.786583,152.381867,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-31.356669,152.222492,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,5,3,Australia,AU,New South Wales,-29.489512,153.103929,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,12,20,Australia,AU,New South Wales,-30.297643,153.123847,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.397995,150.639637,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-31.937443,152.408389,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,10,Australia,AU,New South Wales,-28.659401,153.413338,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-28.524286,153.385425,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-28.394222,153.55828,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,3,5,Australia,AU,New South Wales,-34.20866,150.809,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-31.442457,152.910604,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,26,Australia,AU,New South Wales,-28.858271,153.313179,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-33.710214,150.785433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.493192,150.639286,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.541329,150.002505,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-31.915063,152.373758,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-34.112602,150.803399,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-30.32326,153.10335,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004212,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.817309,153.29838,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.427429,150.60297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.420109,150.634435,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041307,1,FEMALE,occurrenceRemarks withheld,2021,12,16,Australia,AU,New South Wales,-34.077312,150.852272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.447394,150.516994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.46493,150.522385,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404,1,,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-31.772847,152.440693,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,1,25,Australia,AU,New South Wales,-31.921365,152.372529,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-28.387914,153.566221,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.090353,150.811966,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.440955,152.92459,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-32.712642,152.06928,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.432988,150.613834,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.452233,150.523098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.432663,150.613331,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.43675,150.52761,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.459347,150.534729,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.427219,150.52627,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.423807,150.637344,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041K,1,MALE,occurrenceRemarks withheld,2022,7,1,Australia,AU,New South Wales,-35.635781,145.582386,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.447956,150.520221,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-28.392606,153.561202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.456586,150.519486,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002758,1,,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-29.465452,153.111616,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-34.141271,150.82369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.386382,150.625641,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.39062,150.6275,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.611478,152.557428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.385836,150.627244,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-28.68255,153.61132,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-28.817008,153.327647,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.392544,150.633754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.465717,150.521622,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-31.594831,152.838362,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-30.4214,152.9837,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.394731,150.642882,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.420066,150.631303,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-28.626781,153.481287,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-28.729263,153.592081,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.924064,152.375744,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-29.488284,153.110045,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.404298,150.645801,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-29.488139,153.092262,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.426844,150.603923,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-29.485057,153.104074,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-31.629141,152.786752,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,,occurrenceRemarks withheld,2022,6,30,Australia,AU,New South Wales,-32.748156,152.069526,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-32.069784,152.50487,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-30.927082,153.071751,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-28.678855,153.278372,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-28.97457,153.324269,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.418399,150.597636,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.210866,150.78943,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040P,1,MALE,occurrenceRemarks withheld,2022,7,4,Australia,AU,New South Wales,-29.219871,149.969639,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,6,Australia,AU,New South Wales,-29.668372,150.939729,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-28.826545,153.315124,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150U,1,,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-31.781985,152.711777,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-28.960126,153.394673,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.43544,150.6152,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,2,28,Australia,AU,New South Wales,-31.458672,152.911715,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-30.125115,152.737543,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-30.296172,152.621507,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.395414,150.643255,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.464776,150.525427,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-34.259004,150.728952,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-34.2166,150.7929,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020H,1,FEMALE,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-32.587081,151.732934,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.437761,150.604797,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.420201,150.631299,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031415,1,,occurrenceRemarks withheld,2021,12,30,Australia,AU,New South Wales,-33.494818,149.5579,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.431485,150.604748,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.465978,150.522039,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2023,5,19,Australia,AU,New South Wales,-31.948469,152.428145,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-29.485557,153.103806,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,17,Australia,AU,New South Wales,-29.490301,153.108172,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.154124,152.806803,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,30,Australia,AU,New South Wales,-31.452765,152.908334,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-31.480861,152.915979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.427319,150.604703,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.457021,152.873889,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290C,1,,occurrenceRemarks withheld,2022,5,10,Australia,AU,New South Wales,-32.735737,152.085731,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.433629,150.610671,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,FEMALE,occurrenceRemarks withheld,2024,4,6,Australia,AU,New South Wales,-34.025207,150.991402,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,FEMALE,occurrenceRemarks withheld,2024,1,30,Australia,AU,New South Wales,-31.945251,152.298758,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,6,18,Australia,AU,New South Wales,-28.625548,153.007515,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,11,25,Australia,AU,New South Wales,-31.479236,152.922698,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,21,Australia,AU,New South Wales,-28.394137,153.558373,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,19,Australia,AU,New South Wales,-28.573473,153.426207,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,FEMALE,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-34.77471,146.591984,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-28.602275,153.092457,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.419028,150.609465,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,26,Australia,AU,New South Wales,-32.706125,152.063658,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.389723,150.625916,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.491656,150.639144,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001217,1,,occurrenceRemarks withheld,2021,6,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.418896,150.632815,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,MALE,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-31.442356,152.901584,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.423861,150.63731,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-31.445979,152.925759,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.488828,150.637907,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-34.512,150.523877,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-28.959969,153.395255,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.387812,150.631505,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,6,10,Australia,AU,New South Wales,-31.475631,152.907866,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.48869,150.634002,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.433728,150.617109,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.297176,151.994536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.492946,150.639173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435745,150.521365,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-28.693786,153.495272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.428646,150.600194,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.421007,150.626848,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.435668,150.601973,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031402,1,,occurrenceRemarks withheld,2023,1,3,Australia,AU,New South Wales,-28.879717,153.324244,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-34.114736,150.941027,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.925299,152.374686,EPSG:4326 +HUMAN_OBSERVATION,OJJS1208150J,1,FEMALE,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-32.551635,151.736498,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,12,5,Australia,AU,New South Wales,-28.539853,153.476795,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,6,14,Australia,AU,New South Wales,-29.76276,151.1103,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,7,6,Australia,AU,New South Wales,-28.661766,153.112294,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-30.488,152.912589,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-31.126317,152.791821,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.420792,150.630619,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004237,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.931722,153.272766,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-34.188134,150.790596,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.437831,150.517974,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,4,24,Australia,AU,New South Wales,-36.334367,149.326049,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,6,26,Australia,AU,New South Wales,-28.854924,153.390711,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,4,5,Australia,AU,New South Wales,-32.709662,152.071576,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-33.715181,150.785536,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-28.924195,153.158632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.395807,150.626299,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.632867,149.949786,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180H,1,,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-28.870811,153.461903,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-28.997202,153.38824,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.38844,150.625746,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-36.474664,149.917922,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060Y,1,,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-34.626243,150.210062,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-30.467742,152.889512,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-29.490227,153.108183,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.826069,153.315522,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-31.921302,152.37244,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.910186,152.409406,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-36.569074,150.02021,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.397883,150.622238,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-29.490623,153.108097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,11,Australia,AU,New South Wales,-34.440492,150.61584,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210D,1,,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-32.768069,152.034966,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.401361,150.646808,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.436906,150.607204,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-29.772983,151.097534,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-29.48541,153.103881,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.437967,150.60428,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,23,Australia,AU,New South Wales,-31.302697,152.864093,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.44819,150.5193,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,19,Australia,AU,New South Wales,-29.489937,153.11056,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OCMK22081600,1,,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-33.095806,151.154556,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-29.346563,152.944433,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.469203,152.876078,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,9,9,Australia,AU,New South Wales,-31.450303,152.904238,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,3,7,Australia,AU,New South Wales,-29.490007,153.101226,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260V,1,,occurrenceRemarks withheld,2021,2,7,Australia,AU,New South Wales,-32.759234,152.103413,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-31.453948,152.918628,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,,occurrenceRemarks withheld,2023,5,27,Australia,AU,New South Wales,-28.959734,153.393951,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.447207,150.513082,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.417613,150.603055,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.459251,150.534895,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2023,12,11,Australia,AU,New South Wales,-31.455289,152.925804,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-30.230169,152.939215,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,5,26,Australia,AU,New South Wales,-28.890682,153.303635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.434171,150.615802,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.465668,150.521406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.447244,150.513157,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.437274,150.60529,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004237,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.931702,153.272822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.390564,150.626469,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,6,13,Australia,AU,New South Wales,-29.037633,153.399805,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,30,Australia,AU,New South Wales,-29.490792,153.107899,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-30.297658,153.10145,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012501,1,,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-30.880307,153.071633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.455301,150.519655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.427262,150.604096,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-30.426894,153.032175,EPSG:4326 +HUMAN_OBSERVATION,ODFK2312070B,1,,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-29.488578,153.113151,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.427318,150.604649,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2022,9,6,Australia,AU,New South Wales,-30.090977,152.133996,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.45214,150.518508,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403060B,1,,occurrenceRemarks withheld,2024,2,21,Australia,AU,New South Wales,-31.594239,152.840465,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.44735,150.517017,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,7,2,Australia,AU,New South Wales,-30.886261,153.073774,EPSG:4326 +HUMAN_OBSERVATION,ODMP21060800,1,FEMALE,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-29.733427,152.923509,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.423779,150.637312,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-28.556666,153.051789,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.419761,150.632802,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,11,Australia,AU,New South Wales,-29.489512,153.102631,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,14,Australia,AU,New South Wales,-28.972587,153.428314,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.42027,150.627391,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003903,1,,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-28.686898,153.517718,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.459341,150.530833,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.435417,150.521179,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-30.655961,151.512471,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.385768,150.623276,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.384526,150.622877,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-30.505351,152.909937,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040D,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-30.328452,153.084251,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-28.392608,153.563196,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-28.925911,153.262056,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-29.479262,153.10423,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,11,Australia,AU,New South Wales,-29.490241,153.108242,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,9,22,Australia,AU,New South Wales,-31.460059,152.929419,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-32.738495,152.079448,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.436332,150.609669,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.383299,150.623324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.459046,150.65923,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303310F,1,,occurrenceRemarks withheld,2022,6,11,Australia,AU,New South Wales,-32.759374,152.103524,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.441441,150.517725,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866891,153.343646,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-29.483759,153.104117,EPSG:4326 +HUMAN_OBSERVATION,OPXE00110600,1,,occurrenceRemarks withheld,2022,8,15,Australia,AU,New South Wales,-30.427985,153.019941,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,2,17,Australia,AU,New South Wales,-31.434645,152.907809,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030X,1,,occurrenceRemarks withheld,2022,5,3,Australia,AU,New South Wales,-28.383684,153.562171,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.131401,152.820089,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.492688,150.638897,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-29.030715,152.986451,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-28.826683,153.321383,EPSG:4326 +HUMAN_OBSERVATION,ODFK23083000,1,,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-29.637445,152.832164,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.394928,150.641408,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-31.08082,150.11682,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.192158,152.028871,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.457053,150.518047,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003862,1,,occurrenceRemarks withheld,2023,6,16,Australia,AU,New South Wales,-28.240806,153.492541,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.454137,152.902521,EPSG:4326 +HUMAN_OBSERVATION,OJQS16052400,1,,occurrenceRemarks withheld,2020,9,,Australia,AU,New South Wales,-30.354494,151.555604,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-31.470676,152.911366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.436371,150.603379,EPSG:4326 +HUMAN_OBSERVATION,OPJG19103002,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.908173,152.747076,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,4,26,Australia,AU,New South Wales,-31.481886,150.417781,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-34.014991,150.89849,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-34.188134,150.790596,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-28.315294,152.495897,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,MALE,occurrenceRemarks withheld,2021,12,30,Australia,AU,New South Wales,-34.150236,150.822911,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.465744,150.52161,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-31.128448,152.793831,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-31.441614,152.910445,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-28.275718,153.394545,EPSG:4326 +HUMAN_OBSERVATION,OJXK00052203,1,,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-34.094995,150.980178,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-34.207149,150.785304,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.429583,150.618119,EPSG:4326 +HUMAN_OBSERVATION,OPUR20091100,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-33.169049,151.244601,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104130B,1,,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-34.114522,151.061248,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-28.888915,153.186783,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250B,1,FEMALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-32.722543,152.076895,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-29.725567,151.011059,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190G,1,,occurrenceRemarks withheld,2024,7,17,Australia,AU,New South Wales,-32.411497,152.002422,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032902,1,,occurrenceRemarks withheld,2024,2,6,Australia,AU,New South Wales,-32.717118,152.07288,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-29.489591,153.10394,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.449432,150.516096,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180D,1,FEMALE,occurrenceRemarks withheld,2022,10,13,Australia,AU,New South Wales,-28.864496,153.293404,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-28.606099,153.438182,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-29.490114,153.107454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.419299,150.635915,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-33.715663,150.785211,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.446347,150.517363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.488781,150.634979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.500492,150.533344,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,9,Australia,AU,New South Wales,-28.830724,153.283462,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,12,,Australia,AU,New South Wales,-36.138158,149.329538,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,8,12,Australia,AU,New South Wales,-34.467537,150.521715,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.396013,150.642063,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,,occurrenceRemarks withheld,2020,5,30,Australia,AU,New South Wales,-28.689908,153.345917,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.484611,152.783167,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-32.701664,152.065276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.420705,150.630795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.438168,150.616428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.452473,150.614901,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-29.649789,152.882597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.428719,150.600246,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,24,Australia,AU,New South Wales,-28.58022,153.2381,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,3,Australia,AU,New South Wales,-29.485739,153.103666,EPSG:4326 +HUMAN_OBSERVATION,OPUR18082000,1,,occurrenceRemarks withheld,2021,11,,Australia,AU,New South Wales,-28.771137,152.901602,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403060L,1,,occurrenceRemarks withheld,2024,2,24,Australia,AU,New South Wales,-34.040327,151.004502,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,4,19,Australia,AU,New South Wales,-31.619514,152.226702,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-28.693023,153.323,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.144858,152.819936,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.448471,150.516756,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,6,Australia,AU,New South Wales,-29.489563,153.103951,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.407968,153.556465,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-30.8961,153.036423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.420968,150.627122,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,5,Australia,AU,New South Wales,-29.488812,153.094096,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140E,1,,occurrenceRemarks withheld,2023,12,8,Australia,AU,New South Wales,-31.255606,152.963725,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-30.311236,152.843404,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.464778,150.522869,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.434506,150.616337,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-31.463575,152.831486,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-33.709701,150.785981,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-28.923985,153.162086,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.699193,152.749457,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,10,21,Australia,AU,New South Wales,-31.459963,152.922669,EPSG:4326 +HUMAN_OBSERVATION,ODMP21083102,1,,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-32.235513,150.967557,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.445928,150.513142,EPSG:4326 +HUMAN_OBSERVATION,Obs_0305,1,,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-32.733315,152.031334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,7,Australia,AU,New South Wales,-34.439907,150.618664,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.448724,150.516759,EPSG:4326 +HUMAN_OBSERVATION,OAVR24011600,1,,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.394083,149.8315,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,29,Australia,AU,New South Wales,-30.300015,153.09444,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-31.455522,152.872992,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003859,1,,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-28.939638,153.273577,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031543,1,FEMALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-29.020005,153.422758,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,26,Australia,AU,New South Wales,-33.710467,150.785584,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090P,1,MALE,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-31.480556,152.921731,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-31.436029,152.915153,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-29.490241,153.109712,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.433071,150.607455,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.437927,150.604085,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102500,1,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.769757,146.586935,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO,1,,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-30.416306,152.949981,EPSG:4326 +HUMAN_OBSERVATION,ODFK23083000,1,,occurrenceRemarks withheld,2023,3,16,Australia,AU,New South Wales,-29.644493,152.834593,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-28.258552,153.400454,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,2,1,Australia,AU,New South Wales,-30.40425,152.93793,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-30.083908,152.164041,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.399666,150.624928,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.411374,150.596608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.418852,150.632871,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.447993,150.516269,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,10,12,Australia,AU,New South Wales,-28.398653,153.556245,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,13,Australia,AU,New South Wales,-28.982598,153.421991,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.448538,150.516939,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.433798,150.61702,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-29.058961,153.308892,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-33.71409,150.78522,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004060,1,MALE,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-28.816235,153.303415,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.488525,150.637621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.447203,150.519536,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-34.094749,150.810093,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-34.22475,150.797639,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,23,Australia,AU,New South Wales,-33.719229,150.785095,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004196,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-28.889423,153.23088,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031503,1,,occurrenceRemarks withheld,2022,7,13,Australia,AU,New South Wales,-28.238763,153.492026,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-28.220515,153.532756,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-31.459042,152.926919,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-31.926276,151.84278,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-32.727783,152.078206,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,7,7,Australia,AU,New South Wales,-34.085987,150.833136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.433825,150.61702,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,2,5,Australia,AU,New South Wales,-31.440769,152.899659,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-28.213025,153.527846,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,MALE,occurrenceRemarks withheld,2024,5,24,Australia,AU,New South Wales,-31.1211,152.8822,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,11,10,Australia,AU,New South Wales,-31.63002,152.784286,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122007,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-36.173822,149.365311,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,16,Australia,AU,New South Wales,-36.063675,149.318709,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,,occurrenceRemarks withheld,2023,8,29,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130B,1,MALE,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-30.885764,153.072006,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150O,1,,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-33.49924,150.74146,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,5,22,Australia,AU,New South Wales,-33.55031,150.70091,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-28.64956,153.62014,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-29.679972,152.875158,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.434317,150.61632,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041400,1,,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-28.87015,153.273885,EPSG:4326 +HUMAN_OBSERVATION,SCHM-035,1,,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.33762,150.23116,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.034099,150.860751,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,3,23,Australia,AU,New South Wales,-28.4066,153.527358,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-33.713226,150.785979,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.46483,150.522334,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221Y,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-32.723562,152.081971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.447823,150.519898,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.434961,150.602733,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-28.392953,153.56185,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150N,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-28.79465,153.1211,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-31.437665,152.895105,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003820,1,,occurrenceRemarks withheld,2023,3,12,Australia,AU,New South Wales,-28.687381,153.393331,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.385499,150.626601,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,,occurrenceRemarks withheld,2023,7,19,Australia,AU,New South Wales,-28.822622,153.302055,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.465865,150.520921,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004017,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.617537,153.432181,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-33.138008,151.091806,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.427691,150.605726,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-28.583989,153.326023,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR16092800;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-28.63691,153.5914,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003902,1,MALE,occurrenceRemarks withheld,2023,3,20,Australia,AU,New South Wales,-28.708004,153.54797,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,12,Australia,AU,New South Wales,-31.459222,152.926316,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101308,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-32.729793,152.034237,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-34.90351,150.05652,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.443829,150.514543,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.69032,153.60237,EPSG:4326 +HUMAN_OBSERVATION,Obs_2876,1,FEMALE,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-33.075658,151.119961,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.386653,150.625187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.414292,150.596895,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.446388,150.514064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.420929,150.627949,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-32.73789,152.09104,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-31.636293,152.787207,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.465357,150.520773,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-29.491095,153.108167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.491466,150.639084,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.43894,150.517974,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.420602,150.609268,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-31.299032,152.863827,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250J,1,,occurrenceRemarks withheld,2024,9,24,Australia,AU,New South Wales,-34.763847,146.601837,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-34.44724,150.513854,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-29.48548,153.103629,EPSG:4326 +HUMAN_OBSERVATION,OJJT03070100,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-30.5006,151.6674,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.427364,150.604702,EPSG:4326 +HUMAN_OBSERVATION,ORSF21090200,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-32.530833,149.865278,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-28.653446,153.454341,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-32.732739,152.080964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.444232,150.515325,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-29.465157,153.116299,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-31.915624,152.373791,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2022,6,9,Australia,AU,New South Wales,-31.27226,152.82607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.44707,150.513021,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-28.561794,153.116066,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.464993,150.5237,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,FEMALE,occurrenceRemarks withheld,2023,1,10,Australia,AU,New South Wales,-30.300427,153.094536,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-30.522969,152.901124,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.459361,150.534544,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-28.393288,153.557349,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-28.589252,153.549573,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071101,1,,occurrenceRemarks withheld,2024,5,7,Australia,AU,New South Wales,-32.200289,152.134235,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-29.490161,153.109809,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131V,1,,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-31.454254,152.917012,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-28.959154,153.394146,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-28.375262,153.555751,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152Q,1,MALE,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-28.690529,153.494827,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-29.489755,153.105265,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.59482,149.956941,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.439586,150.619783,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102207,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-32.664824,152.042052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.385833,150.626113,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041400,1,,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-28.873056,153.263676,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-31.446325,152.921114,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-32.706675,152.063571,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419676,150.635372,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-32.72797,152.078075,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.420688,150.630861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.455114,150.610233,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-34.13813,150.79297,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031404,1,,occurrenceRemarks withheld,2024,2,5,Australia,AU,New South Wales,-33.190232,151.048196,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.454505,150.515565,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.464226,150.523669,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,19,Australia,AU,New South Wales,-29.493454,153.099787,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,9,Australia,AU,New South Wales,-31.434949,152.924668,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.462023,150.523973,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.42237,150.608424,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,23,Australia,AU,New South Wales,-29.48513,153.103827,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-34.446373,150.517318,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.445972,150.513119,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-34.199915,150.781051,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-30.36732,153.07458,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202,1,,occurrenceRemarks withheld,2022,3,11,Australia,AU,New South Wales,-30.643,151.414,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.452574,150.519877,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.468951,150.519284,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-31.42942,152.913246,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.454548,152.926327,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.465718,150.521654,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140M,1,,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-28.788338,153.563441,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.435926,150.616579,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.4515,150.518494,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,4,26,Australia,AU,New South Wales,-28.611534,153.282519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.437977,150.606662,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.429062,150.616393,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-32.724689,152.137467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.464077,150.52388,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.452249,150.522999,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,11,Australia,AU,New South Wales,-35.021419,150.147247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.446858,150.520329,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.446327,150.514142,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-31.63258,152.783893,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-28.653446,153.454341,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004101,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-28.87153,153.221699,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.839565,153.279241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.46628,150.521377,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,21,Australia,AU,New South Wales,-28.703206,153.561099,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.398076,150.644322,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.446989,150.520978,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,30,Australia,AU,New South Wales,-28.816723,153.201137,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-30.22885,153.00684,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.064404,150.886244,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR16092800;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-28.57492,153.51898,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-31.461154,152.912559,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,13,Australia,AU,New South Wales,-29.484343,153.104096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.4542,150.516521,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.418481,150.632816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.418243,150.632594,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060503,1,,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-28.840476,153.312467,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-29.490044,153.110554,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,FEMALE,occurrenceRemarks withheld,2024,6,12,Australia,AU,New South Wales,-31.150111,152.90325,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003872,1,FEMALE,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-28.819239,153.30215,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2020,6,7,Australia,AU,New South Wales,-30.506297,152.920619,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2024,4,9,Australia,AU,New South Wales,-31.469615,152.910837,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,7,9,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-28.374871,153.563613,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.390037,150.630921,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,9,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.457385,150.659102,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-28.941334,153.323726,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.447321,150.51383,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,11,8,Australia,AU,New South Wales,-32.710316,152.06606,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-30.351815,153.075814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435827,150.521373,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.427223,150.604858,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-30.653064,152.974585,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-31.929155,152.381007,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.453468,150.608593,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-29.485085,153.104079,EPSG:4326 +HUMAN_OBSERVATION,OJMM08020900,1,MALE,occurrenceRemarks withheld,2020,6,,Australia,AU,New South Wales,-34.038932,151.021657,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.445998,150.513031,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-28.955509,153.428439,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070601,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-34.528943,149.723822,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,27,Australia,AU,New South Wales,-29.489559,153.103951,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,1,11,Australia,AU,New South Wales,-31.452277,152.896113,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.388655,150.629415,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.419019,150.609466,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.395699,150.62628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.421448,150.626814,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080105,1,,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-32.585738,151.773002,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-28.671265,153.493595,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.421315,150.627384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.417718,150.601507,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.435133,150.606417,EPSG:4326 +HUMAN_OBSERVATION,OPUR20021302,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-32.74288,152.00272,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050S,1,,occurrenceRemarks withheld,2023,1,27,Australia,AU,New South Wales,-30.887519,153.07198,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.450254,150.513993,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.42707,150.603938,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-29.489652,153.105018,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-31.481606,152.920994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.427303,150.604802,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-28.844361,153.302823,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-34.52717,150.57485,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-31.475252,152.909212,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-28.397524,153.5572,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.432584,150.614868,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.446507,150.5159,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032111,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-32.737251,152.041687,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.184802,149.307547,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-34.211933,150.732006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.420921,150.627025,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-34.089143,150.987602,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.420681,150.609179,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-31.447575,152.896393,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.519414,150.543918,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,7,25,Australia,AU,New South Wales,-33.775253,150.102398,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-28.831141,153.325006,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-31.467202,152.915189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.427247,150.604694,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.398694,150.639878,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-33.54314,149.25719,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.420783,150.630162,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.420677,150.608962,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.454082,150.520464,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,12,20,Australia,AU,New South Wales,-28.728385,153.434511,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.424466,150.604513,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.386771,150.627087,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.442088,150.51849,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,6,13,Australia,AU,New South Wales,-29.037593,153.401057,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.421321,150.627231,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.452336,150.522823,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.431069,150.614835,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.471231,150.529459,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-30.174254,152.788273,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-31.919199,152.378048,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.457925,152.873204,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.429667,150.614135,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210D,1,,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-32.764432,152.036121,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.432625,150.613245,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,6,1,Australia,AU,New South Wales,-32.71117,152.065984,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,MALE,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-32.630046,151.704695,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-34.146283,150.796633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.423578,150.637144,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040B,1,,occurrenceRemarks withheld,2023,6,21,Australia,AU,New South Wales,-33.437589,150.626283,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,26,Australia,AU,New South Wales,-33.708449,150.785362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.446696,150.512814,EPSG:4326 +HUMAN_OBSERVATION,OJJS19072301;OJJS2007070K,1,,occurrenceRemarks withheld,2020,3,11,Australia,AU,New South Wales,-28.468469,153.314444,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-28.553296,153.07678,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250O,1,,occurrenceRemarks withheld,2024,9,7,Australia,AU,New South Wales,-30.929604,153.077377,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,5,Australia,AU,New South Wales,-31.889461,152.444452,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.458714,150.532865,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,10,1,Australia,AU,New South Wales,-34.019705,150.9907,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.397247,150.626149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.466442,150.521361,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.438951,150.604339,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,12,Australia,AU,New South Wales,-29.489923,153.103371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.464016,150.525329,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.644538,153.556904,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.392003,150.645406,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022523,1,,occurrenceRemarks withheld,2020,4,6,Australia,AU,New South Wales,-29.78625,151.19598,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.455735,150.527581,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,20,Australia,AU,New South Wales,-33.710287,150.784515,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.399879,150.640095,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-31.445958,152.915382,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304170G,1,,occurrenceRemarks withheld,2023,1,18,Australia,AU,New South Wales,-28.647062,153.210908,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-29.490843,153.109315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.460251,150.515242,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.117385,150.952101,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-33.705402,150.786472,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.394996,150.630498,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-34.44719,150.513137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.465683,150.520382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.417759,150.597165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.427364,150.604724,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,23,Australia,AU,New South Wales,-32.705989,152.063513,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151G,1,,occurrenceRemarks withheld,2022,12,25,Australia,AU,New South Wales,-28.873923,153.279146,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-31.914495,152.382647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.435987,150.520411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.384456,150.625336,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-31.447671,152.915063,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.436485,150.616106,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,2,25,Australia,AU,New South Wales,-32.705941,152.063408,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-31.910186,152.409406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.393424,150.631228,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-28.954129,153.456713,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,19,Australia,AU,New South Wales,-29.49025,153.108199,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100514,1,MALE,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-30.428586,152.907918,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-31.915723,152.373823,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004061,1,,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-28.740832,153.592802,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-33.718966,150.783906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.446399,150.517252,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-30.663283,152.957871,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,1,9,Australia,AU,New South Wales,-28.693782,153.493083,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-33.713984,150.785327,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-31.432895,152.906525,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.45453,150.606233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.435974,150.615783,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.460254,150.518964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.463705,150.523738,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,MALE,occurrenceRemarks withheld,2023,4,28,Australia,AU,New South Wales,-28.845668,153.302559,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.42193,150.636309,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-32.735525,152.040579,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.386129,150.625583,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2024,9,20,Australia,AU,New South Wales,-33.147919,151.077611,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,,occurrenceRemarks withheld,2024,1,8,Australia,AU,New South Wales,-34.024519,150.989676,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.834226,153.364275,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-30.663283,152.957871,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.395308,150.630326,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004008,1,,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-28.839277,153.403607,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,26,Australia,AU,New South Wales,-29.476965,153.104788,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-29.49017,153.110533,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-32.926768,151.485444,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-33.712788,150.785451,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-31.433827,152.898474,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2020,8,10,Australia,AU,New South Wales,-29.726763,152.929999,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-28.919346,153.461447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.469617,150.526775,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-29.487434,153.110989,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.983189,153.443037,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-31.470525,152.919823,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,,occurrenceRemarks withheld,2022,6,10,Australia,AU,New South Wales,-33.41413,150.863897,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,8,6,Australia,AU,New South Wales,-31.545488,152.846846,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303280D,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-31.42658,152.815696,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.487722,150.636174,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,29,Australia,AU,New South Wales,-31.121862,152.800222,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.446981,150.520141,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.193047,152.73232,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-31.915482,152.374053,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,6,19,Australia,AU,New South Wales,-29.45099,153.07705,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-28.636812,153.49745,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-32.710944,152.065318,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,FEMALE,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-34.056,150.847722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.402331,150.649902,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-28.929336,153.329026,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220Q,1,,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-32.727606,152.079265,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-31.907842,152.380825,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,7,29,Australia,AU,New South Wales,-33.77872,150.101093,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.432142,150.613009,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.739255,152.062539,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082307,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.414884,152.9682,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040411,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-30.325771,153.062859,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,10,Australia,AU,New South Wales,-31.444741,152.915982,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030N,1,,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-31.481714,152.915061,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.435617,150.615522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.489307,150.638851,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-32.303749,152.336578,EPSG:4326 +HUMAN_OBSERVATION,OJJS20020408,1,MALE,occurrenceRemarks withheld,2024,2,16,Australia,AU,New South Wales,-34.10442,150.81386,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.395977,150.642042,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-29.45099,153.07705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.386239,150.625699,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.454479,150.515576,EPSG:4326 +HUMAN_OBSERVATION,OGXN10042200,1,,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-33.563057,149.551019,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.455717,150.660063,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-29.090107,153.370115,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.460589,149.910112,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,28,Australia,AU,New South Wales,-31.448008,152.894572,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050C,1,,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-31.451806,152.926422,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2023,,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-33.717936,150.784906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.427151,150.605361,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2023,11,26,Australia,AU,New South Wales,-34.097848,150.808197,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004107,1,,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-28.814763,153.328297,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040400,1,,occurrenceRemarks withheld,2024,3,4,Australia,AU,New South Wales,-31.409817,152.87873,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.491629,150.639112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.434827,150.60277,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,,occurrenceRemarks withheld,2023,5,9,Australia,AU,New South Wales,-28.960556,153.394938,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.457259,150.517315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.42444,150.604568,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.798684,152.812224,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,,occurrenceRemarks withheld,2022,4,30,Australia,AU,New South Wales,-32.736321,152.082131,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,3,13,Australia,AU,New South Wales,-28.243765,153.487813,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.419694,150.63536,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.834226,153.364275,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.526667,152.849796,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-31.457237,152.929196,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250J,1,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.763279,146.598475,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-29.487822,153.091741,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-29.488142,153.103661,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-30.120163,152.741668,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004076,1,,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-28.663318,153.614638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.430811,150.615919,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-32.684466,151.657999,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-28.831246,153.32428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.434148,150.608632,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.168086,152.719811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.421848,150.607514,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,27,Australia,AU,New South Wales,-29.479561,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.386179,150.630964,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,7,7,Australia,AU,New South Wales,-31.920062,152.401708,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-34.20052,150.727631,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.190981,152.028729,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.185093,153.004017,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.813599,152.82356,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.383858,150.622863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.430485,150.607572,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-34.145235,150.813125,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.433106,150.607411,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-31.476999,152.922188,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.41838,150.633635,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,FEMALE,occurrenceRemarks withheld,2024,8,20,Australia,AU,New South Wales,-32.022604,152.393294,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.256856,152.743408,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.476033,150.634043,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040J,1,,occurrenceRemarks withheld,2024,3,29,Australia,AU,New South Wales,-31.409538,152.89989,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-28.826328,153.314264,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-29.6794,152.863743,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-33.12687,151.242891,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031813,1,,occurrenceRemarks withheld,2022,11,10,Australia,AU,New South Wales,-28.825656,153.305455,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-29.482232,153.104273,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,5,Australia,AU,New South Wales,-29.497268,153.10387,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.435064,150.615831,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,9,Australia,AU,New South Wales,-29.485795,153.103682,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.5021,152.867747,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,11,Australia,AU,New South Wales,-28.974972,153.34067,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011107,1,,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.708891,152.071027,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.203677,150.789395,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.42376,150.637237,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2022,3,18,Australia,AU,New South Wales,-31.443481,152.919406,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,11,Australia,AU,New South Wales,-28.933223,153.45094,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,11,Australia,AU,New South Wales,-31.471467,152.872225,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-28.821557,153.311638,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-28.873275,153.418019,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.840581,153.360617,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.452733,150.521527,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-31.430871,152.881963,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.446828,150.516162,EPSG:4326 +HUMAN_OBSERVATION,ODMP10100606,1,,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-28.828072,153.291483,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003923,1,FEMALE,occurrenceRemarks withheld,2023,3,9,Australia,AU,New South Wales,-28.928136,153.209622,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.43319,150.615863,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,22,Australia,AU,New South Wales,-31.554457,152.851403,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-33.703987,150.787241,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001401,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-30.601564,152.856978,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-29.478744,153.104155,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003800,1,,occurrenceRemarks withheld,2023,4,27,Australia,AU,New South Wales,-28.489326,153.022552,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-28.84351,153.405749,EPSG:4326 +HUMAN_OBSERVATION,OPJG19043000,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-28.25342,152.50663,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.43142,150.614781,EPSG:4326 +HUMAN_OBSERVATION,OLHP24062100,1,,occurrenceRemarks withheld,2024,5,5,Australia,AU,New South Wales,-30.512281,151.517626,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-31.449306,152.878965,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-32.706478,152.063695,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-29.489727,153.101569,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,8,29,Australia,AU,New South Wales,-33.491105,149.552049,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,4,24,Australia,AU,New South Wales,-29.69253,152.85146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.420921,150.627993,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062903,1,,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-32.662275,151.717883,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.862857,153.317651,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-29.53804,153.01262,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.862857,153.317651,EPSG:4326 +HUMAN_OBSERVATION,OJJT03070100,1,,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-29.7667,151.1166,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,3,26,Australia,AU,New South Wales,-28.393708,153.559633,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,15,Australia,AU,New South Wales,-33.712259,150.786092,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,2,22,Australia,AU,New South Wales,-31.46813,152.869901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436063,150.615737,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-29.496,153.116,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.453778,150.520603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.436512,150.616073,EPSG:4326 +HUMAN_OBSERVATION,ODXB01071100,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-31.92674,152.502971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.463344,150.534884,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-31.43619,152.8965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.429426,150.615175,EPSG:4326 +HUMAN_OBSERVATION,ODFK24021200,1,,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-30.40494,152.86574,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,4,Australia,AU,New South Wales,-33.717632,150.7839,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170B,1,FEMALE,occurrenceRemarks withheld,2022,9,22,Australia,AU,New South Wales,-29.49183,153.10917,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.446725,150.5182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.46893,150.520003,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.433908,150.615712,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-32.685139,151.655944,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-30.239996,152.906761,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-31.439547,152.887338,EPSG:4326 +HUMAN_OBSERVATION,OLHP24010911,1,,occurrenceRemarks withheld,2024,4,9,Australia,AU,New South Wales,-31.438015,152.890903,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,4,Australia,AU,New South Wales,-29.49018,153.110511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.434422,150.616197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.385794,150.626919,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.459892,150.525538,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.419733,150.611393,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.420234,150.627393,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-36.557254,150.016582,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-32.73423,152.10181,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,25,Australia,AU,New South Wales,-29.162889,152.800539,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.631687,149.909982,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.457568,152.927995,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-29.487714,153.091312,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.488863,150.637851,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,5,22,Australia,AU,New South Wales,-29.6429,152.82955,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,3,8,Australia,AU,New South Wales,-29.480044,153.104293,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-28.825748,153.300439,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091909,1,,occurrenceRemarks withheld,2024,8,30,Australia,AU,New South Wales,-32.342547,152.403655,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,3,6,Australia,AU,New South Wales,-31.459867,152.925267,EPSG:4326 +HUMAN_OBSERVATION,OJJS18041601,1,,occurrenceRemarks withheld,2020,12,14,Australia,AU,New South Wales,-28.888412,153.226752,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-28.822447,153.313736,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,3,1,Australia,AU,New South Wales,-34.022847,150.992037,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-32.709988,152.06661,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-32.706532,152.063601,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.438604,150.606884,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-34.149727,150.824751,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-28.811044,153.347076,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,25,Australia,AU,New South Wales,-34.44002,150.6189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.465873,150.520431,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-28.440333,152.884465,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.438709,150.60675,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-31.458629,152.927691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.420287,150.627369,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,3,4,Australia,AU,New South Wales,-28.818295,153.315696,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.455143,150.659709,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-30.877762,152.866156,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250G,1,,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-32.720961,151.991689,EPSG:4326 +HUMAN_OBSERVATION,OJJS1912230A,1,,occurrenceRemarks withheld,2020,5,2,Australia,AU,New South Wales,-29.494436,153.092672,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,16,Australia,AU,New South Wales,-29.48976,153.105206,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,6,24,Australia,AU,New South Wales,-33.778624,150.10237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.437781,150.603088,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-28.993718,153.438883,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,6,17,Australia,AU,New South Wales,-31.437024,152.910601,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2023,3,4,Australia,AU,New South Wales,-34.098155,150.808229,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,FEMALE,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-31.918223,152.353952,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.427329,150.604747,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,7,26,Australia,AU,New South Wales,-28.387266,153.562712,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-29.806272,152.810885,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.492711,150.640094,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-30.300848,153.123214,EPSG:4326 +HUMAN_OBSERVATION,OPJG17030201;OPJG24070408,1,,occurrenceRemarks withheld,2024,4,19,Australia,AU,New South Wales,-33.671115,150.052394,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-34.143183,150.790539,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.465877,150.520616,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-31.443445,152.905271,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081116,1,,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-31.442625,152.906083,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-34.448088,150.527214,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,23,Australia,AU,New South Wales,-29.485604,153.103758,EPSG:4326 +HUMAN_OBSERVATION,OJJS19051305,1,,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-32.029483,152.513861,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-31.431087,152.909624,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,4,Australia,AU,New South Wales,-29.485548,153.103752,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.733492,152.759104,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.448972,150.516556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.431304,150.615307,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220O,1,,occurrenceRemarks withheld,2024,6,3,Australia,AU,New South Wales,-32.742849,152.065526,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.438561,150.615753,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.420611,150.600543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.452614,150.52411,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,2,15,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021308,1,,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-31.926849,152.358798,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-28.703925,153.469493,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111512,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-33.54144,150.63949,EPSG:4326 +HUMAN_OBSERVATION,OLHP23082408,1,MALE,occurrenceRemarks withheld,2020,1,18,Australia,AU,New South Wales,-32.484725,152.270246,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-33.706227,150.785911,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.420669,150.630785,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.40094,150.619976,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.388869,150.626027,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.431929,150.613635,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,12,23,Australia,AU,New South Wales,-32.090002,152.168747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-34.464833,150.522475,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.453461,150.608734,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-29.088158,153.131888,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.446356,150.513826,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260C,1,,occurrenceRemarks withheld,2020,12,24,Australia,AU,New South Wales,-32.710655,152.060948,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.437281,150.605605,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-29.63175,152.899797,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042F,1,MALE,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.042188,151.053718,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.420107,150.634359,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.400701,150.619243,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.423708,150.637358,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-29.490222,153.108221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.459188,150.534908,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.419139,150.603653,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433151,150.60742,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.423717,150.637347,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.393967,150.630908,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-28.332256,153.382755,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.490801,150.638275,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-34.445986,150.512879,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,10,2,Australia,AU,New South Wales,-30.37941,153.015486,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-29.490189,153.108189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.459962,150.519223,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.423417,150.605696,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-34.53402,150.63378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.418046,150.632654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.467016,150.520778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.429951,150.606978,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.918364,152.382897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419631,150.611755,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-31.13645,150.03232,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,5,6,Australia,AU,New South Wales,-29.222514,152.606383,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-31.299418,152.863552,EPSG:4326 +HUMAN_OBSERVATION,OGEM18052300,1,,occurrenceRemarks withheld,2023,6,19,Australia,AU,New South Wales,-36.573659,149.955099,EPSG:4326 +HUMAN_OBSERVATION,OJJS17062707,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-32.735331,151.961801,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.446389,150.514086,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,1,Australia,AU,New South Wales,-29.488564,153.09349,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,3,18,Australia,AU,New South Wales,-34.024327,150.990439,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-28.25768,153.40054,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.4636,150.523448,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.452601,150.519898,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.416622,150.599395,EPSG:4326 +HUMAN_OBSERVATION,ODFK24092407,1,FEMALE,occurrenceRemarks withheld,2024,9,8,Australia,AU,New South Wales,-34.028132,150.988647,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-28.876698,153.380443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.445862,150.513916,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,2,22,Australia,AU,New South Wales,-29.683564,152.869051,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,24,Australia,AU,New South Wales,-29.490866,153.109283,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.428102,150.597761,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,6,16,Australia,AU,New South Wales,-34.197805,150.79083,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,5,3,Australia,AU,New South Wales,-28.21589,153.48358,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.465857,150.522717,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.824882,153.303135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,26,Australia,AU,New South Wales,-34.438278,150.617426,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041A,1,FEMALE,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,22,Australia,AU,New South Wales,-31.453851,152.921401,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.932217,152.412613,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,3,26,Australia,AU,New South Wales,-29.487383,153.102819,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.38657,150.627397,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.436398,150.603334,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-31.478788,152.918992,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-33.798157,150.067591,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.43773,150.517879,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004022,1,,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-28.710095,153.487575,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.432249,150.605542,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-36.17393,149.238283,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-31.919808,152.379291,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,6,Australia,AU,New South Wales,-32.791268,151.850512,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.389333,150.626721,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.840581,153.360617,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080105,1,,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-32.585015,151.773366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.388832,150.624103,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-29.490675,153.10931,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-29.500849,153.10033,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,11,7,Australia,AU,New South Wales,-31.632377,152.785517,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-31.226452,152.456854,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022511,1,MALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-32.563716,151.76716,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181F,1,,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-28.582341,153.212171,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-31.457637,152.909109,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.455932,150.657608,EPSG:4326 +HUMAN_OBSERVATION,OMWG06090500,1,,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-28.783147,152.090208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.389966,150.63101,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042F,1,,occurrenceRemarks withheld,2022,12,27,Australia,AU,New South Wales,-34.03722,151.024977,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-31.424978,152.875853,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.454002,150.520945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.453418,150.525054,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-29.834008,150.846051,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-30.24125,152.90259,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-29.490904,153.109294,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.421331,150.627285,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.455855,150.657839,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003830,1,FEMALE,occurrenceRemarks withheld,2023,2,14,Australia,AU,New South Wales,-28.66879,153.517743,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022604,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.90373,152.749453,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.343688,152.607622,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,9,6,Australia,AU,New South Wales,-28.826227,153.300639,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.417522,150.633072,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.447449,150.518799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.43286,150.611433,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-31.447463,152.925776,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.4578,150.659134,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-31.430976,152.894407,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-34.046067,151.013272,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240G,1,,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-32.75184,152.104554,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,17,Australia,AU,New South Wales,-33.704004,150.786644,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190M,1,,occurrenceRemarks withheld,2024,7,8,Australia,AU,New South Wales,-32.599567,151.6097,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.797683,152.812671,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-28.446447,153.052888,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.458,150.526062,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.464077,150.52388,EPSG:4326 +HUMAN_OBSERVATION,OJJS19043000;ODMP22022701,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-33.967159,150.921108,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OPJG19103002,1,,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-31.256682,152.824789,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,ODMP22111608,1,,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-34.471482,150.466231,EPSG:4326 +HUMAN_OBSERVATION,OPUR15101800,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-30.489931,151.641541,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.453489,150.520122,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OPXE96061101,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-31.651825,152.809452,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,4,21,Australia,AU,New South Wales,-28.836206,153.135067,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.436618,150.519043,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154M,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-28.569438,153.4034,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-30.33686,153.095191,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-30.192663,152.777388,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.401797,150.651244,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.419083,150.609529,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102111,1,,occurrenceRemarks withheld,2024,8,10,Australia,AU,New South Wales,-32.609009,151.649295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419134,150.610289,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66111,153.60863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.415357,150.639997,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-29.485585,153.103827,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.465734,150.521578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.447544,150.516391,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-28.640459,153.627963,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-29.490395,153.107969,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.420687,150.609027,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-29.484063,153.104101,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.387095,150.630786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.396374,150.644424,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.13972,150.79662,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-29.487514,153.103677,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-29.002832,152.929449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.491546,150.639049,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.388416,150.631488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.431381,150.615098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.458238,150.659383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.491554,150.638973,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.456291,152.881577,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-31.465408,152.898257,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.394302,150.642155,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-32.636285,151.64197,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190B,1,,occurrenceRemarks withheld,2023,2,4,Australia,AU,New South Wales,-34.3372,150.746057,EPSG:4326 +HUMAN_OBSERVATION,OPJG22120100,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-32.417866,152.249903,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-34.109219,150.807222,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.462311,150.534642,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100M,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.407595,152.872573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.393657,150.640976,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.813462,153.334493,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-29.490189,153.108146,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,6,26,Australia,AU,New South Wales,-31.435459,152.916678,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-31.455807,152.911976,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.421307,150.627438,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-31.44848,152.878917,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-29.48431,153.104079,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,MALE,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-28.960044,153.395129,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.451451,150.522326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.469939,150.530673,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.415306,150.597583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.46578,150.521609,EPSG:4326 +HUMAN_OBSERVATION,SCHM-035,1,,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-34.376047,150.759286,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-32.706118,152.063426,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-28.685331,153.497035,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-31.572524,152.817813,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-29.485566,153.103774,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.431102,150.61652,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100501,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.535463,152.84256,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,MALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.823205,153.308213,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-29.489591,153.103929,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,9,10,Australia,AU,New South Wales,-31.444746,152.915958,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-31.099703,152.822405,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.427302,150.604769,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.448269,150.519221,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-32.228945,152.192632,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,7,4,Australia,AU,New South Wales,-33.776844,150.10107,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-28.822516,153.275348,EPSG:4326 +HUMAN_OBSERVATION,OLHP24020801,1,,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-31.453439,152.880918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.420707,150.609102,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,10,Australia,AU,New South Wales,-29.485496,153.103945,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,11,Australia,AU,New South Wales,-31.481276,152.919471,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.423807,150.637333,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-31.436271,152.896556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.383282,150.623358,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-29.632753,152.896852,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.448796,150.516735,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-29.632753,152.896852,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-29.667173,152.868002,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-33.965225,150.968372,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041302,1,,occurrenceRemarks withheld,2021,1,22,Australia,AU,New South Wales,-31.944004,152.413267,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-28.914209,153.319984,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,20,Australia,AU,New South Wales,-29.48565,153.103731,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.427476,150.603045,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-34.124693,150.812345,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070B,1,,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-32.768798,152.036145,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052009,1,,occurrenceRemarks withheld,2022,3,11,Australia,AU,New South Wales,-31.424534,152.89648,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,2,17,Australia,AU,New South Wales,-33.554436,149.737638,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-31.464743,152.927809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.446408,150.514129,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-28.289961,153.396987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.466688,150.52106,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-33.706694,150.786883,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.448834,150.516832,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.430731,150.611374,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.502513,152.893999,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,19,Australia,AU,New South Wales,-33.713976,150.785669,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.418871,150.638963,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.440238,150.603801,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.457223,150.606059,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031502,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-28.829658,153.297464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.456123,150.657734,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-29.346563,152.944433,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131Q,1,FEMALE,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-31.444505,152.926102,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-34.021692,150.991638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.433719,150.617099,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-30.380655,153.032588,EPSG:4326 +HUMAN_OBSERVATION,ODFK24030504,1,,occurrenceRemarks withheld,2024,2,22,Australia,AU,New South Wales,-32.714161,152.158305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.420985,150.63033,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-32.032221,152.488711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.49198,150.640028,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-30.383649,152.99566,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,6,17,Australia,AU,New South Wales,-29.018366,153.39589,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.385331,150.626725,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-34.095124,150.983387,EPSG:4326 +HUMAN_OBSERVATION,ODMP2302060B,1,FEMALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-34.166609,150.732148,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-29.480023,153.09114,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-34.024433,150.990995,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-30.251169,152.790456,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.44302,152.886806,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.420958,150.627546,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,4,23,Australia,AU,New South Wales,-31.473967,152.801183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.418796,150.609113,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-34.069695,150.840124,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-34.202843,150.794816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.465716,150.520229,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.494402,150.640809,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-29.485562,153.103779,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.465758,150.520543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.399291,150.644223,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.465321,150.520763,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.454479,150.515576,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-29.726469,152.928856,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-31.94825,152.30042,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,15,Australia,AU,New South Wales,-29.484334,153.104004,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022418,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-32.747066,152.169342,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-31.94825,152.30042,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.44655,150.51715,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.434829,150.605631,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152M,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-28.262928,153.396523,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,2,14,Australia,AU,New South Wales,-31.44468,152.916577,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.42279,150.637438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.396923,150.645311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.420511,150.611556,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-32.2346,152.20833,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.466747,150.520862,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.297917,149.316653,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.425043,150.599883,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-30.372653,153.009982,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.478566,150.53375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.418869,150.632816,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-30.38896,152.94349,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020301,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-31.442945,152.904996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.429209,150.615138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.421037,150.630264,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.435472,150.61546,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.493011,150.639269,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,6,24,Australia,AU,New South Wales,-34.4908,150.47206,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-29.492883,153.093531,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,FEMALE,occurrenceRemarks withheld,2022,9,17,Australia,AU,New South Wales,-34.124693,150.812345,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,29,Australia,AU,New South Wales,-36.145066,149.32655,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-32.736579,152.081127,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,10,Australia,AU,New South Wales,-28.259701,153.402251,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.434544,150.616423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.451573,150.517241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.389836,150.627544,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,18,Australia,AU,New South Wales,-28.804711,152.888522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.446361,150.51672,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-30.46223,152.902289,EPSG:4326 +HUMAN_OBSERVATION,OPJG21060804,1,,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-30.888511,152.886575,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.433216,150.616765,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.465635,150.522462,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.420913,150.627558,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,12,27,Australia,AU,New South Wales,-31.472744,152.926893,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-31.449126,152.817219,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,10,22,Australia,AU,New South Wales,-33.12617,151.11261,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122102,1,,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-31.875324,152.367889,EPSG:4326 +HUMAN_OBSERVATION,OIXR16111000;OMRF21071000,1,FEMALE,occurrenceRemarks withheld,2023,6,12,Australia,AU,New South Wales,-34.114803,150.940765,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR16092800;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-28.63691,153.5914,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303280D,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-31.429334,152.815305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.421524,150.627476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.447964,150.524203,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.387803,150.631484,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-28.891935,153.357334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.420224,150.635258,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.393124,150.645146,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-29.488821,153.101966,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.541583,150.016902,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-34.053072,150.879793,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.869015,153.335481,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.44537,150.516314,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152V,1,MALE,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-28.857815,153.276239,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.438862,150.604874,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.481468,150.532826,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-31.456518,152.893571,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.423817,150.637387,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,1,12,Australia,AU,New South Wales,-31.454527,152.926382,EPSG:4326 +HUMAN_OBSERVATION,OPXE96061101,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.97575,153.406485,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-29.484366,153.104074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.386799,150.627119,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.420864,150.630171,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-31.951946,152.295075,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251W,1,,occurrenceRemarks withheld,2020,12,25,Australia,AU,New South Wales,-32.723846,152.13899,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-29.491025,153.108119,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-31.932266,152.412543,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-33.716876,150.784018,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052702,1,,occurrenceRemarks withheld,2024,3,25,Australia,AU,New South Wales,-32.699885,151.583393,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-28.260532,153.400089,EPSG:4326 +HUMAN_OBSERVATION,ODFK24051402,1,,occurrenceRemarks withheld,2024,3,15,Australia,AU,New South Wales,-34.47006,150.44189,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031P,1,,occurrenceRemarks withheld,2023,5,21,Australia,AU,New South Wales,-33.560279,150.678615,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.391015,150.628359,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,13,Australia,AU,New South Wales,-29.478034,153.103849,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,5,25,Australia,AU,New South Wales,-29.007408,153.274431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.454992,150.519545,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-28.864618,153.293195,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-32.713622,152.162699,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-28.63844,153.316288,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.464995,150.522459,EPSG:4326 +HUMAN_OBSERVATION,OJJS12081504,1,FEMALE,occurrenceRemarks withheld,2023,2,26,Australia,AU,New South Wales,-32.727503,152.083773,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.447102,150.515915,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150R,1,,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-33.773491,150.633756,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-31.479148,152.921277,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-31.631593,152.778695,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-28.653247,153.306193,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-29.47993,153.104096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.421557,150.627322,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.427599,150.594631,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,9,Australia,AU,New South Wales,-28.809314,153.288292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.445852,150.514755,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.454993,150.610062,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-31.472074,152.732519,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,21,Australia,AU,New South Wales,-31.91282,152.385759,EPSG:4326 +HUMAN_OBSERVATION,ODMP99082301,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-31.566678,152.192918,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-34.53402,150.627594,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071101,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-32.649546,152.040472,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072600;OPJG22072601,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-28.257627,153.400686,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083007,1,,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-34.043136,151.002296,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-34.446481,150.51996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.439093,150.603344,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.430904,150.611466,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.256329,152.746224,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,24,Australia,AU,New South Wales,-28.667703,153.517337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.418306,150.632625,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.465793,150.522273,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.465663,150.520274,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-31.437377,152.895278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.428862,150.615398,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,FEMALE,occurrenceRemarks withheld,2021,1,17,Australia,AU,New South Wales,-34.150289,150.824101,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,8,9,Australia,AU,New South Wales,-28.627209,153.006019,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022603,1,FEMALE,occurrenceRemarks withheld,2020,2,24,Australia,AU,New South Wales,-31.466482,152.914346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.434924,150.603104,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130C,1,,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-31.47209,152.933578,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151Q,1,,occurrenceRemarks withheld,2022,8,29,Australia,AU,New South Wales,-28.552523,153.169695,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.827996,153.303174,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,27,Australia,AU,New South Wales,-35.074457,150.122613,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.551144,149.998977,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-29.48559,153.103811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.391614,150.644405,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,19,Australia,AU,New South Wales,-29.480194,153.104246,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-32.283338,151.984444,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.465596,150.52808,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.463788,150.525205,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,7,6,Australia,AU,New South Wales,-31.467655,152.905478,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,25,Australia,AU,New South Wales,-29.480341,153.10409,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,3,19,Australia,AU,New South Wales,-29.848616,150.882544,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.400098,150.639751,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.439345,150.603761,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,4,24,Australia,AU,New South Wales,-36.334367,149.326049,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.102113,150.822621,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-31.262194,152.961042,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-28.829788,153.265653,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-29.489526,153.103865,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.428089,150.600743,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-30.301528,153.095675,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-31.436121,152.90555,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,1,15,Australia,AU,New South Wales,-28.888539,153.299542,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.435535,150.615448,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.298474,149.317977,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-29.66734,152.867761,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.399685,150.617521,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-34.076804,150.846913,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-31.636001,152.787661,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-28.62343,153.425778,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-34.13811,150.792467,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-29.488233,153.092165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.46569,150.521612,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.417611,150.633015,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,1,25,Australia,AU,New South Wales,-28.815967,153.322439,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003970,1,,occurrenceRemarks withheld,2023,8,29,Australia,AU,New South Wales,-28.710546,153.523134,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.419787,150.610031,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100501,1,,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-31.600288,152.780912,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-34.188134,150.790596,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.436494,150.603669,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.382862,150.623098,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,20,Australia,AU,New South Wales,-29.482209,153.104235,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.541583,150.016902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.43518,150.608353,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.452536,150.522904,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152A,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-28.943486,153.316426,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-31.443867,152.898276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.450125,150.516522,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,26,Australia,AU,New South Wales,-29.489587,153.10394,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-29.490572,153.108124,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-29.485165,153.104042,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,20,Australia,AU,New South Wales,-29.489895,153.110533,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-31.486389,152.917291,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.433536,150.616984,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-33.713283,150.784697,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,8,Australia,AU,New South Wales,-33.712923,150.785887,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-29.487957,153.091307,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140J,1,,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-31.458083,152.927149,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-29.490581,153.10939,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-28.380908,153.564393,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-34.444093,150.514698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.396366,150.642119,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,5,Australia,AU,New South Wales,-34.442655,150.613983,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W;ODMP23040405,1,FEMALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-32.739099,152.059278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419623,150.611766,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-33.431233,150.618086,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-31.95843,152.390764,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.653467,152.745544,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-32.710853,152.065339,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080900,1,MALE,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-32.71748,151.718235,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,6,11,Australia,AU,New South Wales,-36.436911,149.961856,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-33.706305,150.786387,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,22,Australia,AU,New South Wales,-34.439904,150.615737,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-31.800914,152.42434,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060K,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-32.562904,151.795108,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.929063,153.317852,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.442329,150.529963,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-28.679198,153.525899,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.233822,151.727327,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-29.485632,153.103763,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-31.460451,152.917671,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-34.19702,150.789656,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.420341,150.627335,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-28.84733,153.182249,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,MALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.840527,153.360699,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.422569,150.604284,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-29.478823,153.104176,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,13,Australia,AU,New South Wales,-28.711586,153.446229,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.447187,150.513018,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.47012,150.516463,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.436103,150.616411,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-31.443867,152.898276,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-31.460184,152.893571,EPSG:4326 +HUMAN_OBSERVATION,OPRS04081700,1,,occurrenceRemarks withheld,2022,1,2,Australia,AU,New South Wales,-28.905523,152.382958,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.398701,150.621181,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-33.991958,150.89266,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,17,Australia,AU,New South Wales,-33.704792,150.784888,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.680336,149.96634,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042R,1,MALE,occurrenceRemarks withheld,2022,7,8,Australia,AU,New South Wales,-29.673289,152.874367,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022528,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-32.722588,152.014745,EPSG:4326 +HUMAN_OBSERVATION,OJBL96121700,1,,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-33.185386,149.174291,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100501,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-31.297039,152.879142,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-34.098321,150.808591,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,1,MALE,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-28.626458,153.427967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419623,150.611766,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2024,2,18,Australia,AU,New South Wales,-29.609175,150.861647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.436444,150.615846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.386219,150.626526,EPSG:4326 +HUMAN_OBSERVATION,OJSD07060700;OJSD22030700,1,,occurrenceRemarks withheld,2021,12,16,Australia,AU,New South Wales,-34.893436,150.095163,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,3,Australia,AU,New South Wales,-28.823968,153.310281,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.588285,149.913134,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-32.710502,152.072106,EPSG:4326 +HUMAN_OBSERVATION,OJJS1912230T,1,MALE,occurrenceRemarks withheld,2020,1,18,Australia,AU,New South Wales,-29.751646,152.772924,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,19,Australia,AU,New South Wales,-29.486402,153.103393,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.431953,150.61346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.440619,150.515399,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.465375,150.521665,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.392358,150.633487,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.464964,150.522722,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004197,1,,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-28.864606,153.293128,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,16,Australia,AU,New South Wales,-29.479131,153.104208,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002802,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-29.38273,153.158437,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.488401,150.635393,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003919,1,,occurrenceRemarks withheld,2023,5,7,Australia,AU,New South Wales,-28.711453,153.291336,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-31.455623,152.926392,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,11,17,Australia,AU,New South Wales,-32.709004,152.064604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.440368,150.603993,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-31.92589,152.401531,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-34.027187,150.988756,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050C,1,,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-31.454628,152.908565,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,25,Australia,AU,New South Wales,-34.068368,150.913678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.388129,150.624591,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190J,1,,occurrenceRemarks withheld,2023,2,1,Australia,AU,New South Wales,-34.069903,150.848102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.421749,150.636292,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,12,4,Australia,AU,New South Wales,-31.444425,152.926635,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.528203,152.837037,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040432,1,MALE,occurrenceRemarks withheld,2023,2,22,Australia,AU,New South Wales,-30.161511,152.577303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.395751,150.646693,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-30.450237,153.048473,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.456226,150.606707,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,12,Australia,AU,New South Wales,-29.485594,153.10379,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,6,6,Australia,AU,New South Wales,-33.785313,150.068806,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080905,1,,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-31.942993,152.304704,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003970,1,,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-28.249424,153.479122,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004184,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-28.745332,153.205909,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.443874,150.514541,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-34.105455,150.977173,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-32.224416,152.194095,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-28.868027,153.336688,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001401,1,,occurrenceRemarks withheld,2023,3,16,Australia,AU,New South Wales,-28.951021,153.375992,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.385836,150.625384,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-29.483652,153.104133,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,23,Australia,AU,New South Wales,-31.452901,152.925648,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-29.489525,153.104163,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-28.386314,153.565173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.420535,150.637393,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.435627,150.615543,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,15,Australia,AU,New South Wales,-29.488387,153.092347,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-30.428423,152.972092,EPSG:4326 +HUMAN_OBSERVATION,ODFK24101400,1,,occurrenceRemarks withheld,2024,9,18,Australia,AU,New South Wales,-34.255293,150.705301,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-31.236216,152.907276,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-34.156389,150.827792,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.447359,150.518813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.388858,150.62593,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-31.503341,152.828116,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,3,Australia,AU,New South Wales,-29.485669,153.103859,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,4,Australia,AU,New South Wales,-28.595952,153.506151,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.186068,153.002944,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100L,1,,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-32.73295,152.030408,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004268,1,,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-28.813946,153.310656,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.485564,150.636017,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080307,1,FEMALE,occurrenceRemarks withheld,2022,2,26,Australia,AU,New South Wales,-28.959097,153.393838,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,12,Australia,AU,New South Wales,-28.864641,153.29311,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-31.12493,152.806267,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,8,15,Australia,AU,New South Wales,-28.385548,153.562111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.452484,150.610852,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-34.196939,150.790454,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.388249,150.631689,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.426255,150.605136,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150W,1,MALE,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-29.655259,152.875873,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.447163,150.513127,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-31.676443,152.803577,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.427635,150.59463,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003864,1,,occurrenceRemarks withheld,2023,2,16,Australia,AU,New South Wales,-28.646094,153.168833,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.419135,150.610333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.388222,150.6317,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-31.630403,152.784393,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-31.200466,152.820736,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.643823,152.79443,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,12,Australia,AU,New South Wales,-29.49025,153.108183,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OJJS10010400,1,,occurrenceRemarks withheld,2020,1,,Australia,AU,New South Wales,-28.299886,153.550649,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.130318,152.819273,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040432,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-30.36316,153.090869,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-34.068546,150.842335,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-28.991215,153.437014,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,MALE,occurrenceRemarks withheld,2020,4,28,Australia,AU,New South Wales,-32.619858,151.635618,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-31.452438,152.926364,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-30.408334,153.00184,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,MALE,occurrenceRemarks withheld,2024,4,23,Australia,AU,New South Wales,-34.093875,150.984067,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.42057,150.628493,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.465966,150.521887,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.487743,150.634921,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.834226,153.364275,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-28.826448,153.221268,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072703;OLHP23072704,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.595466,152.190211,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.394666,150.643754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.432937,150.604325,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,12,27,Australia,AU,New South Wales,-31.918776,152.371368,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-29.762752,151.110282,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,,occurrenceRemarks withheld,2023,6,24,Australia,AU,New South Wales,-28.960427,153.394458,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.163407,150.789703,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022608,1,,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-32.516009,151.682329,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-29.490642,153.099305,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002776,1,FEMALE,occurrenceRemarks withheld,2023,5,28,Australia,AU,New South Wales,-29.462823,153.1442,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,9,Australia,AU,New South Wales,-28.715282,153.595655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.383851,150.622939,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.465699,150.521622,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110U,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-31.45018,152.92898,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004232,1,,occurrenceRemarks withheld,2023,7,19,Australia,AU,New South Wales,-28.600327,153.038068,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,2,22,Australia,AU,New South Wales,-30.886911,153.071416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.447971,150.517848,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041D,1,,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-33.623333,149.547784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.431477,150.604367,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.4354,150.614548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.421061,150.630078,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.435517,150.603501,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-33.716998,150.785601,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.459926,150.525483,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-29.79097,152.612585,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.394384,150.632386,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040P,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-29.970178,151.228889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.389922,150.627792,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,FEMALE,occurrenceRemarks withheld,2024,6,13,Australia,AU,New South Wales,-33.127366,151.244903,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004110,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.637434,153.629579,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.396313,150.644056,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-31.450848,152.926619,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-28.387194,153.561808,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,14,Australia,AU,New South Wales,-33.716273,150.784436,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.431945,150.613537,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,7,Australia,AU,New South Wales,-28.398821,153.555987,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004074,1,MALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-28.430168,153.017501,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.428567,150.600316,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.420993,150.62798,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-31.485819,152.916255,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.637869,153.628829,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.389576,150.627138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.458617,150.65614,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.431346,150.615175,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.432593,150.606065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.41846,150.633557,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2021,11,8,Australia,AU,New South Wales,-32.71047,152.065356,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.433757,150.617207,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-28.619982,153.400236,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.385818,150.627223,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101301,1,,occurrenceRemarks withheld,2022,5,25,Australia,AU,New South Wales,-28.260385,153.470424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.446449,150.518383,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211F,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-32.7278,152.1056,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152K,1,,occurrenceRemarks withheld,2022,12,10,Australia,AU,New South Wales,-28.664221,153.527273,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.428586,150.595745,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-31.463506,152.924552,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-31.452436,152.925607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.451969,150.517196,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.680336,149.96634,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-29.633056,152.898027,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,3,14,Australia,AU,New South Wales,-36.572524,149.950373,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-28.840874,153.44948,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-29.490255,153.108135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.439555,150.603908,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-29.490287,153.108108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.390672,150.627412,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.392835,150.639499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.447096,150.519604,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-28.367915,153.561622,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-29.490525,153.109406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.397396,150.627787,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-28.260334,153.401775,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.437009,150.603251,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-29.014938,153.395258,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150U,1,,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-31.732206,152.697671,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.949626,153.316981,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100515,1,MALE,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-31.474775,152.897185,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.060984,150.866027,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,7,Australia,AU,New South Wales,-29.487831,153.102449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.434861,150.520412,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-30.099383,152.177441,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,12,8,Australia,AU,New South Wales,-34.304895,150.738044,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-28.68591,153.585513,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041307,1,MALE,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-34.076776,150.860748,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OPUR20072800,1,MALE,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-31.901432,151.630683,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.006923,151.003682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.392377,150.633497,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.839565,153.279241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.488515,150.637523,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-32.6999,152.064802,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.454723,150.519618,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-29.485501,153.103688,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,8,20,Australia,AU,New South Wales,-31.435008,152.91109,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-36.474664,149.917922,EPSG:4326 +HUMAN_OBSERVATION,OIXR16111000;OMFZ2303230D,1,MALE,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-34.098106,150.808212,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-33.708358,150.786963,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.437369,150.605505,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,18,Australia,AU,New South Wales,-29.484936,153.103849,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.420559,150.629777,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-31.481592,152.921058,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-29.491609,153.099804,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.397604,150.623181,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,11,Australia,AU,New South Wales,-28.797271,153.508305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.471009,150.530979,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072703;OLHP23072704,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.594578,152.191009,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-33.785296,150.06885,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-28.650599,153.307078,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.429679,150.614276,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-34.10038,150.820358,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021511,1,,occurrenceRemarks withheld,2024,1,1,Australia,AU,New South Wales,-31.465297,152.923871,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.219628,152.19096,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-33.767431,150.009996,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-28.568742,153.420863,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-30.36749,153.07464,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111309,1,MALE,occurrenceRemarks withheld,2023,12,10,Australia,AU,New South Wales,-31.883968,151.772093,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-28.651703,153.559426,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,31,Australia,AU,New South Wales,-29.490124,153.110495,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-29.667285,152.867804,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140E,1,,occurrenceRemarks withheld,2024,4,14,Australia,AU,New South Wales,-31.252398,152.961703,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070307,1,,occurrenceRemarks withheld,2024,5,23,Australia,AU,New South Wales,-32.63437,149.852008,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.470088,150.529134,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-29.490493,153.109401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.420667,150.630677,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,3,4,Australia,AU,New South Wales,-33.71302,150.784488,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,MALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-34.052728,150.849318,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-31.934544,152.414319,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070B,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-32.765376,152.034828,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.420733,150.609058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.389352,150.626775,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-34.537087,150.627594,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.959924,153.395241,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-28.688154,153.589902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.424428,150.603012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.45988,150.525419,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.797114,152.812651,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.490726,150.638615,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,25,Australia,AU,New South Wales,-33.704802,150.786591,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210B,1,,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-29.465325,149.845921,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.436196,150.606844,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153B,1,FEMALE,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-28.706371,153.47974,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-31.43711,152.909378,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-28.260467,153.403014,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131H,1,,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-31.467283,152.913704,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-33.527054,150.659716,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-32.705926,152.063097,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-28.393779,153.55781,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-33.778588,150.102382,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251O,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-32.724958,152.075379,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-28.959014,153.394104,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,6,26,Australia,AU,New South Wales,-30.47493,152.964525,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,FEMALE,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-34.07365,150.834591,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,3,13,Australia,AU,New South Wales,-31.466409,152.913629,EPSG:4326 +HUMAN_OBSERVATION,OPJG09091000,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-30.117962,152.791122,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.466158,150.522904,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,11,Australia,AU,New South Wales,-31.436446,152.905893,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-31.479905,152.921248,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-31.446136,152.915487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.446142,150.516585,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.465357,150.520773,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-28.959391,153.395778,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012900,1,MALE,occurrenceRemarks withheld,2024,1,21,Australia,AU,New South Wales,-32.303046,152.336801,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-33.717016,150.785259,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,20,Australia,AU,New South Wales,-29.490035,153.101032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.431516,150.611873,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040406,1,,occurrenceRemarks withheld,2024,3,26,Australia,AU,New South Wales,-31.021143,152.786604,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-31.457538,152.918039,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,3,9,Australia,AU,New South Wales,-28.408427,153.55628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.420649,150.630666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.41822,150.63563,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,4,3,Australia,AU,New South Wales,-34.094528,150.985519,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,3,14,Australia,AU,New South Wales,-29.483474,153.095217,EPSG:4326 +HUMAN_OBSERVATION,Obs_1038,1,,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-31.451537,152.913412,EPSG:4326 +HUMAN_OBSERVATION,OJSD07060700;OJSD24021400,1,,occurrenceRemarks withheld,2022,1,5,Australia,AU,New South Wales,-34.94176,150.01907,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090405,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-34.098641,150.808072,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.455222,150.607041,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041304,1,,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-31.306659,152.867615,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.447154,150.513171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.489471,150.633849,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.720736,151.991496,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-31.446418,152.927533,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-31.439135,152.904992,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.447175,152.928154,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.073634,150.869012,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-29.48559,153.103779,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-28.603257,153.517868,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.420649,150.630677,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,2,13,Australia,AU,New South Wales,-29.490163,153.108194,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190F,1,MALE,occurrenceRemarks withheld,2024,7,27,Australia,AU,New South Wales,-32.67789,152.090778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.426679,150.603318,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010702,1,FEMALE,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-29.493053,153.093981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.396305,150.6441,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.418815,150.60921,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308251K,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-32.66227,152.1748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.453948,150.520968,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-34.107382,150.976466,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260V,1,FEMALE,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-32.759253,152.10379,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-31.476726,152.912439,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-34.52396,150.52266,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042A,1,FEMALE,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-31.520218,150.619592,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-29.629872,152.896425,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-29.485155,153.103999,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,MALE,occurrenceRemarks withheld,2023,6,13,Australia,AU,New South Wales,-28.849671,153.307876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.421189,150.627366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-34.438576,150.516494,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,13,Australia,AU,New South Wales,-29.476708,153.104954,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-33.713335,150.784596,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-28.386326,153.567264,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.447394,150.518757,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,21,Australia,AU,New South Wales,-28.830147,153.217711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.383821,150.622831,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-31.450539,152.879459,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-34.90695,150.065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.443838,150.514542,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-33.781278,150.070099,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022416,1,,occurrenceRemarks withheld,2022,10,9,Australia,AU,New South Wales,-32.700276,152.064748,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-34.474,150.556772,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131D,1,,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-31.930647,152.408778,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,5,24,Australia,AU,New South Wales,-32.653442,151.790311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.471439,150.530379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.427383,150.59467,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083002,1,,occurrenceRemarks withheld,2022,7,15,Australia,AU,New South Wales,-34.069614,150.835088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.465698,150.521579,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436263,150.615786,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.738728,153.118622,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.454752,150.608349,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.453979,150.520293,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090H;OLHP2401090I,1,FEMALE,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-32.059455,152.542519,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-29.48545,153.103913,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.429684,150.618214,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.834226,153.364275,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,18,Australia,AU,New South Wales,-29.488284,153.110104,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.949626,153.316981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.392722,150.639241,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-28.818704,153.334105,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.437018,150.604187,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-34.04571,151.008201,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.421794,150.63628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.458611,150.664271,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.388572,150.629298,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-33.713006,150.784369,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-32.764638,152.115731,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-28.260082,153.402888,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.086874,150.977887,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.488695,150.634263,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004014,1,,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-28.554883,153.50578,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303280D,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-31.432936,152.814117,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-28.680984,153.535133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.479936,150.534178,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-29.487995,153.091714,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.475744,150.532853,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.39684,150.641942,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030G,1,,occurrenceRemarks withheld,2022,5,6,Australia,AU,New South Wales,-32.730489,152.139945,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-33.711056,150.786582,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004158,1,MALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.390018,153.562417,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.618562,149.923643,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-30.44132,153.03637,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-28.254464,153.495958,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.385616,150.626554,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.679647,153.277434,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.411373,150.596576,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210P,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-32.72132,152.14217,EPSG:4326 +HUMAN_OBSERVATION,CHADL,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-28.974364,153.357539,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-31.447997,152.905969,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,29,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030503,1,,occurrenceRemarks withheld,2024,2,6,Australia,AU,New South Wales,-34.112959,150.808653,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.466434,150.521394,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,3,18,Australia,AU,New South Wales,-32.767294,152.021341,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-29.490287,153.108156,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.447288,150.51308,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.394206,150.644213,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130J,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-31.451443,152.914421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.438875,150.604613,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.392927,150.633025,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.491634,150.638905,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.383991,150.623218,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-29.490283,153.108189,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-29.478048,153.103945,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;ORSF21090200,1,MALE,occurrenceRemarks withheld,2021,,,Australia,AU,New South Wales,-32.398918,149.832918,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040Q,1,MALE,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-32.940485,151.545956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.445854,150.517486,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-31.436646,152.924671,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,17,Australia,AU,New South Wales,-31.352268,152.710128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.387796,150.631593,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,2,Australia,AU,New South Wales,-33.706054,150.786632,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-29.48566,153.103452,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-28.810812,153.332297,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,3,24,Australia,AU,New South Wales,-31.47263,152.902616,EPSG:4326 +HUMAN_OBSERVATION,OJJS21010503,1,,occurrenceRemarks withheld,2020,12,19,Australia,AU,New South Wales,-33.716411,151.255203,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-29.490623,153.108156,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090600,1,,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-33.675392,149.467872,EPSG:4326 +HUMAN_OBSERVATION,OKEM14042900,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-34.112754,150.804938,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.394496,150.630284,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,3,1,Australia,AU,New South Wales,-34.028088,150.989977,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,28,Australia,AU,New South Wales,-28.661852,153.424076,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-32.724694,152.073064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.466181,150.523143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.395372,150.629878,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-29.477516,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.445799,150.517444,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,7,22,Australia,AU,New South Wales,-29.483778,153.10416,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,11,Australia,AU,New South Wales,-28.646412,153.315805,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.492859,150.640254,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.430015,150.614429,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.430853,150.615787,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,23,Australia,AU,New South Wales,-30.645072,152.622044,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.394053,150.642792,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003975,1,FEMALE,occurrenceRemarks withheld,2023,5,29,Australia,AU,New South Wales,-28.824422,153.299609,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-34.091121,150.985583,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,4,24,Australia,AU,New South Wales,-36.334367,149.326049,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-28.864547,153.158339,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-31.458097,152.922637,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.402376,150.64989,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.435092,150.618191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.457712,150.606632,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,1,3,Australia,AU,New South Wales,-29.515009,152.811713,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-34.183991,150.765222,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-34.082897,150.852539,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,10,Australia,AU,New South Wales,-29.485566,153.103752,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031515,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-28.389261,153.561887,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,6,18,Australia,AU,New South Wales,-32.54243,151.60952,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-34.446479,150.519883,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300W,1,,occurrenceRemarks withheld,2023,6,10,Australia,AU,New South Wales,-32.726559,152.010489,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-30.135857,152.7309,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031506,1,FEMALE,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-28.813325,153.336079,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-34.313685,150.724478,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.554124,150.021287,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-31.502322,152.872707,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-28.81654,153.27897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.423843,150.637343,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-32.706693,152.063839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457961,150.531276,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-28.707346,153.522731,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.491736,150.639088,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003887,1,FEMALE,occurrenceRemarks withheld,2023,3,11,Australia,AU,New South Wales,-28.820484,153.302999,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.458426,150.661664,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.421794,150.636302,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,18,Australia,AU,New South Wales,-31.437879,152.906092,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211M,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-32.728022,152.085863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.452557,150.519943,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260S,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-31.941586,152.436872,EPSG:4326 +HUMAN_OBSERVATION,ODMP22111605,1,,occurrenceRemarks withheld,2022,10,28,Australia,AU,New South Wales,-28.959236,153.393988,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.441179,150.517244,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.436122,150.616443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.446338,150.513794,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153N,1,,occurrenceRemarks withheld,2022,8,18,Australia,AU,New South Wales,-28.362491,153.576852,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-29.492883,153.093531,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,,occurrenceRemarks withheld,2024,9,12,Australia,AU,New South Wales,-34.628611,146.395649,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.11312,150.8107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.431366,150.603304,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251G,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-32.729432,152.106037,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,FEMALE,occurrenceRemarks withheld,2020,2,6,Australia,AU,New South Wales,-36.129686,149.382156,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-29.490156,153.107953,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251G,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-32.732973,152.100856,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.465806,150.521565,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.458864,150.515751,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.446426,150.513715,EPSG:4326 +HUMAN_OBSERVATION,ODMP1003011Y,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-31.28282,152.8249,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,FEMALE,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-31.9267,152.352738,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.422417,150.607117,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.389877,150.625477,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-29.489806,153.101741,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.432849,150.607636,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419753,150.611501,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-28.655745,153.593048,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102203,1,,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-32.721558,152.104618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.385421,150.626755,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.435429,150.615113,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003851,1,,occurrenceRemarks withheld,2023,6,12,Australia,AU,New South Wales,-28.637398,153.629415,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-36.571216,150.000519,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-34.745129,146.535346,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-29.491805,153.096499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.422338,150.637375,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-34.51425,150.52787,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.079078,150.837261,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-31.481309,152.915701,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-28.819097,153.302093,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-30.919496,153.047023,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.4228,150.637971,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-28.598896,153.090845,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.440194,150.603824,EPSG:4326 +HUMAN_OBSERVATION,ODLA17110400,1,MALE,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-34.034446,151.030275,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.246363,151.728468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.42009,150.634403,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-29.018653,153.419362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.421795,150.636324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.490681,150.638584,EPSG:4326 +HUMAN_OBSERVATION,OJJS20051106,1,,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-30.039536,151.896698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.390392,150.625973,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-32.70652,152.064607,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-31.456103,152.920663,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-31.448131,152.893027,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,MALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-28.256099,153.401838,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.430998,150.615359,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.827996,153.303174,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.426027,150.599028,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210R,1,,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-32.709625,152.07148,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,7,6,Australia,AU,New South Wales,-29.490269,153.110179,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,2,7,Australia,AU,New South Wales,-28.636215,153.377894,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-31.521568,152.880284,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-34.520509,150.514597,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.067856,150.883438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420208,150.610335,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-31.453545,152.898308,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-31.472856,152.92434,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-31.636947,152.798233,EPSG:4326 +HUMAN_OBSERVATION,OJJS17072600,1,,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-30.539675,152.647138,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,1,Australia,AU,New South Wales,-31.444798,152.915971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.491766,150.63925,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-34.444036,150.525785,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-31.929159,152.38368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.467338,150.527756,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-28.399887,153.556289,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001177,1,,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-32.736247,152.105154,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.424363,150.603841,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.392879,150.632417,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002829,1,FEMALE,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-29.490231,153.110527,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.418414,150.633525,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.393406,150.631261,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111311,1,,occurrenceRemarks withheld,2023,10,1,Australia,AU,New South Wales,-30.387347,152.948357,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.433905,150.606354,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.41934,150.636654,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041A,1,FEMALE,occurrenceRemarks withheld,2022,11,15,Australia,AU,New South Wales,-30.480371,151.646678,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,FEMALE,occurrenceRemarks withheld,2022,12,20,Australia,AU,New South Wales,-32.59295,151.76358,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,6,30,Australia,AU,New South Wales,-28.855355,153.393819,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303200H,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-32.707448,152.07151,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,FEMALE,occurrenceRemarks withheld,2024,4,1,Australia,AU,New South Wales,-34.026228,150.990745,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.488298,150.637029,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103108,1,,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-32.738114,152.022199,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-28.327875,153.564663,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-29.726786,152.92973,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,10,Australia,AU,New South Wales,-33.715879,150.784019,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-29.49311,153.097043,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032902,1,,occurrenceRemarks withheld,2023,3,14,Australia,AU,New South Wales,-32.717849,152.072429,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,25,Australia,AU,New South Wales,-29.489148,153.101692,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-31.462672,152.9232,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,3,22,Australia,AU,New South Wales,-34.489,150.4676,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-33.707755,150.785381,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-29.490128,153.107969,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132G,1,,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-31.468948,152.92499,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-30.089162,152.160872,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-31.201726,152.336867,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.456894,150.659834,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.451378,150.522263,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.428681,150.616284,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111505,1,FEMALE,occurrenceRemarks withheld,2023,7,21,Australia,AU,New South Wales,-33.980205,150.990916,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,4,Australia,AU,New South Wales,-31.441314,152.90294,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080304,1,,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-30.343631,153.084354,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140S,1,MALE,occurrenceRemarks withheld,2022,1,22,Australia,AU,New South Wales,-34.757086,146.566731,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308251G,1,MALE,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-32.662401,152.174407,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.485689,150.637821,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-29.487901,153.09121,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-28.615874,153.399429,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-33.941253,150.938096,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,3,12,Australia,AU,New South Wales,-31.924838,152.373266,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081006,1,,occurrenceRemarks withheld,2023,3,2,Australia,AU,New South Wales,-29.489673,153.104551,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,3,9,Australia,AU,New South Wales,-31.935425,152.412806,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060502,1,,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-30.223221,153.137513,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.417713,150.633197,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150U,1,,occurrenceRemarks withheld,2024,7,5,Australia,AU,New South Wales,-32.66049,149.935533,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-33.717139,150.785289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.38288,150.623097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.465705,150.52147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.420653,150.630895,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,2,18,Australia,AU,New South Wales,-32.574764,151.778714,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,4,17,Australia,AU,New South Wales,-31.472506,152.919508,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-29.488391,153.110898,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.41908,150.610302,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-34.443437,150.527169,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.390549,150.627111,EPSG:4326 +HUMAN_OBSERVATION,OJJS06020705,1,,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-31.453522,152.741654,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-32.669038,151.715669,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,FEMALE,occurrenceRemarks withheld,2021,1,19,Australia,AU,New South Wales,-31.439373,152.904748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.385578,150.626468,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132I,1,,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-33.433332,151.254416,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,19,Australia,AU,New South Wales,-29.48954,153.103929,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,7,Australia,AU,New South Wales,-28.385784,153.563516,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-33.98064,150.991284,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140Y,1,,occurrenceRemarks withheld,2022,2,13,Australia,AU,New South Wales,-28.521908,153.091056,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.834226,153.364275,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-36.554124,150.021287,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-30.191675,152.780133,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.949626,153.316981,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.139856,150.794966,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.447136,150.513139,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-36.02428,149.367311,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.443586,152.898347,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004188,1,,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-28.699898,153.131509,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.432936,150.613933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.43114,150.615235,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,FEMALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-36.157399,149.347329,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.399127,153.555926,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.456569,150.519531,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-31.521788,152.793287,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103008,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-32.727415,152.079707,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-31.448022,152.876708,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011100,1,,occurrenceRemarks withheld,2023,11,24,Australia,AU,New South Wales,-32.711766,152.067614,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.796961,152.812724,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.082688,152.687956,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031405,1,FEMALE,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-30.405044,152.864379,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-28.588689,153.550619,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-29.488443,153.093072,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-31.126063,152.797696,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-31.125728,152.797445,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,26,Australia,AU,New South Wales,-32.705606,152.063736,EPSG:4326 +HUMAN_OBSERVATION,OPJG23060600,1,,occurrenceRemarks withheld,2024,6,3,Australia,AU,New South Wales,-30.723173,152.69167,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-31.449592,152.925273,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002841,1,,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-29.488121,153.11089,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457088,150.51797,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.447163,150.518492,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,25,Australia,AU,New South Wales,-28.864595,153.293421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418232,150.635771,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,FEMALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-34.044722,150.860668,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101V,1,,occurrenceRemarks withheld,2023,11,17,Australia,AU,New South Wales,-28.241416,153.376611,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-31.424857,152.882181,EPSG:4326 +HUMAN_OBSERVATION,OLHP24071208,1,FEMALE,occurrenceRemarks withheld,2024,6,5,Australia,AU,New South Wales,-31.445605,152.919429,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,MALE,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-32.732412,152.086083,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.435392,150.617367,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030G,1,,occurrenceRemarks withheld,2023,8,29,Australia,AU,New South Wales,-33.958689,150.93812,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.465794,150.522305,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080903,1,,occurrenceRemarks withheld,2020,12,16,Australia,AU,New South Wales,-31.561828,152.832136,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,2,10,Australia,AU,New South Wales,-33.72381,151.09599,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,8,20,Australia,AU,New South Wales,-34.092443,150.826181,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.442921,150.51692,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-29.487294,153.102787,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.820088,153.273941,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.869015,153.335481,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,1,26,Australia,AU,New South Wales,-34.08439,150.980384,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2024,7,29,Australia,AU,New South Wales,-31.475308,152.897427,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002777,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-29.492897,153.093573,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-33.703581,150.785655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.429703,150.614134,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-33.716919,150.784207,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,MALE,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-30.42508,153.01411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.423672,150.637359,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.539893,150.189109,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003870,1,,occurrenceRemarks withheld,2023,2,16,Australia,AU,New South Wales,-28.667288,153.438206,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-30.655961,151.512471,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.419992,150.602552,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050S,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-30.885809,153.07377,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-29.490231,153.109739,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,2,10,Australia,AU,New South Wales,-32.706306,152.063678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.431825,150.611973,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-31.602715,152.783061,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.43567,152.824865,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.420028,150.634481,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.900549,153.191011,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-28.386071,153.561913,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,11,13,Australia,AU,New South Wales,-31.460817,152.913496,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,10,Australia,AU,New South Wales,-31.469226,152.912336,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-32.738712,151.778603,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-29.490264,153.110157,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,3,Australia,AU,New South Wales,-28.843049,153.303492,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-34.465688,150.520632,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-29.631247,152.900022,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-33.491157,149.552092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.445995,150.51425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.439488,150.618894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.465744,150.52161,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-31.458155,152.912286,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.467883,150.529765,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-33.709626,150.786064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.419078,150.609279,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-30.198371,152.780014,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-28.864584,153.293262,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.831306,153.279705,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-31.46815,152.867462,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.454162,150.520385,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-29.490446,153.109385,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.124693,150.812345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.460182,150.518977,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,21,Australia,AU,New South Wales,-31.636635,152.787639,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.395677,150.642867,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.394039,150.630873,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.783416,152.717988,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-29.49046,153.109433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.427313,150.604845,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,6,19,Australia,AU,New South Wales,-29.015392,153.409145,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-30.19347,152.834845,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154B,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-28.7269,153.449375,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080903,1,,occurrenceRemarks withheld,2023,2,22,Australia,AU,New South Wales,-28.932837,153.004755,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.412925,150.598935,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012913,1,,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-32.174056,151.971367,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.460589,149.910112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.395658,150.641421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.455221,150.606954,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-31.468725,152.913792,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081006,1,,occurrenceRemarks withheld,2023,2,1,Australia,AU,New South Wales,-29.490479,153.107936,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.491918,150.639148,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-29.631657,152.898359,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-31.481987,152.915544,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290H,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-31.46641,152.87309,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2022,6,3,Australia,AU,New South Wales,-32.736579,152.081127,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-29.490213,153.108199,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.435392,150.615082,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.458127,150.659256,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.823877,153.283322,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140J,1,MALE,occurrenceRemarks withheld,2022,12,5,Australia,AU,New South Wales,-31.457871,152.927345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.387752,150.631181,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-28.960617,153.402665,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.585256,149.901576,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-31.466938,152.908775,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.430165,150.607777,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.437904,150.604314,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-29.488673,153.09352,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-36.554124,150.021287,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-34.20562,150.791928,EPSG:4326 +HUMAN_OBSERVATION,OPJG23021004,1,,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-30.725099,152.594683,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.390193,150.62686,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060100,1,,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-29.385608,151.543587,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.681355,149.952917,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.43274,150.609924,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OKEM14042900,1,MALE,occurrenceRemarks withheld,2024,4,3,Australia,AU,New South Wales,-34.077004,150.852167,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,6,19,Australia,AU,New South Wales,-32.878278,151.562,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-28.871274,153.220278,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-28.226932,153.494107,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-28.886197,153.224432,EPSG:4326 +HUMAN_OBSERVATION,Obs_2585,1,,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-33.234392,151.533698,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041U,1,,occurrenceRemarks withheld,2023,1,9,Australia,AU,New South Wales,-32.94131,150.1291,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,FEMALE,occurrenceRemarks withheld,2020,3,11,Australia,AU,New South Wales,-34.108852,150.807186,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-32.736579,152.081127,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,30,Australia,AU,New South Wales,-30.887417,153.071599,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.396455,150.62714,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.399607,150.616762,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.490662,150.638552,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.449025,150.5165,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,FEMALE,occurrenceRemarks withheld,2023,7,19,Australia,AU,New South Wales,-28.825407,153.299598,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.438768,150.603321,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,FEMALE,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-28.944835,153.438626,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.446383,150.513814,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221A,1,,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-32.724031,152.123795,EPSG:4326 +HUMAN_OBSERVATION,ODMP10100606,1,,occurrenceRemarks withheld,2022,9,9,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-29.668902,152.869519,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-31.46812,152.914387,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.49176,150.639359,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041N,1,MALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,1,27,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.420698,150.609135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.388906,150.624232,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,18,Australia,AU,New South Wales,-28.908281,153.343081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.418712,150.632614,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.827996,153.303174,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-29.487962,153.091795,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111503,1,FEMALE,occurrenceRemarks withheld,2022,8,22,Australia,AU,New South Wales,-32.686068,151.660903,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-33.705967,150.786139,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,MALE,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-34.058799,150.841908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.434915,150.602658,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2023,6,15,Australia,AU,New South Wales,-32.325143,152.302936,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.463761,150.525206,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-31.629722,152.787009,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081100,1,,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-31.63959,152.790648,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-34.009857,150.896202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.497067,150.535187,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-34.749729,146.558043,EPSG:4326 +HUMAN_OBSERVATION,SCHM-035,1,,occurrenceRemarks withheld,2023,6,4,Australia,AU,New South Wales,-34.268132,150.235762,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-28.649826,153.452852,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.432793,150.614002,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.389388,150.626774,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012503,1,,occurrenceRemarks withheld,2021,2,5,Australia,AU,New South Wales,-28.556338,153.516247,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2020,12,23,Australia,AU,New South Wales,-31.454216,152.924466,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.554597,149.949397,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,12,3,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-31.438588,152.881902,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-28.47843,152.83465,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-29.806714,152.810802,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021309,1,,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-31.446384,152.91585,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154N,1,,occurrenceRemarks withheld,2022,11,15,Australia,AU,New South Wales,-28.610492,152.661665,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-28.826212,153.317927,EPSG:4326 +HUMAN_OBSERVATION,OJJS06020705,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-30.877178,153.070714,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-31.460426,152.895808,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,3,Australia,AU,New South Wales,-34.439147,150.614823,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-29.479823,153.104112,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-30.088985,152.160691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.419706,150.611394,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.465705,150.52147,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-31.476069,152.922515,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,8,30,Australia,AU,New South Wales,-29.633196,152.89697,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,FEMALE,occurrenceRemarks withheld,2020,7,24,Australia,AU,New South Wales,-32.456642,151.966266,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-29.630813,152.899309,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-29.48552,153.103768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.458913,150.525273,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.386291,150.627438,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022603,1,,occurrenceRemarks withheld,2020,7,1,Australia,AU,New South Wales,-31.467004,152.908572,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003852,1,,occurrenceRemarks withheld,2023,6,11,Australia,AU,New South Wales,-28.762542,153.070695,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,10,Australia,AU,New South Wales,-33.717371,150.784216,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-28.956636,153.428988,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-28.89084,152.321627,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.442631,150.516363,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-31.443566,152.900308,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.45785,150.527133,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.620565,153.12665,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,7,Australia,AU,New South Wales,-28.398821,153.555987,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.84178,152.759299,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-31.452348,152.918504,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.46571,150.521252,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.420594,150.608855,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,30,Australia,AU,New South Wales,-30.34527,153.07758,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090407,1,MALE,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-32.772045,152.109318,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,6,18,Australia,AU,New South Wales,-32.73989,152.101463,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.38667,150.625111,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,26,Australia,AU,New South Wales,-29.031623,153.23627,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,,,Australia,AU,New South Wales,-35.81764,149.26825,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.819695,153.335341,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,5,10,Australia,AU,New South Wales,-28.649007,153.520048,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-34.17149,150.760544,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-31.43696,152.916684,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.400592,150.624315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.431575,150.605648,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240B,1,,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-32.639689,151.631647,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,6,Australia,AU,New South Wales,-29.490409,153.108054,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.492723,150.638809,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-29.490245,153.11012,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.821624,153.31185,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.449003,150.608045,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,2,3,Australia,AU,New South Wales,-29.485543,153.103784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.448807,150.518204,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032009,1,,occurrenceRemarks withheld,2022,11,14,Australia,AU,New South Wales,-32.712381,152.072518,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.39868,150.640118,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-31.652328,152.813543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.438341,150.617435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.466473,150.524234,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050B,1,,occurrenceRemarks withheld,2024,2,4,Australia,AU,New South Wales,-31.19562,152.917219,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427275,150.604781,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-31.466672,152.909052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.396897,150.641603,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181N,1,,occurrenceRemarks withheld,2022,9,10,Australia,AU,New South Wales,-28.27234,153.412043,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-33.775154,150.103556,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,3,22,Australia,AU,New South Wales,-30.362675,151.554208,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,12,Australia,AU,New South Wales,-31.42228,152.881156,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-32.710499,152.065407,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-30.902154,152.79038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.448937,150.516176,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-28.816415,153.331562,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-32.730582,152.03988,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,10,Australia,AU,New South Wales,-29.49017,153.108189,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,6,18,Australia,AU,New South Wales,-31.42818,152.890519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.444954,150.514923,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.429091,150.599898,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.564757,150.015337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.427125,150.604948,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-33.706362,150.786381,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419098,150.61029,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-34.445982,150.51314,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,8,27,Australia,AU,New South Wales,-34.078738,150.837478,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-31.45415,152.924347,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.485671,150.637821,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150L,1,FEMALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-31.915683,152.374817,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-31.707912,152.642402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.389784,150.6281,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040704,1,MALE,occurrenceRemarks withheld,2020,12,29,Australia,AU,New South Wales,-28.81672,153.330287,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031402,1,,occurrenceRemarks withheld,2022,9,18,Australia,AU,New South Wales,-28.879812,153.324664,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110G,1,,occurrenceRemarks withheld,2023,7,24,Australia,AU,New South Wales,-29.736337,152.908562,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,3,9,Australia,AU,New South Wales,-34.096204,150.984872,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.439529,150.603941,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,26,Australia,AU,New South Wales,-31.634899,152.282167,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080903;OMFZ23032403,1,,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-35.03096,149.09584,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900;OPJG22022105,1,,occurrenceRemarks withheld,2024,7,10,Australia,AU,New South Wales,-31.952072,152.424204,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004130,1,MALE,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-28.912883,153.26838,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.429514,150.609983,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.862857,153.317651,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17441,152.90723,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.435587,150.616273,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,2,21,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251Y,1,MALE,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-32.732209,152.038935,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-31.948386,152.384682,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-33.703923,150.78642,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001217,1,,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,6,28,Australia,AU,New South Wales,-28.553296,153.07678,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-31.415433,152.126308,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.295742,149.324369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.432185,150.611985,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-31.326811,152.401326,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-29.489998,153.10129,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.485811,150.636173,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-29.478805,153.104044,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.389836,150.627979,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-31.435861,152.905072,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.296667,149.323753,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,10,Australia,AU,New South Wales,-29.49018,153.110511,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-28.663474,153.423786,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.198833,152.724783,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,2,18,Australia,AU,New South Wales,-33.846961,150.089983,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-34.215378,150.80181,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-31.528122,152.844758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.436548,150.603635,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,2,11,Australia,AU,New South Wales,-29.727533,151.086152,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004141,1,,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-28.824703,153.326409,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-28.957013,153.42943,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.491291,150.638458,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,3,26,Australia,AU,New South Wales,-28.865112,153.319791,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-29.48848,153.092503,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-31.918232,152.378125,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-34.188134,150.790596,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,MALE,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-32.863373,151.580448,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,5,11,Australia,AU,New South Wales,-34.783774,146.77317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.420865,150.627897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.459309,150.534611,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-36.474664,149.917922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.451506,150.515262,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,11,Australia,AU,New South Wales,-29.48863,153.093463,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.423745,150.637379,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-30.368649,153.095303,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-34.097399,150.987465,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-29.001429,152.929532,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-29.48792,153.102459,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,12,24,Australia,AU,New South Wales,-33.778509,150.100539,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-30.506489,152.925558,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,6,Australia,AU,New South Wales,-29.47696,153.104804,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.469434,150.527096,EPSG:4326 +HUMAN_OBSERVATION,OJJS20020408,1,MALE,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-34.210039,150.797021,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-31.442372,152.902209,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-32.747818,152.070536,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-34.034133,150.964276,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-34.234483,150.68122,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200X,1,,occurrenceRemarks withheld,2024,4,16,Australia,AU,New South Wales,-30.992784,150.251745,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-28.98186,153.42297,EPSG:4326 +HUMAN_OBSERVATION,OJJS20080303,1,,occurrenceRemarks withheld,2020,7,22,Australia,AU,New South Wales,-32.593223,151.769829,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-31.914728,152.373841,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,22,Australia,AU,New South Wales,-29.485618,153.103452,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-31.18984,150.18427,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-31.914645,152.380232,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-29.490412,153.109543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.39916,150.639756,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-32.68941,151.658728,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041403,1,FEMALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-29.728188,151.083136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.465764,150.520401,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,3,18,Australia,AU,New South Wales,-31.447493,152.925412,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.451376,150.522187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.42175,150.636336,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012910,1,,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-28.388571,153.558463,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-33.705762,150.785315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.46447,150.529038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.393894,150.640622,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.426945,150.604921,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040419,1,,occurrenceRemarks withheld,2023,3,16,Australia,AU,New South Wales,-33.553867,149.553339,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-31.948252,152.300422,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,1,Australia,AU,New South Wales,-29.629872,152.896425,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300E,1,,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-32.727746,152.008027,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.459159,150.521424,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-28.959241,153.394375,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-28.9481,153.31676,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-31.632709,152.785386,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-31.457885,152.921653,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.389151,150.623812,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-31.77942,152.574902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.458348,150.525464,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-29.490007,153.101231,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-36.474664,149.917922,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100F,1,,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-33.565567,150.671934,EPSG:4326 +HUMAN_OBSERVATION,OPUR16092100,1,MALE,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-33.533443,149.554988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.446734,150.512879,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.395851,150.64346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.432026,150.613524,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,13,Australia,AU,New South Wales,-33.718652,150.783116,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.457812,152.927516,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,17,Australia,AU,New South Wales,-36.131715,149.303705,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,1,18,Australia,AU,New South Wales,-31.926078,152.375963,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,21,Australia,AU,New South Wales,-29.489582,153.103859,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-31.467138,152.89986,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-28.649443,153.362224,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2023,3,6,Australia,AU,New South Wales,-34.136586,150.822002,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150E,1,,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-31.454498,152.928954,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030508,1,,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-31.45544,152.878213,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,6,Australia,AU,New South Wales,-28.652934,153.288527,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,12,Australia,AU,New South Wales,-28.992605,153.43702,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.395413,150.641308,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100404,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-30.481289,151.693942,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-29.485459,153.103522,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-33.677157,149.467564,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-36.497148,149.957744,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.687481,152.786588,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222G,1,,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-32.720807,151.992302,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-28.923353,153.262924,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.447261,150.513091,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.4346,150.616084,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-33.776089,150.064587,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.18285,153.00279,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.419219,150.603596,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.446478,150.518023,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-31.46563,152.92763,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-31.948252,152.300422,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-33.852923,150.249403,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.427391,150.604679,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,11,10,Australia,AU,New South Wales,-30.398573,152.983863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.451721,150.52271,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.454804,150.520051,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,2,15,Australia,AU,New South Wales,-28.693786,153.493083,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004067,1,FEMALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.650517,153.460499,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,25,Australia,AU,New South Wales,-29.489979,153.101322,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-32.699763,152.065329,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,9,7,Australia,AU,New South Wales,-34.186069,150.790696,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004037,1,,occurrenceRemarks withheld,2023,8,28,Australia,AU,New South Wales,-28.97947,153.289154,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-33.715361,150.785719,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-28.381283,152.652939,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022410,1,,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-32.724731,152.076605,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121407,1,FEMALE,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-31.53944,149.819383,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2024,2,27,Australia,AU,New South Wales,-30.419035,152.951266,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.494144,150.640522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.389595,150.627214,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-29.489643,153.104648,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-33.705995,150.786019,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.423842,150.637267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.412874,150.64073,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101Y,1,,occurrenceRemarks withheld,2024,3,24,Australia,AU,New South Wales,-31.414503,152.894705,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,6,7,Australia,AU,New South Wales,-33.374907,150.782297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.465763,150.521642,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.433915,150.606365,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,5,26,Australia,AU,New South Wales,-32.764971,152.116775,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-31.124966,152.806057,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.470943,150.529958,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-33.774206,150.060463,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.425692,150.595785,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-35.06557,150.123052,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-28.850697,153.31183,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-28.389497,153.560261,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2024,1,14,Australia,AU,New South Wales,-31.636973,152.798375,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,25,Australia,AU,New South Wales,-29.485193,153.104149,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,6,24,Australia,AU,New South Wales,-32.771979,152.11023,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153W,1,,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-28.888838,153.302271,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.386597,150.627385,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.450203,150.604387,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.43319,150.615863,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181V,1,,occurrenceRemarks withheld,2022,7,19,Australia,AU,New South Wales,-28.817454,153.301303,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222J,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-32.671114,151.686986,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060502,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-30.338508,153.078546,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.38333,150.623976,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150U,1,FEMALE,occurrenceRemarks withheld,2023,7,17,Australia,AU,New South Wales,-28.692221,153.494964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.392499,150.633755,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050B,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-33.590282,149.457365,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.08408,152.673715,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150E,1,,occurrenceRemarks withheld,2022,12,5,Australia,AU,New South Wales,-28.808608,153.510325,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.444995,152.889384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.412586,150.601849,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.874591,152.658705,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,7,26,Australia,AU,New South Wales,-30.505557,152.921026,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,3,21,Australia,AU,New South Wales,-36.591146,149.928654,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.81222,153.313992,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-31.451771,152.926473,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070B,1,,occurrenceRemarks withheld,2022,3,26,Australia,AU,New South Wales,-32.765354,152.034841,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.44984,150.516225,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090808,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-33.998966,150.900422,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-28.878209,153.244711,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,5,Australia,AU,New South Wales,-29.485809,153.103693,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.427094,150.601979,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,MALE,occurrenceRemarks withheld,2022,11,13,Australia,AU,New South Wales,-36.084594,149.150221,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.618562,149.923643,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,5,26,Australia,AU,New South Wales,-30.579907,151.513229,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,6,18,Australia,AU,New South Wales,-28.625551,153.007486,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.41096,152.216582,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-31.460452,152.898542,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121501,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-34.444076,150.529061,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-31.415433,152.126308,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,11,21,Australia,AU,New South Wales,-34.058465,150.864765,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.464749,150.522336,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,26,Australia,AU,New South Wales,-29.485599,153.1038,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,12,5,Australia,AU,New South Wales,-34.023324,150.990172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.447131,150.520876,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004029,1,MALE,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-28.808321,153.4253,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.454281,150.658982,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.418345,150.633679,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.49298,150.639085,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,FEMALE,occurrenceRemarks withheld,2024,6,14,Australia,AU,New South Wales,-31.145527,152.861388,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-28.818698,153.29874,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,6,Australia,AU,New South Wales,-29.488457,153.102175,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-34.124693,150.812345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.394785,150.642902,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-28.885212,153.313497,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-31.217507,152.802263,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-29.489741,153.119781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.459386,150.529493,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052010,1,,occurrenceRemarks withheld,2024,3,7,Australia,AU,New South Wales,-31.474941,152.932671,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002777,1,,occurrenceRemarks withheld,2020,7,20,Australia,AU,New South Wales,-29.492724,153.093692,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.446582,150.514298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.491466,150.639073,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-28.858812,153.34316,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022410,1,,occurrenceRemarks withheld,2024,3,11,Australia,AU,New South Wales,-32.741776,152.11306,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-29.490516,153.108167,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-31.462006,152.922191,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140N,1,,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-28.707219,153.523118,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-29.477777,153.104332,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.586172,153.550358,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-33.961109,150.893164,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-29.48545,153.103479,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002776,1,,occurrenceRemarks withheld,2020,7,12,Australia,AU,New South Wales,-29.384419,152.576408,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.139044,150.796301,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011105,1,,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-28.384452,153.562423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.465746,150.520402,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004237,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.920605,153.266675,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-31.924757,152.372924,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180O,1,MALE,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-28.845128,153.320399,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.420904,150.630354,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-28.586521,153.551941,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,7,Australia,AU,New South Wales,-28.415225,153.554747,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.452637,150.524327,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030Y,1,,occurrenceRemarks withheld,2022,12,23,Australia,AU,Victoria,-37.232341,148.259951,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.45067,150.515798,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.430137,150.607756,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-29.485487,153.103591,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.098577,150.817406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.433894,150.614548,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-31.126887,152.793918,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,5,11,Australia,AU,New South Wales,-32.709412,152.061132,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.503907,149.934931,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.435091,150.615798,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.440297,150.517781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.422982,150.638488,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-34.024573,150.99248,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,4,26,Australia,AU,New South Wales,-31.443271,152.913268,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-32.709094,152.064283,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866891,153.343646,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100H,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-32.558127,151.59318,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.679744,153.446736,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,8,Australia,AU,New South Wales,-28.659545,153.285595,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.418408,150.633656,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.447162,150.513998,EPSG:4326 +HUMAN_OBSERVATION,OSNA97102102,1,MALE,occurrenceRemarks withheld,2023,2,14,Australia,AU,New South Wales,-31.650333,152.562249,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181Z,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-28.86024,153.315188,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,7,11,Australia,AU,New South Wales,-31.280182,152.862215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.395578,150.64288,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.161591,149.392624,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.44972,152.90674,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,,occurrenceRemarks withheld,2021,2,19,Australia,AU,New South Wales,-33.762809,150.059957,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131H,1,,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-31.473888,152.89588,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181V,1,,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-28.817112,153.30459,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-30.84847,152.734049,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.435426,150.519405,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.388836,150.630824,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-29.478249,153.10372,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.447418,150.51683,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.437965,150.604203,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-28.662353,153.614018,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.394237,150.640645,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.459386,150.529493,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2024,5,8,Australia,AU,New South Wales,-31.431835,152.893952,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.0602,150.886917,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.650407,149.955028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.419977,150.631381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.437965,150.604203,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-28.885121,153.375012,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-36.429797,148.729453,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,7,,Australia,AU,New South Wales,-28.715639,153.602142,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.44632,150.513805,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-31.447924,152.869802,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.438772,150.603941,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.491493,150.639084,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.464017,150.525373,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.440922,152.903171,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,8,29,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,6,24,Australia,AU,New South Wales,-31.535223,152.650931,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.435394,150.615169,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-31.468746,152.916436,EPSG:4326 +HUMAN_OBSERVATION,ODFK24082901;ODFK2409020A,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-32.202762,152.324546,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,20,Australia,AU,New South Wales,-29.490633,153.108151,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.452433,150.523168,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-29.052465,153.304662,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.385597,150.626544,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002853,1,,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-29.703025,152.939225,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,4,Australia,AU,New South Wales,-31.470822,152.912557,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.45529,150.519579,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.340196,153.042125,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.727273,152.008112,EPSG:4326 +HUMAN_OBSERVATION,ODFK23111401,1,,occurrenceRemarks withheld,2024,9,5,Australia,AU,New South Wales,-31.573386,152.185459,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-34.190613,150.799271,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.464235,150.521002,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-32.728396,152.006782,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-28.810331,153.339802,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060V,1,,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-31.443321,152.925069,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.440406,150.517811,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.395124,150.628722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.433117,150.613993,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-28.843269,153.236707,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,11,21,Australia,AU,New South Wales,-28.260499,153.402204,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-28.260484,153.401652,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.45207,150.517291,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,12,2,Australia,AU,New South Wales,-31.640213,152.791449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.429822,150.610518,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.194507,150.789582,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100501,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-31.698762,152.670248,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.490661,150.638508,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,12,Australia,AU,New South Wales,-29.489732,153.105227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.464445,150.522443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.450062,150.51648,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.466637,150.521214,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004275,1,,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.385351,153.567171,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.465833,150.52066,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866891,153.343646,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,10,20,Australia,AU,New South Wales,-34.104743,150.795607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.493174,150.640256,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.457416,150.528387,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-29.485585,153.096532,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-34.055807,150.843183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.390274,150.62689,EPSG:4326 +HUMAN_OBSERVATION,OPUR14011100,1,MALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-29.39143,153.191167,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,1,25,Australia,AU,New South Wales,-34.097951,150.807808,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,17,Australia,AU,New South Wales,-32.706185,152.063229,EPSG:4326 +HUMAN_OBSERVATION,Obs_1523,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-32.399642,152.029695,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-31.480301,152.921039,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,MALE,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-34.012121,150.879593,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.434795,150.615893,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-29.490152,153.109693,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435749,150.602918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.420847,150.636699,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.447823,150.519898,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-28.8748,153.278012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.455628,150.608411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.395952,150.642163,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,14,Australia,AU,New South Wales,-29.0533,153.309351,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.397211,150.639202,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100404,1,,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-30.48972,151.674884,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021400,1,,occurrenceRemarks withheld,2024,1,20,Australia,AU,New South Wales,-31.473333,152.889623,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,20,Australia,AU,New South Wales,-32.023186,152.380082,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.824051,152.672861,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,1,MALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-28.626791,153.42764,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.455825,150.658155,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-34.104807,150.9928,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-30.151428,153.078324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.42067,150.630818,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.46574,150.521425,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,18,Australia,AU,New South Wales,-29.485594,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-29.487294,153.11145,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-29.694053,152.867544,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.446337,150.513761,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.467382,150.522792,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.493018,150.639149,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.81222,153.313992,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-33.712782,150.785435,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083002,1,,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-34.069558,150.835092,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-36.151906,149.351709,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100407,1,,occurrenceRemarks withheld,2024,3,16,Australia,AU,New South Wales,-34.090955,150.986009,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-31.915292,152.382794,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,4,12,Australia,AU,New South Wales,-31.1124,150.11377,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.428843,150.615322,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2021,2,8,Australia,AU,New South Wales,-29.834338,150.845,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2022,7,16,Australia,AU,New South Wales,-32.735464,152.040967,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004118,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.388756,153.565148,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.395033,150.63054,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,17,Australia,AU,New South Wales,-31.472844,152.911251,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.485995,150.63496,EPSG:4326 +HUMAN_OBSERVATION,OLHP2312140G,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-29.721373,150.937904,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-34.020141,150.990792,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,FEMALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-34.098273,150.80862,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070N,1,,occurrenceRemarks withheld,2020,12,23,Australia,AU,New South Wales,-28.662314,153.611255,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062103,1,,occurrenceRemarks withheld,2023,5,10,Australia,AU,New South Wales,-31.464659,152.927761,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.411399,150.59651,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111505,1,,occurrenceRemarks withheld,2020,12,27,Australia,AU,New South Wales,-33.56859,150.627031,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-29.485319,153.103999,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-28.647443,153.47285,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.397723,150.640047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.43465,150.606648,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,3,26,Australia,AU,New South Wales,-31.441135,152.924212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.392713,150.639219,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.464306,150.520945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.392437,150.6338,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,18,Australia,AU,New South Wales,-32.706526,152.063741,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.465763,150.521653,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041304,1,,occurrenceRemarks withheld,2021,1,2,Australia,AU,New South Wales,-31.470686,152.8921,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,5,Australia,AU,New South Wales,-29.479514,153.10423,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,12,Australia,AU,New South Wales,-33.716941,150.785326,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.280467,150.731241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.410214,150.59724,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,11,23,Australia,AU,New South Wales,-31.481401,152.907839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.43707,150.518682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.431656,150.613491,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-28.60386,153.402852,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-34.474,150.556772,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,22,Australia,AU,New South Wales,-29.485747,153.103762,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO;OJJS20110901,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-30.668103,152.954936,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.437617,150.607119,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,FEMALE,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-31.954443,152.416442,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.397396,150.627787,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.453408,150.525011,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OPUR17021400;OGEM18052300,1,,occurrenceRemarks withheld,2024,4,3,Australia,AU,New South Wales,-36.34,149.945401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,23,Australia,AU,New South Wales,-34.439146,150.61479,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-29.485669,153.103688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.420597,150.630798,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.450088,150.516436,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.385606,150.6265,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,12,29,Australia,AU,New South Wales,-28.256373,153.400888,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.462212,150.534634,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003843,1,MALE,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-28.684295,153.517558,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.431066,150.601789,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.395572,150.625783,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-34.90108,150.05231,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.818579,153.296004,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,11,Australia,AU,New South Wales,-31.632275,152.785611,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-34.51686,150.552635,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-31.465831,152.904248,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-31.47511,152.897459,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.246501,151.728689,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032115,1,,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-32.727333,152.079344,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-28.22462,153.46681,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-29.666949,152.868404,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.41236,150.601801,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-32.589689,151.795088,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-28.923584,153.185015,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-28.692405,153.508364,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101Y,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-31.429481,152.89467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.446365,150.513793,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-32.224416,152.194095,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,2,19,Australia,AU,New South Wales,-34.11459,150.943068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.420527,150.637404,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032807,1,,occurrenceRemarks withheld,2023,12,5,Australia,AU,New South Wales,-32.167778,152.015833,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,12,Australia,AU,New South Wales,-31.454071,152.92517,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-31.459245,152.928705,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-28.960175,153.394257,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.393995,150.63094,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.451279,150.515149,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060O,1,,occurrenceRemarks withheld,2023,11,24,Australia,AU,New South Wales,-31.471952,152.906016,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-31.475976,152.90937,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-29.48587,153.103666,EPSG:4326 +PRESERVED_SPECIMEN,OICG17030600,1,,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-28.38896,153.553397,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-31.438864,152.913944,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032006,1,,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-32.737109,152.172979,EPSG:4326 +HUMAN_OBSERVATION,OJJS19122408,1,,occurrenceRemarks withheld,2024,2,11,Australia,AU,New South Wales,-31.925262,152.403199,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.436399,150.615826,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-31.465471,152.927264,EPSG:4326 +HUMAN_OBSERVATION,OCEM12101700,1,,occurrenceRemarks withheld,2023,12,2,Australia,AU,New South Wales,-28.331083,153.559348,EPSG:4326 +HUMAN_OBSERVATION,ODFK2312070B,1,,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-29.490264,153.110527,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,4,4,Australia,AU,New South Wales,-28.941639,153.315249,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,1,19,Australia,AU,New South Wales,-31.933125,152.41519,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,FEMALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-32.683761,151.650606,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-36.569074,150.02021,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.886464,153.300206,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-28.38564,153.563918,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,15,Australia,AU,New South Wales,-34.024789,150.907642,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.396663,150.642078,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-29.5376,153.01479,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-30.19212,153.149826,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.398699,150.644348,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.431407,150.615065,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,MALE,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-34.018221,150.884233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.421965,150.636286,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,FEMALE,occurrenceRemarks withheld,2023,1,26,Australia,AU,New South Wales,-28.824721,153.299756,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-29.485529,153.103758,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-28.5008,153.0802,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-29.490493,153.108087,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-36.640259,149.947287,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-29.482171,153.10423,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,6,4,Australia,AU,New South Wales,-36.886,149.24449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.385721,150.626866,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-29.490441,153.109412,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.463863,150.524419,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.438649,150.606872,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250M,1,,occurrenceRemarks withheld,2024,9,22,Australia,AU,New South Wales,-32.039399,152.262511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.431935,150.613483,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.44727,150.513091,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2022,12,22,Australia,AU,New South Wales,-31.40529,152.1416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.435501,150.615568,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.465367,150.521687,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-29.488592,153.093613,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,2,18,Australia,AU,New South Wales,-28.81509,153.325643,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-28.291481,153.400618,EPSG:4326 +HUMAN_OBSERVATION,OLHP24031100,1,MALE,occurrenceRemarks withheld,2024,2,16,Australia,AU,New South Wales,-31.45605,152.923158,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002775,1,,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-29.650455,152.82829,EPSG:4326 +HUMAN_OBSERVATION,OJJS19043000;ODMP22022701,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-33.966784,150.921344,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.393117,150.644276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.420319,150.634581,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.463532,150.52321,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.47066,150.531969,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.454337,150.521044,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.59482,149.956941,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,5,12,Australia,AU,New South Wales,-31.441079,152.923624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.433812,150.608043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.46695,150.52152,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-34.057957,150.875198,EPSG:4326 +HUMAN_OBSERVATION,ODMP21060800,1,FEMALE,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-29.734337,152.920154,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,,occurrenceRemarks withheld,2023,6,22,Australia,AU,New South Wales,-32.192585,152.306353,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030R,1,,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-31.29351,152.657435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.452009,150.51738,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.453832,150.520558,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.091307,150.810907,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OPXE99030200,1,,occurrenceRemarks withheld,2022,9,17,Australia,AU,New South Wales,-33.815,150.022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.485975,150.63582,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,22,Australia,AU,New South Wales,-29.490133,153.107443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.465716,150.521578,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2020,4,29,Australia,AU,New South Wales,-28.258429,153.399901,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OJJS11062906,1,,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-31.46639,152.89997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.4206,150.609203,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-32.472237,151.974623,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,11,6,Australia,AU,New South Wales,-31.455822,152.920728,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-29.478809,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-29.490147,153.109337,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111320,1,,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-33.971139,150.916905,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.194362,152.744576,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.434136,150.614476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.446389,150.514097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.420871,150.630051,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.43604,150.520801,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.436264,150.604339,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,18,Australia,AU,New South Wales,-29.485772,153.103645,EPSG:4326 +HUMAN_OBSERVATION,OJJS19022501;OJJS2001070J,1,,occurrenceRemarks withheld,2020,6,18,Australia,AU,New South Wales,-34.000089,150.944201,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.425715,150.605206,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,31,Australia,AU,New South Wales,-29.49025,153.108269,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-29.491511,153.099777,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004238,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.85553,153.323412,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.396418,150.646685,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.422183,150.637303,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,11,25,Australia,AU,New South Wales,-29.486832,153.103098,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2022,12,8,Australia,AU,New South Wales,-31.105129,152.848384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.4274,150.604701,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-33.491265,149.552391,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003872,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-28.819239,153.30215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.387803,150.631484,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-29.49074,153.109251,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-28.665253,153.57307,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220X,1,,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-32.712816,152.158889,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210M,1,,occurrenceRemarks withheld,2022,12,5,Australia,AU,New South Wales,-32.731706,152.035887,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-33.52683,150.658718,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030P,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-32.053436,152.154736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.393184,150.643078,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-31.911997,152.400964,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,5,21,Australia,AU,New South Wales,-28.257928,153.400813,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-34.927743,150.145877,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,Queensland,-28.279238,152.53301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.435023,150.520418,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.95995,153.395278,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,10,12,Australia,AU,New South Wales,-31.631876,152.784608,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.423818,150.637431,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-28.25764,153.402101,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.479765,150.633111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.433081,150.613983,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-33.775682,150.104175,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-28.66276,153.43206,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.427319,150.604703,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-31.738462,152.155117,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111505,1,MALE,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-33.980929,150.9915,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-29.489946,153.101247,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022408,1,,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-32.734967,152.089998,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-33.961109,150.893164,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-31.146058,152.86366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.389783,150.628078,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-29.010748,153.270841,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.430689,150.60786,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-28.822435,153.312316,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-29.490516,153.109363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.426767,150.603685,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.469937,150.530554,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.454161,150.662142,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152T,1,MALE,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-28.821315,153.309689,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.429784,150.606722,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,18,Australia,AU,New South Wales,-33.757117,150.074581,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,FEMALE,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-28.982408,153.422227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.420733,150.63086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.430553,150.617015,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.422333,150.607914,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.46619,150.523143,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-31.446913,152.921155,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071101,1,,occurrenceRemarks withheld,2024,5,7,Australia,AU,New South Wales,-32.200137,152.133877,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-29.48996,153.101317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.421976,150.607641,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-31.467295,152.892129,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,7,29,Australia,AU,New South Wales,-34.060984,150.866027,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082306,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.432252,153.041296,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.389674,150.627092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.393126,150.644733,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,24,Australia,AU,New South Wales,-29.480112,153.104074,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211P,1,,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-32.740177,152.101406,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-28.58326,153.554614,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.464645,150.523439,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-33.719629,150.784941,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-31.443005,152.923008,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.39922,150.639602,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,2,9,Australia,AU,New South Wales,-31.443525,152.899797,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-36.307303,149.957874,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-28.730918,153.40537,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-28.669384,153.45436,EPSG:4326 +HUMAN_OBSERVATION,OLHP2407120G,1,,occurrenceRemarks withheld,2024,6,20,Australia,AU,New South Wales,-33.737637,150.646065,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.450686,150.520597,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-28.74337,152.31241,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-29.485767,153.103693,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.38649,150.625594,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.465689,150.52159,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,5,10,Australia,AU,New South Wales,-33.776174,150.102097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419631,150.611755,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150Z,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.900032,153.066923,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-34.443341,150.514492,EPSG:4326 +HUMAN_OBSERVATION,OJJS12081504,1,,occurrenceRemarks withheld,2020,8,15,Australia,AU,New South Wales,-32.77767,152.100094,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,12,8,Australia,AU,New South Wales,-28.266227,153.395309,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-28.94719,153.31675,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-31.45705,152.915097,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-29.485067,153.096135,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-28.398844,153.555957,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-33.70999,150.785241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.421911,150.607556,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-28.814366,153.363088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.394047,150.630829,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-34.051914,150.848008,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.465979,150.522093,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-28.855687,153.324152,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.418983,150.609467,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-31.440055,152.884819,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,14,Australia,AU,New South Wales,-32.706257,152.063293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.453539,150.518162,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-30.35989,153.05924,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-34.155155,150.84108,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.389774,150.628068,EPSG:4326 +HUMAN_OBSERVATION,OIXR14040901;OIXR14041100,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-28.62251,153.32644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.434746,150.616624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.485323,150.637069,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.433775,150.608001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.435413,150.615658,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-31.458954,152.929693,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,23,Australia,AU,New South Wales,-31.92441,152.35899,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500,1,,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-28.7273,153.60144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.469553,150.525862,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002776,1,MALE,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-29.434421,153.167331,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050E,1,FEMALE,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-32.647527,151.760478,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.459859,150.51903,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-36.1835,149.354865,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-34.060984,150.866027,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.421038,150.62799,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-28.981045,153.298108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.470661,150.532023,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.450043,150.51647,EPSG:4326 +HUMAN_OBSERVATION,OJJS1208150M,1,,occurrenceRemarks withheld,2022,1,22,Australia,AU,New South Wales,-32.764562,152.109794,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,28,Australia,AU,New South Wales,-34.440533,150.615186,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.95968,153.394689,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-34.286284,150.677672,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090405,1,,occurrenceRemarks withheld,2022,12,9,Australia,AU,New South Wales,-32.732249,152.039933,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-31.46729,152.907949,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.967328,153.43286,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.438886,150.604275,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.399513,150.639376,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.098193,150.808193,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-32.090675,152.441685,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-31.932588,152.412476,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-28.473542,152.995085,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-30.23916,152.90497,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070601,1,,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-34.35522,150.68497,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-31.444017,152.921042,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,5,14,Australia,AU,New South Wales,-31.473756,152.898849,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103003,1,,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-32.706583,152.063628,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,1,Australia,AU,New South Wales,-28.821137,153.33405,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.435379,150.603363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.388725,150.624172,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-30.098262,152.169266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436331,150.616056,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-31.429867,152.88511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.465738,150.520446,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.488235,150.637041,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-31.92886,152.384289,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042J,1,MALE,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-34.460092,150.501042,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.187167,153.462302,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,15,Australia,AU,New South Wales,-32.705944,152.063309,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,4,4,Australia,AU,New South Wales,-34.101844,150.821644,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004130,1,MALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.91324,153.268126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.465007,150.522154,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-29.489988,153.101285,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-32.0003,151.82506,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002831,1,,occurrenceRemarks withheld,2021,2,13,Australia,AU,New South Wales,-29.486933,153.103207,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-32.020247,152.466547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.43123,150.615679,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140O,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-32.7596,152.103901,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-29.312999,152.885439,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-29.488242,153.103629,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042L,1,FEMALE,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-31.24177,152.902259,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-34.061061,150.840717,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121501,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-34.445507,150.528272,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,24,Australia,AU,New South Wales,-33.713334,150.784722,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221W,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-32.761807,152.11135,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.633581,149.921178,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070R,1,,occurrenceRemarks withheld,2020,3,20,Australia,AU,New South Wales,-33.54208,149.682001,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-31.933225,152.414923,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-34.39947,150.48328,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-33.71646,150.784507,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,MALE,occurrenceRemarks withheld,2024,5,14,Australia,AU,New South Wales,-31.883749,152.391142,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.425955,150.602283,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150I,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-33.55194,150.65707,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.470064,150.516388,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,FEMALE,occurrenceRemarks withheld,2022,10,14,Australia,AU,New South Wales,-28.827266,153.30453,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,7,24,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-28.662926,153.110906,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270S,1,,occurrenceRemarks withheld,2022,9,5,Australia,AU,New South Wales,-31.722408,152.514175,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-30.92235,153.067172,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-31.316773,152.52534,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.491519,150.63905,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.420563,150.637403,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.455464,150.608775,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-34.447016,150.518344,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,6,10,Australia,AU,New South Wales,-32.706158,152.06354,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080905,1,,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-31.949129,152.297859,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,11,13,Australia,AU,New South Wales,-32.707201,152.070371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.398288,150.627305,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001233,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-34.45492,150.452941,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.449394,152.906972,EPSG:4326 +HUMAN_OBSERVATION,OJJS20012800,1,,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-33.79835,150.02592,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-31.45508,152.927101,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.4648,150.522204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.420831,150.627963,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,5,16,Australia,AU,New South Wales,-34.030182,150.975443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.418992,150.609456,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.44632,150.513794,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.44631,150.517331,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-34.143217,150.790447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.447213,150.519154,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.491323,150.639175,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,MALE,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-32.741689,151.99365,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.4359,150.60831,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-28.635486,152.99593,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.459399,150.534619,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-33.449163,150.610662,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-28.523083,152.456394,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-36.00829,149.366511,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,2,25,Australia,AU,New South Wales,-32.71072,152.072248,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.46685,150.520587,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.395436,150.629909,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,6,2,Australia,AU,New South Wales,-31.459553,152.929449,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-31.50346,151.24803,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,7,21,Australia,AU,New South Wales,-28.636812,153.497445,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-31.27746,152.81796,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.86465,153.293074,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-31.980755,152.34022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.485234,150.637104,EPSG:4326 +HUMAN_OBSERVATION,OJMM08020900,1,MALE,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-34.092358,150.985126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.438428,150.604353,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.45261,150.519909,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,6,22,Australia,AU,New South Wales,-29.485552,153.103766,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.43758,150.605694,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-34.462885,150.52779,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2022,7,1,Australia,AU,New South Wales,-34.079579,150.80858,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-28.702101,153.607508,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-29.485282,153.103666,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,2,12,Australia,AU,New South Wales,-32.73253,152.0825,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.069652,150.838015,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,3,Australia,AU,New South Wales,-29.484913,153.103892,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.548959,150.016942,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022509,1,FEMALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-32.73789,152.09104,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-30.410432,152.99595,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307101E,1,,occurrenceRemarks withheld,2023,6,16,Australia,AU,New South Wales,-31.4361,152.88437,EPSG:4326 +HUMAN_OBSERVATION,OSHD13030401,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-32.11898,151.171235,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.14344,150.79647,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.84847,152.734049,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.446364,150.51376,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,4,17,Australia,AU,New South Wales,-32.63633,151.69691,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-34.514,150.595561,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.432663,150.613331,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.45259,150.522924,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-32.68143,151.65081,EPSG:4326 +HUMAN_OBSERVATION,OLHP23120100,1,MALE,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-31.729488,149.990603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.434294,150.615635,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-29.490156,153.109723,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,7,16,Australia,AU,New South Wales,-31.434419,152.896124,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.485537,150.636442,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-30.508033,152.926912,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-31.126909,152.79675,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-33.691224,149.56184,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150U,1,MALE,occurrenceRemarks withheld,2023,7,21,Australia,AU,New South Wales,-28.694781,153.496595,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900;OPUR19080901;OMRF21071000,1,,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.087623,150.976265,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,2,27,Australia,AU,New South Wales,-31.640029,152.792587,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.437824,150.606656,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.429714,150.61421,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060502,1,,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-30.22316,153.137517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.436695,150.607928,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,5,Australia,AU,New South Wales,-29.485627,153.103768,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031404,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-31.575315,152.815272,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,3,1,Australia,AU,New South Wales,-32.706157,152.06343,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,1,Australia,AU,New South Wales,-28.753289,153.459894,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-31.146914,152.79847,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-28.803722,153.367926,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.650964,152.818059,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-29.48056,153.104133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.45115,150.519451,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-29.488564,153.110924,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.423488,150.60565,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.430111,150.616581,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.446812,150.520298,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-29.003938,152.895506,EPSG:4326 +HUMAN_OBSERVATION,OJJS06031407,1,FEMALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.458321,150.661697,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.923965,152.372737,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.455452,150.60908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-34.447391,150.514187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.430878,150.610564,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140K,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-29.019311,153.42258,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,5,11,Australia,AU,New South Wales,-31.44455,152.904136,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,11,10,Australia,AU,New South Wales,-28.553913,152.988604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.418903,150.602648,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.447148,150.519526,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,14,Australia,AU,New South Wales,-28.380419,153.564604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.447268,150.514343,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150D,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-33.53422,150.77808,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-32.656205,151.954476,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-34.054193,150.841759,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-29.48976,153.101381,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.618562,149.923643,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-28.817267,153.304861,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,6,Australia,AU,New South Wales,-33.709919,150.78569,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,3,31,Australia,AU,New South Wales,-33.78423,150.066868,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-30.302736,153.110063,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.39576,150.646725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.46406,150.523913,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-28.890397,153.417136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.472707,150.519107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.469644,150.526796,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-34.018768,150.885519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.456615,150.608187,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-31.427246,152.897978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.42325,150.605015,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.431175,150.615169,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.460056,150.525893,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-33.715662,150.785292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.386663,150.627579,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-29.485601,153.10372,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.435947,150.615784,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-31.240076,152.823287,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.098125,150.808222,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-32.231881,152.200143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.395493,150.639402,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.453992,150.516897,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,12,Australia,AU,New South Wales,-33.716774,150.785361,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,20,Australia,AU,New South Wales,-28.86473,153.292666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.452492,150.519836,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-29.485324,153.10401,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101R,1,,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-31.428953,152.628851,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.393144,150.644297,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010703,1,MALE,occurrenceRemarks withheld,2022,1,3,Australia,AU,New South Wales,-29.726157,152.929623,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.399114,150.639681,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-31.060477,152.848198,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2024,1,29,Australia,AU,New South Wales,-31.877903,152.364617,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-29.489979,153.10078,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-31.459313,152.924326,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,4,5,Australia,AU,New South Wales,-33.477109,150.556371,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-28.252334,153.374763,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-33.77802,150.100825,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032907,1,,occurrenceRemarks withheld,2022,4,24,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.446695,150.515829,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.145476,150.793817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.418243,150.632594,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.395087,150.630528,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004098,1,,occurrenceRemarks withheld,2023,8,7,Australia,AU,New South Wales,-28.193537,153.522085,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-31.461008,152.923435,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,15,Australia,AU,New South Wales,-33.715615,150.78529,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,1,16,Australia,AU,New South Wales,-34.113947,150.942921,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,23,Australia,AU,New South Wales,-31.241501,152.902481,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.42047,150.627962,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050J,1,,occurrenceRemarks withheld,2024,2,26,Australia,AU,New South Wales,-29.070921,149.639164,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-28.931463,153.004171,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,13,Australia,AU,New South Wales,-29.484885,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100314,1,,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-31.436776,152.911238,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-31.979319,152.361869,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2022,9,10,Australia,AU,New South Wales,-31.915123,152.373486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.389388,150.626774,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.420656,150.609289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.390098,150.626634,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,1,17,Australia,AU,New South Wales,-28.269058,153.39337,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2024,6,18,Australia,AU,New South Wales,-30.380692,153.032491,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.421976,150.607641,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.423259,150.605015,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,FEMALE,occurrenceRemarks withheld,2024,8,21,Australia,AU,New South Wales,-31.912858,152.388945,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-29.484805,153.096011,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-29.490479,153.109476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.388898,150.624265,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070B,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-32.765385,152.034848,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.390077,150.627853,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,3,16,Australia,AU,New South Wales,-29.488632,153.093828,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.420269,150.627381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.451872,150.518157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-34.399506,150.647893,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,FEMALE,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-34.069372,150.848005,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.430876,150.609541,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-34.038597,150.860756,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.400565,150.624294,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-33.718594,150.783179,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.437839,150.604185,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,7,1,Australia,AU,New South Wales,-32.722432,152.077233,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-29.741653,151.060059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.420643,150.630841,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,2,26,Australia,AU,New South Wales,-31.44848,152.878917,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-29.477642,153.104047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.420489,150.628462,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,23,Australia,AU,New South Wales,-29.485197,153.104181,EPSG:4326 +HUMAN_OBSERVATION,OPJG15082102,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-30.45099,152.718486,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,2,18,Australia,AU,New South Wales,-29.609175,150.861647,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,2,Australia,AU,New South Wales,-29.489778,153.101767,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.433627,150.616079,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150I,1,,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-29.288806,151.517399,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.38442,150.622542,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-33.316802,150.172414,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.834226,153.364275,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041300,1,,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-28.248718,153.479034,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.459115,150.655321,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.396768,150.64053,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-31.914366,152.373872,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.949626,153.316981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.447131,150.519549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.428739,150.598983,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,8,19,Australia,AU,New South Wales,-34.202014,150.788887,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150T,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.02903,151.045811,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-32.216754,152.192089,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,ODFK2307310B,1,,occurrenceRemarks withheld,2024,8,19,Australia,AU,New South Wales,-30.539676,152.884499,EPSG:4326 +HUMAN_OBSERVATION,Obs_2705,1,,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-32.859866,151.446055,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032103,1,,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-32.729723,151.878634,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010703,1,,occurrenceRemarks withheld,2020,5,9,Australia,AU,New South Wales,-29.726688,152.930803,EPSG:4326 +HUMAN_OBSERVATION,OKEM14042900,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-34.302397,150.737082,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.419214,150.609319,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,29,Australia,AU,New South Wales,-31.467445,152.915647,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,24,Australia,AU,New South Wales,-29.490245,153.110055,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.471065,150.531065,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-28.821749,153.331243,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-31.450283,152.907863,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-33.425109,150.927685,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,8,Australia,AU,New South Wales,-29.490418,153.109573,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,7,3,Australia,AU,New South Wales,-31.464631,152.928241,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-29.490012,153.110533,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190K,1,,occurrenceRemarks withheld,2024,4,28,Australia,AU,New South Wales,-32.730454,152.079503,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.479601,150.533208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.444889,150.514348,EPSG:4326 +HUMAN_OBSERVATION,OIXR15091803;OPJG22072804,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-31.071726,150.123128,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-31.455786,152.911462,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-28.931367,153.27578,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-31.255899,152.774386,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.391308,150.644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.388986,150.629286,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-28.6791,153.48996,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-36.554124,150.021287,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-31.45801,152.924273,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-31.459313,152.924326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.466141,150.521653,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-31.454825,152.926847,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-29.489699,153.104847,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101E,1,,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-30.22619,152.53302,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110N,1,,occurrenceRemarks withheld,2023,7,4,Australia,AU,New South Wales,-31.456391,152.92375,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,13,Australia,AU,New South Wales,-29.485197,153.104155,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-31.561433,152.590372,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-33.47377,150.79698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.436461,150.615813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.433782,150.617086,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,2,Australia,AU,New South Wales,-33.70391,150.78593,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.414265,150.596895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.38875,150.630598,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.43257,150.615064,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.17924,150.80004,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,12,16,Australia,AU,New South Wales,-32.06422,151.925939,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.420948,150.62796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.4608,150.525011,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-34.101953,150.809456,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,13,Australia,AU,New South Wales,-29.489409,153.103039,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,5,24,Australia,AU,New South Wales,-29.184277,153.003705,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.88827,153.273277,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.41856,150.632705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.470976,150.530207,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-34.455,150.591027,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-29.489568,153.103854,EPSG:4326 +HUMAN_OBSERVATION,OPJG22081704,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.6188,152.632916,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,5,21,Australia,AU,New South Wales,-31.923677,152.383658,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-34.123104,150.973034,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-32.625098,151.713786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.420092,150.631237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.465814,150.522413,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122100,1,,occurrenceRemarks withheld,2022,11,6,Australia,AU,New South Wales,-33.03525,151.578331,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.423771,150.637356,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-30.35239,153.066909,EPSG:4326 +HUMAN_OBSERVATION,OPRS04081700,1,,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-28.907753,152.386997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.42027,150.627391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.423789,150.637334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.456285,150.658143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.447315,150.517987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.466961,150.521596,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,20,Australia,AU,New South Wales,-28.673632,153.465972,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-29.481471,153.104074,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.547428,150.01112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.465942,150.521604,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-31.479069,152.871988,EPSG:4326 +HUMAN_OBSERVATION,OJYL21042700,1,,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-32.730521,152.140079,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090808,1,,occurrenceRemarks withheld,2021,11,14,Australia,AU,New South Wales,-33.998781,150.909295,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.245115,151.729037,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-34.027813,150.989896,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.457694,150.606644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.452831,150.604649,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.397987,150.639724,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.383755,150.623138,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-32.722541,152.077045,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.44556,150.5199,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-29.485669,153.096564,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.451565,150.517273,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.389157,150.626465,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2024,8,12,Australia,AU,New South Wales,-34.005214,150.992021,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.449431,150.520046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.397976,150.621898,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-28.71528,153.350245,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-31.1479,150.0625,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-28.664312,153.60724,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-34.194043,150.761824,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OPJG20060402,1,,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-30.8494,152.7768,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-29.489909,153.103323,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.430533,150.610476,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.420637,150.609224,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.196498,150.791761,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.437132,150.61229,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,12,Australia,AU,Queensland,-28.231959,153.332771,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-29.485431,153.103851,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.395596,150.642858,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-31.453038,152.926006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.459017,150.659144,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151S,1,,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-28.823549,153.313005,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.488664,150.637312,EPSG:4326 +HUMAN_OBSERVATION,BREHS-HO,1,,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-33.404535,151.088534,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.889358,153.184815,EPSG:4326 +HUMAN_OBSERVATION,CHADL,1,,occurrenceRemarks withheld,2020,2,7,Australia,AU,New South Wales,-28.994175,153.294408,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,23,Australia,AU,New South Wales,-28.975068,153.428417,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,1,10,Australia,AU,New South Wales,-29.489956,153.110538,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.951265,153.262628,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-29.489895,153.101172,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-30.090796,152.133978,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-29.490072,153.101172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.464989,150.522601,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.386336,150.627458,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.426752,150.603838,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-32.35301,151.81336,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-28.871902,153.296745,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.466584,150.521237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.491873,150.63916,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,8,19,Australia,AU,New South Wales,-34.094879,150.983825,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.389682,150.627059,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,17,Australia,AU,New South Wales,-29.48558,153.103787,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.618562,149.923643,EPSG:4326 +HUMAN_OBSERVATION,OJJS17072600,1,,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-30.536332,152.643455,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,3,23,Australia,AU,New South Wales,-29.489003,153.102325,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-32.219628,152.19096,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.176289,152.909424,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-29.478706,153.104165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.488038,150.635239,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.447354,150.514569,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-31.125973,152.797748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.452248,150.522923,EPSG:4326 +HUMAN_OBSERVATION,OLHP23082400,1,,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-32.663575,152.174569,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-28.328122,152.612016,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.457894,150.66403,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.420906,150.630452,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,3,13,Australia,AU,New South Wales,-31.470418,152.917865,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004166,1,,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.532328,153.028282,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,4,Australia,AU,New South Wales,-33.713367,150.784483,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003956,1,,occurrenceRemarks withheld,2023,1,23,Australia,AU,New South Wales,-28.83284,153.324519,EPSG:4326 +HUMAN_OBSERVATION,OJJS20072903,1,MALE,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-31.474536,152.917449,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.058449,150.883896,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,22,Australia,AU,New South Wales,-28.3986,153.555798,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.554597,149.949397,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,27,Australia,AU,New South Wales,-32.706158,152.063336,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091705,1,,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-31.937298,152.401277,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011017,1,,occurrenceRemarks withheld,2024,4,5,Australia,AU,New South Wales,-31.8767,152.391869,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.437867,150.60425,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100515,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-31.474794,152.897985,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.388209,150.631016,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.397714,150.640025,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,9,4,Australia,AU,New South Wales,-34.068105,150.807228,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-31.13339,152.898735,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-31.666297,152.804031,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W;ODMP22022521,1,FEMALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-32.739099,152.059278,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-30.355053,153.087946,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-29.485039,153.104171,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.560626,152.209167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.424939,150.601496,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-30.355053,153.087946,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004189,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.65498,153.434738,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2021,12,13,Australia,AU,New South Wales,-28.590283,153.555745,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-28.398935,153.555948,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.390121,150.627351,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-30.433153,153.041203,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-31.437192,152.909653,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.412761,150.598363,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,4,9,Australia,AU,New South Wales,-31.948252,152.300422,EPSG:4326 +HUMAN_OBSERVATION,OKIO21012900,1,,occurrenceRemarks withheld,2021,1,16,Australia,AU,New South Wales,-33.281424,150.274842,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,9,19,Australia,AU,New South Wales,-34.090763,150.985389,EPSG:4326 +HUMAN_OBSERVATION,OADB11032300,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-34.80422,150.02096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.452336,150.522812,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.486032,150.638301,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-29.492657,153.093125,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-33.705608,150.785426,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.486264,150.637685,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.388567,150.629483,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,28,Australia,AU,New South Wales,-28.826058,153.315708,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308251D,1,,occurrenceRemarks withheld,2020,12,23,Australia,AU,New South Wales,-32.660961,152.17453,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-29.490614,153.108156,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-29.631247,152.900022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.445969,150.514272,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404;OPJG16032902,1,,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-31.646258,152.245658,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.433812,150.617249,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,7,15,Australia,AU,New South Wales,-28.52429,152.99891,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.400594,150.624391,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.445966,152.892072,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.436358,150.603597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.454265,150.606948,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,3,8,Australia,AU,New South Wales,-31.465659,152.927437,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.420887,150.630398,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707;OPJG20112703,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-30.168247,152.637651,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,2,13,Australia,AU,New South Wales,-29.490451,153.109471,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140S,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-28.821307,153.300729,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2020,6,30,Australia,AU,New South Wales,-33.526932,150.658889,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,5,21,Australia,AU,New South Wales,-31.167489,152.94966,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.420647,150.627316,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.42049,150.637394,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-29.485464,153.103849,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.388046,150.631009,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.949626,153.316981,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-31.402559,152.138173,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-28.249381,153.377742,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160K,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-30.353926,153.078648,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.459908,150.525472,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004066,1,MALE,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.747793,153.475886,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404;OPJG16032902,1,,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-31.646112,152.246956,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-28.586471,153.552556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.420833,150.629486,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300M,1,,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-32.669555,151.715401,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154O,1,,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-28.827968,153.326444,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-33.717737,150.784029,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090502,1,,occurrenceRemarks withheld,2023,8,29,Australia,AU,New South Wales,-33.619362,149.846471,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.457807,150.611985,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-31.436314,152.890912,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.44675,150.515914,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.937089,153.316984,EPSG:4326 +HUMAN_OBSERVATION,OJQS16052400,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-30.495214,151.688632,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,9,19,Australia,AU,New South Wales,-28.619644,153.002582,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-29.48424,153.104085,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2023,3,25,Australia,AU,New South Wales,-34.068546,150.842335,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-29.36407,152.75076,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-28.868027,153.336688,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,10,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-36.447255,149.959252,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-29.390288,150.885733,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,6,10,Australia,AU,New South Wales,-28.833926,153.346432,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-36.447255,149.959252,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.427329,150.604736,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,8,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140R,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-33.458862,150.589363,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,23,Australia,AU,New South Wales,-29.485608,153.103468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.421178,150.626332,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.388262,150.630981,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210W,1,,occurrenceRemarks withheld,2022,11,12,Australia,AU,New South Wales,-32.72777,152.105332,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-31.45491,152.89309,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-33.713965,150.785184,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.432983,150.611723,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.431121,150.614746,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.38315,150.623079,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-29.490091,153.101226,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090401,1,FEMALE,occurrenceRemarks withheld,2023,6,12,Australia,AU,New South Wales,-32.706522,152.063617,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-28.819705,153.3,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.466002,150.523235,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-28.73532,153.29907,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-29.490469,153.109374,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100317,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-31.229622,152.627388,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,1,11,Australia,AU,New South Wales,-31.933201,152.415413,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.436279,150.608778,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-29.491492,153.099734,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,6,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-34.516267,150.549032,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,6,23,Australia,AU,New South Wales,-28.556276,153.076344,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,6,Australia,AU,New South Wales,-31.631601,152.785931,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-29.505868,152.824491,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.41982,150.60248,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,6,Australia,AU,New South Wales,-29.485471,153.103854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435799,150.519992,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,FEMALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-28.822956,153.306862,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.451057,150.515351,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140T,1,,occurrenceRemarks withheld,2022,9,18,Australia,AU,South Australia,-34.907289,138.702303,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,10,Australia,AU,New South Wales,-29.490689,153.108103,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100Q,1,,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-31.939935,152.452215,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.446467,150.514834,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080902,1,,occurrenceRemarks withheld,2023,12,10,Australia,AU,New South Wales,-33.979341,150.993396,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2023,6,21,Australia,AU,New South Wales,-36.511751,149.995012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.431885,150.613658,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-29.48863,153.093576,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-30.287717,153.036418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.388629,150.630406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.435554,150.615523,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-29.346563,152.944433,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,4,Australia,AU,New South Wales,-31.127661,152.810059,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121501,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.430384,150.529949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.458373,150.525365,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.183263,153.002831,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.419966,150.631284,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.434152,150.617141,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,12,2,Australia,AU,New South Wales,-32.731435,152.153525,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,12,,Australia,AU,New South Wales,-36.104836,149.320945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.421817,150.637476,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-30.354754,153.073663,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,3,11,Australia,AU,New South Wales,-33.713084,150.784893,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.393653,150.644489,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.434875,150.616729,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.201217,149.265382,EPSG:4326 +HUMAN_OBSERVATION,OJJS20011504,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.876788,153.057556,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.181602,153.002148,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091901,1,,occurrenceRemarks withheld,2024,9,7,Australia,AU,New South Wales,-31.992018,152.352616,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-33.759557,150.047602,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-29.485655,153.103725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.447805,150.518582,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.453523,150.518249,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-33.706047,150.786035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.490598,150.638521,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.451664,150.522581,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-28.38843,153.564816,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.388892,150.630953,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.432617,150.613311,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-29.490619,153.108135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.45397,150.52026,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-31.436936,152.905588,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2020,2,11,Australia,AU,New South Wales,-34.109203,150.807085,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.453508,150.525052,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-33.715149,150.784341,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-32.217431,152.198991,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,16,Australia,AU,New South Wales,-31.135405,152.818487,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-29.485576,153.1038,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419098,150.610301,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140U,1,,occurrenceRemarks withheld,2021,12,26,Australia,AU,New South Wales,-32.6911,151.692287,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,4,Australia,AU,New South Wales,-33.705959,150.785793,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.418268,150.632507,EPSG:4326 +HUMAN_OBSERVATION,OBHE23011100,1,MALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-30.46426,152.89841,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.464953,150.522167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.435633,150.615412,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-31.458992,152.821141,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,12,12,Australia,AU,New South Wales,-32.712519,152.065638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.389627,150.628844,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.438786,150.604213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.471314,150.529098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.415875,150.640211,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2023,6,11,Australia,AU,New South Wales,-29.039437,152.978062,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.457218,150.527522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.420939,150.627993,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.388098,150.632313,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.493108,150.639158,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.388812,150.624495,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.418216,150.635402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.438116,150.606354,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.454064,150.520443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.457793,150.663945,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-29.490278,153.110012,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022604,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-30.921398,152.827538,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031536,1,FEMALE,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-28.39692,153.506361,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-34.533564,150.600987,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-33.238286,150.243084,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.143677,150.792881,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,5,31,Australia,AU,New South Wales,-28.821064,153.31387,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435745,150.520016,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-31.474862,152.897138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.429742,150.602295,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.72981,152.090609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.493225,150.639133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.419117,150.610322,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-34.122038,150.972886,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.465716,150.520218,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,5,23,Australia,AU,New South Wales,-32.721011,151.991909,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.466634,150.527712,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.471149,150.529876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.39732,150.63922,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,6,Australia,AU,New South Wales,-29.490404,153.107899,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,1,31,Australia,AU,New South Wales,-33.935974,150.897168,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,14,Australia,AU,New South Wales,-29.49017,153.108199,EPSG:4326 +HUMAN_OBSERVATION,OJMM08020900,1,,occurrenceRemarks withheld,2020,4,27,Australia,AU,New South Wales,-33.580581,150.238841,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.426868,150.604259,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-32.22325,152.24412,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.427352,150.600437,EPSG:4326 +HUMAN_OBSERVATION,OSYK02050800,1,,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-31.66596,152.18648,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.433958,150.608561,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,1,14,Australia,AU,New South Wales,-32.72384,152.15755,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.386337,150.625642,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251U,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-32.71137,152.061956,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-33.779186,150.102125,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-28.744283,153.592767,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,29,Australia,AU,New South Wales,-33.703454,150.786675,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401110F,1,,occurrenceRemarks withheld,2023,12,4,Australia,AU,New South Wales,-32.737588,152.088396,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-29.489573,153.10394,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020602,1,,occurrenceRemarks withheld,2023,3,1,Australia,AU,New South Wales,-30.400739,151.559687,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,6,Australia,AU,New South Wales,-29.488574,153.093098,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401110G,1,,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-32.72274,152.076939,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.588285,149.913134,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-31.26349,152.832,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041405,1,MALE,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-33.585893,151.168531,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-33.676849,149.467452,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-31.46018,152.928611,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151H,1,,occurrenceRemarks withheld,2022,10,1,Australia,AU,New South Wales,-29.378186,153.095034,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-29.4812,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-28.644672,153.359672,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.618562,149.923643,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.423788,150.637301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.461545,150.533315,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-33.714767,150.78513,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122105,1,,occurrenceRemarks withheld,2024,6,19,Australia,AU,New South Wales,-31.454676,152.908581,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-31.823496,152.442861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.38579,150.62718,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,26,Australia,AU,New South Wales,-31.636763,152.289627,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,MALE,occurrenceRemarks withheld,2022,9,18,Australia,AU,New South Wales,-34.018843,150.889751,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,27,Australia,AU,New South Wales,-29.49018,153.110511,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-32.573191,151.765664,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.296381,149.3241,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.391685,150.644381,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,10,Australia,AU,New South Wales,-28.857555,153.312909,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-31.933156,152.412844,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.431127,150.615475,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021507,1,,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-30.887349,153.071503,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-29.487504,153.090953,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031W,1,,occurrenceRemarks withheld,2023,3,5,Australia,AU,New South Wales,-31.42988,152.90811,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-33.008853,151.710869,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-31.27746,152.81796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.454304,150.648892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.430998,150.61537,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.574566,149.915309,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-28.814134,153.33026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.424483,150.603043,EPSG:4326 +HUMAN_OBSERVATION,OJJS17032800,1,,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-30.997215,150.110683,EPSG:4326 +HUMAN_OBSERVATION,ODFK23083001,1,FEMALE,occurrenceRemarks withheld,2023,1,9,Australia,AU,New South Wales,-29.489498,153.109393,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.392658,150.63921,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,5,19,Australia,AU,New South Wales,-32.726847,152.079189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.491962,150.639125,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.427585,150.605403,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.388398,150.631489,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.146058,152.86366,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,6,Australia,AU,New South Wales,-28.830733,153.283372,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.062061,150.885925,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152D,1,FEMALE,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-28.25109,153.477493,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.446203,150.513841,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,FEMALE,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865572,153.302863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.453506,150.518283,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-33.716458,150.784951,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.469415,150.527042,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.929063,153.317852,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150O,1,FEMALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.820141,153.302471,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,5,11,Australia,AU,New South Wales,-28.257967,153.400673,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250J,1,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.756115,146.564395,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,4,Australia,AU,New South Wales,-33.716906,150.784249,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.574566,149.915309,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003956,1,,occurrenceRemarks withheld,2023,4,12,Australia,AU,New South Wales,-28.848168,153.302741,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.429502,150.614455,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102211,1,,occurrenceRemarks withheld,2022,10,28,Australia,AU,New South Wales,-32.71075,152.07261,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-31.425117,152.876136,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-34.06098,150.86603,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-34.350895,150.804832,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.417728,150.633458,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,24,Australia,AU,New South Wales,-33.716961,150.784148,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-28.885922,153.436269,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.447793,150.513076,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.388244,150.630993,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.43,150.607619,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-28.645421,153.111353,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-31.439225,152.903987,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,3,21,Australia,AU,New South Wales,-36.591146,149.928654,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-33.99196,150.89266,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082307,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-30.408115,152.999583,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.739151,152.020521,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,6,1,Australia,AU,New South Wales,-33.99196,150.89266,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-30.523602,152.630594,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,MALE,occurrenceRemarks withheld,2024,5,29,Australia,AU,New South Wales,-31.149027,152.801638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.461891,150.533446,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-29.762752,151.110282,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140X,1,,occurrenceRemarks withheld,2022,12,27,Australia,AU,New South Wales,-31.442267,152.901407,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151G,1,,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-28.880788,153.323748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.439661,150.603317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.46418,150.524933,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-29.485486,153.103639,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,27,Australia,AU,New South Wales,-33.713502,150.783591,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.454128,150.520506,EPSG:4326 +HUMAN_OBSERVATION,ODMP06091900,1,MALE,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-31.450656,152.916382,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,6,13,Australia,AU,New South Wales,-29.610086,150.864119,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,MALE,occurrenceRemarks withheld,2024,1,30,Australia,AU,New South Wales,-31.946014,152.299924,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.420643,150.609082,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,7,4,Australia,AU,New South Wales,-31.441108,152.903445,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.420325,150.627444,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-34.094516,150.983881,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-30.353921,153.078116,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.45782,150.663923,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,1,Australia,AU,New South Wales,-31.453898,152.925234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.437383,150.604862,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.388226,150.630961,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052005,1,MALE,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-31.447702,152.920812,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-29.053101,153.304342,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-32.226267,152.189573,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-31.486218,152.914683,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-32.77562,152.082222,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-29.487892,153.091157,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.386744,150.625228,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-31.42949,152.91463,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-31.830229,152.429188,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.448231,150.516012,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004133,1,,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-28.641188,153.168567,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.434214,150.603212,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.681355,149.952917,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.462408,150.518933,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,3,3,Australia,AU,New South Wales,-32.706614,152.063432,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240K,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,10,1,Australia,AU,New South Wales,-32.025343,151.937301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.395899,150.643632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.432591,150.611973,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-34.097978,150.807827,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-31.979319,152.361869,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,21,Australia,AU,New South Wales,-33.719171,150.785232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.462354,150.518935,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-33.709657,150.786454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.446041,150.514281,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-28.911268,153.112159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.464506,150.521897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.455707,150.659976,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-33.708624,150.786639,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.388334,150.630033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.437488,150.606992,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,13,Australia,AU,New South Wales,-28.864658,153.293082,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,8,Australia,AU,New South Wales,-31.45252,152.926124,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,4,17,Australia,AU,New South Wales,-29.015225,153.394843,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,10,1,Australia,AU,New South Wales,-31.921037,152.372047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.429823,150.616578,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004215,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.935777,153.337032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.421162,150.626909,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.464792,150.522248,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.420947,150.630244,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,16,Australia,AU,New South Wales,-33.715432,150.785515,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-32.727701,152.079754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.433159,150.615678,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-34.212619,150.786659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-34.455619,150.653982,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-31.447715,152.899121,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-31.477327,152.912082,EPSG:4326 +HUMAN_OBSERVATION,OJJS17032800,1,,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-30.414646,150.259326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.390478,150.627178,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-31.464325,152.924541,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-29.47986,153.104187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.420556,150.609237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.41838,150.633624,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050M,1,FEMALE,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-31.4738,152.9093,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.464838,150.522736,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343;OPJG16120202,1,,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-29.008203,152.727779,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-33.705448,150.78577,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050H,1,,occurrenceRemarks withheld,2024,2,23,Australia,AU,Victoria,-37.841066,144.194961,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.45617,150.655926,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,MALE,occurrenceRemarks withheld,2023,7,26,Australia,AU,New South Wales,-28.823205,153.309348,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-28.924195,153.158632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.439409,150.603792,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250Y,1,,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-32.722269,152.075329,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.453271,150.516918,EPSG:4326 +HUMAN_OBSERVATION,OPUR14061300,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-29.16695,153.034088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.421073,150.637693,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-29.48467,153.103999,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-34.131685,150.826343,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.420938,150.627927,EPSG:4326 +HUMAN_OBSERVATION,OJJS18041601,1,,occurrenceRemarks withheld,2023,3,30,Australia,AU,New South Wales,-28.630097,153.582458,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.393577,150.641033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.396832,150.641964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.447319,150.514189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.450887,150.515824,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,25,Australia,AU,New South Wales,-33.767359,150.057998,EPSG:4326 +HUMAN_OBSERVATION,OPJG19103002,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-31.23541,152.780714,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.454201,150.547088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.435318,150.616335,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.535992,150.559732,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111306,1,,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-31.993726,152.009297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.389674,150.627092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.391583,150.645146,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070N,1,MALE,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-28.66228,153.614108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.395089,150.642742,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,14,Australia,AU,New South Wales,-28.397395,153.557309,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290J,1,,occurrenceRemarks withheld,2022,5,2,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.462107,150.52409,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.388011,150.631978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.430067,150.616604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435742,150.521213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.437918,150.604085,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2024,5,9,Australia,AU,New South Wales,-31.437643,152.905411,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004060,1,FEMALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.561525,153.116345,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180M,1,,occurrenceRemarks withheld,2022,12,22,Australia,AU,New South Wales,-28.89063,153.229707,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-31.442298,152.746755,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-34.0608,150.845253,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-33.449302,150.608202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.438657,150.606861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.453317,150.517428,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-28.95079,153.26224,EPSG:4326 +HUMAN_OBSERVATION,Obs_2557,1,,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-34.067298,150.839334,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-28.64449,153.612899,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.435409,150.615016,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.426773,150.604904,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.869015,153.335481,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-31.440075,152.884823,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,20,Australia,AU,New South Wales,-32.173691,152.096133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.388897,150.630724,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,23,Australia,AU,New South Wales,-32.412877,151.984001,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,24,Australia,AU,New South Wales,-28.588913,153.450108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.452492,150.522981,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-31.939974,152.41501,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-28.674873,153.277639,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-29.490096,153.107411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.388443,150.631498,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080900,1,,occurrenceRemarks withheld,2022,7,15,Australia,AU,New South Wales,-28.38642,153.564573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.432282,150.605846,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260C,1,,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-32.710651,152.060801,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-29.488583,153.110941,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-34.471481,150.466319,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-28.319212,152.425301,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-31.466607,152.925964,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260V,1,FEMALE,occurrenceRemarks withheld,2020,2,16,Australia,AU,New South Wales,-32.759202,152.103391,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.29865,149.323801,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-31.630481,152.783616,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-34.10582,150.955681,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.48798,150.635971,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270U,1,,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-31.163006,152.878361,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-32.565898,151.769722,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.438001,150.615704,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-31.918224,152.378342,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,OLHP24031900,1,,occurrenceRemarks withheld,2023,11,20,Australia,AU,New South Wales,-31.878896,152.364395,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-31.333175,152.795867,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,7,20,Australia,AU,New South Wales,-32.706176,152.063508,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,FEMALE,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-29.667378,152.868083,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-31.478142,152.922279,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040410,1,,occurrenceRemarks withheld,2022,8,15,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-28.667348,153.142529,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.430739,150.611341,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.392813,150.633224,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-30.332642,152.616467,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-28.260395,153.401368,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.618562,149.923643,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031517,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.930261,153.05705,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,28,Australia,AU,New South Wales,-28.818425,153.298252,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,9,10,Australia,AU,New South Wales,-31.922893,152.380451,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.824882,153.303135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.437983,150.604192,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.423815,150.6373,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,MALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-29.683582,152.873178,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-31.442136,152.901778,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-29.485585,153.103811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.399285,150.639676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435742,150.52118,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,5,21,Australia,AU,New South Wales,-31.471185,152.910434,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,10,Australia,AU,New South Wales,-29.485389,153.103886,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-29.489582,153.103854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.423754,150.637378,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2022,10,28,Australia,AU,New South Wales,-30.152751,152.773542,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,1,7,Australia,AU,New South Wales,-33.772715,150.113353,EPSG:4326 +HUMAN_OBSERVATION,OLHP2407120J,1,,occurrenceRemarks withheld,2024,6,2,Australia,AU,New South Wales,-31.445709,152.907013,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.452236,150.522771,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004252,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-28.60426,153.400546,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,14,Australia,AU,New South Wales,-29.490124,153.107395,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.421268,150.627287,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-34.139613,150.778378,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-31.448623,152.879168,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.437272,150.517087,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-31.480395,152.914032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.459979,150.519201,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.426291,150.601947,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.451547,150.517285,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-28.65505,153.59019,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.653103,153.309459,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.428999,153.044117,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081114,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-34.108814,150.805157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.457439,150.659123,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-32.231881,152.200143,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,10,Australia,AU,New South Wales,-28.516985,153.181628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.447338,150.519074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.383282,150.623368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.391062,150.645269,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.469444,150.52715,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-31.485269,152.917058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420062,150.634382,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,8,28,Australia,AU,New South Wales,-29.487271,153.111445,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-29.726875,152.929688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.435793,150.520156,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2021,2,3,Australia,AU,New South Wales,-33.506776,149.544021,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.098327,150.808308,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-28.726548,153.548753,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,FEMALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.849556,153.307484,EPSG:4326 +HUMAN_OBSERVATION,OJJS17032800,1,,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-30.414646,150.259326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.412907,150.598446,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834001,153.321407,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,25,Australia,AU,New South Wales,-31.477146,152.915497,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211S,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-32.710425,152.071965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.453359,150.520812,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-28.864016,153.292716,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.423771,150.637345,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-31.915884,152.373654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.443294,150.515277,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-34.928708,150.140817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.418296,150.632528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.450913,150.522887,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.446356,150.513826,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-29.055106,153.305957,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-29.667173,152.867546,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-32.4932,151.3233,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,30,Australia,AU,New South Wales,-31.457123,152.926942,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.766116,152.741471,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,7,3,Australia,AU,New South Wales,-31.454816,152.908734,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.458008,150.531362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.417708,150.633393,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-31.150529,152.9085,EPSG:4326 +HUMAN_OBSERVATION,OJJS19043000;ODMP22022701,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-33.966977,150.921004,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,7,23,Australia,AU,New South Wales,-29.490241,153.108167,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.443198,152.888201,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,7,Australia,AU,New South Wales,-35.055205,150.12685,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.466473,150.520663,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.428602,150.600271,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041M,1,,occurrenceRemarks withheld,2022,12,8,Australia,AU,New South Wales,-33.612044,151.133525,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-29.485585,153.103822,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260P,1,,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-28.875012,153.426361,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121106,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.467885,152.927513,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.4639,150.524473,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-29.490469,153.109396,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-28.844756,153.347566,EPSG:4326 +HUMAN_OBSERVATION,OJJS16041100,1,,occurrenceRemarks withheld,2022,7,16,Australia,AU,New South Wales,-28.823184,153.302679,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,3,2,Australia,AU,New South Wales,-28.71275,153.454894,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-28.240329,153.505993,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-29.480131,153.104149,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-30.5622,152.90245,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220I,1,,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-32.709412,152.061132,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-28.523637,153.187618,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-29.489974,153.110501,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.423045,150.638475,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-34.440226,150.617447,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-29.72667,152.929698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.420868,150.630366,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.1435,150.792744,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,MALE,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-32.242665,148.632077,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.450519,150.515944,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.452904,150.521489,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-31.918185,152.379857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.449306,150.606491,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-28.5709,153.4364,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,9,3,Australia,AU,New South Wales,-34.740942,146.515531,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.465699,150.521633,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.504982,152.801881,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-28.82292,153.31725,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091709,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.089416,151.005508,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.46636,150.521744,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2021,2,11,Australia,AU,New South Wales,-32.736895,152.040703,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.458617,150.663661,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-28.881627,153.194956,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140A,1,,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-28.883153,153.212505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.438854,150.603547,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-32.69195,151.709744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.491387,150.639206,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070B,1,,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-32.768102,152.036404,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.388529,150.632192,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003856,1,FEMALE,occurrenceRemarks withheld,2023,6,3,Australia,AU,New South Wales,-28.874221,153.27887,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-34.230889,150.799,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-31.401097,152.813274,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.388253,150.630068,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240X,1,,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-32.729647,152.08478,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,5,6,Australia,AU,New South Wales,-28.833144,153.326195,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-31.4423,152.898657,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.410422,150.597691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.386345,150.627458,EPSG:4326 +HUMAN_OBSERVATION,OJJS10010400;ODMP21091801,1,,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-28.192123,153.460661,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100H,1,,occurrenceRemarks withheld,2022,4,19,Australia,AU,New South Wales,-32.551009,151.645727,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2022,7,18,Australia,AU,New South Wales,-34.209797,150.796728,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-33.703532,150.785519,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-32.729064,152.106464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.418851,150.632817,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151V,1,FEMALE,occurrenceRemarks withheld,2022,7,8,Australia,AU,New South Wales,-28.959206,153.393862,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270K,1,,occurrenceRemarks withheld,2022,3,28,Australia,AU,New South Wales,-29.66,151.042,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.420669,150.630796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.397939,150.621399,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.453469,150.608647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.435055,150.61581,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.397996,150.639691,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-29.490446,153.109583,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042602,1,,occurrenceRemarks withheld,2024,6,13,Australia,AU,New South Wales,-32.040298,152.258606,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,12,Australia,AU,New South Wales,-29.484334,153.103977,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090A,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.454014,152.925317,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-29.661519,152.878975,EPSG:4326 +HUMAN_OBSERVATION,Obs_0423,1,,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-32.561276,151.794683,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.452774,150.517336,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2021,2,16,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-34.46,150.566447,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-29.798153,151.042289,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-29.336773,152.939011,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090405,1,FEMALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-32.714705,152.151278,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,4,22,Australia,AU,New South Wales,-30.285587,153.111631,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.430715,150.607805,EPSG:4326 +HUMAN_OBSERVATION,OJMM08020900,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.107688,151.087861,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-31.447508,152.900617,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-29.490573,153.109436,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.790871,152.428057,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004239,1,,occurrenceRemarks withheld,2023,7,24,Australia,AU,New South Wales,-28.8735,153.166301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435554,150.615512,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-31.455948,152.912199,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140N,1,,occurrenceRemarks withheld,2021,12,22,Australia,AU,New South Wales,-32.736947,152.056908,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004059,1,MALE,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-28.82047,153.3168,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-33.767173,150.057346,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-31.454098,152.916964,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011003,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-30.440157,152.936562,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-28.656536,153.356805,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.387873,150.624424,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,11,Australia,AU,New South Wales,-33.716518,150.784508,EPSG:4326 +HUMAN_OBSERVATION,OMJA17032000,1,MALE,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-28.655706,153.557153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.435147,150.608974,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.418971,150.610261,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,11,Australia,AU,New South Wales,-29.489685,153.101333,EPSG:4326 +HUMAN_OBSERVATION,OKEM18092400,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-34.309536,150.739716,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032906,1,,occurrenceRemarks withheld,2022,6,13,Australia,AU,New South Wales,-32.73369,152.040766,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180L,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-28.677445,153.492297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.465715,150.521502,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.437791,150.60497,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,23,Australia,AU,New South Wales,-31.301009,152.862897,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-28.611518,153.009869,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,4,15,Australia,AU,New South Wales,-31.641325,152.792125,EPSG:4326 +HUMAN_OBSERVATION,OPUR15040300,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-30.465531,152.534038,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-28.87772,153.19184,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041403,1,FEMALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-29.728684,151.085029,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,8,Australia,AU,New South Wales,-28.545817,153.390241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.419961,150.609265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.421959,150.607707,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,MALE,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-29.044273,153.316899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.435471,150.519415,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004126,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-29.086962,153.380525,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-28.435952,152.877312,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020301,1,MALE,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-31.453846,152.924982,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-28.74018,153.306909,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-30.462816,152.901862,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004187,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.592481,153.418498,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121109,1,MALE,occurrenceRemarks withheld,2024,4,12,Australia,AU,New South Wales,-36.209974,149.304062,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.485162,150.635713,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004045,1,,occurrenceRemarks withheld,2023,9,8,Australia,AU,New South Wales,-28.32922,153.565365,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-28.59283,153.081228,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-29.483443,153.095228,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-28.541872,153.016479,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.562421,149.989087,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-28.56104,153.396446,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.491554,150.639006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.387767,150.631496,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.562884,152.822341,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,1,2,Australia,AU,New South Wales,-31.474006,152.899068,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102205,1,,occurrenceRemarks withheld,2021,1,21,Australia,AU,New South Wales,-32.736423,152.085719,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.461841,150.524294,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-34.394894,150.641986,EPSG:4326 +HUMAN_OBSERVATION,OSLS05062143,1,MALE,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-34.05299,150.857819,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021300,1,,occurrenceRemarks withheld,2024,1,20,Australia,AU,New South Wales,-31.450078,152.912504,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.393905,150.644482,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210L;ODMP2212210O,1,,occurrenceRemarks withheld,2022,7,19,Australia,AU,New South Wales,-28.261122,153.398233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.397839,150.639967,EPSG:4326 +HUMAN_OBSERVATION,OPJG19043000,1,,occurrenceRemarks withheld,2020,3,13,Australia,AU,New South Wales,-32.59497,151.67932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.395088,150.642687,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042W,1,FEMALE,occurrenceRemarks withheld,2022,8,22,Australia,AU,New South Wales,-34.060322,150.839679,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.423104,150.605835,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.464919,150.522701,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,5,9,Australia,AU,New South Wales,-36.56748,149.966961,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,9,3,Australia,AU,New South Wales,-34.735921,146.526124,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.396199,150.640959,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060503,1,,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-28.839794,153.314434,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152P,1,,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-28.736129,153.544657,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-28.69021,153.494,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,5,14,Australia,AU,New South Wales,-33.145184,151.090936,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.43895,150.604295,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2020,12,20,Australia,AU,New South Wales,-31.472147,152.904414,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.464794,150.525426,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.491485,150.639127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.461257,150.519533,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090801,1,,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-33.569249,150.623874,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,2,28,Australia,AU,New South Wales,-34.056552,150.996125,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.420039,150.631304,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-34.444487,150.518891,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.384755,153.561341,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032110,1,,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-28.697534,153.600762,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.395772,150.629106,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,12,Australia,AU,New South Wales,-31.48174,152.921633,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-31.450003,152.900699,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181R,1,,occurrenceRemarks withheld,2022,11,7,Australia,AU,New South Wales,-28.831453,153.312,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.45764,150.519847,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.434352,150.617233,EPSG:4326 +HUMAN_OBSERVATION,OJKB22082200,1,MALE,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-31.15504,152.979186,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-32.232887,152.002197,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.574566,149.915309,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-28.951435,153.458698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.387077,150.625219,EPSG:4326 +HUMAN_OBSERVATION,OPUR21082000,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-33.487458,150.802198,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.420323,150.627346,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.695214,152.776577,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435322,150.616074,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,4,19,Australia,AU,New South Wales,-31.908386,152.380425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.466372,150.521472,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500,1,,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-28.58252,153.53868,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-31.979319,152.361869,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152A,1,,occurrenceRemarks withheld,2022,12,27,Australia,AU,New South Wales,-28.945517,153.233821,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.412795,150.598264,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-29.807174,152.810584,EPSG:4326 +HUMAN_OBSERVATION,ODMP21070805,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-33.954203,150.929224,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.42501,150.601451,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-30.120163,152.741668,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.388208,150.630994,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,12,4,Australia,AU,New South Wales,-31.44064,152.908928,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.436103,150.616389,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.431334,150.615034,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.432096,150.605122,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.297789,149.316396,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.465717,150.521611,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,1,24,Australia,AU,New South Wales,-29.514915,152.81152,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-29.6429,152.82955,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121104,1,,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-30.417994,152.862317,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-29.038599,153.399747,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,9,Australia,AU,New South Wales,-28.385519,153.561326,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.206134,150.790165,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,11,21,Australia,AU,New South Wales,-31.920313,152.405107,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,7,8,Australia,AU,New South Wales,-31.448805,152.90371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.420476,150.627331,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-31.920313,152.405107,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.824882,153.303135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.388743,150.630674,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,17,Australia,AU,New South Wales,-33.717399,150.784144,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457883,150.531431,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.559404,149.938213,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-31.442214,152.902148,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-28.68361,153.5218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.429434,150.615131,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-28.848119,153.302483,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,5,10,Australia,AU,New South Wales,-34.756779,146.560515,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2020,8,29,Australia,AU,New South Wales,-33.526233,150.658648,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-29.489465,153.101719,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.431051,150.604706,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.466363,150.521886,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,9,1,Australia,AU,New South Wales,-31.160598,152.908244,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.464882,150.522245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.447134,150.513063,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-32.706445,152.063247,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-28.823416,153.301348,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,3,Australia,AU,New South Wales,-29.485569,153.103758,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-32.384235,152.178771,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2020,9,4,Australia,AU,New South Wales,-34.092086,150.817293,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-29.489956,153.103328,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202;OLHP24011204,1,,occurrenceRemarks withheld,2022,2,25,Australia,AU,New South Wales,-30.261,151.558,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-29.489998,153.10122,EPSG:4326 +HUMAN_OBSERVATION,OFML23122100,1,,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-34.39487,150.144337,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-31.650111,152.826357,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,24,Australia,AU,New South Wales,-33.713339,150.784731,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,2,17,Australia,AU,New South Wales,-30.46091,152.89045,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-30.54197,152.87703,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.426692,150.598008,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,8,22,Australia,AU,New South Wales,-32.694067,151.702089,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,FEMALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-28.822956,153.306862,EPSG:4326 +HUMAN_OBSERVATION,OPJG2208110I;OPJG2208110J,1,MALE,occurrenceRemarks withheld,2023,12,23,Australia,AU,New South Wales,-34.815556,149.894167,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-29.489615,153.104621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.453327,150.517482,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-28.993074,153.437187,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-31.448867,152.922937,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-34.401371,150.645024,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,10,Australia,AU,New South Wales,-31.449104,152.925549,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-29.584919,152.776984,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.618562,149.923643,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150U,1,,occurrenceRemarks withheld,2024,1,4,Australia,AU,New South Wales,-34.096301,150.809371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.448999,150.516566,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102228,1,,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-32.706879,152.063292,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-36.458883,149.990705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.464625,150.523341,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,FEMALE,occurrenceRemarks withheld,2020,3,20,Australia,AU,New South Wales,-34.140988,150.79118,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-36.435679,149.980514,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.420923,150.630397,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2022,7,3,Australia,AU,New South Wales,-36.152898,149.35163,EPSG:4326 +HUMAN_OBSERVATION,ODFK2408220K,1,,occurrenceRemarks withheld,2024,7,30,Australia,AU,New South Wales,-30.644694,153.01039,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-29.683551,152.869057,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.428075,150.600482,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072703;OLHP23072704,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.595457,152.190211,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.394738,150.643719,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150K,1,MALE,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-28.607594,153.516969,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060D,1,,occurrenceRemarks withheld,2023,12,26,Australia,AU,New South Wales,-31.473357,152.895436,EPSG:4326 +HUMAN_OBSERVATION,ODFK2408220L,1,,occurrenceRemarks withheld,2024,7,28,Australia,AU,New South Wales,-31.499299,152.808669,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150U,1,,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-31.782515,152.710362,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-31.920313,152.405107,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.297763,149.316364,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-30.348961,152.614728,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.45937,150.526936,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,5,7,Australia,AU,New South Wales,-28.901545,153.354733,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-32.722552,152.077254,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-31.458618,152.914149,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,11,13,Australia,AU,New South Wales,-32.710938,152.065512,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-34.4418,150.607587,EPSG:4326 +HUMAN_OBSERVATION,ODMP06091900,1,MALE,occurrenceRemarks withheld,2024,9,8,Australia,AU,New South Wales,-31.450737,152.916478,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.319245,152.023888,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-28.248472,153.477765,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,MALE,occurrenceRemarks withheld,2020,2,18,Australia,AU,New South Wales,-32.766323,152.116571,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.344119,152.606923,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.42608,150.599016,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-29.489778,153.10181,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-28.888915,153.186783,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.436911,150.603298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.453901,150.520404,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.436431,150.609644,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,12,6,Australia,AU,New South Wales,-29.667396,152.867761,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-31.26329,152.82929,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-32.730404,152.080576,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,5,19,Australia,AU,New South Wales,-31.940234,152.413625,EPSG:4326 +HUMAN_OBSERVATION,OSYF17103100,1,,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-32.673499,150.716117,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-30.484267,152.917188,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.451363,150.604245,EPSG:4326 +HUMAN_OBSERVATION,OPUR21051601,1,,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-35.936826,149.401362,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-29.490138,153.110527,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-31.27014,152.82517,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003806,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-28.38031,153.555243,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.44971,150.51562,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.46223,150.534634,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-32.614457,149.573329,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-34.102026,150.808744,EPSG:4326 +HUMAN_OBSERVATION,OICG18022200,1,,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-28.930242,153.271768,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,3,Australia,AU,New South Wales,-29.487233,153.103285,EPSG:4326 +HUMAN_OBSERVATION,OPUR15021900;OJJS20070600,1,,occurrenceRemarks withheld,2023,5,14,Australia,AU,New South Wales,-29.627564,151.106799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.447229,150.51639,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.469669,150.516476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.434476,150.616163,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.456442,150.527904,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080204,1,,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.078712,150.848267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.418035,150.59793,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-28.847748,153.301997,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,3,5,Australia,AU,New South Wales,-34.032857,150.988137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.449864,150.516094,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2024,1,21,Australia,AU,New South Wales,-31.157601,152.919653,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111205,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-36.460941,148.720973,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-28.247172,153.472227,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-30.302122,153.100682,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2023,6,11,Australia,AU,New South Wales,-29.038548,152.990868,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090406,1,,occurrenceRemarks withheld,2024,4,27,Australia,AU,New South Wales,-30.367339,153.018914,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-30.419039,152.978186,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-31.631801,152.785803,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.418983,150.609499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.447286,150.514331,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.448924,152.905595,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.465703,150.520479,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.388914,150.625993,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-28.693786,153.495272,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-34.081013,150.851273,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-29.485193,153.104079,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-31.445929,152.91543,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-29.485099,153.104063,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,7,13,Australia,AU,New South Wales,-34.018827,150.884575,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,20,Australia,AU,New South Wales,-32.026667,152.386722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.418017,150.59793,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,3,15,Australia,AU,New South Wales,-28.868645,153.314939,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,15,Australia,AU,New South Wales,-28.881836,153.263578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.464898,150.522571,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.465734,150.521589,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.47,150.530552,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,16,Australia,AU,New South Wales,-33.712391,150.784738,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.51267,149.987449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.420706,150.630828,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-31.933156,152.415455,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.438393,150.617293,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-880,1,,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-30.43414,152.917356,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.45305,150.517567,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-31.405709,152.862951,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.386211,150.626559,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111505,1,,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-34.061975,150.99613,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-28.82658,153.321371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.466753,150.521134,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-31.478445,152.912711,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,3,11,Australia,AU,New South Wales,-31.387579,152.860822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.445056,150.516802,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.488594,152.877369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.437709,150.603068,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,12,26,Australia,AU,New South Wales,-31.444425,152.926635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.420958,150.627078,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.436484,150.607728,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,4,21,Australia,AU,New South Wales,-31.970304,152.392478,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-29.489722,153.105217,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-33.774582,150.061098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-34.4409,150.615056,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070C,1,,occurrenceRemarks withheld,2020,12,24,Australia,AU,New South Wales,-34.140388,150.795439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.437944,150.60403,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,23,Australia,AU,New South Wales,-29.49017,153.109701,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,12,24,Australia,AU,New South Wales,-28.652658,153.544403,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031400,1,,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-32.70071,150.81183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.394487,150.629827,EPSG:4326 +HUMAN_OBSERVATION,OPJG20060401,1,,occurrenceRemarks withheld,2020,4,23,Australia,AU,New South Wales,-29.61859,152.26304,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;ORSF21090200,1,MALE,occurrenceRemarks withheld,2021,,,Australia,AU,New South Wales,-32.413596,149.849427,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004112,1,FEMALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.820486,153.316666,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-31.459522,152.929569,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-31.439511,152.904733,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.949626,153.316981,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.681355,149.952917,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-31.476707,152.916224,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-30.922157,150.062475,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-30.240487,153.054871,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-29.357302,153.237103,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,MALE,occurrenceRemarks withheld,2023,8,7,Australia,AU,New South Wales,-31.4681,152.9078,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.432866,150.614044,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.886074,153.322268,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.429341,150.616821,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,2,12,Australia,AU,New South Wales,-31.92712,152.404077,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154C,1,MALE,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-28.639587,153.412357,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.463826,150.523931,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,24,Australia,AU,New South Wales,-29.490521,153.108156,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,12,8,Australia,AU,New South Wales,-32.68079,151.9191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.427287,150.604019,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-28.705548,153.473012,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.435608,150.616414,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.395588,150.641499,EPSG:4326 +HUMAN_OBSERVATION,OJJT03070100,1,,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-30.5006,151.6674,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.581514,149.880784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.491811,150.639205,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260J,1,,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-31.433035,152.912223,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050C,1,,occurrenceRemarks withheld,2024,2,20,Australia,AU,New South Wales,-31.429184,152.886715,EPSG:4326 +HUMAN_OBSERVATION,OAMS01021300,1,,occurrenceRemarks withheld,2022,7,,Australia,AU,New South Wales,-28.523,153.189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.460125,150.515278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.454433,150.515534,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,10,22,Australia,AU,New South Wales,-28.94801,153.31683,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.437838,150.615676,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,20,Australia,AU,New South Wales,-33.716326,150.785192,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.387785,150.631495,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-34.433424,150.608,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-28.606669,153.508867,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,6,5,Australia,AU,New South Wales,-29.676423,152.869915,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,4,18,Australia,AU,New South Wales,-33.775527,150.062922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.388761,150.623703,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.447692,150.518748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.424962,150.60402,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,MALE,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-31.933486,152.415808,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003866,1,,occurrenceRemarks withheld,2023,3,12,Australia,AU,New South Wales,-28.472806,152.99663,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-31.441289,152.885551,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2024,10,10,Australia,AU,New South Wales,-34.214167,150.8,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,7,25,Australia,AU,New South Wales,-29.490227,153.110179,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004034,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-28.724359,153.548,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.294059,149.324852,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070R,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-33.54208,149.682001,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030Q,1,,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-34.009047,150.901148,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.447137,150.513182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.424704,150.60468,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002750,1,,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-29.592962,153.13632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-34.396779,150.642031,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-28.569001,153.061238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.465046,150.522327,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.385854,150.6272,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,29,Australia,AU,New South Wales,-31.440432,152.924742,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,12,13,Australia,AU,New South Wales,-31.474842,152.868028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.435334,150.602875,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,26,Australia,AU,New South Wales,-29.489274,153.103119,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.420672,150.60919,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.39336,150.631197,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,12,Australia,AU,New South Wales,-29.4901,153.107454,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-32.23358,152.21012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.446808,150.516108,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-31.889433,152.381762,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.416647,150.597458,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-28.807102,153.513502,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-34.191247,150.790978,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,4,17,Australia,AU,New South Wales,-29.015225,153.394843,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.184701,150.790562,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,12,Australia,AU,New South Wales,-31.12644,152.859277,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040M,1,,occurrenceRemarks withheld,2023,12,24,Australia,AU,New South Wales,-31.43252,152.887755,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,MALE,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-28.960044,153.395153,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-28.24227,153.514194,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.46582,150.522675,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.44819,150.516644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.38959,150.62878,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.465109,150.522293,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250K,1,,occurrenceRemarks withheld,2024,9,22,Australia,AU,New South Wales,-33.631196,149.520779,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.423734,150.637281,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.513032,150.001052,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080302,1,,occurrenceRemarks withheld,2024,9,25,Australia,AU,New South Wales,-31.642,152.793,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003814,1,FEMALE,occurrenceRemarks withheld,2023,4,28,Australia,AU,New South Wales,-28.924809,153.159083,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180D,1,FEMALE,occurrenceRemarks withheld,2022,7,7,Australia,AU,New South Wales,-28.864601,153.29339,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,12,10,Australia,AU,New South Wales,-31.459516,152.929492,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.426667,150.534417,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.435797,150.615506,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-31.445588,152.915289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.385506,150.62647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.436827,150.607783,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-28.677583,153.493371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.494011,150.640657,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,27,Australia,AU,New South Wales,-29.490156,153.110506,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,3,8,Australia,AU,New South Wales,-31.95843,152.390764,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072103,1,,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-31.246725,150.298158,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.489536,150.638583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.430516,150.610509,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,4,24,Australia,AU,New South Wales,-28.846175,153.314998,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-28.726548,153.548753,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-34.455429,150.521223,EPSG:4326 +HUMAN_OBSERVATION,OJJS2006300F,1,FEMALE,occurrenceRemarks withheld,2020,3,25,Australia,AU,New South Wales,-29.680305,152.869155,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-34.045788,151.009459,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040414,1,MALE,occurrenceRemarks withheld,2022,9,18,Australia,AU,New South Wales,-29.490763,153.106595,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.463744,150.523901,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002190,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-32.704663,151.791641,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.410191,150.597447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.42017,150.609302,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.451325,150.518314,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-28.384435,153.561567,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-31.439064,152.88573,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-31.484158,152.915717,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-31.144858,152.819936,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,FEMALE,occurrenceRemarks withheld,2022,8,12,Australia,AU,New South Wales,-34.100735,150.805141,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,4,27,Australia,AU,New South Wales,-32.65346,151.789547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.458668,150.523452,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,19,Australia,AU,New South Wales,-32.639717,152.044461,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.431093,150.613735,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.437578,150.517927,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-34.097778,150.825347,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.41827,150.632594,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-33.716973,150.785256,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,9,Australia,AU,New South Wales,-29.490273,153.11027,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-28.624028,153.007932,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030606,1,,occurrenceRemarks withheld,2024,2,18,Australia,AU,New South Wales,-32.159062,152.028817,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-28.251322,153.373266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.431184,150.615658,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-28.73487,153.546131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-34.48819,150.16624,EPSG:4326 +HUMAN_OBSERVATION,OJJT03070100,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-30.3,151.3166,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030C,1,FEMALE,occurrenceRemarks withheld,2022,2,19,Australia,AU,New South Wales,-35.992018,149.360619,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.427879,150.597866,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.435402,150.521332,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-29.490058,153.107395,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,13,Australia,AU,New South Wales,-29.485029,153.096113,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-28.817985,153.295621,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,2,28,Australia,AU,New South Wales,-28.860113,153.342777,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.452374,150.522909,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-28.399966,153.556379,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-34.098202,150.808714,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222C,1,,occurrenceRemarks withheld,2020,9,4,Australia,AU,New South Wales,-32.71098,152.061622,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.446705,150.515883,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-34.43823,150.616818,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,20,Australia,AU,New South Wales,-29.48566,153.103725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-34.446452,150.600664,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2020,8,4,Australia,AU,New South Wales,-29.404995,152.719305,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202,1,,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-30.643502,151.478671,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.396199,150.640949,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-29.489844,153.11057,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.457367,150.518429,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-29.49018,153.109717,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.465067,150.522479,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.465298,150.520981,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-32.688473,151.66184,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-30.405003,152.865888,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-28.693467,153.496173,EPSG:4326 +HUMAN_OBSERVATION,OPJG22081700,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.898329,152.733646,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.98155,153.367005,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050J,1,,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-36.25465,149.299582,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-31.45931,152.927278,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091904,1,,occurrenceRemarks withheld,2024,8,27,Australia,AU,New South Wales,-31.843457,152.069789,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.175471,152.825072,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-30.345638,152.614013,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-28.665765,153.392503,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.430715,150.607805,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-31.458891,152.925737,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-31.474586,152.919138,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.446733,150.515947,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-31.449642,152.750496,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.463823,150.5238,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,1,Australia,AU,New South Wales,-29.488037,153.092111,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,10,20,Australia,AU,New South Wales,-30.153038,153.08305,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.44389,152.888038,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,1,26,Australia,AU,New South Wales,-29.488592,153.093088,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.421393,150.626772,EPSG:4326 +HUMAN_OBSERVATION,OJBL97031300,1,,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-31.517697,151.631035,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101301,1,,occurrenceRemarks withheld,2022,5,28,Australia,AU,New South Wales,-28.260548,153.470471,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-33.713913,150.785253,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-29.490222,153.108215,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004237,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.933174,153.278713,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-31.318499,152.516398,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,28,Australia,AU,New South Wales,-29.490194,153.110511,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-31.489188,152.907914,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-32.663949,151.642979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.448242,150.518797,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-32.694076,151.70221,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-30.426398,152.978386,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-29.4906,153.108183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.450904,150.515813,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-28.26228,153.4691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.398001,150.647891,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.437876,150.517972,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-32.011295,152.137334,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.813462,153.334493,EPSG:4326 +HUMAN_OBSERVATION,OJJT03070100,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-30.5006,151.6674,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-29.485566,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,10,12,Australia,AU,New South Wales,-31.914455,152.380029,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.42043,150.609241,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-31.437642,152.887416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.399393,150.645307,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-29.772966,151.097557,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.886464,153.300206,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.063797,150.995293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.427951,150.600605,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,7,Australia,AU,New South Wales,-31.457252,152.921916,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.455962,150.606584,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,20,Australia,AU,New South Wales,-29.490058,153.101231,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-30.43099,153.03171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.447117,150.513096,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,2,25,Australia,AU,New South Wales,-32.706216,152.063459,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-30.3987,152.985436,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2023,6,11,Australia,AU,New South Wales,-29.039159,152.977465,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.069733,150.835019,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.387315,150.630965,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-28.938644,153.304024,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-33.540592,150.6339,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.418002,150.632721,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122004,1,MALE,occurrenceRemarks withheld,2022,11,14,Australia,AU,New South Wales,-28.946579,153.28038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.465919,150.522672,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.559404,149.938213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.440298,150.516475,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-29.939291,152.22156,EPSG:4326 +HUMAN_OBSERVATION,ODFK24082208,1,,occurrenceRemarks withheld,2024,7,5,Australia,AU,Queensland,-27.263855,153.021874,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,30,Australia,AU,New South Wales,-28.816099,153.313232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.466593,150.519898,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,12,27,Australia,AU,New South Wales,-34.761555,146.581289,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100H,1,,occurrenceRemarks withheld,2021,2,6,Australia,AU,New South Wales,-32.55144,151.645334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.421357,150.626741,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,10,Australia,AU,New South Wales,-29.49074,153.109315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.39225,150.64467,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090403,1,FEMALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-32.760534,152.113549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.447454,150.516372,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-28.784836,152.089026,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-34.059081,151.003543,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-31.923062,152.37068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.447897,150.515086,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-32.097185,152.32559,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.453842,150.520634,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-34.533564,150.600987,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012900,1,MALE,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-32.303196,152.337032,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-29.480584,153.104079,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-28.940092,153.36838,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.44728,150.519805,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-33.709173,150.785544,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070V,1,,occurrenceRemarks withheld,2020,12,5,Australia,AU,New South Wales,-32.039796,152.262705,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,4,6,Australia,AU,New South Wales,-29.08315,153.37193,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,2,14,Australia,AU,New South Wales,-34.103949,150.814839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.435909,150.616133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.434359,150.616178,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.492761,150.640354,EPSG:4326 +HUMAN_OBSERVATION,OIXR16111000,1,FEMALE,occurrenceRemarks withheld,2023,8,19,Australia,AU,New South Wales,-34.074174,150.837839,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,5,23,Australia,AU,New South Wales,-28.8452,153.331636,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101304,1,,occurrenceRemarks withheld,2020,1,29,Australia,AU,New South Wales,-30.303974,153.099819,EPSG:4326 +HUMAN_OBSERVATION,OJJS19022501;ODMP21050503,1,,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-32.714185,151.780333,EPSG:4326 +HUMAN_OBSERVATION,OVGI98110201,1,,occurrenceRemarks withheld,2022,10,18,Australia,AU,New South Wales,-30.486105,151.738861,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-31.4842,152.918487,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-32.252481,152.221821,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.389921,150.62541,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-34.400395,150.642995,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2024,8,26,Australia,AU,New South Wales,-34.159167,150.790056,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2023,1,28,Australia,AU,New South Wales,-34.098136,150.808211,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,3,30,Australia,AU,New South Wales,-36.57936,149.97345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.387795,150.631528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.438133,150.606321,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-28.394137,153.55836,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.420903,150.627972,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080904,1,,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-31.465993,152.855653,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.432625,150.615574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.391135,150.6453,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-29.477754,153.104305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.451565,150.602128,EPSG:4326 +HUMAN_OBSERVATION,OPUR23081702;ODFK2310250A,1,,occurrenceRemarks withheld,2023,,,Australia,AU,New South Wales,-29.185754,153.114387,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435931,150.519836,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-30.332248,152.620796,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2024,4,10,Australia,AU,New South Wales,-33.526954,150.658844,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-31.187902,152.978404,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.224416,152.194095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.463786,150.523769,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.390095,150.626025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.447758,150.513153,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-31.916242,152.374088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.443865,150.514531,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.446434,150.514117,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.393635,150.644512,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419689,150.61147,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.914652,152.373754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.481171,150.5324,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-34.52157,150.56401,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304051H,1,,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-32.476152,151.873717,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.481194,150.532639,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,20,Australia,AU,New South Wales,-33.712277,150.786032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.411446,150.596127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.461704,150.523787,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.551144,149.998977,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-29.4812,153.104122,EPSG:4326 +HUMAN_OBSERVATION,OPUR20091102;OPUR20120700,1,,occurrenceRemarks withheld,2021,2,4,Australia,AU,New South Wales,-34.154769,149.79221,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-29.490012,153.10129,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-32.733047,152.09001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.435922,150.615872,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,6,30,Australia,AU,New South Wales,-28.81383,153.46749,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-28.647216,153.396456,EPSG:4326 +HUMAN_OBSERVATION,OJSM22041200,1,,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-30.171,152.483,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.395489,150.641523,EPSG:4326 +HUMAN_OBSERVATION,OLHP24031101,1,FEMALE,occurrenceRemarks withheld,2024,2,3,Australia,AU,New South Wales,-28.927046,153.158571,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.40071,150.619232,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004174,1,,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-28.259933,153.449572,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-29.490236,153.10998,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-36.023781,149.360358,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002841,1,,occurrenceRemarks withheld,2020,12,13,Australia,AU,New South Wales,-29.493308,153.092881,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-31.45499,152.926788,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2022,5,3,Australia,AU,New South Wales,-32.777823,152.109919,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.423743,150.637313,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.434688,150.61594,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,25,Australia,AU,New South Wales,-33.711934,150.784551,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.435097,150.616603,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,17,Australia,AU,New South Wales,-33.710441,150.786171,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180K,1,FEMALE,occurrenceRemarks withheld,2022,10,14,Australia,AU,New South Wales,-29.026272,153.437804,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-34.192847,150.790131,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,1,Australia,AU,New South Wales,-33.712912,150.785925,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,23,Australia,AU,New South Wales,-33.703927,150.78652,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,7,19,Australia,AU,New South Wales,-32.76567,152.111011,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-29.490712,153.109267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.438917,150.602598,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,9,Australia,AU,New South Wales,-33.710715,150.785378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.482275,150.532596,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,8,30,Australia,AU,New South Wales,-31.842779,152.72636,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.451652,150.522462,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.48872,150.63742,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.488346,150.63767,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.411515,150.595059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.421794,150.636302,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090600,1,,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-33.678165,149.467813,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-31.07295,150.11017,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-32.61446,149.57333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.445938,150.513185,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,4,29,Australia,AU,New South Wales,-31.46443,152.870469,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.389772,150.627948,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.14172,150.7941,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030M,1,MALE,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-32.734688,152.102735,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,4,23,Australia,AU,New South Wales,-31.164515,150.291886,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.449147,150.521633,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-28.664002,153.566238,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-28.576882,153.5188,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.385909,150.625382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.420655,150.609234,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,8,21,Australia,AU,New South Wales,-29.483983,153.095341,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-29.490236,153.10814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.42126,150.627331,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.383812,150.622831,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,10,1,Australia,AU,New South Wales,-29.478842,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-29.49053,153.109374,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-34.49136,150.47101,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072703;OLHP23072704,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.589311,152.167509,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR16092800;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-28.57492,153.51898,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.922634,152.370406,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0006388,1,,occurrenceRemarks withheld,2024,5,3,Australia,AU,New South Wales,-31.934363,152.414475,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,8,19,Australia,AU,New South Wales,-32.710989,152.065339,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080308,1,,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-31.604038,152.804671,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,4,26,Australia,AU,New South Wales,-29.490208,153.110511,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003882,1,,occurrenceRemarks withheld,2023,6,18,Australia,AU,New South Wales,-28.594591,153.05246,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,15,Australia,AU,New South Wales,-29.490292,153.108178,EPSG:4326 +HUMAN_OBSERVATION,ODMP21083102,1,,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-32.238896,150.966913,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.485279,150.637103,EPSG:4326 +HUMAN_OBSERVATION,OJJS20051106,1,,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-29.375014,151.345157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.393226,150.643414,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.448717,150.521319,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,5,2,Australia,AU,New South Wales,-28.828386,153.396029,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,3,2,Australia,AU,New South Wales,-31.79145,152.22033,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-32.72627,152.076699,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-34.124693,150.812345,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-29.485381,153.103869,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.437711,150.616093,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.418021,150.632786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.439564,150.603897,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-34.5087,150.54646,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,2,11,Australia,AU,New South Wales,-33.771173,150.084951,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.20114,150.789967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.431,150.615903,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,4,Australia,AU,New South Wales,-31.443502,152.889383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.453857,150.520503,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,9,Australia,AU,New South Wales,-28.893189,153.359253,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2022,10,8,Australia,AU,New South Wales,-31.9144,152.373744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.417643,150.597255,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,10,13,Australia,AU,New South Wales,-32.73784,152.10633,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.298883,149.323554,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031W,1,,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-31.4697,152.91779,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.459881,150.519226,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,12,11,Australia,AU,New South Wales,-28.89644,153.35381,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,4,25,Australia,AU,New South Wales,-32.6549,151.789538,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.3916,150.646059,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.885013,152.777302,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-32.614457,149.573329,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.420242,150.630156,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-29.490096,153.110517,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,6,3,Australia,AU,New South Wales,-31.13257,152.804668,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,3,31,Australia,AU,New South Wales,-28.807094,153.36712,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.436377,150.609668,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-28.407803,153.55336,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-30.52431,152.60765,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,9,Australia,AU,New South Wales,-31.452408,152.926021,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041307,1,,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-34.085331,150.838487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.451984,150.5175,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040401,1,,occurrenceRemarks withheld,2024,3,16,Australia,AU,New South Wales,-31.643628,152.793995,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003869,1,,occurrenceRemarks withheld,2023,3,27,Australia,AU,New South Wales,-28.82029,153.298632,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090407,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,Queensland,-27.619752,151.963994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.446872,150.52145,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.390612,150.628979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.392455,150.633832,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,2,20,Australia,AU,New South Wales,-31.414349,152.894844,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.437963,150.604095,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,30,Australia,AU,New South Wales,-33.710113,150.785103,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-33.692482,149.55989,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-28.826961,153.318522,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-29.489587,153.103951,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-29.48784,153.091634,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-32.680193,151.649727,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,23,Australia,AU,New South Wales,-29.487878,153.091162,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.489472,150.638563,EPSG:4326 +HUMAN_OBSERVATION,OSSD22052500,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-34.23398,150.78993,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.467892,150.529743,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,,occurrenceRemarks withheld,2023,2,4,Australia,AU,New South Wales,-28.888406,153.274112,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-30.186161,152.78537,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.443287,150.515386,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-34.098921,150.961559,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.420647,150.630579,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,2,Australia,AU,New South Wales,-29.480743,153.104122,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,5,Australia,AU,New South Wales,-28.864021,153.29238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.430541,150.610432,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.099438,150.973729,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.387454,150.631146,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-29.485548,153.103784,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.465672,150.520306,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.440522,150.603565,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-30.88693,153.071536,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.086419,150.977245,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.45191,150.518297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.43394,150.61459,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121004,1,,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-31.907995,152.41411,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-29.483965,153.095309,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.38704,150.626557,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.436521,150.603635,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,22,Australia,AU,New South Wales,-28.392089,153.562331,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031403,1,,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-30.671984,152.96213,EPSG:4326 +HUMAN_OBSERVATION,ODMP08103101,1,,occurrenceRemarks withheld,2020,2,24,Australia,AU,New South Wales,-32.276114,150.933006,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,8,28,Australia,AU,New South Wales,-32.722441,152.077179,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,2,16,Australia,AU,New South Wales,-31.434442,152.924943,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,3,16,Australia,AU,New South Wales,-32.528247,151.942657,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042F,1,,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-34.021685,151.041533,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR1511120M;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-28.54593,153.52954,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.447242,150.513049,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.560939,152.209235,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,FEMALE,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-31.90253,152.386438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.436276,150.618778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.473233,150.531262,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021807,1,,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-29.064958,150.30893,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.810285,152.82844,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-34.437981,150.616989,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002829,1,,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-29.483334,153.09518,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.388217,150.630994,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-29.476941,153.10445,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.454521,150.517229,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-29.483769,153.104176,EPSG:4326 +HUMAN_OBSERVATION,OSYK02050800,1,,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-32.06324,151.6887,EPSG:4326 +HUMAN_OBSERVATION,OPJG21060804,1,,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-31.249574,152.826661,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.488479,150.637557,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.454036,150.516863,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17379,152.90758,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-31.438588,152.881902,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-28.815788,153.326746,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.465782,150.520357,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-35.089459,150.594797,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040O,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.487595,152.91037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.433829,150.607988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.459968,150.51906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.447758,150.513142,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.426036,150.603663,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,7,15,Australia,AU,New South Wales,-28.703269,153.53215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.435419,150.615048,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-29.485805,153.103693,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-28.82118,153.199046,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-34.90655,150.05894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.389541,150.629075,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-34.213363,150.799225,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151P,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-28.823006,153.30756,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-31.488943,152.915031,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,7,25,Australia,AU,New South Wales,-31.159058,152.878566,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.432092,150.615491,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,27,Australia,AU,New South Wales,-28.820148,153.313079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.427144,150.605437,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,5,Australia,AU,New South Wales,-31.48001,152.914657,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-32.479552,152.044273,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-34.109791,150.814178,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.085729,150.97787,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-30.50301,152.903739,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.430416,150.607716,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.46488,150.521701,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-34.447706,150.513231,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,9,8,Australia,AU,New South Wales,-31.45867,152.922519,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-28.889794,153.189405,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.424585,150.602769,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.451917,150.518188,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-31.94825,152.30042,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.420101,150.634968,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091904,1,,occurrenceRemarks withheld,2024,8,28,Australia,AU,New South Wales,-32.348258,152.334753,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-34.124693,150.812345,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-28.254046,153.375014,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100601,1,,occurrenceRemarks withheld,2024,6,8,Australia,AU,New South Wales,-31.472944,152.926614,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.393976,150.630875,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,5,23,Australia,AU,New South Wales,-31.453437,152.926081,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-33.77256,150.091014,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.464253,150.523679,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.514293,150.545289,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-33.169258,151.246088,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-29.489507,153.103916,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.424295,150.603136,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2024,3,6,Australia,AU,New South Wales,-31.449341,152.92054,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.388731,150.630544,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-29.667023,152.868233,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270B,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-32.760757,152.02323,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,27,Australia,AU,New South Wales,-29.503968,152.824486,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-31.448161,152.890385,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-34.496059,150.460586,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-31.885829,152.352351,EPSG:4326 +HUMAN_OBSERVATION,OJJS20031101,1,,occurrenceRemarks withheld,2020,5,14,Australia,AU,New South Wales,-32.926389,150.861944,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-31.291552,152.864257,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100K,1,,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-31.445599,152.90424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.437756,150.61607,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003844,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-28.815314,153.31231,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.46617,150.521282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.421028,150.626968,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.419078,150.610204,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,3,20,Australia,AU,New South Wales,-30.362471,151.554526,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-28.864043,153.291586,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.574566,149.915309,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,20,Australia,AU,New South Wales,-28.889411,153.27327,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004015,1,,occurrenceRemarks withheld,2023,9,8,Australia,AU,New South Wales,-28.489326,153.022552,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.443489,150.518677,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,9,4,Australia,AU,New South Wales,-34.783562,146.772774,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-34.030191,150.848206,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,13,Australia,AU,New South Wales,-29.489624,153.104283,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121109,1,,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-36.178099,149.335882,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.436031,150.616391,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-29.488433,153.110254,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-36.264311,149.418031,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.437946,150.604139,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.440591,152.900897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.421338,150.626719,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-29.489783,153.095314,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.092289,150.820889,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.228945,152.192632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.389742,150.625959,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003860,1,,occurrenceRemarks withheld,2023,2,22,Australia,AU,New South Wales,-28.654564,153.513129,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190K,1,,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-32.813649,151.458141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.422004,150.607684,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-30.35884,153.05632,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,15,Australia,AU,New South Wales,-30.445242,152.638284,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-31.454215,152.879205,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-32.706156,152.063218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.420242,150.63528,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,3,19,Australia,AU,New South Wales,-31.438393,152.91782,EPSG:4326 +HUMAN_OBSERVATION,MADDE,1,,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-34.207205,150.652675,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-29.490245,153.107958,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-30.2799,153.05388,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.49059,150.638532,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-34.043163,150.851556,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.18963,150.790595,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003892,1,,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-29.016415,153.431324,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,21,Australia,AU,New South Wales,-32.21744,152.19898,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-31.447503,152.892632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.432899,150.613912,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.450039,152.90726,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.812954,152.826727,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022602,1,,occurrenceRemarks withheld,2020,2,8,Australia,AU,New South Wales,-29.271992,150.098294,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.464145,150.522768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.413764,150.595735,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.439251,150.604482,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.431927,150.613516,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-31.485139,152.91819,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-31.597141,152.836214,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070I,1,,occurrenceRemarks withheld,2020,12,6,Australia,AU,New South Wales,-31.88474,152.35368,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.84178,152.759299,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-28.4371,153.4064,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-29.634228,150.709661,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.435119,150.615873,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,5,27,Australia,AU,New South Wales,-31.45775,152.884278,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-30.19891,152.833339,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.448824,150.51681,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.18133,153.002397,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003967,1,,occurrenceRemarks withheld,2023,4,28,Australia,AU,New South Wales,-28.57876,153.12734,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-31.361977,152.80272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436263,150.615786,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.206998,150.79019,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,13,Australia,AU,New South Wales,-29.491179,153.096049,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-32.24255,152.20642,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,3,12,Australia,AU,New South Wales,-31.921169,152.372471,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-28.877372,153.370124,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,MALE,occurrenceRemarks withheld,2024,3,16,Australia,AU,New South Wales,-34.102067,150.809217,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-31.429271,152.914841,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.467107,150.52083,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032902,1,,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-32.717174,152.07291,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.465745,150.521654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.488598,150.637663,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-31.459166,152.924287,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.465835,150.520312,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.42966,150.614244,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,1,Australia,AU,New South Wales,-29.487845,153.09106,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.435919,150.609724,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-34.143173,150.792791,EPSG:4326 +HUMAN_OBSERVATION,OMZS18030500,1,,occurrenceRemarks withheld,2022,1,31,Australia,AU,New South Wales,-30.179072,152.55733,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-32.224416,152.194095,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,6,25,Australia,AU,New South Wales,-28.599914,153.398798,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,1,Australia,AU,New South Wales,-32.710862,152.06505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-34.440327,150.516551,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-31.420089,152.205251,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.161712,152.819043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.399566,150.639745,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.418265,150.633747,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-29.483498,153.095003,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-34.440711,150.515049,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.41946,150.633061,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.479725,150.533139,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-28.356225,153.551589,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.384464,150.622509,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.391237,150.64496,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-31.472649,152.911706,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-28.850528,153.314381,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-29.801787,152.81107,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,5,Australia,AU,New South Wales,-29.490142,153.101129,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,FEMALE,occurrenceRemarks withheld,2022,6,20,Australia,AU,New South Wales,-28.821017,153.302053,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.445791,150.513059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.39573,150.642832,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.447284,150.514233,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,20,Australia,AU,New South Wales,-31.636643,152.787653,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.44912,150.60802,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,2,1,Australia,AU,New South Wales,-28.503093,152.97089,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260F,1,,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-32.4745,151.950374,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.43355,150.613981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.434975,150.608946,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.69241,153.510553,EPSG:4326 +HUMAN_OBSERVATION,OLHP24031902,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-31.25833,152.943012,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-32.563688,151.767634,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,MALE,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-34.014404,150.879395,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,FEMALE,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-31.954189,152.417022,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-31.85808,152.35578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.388243,150.630949,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-29.484796,153.103963,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.488261,150.637019,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.420297,150.611192,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181U,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-28.489755,153.023271,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-29.489704,153.105211,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,2,Australia,AU,New South Wales,-29.490525,153.109369,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210W,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-32.643714,151.6279,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,6,1,Australia,AU,New South Wales,-28.617273,153.432545,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251F,1,,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-32.718209,152.1827,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-29.834533,150.84509,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-28.79521,153.499543,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,17,Australia,AU,New South Wales,-29.487733,153.102883,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,23,Australia,AU,New South Wales,-33.714649,150.785676,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.666909,152.710572,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,12,5,Australia,AU,New South Wales,-28.820958,153.3346,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,1,13,Australia,AU,New South Wales,-30.663571,152.955376,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,FEMALE,occurrenceRemarks withheld,2023,9,8,Australia,AU,New South Wales,-28.553447,153.076265,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-30.192429,152.783268,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.44641,150.51735,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-30.23624,152.90635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.45312,150.521472,EPSG:4326 +HUMAN_OBSERVATION,OPUR17060900,1,,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-32.547247,151.939303,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,21,Australia,AU,New South Wales,-28.79793,153.507487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.397138,150.640574,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003834,1,,occurrenceRemarks withheld,2023,1,7,Australia,AU,New South Wales,-28.24121,153.512138,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-34.52468,150.55964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.453709,150.517166,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.498281,150.55148,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-28.970312,153.434063,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,22,Australia,AU,New South Wales,-33.712324,150.785778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.385799,150.627147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.43083,150.602612,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,6,22,Australia,AU,New South Wales,-34.48861,150.43767,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-32.730627,152.082224,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.42209,150.636174,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-34.441249,150.616765,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-29.382877,153.091752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.44728,150.514451,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-29.35394,150.200414,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.420615,150.630787,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.451475,150.522141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.494275,150.64078,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-29.35754,153.240267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-34.46287,150.5284,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,8,27,Australia,AU,New South Wales,-34.143698,150.79049,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160J,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-32.72786,152.105583,EPSG:4326 +HUMAN_OBSERVATION,OADB08061805,1,,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-34.045933,151.009296,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-34.446537,150.599987,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,19,Australia,AU,New South Wales,-30.452702,152.888659,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,FEMALE,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-29.6845,152.87327,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021507,1,,occurrenceRemarks withheld,2023,1,18,Australia,AU,New South Wales,-30.887507,153.07177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.41995,150.63556,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-31.45874,152.932724,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.435687,150.6154,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.450135,150.516543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.434305,150.616212,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,12,23,Australia,AU,New South Wales,-32.7787,152.1103,EPSG:4326 +HUMAN_OBSERVATION,OJJS17032800,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-30.414646,150.259326,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-28.235662,153.517887,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,6,22,Australia,AU,New South Wales,-30.421315,153.006216,EPSG:4326 +HUMAN_OBSERVATION,OPJG22120100,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-32.228499,152.347903,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-29.492627,153.093286,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.432018,150.612164,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090405,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-32.735782,152.041095,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,8,Australia,AU,New South Wales,-31.434786,152.90837,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.84847,152.734049,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-28.508764,153.215212,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-29.487938,153.091784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.394207,150.629781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.43641,150.615934,EPSG:4326 +HUMAN_OBSERVATION,SHARM,1,FEMALE,occurrenceRemarks withheld,2022,12,,Australia,AU,New South Wales,-32.625004,149.856945,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OMFZ23033002;ODFK24051300,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-33.252538,150.878878,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.435353,150.602951,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.181601,153.00215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.427045,150.604983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.385852,150.625275,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-29.490154,153.10972,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.418415,150.63358,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.429815,150.618026,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,1,20,Australia,AU,New South Wales,-28.951265,153.262628,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.812783,152.827328,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.419098,150.61029,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.429768,150.617472,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2023,4,2,Australia,AU,New South Wales,-31.876522,152.38713,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,6,Australia,AU,New South Wales,-33.713139,150.785594,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,1,Australia,AU,New South Wales,-28.399921,153.556382,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,1,21,Australia,AU,New South Wales,-33.764504,150.054308,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-34.215516,150.79092,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-28.332256,153.382755,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-31.447329,152.891476,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,6,28,Australia,AU,New South Wales,-32.722474,152.077252,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-28.720572,153.394041,EPSG:4326 +HUMAN_OBSERVATION,OEMM0911130Y,1,MALE,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-37.177314,149.355934,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-31.449922,152.922124,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,6,Australia,AU,New South Wales,-29.49053,153.109417,EPSG:4326 +HUMAN_OBSERVATION,OPJG21121406,1,,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-34.060486,150.844509,EPSG:4326 +HUMAN_OBSERVATION,OLHP2407120E,1,,occurrenceRemarks withheld,2024,6,4,Australia,AU,New South Wales,-31.466336,152.92771,EPSG:4326 +HUMAN_OBSERVATION,OJJS19022501;ODMP21050503,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-32.714185,151.780333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.437541,150.60464,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.388199,150.630994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.448854,150.617953,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.435415,150.602894,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180M,1,,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-28.93445,153.278284,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-28.832291,153.290219,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-28.686406,153.523492,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.45377,150.520658,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-32.712831,152.070147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.420544,150.63736,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030L,1,,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-36.243939,149.111707,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032808,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-31.445284,152.907901,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210G,1,,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-28.269565,153.392847,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-29.483923,153.09526,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-34.447721,150.51311,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,6,27,Australia,AU,New South Wales,-32.485756,151.779136,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-32.73767,152.022406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.485224,150.63472,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.458633,150.656042,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.437939,150.604215,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,17,Australia,AU,New South Wales,-33.715268,150.784854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.446502,150.514333,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,5,3,Australia,AU,New South Wales,-28.803954,152.731727,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121401,1,FEMALE,occurrenceRemarks withheld,2022,7,15,Australia,AU,New South Wales,-34.05292,150.97917,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866891,153.343646,EPSG:4326 +HUMAN_OBSERVATION,OJJS1810240P,1,,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101J,1,FEMALE,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-34.119831,150.812032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-34.401726,150.651289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.444448,150.515743,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,21,Australia,AU,New South Wales,-29.490199,153.110538,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-29.48976,153.101311,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,Obs_2070,1,,occurrenceRemarks withheld,2023,4,25,Australia,AU,New South Wales,-31.657441,152.778102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.453075,150.51749,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-29.489587,153.103886,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.454773,150.656879,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,3,Australia,AU,New South Wales,-29.484072,153.10409,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2020,5,22,Australia,AU,New South Wales,-28.39963,153.31644,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-34.21254,150.78718,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-31.13017,150.08432,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-33.526832,150.65871,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-30.341341,152.619482,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,25,Australia,AU,New South Wales,-29.489811,153.110517,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,9,23,Australia,AU,New South Wales,-31.454829,152.92191,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080904,1,,occurrenceRemarks withheld,2023,2,20,Australia,AU,New South Wales,-28.963665,152.86303,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,2,16,Australia,AU,New South Wales,-31.93329,152.415154,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-30.314094,152.857243,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-33.767775,150.058805,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-28.328065,153.564424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,24,Australia,AU,New South Wales,-34.439938,150.616563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.465824,150.522446,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.452026,150.517336,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.417665,150.613559,EPSG:4326 +HUMAN_OBSERVATION,DOUS-HO,1,,occurrenceRemarks withheld,2024,9,8,Australia,AU,New South Wales,-34.387975,150.422028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.395409,150.62991,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,4,7,Australia,AU,New South Wales,-31.466968,152.90679,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,2,,TIME = 7:15 AM; 2 males; SEX = M,2023,1,26,Australia,AU,South Australia,-34.99039,138.70654,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011015,1,,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.707579,152.064801,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.454117,150.52043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.475652,150.532747,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,6,29,Australia,AU,New South Wales,-32.722459,152.077233,EPSG:4326 +HUMAN_OBSERVATION,SCHM-035,1,,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-34.26114,150.23024,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,1,19,Australia,AU,New South Wales,-32.727834,152.078142,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303280D,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-31.42944,152.815152,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-28.397359,153.557263,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.429714,150.61421,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021803,1,,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-29.033981,150.325544,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-31.9333,152.415046,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OJJT03070100,1,,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-29.75,151.7361,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-29.485041,153.104187,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,7,19,Australia,AU,New South Wales,-31.645793,152.795541,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.529635,152.842428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.435516,150.603436,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.422555,150.607287,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2024,6,22,Australia,AU,New South Wales,-31.47668,152.914016,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181M,1,,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-28.883003,153.352564,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-32.03227,152.48874,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-32.70598,152.063524,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.44479,150.514373,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.834226,153.364275,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.447247,150.516389,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.467463,150.528166,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-29.485118,153.104037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.44731,150.513732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.438525,150.615754,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,6,7,Australia,AU,New South Wales,-28.682634,153.613372,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-31.200466,152.820736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.47338,150.532292,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122106,1,FEMALE,occurrenceRemarks withheld,2023,6,21,Australia,AU,New South Wales,-28.831073,153.279661,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.435528,150.615589,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-31.45925,152.924972,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-33.491218,149.552128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.420654,150.609191,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-28.691628,153.516981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.395852,150.642133,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-29.008668,153.312767,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-28.84626,153.195816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.390019,150.630921,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-29.487593,153.102701,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-36.572524,149.950373,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.420967,150.630331,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.465771,150.520292,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102203,1,,occurrenceRemarks withheld,2022,3,2,Australia,AU,New South Wales,-32.723988,152.10436,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-29.490199,153.108119,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012507,1,,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-28.71029,153.5818,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,MALE,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-28.864786,153.29248,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-33.999921,150.898282,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.458858,150.52928,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-28.644286,153.558569,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152A,1,,occurrenceRemarks withheld,2022,12,27,Australia,AU,New South Wales,-28.945517,153.233821,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001217,1,,occurrenceRemarks withheld,2021,,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2023,10,1,Australia,AU,New South Wales,-30.372371,153.094944,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060G,1,FEMALE,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-36.176866,149.358826,EPSG:4326 +HUMAN_OBSERVATION,ODMP23070402,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-30.93457,150.03877,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.455207,150.519484,EPSG:4326 +HUMAN_OBSERVATION,OJJS20012800,1,,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-33.38066,150.83358,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003883,1,,occurrenceRemarks withheld,2023,5,3,Australia,AU,New South Wales,-28.999257,153.395804,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.428603,150.597072,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,4,19,Australia,AU,New South Wales,-34.026487,151.022649,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-30.297941,153.073282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.432864,150.614882,EPSG:4326 +HUMAN_OBSERVATION,ODMP22111607,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-34.07335,150.845508,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-33.710845,150.785074,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100318,1,FEMALE,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-31.453251,152.921563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.454178,150.607571,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,1,9,Australia,AU,New South Wales,-28.38145,153.563417,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042B,1,FEMALE,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-33.738628,150.646112,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,MALE,occurrenceRemarks withheld,2020,2,5,Australia,AU,New South Wales,-36.18352,149.35486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.436123,150.61604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.420957,150.630277,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-28.937314,153.277598,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.384035,150.622684,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.44693,150.515441,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-31.44506,152.89905,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.482586,152.915616,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,4,24,Australia,AU,New South Wales,-36.334464,149.326041,EPSG:4326 +HUMAN_OBSERVATION,ODFK23083003,1,,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-29.725197,152.934118,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-30.4028,152.9869,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-28.955509,153.428439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.427518,150.594666,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-31.090351,152.839682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.451057,150.515319,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.418242,150.597456,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.455735,150.527581,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-34.08772,150.991043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.451485,150.522228,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,10,13,Australia,AU,New South Wales,-28.329243,153.377273,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.458542,150.656937,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.482725,150.524537,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,4,14,Australia,AU,New South Wales,-31.126723,150.270318,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,MALE,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-28.848121,153.302468,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,22,Australia,AU,New South Wales,-33.714098,150.786056,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-34.511271,150.55444,EPSG:4326 +HUMAN_OBSERVATION,OPJG22081700,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-32.209227,152.257467,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,12,20,Australia,AU,New South Wales,-32.722466,152.077229,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.429599,150.6185,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,1,18,Australia,AU,New South Wales,-31.456121,152.907764,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404,1,,occurrenceRemarks withheld,2022,7,19,Australia,AU,New South Wales,-31.678701,152.510267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.415899,150.597958,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.418068,150.632904,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-32.619853,151.63547,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-31.474598,152.921512,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-31.442612,152.901137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.428472,150.598708,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.386184,150.6252,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004144,1,,occurrenceRemarks withheld,2023,7,19,Australia,AU,New South Wales,-28.98299,153.407585,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.46388,150.524397,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-34.112623,150.791068,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032804,1,,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-31.451441,152.850406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.44719,150.513126,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021305,1,,occurrenceRemarks withheld,2024,1,8,Australia,AU,New South Wales,-31.429879,152.90811,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2022,8,13,Australia,AU,New South Wales,-34.101251,150.809758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.46497,150.522145,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-32.709755,152.066656,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-31.452096,152.900198,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-28.880745,153.32338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.422741,150.605258,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220V,1,,occurrenceRemarks withheld,2021,1,2,Australia,AU,New South Wales,-32.724912,152.132983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.420771,150.609176,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-30.505415,152.910083,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.459411,150.522733,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-28.845844,153.30258,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100L,1,FEMALE,occurrenceRemarks withheld,2024,8,19,Australia,AU,New South Wales,-31.944608,152.406557,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.46666,150.52142,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.452054,150.517368,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-32.706562,152.063676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.421216,150.627365,EPSG:4326 +HUMAN_OBSERVATION,OJMM08020900,1,FEMALE,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-34.092211,150.984956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.465917,150.522138,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS;ODFK23090501,1,,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-30.415255,151.623128,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,4,Australia,AU,New South Wales,-29.490801,153.109294,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071101,1,,occurrenceRemarks withheld,2024,5,8,Australia,AU,New South Wales,-32.651336,152.030235,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.447967,150.516324,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-34.19091,150.802963,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.321162,153.463368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.465527,150.520245,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-33.717931,150.78315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.466613,150.521345,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,6,Australia,AU,New South Wales,-29.477469,153.104122,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,8,Australia,AU,New South Wales,-29.490245,153.108135,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,3,29,Australia,AU,New South Wales,-28.912917,153.268372,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-31.472867,152.91142,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.884771,152.795899,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290L,1,,occurrenceRemarks withheld,2023,12,16,Australia,AU,New South Wales,-28.807868,153.359462,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OJJS18110502,1,,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-32.06324,151.6887,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2023,6,19,Australia,AU,New South Wales,-36.596292,149.952246,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-28.631175,153.478507,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.459444,150.520828,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-31.459472,152.924019,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.43895,150.604295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,25,Australia,AU,New South Wales,-34.439033,150.617307,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-34.21536,150.79209,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,5,9,Australia,AU,New South Wales,-31.447206,152.922857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.38526,150.623552,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,FEMALE,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-31.893674,152.50955,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,4,22,Australia,AU,New South Wales,-31.976944,152.397187,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,8,Australia,AU,New South Wales,-32.706562,152.063677,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,7,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.452573,150.522968,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,8,7,Australia,AU,New South Wales,-31.444286,152.923886,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.418885,150.632707,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-31.459288,152.922867,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.451058,150.515362,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,3,Australia,AU,New South Wales,-36.441911,149.967708,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.427293,150.604748,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060502,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-30.338775,153.078606,EPSG:4326 +HUMAN_OBSERVATION,OEMM0911130Y,1,MALE,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-37.177314,149.355934,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,8,29,Australia,AU,New South Wales,-29.631312,152.90013,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.424519,150.603042,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.398643,150.641935,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.454064,150.520464,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-33.780196,150.105221,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-31.918912,152.378205,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.393681,150.644075,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-32.6197,151.635908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.479906,150.534059,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,30,Australia,AU,New South Wales,-29.490189,153.109723,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.484878,153.103905,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.368956,153.572557,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-30.505279,152.923955,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.739218,152.061195,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,1,26,Australia,AU,New South Wales,-34.085368,150.978421,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070703,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-33.526343,150.662833,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.451575,150.517338,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,5,20,Australia,AU,New South Wales,-31.442509,152.888913,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.447319,150.519032,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-28.642875,153.527063,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-28.381709,153.562995,EPSG:4326 +HUMAN_OBSERVATION,OSSD22052500,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-34.23712,150.79002,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,18,Australia,AU,New South Wales,-33.71872,150.783132,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.386456,150.630815,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-32.738356,152.092424,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.674643,152.736077,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.500217,150.582601,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-33.52184,150.651446,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.417028,150.59711,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,12,Australia,AU,New South Wales,-28.237277,153.466064,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-31.91544,152.374163,EPSG:4326 +HUMAN_OBSERVATION,OJJS08042300,1,,occurrenceRemarks withheld,2022,4,,Australia,AU,New South Wales,-28.354205,153.558112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.471142,150.525511,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-31.652241,152.796233,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-31.913322,152.354974,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.45345,150.518219,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.467972,150.529664,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.456167,150.657667,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.387328,150.631182,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004201,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-28.820654,153.318205,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.427302,150.60478,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-28.247172,153.472227,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-28.631598,153.584284,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.437455,150.517669,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-28.328333,153.559444,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-28.426656,152.963151,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040706,1,FEMALE,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-31.474266,152.909483,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.437526,150.605729,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,,occurrenceRemarks withheld,2024,2,25,Australia,AU,New South Wales,-34.025883,150.989805,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012504,1,,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-31.457764,152.916065,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,10,14,Australia,AU,New South Wales,-28.819965,153.319275,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-29.490044,153.101204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.424285,150.603093,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,2,Australia,AU,New South Wales,-33.488035,149.5492,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.387417,150.631136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.436054,150.616162,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,11,8,Australia,AU,New South Wales,-32.706555,152.063828,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.426255,150.605136,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200V,1,MALE,occurrenceRemarks withheld,2024,3,13,Australia,AU,New South Wales,-31.435164,152.895785,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,8,22,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-31.027241,152.734082,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151G,1,,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-28.876599,153.368349,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,2,19,Australia,AU,New South Wales,-31.445133,152.925407,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071104,1,MALE,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-32.242583,151.935639,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.490688,150.638518,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.457573,150.659043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.471357,150.52902,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-32.709353,152.064942,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,25,Australia,AU,New South Wales,-35.081507,150.118389,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.431498,150.604965,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-36.497148,149.957744,EPSG:4326 +HUMAN_OBSERVATION,OPUR20091100,1,,occurrenceRemarks withheld,2023,7,25,Australia,AU,New South Wales,-34.639966,150.335998,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.436093,150.520735,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-34.024174,150.990654,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.390599,150.627381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.431655,150.613447,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,1,3,Australia,AU,New South Wales,-34.082946,150.99624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.439767,150.518308,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.421017,150.626892,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-29.490455,153.109358,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-34.440596,150.615641,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,3,26,Australia,AU,New South Wales,-33.776358,150.061113,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.459302,150.534731,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.420287,150.627369,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032804,1,,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-31.447159,152.857148,EPSG:4326 +HUMAN_OBSERVATION,OJKN23080900,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-33.042967,151.356908,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-28.399119,153.55589,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.389949,150.625485,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.464766,150.525416,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.450528,152.929294,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419753,150.611501,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.42783,150.59815,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021509,1,MALE,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-34.035028,150.87627,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2023,3,1,Australia,AU,New South Wales,-34.077477,150.828654,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.464139,150.525619,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.423825,150.637333,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,12,7,Australia,AU,New South Wales,-31.942237,152.440795,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-29.479841,153.104256,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,11,25,Australia,AU,New South Wales,-31.474842,152.921742,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.430925,152.846455,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,9,3,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002777,1,,occurrenceRemarks withheld,2023,8,28,Australia,AU,New South Wales,-29.493189,153.092524,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.423505,150.605617,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.46481,150.522215,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,12,21,Australia,AU,New South Wales,-28.388905,153.560992,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.395845,150.62918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.437841,150.607058,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-31.932138,152.412555,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041N,1,MALE,occurrenceRemarks withheld,2023,4,11,Australia,AU,New South Wales,-34.057219,150.839174,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.424684,150.604572,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,1,4,Australia,AU,New South Wales,-29.478524,153.104171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.459366,150.523649,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-29.485571,153.103806,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.48787,150.637302,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-28.851214,153.317523,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.471402,150.524121,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,14,Australia,AU,New South Wales,-31.455671,152.926401,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-34.067842,150.850173,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111502,1,,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.148854,150.094261,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.420261,150.635333,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2020,12,18,Australia,AU,New South Wales,-32.727783,152.078206,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-34.21262,150.796658,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,5,26,Australia,AU,New South Wales,-31.913202,152.374047,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,7,15,Australia,AU,New South Wales,-28.85897,153.17867,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.609857,149.909046,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-29.506251,152.822979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.42092,150.62795,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-31.454495,152.915994,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-31.629194,152.786688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.430371,150.616465,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-28.819803,153.302593,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,MALE,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-32.722674,152.076587,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.38652,150.625767,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,4,29,Australia,AU,New South Wales,-28.821829,153.300675,EPSG:4326 +HUMAN_OBSERVATION,OPJG16091402,1,,occurrenceRemarks withheld,2021,12,16,Australia,AU,New South Wales,-31.802261,152.602127,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,11,Australia,AU,New South Wales,-29.490142,153.110576,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-31.14425,150.11865,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012913,1,,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.174892,151.972799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.453613,150.608643,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.44775,150.517169,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.447314,150.513057,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,6,2,Australia,AU,New South Wales,-36.463023,150.001929,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.45831,150.526216,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-31.642251,152.793148,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.447288,150.513091,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,10,28,Australia,AU,New South Wales,-32.72804,152.008,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.449009,150.516587,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-31.542456,152.813143,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,4,26,Australia,AU,New South Wales,-31.468444,152.914598,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-33.769386,150.010328,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.453441,150.518208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.449505,150.516159,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-29.490119,153.107432,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.435218,150.618177,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-28.700441,153.509563,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020609,1,,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-34.045533,150.871125,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001816,1,,occurrenceRemarks withheld,2020,7,16,Australia,AU,New South Wales,-28.70895,153.106072,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,FEMALE,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-30.318178,153.093085,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-28.586368,153.379668,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-29.485557,153.103741,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290I,1,,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-32.684334,151.65893,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,FEMALE,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-31.805293,152.713237,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-28.993352,153.437732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.417705,150.60315,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003971,1,,occurrenceRemarks withheld,2023,6,14,Australia,AU,New South Wales,-28.824508,153.326235,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-29.486197,153.103178,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,1,Australia,AU,New South Wales,-31.428246,152.895741,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,23,Australia,AU,New South Wales,-31.241502,152.902527,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.450018,150.516536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.465693,150.521742,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.391643,150.645949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.454544,150.51613,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-34.106531,150.959382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.420637,150.609224,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,5,26,Australia,AU,New South Wales,-28.699478,153.43828,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-28.899245,153.356155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.387821,150.631483,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-32.738276,152.089045,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.38704,150.626568,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,21,Australia,AU,New South Wales,-28.827945,153.317534,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200Z,1,,occurrenceRemarks withheld,2022,1,10,Australia,AU,New South Wales,-31.871338,152.366249,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150C,1,FEMALE,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-31.920675,152.3295,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-29.631079,152.898982,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,5,28,Australia,AU,New South Wales,-32.708707,152.064063,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;ORSF21090200,1,MALE,occurrenceRemarks withheld,2021,,,Australia,AU,New South Wales,-32.39808,149.846211,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,10,Australia,AU,New South Wales,-29.490614,153.108167,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,5,11,Australia,AU,New South Wales,-30.29861,153.1094,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2022,8,18,Australia,AU,New South Wales,-34.029263,150.861946,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-30.634036,151.487783,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,8,Australia,AU,New South Wales,-31.631828,152.785911,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.421286,150.627287,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.400226,150.639846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.422262,150.637181,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.453746,150.517688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.4463,150.513708,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-31.919921,152.378822,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-31.466484,152.928708,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-29.485228,153.104141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.38575,150.623255,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,12,Australia,AU,New South Wales,-33.718741,150.785438,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-36.057778,149.282417,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,18,Australia,AU,New South Wales,-31.463294,152.820329,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-31.432647,152.895794,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.397297,150.645986,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081107,1,FEMALE,occurrenceRemarks withheld,2023,3,3,Australia,AU,New South Wales,-29.54578,150.564273,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.420619,150.627273,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.391007,150.628392,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.464172,150.523681,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.390123,150.627927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.436878,150.619153,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290A,1,,occurrenceRemarks withheld,2022,7,7,Australia,AU,New South Wales,-32.701867,152.063773,EPSG:4326 +HUMAN_OBSERVATION,Obs_2557,1,,occurrenceRemarks withheld,2024,2,14,Australia,AU,New South Wales,-33.464764,150.80834,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,4,30,Australia,AU,New South Wales,-32.730287,152.085295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.453537,150.518053,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011108,1,,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-32.736858,152.105345,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OMFZ23033002;ODFK24051300,1,,occurrenceRemarks withheld,2023,4,19,Australia,AU,New South Wales,-32.137155,152.044245,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-28.958996,153.394086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.388847,150.630932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.418037,150.599833,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-31.542479,152.818471,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-29.478772,153.104165,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,7,11,Australia,AU,New South Wales,-31.280368,152.862125,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080903,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-31.473295,152.921056,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-29.485594,153.10343,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040705,1,MALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-32.709226,152.06202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.446702,150.515763,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130H,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-31.37915,149.86291,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-34.210895,150.790619,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070B,1,,occurrenceRemarks withheld,2022,2,24,Australia,AU,New South Wales,-32.76535,152.0348,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070N,1,,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-28.662357,153.611127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.445839,150.513232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.445671,150.513813,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-29.485025,153.104157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.419956,150.60252,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,28,Australia,AU,New South Wales,-33.716115,150.784449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.435116,150.618038,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,6,19,Australia,AU,New South Wales,-32.7074,152.063,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.464256,150.519804,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-31.594921,152.834844,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.388451,150.630965,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,MALE,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-36.146025,149.373649,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.437369,150.605505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.420962,150.627764,EPSG:4326 +HUMAN_OBSERVATION,ODMP10111700,1,,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-32.49093,151.9251,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.490616,150.63852,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,13,Australia,AU,New South Wales,-29.489619,153.103924,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022517,1,FEMALE,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-32.731477,152.153345,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102504,1,,occurrenceRemarks withheld,2024,9,23,Australia,AU,New South Wales,-32.723907,152.01619,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140P,1,MALE,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-28.85328,153.265006,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-29.4788,153.104155,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-31.34279,152.653883,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,10,Australia,AU,New South Wales,-28.809314,153.288292,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-28.941837,153.272241,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2024,2,3,Australia,AU,New South Wales,-31.915419,152.374212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.398754,150.621125,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-33.719196,150.78326,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-36.547428,150.01112,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,MALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.902483,152.38625,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.43037,150.607206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.447285,150.513842,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-31.447732,152.894418,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420071,150.634338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.390549,150.627122,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,7,Australia,AU,New South Wales,-29.485697,153.103463,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.399594,150.639341,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.395281,150.630283,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-28.864674,153.292409,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-29.489591,153.103929,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,6,17,Australia,AU,New South Wales,-31.43672,152.910411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.394656,150.643689,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,9,9,Australia,AU,New South Wales,-31.458946,152.914889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.410322,150.597226,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.488216,150.637477,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.463904,150.521587,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.447326,150.517192,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.466206,150.523077,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.911734,152.82069,EPSG:4326 +HUMAN_OBSERVATION,OLHP23120100,1,MALE,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-31.84523,150.23469,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-32.381768,152.235574,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,23,Australia,AU,New South Wales,-29.487476,153.102776,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-33.709735,150.786152,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-28.650415,153.303585,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.427042,150.603939,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,19,Australia,AU,New South Wales,-29.490096,153.101306,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-33.70567,150.786965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.387328,150.631182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.392519,150.633885,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.134713,150.794924,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.447837,150.518799,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011103,1,,occurrenceRemarks withheld,2023,11,20,Australia,AU,New South Wales,-32.72845,152.106292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.388099,150.630921,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.418947,150.6095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.43079,150.603331,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002850,1,,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-29.436313,153.168404,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.390133,150.629841,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.631687,149.909982,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-31.932133,152.412887,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-31.454146,152.924223,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260M,1,,occurrenceRemarks withheld,2020,3,11,Australia,AU,New South Wales,-32.731462,152.03766,EPSG:4326 +HUMAN_OBSERVATION,OIXR16042803,1,,occurrenceRemarks withheld,2022,10,14,Australia,AU,New South Wales,-28.661307,153.609525,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003856,1,,occurrenceRemarks withheld,2023,6,3,Australia,AU,New South Wales,-28.874212,153.279103,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003988,1,MALE,occurrenceRemarks withheld,2023,7,18,Australia,AU,New South Wales,-28.388386,153.55749,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083006,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-31.582822,151.545175,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,5,24,Australia,AU,New South Wales,-29.18423,153.003806,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.395818,150.643646,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.385438,150.626711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.393736,150.640844,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-29.489559,153.103892,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-36.511423,149.969776,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-31.448286,152.894416,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.570187,149.979238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.464926,150.522189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.43544,150.615679,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.618562,149.923643,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,2,7,Australia,AU,New South Wales,-29.485501,153.103768,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-31.450773,152.907617,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031N,1,,occurrenceRemarks withheld,2023,7,18,Australia,AU,New South Wales,-31.458051,152.929214,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2024,2,6,Australia,AU,New South Wales,-30.421151,152.98375,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,5,16,Australia,AU,New South Wales,-32.709084,152.064739,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.471376,150.530413,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-31.467284,152.908987,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-31.472155,152.909794,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.389674,150.62707,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,7,19,Australia,AU,New South Wales,-29.48559,153.103768,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343;SFOBS-880,1,,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-30.66193,152.963999,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.385836,150.6272,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-28.660093,153.228883,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-33.705542,150.785411,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-31.475199,152.921514,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-31.923432,152.371061,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-32.713364,152.161819,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-31.918056,152.379004,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.429574,150.614899,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,FEMALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.902263,152.388675,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.459851,150.519074,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-36.497108,149.942556,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.343602,152.608892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.446721,150.515806,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.479023,152.878918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.455446,150.607862,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-31.629586,152.785697,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.297222,149.315875,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.387387,150.630941,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,3,29,Australia,AU,New South Wales,-28.82175,153.33124,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-28.693612,153.367408,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.420695,150.630719,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.425987,150.597931,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-29.505882,152.824566,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.432144,150.606154,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.659584,152.7394,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.465788,150.522447,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-30.412963,153.005242,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-33.551639,149.553258,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.818082,153.288825,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,12,18,Australia,AU,New South Wales,-28.257925,153.400586,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.420673,150.609223,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300I,1,,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-32.736858,152.105345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.421565,150.627224,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.465977,150.525119,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.421016,150.626848,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,MALE,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-28.818505,153.301773,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-30.334571,153.072555,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-29.667247,152.867289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.428649,150.601749,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-33.716431,150.784935,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111328,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-30.877003,153.068642,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.430709,150.610689,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.497148,149.957744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.437333,150.605495,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.834226,153.364275,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,11,Australia,AU,New South Wales,-33.70627,150.786173,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.805797,153.342482,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-32.692071,151.709876,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211Q,1,,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-32.725873,152.076793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.457107,150.518034,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,FEMALE,occurrenceRemarks withheld,2020,4,28,Australia,AU,New South Wales,-34.09992,150.809519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.447173,150.519863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.436592,150.519088,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-31.458459,152.929611,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-31.897072,152.374394,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-34.448842,150.615004,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-32.711067,152.065223,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.459577,152.914252,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-31.440649,152.909449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.453388,150.522237,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2021,12,7,Australia,AU,New South Wales,-29.834387,150.844972,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021401,1,,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-31.966673,152.56761,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,FEMALE,occurrenceRemarks withheld,2020,2,6,Australia,AU,New South Wales,-36.129686,149.382156,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-31.403015,152.093798,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-29.034655,153.426161,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420155,150.61038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.444906,150.514772,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.430193,150.610138,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-30.087547,152.751382,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-28.660492,153.614946,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-34.027976,150.988077,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,9,Australia,AU,New South Wales,-29.489984,153.110549,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-28.557671,153.472757,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021804,1,,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-29.065505,150.309247,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070P,1,,occurrenceRemarks withheld,2020,12,28,Australia,AU,New South Wales,-34.755756,146.570098,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151E,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-28.22565,153.436246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.423735,150.605382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.436004,150.615935,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040E,1,,occurrenceRemarks withheld,2024,2,29,Australia,AU,New South Wales,-31.447463,152.925776,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.420261,150.627424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.447429,150.51868,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,MALE,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-34.111429,150.818429,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.385818,150.627201,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,14,Australia,AU,New South Wales,-28.675057,153.606253,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-31.92625,152.353525,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-28.519564,153.536959,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2022,3,22,Australia,AU,New South Wales,-31.925339,152.373951,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.463571,150.523829,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,2,21,Australia,AU,New South Wales,-29.667284,152.867589,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150E,1,,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-31.45489,152.92704,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,13,Australia,AU,New South Wales,-31.576561,152.813327,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.438028,150.604202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.468174,150.520961,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-28.523167,152.97209,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.437488,150.606992,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,4,9,Australia,AU,New South Wales,-32.706472,152.063537,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.419126,150.610333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.388449,150.632259,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-28.397244,153.557549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.447361,150.520249,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-29.490152,153.107872,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.469411,150.526857,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,6,3,Australia,AU,New South Wales,-31.45897,152.914845,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.535992,150.559732,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004019,1,,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-28.835936,153.304633,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-31.867705,152.369623,EPSG:4326 +HUMAN_OBSERVATION,ODFK24041701,1,,occurrenceRemarks withheld,2024,4,13,Australia,AU,New South Wales,-30.549333,152.967583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.386367,150.625793,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.869015,153.335481,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.811466,152.827827,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221R,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-32.712264,152.159779,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,17,Australia,AU,New South Wales,-33.705982,150.78606,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,11,12,Australia,AU,New South Wales,-34.419983,150.531416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.419098,150.610279,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.444319,150.519131,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,FEMALE,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-28.587016,152.722621,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-31.432093,152.886674,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002775,1,,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-29.654256,152.828584,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.396338,150.644414,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-31.479039,152.918616,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.417727,150.633425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.447847,150.513107,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-29.631396,152.900226,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.422211,150.607667,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-34.433216,150.607527,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.420206,150.634323,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-32.728806,152.172145,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022414,1,,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-32.698016,151.765357,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-28.98945,153.482678,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-31.915128,152.374241,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-28.249243,153.478339,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-28.287886,153.559782,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.437684,150.605006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.447145,150.513128,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-28.598854,153.546098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.454974,150.601291,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111313,1,,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-31.451059,152.909727,EPSG:4326 +HUMAN_OBSERVATION,OLHP23071001,1,,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-32.717911,152.070821,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.503907,149.934931,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.435374,150.603527,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140L,1,,occurrenceRemarks withheld,2022,7,17,Australia,AU,New South Wales,-28.807075,153.34327,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-32.683761,151.650606,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.436398,150.603334,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2024,2,19,Australia,AU,New South Wales,-32.72797,152.078075,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.464901,150.522266,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,7,Australia,AU,New South Wales,-29.488527,153.103564,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150G,1,,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-31.459877,152.929578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.447803,150.517156,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-33.034048,151.26879,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-34.194944,150.761779,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.497148,149.957744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.395195,150.630503,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.465436,150.522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.435374,150.615082,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.437638,150.604985,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,MALE,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.015104,150.883898,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072601;ODMP2212210O,1,,occurrenceRemarks withheld,2022,3,22,Australia,AU,New South Wales,-28.257137,153.401795,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-31.638929,152.793418,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-30.363436,153.074268,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,MALE,occurrenceRemarks withheld,2020,2,6,Australia,AU,New South Wales,-36.140031,149.384947,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150L,1,FEMALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-31.918942,152.371009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.420299,150.630295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.432474,150.610628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.419011,150.609509,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.442899,152.905169,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.45608,150.657822,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,1,4,Australia,AU,New South Wales,-34.025728,150.987273,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.383992,150.623261,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-29.490007,153.108238,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-34.195993,150.744238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.463046,150.51972,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.420636,150.609159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419063,150.610335,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.141271,150.82369,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-31.453653,152.924858,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,4,22,Australia,AU,New South Wales,-31.472856,152.92434,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111513,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-33.6911,150.577746,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-30.29408,153.123926,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.438724,150.617664,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.420639,150.608854,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.884771,152.795899,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-29.480691,153.089451,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.464238,150.522471,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-31.653077,152.808331,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.389608,150.628779,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-31.920313,152.405107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.451998,150.517293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.388576,150.623947,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.444781,150.51569,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-29.488452,153.110876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.418463,150.633252,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-29.476927,153.104482,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150U,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-31.781994,152.711315,EPSG:4326 +HUMAN_OBSERVATION,OMCE97032109,1,MALE,occurrenceRemarks withheld,2024,3,29,Australia,AU,New South Wales,-31.693066,150.004836,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-29.488632,153.093643,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.458618,150.6618,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,4,5,Australia,AU,New South Wales,-29.040856,152.935069,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031417,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-34.157042,150.804254,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.429627,150.618085,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-29.490026,153.10129,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.395898,150.643589,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-30.43119,153.03139,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-33.705812,150.785258,EPSG:4326 +HUMAN_OBSERVATION,OPJG22081702,1,,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-31.809149,152.442313,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-33.762524,150.055217,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-31.443751,152.898878,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.718844,152.070062,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,10,14,Australia,AU,New South Wales,-31.920313,152.405107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.437561,150.604726,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.420376,150.635221,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-29.490222,153.110522,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221F,1,,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-32.730221,152.083327,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-34.449394,150.52498,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.474196,150.531647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.430642,150.610484,EPSG:4326 +HUMAN_OBSERVATION,Obs_0229,1,,occurrenceRemarks withheld,2024,6,19,Australia,AU,New South Wales,-31.452928,152.925659,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,11,24,Australia,AU,New South Wales,-32.686938,151.699841,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.457189,150.659238,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110K,1,MALE,occurrenceRemarks withheld,2023,6,11,Australia,AU,New South Wales,-31.469984,152.923352,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250K,1,,occurrenceRemarks withheld,2024,9,22,Australia,AU,New South Wales,-33.62819,149.530386,EPSG:4326 +HUMAN_OBSERVATION,ODFK2404260B,1,,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-31.927692,152.321631,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-29.739906,151.059173,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130K,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-32.633042,152.00354,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-31.476415,152.911813,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,24,Australia,AU,New South Wales,-29.489596,153.103918,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-29.487355,153.090872,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030H,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-31.101193,152.859745,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419125,150.610279,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,7,15,Australia,AU,New South Wales,-33.77856,150.105017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.452881,150.519901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.448974,150.516208,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.11675,150.81122,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,6,Australia,AU,New South Wales,-31.446947,152.895019,EPSG:4326 +HUMAN_OBSERVATION,ODFK2408220J,1,,occurrenceRemarks withheld,2024,7,13,Australia,AU,New South Wales,-31.337206,152.732107,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,1,11,Australia,AU,New South Wales,-34.121673,150.994036,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021507,1,,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-30.887169,153.071805,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,24,Australia,AU,New South Wales,-29.488447,153.092498,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,12,Australia,AU,New South Wales,-31.459086,152.926206,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.458197,152.873354,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,21,Australia,AU,New South Wales,-31.458734,152.914275,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,6,13,Australia,AU,New South Wales,-31.94582,152.40417,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.435186,150.520446,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.491696,150.472448,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-31.469294,152.927334,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,28,Australia,AU,New South Wales,-33.703888,150.786406,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202,1,,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-30.512159,151.632693,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.449551,152.907384,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.685041,153.472444,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.46743,150.523846,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-33.565548,150.680922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.388777,150.630597,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031U,1,,occurrenceRemarks withheld,2023,5,28,Australia,AU,New South Wales,-31.439694,152.885366,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2022,7,15,Australia,AU,New South Wales,-31.521545,152.69683,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211A,1,,occurrenceRemarks withheld,2022,12,9,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-34.533564,150.600987,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-34.449594,150.613796,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153O,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-28.400278,153.556714,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-34.440949,150.61525,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,14,Australia,AU,New South Wales,-31.446374,152.915044,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004042,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.689632,153.608033,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-31.446912,152.901503,EPSG:4326 +HUMAN_OBSERVATION,OADB11032300,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-34.80422,150.02096,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,5,6,Australia,AU,New South Wales,-28.833159,153.32839,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.151976,152.798431,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-31.449312,152.879652,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.388767,150.630543,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102218,1,,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-32.706475,152.063717,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-29.490245,153.110077,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.392799,150.639478,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.465777,150.522371,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,21,Australia,AU,New South Wales,-31.473189,152.909639,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.736825,152.075436,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404,1,,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-31.972489,152.422426,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.420368,150.635243,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.420314,150.627336,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.422319,150.607664,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.419935,150.602858,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.420896,150.630387,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,12,19,Australia,AU,New South Wales,-29.492763,153.109531,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.420625,150.630863,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-31.311867,152.788626,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-31.449055,152.88989,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.629275,152.786875,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-31.473616,152.919636,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.394558,150.632076,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.433225,150.61584,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.388698,150.624172,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012505,1,,occurrenceRemarks withheld,2024,4,13,Australia,AU,New South Wales,-31.451697,152.926356,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.388857,150.624483,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.056316,150.858134,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.43534,150.603636,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090D,1,,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-31.433439,152.888811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.43536,150.615268,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.418124,150.632032,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,1,MALE,occurrenceRemarks withheld,2023,4,16,Australia,AU,New South Wales,-28.626838,153.427713,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,5,21,Australia,AU,New South Wales,-31.469896,152.905262,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050U,1,,occurrenceRemarks withheld,2023,2,25,Australia,AU,New South Wales,-30.531449,151.515046,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,7,Australia,AU,New South Wales,-29.489666,153.101746,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-33.441928,150.614836,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433809,150.617085,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.434515,150.617229,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002852,1,,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-29.488336,153.110508,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2021,2,11,Australia,AU,New South Wales,-33.56812,149.549744,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,12,Australia,AU,New South Wales,-29.489568,153.103967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.429634,150.606922,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-28.83942,153.14002,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310040A,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.474674,152.897618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.4464,150.513737,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-31.436682,152.899149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.465996,150.522038,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.442697,152.901169,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.385954,150.624478,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-29.489582,153.103865,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-31.445391,152.918613,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080306,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-31.255802,152.908986,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.49057,150.638478,EPSG:4326 +HUMAN_OBSERVATION,OJJS17121205,1,,occurrenceRemarks withheld,2020,2,11,Australia,AU,New South Wales,-33.670556,151.246389,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240R,1,,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-32.719007,152.071231,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.44698,150.513927,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.298717,149.320256,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.821668,153.3033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.451847,150.518277,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090405,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-32.7361,152.041118,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-28.826065,153.218653,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-32.734379,152.099897,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150B,1,,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-33.664961,150.641727,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.548959,150.016942,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.391024,150.62837,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-31.639708,152.792962,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.454577,152.902552,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-28.669044,153.325401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.432014,150.613339,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.463798,150.52391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.397004,150.64532,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.628697,152.757888,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-28.892909,153.323111,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003930,1,,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-28.557011,153.54498,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153T,1,MALE,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-28.825221,153.218178,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,22,Australia,AU,New South Wales,-31.434695,152.908148,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-31.265863,152.913249,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.388495,150.630921,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.463244,152.920712,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.446189,150.513112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.488678,150.637584,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,4,21,Australia,AU,New South Wales,-31.971958,152.401193,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-28.889108,153.229503,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-36.255489,149.428811,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090406,1,FEMALE,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-32.690357,151.70847,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.433513,150.617192,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-29.939291,152.22156,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-33.874676,151.04288,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-28.371012,153.555546,EPSG:4326 +HUMAN_OBSERVATION,OLHP23071101,1,,occurrenceRemarks withheld,2023,6,28,Australia,AU,New South Wales,-28.535215,153.064152,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.392767,150.635944,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-28.649191,153.382936,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032806,1,,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-32.344089,152.530821,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-34.447776,150.514937,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,26,Australia,AU,New South Wales,-31.441604,152.910464,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004176,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-28.228983,153.490916,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,4,19,Australia,AU,New South Wales,-31.461105,152.922644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.465775,150.520488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.421515,150.627476,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,10,12,Australia,AU,New South Wales,-30.240033,152.939521,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-29.485571,153.103811,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-30.508033,152.926912,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.513507,150.007695,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102,1,,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-32.470287,151.887392,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,28,Australia,AU,New South Wales,-31.448165,152.87822,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,9,1,Australia,AU,New South Wales,-34.401227,150.520078,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-29.630781,152.899266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.420737,150.630131,EPSG:4326 +HUMAN_OBSERVATION,OJJS20080303,1,FEMALE,occurrenceRemarks withheld,2021,1,24,Australia,AU,New South Wales,-32.593837,151.769928,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,6,12,Australia,AU,New South Wales,-29.489596,153.103913,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.447375,150.512936,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-28.25619,153.400816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-34.396365,150.649547,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-28.864618,153.293195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.415799,150.597428,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,14,Australia,AU,New South Wales,-29.488125,153.092262,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.460274,150.531981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.454515,150.515575,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102214,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-32.700231,151.803751,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.447054,150.513087,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-29.490155,153.109729,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.388035,150.631847,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.472941,150.530193,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-32.384235,152.178771,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-31.470336,152.918316,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.469525,150.526669,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.447517,150.521267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.446967,150.513263,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS;ODFK23090501,1,,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-30.416427,151.575952,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-29.488195,153.092154,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.459915,150.519149,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,9,18,Australia,AU,New South Wales,-28.82461,153.338838,EPSG:4326 +HUMAN_OBSERVATION,OJJS1208150M,1,,occurrenceRemarks withheld,2023,1,2,Australia,AU,New South Wales,-32.712497,152.07152,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-28.485365,152.83769,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.417641,150.633177,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.641172,152.791844,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.465772,150.520336,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.436435,150.615846,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-28.888264,153.186922,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.559404,149.938213,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,6,6,Australia,AU,New South Wales,-31.475317,152.917568,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.435995,150.520324,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-30.33243,152.621097,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-31.439756,152.882611,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250W,1,,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-32.737249,152.083676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.438946,150.520052,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004247,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.51684,153.040613,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100E,1,,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-28.581865,153.470746,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,6,22,Australia,AU,New South Wales,-31.945531,152.39325,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,12,27,Australia,AU,New South Wales,-34.026878,150.989204,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.449898,152.90626,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-31.446036,152.915388,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-34.159448,150.812828,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-28.244289,153.488399,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-28.859753,153.313679,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,3,29,Australia,AU,New South Wales,-28.827343,153.317732,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-36.579991,150.006515,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.451616,150.522441,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,10,Australia,AU,New South Wales,-29.490184,153.108113,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-32.717165,152.154443,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-31.465685,152.924619,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,5,30,Australia,AU,New South Wales,-31.034586,152.87968,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-31.437611,152.905842,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.420261,150.627413,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.390449,150.626146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-34.439421,150.61549,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-33.705124,150.785384,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121501,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-30.432705,152.942889,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-36.497108,149.942556,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,3,Australia,AU,New South Wales,-28.809314,153.288292,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,4,24,Australia,AU,New South Wales,-31.415181,152.894748,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,,occurrenceRemarks withheld,2023,3,7,Australia,AU,New South Wales,-32.717608,152.071474,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-31.920313,152.405107,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-34.045117,151.010276,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-34.207974,150.784923,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,,occurrenceRemarks withheld,2021,12,23,Australia,AU,New South Wales,-28.258429,153.402165,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003825,1,,occurrenceRemarks withheld,2023,1,29,Australia,AU,New South Wales,-28.824713,153.218565,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.446092,150.518545,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.457818,150.525066,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083000,1,MALE,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-33.570819,150.666092,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-30.372588,151.566244,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-28.384452,153.562423,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-28.947304,153.236747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.472494,150.530826,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-31.458662,152.927595,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2024,2,26,Australia,AU,New South Wales,-28.785363,152.091019,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,4,17,Australia,AU,Queensland,-28.102872,153.447258,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.443498,152.898342,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111302,1,MALE,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-31.451443,152.914421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.445824,150.514255,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-30.135857,152.7309,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.864491,153.293279,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100B,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-30.468155,152.891163,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031J,1,,occurrenceRemarks withheld,2023,5,21,Australia,AU,New South Wales,-31.444944,152.913036,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.067829,150.883728,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-28.820375,153.293078,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-31.596622,152.709194,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.456203,150.52815,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.45162,150.517294,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.430192,150.610061,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.419388,150.635869,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-34.514917,150.552778,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-31.452849,152.927959,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.41973,150.635359,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2021,12,16,Australia,AU,New South Wales,-28.783512,152.092121,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2023,12,16,Australia,AU,New South Wales,-31.924864,152.372764,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-31.13189,150.00403,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,15,Australia,AU,New South Wales,-28.890095,153.303722,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-28.530684,152.973743,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004079,1,MALE,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-28.626925,153.421408,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,27,Australia,AU,New South Wales,-29.484688,153.095952,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,12,2,Australia,AU,New South Wales,-30.994481,150.238599,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,24,Australia,AU,New South Wales,-30.880423,153.071948,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-29.009458,153.396864,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.805797,153.342482,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012901,1,,occurrenceRemarks withheld,2022,10,2,Australia,AU,New South Wales,-32.566315,151.908878,EPSG:4326 +HUMAN_OBSERVATION,OESM20102100,1,,occurrenceRemarks withheld,2022,4,27,Australia,AU,New South Wales,-33.184149,151.246822,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.827996,153.303174,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.805797,153.342482,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-29.726637,152.929725,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150X,1,,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-32.066818,151.739248,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-29.490376,153.107995,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-31.47672,152.912645,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-29.485557,153.103752,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,8,Australia,AU,New South Wales,-29.489638,153.103956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.438056,150.517064,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131Y,1,,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-31.459564,152.928761,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040427,1,FEMALE,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-33.605481,149.435857,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-31.530916,152.857373,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-28.830737,153.283463,EPSG:4326 +HUMAN_OBSERVATION,OTLW09041000,1,,occurrenceRemarks withheld,2022,4,,Australia,AU,New South Wales,-29.147488,150.992986,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-28.812508,153.316426,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-31.454039,152.925217,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-33.773091,150.060577,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031816,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-28.734027,153.426366,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-32.70652,152.064607,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080204,1,,occurrenceRemarks withheld,2021,2,8,Australia,AU,New South Wales,-34.08025,150.850037,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100H,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-32.550869,151.645013,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-29.490339,153.108049,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-33.706055,150.786087,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.44998,150.516439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.437939,150.604248,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.43602,150.616315,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-28.987277,153.29012,EPSG:4326 +HUMAN_OBSERVATION,OJXK00052203,1,,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-34.058438,150.994462,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-30.347707,152.611768,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,3,28,Australia,AU,New South Wales,-34.695353,146.404285,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.420853,150.630508,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.19098,152.028704,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.441312,150.517566,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-29.500615,152.791633,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,10,Australia,AU,New South Wales,-28.821749,153.331243,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.811877,152.824256,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.440912,150.517436,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.433938,150.608007,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-29.478739,153.104133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.455501,150.660091,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.435038,150.615864,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-31.928285,152.403595,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,3,9,Australia,AU,New South Wales,-31.984281,152.340675,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-28.845844,153.30258,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.456451,150.60854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.420555,150.609194,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.447685,150.517105,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,7,24,Australia,AU,New South Wales,-29.77116,150.946452,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,18,Australia,AU,New South Wales,-29.000226,153.285105,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.59482,149.956941,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,7,1,Australia,AU,New South Wales,-31.171527,152.813707,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.432027,150.612164,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-29.487486,153.090749,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.460007,150.525437,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.46428,150.53256,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-28.820526,153.339651,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.389755,150.628938,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-32.699592,152.065071,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.437114,150.518191,EPSG:4326 +HUMAN_OBSERVATION,LINTERN K. K,2,,PHOTO = photo1-20211221-08112; TIME = 8:09 AM,2021,12,21,Australia,AU,South Australia,-34.68823,138.83188,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.466291,150.523259,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004203,1,,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-28.879587,153.194827,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100O,1,,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-31.192565,152.975294,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-29.040946,153.285323,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152A,1,,occurrenceRemarks withheld,2022,8,15,Australia,AU,New South Wales,-28.936565,153.317598,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.437,150.60323,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002774,1,,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-29.493159,153.108838,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.437739,150.517879,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.419209,150.603542,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180M,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-28.976263,153.291674,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-33.717251,150.784549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.452692,150.523955,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-32.226111,152.204264,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-28.643569,153.559334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.437961,150.605357,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-29.490553,153.108087,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.437572,150.60576,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033003,1,,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-31.948946,152.297813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.383282,150.623368,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-34.50511,150.13989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.447412,150.518768,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,7,21,Australia,AU,New South Wales,-29.489358,153.119406,EPSG:4326 +HUMAN_OBSERVATION,OJJS17072600,1,,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-30.540165,152.646596,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-29.490241,153.108151,EPSG:4326 +HUMAN_OBSERVATION,FARMER P.J. Peter,2,,Female with young successfully crossing road south to north; TIME = 8:51 AM,2021,10,26,Australia,AU,South Australia,-34.95046,138.63216,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.397004,150.645298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.430711,150.609448,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435791,150.521407,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.551144,149.998977,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-29.48558,153.103806,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-28.981503,153.285118,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.420463,150.635513,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-30.333952,153.055997,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.654858,152.812175,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.453257,152.916905,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-34.090346,150.989817,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-34.916903,150.144658,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-33.713208,150.786115,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.410247,150.597086,EPSG:4326 +HUMAN_OBSERVATION,SHARM,1,,occurrenceRemarks withheld,2024,10,13,Australia,AU,New South Wales,-32.325829,150.036666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.430883,150.615939,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-29.484488,153.104026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.435092,150.606647,EPSG:4326 +HUMAN_OBSERVATION,ARMSTRONG D.M. David,2,,adult with juvenile on back walking beside freeway on ramp,2020,10,2,Australia,AU,South Australia,-34.99731,138.70115,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.394555,150.642637,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.465748,150.521381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.45933,150.520951,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.419148,150.604534,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-29.485688,153.103736,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-31.444831,152.915488,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-33.706302,150.786269,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-34.004143,150.869932,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-29.488079,153.092194,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,11,Australia,AU,New South Wales,-29.485454,153.103543,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-34.096052,150.987289,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.459123,152.928692,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060C,1,,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-32.527935,151.795087,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,5,22,Australia,AU,New South Wales,-34.012814,150.896729,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-31.455103,152.926641,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060U,1,,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-31.451374,152.907705,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,26,Australia,AU,New South Wales,-29.485566,153.103763,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,3,3,Australia,AU,New South Wales,-28.885281,153.347259,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,3,29,Australia,AU,New South Wales,-28.257477,153.401691,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-28.375645,153.560572,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.393397,150.631228,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-29.632524,152.898091,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.456825,152.873914,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-33.766566,150.054593,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290R,1,,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-31.456873,152.912528,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-31.908353,152.399014,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,12,,Australia,AU,New South Wales,-36.121951,149.331429,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.575848,150.016461,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,2,19,Australia,AU,New South Wales,-32.732974,152.100202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.418814,150.632785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.488523,150.637512,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,FEMALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-33.410439,150.740113,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-34.420228,150.610432,EPSG:4326 +HUMAN_OBSERVATION,ODMP22111602,1,,occurrenceRemarks withheld,2022,10,2,Australia,AU,New South Wales,-28.972865,153.40425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.419377,150.600143,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-28.799393,153.371368,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-29.485109,153.104085,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.438387,150.604583,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222L,1,,occurrenceRemarks withheld,2022,3,5,Australia,AU,New South Wales,-32.706061,152.063706,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.439472,150.619014,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.465739,150.520478,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.398703,150.645055,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-31.784787,152.623084,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.826164,153.323187,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-30.997307,152.610013,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-28.386672,153.561629,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-30.505496,152.910281,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-29.485552,153.103505,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210H,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-32.716491,152.150772,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-31.268449,152.897674,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-29.505872,152.824631,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.640987,152.793187,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.430665,152.855936,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,1,20,Australia,AU,New South Wales,-31.429671,152.912204,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-28.631411,153.584876,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.449114,150.617412,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,29,Australia,AU,New South Wales,-29.490502,153.109481,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.465944,150.520385,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.423023,150.608144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.388859,150.625995,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-36.497108,149.942556,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-32.704805,152.065499,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,3,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.448773,150.516529,EPSG:4326 +PRESERVED_SPECIMEN,OLAD18011600,1,MALE,occurrenceRemarks withheld,2021,10,13,Australia,AU,New South Wales,-32.241064,148.620278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.437478,150.516124,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.839565,153.279241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.421303,150.627243,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-34.101707,150.822599,EPSG:4326 +HUMAN_OBSERVATION,OJJS12072500,1,,occurrenceRemarks withheld,2020,6,14,Australia,AU,New South Wales,-32.732146,152.039828,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-34.021993,150.989891,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.297397,149.323247,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100501,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-31.683757,152.687663,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,FEMALE,occurrenceRemarks withheld,2023,1,27,Australia,AU,New South Wales,-28.825235,153.218451,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W;ODMP23040404,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-32.732973,152.100856,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-29.480093,153.104278,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-28.93,153.32964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-34.439826,150.518078,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150M,1,,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.146763,150.077739,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.435819,150.615712,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-32.68189,152.09711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.459926,150.525472,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.570187,149.979238,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-28.619263,153.508093,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-31.2816,152.83195,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-28.894758,153.409969,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.428356,150.598766,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,8,6,Australia,AU,New South Wales,-31.545537,152.847035,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-28.236705,153.514697,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022527,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-32.726275,152.104691,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,18,Australia,AU,New South Wales,-33.709928,150.784943,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-33.770937,150.057207,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101X,1,,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-28.637325,153.629488,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-31.471819,152.909843,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.429298,150.606801,EPSG:4326 +HUMAN_OBSERVATION,OJJS17072600,1,MALE,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-33.979107,150.989843,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.71252,152.777444,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,3,11,Australia,AU,New South Wales,-28.74626,152.9335,EPSG:4326 +HUMAN_OBSERVATION,OPJG21031202,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-32.580189,151.785497,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-28.988266,153.351976,EPSG:4326 +HUMAN_OBSERVATION,OPJG15082100,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.484304,152.782683,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.446859,150.515944,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,6,18,Australia,AU,New South Wales,-32.708983,152.064603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.461187,150.519612,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.388557,150.624361,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080904,1,,occurrenceRemarks withheld,2023,6,17,Australia,AU,New South Wales,-28.964455,152.863968,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121408,1,,occurrenceRemarks withheld,2021,2,5,Australia,AU,New South Wales,-28.389309,153.562095,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,16,Australia,AU,New South Wales,-29.485483,153.103627,EPSG:4326 +HUMAN_OBSERVATION,OLHP23071001,1,,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-32.717911,152.070821,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.618562,149.923643,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.39632,150.644426,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.551144,149.998977,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-28.690255,153.437583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.429716,150.616636,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021507,1,,occurrenceRemarks withheld,2024,2,18,Australia,AU,New South Wales,-30.887245,153.071801,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001963,1,FEMALE,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-32.526478,152.192936,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.434843,150.616044,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131M,1,,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-31.453478,152.929648,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-31.456012,152.907546,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.424779,150.602535,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-29.675181,152.873211,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.459512,150.529936,EPSG:4326 +HUMAN_OBSERVATION,OSYK01030900,1,FEMALE,occurrenceRemarks withheld,2020,12,14,Australia,AU,New South Wales,-35.132751,150.040777,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,21,Australia,AU,New South Wales,-29.49046,153.109347,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.132341,150.795234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.434935,150.602788,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418948,150.609511,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,3,18,Australia,AU,New South Wales,-34.029022,150.989581,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-32.732412,152.086083,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.464586,150.523179,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,28,Australia,AU,New South Wales,-30.833943,152.725853,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,17,Australia,AU,New South Wales,-36.067997,149.304115,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-29.489479,153.101499,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210I,1,,occurrenceRemarks withheld,2024,3,2,Australia,AU,New South Wales,-32.718362,152.071004,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140Q,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-28.924715,153.159336,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-31.490454,152.775941,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090808,1,,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-33.998335,150.908879,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,6,22,Australia,AU,New South Wales,-32.726998,152.079535,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.681355,149.952917,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-34.035072,150.870377,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004057,1,,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-28.823206,153.321983,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-34.221219,150.794056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.435815,150.615951,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,26,Australia,AU,New South Wales,-33.710842,150.785097,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,3,Australia,AU,New South Wales,-28.821648,153.302529,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150H,1,,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-28.809314,153.288292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.389802,150.628132,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.418212,150.631953,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-880,1,,occurrenceRemarks withheld,2021,1,6,Australia,AU,New South Wales,-30.298281,153.121061,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.427189,150.604065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.435407,150.521103,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.444978,150.518328,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-31.154067,152.806889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.393772,150.640843,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.398662,150.640107,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,3,17,Australia,AU,New South Wales,-30.305382,153.120151,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.434382,150.615067,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-28.824663,153.293015,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-33.773724,150.06103,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.438657,150.606817,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-30.296245,153.124407,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,12,19,Australia,AU,New South Wales,-31.441092,152.908578,EPSG:4326 +HUMAN_OBSERVATION,OMZS17080800,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.535937,150.610934,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.420635,150.630873,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.472371,150.528794,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,FEMALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-28.964835,153.447249,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419388,150.635869,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.441399,150.517868,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.445576,150.514926,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.430754,150.611645,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-29.666949,152.868061,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,21,Australia,AU,New South Wales,-32.709052,152.064617,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,,occurrenceRemarks withheld,2023,3,1,Australia,AU,New South Wales,-32.219547,152.197908,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061004,1,,occurrenceRemarks withheld,2020,7,14,Australia,AU,New South Wales,-30.212319,152.800026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.401653,150.645581,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-30.416657,153.024437,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.485507,150.636302,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-32.243312,152.183981,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070705,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-34.060795,151.001662,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-31.765321,152.430062,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-29.805377,152.810277,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-31.445557,152.914953,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.491501,150.639051,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.435393,150.615114,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,6,11,Australia,AU,New South Wales,-28.819731,153.300421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.423788,150.637312,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.428127,150.600383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.455662,150.657638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.44725,150.513016,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.467742,150.529922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.418982,150.610337,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-30.51747,152.885766,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.385998,150.625336,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,3,30,Australia,AU,New South Wales,-34.768567,146.598442,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.44895,150.516361,EPSG:4326 +HUMAN_OBSERVATION,ODMP21083102,1,,occurrenceRemarks withheld,2022,7,5,Australia,AU,New South Wales,-32.241611,150.965449,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-28.714708,153.347356,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.465459,150.523578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.426918,150.604932,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.805797,153.342482,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-33.429619,150.641648,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,29,Australia,AU,New South Wales,-31.450952,152.919324,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070704,1,,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-29.016578,153.429797,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,10,2,Australia,AU,New South Wales,-31.451459,152.913239,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-31.459063,152.926244,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,6,11,Australia,AU,New South Wales,-36.436911,149.961856,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-28.663391,153.423034,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-28.333004,153.537312,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.455294,150.659596,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-34.123068,150.973024,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111503,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-32.686035,151.660794,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.19213,152.028839,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111205,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-36.460941,148.720973,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.448529,150.515579,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-28.336216,153.56409,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,12,24,Australia,AU,New South Wales,-28.872283,153.274356,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-32.722554,152.077249,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-28.600733,153.035292,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-31.932252,152.412514,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.435064,150.615809,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,,occurrenceRemarks withheld,2023,2,4,Australia,AU,New South Wales,-28.888324,153.270217,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042607,1,,occurrenceRemarks withheld,2024,2,3,Australia,AU,New South Wales,-32.376785,152.50375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.438569,150.606961,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,18,Australia,AU,New South Wales,-34.441143,150.616409,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-31.431417,152.908286,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-33.717291,150.784305,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.453901,152.903209,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.450794,150.515718,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,11,1,Australia,AU,New South Wales,-31.933272,152.412804,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419671,150.611449,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,4,Australia,AU,New South Wales,-33.713322,150.786126,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040B,1,FEMALE,occurrenceRemarks withheld,2022,7,20,Australia,AU,New South Wales,-33.145025,151.091422,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-28.399676,153.556036,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.453005,150.519788,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-33.711347,150.786067,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.447237,150.515889,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-28.330904,153.556168,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-29.490315,153.108119,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160B,1,,occurrenceRemarks withheld,2020,2,10,Australia,AU,New South Wales,-33.489046,149.398366,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-31.458825,152.925939,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-29.053044,153.308788,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-29.505129,152.728863,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,4,5,Australia,AU,New South Wales,-29.073423,153.082286,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-28.703481,153.554212,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-33.543308,149.62228,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-28.402046,153.556929,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-34.400792,150.643006,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-33.628687,151.151185,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.451617,150.518066,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.447885,150.520266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.385799,150.62718,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2023,1,9,Australia,AU,New South Wales,-28.942751,152.743725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.464663,150.523438,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-28.398078,153.555612,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.463752,150.523868,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-30.346344,153.075559,EPSG:4326 +HUMAN_OBSERVATION,OPUR23110802,1,FEMALE,occurrenceRemarks withheld,2023,4,1,Australia,AU,New South Wales,-34.098164,150.809052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.466469,150.52136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.432634,150.607272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.387373,150.631191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.436448,150.616064,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100503,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-31.474898,152.897385,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.420056,150.603496,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-28.867789,153.295041,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.907711,152.381044,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032115,1,,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-32.727242,152.079651,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,FEMALE,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-28.55615,153.074987,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220I,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-32.709332,152.062034,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.42369,150.605373,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.930197,153.279224,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.390289,150.629043,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2023,3,29,Australia,AU,New South Wales,-34.127624,150.827206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.421108,150.627411,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040409,1,,occurrenceRemarks withheld,2024,6,7,Australia,AU,New South Wales,-31.479254,152.873004,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-31.456865,152.905273,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.447313,150.513003,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001963,1,MALE,occurrenceRemarks withheld,2022,12,5,Australia,AU,New South Wales,-31.454131,152.925061,EPSG:4326 +HUMAN_OBSERVATION,OKEM18092400,1,,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-34.208264,150.652934,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.394674,150.642764,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.422413,150.637068,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032804,1,,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-31.450226,152.846388,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-34.453441,150.608626,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,6,Australia,AU,New South Wales,-29.490208,153.108178,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435668,150.602909,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.428436,150.598698,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-29.031464,152.986742,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.447235,150.516694,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.43046,150.610445,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-31.932582,152.413049,EPSG:4326 +HUMAN_OBSERVATION,OLHP2407120C,1,,occurrenceRemarks withheld,2024,6,26,Australia,AU,New South Wales,-31.544385,152.857701,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2023,1,14,Australia,AU,New South Wales,-33.981831,150.99207,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,7,10,Australia,AU,New South Wales,-32.721269,151.733037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.424451,150.604676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.420884,150.627918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.425714,150.601931,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004115,1,,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-28.979462,153.429069,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-29.486589,153.103318,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-31.630398,152.785092,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022608,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-32.211857,152.250591,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-28.884228,153.362296,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-31.916151,152.374234,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.445871,150.517442,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,31,Australia,AU,New South Wales,-29.48551,153.103806,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,3,Australia,AU,New South Wales,-34.439064,150.615206,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-33.774449,150.085865,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,28,Australia,AU,New South Wales,-30.838808,152.710237,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-28.37234,153.556207,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102500,1,,occurrenceRemarks withheld,2024,9,18,Australia,AU,New South Wales,-34.757376,146.562555,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,MALE,occurrenceRemarks withheld,2022,2,22,Australia,AU,New South Wales,-33.095045,151.130058,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221D,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-32.727394,152.083865,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-30.08386,152.179389,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-29.490175,153.109723,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.421019,150.627925,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,19,Australia,AU,New South Wales,-29.489615,153.104332,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.434529,150.609187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.389176,150.628846,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004270,1,,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-28.711656,153.590203,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2022,9,4,Australia,AU,New South Wales,-31.560332,152.848918,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072601;ODMP2212210O,1,,occurrenceRemarks withheld,2022,3,27,Australia,AU,New South Wales,-28.256938,153.401629,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-31.152926,152.810615,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.489491,150.638596,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR16092800;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-28.57492,153.51898,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,1,11,Australia,AU,New South Wales,-28.943292,153.312268,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-29.489577,153.103945,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-35.909051,149.209573,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,2,Australia,AU,New South Wales,-31.325051,152.762446,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-29.490091,153.110527,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.438605,150.617559,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.387121,150.630742,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.454855,150.519897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.429907,150.607045,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-30.426042,152.869618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.384464,150.622509,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.394049,150.630949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.432858,150.605372,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.419109,150.609463,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.447892,150.519744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.399133,150.639768,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-31.477123,152.913654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.422449,150.637034,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.17788,150.7999,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-28.815011,153.334927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.453568,150.518237,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011018,1,MALE,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-34.035178,150.872535,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-28.382917,153.561356,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-31.915671,152.374098,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-33.491276,149.5521,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.393227,150.643903,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,1,24,Australia,AU,New South Wales,-31.460875,152.922532,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004157,1,FEMALE,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-28.939508,153.277353,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2023,5,28,Australia,AU,New South Wales,-29.030746,152.986726,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,13,Australia,AU,New South Wales,-29.487924,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.465829,150.522674,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.550406,152.816138,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003878,1,,occurrenceRemarks withheld,2023,2,6,Australia,AU,New South Wales,-28.662586,153.61431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.420966,150.630298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418156,150.635545,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419996,150.610091,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-33.704443,150.786536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.42012,150.63129,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-29.490166,153.110533,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-34.015618,150.883653,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-33.715073,150.785822,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-28.612172,153.367535,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.395282,150.630338,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-31.479051,152.871849,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.456009,150.657867,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004083,1,,occurrenceRemarks withheld,2023,7,10,Australia,AU,New South Wales,-28.639492,153.629186,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503;ODFK23090504,1,,occurrenceRemarks withheld,2023,6,12,Australia,AU,New South Wales,-30.499978,151.515409,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.433216,150.616765,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-32.729432,152.106037,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.456114,152.904344,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100317,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-31.600927,152.729366,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-31.480401,152.914061,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.386136,150.624538,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-31.241831,152.901443,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-28.389917,153.562425,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.630803,152.791684,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031533,1,,occurrenceRemarks withheld,2022,11,5,Australia,AU,New South Wales,-28.74324,153.594564,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.423789,150.637334,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,FEMALE,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-34.06378,150.840287,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.420877,150.628038,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131O,1,,occurrenceRemarks withheld,2024,2,15,Australia,AU,New South Wales,-31.651771,152.602409,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.475696,150.53316,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-30.463978,153.045437,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.421812,150.627446,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004266,1,MALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.821884,153.301644,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-29.484576,153.09592,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,3,15,Australia,AU,New South Wales,-34.056818,150.994732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.422245,150.604337,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-29.488709,153.094016,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004113,1,,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-28.691735,152.937903,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.421197,150.627354,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.471032,150.523195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.465654,150.520307,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-31.460392,152.914021,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.390608,150.626446,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-28.872044,153.401468,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.456106,152.904674,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-32.403623,152.456293,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.467814,152.867269,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070800;OPUR21080903,1,,occurrenceRemarks withheld,2020,2,14,Australia,AU,New South Wales,-31.447396,152.856583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.418607,150.632802,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457096,150.517926,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.466823,150.519271,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,27,Australia,AU,New South Wales,-29.490311,153.108097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418285,150.635716,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.448969,150.516404,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.386247,150.627482,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-201,1,,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-30.397046,152.966033,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-32.705539,152.063663,EPSG:4326 +HUMAN_OBSERVATION,ODFK24062806,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-29.639691,152.888257,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-34.806145,150.016192,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.574566,149.915309,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250J,2,FEMALE,occurrenceRemarks withheld,2024,9,24,Australia,AU,New South Wales,-34.753227,146.544787,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-28.651197,153.303677,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-30.511997,151.506959,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.652347,152.809887,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.200336,150.789331,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.452053,150.517335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.422774,150.607411,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041V,1,FEMALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-33.593623,150.643659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-34.447275,150.513798,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-32.22231,152.20507,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.559404,149.938213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.455472,150.659471,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,15,Australia,AU,New South Wales,-28.393962,153.557961,EPSG:4326 +HUMAN_OBSERVATION,OPJG21031208,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-30.9008,153.0802,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072703;OLHP23072704,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.59447,152.191179,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.681355,149.952917,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-30.302212,153.100692,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.494229,150.640705,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070601,1,,occurrenceRemarks withheld,2020,5,14,Australia,AU,New South Wales,-34.352653,150.685064,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,4,27,Australia,AU,New South Wales,-31.465498,152.910592,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102116,1,,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-32.697448,151.69219,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.407796,153.006924,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-29.48431,153.104079,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.805797,153.342482,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090405,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-32.729309,152.037231,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.391595,150.644384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.437865,150.517886,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.446483,150.514312,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403060A,1,,occurrenceRemarks withheld,2024,2,28,Australia,AU,New South Wales,-31.442672,152.89831,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2023,2,22,Australia,AU,New South Wales,-31.920313,152.405107,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-30.1759,152.90909,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-28.313253,152.498059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,25,Australia,AU,New South Wales,-34.439893,150.616564,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-31.920313,152.405107,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270U,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-31.144825,152.87191,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-29.490203,153.110533,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2022,4,30,Australia,AU,New South Wales,-32.573337,151.778706,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-34.195852,150.789197,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.215618,152.960451,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,14,Australia,AU,New South Wales,-28.588452,153.529457,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,5,7,Australia,AU,New South Wales,-31.443303,152.896567,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,16,Australia,AU,New South Wales,-29.49018,153.110527,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.84847,152.734049,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.423222,150.604951,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.434959,150.609044,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,MALE,occurrenceRemarks withheld,2022,12,10,Australia,AU,New South Wales,-34.741097,146.532454,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.820088,153.273941,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-29.488095,153.092232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.465735,150.521632,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100206,1,MALE,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-28.359247,153.553636,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200Y,1,,occurrenceRemarks withheld,2024,4,18,Australia,AU,New South Wales,-31.254847,152.882534,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.494784,150.641005,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,MALE,occurrenceRemarks withheld,2024,4,28,Australia,AU,New South Wales,-34.028018,150.989495,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030501,1,,occurrenceRemarks withheld,2024,2,20,Australia,AU,New South Wales,-35.971447,144.895403,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.432642,150.605824,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.421198,150.627376,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-28.38545,153.562707,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-28.558873,153.396961,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.430944,150.615339,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-31.480952,152.916227,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-31.465331,152.868165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.39721,150.646163,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154I,1,,occurrenceRemarks withheld,2022,10,10,Australia,AU,New South Wales,-28.566824,153.521767,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.885013,152.777302,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-28.671784,153.327762,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.410243,150.597304,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-30.027688,152.24139,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-31.932544,152.412635,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304170D,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-32.959492,149.926899,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-28.830836,153.283345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.451932,150.521137,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100501,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-31.637879,152.797112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.426452,150.600953,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.477413,150.532445,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003988,1,MALE,occurrenceRemarks withheld,2023,4,20,Australia,AU,New South Wales,-28.821547,153.299496,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-31.448294,152.894749,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.43951,150.603441,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.42679,150.604871,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.382889,150.623075,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004003,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-28.667264,153.491477,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.439515,150.619383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.436942,150.607182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.457524,150.659327,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-30.416487,152.995193,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-31.429786,152.88489,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-32.720474,151.663314,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-33.707269,150.786938,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.435527,150.615491,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-29.490665,153.108167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.45607,150.607953,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,6,5,Australia,AU,New South Wales,-31.481698,152.906328,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,MALE,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-32.557035,151.746577,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090F,1,MALE,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-31.884849,152.384254,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,19,Australia,AU,New South Wales,-29.479267,153.104069,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,1,16,Australia,AU,New South Wales,-31.46977,152.923421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.389035,150.626675,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.469399,150.527162,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.420924,150.630452,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.418426,150.633666,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-34.229736,150.794403,EPSG:4326 +HUMAN_OBSERVATION,OPUR20021302,1,,occurrenceRemarks withheld,2022,9,12,Australia,AU,New South Wales,-31.15075,152.87191,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003947,1,,occurrenceRemarks withheld,2023,2,18,Australia,AU,New South Wales,-28.953621,153.414197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.389701,150.627102,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-28.391181,153.563878,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-29.174626,150.177743,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO;OJJS20110901,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-30.66673,152.95523,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,12,27,Australia,AU,New South Wales,-34.106067,150.973847,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290U,1,,occurrenceRemarks withheld,2023,12,29,Australia,AU,New South Wales,-31.452378,152.92596,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150U,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-31.78229,152.710237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.44651,150.514311,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-32.781371,152.090906,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210A,1,,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-32.748672,152.068944,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-28.928791,153.451137,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-28.396572,153.541925,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041C,1,,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-29.778078,151.096801,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-29.480061,153.104208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.391281,150.643979,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-32.682451,151.659379,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-34.091522,150.9855,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.354936,153.075452,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.425424,150.603245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.387822,150.631527,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,4,19,Australia,AU,New South Wales,-31.902146,152.387605,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-29.867849,152.182672,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-34.396392,150.649546,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.491703,150.639241,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-29.867849,152.182672,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-29.482592,153.104305,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-29.490647,153.109288,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031105,1,,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-32.730969,152.079414,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,MALE,occurrenceRemarks withheld,2024,4,19,Australia,AU,New South Wales,-31.4402,152.9091,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.464889,150.521679,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-28.398935,153.555948,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003956,1,,occurrenceRemarks withheld,2023,1,24,Australia,AU,New South Wales,-28.823805,153.300463,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-29.485576,153.103822,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.52307,150.56651,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-29.490152,153.100716,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.436195,150.606343,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17379,152.90779,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.392835,150.639466,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062903,1,,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-32.662349,151.717938,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,3,10,Australia,AU,New South Wales,-32.705964,152.063314,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-32.731477,152.153345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.465681,150.520709,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222N,1,,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-32.73392,152.03977,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.388477,150.63091,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060502,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-30.340512,153.07817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.450088,150.516447,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2024,1,1,Australia,AU,New South Wales,-29.490199,153.109787,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012505,1,,occurrenceRemarks withheld,2024,4,13,Australia,AU,New South Wales,-31.451697,152.926356,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-28.38674,153.523666,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,5,3,Australia,AU,New South Wales,-32.800506,151.846832,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.490742,150.638506,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004216,1,,occurrenceRemarks withheld,2023,7,24,Australia,AU,New South Wales,-28.691576,153.056771,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004112,1,MALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.820486,153.316666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.385685,150.626878,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-29.834265,150.844721,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-33.13776,151.082325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.397758,150.63998,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.389136,150.628619,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-31.919751,152.379396,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.48121,150.532529,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-31.443148,152.924695,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,29,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.39922,150.639569,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100602,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-35.971844,149.140067,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.423762,150.605392,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-33.968789,150.911136,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,7,Australia,AU,New South Wales,-29.479724,153.104235,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-29.483993,153.10401,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-32.722949,152.152509,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042605,1,,occurrenceRemarks withheld,2024,3,26,Australia,AU,New South Wales,-31.850735,152.399507,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160B,1,,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-33.489114,149.398327,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.447171,150.513094,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.384413,150.625446,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-28.827161,153.31798,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.429161,150.616369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.465885,150.521454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.466847,150.52087,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-28.672232,153.415221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.466461,150.521404,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.395667,150.641399,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-31.166614,152.67026,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.400332,153.557215,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.443042,150.515752,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-31.439408,152.887031,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090K,1,MALE,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-31.463682,152.872797,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003950,1,,occurrenceRemarks withheld,2023,2,24,Australia,AU,New South Wales,-28.678148,153.38778,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,2,18,Australia,AU,New South Wales,-32.766323,152.116571,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.383262,150.62326,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222P,1,,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-32.707881,152.069137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.446926,150.516584,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-28.640286,153.482136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.424437,150.604372,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-29.485819,153.103666,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050S,1,,occurrenceRemarks withheld,2023,11,25,Australia,AU,New South Wales,-30.889394,153.074095,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,6,24,Australia,AU,New South Wales,-31.430129,152.884946,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.452511,150.523906,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.633581,149.921178,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,5,6,Australia,AU,New South Wales,-31.44189,152.908079,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.43567,150.615901,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011008,1,,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-32.727623,152.003944,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121102,1,,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-31.477865,152.899011,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-29.484597,153.10401,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-32.092397,152.449782,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-31.919753,152.37941,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,13,Australia,AU,New South Wales,-28.237207,153.458876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.387784,150.631452,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221N,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-32.70915,152.062125,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-29.346563,152.944433,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140Q,1,,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-28.924729,153.159359,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-29.49017,153.110506,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,19,Australia,AU,New South Wales,-33.707786,150.78684,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,19,Australia,AU,New South Wales,-28.816805,153.328556,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-32.774392,151.871287,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.138436,150.79405,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-29.667247,152.868319,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.445927,150.51312,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,5,Australia,AU,New South Wales,-32.706203,152.063272,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.618562,149.923643,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.435127,150.608876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.400401,150.64566,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003859,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-28.939137,153.273349,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083001,1,,occurrenceRemarks withheld,2024,5,14,Australia,AU,New South Wales,-32.354277,151.816471,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-28.678948,153.27792,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-28.380558,153.56427,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-29.490213,153.107894,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-31.93439,152.414365,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.45866,150.656008,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.384509,150.622486,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.444077,152.887473,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.447394,150.516994,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-28.819816,153.281819,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.46278,150.52394,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300X,1,,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-32.668945,151.715294,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.574566,149.915309,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,11,5,Australia,AU,New South Wales,-31.455795,152.920882,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100E,1,,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-31.461602,152.870715,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.418911,150.609512,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-29.47958,153.104203,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900;OPUR19080900;OMRF21071000,1,,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.084685,150.978567,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,2,15,Australia,AU,New South Wales,-28.888915,153.186783,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.434502,150.609177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.437594,150.603681,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.432158,150.611986,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003879,1,MALE,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-28.388496,153.557719,EPSG:4326 +HUMAN_OBSERVATION,OSSD22052500,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-30.422788,152.970412,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,2,Australia,AU,New South Wales,-31.863221,152.666458,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.480942,150.533125,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.437169,150.5182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.393509,150.641698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.423761,150.637302,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,FEMALE,occurrenceRemarks withheld,2023,5,8,Australia,AU,New South Wales,-29.629872,152.896425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.4651,150.522293,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.294197,149.324916,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-32.200385,152.306418,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.219628,152.19096,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,13,Australia,AU,New South Wales,-34.068546,150.842335,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,3,17,Australia,AU,New South Wales,-31.442702,152.897136,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,MALE,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-34.069204,150.834442,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-33.70996,150.785679,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-34.068546,150.842335,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-31.440017,152.910331,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.437876,150.60426,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,1,6,Australia,AU,New South Wales,-31.439302,152.887932,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002758,1,,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-29.474102,153.107121,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,2,10,Australia,AU,New South Wales,-31.414153,152.896714,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.454072,150.520432,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.420983,150.626969,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.45152,150.517286,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004087,1,MALE,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-28.387175,153.560977,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-31.430037,152.911145,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-28.998416,153.321928,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220O,1,,occurrenceRemarks withheld,2024,3,23,Australia,AU,New South Wales,-32.72405,152.116143,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100306,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-30.253714,153.134746,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.433716,150.616947,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-32.722468,152.077174,EPSG:4326 +HUMAN_OBSERVATION,OJJS18041601,1,,occurrenceRemarks withheld,2023,4,6,Australia,AU,New South Wales,-28.890876,153.228742,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,21,Australia,AU,New South Wales,-31.912325,152.383191,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-28.729263,153.592081,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-31.45791,152.90836,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050E,1,,occurrenceRemarks withheld,2024,2,24,Australia,AU,New South Wales,-34.052067,150.752609,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100307,1,,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-34.034455,151.027991,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.433306,150.607514,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-31.127889,152.794063,EPSG:4326 +HUMAN_OBSERVATION,OSXK00032802,1,,occurrenceRemarks withheld,2021,12,7,Australia,AU,New South Wales,-32.354846,149.807665,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.421389,150.627447,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-30.290428,152.699685,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-30.326234,151.649795,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020600,1,MALE,occurrenceRemarks withheld,2022,12,28,Australia,AU,New South Wales,-31.443033,152.922865,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.467903,150.52049,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-32.573191,151.765664,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.061874,150.862399,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.458596,150.612691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.435003,150.603026,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-31.910186,152.409406,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100N,1,,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-34.099034,150.812873,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,5,Australia,AU,New South Wales,-34.90931,150.05724,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,20,Australia,AU,New South Wales,-29.485552,153.10379,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,2,17,Australia,AU,New South Wales,-32.619635,151.636403,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.418478,150.633556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.418653,150.632833,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-29.486757,153.103184,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.506576,152.867952,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.463429,150.519469,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,5,Australia,AU,New South Wales,-29.488798,153.101977,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-31.431087,152.909624,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-29.49017,153.110527,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-29.47971,153.104219,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-32.706596,152.063752,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100515,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.470421,152.907297,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.202696,152.7295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.437902,150.605576,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-31.867495,152.199852,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122108,1,,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-33.979672,150.990249,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031508,1,FEMALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-28.824541,153.326028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.436973,150.603242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.435572,150.61549,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-33.703828,150.786799,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,17,Australia,AU,New South Wales,-28.885959,153.195273,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-28.926902,153.158417,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-31.93318,152.415397,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.446097,150.517457,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.392902,150.632678,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-29.642903,152.829547,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003881,1,FEMALE,occurrenceRemarks withheld,2023,4,4,Australia,AU,New South Wales,-28.827612,153.317755,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.388171,150.631887,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,8,19,Australia,AU,New South Wales,-34.045103,151.010067,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.49313,150.6403,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181Z,1,FEMALE,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-28.86024,153.315188,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.488027,150.637472,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.434335,150.616363,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.640426,149.947048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.436067,150.616412,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,7,1,Australia,AU,New South Wales,-32.719454,151.721643,EPSG:4326 +HUMAN_OBSERVATION,ODMP00112209;ODMP0311130K,1,MALE,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-28.477117,153.527636,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.399209,150.618546,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.435562,150.61548,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,29,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.420633,150.630797,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,9,Australia,AU,New South Wales,-33.716224,150.785172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.439027,150.602693,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-28.230411,153.488941,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.432114,150.608353,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,18,Australia,AU,New South Wales,-29.484913,153.103881,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-28.397475,153.556831,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100206,1,FEMALE,occurrenceRemarks withheld,2020,8,2,Australia,AU,New South Wales,-28.359273,153.553711,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,26,Australia,AU,New South Wales,-29.485118,153.104042,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.427033,150.604809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.420865,150.627897,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,12,20,Australia,AU,New South Wales,-31.454806,152.908755,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,7,16,Australia,AU,New South Wales,-31.434431,152.895977,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052704,1,,occurrenceRemarks withheld,2024,4,8,Australia,AU,New South Wales,-32.585358,151.780438,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,12,Australia,AU,New South Wales,-32.206082,152.292237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.452704,150.60461,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-31.468643,152.875735,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,3,Australia,AU,New South Wales,-31.452762,152.925908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.468016,150.520727,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.399429,150.645306,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401110C,1,,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-32.722408,152.076999,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-28.815434,153.296613,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002557,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-29.096775,153.395162,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.923029,152.383596,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.420765,150.629673,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-31.437091,152.904596,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.432866,150.614076,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.944391,153.447243,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.504679,149.957517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.435139,150.609028,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-33.991958,150.89266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.423461,150.605684,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-31.403015,152.093798,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003840,1,,occurrenceRemarks withheld,2023,1,23,Australia,AU,New South Wales,-28.624684,152.956825,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060500,1,,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-28.839543,153.313972,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-33.522609,150.655487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.447409,150.519061,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435726,150.52043,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.389871,150.630719,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-34.188134,150.790596,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-31.457462,152.916798,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-29.48559,153.103806,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,6,9,Australia,AU,New South Wales,-28.166129,153.483264,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.491368,150.639141,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-31.445847,152.906069,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,3,Australia,AU,New South Wales,-29.479239,153.104262,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.493198,150.639144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.436021,150.616359,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-29.485221,153.10416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.466999,150.520833,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2024,7,5,Australia,AU,New South Wales,-31.918272,152.38516,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-29.491045,153.110236,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-31.458564,152.922607,EPSG:4326 +HUMAN_OBSERVATION,ODMP06091900,1,,occurrenceRemarks withheld,2022,3,16,Australia,AU,New South Wales,-31.450796,152.916422,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,4,Australia,AU,New South Wales,-29.480705,153.104106,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-31.464741,152.927815,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.418961,150.610185,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.420825,150.609164,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,6,1,Australia,AU,New South Wales,-31.524851,152.714104,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-29.489918,153.101204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.423754,150.637378,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-31.120008,152.797752,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031N,1,,occurrenceRemarks withheld,2024,2,29,Australia,AU,New South Wales,-31.459683,152.926877,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180F,1,FEMALE,occurrenceRemarks withheld,2022,7,15,Australia,AU,New South Wales,-28.864646,153.293263,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042F,1,,occurrenceRemarks withheld,2023,3,15,Australia,AU,New South Wales,-34.055279,151.013656,EPSG:4326 +HUMAN_OBSERVATION,BREHS-HO,1,,occurrenceRemarks withheld,2022,6,14,Australia,AU,New South Wales,-33.341894,151.06328,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-31.485113,152.918145,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.423791,150.637432,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.570187,149.979238,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-31.932362,152.41258,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,7,Australia,AU,New South Wales,-29.490208,153.108167,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-29.48558,153.103806,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-28.729278,153.403053,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.426061,150.602618,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-29.48558,153.103806,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.098068,150.808209,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.419928,150.602488,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-28.889201,153.431476,EPSG:4326 +HUMAN_OBSERVATION,OVAE20122100,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-33.344372,151.316503,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.436443,150.615803,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,3,2,Australia,AU,New South Wales,-31.79145,152.22033,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-32.706463,152.063366,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,10,Australia,AU,New South Wales,-29.486201,153.093361,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,5,23,Australia,AU,New South Wales,-32.653544,151.789503,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-29.488031,153.09211,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-28.796653,153.359559,EPSG:4326 +HUMAN_OBSERVATION,OPJG18122002,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-30.200187,152.775854,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-32.70167,152.06487,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,20,Australia,AU,New South Wales,-33.703416,150.785432,EPSG:4326 +HUMAN_OBSERVATION,ODXB07020101;OPJG24070401,1,,occurrenceRemarks withheld,2024,4,19,Australia,AU,New South Wales,-33.6859,149.73938,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-28.960039,153.395244,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-29.667247,152.868319,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.420639,150.630656,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070I,1,,occurrenceRemarks withheld,2020,4,17,Australia,AU,New South Wales,-32.570605,151.782466,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-30.106609,152.12857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.445904,150.514176,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.450106,150.516468,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.513032,150.001052,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,3,16,Australia,AU,New South Wales,-30.507724,152.926608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.390661,150.627292,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,11,17,Australia,AU,New South Wales,-34.044634,150.986725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.395382,150.629954,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-33.773598,150.064067,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-29.480065,153.104278,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-31.595037,152.838719,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23040505,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-32.373929,149.776514,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190B,1,,occurrenceRemarks withheld,2024,8,20,Australia,AU,New South Wales,-31.933489,152.413482,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240H,1,,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-32.739427,152.022955,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.446501,150.5143,EPSG:4326 +HUMAN_OBSERVATION,OJJS06031407,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.508652,152.39209,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.439528,150.603909,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.46597,150.522082,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-31.634944,152.786548,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,8,9,Australia,AU,New South Wales,-31.456211,152.897863,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,4,17,Australia,AU,New South Wales,-32.764941,152.114058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.395423,150.640916,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002824,1,,occurrenceRemarks withheld,2021,2,5,Australia,AU,New South Wales,-29.425509,153.189755,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.403099,150.641103,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-34.020624,150.991081,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-31.4583,152.926295,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,15,Australia,AU,New South Wales,-29.489507,153.103924,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-30.28033,153.05409,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.420728,150.630098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.465753,150.520282,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,7,18,Australia,AU,New South Wales,-31.553707,152.853532,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-30.230104,153.007472,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-880,1,,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-29.980106,151.277809,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251G,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-32.729413,152.106248,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.466508,150.524156,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,5,11,Australia,AU,New South Wales,-32.709575,152.062537,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.475718,150.532909,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.446734,150.51598,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.43427,150.615756,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.444755,150.51445,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-28.275801,153.394328,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-29.48883,153.103495,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.392659,150.639221,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,4,10,Australia,AU,New South Wales,-28.672293,153.107836,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.491266,150.638545,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419134,150.610289,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-33.706724,150.78694,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.427866,150.597659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.425134,150.599946,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.446695,150.518071,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.463421,150.531997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.417603,150.603022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.431991,150.612165,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,6,1,Australia,AU,New South Wales,-31.471982,152.926385,EPSG:4326 +HUMAN_OBSERVATION,ODMP99082301,1,,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-31.48891,151.475306,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.452032,150.517162,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-31.450372,152.875249,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-31.906647,152.401054,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.395643,150.625738,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.445762,150.514736,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-33.114326,151.122284,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-32.464227,151.983415,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-31.131084,152.817161,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,8,19,Australia,AU,New South Wales,-34.090695,150.985326,EPSG:4326 +HUMAN_OBSERVATION,ODMP21060800,1,MALE,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-29.732803,152.923875,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-28.394194,153.558289,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150U,1,,occurrenceRemarks withheld,2020,12,28,Australia,AU,New South Wales,-31.787701,152.709573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.455236,150.519581,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.418241,150.632018,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-32.706704,152.064574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.447461,150.516285,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032804,1,,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-31.500782,152.763216,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.92949,153.449765,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,20,Australia,AU,New South Wales,-32.706016,152.063384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.43275,150.609945,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-28.656932,153.494976,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.434678,150.606669,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,2,9,Australia,AU,New South Wales,-31.93643,152.45426,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.386286,150.627666,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-28.871982,153.313553,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,10,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419098,150.610301,EPSG:4326 +HUMAN_OBSERVATION,OPJG21083100,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-30.144069,153.152137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.456586,150.519486,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004070,1,,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-28.528678,153.538393,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-31.631113,152.832007,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.420658,150.630666,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-30.301315,153.121592,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.56062,152.208892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.394637,150.641297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.427537,150.603413,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.436431,150.609644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.432186,150.612018,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-33.705748,150.786957,EPSG:4326 +HUMAN_OBSERVATION,OJJS19043000;ODMP22022701,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-33.967222,150.921117,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303280D,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-31.430757,152.814505,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-29.631163,152.899658,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.438007,150.616009,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211I,1,,occurrenceRemarks withheld,2022,11,5,Australia,AU,New South Wales,-32.596543,151.763999,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-28.52286,153.13459,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.437254,150.605617,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.485554,150.636388,EPSG:4326 +HUMAN_OBSERVATION,OPJG15082102,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-29.240543,152.958719,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030R,1,FEMALE,occurrenceRemarks withheld,2022,8,29,Australia,AU,New South Wales,-30.636253,151.4163,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-31.94582,152.40417,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-29.489629,153.101451,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-32.71906,152.121313,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030C,1,MALE,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-30.895318,153.037093,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-29.485277,153.104058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.471241,150.529492,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2024,3,13,Australia,AU,New South Wales,-33.526907,150.658791,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.420965,150.630222,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.421489,150.627488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.438843,150.604353,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.434977,150.617814,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-31.451753,152.926475,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.429262,150.615071,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-29.488228,153.092154,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-33.526989,149.489237,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-31.264179,152.817895,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001963,1,,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-32.066605,152.522986,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.469304,150.526882,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.45398,150.520315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.488334,150.637528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.396999,150.64221,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-29.490203,153.109793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.420658,150.63071,EPSG:4326 +HUMAN_OBSERVATION,OJJS11062906,1,,occurrenceRemarks withheld,2020,2,23,Australia,AU,New South Wales,-31.438007,152.892168,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.455343,150.519534,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-31.445019,152.926709,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.44879,150.518248,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100515,1,,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-31.470429,152.900225,EPSG:4326 +HUMAN_OBSERVATION,OPUR23081702;ODFK2310250A,1,,occurrenceRemarks withheld,2023,,,Australia,AU,New South Wales,-29.205067,153.106672,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.391537,150.645114,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,2,Australia,AU,New South Wales,-29.490581,153.109363,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-32.708764,152.064295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.420507,150.628005,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010703,1,MALE,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-29.726474,152.930868,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-29.476885,153.104423,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103102,1,,occurrenceRemarks withheld,2023,1,15,Australia,AU,New South Wales,-33.583845,149.466623,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-33.388037,150.695548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.458808,150.663732,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,7,5,Australia,AU,New South Wales,-28.99284,153.436507,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-29.667396,152.867825,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,MALE,occurrenceRemarks withheld,2022,1,24,Australia,AU,New South Wales,-28.256241,153.401309,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS;ODFK23090501,1,,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-30.443318,151.734784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.434503,150.609221,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-29.489928,153.101215,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,8,Australia,AU,New South Wales,-29.477786,153.10431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.390664,150.627445,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,26,Australia,AU,New South Wales,-29.490124,153.107395,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-29.490315,153.108119,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-28.689831,153.312419,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,25,Australia,AU,New South Wales,-29.168547,152.799633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.426237,150.605158,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,4,Australia,AU,New South Wales,-28.573732,153.433744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.469319,150.527176,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,8,8,Australia,AU,New South Wales,-31.466574,152.922859,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.437135,150.613857,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-29.488153,153.092197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.459114,150.517866,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.465778,150.522415,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-32.706158,152.063529,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,5,Australia,AU,New South Wales,-33.715856,150.784636,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.459268,150.521464,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040B,1,MALE,occurrenceRemarks withheld,2023,2,16,Australia,AU,New South Wales,-33.545022,150.648297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.458259,150.661908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.432132,150.608341,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-29.479748,153.104058,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003824,1,,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-28.833544,153.364004,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.869015,153.335481,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-31.812159,152.39193,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.488653,150.635375,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-31.264856,152.818062,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.45008,150.51649,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-31.459806,152.910608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.488011,150.635284,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.420974,150.630265,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-31.440355,152.886828,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.445891,150.513121,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-33.708388,150.786618,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-31.925132,152.40431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.386119,150.624604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.420375,150.635178,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-28.494266,153.140473,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-29.485552,153.103623,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-29.476717,153.104841,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-31.462146,152.923138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-34.441081,150.616008,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,19,Australia,AU,New South Wales,-29.485244,153.103994,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-29.490199,153.108172,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,19,Australia,AU,New South Wales,-29.488746,153.093447,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-29.486248,153.096628,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122003,1,MALE,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.912116,153.049341,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-31.925624,152.375108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-34.437893,150.616164,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-30.505342,152.909937,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,25,Australia,AU,New South Wales,-29.490936,153.09915,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308250D,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-32.660899,152.174613,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-28.387972,153.564028,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,3,30,Australia,AU,New South Wales,-28.866397,153.350925,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.173957,149.238855,EPSG:4326 +HUMAN_OBSERVATION,OPJG09091000,1,,occurrenceRemarks withheld,2023,3,14,Australia,AU,New South Wales,-30.015431,152.762249,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-32.710356,152.064462,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.390477,150.627102,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-32.757248,152.101735,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.427571,150.603314,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.390918,150.627992,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.418933,150.638928,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-28.826294,153.317262,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.436182,150.603395,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,21,Australia,AU,New South Wales,-28.888732,153.271853,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,5,25,Australia,AU,New South Wales,-34.084454,150.833896,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-33.137746,151.081623,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072705,1,,occurrenceRemarks withheld,2023,2,27,Australia,AU,New South Wales,-28.556131,153.388316,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071102,1,,occurrenceRemarks withheld,2024,6,27,Australia,AU,New South Wales,-31.93345,152.408078,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.420707,150.630893,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.418169,150.632031,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-29.488489,153.098066,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.559404,149.938213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.448346,150.516368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.430549,150.610378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.447775,150.51312,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.446111,150.513278,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-29.834537,150.845029,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-34.088588,150.990993,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-28.459169,153.040682,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-29.489587,153.103876,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,6,18,Australia,AU,New South Wales,-28.259623,153.403393,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.415821,150.640245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.392861,150.639454,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111309,1,FEMALE,occurrenceRemarks withheld,2023,12,10,Australia,AU,New South Wales,-32.010099,152.145044,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-31.13066,149.99504,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,15,Australia,AU,New South Wales,-34.43982,150.618841,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-29.667396,152.868748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.430128,150.610042,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.305059,152.027864,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.464288,150.523634,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100A,1,FEMALE,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-34.209417,150.789337,EPSG:4326 +HUMAN_OBSERVATION,OJJS20080303,1,FEMALE,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-32.593434,151.769827,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,1,12,Australia,AU,New South Wales,-32.331354,152.53008,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.43792,150.605576,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-32.237057,152.190362,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-29.48552,153.103779,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.838189,153.39044,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.436102,150.615856,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,2,Australia,AU,New South Wales,-29.485342,153.104031,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004048,1,MALE,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-28.804702,153.506898,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.464617,150.526063,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OVGI98110201,1,,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-30.477672,151.739822,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.388923,150.624177,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100J,1,,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-33.984341,150.899564,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,18,Australia,AU,New South Wales,-29.490194,153.110527,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.446034,150.513052,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100609,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-31.430362,152.894402,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.439629,152.904181,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.463527,150.523863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.419643,150.611406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.398075,150.644257,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-34.072866,150.859517,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-31.92367,152.383672,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-34.500217,150.582601,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.468087,150.520681,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OMFZ23033002;ODFK24051300,1,,occurrenceRemarks withheld,2023,4,4,Australia,AU,New South Wales,-32.132223,152.031333,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.461987,150.522169,EPSG:4326 +HUMAN_OBSERVATION,OPRS04081700,1,,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-28.907274,152.387072,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040414,1,MALE,occurrenceRemarks withheld,2022,10,22,Australia,AU,New South Wales,-29.490648,153.110939,EPSG:4326 +HUMAN_OBSERVATION,ODMP2302060B,1,,occurrenceRemarks withheld,2023,12,29,Australia,AU,New South Wales,-34.150037,150.825419,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,22,Australia,AU,New South Wales,-28.620414,153.537089,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150S,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-32.060198,152.540319,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-29.484357,153.104037,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.446407,150.514096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.447716,150.51952,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,1,FEMALE,occurrenceRemarks withheld,2022,5,25,Australia,AU,New South Wales,-28.626811,153.42816,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,3,Australia,AU,New South Wales,-28.684864,153.475172,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,9,Australia,AU,New South Wales,-29.490502,153.109379,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.397947,150.621801,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308240N,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-32.664102,152.171867,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-28.824589,153.322317,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,MALE,occurrenceRemarks withheld,2022,10,10,Australia,AU,New South Wales,-28.848003,153.303123,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.433689,150.616969,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083002,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.069577,150.834991,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,18,Australia,AU,New South Wales,-29.49025,153.110222,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436523,150.520613,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-33.717059,150.785145,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.395015,150.641265,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-28.579904,153.101451,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.228945,152.192632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.450043,150.516481,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-28.960608,153.402563,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,4,24,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.86626,153.388725,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-33.536353,150.666101,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.426281,150.605092,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,5,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,14,Australia,AU,New South Wales,-28.888411,153.298465,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221G,1,,occurrenceRemarks withheld,2020,12,3,Australia,AU,New South Wales,-32.736788,152.056771,EPSG:4326 +HUMAN_OBSERVATION,OPJL98052800,1,,occurrenceRemarks withheld,2023,3,22,Australia,AU,New South Wales,-31.577395,151.643177,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002739,1,,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-29.489792,153.110554,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.512751,150.523877,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.454372,150.520978,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,6,15,Australia,AU,New South Wales,-29.104379,153.384531,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152R,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-28.25335,153.448368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.46569,150.521633,EPSG:4326 +HUMAN_OBSERVATION,ODMP21050505,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-31.71347,152.703898,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.421487,150.627422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.384419,150.625272,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-31.386864,150.406039,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-33.51735,150.61712,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031402,1,,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-28.87971,153.324332,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-31.443366,152.913171,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-29.490259,153.108151,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.240985,152.954709,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-31.442553,152.910567,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.39462,150.642766,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200E,1,,occurrenceRemarks withheld,2024,4,24,Australia,AU,New South Wales,-31.447702,152.920812,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,3,13,Australia,AU,New South Wales,-31.428682,152.86094,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-31.558983,152.623847,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,1,Australia,AU,New South Wales,-33.706337,150.787102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.420703,150.630665,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.418971,150.610261,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030605,1,,occurrenceRemarks withheld,2024,1,24,Australia,AU,New South Wales,-30.422742,153.008997,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,11,20,Australia,AU,New South Wales,-30.354912,153.075532,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,12,5,Australia,AU,New South Wales,-31.632051,152.785298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.465789,150.520292,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,2,5,Australia,AU,New South Wales,-31.44294,152.919469,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080308,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-31.604082,152.804593,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.485566,150.637008,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102100,1,,occurrenceRemarks withheld,2023,8,29,Australia,AU,New South Wales,-32.402945,151.751426,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-33.716985,150.785351,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-34.43805,150.616377,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-31.952115,152.401392,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030A,1,,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-32.060168,152.540666,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250Q,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-32.712686,152.070612,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-31.439806,152.885496,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.395854,150.643612,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,FEMALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915073,153.31783,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.058521,150.885513,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,2,26,Australia,AU,New South Wales,-32.706456,152.063527,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022501,1,,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-32.657896,151.642358,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.42081,150.630629,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.446992,150.515396,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.435383,150.519504,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-31.271709,152.963413,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-30.093753,152.212034,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.447537,150.518688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.423452,150.605651,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-29.740625,152.943361,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.449389,150.523748,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,11,Australia,AU,New South Wales,-29.490184,153.109819,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-30.637202,152.949001,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.929063,153.317852,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-28.822876,153.319327,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.426378,150.602696,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.448701,150.516096,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,12,3,Australia,AU,New South Wales,-31.633635,152.813636,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.429645,150.614853,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.388216,150.624425,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012505,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.452478,152.925839,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,10,Australia,AU,New South Wales,-28.72186,153.521123,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-30.523449,152.624549,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-28.650448,153.510347,EPSG:4326 +HUMAN_OBSERVATION,OSMK12022300,1,,occurrenceRemarks withheld,2023,5,28,Australia,AU,New South Wales,-31.211353,152.770962,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,3,15,Australia,AU,New South Wales,-34.049268,150.99348,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-31.419488,152.107655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.418998,150.61026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.437956,150.604182,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-36.24865,149.415444,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,15,Australia,AU,New South Wales,-36.108916,149.307163,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-28.889576,153.360581,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.48829,150.637105,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.886464,153.300206,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100311,1,FEMALE,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-30.451825,152.888668,EPSG:4326 +HUMAN_OBSERVATION,OLHP23083002,1,,occurrenceRemarks withheld,2024,9,4,Australia,AU,New South Wales,-34.798494,150.008091,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.385467,150.624481,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,5,22,Australia,AU,New South Wales,-28.847893,153.302047,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,2,15,Australia,AU,New South Wales,-31.902418,152.396884,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,7,11,Australia,AU,New South Wales,-34.305637,150.738141,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.872021,153.335449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.421577,150.627409,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303280D,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-31.432922,152.814232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.411517,150.596082,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-29.681698,152.933658,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082302;ODFK23082303;ODFK23082304;ODFK23082305;ODFK23082306,1,MALE,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-34.019176,150.882558,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.434785,150.615861,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-29.749057,151.032037,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,1,4,Australia,AU,New South Wales,-31.933496,152.415811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.451863,150.517276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.398746,150.621158,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-36.153826,149.350972,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420208,150.610357,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.810822,152.825231,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.426786,150.601411,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,7,25,Australia,AU,New South Wales,-31.445696,152.894573,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.437031,150.51939,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031812,1,,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-28.598293,153.091189,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032808,1,,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-31.4693,152.92553,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.551144,149.998977,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.426926,150.604899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.41905,150.602796,EPSG:4326 +HUMAN_OBSERVATION,OSYK02050800,1,,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-29.61859,152.26304,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154L,1,,occurrenceRemarks withheld,2022,9,7,Australia,AU,New South Wales,-28.385534,153.561462,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,21,Australia,AU,New South Wales,-31.476156,152.914138,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190I,1,,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-28.819847,153.302198,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-31.474328,152.919152,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.585256,149.901576,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.864561,153.293095,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-28.977706,153.406132,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-34.016726,150.874203,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.435393,150.615114,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-28.394642,153.557511,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-28.260221,153.401564,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,2,26,Australia,AU,New South Wales,-32.706445,152.063539,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.435376,150.615148,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.430546,150.609758,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-32.73161,152.15365,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.443909,150.514497,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.430673,150.610722,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,FEMALE,occurrenceRemarks withheld,2024,5,9,Australia,AU,New South Wales,-31.4402,152.9091,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,4,15,Australia,AU,New South Wales,-28.873877,153.167264,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-31.930397,152.405625,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-29.490488,153.109428,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-31.474111,152.900123,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-33.716942,150.785256,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.628735,152.757834,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220O,1,,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-28.576441,153.179945,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-34.219903,150.808365,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-32.743793,152.074059,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-29.488387,153.110232,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,2,7,Australia,AU,New South Wales,-34.098107,150.808238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.426348,150.605786,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-33.718259,150.783941,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-29.478809,153.104122,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090407,1,FEMALE,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-32.640221,151.719347,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030504,1,,occurrenceRemarks withheld,2024,2,22,Australia,AU,New South Wales,-32.662271,151.707977,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.418804,150.60908,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,FEMALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-28.823238,153.309351,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030502,1,,occurrenceRemarks withheld,2024,2,25,Australia,AU,New South Wales,-31.192702,152.971583,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-33.706819,150.786184,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290B,1,,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-31.464317,152.870774,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.386688,150.625121,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-32.226267,152.189573,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102104,1,,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-32.710024,152.060523,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.388695,150.630556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.465785,150.52051,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.810775,152.824237,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.846843,153.314609,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090M,1,,occurrenceRemarks withheld,2024,6,18,Australia,AU,New South Wales,-31.445007,152.916547,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,6,5,Australia,AU,New South Wales,-31.445729,152.919393,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,3,26,Australia,AU,New South Wales,-29.488116,153.102411,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,25,Australia,AU,New South Wales,-33.709567,150.785112,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-34.095742,150.984626,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,1,30,Australia,AU,New South Wales,-31.44683,152.927627,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-28.659545,153.285595,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031528,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-28.685947,153.521809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.428026,150.600755,EPSG:4326 +HUMAN_OBSERVATION,OSYK02050800,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-32.59644,151.80501,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303310A,1,,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-32.776327,152.081326,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.297746,149.316332,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.457272,150.659334,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.209173,149.258827,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.491376,150.639098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.446499,150.519948,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.433871,150.614287,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2022,6,11,Australia,AU,New South Wales,-31.27226,152.82607,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.46569,150.520306,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-28.848137,153.302488,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-31.632279,152.78529,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.421,150.62785,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2023,6,17,Australia,AU,New South Wales,-34.141996,150.790457,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.395382,150.643005,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-28.236784,153.501758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.390297,150.62901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.464068,150.523869,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,4,27,Australia,AU,New South Wales,-31.92441,152.35899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.459357,150.522735,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-28.74465,152.31217,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.68121,153.60155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.387776,150.631485,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,5,7,Australia,AU,New South Wales,-31.459073,152.8742,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.433802,150.608,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250K,1,,occurrenceRemarks withheld,2024,9,22,Australia,AU,New South Wales,-33.624442,149.537372,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.478075,150.532643,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,21,Australia,AU,New South Wales,-32.30351,152.022263,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.001426,150.900075,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-33.703721,150.787368,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.633581,149.921178,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.388924,150.624188,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.42567,150.602009,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-33.703819,150.7868,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.427056,150.605102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.436227,150.604308,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435763,150.521332,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.454477,150.517274,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,4,5,Australia,AU,New South Wales,-31.455393,152.928854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.395137,150.641033,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004025,1,,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-28.995147,153.300789,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.4238,150.637453,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.439067,150.604292,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-29.480033,153.104315,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003808,1,,occurrenceRemarks withheld,2023,2,25,Australia,AU,New South Wales,-28.67706,153.289504,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-31.439381,152.904626,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003892,1,,occurrenceRemarks withheld,2023,3,5,Australia,AU,New South Wales,-29.016415,153.431324,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071718,1,,occurrenceRemarks withheld,2020,4,7,Australia,AU,New South Wales,-29.3555,153.282194,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303230C;OMFZ2303230D,1,FEMALE,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-34.143248,150.790444,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.831105,153.328184,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,12,Australia,AU,New South Wales,-28.682751,153.319132,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-31.364619,152.698113,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012505,1,,occurrenceRemarks withheld,2024,1,20,Australia,AU,New South Wales,-31.454193,152.92517,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-29.487826,153.091575,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032808,1,,occurrenceRemarks withheld,2023,3,28,Australia,AU,New South Wales,-31.44677,152.92594,EPSG:4326 +HUMAN_OBSERVATION,OJJS19072301;OJJS2007070K,1,,occurrenceRemarks withheld,2020,3,11,Australia,AU,New South Wales,-28.466721,153.311715,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070D,1,,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-32.737423,152.039572,EPSG:4326 +HUMAN_OBSERVATION,OESM20102100,1,,occurrenceRemarks withheld,2022,4,27,Australia,AU,New South Wales,-33.185047,151.244302,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-28.387986,153.563995,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041303,1,FEMALE,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-31.944661,152.413602,EPSG:4326 +HUMAN_OBSERVATION,ODMP23070402,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-30.433774,152.950102,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130B,1,MALE,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-30.885799,153.071644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.438683,150.606795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.436094,150.520778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.459667,150.530029,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OJJS20041402;OJJS20041409;OMFZ23033002,1,,occurrenceRemarks withheld,2022,11,14,Australia,AU,New South Wales,-32.771054,152.085122,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260U,1,,occurrenceRemarks withheld,2020,2,6,Australia,AU,New South Wales,-34.06006,150.84097,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180M,1,,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-28.938919,153.277404,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.489254,150.63379,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-31.456465,152.15231,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.45938,150.535033,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130T,1,FEMALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-29.665613,150.818755,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-28.816036,153.322192,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.68121,153.60155,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-31.458456,152.929663,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.434918,150.60651,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-34.19079,150.7947,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.465374,150.52161,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-30.886861,152.741355,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,4,21,Australia,AU,New South Wales,-29.48982,153.103377,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,MALE,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-34.150124,150.82287,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.411582,150.596189,EPSG:4326 +HUMAN_OBSERVATION,OJJS20092800,1,,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-32.70424,151.800149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.451619,150.523464,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-29.636094,152.289282,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,6,9,Australia,AU,New South Wales,-34.127969,150.822863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.459282,150.521257,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-34.746556,146.546745,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.421358,150.627274,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.468836,150.530532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.396321,150.644023,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,3,22,Australia,AU,New South Wales,-32.70614,152.063229,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,2,16,Australia,AU,New South Wales,-29.692524,152.851464,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,FEMALE,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-33.958092,150.953894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.436535,150.520732,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181H,1,MALE,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-28.664511,153.393562,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.45451,150.656788,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-28.541643,153.019226,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.392767,150.63924,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-31.435983,152.897962,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-28.9288,153.451085,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-28.977706,153.406132,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,5,Australia,AU,New South Wales,-33.713287,150.784754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.433709,150.617056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.438645,150.603912,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.470055,150.512851,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070P,1,,occurrenceRemarks withheld,2020,12,28,Australia,AU,New South Wales,-34.754683,146.56544,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040431,1,,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-30.502198,151.647491,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130A,1,,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-32.662006,151.665507,EPSG:4326 +HUMAN_OBSERVATION,OKEM23021600,1,,occurrenceRemarks withheld,2023,2,4,Australia,AU,New South Wales,-34.038934,151.03695,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-28.393472,153.561649,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-28.955515,153.411978,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,5,17,Australia,AU,New South Wales,-33.778308,150.100826,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100U,1,FEMALE,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-28.639399,153.62919,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-31.634038,152.78536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.42387,150.63731,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,20,Australia,AU,New South Wales,-31.456387,152.921277,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.409901,150.597336,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.399879,150.617341,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101J,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-34.119816,150.812014,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,6,17,Australia,AU,New South Wales,-29.489671,153.104766,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.81046,152.824621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.429645,150.614853,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.068105,150.807228,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.430495,150.610379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.43071,150.611668,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-29.488354,153.110892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.436905,150.619141,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22081800,1,FEMALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-28.273234,153.393266,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-28.650733,153.462981,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-30.630821,152.534078,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.418035,150.599757,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.459754,150.518772,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,7,Australia,AU,New South Wales,-34.068368,150.913678,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-30.05116,152.244418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.463698,150.523837,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,11,12,Australia,AU,New South Wales,-34.082098,150.997768,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,9,9,Australia,AU,New South Wales,-31.458122,152.911609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.420975,150.627959,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.064683,152.665416,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181T,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-28.735249,153.591395,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.444523,150.518559,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.444108,152.89832,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,11,Australia,AU,New South Wales,-29.490138,153.101102,EPSG:4326 +HUMAN_OBSERVATION,OKAJ09082800,1,,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-33.463326,150.702658,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-31.468327,152.920854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.450025,150.516481,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.902372,152.777767,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181Y,1,,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-28.559994,153.16206,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-33.782309,150.04043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.422108,150.607942,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-31.249503,152.827291,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-31.436169,152.877095,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-31.638567,152.789482,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.399764,150.62486,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210P;ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-32.71973,152.06845,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.39811,150.645126,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010702,1,FEMALE,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-29.49284,153.093625,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2024,1,8,Australia,AU,New South Wales,-31.45489,152.927125,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-31.13163,150.00003,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-29.488475,153.103623,EPSG:4326 +HUMAN_OBSERVATION,OVGI98110201,1,FEMALE,occurrenceRemarks withheld,2021,1,30,Australia,AU,New South Wales,-30.477694,151.739718,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.384481,150.622454,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-31.347215,152.722139,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-28.833178,153.343546,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.421734,150.600783,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-32.851787,151.816625,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-31.626749,152.220622,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-29.677004,152.824001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.459363,150.525238,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221F,1,,occurrenceRemarks withheld,2021,2,21,Australia,AU,New South Wales,-32.730759,152.083495,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.447167,150.51958,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OPUR15021900,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-30.044041,151.882004,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100G,1,,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-32.66045,151.660813,EPSG:4326 +HUMAN_OBSERVATION,ODFK24030503,1,,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-32.729118,152.008903,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-28.397239,153.557739,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.192157,152.028806,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.187852,150.78847,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-30.419039,152.978134,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003970,1,,occurrenceRemarks withheld,2023,6,17,Australia,AU,New South Wales,-28.888808,153.2288,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,ODFK23120708,1,MALE,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-29.539978,152.985282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.400268,150.639692,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-31.451415,152.907744,EPSG:4326 +HUMAN_OBSERVATION,ODMP1003011L,1,MALE,occurrenceRemarks withheld,2023,1,25,Australia,AU,New South Wales,-32.446719,152.513623,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2020,5,17,Australia,AU,New South Wales,-34.108102,150.818648,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-34.029501,150.98722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.42094,150.628025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.465407,150.52322,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-29.490292,153.110238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.38939,150.629623,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.399781,150.624805,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2024,4,22,Australia,AU,New South Wales,-34.491512,150.471305,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.949626,153.316981,EPSG:4326 +HUMAN_OBSERVATION,OAQE22092106,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-33.958243,150.953773,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-32.722949,152.152509,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.469438,150.526845,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.435832,150.618649,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-31.424874,152.145408,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,4,21,Australia,AU,New South Wales,-28.264271,153.337649,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083002,1,,occurrenceRemarks withheld,2024,4,13,Australia,AU,New South Wales,-34.069441,150.834904,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-32.722459,152.077211,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-33.705817,150.786509,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-31.629385,152.786709,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.421911,150.607556,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-31.451413,152.913143,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004238,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.855565,153.323402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.422319,150.607653,EPSG:4326 +HUMAN_OBSERVATION,ODFK23120703,1,,occurrenceRemarks withheld,2023,8,21,Australia,AU,New South Wales,-29.487764,153.111009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.422319,150.607653,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-28.640965,153.446727,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2023,8,28,Australia,AU,New South Wales,-33.11816,151.234064,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,12,Australia,AU,New South Wales,-28.396851,153.557526,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-29.488233,153.092149,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-29.478515,153.104155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.491585,150.63919,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,25,Australia,AU,New South Wales,-28.690489,153.517391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.455391,150.607809,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-28.529721,152.761003,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060D,1,,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-31.475247,152.897372,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,FEMALE,occurrenceRemarks withheld,2020,11,21,Australia,AU,New South Wales,-34.098133,150.80827,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,6,5,Australia,AU,New South Wales,-28.685102,153.301293,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-28.812352,153.271325,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-33.772436,150.085772,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.429897,150.61069,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,9,10,Australia,AU,New South Wales,-34.185044,150.790731,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.395088,150.630093,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,3,7,Australia,AU,New South Wales,-33.713445,150.785593,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-29.480061,153.104106,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-32.70619,152.063436,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.418435,150.63322,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2021,1,31,Australia,AU,New South Wales,-34.063743,150.837567,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,4,22,Australia,AU,New South Wales,-33.707875,150.787079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.4394,150.603803,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.453979,150.520293,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-29.488335,153.110012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.38648,150.625583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.434472,150.616435,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,28,Australia,AU,New South Wales,-30.390621,152.943779,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090405,1,,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-34.063862,150.838652,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.053453,150.838698,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.468171,152.916487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.420642,150.630786,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2024,6,13,Australia,AU,New South Wales,-31.428835,152.883338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.446834,150.520036,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-28.398753,153.555983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.385828,150.627255,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,7,Australia,AU,New South Wales,-33.707015,150.787334,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300F,1,,occurrenceRemarks withheld,2023,5,10,Australia,AU,New South Wales,-32.727574,152.008499,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.061874,150.862399,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,23,Australia,AU,New South Wales,-31.629384,152.786869,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-31.902418,152.396884,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110O,1,,occurrenceRemarks withheld,2023,7,8,Australia,AU,New South Wales,-32.99363,151.01938,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-33.706012,150.786194,EPSG:4326 +HUMAN_OBSERVATION,OESM20102100,1,,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-33.188733,151.242113,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-30.44822,153.04155,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-36.115541,150.060932,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,29,Australia,AU,New South Wales,-33.714824,150.78508,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.396842,150.642029,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.393726,150.641268,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-31.474363,152.867775,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.44719,150.513137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.445321,150.517872,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.439136,150.619807,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,12,11,Australia,AU,New South Wales,-34.067124,150.845877,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,8,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102228,1,,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-32.735823,152.083764,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.45532,150.606984,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,2,16,Australia,AU,New South Wales,-31.45476,152.926786,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-28.819703,153.277427,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250J,2,FEMALE,occurrenceRemarks withheld,2024,9,28,Australia,AU,New South Wales,-34.761723,146.561789,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-32.35728,151.99786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.463197,150.524047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.437666,150.616084,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040428,1,,occurrenceRemarks withheld,2023,6,11,Australia,AU,New South Wales,-28.76248,153.070915,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.633581,149.921178,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-29.48141,153.099171,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-28.843672,153.43466,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-36.012983,149.3644,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-36.153888,149.35095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.429315,150.606746,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,ODFK23121103,1,MALE,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-29.737213,152.881402,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-32.686232,151.655618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.427598,150.594588,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-32.722675,152.07558,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240E,1,,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-32.709609,152.062476,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,2,14,Australia,AU,New South Wales,-28.598997,153.429595,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-34.091267,150.985347,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-29.47873,153.104149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.436472,150.615878,EPSG:4326 +HUMAN_OBSERVATION,OJMM08020900,1,FEMALE,occurrenceRemarks withheld,2023,11,20,Australia,AU,New South Wales,-33.977147,150.987632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.420681,150.627217,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.869015,153.335481,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-28.955072,153.412284,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.436114,150.616041,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-33.705819,150.786208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.446088,150.513017,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-29.48035,153.104122,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.437893,150.605566,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150F,1,,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-28.665385,153.526125,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.394694,150.640501,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-36.556943,149.960571,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-31.962169,152.385545,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.393434,150.631282,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-33.706031,150.786018,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-28.385899,153.561624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.437339,150.604885,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.392224,150.644758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.434262,150.617203,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,5,1,Australia,AU,New South Wales,-31.480987,152.920078,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,3,9,Australia,AU,New South Wales,-36.576974,149.950453,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,FEMALE,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-36.146025,149.373649,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300J,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-32.737252,152.056846,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004090,1,FEMALE,occurrenceRemarks withheld,2023,8,29,Australia,AU,New South Wales,-28.821787,153.306761,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,6,6,Australia,AU,New South Wales,-28.556876,153.466658,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-34.004553,150.863276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.450014,150.516373,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.446563,150.514222,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.486566,150.635586,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-34.052162,150.841742,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.421288,150.627352,EPSG:4326 +HUMAN_OBSERVATION,ODFK24012506,1,MALE,occurrenceRemarks withheld,2024,1,24,Australia,AU,New South Wales,-33.575771,150.627317,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-33.419281,149.577506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.425942,150.595647,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-36.547428,150.01112,EPSG:4326 +HUMAN_OBSERVATION,OJJS17072600,1,,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-30.537649,152.645569,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.735288,152.041279,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,3,18,Australia,AU,New South Wales,-34.050248,150.851949,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-31.464279,152.926358,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.458557,150.655826,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0005721,1,,occurrenceRemarks withheld,2024,10,9,Australia,AU,New South Wales,-34.048056,150.854722,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150H,1,,occurrenceRemarks withheld,2024,7,15,Australia,AU,New South Wales,-31.644542,152.575285,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.39433,150.642197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.418426,150.633677,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-28.84663,153.302384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.488048,150.635326,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.448769,150.515887,EPSG:4326 +HUMAN_OBSERVATION,OJJS10032403,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-29.038269,153.327054,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,1,16,Australia,AU,New South Wales,-28.695152,153.434299,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,2,12,Australia,AU,New South Wales,-28.959916,153.395355,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OCAM10092000,1,,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-34.133848,150.79094,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.618562,149.923643,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100H,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-34.100662,150.973293,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.399167,153.555833,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.421794,150.636302,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.388513,150.630909,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.389522,150.627151,EPSG:4326 +HUMAN_OBSERVATION,OJBL99022300,1,MALE,occurrenceRemarks withheld,2024,3,13,Australia,AU,New South Wales,-31.97075,151.781386,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.491687,150.638882,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041R,1,MALE,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-33.699723,149.543438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.437699,150.603515,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,9,22,Australia,AU,New South Wales,-29.679487,152.875485,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OIXR15091803;OPJG22072804,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-31.069662,150.125195,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.260427,153.401891,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-31.442271,152.898825,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.430718,150.611646,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,5,Australia,AU,New South Wales,-29.490175,153.109776,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.430137,150.607724,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,2,Australia,AU,New South Wales,-29.490469,153.108162,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.44632,150.513794,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.429704,150.614177,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,,occurrenceRemarks withheld,2022,9,17,Australia,AU,New South Wales,-34.018527,150.883987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.388235,150.630982,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.388163,150.631941,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-34.113996,150.937207,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-32.738553,152.092139,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.418238,152.216158,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-34.085656,150.815095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.466332,150.524368,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-32.219628,152.19096,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004199,1,FEMALE,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-28.469247,153.042776,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.490653,150.638552,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.465699,150.521633,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.395077,150.629104,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,1,13,Australia,AU,New South Wales,-29.488265,153.110104,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.65131,152.818278,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308241D,1,,occurrenceRemarks withheld,2023,2,18,Australia,AU,New South Wales,-32.367276,149.698554,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.418221,150.601852,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.618562,149.923643,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.438158,150.616363,EPSG:4326 +HUMAN_OBSERVATION,ODFK23121102,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-29.730159,152.968749,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.469577,150.52658,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-30.41381,153.013297,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-31.458122,152.911609,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,MALE,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-29.631732,152.899894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.493187,150.639068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.45352,150.608504,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.450913,150.522908,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,25,Australia,AU,New South Wales,-29.489746,153.105158,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.344458,152.605549,EPSG:4326 +HUMAN_OBSERVATION,OPJG20112703,1,,occurrenceRemarks withheld,2022,8,22,Australia,AU,New South Wales,-30.297238,153.0406,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-31.932612,152.413051,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.420964,150.630168,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-28.222185,153.537072,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.465641,150.528079,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,6,7,Australia,AU,New South Wales,-31.457051,152.879205,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.487001,150.635236,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-29.838245,150.577042,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-32.448613,151.985894,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,4,Australia,AU,New South Wales,-29.490208,153.109766,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152A,1,,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-28.939602,153.316343,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.386242,150.62584,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.389084,150.631045,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-34.495511,150.525117,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-28.821387,153.282851,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-29.49003,153.101209,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.884771,152.795899,EPSG:4326 +HUMAN_OBSERVATION,OJJS17052901,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-32.150536,152.199985,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,6,6,Australia,AU,New South Wales,-28.558093,153.428133,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2024,4,9,Australia,AU,New South Wales,-33.527192,150.659123,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-29.476913,153.10453,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,3,26,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-28.371061,153.559692,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.437254,150.605617,EPSG:4326 +HUMAN_OBSERVATION,OKAJ09082800,1,MALE,occurrenceRemarks withheld,2022,2,21,Australia,AU,New South Wales,-33.456402,150.718739,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100607,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-31.472406,152.926635,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.798531,152.8124,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-29.482886,153.104391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.420644,150.627185,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.436605,150.603328,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-36.006435,149.36557,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-31.439272,152.904753,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202,1,,occurrenceRemarks withheld,2023,2,9,Australia,AU,New South Wales,-30.438,151.623,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,13,Australia,AU,New South Wales,-29.490199,153.109739,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.454487,150.605865,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.42,150.602475,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-28.868027,153.336688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.388972,150.623914,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-28.63729,153.63115,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100V,1,,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-31.451214,152.907637,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.418298,150.632647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.418999,150.609379,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-28.65505,153.59019,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.452598,150.52509,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,6,7,Australia,AU,New South Wales,-31.479235,152.872983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.39871,150.621159,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-29.490857,153.109219,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.387552,150.631121,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150C,1,,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-31.48029,152.921692,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,3,Australia,AU,New South Wales,-29.4901,153.101129,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.449267,150.522173,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,8,25,Australia,AU,New South Wales,-32.7228,152.077448,EPSG:4326 +HUMAN_OBSERVATION,OJJT03070100,1,,occurrenceRemarks withheld,2022,1,12,Australia,AU,New South Wales,-30.634036,151.487783,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.49407,150.640426,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,17,Australia,AU,New South Wales,-36.092276,149.293747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.41672,150.599338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.447269,150.514386,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-30.874477,152.894741,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.433144,150.613971,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-28.821749,153.331243,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.449987,150.516384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.452035,150.517336,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.436605,150.61533,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031516,1,,occurrenceRemarks withheld,2022,9,5,Australia,AU,New South Wales,-28.66656,153.283976,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.465887,150.522433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.45232,150.522932,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101N,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.475011,152.93665,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2023,5,21,Australia,AU,New South Wales,-29.036861,152.986212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.465752,150.521577,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,2,28,Australia,AU,New South Wales,-28.860113,153.342777,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.439415,150.515598,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-28.659613,153.605778,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,FEMALE,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-34.060713,150.839981,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140J,1,MALE,occurrenceRemarks withheld,2022,1,2,Australia,AU,New South Wales,-31.457984,152.927276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.394517,150.642551,EPSG:4326 +HUMAN_OBSERVATION,OJJS19022501,1,MALE,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-32.586078,151.93134,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-35.954515,149.187264,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.422169,150.604143,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,18,Australia,AU,New South Wales,-29.496754,153.107722,EPSG:4326 +HUMAN_OBSERVATION,OJJS1912230F,1,MALE,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-29.490478,153.108243,EPSG:4326 +HUMAN_OBSERVATION,OESM20102100,1,,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-33.16171,151.232474,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,5,Australia,AU,New South Wales,-29.490133,153.110522,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-28.821788,153.341595,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.429625,150.614288,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-31.459635,152.929157,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012900,1,,occurrenceRemarks withheld,2024,3,31,Australia,AU,New South Wales,-32.302205,152.337832,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.395395,150.643222,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.465786,150.522349,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-29.009814,153.272094,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260E,1,,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-32.737555,152.041056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.436291,150.603413,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-29.484959,153.103849,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,5,Australia,AU,New South Wales,-31.452736,152.92633,EPSG:4326 +HUMAN_OBSERVATION,OCHV19051300,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-29.692025,152.866285,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,15,Australia,AU,New South Wales,-29.047472,153.396648,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-31.459599,152.928526,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.45316,150.517237,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-31.492034,152.876398,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.492829,150.639176,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-29.662288,152.878677,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.446346,150.51733,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-33.719426,150.782955,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-33.527099,150.65973,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.472802,150.530926,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.452063,150.517378,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-33.705932,150.786196,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.562421,149.989087,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2022,7,13,Australia,AU,New South Wales,-32.739618,152.02018,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-32.699661,152.065232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.435989,150.615642,EPSG:4326 +HUMAN_OBSERVATION,OLHP24013006,1,,occurrenceRemarks withheld,2023,12,20,Australia,AU,New South Wales,-28.752435,153.196837,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.447461,150.525589,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.392824,150.644045,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251I,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-32.640912,151.982103,EPSG:4326 +HUMAN_OBSERVATION,ODMP06091900,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-31.450595,152.916607,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-29.480364,153.104294,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,4,27,Australia,AU,New South Wales,-32.630412,151.712468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419027,150.609433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.448843,150.518203,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.420638,150.609278,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,13,Australia,AU,New South Wales,-33.714173,150.784546,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220O,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-32.736858,152.105345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.395089,150.642774,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-29.490334,153.108038,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-28.813376,153.311308,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,5,Australia,AU,New South Wales,-31.48872,152.908683,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-34.09809,150.808277,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,1,17,Australia,AU,New South Wales,-28.269299,153.393393,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-29.490483,153.109455,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-34.320115,150.725006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.491951,150.639953,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.437157,150.517624,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-28.814806,153.328329,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-33.503703,150.702147,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-33.443406,150.721715,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-31.31995,152.187922,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,6,24,Australia,AU,New South Wales,-32.61446,149.57333,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-29.490553,153.108135,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-31.485298,152.916202,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-33.705897,150.786363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.437904,150.604314,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-34.214698,150.79001,EPSG:4326 +HUMAN_OBSERVATION,BROOS-HO,1,MALE,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-32.614457,149.573329,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,5,26,Australia,AU,New South Wales,-32.706973,152.064111,EPSG:4326 +HUMAN_OBSERVATION,OPJB21030800,1,,occurrenceRemarks withheld,2021,2,18,Australia,AU,New South Wales,-31.018692,150.99245,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-32.725859,152.073009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.423853,150.637365,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-32.701926,151.697481,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,4,Australia,AU,New South Wales,-29.479276,153.104203,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.399202,150.639592,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.446511,150.514333,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.210305,152.961976,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090600,1,,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-33.584157,149.554367,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,20,Australia,AU,New South Wales,-29.485758,153.103736,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002776,1,,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-29.774361,152.940588,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004282,1,FEMALE,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-28.288414,153.394474,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.488674,150.637356,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.4658,150.522174,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,25,Australia,AU,New South Wales,-35.065818,150.125832,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.465183,150.521496,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.864597,153.293107,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-33.717272,150.784228,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-34.495994,150.532965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.471265,150.529371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.466595,150.52091,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.494127,150.640577,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-29.490721,153.109495,EPSG:4326 +HUMAN_OBSERVATION,OJJS19043000;ODMP22022701,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-33.96715,150.921108,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180T,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-28.823163,153.309373,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.393323,150.643291,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,7,22,Australia,AU,New South Wales,-32.699291,152.064609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.46577,150.521577,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-31.224917,152.630753,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022413,1,,occurrenceRemarks withheld,2021,11,25,Australia,AU,New South Wales,-32.641127,151.62858,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,8,Australia,AU,New South Wales,-33.709387,150.785482,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.373392,150.54359,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,25,Australia,AU,New South Wales,-29.490203,153.10998,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.447259,150.51431,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-29.01629,153.430681,EPSG:4326 +HUMAN_OBSERVATION,OMWG06090500,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-28.78178,152.079065,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,27,Australia,AU,New South Wales,-31.445453,152.917246,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200S,1,,occurrenceRemarks withheld,2024,4,28,Australia,AU,New South Wales,-31.447463,152.925776,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.388923,150.624144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.389176,150.628846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.447631,150.51801,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.816318,153.314144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.395392,150.643049,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,18,Australia,AU,New South Wales,-28.304856,153.37674,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.43572,150.616182,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-28.959119,153.39411,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032208,1,,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-33.685964,149.55755,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.385825,150.625243,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-29.643678,152.833242,EPSG:4326 +HUMAN_OBSERVATION,OMZS16021200,1,FEMALE,occurrenceRemarks withheld,2020,7,2,Australia,AU,New South Wales,-34.547284,150.184494,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.392463,150.633756,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.45988,150.525408,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.389083,150.629131,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-31.485206,152.913985,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.447421,150.518756,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.420224,150.631092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.437446,150.518116,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-28.925911,153.262056,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,1,5,Australia,AU,New South Wales,-30.50456,152.92083,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-29.484446,153.103945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.464887,150.522463,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.42105,150.637454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.423859,150.637212,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022502,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-32.719642,152.124036,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.099086,150.977022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.38846,150.630987,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.633668,152.755027,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.465882,150.522618,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,,occurrenceRemarks withheld,2023,4,29,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,MALE,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-28.82149,153.299459,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-36.043897,149.360515,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-31.469132,152.919636,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,2,12,Australia,AU,New South Wales,-32.706714,152.063375,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.438954,152.824764,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,11,Australia,AU,New South Wales,-29.490507,153.10939,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.431328,150.615143,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,7,23,Australia,AU,New South Wales,-31.29087,152.863624,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,7,12,Australia,AU,New South Wales,-31.462006,152.922191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.456416,150.608585,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.450987,150.515898,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102202,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-32.590109,151.775592,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.429592,150.614888,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.419051,150.610215,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.176289,152.909424,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,1,3,Australia,AU,New South Wales,-31.473898,152.899054,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-34.452275,150.526503,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.447427,150.519061,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.838189,153.39044,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.475996,150.533281,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.464217,150.523669,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-32.709494,152.064351,EPSG:4326 +HUMAN_OBSERVATION,OIXR16051100,1,,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-29.441584,149.870381,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,7,21,Australia,AU,New South Wales,-33.58539,150.656179,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-32.711481,152.07275,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,MALE,occurrenceRemarks withheld,2024,3,31,Australia,AU,New South Wales,-34.100438,150.973564,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,3,31,Australia,AU,New South Wales,-29.490199,153.108038,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-29.490217,153.10976,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-34.443757,150.514577,EPSG:4326 +HUMAN_OBSERVATION,ORSF21090200,1,,occurrenceRemarks withheld,2022,1,5,Australia,AU,New South Wales,-32.534167,149.866667,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100J,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-31.44269,152.888094,EPSG:4326 +HUMAN_OBSERVATION,OJJS19022501;ODMP21050503,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-32.714185,151.780333,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.45629,152.881577,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-32.71098,152.065267,EPSG:4326 +HUMAN_OBSERVATION,OJJS19022501;ODMP21050503,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-32.714185,151.780333,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-28.368921,153.559028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.447641,150.518021,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.14318,150.79337,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-33.714047,150.785215,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,5,28,Australia,AU,New South Wales,-31.458976,152.879352,EPSG:4326 +HUMAN_OBSERVATION,ODMP21070805,1,,occurrenceRemarks withheld,2022,11,14,Australia,AU,New South Wales,-33.954203,150.929224,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-32.272637,152.243859,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,8,Australia,AU,New South Wales,-29.490236,153.10814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.427189,150.604065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.465822,150.522337,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021807,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-29.033489,150.325379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.494314,150.640441,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.453718,150.51808,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.430871,150.615787,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152V,1,FEMALE,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-28.857815,153.276239,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-34.275951,150.694931,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.298398,149.320726,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.465716,150.521589,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-33.767296,150.059868,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-29.489559,153.103956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.437866,150.604217,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-28.896153,152.537961,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,FEMALE,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-29.667098,152.868404,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,21,Australia,AU,New South Wales,-33.714128,150.785281,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,2,Australia,AU,New South Wales,-28.867701,153.289698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.448094,150.601226,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,8,3,Australia,AU,New South Wales,-31.475427,152.89731,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-28.631915,153.489942,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.423806,150.637301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.453271,150.516918,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-31.469731,152.923312,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.456586,150.519486,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-34.443234,150.522403,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,2,FEMALE,occurrenceRemarks withheld,2024,9,16,Australia,AU,New South Wales,-34.762424,146.562342,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.457906,150.531234,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,2,13,Australia,AU,New South Wales,-31.641108,152.793177,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.884771,152.795899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419053,150.610302,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-28.586714,153.555424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.418297,150.632604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.415375,150.640029,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.437294,150.518153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.436197,150.616147,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,4,15,Australia,AU,New South Wales,-34.043038,150.998479,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,9,1,Australia,AU,New South Wales,-28.706206,153.497818,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.463298,150.519712,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.392667,150.639177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.449151,150.516017,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.484944,150.340865,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-31.465465,152.904744,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,9,Australia,AU,New South Wales,-29.485674,153.103457,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,12,16,Australia,AU,New South Wales,-33.418413,150.905313,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,21,Australia,AU,New South Wales,-31.91601,152.38461,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.444242,150.517131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.437525,150.605663,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-33.527164,150.659575,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.428081,150.600797,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.420463,150.635502,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.459466,150.521894,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-28.661841,153.604159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.466782,150.520796,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-28.242245,153.494377,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060O,1,,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-31.471952,152.906016,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031101,1,,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-32.74494,152.17001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.435946,150.616209,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-223,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-30.911317,152.88165,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,10,12,Australia,AU,New South Wales,-31.446776,152.922224,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050Y,1,,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-31.440799,152.909125,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-29.488508,153.103581,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160J,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-32.727832,152.105628,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-31.639046,152.790379,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,26,Australia,AU,New South Wales,-29.485767,153.103682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-34.396506,150.640962,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.448138,150.518539,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.412697,150.596951,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-34.027919,150.989472,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.464561,150.521961,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-33.719373,150.783692,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011200,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.941779,152.181044,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,6,12,Australia,AU,New South Wales,-29.485669,153.103661,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.421727,150.638872,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,8,Australia,AU,New South Wales,-31.452377,152.926041,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.417631,150.603076,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.422548,150.604176,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.457841,150.531138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.458149,150.524947,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.535992,150.559732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.450894,150.523301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.446648,150.514405,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.395112,150.629048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.454346,150.60835,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.457278,150.526486,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,11,26,Australia,AU,New South Wales,-30.286806,153.10164,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.386193,150.624265,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070708,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-34.0615,151.0003,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,3,25,Australia,AU,New South Wales,-29.848616,150.882544,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,20,Australia,AU,New South Wales,-29.491543,153.099788,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.43871,150.606794,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-31.460474,152.914058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.453508,150.608809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.493098,150.639125,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-31.472325,152.904141,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-28.826448,153.221268,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-31.4354,152.8978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.447517,150.521267,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070B,1,,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-32.764338,152.035846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,29,Australia,AU,New South Wales,-34.440843,150.616298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.445904,150.514187,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,30,Australia,AU,New South Wales,-28.831104,153.279592,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-29.48558,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.846843,153.314609,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-34.198962,150.789513,EPSG:4326 +HUMAN_OBSERVATION,OGEM18052300,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.139484,150.796374,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080307,1,,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-28.960528,153.402257,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.432875,150.615447,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210O,1,,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-32.740062,152.093659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.448985,150.516294,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,1,12,Australia,AU,New South Wales,-30.634036,151.487783,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-33.717325,150.784218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.446319,150.513751,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900;OPUR19080900;OMRF21071000,1,,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.087943,150.975975,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051402,1,,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-30.190688,152.772842,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,11,28,Australia,AU,New South Wales,-32.705663,152.063591,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.398308,150.640443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.388174,150.625035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.465752,150.521566,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,4,8,Australia,AU,New South Wales,-29.729156,151.084889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.474642,150.531841,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.435356,150.5213,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-28.693276,153.495634,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181V,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-28.818456,153.298638,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-31.447595,152.905709,EPSG:4326 +HUMAN_OBSERVATION,OJJS1208150Z,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-32.7347,152.102475,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-33.473775,150.796982,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.513032,150.001052,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.451564,150.517241,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,5,Australia,AU,New South Wales,-29.490217,153.109787,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-33.769726,150.058209,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,,occurrenceRemarks withheld,2022,6,11,Australia,AU,New South Wales,-31.436777,152.905405,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-31.435353,152.877935,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-30.331099,153.097636,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.44633,150.513837,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-30.437334,152.98111,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,5,29,Australia,AU,New South Wales,-31.4587,152.9254,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-30.423644,152.981428,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,12,25,Australia,AU,New South Wales,-32.722972,152.140155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.452529,150.5199,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090405,1,MALE,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-34.06522,150.836937,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.394128,150.642497,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.830775,153.283377,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,6,6,Australia,AU,New South Wales,-33.775781,150.063356,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.451038,150.515308,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-33.714893,150.507113,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.399595,150.639385,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.418208,150.597533,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-31.468482,152.915729,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.452456,150.523875,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-34.199948,150.790392,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.45187,150.609879,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-34.20323,150.80038,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.886464,153.300206,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130B,1,,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-30.885675,153.071583,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-28.370334,153.555196,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,30,Australia,AU,New South Wales,-29.478599,153.104026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.436956,150.603286,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.434975,150.608946,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-31.459851,152.925098,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-34.041246,150.985961,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-29.667257,152.867932,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,6,4,Australia,AU,New South Wales,-28.994054,153.407575,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.447985,150.516346,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.16363,150.81808,EPSG:4326 +HUMAN_OBSERVATION,Obs_0331,1,,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-30.921114,153.085007,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.447831,150.519865,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,6,19,Australia,AU,New South Wales,-28.786726,153.382965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.392884,150.632678,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-28.623888,153.002375,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040705,1,,occurrenceRemarks withheld,2020,12,23,Australia,AU,New South Wales,-32.709238,152.061869,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-33.714865,150.785843,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.827015,153.209446,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,5,Australia,AU,New South Wales,-28.255627,153.378654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.412901,150.597718,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-32.018393,151.961159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.38931,150.628766,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.465689,150.521579,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.449013,150.609939,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-31.443494,152.898357,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.45666,150.51956,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,10,Australia,AU,New South Wales,-28.521893,153.093209,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-29.486323,153.103441,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-34.533564,150.600987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.447449,150.514348,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.142931,150.794198,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.416333,150.600752,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,MALE,occurrenceRemarks withheld,2023,1,27,Australia,AU,New South Wales,-28.824508,153.218619,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435768,150.616301,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041C,1,,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-29.775256,151.097197,EPSG:4326 +HUMAN_OBSERVATION,OLHP24020800,1,,occurrenceRemarks withheld,2023,12,16,Australia,AU,New South Wales,-35.603929,149.3282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.452008,150.517337,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-31.452727,152.925875,EPSG:4326 +HUMAN_OBSERVATION,ODXB20122200,1,MALE,occurrenceRemarks withheld,2020,12,21,Australia,AU,New South Wales,-33.100985,151.222243,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.458849,150.525264,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011200,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.953191,152.187121,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.748244,146.54612,EPSG:4326 +HUMAN_OBSERVATION,OJJS20061602,1,,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-31.485275,151.681274,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2020,7,13,Australia,AU,New South Wales,-31.173335,152.816316,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OJJS12081504,1,FEMALE,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-32.738597,151.884006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.428623,150.601794,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.392473,150.633821,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102203,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-32.724016,152.104342,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-29.48714,153.090523,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.491647,150.639144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.459435,150.534607,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.469425,150.527074,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-31.470543,152.868652,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-33.775037,150.061665,EPSG:4326 +HUMAN_OBSERVATION,OPUR20021302,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-32.7317,152.037483,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,1,11,Australia,AU,New South Wales,-30.051129,152.244754,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,7,15,Australia,AU,New South Wales,-28.993607,153.306745,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-33.527165,150.659541,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-28.82292,153.31725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.389379,150.623522,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,8,Australia,AU,New South Wales,-29.48558,153.103811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.445853,150.517421,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-28.958945,153.394104,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-34.395956,150.643283,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.419175,150.603641,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.385838,150.625014,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-34.10476,150.81368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.437613,150.603713,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.475958,150.533174,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343;OPJG22022100,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-30.182983,152.591467,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021803,1,,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-29.361515,150.11279,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-29.74125,151.061196,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-29.485506,153.103811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.453569,150.51827,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-34.141271,150.82369,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,6,5,Australia,AU,New South Wales,-28.67703,153.39448,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405270A,1,,occurrenceRemarks withheld,2024,4,23,Australia,AU,New South Wales,-32.570557,151.78254,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-28.459546,153.041112,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,15,Australia,AU,New South Wales,-31.699914,152.727941,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.42268,150.608121,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-28.629026,153.450062,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,MALE,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.4577,152.9298,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-31.642098,152.793198,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,2,25,Australia,AU,New South Wales,-28.68361,153.5218,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.884771,152.795899,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-31.9144,152.373764,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-28.824938,153.281559,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.386561,150.627408,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003909,1,,occurrenceRemarks withheld,2023,3,11,Australia,AU,New South Wales,-28.821248,153.319528,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.837629,153.339956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.420404,150.630162,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.477413,150.532489,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,5,13,Australia,AU,New South Wales,-29.489601,153.103897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.466476,150.52124,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-31.442402,152.901735,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-28.65505,153.59019,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.467419,150.523738,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,4,23,Australia,AU,New South Wales,-33.7085,150.787056,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,5,18,Australia,AU,New South Wales,-32.706541,152.06419,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.420152,150.634368,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.922322,152.370974,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.433874,150.614896,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081113,1,,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-30.462251,152.9023,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2021,,,Australia,AU,New South Wales,-34.455,150.527581,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210G,1,,occurrenceRemarks withheld,2022,1,15,Australia,AU,New South Wales,-28.268766,153.393195,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007130E,1,,occurrenceRemarks withheld,2024,5,14,Australia,AU,New South Wales,-32.144524,152.38002,EPSG:4326 +HUMAN_OBSERVATION,OPUR23110802,1,MALE,occurrenceRemarks withheld,2023,3,25,Australia,AU,New South Wales,-34.099773,150.809738,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,24,Australia,AU,New South Wales,-33.714683,150.785577,EPSG:4326 +HUMAN_OBSERVATION,OCAM22021600,1,,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-34.55577,150.645422,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,3,Australia,AU,New South Wales,-36.447388,149.971776,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-28.871112,153.40521,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-31.842287,152.10572,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.423127,150.636199,EPSG:4326 +HUMAN_OBSERVATION,OPJG20060401,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-34.29327,150.70578,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260M,1,,occurrenceRemarks withheld,2020,6,14,Australia,AU,New South Wales,-32.73081,152.039847,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,6,Australia,AU,New South Wales,-29.485162,153.103834,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-28.660596,153.59293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.452583,150.519877,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.439369,150.51733,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-31.473979,152.899098,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.396347,150.644436,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,2,17,Australia,AU,New South Wales,-34.11434,150.940548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.419124,150.610213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.422991,150.63851,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.467024,150.522476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.465726,150.521611,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121501,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-31.153342,152.812239,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,14,Australia,AU,New South Wales,-29.479967,153.104096,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-31.927499,152.404017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.391569,150.644918,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,11,Australia,AU,New South Wales,-35.07081,150.035213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.4592,150.521227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.464218,150.523702,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-34.450364,150.607571,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-29.48791,153.091822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.488119,150.635259,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180O,1,FEMALE,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-28.845128,153.320399,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.821668,153.3033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.464606,150.521959,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.438883,150.60458,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.427015,150.603918,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-30.504111,152.922343,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-29.48983,153.110544,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-36.547428,150.01112,EPSG:4326 +HUMAN_OBSERVATION,OJJS12110500,1,,occurrenceRemarks withheld,2020,3,26,Australia,AU,New South Wales,-31.626872,151.14366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.437747,150.6073,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.497148,149.957744,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-31.125927,152.797476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.450929,150.523256,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.459107,150.521502,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-31.467856,152.915821,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.459194,150.521358,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,4,10,Australia,AU,New South Wales,-29.490409,153.10799,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003832,1,,occurrenceRemarks withheld,2023,2,27,Australia,AU,New South Wales,-28.889949,153.185239,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.465491,150.525601,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092100,1,,occurrenceRemarks withheld,2023,4,9,Australia,AU,New South Wales,-29.593951,152.904641,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060502,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-30.326976,153.085624,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,7,Australia,AU,New South Wales,-33.716966,150.78524,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003815,1,,occurrenceRemarks withheld,2023,1,1,Australia,AU,New South Wales,-28.66387,153.395707,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130Q,1,FEMALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-31.632675,152.769597,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.464531,150.522234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.43604,150.61638,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150U,1,MALE,occurrenceRemarks withheld,2022,7,4,Australia,AU,New South Wales,-28.694361,153.494983,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-28.83385,153.352906,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.251271,153.502222,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.411873,150.599074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.47851,150.5341,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.46939,150.527163,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.836062,153.287996,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-32.226267,152.189573,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-29.484628,153.095899,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2024,2,6,Australia,AU,New South Wales,-31.425739,152.226194,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-36.531199,149.975174,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,23,Australia,AU,New South Wales,-29.485562,153.103747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.400897,150.620042,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.805797,153.342482,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.618562,149.923643,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211A,1,,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-32.70562,152.064253,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.423788,150.637301,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.834226,153.364275,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.68121,153.60155,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100B,1,,occurrenceRemarks withheld,2023,7,6,Australia,AU,New South Wales,-30.521733,152.904013,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.446981,150.513949,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-28.959171,153.39391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.46747,150.522724,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.463344,150.534895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.439361,150.517406,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-33.711497,150.786088,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021804,1,,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-29.033804,150.325643,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.459716,150.516466,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801101C;ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-32.713792,152.15428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.423773,150.637454,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-31.636396,152.787573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.430369,150.609937,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.447349,150.51298,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011002,1,,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-30.867598,152.911808,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,10,Australia,AU,New South Wales,-31.43633,152.896282,EPSG:4326 +HUMAN_OBSERVATION,OPXE00110600,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-30.361726,153.057026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-34.440979,150.616316,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.840576,153.320914,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.44649,150.519948,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.423761,150.637269,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,12,27,Australia,AU,New South Wales,-32.738085,152.111973,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.429371,150.616504,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181Q,1,,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-28.386819,153.565628,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-31.470841,152.919592,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-31.424601,152.881873,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,8,23,Australia,AU,New South Wales,-28.635669,153.592409,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.386304,150.627655,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-29.485566,153.103822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-34.439791,150.617329,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-29.489778,153.105243,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.437526,150.603846,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.446154,150.517608,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-33.72181,151.21098,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-31.447089,152.912536,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.454602,152.848395,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,26,Australia,AU,New South Wales,-29.485478,153.103586,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,2,23,Australia,AU,New South Wales,-31.437899,152.892379,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-31.867495,152.199852,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-28.530684,152.973743,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-29.500844,153.100319,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003921,1,FEMALE,occurrenceRemarks withheld,2023,3,2,Australia,AU,New South Wales,-28.7646,153.250676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.42216,150.604154,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.489395,150.638762,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050S,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-30.886663,153.074168,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-31.447023,152.923338,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-28.555442,153.075746,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.44673,150.602451,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.435269,150.616598,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.447347,150.514232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.437049,150.603,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100400,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-31.937608,152.415784,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003928,1,,occurrenceRemarks withheld,2023,1,10,Australia,AU,New South Wales,-28.7244,153.330186,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110P,1,,occurrenceRemarks withheld,2023,7,26,Australia,AU,New South Wales,-31.10907,149.899712,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.447897,150.515086,EPSG:4326 +HUMAN_OBSERVATION,ODFK24051500,1,,occurrenceRemarks withheld,2024,3,3,Australia,AU,New South Wales,-29.543195,152.246273,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.398297,150.627294,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-29.486029,153.096703,EPSG:4326 +HUMAN_OBSERVATION,OPUR23110802,1,FEMALE,occurrenceRemarks withheld,2023,4,8,Australia,AU,New South Wales,-34.07024,150.835357,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100507,1,,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-36.16785,149.3513,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030F,1,,occurrenceRemarks withheld,2022,5,16,Australia,AU,New South Wales,-28.825142,153.300297,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041T,1,MALE,occurrenceRemarks withheld,2022,7,4,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2022,5,9,Australia,AU,New South Wales,-34.773121,146.595473,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100601,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-31.466264,152.929697,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,2,17,Australia,AU,New South Wales,-30.46122,152.89174,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,7,5,Australia,AU,New South Wales,-31.643901,152.750721,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-29.630855,152.899572,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.394189,150.644246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.451599,150.522507,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-29.019468,153.430461,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2020,1,30,Australia,AU,New South Wales,-34.073391,150.859648,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.427422,150.603536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.438335,150.604672,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-31.443524,152.896423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.389729,150.628069,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.450895,150.52292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.390074,150.630963,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.388909,150.623884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.448126,150.517049,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.420317,150.609451,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.915154,152.797565,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022410,1,,occurrenceRemarks withheld,2022,1,16,Australia,AU,New South Wales,-32.766325,152.118296,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.418248,150.63564,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-29.48552,153.103666,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220N,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-32.724707,152.073059,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102,1,,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-32.465951,151.897764,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-29.490278,153.108113,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-32.705503,152.06347,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.456596,150.519497,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.458204,150.661866,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-29.490497,153.109353,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062101,1,,occurrenceRemarks withheld,2023,3,7,Australia,AU,New South Wales,-34.744263,146.523293,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.885013,152.777302,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,25,Australia,AU,New South Wales,-28.814762,153.328401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.420886,150.628016,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-30.092113,153.180586,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.399436,150.616777,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003997,1,FEMALE,occurrenceRemarks withheld,2023,3,30,Australia,AU,New South Wales,-28.821349,153.301335,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.284056,152.865279,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-29.488844,153.101864,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,FEMALE,occurrenceRemarks withheld,2024,4,24,Australia,AU,New South Wales,-34.026903,150.990642,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-28.84707,153.180055,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2022,5,1,Australia,AU,New South Wales,-30.05116,152.244418,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004201,1,FEMALE,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-28.820654,153.318205,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-28.889779,153.296795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.445891,150.513121,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.390131,150.627384,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-28.5838,153.02234,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-880,1,,occurrenceRemarks withheld,2023,7,10,Australia,AU,New South Wales,-30.286669,152.8256,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.455684,150.657866,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-31.433556,152.915305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.438778,150.603353,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.559404,149.938213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.456371,150.658869,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-33.703609,150.787234,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-30.364789,153.018941,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-29.491723,153.097414,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.254577,153.49683,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.427521,150.603044,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-31.445399,152.925633,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310310C,1,MALE,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-30.881193,153.072122,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-32.724707,152.073059,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-30.41382,153.01322,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-28.57084,153.551948,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090503;OLHP23090504,1,,occurrenceRemarks withheld,2021,1,16,Australia,AU,New South Wales,-30.494052,152.94175,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.491304,150.639111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.389221,150.627909,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,1,19,Australia,AU,New South Wales,-30.51746,152.88542,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.392276,150.644626,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.391419,150.645998,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.864004,153.293999,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.500349,150.563856,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,12,19,Australia,AU,New South Wales,-31.442335,152.908357,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,7,2,Australia,AU,New South Wales,-30.391757,151.575024,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250T,1,,occurrenceRemarks withheld,2020,12,30,Australia,AU,New South Wales,-32.727617,152.036268,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,6,2,Australia,AU,New South Wales,-30.54727,151.609718,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-29.48559,153.103731,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072703;OLHP23072704,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.595366,152.190148,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011014,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-32.730537,152.039977,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.631952,152.755429,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,26,Australia,AU,New South Wales,-29.489629,153.104235,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.436984,150.519315,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290K,1,,occurrenceRemarks withheld,2022,7,2,Australia,AU,New South Wales,-32.70953,152.062129,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-29.505641,152.824856,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154V,1,,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-28.680814,153.485064,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2021,2,14,Australia,AU,New South Wales,-33.773407,150.084886,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-28.28575,153.56029,EPSG:4326 +HUMAN_OBSERVATION,ODMP21070805,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-33.95807,150.9286,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.435289,150.602887,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.432586,150.614977,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.452571,150.608858,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.65301,152.817524,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-31.576376,152.812605,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.388467,150.632237,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.418903,150.632696,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.432324,150.612155,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-31.139654,152.793681,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,12,3,Australia,AU,New South Wales,-30.17771,152.896953,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,10,Australia,AU,New South Wales,-34.440888,150.615796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.435074,150.606647,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.451564,150.51723,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-31.466512,152.796061,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-33.749167,150.076524,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-29.490297,153.109589,EPSG:4326 +HUMAN_OBSERVATION,OPJG23060600,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-30.752316,152.694304,EPSG:4326 +HUMAN_OBSERVATION,ODMP23033103,1,,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-32.734327,152.10253,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062904,1,,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.047414,151.014471,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,3,16,Australia,AU,New South Wales,-30.88453,153.07189,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-31.932205,152.41282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.449246,150.516265,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,2,14,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-28.862716,153.270156,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-31.479713,152.87378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.386742,150.625119,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.429461,150.616491,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-29.490124,153.110506,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-34.099271,150.809244,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-28.828705,153.322765,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.435365,150.603549,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,7,22,Australia,AU,New South Wales,-29.667382,152.867911,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,7,Australia,AU,New South Wales,-29.477039,153.104648,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,29,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,,occurrenceRemarks withheld,2023,3,21,Australia,AU,New South Wales,-28.958972,153.393892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.467464,150.523747,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,5,31,Australia,AU,New South Wales,-31.459185,152.928972,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.093742,150.837921,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-31.42923,152.881409,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-31.63418,152.762633,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.466443,150.52762,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-31.427386,152.881209,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.465762,150.520292,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,6,3,Australia,AU,New South Wales,-28.904938,153.299588,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-28.651872,153.387929,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,29,Australia,AU,New South Wales,-28.826043,153.323732,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-31.450523,152.922761,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.185265,153.004941,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-33.773481,150.104854,EPSG:4326 +HUMAN_OBSERVATION,OJJS1912230A,1,,occurrenceRemarks withheld,2020,4,17,Australia,AU,New South Wales,-29.49445,153.092672,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-31.629606,152.786397,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-31.454326,152.907216,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.386752,150.625163,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-31.631277,152.78519,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004237,1,FEMALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.931499,153.27253,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.453605,150.520054,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.4652,150.519232,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-33.713869,150.785086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.420957,150.627046,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-28.878209,153.244711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.387554,150.631197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.458667,150.532725,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290G,1,,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-31.422255,152.707442,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-31.423355,152.877735,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,2,22,Australia,AU,New South Wales,-28.471333,152.809615,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.451908,150.518199,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2023,3,24,Australia,AU,New South Wales,-31.930397,152.405625,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-29.488331,153.092347,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.836062,153.287996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.437931,150.604281,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-28.688354,153.515677,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-32.22562,152.24197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.448423,150.517475,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,17,Australia,AU,New South Wales,-29.490446,153.109401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.447567,150.517958,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.38938,150.623577,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,FEMALE,occurrenceRemarks withheld,2024,4,27,Australia,AU,New South Wales,-31.6386,152.7935,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,MALE,occurrenceRemarks withheld,2023,4,29,Australia,AU,New South Wales,-28.821485,153.299519,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060N,1,,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-31.4458,152.924975,EPSG:4326 +HUMAN_OBSERVATION,ODMP0311141U;OJKB21080309;OPJG22012500,1,,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-28.51027,153.53859,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.388154,150.62447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.43531,150.616423,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO,1,,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-30.417019,152.950438,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-29.483983,153.095325,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-29.478809,153.104165,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-32.747836,152.072182,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-31.123738,152.799788,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-34.121103,150.96868,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.869015,153.335481,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-30.125115,152.737543,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-29.484791,153.103961,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2021,2,6,Australia,AU,New South Wales,-29.514635,152.811316,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-29.490217,153.108113,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,5,23,Australia,AU,New South Wales,-29.088043,153.370716,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-29.489358,153.103092,EPSG:4326 +HUMAN_OBSERVATION,OMMZ21091400,1,,occurrenceRemarks withheld,2022,8,12,Australia,AU,New South Wales,-34.033901,150.88535,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-30.173984,152.789011,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,1,Australia,AU,New South Wales,-29.489839,153.10115,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-31.187417,152.978594,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.485563,150.636409,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083006,1,,occurrenceRemarks withheld,2022,2,23,Australia,AU,New South Wales,-31.97337,151.923948,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.791377,152.432247,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,3,2,Australia,AU,New South Wales,-33.50547,150.79471,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,8,Australia,AU,New South Wales,-31.44689,152.906923,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-31.466745,152.926445,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.491493,150.639094,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-30.492588,151.627167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.459823,150.519053,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-31.485161,152.918144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-34.462866,150.524155,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,23,Australia,AU,New South Wales,-29.489526,153.103961,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.490872,150.638687,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,9,Australia,AU,New South Wales,-34.440626,150.616239,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-33.991958,150.89266,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153H,1,MALE,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-28.815997,153.337149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.39476,150.642979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.394154,150.635905,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.389025,150.626643,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.397266,150.622973,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-34.447018,150.518431,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.453442,150.524934,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.427204,150.603912,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080903,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-31.473405,152.922473,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,3,14,Australia,AU,New South Wales,-28.835219,153.323145,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-28.920453,153.266981,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,FEMALE,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-28.846528,153.302315,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.834226,153.364275,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2022,7,16,Australia,AU,New South Wales,-31.919786,152.37932,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-31.466808,152.897871,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.834226,153.364275,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.438362,150.604649,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.447385,150.51607,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-28.818698,153.29874,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-34.088098,150.991888,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.420767,150.626997,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-32.707434,152.062936,EPSG:4326 +HUMAN_OBSERVATION,OLHP2407120B,1,,occurrenceRemarks withheld,2024,6,13,Australia,AU,New South Wales,-31.433236,152.896128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.437798,150.607179,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,12,12,Australia,AU,New South Wales,-31.454442,152.926375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.46582,150.522261,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.438848,150.604614,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,5,16,Australia,AU,New South Wales,-31.467438,152.914995,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,31,Australia,AU,New South Wales,-29.679519,150.932322,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.454363,150.606891,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.299131,149.319131,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072703;OLHP23072704,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.594321,152.190379,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,3,6,Australia,AU,New South Wales,-29.484838,153.096044,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003827,1,MALE,occurrenceRemarks withheld,2023,5,13,Australia,AU,New South Wales,-28.620621,153.540173,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,24,Australia,AU,New South Wales,-29.485861,153.103645,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070S,1,,occurrenceRemarks withheld,2020,12,5,Australia,AU,New South Wales,-31.475782,152.912654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.428763,150.598819,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.464837,150.528472,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.812123,152.826098,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,21,Australia,AU,New South Wales,-28.888911,153.184589,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.427897,150.597843,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,1,2,Australia,AU,New South Wales,-28.43501,153.27934,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2022,9,15,Australia,AU,New South Wales,-34.539831,150.520621,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,12,10,Australia,AU,New South Wales,-28.864682,153.293115,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.450994,150.515364,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102211,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-32.710594,152.0728,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.444988,150.518785,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153D,1,,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-28.454834,153.273234,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.139925,150.794827,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151C,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-28.688896,153.513619,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,20,Australia,AU,New South Wales,-29.477931,153.10409,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-31.93348,152.415641,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-28.54694,153.49698,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-31.478614,152.92532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.45283,150.604584,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.45208,150.517345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-34.497603,150.535411,EPSG:4326 +HUMAN_OBSERVATION,ODMP22111600,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-34.757484,146.565443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.468659,150.519543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.468785,150.51955,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-31.460468,152.917884,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.39008,150.626189,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-31.441789,152.902544,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.438089,150.616529,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-28.872591,153.417286,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,25,Australia,AU,New South Wales,-29.483185,153.104187,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.915154,152.797565,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.175471,152.825072,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,3,27,Australia,AU,New South Wales,-31.442336,152.922566,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-31.459431,152.922735,EPSG:4326 +HUMAN_OBSERVATION,ODFK23122107;ODFK23122108,1,,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-34.36645,150.2237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.420919,150.627884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.420592,150.609225,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.45402,150.520955,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,2,10,Australia,AU,New South Wales,-28.641912,153.610517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.436334,150.517061,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-28.58182,153.067923,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.446154,150.517608,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003816,1,,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-28.81838,153.301618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.395534,150.641544,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.469558,150.527441,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.459907,150.519181,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,8,18,Australia,AU,New South Wales,-34.03093,150.859776,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.420866,150.630279,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072600;OPJG22072601,1,,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-28.259955,153.401769,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.820088,153.273941,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-33.993665,150.897398,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,9,Australia,AU,New South Wales,-28.941153,153.328328,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.387847,150.63145,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-28.63718,153.62828,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,4,23,Australia,AU,New South Wales,-31.428725,152.913733,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.464142,150.522191,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,22,Australia,AU,New South Wales,-29.485488,153.103637,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,7,19,Australia,AU,New South Wales,-31.476855,152.91347,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.485745,150.638353,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.436619,150.519119,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,5,10,Australia,AU,New South Wales,-36.55432,149.955109,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083006,1,,occurrenceRemarks withheld,2022,12,26,Australia,AU,New South Wales,-31.974702,151.913679,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,12,10,Australia,AU,New South Wales,-28.664505,153.454494,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122106,1,,occurrenceRemarks withheld,2023,6,3,Australia,AU,New South Wales,-28.831073,153.279661,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.420489,150.627995,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.386318,150.627458,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2024,1,23,Australia,AU,New South Wales,-32.040001,152.139868,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-29.484492,153.103983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.42379,150.63741,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-29.485263,153.104101,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032208,1,,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-33.563257,149.549861,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-28.586547,153.552253,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.462293,150.53461,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-34.450527,150.5975,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2022,12,20,Australia,AU,New South Wales,-34.306245,150.738271,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.417679,150.633252,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-28.469144,153.042529,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.432901,150.615849,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250O,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-32.766559,152.045481,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.434344,150.608975,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.388698,150.624172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.426582,150.604833,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,6,28,Australia,AU,New South Wales,-32.194045,151.901331,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-31.474294,152.916615,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.465851,150.522434,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-31.261588,152.81706,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,9,8,Australia,AU,New South Wales,-31.427597,152.880425,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.150922,152.815374,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-28.65505,153.59019,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.44781,150.513032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.418178,150.632509,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040421,1,FEMALE,occurrenceRemarks withheld,2023,5,28,Australia,AU,New South Wales,-29.631379,152.899236,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-33.719494,150.782857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.435697,150.607152,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.426629,150.603559,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.386911,150.630574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.427231,150.604825,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.497148,149.957744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.422835,150.637894,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.45524,150.521561,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,25,Australia,AU,New South Wales,-32.70658,152.06373,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.420671,150.630894,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,3,Australia,AU,New South Wales,-28.689888,153.608327,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.426733,150.603773,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.41533,150.64002,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.447018,150.516668,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.418908,150.610263,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.395527,150.642544,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.442042,150.518437,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.383381,150.623366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.421214,150.6273,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.462231,150.534666,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-28.840576,153.320914,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270T,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-31.169705,152.88655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.418877,150.632751,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-28.957721,153.398424,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,10,Australia,AU,New South Wales,-31.20955,152.411416,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-33.715847,150.78488,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140Q,1,,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-28.924729,153.159345,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,5,11,Australia,AU,New South Wales,-31.464543,152.92085,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.434788,150.616894,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-28.256235,153.40048,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,5,3,Australia,AU,New South Wales,-28.825033,153.300295,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-31.452436,152.925607,EPSG:4326 +HUMAN_OBSERVATION,OPUR21051601,1,,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-33.162369,151.253226,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181C,1,FEMALE,occurrenceRemarks withheld,2022,10,12,Australia,AU,New South Wales,-28.561962,153.116109,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,4,15,Australia,AU,New South Wales,-31.473907,152.899582,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.466268,150.52301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.453442,150.518252,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.384084,150.622411,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091705,1,,occurrenceRemarks withheld,2020,5,2,Australia,AU,New South Wales,-31.93345,152.410246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.437282,150.60567,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.452182,150.524122,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.44356,152.898251,EPSG:4326 +HUMAN_OBSERVATION,ODMP21060800,1,FEMALE,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-29.732341,152.92979,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,4,24,Australia,AU,New South Wales,-31.415053,152.894534,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.398645,150.640151,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270V,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-32.72457,152.01567,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.459266,150.53471,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-29.485548,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,7,22,Australia,AU,New South Wales,-28.651578,153.453433,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,ODFK24030600,1,,occurrenceRemarks withheld,2024,2,28,Australia,AU,New South Wales,-32.70769,152.066519,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090503;OLHP23090504,1,,occurrenceRemarks withheld,2023,3,24,Australia,AU,New South Wales,-30.493529,152.94256,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031819,1,,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-28.678126,153.027589,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200N,1,,occurrenceRemarks withheld,2024,4,29,Australia,AU,New South Wales,-31.462891,152.872548,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2020,3,22,Australia,AU,New South Wales,-29.667546,152.867846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.389513,150.629,EPSG:4326 +HUMAN_OBSERVATION,OGEM18052300,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.14064,150.796366,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,12,17,Australia,AU,New South Wales,-28.3123,153.475131,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2024,4,23,Australia,AU,New South Wales,-34.49196,150.47221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.465855,150.52042,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,6,28,Australia,AU,New South Wales,-32.729661,152.039334,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153J,1,,occurrenceRemarks withheld,2022,11,7,Australia,AU,New South Wales,-28.822093,153.304528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.437817,150.606732,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.387813,150.63156,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-33.711199,150.786714,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-28.259763,153.402083,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.447298,150.513123,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.451212,150.519406,EPSG:4326 +HUMAN_OBSERVATION,OPJG24081501,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-31.795077,152.592682,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.424939,150.601975,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-28.398547,153.556057,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.423818,150.605456,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180L,1,,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-28.679852,153.49024,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.429836,150.60709,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.884771,152.795899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.44741,150.518659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.398065,150.621384,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-31.904256,152.422603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.45186,150.602925,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-28.648599,153.39821,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-31.474477,152.919227,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-29.490063,153.101156,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004004,1,FEMALE,occurrenceRemarks withheld,2023,3,9,Australia,AU,New South Wales,-28.673442,153.558467,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,3,15,Australia,AU,New South Wales,-29.490222,153.108205,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-29.485571,153.10379,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040P,1,,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-29.463426,149.820828,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,6,16,Australia,AU,New South Wales,-32.722423,152.077276,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,12,18,Australia,AU,New South Wales,-29.000226,153.285105,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.437333,150.605495,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.454054,150.520432,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060500,1,,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-28.837019,153.316168,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-28.901369,153.371651,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-31.428902,152.90963,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031400,1,FEMALE,occurrenceRemarks withheld,2023,12,4,Australia,AU,New South Wales,-29.480983,153.094949,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,3,30,Australia,AU,New South Wales,-28.902241,153.340596,EPSG:4326 +HUMAN_OBSERVATION,OADB08121804,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-32.646741,152.161756,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-28.974463,153.428712,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.292153,149.325428,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-28.95949,153.395236,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.463244,152.920712,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.42064,150.629742,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140E,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-31.306784,152.867395,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.395667,150.64142,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-36.188613,149.266987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.427749,150.6032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.418029,150.632753,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152P,1,,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-28.733376,153.545166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.450957,150.522853,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.402134,150.64857,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,2,17,Australia,AU,New South Wales,-32.73749,152.03904,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072601;ODMP2212210O,1,,occurrenceRemarks withheld,2022,6,25,Australia,AU,New South Wales,-28.259712,153.40217,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-32.40625,152.462945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.430895,150.611467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.420677,150.630742,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.466343,150.521832,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.427582,150.604326,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251L,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-32.743065,152.065691,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2024,1,1,Australia,AU,New South Wales,-33.52695,150.659476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.46657,150.521422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.446338,150.513826,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,3,23,Australia,AU,New South Wales,-31.136321,152.808919,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070R,1,,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-33.54208,149.682001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.455665,150.660173,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,2,17,Australia,AU,New South Wales,-28.882861,153.204194,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.418972,150.609402,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-29.48545,153.103505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.383692,150.623107,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-31.48567,152.913498,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100406,1,MALE,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-28.275477,153.394746,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.101945,150.97432,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-28.393781,153.558179,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152A,1,,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-28.889525,153.23033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.455276,150.65964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.451789,150.522523,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.420717,150.630022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.449503,150.51605,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-28.642771,153.56178,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004072,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.711485,153.449713,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,6,30,Australia,AU,New South Wales,-31.156506,152.811588,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.46456,150.521928,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,6,23,Australia,AU,New South Wales,-32.722432,152.077233,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,6,10,Australia,AU,New South Wales,-31.466953,152.864466,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-31.134489,152.645868,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,12,13,Australia,AU,New South Wales,-28.253671,153.37723,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.425662,150.602031,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,16,Australia,AU,New South Wales,-29.477072,153.104374,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.385972,150.626783,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418948,150.609511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.418471,150.63323,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-29.485305,153.103977,EPSG:4326 +HUMAN_OBSERVATION,OJQS10111200;ODME17090100;OMFZ2304051B,1,,occurrenceRemarks withheld,2022,2,17,Australia,AU,New South Wales,-29.914054,152.32559,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,2,8,Australia,AU,New South Wales,-28.849918,153.315853,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004142,1,,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-28.900041,153.297906,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-28.415444,153.477854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.39014,150.625991,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.443805,150.516056,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,,occurrenceRemarks withheld,2021,12,5,Australia,AU,New South Wales,-28.255627,153.378654,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-28.580872,153.15582,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-34.440704,150.615627,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.454451,150.605877,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-33.77797,150.100633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.45246,150.523146,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-28.24765,153.481476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.397378,150.62781,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,29,Australia,AU,New South Wales,-29.490217,153.108221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.440379,150.516451,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-34.3994,150.645177,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,10,24,Australia,AU,New South Wales,-34.462307,150.549897,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-34.52395,150.49613,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-32.710418,152.065493,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.863788,153.294297,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-31.946553,152.421401,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2023,1,1,Australia,AU,New South Wales,-32.525553,151.759453,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-32.706396,152.063551,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,11,24,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.449495,150.516094,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-28.66967,153.35706,EPSG:4326 +HUMAN_OBSERVATION,OJMM08020900,1,,occurrenceRemarks withheld,2020,6,21,Australia,AU,New South Wales,-34.039417,151.067992,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.435683,150.616597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.446204,150.516953,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-28.826895,153.317176,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-34.100033,150.9721,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-31.125972,152.797643,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.444404,150.606599,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.100033,150.9721,EPSG:4326 +HUMAN_OBSERVATION,OPJG19103002,1,,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-31.256609,152.824652,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.951623,153.430075,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,8,23,Australia,AU,New South Wales,-32.710565,152.060186,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,5,13,Australia,AU,New South Wales,-31.444798,152.904325,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,5,Australia,AU,New South Wales,-34.90719,150.05334,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140E,1,,occurrenceRemarks withheld,2024,4,15,Australia,AU,New South Wales,-31.252531,152.961398,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,3,29,Australia,AU,New South Wales,-33.776569,150.103174,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.420802,150.629759,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.388114,150.631236,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.395281,150.630283,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.453762,150.517154,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.393449,150.643766,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,11,Australia,AU,New South Wales,-29.485067,153.104168,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,,occurrenceRemarks withheld,2021,2,3,Australia,AU,New South Wales,-29.687054,152.865711,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-29.692524,152.851464,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-32.706601,152.065095,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-30.224291,152.930439,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-33.272422,150.219332,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.341478,152.607777,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-31.91533,152.373765,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-30.842983,152.784299,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.42066,150.630764,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.431253,150.607191,EPSG:4326 +HUMAN_OBSERVATION,ODLA17110400,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.086966,150.975603,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122106,1,,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-28.830881,153.279543,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-31.904256,152.422603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.434678,150.606669,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,1,31,Australia,AU,New South Wales,-32.71888,152.137878,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-29.48569,153.103709,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.464693,150.522262,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-31.447732,152.894418,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-31.455827,152.926281,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,MALE,occurrenceRemarks withheld,2020,2,7,Australia,AU,New South Wales,-36.155372,149.374998,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200T,1,,occurrenceRemarks withheld,2024,4,3,Australia,AU,New South Wales,-31.409189,152.900722,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-28.821001,153.295193,EPSG:4326 +HUMAN_OBSERVATION,OJJS20031601,1,,occurrenceRemarks withheld,2022,3,30,Australia,AU,New South Wales,-34.237888,150.727939,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.465786,150.521467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.420679,150.630829,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080902,1,,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-32.738669,152.108521,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,6,25,Australia,AU,New South Wales,-31.461236,152.929924,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.432849,150.615481,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-36.041221,149.364908,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-31.394657,152.814717,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,10,Australia,AU,New South Wales,-29.489974,153.101242,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-31.478922,152.91099,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.391254,150.644948,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012900,1,MALE,occurrenceRemarks withheld,2024,1,4,Australia,AU,New South Wales,-32.302588,152.337163,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.46687,150.521566,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,7,Australia,AU,New South Wales,-34.437525,150.61624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.436516,150.602493,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022605,1,,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-31.470013,152.869727,EPSG:4326 +HUMAN_OBSERVATION,OPUR20021302,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-32.72723,152.00455,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-28.6767,153.597196,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,9,Australia,AU,New South Wales,-29.490703,153.10931,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,6,17,Australia,AU,New South Wales,-29.031382,153.413409,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.462375,150.535565,EPSG:4326 +HUMAN_OBSERVATION,OSXK00032802,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-32.382252,149.790872,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.388486,150.63091,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,3,3,Australia,AU,New South Wales,-29.490222,153.11049,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-31.91144,152.374394,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210U,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-32.710711,152.060844,EPSG:4326 +HUMAN_OBSERVATION,OJJS18041601,1,,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-28.890175,153.228485,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.450415,150.605099,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222C,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-32.71098,152.061622,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290X,1,,occurrenceRemarks withheld,2023,12,23,Australia,AU,New South Wales,-31.459574,152.928763,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.422137,150.606624,EPSG:4326 +HUMAN_OBSERVATION,OLHP2312140H,1,,occurrenceRemarks withheld,2022,2,19,Australia,AU,New South Wales,-28.971371,153.434417,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-30.34737,153.09062,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-28.93905,153.297633,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083000,1,FEMALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-33.553714,150.646441,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.465824,150.522435,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-29.497716,153.102797,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-34.018345,150.891921,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-31.459273,152.876586,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.137544,150.793836,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-33.709692,150.786179,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.436184,150.615919,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003856,1,FEMALE,occurrenceRemarks withheld,2023,6,3,Australia,AU,New South Wales,-28.874212,153.279103,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,6,Australia,AU,New South Wales,-29.488639,153.100383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.392817,150.632952,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-31.92926,152.382794,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020703,1,,occurrenceRemarks withheld,2020,3,6,Australia,AU,New South Wales,-30.18664,153.075322,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-32.68724,151.698977,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-29.489848,153.110549,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.439454,150.603791,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.491339,150.639055,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.452458,150.523973,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003888,1,,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-28.600266,153.43048,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-28.292708,152.464706,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2024,2,25,Australia,AU,New South Wales,-29.609166,150.861647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.491202,150.638504,EPSG:4326 +HUMAN_OBSERVATION,ODMP1003011Y,1,,occurrenceRemarks withheld,2020,9,,Australia,AU,New South Wales,-31.26336,152.82921,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091705,1,,occurrenceRemarks withheld,2020,5,29,Australia,AU,New South Wales,-31.935763,152.41169,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.128057,150.980864,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-31.437365,152.905505,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.836062,153.287996,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2022,7,12,Australia,AU,New South Wales,-31.474725,152.897393,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-34.192686,150.759571,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-33.716325,150.78443,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-28.658223,153.359413,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121500,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.410188,153.002438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.447662,150.517291,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-34.01438,150.879587,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.451587,150.515227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.396985,150.640122,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,2,8,Australia,AU,New South Wales,-32.649601,151.956732,EPSG:4326 +HUMAN_OBSERVATION,OJJS18021300,1,,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-32.78742,151.209231,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.422283,150.607665,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.207227,150.78996,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.701901,152.165315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.46432,150.526518,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-29.490072,153.10122,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,7,10,Australia,AU,New South Wales,-31.946553,152.421401,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-29.47724,153.104594,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.38525,150.624455,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031106,1,,occurrenceRemarks withheld,2024,2,18,Australia,AU,New South Wales,-32.723251,152.075946,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151S,1,FEMALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-28.823549,153.313005,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.420781,150.627268,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-31.09702,150.11874,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.420746,150.609264,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003819,1,MALE,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-28.827525,153.316393,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-31.437502,152.892687,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.384534,150.622387,EPSG:4326 +HUMAN_OBSERVATION,OJJS19043000;ODMP22022701,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-33.967052,150.921165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.434097,150.617099,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.68121,153.60155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.427055,150.605059,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-36.341347,149.476719,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.387118,150.631057,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022608,1,MALE,occurrenceRemarks withheld,2023,1,8,Australia,AU,New South Wales,-32.515411,151.68367,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-29.482699,153.104444,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,10,Australia,AU,New South Wales,-31.471635,152.92612,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-32.710989,152.065318,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,6,22,Australia,AU,New South Wales,-28.6044,153.43063,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.459358,150.523682,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.460064,150.52588,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.458551,150.655957,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-31.475343,152.89723,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,4,16,Australia,AU,New South Wales,-31.461041,152.923383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435728,150.52142,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.388687,150.630589,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-31.654337,152.80596,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.488132,150.635923,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,2,17,Australia,AU,New South Wales,-31.889461,152.444452,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102100,1,,occurrenceRemarks withheld,2022,4,24,Australia,AU,New South Wales,-32.729371,152.083636,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-28.828438,153.323085,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.435016,150.602764,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,30,Australia,AU,New South Wales,-33.713316,150.784643,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160B,1,,occurrenceRemarks withheld,2022,12,28,Australia,AU,New South Wales,-33.489106,149.398354,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,31,Australia,AU,New South Wales,-28.610285,152.660968,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.45238,150.522778,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,,occurrenceRemarks withheld,2024,9,16,Australia,AU,New South Wales,-34.760487,146.56265,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-29.489419,153.101692,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.451593,150.522203,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011005,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-31.94177,152.398462,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.488094,150.635347,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.92659,152.378229,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-29.487985,153.102572,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150N,1,FEMALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-28.355583,153.274628,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,29,Australia,AU,New South Wales,-29.489577,153.104573,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,FEMALE,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-31.928298,152.403898,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,4,26,Australia,AU,New South Wales,-30.380306,153.032917,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,2,5,Australia,AU,New South Wales,-29.485739,153.103688,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121408,1,,occurrenceRemarks withheld,2023,2,18,Australia,AU,New South Wales,-28.389325,153.562091,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.56082,152.210153,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,15,Australia,AU,New South Wales,-31.633105,152.775913,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100501,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-31.638653,152.791002,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,5,3,Australia,AU,New South Wales,-29.606316,152.880613,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.440353,150.51742,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.389038,150.631025,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.460059,150.525876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.43918,150.619784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419107,150.610279,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-29.487364,153.09092,EPSG:4326 +HUMAN_OBSERVATION,Obs_0190,1,MALE,occurrenceRemarks withheld,2023,12,15,Australia,AU,New South Wales,-33.104783,151.150223,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-32.711025,152.065318,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.494189,150.640532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.453976,150.521022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.42741,150.602905,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.298192,149.322403,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.435215,150.616643,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.434616,150.608107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.395152,150.62921,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.84178,152.759299,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-31.429901,152.893317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.449906,150.514134,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.383927,150.622676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.458145,150.65784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.43729,150.605605,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.386856,150.630564,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-32.705566,152.063631,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-31.458959,152.913609,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-33.706422,150.785931,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.453523,150.518238,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,FEMALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-36.03167,149.39945,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.380735,150.537335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.419619,150.609753,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,3,Australia,AU,New South Wales,-29.48558,153.103817,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011011,1,,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-31.447221,152.923266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.447816,150.517308,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-32.22088,152.532814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.465291,150.521504,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-28.815841,153.33378,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-31.149088,152.909715,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011006,1,,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-31.445683,152.893756,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-32.706755,152.063796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.427476,150.603535,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-33.716972,150.785291,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021803,1,,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-29.122144,150.307773,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-28.625477,153.425502,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.519414,150.543918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.412945,150.599033,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,CHADL,1,,occurrenceRemarks withheld,2020,8,1,Australia,AU,New South Wales,-28.945705,153.224759,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-34.922751,150.141529,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021804,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-29.065427,150.309171,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-28.868965,153.286906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.446374,150.513825,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,2,17,Australia,AU,New South Wales,-31.92625,152.353525,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.256856,152.743408,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251J,1,FEMALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-32.719735,152.06845,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.420967,150.627578,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,20,Australia,AU,New South Wales,-29.476895,153.104847,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002758,1,MALE,occurrenceRemarks withheld,2022,6,20,Australia,AU,New South Wales,-29.483853,153.104128,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-29.823614,150.94513,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102200,1,,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-32.737201,152.079053,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.447852,150.518678,EPSG:4326 +HUMAN_OBSERVATION,OPXE96061101,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-31.217582,152.948503,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041403,1,FEMALE,occurrenceRemarks withheld,2021,2,18,Australia,AU,New South Wales,-29.728542,151.08389,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,16,Australia,AU,New South Wales,-31.636686,152.795237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.38953,150.627118,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,7,13,Australia,AU,New South Wales,-29.67285,152.87646,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.454816,150.656758,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.463634,150.523806,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-31.413327,152.120699,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.458643,150.656063,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.884771,152.795899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.420305,150.627336,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210U,1,,occurrenceRemarks withheld,2021,10,13,Australia,AU,New South Wales,-32.710891,152.061255,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435764,150.521375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.420886,150.636872,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.456932,150.659942,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,2,11,Australia,AU,New South Wales,-31.595013,152.838356,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190L,1,,occurrenceRemarks withheld,2024,8,12,Australia,AU,New South Wales,-31.94068,152.474076,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-28.734248,153.546503,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-34.440812,150.616516,EPSG:4326 +HUMAN_OBSERVATION,OJQS16052400,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-30.492865,151.602102,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.456685,150.519451,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-28.927498,153.158075,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.420987,150.627186,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.398041,150.639679,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-29.489512,153.103902,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-31.444253,152.885538,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060A,1,MALE,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-31.452965,152.912867,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433288,150.607525,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.411181,150.59917,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.817225,153.273491,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-32.711226,152.066164,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,16,Australia,AU,New South Wales,-29.484352,153.104037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.418445,150.633242,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140A,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-28.686554,153.579366,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-29.490665,153.108167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.427244,150.603193,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-30.37491,153.01713,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.466162,150.521336,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152R,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-28.292207,153.393389,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.458175,150.658939,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-36.041873,149.362519,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-31.140005,152.798904,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.447171,150.513094,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-30.380306,153.032917,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.454315,150.658415,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,13,Australia,AU,New South Wales,-33.015404,151.577692,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-30.45575,152.712346,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,2,13,Australia,AU,New South Wales,-32.706486,152.063642,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.835663,153.322532,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-34.216289,150.794721,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-28.64451,152.979109,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.447323,150.513928,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.901362,152.74767,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.463726,150.523923,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-34.102486,150.826092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.456313,150.655867,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-31.443843,152.924872,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,23,Australia,AU,New South Wales,-31.281434,152.861473,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.465944,150.522138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.420931,150.627569,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.447194,150.519536,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-36.434481,149.990128,EPSG:4326 +HUMAN_OBSERVATION,ODMP07011002,1,,occurrenceRemarks withheld,2024,2,8,Australia,AU,New South Wales,-31.559002,152.820936,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.805797,153.342482,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-30.325294,153.095683,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004097,1,,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-28.716302,153.46611,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.810552,152.826183,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-36.434481,149.990128,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-31.429737,152.91497,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OMFZ23033002;ODFK24051300,1,,occurrenceRemarks withheld,2023,3,5,Australia,AU,New South Wales,-32.127955,152.025636,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.821668,153.3033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.446416,150.513672,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-31.46727,152.903078,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003901,1,,occurrenceRemarks withheld,2023,6,4,Australia,AU,New South Wales,-28.666558,153.412006,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-31.897596,152.283146,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-28.830931,153.281772,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003825,1,,occurrenceRemarks withheld,2023,5,19,Australia,AU,New South Wales,-28.824238,153.217726,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.298311,149.317811,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-30.413154,152.996446,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-29.490241,153.110152,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220H,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-32.693745,151.702237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.454727,150.60983,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.846843,153.314609,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003979,1,,occurrenceRemarks withheld,2023,5,23,Australia,AU,New South Wales,-28.784731,153.385426,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.447323,150.513928,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002842,1,,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-29.634282,152.809417,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.846843,153.314609,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-31.645162,152.798012,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.235823,152.900902,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.836062,153.287996,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102222,1,,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-32.712816,152.158889,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,3,Australia,AU,New South Wales,-31.574053,152.816964,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,MALE,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-35.95118,149.332697,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.481696,150.532939,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082308;ODFK23082309;ODFK2308230A;ODFK2308230B,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.14285,150.794178,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,1,8,Australia,AU,New South Wales,-31.433967,152.910686,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,18,Australia,AU,New South Wales,-29.477338,153.104273,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.392749,150.639251,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,18,Australia,AU,New South Wales,-29.490199,153.10975,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,2,Australia,AU,New South Wales,-28.873812,153.348488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.429775,150.609943,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004082,1,,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-28.319728,153.452259,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.459936,150.525493,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-29.490194,153.108205,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.226163,151.726309,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140V,1,,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-29.478118,152.316958,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.39936,150.623077,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.451889,150.518145,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS10032403,1,,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-28.26485,153.419273,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,7,14,Australia,AU,New South Wales,-28.400055,153.556648,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-32.703317,151.801786,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-31.655404,152.796455,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.447303,150.518695,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-28.336369,153.534917,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.452643,150.522857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.453369,150.517307,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-29.485576,153.10379,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022409,1,,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-32.738611,152.074722,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.452525,150.516603,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240T,1,,occurrenceRemarks withheld,2024,4,15,Australia,AU,New South Wales,-32.730671,152.093007,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.438087,150.605364,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,2,4,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-28.887345,153.226051,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,12,3,Australia,AU,New South Wales,-30.622544,152.454406,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.821668,153.3033,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-30.511997,151.506959,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-29.631133,152.899314,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,20,Australia,AU,New South Wales,-28.903508,153.287759,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.39733,150.622982,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.45797,150.531265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.388847,150.630954,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.43056,150.610454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.39916,150.639767,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.420707,150.609135,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W;ODMP23040402,1,MALE,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-32.711474,151.844528,EPSG:4326 +HUMAN_OBSERVATION,OTXS23041400,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-30.434936,152.624996,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-31.437692,152.905433,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033003,1,,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-31.946761,152.30027,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.397225,150.646467,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-30.352435,153.065606,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435986,150.615935,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,10,Australia,AU,New South Wales,-31.214472,152.385256,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.420193,150.631343,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-28.824938,153.281559,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.821668,153.3033,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061004,1,,occurrenceRemarks withheld,2020,7,14,Australia,AU,New South Wales,-30.212228,152.799985,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003953,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-28.216274,153.518426,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011010,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-36.192351,149.25953,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.412451,150.601853,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.465729,150.520435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.439538,150.603941,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-29.6018,152.872878,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-31.459395,152.924902,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-31.43873,152.886713,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.418506,150.633153,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-28.916769,153.316522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.421252,150.627364,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-31.453547,152.880224,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180C,1,,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-28.815901,153.326403,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.457806,150.663662,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.467038,150.518763,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-33.765497,150.062671,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-31.485196,152.914455,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.470978,150.530795,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-32.223426,152.189959,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.469938,150.53063,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-31.11356,150.15407,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,6,18,Australia,AU,New South Wales,-31.936428,152.454265,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.68121,153.60155,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,1,18,Australia,AU,New South Wales,-30.51694,152.8853,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.427329,150.604736,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.462307,150.549897,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012505,1,MALE,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-31.454221,152.925225,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090M,1,,occurrenceRemarks withheld,2024,6,28,Australia,AU,New South Wales,-31.445007,152.916547,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.18147,150.80651,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,1,17,Australia,AU,New South Wales,-31.933289,152.415158,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.387837,150.631407,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-28.650766,153.447891,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-29.487383,153.10321,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,4,19,Australia,AU,New South Wales,-36.567944,149.950099,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-29.490077,153.101172,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2021,12,18,Australia,AU,New South Wales,-31.465615,152.927076,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.469448,150.516668,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-34.058476,150.840726,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.427399,150.600512,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;ORSF21090200,1,MALE,occurrenceRemarks withheld,2021,,,Australia,AU,New South Wales,-32.416313,149.82901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435348,150.616041,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-31.921261,152.490835,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.435165,150.609006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.452583,150.519877,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.451993,150.5175,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.44665,150.515852,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.422333,150.607914,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.452319,150.522899,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140X,1,MALE,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-31.441585,152.906709,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-28.72655,153.54876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.420217,150.631179,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-30.908562,153.054919,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.449084,150.608043,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022600,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.710926,152.153499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.386234,150.631017,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,12,5,Australia,AU,New South Wales,-32.70643,152.06373,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-29.485809,153.103672,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-33.438925,150.616682,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,25,Australia,AU,New South Wales,-31.733746,152.231248,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.1819,153.002855,EPSG:4326 +HUMAN_OBSERVATION,ODFK2312070B,1,,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-29.488424,153.112748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.487705,150.636196,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.385561,150.626512,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-34.50049,150.47385,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.48679,150.52495,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.430175,150.613391,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,17,Australia,AU,New South Wales,-31.459281,152.924987,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-31.928099,152.404027,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.446857,150.520297,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190G,1,,occurrenceRemarks withheld,2023,2,23,Australia,AU,New South Wales,-30.409963,151.579593,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,26,Australia,AU,New South Wales,-31.452721,152.92591,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-31.450152,152.929044,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.459918,152.923044,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-31.445843,152.92544,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.437938,150.604172,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,1,21,Australia,AU,New South Wales,-29.478762,153.104171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.448494,150.51743,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-29.692524,152.851464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.440167,150.603825,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.436991,150.603241,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2020,5,19,Australia,AU,New South Wales,-34.099825,150.809413,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,3,12,Australia,AU,New South Wales,-29.490189,153.110506,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,16,Australia,AU,New South Wales,-33.991958,150.89266,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704;ODFK23090600,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-33.670775,149.458845,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,2,15,Australia,AU,New South Wales,-28.818698,153.298557,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-28.399124,153.555888,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,1,Australia,AU,New South Wales,-29.491422,153.096253,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17363,152.90947,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-31.27746,152.81796,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,17,Australia,AU,New South Wales,-28.663566,153.608363,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003821,1,,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-28.238831,153.488231,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,10,13,Australia,AU,New South Wales,-31.903583,152.387,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.425052,150.602679,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-31.943627,152.482146,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,2,20,Australia,AU,New South Wales,-29.630491,152.899776,EPSG:4326 +HUMAN_OBSERVATION,OLHP24062102,1,,occurrenceRemarks withheld,2024,5,5,Australia,AU,New South Wales,-31.466469,152.869551,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,5,1,Australia,AU,New South Wales,-32.725221,152.071777,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-32.655267,151.790271,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.18193,153.004041,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.465785,150.521435,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-28.814928,153.325602,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-29.53787,153.0128,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2023,2,18,Australia,AU,New South Wales,-28.332465,153.545174,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.459357,150.522735,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.419995,150.631381,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-34.494,150.609073,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-32.60351,151.725342,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.185759,152.704917,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031402,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-28.879744,153.324337,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-28.816063,153.29382,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,12,Australia,AU,New South Wales,-29.684315,152.884433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.450061,150.516469,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-32.728032,152.088846,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030O,1,,occurrenceRemarks withheld,2022,2,17,Australia,AU,New South Wales,-31.356723,152.856522,EPSG:4326 +HUMAN_OBSERVATION,OPUR15040300,1,,occurrenceRemarks withheld,2020,4,25,Australia,AU,New South Wales,-29.970004,152.476167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.494186,150.64038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.419133,150.610235,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.435993,150.615848,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-31.446264,152.928396,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-30.505451,152.909916,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-31.129215,152.818125,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-29.48799,153.091559,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150L,1,,occurrenceRemarks withheld,2020,6,22,Australia,AU,New South Wales,-33.742033,150.641557,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-31.305739,152.866563,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033009,1,,occurrenceRemarks withheld,2020,6,21,Australia,AU,New South Wales,-33.204749,151.098794,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2022,4,3,Australia,AU,New South Wales,-31.473048,152.9255,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,3,17,Australia,AU,New South Wales,-28.927765,153.31872,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.454201,150.547088,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.184643,153.003004,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,12,27,Australia,AU,New South Wales,-34.755862,146.535056,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-29.487093,153.090749,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-31.2027,152.336072,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004105,1,FEMALE,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.637548,153.629659,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.999879,151.904846,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200W,1,,occurrenceRemarks withheld,2024,4,11,Australia,AU,New South Wales,-31.466875,152.929736,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-31.45247,152.925965,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404,1,,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-31.780553,152.447227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.44692,150.51715,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140Y,1,,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-28.534632,153.08602,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-28.636784,153.46123,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-31.566357,152.847465,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004040,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-28.70167,153.565416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.445736,150.514791,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,5,30,Australia,AU,New South Wales,-30.50157,151.66621,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-28.87722,153.25027,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.827964,153.601559,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,10,Australia,AU,New South Wales,-31.196849,152.400264,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2024,7,9,Australia,AU,New South Wales,-31.906375,152.109729,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-28.863396,153.292036,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003826,1,,occurrenceRemarks withheld,2023,4,4,Australia,AU,New South Wales,-28.809903,153.510514,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,8,Australia,AU,New South Wales,-33.715752,150.785187,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,12,Australia,AU,New South Wales,-29.484007,153.104037,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-29.48982,153.11057,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-36.429911,148.729392,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121500,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-30.409133,152.992754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.418984,150.609554,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,,occurrenceRemarks withheld,2022,6,18,Australia,AU,New South Wales,-34.012525,150.884017,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-28.687929,153.38411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.46569,150.521623,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.41964,150.635373,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122106,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-28.831073,153.279661,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002826,1,,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-29.627572,152.860256,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,18,Australia,AU,New South Wales,-33.712815,150.78543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.456244,150.656947,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.390021,150.627289,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-33.78207,150.069694,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-31.241379,152.765229,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,18,Australia,AU,New South Wales,-31.433354,152.911156,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.420618,150.609181,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-28.981503,153.285118,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042C,1,MALE,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-31.514535,150.673349,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.464236,150.523712,EPSG:4326 +HUMAN_OBSERVATION,OSYK01011201,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-29.582131,152.839947,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,4,22,Australia,AU,New South Wales,-31.452764,152.926167,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290M,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-32.709065,152.062949,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,6,15,Australia,AU,New South Wales,-31.904256,152.422603,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-31.444435,152.926647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.420764,150.630108,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-29.490128,153.110511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.392517,150.633776,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130E,1,,occurrenceRemarks withheld,2020,8,29,Australia,AU,New South Wales,-31.925249,152.402791,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.455636,150.608814,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092000,1,,occurrenceRemarks withheld,2023,4,20,Australia,AU,New South Wales,-29.485679,153.103495,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.420947,150.630244,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.448548,150.517428,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031802,1,,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-28.689405,153.606506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.387812,150.631484,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.421348,150.626741,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-29.489156,153.103559,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.395836,150.629191,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-34.46,150.566447,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-31.77813,152.437799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.48124,150.532713,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-31.632767,152.785424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.422946,150.607896,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,3,10,Australia,AU,New South Wales,-28.52307,153.0906,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122001,1,,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-33.56161,149.47594,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.449541,150.516147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.438877,150.604275,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.42061,150.609235,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-28.95773,153.434011,EPSG:4326 +HUMAN_OBSERVATION,Obs_1340,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-31.447153,152.908289,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-31.432408,152.892569,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.431093,150.613735,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-31.459491,152.923048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.456195,150.524613,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.439353,150.603261,EPSG:4326 +HUMAN_OBSERVATION,ODMP10100606,1,MALE,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-29.666732,152.869709,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.456102,152.904445,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102115,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-32.729647,152.08478,EPSG:4326 +HUMAN_OBSERVATION,OPUR19092400,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-28.874736,153.311362,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-33.717698,150.784224,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,4,5,Australia,AU,New South Wales,-34.042369,151.009987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.469397,150.5275,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003992,1,,occurrenceRemarks withheld,2023,4,9,Australia,AU,New South Wales,-28.33111,153.561029,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.488393,150.635425,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,18,Australia,AU,New South Wales,-28.393611,153.563938,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.431571,150.612351,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.385463,150.626591,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-31.15777,150.10384,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.810437,152.82757,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,20,Australia,AU,New South Wales,-29.490259,153.108156,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,6,3,Australia,AU,New South Wales,-28.815314,153.31231,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,11,Australia,AU,New South Wales,-33.706952,150.787145,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.456111,150.522276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-34.485067,150.635029,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003814,1,,occurrenceRemarks withheld,2023,4,11,Australia,AU,New South Wales,-28.924837,153.15908,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,4,19,Australia,AU,New South Wales,-28.443445,153.245654,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-28.796843,153.360729,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-31.441036,152.8839,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-31.904256,152.422603,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.11211,150.80653,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,25,Australia,AU,New South Wales,-34.030191,150.848206,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-28.591175,153.442282,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,22,Australia,AU,New South Wales,-31.46416,152.926769,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-34.440534,150.618929,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419787,150.635053,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-32.002023,152.156489,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-28.89017,153.43282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.491439,150.639096,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-28.258067,153.402047,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,3,Australia,AU,New South Wales,-29.48834,153.110849,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-31.971247,151.88176,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111500,1,MALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-30.361141,152.886089,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,FEMALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-29.487984,153.091864,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.420635,150.630427,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-34.020318,150.991128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.451897,150.521181,EPSG:4326 +HUMAN_OBSERVATION,OPJG16091402,1,,occurrenceRemarks withheld,2020,5,21,Australia,AU,New South Wales,-31.710288,152.163446,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-29.48558,153.103784,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-28.679411,153.278243,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-34.438215,150.610072,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.453176,150.52245,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,1,16,Australia,AU,New South Wales,-30.054147,152.305556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.421262,150.62744,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102508,2,,occurrenceRemarks withheld,2024,9,25,Australia,AU,New South Wales,-28.666699,153.284796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.384499,150.625248,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.427523,150.605437,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,1,9,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.452671,150.519776,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.471619,150.524158,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.453981,150.520391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.463424,150.534838,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-28.629621,153.021971,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-36.434481,149.990128,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080902,1,,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-31.448924,152.921041,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.418242,150.632083,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,10,9,Australia,AU,New South Wales,-29.642585,152.828894,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,21,Australia,AU,New South Wales,-29.485265,153.104012,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132L,1,,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-31.653945,152.814899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.435139,150.609028,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-31.446472,152.911375,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-32.231881,152.200143,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-29.726772,152.930015,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-29.692524,152.851464,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-31.188605,152.74694,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,25,Australia,AU,New South Wales,-33.713659,150.784795,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-31.442419,152.901832,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-28.583473,153.385016,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.386856,150.630564,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031526,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-28.642768,153.141034,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.420966,150.630277,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,7,Australia,AU,New South Wales,-29.490245,153.108205,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-29.488452,153.092412,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.411631,150.596394,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.458709,150.665193,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100511,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-36.191934,149.261113,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-34.073367,150.858339,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240X,1,,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-32.730356,152.08543,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.491784,150.639217,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-34.102606,150.809224,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.420572,150.60915,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,19,Australia,AU,New South Wales,-33.716818,150.785576,EPSG:4326 +HUMAN_OBSERVATION,OPUR14011100,1,,occurrenceRemarks withheld,2021,1,22,Australia,AU,New South Wales,-29.352429,153.024653,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,7,Australia,AU,New South Wales,-29.489092,153.101741,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2020,4,27,Australia,AU,New South Wales,-31.257149,152.743147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.388937,150.629505,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121107,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-30.881516,153.072069,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.467299,150.520476,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-223;OPJG22022105,1,,occurrenceRemarks withheld,2024,4,11,Australia,AU,New South Wales,-31.478289,151.47811,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-31.241799,152.902073,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.420653,150.630873,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-33.716293,150.785026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.392713,150.639219,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.465724,150.522427,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866891,153.343646,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.383309,150.623368,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,FEMALE,occurrenceRemarks withheld,2024,7,14,Australia,AU,New South Wales,-34.199263,150.779793,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050I,1,,occurrenceRemarks withheld,2024,2,11,Australia,AU,New South Wales,-31.94658,152.389245,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-29.485552,153.103758,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,17,Australia,AU,New South Wales,-28.393807,153.55781,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-31.213404,152.908073,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080308,1,,occurrenceRemarks withheld,2022,6,8,Australia,AU,New South Wales,-34.041997,151.008935,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042G,1,,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-32.595412,151.900142,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.465768,150.522339,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.433938,150.61447,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003913,1,,occurrenceRemarks withheld,2023,5,18,Australia,AU,New South Wales,-28.821551,153.319343,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-31.44241,152.901026,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,5,26,Australia,AU,New South Wales,-33.778719,150.100284,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2023,2,5,Australia,AU,New South Wales,-34.02736,151.024254,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.452065,150.524594,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.489425,150.524633,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110I,1,,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-30.143451,151.585902,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,15,Australia,AU,New South Wales,-32.344787,152.488513,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-29.366767,153.106928,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-34.465642,150.521025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.392745,150.635771,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.418992,150.604854,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,4,22,Australia,AU,New South Wales,-31.98302,152.400714,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,MALE,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-34.149772,150.823235,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.392739,150.639164,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-31.470718,152.919656,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-30.704873,152.602056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.420294,150.634245,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,12,29,Australia,AU,New South Wales,-34.082946,150.99624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.451556,150.517263,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.81222,153.313992,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.423071,150.638442,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,2,26,Australia,AU,New South Wales,-29.022503,153.201366,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.485561,150.638173,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.88094,153.23286,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.42086,150.630399,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-34.089692,150.82139,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,5,17,Australia,AU,New South Wales,-28.2387,153.50629,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003994,1,,occurrenceRemarks withheld,2023,1,10,Australia,AU,New South Wales,-28.889378,153.231061,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.820088,153.273941,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-28.85367,153.265046,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,16,Australia,AU,New South Wales,-29.490572,153.108135,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.734934,146.611059,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-33.705803,150.786901,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102219,1,,occurrenceRemarks withheld,2020,12,17,Australia,AU,New South Wales,-32.710545,152.067068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.488551,150.637544,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.395941,150.642043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.434967,150.615921,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-31.923702,152.384578,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.454488,150.515576,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003860,1,,occurrenceRemarks withheld,2023,7,20,Australia,AU,New South Wales,-28.654339,153.512741,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100Y,1,MALE,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-32.589689,151.795088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.420651,150.630786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.466242,150.523968,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-31.44098,152.883889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.433091,150.614059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.420413,150.627366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.466468,150.522655,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290Y,1,MALE,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-31.470543,152.868617,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,12,Australia,AU,New South Wales,-28.678405,153.279343,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.421035,150.626891,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.389119,150.631012,EPSG:4326 +HUMAN_OBSERVATION,OPUR15021900,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-30.044378,151.883057,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.40247,150.650573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.421024,150.626804,EPSG:4326 +HUMAN_OBSERVATION,ODFK23111401,1,,occurrenceRemarks withheld,2024,9,4,Australia,AU,New South Wales,-31.571551,152.173684,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.436027,150.615749,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.464237,150.522449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.488639,150.634188,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,14,Australia,AU,New South Wales,-28.851346,153.318438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.456604,150.519453,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,14,Australia,AU,New South Wales,-33.715109,150.785705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.420097,150.609294,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-31.551454,152.852201,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.387427,150.631168,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.436509,150.520788,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-28.446447,153.052888,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.387042,150.631777,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,6,3,Australia,AU,New South Wales,-32.736715,152.08114,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-31.15582,150.08723,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-29.490199,153.109921,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150Q,1,MALE,occurrenceRemarks withheld,2022,11,5,Australia,AU,New South Wales,-28.660215,153.491791,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-31.459524,152.924377,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-28.809314,153.288292,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-31.925191,152.352583,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,6,6,Australia,AU,New South Wales,-34.044223,150.870348,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.424312,150.603092,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-31.453513,152.918648,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.418463,150.633241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.423824,150.637311,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,7,11,Australia,AU,New South Wales,-29.489587,153.104348,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.434335,150.616331,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111319,1,,occurrenceRemarks withheld,2023,1,28,Australia,AU,New South Wales,-30.237338,153.045221,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003910,1,MALE,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-31.281497,152.956229,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.432096,150.607875,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003945,1,,occurrenceRemarks withheld,2023,1,26,Australia,AU,New South Wales,-28.398849,153.555983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-29.488046,153.092208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.45263,150.523968,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-31.465551,152.927684,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.458277,150.659535,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.393305,150.640965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.437696,150.605169,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-34.429991,150.612276,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100509,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-32.390141,149.835402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.469299,150.526675,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.487805,150.636248,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,7,Australia,AU,New South Wales,-33.777068,150.0546,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031419,1,,occurrenceRemarks withheld,2021,12,24,Australia,AU,New South Wales,-31.442054,152.9054,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,12,26,Australia,AU,New South Wales,-32.708992,152.064588,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-29.320091,152.840035,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,23,Australia,AU,New South Wales,-31.446745,152.891565,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.237057,152.190362,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,FEMALE,occurrenceRemarks withheld,2024,5,22,Australia,AU,New South Wales,-31.335146,152.868399,EPSG:4326 +HUMAN_OBSERVATION,Obs_2124,1,,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-31.438865,152.908813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.434415,150.608886,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.490689,153.109342,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003893,1,,occurrenceRemarks withheld,2023,4,1,Australia,AU,New South Wales,-28.637877,153.629142,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.446247,150.513764,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.102074,150.80037,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-28.260479,153.403012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.426679,150.603808,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160I,1,MALE,occurrenceRemarks withheld,2022,10,18,Australia,AU,Victoria,-36.852794,145.466563,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-31.441624,152.908386,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.423772,150.637378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.449223,150.5236,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060503,1,,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-28.837037,153.316219,EPSG:4326 +HUMAN_OBSERVATION,OVGI98110201,1,FEMALE,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-30.48466,151.677366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.455584,150.608032,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.286699,152.873607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.395669,150.64291,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.174625,152.907975,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022608,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.811653,152.435145,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.411892,150.599095,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,8,Australia,AU,New South Wales,-29.490161,153.110527,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.436182,150.603373,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.922333,152.37811,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,9,19,Australia,AU,New South Wales,-31.475937,152.909233,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-33.707189,150.786058,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,3,24,Australia,AU,New South Wales,-34.092534,150.98483,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022525,1,,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-32.735693,152.081557,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,24,Australia,AU,New South Wales,-28.690047,153.608012,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.401293,150.646102,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003970,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-28.194829,153.517873,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-31.194854,152.972761,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-36.454235,149.995981,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-36.566339,149.998897,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,7,20,Australia,AU,New South Wales,-31.490713,152.774456,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.452141,150.612211,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,MALE,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-29.515742,152.812126,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-32.03516,152.39268,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130N,1,MALE,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-31.4685,152.901481,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-28.825525,153.300252,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.439051,150.603465,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.438786,150.604191,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150H,1,,occurrenceRemarks withheld,2024,5,29,Australia,AU,New South Wales,-31.61743,152.575229,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-29.489433,153.102856,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.435118,150.608887,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002839,1,FEMALE,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-29.664828,152.872978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.434968,150.60306,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260B,1,,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-33.542902,150.638597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.392853,150.639476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.438813,150.60332,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-31.400942,152.106285,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.396521,150.645018,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-29.482171,153.104197,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,11,13,Australia,AU,New South Wales,-30.20916,153.133965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.439426,150.603759,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,10,,Australia,AU,New South Wales,-30.335621,153.07972,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,2,4,Australia,AU,New South Wales,-28.651191,153.376715,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.42769,150.605694,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.399793,150.643589,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022608,1,,occurrenceRemarks withheld,2023,1,13,Australia,AU,New South Wales,-32.515411,151.683667,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.872021,153.339182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.389743,150.626002,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.44689,150.517031,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.454497,150.605908,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-29.489591,153.103961,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,7,19,Australia,AU,New South Wales,-28.593833,153.081504,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-33.139355,151.0946,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.39731,150.622906,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.811869,152.825705,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-29.49096,153.109154,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.439273,150.522839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.421753,150.637402,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2020,7,20,Australia,AU,New South Wales,-34.070391,150.851595,EPSG:4326 +HUMAN_OBSERVATION,OPJG18122002,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-30.218561,152.792854,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070E,1,,occurrenceRemarks withheld,2020,4,18,Australia,AU,New South Wales,-32.1088,151.6525,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.420304,150.611572,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.427058,150.604732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.490761,150.638538,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,26,Australia,AU,New South Wales,-28.873862,153.281041,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.495739,150.524806,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150F,1,FEMALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.127,150.979553,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,5,29,Australia,AU,New South Wales,-31.979319,152.361869,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240O,1,,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-32.743065,152.065691,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-30.119255,152.138925,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.446584,150.517943,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.420608,150.630874,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-29.490227,153.109819,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-34.034505,151.026978,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004171,1,MALE,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.672024,153.491277,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;ODMP2212210P;ODMP2212210Q;OLHP2311100C,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-30.119255,152.138925,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.420949,150.630375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.395387,150.643266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.387795,150.631517,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-28.691428,153.612241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.397407,150.622806,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083002,1,,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-34.069641,150.835074,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002761,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.656653,152.879706,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.427601,150.604369,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-31.636581,152.787668,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-31.92625,152.353525,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,6,5,Australia,AU,New South Wales,-31.45793,152.929642,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.446391,150.517307,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,25,Australia,AU,New South Wales,-29.488303,153.092948,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.060553,150.862708,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.423906,150.637309,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,3,27,Australia,AU,New South Wales,-30.88706,153.071654,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,5,13,Australia,AU,New South Wales,-31.441071,152.923384,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,4,3,Australia,AU,New South Wales,-28.958969,153.393538,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.453444,150.517903,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,FEMALE,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-30.301675,153.095569,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.467206,150.520337,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032109,1,,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-32.737201,152.079053,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO;OJJS20110901,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-30.668054,152.95453,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.462463,150.535432,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240U,1,,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-32.772764,151.940123,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090406,1,,occurrenceRemarks withheld,2023,12,20,Australia,AU,New South Wales,-30.367173,153.019495,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.434252,150.616268,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,3,26,Australia,AU,New South Wales,-29.490156,153.108049,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-28.260229,153.400765,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-28.398611,153.556667,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.425285,150.602596,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-31.480968,152.915983,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-34.157325,150.82808,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-31.480363,152.916549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.45551,150.608828,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-32.743669,152.069041,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.463084,150.535414,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.425187,150.602664,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052705,1,,occurrenceRemarks withheld,2024,4,23,Australia,AU,New South Wales,-32.585403,151.781123,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.069668,150.838066,EPSG:4326 +HUMAN_OBSERVATION,OLHP24013004,1,,occurrenceRemarks withheld,2024,5,29,Australia,AU,New South Wales,-31.925419,152.319002,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.442973,152.898089,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-31.450184,152.929051,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.457036,150.527864,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.435065,150.602981,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,7,4,Australia,AU,New South Wales,-33.776967,150.105535,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.488379,150.637516,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,5,4,Australia,AU,New South Wales,-28.264562,153.459024,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003828,1,,occurrenceRemarks withheld,2023,1,1,Australia,AU,New South Wales,-28.473567,153.033378,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-28.663694,153.595927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.469608,150.526797,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.48573,150.635729,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-29.480878,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.421476,150.600986,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.466339,150.522931,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.421225,150.627364,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-28.820381,153.335173,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022606,1,FEMALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-31.578464,149.338871,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070601,1,,occurrenceRemarks withheld,2020,5,14,Australia,AU,New South Wales,-34.352651,150.685023,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,16,Australia,AU,New South Wales,-31.458845,152.926116,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,MALE,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-32.764554,152.116373,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.440335,150.516529,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.450043,150.516481,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.128057,150.980864,EPSG:4326 +HUMAN_OBSERVATION,ODMP21070805,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-33.955393,150.929005,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,24,Australia,AU,New South Wales,-29.490311,153.110259,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.434876,150.616805,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.554597,149.949397,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-29.490091,153.101167,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,1,14,Australia,AU,New South Wales,-29.728135,151.085361,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.490608,150.638564,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-34.441165,150.616169,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,7,Australia,AU,New South Wales,-29.490161,153.110527,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-29.488074,153.091688,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-28.864619,153.293271,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.447564,150.517338,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-31.914769,152.373911,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080100,1,,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-30.239277,153.045549,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-28.986031,153.438091,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,3,3,Australia,AU,New South Wales,-28.850803,153.159167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.4525,150.520249,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221U,1,,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-32.738319,152.172872,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.436618,150.519076,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,1,Australia,AU,New South Wales,-33.717359,150.784919,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.488853,150.637786,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-34.053416,150.838978,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.618562,149.923643,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-34.024887,150.988775,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-32.736421,152.041278,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140B,1,,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-28.620522,153.537089,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,10,Australia,AU,New South Wales,-29.489923,153.103264,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.436005,150.608612,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,14,Australia,AU,New South Wales,-32.706391,152.063312,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.428361,150.523639,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-28.673561,153.61147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-34.440478,150.618833,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-31.917168,152.378678,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-30.537056,152.902955,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154G,1,FEMALE,occurrenceRemarks withheld,2022,10,24,Australia,AU,New South Wales,-28.586025,153.071564,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-31.460519,152.929257,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-31.470531,152.904356,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-28.815282,153.331879,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,5,25,Australia,AU,New South Wales,-31.442512,152.901452,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.429905,150.599102,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,1,15,Australia,AU,New South Wales,-28.857269,153.312962,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-31.594131,152.838481,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-28.824405,153.288825,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150R,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.889985,153.184673,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.385242,150.627293,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031402,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-28.879806,153.324455,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.466233,150.523043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.388122,150.631181,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-33.960016,150.957128,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-28.827123,153.31709,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050G,1,,occurrenceRemarks withheld,2024,2,8,Australia,AU,New South Wales,-31.447555,152.892365,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.469875,150.530642,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100N,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-36.179003,149.333542,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-29.482087,153.10416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.392683,150.646561,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-29.482111,153.104181,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,12,Australia,AU,New South Wales,-29.490465,153.107974,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.449895,150.606181,EPSG:4326 +HUMAN_OBSERVATION,OFLM00020900,1,,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-31.952415,152.467677,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.438456,150.604385,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-33.776903,150.101252,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100400,1,,occurrenceRemarks withheld,2024,3,12,Australia,AU,New South Wales,-31.938107,152.416342,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.433071,150.613951,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,10,18,Australia,AU,New South Wales,-32.644764,151.720815,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.412898,150.597533,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-31.543343,152.848629,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-29.490166,153.110549,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-28.734899,153.475849,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.449458,150.606411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.437255,150.605671,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-34.925553,150.144851,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,25,Australia,AU,New South Wales,-31.453394,152.916222,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.439563,150.518486,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-28.815962,153.322343,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-34.027519,150.989152,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-28.962269,153.402296,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2021,10,24,Australia,AU,New South Wales,-34.092478,150.813926,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.293454,149.324981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.443094,150.517437,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-31.928393,152.403724,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150J,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-34.049264,151.004266,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211D,1,,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-32.727656,151.999308,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-34.396787,150.641987,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110X,1,,occurrenceRemarks withheld,2023,7,4,Australia,AU,New South Wales,-31.449045,151.630567,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.433756,150.617141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.469227,150.526645,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.385509,150.626633,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.84178,152.759299,EPSG:4326 +HUMAN_OBSERVATION,BREHS-HO,1,,occurrenceRemarks withheld,2022,10,1,Australia,AU,New South Wales,-33.365499,150.813393,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-31.465858,152.910194,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022515,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-32.713391,152.066564,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,12,Australia,AU,New South Wales,-31.454171,152.925304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.420984,150.627981,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150G,1,MALE,occurrenceRemarks withheld,2020,3,27,Australia,AU,New South Wales,-35.096731,150.069922,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-28.638017,152.978031,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011200,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.953195,152.187119,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-32.710132,152.065028,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-32.632623,151.957573,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-30.157302,152.72632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.417503,150.633029,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.39408,150.630687,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,1,2,Australia,AU,New South Wales,-29.489872,153.11057,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,11,Australia,AU,New South Wales,-29.489774,153.10342,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.42055,150.609379,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,11,7,Australia,AU,New South Wales,-34.016438,150.878445,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-29.485473,153.103527,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.368068,153.516363,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-29.485566,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907171A,1,,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-29.707214,152.878897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.423735,150.637346,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-36.153309,149.303101,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-28.554269,152.987212,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-28.849295,153.307114,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-29.488181,153.091961,EPSG:4326 +HUMAN_OBSERVATION,OPUR20050100,1,,occurrenceRemarks withheld,2023,10,1,Australia,AU,New South Wales,-32.374068,152.287347,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.192146,152.028885,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-28.329531,153.565744,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-36.255633,149.428853,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,2,18,Australia,AU,New South Wales,-32.706553,152.063741,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.469129,152.874173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.388837,150.6309,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.395825,150.642101,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-28.912407,152.794441,EPSG:4326 +HUMAN_OBSERVATION,OPJG19043000,1,,occurrenceRemarks withheld,2020,5,25,Australia,AU,New South Wales,-28.25854,152.50263,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220I,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-32.708907,152.061808,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.448992,150.515304,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022411,1,,occurrenceRemarks withheld,2021,11,9,Australia,AU,New South Wales,-32.734772,152.090111,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-31.933249,151.830311,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.739482,152.09716,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.439563,150.518486,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-29.01109,153.27058,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,4,25,Australia,AU,New South Wales,-31.443769,152.913278,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,MALE,occurrenceRemarks withheld,2024,4,8,Australia,AU,New South Wales,-34.023465,150.989985,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.445394,150.516129,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-28.640289,153.309398,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.493139,150.640289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.454163,150.520461,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.426446,150.604326,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-31.444132,152.15986,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-28.384411,153.561539,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,13,Australia,AU,New South Wales,-29.488508,153.094874,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.393848,150.640612,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,3,11,Australia,AU,New South Wales,-30.643615,151.414754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.420929,150.627917,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OPUR14011100,1,,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-29.372752,153.113079,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210O,1,,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-32.731163,152.085694,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,11,13,Australia,AU,New South Wales,-32.681773,151.655831,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.437828,150.516026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-34.447061,150.513903,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.427459,150.603546,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,3,5,Australia,AU,New South Wales,-32.706202,152.063559,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2024,6,20,Australia,AU,New South Wales,-30.365399,153.040201,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,19,Australia,AU,New South Wales,-32.214895,152.114827,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419617,150.611494,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-28.829328,153.231452,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,2,19,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.388886,150.623645,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-29.485267,153.104037,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-29.488546,153.092991,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.428854,150.615431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.446563,150.514255,EPSG:4326 +HUMAN_OBSERVATION,OPJG22081704,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.483459,152.692068,EPSG:4326 +HUMAN_OBSERVATION,OPUR21080904,1,,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-31.443157,152.925246,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.822718,153.310613,EPSG:4326 +HUMAN_OBSERVATION,OJJT03070100,1,MALE,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-29.8927,151.9593,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,7,24,Australia,AU,New South Wales,-32.719215,151.721917,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,23,Australia,AU,New South Wales,-30.629244,152.650812,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-29.667322,152.868061,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,2,7,Australia,AU,New South Wales,-29.485534,153.103763,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-29.482886,153.104471,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-29.489937,153.101183,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-28.620426,153.434589,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.46581,150.520422,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131Y,1,MALE,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-31.457087,152.921975,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-33.991206,150.884776,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,15,Australia,AU,New South Wales,-29.487502,153.091063,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081700,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-31.58959,152.167306,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-31.45149,152.913382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.387077,150.630787,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-34.131552,150.979002,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.429565,150.614899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.464015,150.521716,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.420948,150.627971,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-30.922055,153.063135,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-34.002523,150.870343,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-28.8515,153.31409,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-31.449129,152.908102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.448825,150.516876,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100A,1,,occurrenceRemarks withheld,2022,5,8,Australia,AU,New South Wales,-34.20052,150.787474,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.420081,150.634425,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,1,5,Australia,AU,New South Wales,-30.50624,152.92609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.426453,150.600996,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-34.101146,150.809396,EPSG:4326 +HUMAN_OBSERVATION,ODFK24101401,1,MALE,occurrenceRemarks withheld,2024,9,8,Australia,AU,New South Wales,-30.705455,151.648748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.452404,150.519969,EPSG:4326 +HUMAN_OBSERVATION,OGRJ01031200,1,,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-32.046018,152.532458,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.397717,150.622025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.413729,150.595768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.41801,150.632655,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-29.667322,152.868147,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-29.489573,153.103929,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.421808,150.638858,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,MALE,occurrenceRemarks withheld,2024,7,9,Australia,AU,New South Wales,-31.871261,152.296273,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-34.928517,150.142806,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-29.494334,153.094779,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,5,29,Australia,AU,New South Wales,-31.440221,152.904137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.418251,150.632572,EPSG:4326 +HUMAN_OBSERVATION,OPUR15021900;OJJS20070600,1,,occurrenceRemarks withheld,2021,2,19,Australia,AU,New South Wales,-29.493122,151.970795,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-32.223426,152.189959,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.418245,150.631778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.423817,150.637377,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-28.959008,153.393984,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,16,Australia,AU,New South Wales,-29.476871,153.10483,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-34.094584,150.979028,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.562399,153.13439,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,4,23,Australia,AU,New South Wales,-31.574742,152.813851,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.465546,150.520299,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,FEMALE,occurrenceRemarks withheld,2023,4,29,Australia,AU,New South Wales,-29.728067,152.93879,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.488937,150.637914,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.444292,152.889349,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.427869,150.600553,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.426781,150.60486,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,19,Australia,AU,New South Wales,-33.717201,150.784201,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.439485,150.515531,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.420332,150.627346,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-34.048304,150.996403,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.840581,153.360617,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.397447,153.55705,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022416,1,,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-32.706796,152.068562,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020602,1,,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-30.40352,151.560008,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.446679,150.512837,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040432,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-30.671226,152.818259,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.820088,153.273941,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.491215,150.639189,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-33.503703,150.702147,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-28.469144,153.042529,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-33.716327,150.784698,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210R,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-32.624381,151.819545,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082307,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.41061,152.993988,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-28.96395,153.31591,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-33.503703,150.702147,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.461982,150.522177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,13,Australia,AU,New South Wales,-34.437266,150.615932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.446596,150.514537,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.386234,150.625427,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,8,Australia,AU,New South Wales,-28.828331,153.288877,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,3,1,Australia,AU,New South Wales,-34.554766,146.402231,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210U,1,,occurrenceRemarks withheld,2020,11,21,Australia,AU,New South Wales,-32.710582,152.060767,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011005,1,FEMALE,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-31.987628,152.340568,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.430228,150.61006,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,9,2,Australia,AU,New South Wales,-34.757257,146.590836,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,12,18,Australia,AU,New South Wales,-30.189812,152.894797,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-31.440949,150.382552,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.384411,150.625337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.430111,150.60779,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002842,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-29.633965,152.812711,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-30.23035,152.93908,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,MALE,occurrenceRemarks withheld,2024,4,15,Australia,AU,New South Wales,-34.093484,150.984291,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.444253,152.885538,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210V,1,,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-32.708992,152.061703,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,7,7,Australia,AU,New South Wales,-29.667322,152.868147,EPSG:4326 +HUMAN_OBSERVATION,OJJS17072600,1,,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-30.540256,152.646584,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.454816,150.656769,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.431229,150.615646,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.729332,152.089312,EPSG:4326 +HUMAN_OBSERVATION,ODMP21121516,1,,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-31.729722,150.014167,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-29.479888,153.104235,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-32.743065,152.065691,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-30.047586,152.241946,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.385377,150.624484,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,10,10,Australia,AU,New South Wales,-31.444435,152.926647,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003856,1,,occurrenceRemarks withheld,2023,1,8,Australia,AU,New South Wales,-28.858713,153.312712,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-28.796339,153.370506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.449533,150.515777,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.438428,150.604343,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.447566,150.517914,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-33.773304,150.060051,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.44907,150.516498,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004191,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-29.016289,153.389441,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,17,Australia,AU,New South Wales,-29.485486,153.103635,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-29.478917,153.104155,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-31.476303,152.908694,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,10,28,Australia,AU,New South Wales,-31.914588,152.380171,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.390195,153.561418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.420529,150.609238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.398888,150.626603,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-31.469243,152.929333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.464937,150.522701,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.43808,150.616529,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-32.706428,152.063317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.466361,150.521831,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151F,1,,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-28.383974,153.562051,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-32.532721,151.847077,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-34.024033,150.987745,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.465782,150.52039,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-28.807154,153.339454,EPSG:4326 +HUMAN_OBSERVATION,OSYK02050800,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-32.60102,151.80526,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,12,4,Australia,AU,New South Wales,-32.706571,152.06372,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.459133,150.655766,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.630911,152.899636,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-28.651917,153.377297,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.067055,150.884811,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003858,1,MALE,occurrenceRemarks withheld,2023,3,16,Australia,AU,New South Wales,-28.820461,153.302722,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-28.587769,153.552943,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140U,1,,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-32.691094,151.692338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.387812,150.631484,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-30.8961,153.036423,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-29.489615,153.104417,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-29.667091,152.867966,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.458309,150.526173,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150U,1,,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-28.669577,153.523543,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-30.305679,153.099718,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102221,1,,occurrenceRemarks withheld,2020,9,25,Australia,AU,New South Wales,-32.71324,152.066612,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.665933,152.765461,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-30.255043,153.087703,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303280B,1,,occurrenceRemarks withheld,2023,7,6,Australia,AU,New South Wales,-32.748434,152.069221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.48561,150.636974,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,12,10,Australia,AU,New South Wales,-29.505784,152.824625,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.446968,150.515973,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.447547,150.517382,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,6,Australia,AU,New South Wales,-29.488793,153.093769,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OJJS18102201,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-28.726687,153.423169,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-29.692524,152.851464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.430807,150.612971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.452444,150.523712,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,27,Australia,AU,New South Wales,-29.490124,153.110522,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,7,1,Australia,AU,New South Wales,-31.449446,152.912034,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-29.834427,150.844837,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433298,150.607579,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-28.894616,153.410059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.465595,150.528058,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,1,9,Australia,AU,New South Wales,-31.630779,152.782339,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-30.083019,152.226817,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,6,16,Australia,AU,New South Wales,-28.647607,153.393232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.420111,150.631291,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.430989,150.616273,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-29.490245,153.108108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.420997,150.627719,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,3,18,Australia,AU,New South Wales,-31.438521,152.921646,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.466464,150.524245,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031508,1,FEMALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-28.824541,153.326028,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,12,17,Australia,AU,New South Wales,-31.453929,152.915662,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.418348,150.633821,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,12,16,Australia,AU,New South Wales,-31.924702,152.37242,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,4,28,Australia,AU,New South Wales,-32.706549,152.063642,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.433416,150.616378,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-34.483098,150.424455,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304170G,1,,occurrenceRemarks withheld,2023,3,28,Australia,AU,New South Wales,-28.647468,153.209291,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-30.416638,153.02477,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,1,4,Australia,AU,New South Wales,-31.484938,152.91426,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.446025,150.51303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.433918,150.606517,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-28.39833,153.55686,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,,occurrenceRemarks withheld,2023,5,20,Australia,AU,New South Wales,-28.960091,153.395145,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.43071,150.609818,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.459212,150.521379,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-30.351926,153.080272,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210Q,1,,occurrenceRemarks withheld,2021,1,31,Australia,AU,New South Wales,-32.722892,152.171948,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-31.25153,152.767875,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-34.448128,150.52392,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-28.230042,153.528013,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-31.943502,152.449444,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2022,11,6,Australia,AU,New South Wales,-34.066033,150.834934,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-28.397422,153.556726,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,2,12,Australia,AU,New South Wales,-31.443058,152.8933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.447326,150.518955,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,12,19,Australia,AU,New South Wales,-32.722484,152.07719,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,6,3,Australia,AU,New South Wales,-31.459395,152.924902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.394528,150.632871,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.43458,150.603528,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-31.448244,152.912661,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,3,3,Australia,AU,New South Wales,-28.850803,153.159167,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,5,Australia,AU,New South Wales,-33.707121,150.785956,EPSG:4326 +HUMAN_OBSERVATION,OSYK02050800,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-32.59988,151.67419,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,5,Australia,AU,New South Wales,-29.49011,153.107995,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,FEMALE,occurrenceRemarks withheld,2022,7,12,Australia,AU,New South Wales,-34.523494,150.56362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.446134,150.517075,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,12,Australia,AU,New South Wales,-31.894506,152.501737,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-28.993818,153.438617,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080902,1,,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-31.448905,152.920725,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050H,1,MALE,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-28.44216,153.013071,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002829,1,,occurrenceRemarks withheld,2022,9,3,Australia,AU,New South Wales,-29.484492,153.095904,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.425185,150.599781,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-33.718101,150.78439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.427302,150.604747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.404484,150.643294,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.426023,150.59793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.427284,150.604748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.447026,150.519726,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.447306,150.51309,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-29.479925,153.104085,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,1,Australia,AU,New South Wales,-29.490595,153.109374,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.388906,150.624232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.491561,150.638896,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-34.185742,150.791311,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-34.061451,150.871109,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.458402,152.89256,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-34.920722,150.145934,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-29.01109,153.27058,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,4,19,Australia,AU,New South Wales,-32.706452,152.063754,EPSG:4326 +HUMAN_OBSERVATION,OPJG18122002,1,,occurrenceRemarks withheld,2020,2,19,Australia,AU,New South Wales,-30.218507,152.792947,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.448706,150.5159,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-34.092453,150.813954,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.458307,150.529187,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-34.100016,150.972133,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,6,25,Australia,AU,New South Wales,-31.435036,152.895989,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030D,1,,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-28.854499,153.295296,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,11,14,Australia,AU,New South Wales,-31.471524,152.90667,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-28.857898,153.31578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.451977,150.517152,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-28.474523,152.995171,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250A,1,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.769076,146.574405,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.417623,150.603087,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-28.621703,153.001884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.464313,150.522632,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,20,Australia,AU,New South Wales,-29.490156,153.110527,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-29.485515,153.103849,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003978,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.679249,153.362495,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.435874,150.517063,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.072952,151.003336,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,1,30,Australia,AU,New South Wales,-31.194172,152.969835,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.424348,150.603559,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.4376,150.518133,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,8,23,Australia,AU,New South Wales,-31.686015,152.796342,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.560625,152.210253,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100316,1,,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-31.472569,152.89953,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.455219,150.519636,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,12,26,Australia,AU,New South Wales,-32.078899,151.890633,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,16,Australia,AU,New South Wales,-33.719098,150.782496,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003830,1,,occurrenceRemarks withheld,2023,2,14,Australia,AU,New South Wales,-28.66879,153.517743,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.460477,150.529983,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,3,17,Australia,AU,New South Wales,-34.090633,150.990088,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,23,Australia,AU,New South Wales,-28.84777,153.320897,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.399066,150.639574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.392702,150.635424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.429631,150.609969,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122002,1,,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-28.973013,153.404973,EPSG:4326 +HUMAN_OBSERVATION,OIXR16111000;OMFZ2303230D,1,MALE,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-34.100964,150.821777,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,30,Australia,AU,New South Wales,-29.491557,153.099772,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.429961,150.607054,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.42096,150.630462,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.488852,150.33606,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-31.442247,152.902133,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,6,3,Australia,AU,New South Wales,-33.596826,150.251059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.446811,150.518916,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.45999,152.92418,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100C,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,Queensland,-27.725482,153.189185,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.457516,150.659349,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004013,1,,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-28.871873,153.462903,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-31.434458,152.896127,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-29.490269,153.108151,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.388875,150.62445,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-29.002578,152.929268,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.453889,150.520295,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150P,1,,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-35.141087,150.067105,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.486325,150.636202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.492965,150.639238,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,12,11,Australia,AU,New South Wales,-31.458689,152.874279,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-29.384284,153.092835,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-31.127808,152.794157,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-31.915593,152.37486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.389539,150.629423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.462221,150.534634,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,4,13,Australia,AU,New South Wales,-31.468765,152.924902,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,1,Australia,AU,New South Wales,-29.489419,153.102964,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,18,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-31.555827,152.640191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.431877,150.611863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.420922,150.628004,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101300,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-29.713371,150.910308,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.412668,150.596832,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-29.490656,153.109337,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.821933,153.302389,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-31.452782,152.923867,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-30.874352,152.736874,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.450105,150.516413,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-29.490241,153.108231,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041307,1,,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-34.082896,150.840889,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-31.457742,152.926853,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.392665,150.639101,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.447171,150.513105,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.393894,150.640611,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-28.650719,153.621265,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-28.728127,153.450627,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.447368,150.518812,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.459502,150.521893,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003867,1,FEMALE,occurrenceRemarks withheld,2023,5,8,Australia,AU,New South Wales,-28.815186,153.317468,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-31.47526,152.91683,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.513507,150.007695,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270V,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-32.73374,151.96538,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,7,10,Australia,AU,New South Wales,-32.741931,151.942669,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,9,3,Australia,AU,New South Wales,-34.690474,146.46238,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-32.456803,151.769527,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-33.584083,150.6514,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.488299,150.637083,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.392853,150.639476,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-32.721993,152.078143,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.421876,150.636322,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-33.714053,150.785314,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.29884,149.323715,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070G,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-33.539997,149.68559,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040432,1,MALE,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.395676,150.64142,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-28.830391,153.217972,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433512,150.617126,EPSG:4326 +HUMAN_OBSERVATION,OGEM18052300,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.143337,150.794805,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070601,1,,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-34.353443,150.685416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.42923,150.614376,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.434686,150.606626,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-28.828381,153.280168,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.418181,150.597566,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-28.818095,153.290682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.437877,150.604304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.458059,150.613327,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-29.63245,152.899261,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.464905,150.522451,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-29.490133,153.107421,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OJJS20041402;OJJS20041409;OMFZ23033002,1,,occurrenceRemarks withheld,2022,5,23,Australia,AU,New South Wales,-31.831385,151.897794,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,5,4,Australia,AU,New South Wales,-36.581243,149.961801,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.396216,150.640872,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-31.469069,152.924419,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-28.824654,153.264264,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-30.511997,151.506959,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-28.54005,153.141199,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,23,Australia,AU,New South Wales,-31.479595,152.922013,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866891,153.343646,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.458032,150.613339,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-29.490096,153.100732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.420861,150.628115,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,3,1,Australia,AU,New South Wales,-32.768082,151.874878,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,27,Australia,AU,New South Wales,-29.490217,153.108108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.4559,150.657359,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060500,1,,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-28.840306,153.312092,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.471477,150.530497,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.433554,150.616995,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-32.706024,152.063595,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150Y,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.028927,151.045766,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.418489,150.633197,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-36.007611,149.371656,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.452805,150.517531,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-33.427547,150.925745,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433197,150.615786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.452913,150.5215,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,18,Australia,AU,New South Wales,-28.807715,153.427267,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,5,22,Australia,AU,New South Wales,-31.425182,152.843867,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,27,Australia,AU,New South Wales,-32.705935,152.063534,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.471203,150.529874,EPSG:4326 +HUMAN_OBSERVATION,OPJG1703020A,1,,occurrenceRemarks withheld,2023,1,25,Australia,AU,New South Wales,-37.366438,149.649028,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-29.031003,153.413643,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071003,1,,occurrenceRemarks withheld,2024,5,26,Australia,AU,New South Wales,-31.944193,152.414737,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,6,12,Australia,AU,New South Wales,-29.033992,153.394902,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041P,1,MALE,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-32.859442,151.555123,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.435528,150.615557,EPSG:4326 +HUMAN_OBSERVATION,OJJS12081504,1,MALE,occurrenceRemarks withheld,2020,6,27,Australia,AU,New South Wales,-32.485756,151.779136,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030R,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-30.644193,151.433442,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,1,16,Australia,AU,New South Wales,-28.610402,153.306645,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-28.260605,153.403899,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-29.629872,152.896425,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-29.485048,153.104146,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,1,Australia,AU,New South Wales,-31.475391,152.872153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.447182,150.515858,EPSG:4326 +HUMAN_OBSERVATION,ODMP21070805,1,,occurrenceRemarks withheld,2022,10,14,Australia,AU,New South Wales,-33.95807,150.9286,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.393151,150.644166,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003839,1,,occurrenceRemarks withheld,2023,3,20,Australia,AU,New South Wales,-28.762975,153.492577,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.394864,150.641856,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,3,8,Australia,AU,New South Wales,-34.091881,150.985764,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-31.641586,152.793261,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.465665,150.520382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.45019,150.516128,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-29.489619,153.120167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.418225,150.632595,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.56082,152.210153,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-29.488644,153.093554,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-34.447334,150.513111,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,10,Australia,AU,New South Wales,-34.986906,150.104747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.44775,150.517637,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-33.717027,150.784074,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,8,Australia,AU,New South Wales,-29.490245,153.108221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.386186,150.624341,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041B,1,,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-29.774595,151.091178,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-28.79922,153.585614,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072600;OPJG22072601,1,FEMALE,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-28.257909,153.400765,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.480124,150.533247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.447519,150.520005,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.437457,150.51953,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-29.485583,153.096537,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.821668,153.3033,EPSG:4326 +HUMAN_OBSERVATION,ODLA16053101,1,,occurrenceRemarks withheld,2024,5,12,Australia,AU,New South Wales,-34.112713,150.935874,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003997,1,,occurrenceRemarks withheld,2023,3,30,Australia,AU,New South Wales,-28.821349,153.301335,EPSG:4326 +HUMAN_OBSERVATION,OPUR14061800,1,MALE,occurrenceRemarks withheld,2024,1,23,Australia,AU,New South Wales,-32.25695,152.425949,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-29.477413,153.104498,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131C,1,,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-31.8524,152.400316,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.66255,153.61531,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.388243,150.630917,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,Queensland,-27.925369,153.066745,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-29.812936,152.807209,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-34.047966,150.999001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.451592,150.517262,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.39053,150.627046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.394371,150.642,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2024,1,8,Australia,AU,New South Wales,-31.573747,152.816706,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091709,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-34.024525,150.990984,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.431067,150.615172,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-28.823424,153.316454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.436125,150.607357,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030O,1,,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-30.912286,153.044309,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-31.863221,152.666458,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-32.248828,152.060906,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,5,30,Australia,AU,New South Wales,-28.598745,153.090803,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.430439,150.607498,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.445932,150.515111,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,26,Australia,AU,New South Wales,-28.821749,153.331243,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060500,1,,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-28.837037,153.316219,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-31.481547,152.915097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.446266,150.513828,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160F,1,,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-34.143171,150.790411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435985,150.615892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.451379,150.518313,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.391603,150.644329,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080904,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-34.040303,151.054228,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,1,21,Australia,AU,New South Wales,-31.93326,152.415158,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,MALE,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-32.728065,152.085467,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-29.477165,153.126154,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.430645,150.607905,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.490882,150.638731,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.400543,150.624088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.431288,150.60756,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.420895,150.630355,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.423771,150.637334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.441442,150.51778,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,4,18,Australia,AU,New South Wales,-32.707956,152.062288,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.424926,150.604064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-34.444069,150.602843,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.488243,150.637019,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,29,Australia,AU,New South Wales,-28.66979,153.4899,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011002,1,,occurrenceRemarks withheld,2024,1,23,Australia,AU,New South Wales,-31.468863,152.927121,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.454582,150.662435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.458861,150.664166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.465782,150.52039,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.429168,150.599232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.434842,150.616001,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,12,Australia,AU,New South Wales,-29.490231,153.108221,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.712419,152.781212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.421189,150.627376,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-31.450607,152.923014,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-32.18785,152.19875,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.448814,150.515886,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-32.713414,152.162077,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-28.647013,153.214727,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.17807,150.79581,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.389438,150.630252,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-30.41922,152.978134,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160J,1,,occurrenceRemarks withheld,2023,1,16,Australia,AU,New South Wales,-32.728301,152.106116,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-29.485188,153.104042,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-33.706131,150.786182,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-33.435893,150.710361,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.427946,150.526644,EPSG:4326 +HUMAN_OBSERVATION,ODMP21121516,1,,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-30.301056,149.018361,EPSG:4326 +HUMAN_OBSERVATION,ODMP21050505,1,,occurrenceRemarks withheld,2023,6,19,Australia,AU,New South Wales,-32.712202,151.768723,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-34.492082,150.472157,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152L,1,,occurrenceRemarks withheld,2022,12,20,Australia,AU,New South Wales,-29.015315,153.43068,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-31.972441,151.915437,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.959788,153.433927,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-34.492082,150.472157,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.418955,150.604833,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,MALE,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-29.493062,153.09246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.488095,150.635434,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,11,12,Australia,AU,New South Wales,-34.513975,150.548214,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-31.477972,152.927297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.3993,150.644179,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,4,13,Australia,AU,New South Wales,-32.7064,152.063698,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-34.20098,150.8133,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,5,30,Australia,AU,New South Wales,-29.48481,153.103977,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.446391,150.517307,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,7,23,Australia,AU,New South Wales,-31.55344,152.85141,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060500,1,,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-28.840427,153.314015,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.451556,150.517285,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,FEMALE,occurrenceRemarks withheld,2020,3,24,Australia,AU,New South Wales,-32.712226,152.160218,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.14645,150.79688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.463774,150.522735,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-31.422726,152.235288,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011003,1,,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-30.867833,152.911912,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,ODMP99111100,1,,occurrenceRemarks withheld,2023,7,21,Australia,AU,New South Wales,-32.732685,149.597672,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.45271,150.609028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.447216,150.513093,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404,1,,occurrenceRemarks withheld,2023,3,27,Australia,AU,New South Wales,-31.723834,152.164126,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-33.713945,150.78596,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2024,6,9,Australia,AU,New South Wales,-31.416215,152.746636,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.453464,150.518001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.448268,150.516065,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-32.242859,152.19256,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-31.919871,152.37945,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,10,Australia,AU,New South Wales,-29.48559,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-34.150303,150.824122,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-29.485263,153.10402,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-33.703693,150.78758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.437,150.603252,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-34.139954,150.790866,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-31.919202,152.378055,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.449143,150.518292,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.427304,150.600254,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,4,21,Australia,AU,New South Wales,-30.901921,153.064997,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040D,1,,occurrenceRemarks withheld,2023,12,16,Australia,AU,New South Wales,-34.04031,151.00447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.423163,150.636187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.426888,150.604813,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090405,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-32.731657,152.038578,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-33.713213,150.785538,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081118,1,,occurrenceRemarks withheld,2023,7,18,Australia,AU,New South Wales,-33.563918,150.668664,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.467985,150.520521,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,7,26,Australia,AU,New South Wales,-30.506281,152.924339,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-28.932925,153.476799,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-30.190244,153.134651,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.477486,150.53253,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.445828,150.51309,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.464748,150.522303,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-29.491931,153.096612,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.453576,150.518193,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,18,Australia,AU,New South Wales,-33.706001,150.78588,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-31.654347,152.806158,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435554,150.615523,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.095055,150.849716,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,6,7,Australia,AU,New South Wales,-31.429014,152.913249,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.471036,150.525187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.452565,150.519878,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,5,25,Australia,AU,New South Wales,-28.85211,153.290625,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.476926,150.532895,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-31.93309,152.412471,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-29.489582,153.103881,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.423798,150.637334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.463363,150.534938,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.434525,150.608981,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-29.48558,153.103784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.491962,150.639125,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-32.739729,151.939548,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-29.488686,153.103452,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-28.68808,153.52315,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503;ODFK23090504,1,,occurrenceRemarks withheld,2023,6,12,Australia,AU,New South Wales,-30.570134,151.71994,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-33.765331,150.010382,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,23,Australia,AU,New South Wales,-29.480588,153.08988,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.84178,152.759299,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041C,1,,occurrenceRemarks withheld,2022,7,23,Australia,AU,New South Wales,-29.722443,150.937434,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110J,1,,occurrenceRemarks withheld,2023,7,1,Australia,AU,New South Wales,-31.454822,152.924971,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,4,Australia,AU,New South Wales,-34.441341,150.613161,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.449253,150.515285,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-28.959507,153.394456,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.420681,150.627228,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,17,Australia,AU,New South Wales,-29.490208,153.109734,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.386438,150.625737,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-29.490605,153.108108,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-29.679519,152.875185,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-29.505802,152.824738,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-34.488637,150.473352,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-28.827998,153.219138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.465805,150.522414,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,20,Australia,AU,New South Wales,-31.131426,152.811792,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,3,3,Australia,AU,New South Wales,-31.63998,152.792962,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.439087,150.603475,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-29.490133,153.110533,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.418759,150.60263,EPSG:4326 +HUMAN_OBSERVATION,OCAM10010600,2,FEMALE,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.757557,146.564765,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-33.713373,150.785511,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-29.150028,153.26733,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.46607,150.521709,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060500,1,,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-28.837077,153.316266,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.285938,152.870792,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,17,Australia,AU,New South Wales,-29.490852,153.109294,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-32.730377,152.10991,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-29.489559,153.103924,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.388174,150.625035,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-28.571838,153.435675,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-29.490119,153.109776,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,1,Australia,AU,New South Wales,-31.452754,152.925879,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211E,1,,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-32.710696,152.072243,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,FEMALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-34.098826,150.808991,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-31.48522,152.914417,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.652367,152.808811,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-31.463092,152.795877,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-31.471145,152.917202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.424428,150.603023,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-29.666954,152.868758,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-34.016809,150.885909,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-29.487906,153.091741,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.981083,153.427361,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,20,Australia,AU,New South Wales,-31.439712,152.884514,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.452095,150.517192,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-29.485819,153.096591,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060W,1,,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-31.451391,152.915743,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-28.712244,153.332042,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-28.627709,153.434849,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050R,1,,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-32.589912,151.774437,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180Z,1,FEMALE,occurrenceRemarks withheld,2022,9,6,Australia,AU,New South Wales,-28.82111,153.3116,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220J,1,,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-32.634352,151.636855,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-28.814781,153.283294,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-28.82563,153.325204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.38831,150.626021,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,7,4,Australia,AU,New South Wales,-31.92625,152.353525,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,5,Australia,AU,New South Wales,-34.90814,150.05832,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-29.477502,153.104106,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,4,26,Australia,AU,New South Wales,-31.467655,152.905478,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-31.13455,150.04434,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-28.399282,153.555944,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111315,1,,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-32.658802,151.642998,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.658431,152.697129,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,29,Australia,AU,New South Wales,-33.703948,150.786461,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.426927,150.604965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.446712,150.516253,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032119,1,,occurrenceRemarks withheld,2022,12,20,Australia,AU,New South Wales,-32.729371,152.107255,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.488342,150.637463,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.44361,150.518445,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.437507,150.604717,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-30.24071,152.90598,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-31.917977,152.379693,EPSG:4326 +HUMAN_OBSERVATION,OJJS20040702,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-29.490185,153.110189,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070C,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-30.51253,152.92669,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180B,1,,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-28.825056,153.299584,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.864658,153.293132,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.493127,150.639233,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,12,26,Australia,AU,New South Wales,-34.097663,150.968363,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-28.37077,153.559427,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-29.489554,153.10387,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-29.489671,153.101864,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004214,1,MALE,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.649353,153.166184,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.441913,150.514784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.412458,150.601788,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.428596,150.601805,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180B,1,,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-28.825034,153.299634,EPSG:4326 +HUMAN_OBSERVATION,OPJG22081701,1,,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-31.998759,152.48052,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-28.809314,153.288292,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2022,2,18,Australia,AU,New South Wales,-34.428813,150.426888,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-33.77693,150.061644,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,25,Australia,AU,New South Wales,-31.447953,152.892179,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111325,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-31.451323,152.91318,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,4,27,Australia,AU,New South Wales,-31.461208,152.916619,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-34.094271,150.984248,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-201;SFOBS-410;SFOBS-413,1,,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-30.394456,152.964472,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-28.469062,152.442889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.386552,150.62743,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.418333,150.632614,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.422233,150.604207,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.423744,150.637324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.422045,150.636197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.463716,150.523869,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-31.443387,152.919855,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.470929,150.531003,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,FEMALE,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-28.888919,153.268125,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-31.936428,152.454265,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-33.491228,149.552133,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-29.480626,153.089719,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-36.590676,149.945176,EPSG:4326 +HUMAN_OBSERVATION,OJJS2006300F,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-29.679624,152.869955,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102500,1,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.775614,146.584958,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.394096,150.641736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.393091,150.644364,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.394564,150.644072,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-28.459546,153.041112,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-29.356404,152.859794,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-28.654604,153.54542,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,20,Australia,AU,New South Wales,-29.692524,152.851464,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-36.160621,149.345248,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-28.719432,153.434451,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.419925,150.638019,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,4,30,Australia,AU,New South Wales,-28.829497,153.233289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.465754,150.520315,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072703;OLHP23072704,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.595405,152.190633,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,3,Australia,AU,New South Wales,-29.487938,153.091376,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,3,Australia,AU,New South Wales,-29.485515,153.103559,EPSG:4326 +HUMAN_OBSERVATION,ODFK2408220C,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-29.682112,152.861601,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-30.785785,152.382276,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,2,Australia,AU,New South Wales,-29.490255,153.110147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.443283,150.517834,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.433868,150.60629,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,30,Australia,AU,New South Wales,-29.490815,153.109304,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-33.706359,150.786285,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.452102,150.524614,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-28.820919,153.302087,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.437762,150.606723,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.498724,150.582596,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-30.071263,152.247552,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131N,1,FEMALE,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-31.465471,152.927264,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.418514,150.633577,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.389816,150.627904,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,26,Australia,AU,New South Wales,-29.487668,153.091371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.430715,150.607762,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-29.692524,152.851464,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-28.646734,153.453198,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-31.485138,152.918126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.450035,150.516492,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-32.709113,152.06515,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.451321,150.515017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.488626,150.635364,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.427459,150.603546,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,6,Australia,AU,New South Wales,-29.487892,153.091103,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.453335,150.522293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.392396,150.633573,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-29.088994,153.125467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.396797,150.642041,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.295798,149.324337,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-31.43169,152.915403,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.418264,150.632735,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211B,1,,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-32.701665,152.064174,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,6,Australia,AU,New South Wales,-31.474159,152.898593,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.220759,152.193373,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866891,153.343646,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.424499,150.604327,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-28.855875,153.324366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.388263,150.631047,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-29.489699,153.104922,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-30.500021,152.901022,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031S,1,,occurrenceRemarks withheld,2023,5,15,Australia,AU,New South Wales,-31.471125,152.910311,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,18,Australia,AU,New South Wales,-32.766602,152.075901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.419531,150.611681,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,7,Australia,AU,New South Wales,-31.459238,152.923751,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.488077,150.519407,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-32.706769,152.063835,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-34.038268,150.870732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.453031,150.517546,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-28.487113,152.410285,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100H,1,FEMALE,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-34.027328,150.989327,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151G,1,FEMALE,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-28.880788,153.323748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.464159,150.522158,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-32.727197,152.084003,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-31.653604,152.81942,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-33.431245,150.614483,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-34.440199,150.618395,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-28.68841,153.603596,EPSG:4326 +HUMAN_OBSERVATION,ODLA17110400,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.084597,150.978676,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-31.936428,152.454265,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,10,2,Australia,AU,New South Wales,-31.922706,152.381175,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.41973,150.635359,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,3,Australia,AU,New South Wales,-28.660629,153.495959,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160B,1,,occurrenceRemarks withheld,2023,5,7,Australia,AU,New South Wales,-33.489028,149.398348,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427418,150.604722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.46477,150.527832,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.449205,150.516037,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,4,21,Australia,AU,New South Wales,-33.778608,150.100935,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.4531,152.904476,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040B,1,,occurrenceRemarks withheld,2024,3,14,Australia,AU,New South Wales,-32.275372,151.886119,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.454273,150.606883,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,6,13,Australia,AU,New South Wales,-32.858409,151.841101,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.393254,150.643892,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.885013,152.777302,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-29.490806,153.109283,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.420919,150.627874,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-31.932184,152.408923,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100401,1,,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-29.977542,153.225129,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-28.734899,153.475849,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.424816,150.602566,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.384048,150.622433,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.554597,149.949397,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-31.386864,150.406039,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031N,1,,occurrenceRemarks withheld,2023,7,1,Australia,AU,New South Wales,-31.459683,152.926877,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.448172,150.519333,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-29.48558,153.103806,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003988,1,MALE,occurrenceRemarks withheld,2023,7,24,Australia,AU,New South Wales,-28.388482,153.557353,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-29.476946,153.104396,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-28.828356,153.365264,EPSG:4326 +HUMAN_OBSERVATION,OJJS12110500,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-34.005716,150.901854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-34.438159,150.616853,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-31.490642,152.909022,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-31.761352,152.514736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.392845,150.633006,EPSG:4326 +HUMAN_OBSERVATION,OLHP2312140G,1,,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-29.721364,150.937896,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-29.489531,153.102706,EPSG:4326 +HUMAN_OBSERVATION,Obs_0229,1,FEMALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-31.45411,152.925302,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222G,1,,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-32.728656,152.037048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.419022,150.610097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.485573,150.637378,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-31.457591,152.921764,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-31.63917,152.790227,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050D,1,,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-36.228097,149.089203,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-33.713216,150.785662,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.43501,150.6158,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W;ODMP2202250O,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-32.766559,152.045481,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2024,3,15,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-29.088183,153.370661,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.423725,150.637303,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-28.842875,153.198681,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-31.818389,152.436467,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-30.214315,153.123887,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.457818,150.525066,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,MALE,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-34.112927,150.801163,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2023,3,1,Australia,AU,New South Wales,-29.184817,152.329499,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150G,1,MALE,occurrenceRemarks withheld,2020,3,28,Australia,AU,New South Wales,-35.096731,150.069922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.429634,150.614277,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.445886,150.513306,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160H,1,,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-34.060319,151.000349,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.465819,150.520432,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.446464,150.516902,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.539893,150.189109,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-29.489788,153.101209,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.384027,150.623195,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-29.449249,152.769485,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.446864,150.516161,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041Z,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-33.149909,149.690113,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-31.9144,152.37362,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-29.014133,153.017542,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,20,Australia,AU,New South Wales,-29.483481,153.09525,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,9,6,Australia,AU,New South Wales,-32.7647,152.1172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.486924,150.637329,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.389734,150.627851,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-32.635735,151.705196,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090807,1,,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.050017,150.996929,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190D,1,,occurrenceRemarks withheld,2023,2,10,Australia,AU,New South Wales,-32.547632,151.600439,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,10,Australia,AU,New South Wales,-28.260132,153.401778,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.485283,150.637299,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-28.783947,152.092394,EPSG:4326 +HUMAN_OBSERVATION,OVGI98110201,1,FEMALE,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-30.477665,151.739677,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,9,19,Australia,AU,New South Wales,-33.779232,150.099467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.388128,150.624526,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222O,1,,occurrenceRemarks withheld,2020,12,24,Australia,AU,New South Wales,-32.771163,151.943663,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.419643,150.611406,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-31.435946,152.880375,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-31.454536,152.926226,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-31.430976,152.894407,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-29.638267,152.832154,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,4,Australia,AU,New South Wales,-29.49017,153.109734,EPSG:4326 +HUMAN_OBSERVATION,OPJG09091000,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-30.109379,152.774605,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,1,12,Australia,AU,New South Wales,-28.661237,153.609404,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-33.716468,150.78491,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.464252,150.52271,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.421189,150.627376,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.422043,150.607846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.459945,150.525515,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-31.306324,152.866933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.465805,150.522414,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.872021,153.339182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.4357,150.607304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.397657,150.621733,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-34.436401,150.615956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.417694,150.603031,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-32.03858,152.405964,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012903,1,,occurrenceRemarks withheld,2023,12,5,Australia,AU,New South Wales,-31.489794,152.701348,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,12,Australia,AU,New South Wales,-33.713408,150.784532,EPSG:4326 +HUMAN_OBSERVATION,OVGI98110201,1,,occurrenceRemarks withheld,2022,2,5,Australia,AU,New South Wales,-30.47779,151.74064,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,20,Australia,AU,New South Wales,-33.703707,150.786719,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.493259,150.639023,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.422211,150.607667,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-30.043804,152.2405,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.423788,150.637312,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.418464,150.633785,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-29.514934,152.811499,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-29.480061,153.104128,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.93367,153.32981,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.466473,150.524212,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,21,Australia,AU,New South Wales,-33.717511,150.783631,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.428854,150.615431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.384681,150.623905,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.387409,150.631169,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,3,20,Australia,AU,New South Wales,-33.768894,150.06412,EPSG:4326 +HUMAN_OBSERVATION,OJJS19090309,1,,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-32.699654,152.06476,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.438766,150.604126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.465591,150.520298,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2021,12,25,Australia,AU,New South Wales,-34.5,150.563856,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210D,1,FEMALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.259978,153.39743,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,8,29,Australia,AU,New South Wales,-31.439154,152.898586,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.388227,150.631015,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.459142,150.5295,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-33.503703,150.702147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.385929,150.624555,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.432919,150.615848,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.485854,150.636063,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003876,1,,occurrenceRemarks withheld,2023,2,16,Australia,AU,New South Wales,-28.446426,153.053038,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,17,Australia,AU,New South Wales,-28.661299,153.609595,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866891,153.343646,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.387456,150.631243,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-33.717423,150.784145,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080307,1,FEMALE,occurrenceRemarks withheld,2022,4,5,Australia,AU,New South Wales,-28.948697,153.290554,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.459899,150.525451,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2024,3,17,Australia,AU,New South Wales,-30.436573,152.930406,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,20,Australia,AU,New South Wales,-33.705538,150.786686,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083000,1,,occurrenceRemarks withheld,2020,5,30,Australia,AU,New South Wales,-33.45018,150.71658,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR1511120M;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-28.54593,153.52954,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.049453,150.848589,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.397975,150.621387,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-30.488945,153.012908,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-30.450068,153.043613,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.492059,150.638991,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042F,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-34.055279,151.013656,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,10,Australia,AU,New South Wales,-33.709601,150.786066,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.388477,150.630932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.398444,150.640015,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.420023,150.610112,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-29.383336,153.363072,EPSG:4326 +HUMAN_OBSERVATION,OKAJ09082800,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-33.445362,150.621006,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240N,1,,occurrenceRemarks withheld,2022,5,1,Australia,AU,New South Wales,-32.722636,152.076805,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.441597,150.517384,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,18,Australia,AU,New South Wales,-29.493454,153.099787,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.4553,150.606875,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.388834,150.630704,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.446429,150.520037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-34.436391,150.615902,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-31.467422,152.909842,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-28.640453,153.000187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.459889,150.519193,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004256,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-28.840079,153.206394,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-29.676992,152.880381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.438977,150.604294,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.420457,150.635219,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.447765,150.513066,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.417999,150.597931,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041304,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-31.467024,152.892899,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,MALE,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-29.493104,153.092995,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,10,Australia,AU,New South Wales,-29.489596,153.103918,EPSG:4326 +HUMAN_OBSERVATION,ODFK2312070B,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-29.488485,153.112657,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,9,25,Australia,AU,New South Wales,-34.587106,150.591317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.437302,150.6053,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-28.648522,153.454912,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-31.12443,152.79793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.464417,150.521976,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.420988,150.626805,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-29.485043,153.103859,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222I,1,,occurrenceRemarks withheld,2021,1,3,Australia,AU,New South Wales,-32.728057,152.083349,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,3,13,Australia,AU,New South Wales,-29.772271,151.080776,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.385453,150.625123,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.452044,150.517335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.448625,150.515902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.431047,150.601703,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,5,Australia,AU,New South Wales,-31.475164,152.896968,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060D,1,,occurrenceRemarks withheld,2024,4,7,Australia,AU,New South Wales,-31.454119,152.925299,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-28.397271,153.557252,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.394638,150.642743,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,10,1,Australia,AU,New South Wales,-32.033369,151.849018,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.423834,150.60539,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.421898,150.627704,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,3,18,Australia,AU,New South Wales,-34.090893,150.98682,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-29.490189,153.108124,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090600,1,,occurrenceRemarks withheld,2023,8,7,Australia,AU,New South Wales,-33.567432,149.549994,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-29.491553,153.09975,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-33.9525,150.899382,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-28.372279,153.556602,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-31.126,152.797769,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.458395,150.525114,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,7,24,Australia,AU,New South Wales,-29.485828,153.103688,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-29.681698,152.933658,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003858,1,MALE,occurrenceRemarks withheld,2023,3,22,Australia,AU,New South Wales,-28.81949,153.302025,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-32.722788,152.076725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.455715,150.657593,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.446284,150.515134,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-31.494442,152.280284,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-31.94582,152.40417,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-31.927605,152.377985,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,18,Australia,AU,New South Wales,-29.4899,153.101285,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.541329,150.002505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-34.447266,150.513777,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-31.64232,152.79321,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001217,1,,occurrenceRemarks withheld,2020,1,,Australia,AU,New South Wales,-28.71389,153.599562,EPSG:4326 +HUMAN_OBSERVATION,OJJS20031101,1,,occurrenceRemarks withheld,2020,5,15,Australia,AU,New South Wales,-33.171111,151.067778,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2024,3,10,Australia,AU,New South Wales,-33.704938,149.560672,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.805797,153.342482,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2024,5,18,Australia,AU,New South Wales,-30.426799,152.953593,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,FEMALE,occurrenceRemarks withheld,2024,5,24,Australia,AU,New South Wales,-31.1123,152.7841,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-34.187288,150.788232,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,7,9,Australia,AU,New South Wales,-28.857761,153.1668,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.400298,150.639833,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.457406,150.659243,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.390102,150.631038,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-31.125618,152.801923,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.419144,150.610322,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.423771,150.605392,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-29.487439,153.090904,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-29.025463,153.286418,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,1,25,Australia,AU,New South Wales,-34.405156,150.507953,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030F,1,,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-31.786861,150.973867,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-30.518654,152.576341,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,12,26,Australia,AU,New South Wales,-29.623469,152.897471,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,8,Australia,AU,New South Wales,-33.710552,150.78551,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100607,1,,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-31.471752,152.926218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.420591,150.609182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.490635,150.638531,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-32.702123,152.064777,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.464194,150.52564,EPSG:4326 +HUMAN_OBSERVATION,OJJS12081504,1,MALE,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-32.56969,151.79902,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,,occurrenceRemarks withheld,2023,8,19,Australia,AU,New South Wales,-34.074582,150.834274,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.383524,150.623775,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.385937,150.624544,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.18344,153.003188,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.424868,150.602488,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.388822,153.564428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.439616,150.607453,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.418823,150.632752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.418939,150.632705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.397415,150.62782,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.409914,150.59665,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.465183,150.522389,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004110,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.637434,153.629579,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-31.47188,152.928246,EPSG:4326 +HUMAN_OBSERVATION,Obs_2505,1,,occurrenceRemarks withheld,2024,7,29,Australia,AU,New South Wales,-32.698008,151.765325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.490982,150.638303,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-34.9085,150.06455,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.43137,150.615022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.44753,150.516131,EPSG:4326 +HUMAN_OBSERVATION,ODFK23121105,1,,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-30.211706,152.540871,EPSG:4326 +HUMAN_OBSERVATION,OPJG20060402,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-34.29345,150.70031,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,2,12,Australia,AU,New South Wales,-30.35297,153.075675,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-29.489928,153.103366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.429464,150.616208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.465763,150.521653,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-28.998474,152.908943,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.443332,150.514492,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.395391,150.62991,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.471419,150.528975,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.423806,150.637301,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031501,1,,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-28.824171,153.3093,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-31.146344,150.122087,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.13669,150.79781,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131O,1,,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-31.651525,152.601403,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130O,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-31.509279,152.797833,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-29.485632,153.103774,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2022,7,19,Australia,AU,New South Wales,-31.643813,152.794224,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-30.35793,153.05698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.430111,150.616559,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-30.242155,152.884882,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.446703,150.515774,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,13,Australia,AU,New South Wales,-29.485632,153.103774,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080905,1,,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-31.293099,152.658078,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003940,1,,occurrenceRemarks withheld,2023,1,15,Australia,AU,New South Wales,-28.89182,153.22848,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.491936,150.639158,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,10,Australia,AU,New South Wales,-31.447654,152.925742,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110U,1,,occurrenceRemarks withheld,2023,11,12,Australia,AU,New South Wales,-31.454718,152.926653,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150H,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.221146,152.729144,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003871,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-28.786676,153.38445,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.805797,153.342482,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-28.394378,153.557603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.393995,150.63094,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.423871,150.637386,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.465763,150.521653,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-36.152128,149.35109,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-31.641562,152.793781,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.42132,150.626709,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.450957,150.522853,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003825,1,,occurrenceRemarks withheld,2023,2,12,Australia,AU,New South Wales,-28.82476,153.218514,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.488651,150.634308,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.452655,150.523912,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,10,Australia,AU,New South Wales,-28.258427,153.40078,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004180,1,FEMALE,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-28.662138,153.278692,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.452655,150.523912,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100L,1,,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-31.941279,152.408876,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,25,Australia,AU,New South Wales,-28.399591,153.556042,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,4,17,Australia,AU,New South Wales,-29.677883,152.87607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.447194,150.519536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.436431,150.609644,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.245812,152.759361,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.492652,150.638866,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003800,1,,occurrenceRemarks withheld,2023,3,20,Australia,AU,New South Wales,-28.489141,153.022335,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-34.194548,150.789578,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-31.644405,152.795197,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-31.675865,152.80582,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.438603,150.60684,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,23,Australia,AU,New South Wales,-29.490628,153.108167,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-32.401848,151.758368,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-34.068546,150.842335,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-33.706435,150.786346,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-29.48559,153.103779,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-29.490208,153.108194,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.389873,150.628032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.43458,150.606737,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.447803,150.517135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.427237,150.603302,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-28.868925,153.28477,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.453843,150.521146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.456402,150.657671,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.493066,150.638843,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,26,Australia,AU,New South Wales,-33.718624,150.783143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.44639,150.51414,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-29.490189,153.108113,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,25,Australia,AU,New South Wales,-29.487766,153.091098,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-31.466336,152.899836,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.449044,150.516554,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,2,Australia,AU,New South Wales,-29.487392,153.102706,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.388584,150.629461,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-29.489582,153.103876,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-29.49025,153.108097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.395659,150.642867,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.449233,150.515188,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.46377,150.523834,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.427681,150.605694,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-28.393697,153.559739,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.426944,150.604899,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.554597,149.949397,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.447125,150.513074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.433882,150.607943,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-29.489563,153.103913,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211S,1,,occurrenceRemarks withheld,2022,12,8,Australia,AU,New South Wales,-32.71155,152.06622,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,7,22,Australia,AU,New South Wales,-29.485781,153.103682,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,5,27,Australia,AU,New South Wales,-31.418317,152.753132,EPSG:4326 +HUMAN_OBSERVATION,ODMP2108060H,1,,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-31.949035,152.38252,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,4,5,Australia,AU,New South Wales,-31.947999,152.424916,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.386158,150.624298,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004136,1,,occurrenceRemarks withheld,2023,7,17,Australia,AU,New South Wales,-28.315525,153.531713,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.391947,150.644396,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.428876,150.61469,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222D,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-32.719607,152.126344,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.389994,150.627322,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-34.446757,150.517579,EPSG:4326 +HUMAN_OBSERVATION,OAVR24012900,1,,occurrenceRemarks withheld,2024,1,27,Australia,AU,New South Wales,-32.43428,149.846327,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2022,3,10,Australia,AU,New South Wales,-32.662939,152.171465,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-33.716202,150.784241,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122104,1,,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-32.73438,152.100605,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003949,1,,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-28.874355,153.278824,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-29.479869,153.104096,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-31.442521,152.901479,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.428863,150.615452,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,3,2,Australia,AU,New South Wales,-31.640093,152.792583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.459309,150.534611,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.53719,152.617496,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.397741,150.640035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.420618,150.609192,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-30.23946,152.90282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.437264,150.518448,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.991078,153.437486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.427294,150.600232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.447307,150.51888,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,FEMALE,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-36.264873,149.354414,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.437994,150.605215,EPSG:4326 +HUMAN_OBSERVATION,Obs_1523,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-36.156702,149.347109,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.737584,152.074307,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-29.492686,153.093315,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.223426,152.189959,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-34.061856,150.848803,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-34.08393,150.854036,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181Q,1,MALE,occurrenceRemarks withheld,2022,8,27,Australia,AU,New South Wales,-28.382031,153.5622,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.980759,153.407043,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,14,Australia,AU,New South Wales,-29.485557,153.1038,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-32.722495,152.077227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.46677,150.521068,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-34.02504,150.992049,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-34.303706,150.737887,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.183413,153.00311,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-31.27014,152.82517,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,9,17,Australia,AU,New South Wales,-34.018485,150.883858,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.805797,153.342482,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-28.818955,153.276439,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-32.228945,152.192632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.450023,150.516361,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,9,10,Australia,AU,New South Wales,-28.8389,153.205871,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.430895,150.615634,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.34141,152.606185,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-28.739989,153.10819,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2024,8,10,Australia,AU,New South Wales,-31.426437,152.887234,EPSG:4326 +HUMAN_OBSERVATION,ODMP22091201,1,,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-31.941959,152.443123,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,FEMALE,occurrenceRemarks withheld,2023,2,24,Australia,AU,New South Wales,-36.1536,149.37439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.417986,150.632841,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022608,1,,occurrenceRemarks withheld,2022,6,14,Australia,AU,New South Wales,-32.515849,151.682457,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.828887,153.323255,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.440646,150.517608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.454175,150.607898,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.447624,150.518097,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-223,1,,occurrenceRemarks withheld,2020,2,6,Australia,AU,New South Wales,-31.961785,152.417498,EPSG:4326 +HUMAN_OBSERVATION,ODMP10100606,1,,occurrenceRemarks withheld,2023,5,2,Australia,AU,New South Wales,-31.217538,151.349231,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-28.398847,153.556027,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2024,4,4,Australia,AU,New South Wales,-31.629316,152.786957,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-31.456363,152.914932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.464134,150.525348,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-31.465844,152.92823,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.39558,150.625751,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-31.26329,152.82929,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004012,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-28.798142,153.258453,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.465297,150.520916,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.421178,150.626811,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.872021,153.339182,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111319,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-30.53081,152.998686,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-34.396485,150.64317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-34.452024,150.606675,EPSG:4326 +HUMAN_OBSERVATION,OKEM14042900,1,MALE,occurrenceRemarks withheld,2023,4,12,Australia,AU,New South Wales,-34.101309,150.822066,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,,occurrenceRemarks withheld,2020,5,15,Australia,AU,New South Wales,-34.356454,150.686971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,19,Australia,AU,New South Wales,-34.44091,150.616916,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,6,19,Australia,AU,New South Wales,-29.030985,153.413438,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041I,1,,occurrenceRemarks withheld,2023,6,15,Australia,AU,New South Wales,-30.403008,152.975988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.418092,150.633208,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,21,Australia,AU,New South Wales,-29.489573,153.103913,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.386493,150.625768,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030S,1,,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-32.776174,152.081413,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.447304,150.518749,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.447299,150.520305,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-29.485571,153.103827,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-31.460843,152.895055,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.464934,150.52835,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-29.485314,153.104058,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121405,1,FEMALE,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-33.529732,149.449605,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.418426,150.633677,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-33.71865,150.782519,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111309,1,MALE,occurrenceRemarks withheld,2024,3,20,Australia,AU,New South Wales,-31.940165,152.409255,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,3,9,Australia,AU,New South Wales,-33.713695,150.785095,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,2,Australia,AU,New South Wales,-33.709177,150.785933,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-32.733265,152.10034,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.434452,150.606643,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.423817,150.637387,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,25,Australia,AU,New South Wales,-29.488854,153.093388,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.455214,150.658749,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.277245,153.334283,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-34.404632,150.643464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.431231,150.603776,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,1,Australia,AU,New South Wales,-31.452795,152.913307,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-31.459696,152.926621,EPSG:4326 +HUMAN_OBSERVATION,ODMP2302060A,1,,occurrenceRemarks withheld,2022,12,4,Australia,AU,New South Wales,-34.061264,150.999348,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.400243,150.639813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.494135,150.640533,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-34.18447,150.790816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.458275,150.659437,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122103,1,,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-30.88339,153.071137,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-31.933351,152.41535,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-30.296539,153.073287,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-28.625494,153.445223,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,12,19,Australia,AU,New South Wales,-31.44235,152.908451,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-34.02772,150.988732,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-29.489605,153.103913,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,12,26,Australia,AU,New South Wales,-34.028525,150.989011,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100303,1,MALE,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-35.088795,150.148745,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.419928,150.602477,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121102,1,MALE,occurrenceRemarks withheld,2023,12,8,Australia,AU,New South Wales,-31.454107,152.925113,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041304,1,,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-31.470657,152.891185,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.292067,149.32554,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-28.936208,153.17047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.445359,150.516195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.420554,150.609117,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2022,6,18,Australia,AU,New South Wales,-32.544025,151.609345,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-31.447286,152.892673,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.66741,152.867857,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.825211,153.315583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419107,150.610279,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,MALE,occurrenceRemarks withheld,2023,10,16,Australia,AU,New South Wales,-34.055558,150.838874,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.13853,152.811477,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2022,5,19,Australia,AU,New South Wales,-30.226366,152.632075,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-28.734248,153.546503,EPSG:4326 +HUMAN_OBSERVATION,OJJS19061100,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-32.311119,151.77941,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-34.399407,150.652116,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-34.113796,150.937136,EPSG:4326 +HUMAN_OBSERVATION,ODFK2404120I,1,,occurrenceRemarks withheld,2024,2,12,Australia,AU,New South Wales,-32.825211,151.218303,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-29.491618,153.099799,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.137865,152.795629,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.420627,150.609202,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-30.267407,153.124169,EPSG:4326 +HUMAN_OBSERVATION,ODMP99090100,1,,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-34.122943,150.972959,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.454082,150.520464,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180J,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-28.675864,153.547119,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,2,1,Australia,AU,New South Wales,-30.40561,152.93841,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,MALE,occurrenceRemarks withheld,2022,6,2,Australia,AU,New South Wales,-31.436547,152.905541,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.388635,150.624174,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-31.917783,152.384475,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.447797,150.515045,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-29.725906,152.929709,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.46431,150.522458,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.437076,150.602978,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,28,Australia,AU,New South Wales,-29.485314,153.103935,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-33.567198,150.682587,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.435352,150.521105,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020609,1,,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-34.044949,150.870275,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2024,2,3,Australia,AU,New South Wales,-31.918889,152.379287,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,16,Australia,AU,New South Wales,-29.491543,153.09974,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.441926,152.841123,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.431818,150.60748,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.461697,150.486827,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,2,28,Australia,AU,New South Wales,-31.433785,152.896265,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,3,Australia,AU,New South Wales,-33.711988,150.786012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.493303,150.639446,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.390131,150.627384,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,14,Australia,AU,New South Wales,-29.48566,153.103763,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.447973,150.517978,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-31.467471,152.915126,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110S,1,,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-31.44136,152.910643,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.455097,150.609852,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041301,1,MALE,occurrenceRemarks withheld,2021,1,3,Australia,AU,New South Wales,-34.298063,150.735614,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111505,1,,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-33.980476,150.991088,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.465726,150.520261,EPSG:4326 +HUMAN_OBSERVATION,OJJS18091203,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-28.566259,152.865584,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202,1,,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-30.643623,151.484799,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100305,1,,occurrenceRemarks withheld,2023,6,26,Australia,AU,New South Wales,-30.404843,152.866809,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031541,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-28.386918,153.564733,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140F,1,MALE,occurrenceRemarks withheld,2021,12,24,Australia,AU,New South Wales,-34.46879,150.421208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.454029,150.524503,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.427135,150.602239,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.423772,150.637421,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-31.42747,152.91361,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-33.413568,150.703279,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.427147,150.603316,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-29.490493,153.109476,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-33.716431,150.784909,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS;ODFK23090502,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-30.44822,151.8237,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154P,1,MALE,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-28.67904,153.278029,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.420255,150.631276,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-28.551728,153.055007,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251K,1,MALE,occurrenceRemarks withheld,2020,9,4,Australia,AU,New South Wales,-32.73332,152.00956,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-28.630671,153.449558,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.454045,150.5204,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-28.619466,153.118221,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-32.587629,151.783415,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.39869,150.640139,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.4222,150.637205,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.447285,150.513809,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002777,1,,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-29.493075,153.093785,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,2,18,Australia,AU,New South Wales,-31.4474,152.892113,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-29.486757,153.10331,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-28.39738,153.557292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.455248,150.606975,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.69032,153.60237,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.69032,153.60237,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-28.858628,153.281175,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.447307,150.51888,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.464186,150.522157,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-31.94582,152.40417,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-34.1883,150.71246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.436164,150.615843,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002777,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-29.492599,153.093383,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-28.92735,153.157975,EPSG:4326 +HUMAN_OBSERVATION,OPUR14011100,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-29.81128,152.824998,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.420367,150.636136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.399309,150.625536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.433477,150.616703,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.427135,150.604034,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,7,15,Australia,AU,New South Wales,-28.703269,153.53215,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181M,1,,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-28.882608,153.353433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,10,Australia,AU,New South Wales,-34.437818,150.616514,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.392204,150.633916,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OMFZ23033002;ODFK24051300,1,,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-33.250899,150.883228,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.428554,150.604233,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083005,1,,occurrenceRemarks withheld,2022,5,1,Australia,AU,New South Wales,-33.458229,149.407376,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021513,1,,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-31.427941,152.913069,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.418867,150.602627,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-28.809314,153.288292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.436609,150.519054,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.41937,150.635881,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.446017,150.514445,EPSG:4326 +HUMAN_OBSERVATION,OJJS17052901,1,,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-32.000968,151.823151,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041S,1,MALE,occurrenceRemarks withheld,2022,7,16,Australia,AU,New South Wales,-31.444673,152.915547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.426861,150.604314,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.471176,150.529875,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.488657,150.634188,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270F,1,,occurrenceRemarks withheld,2022,2,20,Australia,AU,New South Wales,-29.4798,152.3177,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-32.382287,149.826826,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.465735,150.52161,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,13,Australia,AU,New South Wales,-28.809314,153.288292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.449413,150.612376,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.420747,150.629674,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-34.447355,150.514634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.392785,150.639217,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.429251,150.614506,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-30.32532,153.10624,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080903,1,,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-31.459299,152.863224,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.414385,150.597077,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.465765,150.520412,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.409947,150.59741,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-28.389838,153.559492,EPSG:4326 +HUMAN_OBSERVATION,ODFK23122107;ODFK23122108,1,,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-34.563126,150.209959,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.447095,150.51956,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041307,1,MALE,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-34.073462,150.834686,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.457423,150.518482,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2021,3,,Australia,AU,New South Wales,-31.522447,150.796347,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.185057,153.005654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.462529,150.535583,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.809314,153.288292,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.189459,150.798743,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220G,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-32.729472,152.084295,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-29.490222,153.110313,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.231058,153.491708,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.42105,150.628098,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2020,3,7,Australia,AU,New South Wales,-29.667396,152.867846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.42677,150.604284,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012908,1,,occurrenceRemarks withheld,2023,12,5,Australia,AU,New South Wales,-31.453849,152.925408,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.418461,150.633132,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,12,24,Australia,AU,New South Wales,-28.690047,153.608012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.465733,150.522383,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-30.325185,152.802126,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-28.387719,153.564237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.398669,150.645121,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.432821,150.614992,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-28.994789,153.278803,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,1,30,Australia,AU,New South Wales,-28.400362,153.557385,EPSG:4326 +HUMAN_OBSERVATION,OJJS19022501;ODMP21050503,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-32.714185,151.780333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.489349,150.63873,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.45521,150.519625,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153S,1,,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-28.819149,153.278539,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2023,4,7,Australia,AU,New South Wales,-32.763595,152.076416,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-32.23975,152.186704,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.446502,150.514355,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-29.662824,152.878731,EPSG:4326 +HUMAN_OBSERVATION,OPUR14061300,1,,occurrenceRemarks withheld,2021,12,8,Australia,AU,New South Wales,-32.35519,149.807846,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-29.48559,153.103811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.431047,150.613704,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.462307,150.549897,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-29.490437,153.108012,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,13,Australia,AU,New South Wales,-29.485113,153.104037,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-31.45331,152.907545,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-28.371592,153.557729,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.455482,150.60785,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-31.186681,152.981559,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,28,Australia,AU,New South Wales,-28.827692,153.297816,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-31.593183,152.840003,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.437677,150.604233,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,2,5,Australia,AU,New South Wales,-31.414552,152.896105,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-31.826522,152.423251,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.420633,150.630797,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.388924,150.62422,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-33.145764,151.072583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435682,150.521367,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.476195,150.533297,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-33.704611,149.560247,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.450767,150.515697,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.447583,150.517424,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031T,1,MALE,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-31.443489,152.889456,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,24,Australia,AU,New South Wales,-33.710839,150.78508,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-34.432369,150.612165,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-28.398661,153.557648,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.419956,150.635407,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.432329,150.605942,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.447242,150.513049,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.45968,150.516435,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-31.449383,152.879669,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.420954,150.626893,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.068546,150.842335,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-28.830771,153.283377,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.421189,150.627366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.420895,150.628037,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040414,1,MALE,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-29.68017,152.87316,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130J,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-31.451443,152.914421,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003987,1,,occurrenceRemarks withheld,2023,2,25,Australia,AU,New South Wales,-28.620414,153.537089,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-29.480439,153.104155,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.449455,150.515453,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.439508,150.607467,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,5,25,Australia,AU,New South Wales,-28.257786,153.400679,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.452547,150.519911,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,2,4,Australia,AU,New South Wales,-31.446912,152.9063,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031520,1,,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-28.815375,153.313872,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.464167,150.522517,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,3,17,Australia,AU,New South Wales,-34.133604,150.974941,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.465748,150.52136,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042J,1,FEMALE,occurrenceRemarks withheld,2023,1,18,Australia,AU,New South Wales,-34.362145,150.502522,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,9,Australia,AU,New South Wales,-28.712208,153.290026,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100A,1,,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.194366,150.78954,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.840454,153.367731,EPSG:4326 +HUMAN_OBSERVATION,OPJG22120100,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-32.275615,152.237973,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.435056,150.606659,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,31,Australia,AU,Queensland,-27.736088,153.17289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.447137,150.515859,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.46611,150.521893,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.886464,153.300206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.465701,150.520403,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-30.296317,152.621569,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-29.490156,153.109728,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002813,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-29.309753,153.20044,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.453498,150.524998,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,29,Australia,AU,New South Wales,-34.440781,150.616789,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,12,Australia,AU,New South Wales,-29.479795,153.104224,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-29.492498,153.091954,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,7,Australia,AU,New South Wales,-29.485664,153.103677,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.491767,150.639272,EPSG:4326 +HUMAN_OBSERVATION,OPUR20021302,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-32.73534,152.04132,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-36.541583,150.016902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.428602,150.600271,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060502,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-30.338411,153.078294,EPSG:4326 +HUMAN_OBSERVATION,OPJG23060600,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-30.750399,152.684792,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.470074,150.528884,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-28.597171,153.398422,EPSG:4326 +HUMAN_OBSERVATION,OJJS06031407,1,,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-36.056721,149.27475,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,4,5,Australia,AU,New South Wales,-29.071746,153.087117,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.680336,149.96634,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.68121,153.60155,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150K,1,,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-31.938105,152.404042,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,3,9,Australia,AU,New South Wales,-28.85141,153.310945,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-31.451278,152.922335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-34.399783,150.647765,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.386752,150.625163,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.389863,150.628022,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-29.485188,153.104031,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-29.488317,153.110238,EPSG:4326 +HUMAN_OBSERVATION,OLHP2312140D,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-34.773031,150.03079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.389285,150.631192,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-32.039002,152.481178,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,MALE,occurrenceRemarks withheld,2024,9,4,Australia,AU,New South Wales,-30.290327,152.699508,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220O,1,,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-32.728504,152.106056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.397351,150.627789,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060502,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-30.338457,153.078333,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,26,Australia,AU,New South Wales,-33.705566,150.786702,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-31.443649,152.884757,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031N,1,,occurrenceRemarks withheld,2023,5,12,Australia,AU,New South Wales,-31.459683,152.926877,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-31.630221,152.783602,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-31.44848,152.878917,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,5,Australia,AU,New South Wales,-29.488055,153.092111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.384456,150.622541,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-34.041211,150.985955,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-31.925813,152.361746,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-33.71855,150.78309,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-32.747836,152.072182,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002776,1,FEMALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-29.679161,152.869805,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.421465,150.637454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.465859,150.520594,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040G,1,,occurrenceRemarks withheld,2024,3,18,Australia,AU,New South Wales,-32.361361,152.244357,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-31.467655,152.905478,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-31.448981,152.919855,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-29.490255,153.108205,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260C,1,,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-32.710847,152.060681,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-33.491128,149.5521,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-28.64023,153.55418,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-31.44371,152.92442,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.386508,150.625615,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-29.490824,153.109224,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-30.421837,152.979279,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.465854,150.520366,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-29.4853,153.104058,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022503,1,,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-32.714189,152.066335,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-28.863396,153.292036,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,23,Australia,AU,New South Wales,-32.39707,151.985413,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-29.48559,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2022,2,9,Australia,AU,New South Wales,-29.834366,150.844948,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.432671,150.611906,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,17,Australia,AU,New South Wales,-29.485492,153.10357,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.420798,150.609187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435467,150.602784,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031104,1,,occurrenceRemarks withheld,2024,1,21,Australia,AU,New South Wales,-32.681822,151.712051,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.471158,150.529864,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.447153,150.513095,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,18,Australia,AU,New South Wales,-29.008668,153.312767,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.389233,150.626637,EPSG:4326 +HUMAN_OBSERVATION,OLHP23082400,1,,occurrenceRemarks withheld,2020,1,18,Australia,AU,New South Wales,-32.663575,152.174569,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,FEMALE,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-28.387165,153.566825,EPSG:4326 +HUMAN_OBSERVATION,F-OBS000392,1,MALE,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-30.235831,152.901111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.491609,150.639058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419749,150.635402,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-29.489605,153.104407,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.451316,150.519653,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.397229,150.646195,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-31.192743,152.969997,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-29.485552,153.103457,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-29.489708,153.105179,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,4,13,Australia,AU,New South Wales,-31.170858,150.291198,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-29.490021,153.101258,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.42065,150.630275,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.724502,152.073219,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-28.81859,153.312326,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,6,Australia,AU,New South Wales,-29.48344,153.095227,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2020,7,9,Australia,AU,New South Wales,-28.586366,153.553153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.491338,150.638554,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-30.103476,152.131383,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,25,Australia,AU,New South Wales,-29.490231,153.108151,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,FEMALE,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-28.260311,153.40292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.435065,150.606647,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,6,14,Australia,AU,New South Wales,-28.793723,153.359057,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.435674,150.616565,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-29.4887,153.101977,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,14,Australia,AU,New South Wales,-29.490269,153.10814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.492652,150.638898,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,9,Australia,AU,New South Wales,-28.881002,153.26476,EPSG:4326 +HUMAN_OBSERVATION,OADB08121804,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-32.646413,152.16387,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,FEMALE,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-28.947304,153.236747,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,7,Australia,AU,New South Wales,-29.483306,153.104246,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-28.587252,153.446492,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.39576,150.62618,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2024,6,13,Australia,AU,New South Wales,-29.609182,150.861544,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-28.636784,153.46123,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-34.49004,150.540785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.388098,150.63228,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-29.490427,153.109422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.446355,150.517308,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-29.02463,153.28799,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-29.49187,153.096569,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.437308,150.605626,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.465689,150.521579,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-29.489605,153.104004,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.469548,150.527354,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150U,1,,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-31.732206,152.697671,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-31.650768,152.82545,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.429609,150.618108,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-28.328913,153.496278,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-30.23862,152.90328,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-32.761925,151.605529,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,18,Australia,AU,New South Wales,-28.864728,153.29271,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,2,9,Australia,AU,New South Wales,-29.489979,153.101327,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.438023,150.606672,EPSG:4326 +HUMAN_OBSERVATION,OJNV23032200,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-36.580507,150.02594,EPSG:4326 +HUMAN_OBSERVATION,OPJL98052800,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-31.108837,152.074764,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.465745,150.52124,EPSG:4326 +HUMAN_OBSERVATION,ODMP21041902,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-30.559131,152.65331,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.423822,150.605206,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021507,1,,occurrenceRemarks withheld,2024,6,24,Australia,AU,New South Wales,-30.887588,153.071835,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.395444,150.629898,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-31.480393,152.921184,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.463833,150.525193,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.427293,150.604748,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-31.474449,152.870746,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.424492,150.603087,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.488166,150.635334,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,2,1,Australia,AU,New South Wales,-31.930854,152.295306,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200L,1,,occurrenceRemarks withheld,2024,3,29,Australia,AU,New South Wales,-34.010121,151.000423,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,6,Australia,AU,New South Wales,-28.325282,153.406923,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2024,3,25,Australia,AU,New South Wales,-33.526924,150.658893,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.420763,150.609209,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-29.485548,153.103736,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,21,Australia,AU,New South Wales,-29.485585,153.103817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.440333,150.51778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.458309,150.526173,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-29.726432,152.929804,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,1,2,Australia,AU,New South Wales,-31.475595,152.912383,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121501,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-34.442891,150.52849,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.420336,150.611354,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021307,1,,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-31.443321,152.925196,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.452333,150.523117,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.466592,150.519865,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.437649,150.606443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.418972,150.609402,EPSG:4326 +HUMAN_OBSERVATION,OJSM22041200,1,,occurrenceRemarks withheld,2022,3,29,Australia,AU,New South Wales,-30.434,152.836,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-31.952617,152.306361,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-30.051427,152.245688,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,13,Australia,AU,New South Wales,-29.489386,153.102706,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-29.485805,153.103688,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-28.969183,153.434038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.452328,150.522856,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,3,5,Australia,AU,New South Wales,-29.63155,152.899947,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-34.139925,150.793255,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.43692,150.603298,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-28.687767,153.607389,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.388062,150.632281,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.399181,150.618503,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.426122,150.598851,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.451556,150.517263,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-28.500347,152.975268,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.420697,150.630817,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102228,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-32.77928,152.114537,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419,150.610369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-34.439117,150.615161,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,2,15,Australia,AU,New South Wales,-28.604396,153.430628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.45409,150.52042,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2023,1,8,Australia,AU,New South Wales,-31.952617,152.306361,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-29.483465,153.104149,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-28.580872,153.15582,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,9,Australia,AU,New South Wales,-29.490241,153.109793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.394469,150.642868,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.389691,150.627015,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090M,1,,occurrenceRemarks withheld,2024,7,10,Australia,AU,New South Wales,-31.445007,152.916547,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-30.333952,153.055997,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-31.459341,152.925678,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100515,1,,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-31.473952,152.900928,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.420658,150.630666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.392899,150.632982,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-30.189687,152.778371,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,10,Australia,AU,New South Wales,-31.629637,152.786901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.437943,150.604433,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070F,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-30.400392,152.867257,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.468106,150.529192,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-28.257841,153.404973,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,24,Australia,AU,New South Wales,-29.47781,153.104299,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080104,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-34.01781,150.88492,EPSG:4326 +HUMAN_OBSERVATION,OMZS17080800,1,MALE,occurrenceRemarks withheld,2022,1,11,Australia,AU,New South Wales,-34.537204,150.508868,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,15,Australia,AU,New South Wales,-28.818562,153.298429,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070T,1,,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-28.767981,153.499022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.392785,150.639217,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.421525,150.603911,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-31.440501,152.925264,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-31.460963,152.91523,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,2,25,Australia,AU,New South Wales,-30.508175,151.590909,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003907,1,,occurrenceRemarks withheld,2023,5,18,Australia,AU,New South Wales,-28.823774,153.321887,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,5,21,Australia,AU,New South Wales,-28.86467,153.292879,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010703,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-29.726744,152.930642,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,7,24,Australia,AU,New South Wales,-34.047161,150.998079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.488071,150.635543,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-28.65505,153.59019,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-28.809314,153.288292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.455229,150.659032,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-31.450524,152.90058,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,1,26,Australia,AU,New South Wales,-31.202958,152.964767,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,15,Australia,AU,New South Wales,-29.485585,153.103811,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-30.43127,153.03296,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090N,1,MALE,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-34.026547,150.96718,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-32.706212,152.063336,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071006,1,,occurrenceRemarks withheld,2024,6,21,Australia,AU,New South Wales,-31.957479,152.353872,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-30.413154,152.996446,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.386198,150.625439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,5,Australia,AU,New South Wales,-34.437693,150.616551,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.430944,150.615339,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.398829,150.643159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.454781,150.52336,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,7,Australia,AU,New South Wales,-29.489582,153.103715,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-29.489988,153.101188,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.884771,152.795899,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070L,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-32.732711,152.105314,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122106,1,MALE,occurrenceRemarks withheld,2024,2,24,Australia,AU,New South Wales,-28.831073,153.279661,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-28.883603,153.193545,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,27,Australia,AU,New South Wales,-29.490208,153.110318,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.293914,152.061841,EPSG:4326 +HUMAN_OBSERVATION,ODMP22111606,1,,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-32.690949,151.709268,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-34.055546,150.997312,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-29.726418,152.928432,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.443836,150.514466,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,3,16,Australia,AU,New South Wales,-28.847295,153.301064,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,13,Australia,AU,New South Wales,-33.717556,150.783747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.390645,150.627412,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.078232,150.839671,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,1,24,Australia,AU,New South Wales,-31.468031,152.930413,EPSG:4326 +HUMAN_OBSERVATION,OJJS20020408,1,FEMALE,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-34.148644,150.791327,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.400036,150.644974,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.425653,150.602031,EPSG:4326 +HUMAN_OBSERVATION,OSYK02050800,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-28.4161,152.35359,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.428966,150.600435,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-32.673424,151.67491,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,6,3,Australia,AU,New South Wales,-28.815314,153.31231,EPSG:4326 +HUMAN_OBSERVATION,OSYK02050800,1,,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-31.6704,152.18685,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.391254,150.644948,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.494137,150.640599,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-31.162202,152.92911,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-31.447732,152.894418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.420578,150.628416,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-28.397422,153.556726,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.393958,150.630864,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-31.435961,152.908138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.45312,150.519263,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.465101,150.522337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.493181,150.639188,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-34.442124,150.515834,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101Y,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-31.436814,152.908596,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-33.704725,150.78564,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-30.921885,153.083638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.420633,150.630797,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.433106,150.607421,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-28.923353,153.262924,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.386769,150.625119,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.429631,150.609969,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031809,1,,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-28.93965,153.133676,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,3,24,Australia,AU,New South Wales,-32.712226,152.160218,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,FEMALE,occurrenceRemarks withheld,2024,8,27,Australia,AU,New South Wales,-31.785832,152.709618,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-28.864668,153.293136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.397639,150.621755,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.417648,150.633057,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050C,1,,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-31.452747,152.913033,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050C,1,,occurrenceRemarks withheld,2024,2,9,Australia,AU,New South Wales,-31.443448,152.898899,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-31.478123,152.915616,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-34.072147,150.847597,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.678008,152.749385,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-32.226267,152.189573,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-29.489274,153.101682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.422955,150.638521,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.885013,152.777302,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004103,1,,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-28.68614,153.527275,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.446599,150.518204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.417668,150.603075,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.420636,150.609159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.422687,150.637223,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,6,28,Australia,AU,New South Wales,-28.259616,153.402546,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,4,25,Australia,AU,New South Wales,-28.68361,153.5218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.41197,150.596189,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-36.447255,149.959252,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-34.46,150.566447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.430109,150.607692,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.423789,150.637356,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.419374,150.610097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.419716,150.611448,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002761,1,MALE,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-29.611382,152.882284,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.428649,150.600346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.384481,150.625227,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-29.490418,153.10813,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-28.6762,153.3234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.419775,150.632584,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.494875,150.641024,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,12,8,Australia,AU,New South Wales,-32.71872,152.074818,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.392712,150.639187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.469587,150.526623,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.466384,150.522952,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-28.823818,153.316272,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,8,Australia,AU,New South Wales,-33.71637,150.784785,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,ODFK2307190M,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-29.642008,152.831723,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-34.213206,150.799298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.419175,150.603652,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,3,Australia,AU,New South Wales,-29.48989,153.101199,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-31.998166,152.261915,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2020,4,25,Australia,AU,New South Wales,-31.380947,152.743944,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190N,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-31.436921,152.908584,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-28.588189,153.553938,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.434961,150.609131,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040427,1,FEMALE,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-33.605481,149.435857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.491602,150.639135,EPSG:4326 +HUMAN_OBSERVATION,ODMP22070803,1,,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-29.48375,153.104165,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,23,Australia,AU,New South Wales,-28.719419,153.43454,EPSG:4326 +HUMAN_OBSERVATION,OJJS20080303,1,,occurrenceRemarks withheld,2021,1,6,Australia,AU,New South Wales,-32.593387,151.770315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.426123,150.597992,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,5,6,Australia,AU,New South Wales,-31.454793,152.926223,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210D,1,,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-32.76419,152.036062,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.450097,150.516435,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,7,4,Australia,AU,New South Wales,-28.258627,153.401967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435839,150.520187,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-32.70553,152.063556,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-29.487035,153.090757,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.498782,152.869553,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,,occurrenceRemarks withheld,2023,5,29,Australia,AU,New South Wales,-32.23868,152.19028,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,12,28,Australia,AU,New South Wales,-31.443581,152.920016,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.397894,150.621411,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031507,1,,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-28.702086,153.608519,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-33.701284,149.55855,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.420572,150.60915,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-33.983463,151.003427,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-31.464354,152.870687,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.44623,150.513797,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151D,1,MALE,occurrenceRemarks withheld,2022,7,24,Australia,AU,New South Wales,-29.02022,153.395041,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-29.013101,153.39756,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.3934,150.644453,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-34.44651,150.520035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.43531,150.618251,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.469749,150.516376,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,7,Australia,AU,New South Wales,-29.490553,153.109385,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-31.46628,152.90942,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-33.991958,150.89266,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-30.413154,152.996446,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003905,1,MALE,occurrenceRemarks withheld,2023,6,25,Australia,AU,New South Wales,-28.683609,153.611353,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.38976,150.628264,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.416259,150.596544,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-29.488686,153.093458,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.421786,150.636324,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,6,Australia,AU,New South Wales,-32.706391,152.063194,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-31.64356,152.794232,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121500,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.403632,153.003268,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.241392,152.824668,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-28.632728,153.586079,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032208,1,,occurrenceRemarks withheld,2023,3,12,Australia,AU,New South Wales,-33.674475,149.465176,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.2184,149.3099,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,20,Australia,AU,New South Wales,-32.175474,152.091637,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,3,Australia,AU,New South Wales,-28.80604,153.31792,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2023,12,5,Australia,AU,New South Wales,-31.457164,152.90803,EPSG:4326 +HUMAN_OBSERVATION,F-OBS000392,1,,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-30.283432,153.102628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.386145,150.62456,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,12,,Australia,AU,New South Wales,-36.154326,149.327888,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221A,1,,occurrenceRemarks withheld,2022,6,18,Australia,AU,New South Wales,-32.722469,152.077119,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003856,1,,occurrenceRemarks withheld,2023,6,3,Australia,AU,New South Wales,-28.874221,153.27887,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-29.490068,153.098989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.418435,150.633688,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-34.01791,150.885636,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.438967,150.604251,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.466087,150.52209,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,20,Australia,AU,New South Wales,-31.640473,152.792947,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250J,1,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.763841,146.601829,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.411873,150.595854,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,11,28,Australia,AU,New South Wales,-31.470638,152.818075,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,FEMALE,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-28.943569,153.316318,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.465743,150.52025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.453958,150.521001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.396225,150.640883,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.491687,150.472427,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-29.48976,153.101671,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-29.037765,153.400945,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-30.157302,152.72632,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.066475,150.88678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.38922,150.628758,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,5,31,Australia,AU,New South Wales,-31.477621,152.912612,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-33.13453,151.100431,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.40731,150.53168,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-34.447717,150.514667,EPSG:4326 +HUMAN_OBSERVATION,OLHP2312140B,1,,occurrenceRemarks withheld,2024,9,26,Australia,AU,New South Wales,-31.875943,152.64838,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.559404,149.938213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.453124,150.519883,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23041909,1,,occurrenceRemarks withheld,2023,1,23,Australia,AU,New South Wales,-32.364632,152.475404,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.449152,150.516529,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.435435,150.603427,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-31.979319,152.361869,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,1,29,Australia,AU,New South Wales,-31.92441,152.35899,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-31.630044,152.784125,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,10,24,Australia,AU,New South Wales,-31.463787,152.873902,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,3,3,Australia,AU,New South Wales,-32.67,151.726,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031543,1,,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-28.856083,153.292244,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.452288,150.523107,EPSG:4326 +HUMAN_OBSERVATION,OJJS19072307,1,,occurrenceRemarks withheld,2022,2,4,Australia,AU,New South Wales,-34.131708,150.753039,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.436993,150.603328,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-29.490245,153.10821,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-34.046402,151.007449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.447144,150.513095,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,3,4,Australia,AU,New South Wales,-28.694331,153.494884,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160B,1,,occurrenceRemarks withheld,2024,9,28,Australia,AU,New South Wales,-33.48917,149.398288,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.447144,150.513095,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,MALE,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-31.4573,152.9185,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.428978,150.614394,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.452567,150.519573,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-32.7274,152.079082,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900;OMRF21071000,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.086979,150.975593,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-28.651032,153.342176,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,24,Australia,AU,New South Wales,-29.487889,153.091156,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,4,Australia,AU,New South Wales,-28.879875,153.2627,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-31.458473,152.893403,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.452364,150.522887,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,1,18,Australia,AU,New South Wales,-31.46969,152.90409,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-28.481426,152.978256,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083002,1,,occurrenceRemarks withheld,2022,4,23,Australia,AU,New South Wales,-34.069644,150.835142,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.460141,150.517379,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.425653,150.602031,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-29.489232,153.103302,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.454028,150.520465,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.421384,150.62674,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152U,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-28.555115,153.076791,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004271,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-28.651513,153.384203,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.435323,150.615214,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-29.490703,153.10932,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-31.452402,152.925961,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-28.65919,153.50421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.428736,150.600169,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.432239,150.605499,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,14,Australia,AU,New South Wales,-28.400244,153.556979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.420145,150.627482,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040432,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.374914,153.017126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.388469,150.630965,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-34.113796,150.937136,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,FEMALE,occurrenceRemarks withheld,2024,4,6,Australia,AU,New South Wales,-34.025501,150.99055,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,5,13,Australia,AU,New South Wales,-28.875821,153.463046,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,4,23,Australia,AU,New South Wales,-32.767306,151.762153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.463781,150.523072,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,18,Australia,AU,New South Wales,-29.487593,153.103473,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-29.485576,153.10387,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-29.722645,152.934176,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,7,19,Australia,AU,New South Wales,-32.5563,151.9342,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-31.454684,152.875107,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-28.620437,153.003857,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-28.645078,153.559472,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072701;OLHP23072702;OLHP23072703,1,,occurrenceRemarks withheld,2023,5,29,Australia,AU,New South Wales,-31.615428,152.18678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.41807,150.632066,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.846843,153.314609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.385482,150.626634,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.736066,152.041548,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-30.231856,152.93752,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011003,1,,occurrenceRemarks withheld,2024,3,21,Australia,AU,New South Wales,-30.434052,152.947054,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131M,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-31.453392,152.929611,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.428044,150.600755,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-33.69972,149.54344,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-32.733961,152.133536,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,MALE,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-28.848398,153.304453,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.445903,150.515025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.418259,150.632518,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-29.490241,153.110157,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-31.457637,152.909109,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-31.912864,152.374259,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-29.485197,153.104165,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.12975,150.79538,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.465886,150.520604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.445763,150.51479,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-34.099962,150.80952,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,MALE,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-34.057022,150.842568,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.43379,150.617064,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-29.488508,153.093506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,10,Australia,AU,New South Wales,-34.440745,150.615419,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-32.102546,152.150436,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-29.67808,152.879504,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-31.444759,152.890677,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS;ODFK23090501,1,,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-30.518681,151.499597,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-29.490147,153.110485,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.435159,150.616546,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.446347,150.513793,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210Z,1,,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-32.737725,152.037266,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-34.017663,150.885933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.463689,150.523848,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-29.489582,153.103886,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.446777,150.515903,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070105,1,,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-33.57286,150.63536,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004139,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.856388,153.295433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.392157,150.633786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.418264,150.633693,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-32.165354,152.232257,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-31.481819,152.915859,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-28.388909,153.562069,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.456622,150.519475,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,25,Australia,AU,New South Wales,-35.999794,149.361646,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.487824,150.637238,EPSG:4326 +HUMAN_OBSERVATION,ODMP22091201,1,,occurrenceRemarks withheld,2022,8,28,Australia,AU,New South Wales,-31.954385,152.443915,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.395853,150.643601,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.420614,150.630722,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121103,1,FEMALE,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-31.099432,152.852814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.46468,150.523405,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.421072,150.637661,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-31.469203,152.914663,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-32.760534,152.113549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.485596,150.638096,EPSG:4326 +HUMAN_OBSERVATION,OJJS19043000;ODMP22022701,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-33.967181,150.920837,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.135869,150.796788,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021803,1,,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-29.033609,150.325471,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-31.27014,152.82517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.446596,150.514983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.446806,150.516892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.44714,150.518232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.449456,150.515965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.44903,150.608045,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-28.400461,153.557006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.426741,150.601423,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,18,Australia,AU,New South Wales,-31.438054,152.887681,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,6,3,Australia,AU,New South Wales,-28.839825,153.286326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-34.446936,150.516616,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-29.485599,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.342709,152.609051,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.4522,150.522794,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-29.490208,153.10975,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-31.05438,151.761695,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.434476,150.616163,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2023,2,5,Australia,AU,New South Wales,-34.098254,150.808586,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.388924,150.62422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.447231,150.514257,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-31.640693,152.788622,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.056316,150.858134,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401110A,1,,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-32.709759,152.067909,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.469503,150.530523,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-28.86558,153.290427,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-29.796463,150.922668,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-28.45188,153.053627,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220C,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-32.674267,152.045855,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-34.920437,150.141958,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.432612,150.615357,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032808,1,,occurrenceRemarks withheld,2023,4,12,Australia,AU,New South Wales,-31.473284,152.834233,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-29.631163,152.899658,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-31.27014,152.82517,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-29.692524,152.851464,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-34.2191,150.79329,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.448733,150.515856,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.446062,150.514433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.436458,150.615171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.417604,150.603077,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-29.692524,152.851464,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-29.491721,152.823644,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-31.961506,152.563215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.454688,150.606936,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-29.478833,153.104138,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-29.489904,153.110554,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2020,4,29,Australia,AU,New South Wales,-28.258429,153.399901,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,16,Australia,AU,New South Wales,-29.490184,153.110533,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.420521,150.609271,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.420351,150.6274,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.429927,150.60761,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-29.490418,153.109487,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-31.463513,152.924534,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-31.485332,152.918096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.434788,150.608592,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,6,Australia,AU,New South Wales,-29.490287,153.108022,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,1,3,Australia,AU,New South Wales,-31.47551,152.912369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.488651,150.634308,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.445892,150.513165,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,24,Australia,AU,New South Wales,-29.490208,153.110329,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-31.46013,152.92436,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-29.489858,153.101242,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-31.444435,152.926647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.395725,150.626236,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.395096,150.628646,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,20,Australia,AU,New South Wales,-28.87282,153.361086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.420684,150.630633,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,13,Australia,AU,New South Wales,-29.488186,153.092449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.393399,150.639722,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-29.485169,153.104063,EPSG:4326 +HUMAN_OBSERVATION,OJBL97031300,1,MALE,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-30.434873,152.833527,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.452025,150.52527,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.389748,150.627177,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,11,13,Australia,AU,New South Wales,-31.43403,152.910119,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.418335,150.633647,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-28.873506,153.270719,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.436138,150.602526,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,2,25,Australia,AU,New South Wales,-29.491571,153.099788,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011014,1,,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-32.730537,152.039998,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-30.894513,151.886646,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,12,16,Australia,AU,New South Wales,-32.706633,152.063778,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-28.923918,153.264096,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-33.714074,150.786105,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042W,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-34.002039,150.897402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.397239,150.645781,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,FEMALE,occurrenceRemarks withheld,2024,6,4,Australia,AU,New South Wales,-30.32139,153.08564,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.461152,150.531248,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190N,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-31.456865,152.821774,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.461704,150.523787,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-29.629872,152.896425,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100M,1,,occurrenceRemarks withheld,2022,4,3,Australia,AU,New South Wales,-28.592244,153.479706,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.446588,150.516768,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-31.918922,152.370971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.458104,150.664655,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR1511120M;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-28.54593,153.52954,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031403,1,,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-30.264335,153.111861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.396401,150.644423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.452316,150.522736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.420911,150.627928,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,4,21,Australia,AU,New South Wales,-33.708673,150.787018,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091904,1,,occurrenceRemarks withheld,2024,8,28,Australia,AU,New South Wales,-32.423321,152.284517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.387418,150.631147,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-31.632688,152.785485,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.399001,150.616681,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419665,150.635274,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.458723,150.532821,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,5,12,Australia,AU,New South Wales,-28.847787,153.301025,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-28.95998,153.395147,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090501,1,,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-31.673767,150.657099,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.447185,150.513779,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.42865,150.601793,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,1,1,Australia,AU,New South Wales,-31.933494,152.415805,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-28.847242,153.296921,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.11579,150.81136,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,12,Australia,AU,New South Wales,-29.489942,153.101274,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-28.817688,153.323925,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-29.629872,152.896425,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-32.059496,152.485652,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.431254,150.615047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.431289,150.615024,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200U,1,MALE,occurrenceRemarks withheld,2024,4,16,Australia,AU,New South Wales,-31.651566,152.601915,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,6,16,Australia,AU,New South Wales,-32.706692,152.063828,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.447903,150.514074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.462789,150.52394,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,18,Australia,AU,New South Wales,-29.489778,153.105217,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-31.2012,150.16718,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2024,3,6,Australia,AU,New South Wales,-31.453779,152.924693,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,28,Australia,AU,New South Wales,-29.48997,153.101258,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151D,1,,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-29.015679,153.396801,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-32.23062,152.19925,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-36.514707,149.962048,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,MALE,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-36.228533,149.397392,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,7,20,Australia,AU,New South Wales,-30.216522,152.945609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.46947,150.527084,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.420487,150.630214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.391577,150.644819,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100512,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-29.7306,152.92292,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101T,1,,occurrenceRemarks withheld,2023,11,25,Australia,AU,New South Wales,-32.562252,151.930618,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-29.490166,153.110544,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-31.066162,150.280729,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2020,12,20,Australia,AU,New South Wales,-31.463568,152.924401,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-32.683376,151.654667,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,2,13,Australia,AU,New South Wales,-30.374914,153.017126,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-29.485464,153.103822,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-34.917107,150.143469,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,1,20,Australia,AU,New South Wales,-34.104056,150.9602,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,FEMALE,occurrenceRemarks withheld,2024,5,28,Australia,AU,New South Wales,-31.143027,152.796027,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150U,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-31.787706,152.709625,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-29.492651,153.093347,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062801,1,,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-31.129753,152.859327,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.390241,150.627032,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,5,6,Australia,AU,New South Wales,-28.260092,153.400725,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,8,Australia,AU,New South Wales,-29.490656,153.109331,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.465315,150.520915,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032808,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-31.4468,152.92577,EPSG:4326 +HUMAN_OBSERVATION,OKEM18092400,1,FEMALE,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-34.207428,150.652569,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,16,Australia,AU,New South Wales,-33.715655,150.785335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.447632,150.513168,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,13,Australia,AU,New South Wales,-29.49017,153.108038,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,26,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102,1,,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-32.48353,151.90452,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080902,1,FEMALE,occurrenceRemarks withheld,2023,7,10,Australia,AU,New South Wales,-33.981826,150.992795,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004231,1,FEMALE,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-28.830692,153.217968,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.433681,150.616088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.452545,150.522914,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.368718,153.572904,EPSG:4326 +HUMAN_OBSERVATION,OCHV19051300,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-29.691624,152.866357,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,FEMALE,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-28.849921,153.315886,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080906,1,MALE,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-29.506386,152.824526,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.490375,152.881336,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-29.480019,153.104053,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-28.818123,153.31536,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,7,29,Australia,AU,New South Wales,-28.260564,153.402412,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,26,Australia,AU,New South Wales,-29.489974,153.101268,EPSG:4326 +HUMAN_OBSERVATION,Obs_2466,1,FEMALE,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-31.543877,152.850223,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.42754,150.605426,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.397837,150.622195,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-29.48502,153.103838,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2020,8,7,Australia,AU,New South Wales,-31.617012,152.162204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.473648,150.532621,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-34.105858,150.877945,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-31.447591,152.883882,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-34.920437,150.141958,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-29.490493,153.109326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-34.446631,150.519792,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.437563,150.605738,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,5,23,Australia,AU,New South Wales,-32.565191,151.767481,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-32.687001,151.65611,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.420921,150.627971,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-34.239726,150.800499,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-29.487086,153.090752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.439237,150.604679,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-31.928294,152.403932,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010702,1,FEMALE,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-29.494093,153.094646,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-31.14292,150.02704,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-29.489549,153.103854,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.16054,149.34524,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-30.08274,152.164297,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,20,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.469212,150.529497,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.479707,150.533129,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.54224,152.857777,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.884771,152.795899,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-29.001489,153.282702,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.293843,149.324959,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101301,1,,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-28.259491,153.471335,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-31.451519,152.92166,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,5,25,Australia,AU,New South Wales,-28.86386,153.29459,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418825,150.632861,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,FEMALE,occurrenceRemarks withheld,2022,12,22,Australia,AU,New South Wales,-34.05628,150.836384,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-29.485594,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.421149,150.636962,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-31.445097,152.899176,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.459198,150.521989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.491688,150.638904,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.439047,150.51747,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-28.964065,153.287597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.447342,150.517061,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130B,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-30.885476,153.07145,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.430728,150.615856,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-30.492643,151.598414,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,8,,Australia,AU,New South Wales,-28.716311,153.599279,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.427329,150.604779,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.420712,150.608906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.454241,150.606644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.399159,150.616459,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-29.491595,153.099766,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.44265,150.604929,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-36.572886,150.003444,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004258,1,MALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.846945,153.182292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.39506,150.63054,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.462352,150.524627,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-31.26362,152.817738,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.471005,150.531208,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290K,1,,occurrenceRemarks withheld,2024,3,29,Australia,AU,New South Wales,-31.965777,152.398767,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-33.203062,150.599275,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.570187,149.979238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.419679,150.611438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.463268,150.519561,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.424451,150.604676,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2022,3,18,Australia,AU,New South Wales,-31.569129,152.782133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.447709,150.518737,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.446743,150.512878,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.485182,150.637204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.451627,150.522517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.489606,150.633344,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.424678,150.604724,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-29.490941,153.109342,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-32.710956,152.065202,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-28.562399,153.13439,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,20,Australia,AU,New South Wales,-32.172681,152.092114,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,7,2,Australia,AU,New South Wales,-29.728597,151.085125,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004177,1,,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-28.345835,153.54091,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-29.483507,153.095217,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-29.485856,153.103699,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.433827,150.617107,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-32.759765,152.078006,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-28.819938,153.302555,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012906,1,,occurrenceRemarks withheld,2023,12,8,Australia,AU,New South Wales,-31.459734,152.929315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.418236,150.597608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.451416,150.518344,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.419995,150.631359,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,12,11,Australia,AU,New South Wales,-29.490259,153.108215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.439014,150.604369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.420643,150.630819,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,3,22,Australia,AU,New South Wales,-29.484693,153.095963,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.447296,150.514364,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,9,25,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004069,1,,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-28.45331,153.274696,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,FEMALE,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-34.098258,150.808599,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-28.435381,153.014083,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.442168,150.517987,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050W,1,,occurrenceRemarks withheld,2023,2,9,Australia,AU,New South Wales,-31.436888,152.905393,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.456622,150.519442,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131U,1,,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-30.640405,152.98818,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-30.880361,152.865734,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-29.485697,153.103446,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-31.437175,152.883273,EPSG:4326 +HUMAN_OBSERVATION,OPUR21061500;OMFZ23032403,1,MALE,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-34.961276,150.064049,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-29.489979,153.101274,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121408,1,,occurrenceRemarks withheld,2023,2,25,Australia,AU,New South Wales,-28.389366,153.562066,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-32.305058,152.027861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427302,150.604736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.388816,150.631183,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,2,12,Australia,AU,New South Wales,-31.453764,152.924676,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-29.481966,153.104171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.438877,150.604275,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.427043,150.604885,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-33.716562,150.785055,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004244,1,,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-28.601453,153.233127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.388971,150.629406,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,5,3,Australia,AU,New South Wales,-28.642488,153.525002,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.449272,150.516231,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.631223,152.755897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.421964,150.636232,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-29.488812,153.093356,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.514707,149.962048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.465265,150.52379,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-31.452603,152.921641,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-29.774595,151.091178,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,MALE,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-32.878656,151.55998,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003881,1,,occurrenceRemarks withheld,2023,8,7,Australia,AU,New South Wales,-28.828021,153.316988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.420998,150.627752,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250C,1,MALE,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-32.878656,151.55998,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001401,1,,occurrenceRemarks withheld,2023,3,16,Australia,AU,New South Wales,-28.976847,153.40125,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,3,Australia,AU,New South Wales,-33.70815,150.786436,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,3,Australia,AU,New South Wales,-29.48975,153.110576,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.415912,150.640286,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.949626,153.316981,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-29.490175,153.110527,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-29.49067,153.108054,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-34.920437,150.141958,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-30.079403,152.171269,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.456125,150.656895,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.682073,152.756284,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.458795,150.528836,EPSG:4326 +HUMAN_OBSERVATION,ODFK24020200,1,,occurrenceRemarks withheld,2024,6,28,Australia,AU,New South Wales,-32.862315,151.802756,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.949626,153.316981,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003952,1,,occurrenceRemarks withheld,2023,2,11,Australia,AU,New South Wales,-29.088439,153.389562,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-31.443669,152.921772,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-31.438268,152.91986,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.4296,150.614855,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,14,Australia,AU,New South Wales,-31.436438,152.897899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.453477,150.518185,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,4,25,Australia,AU,New South Wales,-32.709086,152.064749,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.469643,150.527177,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.181487,153.002351,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,29,Australia,AU,New South Wales,-32.706167,152.063272,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,2,2,Australia,AU,New South Wales,-30.885689,153.071934,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.447162,150.513105,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.454577,150.657026,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,3,17,Australia,AU,New South Wales,-31.458526,152.874803,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-29.478879,153.10401,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,1,16,Australia,AU,New South Wales,-29.478847,153.104138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.396878,150.64156,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-31.565834,152.737721,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,7,6,Australia,AU,New South Wales,-34.141271,150.82369,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.514707,149.962048,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-28.667451,153.597863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.448731,150.617641,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,MALE,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-28.848398,153.304453,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,28,Australia,AU,New South Wales,-28.810799,153.510002,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.446541,150.51801,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.437023,150.518139,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-31.26929,152.82611,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2023,1,19,Australia,AU,New South Wales,-34.123635,150.810126,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-33.704409,150.787759,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-28.816339,153.318273,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-31.904256,152.422603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.418093,150.633251,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-32.708193,152.066185,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-32.767142,152.043528,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210E,1,,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-32.72,152.105012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.384518,150.625258,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-31.45491,152.89309,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.427302,150.604736,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,9,Australia,AU,New South Wales,-29.490035,153.100861,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.862857,153.317651,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-34.446445,150.519971,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011002,1,,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-31.468948,152.927399,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042604,1,,occurrenceRemarks withheld,2024,2,22,Australia,AU,New South Wales,-32.064887,152.539394,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,6,10,Australia,AU,New South Wales,-32.722486,152.077265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.424744,150.602557,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.389774,150.628057,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-28.686728,153.608603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.435359,150.61616,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-28.4371,153.4064,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-32.91932,151.77952,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040429,1,MALE,occurrenceRemarks withheld,2023,4,15,Australia,AU,New South Wales,-32.63183,151.93908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.463517,150.52382,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-34.104236,150.807753,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,6,12,Australia,AU,New South Wales,-28.385714,153.561522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.432213,150.605565,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-31.160598,152.908244,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.862857,153.317651,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150A,1,,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-31.45285,152.926013,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-33.58539,150.656179,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.388287,150.632253,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011012,1,MALE,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-30.211856,152.540927,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,4,4,Australia,AU,New South Wales,-28.32208,153.45968,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-36.429981,148.729322,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.481191,150.532943,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-34.398695,150.643674,EPSG:4326 +HUMAN_OBSERVATION,OPUR15021900,1,,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-29.838919,150.596283,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419978,150.610124,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-34.089255,150.990376,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-31.450196,152.929052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.385834,150.625275,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,,occurrenceRemarks withheld,2020,3,3,Australia,AU,New South Wales,-32.67,151.726,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-30.352065,153.080079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.43584,150.615842,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.451844,150.518147,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,25,Australia,AU,New South Wales,-29.490553,153.109401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.417719,150.633469,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.437778,150.606124,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2023,1,25,Australia,AU,New South Wales,-31.929091,152.38345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.456452,150.658856,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.70969,153.59435,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.088697,149.393998,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.458118,150.663501,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.437659,150.519252,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.399685,150.624949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.429099,150.599408,EPSG:4326 +HUMAN_OBSERVATION,OPUR20051800,1,MALE,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-28.86502,153.578506,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-33.526844,150.658753,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,ODFK23120705,1,,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-29.607118,152.881858,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.43379,150.617064,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-31.641062,152.791835,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004180,1,,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-28.662138,153.278692,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.191062,152.028715,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102203,1,,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-32.721,152.104,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150B,1,,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.028857,151.046007,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.487001,150.635236,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.488598,150.635333,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-29.490231,153.110168,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.14552,150.797013,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190E,1,MALE,occurrenceRemarks withheld,2023,2,9,Australia,AU,New South Wales,-34.099449,150.809221,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022522,1,,occurrenceRemarks withheld,2022,12,12,Australia,AU,New South Wales,-32.725465,152.077077,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.490994,150.638477,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-31.45801,152.924273,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240F,1,,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-32.729137,152.086481,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.421497,150.627455,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.465757,150.521381,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-31.458937,152.924256,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.47048,150.528872,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-29.489956,153.10137,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,15,Australia,AU,New South Wales,-33.716877,150.785234,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070C,1,,occurrenceRemarks withheld,2020,8,6,Australia,AU,New South Wales,-30.50587,152.9208,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-29.484791,153.095985,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-34.098128,150.808211,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010703,1,,occurrenceRemarks withheld,2020,6,2,Australia,AU,New South Wales,-29.727079,152.929709,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.420905,150.630398,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022414,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-32.697952,151.765123,EPSG:4326 +HUMAN_OBSERVATION,OSSD22052500,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.426521,153.028493,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-30.40844,153.00116,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.432653,150.615127,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-31.465739,152.927454,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,10,Australia,AU,New South Wales,-33.716589,150.784665,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.383533,150.623753,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-34.078232,150.839671,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.420977,150.630374,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080905,1,,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.45989,152.923035,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-34.89578,150.05278,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.831137,153.278132,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-34.068368,150.913678,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS;ODFK23090502,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-30.466398,151.370487,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-29.4906,153.10932,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-29.745628,151.083512,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,11,15,Australia,AU,New South Wales,-32.739428,152.097044,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.446347,150.513826,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.43678,150.619188,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022608,1,,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-32.51552,151.682471,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,3,29,Australia,AU,New South Wales,-33.773306,150.057881,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.447839,150.519811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.43538,150.521136,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-30.34947,152.606767,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081304,1,,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.372582,150.750163,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.418822,150.609091,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-31.543136,152.823948,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250X,1,,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-32.725964,152.148212,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-28.788736,153.582378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.488634,150.63531,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100H,1,,occurrenceRemarks withheld,2021,1,17,Australia,AU,New South Wales,-32.551366,151.645375,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.496287,152.905249,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2020,4,11,Australia,AU,New South Wales,-29.667173,152.867889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.420098,150.638091,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.418852,150.632871,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-36.576557,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.4274,150.600556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.465746,150.520358,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-31.452848,152.921933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.44728,150.518924,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.46581,150.520433,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-29.669559,152.867203,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.438003,150.604268,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-31.438864,152.885405,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-31.915792,152.374523,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101H,1,,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-31.911313,152.296447,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-29.73754,151.059002,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.395364,150.642995,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.949626,153.316981,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,23,Australia,AU,New South Wales,-29.485585,153.103768,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.953149,153.369052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.423735,150.637346,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,7,5,Australia,AU,New South Wales,-29.491889,153.094981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.4231,150.636189,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-31.913202,152.374047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.420672,150.609158,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.420956,150.630222,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-29.489872,153.101204,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2020,8,6,Australia,AU,New South Wales,-30.505421,152.919786,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2020,4,27,Australia,AU,New South Wales,-29.667098,152.867632,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071002,1,,occurrenceRemarks withheld,2024,4,24,Australia,AU,New South Wales,-31.94879,152.3156,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-30.399605,152.988323,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.556943,149.960571,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-31.430194,152.908019,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,MALE,occurrenceRemarks withheld,2022,6,25,Australia,AU,New South Wales,-28.259717,153.402026,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,24,Australia,AU,New South Wales,-32.708977,152.064373,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-31.46562,152.924406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.430092,150.607725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.439298,150.604122,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.39871,150.621159,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-31.13802,152.794192,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,MALE,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-36.212525,149.386551,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.437809,150.607255,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211S,1,,occurrenceRemarks withheld,2022,12,5,Australia,AU,New South Wales,-32.711568,152.06621,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.31259,152.041806,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210K,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-32.712407,152.063763,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-28.674761,153.548816,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-31.92933,152.378608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.46419,150.522799,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-31.447756,152.92853,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-33.436495,150.616942,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,25,Australia,AU,New South Wales,-33.71756,150.783927,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-29.4901,153.110495,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.39712,150.640564,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-31.914114,152.373637,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,7,26,Australia,AU,New South Wales,-30.50608,152.919608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.446385,150.51389,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-33.503703,150.702147,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,MALE,occurrenceRemarks withheld,2022,2,21,Australia,AU,New South Wales,-34.068105,150.807228,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OMFZ23033002;ODFK24051300,1,,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-33.254132,150.886666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.456407,150.608607,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2024,4,18,Australia,AU,New South Wales,-33.526837,150.65873,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-30.344269,153.081517,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-32.765489,152.035166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.390465,150.626058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.491475,150.639073,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.420234,150.627393,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.439467,150.603986,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-30.303122,153.096049,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-31.480637,152.916099,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,18,Australia,AU,New South Wales,-28.864629,153.293126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.43648,150.615845,EPSG:4326 +HUMAN_OBSERVATION,OVGI98110201,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-30.531555,151.6573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.430622,150.610386,EPSG:4326 +HUMAN_OBSERVATION,OPJG20112703,1,,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-30.263063,153.11635,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,7,5,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.696785,152.78204,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.133034,150.796934,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,18,Australia,AU,New South Wales,-32.706508,152.063698,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111312,1,,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-28.233606,153.449143,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500,1,,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-28.7273,153.60144,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.294353,149.324818,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-29.010397,153.274393,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-31.43267,152.136151,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.439409,150.603803,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.447361,150.520249,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022523,1,,occurrenceRemarks withheld,2020,3,5,Australia,AU,New South Wales,-29.78671,151.19571,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.4268,150.598038,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-28.726615,153.248416,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-31.459579,152.928233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.447757,150.513109,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080300,1,,occurrenceRemarks withheld,2022,3,23,Australia,AU,New South Wales,-33.603863,149.621917,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.452663,150.523847,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-34.060984,150.866027,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-29.53805,153.01264,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.423798,150.637334,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.514707,149.962048,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,23,Australia,AU,New South Wales,-29.488093,153.09216,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.429187,150.616346,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.514707,149.962048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.444782,150.51755,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.447392,150.518659,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,6,28,Australia,AU,New South Wales,-28.65439,153.4475,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-28.696419,153.438146,EPSG:4326 +HUMAN_OBSERVATION,OJJS20020408,1,FEMALE,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-33.969911,150.911948,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.417596,150.603088,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-31.919963,152.379533,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.419657,152.216709,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260C,1,MALE,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-32.712079,152.059352,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419079,150.610226,EPSG:4326 +HUMAN_OBSERVATION,ODMP2108060K,1,,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.049087,150.848837,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,MALE,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-32.108708,152.138801,EPSG:4326 +HUMAN_OBSERVATION,ODFK23121109,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-29.676818,152.887207,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-30.399605,152.988323,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.420702,150.630632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.437898,150.604924,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.494125,150.64049,EPSG:4326 +HUMAN_OBSERVATION,OPUR17021400;OGEM18052300,1,,occurrenceRemarks withheld,2024,4,4,Australia,AU,New South Wales,-36.308587,149.946833,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,26,Australia,AU,New South Wales,-28.845501,153.302601,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.43248,150.605405,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020609,1,,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-34.042622,150.871066,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.42687,150.604314,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210Q,1,,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-32.703195,152.063775,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132T,1,,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-33.481827,150.816839,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,1,3,Australia,AU,New South Wales,-33.779148,150.101295,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.428368,152.85978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.423853,150.637408,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.388662,150.624195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.425939,150.595495,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.086265,150.974325,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2023,4,2,Australia,AU,New South Wales,-34.199736,150.777493,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.683535,153.608688,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-29.489587,153.103859,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.42878,150.600146,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190F,1,,occurrenceRemarks withheld,2023,2,15,Australia,AU,New South Wales,-31.967869,152.565372,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.455091,152.921185,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-29.489582,153.103892,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,11,7,Australia,AU,New South Wales,-32.69804,151.765371,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.394882,150.642802,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-31.454161,152.924363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.418957,150.609555,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,3,Australia,AU,New South Wales,-33.710441,150.786142,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-31.476541,152.914101,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.387562,150.631153,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-29.488121,153.092278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.452584,150.519931,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.420635,150.630906,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,4,28,Australia,AU,New South Wales,-33.710529,150.786141,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,6,Australia,AU,New South Wales,-29.485282,153.104085,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,6,7,Australia,AU,New South Wales,-31.428909,152.913073,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111304,1,,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-32.657279,151.642093,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.391264,150.644959,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.862857,153.317651,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091705,1,,occurrenceRemarks withheld,2020,2,7,Australia,AU,New South Wales,-31.947093,152.467892,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,7,25,Australia,AU,New South Wales,-34.698469,150.086409,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.42526,150.602695,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418905,150.632793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.423685,150.634769,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130P,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-34.065212,150.861754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.429212,150.614376,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.389845,150.627544,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-31.415541,152.136708,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-31.478174,152.920334,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111324,1,MALE,occurrenceRemarks withheld,2023,10,1,Australia,AU,New South Wales,-33.405506,150.704278,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,12,2,Australia,AU,New South Wales,-31.429034,152.883694,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,9,Australia,AU,New South Wales,-31.474846,152.89723,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-28.85174,153.377477,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.739299,152.096682,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,4,8,Australia,AU,New South Wales,-31.20481,150.07765,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-31.437503,152.905454,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-31.437918,152.764875,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-34.13993,150.79265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.423699,150.637347,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,22,Australia,AU,New South Wales,-29.478819,153.104203,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-32.187837,152.19874,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.420654,150.627239,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.46575,150.521479,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031824,1,,occurrenceRemarks withheld,2022,11,15,Australia,AU,New South Wales,-28.868624,153.43329,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-29.490208,153.10821,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-30.281064,152.918066,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,6,27,Australia,AU,New South Wales,-31.471353,152.92331,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.176289,152.909424,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,29,Australia,AU,New South Wales,-31.450166,152.929032,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-30.345617,152.609987,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.418678,150.633637,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-29.47957,153.104214,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.825103,153.315766,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.389556,150.627063,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062102,1,,occurrenceRemarks withheld,2023,5,23,Australia,AU,New South Wales,-28.604121,152.229204,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,3,12,Australia,AU,New South Wales,-33.13681,151.097629,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.446511,150.514333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.437793,150.606004,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042F,1,FEMALE,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-33.958984,150.953779,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401110B,1,,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-32.729397,152.107278,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-32.629689,151.710506,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-34.188134,150.790596,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002758,1,,occurrenceRemarks withheld,2022,6,20,Australia,AU,New South Wales,-29.488742,153.1021,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.465681,150.520295,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260C,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-32.710798,152.061035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.453051,150.517621,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101301,1,FEMALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-28.262461,153.469052,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,9,7,Australia,AU,New South Wales,-28.64474,153.53013,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,21,Australia,AU,New South Wales,-32.706553,152.063709,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-32.710664,152.064327,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-33.713734,150.785211,EPSG:4326 +HUMAN_OBSERVATION,OJJS20091602,1,,occurrenceRemarks withheld,2022,3,24,Australia,AU,New South Wales,-34.213129,150.660325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.447035,150.513947,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-28.40001,153.556647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.46504,150.522447,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.739596,152.097885,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,FEMALE,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-28.850232,153.308373,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-29.485655,153.103752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.418954,150.610294,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-28.369223,153.558835,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012505,1,,occurrenceRemarks withheld,2024,2,3,Australia,AU,New South Wales,-31.453622,152.924998,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.447157,150.519482,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,3,12,Australia,AU,New South Wales,-32.662579,152.171948,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004190,1,,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-29.014449,153.431617,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131P,1,,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-31.802283,152.388204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.485508,150.636367,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.420634,150.630863,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090406,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-30.367373,153.018884,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,23,Australia,AU,New South Wales,-33.714059,150.785167,EPSG:4326 +HUMAN_OBSERVATION,ODMP99090100,1,,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-31.623706,151.723503,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.395986,150.629002,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.421793,150.636248,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,5,6,Australia,AU,New South Wales,-29.489591,153.103918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.465849,150.522772,EPSG:4326 +HUMAN_OBSERVATION,OCHV19051300,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-29.692061,152.866394,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,1,14,Australia,AU,New South Wales,-32.725189,152.0749,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150P,1,,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-35.366018,149.236042,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-31.1731,150.11421,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-29.629872,152.896425,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-31.453573,152.929283,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.46662,150.521258,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211D,1,,occurrenceRemarks withheld,2022,10,18,Australia,AU,New South Wales,-32.727656,151.999308,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-34.094698,150.983557,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,7,13,Australia,AU,New South Wales,-31.910186,152.409406,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-33.707387,150.786346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.446574,150.514309,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.4541,150.520442,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.440876,152.901303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.386901,150.630552,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2023,12,5,Australia,AU,New South Wales,-31.475495,152.86796,EPSG:4326 +HUMAN_OBSERVATION,OPUR17030902,1,FEMALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-30.462694,152.901944,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-28.398853,153.556009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.469652,150.52673,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.46575,150.521468,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,4,24,Australia,AU,New South Wales,-34.12769,150.980482,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-32.735834,152.038512,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-32.98809,151.488028,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-28.864759,153.292842,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.420278,150.627337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.439423,150.516469,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,3,26,Australia,AU,New South Wales,-31.442475,152.922612,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070B,1,,occurrenceRemarks withheld,2020,12,14,Australia,AU,New South Wales,-28.972444,153.404872,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221F,1,,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-32.7306,152.084555,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.422495,150.604188,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,11,24,Australia,AU,New South Wales,-34.068368,150.913678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.426688,150.603775,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-28.993026,153.339842,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.068368,150.913678,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,4,5,Australia,AU,New South Wales,-29.631326,152.900816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.43604,150.52078,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-31.450665,152.917147,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,4,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.432814,150.609987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.44944,150.516063,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-28.898232,153.207956,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,3,Australia,AU,New South Wales,-28.675247,153.493666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.42583,150.602341,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,MALE,occurrenceRemarks withheld,2023,12,4,Australia,AU,New South Wales,-34.029231,150.987053,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-29.000859,152.929825,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-32.727203,152.13525,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-31.467551,152.867108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.465753,150.520282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.39779,150.622066,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.42071,150.608841,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-31.15824,150.10504,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004027,1,,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-28.38741,153.56561,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,22,Australia,AU,New South Wales,-31.479306,152.92117,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,7,11,Australia,AU,New South Wales,-31.582983,152.776098,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-33.7192,150.785161,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.425702,150.595795,EPSG:4326 +HUMAN_OBSERVATION,OLHP24020500,1,,occurrenceRemarks withheld,2024,1,26,Australia,AU,New South Wales,-33.263711,150.039025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.392287,150.645213,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-28.819465,153.29577,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.420688,150.630861,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.513032,150.001052,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,28,Australia,AU,New South Wales,-33.708181,150.785324,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.087343,150.854062,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-31.676474,152.805449,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-29.001672,153.338409,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.488288,150.637007,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-29.631074,152.899733,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.432118,150.606231,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-31.463281,152.927052,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,4,14,Australia,AU,New South Wales,-31.299053,152.857305,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-34.03158,150.84661,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-34.440459,150.616015,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2023,6,19,Australia,AU,New South Wales,-33.14425,151.0945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.454186,150.607985,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-28.999868,153.374069,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.420618,150.609181,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.443767,153.047357,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,18,Australia,AU,New South Wales,-33.712276,150.786086,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-28.818233,153.322262,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.388662,150.624195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.421579,150.627507,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,13,Australia,AU,New South Wales,-28.98268,153.421673,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.816046,153.322231,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,23,Australia,AU,New South Wales,-31.670198,152.409049,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-28.696419,153.438146,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-31.452163,152.926893,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-29.386646,153.3505,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-28.877495,153.370571,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.451542,150.515272,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-32.731466,152.077923,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,17,Australia,AU,New South Wales,-29.489634,153.104745,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-28.828826,153.29626,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160D,1,,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-30.880259,153.071505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.451528,150.517242,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,11,Australia,AU,New South Wales,-31.250592,152.76313,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,8,15,Australia,AU,New South Wales,-31.6323,152.785422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435719,150.521388,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.42065,150.630721,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,3,1,Australia,AU,New South Wales,-31.915208,152.381501,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150H,1,,occurrenceRemarks withheld,2024,1,17,Australia,AU,New South Wales,-31.951441,152.365536,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-29.737246,151.00492,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2022,6,10,Australia,AU,New South Wales,-34.103818,150.814428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.38783,150.631505,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-29.667173,152.868211,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090405,1,MALE,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-34.10191,150.821121,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,FEMALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-32.759928,152.067424,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,9,1,Australia,AU,New South Wales,-28.959966,153.395182,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,24,Australia,AU,New South Wales,-28.668288,153.51659,EPSG:4326 +HUMAN_OBSERVATION,OLHP24010913,1,,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-31.210815,152.798519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.439695,150.619813,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,6,4,Australia,AU,New South Wales,-31.479872,152.902904,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,5,8,Australia,AU,New South Wales,-29.45099,153.07705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.421365,150.626708,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-29.480892,153.104165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.479065,150.533452,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-29.488065,153.092181,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,2,9,Australia,AU,New South Wales,-31.443525,152.899797,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-29.47887,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.434471,150.616392,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,4,5,Australia,AU,New South Wales,-29.071477,153.086936,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.447788,150.516417,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.493547,150.640408,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-31.453334,152.921567,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,1,MALE,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-28.62677,153.428936,EPSG:4326 +HUMAN_OBSERVATION,ODLA17110400,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.085315,150.979756,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-28.59417,153.461156,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.387076,150.6312,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-28.99283,153.291127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.447064,150.519833,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.389922,150.630587,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140E,1,,occurrenceRemarks withheld,2021,2,3,Australia,AU,New South Wales,-31.201429,152.96647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.395771,150.6263,EPSG:4326 +HUMAN_OBSERVATION,Obs_1038,1,,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-31.435127,152.909023,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,FEMALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-31.93298,152.412796,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,6,25,Australia,AU,New South Wales,-31.661759,152.809133,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,8,29,Australia,AU,New South Wales,-29.631228,152.899454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-34.443619,150.514407,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060R,1,,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-30.312932,152.74475,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,21,Australia,AU,New South Wales,-31.473999,152.900378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.42977,150.610171,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070706,1,MALE,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-28.806112,153.341699,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,5,9,Australia,AU,New South Wales,-36.56748,149.966961,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,MALE,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-32.736579,152.081127,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23041909,1,FEMALE,occurrenceRemarks withheld,2023,2,24,Australia,AU,New South Wales,-32.36447,152.475416,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004128,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-29.02761,153.315053,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.386772,150.627152,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,13,Australia,AU,New South Wales,-29.484329,153.104037,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-32.224416,152.194095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.437218,150.605618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.389406,150.629557,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202;OLHP24011206,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-30.504,151.651,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002844,1,,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-29.464112,153.182534,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-32.710574,152.065302,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.451414,150.518247,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003993,1,,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-28.850797,153.314501,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.494596,150.524916,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.45586,150.606021,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,12,22,Australia,AU,New South Wales,-29.49025,153.108199,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.432551,150.615467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.458208,150.657849,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,3,Australia,AU,New South Wales,-31.468546,152.872888,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081701,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-31.619148,152.162214,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.276306,152.814728,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.455735,150.527581,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-29.480635,153.10412,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.438206,150.606384,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,MALE,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-29.028046,153.418171,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-31.447655,152.92576,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-31.44426,152.907263,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-28.816002,153.318261,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.491341,150.638707,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.388879,150.624222,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,4,Australia,AU,New South Wales,-28.572677,153.434666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.449243,150.606461,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-31.911045,152.40749,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.490653,150.63853,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2020,12,18,Australia,AU,New South Wales,-32.727172,152.034943,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,9,Australia,AU,New South Wales,-29.490497,153.10813,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-28.572338,153.377572,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.387299,150.631085,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,8,Australia,AU,New South Wales,-29.487663,153.09084,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.440238,150.603801,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.862857,153.317651,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-31.431878,152.893855,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-30.8961,153.036423,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-29.018571,153.402873,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,8,30,Australia,AU,New South Wales,-29.6312,152.899454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.388777,150.630597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.399586,150.639407,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-29.490348,153.110195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.435204,150.614652,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-34.108335,150.8001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.421848,150.607514,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.393119,150.64532,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,6,8,Australia,AU,New South Wales,-30.4554,152.7127,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111505,1,,occurrenceRemarks withheld,2023,12,15,Australia,AU,New South Wales,-33.983402,150.992879,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220K,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-32.728656,152.037048,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,25,Australia,AU,New South Wales,-28.651388,153.238384,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081113,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-30.462339,152.902538,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.465681,150.520284,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.436906,150.607193,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.447269,150.513918,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-29.47688,153.104771,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031529,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-28.592858,153.046988,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,29,Australia,AU,New South Wales,-29.490521,153.109433,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-31.25626,152.77949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.446998,150.521022,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2020,6,3,Australia,AU,New South Wales,-31.130961,152.802877,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,7,20,Australia,AU,New South Wales,-29.489872,153.103339,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-32.223426,152.189959,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.390645,150.627391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.38793,150.624542,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-31.429832,152.884553,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-31.13794,150.06694,EPSG:4326 +HUMAN_OBSERVATION,OJJS06072500,1,,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-32.360245,149.80659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.418494,150.633001,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,2,9,Australia,AU,New South Wales,-32.706351,152.063428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.394071,150.642803,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,12,,Australia,AU,New South Wales,-36.153555,149.334677,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.464187,150.524856,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.394675,150.643743,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.432256,150.61096,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-29.490082,153.110533,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.464936,150.521775,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260C,1,,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-32.710699,152.061041,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.420395,150.63014,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070C,1,,occurrenceRemarks withheld,2020,6,7,Australia,AU,New South Wales,-30.509654,152.922502,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.435723,150.60294,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.386644,150.625166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.438617,150.617721,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2024,3,12,Australia,AU,New South Wales,-33.526959,150.658883,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,6,30,Australia,AU,New South Wales,-34.024485,150.97665,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,7,9,Australia,AU,New South Wales,-31.46013,152.923296,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.493942,150.640332,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,21,Australia,AU,New South Wales,-33.711996,150.784504,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-28.440333,152.884465,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-32.706516,152.06378,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150P,1,MALE,occurrenceRemarks withheld,2022,9,4,Australia,AU,New South Wales,-28.823148,153.309355,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.43614,150.616442,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,10,2,Australia,AU,New South Wales,-28.681058,153.44401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.458176,150.658993,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.980713,153.441148,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-31.429386,152.894991,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-31.470146,152.911551,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-34.030191,150.848206,EPSG:4326 +HUMAN_OBSERVATION,ODFK2307190M,1,,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-29.68301,152.880034,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032115,1,,occurrenceRemarks withheld,2023,7,26,Australia,AU,New South Wales,-32.722541,152.077045,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-28.385488,153.561958,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-34.046804,151.008324,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003965,1,FEMALE,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-28.637745,153.629825,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-30.018307,152.245604,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,4,5,Australia,AU,New South Wales,-31.558365,152.849138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.394469,150.630295,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.159765,150.830615,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,2,18,Australia,AU,New South Wales,-33.58539,150.65618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.493138,150.640224,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.43024,150.613466,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433772,150.617065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.387795,150.631528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.430201,150.610061,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-28.858453,153.279605,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.392857,150.632701,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210W,1,,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-32.644012,151.627535,EPSG:4326 +HUMAN_OBSERVATION,OJJS20051101,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-34.06167,151.000327,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210G,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-32.7274,152.079082,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419373,150.638807,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,MALE,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-28.398905,153.555885,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,21,Australia,AU,New South Wales,-29.477039,153.104718,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-33.335487,150.972995,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-36.590676,149.945176,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-29.09726,153.354732,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.937089,153.316984,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,8,Australia,AU,New South Wales,-33.706617,150.785679,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.423753,150.637324,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2022,3,31,Australia,AU,New South Wales,-36.161958,149.29591,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-28.899114,153.236621,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-31.990086,151.81422,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-28.621739,153.47943,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,6,Australia,AU,New South Wales,-33.503703,150.702147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.491936,150.639158,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,MALE,occurrenceRemarks withheld,2022,11,7,Australia,AU,New South Wales,-29.037639,153.401068,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,16,Australia,AU,New South Wales,-33.717104,150.785232,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-32.733832,152.086195,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-31.454816,152.908734,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.457638,150.519793,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003837,1,MALE,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-28.693785,153.49554,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.478065,152.923537,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.453533,150.518293,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-29.834389,150.8452,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-32.223426,152.189959,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,3,Australia,AU,New South Wales,-33.716169,150.784998,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-28.328904,153.468557,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,2,8,Australia,AU,New South Wales,-29.48558,153.10379,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-34.015134,150.89165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.420627,150.609159,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100L,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-32.727779,152.011021,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.427364,150.60468,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,5,30,Australia,AU,New South Wales,-32.722432,152.07719,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.447163,150.513127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.46398,150.52397,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.43815,150.604405,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004101,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-28.865702,153.220131,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,13,Australia,AU,New South Wales,-29.48558,153.103811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.459915,150.519138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.43251,150.610583,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.38884,150.63103,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.42568,150.602052,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,1,3,Australia,AU,New South Wales,-31.329011,152.78371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.396174,150.643886,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-29.667173,152.867889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.446862,150.516096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.449542,150.516223,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004253,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.84815,153.302722,EPSG:4326 +HUMAN_OBSERVATION,ODFK24082206,1,,occurrenceRemarks withheld,2024,6,13,Australia,AU,Queensland,-27.518362,153.069309,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040415,1,FEMALE,occurrenceRemarks withheld,2023,1,18,Australia,AU,New South Wales,-33.971509,150.89337,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,3,7,Australia,AU,New South Wales,-34.091866,150.987363,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-31.920062,152.401708,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-28.385488,153.561958,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,16,Australia,AU,New South Wales,-28.844131,153.193314,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,6,23,Australia,AU,New South Wales,-31.938825,152.414839,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,12,27,Australia,AU,New South Wales,-31.916537,152.371166,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004234,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.603172,153.095447,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,3,4,Australia,AU,New South Wales,-31.441937,152.901761,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,,occurrenceRemarks withheld,2022,11,7,Australia,AU,New South Wales,-29.047296,153.395189,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,23,Australia,AU,New South Wales,-31.305806,152.866559,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-28.814874,153.334817,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-33.716917,150.78416,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-31.459504,152.928768,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.548357,150.644174,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.387059,150.631711,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.837541,152.727124,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,6,Australia,AU,New South Wales,-29.48912,153.101757,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240D,1,,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-32.7457,152.112532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.458795,150.528836,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.433152,150.613927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.434246,150.61642,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-36.115954,150.060139,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.101927,150.97652,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-29.487798,153.102894,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001217,1,,occurrenceRemarks withheld,2021,9,,Australia,AU,New South Wales,-28.712315,153.594424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.456594,150.519399,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-34.91114,150.04327,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.461223,150.521395,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.421768,150.639131,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-31.443058,152.8933,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090405,1,,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-32.732426,152.038905,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.430546,150.609725,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-29.015323,153.012979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.46159,150.525249,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-31.45733,152.923377,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,30,Australia,AU,New South Wales,-30.24956,153.116803,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-31.447377,152.909438,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-33.746099,150.081732,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111506,1,,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-33.56246,150.63064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.446089,150.513094,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,23,Australia,AU,New South Wales,-29.489979,153.110495,EPSG:4326 +HUMAN_OBSERVATION,Obs_0229,1,,occurrenceRemarks withheld,2024,6,19,Australia,AU,New South Wales,-31.447656,152.925728,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022409,1,,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-32.738611,152.07422,EPSG:4326 +HUMAN_OBSERVATION,ODMP10100606,1,,occurrenceRemarks withheld,2022,8,29,Australia,AU,New South Wales,-28.545168,153.169802,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.454268,150.607101,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.435547,150.6156,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-31.439029,152.884863,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-36.590676,149.945176,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.421061,150.626814,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-28.387756,153.558084,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.422513,150.60422,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.1844,150.79904,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,MALE,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-34.04301,150.863381,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,27,Australia,AU,New South Wales,-31.819477,152.685016,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.38992,150.628129,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.917112,152.874244,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-31.459112,152.928735,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-30.23878,152.90645,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-31.915914,152.37328,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.46298,150.535156,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-31.644405,152.795197,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042D,1,,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-34.037982,151.007085,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-34.44278,150.519035,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-31.447769,152.902981,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-32.708741,152.064551,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,10,1,Australia,AU,New South Wales,-31.921041,152.372057,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-29.48799,153.095813,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,13,Australia,AU,New South Wales,-32.356517,151.974079,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.137838,150.794056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.423791,150.637453,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-32.71098,152.065286,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-34.216613,150.796905,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072601;ODMP2212210O,1,,occurrenceRemarks withheld,2022,3,21,Australia,AU,New South Wales,-28.260425,153.40174,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.447116,150.513074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436392,150.615957,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,,occurrenceRemarks withheld,2023,1,21,Australia,AU,New South Wales,-28.819292,153.315064,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-28.828381,153.280168,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-28.95947,153.394415,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.41561,150.597934,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,5,14,Australia,AU,New South Wales,-31.62914,152.786782,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.434856,150.602432,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,28,Australia,AU,New South Wales,-29.490222,153.10821,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.438995,150.604294,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,13,Australia,AU,New South Wales,-29.490222,153.10821,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080204,1,,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-34.082195,150.850906,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-31.404289,152.261018,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.421231,150.626276,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2023,4,10,Australia,AU,New South Wales,-32.67563,151.6637,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-31.91019,152.40941,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-29.000055,153.37553,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.442345,152.901838,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,4,15,Australia,AU,New South Wales,-31.641325,152.792125,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.491476,150.639128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.436084,150.615889,EPSG:4326 +HUMAN_OBSERVATION,ODFK24030601,1,,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-32.73103,152.079426,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.435454,150.519437,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-29.489979,153.101285,EPSG:4326 +HUMAN_OBSERVATION,OJJS19051305,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-34.26211,150.70361,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,23,Australia,AU,New South Wales,-28.968909,153.432333,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-29.477572,153.104273,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130X,1,,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-31.439934,152.924609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.395113,150.62907,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.447501,150.516447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.465842,150.522445,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-29.489643,153.104466,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103004,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-32.7784,152.107713,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.451516,150.515294,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-31.443386,152.889712,EPSG:4326 +HUMAN_OBSERVATION,OPUR21080904;OMFZ23032808,1,,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-31.18492,152.897211,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.444961,150.515249,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.840581,153.360617,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.435618,150.607241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.390087,150.627439,EPSG:4326 +HUMAN_OBSERVATION,ODMP22100606,1,,occurrenceRemarks withheld,2022,9,15,Australia,AU,New South Wales,-28.689059,153.51289,EPSG:4326 +HUMAN_OBSERVATION,CLARP,1,,occurrenceRemarks withheld,2022,5,18,Australia,AU,New South Wales,-31.758628,152.578608,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,8,Australia,AU,New South Wales,-32.297172,151.994539,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-30.422181,153.011964,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.096581,150.84671,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-36.554124,150.021287,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-29.020809,153.423246,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150L,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-31.46875,152.927274,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.39043,150.626114,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-31.910186,152.409406,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-30.341413,152.619533,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,FEMALE,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-34.113876,150.804381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.424474,150.603076,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-29.02696,153.28726,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-31.445572,152.92577,EPSG:4326 +HUMAN_OBSERVATION,OPUR23081702;ODFK2310250A,1,,occurrenceRemarks withheld,2023,,,Australia,AU,New South Wales,-29.228892,153.073578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.463763,150.523944,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.397559,150.640399,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,MALE,occurrenceRemarks withheld,2024,3,24,Australia,AU,New South Wales,-34.055805,150.841982,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.872021,153.339182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.46571,150.52037,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-31.127799,152.794126,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-33.547441,150.673168,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151W,1,MALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.850559,153.319946,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-29.48742,153.110989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.42377,150.637302,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.41968,150.61147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.459203,150.52139,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.452072,150.517378,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-29.76276,151.1103,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081112,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-31.441625,152.911175,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.450832,150.515782,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-33.71562,150.785344,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-31.460426,152.895808,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,6,29,Australia,AU,New South Wales,-32.246702,151.695043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.445208,150.517222,EPSG:4326 +HUMAN_OBSERVATION,OGEM18052300,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.144733,150.796747,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.431984,152.842181,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100G,1,,occurrenceRemarks withheld,2024,2,6,Australia,AU,New South Wales,-32.712381,152.072518,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.428595,150.600358,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-28.666969,153.194708,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.430014,150.606976,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.423783,150.637486,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-31.47143,152.903978,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003955,1,MALE,occurrenceRemarks withheld,2023,1,23,Australia,AU,New South Wales,-28.82595,153.298814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.435941,150.616383,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130A,1,,occurrenceRemarks withheld,2023,8,18,Australia,AU,New South Wales,-30.221394,152.961427,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.420593,150.609269,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-29.484343,153.104026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.396949,150.640112,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,7,6,Australia,AU,New South Wales,-28.638007,153.628907,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180M,1,,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-28.939154,153.277512,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.446382,150.513749,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-31.443713,152.900226,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.812977,152.823592,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,2,5,Australia,AU,New South Wales,-31.468153,152.916425,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-29.485842,153.103645,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.420548,150.60927,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-34.925929,150.14393,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-28.400324,153.557242,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-29.001618,152.929682,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-32.622374,151.634846,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-29.489764,153.101333,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041403,1,,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-29.728258,151.083343,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.43379,150.617064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.41864,150.602536,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154A,1,,occurrenceRemarks withheld,2022,7,8,Australia,AU,New South Wales,-28.816404,153.31049,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210Z,1,,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-32.737211,152.036281,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.42067,150.63084,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,9,Australia,AU,New South Wales,-29.490175,153.10975,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-30.52389,152.630321,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.44741,150.514643,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003777,1,MALE,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-34.042414,150.862909,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111505,1,,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-33.981733,150.992016,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.446695,150.516308,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.437076,150.602999,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-33.719452,150.782843,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-29.489596,153.10394,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.432105,150.612031,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.445945,150.51312,EPSG:4326 +HUMAN_OBSERVATION,OJJS20031103,1,,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-33.01119,151.060823,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.410332,150.59728,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.465724,150.52062,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083001,1,,occurrenceRemarks withheld,2024,5,4,Australia,AU,New South Wales,-32.3538,151.821592,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,12,,Australia,AU,New South Wales,-36.130339,149.3242,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,25,Australia,AU,New South Wales,-29.488429,153.092551,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004121,1,MALE,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-28.36298,153.293987,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-32.720984,151.991649,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.46457,150.521939,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-31.379004,152.804016,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,26,Australia,AU,New South Wales,-31.442519,152.908086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.435047,150.606615,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,5,14,Australia,AU,New South Wales,-28.658498,153.465282,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-28.830538,153.291613,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.811037,152.824371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.479727,150.533193,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070B,1,,occurrenceRemarks withheld,2020,1,25,Australia,AU,New South Wales,-32.765345,152.034866,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-28.615939,153.546233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.429608,150.606063,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,FEMALE,occurrenceRemarks withheld,2022,6,1,Australia,AU,New South Wales,-31.454083,152.925303,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.504679,149.957517,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-31.224917,152.630753,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-31.449716,152.899157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.389974,150.627225,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.38895,150.624176,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-31.439237,152.887505,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031U,1,,occurrenceRemarks withheld,2023,5,28,Australia,AU,New South Wales,-31.43966,152.885358,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-34.191807,150.748795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.435992,150.61624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-34.435536,150.618756,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-29.490203,153.10821,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.421106,150.637529,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.384491,150.622486,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-33.772639,150.064683,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-29.514883,152.811429,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,18,Australia,AU,New South Wales,-29.490128,153.10799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.399532,150.639387,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091806,1,,occurrenceRemarks withheld,2024,7,25,Australia,AU,New South Wales,-32.745607,151.863769,EPSG:4326 +HUMAN_OBSERVATION,ODFK2408220D,1,,occurrenceRemarks withheld,2024,7,21,Australia,AU,New South Wales,-33.738636,150.64526,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.422001,150.607542,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-31.444907,152.905317,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,3,24,Australia,AU,New South Wales,-31.904256,152.422603,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,19,Australia,AU,New South Wales,-33.705096,150.78543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.434384,150.606874,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-31.271033,152.865666,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-28.612167,153.36534,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-33.713856,150.785119,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060O,1,,occurrenceRemarks withheld,2023,12,10,Australia,AU,New South Wales,-31.468605,152.90872,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,25,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.42093,150.62796,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,16,Australia,AU,New South Wales,-28.83034,153.218113,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,FEMALE,occurrenceRemarks withheld,2023,11,24,Australia,AU,New South Wales,-32.038888,152.260884,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.870872,153.28218,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,11,8,Australia,AU,New South Wales,-31.452967,152.914864,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,FEMALE,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-31.439368,152.904739,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001627,1,,occurrenceRemarks withheld,2020,2,13,Australia,AU,New South Wales,-31.93607,152.470268,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-28.830236,153.294082,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.43786,150.604326,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,18,Australia,AU,New South Wales,-28.256931,153.401659,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062902,1,,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-33.56275,149.525377,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-30.437334,152.98111,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-28.890141,153.303792,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111305,1,,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-28.621638,152.971512,EPSG:4326 +HUMAN_OBSERVATION,ODJG05013103,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-32.073611,151.5525,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.459106,150.521937,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211L,1,,occurrenceRemarks withheld,2022,4,23,Australia,AU,New South Wales,-32.725778,152.016119,EPSG:4326 +HUMAN_OBSERVATION,OSYK02050800,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-32.06324,151.6887,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.420701,150.63011,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-33.131013,151.083496,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-29.490203,153.109771,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.393716,150.644499,EPSG:4326 +HUMAN_OBSERVATION,OPJG21031207,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-28.319679,153.468241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.466936,150.521281,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,11,10,Australia,AU,New South Wales,-30.437334,152.98111,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-28.827614,153.222404,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-28.931139,153.276422,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,3,12,Australia,AU,New South Wales,-28.866001,153.367596,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.427596,150.603651,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200I,1,,occurrenceRemarks withheld,2024,3,30,Australia,AU,New South Wales,-32.50466,152.017053,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2020,4,26,Australia,AU,New South Wales,-29.667098,152.867632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.447197,150.513061,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052001,1,,occurrenceRemarks withheld,2024,4,3,Australia,AU,New South Wales,-31.473213,152.924126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.395626,150.62576,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,5,22,Australia,AU,New South Wales,-29.692524,152.851464,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,2,15,Australia,AU,New South Wales,-31.639705,152.79077,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-31.43873,152.890571,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003883,1,,occurrenceRemarks withheld,2023,4,22,Australia,AU,New South Wales,-28.88374,153.256039,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.465807,150.521608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.447082,150.514065,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-31.642577,152.790996,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-28.945257,153.439274,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031107,1,,occurrenceRemarks withheld,2024,1,4,Australia,AU,New South Wales,-32.70761,152.067727,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002824,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-29.425511,153.189755,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-29.048582,153.17527,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.383877,150.622884,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418752,150.60918,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-28.384369,153.562334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,5,Australia,AU,New South Wales,-34.438148,150.616298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.465257,150.522473,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.399729,150.624894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.383407,150.623289,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.085494,150.978938,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-29.506055,152.824529,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.414184,150.596919,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418853,150.632893,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.392685,150.639209,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-32.706212,152.063444,EPSG:4326 +HUMAN_OBSERVATION,ODMP22111601,1,,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-33.492399,149.551572,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-28.809314,153.288292,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-31.459429,152.929642,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210I,1,,occurrenceRemarks withheld,2022,11,14,Australia,AU,New South Wales,-32.718438,152.070636,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.438054,150.604147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.385588,150.626522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.427793,150.60086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.420677,150.630742,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.4657,150.520338,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004182,1,MALE,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-28.390616,153.565533,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,13,Australia,AU,New South Wales,-29.490357,153.108012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.39321,150.643947,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,3,27,Australia,AU,New South Wales,-28.919901,153.26682,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-31.442998,152.911534,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160E,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-31.42952,152.911372,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122108,1,,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-34.232265,150.82101,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.464744,150.529194,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303280D,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-31.42933,152.81531,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.28448,152.864848,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.418946,150.609446,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-31.461438,152.92367,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.392794,150.639206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.464207,150.522733,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091904,1,,occurrenceRemarks withheld,2024,8,28,Australia,AU,New South Wales,-32.422769,152.285216,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-31.804233,152.426115,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,5,10,Australia,AU,New South Wales,-32.706544,152.063677,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.438556,150.606755,EPSG:4326 +HUMAN_OBSERVATION,OAXB98011500,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-30.298384,153.035359,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.447294,150.513841,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-29.353949,150.200413,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,6,25,Australia,AU,New South Wales,-31.4445,152.906599,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,7,Australia,AU,New South Wales,-33.770165,150.079318,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.38614,150.625256,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,4,Australia,AU,New South Wales,-28.330316,153.5511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.4403,150.603702,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,24,Australia,AU,New South Wales,-29.490385,153.108172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-34.436391,150.615902,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041A,1,FEMALE,occurrenceRemarks withheld,2022,7,25,Australia,AU,New South Wales,-30.607837,151.480648,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-34.496059,150.460586,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-28.286866,153.559675,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,4,14,Australia,AU,New South Wales,-36.330067,149.325836,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.44944,150.516041,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-30.418677,152.97324,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,8,9,Australia,AU,New South Wales,-28.385519,153.561326,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180W,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-28.764379,153.073138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.43206,150.607897,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.43721,150.605672,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.438535,150.615798,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.418885,150.632707,EPSG:4326 +HUMAN_OBSERVATION,OPJG18122000,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-31.362425,152.705218,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,MALE,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-31.433483,152.896122,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.420939,150.627949,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221S,1,,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-32.734449,152.10016,EPSG:4326 +HUMAN_OBSERVATION,OPUR22062301,1,,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-33.81689,150.02203,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-29.493611,153.092364,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-29.48262,153.104439,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-31.474521,152.919166,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,29,Australia,AU,New South Wales,-32.706589,152.063762,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-29.490147,153.110474,EPSG:4326 +HUMAN_OBSERVATION,OJJS10010400;ODMP21091801,1,,occurrenceRemarks withheld,2023,,,Australia,AU,New South Wales,-29.12139,153.412483,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.464341,150.522228,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.429608,150.614822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.456418,150.523192,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.923629,152.375786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.447296,150.514375,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-30.621556,152.538685,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,,occurrenceRemarks withheld,2023,1,29,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457328,150.528966,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303310E,1,,occurrenceRemarks withheld,2022,6,3,Australia,AU,New South Wales,-32.736384,152.082066,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.441136,152.90304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.465046,150.522338,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160C,1,MALE,occurrenceRemarks withheld,2022,10,14,Australia,AU,New South Wales,-30.882419,153.069323,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-29.668902,152.869519,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-29.490138,153.10115,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.486267,150.635072,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222B,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,OJJS06031407,1,MALE,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-32.400845,152.466934,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OJJS20041402;OJJS20041409;OMFZ23033002,1,,occurrenceRemarks withheld,2022,11,14,Australia,AU,New South Wales,-32.769061,152.085957,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-30.8961,153.036423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.390026,150.630834,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435349,150.616073,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-34.147882,150.790691,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.286671,152.872409,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-28.864642,153.29309,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.398968,150.616377,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.437564,150.518123,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.820088,153.273941,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,1,16,Australia,AU,New South Wales,-31.933106,152.415262,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.454564,150.522441,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-29.139918,152.941206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.43602,150.616315,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-29.486724,153.103184,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-28.667451,153.597863,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-28.384015,153.562037,EPSG:4326 +HUMAN_OBSERVATION,OJQS16052400,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-30.517151,151.658961,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.424392,150.604417,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.488261,150.636997,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-29.488377,153.110104,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,15,Australia,AU,New South Wales,-29.483124,153.104203,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-31.431407,152.912645,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150G,1,,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-33.456448,150.722306,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-31.361339,152.804825,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.419697,150.611437,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.42915,150.614411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.450599,150.515844,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210I,1,,occurrenceRemarks withheld,2022,9,17,Australia,AU,New South Wales,-32.724036,152.077182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.420111,150.631302,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-33.776018,150.059311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.425642,150.604262,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004238,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.855525,153.323421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.395348,150.643082,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-32.225666,152.196402,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300N,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-32.728237,152.080111,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,7,7,Australia,AU,New South Wales,-28.397173,153.557555,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100403,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-32.938278,151.140966,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.465797,150.522436,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.420689,150.609135,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003856,1,,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-28.874205,153.279565,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.418868,150.63274,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.0268,151.046985,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.41946,150.633082,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-30.10949,152.739882,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-31.426607,152.883318,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.454115,150.520311,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,7,5,Australia,AU,New South Wales,-28.617278,153.430349,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-29.490072,153.101215,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,MALE,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-29.037542,153.399989,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2022,1,3,Australia,AU,New South Wales,-34.147572,150.793482,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.450846,150.522725,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-30.24025,152.90623,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-29.479869,153.104106,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.386917,150.630922,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-28.959956,153.395292,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-34.9003,150.06271,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-31.13394,150.07661,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-31.441155,152.902757,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.386269,150.62584,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.447197,150.513072,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-31.43315,152.908529,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,7,17,Australia,AU,New South Wales,-28.877875,153.293361,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.562884,152.822341,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.387813,150.631527,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001595,1,,occurrenceRemarks withheld,2022,5,11,Australia,AU,New South Wales,-32.548814,151.61384,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-28.575404,153.368881,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100Y,1,,occurrenceRemarks withheld,2023,12,15,Australia,AU,New South Wales,-31.453816,152.919013,EPSG:4326 +HUMAN_OBSERVATION,OPJG21031201,1,FEMALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-30.400634,151.559823,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2022,3,30,Australia,AU,New South Wales,-32.529237,151.887282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.451398,150.518367,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,12,11,Australia,AU,New South Wales,-29.488802,153.09408,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.464617,150.526073,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.524474,150.566043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.39796,150.639724,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150J,1,FEMALE,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-28.637651,153.264671,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.432153,150.606154,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,13,Australia,AU,New South Wales,-28.56031,153.12396,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.465717,150.520261,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.434472,150.616435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.436378,150.519214,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,3,11,Australia,AU,New South Wales,-31.457832,152.917862,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-30.399605,152.988323,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.436918,150.603221,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-30.450893,153.054528,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2022,12,28,Australia,AU,New South Wales,-28.785628,152.090064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.44623,150.516942,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-28.644396,153.560256,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,6,Australia,AU,New South Wales,-31.45824,152.910295,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.467838,150.520427,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-31.475296,152.920119,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,6,Australia,AU,New South Wales,-31.441802,152.906503,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,5,14,Australia,AU,New South Wales,-29.45099,153.07705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.419973,150.602476,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-28.378901,152.655397,EPSG:4326 +HUMAN_OBSERVATION,OJJS13032501,1,MALE,occurrenceRemarks withheld,2021,11,8,Australia,AU,New South Wales,-30.174551,152.481061,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.467406,150.519123,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.453579,150.52013,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-31.477951,152.922257,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.420634,150.630863,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2024,8,17,Australia,AU,New South Wales,-30.224124,153.095148,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.411712,150.596359,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-29.485576,153.103795,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071101,1,,occurrenceRemarks withheld,2024,5,7,Australia,AU,New South Wales,-32.199691,152.132663,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-865,1,,occurrenceRemarks withheld,2024,6,3,Australia,AU,New South Wales,-30.407462,152.878701,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-32.686224,151.653306,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,26,Australia,AU,New South Wales,-30.881118,153.072091,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.104108,150.792663,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,12,4,Australia,AU,New South Wales,-29.058325,153.395128,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-31.483981,152.907396,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-29.477558,153.104214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.475693,150.533018,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060502,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-30.338459,153.078601,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-32.709636,152.071552,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-32.759928,152.067424,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-33.76757,150.058876,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-29.490035,153.110565,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-32.739864,152.097873,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-33.70957,150.785187,EPSG:4326 +HUMAN_OBSERVATION,OICG18022200,1,,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-28.934678,153.278056,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002777,1,,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-29.493185,153.092526,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,6,29,Australia,AU,New South Wales,-31.49771,152.871723,EPSG:4326 +HUMAN_OBSERVATION,OSYK02050800,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-28.71385,153.11437,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.1741,152.90875,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.427286,150.600265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.494742,150.641159,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,2,7,Australia,AU,New South Wales,-31.458298,152.910478,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.433226,150.615872,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.488074,150.636643,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-29.478847,153.104187,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-33.717754,150.784162,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.127969,150.822863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.453846,150.520373,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181V,1,,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-28.818589,153.302203,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.456359,150.655909,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.427436,150.602872,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-31.786259,152.693838,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.470028,150.530594,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-28.384411,153.561539,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,23,Australia,AU,New South Wales,-29.485341,153.103857,EPSG:4326 +HUMAN_OBSERVATION,ODMP21083102,1,,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-32.230681,150.962107,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-32.764425,152.117097,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130E,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-31.925277,152.402691,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-29.667173,152.867546,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.808943,152.744942,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,5,27,Australia,AU,New South Wales,-32.72261,152.077268,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-28.655322,153.617799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.391273,150.644991,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,22,Australia,AU,New South Wales,-29.48982,153.101655,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,12,23,Australia,AU,New South Wales,-28.389286,153.561186,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.419892,150.602511,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,4,12,Australia,AU,New South Wales,-31.463588,152.924645,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.420286,150.627315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.455519,150.608839,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,12,5,Australia,AU,New South Wales,-28.923918,153.264101,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.449112,150.518108,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031416,1,,occurrenceRemarks withheld,2021,10,23,Australia,AU,Queensland,-27.11172,152.83702,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-31.878915,151.83394,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.463888,150.524321,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.484484,152.782778,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,14,Australia,AU,New South Wales,-31.446374,152.915077,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,8,20,Australia,AU,New South Wales,-34.189305,150.791567,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042N,1,,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-32.779054,152.001192,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-28.868575,153.28661,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004120,1,,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-28.299788,153.299863,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,,occurrenceRemarks withheld,2023,3,24,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-28.849862,153.030808,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.431894,150.613691,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220J,1,,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-32.679433,151.646419,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.457429,150.60602,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.429653,150.610196,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.441396,150.517727,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.470841,150.530233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.447435,150.51634,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.148089,150.794344,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.454124,150.52031,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,1,14,Australia,AU,New South Wales,-35.751639,149.378611,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031540,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-28.818774,153.315304,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-28.819019,153.336412,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154R,1,,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-28.865354,153.316829,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,2,10,Australia,AU,New South Wales,-28.659742,153.59353,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-28.675567,153.516792,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2023,1,2,Australia,AU,New South Wales,-31.450083,152.899406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.428746,150.600234,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,2,4,Australia,AU,New South Wales,-31.912948,152.355033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.420196,150.627339,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011014,1,,occurrenceRemarks withheld,2020,12,13,Australia,AU,New South Wales,-32.732065,152.039499,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.455066,152.920915,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.429815,150.618026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.444768,150.519042,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-30.386833,153.041711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.46718,150.521764,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,8,13,Australia,AU,New South Wales,-32.707463,152.063944,EPSG:4326 +HUMAN_OBSERVATION,ODFK24062801,1,FEMALE,occurrenceRemarks withheld,2024,2,18,Australia,AU,New South Wales,-29.489394,153.102242,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.45089,152.85259,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.434043,150.615675,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.436973,150.603274,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,2,5,Australia,AU,New South Wales,-29.485473,153.103819,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-34.441262,150.616504,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.425143,150.599935,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-29.478907,153.104165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.383804,150.622864,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-36.249969,149.410686,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.448584,150.517405,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.394988,150.630553,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-31.445843,152.916781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.442699,150.516633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.438713,150.604182,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,2,Australia,AU,New South Wales,-33.713738,150.785089,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.420965,150.630244,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.437955,150.604128,EPSG:4326 +HUMAN_OBSERVATION,ODFK24041800,1,,occurrenceRemarks withheld,2024,6,12,Australia,AU,New South Wales,-30.4267,152.93503,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.383496,150.6237,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,6,20,Australia,AU,New South Wales,-29.48502,153.103833,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,19,Australia,AU,New South Wales,-33.703431,150.787616,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.494087,150.640382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.447812,150.513151,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,3,20,Australia,AU,New South Wales,-31.445138,152.915934,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-31.454632,152.926366,EPSG:4326 +HUMAN_OBSERVATION,OVGI98110201,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-30.48123,151.738485,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,4,24,Australia,AU,New South Wales,-31.444861,152.916431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.427032,150.604788,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290U,1,,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-31.451634,152.92234,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.831278,152.74254,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.423798,150.637345,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-30.8961,153.036423,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,FEMALE,occurrenceRemarks withheld,2022,1,20,Australia,AU,New South Wales,-32.663111,152.171052,EPSG:4326 +HUMAN_OBSERVATION,OIXR16042803,1,,occurrenceRemarks withheld,2022,7,23,Australia,AU,New South Wales,-28.661269,153.609484,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,5,6,Australia,AU,New South Wales,-31.469217,152.917933,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260A,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-34.197003,150.792474,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,8,9,Australia,AU,New South Wales,-32.6534,151.791,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.426418,150.604283,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.427097,150.604905,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.469947,150.530597,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-31.312712,152.199103,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-31.445699,152.893666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.38783,150.631505,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003932,1,MALE,occurrenceRemarks withheld,2023,2,10,Australia,AU,New South Wales,-28.819317,153.301854,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.810617,152.82757,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,12,Australia,AU,New South Wales,-28.832687,153.211011,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.433109,150.615419,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.419707,150.611448,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040F,1,,occurrenceRemarks withheld,2024,3,10,Australia,AU,New South Wales,-33.766239,150.043647,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-34.096131,150.985134,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-28.648643,153.242187,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.650301,153.46202,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,7,7,Australia,AU,New South Wales,-34.068368,150.913678,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,12,24,Australia,AU,New South Wales,-30.094786,152.151376,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-28.816541,153.285019,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-29.48983,153.101451,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,7,22,Australia,AU,New South Wales,-30.309053,153.120282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.418896,150.632815,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100605,1,,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-31.436028,152.905155,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.456111,150.523604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.418743,150.609191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.46504,150.522447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.429519,150.614422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.466501,150.527846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.471529,150.524139,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.443338,150.515254,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,1,16,Australia,AU,New South Wales,-28.229488,153.49089,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,12,Australia,AU,New South Wales,-29.478851,153.104149,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-31.447111,152.907694,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.445736,150.514791,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,30,Australia,AU,New South Wales,-29.48344,153.095228,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-31.48086,152.921498,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.466232,150.523022,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-31.913202,152.374047,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-31.47705,152.917569,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-31.428137,152.909507,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-34.20866,150.809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.420715,150.630828,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-28.376623,153.505206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.46569,150.521198,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.429003,150.600499,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,,,Australia,AU,New South Wales,-29.316805,152.85899,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,12,8,Australia,AU,New South Wales,-31.958536,152.399266,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.23465,152.198472,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.387364,150.63117,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,18,Australia,AU,New South Wales,-29.489559,153.103817,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-29.630883,152.899196,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303200C,1,,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-32.707344,152.066682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.43905,150.604325,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-33.503703,150.702147,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-34.082462,150.996392,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-31.975252,152.166342,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.390999,150.628479,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-34.143427,150.79064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.383782,150.623104,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,11,Australia,AU,New South Wales,-29.490992,153.107995,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020603,1,,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-33.556403,149.548005,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2022,8,12,Australia,AU,New South Wales,-29.899372,152.147678,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-31.48086,152.921498,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290Z,1,,occurrenceRemarks withheld,2023,2,15,Australia,AU,New South Wales,-31.470596,152.868583,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-31.443667,152.900435,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,7,Australia,AU,New South Wales,-29.490199,153.110576,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031801,1,,occurrenceRemarks withheld,2022,7,14,Australia,AU,New South Wales,-28.830037,153.323668,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.399321,150.617814,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031405,1,,occurrenceRemarks withheld,2024,1,27,Australia,AU,New South Wales,-33.730889,150.332334,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-34.19726,150.79925,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,3,7,Australia,AU,New South Wales,-34.092652,150.985431,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,6,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007130E,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.957954,152.184738,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.384102,150.622421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.429633,150.614255,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.436906,150.602569,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.560893,152.209443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.429633,150.614255,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,6,22,Australia,AU,New South Wales,-31.930687,152.405729,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.488507,150.637578,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-28.959453,153.394463,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.43293,150.603956,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,7,8,Australia,AU,New South Wales,-31.449176,152.916732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.479118,150.533886,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121004,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-31.908158,152.413633,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072703;OLHP23072704,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.594083,152.191214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.464869,150.528286,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.461241,150.519621,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-29.667434,152.867804,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.469182,153.043387,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150N,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-28.387756,153.558084,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031402,1,,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-28.879786,153.324384,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-32.216754,152.192089,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.395321,150.630054,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-34.40265,150.53167,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-30.455209,152.712889,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-29.477623,153.104396,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-31.447809,152.905922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.43099,150.61586,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-31.629322,152.786873,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.399382,150.616779,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-29.485454,153.103843,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-31.459397,152.923977,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250C,2,FEMALE,occurrenceRemarks withheld,2024,9,24,Australia,AU,New South Wales,-29.486475,153.092437,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.500217,150.582601,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-28.729263,153.592081,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,9,1,Australia,AU,New South Wales,-31.490051,152.7773,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-28.679315,153.283689,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.424898,150.603978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.435645,150.603595,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.465574,150.521223,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-28.814156,153.334406,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-29.489876,153.103371,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250I,1,MALE,occurrenceRemarks withheld,2024,9,24,Australia,AU,New South Wales,-33.978448,150.906611,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.418844,150.632893,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,5,19,Australia,AU,New South Wales,-31.910186,152.409406,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-28.814156,153.334406,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-28.531599,153.150101,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030507,1,,occurrenceRemarks withheld,2024,2,15,Australia,AU,Queensland,-27.217488,153.014755,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,1,26,Australia,AU,New South Wales,-28.430094,153.027045,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-36.474664,149.917922,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-29.485683,153.103457,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-29.485655,153.103468,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-29.490007,153.101274,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.479102,152.867927,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,15,Australia,AU,New South Wales,-32.346581,152.485401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.446998,150.521022,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.264159,153.472241,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2020,6,29,Australia,AU,New South Wales,-33.527214,150.659912,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.427943,150.597929,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,2,23,Australia,AU,New South Wales,-31.640153,152.792649,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-28.814504,153.319462,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.44687,150.51602,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-28.381709,153.562995,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418843,150.63286,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,3,17,Australia,AU,New South Wales,-31.447703,152.925416,EPSG:4326 +HUMAN_OBSERVATION,OLHP24071202,1,,occurrenceRemarks withheld,2024,6,28,Australia,AU,Queensland,-27.211485,153.020108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.42075,150.627062,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-32.719895,152.124133,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2022,7,18,Australia,AU,New South Wales,-34.520916,150.562536,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-28.264043,153.47209,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.471041,150.52989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.421288,150.627352,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.433873,150.614853,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.420957,150.62796,EPSG:4326 +HUMAN_OBSERVATION,OJJS20072903,1,MALE,occurrenceRemarks withheld,2023,11,24,Australia,AU,New South Wales,-31.474536,152.917449,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100G,1,,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-31.185418,152.969402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.425768,150.602398,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003945,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-28.398769,153.556039,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-31.941299,152.414565,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.387364,150.63117,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.492731,150.638765,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031510,1,FEMALE,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-28.848765,153.304452,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,5,18,Australia,AU,New South Wales,-28.618971,153.117387,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-29.630702,152.899657,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.420902,150.630235,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.433407,150.616379,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,22,Australia,AU,New South Wales,-31.127058,152.805319,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-30.088985,152.160691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.418396,150.603457,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.225666,152.196402,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.465677,150.521427,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.421785,150.636259,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,29,Australia,AU,New South Wales,-33.705786,150.786217,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180H,1,,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-28.872476,153.462917,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.390863,150.62795,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.387836,150.624371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.419161,150.610288,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-29.490273,153.10814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.436054,150.616162,EPSG:4326 +HUMAN_OBSERVATION,OPUR21112900,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.335476,150.743496,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.458052,150.663361,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.465671,150.522037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.466929,150.521346,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100F,1,,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-31.454216,152.918698,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-28.626581,153.40136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.399188,150.639799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.400334,150.639843,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-31.921114,152.372164,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,1,Australia,AU,New South Wales,-31.47067,152.907958,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211V,1,,occurrenceRemarks withheld,2022,10,23,Australia,AU,New South Wales,-32.706784,152.064276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.385839,150.625047,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-31.314991,152.230895,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-29.482111,153.104208,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,12,,Australia,AU,New South Wales,-36.106472,149.30962,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,6,Australia,AU,New South Wales,-29.490203,153.108194,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122105,1,MALE,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-31.454667,152.90858,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.402097,150.648549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.488234,150.635136,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.435978,150.520401,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-29.490259,153.10813,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-32.090675,152.441685,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,OGEM18052300,1,,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-36.563902,149.999945,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260C,1,,occurrenceRemarks withheld,2021,1,16,Australia,AU,New South Wales,-32.710788,152.060993,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.432812,150.609911,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,4,1,Australia,AU,New South Wales,-31.633204,152.78534,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-36.250306,149.411228,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,4,Australia,AU,New South Wales,-29.484098,153.104117,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200G,1,,occurrenceRemarks withheld,2024,4,27,Australia,AU,New South Wales,-31.932184,152.412629,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.444077,152.887473,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,30,Australia,AU,New South Wales,-29.485585,153.10379,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,2,5,Australia,AU,New South Wales,-29.737362,151.057879,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102114,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-32.727673,152.076638,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-34.108222,150.984826,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,26,Australia,AU,New South Wales,-28.83393,153.329621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.465779,150.520248,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.466761,150.521068,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,,,Australia,AU,New South Wales,-36.152467,149.313487,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,27,Australia,AU,New South Wales,-31.46972,152.908669,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.455298,150.657017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.46645,150.521328,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-31.074894,152.887854,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.289734,153.559556,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-30.506388,152.924359,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2022,7,16,Australia,AU,New South Wales,-32.735675,152.036798,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-30.884354,153.040372,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,29,Australia,AU,New South Wales,-31.464583,152.91001,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,2,19,Australia,AU,New South Wales,-28.823987,153.34881,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190N,1,,occurrenceRemarks withheld,2024,7,10,Australia,AU,New South Wales,-34.047237,150.884417,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,10,2,Australia,AU,New South Wales,-28.810765,153.30197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.395527,150.642577,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,FEMALE,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-30.364222,153.010503,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181M,1,,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-28.883003,153.352564,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-34.057357,150.839633,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,7,22,Australia,AU,New South Wales,-32.737745,152.058964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.458721,150.532734,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041304,1,,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-31.304815,152.86972,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-28.912792,153.346127,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,4,Australia,AU,New South Wales,-31.12735,152.807615,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.220827,152.198292,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.949251,152.371016,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.424441,150.604579,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090407,1,MALE,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-32.630479,151.70521,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.421976,150.607641,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.446393,150.52006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.429232,150.614484,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-33.970139,150.95194,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090406,1,,occurrenceRemarks withheld,2024,5,10,Australia,AU,New South Wales,-30.367341,153.018915,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,12,29,Australia,AU,New South Wales,-32.722493,152.077203,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-34.141963,150.791327,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-28.27124,152.459501,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.447248,150.516008,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-29.489671,153.104798,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,25,Australia,AU,New South Wales,-28.462257,153.081525,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-31.454898,152.926919,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.451397,150.518323,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004104,1,FEMALE,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-28.238026,153.433562,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.440113,150.603848,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.428457,152.843124,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,29,Australia,AU,New South Wales,-28.874261,153.378488,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070C,1,FEMALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.135544,150.794283,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.465722,150.522329,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,3,23,Australia,AU,New South Wales,-29.488102,153.092219,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,4,17,Australia,AU,New South Wales,-33.58539,150.65618,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-28.948849,153.313447,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-28.282873,152.468304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.490625,150.638487,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-28.948849,153.313447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.465078,150.52213,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2024,9,7,Australia,AU,New South Wales,-33.525168,150.660374,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.798034,152.812484,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.420278,150.627337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.397337,150.645757,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.488091,150.636599,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,4,19,Australia,AU,New South Wales,-31.917669,152.251817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.427513,150.603577,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.446667,150.515819,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.391245,150.644948,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154P,1,MALE,occurrenceRemarks withheld,2023,8,7,Australia,AU,New South Wales,-28.678508,153.279295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.388252,150.630917,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041304,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-31.478456,152.894089,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-28.659346,153.330266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435799,150.519992,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-32.724859,152.072718,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,8,30,Australia,AU,New South Wales,-30.082651,152.215502,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-31.430954,152.882224,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.435726,150.616487,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221X,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-32.732798,152.105286,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-29.666912,152.868447,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-31.472115,152.928111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.45499,150.514125,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.464917,150.522603,EPSG:4326 +HUMAN_OBSERVATION,ODFK2408220L,1,,occurrenceRemarks withheld,2024,7,14,Australia,AU,New South Wales,-31.500755,152.808444,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-32.232834,152.352266,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-28.832625,153.292004,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.453515,150.517412,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.813462,153.334493,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.447143,150.513073,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.398306,150.627305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.435498,150.615438,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080902,1,,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-31.448924,152.921041,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,6,Australia,AU,New South Wales,-29.489414,153.101939,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-31.474563,152.897611,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-31.453664,152.822549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.429213,150.616269,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-34.090322,150.990379,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-33.751393,150.119432,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-36.03167,149.39945,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-29.488354,153.109953,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-31.300384,152.81879,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-31.593288,152.840384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.446384,150.513836,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011014,1,,occurrenceRemarks withheld,2021,1,4,Australia,AU,New South Wales,-32.732024,152.039673,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.41909,150.610334,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,4,28,Australia,AU,New South Wales,-32.706869,152.063563,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040427,1,,occurrenceRemarks withheld,2022,11,7,Australia,AU,New South Wales,-33.490136,149.551286,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-28.960362,153.394466,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.648854,152.819431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.399173,150.618547,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-33.491215,149.552141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.419052,150.610226,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-34.015981,150.877258,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17377,152.90927,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004078,1,,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-28.663312,153.614641,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.389469,150.627196,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,22,Australia,AU,New South Wales,-28.662949,153.110901,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-28.257634,153.402368,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-29.66219,152.879064,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-31.451681,152.921641,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.387713,150.631943,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062801,1,,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-31.161695,152.881689,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-31.466093,152.90957,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,3,1,Australia,AU,New South Wales,-31.456044,152.91203,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-33.439079,150.885195,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,12,8,Australia,AU,New South Wales,-31.444749,152.905666,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-31.442757,152.905929,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121501,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-31.150235,152.815652,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,6,18,Australia,AU,New South Wales,-31.163249,152.971219,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,5,11,Australia,AU,New South Wales,-28.632876,153.532505,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-31.442508,152.901012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.465807,150.521608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.466092,150.521426,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,8,Australia,AU,New South Wales,-34.438734,150.616314,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190N,1,,occurrenceRemarks withheld,2023,2,11,Australia,AU,New South Wales,-31.463745,152.841836,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.430189,150.616383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.437348,150.604885,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0005941,1,,occurrenceRemarks withheld,2024,8,8,Australia,AU,New South Wales,-34.16827,150.78917,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-28.542074,153.143428,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021501,1,MALE,occurrenceRemarks withheld,2024,1,29,Australia,AU,New South Wales,-31.473085,152.935775,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,8,Australia,AU,New South Wales,-28.489243,153.023076,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,10,Australia,AU,New South Wales,-28.604427,153.494261,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-32.254112,152.2239,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153Y,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-28.589197,153.445624,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.824882,153.303135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.441479,150.51779,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.420631,150.630689,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-33.716982,150.785307,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.420984,150.630276,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-28.64423,152.979499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.464058,150.525176,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-30.079573,152.172138,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,5,13,Australia,AU,New South Wales,-33.983737,151.004731,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-29.484063,153.104031,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-33.713126,150.785634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.435943,150.605893,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-30.505406,152.910052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.395614,150.642379,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-28.88908,153.226806,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.457618,150.659041,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.463724,150.523814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.39983,150.643642,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.43387,150.542801,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2020,6,26,Australia,AU,New South Wales,-32.485966,151.779398,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-28.556532,153.074223,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-31.474776,152.921498,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-28.331788,152.612505,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.960826,153.401793,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-29.484292,153.104047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.488204,150.637325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.435955,150.615751,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.395551,150.642392,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.430032,150.614364,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.224416,152.194095,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-31.907463,152.381308,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,FEMALE,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-34.127969,150.822863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.433152,150.607485,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.419718,150.603288,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,3,10,Australia,AU,New South Wales,-28.819803,153.302593,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.434509,150.606783,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.232904,152.187392,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-31.654759,152.809024,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-29.487906,153.091747,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082307,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-30.417822,152.986311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-34.497438,150.535263,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,9,10,Australia,AU,New South Wales,-28.658782,153.621211,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,10,Australia,AU,New South Wales,-31.442366,152.788974,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.949329,152.371521,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101O,1,,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-31.431045,152.885077,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.862857,153.317651,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.437077,150.603032,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004196,1,,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.824066,153.303545,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.386763,150.62712,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.455581,150.657673,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.446372,150.51413,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-31.454472,152.926671,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-28.792334,153.385826,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160K,1,,occurrenceRemarks withheld,2022,10,28,Australia,AU,New South Wales,-30.353928,153.078646,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290Z,1,,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-31.472935,152.868375,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.447828,150.517058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.392862,150.632962,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.465744,150.521621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.456406,150.608553,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-34.096923,150.986069,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,3,31,Australia,AU,New South Wales,-28.694927,153.568665,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-29.316805,152.855893,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.437861,150.604848,EPSG:4326 +HUMAN_OBSERVATION,OJJT03070100,1,MALE,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-30.3125,151.6601,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.455911,150.60812,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.42738,150.60048,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-29.683015,152.875173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.427181,150.605501,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,16,Australia,AU,New South Wales,-29.489643,153.104809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.42132,150.626709,EPSG:4326 +HUMAN_OBSERVATION,ODFK24062804,1,MALE,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-29.65991,152.810158,EPSG:4326 +HUMAN_OBSERVATION,OLHP2312140G,1,,occurrenceRemarks withheld,2021,12,25,Australia,AU,New South Wales,-29.721532,150.937814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.454383,150.517103,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-31.276485,152.81246,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-29.489591,153.103908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.420251,150.635258,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.46645,150.521328,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.488532,150.637512,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.420715,150.630828,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.449608,150.515895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.419721,150.611284,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.440284,150.516236,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.493158,150.640332,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-987,1,,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-30.154348,152.730163,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-31.215107,152.38406,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.889402,153.184652,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.44479,150.515733,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-28.577608,153.371578,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-29.488144,153.092246,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-33.767832,150.049498,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.493027,150.63916,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,MALE,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-29.629872,152.896425,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-28.260019,153.40198,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-29.629872,152.896425,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-30.17587,152.90877,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-29.490128,153.110517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.420822,150.627974,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,7,3,Australia,AU,New South Wales,-32.765102,152.035761,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-34.441152,150.616398,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003804,1,,occurrenceRemarks withheld,2023,3,8,Australia,AU,New South Wales,-28.844678,153.302762,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-28.679004,153.278089,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.397735,150.622035,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-28.260139,153.40076,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-29.490572,153.109436,EPSG:4326 +HUMAN_OBSERVATION,OPJG16091402,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.913293,152.88146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.423028,150.60797,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.448794,150.517562,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.256329,152.746224,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.452574,150.519877,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-31.923406,152.371067,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,5,Australia,AU,New South Wales,-29.490483,153.108146,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,1,31,Australia,AU,New South Wales,-28.823019,153.31604,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-28.633009,153.294848,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-36.459771,149.965237,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152O,1,,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-28.817031,153.300533,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.84799,153.302829,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2022,10,20,Australia,AU,New South Wales,-34.113009,150.798005,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-33.716562,150.784451,EPSG:4326 +HUMAN_OBSERVATION,ODFK23111401,1,,occurrenceRemarks withheld,2024,9,3,Australia,AU,New South Wales,-31.569922,152.178566,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,13,Australia,AU,New South Wales,-29.477651,153.103999,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.953149,153.369052,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.985803,153.438839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-34.443592,150.514452,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210L,1,,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-32.587074,151.775507,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,6,18,Australia,AU,New South Wales,-32.720823,151.993228,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,25,Australia,AU,New South Wales,-29.216759,152.803819,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.488781,150.634979,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004192,1,MALE,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-28.626738,153.481364,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.535507,153.16197,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,10,Australia,AU,New South Wales,-31.196379,152.384816,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-31.116376,152.79253,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.582477,153.551098,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.65796,152.812379,EPSG:4326 +HUMAN_OBSERVATION,OPUR15081400,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-28.962296,152.768706,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.431022,150.613813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.424896,150.602053,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,28,Australia,AU,New South Wales,-31.520381,152.784306,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.388108,150.624417,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.150322,150.824153,EPSG:4326 +HUMAN_OBSERVATION,OPJG17071700,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-32.990919,151.040386,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,7,Australia,AU,New South Wales,-28.661288,153.609571,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103105,1,,occurrenceRemarks withheld,2023,1,8,Australia,AU,Queensland,-25.589136,152.627528,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210J,1,,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-28.274474,153.394922,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,2,9,Australia,AU,New South Wales,-31.482549,152.915361,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-29.485342,153.10394,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-31.910186,152.409406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.485499,150.635921,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.438063,150.615648,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-31.465873,152.927413,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.430128,150.607757,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.562421,149.989087,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,6,Australia,AU,New South Wales,-34.44144,150.616825,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-29.504234,152.824679,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,5,Australia,AU,New South Wales,-29.489984,153.110565,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,2,18,Australia,AU,New South Wales,-31.451821,152.884543,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,9,5,Australia,AU,New South Wales,-34.01789,150.885204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.399133,150.639757,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,16,Australia,AU,New South Wales,-28.849111,152.915526,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,22,Australia,AU,New South Wales,-31.456439,152.921026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.425768,150.602398,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.424668,150.602864,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090407,1,FEMALE,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-32.712341,152.160763,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.423987,150.604875,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-29.489648,153.104997,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866277,153.367822,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140R,1,,occurrenceRemarks withheld,2021,12,18,Australia,AU,New South Wales,-33.459707,150.597474,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-28.391295,153.562646,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,6,13,Australia,AU,New South Wales,-28.559312,153.097054,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-31.943502,152.449444,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-30.28047,153.05413,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,20,Australia,AU,New South Wales,-32.027634,152.385526,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-34.447738,150.513926,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.451479,150.518375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.402443,150.650562,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-31.333756,152.954394,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.466012,150.521961,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.135124,150.795513,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290A,1,,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-31.459337,152.928698,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,5,Australia,AU,New South Wales,-29.490077,153.110495,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,2,4,Australia,AU,New South Wales,-28.627856,153.46244,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.421983,150.636275,EPSG:4326 +HUMAN_OBSERVATION,OJJS15061602,1,,occurrenceRemarks withheld,2020,3,19,Australia,AU,New South Wales,-29.712486,152.828044,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,4,18,Australia,AU,New South Wales,-33.57235,150.635535,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220R,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-32.699743,152.065043,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,10,23,Australia,AU,New South Wales,-28.659556,153.616938,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-29.48996,153.110576,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-29.000938,152.930133,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-29.488093,153.102293,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-31.640312,152.788599,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.433104,150.605006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.446666,150.515732,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-34.046596,151.006961,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-33.527182,150.659907,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-28.883743,153.389281,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-29.484875,153.096022,EPSG:4326 +HUMAN_OBSERVATION,SHARM,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-32.733612,149.68917,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.869015,153.335481,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.632867,149.949786,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-30.507898,152.926883,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.23198,152.192249,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-33.107983,151.240369,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-34.206601,150.785693,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-29.490586,153.109326,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2023,5,14,Australia,AU,New South Wales,-34.136415,150.821686,EPSG:4326 +HUMAN_OBSERVATION,OPJG23022201,1,,occurrenceRemarks withheld,2020,7,25,Australia,AU,New South Wales,-34.698285,150.086521,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-29.488802,153.09401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.419616,150.632762,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-30.380306,153.032917,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-31.463326,152.92067,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,25,Australia,AU,New South Wales,-31.436102,152.896244,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.418309,150.632734,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072601;ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,12,Australia,AU,New South Wales,-28.258755,153.402087,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-31.458772,152.914745,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,22,Australia,AU,New South Wales,-29.490082,153.100721,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.494244,150.640552,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OMFZ23033002;ODFK24051300,1,,occurrenceRemarks withheld,2022,5,15,Australia,AU,New South Wales,-32.139475,152.024044,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.439523,150.619339,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.910186,152.409406,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-31.57941,150.43394,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.393772,150.640843,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.418279,150.632604,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-29.506699,152.82476,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.489578,152.678244,EPSG:4326 +HUMAN_OBSERVATION,OIXR16111000;OMRF21071000,1,FEMALE,occurrenceRemarks withheld,2023,6,13,Australia,AU,New South Wales,-34.113815,150.94014,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111311,1,,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-30.378965,153.017872,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,2,28,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-29.490133,153.107475,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.427932,150.59781,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-31.454864,152.908628,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,3,13,Australia,AU,New South Wales,-28.733691,153.545595,EPSG:4326 +HUMAN_OBSERVATION,OJJS20051106,1,,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-29.999273,151.944201,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-29.490493,153.109337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.42097,150.627698,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003899,1,MALE,occurrenceRemarks withheld,2023,2,15,Australia,AU,New South Wales,-28.888717,153.299324,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040H,1,,occurrenceRemarks withheld,2024,3,9,Australia,AU,New South Wales,-31.466875,152.929736,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-29.483464,153.095235,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,9,9,Australia,AU,New South Wales,-34.188134,150.790596,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.465709,150.520327,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,19,Australia,AU,New South Wales,-30.077654,153.192512,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.430828,150.615864,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2023,4,28,Australia,AU,New South Wales,-34.124693,150.812345,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.548357,150.644174,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-30.190057,152.778194,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-29.490189,153.110517,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-29.785312,152.904803,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.425021,150.601527,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100L,1,,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-32.721693,151.991936,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,5,23,Australia,AU,New South Wales,-32.655136,151.789731,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031822,1,,occurrenceRemarks withheld,2022,12,4,Australia,AU,New South Wales,-28.816123,153.334806,EPSG:4326 +HUMAN_OBSERVATION,OLHP2407120F,1,,occurrenceRemarks withheld,2024,6,19,Australia,AU,New South Wales,-31.445741,152.918723,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-28.355594,153.272431,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.737724,152.021561,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-28.649831,153.341303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.448847,150.519726,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2023,1,14,Australia,AU,New South Wales,-34.124693,150.812345,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122006,1,,occurrenceRemarks withheld,2022,11,6,Australia,AU,New South Wales,-33.670798,151.186173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.464878,150.528243,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-31.14123,150.12311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.391564,150.645113,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.491064,150.521427,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-34.043064,150.892059,EPSG:4326 +HUMAN_OBSERVATION,ODFK2307310B;ODFK23091100,1,FEMALE,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-30.527157,153.009757,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-34.141271,150.82369,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-30.225945,152.783236,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.438925,150.604405,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.420634,150.630819,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004170,1,MALE,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-28.810998,153.300521,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040V,1,FEMALE,occurrenceRemarks withheld,2022,8,15,Australia,AU,New South Wales,-31.973327,151.918673,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.387217,150.626389,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.490306,153.108081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.437623,150.519253,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022522,1,,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-32.725263,152.077632,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,6,19,Australia,AU,New South Wales,-34.004128,150.869923,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010702,1,FEMALE,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-29.494264,153.094822,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180X,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-28.822851,153.347055,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080307,1,,occurrenceRemarks withheld,2022,7,8,Australia,AU,New South Wales,-28.952324,153.300476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-34.450242,150.596278,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.17958,150.79873,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-32.225666,152.196402,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,MALE,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-28.8232,153.309361,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.286182,152.871191,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210C,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-32.710587,152.071768,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003817,1,,occurrenceRemarks withheld,2023,3,4,Australia,AU,New South Wales,-28.821774,153.300714,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,MALE,occurrenceRemarks withheld,2023,3,9,Australia,AU,New South Wales,-28.848246,153.303139,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.418025,150.597886,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-31.415433,152.126308,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,6,28,Australia,AU,New South Wales,-31.471414,152.886308,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-32.473472,152.047151,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.418363,150.633657,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,,occurrenceRemarks withheld,2023,2,25,Australia,AU,New South Wales,-31.958765,152.53994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.421095,150.637431,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,12,17,Australia,AU,New South Wales,-34.098135,150.808271,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,8,Australia,AU,New South Wales,-29.484362,153.104074,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,MALE,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-32.659322,152.02201,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,MALE,occurrenceRemarks withheld,2020,4,30,Australia,AU,New South Wales,-32.730287,152.085295,EPSG:4326 +HUMAN_OBSERVATION,OJJS15061602,1,MALE,occurrenceRemarks withheld,2020,4,17,Australia,AU,New South Wales,-29.677495,152.878659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.454655,150.608439,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,19,Australia,AU,New South Wales,-29.485758,153.103677,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021803,1,,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-29.033802,150.325641,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-29.48558,153.103489,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.446463,150.519971,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154F,1,,occurrenceRemarks withheld,2022,10,22,Australia,AU,New South Wales,-28.611714,153.205572,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.427061,150.603971,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012504,1,,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-31.454328,152.925366,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-31.478801,152.911539,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-34.452048,150.517475,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-30.421293,152.983838,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-28.547537,153.37681,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.438849,150.604646,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,16,Australia,AU,New South Wales,-29.484352,153.104053,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-34.446492,150.520068,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,22,Australia,AU,New South Wales,-31.444487,152.926422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.491359,150.638684,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419995,150.61008,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.466734,150.521069,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.468933,150.516607,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021803,1,,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-29.033812,150.325661,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-31.475018,152.910587,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082308;ODFK23082309;ODFK2308230A;ODFK2308230B,1,MALE,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.183601,150.80465,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-29.49046,153.109353,EPSG:4326 +HUMAN_OBSERVATION,OJJS11062906,1,,occurrenceRemarks withheld,2020,2,23,Australia,AU,New South Wales,-31.4562,152.89783,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040701,1,,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-32.659963,151.660029,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.418424,150.633558,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.44851,150.600344,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-34.056,150.847722,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132P,1,,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-29.617546,150.817626,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.386118,150.624571,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,12,12,Australia,AU,New South Wales,-31.456781,152.926628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,12,Australia,AU,New South Wales,-34.439874,150.616032,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-28.633136,153.436863,EPSG:4326 +HUMAN_OBSERVATION,ODMP1002042J,1,,occurrenceRemarks withheld,2023,4,22,Australia,AU,New South Wales,-28.395726,153.464754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419027,150.609433,EPSG:4326 +HUMAN_OBSERVATION,ODDP13030700,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-30.932674,149.751273,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-31.641715,152.792854,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-32.223426,152.189959,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.469429,150.52727,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.394413,150.642315,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,FEMALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-28.919419,153.217709,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031509,1,,occurrenceRemarks withheld,2022,11,5,Australia,AU,New South Wales,-28.85266,153.58815,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153I,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-29.037002,152.562655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.488645,150.635418,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-28.982812,153.420282,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-31.921372,152.372243,EPSG:4326 +HUMAN_OBSERVATION,CHADL,1,,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-28.400667,153.532794,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.447784,150.517092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.437515,150.606991,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,3,25,Australia,AU,New South Wales,-28.834072,153.324396,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-33.496074,149.54979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.448422,150.517443,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,28,Australia,AU,New South Wales,-29.490507,153.109385,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.228945,152.192632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.420059,150.609621,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-29.030717,152.985717,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-32.73704,152.040736,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,3,20,Australia,AU,New South Wales,-31.445155,152.915994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.437546,150.605793,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181P,1,FEMALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-28.931139,153.270395,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090W,1,,occurrenceRemarks withheld,2023,11,25,Australia,AU,New South Wales,-32.048603,152.247983,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031543,1,FEMALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-29.013135,153.434047,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OPJG15082102,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-29.267695,152.943926,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.4637,150.523967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.44944,150.516052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.436555,150.602612,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-34.083624,150.978213,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-28.421637,152.658441,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.46437,150.522761,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002734,1,MALE,occurrenceRemarks withheld,2022,6,9,Australia,AU,New South Wales,-29.628263,152.865207,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.451722,152.921838,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2023,7,18,Australia,AU,New South Wales,-34.151085,150.824172,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,,occurrenceRemarks withheld,2022,8,29,Australia,AU,New South Wales,-32.732124,152.032975,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-31.915707,152.374224,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003814,1,,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-28.924799,153.15909,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.393753,150.640821,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.387298,150.63103,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,FEMALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-36.154709,149.352767,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.420658,150.630688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.471231,150.510824,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,7,6,Australia,AU,New South Wales,-31.240611,152.757767,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131W,1,,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-31.447768,152.913953,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-28.273111,153.251483,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.446741,150.518113,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.449589,150.515852,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040417,1,,occurrenceRemarks withheld,2022,9,6,Australia,AU,New South Wales,-34.111148,150.802682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.458691,150.656203,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,10,Australia,AU,New South Wales,-34.440941,150.615751,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-36.002004,149.366286,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-31.458172,152.922578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.438941,150.604328,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-29.490208,153.108113,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-28.523791,153.382589,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23040404,1,,occurrenceRemarks withheld,2023,10,16,Australia,AU,New South Wales,-30.342791,152.861595,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,27,Australia,AU,New South Wales,-29.479837,153.104063,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.937089,153.316984,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.224087,151.720013,EPSG:4326 +HUMAN_OBSERVATION,OJJS17061900;ODFK23081600;ODFK23081601,1,,occurrenceRemarks withheld,2023,1,30,Australia,AU,New South Wales,-31.206418,150.316157,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-28.650301,153.46202,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-30.655961,151.512471,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-29.49025,153.108156,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-31.13881,152.812214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.428791,150.616368,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-31.126171,152.797444,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.423897,150.637342,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,4,4,Australia,AU,New South Wales,-30.15738,153.09578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.445319,150.515554,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.435912,150.517138,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-29.482149,153.104221,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-31.4692,152.919643,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-28.817598,153.335473,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.864625,153.293477,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,6,30,Australia,AU,New South Wales,-30.218771,152.800023,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.392676,150.639177,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022608,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-32.272112,152.231631,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,3,16,Australia,AU,New South Wales,-34.021472,150.990921,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003826,1,,occurrenceRemarks withheld,2023,1,29,Australia,AU,New South Wales,-28.8093,153.507595,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.414338,150.59698,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-33.721678,150.379713,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.388359,150.624378,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-28.54853,153.413555,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.451573,150.517241,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.420963,150.626882,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-28.873789,153.349266,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-31.463856,152.874191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.449334,150.520158,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.387838,150.624447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.437299,150.605637,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200B,1,,occurrenceRemarks withheld,2024,4,28,Australia,AU,Queensland,-27.865117,153.164469,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150H,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-28.825305,153.324009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.464711,150.525374,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.450069,150.516404,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.399729,150.617498,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011007,1,MALE,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-28.619829,152.192737,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240C,1,,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-32.71419,152.163248,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-31.452743,152.92593,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.435858,150.61583,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-29.488377,153.092406,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-29.490063,153.101065,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-33.434393,150.639046,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032117,1,,occurrenceRemarks withheld,2022,10,9,Australia,AU,New South Wales,-32.722541,152.077045,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-29.008668,153.312767,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.447248,150.516008,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-28.650505,153.459387,EPSG:4326 +HUMAN_OBSERVATION,ODFK24081500,1,,occurrenceRemarks withheld,2024,7,6,Australia,AU,New South Wales,-32.86789,151.41194,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050F,1,,occurrenceRemarks withheld,2024,2,15,Australia,AU,New South Wales,-28.537034,153.028339,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.466078,150.520305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.420371,150.608992,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.557254,150.016582,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-28.232986,153.443557,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-29.479972,153.104063,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-31.435032,152.911301,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-28.874576,153.424803,EPSG:4326 +HUMAN_OBSERVATION,OIXR13041801,1,MALE,occurrenceRemarks withheld,2022,12,4,Australia,AU,New South Wales,-31.899167,151.624167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.392857,150.632701,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.447098,150.513075,EPSG:4326 +HUMAN_OBSERVATION,ODFK23122107,1,,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-34.305931,150.261177,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-30.468265,152.88948,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.389217,150.629552,EPSG:4326 +HUMAN_OBSERVATION,OPJG21031201,1,FEMALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-30.400741,151.559712,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.446742,150.512835,EPSG:4326 +HUMAN_OBSERVATION,OGEM18052300,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.145052,150.796589,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.43433,150.616059,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-29.487938,153.091779,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,4,29,Australia,AU,New South Wales,-29.732031,150.982567,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150T,1,,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-31.464597,152.908797,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-29.489676,153.101665,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-28.864687,153.293075,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030Z,1,,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-34.073083,150.833889,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,5,15,Australia,AU,New South Wales,-28.86456,153.293176,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-34.068368,150.913678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.425884,150.604157,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-31.472595,152.927638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.428571,150.615265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.457375,150.518375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.458476,150.662402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.420616,150.630863,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.451168,150.519451,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.453061,150.523454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.418922,150.632739,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220T,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-32.732037,152.036133,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100H,1,,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-32.551095,151.645394,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-33.968421,150.90609,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-28.374668,153.564052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.435659,150.616271,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-31.444834,152.916522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.434317,150.616331,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,19,Australia,AU,New South Wales,-28.830721,153.282056,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-32.734199,152.077192,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.432231,150.605542,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.465737,150.521273,EPSG:4326 +HUMAN_OBSERVATION,ODFK23121106,1,MALE,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-29.425126,153.192386,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020703,1,,occurrenceRemarks withheld,2020,5,8,Australia,AU,New South Wales,-30.662362,152.957757,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.447244,150.518903,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,10,3,Australia,AU,New South Wales,-32.705404,152.063448,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.421181,150.627431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.458097,150.663806,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.46168,150.532375,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,6,3,Australia,AU,New South Wales,-31.437375,152.916023,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-29.480126,153.104106,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.465744,150.521621,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-28.399929,153.556505,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.644539,153.400689,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-29.107663,152.54165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.386511,150.625789,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111308,1,,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-31.474397,152.898133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.454007,150.520335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.419135,150.610322,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041O,1,FEMALE,occurrenceRemarks withheld,2023,5,1,Australia,AU,New South Wales,-30.367412,153.033896,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.864609,153.293285,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,12,2,Australia,AU,New South Wales,-30.888275,153.067707,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.446591,150.518248,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.492744,150.639005,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-32.224416,152.194095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.423735,150.637357,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,3,Australia,AU,New South Wales,-29.490525,153.109369,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-29.489881,153.110554,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.452556,150.51991,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-34.190761,150.790388,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.423771,150.637345,EPSG:4326 +HUMAN_OBSERVATION,ODFK23072004,1,,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-32.654013,152.180569,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.465664,150.521242,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,5,17,Australia,AU,New South Wales,-33.757316,150.046999,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.395307,150.643323,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.450905,150.515835,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010702,1,FEMALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-29.494293,153.094901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.45196,150.602966,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070I,1,,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-32.57073,151.78214,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-34.17502,150.80057,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.953149,153.369052,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-31.327271,152.796786,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.068105,150.807228,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.4343,150.616397,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.447288,150.513994,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-28.647233,153.620962,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.421197,150.627322,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,4,6,Australia,AU,New South Wales,-32.738979,152.076102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.392792,150.645688,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.914258,152.818969,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-29.484787,153.103811,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092001,1,,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-29.490796,153.10012,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-34.069699,150.838287,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,MALE,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-34.018545,150.890624,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,12,Australia,AU,New South Wales,-29.486421,153.103398,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-28.65032,153.362291,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,16,Australia,AU,New South Wales,-34.440694,150.618794,EPSG:4326 +HUMAN_OBSERVATION,OCHV19051300,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-29.691624,152.866362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.420894,150.630279,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-29.489531,153.110619,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.514707,149.962048,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100407,1,,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-34.091455,150.985223,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-29.477263,153.104578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.458821,150.532775,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.470001,150.530595,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.420536,150.637425,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-29.490283,153.108119,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.446384,150.513836,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.524474,150.566043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.413986,150.599209,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,4,16,Australia,AU,New South Wales,-31.459553,152.928636,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.419159,150.610201,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-29.489559,153.103935,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.463181,150.535291,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.459921,150.518985,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102100,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-32.748567,152.16856,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041N,1,MALE,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-33.9525,150.899382,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-34.032932,150.988969,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.420102,150.631291,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052001,1,,occurrenceRemarks withheld,2024,7,8,Australia,AU,New South Wales,-31.473213,152.924126,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-29.48792,153.091999,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.953149,153.369052,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-34.195769,150.789567,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,4,Australia,AU,New South Wales,-28.31409,153.389066,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-34.514666,150.595561,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-29.489746,153.101537,EPSG:4326 +HUMAN_OBSERVATION,Obs_2359,1,,occurrenceRemarks withheld,2024,1,17,Australia,AU,New South Wales,-31.454994,152.929672,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.491629,150.639145,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,2,Australia,AU,New South Wales,-31.445683,152.915349,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.480907,150.532299,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.464846,150.522246,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,FEMALE,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-28.954611,153.412703,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-28.603622,153.092796,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-28.556729,153.076773,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.463284,150.535909,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.420939,150.62796,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003956,1,,occurrenceRemarks withheld,2023,5,18,Australia,AU,New South Wales,-28.888282,153.299609,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,9,6,Australia,AU,New South Wales,-29.630981,152.899379,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2020,6,15,Australia,AU,New South Wales,-31.348046,152.71462,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-32.704115,151.976902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.430561,150.61696,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260C,1,,occurrenceRemarks withheld,2021,1,2,Australia,AU,New South Wales,-32.703313,152.06317,EPSG:4326 +HUMAN_OBSERVATION,OLHP24071203,1,,occurrenceRemarks withheld,2024,6,7,Australia,AU,New South Wales,-31.466618,152.898564,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,1,Australia,AU,New South Wales,-31.470566,152.907391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.418946,150.609446,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,13,Australia,AU,New South Wales,-33.714279,150.784985,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.438018,150.604126,EPSG:4326 +HUMAN_OBSERVATION,OIXR1511120C,1,MALE,occurrenceRemarks withheld,2022,10,24,Australia,AU,New South Wales,-28.55641,153.469004,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.494088,150.640426,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.383839,150.62282,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,FEMALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-28.25774,153.400565,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,15,Australia,AU,New South Wales,-29.477282,153.104932,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,3,22,Australia,AU,New South Wales,-30.305313,153.1205,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,5,26,Australia,AU,New South Wales,-32.706612,152.063689,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.420201,150.631288,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.446598,150.518193,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-30.894257,151.936835,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-28.381373,153.563161,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-32.694076,151.70221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.420304,150.611572,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011008,1,,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-32.727376,152.000971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.451602,150.524401,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020609,1,,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-34.042809,150.870852,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.412321,150.594786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.491474,150.639051,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-32.721097,152.116778,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-31.482057,152.915846,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-28.738745,153.390561,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-31.63034,152.784326,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-34.216295,150.794751,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.437197,150.518254,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-33.768071,150.059118,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.827996,153.303174,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030U,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-34.072566,150.860181,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.654141,152.81132,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.447266,150.513799,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-29.483946,153.094112,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2020,7,22,Australia,AU,New South Wales,-33.527046,150.659213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.394555,150.64267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.418257,150.601872,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-30.341761,153.088276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.430905,150.614763,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-28.853228,153.176398,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072601;ODMP2212210O,1,,occurrenceRemarks withheld,2022,2,20,Australia,AU,New South Wales,-28.254739,153.405203,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.45226,150.523075,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.459925,150.525407,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.423733,150.637248,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,12,27,Australia,AU,New South Wales,-34.098091,150.808214,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2022,3,18,Australia,AU,New South Wales,-32.767712,152.020691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.454334,150.606816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-34.447337,150.514613,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.447798,150.519561,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210D,1,,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-32.765345,152.034866,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-31.549481,152.701691,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-33.717731,150.784778,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-32.74536,151.8658,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.454345,150.607817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.393164,150.64533,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,3,27,Australia,AU,New South Wales,-28.683591,153.611444,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-30.454894,152.713317,EPSG:4326 +HUMAN_OBSERVATION,OSLS05062143,1,,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.054048,150.863532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.393699,150.644564,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-32.225666,152.196402,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,24,Australia,AU,New South Wales,-28.872666,153.419337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.427627,150.594663,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111326,1,FEMALE,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-31.468605,152.90872,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-28.469347,153.043079,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,7,12,Australia,AU,New South Wales,-28.385497,153.561351,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.420658,150.629763,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.422153,150.604231,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090504,1,,occurrenceRemarks withheld,2022,8,29,Australia,AU,New South Wales,-30.403506,151.725898,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,6,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-29.4865,153.10335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.447403,150.512968,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-30.354966,153.077753,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.489023,153.023368,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,MALE,occurrenceRemarks withheld,2023,4,27,Australia,AU,New South Wales,-28.845483,153.315862,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.385396,150.624516,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,5,4,Australia,AU,New South Wales,-34.027084,150.984461,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,28,Australia,AU,New South Wales,-33.71737,150.783549,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202,1,,occurrenceRemarks withheld,2022,11,13,Australia,AU,New South Wales,-30.4623,151.60416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.439511,150.516368,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,7,Australia,AU,New South Wales,-31.485096,152.916067,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.455079,150.657349,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111508,1,,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-33.56933,150.67229,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102228,1,,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-32.706065,152.063451,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.223426,152.189959,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-29.489713,153.101344,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140O,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-32.759406,152.103398,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,,occurrenceRemarks withheld,2023,6,28,Australia,AU,New South Wales,-28.959554,153.394536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.458999,150.664782,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.384079,150.622606,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435999,150.615696,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-31.19372,150.0652,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-34.474,150.556772,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-30.299322,153.11127,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.427326,150.597729,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-32.724707,152.073059,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210X,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-32.708104,152.067546,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-28.489326,153.022552,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.448464,150.525723,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.446365,150.517351,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-36.556943,149.960571,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OMZS17080800,1,MALE,occurrenceRemarks withheld,2020,3,5,Australia,AU,New South Wales,-35.050172,150.111778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.433877,150.614592,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-32.709009,152.064604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.43034,150.607043,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.182571,153.004136,EPSG:4326 +HUMAN_OBSERVATION,OEMM0911130Y,1,MALE,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-37.177314,149.355934,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-29.489946,153.101285,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,4,Australia,AU,New South Wales,-31.629191,152.786775,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2020,3,31,Australia,AU,New South Wales,-31.125286,152.803298,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-29.485566,153.103811,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122105,1,MALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-31.454794,152.908728,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,11,Australia,AU,New South Wales,-29.490147,153.108207,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.464244,150.523668,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.431308,150.615078,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,5,16,Australia,AU,New South Wales,-28.716155,153.29891,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.421679,150.637317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.448154,150.519333,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-34.476912,150.577567,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-33.534787,150.670546,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.423816,150.637344,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-29.477716,153.104165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.43686,150.606694,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2022,3,30,Australia,AU,New South Wales,-32.529237,151.887282,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436633,150.520675,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,9,10,Australia,AU,New South Wales,-34.061874,150.862399,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004101,1,FEMALE,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-28.874841,153.2214,EPSG:4326 +HUMAN_OBSERVATION,OPUR20011300,1,,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-31.539621,151.736408,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,21,Australia,AU,New South Wales,-31.453164,152.87781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.427001,150.605028,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-28.61199,153.40362,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003800,1,,occurrenceRemarks withheld,2023,2,14,Australia,AU,New South Wales,-28.489004,153.02264,EPSG:4326 +HUMAN_OBSERVATION,OLHP23082804,1,,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-34.199469,150.780551,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-28.400142,153.556701,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-29.085168,153.11529,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.437546,150.605793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.438822,150.604233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.457223,150.606059,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-36.021952,149.367531,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221B,1,,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-32.736868,152.056633,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-31.803805,152.425241,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,21,Australia,AU,New South Wales,-29.490128,153.109712,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.813462,153.334493,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102,1,,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-32.457662,151.886915,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.877163,153.465371,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.182528,149.361347,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-29.489591,153.103924,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-31.321668,152.844255,EPSG:4326 +HUMAN_OBSERVATION,ODXB17080401,1,,occurrenceRemarks withheld,2020,7,16,Australia,AU,New South Wales,-33.010532,151.290886,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031538,1,,occurrenceRemarks withheld,2022,10,24,Australia,AU,New South Wales,-28.652281,153.596142,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.427294,150.604802,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090800,1,,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.082165,150.998241,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-28.585441,153.071682,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.452264,150.522857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.388856,150.63091,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004043,1,,occurrenceRemarks withheld,2023,7,6,Australia,AU,New South Wales,-28.63932,153.635866,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.43565,150.616261,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-31.46494,152.921182,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,,occurrenceRemarks withheld,2023,7,25,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.435562,150.615469,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.458795,150.528836,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-32.225666,152.196402,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-31.261157,152.871283,EPSG:4326 +HUMAN_OBSERVATION,ODMP21070805,1,,occurrenceRemarks withheld,2022,11,12,Australia,AU,New South Wales,-33.954203,150.929224,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-30.296388,153.098382,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022510,1,,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-32.69221,151.692898,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.446556,150.514331,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,23,Australia,AU,New South Wales,-28.826027,153.314521,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.437891,150.615631,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.675648,153.604455,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-29.492686,153.093385,EPSG:4326 +HUMAN_OBSERVATION,ODMP08112100,1,,occurrenceRemarks withheld,2023,4,26,Australia,AU,New South Wales,-28.570554,153.160405,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270T,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-31.158252,152.890323,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.439218,150.604657,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,6,29,Australia,AU,New South Wales,-29.875983,151.153507,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-29.48891,153.102089,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2020,5,9,Australia,AU,New South Wales,-34.100074,150.809577,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-31.913202,152.374047,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-34.018007,150.890465,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-31.92441,152.35899,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250J,1,FEMALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-32.683786,151.651139,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-31.441225,152.885141,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,10,Australia,AU,New South Wales,-29.490184,153.107888,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.420471,150.627995,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-31.448279,152.894734,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,17,Australia,AU,New South Wales,-28.535245,153.064703,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-32.710049,152.071501,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004238,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.8555,153.323456,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-33.717456,150.785076,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131S,1,MALE,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-31.452604,152.881749,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,10,13,Australia,AU,New South Wales,-31.459749,152.92945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.451728,150.522645,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.419739,150.603407,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290B,1,,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-32.770005,151.755975,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,25,Australia,AU,New South Wales,-32.706505,152.063708,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030J,1,,occurrenceRemarks withheld,2022,5,6,Australia,AU,New South Wales,-31.443222,152.924705,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,3,29,Australia,AU,New South Wales,-29.490348,153.108049,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.450248,150.597519,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,MALE,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-30.448523,153.041931,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300D,1,,occurrenceRemarks withheld,2023,7,2,Australia,AU,New South Wales,-32.727299,152.009514,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.431042,150.614836,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2020,5,19,Australia,AU,New South Wales,-31.355749,152.705386,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.421435,150.627065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.485794,150.636217,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-28.693467,153.496173,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2024,2,24,Australia,AU,New South Wales,-32.710787,152.060559,EPSG:4326 +HUMAN_OBSERVATION,OPUR21080903,1,,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-31.467563,152.873297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.433807,150.6064,EPSG:4326 +HUMAN_OBSERVATION,OPUR23030700,1,FEMALE,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-31.978738,152.340682,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-32.22183,152.2399,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,5,1,Australia,AU,New South Wales,-34.045304,151.009193,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-30.371451,153.09456,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-31.415265,152.896469,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-31.345913,152.720724,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,6,14,Australia,AU,New South Wales,-32.72636,152.14511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.45305,150.517589,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-28.421083,153.463115,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,10,Australia,AU,New South Wales,-31.454517,152.907012,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-32.238477,152.18776,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-29.490161,153.109734,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-29.48996,153.108226,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.489323,150.638764,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003996,1,,occurrenceRemarks withheld,2023,4,5,Australia,AU,New South Wales,-28.818202,153.299422,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080905,1,,occurrenceRemarks withheld,2023,7,11,Australia,AU,New South Wales,-31.348315,152.751827,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.864609,153.293285,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111316,1,,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-31.47481,152.897126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.389469,150.629512,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,9,Australia,AU,New South Wales,-29.483502,153.095239,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-31.478485,152.913909,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140D,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-30.509293,152.890004,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,2,13,Australia,AU,New South Wales,-29.631042,152.899695,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-31.438449,152.898073,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.413691,150.598892,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002557,1,,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-29.095797,153.396186,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020605,1,,occurrenceRemarks withheld,2022,12,9,Australia,AU,New South Wales,-34.470853,150.444246,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.438807,152.851304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.447368,150.513012,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150P,1,,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-35.079356,150.149708,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,15,Australia,AU,New South Wales,-29.488765,153.093415,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.453488,150.517391,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-31.91019,152.40941,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.389679,153.558072,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251X,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-32.68189,152.09711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.455255,150.519624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.423489,150.605683,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-34.440915,150.516218,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-29.489844,153.101108,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,8,Australia,AU,New South Wales,-31.250814,152.961209,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.395436,150.629942,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,9,18,Australia,AU,New South Wales,-34.062897,150.840957,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-30.52283,152.60767,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.471313,150.529501,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.435599,150.615511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.464228,150.523745,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-34.396458,150.643171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.434651,150.606659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.447277,150.513004,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,7,25,Australia,AU,New South Wales,-31.133161,152.812082,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,7,5,Australia,AU,New South Wales,-28.826909,153.31652,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111319,1,,occurrenceRemarks withheld,2021,11,13,Australia,AU,New South Wales,-30.208566,153.136982,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.463035,150.519633,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.232904,152.187392,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-31.636895,152.789139,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110K,1,MALE,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-31.470585,152.92379,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,10,Australia,AU,New South Wales,-33.706001,150.785977,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,9,2,Australia,AU,New South Wales,-29.436645,153.170861,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-28.637966,153.584997,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.055279,151.013656,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.418442,150.633546,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,31,Australia,AU,New South Wales,-31.098829,152.823192,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,MALE,occurrenceRemarks withheld,2023,4,27,Australia,AU,New South Wales,-28.846075,153.316066,EPSG:4326 +HUMAN_OBSERVATION,OLHP23071103,1,,occurrenceRemarks withheld,2023,6,17,Australia,AU,New South Wales,-32.641265,151.627171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.395087,150.629136,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-28.561518,153.116051,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.445498,150.518585,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.437328,150.605266,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-34.015205,150.883289,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-29.48558,153.103817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.418105,150.600092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.490608,150.638531,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-33.716577,150.784476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.463517,150.523831,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,8,23,Australia,AU,New South Wales,-32.757024,152.102173,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,4,3,Australia,AU,New South Wales,-31.448743,152.914764,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-28.588037,153.553572,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150U,1,,occurrenceRemarks withheld,2022,7,4,Australia,AU,New South Wales,-28.694325,153.494926,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.476096,150.532545,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-31.481416,152.920959,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.435288,150.616641,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-34.553314,150.620911,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-30.505521,152.920411,EPSG:4326 +HUMAN_OBSERVATION,ODFK24021901,1,,occurrenceRemarks withheld,2024,2,9,Australia,AU,New South Wales,-30.424,152.903,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.435152,150.608799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.388923,150.624177,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,4,Australia,AU,New South Wales,-32.706176,152.063422,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,FEMALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.846316,153.302432,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-28.693131,153.445905,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-29.769423,150.939787,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-32.706457,152.063416,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003995,1,,occurrenceRemarks withheld,2023,6,12,Australia,AU,New South Wales,-28.517676,153.039631,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,12,2,Australia,AU,New South Wales,-28.661766,153.114488,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,29,Australia,AU,New South Wales,-29.485422,153.103865,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090405;ODMP2202251Y,1,MALE,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-32.730856,152.039191,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-32.679834,151.646918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.426869,150.604292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.427757,150.604963,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,18,Australia,AU,New South Wales,-30.506044,152.919858,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-36.474664,149.917922,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.220619,150.792944,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,26,Australia,AU,New South Wales,-28.251097,153.379659,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-28.268828,153.458379,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2020,5,22,Australia,AU,New South Wales,-28.39973,153.31568,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-29.476955,153.104777,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090G,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-31.401436,152.885213,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-29.490217,153.108248,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,10,20,Australia,AU,New South Wales,-31.472364,152.716141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.466024,150.526108,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003841,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-28.485028,153.381445,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-30.296119,153.124085,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304170E,1,,occurrenceRemarks withheld,2022,12,4,Australia,AU,New South Wales,-34.060553,150.84089,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-29.488401,153.110796,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,FEMALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-33.966344,150.987324,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,24,Australia,AU,New South Wales,-29.490241,153.108194,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.869015,153.335481,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290N,1,,occurrenceRemarks withheld,2022,7,2,Australia,AU,New South Wales,-32.709636,152.061378,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.541583,150.016902,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-31.43879,152.894832,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.469929,150.530597,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-33.709931,150.785718,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.389715,150.625927,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.387049,150.626557,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.41848,150.633197,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032106,1,,occurrenceRemarks withheld,2022,11,5,Australia,AU,New South Wales,-32.631825,151.707045,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100513,1,,occurrenceRemarks withheld,2023,9,8,Australia,AU,New South Wales,-31.464557,152.924261,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021507,1,,occurrenceRemarks withheld,2024,1,23,Australia,AU,New South Wales,-30.887395,153.071503,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-31.404321,152.26095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.446033,150.513019,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111501,1,,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-33.468613,150.893304,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-31.640099,152.792619,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,10,12,Australia,AU,New South Wales,-31.902486,152.391412,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.423725,150.637314,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.464323,150.522686,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.422003,150.607618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.452241,150.523021,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-34.053036,150.850922,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-34.068368,150.913678,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.471412,150.529051,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;ORSF21090200,1,MALE,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-32.396792,149.802282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.42377,150.637269,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-29.485319,153.103988,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,20,Australia,AU,New South Wales,-31.187716,152.972026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.490616,150.638509,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.424995,153.043701,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,7,Australia,AU,New South Wales,-29.490357,153.108231,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.389238,150.628768,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,6,13,Australia,AU,New South Wales,-29.609982,150.862941,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122007,1,,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-36.172917,149.370847,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004085,1,,occurrenceRemarks withheld,2023,7,17,Australia,AU,New South Wales,-28.887675,153.225998,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,18,Australia,AU,New South Wales,-33.705548,150.786698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,24,Australia,AU,New South Wales,-34.439246,150.615266,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.42742,150.603895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.454109,150.520474,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.412584,150.640652,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-28.969732,153.448584,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.397382,150.622883,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.688959,153.27308,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250E,1,,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-32.721031,152.105012,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210G,1,,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-32.758352,152.067959,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-29.490703,153.109267,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,MALE,occurrenceRemarks withheld,2022,4,16,Australia,AU,New South Wales,-28.25994,153.401824,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-31.452616,152.925941,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-30.23649,152.90706,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.418897,150.638897,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-29.490572,153.108205,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,17,Australia,AU,New South Wales,-31.467664,152.921271,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-28.904438,152.682143,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050Q,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-34.197945,150.788721,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.465798,150.522479,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.422319,150.607653,EPSG:4326 +HUMAN_OBSERVATION,Obs_1340,1,MALE,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-31.447153,152.908289,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-31.476736,152.923409,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,4,30,Australia,AU,New South Wales,-31.418633,152.753087,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.417622,150.633112,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-33.430557,150.619503,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.438924,150.604372,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-31.451539,152.907767,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,6,12,Australia,AU,New South Wales,-28.680197,153.492841,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-33.776461,150.06316,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-28.656321,153.614329,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-28.399064,153.555888,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,5,16,Australia,AU,New South Wales,-29.490105,153.100743,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,19,Australia,AU,New South Wales,-28.864581,153.29324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.43568,150.540898,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-33.717928,150.785356,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.394424,150.629807,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-33.705993,150.786181,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-29.476927,153.104793,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-30.1777,152.89695,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-33.717429,150.785059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.432812,150.607593,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.29773,149.31627,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-29.485249,153.10413,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-31.452655,152.823142,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.434335,150.608975,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-30.51694,152.8853,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433308,150.60759,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.395733,150.626192,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-28.390181,153.563451,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-30.426644,152.952853,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-31.460767,152.913501,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-33.49061,149.555599,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.420278,150.627337,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-33.707671,150.785024,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-28.980549,153.312569,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2021,10,24,Australia,AU,New South Wales,-30.52455,152.594613,EPSG:4326 +HUMAN_OBSERVATION,ODFK2408220E,1,,occurrenceRemarks withheld,2024,7,27,Australia,AU,New South Wales,-34.045331,151.069643,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.45278,150.614011,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,6,Australia,AU,New South Wales,-31.629209,152.786538,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,18,Australia,AU,New South Wales,-29.478566,153.104101,EPSG:4326 +HUMAN_OBSERVATION,CHADL,1,,occurrenceRemarks withheld,2020,2,7,Australia,AU,New South Wales,-28.974056,153.354531,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-31.471631,152.906945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.437624,150.517991,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.431077,150.614791,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-28.25245,153.538997,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-31.446801,152.901907,EPSG:4326 +HUMAN_OBSERVATION,OPUR16030300,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-33.069532,151.477315,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,8,Australia,AU,New South Wales,-33.703904,150.7863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436407,150.520627,EPSG:4326 +HUMAN_OBSERVATION,ODFK23120706,1,,occurrenceRemarks withheld,2023,7,2,Australia,AU,New South Wales,-29.725885,152.928537,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-31.12993,150.00465,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-28.689307,153.234429,EPSG:4326 +HUMAN_OBSERVATION,ODFK24030601,1,,occurrenceRemarks withheld,2024,3,3,Australia,AU,New South Wales,-32.733018,152.077954,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420245,150.61041,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.937089,153.316984,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.417965,150.632689,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-33.45874,150.592259,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-34.44609,150.513126,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,25,Australia,AU,New South Wales,-29.483278,153.10416,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,5,14,Australia,AU,New South Wales,-31.473918,152.899754,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.456086,150.65718,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.420278,150.635289,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.478065,152.923537,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.45161,150.517239,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,7,Australia,AU,New South Wales,-29.484871,153.095995,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,MALE,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-34.018221,150.884233,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-30.095975,152.742658,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.465384,150.521632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.447458,150.519669,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,30,Australia,AU,New South Wales,-29.629872,152.896425,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,8,Australia,AU,New South Wales,-29.490021,153.101268,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.485473,150.636412,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,MALE,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-28.980672,153.434373,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,25,Australia,AU,New South Wales,-33.706054,150.786214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.431389,150.615065,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-29.485692,153.103484,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.420965,150.627002,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,8,6,Australia,AU,New South Wales,-28.671148,153.32564,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.437127,150.61389,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.864609,153.293285,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.418231,150.632007,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-31.429171,152.880217,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.421394,150.637499,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,11,25,Australia,AU,New South Wales,-30.380747,153.03255,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,6,22,Australia,AU,New South Wales,-28.665842,153.589768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.423739,150.634779,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.431833,150.611941,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-29.48565,153.103441,EPSG:4326 +HUMAN_OBSERVATION,ODMP21121516,1,,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-31.788246,149.713137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.488488,150.637524,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.422775,150.605595,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-30.043804,152.2405,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-32.706499,152.063436,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-31.918337,152.379715,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.432074,150.615535,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.443042,150.515752,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101309,1,,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-32.750796,152.042293,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.17551,150.80795,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-28.864597,153.293033,EPSG:4326 +HUMAN_OBSERVATION,OGEM18052300,1,,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-36.562813,150.003869,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-29.48954,153.104031,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250J,1,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.753572,146.557441,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132R,1,,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-31.415095,152.897001,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004138,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.229955,153.469035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.451647,150.524432,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-31.474873,152.897346,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041N,1,MALE,occurrenceRemarks withheld,2023,3,26,Australia,AU,New South Wales,-34.001296,150.901605,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.453023,150.517579,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.426729,150.603567,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.394772,150.631962,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,3,20,Australia,AU,New South Wales,-31.437758,152.905816,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-29.490829,153.109272,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-29.491086,153.108135,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-31.441873,152.902769,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-32.7391,152.074,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,4,15,Australia,AU,New South Wales,-31.453972,152.924861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.438666,150.606817,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,11,10,Australia,AU,New South Wales,-32.706784,152.064276,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190K,1,,occurrenceRemarks withheld,2023,2,27,Australia,AU,New South Wales,-32.732048,152.079281,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.098083,150.845932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419986,150.61008,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.300188,152.820061,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-31.159095,152.878789,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-36.541329,150.002505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.420951,150.630429,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.493428,152.875078,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.464058,150.523848,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,5,16,Australia,AU,New South Wales,-28.642332,153.192914,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.435606,150.616316,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.435767,150.616246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.392704,150.639241,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-34.760236,146.607093,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.581514,149.880784,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-31.596577,152.709563,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-31.914783,152.380203,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.386472,150.62703,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.424294,150.60356,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003887,1,,occurrenceRemarks withheld,2023,3,22,Australia,AU,New South Wales,-28.819328,153.302076,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153E,1,,occurrenceRemarks withheld,2022,7,18,Australia,AU,New South Wales,-29.147294,152.929863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.395743,150.626246,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-31.453468,152.920355,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,3,27,Australia,AU,New South Wales,-31.441037,152.920697,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.420314,150.627379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-34.396147,150.641048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.431202,150.615647,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-29.486313,153.096902,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,8,Australia,AU,New South Wales,-29.485296,153.104069,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070N,1,,occurrenceRemarks withheld,2021,2,3,Australia,AU,New South Wales,-28.662198,153.611298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.463715,150.523803,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.419671,150.611471,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-30.380971,152.994159,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.827996,153.303174,EPSG:4326 +HUMAN_OBSERVATION,OLHP23071019,1,,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-31.429025,152.894915,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-29.084312,153.366394,EPSG:4326 +HUMAN_OBSERVATION,OJJS11062906,1,,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-31.466639,152.900733,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.450052,150.516469,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.465699,150.520719,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-29.485622,153.103682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.420315,150.627412,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,19,Australia,AU,New South Wales,-29.485618,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-29.47976,153.104222,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.420467,150.609316,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.464848,150.522769,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.437569,150.519276,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004093,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.593693,153.465488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.480007,150.534154,EPSG:4326 +HUMAN_OBSERVATION,OPUR14011100,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-29.399619,153.196403,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.729525,152.089801,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.428908,150.615418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.39805,150.621994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.43128,150.615003,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.392376,150.633465,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-32.731525,152.154177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.428825,150.616259,EPSG:4326 +HUMAN_OBSERVATION,ODFK23111401,1,,occurrenceRemarks withheld,2024,9,5,Australia,AU,New South Wales,-31.571533,152.189185,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,19,Australia,AU,New South Wales,-33.719339,150.782771,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-33.772677,150.104417,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,12,Australia,AU,New South Wales,-28.617099,153.397127,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.540913,152.857811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.420661,150.63084,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.435491,150.615493,EPSG:4326 +HUMAN_OBSERVATION,F-OBS000277,1,,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-31.736787,152.151606,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,2,16,Australia,AU,New South Wales,-28.820049,153.30242,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022603,1,,occurrenceRemarks withheld,2020,3,27,Australia,AU,New South Wales,-31.46659,152.914426,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.450171,150.516096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.390959,150.643651,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004160,1,,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-29.054,153.311177,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.388828,150.630889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.449431,150.516053,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103001,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-32.74099,152.171434,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,23,Australia,AU,New South Wales,-29.481896,153.104096,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,7,7,Australia,AU,New South Wales,-29.375997,149.810983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.434234,150.616246,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-30.225933,152.780908,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.953149,153.369052,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-29.661873,152.879171,EPSG:4326 +HUMAN_OBSERVATION,OPRS04081700,1,,occurrenceRemarks withheld,2022,1,2,Australia,AU,New South Wales,-28.90659,152.383414,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.462228,150.534514,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004261,1,,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-28.820992,153.318912,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003804,1,,occurrenceRemarks withheld,2023,3,8,Australia,AU,New South Wales,-28.9337,153.329225,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-28.260274,153.399404,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090503;OLHP23090504,1,FEMALE,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-30.493987,152.941831,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.443211,150.518315,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070L,1,MALE,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-32.732815,152.105283,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.388962,150.623839,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102507,1,MALE,occurrenceRemarks withheld,2024,9,18,Australia,AU,New South Wales,-32.599922,149.57812,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-31.445699,152.893666,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-36.459771,149.965237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.428943,150.614438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.420641,150.630754,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-31.435483,152.890228,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.419116,150.610301,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,4,4,Australia,AU,New South Wales,-36.604072,149.95152,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003980,1,,occurrenceRemarks withheld,2023,6,28,Australia,AU,New South Wales,-28.784683,153.38548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.454518,150.516185,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-31.471947,152.925625,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-28.650316,153.454723,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.421866,150.599735,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003934,1,FEMALE,occurrenceRemarks withheld,2023,6,23,Australia,AU,New South Wales,-28.650301,153.46202,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,3,Australia,AU,New South Wales,-29.480035,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.419909,150.602924,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419647,150.635296,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.457013,150.528094,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,2,Australia,AU,New South Wales,-33.707643,150.785444,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.42735,150.604006,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.628449,149.919557,EPSG:4326 +HUMAN_OBSERVATION,OPJG22022105,1,,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-31.400794,152.077322,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060O,1,,occurrenceRemarks withheld,2023,12,29,Australia,AU,New South Wales,-31.471952,152.906016,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866891,153.343646,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-34.060984,150.866027,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,7,5,Australia,AU,New South Wales,-33.767105,150.057532,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.453819,152.919078,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.436966,150.605179,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.466508,150.527727,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.454611,150.656905,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.394145,150.645248,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-29.667396,152.867975,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,MALE,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-34.073018,150.832551,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-29.484282,153.104026,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,10,1,Australia,AU,New South Wales,-28.83253,153.325745,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030P,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-30.620867,151.341171,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,4,Australia,AU,New South Wales,-32.705905,152.063486,EPSG:4326 +HUMAN_OBSERVATION,OGRJ01031200,1,MALE,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-32.048272,152.524799,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-34.189621,150.727493,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,FEMALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.916192,152.406916,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,23,Australia,AU,New South Wales,-34.017517,150.889048,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004091,1,,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-28.915558,153.319007,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.429467,150.614499,EPSG:4326 +HUMAN_OBSERVATION,OPJG1703020A,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-37.303755,149.54435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436289,150.520587,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.869015,153.335481,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-36.572886,150.003444,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.436947,150.603297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-34.397146,150.639584,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101306,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-33.402278,150.764999,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.437458,150.605437,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-30.437334,152.98111,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-28.702104,153.476653,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-34.095942,150.985861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.459899,150.525483,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-32.9245,150.7419,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.454586,150.607211,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041308,1,,occurrenceRemarks withheld,2021,1,7,Australia,AU,New South Wales,-30.515248,151.521912,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-30.662604,152.955799,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-28.61641,153.506461,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.389175,150.628781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.453478,150.51824,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.394604,150.640515,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-29.762752,151.110282,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080307,1,,occurrenceRemarks withheld,2022,8,27,Australia,AU,New South Wales,-28.959163,153.394057,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-28.413889,153.555278,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-32.412013,152.175471,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-33.675605,149.46813,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011014,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-32.730546,152.039966,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-30.394559,152.939679,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.438552,150.615743,EPSG:4326 +HUMAN_OBSERVATION,ODMP22100601,2,,occurrenceRemarks withheld,2024,9,23,Australia,AU,New South Wales,-30.363375,153.010238,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150Y,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-32.945732,150.056415,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-31.999045,152.157229,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2024,3,23,Australia,AU,New South Wales,-31.453149,152.898219,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2023,4,1,Australia,AU,New South Wales,-34.098466,150.808552,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.418396,150.633547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.446029,150.513248,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-31.427705,152.895774,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-32.727685,152.086088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.387893,150.631503,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-33.676702,149.467513,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.445401,150.517837,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.433053,150.613951,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.075632,150.824212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.388243,150.630949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457925,150.531277,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.418751,150.602707,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002776,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-29.745376,152.894261,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.143687,150.792871,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-28.679028,153.278058,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,5,Australia,AU,New South Wales,-29.479944,153.104235,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,8,Australia,AU,New South Wales,-29.485646,153.103731,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,1,17,Australia,AU,New South Wales,-33.990352,150.901197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.466012,150.523257,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.438093,150.616267,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,10,28,Australia,AU,New South Wales,-31.235485,152.82352,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.422946,150.607896,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435628,150.616054,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.450053,150.51648,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.454054,150.516841,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.681355,149.952917,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.438984,150.604207,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.465837,150.520432,EPSG:4326 +HUMAN_OBSERVATION,OICG23062200,1,,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-29.729832,151.010606,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.395623,150.642379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.435535,150.615448,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003921,1,MALE,occurrenceRemarks withheld,2023,2,16,Australia,AU,New South Wales,-28.764473,153.251164,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.491452,150.638856,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062101,1,MALE,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.772745,146.595319,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.438125,150.616517,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-29.489904,153.101236,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.41763,150.633069,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-29.485515,153.103838,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100405,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-33.686813,150.816513,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.420261,150.627424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418948,150.609511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.446742,150.512846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.488856,150.637928,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-31.98075,152.34022,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2020,7,2,Australia,AU,New South Wales,-33.527077,150.659729,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.39632,150.644426,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,1,22,Australia,AU,New South Wales,-31.486275,152.914426,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-31.480991,152.92173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.493119,150.640181,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,10,Australia,AU,New South Wales,-32.706411,152.063573,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2024,7,17,Australia,AU,New South Wales,-29.730169,151.083081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.448317,150.51627,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.447116,150.513063,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-29.730798,152.969818,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-31.447377,152.909438,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.385421,150.626766,EPSG:4326 +HUMAN_OBSERVATION,Obs_0229,1,,occurrenceRemarks withheld,2024,6,10,Australia,AU,New South Wales,-31.452768,152.925841,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-29.164403,150.185309,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,15,Australia,AU,New South Wales,-29.490222,153.110506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.436277,150.618854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.429651,150.614244,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-31.457772,152.917332,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.485105,150.635562,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.491358,150.639098,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,17,Australia,AU,New South Wales,-28.93162,153.273129,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-28.819412,153.30216,EPSG:4326 +HUMAN_OBSERVATION,ODMP22090800,1,MALE,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-28.769005,153.497766,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,18,Australia,AU,New South Wales,-29.490231,153.108178,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.392891,150.632602,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-31.443404,152.8983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.435352,150.602885,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-28.826946,153.317062,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.48828,150.637029,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-30.655961,151.512471,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.732573,152.755607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.454073,150.520889,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-31.539121,152.746918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.420983,150.627012,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,1,16,Australia,AU,New South Wales,-28.6759,153.46332,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.42863,150.600292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.452024,150.517216,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.4364,150.516743,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-34.514666,150.595561,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.465823,150.522413,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-34.20866,150.809,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-31.423627,152.880189,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-28.645253,153.359208,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-34.05342,150.83898,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-31.460115,152.914099,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-31.448906,152.905121,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,9,Australia,AU,New South Wales,-28.820975,153.311634,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303280D,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-31.431247,152.817107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.401414,150.644881,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.393444,150.639743,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.437,150.603273,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.448211,150.516339,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-33.772769,150.058029,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.43494,150.12983,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,10,9,Australia,AU,New South Wales,-31.629861,152.786625,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.449066,150.516314,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-28.203027,153.438638,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.421984,150.607575,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-33.419281,149.577506,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-29.483736,153.104106,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-34.464269,150.522677,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-28.821838,153.411697,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,3,Australia,AU,New South Wales,-36.441911,149.967708,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-28.611007,153.435927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.439153,150.619785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.433269,150.615751,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,6,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-30.415077,152.995701,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100B,1,,occurrenceRemarks withheld,2023,7,6,Australia,AU,New South Wales,-30.523239,152.900904,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-31.451422,152.897238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.450853,150.515499,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153Q,1,,occurrenceRemarks withheld,2022,9,15,Australia,AU,New South Wales,-28.680143,153.442425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.438037,150.61616,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.452573,150.519834,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-31.468662,152.918769,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,8,Australia,AU,New South Wales,-31.435399,152.908326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.395725,150.636938,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.465681,150.520284,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,12,23,Australia,AU,New South Wales,-32.7787,152.1103,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.470043,150.523791,EPSG:4326 +HUMAN_OBSERVATION,ODMP2302060B,1,,occurrenceRemarks withheld,2024,2,25,Australia,AU,New South Wales,-34.150689,150.824772,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.388777,150.630597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.387795,150.631528,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251G,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-32.729413,152.106248,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,6,12,Australia,AU,New South Wales,-32.715121,152.073546,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.465681,150.521198,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070N,1,,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-28.662456,153.611163,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.427185,150.605208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.439513,150.619274,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011007,1,,occurrenceRemarks withheld,2023,11,25,Australia,AU,New South Wales,-28.636013,152.178297,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.546225,150.541384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.463516,150.523798,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.429388,150.606755,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.489825,150.63348,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-29.488317,153.110184,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.454064,150.662721,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-32.737295,152.056847,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.430679,150.607784,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.488151,150.637359,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050L,1,,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-31.461955,152.858239,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,5,1,Australia,AU,New South Wales,-32.710517,152.065281,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210M,1,,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-32.6193,151.634162,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.389878,150.627858,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.466456,150.527837,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-28.8907,153.351814,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-28.869759,153.282276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.430652,150.607807,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.423719,150.637456,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,15,Australia,AU,New South Wales,-29.489568,153.103886,EPSG:4326 +HUMAN_OBSERVATION,OPJG09091000,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-30.117272,152.788922,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-33.127838,151.238912,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.427292,150.604704,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,16,Australia,AU,New South Wales,-32.337819,152.524588,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-28.98326,153.283781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.398661,150.640031,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.086596,150.976896,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083006,1,,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-31.582975,151.54528,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-31.641753,152.792734,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-31.434972,152.910682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.456595,150.519486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.465784,150.520477,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.427779,150.601024,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,ODFK24062805,1,FEMALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-29.701378,152.920655,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-30.059088,152.248544,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.421984,150.607575,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-31.817654,152.439684,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-29.491128,153.100416,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.360232,152.778159,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-29.489998,153.101199,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100401,1,,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-29.982234,153.225699,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,7,1,Australia,AU,New South Wales,-30.386222,153.033328,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.433189,150.61398,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.400928,150.651029,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.451444,150.616225,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2022,9,7,Australia,AU,New South Wales,-34.098495,150.82001,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-29.629872,152.896425,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-28.864663,153.292802,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240O,1,,occurrenceRemarks withheld,2021,11,26,Australia,AU,New South Wales,-32.737563,152.056954,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.350933,150.620818,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.487991,150.635165,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,2,15,Australia,AU,New South Wales,-31.457655,152.922483,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-32.705843,152.06372,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.437603,150.603681,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.4286,150.601544,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-28.25933,153.401902,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-28.85174,153.377477,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-33.970394,150.984157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.422338,150.637375,EPSG:4326 +HUMAN_OBSERVATION,OIXR15091803;OPJG22072804,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-31.071707,150.122991,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.420659,150.63072,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.397634,150.646162,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.447258,150.51381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.470202,150.528978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.387813,150.631527,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,5,10,Australia,AU,New South Wales,-33.774201,150.065904,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.420371,150.608992,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.386124,150.627181,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.454071,150.520355,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.42068,150.630872,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2023,7,21,Australia,AU,New South Wales,-34.11278,150.798126,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-30.778676,152.993961,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23040308,1,,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-28.918802,153.241488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.423817,150.637387,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,23,Australia,AU,New South Wales,-29.490189,153.110511,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,21,Australia,AU,New South Wales,-32.296325,152.015707,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004251,1,,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-28.821014,153.319002,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.446337,150.513761,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.465661,150.521515,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.813574,152.824553,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210J,1,,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-32.745404,152.166754,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-31.460649,152.929776,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,3,25,Australia,AU,New South Wales,-28.672041,153.611091,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.388245,150.631025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.44724,150.513821,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.466934,150.521608,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-31.641127,152.791822,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,9,Australia,AU,New South Wales,-31.442842,152.897784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.485602,150.637007,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.418462,150.633665,EPSG:4326 +HUMAN_OBSERVATION,OMJA17032000,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.489191,153.434223,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.398688,150.640074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.418306,150.632614,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150Q,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-30.588898,151.307585,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.389258,150.628865,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.414159,150.595647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.420635,150.609148,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-30.437334,152.98111,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022505;ODMP22022506,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-32.719895,152.124133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.420287,150.627369,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,12,17,Australia,AU,New South Wales,-31.460164,152.924412,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.454977,150.61015,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.429519,150.614422,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-28.645111,153.142663,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,4,21,Australia,AU,New South Wales,-29.489601,153.103945,EPSG:4326 +HUMAN_OBSERVATION,ODFK2408220G,1,,occurrenceRemarks withheld,2024,5,20,Australia,AU,New South Wales,-32.565851,149.866517,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,10,1,Australia,AU,New South Wales,-29.489914,153.101258,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-28.228416,153.48113,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.399418,150.616821,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,14,Australia,AU,New South Wales,-31.468404,152.907905,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.43642,150.602626,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.4377,150.604918,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.143567,152.863317,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150A,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-33.538902,150.647999,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004131,1,FEMALE,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-28.879696,153.324023,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-31.442328,152.891714,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-34.5,150.582601,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420054,150.634425,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,26,Australia,AU,New South Wales,-29.489554,153.10387,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-29.490493,153.109487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.491493,150.639084,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,6,13,Australia,AU,New South Wales,-32.706714,152.064147,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.42428,152.822192,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.446143,150.517521,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.912069,152.821589,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-34.029065,150.987529,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.417488,150.633214,EPSG:4326 +HUMAN_OBSERVATION,ODMP22070803,1,,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-29.48375,153.104165,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-31.914027,152.445366,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032808,1,,occurrenceRemarks withheld,2023,3,31,Australia,AU,New South Wales,-31.44678,152.9259,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,7,Australia,AU,New South Wales,-28.903544,153.411497,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003837,1,,occurrenceRemarks withheld,2023,1,18,Australia,AU,New South Wales,-28.694006,153.497534,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.431657,150.614949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.423934,150.637362,EPSG:4326 +HUMAN_OBSERVATION,OSQR03112600,1,,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-30.541214,152.538378,EPSG:4326 +HUMAN_OBSERVATION,OJJS06031404,1,,occurrenceRemarks withheld,2022,1,20,Australia,AU,New South Wales,-33.839982,150.638281,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,21,Australia,AU,New South Wales,-33.715297,150.785817,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-29.489563,153.103983,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021507,1,,occurrenceRemarks withheld,2024,6,23,Australia,AU,New South Wales,-30.887381,153.071788,EPSG:4326 +HUMAN_OBSERVATION,OLHP2407120A,1,,occurrenceRemarks withheld,2024,6,3,Australia,AU,Queensland,-27.844633,153.36257,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-30.352004,153.080084,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,6,11,Australia,AU,New South Wales,-31.452532,152.909185,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.491752,150.638989,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.630803,152.791684,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-29.514957,152.811638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.392803,150.639249,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300C,1,,occurrenceRemarks withheld,2024,3,14,Australia,AU,New South Wales,-32.723753,152.077945,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-28.711115,153.429844,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-34.497497,150.535523,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-33.767672,150.010258,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,3,22,Australia,AU,New South Wales,-31.466242,152.875718,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,17,Australia,AU,New South Wales,-29.488798,153.093517,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032707,1,MALE,occurrenceRemarks withheld,2022,6,30,Australia,AU,New South Wales,-33.492121,149.554471,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.451371,150.517475,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-29.489582,153.103892,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111502,1,,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-34.056619,150.8369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.384428,150.625272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.452401,150.523833,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-34.514666,150.595561,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-31.636454,152.795028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.420619,150.609235,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.424677,150.604681,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-28.237404,153.466171,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-29.490142,153.109921,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031806,1,FEMALE,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-28.876261,153.295489,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310040D,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-32.589101,151.778535,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,2,12,Australia,AU,New South Wales,-28.260281,153.40107,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-28.847839,153.302055,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.433207,150.615829,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-33.705146,150.785329,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-33.747262,150.082135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.448371,150.517161,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.430504,150.616809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.393714,150.641127,EPSG:4326 +HUMAN_OBSERVATION,OJBL99022300,1,MALE,occurrenceRemarks withheld,2024,5,3,Australia,AU,New South Wales,-32.124511,151.847888,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.434201,150.616857,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154U,1,MALE,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-28.592481,153.418498,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.388887,150.626005,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.446572,150.518237,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100515,1,,occurrenceRemarks withheld,2024,2,5,Australia,AU,New South Wales,-31.474269,152.899231,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-28.960679,153.402228,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-29.316805,152.855893,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130M,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-31.470808,152.907698,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,5,30,Australia,AU,New South Wales,-30.50157,151.66621,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-28.66697,153.489654,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.44133,152.902868,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.393655,150.632015,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.438935,150.519932,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.086199,150.978499,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-31.440545,152.88521,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083000,1,FEMALE,occurrenceRemarks withheld,2020,6,1,Australia,AU,New South Wales,-33.499256,150.746881,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-33.703494,150.785499,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,12,19,Australia,AU,New South Wales,-31.441544,152.910694,EPSG:4326 +HUMAN_OBSERVATION,ODFK23111401,1,,occurrenceRemarks withheld,2024,9,5,Australia,AU,New South Wales,-31.577586,152.184769,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-31.914523,152.373714,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.450087,150.516403,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310310H,1,FEMALE,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-30.638859,151.335354,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004039,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-28.660834,153.614981,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-28.889328,153.298855,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-29.497585,153.102658,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.463563,150.523851,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,FEMALE,occurrenceRemarks withheld,2020,7,24,Australia,AU,New South Wales,-32.472237,151.974623,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.455547,150.657761,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-29.490236,153.108156,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,8,29,Australia,AU,New South Wales,-32.72245,152.077179,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.441884,152.902369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.451592,150.517262,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152A,1,,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-28.889525,153.23033,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-28.921541,153.316972,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.421624,150.627516,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111319,1,,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-30.520641,152.441161,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,6,10,Australia,AU,New South Wales,-31.438518,152.9083,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-30.211837,153.140083,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.431068,150.616184,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.831105,153.328184,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419631,150.611755,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-31.4423,152.898657,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.632867,149.949786,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040701,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-32.659096,151.661322,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032804,1,,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-31.490778,152.785873,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-34.108194,150.799936,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-31.447463,152.925776,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-28.642464,153.561275,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.423804,150.637203,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,10,Australia,AU,New South Wales,-29.490199,153.10975,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.446348,150.517395,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004084,1,,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-28.357926,153.206597,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.144587,152.863253,EPSG:4326 +HUMAN_OBSERVATION,OLHP24080503,1,,occurrenceRemarks withheld,2024,7,29,Australia,AU,New South Wales,-29.441323,152.391256,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-29.629872,152.896425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.443822,150.51907,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.940993,153.315098,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-32.224416,152.194095,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,MALE,occurrenceRemarks withheld,2024,5,21,Australia,AU,New South Wales,-31.30501,152.86618,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-31.214814,152.9249,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-32.564229,151.978516,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,14,Australia,AU,New South Wales,-28.807966,153.425399,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-29.487509,153.091017,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-32.744554,151.867683,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.11002,150.80817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.439309,150.617114,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,23,Australia,AU,New South Wales,-28.627092,153.005012,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-31.443012,152.924675,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-34.398125,150.639829,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.465393,150.521653,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.389833,150.627827,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.438614,150.523696,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,MALE,occurrenceRemarks withheld,2024,3,7,Australia,AU,New South Wales,-31.913207,152.380162,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030607,1,,occurrenceRemarks withheld,2024,2,10,Australia,AU,New South Wales,-32.059961,152.540148,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2020,2,12,Australia,AU,New South Wales,-34.142899,150.790492,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202,1,,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-30.509,151.634,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-34.185552,150.762407,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,22,Australia,AU,New South Wales,-31.127013,152.805204,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-36.263594,149.353274,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-31.474015,152.924743,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.446384,150.513836,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.13153,152.82203,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-31.506659,152.775987,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-34.150123,150.82303,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-34.756999,146.535084,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,2,25,Australia,AU,New South Wales,-28.960734,153.394923,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,7,7,Australia,AU,New South Wales,-29.375724,149.81114,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-29.485566,153.103859,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-33.773023,150.102656,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.151791,150.828826,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-31.125513,152.804126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.431213,150.616212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.462266,150.534622,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,13,Australia,AU,New South Wales,-28.701807,153.47548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.396985,150.640089,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022604,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.200077,152.741968,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.237057,152.190362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.432766,150.610336,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.395685,150.64142,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-33.999498,150.896516,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,4,Australia,AU,New South Wales,-29.488349,153.110211,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.862754,152.675853,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.469955,150.530575,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.485925,150.638337,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.341428,152.606185,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,24,Australia,AU,New South Wales,-31.636545,152.787629,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.432848,150.609921,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.441196,150.539028,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,MALE,occurrenceRemarks withheld,2020,5,9,Australia,AU,New South Wales,-34.100058,150.809213,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,28,Australia,AU,New South Wales,-28.837646,153.339943,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-31.630324,152.78476,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-31.18279,150.07184,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,23,Australia,AU,New South Wales,-33.711774,150.785264,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-28.435381,153.014083,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,3,1,Australia,AU,New South Wales,-34.130358,150.765084,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,1,2,Australia,AU,New South Wales,-31.634082,152.785389,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-33.386167,151.47215,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.098098,150.808249,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-30.504726,152.924512,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,20,Australia,AU,New South Wales,-33.718597,150.783227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.447289,150.513123,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.491265,150.638491,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.427455,150.600173,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-28.826058,153.299233,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,2,Australia,AU,New South Wales,-28.890141,153.303792,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-31.652303,152.827999,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-34.210123,150.733563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.428595,150.595767,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042603,1,,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-32.371029,152.503083,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-32.747849,152.049335,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-31.447822,152.913871,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,30,Australia,AU,New South Wales,-28.81682,153.328577,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.42066,150.630797,EPSG:4326 +HUMAN_OBSERVATION,OJJS1802200K,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-28.72786,153.423146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.396764,150.641705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.432122,150.615643,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,25,Australia,AU,New South Wales,-29.488223,153.110844,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-29.489918,153.101231,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.216754,152.192089,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031505,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-28.857212,153.294316,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,2,26,Australia,AU,New South Wales,-31.925977,152.361427,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.466288,150.523085,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-31.12692,150.00032,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240L,1,,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-32.713744,152.163984,EPSG:4326 +HUMAN_OBSERVATION,OJBL96121700,1,,occurrenceRemarks withheld,2020,8,1,Australia,AU,New South Wales,-33.164156,149.190889,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,25,Australia,AU,New South Wales,-33.717009,150.784197,EPSG:4326 +HUMAN_OBSERVATION,ODFK2408220O,1,,occurrenceRemarks withheld,2024,6,13,Australia,AU,New South Wales,-32.638624,149.979346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-34.448593,150.6129,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070X,1,,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-28.823898,153.321764,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-31.467945,152.908952,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,17,Australia,AU,New South Wales,-29.485482,153.103845,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.447171,150.513094,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-28.847195,153.295529,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,20,Australia,AU,New South Wales,-31.132276,152.813154,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.446365,150.513793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.466364,150.523268,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-28.550673,153.450417,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-31.427361,152.878285,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,2,3,Australia,AU,New South Wales,-31.434283,152.916758,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.292108,149.325289,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-29.485529,153.103822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.475473,150.53284,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-28.86133,153.33331,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-29.490493,153.109369,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,12,Australia,AU,New South Wales,-34.034041,150.870984,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,15,Australia,AU,New South Wales,-33.719284,150.78279,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.446429,150.52007,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210C,1,,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-32.709368,152.062857,EPSG:4326 +HUMAN_OBSERVATION,OJJS17062707,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-32.807643,151.800994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.463771,150.523922,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-33.718593,150.783035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.433415,150.616291,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.429556,150.610319,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-33.773977,150.086896,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-32.664896,152.173592,EPSG:4326 +HUMAN_OBSERVATION,OJJS10010400,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-28.389651,153.554092,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-29.489685,153.101569,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490;OPJG21060803,1,,occurrenceRemarks withheld,2024,7,18,Australia,AU,New South Wales,-33.086731,151.197726,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-29.478571,153.104128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.445824,150.514255,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-28.8863,153.235702,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.450215,150.516497,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.10841,150.81944,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003826,1,MALE,occurrenceRemarks withheld,2023,2,1,Australia,AU,New South Wales,-28.808868,153.510476,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.422081,150.607953,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.434089,150.617132,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102,1,,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-32.490361,151.897628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.440369,150.604004,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071100,1,MALE,occurrenceRemarks withheld,2024,6,21,Australia,AU,New South Wales,-32.066025,152.518808,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-34.096129,150.985306,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,3,Australia,AU,New South Wales,-29.490516,153.109465,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-29.490255,153.110157,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-31.450328,152.899669,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-28.384052,153.562348,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-28.623993,153.007852,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2020,6,8,Australia,AU,New South Wales,-33.526675,150.658736,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2024,6,7,Australia,AU,New South Wales,-31.467019,152.900195,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,5,5,Australia,AU,New South Wales,-33.771735,150.055873,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,16,Australia,AU,New South Wales,-31.482553,152.915397,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,FEMALE,occurrenceRemarks withheld,2020,7,2,Australia,AU,New South Wales,-32.397187,151.740305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.420788,150.609132,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022604,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.53525,152.708331,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-29.489932,153.101242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-34.446712,150.600145,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.452565,150.519899,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-33.170112,151.246163,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020609,1,,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-34.044618,150.87066,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042Z,1,FEMALE,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-33.7527,150.645373,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.437067,150.602967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.435454,150.603481,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090E,1,,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-30.41867,153.033673,EPSG:4326 +HUMAN_OBSERVATION,OPUR18082000,1,,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-31.971351,152.568548,EPSG:4326 +HUMAN_OBSERVATION,OIXR13102801,1,,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-33.559749,150.650098,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,5,13,Australia,AU,New South Wales,-32.706529,152.0637,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-36.474664,149.917922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.420105,150.635175,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,12,Australia,AU,New South Wales,-28.641007,153.168497,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-29.480014,153.104283,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-31.472074,152.732519,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-28.679019,153.278128,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.224416,152.194095,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,7,8,Australia,AU,New South Wales,-32.709625,152.07148,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-28.784935,152.091699,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.397743,150.621981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.437904,150.604292,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,1,Australia,AU,New South Wales,-33.703919,150.785873,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.447307,150.513134,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-29.490119,153.110495,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-32.231881,152.200143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.418134,150.632587,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,2,16,Australia,AU,New South Wales,-31.629232,152.786931,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.43092,150.609486,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-31.915923,152.373272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.448144,150.519257,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-32.282843,151.98208,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,12,14,Australia,AU,New South Wales,-31.47032,152.932774,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.43292,150.614064,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.191443,152.02845,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.10841,150.81944,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,3,4,Australia,AU,New South Wales,-31.915694,152.374028,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO;OJJS20110901,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-30.66791,152.955501,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.39918,150.61847,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.455025,150.514058,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,3,Australia,AU,New South Wales,-33.704473,150.785428,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,2,1,Australia,AU,New South Wales,-30.4057,152.93921,EPSG:4326 +HUMAN_OBSERVATION,ODFK23121108,1,,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-29.568082,152.651081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.419116,150.610301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.446338,150.513794,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,28,Australia,AU,New South Wales,-35.066402,150.121111,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,19,Australia,AU,New South Wales,-28.399896,153.556353,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-30.653909,152.962989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.465356,150.521589,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-34.122691,150.972611,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-34.437924,150.615434,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-33.706012,150.786446,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.425188,150.602708,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.429618,150.616704,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,2,,occurrenceRemarks withheld,2023,12,11,Australia,AU,New South Wales,-28.982755,153.420852,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,12,28,Australia,AU,New South Wales,-31.638956,152.793571,EPSG:4326 +HUMAN_OBSERVATION,OFLM00020900,1,,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-32.444733,152.089005,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,5,6,Australia,AU,New South Wales,-28.337076,152.6754,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-36.474664,149.917922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.465473,150.521564,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.439471,150.60329,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130B,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-30.885673,153.071778,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-36.576557,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.389733,150.625927,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-34.099851,150.80901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.391017,150.628011,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.491971,150.640017,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151F,1,,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-28.384598,153.561778,EPSG:4326 +HUMAN_OBSERVATION,OIXR15091803;OPJG22072804,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-31.074582,150.120282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.464807,150.52474,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.434909,150.604182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.434611,150.61617,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-32.23198,152.192249,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.462902,150.524154,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,10,Australia,AU,New South Wales,-28.817999,153.294891,EPSG:4326 +HUMAN_OBSERVATION,OLHP24062104,1,,occurrenceRemarks withheld,2024,5,20,Australia,AU,New South Wales,-28.63754,153.629471,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-30.34655,153.09482,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-34.203743,150.786004,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,5,Australia,AU,New South Wales,-34.90502,150.05804,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;ORSF21090200,1,MALE,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-32.405872,149.823105,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,25,Australia,AU,New South Wales,-34.006923,151.003682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.39098,150.645206,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,2,19,Australia,AU,New South Wales,-29.316805,152.855893,EPSG:4326 +HUMAN_OBSERVATION,OJXK00052203,1,,occurrenceRemarks withheld,2022,12,28,Australia,AU,New South Wales,-34.100506,150.974638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.423337,150.59521,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,2,8,Australia,AU,New South Wales,-32.683417,151.656196,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-31.904256,152.422603,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-28.431739,152.99306,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.387292,150.629334,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121403,1,FEMALE,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-32.890081,151.572474,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.386474,150.630814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.485169,150.635636,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.448981,150.516566,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,1,FEMALE,occurrenceRemarks withheld,2022,5,20,Australia,AU,New South Wales,-28.626815,153.428156,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,1,9,Australia,AU,New South Wales,-31.444562,152.924453,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004163,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-28.824246,153.322256,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,6,29,Australia,AU,New South Wales,-28.257882,153.401162,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.465837,150.520421,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-30.381783,152.934854,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,1,3,Australia,AU,New South Wales,-28.625073,153.009644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.463053,150.519611,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.428833,152.863442,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,11,1,Australia,AU,New South Wales,-31.632157,152.784826,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.396944,153.557778,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-30.437334,152.98111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.466372,150.521907,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.465783,150.520412,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.420619,150.636107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.436396,150.609678,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-29.762752,151.110282,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-32.228945,152.192632,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,2,5,Australia,AU,New South Wales,-31.47876,152.918886,EPSG:4326 +HUMAN_OBSERVATION,ODMP23033102,1,,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-32.723531,152.076267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.395669,150.646684,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2024,2,26,Australia,AU,New South Wales,-31.44402,152.899476,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042T,1,,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-34.053036,150.850922,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.460589,149.910112,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032804,1,,occurrenceRemarks withheld,2022,3,22,Australia,AU,New South Wales,-31.463537,152.924525,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,2,18,Australia,AU,New South Wales,-34.99077,150.71964,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.091455,150.82332,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042A,1,FEMALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-31.026491,150.23067,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.435696,150.615835,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.435381,153.014876,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.937089,153.316984,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-32.611264,151.783819,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033009,1,,occurrenceRemarks withheld,2020,6,22,Australia,AU,New South Wales,-33.176969,151.166847,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-32.028138,152.536308,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,MALE,occurrenceRemarks withheld,2023,4,29,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,27,Australia,AU,New South Wales,-31.78251,152.714205,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.399098,150.639801,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-30.333629,151.650835,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-32.712341,152.160763,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-33.717286,150.784497,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.387851,150.631656,EPSG:4326 +HUMAN_OBSERVATION,OPUR20091100,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-33.167389,151.236903,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-31.980755,152.34022,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180D,1,,occurrenceRemarks withheld,2022,10,12,Australia,AU,New South Wales,-28.864539,153.293302,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-28.291481,153.400618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.39972,150.624905,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022521,1,,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-32.739099,152.059278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.387761,150.626048,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OMFZ23033002;ODFK24051300,1,,occurrenceRemarks withheld,2023,2,9,Australia,AU,New South Wales,-32.118551,152.034303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.481167,150.533543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.421259,150.62633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.418932,150.632814,EPSG:4326 +HUMAN_OBSERVATION,ODFK24082204,1,,occurrenceRemarks withheld,2024,7,4,Australia,AU,New South Wales,-31.473213,152.924126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.387847,150.631428,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,2,19,Australia,AU,New South Wales,-32.777801,152.001394,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.450536,150.515889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.421848,150.607514,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.066635,150.881149,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-29.485613,153.103479,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.388906,150.62421,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-31.450133,152.817301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.38739,150.631115,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,4,26,Australia,AU,New South Wales,-31.444654,152.916681,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210J,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-28.276042,153.394944,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-36.441024,149.978709,EPSG:4326 +HUMAN_OBSERVATION,Obs_1910,1,FEMALE,occurrenceRemarks withheld,2024,3,2,Australia,AU,New South Wales,-32.256754,152.42581,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080100,1,,occurrenceRemarks withheld,2023,12,11,Australia,AU,New South Wales,-30.240723,153.043697,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.437093,150.602955,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-31.932825,152.407933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.384017,150.622684,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-28.937591,153.277931,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-29.477408,153.104278,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,7,12,Australia,AU,New South Wales,-28.93301,153.330787,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040K,1,FEMALE,occurrenceRemarks withheld,2024,3,2,Australia,AU,New South Wales,-31.446093,152.893951,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,4,Australia,AU,New South Wales,-29.481233,153.104106,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.42059,150.630875,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,7,26,Australia,AU,New South Wales,-30.505539,152.920567,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-30.083437,152.175292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.452697,150.520189,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,5,23,Australia,AU,New South Wales,-32.65325,151.789818,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-29.485622,153.103741,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,2,20,Australia,AU,New South Wales,-33.419281,149.577506,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150S,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-28.818314,153.301624,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,5,Australia,AU,New South Wales,-28.397356,153.557183,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,22,Australia,AU,New South Wales,-31.479306,152.92117,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.42047,150.609468,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,2,13,Australia,AU,New South Wales,-29.48506,153.104187,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022519,1,,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-32.723739,152.068005,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.443408,152.898127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.443156,150.518251,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.420675,150.630633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.420376,150.635211,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-28.399201,153.555885,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-28.943575,153.274332,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.464716,150.529173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.434597,150.542192,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072601;ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,3,Australia,AU,New South Wales,-28.260355,153.403053,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.419395,150.632965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.420655,150.609223,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.424995,150.602039,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.427488,150.605504,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-29.490567,153.108108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.465733,150.521534,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.411535,150.596103,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080306,1,,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-31.272449,152.893015,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-31.474899,152.932573,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,16,Australia,AU,New South Wales,-36.065959,149.314368,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-31.459437,152.928339,EPSG:4326 +HUMAN_OBSERVATION,BREHS-HO,1,,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-33.366611,150.811485,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150V,1,,occurrenceRemarks withheld,2024,1,24,Australia,AU,New South Wales,-31.451705,152.922096,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.831137,153.278132,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.435673,150.607305,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022608,1,,occurrenceRemarks withheld,2023,1,9,Australia,AU,New South Wales,-32.515411,151.68367,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102505,2,,occurrenceRemarks withheld,2024,9,4,Australia,AU,New South Wales,-28.637597,153.629255,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031500,1,MALE,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-28.824627,153.322064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.435884,150.517085,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.389903,150.625432,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.387848,150.624512,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-36.557254,150.016582,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.437201,150.605694,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,17,Australia,AU,New South Wales,-28.21383,153.51374,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,2,8,Australia,AU,New South Wales,-32.52093,151.84068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.465725,150.521556,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100Y,1,FEMALE,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-32.724689,152.137467,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300R,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-32.711316,152.061778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.452263,150.52277,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-29.48996,153.10122,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290M,1,FEMALE,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-33.633295,150.270899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-34.440502,150.617309,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-33.716958,150.78401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.433719,150.61711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419631,150.611755,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,15,Australia,AU,New South Wales,-32.351167,152.485991,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221J,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-32.722295,152.074678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.454689,150.662388,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.432689,150.613309,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222A,1,,occurrenceRemarks withheld,2021,2,14,Australia,AU,New South Wales,-32.74272,152.065422,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-33.717517,150.784524,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-31.479582,152.90101,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210W,1,,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-32.643439,151.628875,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.465846,150.520399,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.465903,150.52191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.427346,150.604692,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,18,Australia,AU,New South Wales,-29.479673,153.103473,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.45409,150.52042,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-31.470148,152.831796,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,7,Australia,AU,New South Wales,-33.716076,150.785358,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-29.489928,153.10335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.419367,150.600111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.446319,150.513783,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-29.486799,153.103001,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101301,1,,occurrenceRemarks withheld,2022,4,7,Australia,AU,New South Wales,-28.260565,153.470376,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-31.254982,152.822303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.434851,150.616,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-30.422876,153.012516,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-31.629599,152.785674,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.437234,150.615193,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2023,1,21,Australia,AU,New South Wales,-34.111394,150.802112,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-31.546884,152.849552,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-28.367891,153.561633,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-34.192296,150.784747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.465817,150.521662,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-29.483175,153.104197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435828,150.602785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.422771,150.637406,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130B,1,MALE,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-30.885783,153.071468,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041Q,1,FEMALE,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-34.039406,151.007507,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,29,Australia,AU,New South Wales,-30.30214,153.100495,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-29.483787,153.10416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.387856,150.63145,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,6,10,Australia,AU,New South Wales,-33.777864,150.056592,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.418363,150.633668,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.455465,150.660048,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,9,Australia,AU,New South Wales,-30.876896,153.070336,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.388898,150.624254,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.427421,150.603025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.45987,150.519139,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-28.885692,153.35714,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.824882,153.303135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.420318,150.635484,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.423895,150.637211,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060T,1,,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-31.465493,152.927705,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091904,1,,occurrenceRemarks withheld,2024,8,28,Australia,AU,New South Wales,-32.345114,152.332371,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-29.490591,153.109363,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122008,1,,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-32.718501,152.182993,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,FEMALE,occurrenceRemarks withheld,2024,4,22,Australia,AU,New South Wales,-31.4301,152.9117,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-31.650231,152.822887,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,1,14,Australia,AU,New South Wales,-28.598104,153.429944,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,,occurrenceRemarks withheld,2024,9,28,Australia,AU,New South Wales,-34.747587,146.539207,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.445926,150.513066,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-34.33,150.706944,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152V,1,MALE,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-28.857815,153.276239,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003949,1,,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-28.874003,153.277789,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.395708,150.626312,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.432812,150.615003,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-29.490133,153.107486,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.181255,153.002187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.446789,150.515608,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-30.240161,152.897962,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.493043,150.639072,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.465807,150.521608,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-29.490532,153.109434,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.432187,150.605587,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004030,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-28.876449,153.298311,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021400,1,,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-31.446293,152.915121,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,6,Australia,AU,New South Wales,-28.662032,153.612356,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.427914,150.59781,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-31.450925,152.929855,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.456854,150.516681,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,MALE,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-28.850078,153.315763,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-29.490507,153.109455,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,3,26,Australia,AU,New South Wales,-33.775552,150.062479,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070O,1,MALE,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-34.046892,151.007627,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2023,11,20,Australia,AU,New South Wales,-34.194229,150.738019,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,5,8,Australia,AU,New South Wales,-32.699847,152.064733,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,6,Australia,AU,New South Wales,-29.490189,153.110522,EPSG:4326 +HUMAN_OBSERVATION,OJKB21070601,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-31.09505,152.815345,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,2,25,Australia,AU,New South Wales,-31.929321,152.378599,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-31.453664,152.875612,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-29.667322,152.868147,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140J,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-31.458199,152.927066,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-33.718836,150.78273,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,3,6,Australia,AU,New South Wales,-31.454565,152.899652,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-29.49018,153.11027,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200D,1,,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-31.85489,152.359276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.436546,150.519045,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2022,6,3,Australia,AU,New South Wales,-32.736579,152.081127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.445693,150.516239,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.423452,150.605651,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-29.630963,152.89945,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-29.489549,153.103935,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,2,8,Australia,AU,New South Wales,-31.458122,152.911609,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-29.485496,153.103774,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-33.704336,150.787134,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-28.97172,152.755998,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-29.48876,153.093469,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.457368,150.519344,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-29.485426,153.103865,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.4208,150.630586,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.420623,150.630765,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.43368,150.604968,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.421383,150.626696,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.386438,150.625737,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.458823,150.525298,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-29.630628,152.864586,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,24,Australia,AU,New South Wales,-28.819803,153.302593,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.465665,150.52171,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-31.910186,152.409406,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,23,Australia,AU,New South Wales,-33.706379,150.785369,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-28.662796,153.239911,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,16,Australia,AU,New South Wales,-28.384773,153.561382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.42377,150.637302,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.46602,150.521863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.395105,150.629146,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-28.955717,153.428491,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,17,Australia,AU,New South Wales,-28.983839,153.297647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.452223,150.523044,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.384525,150.622844,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083001,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-32.353794,151.817328,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,6,14,Australia,AU,New South Wales,-32.706714,152.064147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.452102,150.524647,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-29.685304,152.867197,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,8,Australia,AU,New South Wales,-29.484899,153.103843,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,26,Australia,AU,New South Wales,-29.490497,153.109379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.39164,150.644839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.392972,150.645205,EPSG:4326 +HUMAN_OBSERVATION,OPUR21080904,1,,occurrenceRemarks withheld,2022,5,27,Australia,AU,New South Wales,-31.474669,152.921536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.449041,150.617371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.434909,150.6028,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-31.630152,152.784192,EPSG:4326 +HUMAN_OBSERVATION,OJJS19061100,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-32.313314,151.788112,EPSG:4326 +HUMAN_OBSERVATION,OJJS13032501,1,MALE,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-29.534829,152.249957,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,MALE,occurrenceRemarks withheld,2023,1,21,Australia,AU,New South Wales,-28.819709,153.314923,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-28.916312,153.318679,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.420676,150.630666,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031543,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-29.020005,153.422758,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-29.490236,153.110329,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-29.834373,150.845124,EPSG:4326 +HUMAN_OBSERVATION,OJMM08020900,1,,occurrenceRemarks withheld,2020,5,24,Australia,AU,New South Wales,-34.407976,150.870511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.47571,150.532963,EPSG:4326 +HUMAN_OBSERVATION,STAG-035,1,,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-30.918861,148.893097,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-31.236216,152.907276,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152X,1,,occurrenceRemarks withheld,2022,8,28,Australia,AU,New South Wales,-28.948953,153.316139,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-31.448194,152.896099,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,19,Australia,AU,New South Wales,-29.489914,153.101193,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.433063,150.613995,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022523,1,,occurrenceRemarks withheld,2020,2,3,Australia,AU,New South Wales,-29.78675,151.19617,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.418198,150.632585,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-34.3928,150.348,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-34.439036,150.616545,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-31.464859,152.921011,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.393288,150.640987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.431998,150.613448,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.387067,150.626556,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,3,Australia,AU,New South Wales,-29.485468,153.103784,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-32.64281,151.57961,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.555675,153.075188,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-28.863841,153.29174,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-28.63277,153.5871,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.435955,150.615751,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310310I,1,,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-34.055463,150.838342,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.62889,152.75666,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,24,Australia,AU,New South Wales,-33.716847,150.785285,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-30.34676,153.09517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.454496,150.515565,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2021,1,24,Australia,AU,New South Wales,-31.831604,152.099256,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-33.220975,150.604246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.419125,150.610279,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.465739,150.520467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435787,150.521179,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.434986,150.60307,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.49302,150.640184,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180P,1,,occurrenceRemarks withheld,2022,7,22,Australia,AU,New South Wales,-28.69642,153.478744,EPSG:4326 +HUMAN_OBSERVATION,ODMP22031601,1,,occurrenceRemarks withheld,2020,7,21,Australia,AU,New South Wales,-33.115211,151.465317,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004160,1,FEMALE,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-29.054,153.311177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.4372,150.602419,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-28.579378,153.153574,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-31.445797,152.914822,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,1,3,Australia,AU,New South Wales,-31.217602,152.802773,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-31.637518,152.788591,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,20,Australia,AU,New South Wales,-29.485594,153.103918,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,9,4,Australia,AU,New South Wales,-28.628079,153.449423,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2024,2,15,Australia,AU,New South Wales,-29.609175,150.861647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.42385,150.637256,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,28,Australia,AU,New South Wales,-30.39539,152.94298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.44745,150.519267,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-28.627485,153.448052,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090504,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-30.413736,152.940581,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-32.004563,152.149568,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.047799,150.85412,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-31.481002,152.916217,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-28.732179,153.431849,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-31.4527,152.87856,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070Q,1,,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-28.431212,153.528762,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-30.197143,153.141639,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.452241,150.523021,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031K,1,,occurrenceRemarks withheld,2023,5,6,Australia,AU,New South Wales,-31.453953,152.925128,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,30,Australia,AU,New South Wales,-31.283793,152.863323,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040701,1,FEMALE,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-32.660001,151.660017,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250M,1,,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-32.728847,152.018265,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2022,11,5,Australia,AU,New South Wales,-32.62421,151.71307,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-31.453175,152.914177,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.454665,152.907012,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.14623,150.79871,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.428966,150.600413,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100607,1,,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-31.472381,152.926905,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250X,1,,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-32.719823,152.18174,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.729911,152.090821,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,FEMALE,occurrenceRemarks withheld,2023,5,18,Australia,AU,New South Wales,-28.95907,153.394013,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.423698,150.637304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.439391,150.603804,EPSG:4326 +HUMAN_OBSERVATION,OPUR15021900,1,,occurrenceRemarks withheld,2020,5,20,Australia,AU,New South Wales,-29.233568,150.755356,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-29.490507,153.109433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.440629,150.604421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.458473,150.520911,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002802,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-29.38253,153.155315,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-29.490227,153.108237,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202,1,,occurrenceRemarks withheld,2022,7,3,Australia,AU,New South Wales,-29.78,151.025,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180D,1,FEMALE,occurrenceRemarks withheld,2022,11,7,Australia,AU,New South Wales,-28.864588,153.292968,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-32.228945,152.192632,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-34.076921,150.852499,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,23,Australia,AU,New South Wales,-33.713256,150.784855,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-29.490236,153.110029,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2021,1,6,Australia,AU,New South Wales,-30.32102,153.07789,EPSG:4326 +HUMAN_OBSERVATION,OJJS19122407,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-34.157182,150.804307,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211S,1,,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-32.711568,152.06621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.400797,150.620023,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,FEMALE,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-31.910431,152.375212,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,21,Australia,AU,New South Wales,-33.704703,150.786246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.424913,150.602009,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-29.482891,153.104374,EPSG:4326 +HUMAN_OBSERVATION,OLHP24071209,1,,occurrenceRemarks withheld,2024,6,3,Australia,AU,New South Wales,-31.472015,152.926265,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.679036,153.277841,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.429205,150.614485,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-34.127624,150.827206,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,2,19,Australia,AU,New South Wales,-30.655961,151.512471,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-29.490241,153.110136,EPSG:4326 +HUMAN_OBSERVATION,OIXR16042803,1,,occurrenceRemarks withheld,2022,9,4,Australia,AU,New South Wales,-28.661288,153.609571,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-29.490609,153.109406,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-31.932237,152.412845,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.628449,149.919557,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,FEMALE,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-28.554293,153.071673,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003917,1,,occurrenceRemarks withheld,2023,4,1,Australia,AU,New South Wales,-28.832072,153.328391,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-31.642119,152.792982,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2022,10,14,Australia,AU,New South Wales,-31.654867,152.809901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.426752,150.603816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.392801,150.639119,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-31.642119,152.792982,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,5,9,Australia,AU,New South Wales,-29.518732,150.996409,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-34.08393,150.854036,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.452747,150.517304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.418844,150.632893,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-30.125115,152.737543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.391595,150.644819,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.398881,150.616521,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,28,Australia,AU,New South Wales,-30.395187,152.943204,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140O,1,MALE,occurrenceRemarks withheld,2022,1,31,Australia,AU,New South Wales,-32.759368,152.103509,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.423797,150.637312,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,3,2,Australia,AU,New South Wales,-28.559611,153.396108,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032002,1,,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-32.724323,152.075672,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-28.826765,153.305638,EPSG:4326 +HUMAN_OBSERVATION,ODMP99111100,1,,occurrenceRemarks withheld,2022,12,4,Australia,AU,New South Wales,-32.184258,150.962131,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.061874,150.862399,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.420851,150.630399,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-31.13463,150.12901,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-31.26349,152.832,EPSG:4326 +HUMAN_OBSERVATION,ODMP21070805,1,,occurrenceRemarks withheld,2022,5,11,Australia,AU,New South Wales,-33.95807,150.9286,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.42101,150.630221,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-29.490409,153.108178,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.417619,150.63345,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-29.722693,152.934212,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091705,1,,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-31.938661,152.402368,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-29.490138,153.107464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.393798,150.644061,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-31.454389,152.916023,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.434314,150.616179,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.418315,150.632603,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17297,152.90988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.420636,150.609191,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003923,1,MALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.928384,153.2101,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.176289,152.909424,EPSG:4326 +HUMAN_OBSERVATION,OPJG21031204,1,,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-32.444507,152.516775,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.449028,150.516619,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-29.490199,153.10983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.451812,150.518344,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-28.78346,153.456711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.454072,150.520856,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-28.83385,153.352906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.493215,150.639111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.442855,150.517629,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.447874,150.517949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.424496,150.604632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.387881,150.624369,EPSG:4326 +HUMAN_OBSERVATION,ODMP21070805,1,,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-33.954203,150.929224,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-28.855254,153.3944,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-33.712349,150.785981,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.138664,150.795089,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090808,1,,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-33.998345,150.908792,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154Q,1,,occurrenceRemarks withheld,2022,7,2,Australia,AU,New South Wales,-28.695055,153.381541,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,16,Australia,AU,New South Wales,-29.486561,153.096982,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-29.489489,153.103913,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2020,7,20,Australia,AU,New South Wales,-31.348795,152.718696,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032809,1,,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.372303,150.749512,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,29,Australia,AU,New South Wales,-28.693786,153.493083,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.41885,150.632762,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,6,Australia,AU,New South Wales,-28.397415,153.557034,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-28.862636,153.270671,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131X,1,,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-32.705335,152.063516,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.400931,150.619965,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.021526,150.864858,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083002,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-34.069677,150.83513,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-29.485669,153.103693,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.4006,150.624282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.466908,150.521206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.446319,150.513783,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060503,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-28.837109,153.316281,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.824882,153.303135,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080904,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-31.445015,152.903671,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,2,11,Australia,AU,New South Wales,-31.442912,152.891077,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,6,10,Australia,AU,New South Wales,-31.44044,152.906855,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-28.838377,153.391298,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,8,20,Australia,AU,New South Wales,-31.459147,152.926148,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-28.246907,153.482997,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,12,3,Australia,AU,New South Wales,-31.527069,152.791854,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,5,9,Australia,AU,New South Wales,-36.56748,149.966961,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.476538,152.930028,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-29.490175,153.109793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.392746,150.639066,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-28.851502,153.037953,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002787,1,MALE,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-29.731011,152.969856,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2024,8,27,Australia,AU,New South Wales,-34.149167,150.825278,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181H,1,,occurrenceRemarks withheld,2022,8,12,Australia,AU,New South Wales,-28.978011,153.288785,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-28.85414,153.26473,EPSG:4326 +HUMAN_OBSERVATION,OIXR16111000;OSHD19121001,1,MALE,occurrenceRemarks withheld,2023,6,4,Australia,AU,New South Wales,-34.102169,150.809326,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,7,9,Australia,AU,New South Wales,-31.425153,152.876259,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-31.90253,152.391142,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131O,1,,occurrenceRemarks withheld,2023,4,16,Australia,AU,New South Wales,-31.651391,152.601677,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-28.258902,153.370187,EPSG:4326 +HUMAN_OBSERVATION,OJJS20020408,1,MALE,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-34.100577,150.806894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.436472,150.615878,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,5,Australia,AU,New South Wales,-29.490128,153.110533,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.391024,150.645161,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.427505,150.60547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.452007,150.517293,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-32.706656,152.063292,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-28.918269,153.320936,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.633581,149.921178,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-34.403156,150.852145,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.449998,150.51646,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.633581,149.921178,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,25,Australia,AU,New South Wales,-35.0641,150.124778,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,3,12,Australia,AU,New South Wales,-34.071083,150.993648,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-29.489563,153.103892,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-34.139613,150.778378,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-33.718565,150.783204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.44651,150.5143,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.443752,152.852033,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-28.689425,153.605918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.392765,150.63912,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-31.194882,152.972566,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-30.33917,153.09354,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-30.35548,153.07842,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-32.651449,151.956904,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-31.459262,152.924924,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,MALE,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-31.436889,152.905566,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-31.45773,152.917419,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.453097,150.517261,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270B,1,,occurrenceRemarks withheld,2022,1,31,Australia,AU,New South Wales,-32.653034,152.09291,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-29.681698,152.933658,EPSG:4326 +HUMAN_OBSERVATION,OLHP2312140G,1,FEMALE,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-29.721303,150.93782,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-31.444136,152.924154,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,3,24,Australia,AU,New South Wales,-28.832697,153.345753,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707;OPJG20112703,1,,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-30.520053,152.605261,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240I,1,,occurrenceRemarks withheld,2022,2,17,Australia,AU,New South Wales,-32.735951,152.088711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.419672,150.611525,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,29,Australia,AU,New South Wales,-28.814901,153.328844,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.434261,150.616256,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-34.207563,150.793402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.418095,150.600038,EPSG:4326 +HUMAN_OBSERVATION,OHUM18080700,1,,occurrenceRemarks withheld,2020,4,26,Australia,AU,New South Wales,-30.596306,153.011589,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102218,1,,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-32.706006,152.063502,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-34.096067,150.98472,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.435505,150.521046,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-31.882179,152.386755,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-29.480145,153.10409,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,13,Australia,AU,New South Wales,-29.490184,153.110517,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,12,,Australia,AU,New South Wales,-36.371011,148.761746,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-33.705952,150.786191,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.805797,153.342482,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-30.534255,151.66582,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-29.629872,152.896425,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-31.91019,152.40941,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211S,1,,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-32.711568,152.06621,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-31.4692,152.919643,EPSG:4326 +HUMAN_OBSERVATION,OJJS18110502,1,,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-32.06324,151.6887,EPSG:4326 +HUMAN_OBSERVATION,OGRJ01031200,1,MALE,occurrenceRemarks withheld,2021,10,13,Australia,AU,New South Wales,-32.064646,152.539599,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.293208,149.324661,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-30.32236,151.577918,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-29.490852,153.109304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.447007,150.513915,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-30.289868,152.699739,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,1,22,Australia,AU,New South Wales,-31.463308,152.926957,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.387667,150.631912,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-28.822728,153.317734,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.442576,150.516343,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.612172,153.367535,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,6,30,Australia,AU,New South Wales,-31.167271,152.810751,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.307677,152.037481,EPSG:4326 +HUMAN_OBSERVATION,Obs_0190,1,FEMALE,occurrenceRemarks withheld,2024,2,20,Australia,AU,New South Wales,-33.104783,151.150223,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011013,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.453709,152.905712,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,,occurrenceRemarks withheld,2023,5,20,Australia,AU,New South Wales,-28.960704,153.402513,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-34.77234,150.11759,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,6,26,Australia,AU,New South Wales,-28.925076,153.230164,EPSG:4326 +HUMAN_OBSERVATION,Obs_0190,1,MALE,occurrenceRemarks withheld,2023,12,2,Australia,AU,New South Wales,-33.104783,151.150223,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.430334,150.616412,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,6,7,Australia,AU,New South Wales,-32.736099,152.109373,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.447056,150.513228,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-32.722459,152.077206,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,7,Australia,AU,New South Wales,-31.485269,152.915048,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-36.137257,149.299548,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-28.336159,153.564434,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-31.464661,152.870846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.454093,150.520572,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.439587,150.606888,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,17,Australia,AU,New South Wales,-29.483442,153.095228,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.447304,150.513874,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151V,1,,occurrenceRemarks withheld,2022,12,19,Australia,AU,New South Wales,-28.959932,153.395195,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022701,1,,occurrenceRemarks withheld,2022,12,19,Australia,AU,New South Wales,-33.969835,150.915166,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-31.442813,152.91921,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.469411,150.526868,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.390095,150.626025,EPSG:4326 +HUMAN_OBSERVATION,OPUR21061500;OMFZ23032403,1,FEMALE,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-34.958306,150.066993,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-29.479169,153.104176,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-31.833611,152.428977,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-29.485632,153.103473,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.463646,150.523969,EPSG:4326 +HUMAN_OBSERVATION,OLJB22042500,1,,occurrenceRemarks withheld,2022,4,17,Australia,AU,New South Wales,-32.596389,151.671111,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-34.068368,150.913678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.396871,150.645432,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.423798,150.637345,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-31.435592,152.883375,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,MALE,occurrenceRemarks withheld,2020,12,14,Australia,AU,New South Wales,-31.933481,152.415642,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.447288,150.515768,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,FEMALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-29.465633,153.11158,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003825,1,,occurrenceRemarks withheld,2023,5,19,Australia,AU,New South Wales,-28.830347,153.232154,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,8,Australia,AU,New South Wales,-31.470435,152.907313,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-31.459411,152.923097,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.067516,150.985097,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,6,7,Australia,AU,New South Wales,-33.382543,150.776613,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-31.455166,152.914514,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-28.815537,153.32228,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040B,1,FEMALE,occurrenceRemarks withheld,2023,8,21,Australia,AU,New South Wales,-33.548838,150.665621,EPSG:4326 +HUMAN_OBSERVATION,OPRS04081700;OPJGI0001688,1,,occurrenceRemarks withheld,2023,1,19,Australia,AU,New South Wales,-29.375133,153.093687,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020301,1,MALE,occurrenceRemarks withheld,2023,8,21,Australia,AU,New South Wales,-31.435188,152.909102,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-33.432441,150.615698,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-31.464683,152.92782,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.150308,150.824095,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,5,28,Australia,AU,New South Wales,-28.38399,153.562188,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091904,1,,occurrenceRemarks withheld,2024,8,28,Australia,AU,New South Wales,-32.34502,152.332731,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004074,1,,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-28.429244,153.020569,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-28.821687,153.295029,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-29.48799,153.092026,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,12,28,Australia,AU,New South Wales,-28.687931,153.579254,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-28.635247,152.996234,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022614,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-32.731046,152.085609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.426756,150.604023,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.63103,152.756185,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-30.3566,153.05578,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,29,Australia,AU,New South Wales,-31.910186,152.409406,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.465994,150.523257,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111317,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-31.464357,152.924757,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,MALE,occurrenceRemarks withheld,2022,9,10,Australia,AU,New South Wales,-34.018549,150.890633,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-30.095476,152.204862,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-28.816736,153.328511,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100G,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-32.663196,151.658636,EPSG:4326 +HUMAN_OBSERVATION,OPXE00110600,1,,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-30.440188,152.895208,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-31.455984,152.929133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.400402,150.645703,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.572611,149.995573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.445883,150.513154,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020H,1,FEMALE,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-32.469856,151.806784,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-28.81632,153.303503,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.45347,150.518284,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-33.708025,150.785538,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152W,1,MALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.888717,153.299324,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-34.84227,150.00568,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,12,8,Australia,AU,New South Wales,-31.478956,152.91872,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.420649,150.63071,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041N,1,MALE,occurrenceRemarks withheld,2023,6,15,Australia,AU,New South Wales,-34.111148,150.802682,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,9,Australia,AU,New South Wales,-30.452702,152.888659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.418459,150.632588,EPSG:4326 +HUMAN_OBSERVATION,OJJS20020401,1,,occurrenceRemarks withheld,2020,1,29,Australia,AU,New South Wales,-33.739042,150.959769,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,21,Australia,AU,New South Wales,-29.489862,153.110554,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.383506,150.623764,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-33.709569,150.785586,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-34.241266,150.787159,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2022,2,15,Australia,AU,New South Wales,-34.495547,150.410095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.412981,150.599031,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.464245,150.521045,EPSG:4326 +HUMAN_OBSERVATION,OPUR23081702;ODFK2310250A,1,,occurrenceRemarks withheld,2023,,,Australia,AU,New South Wales,-29.169249,153.044328,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080101,1,,occurrenceRemarks withheld,2021,2,9,Australia,AU,New South Wales,-32.570205,151.795412,EPSG:4326 +HUMAN_OBSERVATION,ODFK2404260D,1,,occurrenceRemarks withheld,2024,3,29,Australia,AU,New South Wales,-32.385025,152.447094,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,5,16,Australia,AU,New South Wales,-30.505757,152.923672,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-31.481892,152.916376,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.443221,152.89841,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,7,25,Australia,AU,New South Wales,-31.130437,152.817021,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,2,9,Australia,AU,New South Wales,-28.916298,153.320503,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-32.706663,152.063994,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-34.186332,150.79071,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-28.393177,153.559907,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004128,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-29.028258,153.315214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.445824,150.514255,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-33.71322,150.785009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.395159,150.628688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.435379,150.603363,EPSG:4326 +HUMAN_OBSERVATION,OSXK00032802,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-32.382158,149.79132,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-28.960666,153.394619,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-30.4193,152.9785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,24,Australia,AU,New South Wales,-34.439097,150.616424,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-28.695089,153.568679,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2024,4,11,Australia,AU,New South Wales,-31.466543,152.929911,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.488611,150.634145,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032705,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-33.490003,149.551199,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090806,1,,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-30.323526,152.980215,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-31.448039,152.905835,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-33.442443,150.69013,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-34.721257,146.469528,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-31.466687,152.900733,EPSG:4326 +HUMAN_OBSERVATION,OLHP2312140D,1,MALE,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-35.104734,149.925447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.465726,150.521611,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221X,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-32.732798,152.105286,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.385819,150.627255,EPSG:4326 +HUMAN_OBSERVATION,OGXN10042200,1,,occurrenceRemarks withheld,2020,3,18,Australia,AU,New South Wales,-33.556385,149.553276,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-30.23025,152.93881,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,MALE,occurrenceRemarks withheld,2023,2,24,Australia,AU,New South Wales,-28.844336,153.319838,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.395178,150.640379,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-32.708778,152.064106,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,FEMALE,occurrenceRemarks withheld,2024,1,1,Australia,AU,New South Wales,-31.945384,152.298817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.435081,150.608845,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.426829,150.604108,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003883,1,,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-28.881273,153.200153,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,MALE,occurrenceRemarks withheld,2022,10,28,Australia,AU,New South Wales,-28.989862,153.433909,EPSG:4326 +HUMAN_OBSERVATION,ODFK24012505,1,,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-33.683565,150.545624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.464753,150.521639,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,24,Australia,AU,New South Wales,-32.722476,152.077238,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,7,13,Australia,AU,New South Wales,-31.453502,152.888066,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.455536,150.608795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.469381,150.52713,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.394742,150.642991,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-29.479972,153.10424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,26,Australia,AU,New South Wales,-34.4403,150.61849,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-28.398951,153.555865,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-32.229205,152.189597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.456429,150.528165,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-29.485604,153.103817,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-29.656348,150.833816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.383469,150.623722,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080102,1,MALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-29.770741,150.945417,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2022,1,25,Australia,AU,New South Wales,-31.91938,152.37032,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,17,Australia,AU,New South Wales,-29.485584,153.103783,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.424494,150.604555,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-28.85774,153.331908,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-32.447469,151.968181,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-30.41382,153.01301,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-31.435995,152.895106,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.459345,150.53461,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-29.489918,153.101274,EPSG:4326 +HUMAN_OBSERVATION,OJQS16052400,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-30.40374,151.696428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.485554,150.636398,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.43306,150.605073,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.906259,151.858769,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033009,1,,occurrenceRemarks withheld,2020,6,23,Australia,AU,New South Wales,-33.11426,151.128847,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.38515,150.62437,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,4,7,Australia,AU,New South Wales,-28.864637,153.293166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.446639,150.518845,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.464936,150.521329,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.827996,153.303174,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,3,Australia,AU,New South Wales,-28.81758,153.337558,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.43808,150.616518,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-29.489676,153.101338,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-34.045989,151.007752,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.91701,152.378239,EPSG:4326 +HUMAN_OBSERVATION,OJJS20020408,1,MALE,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-34.085996,150.835252,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.465745,150.520315,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-32.689837,151.65772,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150C,1,,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-33.35049,150.61624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,25,Australia,AU,New South Wales,-34.43942,150.616338,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100302,1,,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-31.448437,152.887495,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011007,1,,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-28.635946,152.178209,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,14,Australia,AU,New South Wales,-29.489923,153.101226,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,7,4,Australia,AU,New South Wales,-32.722522,152.07705,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-28.836564,153.131817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.434409,150.542263,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-29.010473,153.272286,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-28.650301,153.46202,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-29.490642,153.109369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.418323,150.63257,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,2,19,Australia,AU,New South Wales,-31.466722,152.899616,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-29.48803,153.092082,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251Y,1,MALE,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-32.730856,152.039191,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250F,1,MALE,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-32.666802,152.014476,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-28.28902,153.561338,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,26,Australia,AU,New South Wales,-29.479888,153.104085,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.447155,150.515859,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,28,Australia,AU,New South Wales,-34.437802,150.616591,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,10,Australia,AU,New South Wales,-31.20122,152.405012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.417531,150.633104,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-34.112049,150.846588,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.448562,152.82423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.438068,150.518522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.434079,150.608297,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,6,18,Australia,AU,New South Wales,-28.733192,153.079208,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-31.443901,152.899468,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-31.449107,152.907827,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.453832,150.520602,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.455972,150.597442,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.437189,150.51833,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031518,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-28.823502,153.316408,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-34.419979,150.610156,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS;ODFK23090501,1,,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-30.47882,151.764483,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,7,10,Australia,AU,New South Wales,-29.48559,153.10379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.463787,150.523823,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.419657,150.63535,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-28.33206,153.55879,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.437806,150.607092,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,12,11,Australia,AU,New South Wales,-31.468121,152.920148,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.456859,150.517367,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,3,30,Australia,AU,New South Wales,-31.91495,152.37417,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,4,Australia,AU,New South Wales,-29.487864,153.091081,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,3,Australia,AU,New South Wales,-29.490194,153.107953,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-31.949518,152.418326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.488564,150.637729,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-32.22062,152.19925,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-29.488546,153.110865,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.420591,150.609203,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.717963,152.070445,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,FEMALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-28.257815,153.400646,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,12,12,Australia,AU,New South Wales,-28.890057,153.322971,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-33.718718,150.783797,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2024,9,10,Australia,AU,New South Wales,-33.148032,151.077406,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,5,Australia,AU,New South Wales,-28.630745,153.270921,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-29.482419,153.104299,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-28.63955,153.01536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.466673,150.519841,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.444497,150.518604,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-33.713509,150.783674,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004106,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-28.82451,153.318297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418963,150.609402,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151U,1,MALE,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-30.378604,153.046608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.438985,150.604261,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,28,Australia,AU,New South Wales,-30.39082,152.944414,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-31.25536,152.780584,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-29.484296,153.10402,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-30.299789,153.094492,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.425221,153.044301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.394182,150.642484,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.48444,152.783304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.398463,150.640048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.45407,150.60715,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-32.564261,151.980769,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.425662,150.602031,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.457222,150.606015,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419037,150.610379,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-32.749205,152.068751,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.454346,150.606968,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.435068,150.603133,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.200967,152.965822,EPSG:4326 +HUMAN_OBSERVATION,ODMP99082301,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-31.565273,152.191886,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-33.56781,150.72129,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.387111,150.630688,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-29.515027,152.811633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.45887,150.664166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.443957,150.517303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.42977,150.610171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-34.448893,150.515339,EPSG:4326 +HUMAN_OBSERVATION,OICG18022200,1,,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-28.692616,153.312672,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-28.614653,153.247804,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004250,1,MALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.561523,153.11638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.45522,150.519658,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907171A,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-29.70733,152.879058,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-34.204612,150.790887,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-29.479902,153.104219,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.43615,150.61604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.437887,150.606197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.437678,150.605191,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,3,Australia,AU,New South Wales,-33.706023,150.786073,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,4,30,Australia,AU,New South Wales,-28.796603,153.258387,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,MALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-29.493094,153.092483,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-32.639158,151.95699,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.457717,152.873518,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.467036,150.520843,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-31.45932,152.918812,EPSG:4326 +HUMAN_OBSERVATION,ODMP23033104,1,,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-32.72283,151.993445,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-32.710382,152.067352,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.298458,149.322764,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060Q,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-32.54935,152.017903,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-31.291832,152.863625,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-28.2564,153.400846,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-28.65505,153.59019,EPSG:4326 +HUMAN_OBSERVATION,ODLA15110400;OPJG22072901,1,,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-31.079077,150.121961,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-33.430377,150.61997,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2023,1,30,Australia,AU,New South Wales,-30.300543,153.123295,EPSG:4326 +HUMAN_OBSERVATION,ODMP1003011Y,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-31.28162,152.83192,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-29.741257,151.061178,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-28.611007,153.435927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.460426,150.53189,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,6,19,Australia,AU,New South Wales,-31.94825,152.30042,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003990,1,FEMALE,occurrenceRemarks withheld,2023,8,28,Australia,AU,New South Wales,-28.623894,153.008286,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-29.488046,153.092122,EPSG:4326 +HUMAN_OBSERVATION,OLHP24071207,1,MALE,occurrenceRemarks withheld,2024,6,10,Australia,AU,New South Wales,-31.480407,152.913816,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020609,1,,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-34.044516,150.870765,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,12,,Australia,AU,New South Wales,-36.13566,149.311799,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002758,1,,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-29.493136,153.108864,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,26,Australia,AU,New South Wales,-34.441131,150.616268,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-31.455367,152.917631,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,MALE,occurrenceRemarks withheld,2024,8,8,Australia,AU,New South Wales,-34.38806,150.48788,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.421207,150.627398,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.479545,150.533602,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-28.841974,152.825474,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022513,1,,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-32.059349,152.540596,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.454308,150.60686,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.447081,150.513097,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290K,1,,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-31.96562,152.39892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.455043,150.609876,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140O,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-32.759364,152.10331,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.263233,152.758487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.419607,150.632763,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,6,4,Australia,AU,New South Wales,-31.459628,152.928817,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-29.490633,153.108215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.446344,150.516764,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.447608,150.517293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.439378,150.603162,EPSG:4326 +HUMAN_OBSERVATION,OMTU22072801,1,,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-32.329929,152.541704,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.385464,150.626613,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.450598,150.520262,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-31.466484,152.928708,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004130,1,FEMALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.91324,153.268126,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-29.490156,153.107448,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-28.259899,153.40177,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-29.480794,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.420652,150.630862,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,3,1,Australia,AU,New South Wales,-31.914336,152.380483,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.390971,150.627958,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,2,8,Australia,AU,New South Wales,-30.35524,153.034669,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.437652,150.605681,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.447296,150.513047,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-32.75982,152.067456,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-29.490255,153.109986,EPSG:4326 +HUMAN_OBSERVATION,ODMP23033107,1,,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-32.768796,152.113964,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-28.609553,152.788487,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-33.709241,150.785294,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.46488,150.522593,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.446733,150.512846,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-28.383751,153.56206,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,2,18,Australia,AU,New South Wales,-33.847854,150.088095,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-28.238698,153.506293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.471494,150.53041,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-32.197389,152.031643,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.458749,150.532777,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040E,1,,occurrenceRemarks withheld,2023,2,1,Australia,AU,New South Wales,-31.192675,152.970013,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-33.70844,150.78702,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.419667,150.635372,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-33.705953,150.786459,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,27,Australia,AU,New South Wales,-36.01439,149.376021,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-31.636783,152.7152,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.491474,150.63904,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102111,1,,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-32.608963,151.651193,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS;ODFK23090501,1,,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-30.480875,151.427455,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.460254,150.518964,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072601;ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-28.260089,153.401777,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-31.876097,152.390502,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040708,1,MALE,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-32.588266,151.771284,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.386252,150.625873,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.493162,150.639145,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220I,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-32.708918,152.06176,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-29.479038,153.104176,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,7,6,Australia,AU,New South Wales,-29.485767,153.103693,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,2,5,Australia,AU,New South Wales,-31.442598,152.919349,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.548959,150.016942,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.484367,152.782999,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.831137,153.278132,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-31.445308,152.904895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.388253,150.630982,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2023,4,28,Australia,AU,New South Wales,-34.124693,150.812345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.438869,150.518041,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-31.12414,150.011,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.396347,150.644414,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-30.083437,152.175292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.421907,150.639323,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150D,1,,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.029825,151.044713,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-31.101184,152.819826,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.42018,150.634411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.434251,150.616213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.411654,150.596176,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-31.476258,152.91932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.430186,150.610257,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.427212,150.603379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.419985,150.63829,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070706,1,MALE,occurrenceRemarks withheld,2020,5,6,Australia,AU,New South Wales,-28.805638,153.34163,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,4,24,Australia,AU,New South Wales,-36.307015,149.336911,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.446515,150.514996,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.41937,150.635881,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,8,19,Australia,AU,New South Wales,-32.70898,152.064358,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.43466,150.606692,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240E,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-32.709923,152.062125,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.46299,150.519613,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.399283,150.644245,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2020,6,9,Australia,AU,New South Wales,-33.526978,150.658805,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,12,2,Australia,AU,New South Wales,-34.12311,150.97285,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.431231,150.603776,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.450333,150.608247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.460256,150.51904,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.438757,150.604137,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132C,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-34.019374,151.044532,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.440953,150.517228,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-34.018322,150.884147,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-28.864188,153.319111,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.408145,152.216373,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,26,Australia,AU,New South Wales,-31.445289,152.917959,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,3,14,Australia,AU,New South Wales,-36.572615,149.944869,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.456027,150.606702,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,26,Australia,AU,New South Wales,-29.490222,153.109755,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.432214,150.605619,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,FEMALE,occurrenceRemarks withheld,2020,1,29,Australia,AU,New South Wales,-36.157321,149.382114,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.418496,150.633577,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,16,Australia,AU,New South Wales,-31.461813,152.929239,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.437342,150.605516,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-31.63246,152.784826,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.423707,150.637282,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-28.818924,153.278317,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.464301,150.529163,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-32.74329,151.86406,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,25,Australia,AU,New South Wales,-29.485674,153.103723,EPSG:4326 +HUMAN_OBSERVATION,ODFK23083001,1,,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-29.489584,153.110597,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-31.452384,152.881437,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062801,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-31.129495,152.858675,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-32.16053,152.485682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.463009,150.519666,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-29.489381,153.102996,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,29,Australia,AU,New South Wales,-33.706566,150.786253,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-28.601622,153.041838,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-34.029329,150.989361,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.435996,150.517437,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.438186,150.606276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.429346,150.615232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.487651,150.634815,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.950844,153.262256,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004095,1,FEMALE,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-28.825298,153.187773,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.421384,150.626729,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.455913,150.657576,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2024,10,12,Australia,AU,New South Wales,-34.138333,150.790833,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,11,Australia,AU,New South Wales,-29.48558,153.103838,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.439026,150.602661,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.426926,150.604889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.445783,150.517532,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-29.485183,153.103956,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-31.47939,152.9215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.421768,150.639131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.446355,150.51375,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,28,Australia,AU,New South Wales,-33.712279,150.786054,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290Q,1,FEMALE,occurrenceRemarks withheld,2023,12,2,Australia,AU,New South Wales,-31.455103,152.926703,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-31.483097,152.836933,EPSG:4326 +HUMAN_OBSERVATION,OPUR18080101,1,MALE,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.817365,153.317183,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-28.8901,153.321649,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.4541,150.520474,EPSG:4326 +HUMAN_OBSERVATION,OPJG15082102;OPJG18020707,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-30.181345,152.659218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.485234,150.637104,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.427634,150.603313,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.42676,150.603348,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.390789,150.627887,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.49423,150.640749,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,11,29,Australia,AU,New South Wales,-32.733103,152.100691,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-31.445007,152.916547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.446641,150.519824,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-34.447745,150.515167,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-31.27443,152.81903,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-28.658108,153.620069,EPSG:4326 +HUMAN_OBSERVATION,OJJS06031407,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-36.056042,149.282752,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202070P,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-34.2012,150.777889,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003965,1,,occurrenceRemarks withheld,2023,4,26,Australia,AU,New South Wales,-28.637418,153.629802,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,7,6,Australia,AU,New South Wales,-28.398629,153.556223,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,4,27,Australia,AU,New South Wales,-32.653858,151.789154,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2022,10,28,Australia,AU,New South Wales,-34.522986,150.600433,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.455946,150.657412,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-31.453225,152.909306,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,10,Australia,AU,New South Wales,-33.716735,150.784153,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,5,Australia,AU,New South Wales,-29.484903,153.103902,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-34.537087,150.627594,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-32.710463,152.065429,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.46375,150.521963,EPSG:4326 +HUMAN_OBSERVATION,ODFK24051402,1,,occurrenceRemarks withheld,2024,2,4,Australia,AU,New South Wales,-34.42638,150.41864,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.420701,150.609255,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.284238,152.866613,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152F,1,,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-28.637772,153.386733,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-31.12511,150.00185,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.389748,150.627177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.488583,150.637347,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.421226,150.627441,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-31.629799,152.785085,EPSG:4326 +HUMAN_OBSERVATION,OLHP23120100,1,MALE,occurrenceRemarks withheld,2022,10,,Australia,AU,New South Wales,-31.86089,150.22997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.454401,150.606977,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.429988,150.610274,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,20,Australia,AU,New South Wales,-29.489489,153.103924,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-28.817949,153.323245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.389212,150.628812,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-28.258487,153.401827,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-33.706431,150.785495,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.423216,150.605092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.454071,150.520366,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-34.055761,150.836994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.485897,150.638294,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-31.64956,152.825402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.417522,150.633072,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-29.490259,153.108199,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.463535,150.523831,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011001,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.475332,152.897234,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,1,26,Australia,AU,New South Wales,-28.885242,153.378153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.421169,150.630064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.427088,150.604884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.493138,150.640246,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303200E,1,,occurrenceRemarks withheld,2024,3,13,Australia,AU,New South Wales,-32.732169,152.111271,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.450757,150.61569,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.436885,150.603821,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-32.465571,151.806799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.464346,150.52249,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290N,1,,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-31.459686,152.928968,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-33.718605,150.78318,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-29.489914,153.101156,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.39835,150.627238,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.395781,150.641722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.40036,150.639798,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,10,Australia,AU,New South Wales,-28.850613,153.316206,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200J,1,,occurrenceRemarks withheld,2024,4,6,Australia,AU,New South Wales,-31.477106,152.913348,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041307,1,FEMALE,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-34.085646,150.838674,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-31.444008,152.889948,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.453494,150.60857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.449244,150.516156,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-32.738907,152.066821,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004000,1,,occurrenceRemarks withheld,2023,1,17,Australia,AU,New South Wales,-28.820485,153.316082,EPSG:4326 +HUMAN_OBSERVATION,ODMP99082301,1,,occurrenceRemarks withheld,2023,7,11,Australia,AU,New South Wales,-31.593167,152.190117,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.4363,150.615839,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-33.781566,150.072356,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002775,1,,occurrenceRemarks withheld,2023,2,1,Australia,AU,New South Wales,-29.653645,152.829766,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-31.454213,152.925495,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.419751,150.611425,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.447119,150.512758,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-28.555904,153.470997,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260H,1,MALE,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-31.453378,152.909363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.456455,150.605057,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-28.259275,153.370133,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,11,15,Australia,AU,New South Wales,-28.655817,153.109778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.393306,150.640975,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.436085,150.520757,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.433124,150.613895,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-29.485506,153.103538,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004185,1,MALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.678813,153.279539,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-34.437418,150.518933,EPSG:4326 +HUMAN_OBSERVATION,OAQE22060700,1,,occurrenceRemarks withheld,2022,6,1,Australia,AU,New South Wales,-33.81748,151.219427,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-29.48559,153.103468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.437484,150.605425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.392776,150.639239,EPSG:4326 +HUMAN_OBSERVATION,ODMP22111601,1,,occurrenceRemarks withheld,2023,6,25,Australia,AU,New South Wales,-33.492269,149.551369,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2022,2,15,Australia,AU,New South Wales,-34.175806,150.805876,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102211,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-32.707881,152.069137,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-29.479356,153.104063,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-31.47667,152.926247,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,1,Australia,AU,New South Wales,-31.629353,152.785975,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.4354,150.518981,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-29.480554,152.318289,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-31.428673,152.882376,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,2,17,Australia,AU,New South Wales,-31.464749,152.927815,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060500,1,,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-28.837046,153.316211,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-31.453019,152.925868,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.395122,150.62907,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-31.447009,152.921302,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-28.696016,153.571487,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,7,13,Australia,AU,New South Wales,-28.798844,153.256484,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.41839,150.597637,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.398011,150.642812,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-30.8961,153.036423,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-32.735877,152.020331,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130B,1,MALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-30.885713,153.071758,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-28.259128,153.400512,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-28.63729,153.63115,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111309,1,MALE,occurrenceRemarks withheld,2023,12,15,Australia,AU,New South Wales,-32.352926,152.490336,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042C,1,,occurrenceRemarks withheld,2023,1,21,Australia,AU,New South Wales,-31.516414,150.675042,EPSG:4326 +HUMAN_OBSERVATION,ODMP1003011Y,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-31.26929,152.82611,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-32.734228,152.10181,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-29.490156,153.107459,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153I,1,FEMALE,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-29.037002,152.562655,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-29.477277,153.104176,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-36.459771,149.965237,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-33.714179,150.785122,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,7,17,Australia,AU,New South Wales,-33.971509,150.89337,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,7,2,Australia,AU,New South Wales,-30.212216,152.797792,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.389912,150.62541,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.419378,150.635837,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100G,1,,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-31.173216,152.968057,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.454036,150.520433,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-34.077175,150.82926,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.421001,150.630265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.420635,150.627185,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-31.629354,152.786855,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,FEMALE,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-34.109424,150.790608,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040405,1,,occurrenceRemarks withheld,2024,3,15,Australia,AU,New South Wales,-31.46143,152.87476,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-28.654909,153.522225,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071716,1,MALE,occurrenceRemarks withheld,2020,5,14,Australia,AU,New South Wales,-29.653412,152.87158,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.388098,150.632313,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-34.449592,150.613709,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.451546,150.517241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.486096,150.635044,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.485539,150.636083,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,19,Australia,AU,New South Wales,-33.706002,150.78574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.397449,150.627732,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-28.80193,153.427006,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,3,15,Australia,AU,New South Wales,-32.706148,152.063559,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,23,Australia,AU,New South Wales,-31.471501,152.926153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.420967,150.628003,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.420312,150.627271,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-29.490427,153.108178,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140T,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-28.328913,153.496278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435743,150.519929,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.444765,150.515788,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.454117,150.520398,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.446163,150.517608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.455544,150.656193,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.432992,150.611712,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,14,Australia,AU,New South Wales,-31.446109,152.923313,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.434218,150.61728,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.454391,150.605998,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.420652,150.630862,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,FEMALE,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-30.648712,152.965047,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.490222,153.108189,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.549417,152.825169,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032113,1,,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-32.713683,152.184606,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,4,9,Australia,AU,New South Wales,-28.603471,153.094259,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.41839,150.6337,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-31.434721,152.888518,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222L,1,,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-32.708428,152.062966,EPSG:4326 +HUMAN_OBSERVATION,OCEM12101700,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-28.332222,153.562778,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17148,152.90881,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100G,1,,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-31.1828,152.967553,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,9,22,Australia,AU,New South Wales,-31.464162,152.928539,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040300,1,,occurrenceRemarks withheld,2024,3,5,Australia,AU,New South Wales,-28.734681,153.41554,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.484836,152.782987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.424994,150.602017,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,7,20,Australia,AU,New South Wales,-34.013124,150.877346,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.20241,152.667755,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-29.446786,153.077155,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-31.923848,152.38363,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-34.045246,151.009634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.421794,150.636291,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,23,Australia,AU,New South Wales,-34.439894,150.615705,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.067813,150.836213,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2024,2,6,Australia,AU,New South Wales,-31.423039,152.248574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.437966,150.604247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.399863,150.643489,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.485252,150.637104,EPSG:4326 +HUMAN_OBSERVATION,OJJS17072600,1,,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-30.537583,152.645191,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,6,19,Australia,AU,New South Wales,-28.260718,153.403788,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.459282,150.6593,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,14,Australia,AU,New South Wales,-33.714064,150.786073,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.453479,150.520068,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,25,Australia,AU,New South Wales,-29.488051,153.092272,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-28.99283,153.291127,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,1,26,Australia,AU,New South Wales,-32.72208,152.07383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.456568,150.519487,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,12,12,Australia,AU,New South Wales,-30.437703,152.904817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.44021,150.604172,EPSG:4326 +HUMAN_OBSERVATION,OPRS04081700,1,,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-29.4313,153.166559,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,3,Australia,AU,New South Wales,-29.489531,153.1038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.431253,150.60396,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435717,150.52129,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,4,25,Australia,AU,New South Wales,-32.652522,151.787884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420071,150.634338,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.397274,150.645737,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-33.563104,149.551256,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-28.931395,153.318473,EPSG:4326 +HUMAN_OBSERVATION,OVGI98110201,1,,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-30.477815,151.73973,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.47229,150.529679,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,1,Australia,AU,New South Wales,-31.459265,152.924994,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022608,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-32.5154,151.68364,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121501,1,,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-31.151223,152.788405,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.442204,152.90196,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190R,1,,occurrenceRemarks withheld,2022,3,7,Australia,AU,New South Wales,-32.7608,152.094433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.388071,150.630922,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,9,Australia,AU,New South Wales,-31.452542,152.91383,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.443558,152.898305,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-33.707915,150.785478,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-33.527127,150.659645,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-30.8961,153.036423,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2021,2,8,Australia,AU,New South Wales,-34.101248,150.821878,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-33.717253,150.784226,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,4,29,Australia,AU,New South Wales,-31.447463,152.925776,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-34.12523,150.775981,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.135908,150.796862,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.397776,150.640002,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-28.68664,153.607877,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-31.924268,152.352747,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-28.814661,153.32762,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.493251,150.639099,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.384491,150.622508,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-34.028881,150.989152,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-31.572611,152.818111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.418235,150.597521,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.465075,150.522403,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-28.683671,153.403424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419504,150.635801,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082307,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-34.246745,150.766463,EPSG:4326 +HUMAN_OBSERVATION,SCHM-035,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-34.366275,150.691442,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419125,150.610279,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270U,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-31.163733,152.870423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.395934,150.629134,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.393232,150.64325,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,11,24,Australia,AU,New South Wales,-31.464025,152.87194,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,7,29,Australia,AU,New South Wales,-33.77543,150.059244,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,26,Australia,AU,New South Wales,-29.482171,153.10423,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,2,3,Australia,AU,New South Wales,-29.485001,153.103851,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.386596,150.627364,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-31.442886,152.90077,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.421001,150.630254,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260C,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-32.710803,152.060997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.445816,150.514723,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.45019,150.516161,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-31.940952,152.398988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.421776,150.636303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.454759,150.662767,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419897,150.610126,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-28.814137,153.334393,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,8,27,Australia,AU,New South Wales,-31.633263,152.785319,EPSG:4326 +HUMAN_OBSERVATION,OJJS19061100,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-32.314506,151.777049,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-31.921832,152.379054,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.452262,150.522749,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-34.139662,150.81321,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-28.685121,153.521255,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-33.717369,150.78418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.471088,150.529954,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140M,1,,occurrenceRemarks withheld,2021,12,2,Australia,AU,New South Wales,-29.029983,153.373712,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436263,150.615786,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150O,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-28.817396,153.303468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.471375,150.529009,EPSG:4326 +HUMAN_OBSERVATION,OPJG15082102,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-29.238849,152.972324,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,4,17,Australia,AU,New South Wales,-29.489573,153.103838,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.452483,150.522982,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.447348,150.518726,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-31.457714,152.909493,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.433307,150.615848,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-30.423849,152.934932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.470947,150.531024,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.820682,153.296079,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,1,Australia,AU,New South Wales,-28.686235,153.496691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.423778,150.637236,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-28.985675,153.433788,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-28.663144,153.614926,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080302,1,,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-31.940053,152.478425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.447098,150.513075,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418762,150.609255,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-29.490152,153.110533,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-31.584987,152.834899,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-29.478898,153.104149,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.929063,153.317852,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.467353,150.522738,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-29.365098,152.721403,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.453618,150.517583,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-28.687767,153.607389,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.388108,150.624439,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-34.197984,150.789371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.462698,150.52391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.441407,150.517792,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,26,Australia,AU,New South Wales,-32.706589,152.063784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.439391,150.603804,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.438969,150.60436,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.45137,150.518313,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-29.490609,153.109294,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23040505,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-32.403341,149.760909,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031524,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-28.820795,153.296846,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-30.169833,152.819471,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.399144,150.639844,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052017,1,,occurrenceRemarks withheld,2022,10,28,Australia,AU,New South Wales,-31.210101,152.83272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.45549,150.606435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.465617,150.521559,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-31.914637,152.386288,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-31.653461,152.79663,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.465725,150.52025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.427261,150.60403,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-31.470209,152.911617,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.448957,150.516241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419656,150.611623,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003956,1,,occurrenceRemarks withheld,2023,4,19,Australia,AU,New South Wales,-28.824231,153.303075,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070709,1,,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-29.300857,150.011629,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.431867,150.613691,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-33.704003,150.786353,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,26,Australia,AU,New South Wales,-28.884607,153.371143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.46603,150.523256,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,5,26,Australia,AU,New South Wales,-33.772343,150.064348,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-31.921066,152.371996,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-31.439111,152.910459,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.389787,150.625012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.436515,150.607966,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.436057,150.616347,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-32.709738,152.06473,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,4,10,Australia,AU,New South Wales,-31.913202,152.374047,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.723183,153.598349,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.392891,150.645207,EPSG:4326 +HUMAN_OBSERVATION,ODMP22100604,1,,occurrenceRemarks withheld,2022,9,18,Australia,AU,New South Wales,-32.183,152.104582,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003814,1,FEMALE,occurrenceRemarks withheld,2023,4,11,Australia,AU,New South Wales,-28.924837,153.15908,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-30.11224,152.133659,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.483871,150.567012,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-31.924317,152.382663,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180O,1,,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-28.845128,153.320399,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-29.746346,151.075072,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002557,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-29.097349,153.396418,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-28.943992,153.230493,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-33.719265,150.222847,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.419124,150.610246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.387104,150.626588,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900;OPUR19080900;OMRF21071000,1,,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.086979,150.975593,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-30.452702,152.888659,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,22,Australia,AU,New South Wales,-29.4899,153.101145,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,10,12,Australia,AU,New South Wales,-31.445395,152.879652,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,10,Australia,AU,New South Wales,-31.449087,152.914901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.389779,150.62598,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220B,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-32.744762,152.166503,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-31.574115,152.592108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.397917,150.622106,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,FEMALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-34.074675,150.838296,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.464605,150.521916,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021507,1,,occurrenceRemarks withheld,2020,6,7,Australia,AU,New South Wales,-30.887664,153.071318,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-34.189762,150.722727,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-31.447814,152.897501,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-36.653563,149.947895,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-30.174476,152.655098,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021512,1,,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-31.478301,152.915779,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,24,Australia,AU,New South Wales,-29.478627,153.104176,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.477394,150.532413,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,2,Australia,AU,New South Wales,-29.48877,153.094037,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,3,4,Australia,AU,New South Wales,-31.47739,152.913159,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-31.910186,152.409406,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,10,Australia,AU,New South Wales,-31.225485,152.382538,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,25,Australia,AU,New South Wales,-31.44729,152.89393,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,7,16,Australia,AU,New South Wales,-31.910186,152.409406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.446022,150.514249,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,5,21,Australia,AU,New South Wales,-31.631664,152.786071,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290D,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-32.626972,150.046861,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,29,Australia,AU,New South Wales,-28.825963,153.325951,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,7,Australia,AU,New South Wales,-29.489601,153.103951,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072703;OLHP23072704,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.594568,152.190904,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,3,10,Australia,AU,New South Wales,-28.672208,153.415262,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.436533,150.607944,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,3,18,Australia,AU,New South Wales,-32.7672,152.020961,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-34.031189,151.027556,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,7,Australia,AU,New South Wales,-33.718725,150.784958,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070707,1,,occurrenceRemarks withheld,2020,3,3,Australia,AU,New South Wales,-28.690653,153.516583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.435893,150.616275,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,12,17,Australia,AU,New South Wales,-31.87656,152.387172,EPSG:4326 +HUMAN_OBSERVATION,OPJG1703020A,1,,occurrenceRemarks withheld,2023,1,25,Australia,AU,New South Wales,-37.366721,149.649253,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-31.643042,152.793312,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-28.993709,153.438811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.429097,150.616316,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.445656,150.5166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.434171,150.615802,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100206,1,,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-28.35802,153.554787,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.426385,150.604447,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040422,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-31.47032,151.155463,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-34.185914,150.790837,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.397603,150.640333,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,25,Australia,AU,New South Wales,-33.716301,150.784625,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290S,1,,occurrenceRemarks withheld,2023,12,27,Australia,AU,New South Wales,-31.47324,152.92546,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-30.271084,153.079899,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,8,Australia,AU,New South Wales,-29.490194,153.110522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.436537,150.602645,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.447135,150.513106,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-28.656503,153.616359,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004237,1,FEMALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.933174,153.278713,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.098164,150.808227,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-36.459771,149.965237,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-31.456454,152.921257,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,2,24,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.452328,150.522899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.465278,150.52219,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.233788,152.201795,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-30.257728,153.12941,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.451556,150.517263,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190N,1,,occurrenceRemarks withheld,2023,1,23,Australia,AU,New South Wales,-31.447505,152.892374,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.285084,152.873378,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,12,17,Australia,AU,New South Wales,-32.706607,152.063741,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-31.128598,152.79769,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-36.459771,149.965237,EPSG:4326 +HUMAN_OBSERVATION,OPJG22022105,1,,occurrenceRemarks withheld,2024,4,11,Australia,AU,New South Wales,-31.449245,151.404353,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.394269,150.629714,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.425277,150.602629,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.446179,150.517498,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,4,9,Australia,AU,New South Wales,-31.631353,152.772987,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,2,Australia,AU,New South Wales,-31.454082,152.924785,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-36.590676,149.945176,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-32.722477,152.07727,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-32.682711,151.650528,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,5,Australia,AU,New South Wales,-28.874343,153.200436,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.434309,150.616375,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072705,1,,occurrenceRemarks withheld,2023,2,27,Australia,AU,New South Wales,-28.556385,153.388588,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.453514,150.518217,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260R,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-34.109266,150.806817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.391025,150.645216,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.464485,150.523106,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060O,1,,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-31.471952,152.906016,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004096,1,MALE,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-28.705862,153.190863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.389371,150.629591,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.45831,150.526216,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003899,1,MALE,occurrenceRemarks withheld,2023,1,21,Australia,AU,New South Wales,-28.888717,153.299324,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,,occurrenceRemarks withheld,2023,3,9,Australia,AU,New South Wales,-28.960305,153.393908,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100515,1,,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-31.468923,152.900157,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030U,1,,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-34.057821,150.875431,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-29.48212,153.104176,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,1,19,Australia,AU,New South Wales,-29.492781,153.109599,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.45754,150.658739,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-30.339125,152.620978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.428086,150.60059,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,4,22,Australia,AU,New South Wales,-36.067862,149.265895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.445808,150.513015,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-36.48252,149.964283,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.445837,150.514004,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2021,1,24,Australia,AU,New South Wales,-29.346563,152.944433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.45841,150.661806,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.454139,150.516631,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-33.147056,151.07685,EPSG:4326 +HUMAN_OBSERVATION,OLHP23082410,1,,occurrenceRemarks withheld,2021,1,21,Australia,AU,New South Wales,-32.666409,152.177949,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-31.44469,152.908156,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-28.872044,153.401468,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,8,7,Australia,AU,New South Wales,-31.634218,152.833041,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.420587,150.628405,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.421775,150.636248,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-28.615302,152.102532,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-28.942372,153.310754,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-30.188975,152.778695,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2024,1,13,Australia,AU,New South Wales,-33.691976,149.559709,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130C,1,,occurrenceRemarks withheld,2020,8,1,Australia,AU,New South Wales,-34.063193,150.849458,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,21,Australia,AU,New South Wales,-28.827945,153.317534,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.42699,150.60493,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.792171,152.428165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.457805,150.528027,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,25,Australia,AU,New South Wales,-35.065122,150.129471,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.441588,150.517395,EPSG:4326 +HUMAN_OBSERVATION,OPJG19043000,1,,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-30.4283,152.97348,EPSG:4326 +HUMAN_OBSERVATION,OJJS20080303,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-32.397042,151.740306,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-30.386962,153.000754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.466377,150.519948,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-31.459167,152.928887,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2024,2,22,Australia,AU,New South Wales,-31.443426,152.892084,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.41846,150.633546,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102505,1,,occurrenceRemarks withheld,2024,9,15,Australia,AU,New South Wales,-28.637406,153.629237,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,MALE,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-28.963784,153.402846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.48786,150.637248,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,4,Australia,AU,New South Wales,-28.597841,153.08973,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2024,1,5,Australia,AU,New South Wales,-33.526857,150.658674,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.460589,149.910112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.463166,150.532756,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.437955,150.61613,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.455601,150.608412,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.417622,150.633134,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.420271,150.635388,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.437711,150.616115,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031407,1,,occurrenceRemarks withheld,2024,3,5,Australia,AU,New South Wales,-33.479658,150.704764,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-33.717759,150.784203,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,10,Australia,AU,New South Wales,-31.458611,152.91428,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-36.635401,149.953129,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.429913,150.599516,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,12,16,Australia,AU,New South Wales,-32.475211,149.729928,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-30.053999,152.247202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.463138,150.53587,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003914,1,MALE,occurrenceRemarks withheld,2023,5,23,Australia,AU,New South Wales,-28.971537,153.285038,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-36.01979,149.367548,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-31.486569,152.772634,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-31.445045,152.15231,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2022,7,7,Australia,AU,Victoria,-38.278043,142.625011,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,21,Australia,AU,New South Wales,-31.473967,152.89975,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-28.814261,153.331914,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-36.459771,149.965237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.45512,150.65947,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,9,17,Australia,AU,New South Wales,-31.474015,152.921957,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.417675,150.602999,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150P,1,MALE,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-35.958656,149.172153,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-28.874832,153.437028,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,27,Australia,AU,New South Wales,-28.9982,153.301536,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,23,Australia,AU,New South Wales,-33.705197,150.785167,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-31.932287,152.413017,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,4,24,Australia,AU,New South Wales,-36.330698,149.325489,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.48561,150.637888,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222G,1,,occurrenceRemarks withheld,2022,4,13,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-31.474171,152.900238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.435528,150.615589,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181H,1,,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-28.724964,153.410239,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-31.81832,152.439172,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-29.070701,153.141493,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-31.449466,152.816526,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.469351,150.527447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435348,150.615116,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.422991,150.63852,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004001,1,,occurrenceRemarks withheld,2023,3,14,Australia,AU,New South Wales,-28.675791,153.60798,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-32.71049,152.065365,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.084622,150.978275,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,FEMALE,occurrenceRemarks withheld,2023,7,8,Australia,AU,New South Wales,-31.914313,152.373466,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-29.489942,153.110517,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-28.993218,153.43729,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.434836,150.615217,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.739184,152.061473,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.446399,150.51414,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152J,1,,occurrenceRemarks withheld,2022,7,24,Australia,AU,New South Wales,-28.815073,153.335199,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,11,14,Australia,AU,New South Wales,-31.444867,152.912435,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2021,12,3,Australia,AU,New South Wales,-32.731099,152.131065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.420965,150.630266,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150H,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.222164,152.728427,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-33.714304,150.784993,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,8,9,Australia,AU,New South Wales,-31.461292,152.896466,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260Q,1,,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-31.467406,152.914487,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-31.436771,152.905614,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.473111,150.532365,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.387752,150.626048,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-29.490119,153.107454,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,27,Australia,AU,New South Wales,-28.9982,153.301536,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.4295,150.614368,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,9,5,Australia,AU,New South Wales,-29.489662,153.104997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.384508,150.622442,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.419975,150.638246,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052701,1,,occurrenceRemarks withheld,2024,3,20,Australia,AU,New South Wales,-32.767366,152.11039,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-31.452385,152.925978,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-30.421604,153.006466,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,4,Australia,AU,New South Wales,-31.441314,152.90294,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.433142,150.60741,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,2,20,Australia,AU,New South Wales,-29.667284,152.867589,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-28.664276,153.451135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.439441,150.519123,EPSG:4326 +HUMAN_OBSERVATION,ODFK23083001,1,FEMALE,occurrenceRemarks withheld,2023,1,9,Australia,AU,New South Wales,-29.491854,153.109261,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210P,1,,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-32.718829,152.119993,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-28.397354,153.557046,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,FEMALE,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-28.849906,153.315879,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,4,26,Australia,AU,New South Wales,-31.444681,152.91657,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-28.689615,153.60947,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-32.590076,151.775575,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-33.716916,150.78515,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070B,1,,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-32.768798,152.036618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.42378,150.637345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.448751,150.515866,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-29.479813,153.104176,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-30.331498,153.067614,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101W,1,,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-33.488559,149.546776,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-29.489587,153.103881,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-34.139613,150.778378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.420652,150.630819,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403060C,1,,occurrenceRemarks withheld,2024,2,18,Australia,AU,New South Wales,-31.463686,152.921716,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419414,150.635836,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031407,1,MALE,occurrenceRemarks withheld,2021,10,24,Australia,AU,New South Wales,-33.479658,150.704764,EPSG:4326 +HUMAN_OBSERVATION,OPJG22120100,1,,occurrenceRemarks withheld,2024,4,19,Australia,AU,New South Wales,-31.568896,152.747238,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031407,1,,occurrenceRemarks withheld,2023,2,18,Australia,AU,New South Wales,-33.479658,150.704764,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.443828,150.51451,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,10,Australia,AU,New South Wales,-29.485099,153.104058,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-29.030627,153.14077,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004125,1,FEMALE,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-28.844077,153.302891,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.395107,150.629244,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.086596,150.976896,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003945,1,,occurrenceRemarks withheld,2023,4,5,Australia,AU,New South Wales,-28.399393,153.555947,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-28.959014,153.394052,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040A,1,,occurrenceRemarks withheld,2024,3,17,Australia,AU,New South Wales,-31.439548,152.924725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.451507,150.518407,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-30.456182,152.712042,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.3858,150.627223,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.588285,149.913134,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,25,Australia,AU,New South Wales,-29.49046,153.109379,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,5,9,Australia,AU,New South Wales,-29.489904,153.103355,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.479679,150.533064,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,1,9,Australia,AU,New South Wales,-29.485048,153.104058,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,3,12,Australia,AU,New South Wales,-31.919529,152.370545,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090804,1,,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-31.008933,150.256079,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-34.746596,146.547073,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-28.395201,153.563801,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100X,1,,occurrenceRemarks withheld,2023,11,17,Australia,AU,New South Wales,-31.454012,152.925144,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102502,1,MALE,occurrenceRemarks withheld,2024,9,16,Australia,AU,New South Wales,-33.492358,149.551708,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-31.916023,152.374256,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.449951,150.615462,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.466021,150.523256,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-31.823416,152.443051,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.435839,150.616255,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-34.44005,150.615352,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.469445,150.527204,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022410,1,,occurrenceRemarks withheld,2023,2,11,Australia,AU,New South Wales,-32.724731,152.076605,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-33.713391,150.784731,EPSG:4326 +HUMAN_OBSERVATION,OJBL99022300,1,FEMALE,occurrenceRemarks withheld,2024,8,19,Australia,AU,New South Wales,-32.586245,151.92539,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,MALE,occurrenceRemarks withheld,2021,12,11,Australia,AU,New South Wales,-33.497426,149.322263,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150V,1,,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-33.589049,150.645521,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.450964,150.518314,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-29.489923,153.101306,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040Z,1,,occurrenceRemarks withheld,2022,9,4,Australia,AU,New South Wales,-34.124693,150.812345,EPSG:4326 +HUMAN_OBSERVATION,OASD12103100,1,,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-32.838109,151.574475,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,4,Australia,AU,New South Wales,-31.453488,152.925188,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.451988,150.517239,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OPJG1703020A;OPJG22081705,1,,occurrenceRemarks withheld,2024,6,20,Australia,AU,New South Wales,-37.301692,149.540998,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042602,1,,occurrenceRemarks withheld,2024,3,27,Australia,AU,New South Wales,-31.906075,152.398389,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003970,1,,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-28.702654,153.480602,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,3,21,Australia,AU,New South Wales,-31.475595,152.922989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.421175,150.627137,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-28.557038,153.472525,EPSG:4326 +HUMAN_OBSERVATION,ODMP06091900,1,,occurrenceRemarks withheld,2024,9,1,Australia,AU,New South Wales,-31.450474,152.916585,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.134377,150.841456,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-34.025794,150.990368,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.182078,153.003025,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.200967,152.965822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.437807,150.606722,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-31.46705,152.91454,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-31.445923,152.920964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.450877,150.515792,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004105,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.637548,153.629659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.418316,150.632647,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.535992,150.559732,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-29.489596,153.103908,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2023,4,26,Australia,AU,New South Wales,-31.916151,152.374234,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070O,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-34.05547,151.001829,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.424622,150.602811,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2021,3,,Australia,AU,New South Wales,-28.982871,153.44088,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-29.634217,150.709614,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-29.662073,152.878559,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.389595,150.62717,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,4,16,Australia,AU,New South Wales,-34.049743,150.993848,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.42094,150.630353,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-30.480298,152.682486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.486303,150.63506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.429703,150.614134,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.465822,150.522337,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110K,1,,occurrenceRemarks withheld,2023,7,25,Australia,AU,New South Wales,-31.470015,152.92333,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,9,9,Australia,AU,New South Wales,-31.492172,152.761695,EPSG:4326 +HUMAN_OBSERVATION,Obs_0165,1,,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-32.322262,149.936226,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.452048,150.524638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.455018,150.609942,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,4,24,Australia,AU,New South Wales,-31.915303,152.374205,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.960091,153.394592,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,30,Australia,AU,New South Wales,-28.774274,153.283518,EPSG:4326 +HUMAN_OBSERVATION,ODMP21060800,1,FEMALE,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-29.734477,152.930119,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.394225,150.644223,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-31.430976,152.894407,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,25,Australia,AU,New South Wales,-35.066677,150.126517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.464936,150.521351,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.437903,150.517939,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-34.446311,150.513827,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,2,,occurrenceRemarks withheld,2023,12,4,Australia,AU,New South Wales,-29.047548,153.395108,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.636692,152.787664,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004033,1,,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-29.095634,153.396431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.448643,150.516326,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,3,29,Australia,AU,New South Wales,-28.827302,153.315556,EPSG:4326 +HUMAN_OBSERVATION,ODMP10100606,1,,occurrenceRemarks withheld,2023,6,26,Australia,AU,New South Wales,-30.353831,153.091698,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,31,Australia,AU,New South Wales,-28.855518,153.313361,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-31.56309,152.822669,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-880,1,,occurrenceRemarks withheld,2021,1,,Australia,AU,New South Wales,-30.297938,153.120998,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.394695,150.642916,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150U,1,,occurrenceRemarks withheld,2024,2,4,Australia,AU,New South Wales,-32.696024,150.003869,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062903,1,,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-32.662351,151.717837,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.385744,150.622973,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,4,28,Australia,AU,New South Wales,-31.439114,152.916581,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,5,8,Australia,AU,New South Wales,-29.517807,150.997525,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-29.490222,153.107969,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.417398,150.601298,EPSG:4326 +HUMAN_OBSERVATION,OLHP24013001,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.44548,152.89453,EPSG:4326 +HUMAN_OBSERVATION,OJJS19122309,1,MALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-29.689675,152.872851,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.200967,152.965822,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032004,1,,occurrenceRemarks withheld,2022,10,1,Australia,AU,New South Wales,-32.719138,152.136691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.465943,150.522083,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,22,Australia,AU,New South Wales,-31.448729,152.879472,EPSG:4326 +HUMAN_OBSERVATION,OJKB22082201,1,,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-31.546836,152.841739,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.438779,150.603397,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-31.466051,152.905097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.426319,150.605211,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103000,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-32.722004,152.077686,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.818109,153.288957,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-28.252332,153.375095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.459219,150.523468,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-31.139874,152.976748,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,FEMALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-32.738356,152.092424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.423762,150.637346,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-28.68189,153.302976,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2024,5,23,Australia,AU,New South Wales,-33.127446,151.243253,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,4,25,Australia,AU,New South Wales,-28.892998,153.265614,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.438564,150.518997,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080903,1,,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.631109,152.780737,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-31.454545,152.728124,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.388416,150.631499,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180D,1,,occurrenceRemarks withheld,2022,7,7,Australia,AU,New South Wales,-28.864601,153.29339,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090M,1,,occurrenceRemarks withheld,2024,6,4,Australia,AU,New South Wales,-31.444823,152.916581,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.474832,150.556772,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032804,1,,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-31.472086,152.834928,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.419854,150.638043,EPSG:4326 +HUMAN_OBSERVATION,OIXR1511120C,1,,occurrenceRemarks withheld,2022,12,22,Australia,AU,New South Wales,-28.970108,153.284,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.463362,150.534883,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,28,Australia,AU,New South Wales,-28.662723,153.607178,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022504,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-32.728099,152.089552,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.429677,150.606812,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.425964,150.602294,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-31.641807,152.793049,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,FEMALE,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-29.034894,153.395101,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-29.488863,153.093699,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.395051,150.630529,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.436833,150.619143,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-28.388785,153.565144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.427594,150.603999,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290O,1,,occurrenceRemarks withheld,2023,12,20,Australia,AU,New South Wales,-32.499604,151.689145,EPSG:4326 +HUMAN_OBSERVATION,OPJL98052800,1,,occurrenceRemarks withheld,2022,5,26,Australia,AU,New South Wales,-31.444171,151.478898,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,6,6,Australia,AU,New South Wales,-28.558093,153.428133,EPSG:4326 +HUMAN_OBSERVATION,OICG23062200,1,,occurrenceRemarks withheld,2023,7,3,Australia,AU,New South Wales,-29.545672,150.564402,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-31.914527,152.378502,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,12,Australia,AU,New South Wales,-29.480887,153.104133,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,1,Australia,AU,New South Wales,-28.786751,153.383849,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.438632,150.515698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.444737,150.515778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.430712,150.611309,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220O,1,,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-32.707881,152.069137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.399184,150.639614,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900;OPUR19080901;OMRF21071000,1,,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.086919,150.995496,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.429543,150.614225,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,MALE,occurrenceRemarks withheld,2022,2,22,Australia,AU,New South Wales,-33.12666,151.168349,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-28.885388,153.314,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.393726,150.644542,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210F,1,,occurrenceRemarks withheld,2022,1,20,Australia,AU,New South Wales,-28.275426,153.393381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419683,150.635252,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.805797,153.342482,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-32.727247,152.079387,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,9,5,Australia,AU,New South Wales,-28.625862,153.472894,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022605,1,,occurrenceRemarks withheld,2020,2,5,Australia,AU,New South Wales,-31.205821,151.886858,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,6,10,Australia,AU,New South Wales,-30.506035,152.919629,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022516,1,,occurrenceRemarks withheld,2021,1,22,Australia,AU,New South Wales,-32.738125,152.040663,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,2,22,Australia,AU,New South Wales,-28.851397,153.314238,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-31.446761,152.920332,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.735072,152.041302,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-34.398883,150.641287,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200O,1,,occurrenceRemarks withheld,2024,4,13,Australia,AU,New South Wales,-31.312682,152.708098,EPSG:4326 +HUMAN_OBSERVATION,OJJS20110901;OJJS20110902,1,,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-30.648678,152.958028,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,8,8,Australia,AU,New South Wales,-31.460633,152.922915,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-31.439303,152.88604,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.389204,153.561166,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,FEMALE,occurrenceRemarks withheld,2024,9,11,Australia,AU,New South Wales,-36.17839,149.28521,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-29.487742,153.091543,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,20,Australia,AU,New South Wales,-32.177989,152.084305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.426964,150.605007,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.421777,150.639109,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.467152,150.520371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.448154,150.519333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.434363,150.615481,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.393412,150.641375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.429512,150.614487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.450581,150.515888,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.419479,150.633104,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-34.447328,150.514613,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.466132,150.521207,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.466539,150.521238,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-28.960219,153.39864,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022608,1,,occurrenceRemarks withheld,2020,2,13,Australia,AU,New South Wales,-32.515445,151.683858,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.446284,150.513806,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-33.706316,150.786379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.454463,150.658106,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004025,1,,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-28.995147,153.300789,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.493072,150.639159,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181I,1,,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-28.626573,153.008877,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.433081,150.613983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.389353,150.629591,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-34.443023,150.602818,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004245,1,,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-28.618208,153.508229,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-28.627538,153.424955,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,17,Australia,AU,New South Wales,-31.459632,152.929616,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.477951,150.532756,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,10,22,Australia,AU,New South Wales,-29.630967,152.899936,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.59482,149.956941,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-29.489573,153.103892,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,11,17,Australia,AU,New South Wales,-31.469079,152.919691,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402130B,1,,occurrenceRemarks withheld,2024,1,8,Australia,AU,New South Wales,-30.90106,153.026355,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.435447,150.615113,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.439072,150.602692,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-31.459173,152.924957,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,MALE,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-32.734873,151.937485,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004262,1,FEMALE,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-28.657342,153.333126,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111311,1,MALE,occurrenceRemarks withheld,2024,9,24,Australia,AU,New South Wales,-30.406006,152.941256,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100H,1,FEMALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-34.070351,151.003078,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.447441,150.517058,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211S,1,,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-32.71154,152.06619,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-28.663467,153.115787,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-28.289478,153.398048,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.456675,150.521879,EPSG:4326 +HUMAN_OBSERVATION,OPJG1703020A;OPJG22081705,1,,occurrenceRemarks withheld,2024,6,20,Australia,AU,New South Wales,-37.301986,149.54112,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.060429,150.886444,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130E,1,,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-31.097275,152.790104,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,7,2,Australia,AU,New South Wales,-30.211999,152.797907,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-34.124127,150.793777,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,3,12,Australia,AU,New South Wales,-31.464877,152.920937,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-28.864016,153.292716,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.491673,150.639057,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-29.053851,153.311084,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.460844,150.524933,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-29.488298,153.092648,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-31.85809,152.355785,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,,occurrenceRemarks withheld,2021,12,13,Australia,AU,New South Wales,-28.588621,153.549488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.485553,150.636366,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,30,Australia,AU,New South Wales,-28.994679,153.307622,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-28.861577,153.464244,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-34.131671,150.814622,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.392884,150.632678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.489506,150.638454,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-29.478006,153.104037,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-28.826754,153.218628,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140C,1,,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-28.736781,152.944451,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-28.873275,153.418019,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,2,17,Australia,AU,New South Wales,-28.885461,153.194715,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,15,Australia,AU,New South Wales,-32.353914,152.487147,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,MALE,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-29.685835,152.87264,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.46576,150.521533,EPSG:4326 +HUMAN_OBSERVATION,ODMP07011002,1,,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-31.116674,152.867939,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-33.526795,150.658671,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-28.393549,153.557066,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-29.484236,153.104074,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.452773,150.51727,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.420662,150.627185,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-34.440704,150.615616,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,21,Australia,AU,New South Wales,-34.024321,151.042791,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-34.463528,150.438099,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-31.459167,152.928887,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-31.932247,152.413695,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.458373,150.525333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.452551,150.519628,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-28.590321,153.451604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.453423,150.522181,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.447207,150.519764,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-34.265974,150.685616,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150Z,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-28.639415,153.629029,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,,occurrenceRemarks withheld,2023,4,1,Australia,AU,New South Wales,-28.959793,153.394112,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-31.431245,152.910758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.45409,150.520431,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,5,4,Australia,AU,New South Wales,-29.489872,153.103366,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,2,1,Australia,AU,New South Wales,-28.944726,153.276388,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.491295,150.639133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.423932,150.593823,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.488695,150.634263,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.390964,150.628067,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,10,13,Australia,AU,New South Wales,-29.490222,153.108172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.471495,150.530475,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-32.349456,151.811161,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211U,1,,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-32.739909,152.084116,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.45662,150.519377,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.420771,150.609187,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210D,1,,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-32.764938,152.035758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.421233,150.627321,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,23,Australia,AU,New South Wales,-33.717099,150.784542,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-32.142993,151.897341,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.763675,152.574425,EPSG:4326 +HUMAN_OBSERVATION,OPUR21111600,1,,occurrenceRemarks withheld,2023,12,17,Australia,AU,New South Wales,-31.681695,152.090768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.488628,150.637346,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180L,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-28.677125,153.492426,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.361977,152.80272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.399574,150.616926,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,1,22,Australia,AU,New South Wales,-34.125502,150.974625,EPSG:4326 +HUMAN_OBSERVATION,OEMM0911130Y,1,MALE,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-37.177314,149.355934,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210S,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-32.732607,152.105459,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070800;OPUR21080903,1,,occurrenceRemarks withheld,2020,2,14,Australia,AU,New South Wales,-31.446555,152.85722,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100H,1,,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-32.548688,151.645882,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.445809,150.513951,EPSG:4326 +HUMAN_OBSERVATION,OJJS06031407;OPXC15062300,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-31.317656,152.586472,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,4,29,Australia,AU,New South Wales,-32.706338,152.063422,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-28.677151,153.607267,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-31.444891,152.916386,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435818,150.520035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.389136,150.628651,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-28.672232,153.415221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.465834,150.522478,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,11,Australia,AU,New South Wales,-33.716898,150.785201,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.922893,152.371019,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.420279,150.627391,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102108,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-32.728518,152.085488,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-28.555867,153.543661,EPSG:4326 +HUMAN_OBSERVATION,OICG17030600,1,,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-28.390131,153.556967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.434914,150.616913,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,MALE,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-34.15023,150.822801,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.445783,150.517532,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-31.460634,152.922675,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.395164,150.630798,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,24,Australia,AU,New South Wales,-31.632313,152.785398,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.054474,150.842815,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.386286,150.625774,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,8,Australia,AU,New South Wales,-29.485482,153.103849,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-33.706031,150.786167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.446427,150.519961,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.420533,150.627961,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.455325,150.519513,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-36.436474,149.984112,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-31.462223,152.870673,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-31.640939,152.793401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.458881,150.655795,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-31.448539,152.893853,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.396438,150.627216,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270T,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-31.156809,152.898402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.446537,150.514299,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.447096,150.518723,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,21,Australia,AU,New South Wales,-31.913783,152.401173,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,12,11,Australia,AU,New South Wales,-32.710658,152.064274,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-29.74027,151.058595,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-31.489078,152.786302,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,17,Australia,AU,New South Wales,-28.869268,153.414272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.449012,150.608045,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435985,150.615892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.465745,150.520326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.465816,150.521586,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151N,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-28.607652,153.546274,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-28.334542,152.540835,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-29.478104,153.104171,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-29.490633,153.108178,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021507,1,,occurrenceRemarks withheld,2024,6,20,Australia,AU,New South Wales,-30.887327,153.071819,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,3,Australia,AU,New South Wales,-31.46707,152.910397,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.388477,150.630932,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-29.667322,152.867889,EPSG:4326 +HUMAN_OBSERVATION,OJJS17032800,1,,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-30.414646,150.259326,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2024,4,4,Australia,AU,New South Wales,-31.921596,152.372334,EPSG:4326 +HUMAN_OBSERVATION,OJJS2006300F,1,FEMALE,occurrenceRemarks withheld,2020,5,1,Australia,AU,New South Wales,-29.679624,152.869955,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-29.490105,153.10115,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-29.488443,153.094686,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122102,1,,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-31.87515,152.367718,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,11,Australia,AU,New South Wales,-31.463165,152.927012,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-29.489596,153.103902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.418517,150.632772,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,2,3,Australia,AU,New South Wales,-31.918664,152.379214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.445977,150.513369,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004221,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-28.826573,153.315755,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.429433,150.616481,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.418923,150.632815,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,12,28,Australia,AU,New South Wales,-34.094098,150.978942,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.471511,150.530398,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-34.447793,150.513108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.450794,150.515686,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-29.485333,153.104069,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2022,8,23,Australia,AU,New South Wales,-34.407116,150.531589,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.473198,150.531339,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.420552,150.637294,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003948,1,MALE,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-28.675667,153.279507,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-28.764551,153.073278,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.298805,149.32363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.396985,150.640111,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021803,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-29.03349,150.325382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.391557,150.645233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.437889,150.604434,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-28.850926,153.314439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.488021,150.636688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.420869,150.630388,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,2,3,Australia,AU,New South Wales,-31.487467,152.912457,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.422219,150.637269,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.426136,150.602311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.446791,150.520571,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-36.579011,150.036879,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.45409,150.520431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.393359,150.641387,EPSG:4326 +HUMAN_OBSERVATION,OPUR15021900,1,,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-30.032042,151.887619,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-31.139874,152.976748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.433107,150.613906,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-29.577973,152.786222,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.438023,150.60529,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.650375,152.817791,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418238,150.635608,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181O,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-28.54496,153.355915,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-31.641257,152.793752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.466178,150.522991,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.831273,153.279743,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,4,5,Australia,AU,New South Wales,-29.040719,152.935177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.469274,150.516542,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-31.529078,152.824887,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,25,Australia,AU,New South Wales,-29.490287,153.108113,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.396294,150.642131,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,13,Australia,AU,New South Wales,-29.489722,153.101274,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.44698,150.516571,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.395695,150.642855,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-29.485165,153.10401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.399881,150.617406,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-31.300188,152.820061,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.425644,150.602031,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,1,4,Australia,AU,New South Wales,-34.025301,150.986501,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-28.324552,152.499903,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,12,3,Australia,AU,New South Wales,-31.42899,152.883935,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.560754,152.209378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.481364,150.533036,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,4,5,Australia,AU,New South Wales,-29.041187,152.935141,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,FEMALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-29.353951,150.200485,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.419011,150.609509,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,7,13,Australia,AU,New South Wales,-32.706589,152.063784,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-31.476795,152.872473,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,11,Australia,AU,New South Wales,-29.488751,153.094107,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-30.408676,153.000663,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.488628,150.637346,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-32.738231,152.057755,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,13,Australia,AU,New South Wales,-31.453919,152.925013,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.471421,150.530412,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.450114,152.907025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.386228,150.626515,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.423858,150.637158,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140X,1,,occurrenceRemarks withheld,2022,7,24,Australia,AU,New South Wales,-31.440919,152.907157,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082307,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.419707,152.980914,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-31.459272,152.924983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.420332,150.627379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.49016,150.637782,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.949626,153.316981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.454357,150.608415,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.393135,150.644297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.420371,150.608992,EPSG:4326 +HUMAN_OBSERVATION,ODMP22100602,1,,occurrenceRemarks withheld,2022,9,24,Australia,AU,Victoria,-38.670984,143.859976,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-31.442793,152.90077,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.440472,150.522368,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-31.431589,152.873002,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-31.928475,152.385203,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0005721,1,MALE,occurrenceRemarks withheld,2024,10,9,Australia,AU,New South Wales,-34.218889,150.807222,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-32.226111,152.204264,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.491687,150.638882,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO,1,,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-30.419061,152.955477,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.064487,150.883133,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,17,Australia,AU,New South Wales,-29.490208,153.110281,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,27,Australia,AU,New South Wales,-33.717888,150.783268,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.444546,150.527366,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003892,1,,occurrenceRemarks withheld,2023,1,3,Australia,AU,New South Wales,-29.016415,153.431324,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130Y,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-31.467144,152.870526,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.568584,149.931388,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.423111,150.604356,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-30.314157,152.857326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.385827,150.627233,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-30.892416,150.043056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.446445,150.514204,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,FEMALE,occurrenceRemarks withheld,2022,12,22,Australia,AU,New South Wales,-34.127969,150.822863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.492746,150.640028,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-28.372948,153.563634,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,1,30,Australia,AU,New South Wales,-31.485941,152.912844,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,1,31,Australia,AU,New South Wales,-28.661581,153.612126,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,8,7,Australia,AU,New South Wales,-28.660662,153.408667,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.451999,150.517337,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-30.345268,153.077582,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,23,Australia,AU,New South Wales,-29.480103,153.104273,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.463332,150.524032,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,29,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.452621,150.519974,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.465737,150.520402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.427934,150.597929,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-31.482501,152.91509,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072705,1,,occurrenceRemarks withheld,2023,2,27,Australia,AU,New South Wales,-28.556794,153.388879,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-31.447023,152.923338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.427037,150.605059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.414267,150.597004,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,10,Australia,AU,New South Wales,-28.672208,153.415262,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251P,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-32.707572,152.064437,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,11,1,Australia,AU,New South Wales,-32.724707,152.073059,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-30.090648,152.133162,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.465339,150.526107,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-31.558658,152.59149,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-32.228945,152.192632,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-29.349537,153.238682,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004164,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-28.598747,152.956199,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.297175,149.314239,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.430801,150.615876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.418106,150.632033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.423743,150.637313,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.420343,150.630251,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.388081,150.624418,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.46562,150.520373,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062900,1,,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-32.626309,152.034457,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.469558,150.527408,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-31.280222,152.815948,EPSG:4326 +HUMAN_OBSERVATION,ODLC98101500,1,,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-28.370084,152.968362,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007130E,1,,occurrenceRemarks withheld,2024,5,14,Australia,AU,New South Wales,-32.142053,152.38222,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,24,Australia,AU,New South Wales,-31.463547,152.841109,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,11,7,Australia,AU,New South Wales,-31.439312,152.922015,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,25,Australia,AU,New South Wales,-29.492809,153.109798,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.421741,150.636325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.431371,150.615055,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.465693,150.521307,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-34.112167,150.798232,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-29.490535,153.109347,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-28.938183,153.277774,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.420979,150.627698,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.418697,150.632777,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-33.714137,150.785095,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,4,15,Australia,AU,New South Wales,-31.463554,152.923313,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,4,Australia,AU,New South Wales,-31.44303,152.900779,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-28.769005,153.499021,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-31.445726,152.915386,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.825027,153.318048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.428522,150.597107,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2023,5,2,Australia,AU,New South Wales,-31.886017,152.381458,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-32.732887,152.081079,EPSG:4326 +HUMAN_OBSERVATION,STON-HO,1,,occurrenceRemarks withheld,2024,8,3,Australia,AU,New South Wales,-32.597777,149.527217,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.862684,152.649182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.455783,150.659724,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.445002,150.516826,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,10,1,Australia,AU,New South Wales,-32.711305,152.065329,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,25,Australia,AU,New South Wales,-33.779809,150.104457,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.446844,150.516086,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.559404,149.938213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.427573,150.594676,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-28.568771,153.432053,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-29.484973,153.103849,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-31.455568,152.91498,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,FEMALE,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.271479,153.394509,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.438639,150.606861,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-28.864669,153.293096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.41839,150.633678,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-34.143596,150.790562,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-33.705834,150.786962,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.446026,150.513106,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.449972,150.516515,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-30.258617,152.816719,EPSG:4326 +HUMAN_OBSERVATION,OMCE97032109;OPXE98102608;ODMP20120100;ODMP2108130B;ODMP2108130C;ODMP21082708,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-31.733473,149.586413,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-30.506388,152.924359,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-28.955488,153.41204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.393883,150.640992,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-34.395714,150.640582,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,2,16,Australia,AU,New South Wales,-31.464859,152.921011,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.840581,153.360617,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-34.099806,150.822079,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.184506,153.00415,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.465777,150.522328,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-28.823754,153.321625,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030O,1,,occurrenceRemarks withheld,2022,8,12,Australia,AU,New South Wales,-31.255633,152.963785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.465577,150.523607,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,FEMALE,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.053416,150.838978,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,24,Australia,AU,New South Wales,-31.478063,152.922398,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,5,20,Australia,AU,New South Wales,-31.465638,152.927639,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-28.604396,153.430628,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004211,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-28.820797,153.303853,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-28.244245,153.488157,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,10,Australia,AU,New South Wales,-28.835022,153.340736,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,,occurrenceRemarks withheld,2023,3,1,Australia,AU,New South Wales,-31.924329,152.404551,EPSG:4326 +HUMAN_OBSERVATION,OJJS17072600,1,,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-30.539993,152.646747,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,4,Australia,AU,New South Wales,-31.44303,152.900779,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,1,7,Australia,AU,New South Wales,-33.774132,150.113424,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001627,1,,occurrenceRemarks withheld,2022,3,11,Australia,AU,New South Wales,-31.451845,152.795771,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.49134,150.639088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.421096,150.627727,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-34.91043,150.06684,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210W,1,,occurrenceRemarks withheld,2022,5,1,Australia,AU,New South Wales,-32.644476,151.628116,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.428004,150.597808,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-31.642109,152.793878,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090402,1,,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-31.472958,152.868227,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-29.490586,153.108156,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,24,Australia,AU,New South Wales,-29.479958,153.104074,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-28.95951,153.394441,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.464873,150.522213,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,3,21,Australia,AU,New South Wales,-34.093044,150.984472,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.422562,150.608538,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251T,1,MALE,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-32.747146,152.072142,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,12,8,Australia,AU,New South Wales,-34.245314,150.699196,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-31.438806,152.905233,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150Q,1,MALE,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-28.665061,153.490213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.466659,150.521398,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040421,1,FEMALE,occurrenceRemarks withheld,2023,4,8,Australia,AU,New South Wales,-29.618322,152.907677,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-31.450986,152.907578,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-31.629349,152.786943,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-31.796829,152.060163,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2020,1,23,Australia,AU,New South Wales,-31.551166,152.708619,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032008,1,,occurrenceRemarks withheld,2022,9,3,Australia,AU,New South Wales,-32.710743,152.072752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.446676,150.515819,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.420198,150.635335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.385836,150.6272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.465897,150.520278,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,11,14,Australia,AU,New South Wales,-29.442147,153.183766,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.449872,150.516039,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.389203,150.628856,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.411499,150.596082,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.488365,150.635361,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154J,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-28.809402,153.363012,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-28.873561,153.270683,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.45887,150.664144,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150U,1,,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-31.78661,152.709125,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,3,15,Australia,AU,New South Wales,-29.490189,153.110538,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003959,1,,occurrenceRemarks withheld,2023,3,21,Australia,AU,New South Wales,-28.921839,153.188823,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-28.825024,153.219057,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,27,Australia,AU,New South Wales,-31.457439,152.873532,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-31.457249,152.929225,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.450229,150.604354,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.447061,150.513903,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-34.395365,150.643049,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-34.210931,150.798476,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-28.398612,153.556106,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,26,Australia,AU,New South Wales,-29.490488,153.109422,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,2,Australia,AU,New South Wales,-28.705596,153.481092,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-30.296554,153.124516,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,2,12,Australia,AU,New South Wales,-31.438416,152.893458,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.489254,150.63379,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-29.485464,153.103532,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-29.48968,153.105201,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.394469,150.629795,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022410,1,,occurrenceRemarks withheld,2022,5,12,Australia,AU,New South Wales,-32.725201,152.076592,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,3,30,Australia,AU,New South Wales,-31.437105,152.905728,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,9,Australia,AU,New South Wales,-28.393755,153.559543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.416674,150.597446,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2020,7,6,Australia,AU,New South Wales,-31.134726,152.856176,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.438437,150.617259,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.437775,150.605972,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,1,29,Australia,AU,New South Wales,-31.447007,152.921166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.448813,150.515821,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.433179,150.605178,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,9,17,Australia,AU,New South Wales,-32.023018,152.038319,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-31.433556,152.915305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.422004,150.607684,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.398001,150.647891,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,2,10,Australia,AU,New South Wales,-34.150763,150.82371,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-28.327875,153.564663,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.387812,150.631473,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,6,14,Australia,AU,New South Wales,-28.849639,153.307849,EPSG:4326 +HUMAN_OBSERVATION,OPUR20021302,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-31.15015,152.87268,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-29.492672,153.093225,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-34.476,150.532545,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,MALE,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-31.2031,152.8479,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060500,1,,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-28.838303,153.311323,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,MALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.959983,153.395223,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-28.669181,153.562205,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081106,1,,occurrenceRemarks withheld,2023,3,12,Australia,AU,New South Wales,-31.920338,152.404497,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,5,20,Australia,AU,New South Wales,-29.489554,153.103876,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2024,3,21,Australia,AU,New South Wales,-31.471842,152.919793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.388234,150.630939,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,3,12,Australia,AU,New South Wales,-28.864673,153.293212,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004055,1,FEMALE,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.888958,153.303848,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.387822,150.625981,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.093907,150.809779,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.4473,150.516355,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-34.139613,150.778378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.420671,150.609147,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,ODFK24082205,1,,occurrenceRemarks withheld,2024,7,15,Australia,AU,New South Wales,-31.440595,152.921265,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,25,Australia,AU,New South Wales,-28.825855,153.322444,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2023,5,12,Australia,AU,New South Wales,-34.076232,150.85229,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.469514,150.527028,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.423788,150.637312,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-30.345268,153.077582,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.400288,150.63979,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-29.765612,151.078045,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.437488,150.606992,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.426432,150.604533,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.446599,150.518237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.385781,150.622972,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-36.572611,149.995573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.431107,150.604802,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-28.74311,153.205077,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,3,30,Australia,AU,New South Wales,-28.892514,153.355939,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.59176,153.54948,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-30.456245,152.712084,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.469444,150.527128,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,12,18,Australia,AU,New South Wales,-32.73714,152.0566,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-31.15266,152.796574,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004265,1,,occurrenceRemarks withheld,2023,8,29,Australia,AU,New South Wales,-28.868822,153.434152,EPSG:4326 +HUMAN_OBSERVATION,BREHS-HO,1,,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-33.365815,150.813428,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,25,Australia,AU,New South Wales,-29.485394,153.10379,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-31.351,152.728373,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.425594,150.595842,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002758,1,MALE,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-29.474508,153.10696,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.45599,150.606671,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152W,1,MALE,occurrenceRemarks withheld,2022,11,14,Australia,AU,New South Wales,-28.888595,153.299477,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.633581,149.921178,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022405,1,,occurrenceRemarks withheld,2022,1,22,Australia,AU,New South Wales,-32.736268,152.041634,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-29.480084,153.104128,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-31.463065,152.922407,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,7,2,Australia,AU,New South Wales,-31.913202,152.374047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.394847,150.64612,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,1,2,Australia,AU,New South Wales,-28.72455,153.33019,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.439507,150.603757,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110A,1,FEMALE,occurrenceRemarks withheld,2023,3,23,Australia,AU,New South Wales,-31.430245,152.884499,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.294142,149.324858,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-32.706506,152.063761,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2022,1,15,Australia,AU,New South Wales,-29.834296,150.844837,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,FEMALE,occurrenceRemarks withheld,2022,6,18,Australia,AU,New South Wales,-32.544025,151.609345,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-33.71937,150.782582,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-28.627546,153.427129,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-29.485366,153.104015,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.411355,150.596533,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-31.521223,152.793317,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-28.617114,152.964893,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050C,1,,occurrenceRemarks withheld,2024,2,11,Australia,AU,New South Wales,-31.450504,152.929282,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.932356,152.412507,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,2,Australia,AU,New South Wales,-29.485585,153.103774,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-30.23792,152.90615,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-31.85809,152.355785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.43531,150.615955,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.459942,150.519148,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.396455,150.62714,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-28.833741,153.322828,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.451379,150.518324,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-28.814882,153.329144,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140P,1,MALE,occurrenceRemarks withheld,2022,10,18,Australia,AU,New South Wales,-28.820272,153.31614,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.417928,150.632647,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-33.706006,150.786234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.385625,150.626554,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.394876,150.640605,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.399603,150.639363,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003959,1,MALE,occurrenceRemarks withheld,2023,3,22,Australia,AU,New South Wales,-28.923632,153.184984,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.420994,150.628024,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012505,1,FEMALE,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-31.458842,152.925578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.393885,150.632215,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080906,1,FEMALE,occurrenceRemarks withheld,2023,7,25,Australia,AU,New South Wales,-31.475328,152.920189,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-29.490208,153.108231,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,12,19,Australia,AU,New South Wales,-31.442382,152.908508,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.47101,150.530108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.451476,150.522206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.45005,150.60672,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.431539,150.605671,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.459876,150.518997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.450948,150.606521,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-32.706409,152.063709,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-30.094803,152.160787,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.38783,150.631483,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260C,1,,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-32.710844,152.061046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.439654,150.606647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.434503,150.616163,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-29.49025,153.10998,EPSG:4326 +HUMAN_OBSERVATION,OPUR16022400,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-36.16555,149.39323,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083002,1,,occurrenceRemarks withheld,2023,2,24,Australia,AU,New South Wales,-34.069621,150.835114,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-31.455352,152.919343,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,1,29,Australia,AU,New South Wales,-31.192111,152.970444,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.465931,150.523259,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-31.42427,152.880948,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-36.009731,149.372063,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.465137,150.522357,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-31.465481,152.910603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.418697,150.632777,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,3,11,Australia,AU,New South Wales,-32.728985,152.171289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.419214,150.609319,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-31.125681,152.802007,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.466747,150.522625,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.438653,150.617709,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-29.805125,152.810422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.4207,150.630077,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-32.71018,152.067068,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-28.82175,153.33124,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-32.41352,149.37953,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,17,Australia,AU,New South Wales,-29.490591,153.109379,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,19,Australia,AU,New South Wales,-28.599122,153.091103,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-31.475697,152.910308,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,12,8,Australia,AU,New South Wales,-31.463603,152.14047,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-29.485548,153.103656,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022603,1,MALE,occurrenceRemarks withheld,2020,2,10,Australia,AU,New South Wales,-31.466584,152.914523,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-28.872591,153.417286,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-31.87656,152.387172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.457775,150.526079,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-29.485524,153.103784,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-31.42587,152.895156,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.420297,150.627391,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,5,6,Australia,AU,New South Wales,-29.222477,152.466287,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.465708,150.52074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.447464,150.519071,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.98155,153.367005,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.39578,150.641678,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-29.725873,152.929081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.428424,150.595794,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-32.706456,152.063875,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-28.675517,153.493023,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,10,14,Australia,AU,New South Wales,-29.594605,152.916257,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.397379,150.627842,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.387373,150.629299,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.39533,150.630032,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260V,1,FEMALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-32.759253,152.10379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.441639,150.517698,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-31.299562,152.863454,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004058,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.940107,153.27744,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-34.024355,150.977487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.420224,150.627393,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.448738,150.516998,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.445835,150.513917,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130E,1,,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-31.925023,152.402904,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.389719,150.627101,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.435133,150.606417,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,8,Australia,AU,New South Wales,-28.397359,153.557375,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-30.241888,152.890899,EPSG:4326 +HUMAN_OBSERVATION,OJJS17121205,1,,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.02929,150.970601,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.43622,150.616375,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-28.256434,153.40074,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211F,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-32.72777,152.105332,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.399746,150.624861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.420821,150.627942,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.464662,150.523373,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.446398,150.514096,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-32.724723,152.15762,EPSG:4326 +HUMAN_OBSERVATION,OICG23062200,1,,occurrenceRemarks withheld,2023,7,4,Australia,AU,New South Wales,-29.173097,150.1747,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,4,Australia,AU,New South Wales,-29.49004,153.108773,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,3,6,Australia,AU,New South Wales,-32.706456,152.063499,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,4,25,Australia,AU,New South Wales,-32.654848,151.789896,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-31.440417,152.90139,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,27,Australia,AU,New South Wales,-28.9982,153.301536,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-28.95397,153.412731,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.388883,150.62395,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-31.417406,152.14174,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.435216,150.606502,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2023,2,11,Australia,AU,New South Wales,-33.797571,150.970782,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.385419,150.62756,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,25,Australia,AU,New South Wales,-31.13789,152.808442,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,21,Australia,AU,New South Wales,-28.867843,153.337681,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.453455,150.522441,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.43289,150.61574,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250S,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-32.736847,152.037864,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,4,10,Australia,AU,New South Wales,-28.997617,153.326352,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-34.439845,150.617817,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-31.424486,152.823278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.463771,150.5239,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.436425,150.615782,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.491017,150.638248,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-31.450036,152.92202,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-33.706019,150.786177,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,8,Australia,AU,New South Wales,-31.429062,152.895067,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2022,10,13,Australia,AU,New South Wales,-29.505756,152.824668,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-29.48446,153.104053,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.464744,150.529215,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,7,29,Australia,AU,New South Wales,-33.77543,150.059244,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,26,Australia,AU,New South Wales,-36.015884,149.377538,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,6,10,Australia,AU,New South Wales,-28.363195,153.560176,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-31.282072,152.862974,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042A,1,MALE,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-29.417711,149.982157,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.295504,149.324487,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122105,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-31.454681,152.908524,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-28.627782,153.44811,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.513032,150.001052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.419635,150.611461,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,15,Australia,AU,New South Wales,-32.709985,152.064496,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.395725,150.636938,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251N,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-32.629336,151.74933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.465746,150.520358,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-28.331902,153.562182,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,24,Australia,AU,New South Wales,-32.472237,151.974623,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001177,1,,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-32.742004,152.094135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.412884,150.597751,EPSG:4326 +HUMAN_OBSERVATION,ODFK23111401,1,,occurrenceRemarks withheld,2024,9,3,Australia,AU,New South Wales,-31.575244,152.186866,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,1,28,Australia,AU,New South Wales,-34.110316,150.980537,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,6,6,Australia,AU,New South Wales,-28.9309,153.268233,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,21,Australia,AU,New South Wales,-29.490091,153.101199,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.436478,150.615726,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-31.85809,152.355785,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.827996,153.303174,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-34.094344,150.985401,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-33.534594,150.670358,EPSG:4326 +HUMAN_OBSERVATION,OGEM18052300,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.14064,150.796366,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2024,4,3,Australia,AU,New South Wales,-31.409524,152.899861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.4358,150.616572,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-29.038,153.400956,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100519,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-31.90595,152.39843,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.881036,153.323595,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,13,Australia,AU,New South Wales,-29.489615,153.104326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.438988,150.602586,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-28.94913,153.31616,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090808,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-33.99814,150.90885,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,9,19,Australia,AU,New South Wales,-33.775651,150.103626,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-29.49254,153.093431,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,6,21,Australia,AU,New South Wales,-34.033,151.07331,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.374906,153.562809,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-31.299548,152.863435,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,8,21,Australia,AU,New South Wales,-30.641952,152.95885,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-31.442482,152.898504,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004256,1,,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-28.82107,153.198403,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.387777,150.63155,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-31.64191,152.792478,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,12,11,Australia,AU,New South Wales,-31.441536,152.918236,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,5,29,Australia,AU,New South Wales,-29.490423,153.109374,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-33.706986,150.785697,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,11,7,Australia,AU,New South Wales,-34.5,150.582601,EPSG:4326 +HUMAN_OBSERVATION,OICG17030600,1,,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-28.389919,153.55715,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-31.473038,152.911279,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,4,Australia,AU,New South Wales,-33.705157,150.785188,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,24,Australia,AU,New South Wales,-31.12669,152.800558,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-30.27118,153.07969,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.465815,150.522457,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.949063,152.32627,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-29.48996,153.101413,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102502,1,,occurrenceRemarks withheld,2024,9,17,Australia,AU,New South Wales,-33.492192,149.551576,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,2,14,Australia,AU,New South Wales,-29.485415,153.103881,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.447315,150.514418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.45867,150.532888,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.471009,150.53099,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-29.485576,153.103817,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2022,11,12,Australia,AU,New South Wales,-34.099623,150.809835,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.418083,150.633197,EPSG:4326 +HUMAN_OBSERVATION,ODMP2302060B,1,,occurrenceRemarks withheld,2023,5,22,Australia,AU,New South Wales,-34.150187,150.825249,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-34.164932,150.789593,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,16,Australia,AU,New South Wales,-28.880776,153.262872,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,4,Australia,AU,New South Wales,-28.880776,153.262958,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.419124,150.610246,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-30.4187,152.9781,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,11,Australia,AU,New South Wales,-31.475979,152.921889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.435637,150.615586,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-32.711305,152.065329,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.816318,153.314144,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,7,9,Australia,AU,New South Wales,-31.459166,152.928887,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG20061602,1,,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-30.192745,152.777471,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.157098,149.380851,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.443883,150.514574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.452038,150.517466,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.38809,150.624461,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004007,1,,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-28.410669,152.281838,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.457775,150.526079,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-31.448101,152.920703,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-31.2557,152.768652,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,16,Australia,AU,New South Wales,-33.709335,150.78559,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.420056,150.63126,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,3,8,Australia,AU,New South Wales,-29.485585,153.10387,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.438931,150.60472,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303310C,1,,occurrenceRemarks withheld,2022,4,18,Australia,AU,New South Wales,-32.723578,152.081922,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.402485,152.138047,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122102,1,,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-31.875301,152.367884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.394596,150.630314,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003956,1,,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-28.845513,153.320324,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122105,1,FEMALE,occurrenceRemarks withheld,2022,11,1,Australia,AU,New South Wales,-31.454647,152.908557,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.437391,150.518052,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-29.490236,153.10814,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003807,1,,occurrenceRemarks withheld,2023,6,16,Australia,AU,New South Wales,-28.932845,153.329006,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100518,1,MALE,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-31.437104,152.89788,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,13,Australia,AU,New South Wales,-29.490483,153.109385,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.419751,150.611425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.465707,150.521589,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.426019,150.602314,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.459256,150.521334,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,9,Australia,AU,New South Wales,-29.489816,153.110554,EPSG:4326 +HUMAN_OBSERVATION,ODFK24041201,1,,occurrenceRemarks withheld,2024,2,22,Australia,AU,New South Wales,-33.047677,151.479316,EPSG:4326 +HUMAN_OBSERVATION,OLHP23071019,1,,occurrenceRemarks withheld,2023,6,18,Australia,AU,New South Wales,-31.465028,152.927715,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-33.703515,150.785107,EPSG:4326 +HUMAN_OBSERVATION,OLHP24080500,1,,occurrenceRemarks withheld,2024,7,25,Australia,AU,New South Wales,-28.817328,153.317256,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-28.26025,153.400534,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.397853,150.622086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.467036,150.520843,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,2,23,Australia,AU,New South Wales,-34.026413,150.991011,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,MALE,occurrenceRemarks withheld,2023,7,19,Australia,AU,New South Wales,-28.824751,153.300864,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.489835,150.633991,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,5,25,Australia,AU,New South Wales,-28.257882,153.400729,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-28.823221,153.308174,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-28.822395,153.310718,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140F,1,,occurrenceRemarks withheld,2022,7,6,Australia,AU,New South Wales,-28.912169,152.476197,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090407,1,FEMALE,occurrenceRemarks withheld,2020,6,24,Australia,AU,New South Wales,-32.75853,152.076961,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-29.667546,152.86746,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.465771,150.522491,EPSG:4326 +HUMAN_OBSERVATION,ODMP21091800;ODMP21091801;ODMP21091802,1,,occurrenceRemarks withheld,2021,5,,Australia,AU,New South Wales,-33.392849,150.813439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.395985,150.64152,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.465744,150.520282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.414301,150.596905,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,3,Australia,AU,New South Wales,-29.4899,153.101231,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-28.234366,153.520242,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2023,2,8,Australia,AU,New South Wales,-32.67423,151.697314,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-28.367745,152.560751,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.45018,150.516096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.38615,150.625277,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.459148,150.521762,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2023,1,3,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.419697,150.611437,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.422209,150.637204,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2023,5,12,Australia,AU,New South Wales,-34.337843,150.788885,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,4,16,Australia,AU,New South Wales,-29.745797,151.083331,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,4,27,Australia,AU,New South Wales,-28.81355,153.367362,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.815723,153.289433,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.457259,150.517314,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.475728,150.532963,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-28.657288,153.493277,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419124,150.610246,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-29.487882,153.091891,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.465654,150.520307,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.424254,150.60379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.454666,150.606708,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.418643,150.633225,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.447198,150.514432,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004130,1,MALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.91324,153.268126,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-29.740625,152.943361,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,10,Australia,AU,New South Wales,-29.490166,153.110522,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090Z,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-30.991512,150.252033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.430085,150.616604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.469502,150.527355,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,8,18,Australia,AU,New South Wales,-32.722486,152.077238,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-28.819935,153.276731,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.449835,150.609524,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.464204,150.522145,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-28.925495,153.261383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.451433,150.518322,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122103,1,,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-30.881008,153.072051,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-32.734228,152.10181,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,12,Australia,AU,New South Wales,-31.637364,152.788661,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.45773,152.917419,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,18,Australia,AU,New South Wales,-29.485559,153.103752,EPSG:4326 +HUMAN_OBSERVATION,OJJS1208150J,1,MALE,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-31.926276,151.84278,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040410,1,MALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-34.335302,150.744874,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-32.709827,152.06416,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-30.517586,152.885005,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,12,Australia,AU,New South Wales,-29.485566,153.103822,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-36.572524,149.950373,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.813131,152.824223,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-33.717548,150.785033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.383559,150.623687,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.397039,150.64012,EPSG:4326 +HUMAN_OBSERVATION,ODFK23120702,1,,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-29.74359,152.893049,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.459879,150.519117,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.42067,150.630861,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.08358,150.978821,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-31.830274,152.429114,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,FEMALE,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-29.630697,152.899228,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.39385,150.640667,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.681563,152.797986,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,2,28,Australia,AU,New South Wales,-31.447296,152.908302,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,10,22,Australia,AU,New South Wales,-33.113691,151.116954,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.139613,150.778378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.386555,150.62569,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.42064,150.630667,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154H,1,MALE,occurrenceRemarks withheld,2022,11,15,Australia,AU,New South Wales,-28.353854,153.559344,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,1,22,Australia,AU,New South Wales,-28.897022,153.351311,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-30.423237,153.012027,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.392724,150.639317,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050C,1,,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-31.443513,152.899018,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.436905,150.60715,EPSG:4326 +HUMAN_OBSERVATION,OPRS04081700,1,,occurrenceRemarks withheld,2022,12,25,Australia,AU,New South Wales,-29.810675,152.823523,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.389775,150.6281,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2024,4,6,Australia,AU,New South Wales,-31.477103,152.913291,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.458778,150.532885,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.393415,150.631228,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140G,1,,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-34.1003,150.811934,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.607691,153.399644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.465492,150.525634,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132K,1,,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-31.472801,152.921805,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420042,150.634252,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004181,1,,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-28.68913,153.516654,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-29.78795,151.291271,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-28.393242,153.561812,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-29.478963,153.104058,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-30.413154,152.996446,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-31.448181,152.895079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.438005,150.605312,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.450034,150.516459,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100D,1,,occurrenceRemarks withheld,2023,7,19,Australia,AU,New South Wales,-32.730877,152.033799,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-31.470517,152.926913,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.451451,150.518311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.397199,150.6465,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.493155,150.639254,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.139613,150.778378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.420249,150.627262,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-29.491291,153.096129,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,3,15,Australia,AU,New South Wales,-28.398479,153.55609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.399364,150.645189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.39433,150.630093,EPSG:4326 +HUMAN_OBSERVATION,OPUR23030700,1,,occurrenceRemarks withheld,2023,7,4,Australia,AU,New South Wales,-31.948763,152.329045,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,11,Australia,AU,New South Wales,-33.717757,150.784351,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.420718,150.609211,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,10,16,Australia,AU,New South Wales,-30.505623,152.920387,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-29.681698,152.933658,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-32.694088,151.702131,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-34.04555,151.010502,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-29.681698,152.933658,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,4,17,Australia,AU,New South Wales,-28.867392,153.295269,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-28.585441,153.071682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.38924,150.628866,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-28.397385,153.557023,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150L,1,FEMALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-31.915168,152.374317,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011016,1,,occurrenceRemarks withheld,2023,11,17,Australia,AU,New South Wales,-33.704328,150.585877,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.389222,150.628888,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031514,1,MALE,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-28.684252,153.517724,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,3,9,Australia,AU,New South Wales,-34.020007,150.989323,EPSG:4326 +HUMAN_OBSERVATION,OJJS20012800,1,,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-32.89005,150.87977,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.438519,150.60669,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.39938,150.53188,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-29.632795,152.897512,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.426076,150.597438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.420939,150.627057,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.420204,150.609682,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.915198,152.3791,EPSG:4326 +HUMAN_OBSERVATION,OPUR23110802,1,FEMALE,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-34.143433,150.79071,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.386734,150.625163,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-29.489694,153.101435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.432821,150.614992,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,5,Australia,AU,New South Wales,-28.685102,153.301293,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.483897,153.095325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.443865,150.514531,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.686858,152.780839,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-29.486813,153.10321,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.437718,150.606746,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.889109,153.229422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.418297,150.632615,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-28.828008,153.321087,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.447421,150.518724,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190T,1,FEMALE,occurrenceRemarks withheld,2024,8,24,Australia,AU,New South Wales,-31.935801,152.41745,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.397766,150.622219,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-28.257896,153.474541,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.466419,150.520676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.45419,150.607255,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2024,6,26,Australia,AU,New South Wales,-31.636544,152.779169,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042Y,1,FEMALE,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-30.656119,152.847991,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.389166,150.62877,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.058152,150.993648,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.437561,150.604748,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-30.410631,152.996012,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-29.489834,153.101226,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-31.85809,152.355785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.452895,150.521511,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.437987,150.605302,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-33.718313,150.783786,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-33.779072,150.101859,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,19,Australia,AU,New South Wales,-32.217241,152.118528,EPSG:4326 +HUMAN_OBSERVATION,STAG-035,1,,occurrenceRemarks withheld,2021,2,3,Australia,AU,New South Wales,-31.03128,149.964408,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-31.455499,152.914908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.453423,150.522181,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-31.521544,152.785519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.453515,150.517379,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2022,9,17,Australia,AU,New South Wales,-34.064785,150.840892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.420636,150.609202,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150X,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-32.066822,151.739274,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062801,1,,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-31.12578,152.856013,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-29.015392,153.409145,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-28.81836,153.332807,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.418297,150.632604,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-28.578875,153.131276,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,12,Australia,AU,New South Wales,-31.447106,152.881297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.437499,150.605729,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,6,20,Australia,AU,New South Wales,-34.054916,150.995318,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.388477,150.630932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.389389,150.629612,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.123772,152.895604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.448897,150.610443,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100L,1,,occurrenceRemarks withheld,2021,1,16,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-31.424988,152.875782,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012904,1,,occurrenceRemarks withheld,2023,12,15,Australia,AU,New South Wales,-31.544374,152.85763,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.447135,150.513106,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.827996,153.303174,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-34.483871,150.567012,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-28.845567,153.302585,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,1,12,Australia,AU,New South Wales,-31.546371,152.858729,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,14,Australia,AU,New South Wales,-28.972812,153.428356,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-31.452622,152.920448,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150H,1,FEMALE,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-28.825305,153.324009,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.77945,151.877235,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.438813,150.604691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.447493,150.51698,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.834226,153.364275,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-33.767829,150.057292,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.14082,152.795888,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.949626,153.316981,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110C,1,,occurrenceRemarks withheld,2023,3,23,Australia,AU,New South Wales,-29.874354,150.896157,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,24,Australia,AU,New South Wales,-31.460113,152.925108,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.873495,152.650294,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.447242,150.513049,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.465128,150.522358,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.437603,150.60503,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,7,Australia,AU,New South Wales,-33.706754,150.786492,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-28.391396,153.564397,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.491405,150.638759,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.49089,150.638698,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-34.014572,150.87956,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.640426,149.947048,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2021,12,13,Australia,AU,New South Wales,-28.57956,153.54705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.386624,150.627428,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-31.85809,152.355785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.439075,150.60242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.448854,150.51694,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,6,15,Australia,AU,New South Wales,-29.104379,153.384531,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080305,1,,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-31.470191,152.925907,EPSG:4326 +HUMAN_OBSERVATION,OPUR23110802,1,FEMALE,occurrenceRemarks withheld,2023,4,10,Australia,AU,New South Wales,-34.098106,150.808212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420253,150.610334,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-28.666246,153.245689,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,4,Australia,AU,New South Wales,-29.49018,153.110506,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251T,1,FEMALE,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-32.74631,152.072187,EPSG:4326 +HUMAN_OBSERVATION,OJJS20051101,1,,occurrenceRemarks withheld,2020,5,5,Australia,AU,New South Wales,-34.060623,151.000276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.434651,150.606659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.421465,150.637454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.43293,150.603956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.454381,150.606902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.44777,150.51682,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,19,Australia,AU,New South Wales,-31.07036,150.1245,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,17,Australia,AU,New South Wales,-33.713329,150.784687,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,12,2,Australia,AU,New South Wales,-29.779277,151.335227,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,22,Australia,AU,New South Wales,-33.953175,150.940088,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-31.414354,152.89491,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.451404,150.518236,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.500217,150.582601,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.441659,150.517338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.388855,150.630856,EPSG:4326 +HUMAN_OBSERVATION,OPUR23110802,1,FEMALE,occurrenceRemarks withheld,2023,3,25,Australia,AU,New South Wales,-34.09827,150.808762,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-31.475419,152.920253,EPSG:4326 +HUMAN_OBSERVATION,OEMM0911130Y,1,MALE,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-37.177314,149.355934,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-34.447875,150.514042,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.440123,150.60387,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427363,150.604658,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.872021,153.335449,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-28.818924,153.278317,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,5,19,Australia,AU,New South Wales,-34.114375,150.94316,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-28.642771,153.56178,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,2,4,Australia,AU,New South Wales,-31.447964,152.881536,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO;OJJS20110901,1,MALE,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-30.667693,152.95556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.388477,150.630932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.485975,150.63582,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-31.436334,152.915019,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.0268,151.046985,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.743384,152.065929,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,7,Australia,AU,New South Wales,-28.824302,153.307399,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-31.29642,152.864571,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-30.33395,153.056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.424294,150.60356,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082306,1,,occurrenceRemarks withheld,2023,5,23,Australia,AU,New South Wales,-34.29484,150.77058,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,1,17,Australia,AU,New South Wales,-32.72055,152.1038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.485524,150.638141,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-29.490539,153.108135,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210E,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-32.773866,152.11039,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.389852,150.630708,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031X,1,,occurrenceRemarks withheld,2023,5,26,Australia,AU,New South Wales,-31.4357,152.896115,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,11,Australia,AU,New South Wales,-28.982567,153.414498,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419689,150.61147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.389704,150.628146,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-34.54599,150.62087,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-30.23943,152.90301,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,14,Australia,AU,New South Wales,-29.483443,153.095229,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-28.601773,153.198472,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-29.489563,153.103935,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,6,1,Australia,AU,New South Wales,-30.389051,153.031718,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-34.016936,150.980951,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.418082,150.632675,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040L,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-34.01627,150.901126,EPSG:4326 +HUMAN_OBSERVATION,OKEM14042900,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-34.072142,150.841735,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-28.864654,153.293076,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-29.679519,150.932322,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.45281,150.517335,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-29.489946,153.101183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.419009,150.604842,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.455959,150.65764,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,6,18,Australia,AU,New South Wales,-31.919902,152.379454,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-29.484791,153.096011,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.423716,150.637314,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090707,1,,occurrenceRemarks withheld,2024,7,15,Australia,AU,New South Wales,-32.886264,151.367945,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,3,1,Australia,AU,New South Wales,-31.63888,152.794038,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,20,Australia,AU,New South Wales,-33.580892,149.374187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.430921,150.609584,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,MALE,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-34.016253,150.877198,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-31.458122,152.911609,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-31.469713,152.9232,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240C,1,,occurrenceRemarks withheld,2022,10,23,Australia,AU,New South Wales,-32.714611,152.162997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.450198,150.516541,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.386292,150.625154,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,11,Australia,AU,New South Wales,-34.440611,150.615924,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-29.489587,153.103876,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-31.44848,152.878917,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.463443,150.534881,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,13,Australia,AU,New South Wales,-28.726548,153.548753,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,10,13,Australia,AU,New South Wales,-31.474066,152.919893,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222K,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-32.639285,151.95742,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.395184,150.630406,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.633581,149.921178,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.513032,150.001052,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132K,1,MALE,occurrenceRemarks withheld,2024,4,11,Australia,AU,New South Wales,-31.472397,152.927472,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.427014,150.603863,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-29.6794,152.863743,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.488066,150.635315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.433484,150.616638,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,5,10,Australia,AU,New South Wales,-32.761,152.1016,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.437159,150.518614,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-34.438424,150.616149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.426986,150.597826,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-32.707137,152.063304,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003836,1,,occurrenceRemarks withheld,2023,2,24,Australia,AU,New South Wales,-28.828834,153.323871,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-33.705787,150.786988,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012505,1,,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-31.45422,152.924333,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290K,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-31.965324,152.399058,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,,occurrenceRemarks withheld,2023,6,21,Australia,AU,New South Wales,-28.557669,153.077982,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS;ODFK23090501,1,,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-30.457365,151.373241,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002794,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.489437,153.095115,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,6,Australia,AU,New South Wales,-29.49025,153.108146,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,3,Australia,AU,New South Wales,-29.485155,153.104063,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180L,1,FEMALE,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-28.679923,153.490226,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.466508,150.522839,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130F,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-31.455952,152.92885,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,7,Australia,AU,New South Wales,-29.490184,153.110506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.41836,150.632602,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.469499,150.527203,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,FEMALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-29.35394,150.200414,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.386069,150.625291,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150R,1,,occurrenceRemarks withheld,2020,12,29,Australia,AU,New South Wales,-33.771456,150.629212,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-31.448673,152.88129,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-32.764257,152.034735,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.440831,150.603665,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103007,1,,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-32.72771,152.006171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.419609,150.632839,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,9,Australia,AU,New South Wales,-29.49159,153.09975,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,12,Australia,AU,New South Wales,-33.778022,150.057148,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.462781,150.528417,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.659526,152.812127,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,3,4,Australia,AU,New South Wales,-31.431811,152.915394,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,27,Australia,AU,New South Wales,-33.707566,150.785634,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050U,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-30.531532,151.515025,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.191823,152.02857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.485397,150.637143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.437038,150.519292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.387795,150.631517,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290J,1,,occurrenceRemarks withheld,2022,4,16,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-28.319558,152.43247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.447295,150.513852,EPSG:4326 +HUMAN_OBSERVATION,ODFK23091103;ODFK23102509;ODFK2310250A,1,MALE,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-29.172117,153.028287,EPSG:4326 +HUMAN_OBSERVATION,OPUR15081400,1,,occurrenceRemarks withheld,2023,1,10,Australia,AU,New South Wales,-28.94955,152.77402,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-34.090328,150.989821,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.402145,150.641195,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,27,Australia,AU,New South Wales,-33.711877,150.784206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.447369,150.513077,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-30.405141,153.006715,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.44697,150.513851,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-31.464075,152.923476,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-31.09187,150.11475,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121500,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-30.405923,152.993874,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.493132,150.639026,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-32.232904,152.187392,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.466434,150.521394,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-28.65505,153.59019,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-34.10951,150.80368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.419827,150.602415,EPSG:4326 +HUMAN_OBSERVATION,OPUR23021402,1,,occurrenceRemarks withheld,2023,5,26,Australia,AU,New South Wales,-28.823354,153.603568,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.687767,153.607389,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.432955,150.611713,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,5,20,Australia,AU,New South Wales,-31.136512,152.807328,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.469418,150.527173,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-34.01217,151.10183,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,MALE,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-34.069552,150.835721,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-29.477137,153.104358,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-31.443076,152.894742,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.399574,150.616926,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-33.709587,150.786474,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.399185,150.639636,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.434766,150.615796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.45435,150.608524,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.401359,150.645328,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.397341,150.64592,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130J,1,,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-31.451443,152.914421,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031415,1,,occurrenceRemarks withheld,2021,12,2,Australia,AU,New South Wales,-33.495076,149.55776,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,1,12,Australia,AU,New South Wales,-31.933183,152.415131,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-32.229205,152.189597,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-33.882417,151.154762,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070501,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-32.570904,149.607994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.493215,150.639111,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.280223,152.815949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.452528,150.516766,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,18,Australia,AU,New South Wales,-33.717609,150.783983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.428704,150.599964,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004134,1,,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-28.215655,153.5166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.418305,150.632549,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100H,1,,occurrenceRemarks withheld,2021,1,26,Australia,AU,New South Wales,-32.551731,151.647191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419436,150.63602,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270V,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-32.73444,152.03122,EPSG:4326 +HUMAN_OBSERVATION,OJKB21070601,1,,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-31.094993,152.815706,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.458393,150.659499,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-31.470669,152.923544,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.420192,150.631321,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-31.642139,152.793442,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-28.872633,153.41931,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.431051,150.604706,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.423798,150.637345,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031542,1,MALE,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-28.560281,153.395818,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-34.40016,150.3201,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.426127,150.598623,EPSG:4326 +HUMAN_OBSERVATION,ODMP2112150E,1,,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-33.435848,149.367249,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.426579,150.603267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.420367,150.636168,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-34.90092,150.05219,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-30.345383,152.613348,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.386155,150.624603,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,9,18,Australia,AU,New South Wales,-28.398817,153.555987,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-28.812518,153.111104,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.399484,150.639736,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-29.485576,153.103935,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-32.731152,152.030533,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-29.030774,152.985913,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-30.23551,152.90635,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-29.477899,153.104299,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,3,11,Australia,AU,New South Wales,-29.490142,153.101274,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.824882,153.303135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.41965,150.635449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.400949,150.619932,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,13,Australia,AU,New South Wales,-29.482265,153.104482,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.432999,150.611635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.446793,150.515782,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,11,23,Australia,AU,New South Wales,-31.431816,152.894048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.454239,150.607929,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308250D,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-32.66323,152.175398,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.458409,150.664592,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003956,1,,occurrenceRemarks withheld,2023,4,12,Australia,AU,New South Wales,-28.848165,153.302733,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.872021,153.335449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.45349,150.520155,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,7,17,Australia,AU,New South Wales,-31.453481,152.910301,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,5,20,Australia,AU,New South Wales,-28.49591,153.20197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.456279,150.608502,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-29.490021,153.101199,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-31.863221,152.666458,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.438618,150.603902,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-29.480299,153.104138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.485553,150.636355,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102210,1,,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-32.707939,152.068395,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-34.035121,150.873769,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2021,10,13,Australia,AU,New South Wales,-29.726842,152.928706,EPSG:4326 +HUMAN_OBSERVATION,ODFK2312070D,1,,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-29.477843,153.104503,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-36.255658,149.428856,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-34.187249,150.790805,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-34.096995,150.985957,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.466497,150.521425,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.015618,150.883653,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.423823,150.637235,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.387776,150.631474,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.464583,150.524355,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-28.983446,152.75671,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031406,1,,occurrenceRemarks withheld,2024,2,23,Australia,AU,New South Wales,-33.696169,150.587927,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-29.631668,152.898464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.452565,150.519878,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-33.772803,150.057931,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-28.887191,153.319487,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-28.258372,153.401939,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-31.910186,152.409406,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.143567,152.863317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.463778,150.523823,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.438134,150.606353,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.793596,152.093939,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-34.436826,150.618349,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-29.667359,152.867889,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-31.47948,152.87426,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-29.485576,153.103715,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-31.933111,152.415558,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.438976,150.604251,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.923237,152.371278,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071101,1,,occurrenceRemarks withheld,2024,5,7,Australia,AU,New South Wales,-32.200309,152.133866,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.449097,150.516041,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.397328,150.622884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.441459,150.517714,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-33.707417,150.784938,EPSG:4326 +HUMAN_OBSERVATION,OJJS19022501;ODMP21050503,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-32.714185,151.780333,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2024,7,12,Australia,AU,New South Wales,-31.456954,152.929913,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-31.447899,152.920965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.434289,150.617191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.397415,150.627841,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,5,23,Australia,AU,New South Wales,-32.65405,151.789094,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.465591,150.521625,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-31.459753,152.923379,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-28.819705,153.3,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.387589,150.631153,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-34.210895,150.790619,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101300,1,,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-29.654873,150.8283,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,8,Australia,AU,New South Wales,-31.405729,151.140925,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032807;OLHP2310050T,1,,occurrenceRemarks withheld,2023,4,4,Australia,AU,New South Wales,-31.558788,152.830733,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-28.381087,153.563734,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,26,Australia,AU,New South Wales,-29.490661,153.109294,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-31.459067,152.928198,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.503907,149.934931,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.447303,150.513808,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,FEMALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-34.142897,150.791213,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101301,1,,occurrenceRemarks withheld,2022,5,27,Australia,AU,New South Wales,-28.261709,153.468814,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-29.490353,153.107995,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.466778,150.521057,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-29.480042,153.104085,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-32.441261,151.970066,EPSG:4326 +HUMAN_OBSERVATION,OJJS13032501,1,,occurrenceRemarks withheld,2024,7,22,Australia,AU,New South Wales,-30.556073,152.895449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.435199,150.616719,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.650407,149.955028,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-28.59158,153.459136,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211J,1,,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-32.73197,152.018682,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031411,1,,occurrenceRemarks withheld,2021,12,24,Australia,AU,New South Wales,-30.345674,153.085576,EPSG:4326 +HUMAN_OBSERVATION,ODMP22091200,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,Queensland,-27.570077,153.164873,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.393971,150.641805,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.138285,152.794057,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-33.717281,150.784259,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.452971,150.604384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.451425,150.518344,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004140,1,,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.890701,153.22866,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,3,30,Australia,AU,New South Wales,-31.189198,152.973787,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290E,1,,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-32.732683,152.102978,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-33.70647,150.787184,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,5,1,Australia,AU,New South Wales,-32.701107,152.062868,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.421036,150.626956,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004006,1,,occurrenceRemarks withheld,2023,4,2,Australia,AU,New South Wales,-29.018511,153.420146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.446291,150.51373,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071000,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-32.400494,151.986493,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-29.480971,153.104117,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-34.020666,150.99014,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,10,3,Australia,AU,New South Wales,-32.70553,152.063695,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.436501,150.602613,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-31.450193,152.929022,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,7,Australia,AU,New South Wales,-29.490301,153.108119,EPSG:4326 +HUMAN_OBSERVATION,OLHP2312140D,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-35.114641,149.915993,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.184802,149.307547,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-32.738297,152.163715,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-31.459118,152.926348,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-32.456416,151.810724,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.099116,150.805509,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131H,1,,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-31.474709,152.897093,EPSG:4326 +HUMAN_OBSERVATION,OLHP2312140B,1,MALE,occurrenceRemarks withheld,2024,9,24,Australia,AU,New South Wales,-31.872313,152.692037,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,6,5,Australia,AU,New South Wales,-31.44531,152.911729,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-29.485662,153.10372,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,3,6,Australia,AU,New South Wales,-34.092261,150.986632,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,15,Australia,AU,New South Wales,-29.047123,153.395537,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-34.450793,150.597688,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-31.448367,152.911833,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.399222,150.639667,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-36.458645,150.00164,EPSG:4326 +HUMAN_OBSERVATION,ODFK24030502,1,,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-32.738943,152.17252,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080301,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-31.879506,152.344442,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.465407,150.520978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436507,150.520679,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,17,Australia,AU,New South Wales,-29.49017,153.10799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.447624,150.513233,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.418799,150.632905,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.422333,150.607892,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-28.816771,153.298493,EPSG:4326 +HUMAN_OBSERVATION,OJJS19072301;OJJS2007070K,1,,occurrenceRemarks withheld,2020,3,10,Australia,AU,New South Wales,-28.452492,153.296347,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-28.663195,153.611771,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,,occurrenceRemarks withheld,2022,6,6,Australia,AU,New South Wales,-31.454065,152.925215,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-28.834015,153.324527,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012905,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-31.880571,152.356055,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405201C,1,MALE,occurrenceRemarks withheld,2024,4,2,Australia,AU,New South Wales,-31.453886,152.925332,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,1,MALE,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-28.626008,153.426793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.447045,150.513109,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304170H,1,,occurrenceRemarks withheld,2023,1,19,Australia,AU,New South Wales,-31.464604,152.870544,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-31.201726,152.336867,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304170J,1,,occurrenceRemarks withheld,2023,1,9,Australia,AU,New South Wales,-32.295994,152.30372,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,6,26,Australia,AU,New South Wales,-31.44738,152.909436,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181V,1,,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-28.81811,153.301256,EPSG:4326 +HUMAN_OBSERVATION,OJJS19072301;OJJS2007070K,1,,occurrenceRemarks withheld,2020,3,11,Australia,AU,New South Wales,-28.468766,153.31428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.43308,150.61394,EPSG:4326 +HUMAN_OBSERVATION,ODFK24062801,1,FEMALE,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-29.48956,153.102338,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,6,24,Australia,AU,New South Wales,-31.429958,152.884999,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.418296,150.632571,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-31.437973,152.905708,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-31.136433,152.79647,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,2,19,Australia,AU,New South Wales,-32.76786,152.04316,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-29.479388,153.10423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.438633,150.606981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.419864,150.602436,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-29.489886,153.101274,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-34.466001,150.438807,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-33.779018,150.101871,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.485527,150.636399,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.446797,150.515978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.430192,150.610105,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,6,13,Australia,AU,New South Wales,-30.4225,151.54093,EPSG:4326 +HUMAN_OBSERVATION,OJJS19051305,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-34.265205,150.703243,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.482157,150.532545,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-31.430488,152.62903,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,16,Australia,AU,New South Wales,-29.48541,153.103833,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260S,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-31.938701,152.432266,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-28.258658,153.401753,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.872021,153.339182,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-29.488798,153.094048,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-29.485104,153.103827,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.630249,152.787206,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150U,1,,occurrenceRemarks withheld,2022,6,3,Australia,AU,New South Wales,-31.782474,152.710377,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.439319,150.604709,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OIXR16111000;OMFZ2303230D,1,FEMALE,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-34.098106,150.808212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435985,150.615892,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.436094,150.616411,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003981,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-28.574486,153.517315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.439694,150.619747,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.813572,152.82356,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-34.441219,150.616592,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103003,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-32.706147,152.066015,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072701;OLHP23072702;OLHP23072703,1,,occurrenceRemarks withheld,2023,5,29,Australia,AU,New South Wales,-31.615984,152.186343,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260A,1,,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-34.197216,150.792316,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,2,15,Australia,AU,New South Wales,-31.457663,152.922488,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-36.450213,149.978195,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,16,Australia,AU,New South Wales,-36.06528,149.311703,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.38705,150.631701,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150U,1,,occurrenceRemarks withheld,2024,1,17,Australia,AU,New South Wales,-31.782134,152.710489,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-33.712248,150.786059,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-29.53837,153.01269,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-33.71767,150.784127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.482226,150.532837,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-28.676944,153.363,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.426138,150.597828,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-33.704008,150.787259,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,2,7,Australia,AU,New South Wales,-31.485116,152.918173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.390005,150.626484,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-30.193444,153.033527,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.391586,150.644863,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-31.448332,152.894394,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-28.828351,153.323839,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.453131,150.596957,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.454134,150.606234,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,4,21,Australia,AU,New South Wales,-31.305746,152.86892,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140O,1,,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-32.759345,152.103437,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,4,13,Australia,AU,New South Wales,-31.425973,152.878747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.446355,150.51375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.494238,150.640705,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.734126,153.478762,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.422293,150.607686,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2022,10,10,Australia,AU,New South Wales,-34.101384,150.811897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.399267,150.625701,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.446338,150.513794,EPSG:4326 +HUMAN_OBSERVATION,OJJS19022501;ODMP21050503,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-32.714185,151.780333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.396813,150.641954,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.397585,150.640355,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-29.478361,153.104004,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-29.49011,153.10747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.395122,150.62907,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,13,Australia,AU,New South Wales,-29.490194,153.110511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.394488,150.630338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.42729,150.60045,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-34.213583,150.798583,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-31.461235,152.916857,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-29.490301,153.108231,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.463753,150.5239,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.433425,150.616378,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210X,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-32.708155,152.067434,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.92441,152.35899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.448058,150.516354,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.395789,150.640743,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2020,6,5,Australia,AU,New South Wales,-29.667098,152.868018,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-31.92441,152.35899,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-29.485155,153.104154,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,16,Australia,AU,New South Wales,-30.8961,153.036423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.444771,150.514341,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,20,Australia,AU,New South Wales,-29.488083,153.092187,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-29.490278,153.10806,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004100,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-28.850295,153.368965,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-30.39296,152.94056,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130B,1,MALE,occurrenceRemarks withheld,2023,7,22,Australia,AU,New South Wales,-30.885804,153.071467,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.445478,150.514983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.386964,150.631475,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-29.667378,152.867932,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-31.889461,152.444452,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.436991,150.603274,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-29.489624,153.110635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.448885,150.618115,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419124,150.610246,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,5,20,Australia,AU,New South Wales,-28.749883,153.343996,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-31.468191,152.90863,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,16,Australia,AU,New South Wales,-28.397367,153.557006,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-29.476717,153.104959,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-30.32312,153.1031,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,3,23,Australia,AU,New South Wales,-33.780771,150.103604,EPSG:4326 +HUMAN_OBSERVATION,OJMM08020900,1,,occurrenceRemarks withheld,2022,1,2,Australia,AU,New South Wales,-33.993767,151.015549,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,7,6,Australia,AU,New South Wales,-34.096545,150.98585,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-32.015229,151.990138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.427292,150.604693,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221T,1,,occurrenceRemarks withheld,2020,12,30,Australia,AU,New South Wales,-32.72787,152.0356,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-32.656069,151.655574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.463131,150.519456,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-29.049454,152.934952,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-31.438352,152.919477,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2024,6,6,Australia,AU,New South Wales,-31.91053,152.37867,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020I,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-32.708121,152.067965,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003956,1,,occurrenceRemarks withheld,2023,4,19,Australia,AU,New South Wales,-28.824272,153.303608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.455219,150.519625,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.00383,150.993251,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-29.485571,153.103806,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-28.6551,153.46253,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.446595,150.514929,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.11539,150.81153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.439256,150.604265,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070I,1,MALE,occurrenceRemarks withheld,2020,12,19,Australia,AU,New South Wales,-32.570505,151.782387,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.465011,150.522372,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160G,1,MALE,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-30.332939,152.621789,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435709,150.616085,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-29.489519,153.103935,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-34.208131,150.784611,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.421179,150.627355,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003939,1,MALE,occurrenceRemarks withheld,2023,1,10,Australia,AU,New South Wales,-28.836932,153.137558,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.432999,150.611646,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-33.708864,150.785865,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101K,1,,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-31.41371,152.897073,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,3,24,Australia,AU,New South Wales,-31.46026,152.913536,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.297781,149.316407,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.449795,150.605672,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,3,16,Australia,AU,New South Wales,-34.09004,150.98807,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052003,1,,occurrenceRemarks withheld,2024,4,8,Australia,AU,New South Wales,-31.93319,152.41279,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.447296,150.518782,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.463843,150.525236,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,23,Australia,AU,New South Wales,-28.3967,153.5578,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211T,1,,occurrenceRemarks withheld,2022,11,14,Australia,AU,New South Wales,-32.69137,151.692628,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.418535,150.426635,EPSG:4326 +HUMAN_OBSERVATION,OGEM18052300,1,,occurrenceRemarks withheld,2023,6,21,Australia,AU,New South Wales,-36.511881,149.955116,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.388217,150.630994,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-30.52295,152.623477,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210W,1,,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-32.643446,151.62839,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300K,1,,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-32.821996,151.551593,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.444924,150.515196,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.466038,150.521884,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,29,Australia,AU,New South Wales,-29.488914,153.101762,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.46582,150.520476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.479655,150.533239,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004237,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.931499,153.27253,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-33.428491,150.640647,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100400,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-31.937591,152.41587,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-31.929292,152.378678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.427009,150.605006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.491283,150.638491,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.949626,153.316981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.446323,150.517505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.446409,150.517317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.454248,150.608396,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.420866,150.630268,EPSG:4326 +HUMAN_OBSERVATION,OJJS20020408,1,MALE,occurrenceRemarks withheld,2024,5,22,Australia,AU,New South Wales,-33.982033,150.8973,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-33.75577,150.040415,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-33.715628,150.785333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,13,Australia,AU,New South Wales,-34.439871,150.615879,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-30.404143,151.722038,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.447614,150.517619,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.438959,150.604295,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,30,Australia,AU,New South Wales,-29.490208,153.108076,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-31.12411,150.00819,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-28.686299,153.607904,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.42866,150.60089,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-29.490124,153.110544,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,2,10,Australia,AU,New South Wales,-32.739839,152.084204,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150O,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-28.817396,153.303468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.420563,150.628123,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.959344,153.395419,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.554124,150.021287,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.383922,150.622894,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-28.825978,153.322496,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004062,1,,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.839339,153.398949,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,9,,Australia,AU,New South Wales,-34.514,150.595561,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.439217,150.619815,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110H,1,,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-32.687204,151.689383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.419712,150.63536,EPSG:4326 +HUMAN_OBSERVATION,OPUR19080600,1,,occurrenceRemarks withheld,2022,2,9,Australia,AU,New South Wales,-29.735127,152.92932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.457798,150.607359,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,11,Australia,AU,New South Wales,-28.674533,153.611289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.468011,150.520476,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,MALE,occurrenceRemarks withheld,2024,3,2,Australia,AU,New South Wales,-34.198469,150.792974,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100Y,1,MALE,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-32.50942,151.82212,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-31.44028,152.883981,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,17,Australia,AU,New South Wales,-29.480644,153.089837,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,3,29,Australia,AU,New South Wales,-33.773306,150.057881,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,1,7,Australia,AU,New South Wales,-31.438559,152.908472,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004157,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-28.939564,153.277528,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-32.819711,151.437207,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307101K,1,,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-34.206821,150.652498,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-29.478847,153.104155,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-29.490871,153.109256,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290K,1,,occurrenceRemarks withheld,2023,12,2,Australia,AU,New South Wales,-31.965647,152.398902,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2024,1,13,Australia,AU,New South Wales,-31.474461,152.918537,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,12,6,Australia,AU,New South Wales,-28.397415,153.557034,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.466736,150.524302,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,22,Australia,AU,New South Wales,-31.467006,152.908825,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003899,1,,occurrenceRemarks withheld,2023,1,21,Australia,AU,New South Wales,-28.888717,153.299324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.458264,150.664052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.435855,150.517009,EPSG:4326 +HUMAN_OBSERVATION,OPXE96061101,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.872249,153.260809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.485609,150.637867,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,MALE,occurrenceRemarks withheld,2020,12,25,Australia,AU,New South Wales,-31.933093,152.415508,EPSG:4326 +HUMAN_OBSERVATION,OJJS19022501;ODMP21050503,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-32.714185,151.780333,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-34.509597,150.533272,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-28.885863,153.436019,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-28.383321,153.562022,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152G,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-28.827843,153.208025,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-31.464075,152.923476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.46575,150.522372,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,4,22,Australia,AU,New South Wales,-31.479919,152.921736,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.924451,152.372502,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003804,1,,occurrenceRemarks withheld,2023,3,7,Australia,AU,New South Wales,-28.850904,153.314681,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.435454,150.603481,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,8,Australia,AU,New South Wales,-33.709203,150.785902,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030I,1,,occurrenceRemarks withheld,2022,5,28,Australia,AU,New South Wales,-31.210203,152.962076,EPSG:4326 +HUMAN_OBSERVATION,OJJS19051305,1,,occurrenceRemarks withheld,2022,6,14,Australia,AU,New South Wales,-32.033006,152.529336,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.451034,150.515548,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132M,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.471134,152.924479,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.427188,150.603978,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003881,1,,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-28.827209,153.318036,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,12,29,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181M,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-28.883003,153.352564,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-30.382351,152.934926,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022522,1,,occurrenceRemarks withheld,2022,12,12,Australia,AU,New South Wales,-32.725433,152.077095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.462212,150.534634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.455334,150.519513,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,18,Australia,AU,New South Wales,-29.490222,153.108231,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080100,1,,occurrenceRemarks withheld,2023,12,17,Australia,AU,New South Wales,-30.240612,153.043825,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,24,Australia,AU,New South Wales,-32.706026,152.063481,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250P,1,,occurrenceRemarks withheld,2024,9,26,Australia,AU,New South Wales,-32.776498,152.110571,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.443569,152.898271,EPSG:4326 +HUMAN_OBSERVATION,OPXE96061101,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.966716,153.409056,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-30.090977,152.133996,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-36.459771,149.965237,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-29.484362,153.104066,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,2,3,Australia,AU,New South Wales,-31.96151,152.56322,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004159,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.387262,153.565849,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-29.486715,153.103237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.439388,150.619811,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308250D,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-32.663575,152.174569,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.827996,153.303174,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,7,12,Australia,AU,New South Wales,-31.462006,152.922191,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-29.490857,153.109267,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,2,13,Australia,AU,New South Wales,-31.444782,152.916477,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.395104,150.629059,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-31.668887,152.809365,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.420634,150.63083,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004235,1,,occurrenceRemarks withheld,2023,8,29,Australia,AU,New South Wales,-28.330362,153.409804,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.464052,150.525328,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.184232,153.003613,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,5,12,Australia,AU,New South Wales,-32.574698,151.776189,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,16,Australia,AU,New South Wales,-36.127793,149.307606,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,12,11,Australia,AU,New South Wales,-31.470617,152.90777,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.438068,150.604396,EPSG:4326 +HUMAN_OBSERVATION,ODFK2408220N,1,MALE,occurrenceRemarks withheld,2024,7,12,Australia,AU,New South Wales,-31.72525,152.070405,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,2,2,Australia,AU,New South Wales,-31.96151,152.56322,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.420681,150.627217,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001963,1,FEMALE,occurrenceRemarks withheld,2022,9,23,Australia,AU,New South Wales,-32.020247,152.466547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.429677,150.606812,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.161712,152.819043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.420688,150.630861,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004054,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-28.621112,152.977836,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.396365,150.644424,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,19,Australia,AU,New South Wales,-28.873182,153.377137,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-32.671492,151.706798,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-28.660666,153.410861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.465662,150.521144,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2022,6,25,Australia,AU,New South Wales,-32.779394,151.923198,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-29.490586,153.108135,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,1,Australia,AU,New South Wales,-28.74018,153.306909,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.418877,150.632751,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,6,9,Australia,AU,New South Wales,-28.872387,153.337491,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.459106,150.521915,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-28.580227,153.238101,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,5,20,Australia,AU,New South Wales,-31.724545,152.173215,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,30,Australia,AU,New South Wales,-28.652831,153.498072,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,14,Australia,AU,New South Wales,-31.476833,152.867422,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,2,19,Australia,AU,New South Wales,-28.369256,153.558418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.439335,150.603729,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.444882,150.514936,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.679675,153.277395,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091805,1,,occurrenceRemarks withheld,2024,8,1,Australia,AU,New South Wales,-32.70125,152.06478,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.450062,150.51648,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,6,Australia,AU,New South Wales,-31.465217,152.92772,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W;ODMP22022508,1,FEMALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-32.738424,152.058972,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004260,1,FEMALE,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-28.865871,153.289662,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.4363,150.615839,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-36.541583,150.016902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.491763,150.639054,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-31.429608,152.897996,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-28.580017,153.510417,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,FEMALE,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-28.955103,153.402012,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-28.82399,153.281771,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-28.4721,152.441841,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-28.662723,153.609367,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.388089,150.624407,EPSG:4326 +HUMAN_OBSERVATION,ODFK24062800,1,MALE,occurrenceRemarks withheld,2024,2,16,Australia,AU,New South Wales,-29.489332,153.102015,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020703,1,,occurrenceRemarks withheld,2020,7,7,Australia,AU,New South Wales,-30.214308,152.802526,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,4,19,Australia,AU,New South Wales,-30.990422,150.24024,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-31.247912,152.723608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.420366,150.627269,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.465828,150.522663,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.813462,153.334493,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,10,24,Australia,AU,New South Wales,-31.649886,152.828692,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-28.602098,153.092506,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.341289,152.604999,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102,1,,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-32.479536,151.892485,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.38881,150.630879,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-28.627914,153.477969,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.439435,150.603759,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.481191,150.532519,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,11,Australia,AU,New South Wales,-28.821282,153.312962,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.556255,149.992311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.458518,150.66177,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122105,1,MALE,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-31.454671,152.908621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.420433,150.630237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.434241,150.615691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.451371,150.518389,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,11,Australia,AU,New South Wales,-31.629236,152.786779,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150Q,1,,occurrenceRemarks withheld,2020,7,1,Australia,AU,New South Wales,-32.569474,151.178816,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,MALE,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-28.87422,153.278851,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002739,1,,occurrenceRemarks withheld,2022,4,30,Australia,AU,New South Wales,-29.489746,153.110576,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.424602,150.60452,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.447258,150.512928,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-32.706598,152.06373,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,30,Australia,AU,New South Wales,-28.691744,153.061861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.43896,150.604371,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.449666,152.906957,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,4,22,Australia,AU,New South Wales,-31.914365,152.373836,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,3,19,Australia,AU,New South Wales,-32.705503,152.063534,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111303,1,,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-31.4318,152.9012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.388801,150.630901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.418653,150.632833,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,7,Australia,AU,New South Wales,-28.393378,153.561414,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080302,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.142259,150.789143,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-36.459771,149.965237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.435271,150.618121,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.825211,153.315583,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022414,1,,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-32.698012,151.765361,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003838,1,,occurrenceRemarks withheld,2023,6,26,Australia,AU,New South Wales,-28.824673,153.32569,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,3,12,Australia,AU,New South Wales,-32.706385,152.063599,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,21,Australia,AU,New South Wales,-33.71767,150.784017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.392521,150.63817,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-31.920908,152.372097,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-31.630003,152.783266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.421028,150.626511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.446118,150.517609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.38994,150.625453,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.388235,150.630982,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-32.706509,152.063531,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003915,1,,occurrenceRemarks withheld,2023,5,25,Australia,AU,New South Wales,-28.819443,153.600875,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,15,Australia,AU,New South Wales,-29.489106,153.101724,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.400505,150.651063,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.445979,150.512999,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.450071,150.516523,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,1,Australia,AU,New South Wales,-29.489349,153.119529,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.38994,150.625453,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,7,21,Australia,AU,New South Wales,-30.642352,152.971426,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-31.439956,152.924691,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.869026,153.435953,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.444588,150.514629,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-29.485744,153.103817,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-31.642558,152.79338,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-28.383579,153.561989,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.68121,153.60155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.429677,150.606812,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,12,Australia,AU,New South Wales,-28.824458,153.288462,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.419019,150.609466,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031415,1,,occurrenceRemarks withheld,2022,3,27,Australia,AU,New South Wales,-33.494664,149.557445,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,13,Australia,AU,New South Wales,-28.331098,153.561373,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.38974,150.628156,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-28.680566,153.536587,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,5,22,Australia,AU,New South Wales,-31.919799,152.378929,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.437554,150.605739,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.441459,150.517714,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,16,Australia,AU,New South Wales,-29.000055,153.37553,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,1,FEMALE,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-28.62709,153.428401,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,FEMALE,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-28.817616,153.303633,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-33.148599,151.074088,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-31.125883,152.809947,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.412441,150.60181,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-28.928842,153.272904,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.465816,150.522479,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.445773,150.51442,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-31.902418,152.396884,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-33.691925,149.56022,EPSG:4326 +HUMAN_OBSERVATION,OLHP24062101,1,,occurrenceRemarks withheld,2024,5,17,Australia,AU,New South Wales,-31.473286,152.913511,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-33.129661,150.691115,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.457697,152.873554,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.726984,152.011509,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.42082,150.629726,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.436848,150.603757,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2020,5,31,Australia,AU,New South Wales,-33.999119,150.899707,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-33.431129,150.641382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.432009,150.612164,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-31.640827,152.792607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.388253,150.630971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.43274,150.609924,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436054,150.615749,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.420758,150.626997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.427115,150.603958,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.449477,150.516095,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-31.444286,152.923886,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,22,Australia,AU,New South Wales,-28.649451,153.362191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.423763,150.637389,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.492801,150.640081,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,3,26,Australia,AU,New South Wales,-33.764796,150.045814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.426357,150.605296,EPSG:4326 +HUMAN_OBSERVATION,OPUR21051601,1,,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-33.171595,151.245715,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.491405,150.638748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.491299,150.638381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.444615,150.51465,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.394713,150.642915,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,Obs_2557,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-33.541888,150.640251,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.45933,150.534762,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-31.85809,152.355785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.420728,150.630109,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-29.485548,153.103902,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-32.691489,151.699262,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004140,1,FEMALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.890701,153.22866,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.423267,150.60496,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-31.442526,152.901458,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.474334,152.898595,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-31.480897,152.91598,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-28.960617,153.402665,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.397626,150.640626,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,12,11,Australia,AU,New South Wales,-31.445707,152.895305,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-29.48583,153.103642,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032806,1,,occurrenceRemarks withheld,2022,5,19,Australia,AU,New South Wales,-32.373539,152.501842,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,9,Australia,AU,New South Wales,-29.489694,153.10504,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-29.484544,153.095866,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.394663,150.641688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.437984,150.60515,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.469418,150.527173,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2020,6,15,Australia,AU,New South Wales,-30.202024,152.773803,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-31.927822,152.403889,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-32.212387,152.19419,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,MALE,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-34.016682,150.885703,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-28.588934,153.549457,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.42378,150.637334,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011200,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.952836,152.187404,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-32.633094,151.709065,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,4,21,Australia,AU,New South Wales,-29.485468,153.103854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.4519,150.518232,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,3,26,Australia,AU,New South Wales,-31.459057,152.925149,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-33.7756,150.062574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.396606,150.644276,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,12,28,Australia,AU,New South Wales,-34.095597,150.979631,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,3,8,Australia,AU,New South Wales,-32.706283,152.063364,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-31.161712,152.819043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.420913,150.630343,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.450966,150.515278,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403060F,1,,occurrenceRemarks withheld,2024,2,15,Australia,AU,New South Wales,-31.453309,152.879613,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004077,1,,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-28.688273,153.608593,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,3,24,Australia,AU,New South Wales,-33.667782,149.526899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.427274,150.603791,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033009,1,,occurrenceRemarks withheld,2020,6,19,Australia,AU,New South Wales,-33.127471,151.281077,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.436218,150.520666,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.127738,150.813985,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.388767,150.630543,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-31.455989,152.907653,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.393488,150.643874,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-36.572611,149.995573,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,15,Australia,AU,New South Wales,-29.490222,153.110511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.427274,150.603791,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.432393,150.605549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.427024,150.604831,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-31.480308,152.914032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.42094,150.627579,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-36.572611,149.995573,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.450062,150.51648,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,17,Australia,AU,New South Wales,-32.723503,152.077694,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050Y,1,,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-31.47137,152.925788,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-31.85809,152.355785,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435348,150.616062,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-31.85809,152.355785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.421041,150.630002,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-31.450291,152.89159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.452599,150.522924,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-29.489503,153.103918,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.234745,152.693612,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.43661,150.519109,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070D,1,MALE,occurrenceRemarks withheld,2020,12,27,Australia,AU,New South Wales,-32.737851,152.039612,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-28.932217,153.276362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.420764,150.630086,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-31.633444,152.78408,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.459286,150.516141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.445828,150.603359,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.436111,150.602505,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-34.150074,150.82296,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-29.489577,153.103881,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,2,12,Australia,AU,New South Wales,-32.707654,152.067915,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-31.44496,152.914944,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.397977,150.639659,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,3,12,Australia,AU,New South Wales,-32.705827,152.063492,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.432415,150.612185,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.810892,152.823771,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.438945,150.520008,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.418805,150.609156,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-34.441075,150.616607,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,12,11,Australia,AU,New South Wales,-34.098235,150.808608,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-29.4906,153.108167,EPSG:4326 +HUMAN_OBSERVATION,OJJS15061602,1,,occurrenceRemarks withheld,2020,6,28,Australia,AU,New South Wales,-29.485105,153.095559,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.452655,150.519908,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,22,Australia,AU,New South Wales,-28.676152,153.289542,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-29.50573,152.824852,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.810388,152.8249,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.836062,153.287996,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-28.806664,153.280421,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-28.958481,153.433264,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.491815,150.638987,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2024,3,25,Australia,AU,New South Wales,-29.609964,150.862976,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.420591,150.609203,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.446713,150.515828,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.453807,150.51712,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.419928,150.60251,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-36.153498,149.351047,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,7,25,Australia,AU,New South Wales,-32.706589,152.06373,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.44876,150.516758,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,1,23,Australia,AU,New South Wales,-31.458849,152.926072,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.497148,149.957744,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-31.640651,152.778774,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-28.383603,153.56215,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-33.711735,150.785312,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,9,23,Australia,AU,New South Wales,-31.444068,152.885466,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082308;ODFK23082309;ODFK2308230A;ODFK2308230B,1,FEMALE,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.140294,150.793442,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401110C,1,,occurrenceRemarks withheld,2023,12,18,Australia,AU,New South Wales,-32.720929,152.077777,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-30.094961,152.130128,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.42378,150.637334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.397283,150.640581,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.420956,150.62697,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.458331,150.659566,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-33.708,150.78465,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-31.465554,152.911934,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.419432,150.632996,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003818,1,FEMALE,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-28.694936,153.496872,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-31.463833,152.921051,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308251D,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-32.661444,152.175427,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-28.387761,153.555503,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.533488,152.83529,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-29.66721,152.86819,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-31.465057,152.870255,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.394244,150.629856,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-28.615874,153.399429,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.456686,150.608142,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,24,Australia,AU,New South Wales,-29.485174,153.104079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.421745,150.636097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.394631,150.635848,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-31.457821,152.917748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435817,150.520025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.437492,150.605806,EPSG:4326 +HUMAN_OBSERVATION,OJJS18041601,1,,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-29.432852,153.167614,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,6,25,Australia,AU,New South Wales,-28.84987,153.03081,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-34.438985,150.61671,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.432123,150.611998,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.419008,150.610293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.427194,150.604783,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022606,1,,occurrenceRemarks withheld,2023,4,3,Australia,AU,New South Wales,-31.578855,149.337997,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-33.766537,150.052241,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190O,1,,occurrenceRemarks withheld,2024,8,7,Australia,AU,New South Wales,-31.947618,152.386918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-34.439901,150.616521,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,3,13,Australia,AU,New South Wales,-31.485816,152.916175,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-29.321941,149.958366,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-34.051962,150.846997,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101309,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-28.685659,153.515757,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.453495,150.518207,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.387355,150.631148,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.388163,150.624481,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.420323,150.630153,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,25,Australia,AU,New South Wales,-29.489507,153.103902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.436573,150.607671,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240J,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-32.689158,151.657688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.418999,150.609379,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-29.488377,153.110281,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.465799,150.521641,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-29.492804,153.109669,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-29.487901,153.091763,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-32.709086,152.064599,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,9,25,Australia,AU,New South Wales,-31.246497,152.758981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.453618,150.517136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.419867,150.635464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.419214,150.609319,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.465339,150.521655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.418315,150.632614,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.420557,150.609313,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-29.484025,153.095384,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021503,1,,occurrenceRemarks withheld,2024,1,20,Australia,AU,New South Wales,-31.5351,152.863798,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.420842,150.630389,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-28.959199,153.392856,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-30.330867,151.640641,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,3,13,Australia,AU,New South Wales,-33.712583,150.785146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.388174,150.625035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.452923,150.519791,EPSG:4326 +HUMAN_OBSERVATION,Obs_1482,1,,occurrenceRemarks withheld,2022,12,28,Australia,AU,New South Wales,-32.611534,151.855343,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,5,6,Australia,AU,New South Wales,-31.452162,152.912557,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.419126,150.610333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.447607,150.517238,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-28.831062,153.279948,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-30.39354,152.9407,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.436516,150.516696,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,4,29,Australia,AU,New South Wales,-30.50157,151.66621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.426727,150.604416,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,5,Australia,AU,New South Wales,-31.475378,152.920242,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150Z,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.02843,151.04178,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,2,16,Australia,AU,New South Wales,-30.50157,151.66621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.490881,150.638676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.447437,150.519072,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.433953,150.614796,EPSG:4326 +HUMAN_OBSERVATION,OJMM08020900,1,MALE,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-34.033559,151.030153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.454127,150.520473,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-32.712723,152.069953,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.455911,150.606749,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.395882,150.643676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.485414,150.637099,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.435409,150.521212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.448848,150.515776,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.445932,150.515111,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-28.823823,153.323139,EPSG:4326 +HUMAN_OBSERVATION,ODFK24092407,1,FEMALE,occurrenceRemarks withheld,2024,9,8,Australia,AU,New South Wales,-34.019721,150.990241,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.810938,152.823968,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.44078,150.60384,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17362,152.90868,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2024,3,31,Australia,AU,New South Wales,-33.679947,149.467721,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-31.64099,152.79369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418823,150.632741,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-31.480341,152.921613,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.143231,150.795187,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070601,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-34.528943,149.723822,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003904,1,,occurrenceRemarks withheld,2023,6,10,Australia,AU,New South Wales,-28.821842,153.345513,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,24,Australia,AU,New South Wales,-29.489587,153.103945,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OJJS20041402;OJJS20041409;OMFZ23033002,1,,occurrenceRemarks withheld,2023,1,10,Australia,AU,New South Wales,-32.772039,152.084703,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,7,22,Australia,AU,New South Wales,-33.776504,150.05965,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,16,Australia,AU,New South Wales,-28.660502,153.592747,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130L,1,,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-31.940063,152.41096,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2020,7,29,Australia,AU,New South Wales,-29.400071,152.725575,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,3,7,Australia,AU,New South Wales,-31.914578,152.373609,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,6,14,Australia,AU,New South Wales,-33.978417,150.952449,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-32.710536,152.06545,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500,1,,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-28.48505,153.52658,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.450405,150.521389,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,7,5,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.431919,150.61357,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.464849,150.521484,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221Z,1,,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-32.696456,151.692859,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.388898,150.624254,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.079153,150.828648,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2023,2,22,Australia,AU,New South Wales,-31.45223,152.904889,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.465374,150.52161,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.38802,150.631989,EPSG:4326 +HUMAN_OBSERVATION,OMZS16021200,1,,occurrenceRemarks withheld,2020,7,13,Australia,AU,New South Wales,-34.546593,150.19405,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.949626,153.316981,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.44268,152.845857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.464217,150.523669,EPSG:4326 +HUMAN_OBSERVATION,ODMP21050300,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-33.981805,150.991996,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.191234,152.028358,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.14609,150.79572,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-29.487948,153.103221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.451591,150.517197,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-32.738597,151.884006,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.284119,152.865195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.388125,150.624373,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.43433,150.616059,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-29.489918,153.103377,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,4,19,Australia,AU,New South Wales,-31.583494,152.775888,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-29.485557,153.104031,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,21,Australia,AU,New South Wales,-32.018393,151.961159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.446347,150.513826,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-28.972711,153.428951,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-29.490077,153.107395,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.914518,152.373699,EPSG:4326 +HUMAN_OBSERVATION,ODMP10100606,1,,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-29.681698,152.933658,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-33.704553,150.785291,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.413693,150.59578,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,9,8,Australia,AU,New South Wales,-29.789508,150.938952,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-31.439029,152.905161,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866277,153.367822,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-31.472923,152.911315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.455389,150.659876,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2021,12,30,Australia,AU,New South Wales,-32.352909,151.82202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.454029,150.524503,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,2,6,Australia,AU,New South Wales,-31.443058,152.8933,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-29.48636,153.103382,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150B,1,,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-28.659644,153.617473,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.44632,150.513805,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2023,4,16,Australia,AU,New South Wales,-34.071086,150.838075,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-29.485604,153.103436,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-29.484343,153.104004,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-31.475207,152.922894,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-30.3352,153.07149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.49188,150.639987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.427115,150.605362,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.389283,150.628767,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003899,1,MALE,occurrenceRemarks withheld,2023,2,12,Australia,AU,New South Wales,-28.888717,153.299324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.42753,150.604915,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.43879,150.617314,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-30.367895,153.018597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.395693,150.641376,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-29.02485,153.412705,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-30.367895,153.018597,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-29.4793,153.104079,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260E,1,,occurrenceRemarks withheld,2020,5,19,Australia,AU,New South Wales,-32.730415,152.039928,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-28.468062,152.284801,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.447127,150.513139,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-30.296253,152.621538,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-30.191711,152.780153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.39789,150.622129,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2020,9,25,Australia,AU,New South Wales,-31.448906,152.822057,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-29.485767,153.10372,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.491349,150.639088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.420047,150.631238,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-31.465625,152.856357,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,7,3,Australia,AU,New South Wales,-32.764669,152.036297,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2022,4,4,Australia,AU,New South Wales,-32.710111,152.065247,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051402,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-30.19323,152.781895,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.737359,152.029143,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150D,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-31.459619,152.928515,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.491493,150.639094,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290N,1,,occurrenceRemarks withheld,2022,5,11,Australia,AU,New South Wales,-32.709636,152.061344,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-31.26337,152.8278,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-34.035121,150.873769,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,5,6,Australia,AU,New South Wales,-31.448028,152.890236,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160J,1,,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-32.733438,152.101771,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-31.642535,152.793417,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-31.456425,152.92928,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,8,28,Australia,AU,New South Wales,-34.124693,150.812345,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-32.70627,152.063401,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270V,1,,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-31.691318,152.719371,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-29.489732,153.106638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.390243,150.629001,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-28.53064,152.9738,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.436314,150.618897,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.488168,150.637315,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220O,1,,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-32.736858,152.105345,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-34.522986,150.600433,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,27,Australia,AU,New South Wales,-29.490152,153.110511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.455553,150.608751,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150Q,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-30.587777,151.300833,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.2256,151.714357,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.455548,150.606629,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,26,Australia,AU,New South Wales,-36.013252,149.377833,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2024,2,2,Australia,AU,New South Wales,-31.450081,152.921534,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-33.706769,150.787065,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-31.305093,152.866068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.432424,150.612218,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.453148,150.519305,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,12,Australia,AU,New South Wales,-31.473747,152.911279,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,6,24,Australia,AU,New South Wales,-31.48996,152.913295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.396457,150.640289,EPSG:4326 +HUMAN_OBSERVATION,ODMP23033101,1,,occurrenceRemarks withheld,2022,1,5,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-31.629548,152.786549,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152U,1,,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-28.555634,153.0756,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-31.441579,152.908016,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.424419,150.604405,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-34.19051,150.79959,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-29.590572,152.914194,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.394207,150.644245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.384737,150.626785,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140Y,1,,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-28.525889,153.08864,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-33.717005,150.785297,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-29.489956,153.101193,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011203,1,,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-30.468,151.638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.420448,150.630095,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.458408,150.661708,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-34.127969,150.822863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.436414,150.615238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.42004,150.631347,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.384411,150.625348,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250Q,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-32.737201,152.079053,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-29.477497,153.10446,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,18,Australia,AU,New South Wales,-29.487971,153.097572,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.14482,150.79369,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,2,14,Australia,AU,New South Wales,-34.128146,150.980807,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-28.820007,153.298434,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-30.251187,152.790445,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.386735,150.626174,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-28.585441,153.071682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.449116,150.516541,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,7,25,Australia,AU,New South Wales,-32.720107,152.167168,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-28.399064,153.555888,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.435425,150.521102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.420802,150.608915,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.388417,150.631521,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.395561,150.641543,EPSG:4326 +HUMAN_OBSERVATION,OJJS20072903,1,MALE,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-31.474412,152.917599,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.448491,150.516831,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.402867,150.64075,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,FEMALE,occurrenceRemarks withheld,2023,6,19,Australia,AU,New South Wales,-28.824827,153.218502,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102110,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-32.656556,151.649042,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.43007,150.607976,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,1,30,Australia,AU,New South Wales,-29.486963,153.102813,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-32.223426,152.189959,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,FEMALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-29.353932,150.200465,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181Q,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-28.385806,153.561776,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140P,1,MALE,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-31.997967,152.480093,EPSG:4326 +HUMAN_OBSERVATION,ODMP21060800,1,,occurrenceRemarks withheld,2022,2,9,Australia,AU,New South Wales,-29.734975,152.929617,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.387041,150.630798,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,2,18,Australia,AU,New South Wales,-31.434723,152.908106,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260C,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-32.710932,152.060972,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,8,Australia,AU,New South Wales,-29.490161,153.108151,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-30.082446,152.6046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.421817,150.637476,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-31.479547,152.921094,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.575848,150.016461,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.420406,150.630238,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.455285,150.661011,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-35.059619,150.117587,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,8,9,Australia,AU,New South Wales,-31.461992,152.896633,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.46626,150.523053,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-33.717982,150.784414,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.44725,150.518783,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.428818,150.598861,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150I,1,FEMALE,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-28.825055,153.325475,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003826,1,FEMALE,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-28.808619,153.510582,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-31.489597,151.709135,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,4,10,Australia,AU,New South Wales,-28.68098,153.364087,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.466861,150.520663,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-34.438456,150.615941,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,4,21,Australia,AU,New South Wales,-31.467171,152.877785,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-28.33191,153.55905,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419666,150.635328,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.834226,153.364275,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,2,Australia,AU,New South Wales,-29.489012,153.098066,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-29.488438,153.103623,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,1,16,Australia,AU,New South Wales,-31.933254,152.415213,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-29.56628,152.74925,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-31.431324,152.895739,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503;ODFK23090504,1,,occurrenceRemarks withheld,2023,6,12,Australia,AU,New South Wales,-30.416721,151.624378,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-29.489545,153.103956,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-31.465414,152.927896,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2024,4,9,Australia,AU,New South Wales,-33.526971,150.659523,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-28.673632,153.465972,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.928404,152.385243,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-29.489391,153.101719,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154L,1,,occurrenceRemarks withheld,2022,9,17,Australia,AU,New South Wales,-28.38531,153.561944,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-28.349043,153.562886,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,4,24,Australia,AU,New South Wales,-31.4292,152.913417,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.453735,150.520692,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-30.413154,152.996446,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-28.226932,153.494107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.395635,150.625792,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-34.080418,150.849548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.451564,150.51723,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.390064,150.630909,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OMFZ23033002;ODFK24051300,1,,occurrenceRemarks withheld,2023,2,8,Australia,AU,New South Wales,-32.123382,152.026172,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.500349,150.563856,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,7,3,Australia,AU,New South Wales,-32.706797,152.064475,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.456604,150.519486,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,3,5,Australia,AU,New South Wales,-31.912724,152.359068,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004238,1,FEMALE,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.8555,153.323456,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.389557,150.627073,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-29.489881,153.101188,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,22,Australia,AU,New South Wales,-31.459523,152.928637,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150P,1,,occurrenceRemarks withheld,2024,1,21,Australia,AU,New South Wales,-30.888204,153.073313,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.420306,150.62739,EPSG:4326 +HUMAN_OBSERVATION,SHARM,1,,occurrenceRemarks withheld,2021,1,,Australia,AU,New South Wales,-32.891945,149.539442,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.464271,150.520979,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,17,Australia,AU,New South Wales,-30.608559,152.889196,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.834226,153.364275,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.412857,150.597751,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.418343,150.632646,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,2,11,Australia,AU,New South Wales,-28.391217,153.561829,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.43895,150.604295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.42646,150.603651,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-28.85164,153.31413,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.59482,149.956941,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001816,1,,occurrenceRemarks withheld,2020,8,4,Australia,AU,New South Wales,-28.717485,153.118509,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.59482,149.956941,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,FEMALE,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-28.847839,153.302055,EPSG:4326 +HUMAN_OBSERVATION,OKEM14042900,1,FEMALE,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-33.978324,150.988759,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100R,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-29.795667,150.924176,EPSG:4326 +HUMAN_OBSERVATION,OLHP24020501,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.171211,152.949789,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.39344,150.641385,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,7,26,Australia,AU,New South Wales,-28.874361,153.422407,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,9,22,Australia,AU,New South Wales,-28.866354,153.316405,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-34.439938,150.618424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.425926,150.598041,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-28.257686,153.400571,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,12,Australia,AU,New South Wales,-28.32819,153.467897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.434528,150.606837,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.454468,150.517253,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003813,1,,occurrenceRemarks withheld,2023,6,21,Australia,AU,New South Wales,-28.889469,153.299068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.392883,150.632646,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-29.737034,151.057947,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.44756,150.51761,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2020,6,13,Australia,AU,New South Wales,-34.069334,150.860742,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-30.886881,153.040736,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-31.476303,152.908694,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.457368,150.518451,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-31.466435,152.9,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.066811,150.882095,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-33.526821,150.658781,EPSG:4326 +HUMAN_OBSERVATION,OJJS10032403,1,,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-28.26577,153.413761,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-31.429599,152.911108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.446182,150.51765,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-32.71096,152.065178,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.489254,150.63379,EPSG:4326 +HUMAN_OBSERVATION,OLHP2407120D,1,,occurrenceRemarks withheld,2024,6,25,Australia,AU,New South Wales,-28.723421,153.512127,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-36.115541,150.060932,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-28.597991,153.089215,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100515,1,,occurrenceRemarks withheld,2023,12,28,Australia,AU,New South Wales,-31.473211,152.895827,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.444694,150.514528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.444607,150.520037,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,19,Australia,AU,New South Wales,-31.435116,152.898387,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-32.639258,151.719185,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO;OJJS20110901,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-30.667309,152.955565,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.38385,150.622928,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.390087,150.629777,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-29.488065,153.092144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.485703,150.636166,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081006,1,,occurrenceRemarks withheld,2023,3,2,Australia,AU,New South Wales,-29.490142,153.100767,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427068,150.604765,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.450931,150.522875,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.420865,150.6288,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004150,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-28.825967,153.296358,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.450151,150.516434,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-29.490684,153.109363,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-29.488363,153.09282,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-34.483871,150.567012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.458381,150.659793,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,16,Australia,AU,New South Wales,-33.712935,150.784899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.449712,150.515696,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.394709,150.643644,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.456674,150.514777,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-29.490586,153.108205,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.452618,150.519854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.465036,150.522251,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.446537,150.514266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.494283,150.640736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-34.448941,150.515447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.447345,150.514569,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-34.029758,150.990022,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111510,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-33.742033,150.641557,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427068,150.604765,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202241L,1,,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-29.560748,152.958955,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,12,2,Australia,AU,New South Wales,-34.02876,150.989154,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.418029,150.632753,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.197088,152.969665,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.447061,150.513903,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.343733,152.607518,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.497148,149.957744,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,18,Australia,AU,New South Wales,-33.705671,150.785219,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.451808,150.522588,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-32.71238,152.162082,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-28.864534,153.293928,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.427433,150.603623,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.470384,150.528581,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-29.485146,153.104047,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.654179,152.81106,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.649283,152.818669,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402130C,1,FEMALE,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.885699,152.383566,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.834226,153.364275,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-29.48764,153.102711,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-31.914323,152.373696,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,3,24,Australia,AU,New South Wales,-29.728634,151.08315,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-30.413154,152.996446,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.42371,150.637467,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-31.10136,150.12752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.42378,150.637334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.394629,150.63202,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-29.489605,153.103876,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,17,Australia,AU,New South Wales,-31.431343,152.910811,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17504,152.90656,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-31.475575,152.909428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.389494,150.627086,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-31.403015,152.093798,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-31.933272,152.412804,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.451626,150.517185,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.446421,150.514324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.39273,150.639186,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.417749,150.603083,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-31.480973,152.919099,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.641596,152.792576,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.69032,153.60237,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-32.73127,152.083715,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-31.632709,152.785405,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,30,Australia,AU,New South Wales,-28.87187,153.335403,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.488625,150.637618,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-31.435971,152.91622,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-34.112924,150.801022,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,,occurrenceRemarks withheld,2020,11,21,Australia,AU,New South Wales,-31.877279,148.54409,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,19,Australia,AU,New South Wales,-28.260205,153.402077,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001963,1,,occurrenceRemarks withheld,2024,6,6,Australia,AU,New South Wales,-31.902771,152.389894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.384489,150.622867,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.446457,150.514345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457934,150.531266,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.419127,150.603468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419373,150.63884,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100407,1,,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-34.04509,151.009605,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.491492,150.639051,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,4,12,Australia,AU,New South Wales,-31.131996,150.079785,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-28.614583,153.368221,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220S,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-32.763923,152.087119,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-31.490985,152.876892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-34.439933,150.615856,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.387428,150.63119,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO;OJJS20110901,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-30.648918,152.957701,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090J,1,,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-31.440595,152.921265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.465765,150.520434,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,FEMALE,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-34.061874,150.862399,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.469479,150.527073,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.465834,150.520279,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132B,1,FEMALE,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-31.594859,152.838424,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,11,Australia,AU,New South Wales,-28.689794,153.608429,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,MALE,occurrenceRemarks withheld,2024,2,5,Australia,AU,New South Wales,-31.945874,152.299948,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.390928,150.628079,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-29.807661,152.810624,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.918591,152.376681,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,14,Australia,AU,New South Wales,-33.704205,150.787233,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-32.701662,152.065456,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-31.231404,152.613328,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-31.471416,152.919383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.452484,150.519902,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,7,25,Australia,AU,New South Wales,-32.4936,152.3105,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.446036,150.514455,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,12,28,Australia,AU,New South Wales,-32.706607,152.063677,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.458773,150.656266,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-28.546915,153.496998,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003894,1,,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-28.637699,153.629115,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2024,3,30,Australia,AU,New South Wales,-31.469568,152.910278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.448682,150.617,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.39009,150.630886,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-31.670899,152.808048,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-28.61071,153.205304,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.650407,149.955028,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-28.832358,153.290135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.464863,150.522169,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-28.82055,153.296191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.41878,150.609266,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-28.713344,153.553297,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,25,Australia,AU,New South Wales,-28.404354,153.527643,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.434395,150.616198,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.418999,150.609379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.433767,150.608012,EPSG:4326 +HUMAN_OBSERVATION,ODMP23070402,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-30.40912,152.992784,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,,occurrenceRemarks withheld,2023,3,1,Australia,AU,New South Wales,-31.937801,152.451672,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-29.63079,152.899175,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,20,Australia,AU,New South Wales,-28.464975,152.818579,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.398662,150.640118,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17195,152.9096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.448736,150.516476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.41027,150.597325,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081104,1,,occurrenceRemarks withheld,2023,3,19,Australia,AU,New South Wales,-29.771693,151.041366,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-29.014317,153.015786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.395659,150.646608,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.831137,153.278132,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.464839,150.525468,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,5,1,Australia,AU,New South Wales,-31.470342,152.919934,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-31.467834,152.908105,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-30.376323,152.934681,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.43501,150.615833,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-29.490395,153.108076,EPSG:4326 +HUMAN_OBSERVATION,OJJS18102409,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-32.72173,151.996728,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.461341,150.51964,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.44267,152.84451,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2021,3,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,8,Australia,AU,New South Wales,-29.490194,153.108194,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032104,1,,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-32.737212,152.03531,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,OSYK02050800,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-32.59644,151.80501,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022414,1,,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-32.698016,151.765357,EPSG:4326 +HUMAN_OBSERVATION,Obs_0683,1,MALE,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.659011,153.613603,EPSG:4326 +HUMAN_OBSERVATION,OJJS1912230F,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-29.487854,153.102443,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-29.610298,152.926758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.447622,150.51801,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-33.971509,150.89337,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.3521,152.73246,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2024,4,23,Australia,AU,New South Wales,-30.434623,152.946426,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.420517,150.628048,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,7,18,Australia,AU,New South Wales,-34.492522,150.468386,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.42066,150.630764,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140T,1,,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-28.928747,153.315572,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180M,1,,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-28.939088,153.277501,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2024,4,17,Australia,AU,New South Wales,-33.527032,150.659817,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-31.26453,152.817516,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OJJS19022501;ODMP21050503,1,,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-32.714185,151.780333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.433062,150.613919,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.48542,150.636489,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,25,Australia,AU,New South Wales,-29.36636,153.107287,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.393444,150.639753,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.181472,150.798022,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-29.490413,153.109428,EPSG:4326 +HUMAN_OBSERVATION,BROOS-HO,1,FEMALE,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-31.2246,149.3242,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031535,1,,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-28.531036,152.97363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.463465,150.51949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.420679,150.630861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.451049,150.515395,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-29.485478,153.103865,EPSG:4326 +HUMAN_OBSERVATION,ODMP21070805,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-33.960643,150.928061,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,29,Australia,AU,New South Wales,-33.450598,150.608346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.455288,150.519481,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.497148,149.957744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.453948,150.520979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.429677,150.606812,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122103,1,,occurrenceRemarks withheld,2022,11,5,Australia,AU,New South Wales,-30.887776,153.073011,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,6,Australia,AU,New South Wales,-34.91382,150.0179,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.400226,150.639846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.46609,150.521763,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.423267,150.60496,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-31.446843,152.893471,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419062,150.610302,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-28.35228,153.571052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.452554,150.522892,EPSG:4326 +HUMAN_OBSERVATION,OJJS10010400,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.331337,153.247347,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,FEMALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-31.933346,152.415506,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-28.631954,153.502334,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2024,6,15,Australia,AU,New South Wales,-29.736541,151.05663,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-33.716253,150.784992,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.280976,150.730478,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,11,20,Australia,AU,New South Wales,-31.632241,152.785381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.451699,150.522526,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-31.480109,152.873385,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.39569,150.626302,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,6,Australia,AU,New South Wales,-33.707955,150.785163,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.182518,153.002783,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,7,14,Australia,AU,New South Wales,-28.975112,153.283622,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.418214,150.59787,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.396213,150.642134,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.887087,153.238522,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003977,1,MALE,occurrenceRemarks withheld,2023,1,28,Australia,AU,New South Wales,-28.882121,153.202587,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003855,1,MALE,occurrenceRemarks withheld,2023,3,1,Australia,AU,New South Wales,-28.816625,153.300285,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-34.437863,150.615556,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,FEMALE,occurrenceRemarks withheld,2023,5,2,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-34.019784,150.989341,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-34.440113,150.617233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.398289,150.640411,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.086105,150.978669,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.465684,150.520436,EPSG:4326 +HUMAN_OBSERVATION,Obs_2557,1,MALE,occurrenceRemarks withheld,2024,6,5,Australia,AU,New South Wales,-33.530988,150.636157,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080309,1,FEMALE,occurrenceRemarks withheld,2022,2,14,Australia,AU,New South Wales,-31.469733,152.905823,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020609,1,,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-34.042623,150.871059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.446721,150.516263,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2023,3,24,Australia,AU,New South Wales,-36.056623,149.287624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.420662,150.630873,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.813954,153.296394,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288011,149.960499,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004089,1,FEMALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.861774,153.585514,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.465366,150.52075,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-34.083944,150.836468,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,20,Australia,AU,New South Wales,-29.490161,153.109696,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.438621,150.60684,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,8,28,Australia,AU,New South Wales,-33.995725,150.90303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.466159,150.522066,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.959511,153.395276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.387085,150.626556,EPSG:4326 +HUMAN_OBSERVATION,OCAM10010600,1,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.753602,146.579053,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,27,Australia,AU,New South Wales,-28.9982,153.301536,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,14,Australia,AU,New South Wales,-28.720013,153.593712,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.38749,150.631145,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427301,150.604726,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.390525,150.627285,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,6,Australia,AU,New South Wales,-29.019566,153.430595,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-28.864666,153.293441,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.443074,150.514663,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.497148,149.957744,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154L,1,,occurrenceRemarks withheld,2022,9,7,Australia,AU,New South Wales,-28.380731,153.564281,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-31.560964,152.823025,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001595,1,,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-32.663236,151.805568,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,3,5,Australia,AU,New South Wales,-28.819437,153.297509,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.447256,150.519044,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-31.436613,152.905527,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-29.487733,153.091301,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-31.409637,152.136183,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,5,22,Australia,AU,New South Wales,-28.610492,152.661161,EPSG:4326 +HUMAN_OBSERVATION,ODMP21041002,1,,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.070352,150.851218,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-29.488303,153.102256,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,4,13,Australia,AU,New South Wales,-29.48982,153.103393,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-31.446452,152.894504,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2022,1,23,Australia,AU,New South Wales,-32.586323,151.777285,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-28.275602,153.39409,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-29.485476,153.103845,EPSG:4326 +HUMAN_OBSERVATION,OJJS20110901,1,,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-30.6487,152.958,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.43544,150.615657,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.427089,150.604035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.388444,150.63152,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.437289,150.605572,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.395507,150.641512,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.099116,150.805509,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.391631,150.644361,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-28.438359,152.991279,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-31.63837,150.73066,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.436228,150.603426,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.438858,150.604646,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.437477,150.603673,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-29.487756,153.097728,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-33.670955,149.6371,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004041,1,FEMALE,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-28.822099,153.302905,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.391006,150.628359,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.420651,150.630764,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004203,1,FEMALE,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-28.879587,153.194827,EPSG:4326 +HUMAN_OBSERVATION,ODMP22111609,1,,occurrenceRemarks withheld,2022,10,10,Australia,AU,New South Wales,-33.974574,150.952604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-34.449777,150.598784,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,3,Australia,AU,New South Wales,-29.479825,153.104141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.437085,150.602977,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,26,Australia,AU,New South Wales,-34.437846,150.616557,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.462192,150.534526,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.38819,150.630984,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.958943,153.393973,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-29.48813,153.092224,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.449156,150.516278,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,24,Australia,AU,New South Wales,-31.455317,152.925873,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2024,7,24,Australia,AU,New South Wales,-34.049349,150.97736,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-30.3232,153.10333,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-33.522609,150.655487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.43512,150.618223,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-33.522609,150.655487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.460285,150.531622,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,3,24,Australia,AU,New South Wales,-28.683843,153.613395,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,2,25,Australia,AU,New South Wales,-29.49017,153.099048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.427222,150.604793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.488917,150.637828,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.39996,150.639636,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-30.920053,151.834239,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041J,1,,occurrenceRemarks withheld,2022,10,21,Australia,AU,New South Wales,-32.251163,148.609603,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-29.031727,152.985196,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004116,1,MALE,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.996723,153.307732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.444741,150.515974,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.388108,150.624439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.430058,150.616604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.39578,150.640732,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-31.889204,152.351876,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-32.018393,151.961159,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-32.697245,151.706922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.465815,150.522435,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-28.689343,153.609248,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.453823,150.52058,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004131,1,MALE,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-28.879696,153.324023,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-32.706577,152.063893,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.439011,150.604174,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210V,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-32.709033,152.061935,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-33.445172,150.62519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.420626,150.630895,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-29.479846,153.104256,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-28.309888,152.478835,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.397744,150.622013,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.494686,150.641062,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.394612,150.632097,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-31.484169,152.915335,EPSG:4326 +HUMAN_OBSERVATION,OMZS17080800,1,MALE,occurrenceRemarks withheld,2020,2,29,Australia,AU,New South Wales,-34.161578,150.611655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.436149,150.615963,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.437516,150.518451,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,15,Australia,AU,New South Wales,-33.713259,150.784546,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,4,22,Australia,AU,New South Wales,-31.461738,152.923604,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-33.717262,150.784508,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.458241,150.659536,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,30,Australia,AU,New South Wales,-32.706517,152.063194,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-29.490453,153.109522,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.221994,153.524971,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102215,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-32.611485,151.721529,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-29.485534,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-29.485169,153.104053,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2020,12,28,Australia,AU,New South Wales,-31.933309,152.415333,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-29.489601,153.103838,EPSG:4326 +HUMAN_OBSERVATION,ODMP21041902,1,,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-30.554911,152.65396,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.436605,150.603328,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290J,1,,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-31.477406,152.916126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.431291,150.602664,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,11,Australia,AU,New South Wales,-33.719261,150.782845,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-29.489535,153.103918,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-31.432742,152.914605,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-29.739686,151.057525,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052708,1,,occurrenceRemarks withheld,2024,4,23,Australia,AU,New South Wales,-32.585355,151.781261,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003922,1,,occurrenceRemarks withheld,2023,1,13,Australia,AU,New South Wales,-28.919792,153.32305,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-28.656899,153.521268,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.447279,150.513091,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.737148,153.11863,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,12,8,Australia,AU,New South Wales,-28.959234,153.3939,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.387828,150.624404,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-31.506494,152.817207,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-36.459771,149.965237,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,11,7,Australia,AU,New South Wales,-31.632377,152.785517,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.12193,150.812219,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-29.490437,153.109374,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-28.864549,153.389547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.435379,150.521093,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.449799,150.516422,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-31.187336,152.74857,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-29.485223,153.104128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.430513,150.610379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.451608,150.522507,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102225,1,,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-32.73771,152.033774,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,9,Australia,AU,New South Wales,-29.490128,153.107432,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-31.450459,152.904535,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,23,Australia,AU,New South Wales,-31.455547,152.914917,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.444988,150.515226,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,12,7,Australia,AU,New South Wales,-29.484899,153.103902,EPSG:4326 +HUMAN_OBSERVATION,ODMP22111604,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-31.442435,152.902573,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,MALE,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-32.731152,152.030533,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.41816,150.59785,EPSG:4326 +HUMAN_OBSERVATION,ODMP10100606,1,FEMALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-33.978105,151.006125,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.446715,150.5177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.447276,150.51382,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.840581,153.360617,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-28.823389,153.308552,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-29.506316,152.824652,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-31.439442,152.88694,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-32.723709,152.082142,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-31.466106,152.90519,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190C,1,,occurrenceRemarks withheld,2023,2,9,Australia,AU,New South Wales,-31.469108,152.919629,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,6,Australia,AU,New South Wales,-29.08315,153.37193,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,5,2,Australia,AU,New South Wales,-31.481973,152.921496,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-30.296217,152.62159,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041A,1,MALE,occurrenceRemarks withheld,2023,2,9,Australia,AU,New South Wales,-30.423315,151.650323,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.389818,150.62798,EPSG:4326 +HUMAN_OBSERVATION,OPUR18082000,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-31.940663,152.445114,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-33.706188,150.786891,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.452042,150.517227,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-31.443021,152.901349,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.395418,150.62991,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.836062,153.287996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.437881,150.604935,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.418896,150.632783,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.42676,150.601466,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-31.761352,152.514736,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,1,3,Australia,AU,New South Wales,-32.705973,152.063463,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.818579,153.296004,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-28.586881,153.555255,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.464023,150.522978,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,2,8,Australia,AU,New South Wales,-29.490156,153.109728,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-30.454678,152.713286,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.818579,153.296004,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.446658,150.516222,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-36.183568,149.337376,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070601,1,,occurrenceRemarks withheld,2020,5,14,Australia,AU,New South Wales,-34.352816,150.68494,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.42064,150.63071,EPSG:4326 +HUMAN_OBSERVATION,OIXR16111000;OSHD19121001,1,MALE,occurrenceRemarks withheld,2023,6,4,Australia,AU,New South Wales,-34.101723,150.822861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.436493,150.60776,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.44718,150.513105,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.446617,150.512893,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,3,7,Australia,AU,New South Wales,-36.590303,149.956571,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.471018,150.530979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.450781,150.51549,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.389816,150.627914,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.448777,150.515843,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-28.584407,153.044077,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.423797,150.637279,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132O,1,,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-32.086059,152.250632,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-31.25983,152.817515,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-34.510836,150.542723,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-31.630076,152.784287,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.1895,149.3743,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-31.27014,152.82517,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-28.882593,153.19487,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002015,1,,occurrenceRemarks withheld,2021,5,,Australia,AU,New South Wales,-32.809409,151.826833,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,6,Australia,AU,New South Wales,-31.642597,152.794547,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.012784,150.880542,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-28.666544,153.509243,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-28.671265,153.493595,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-32.705971,152.063502,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041L,1,MALE,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-29.42512,153.193722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.388345,150.631545,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081115,1,,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-31.171199,152.943768,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-29.485585,153.103736,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-31.449881,152.899584,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031821,1,,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-28.825256,153.324544,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.436177,150.602633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.438986,150.604305,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.514293,150.545289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.427392,150.604756,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,27,Australia,AU,New South Wales,-31.474255,152.900099,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.44624,150.516963,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-28.823077,153.291205,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.491748,150.639207,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.392358,150.633454,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090504,1,,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-30.322363,151.577922,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132S,1,,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-30.887317,153.074069,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2024,1,23,Australia,AU,New South Wales,-31.643395,152.794033,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,3,13,Australia,AU,New South Wales,-29.488331,153.110147,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,20,Australia,AU,New South Wales,-29.476866,153.104294,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-28.868907,153.390999,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.436556,150.607747,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-28.880416,153.262731,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-32.503964,151.830473,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070P,1,,occurrenceRemarks withheld,2020,12,28,Australia,AU,New South Wales,-34.758651,146.567646,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300T,1,,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-32.728518,152.085488,EPSG:4326 +HUMAN_OBSERVATION,OJJS07090600,1,,occurrenceRemarks withheld,2023,10,3,Australia,AU,New South Wales,-30.371502,153.094585,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.485376,150.635576,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.420923,150.636903,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.182571,153.004467,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-28.803618,152.888196,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251P,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-32.713922,152.071462,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-28.70571,153.526374,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-32.726204,152.117738,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.396769,150.642009,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,,,Australia,AU,New South Wales,-36.172096,149.286695,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,20,Australia,AU,New South Wales,-29.489591,153.103886,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.451389,150.518367,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.45345,150.608626,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181E,1,,occurrenceRemarks withheld,2022,8,12,Australia,AU,New South Wales,-28.39414,153.558536,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,3,Australia,AU,New South Wales,-29.485814,153.103693,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152A,1,,occurrenceRemarks withheld,2022,9,7,Australia,AU,New South Wales,-28.88915,153.229575,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-29.48996,153.101156,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-29.484903,153.103827,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418212,150.635663,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.385809,150.627201,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-34.20866,150.809,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-31.143689,152.822435,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-31.438894,152.919628,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2023,3,3,Australia,AU,New South Wales,-31.951256,152.365596,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-31.299042,152.864019,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-31.429585,152.893373,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,6,12,Australia,AU,New South Wales,-32.722522,152.07705,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.831137,153.278132,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,8,Australia,AU,New South Wales,-29.490245,153.110184,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-31.547614,152.854391,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-32.737994,152.056152,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.436434,150.61577,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-28.823779,153.287878,EPSG:4326 +HUMAN_OBSERVATION,ODMP21091800;ODMP21091801;ODMP21091802,1,,occurrenceRemarks withheld,2021,4,,Australia,AU,New South Wales,-34.387953,150.368935,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-34.399473,150.645251,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,29,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.488365,150.635361,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,6,Australia,AU,New South Wales,-29.490675,153.109288,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,2,Australia,AU,New South Wales,-31.44425,152.907375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.465725,150.521589,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080204,1,,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.082069,150.843857,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-31.48033,152.92207,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150J,1,,occurrenceRemarks withheld,2024,1,20,Australia,AU,New South Wales,-31.978754,152.350019,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,6,10,Australia,AU,New South Wales,-33.49119,149.552124,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.46497,150.522145,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.419285,150.60007,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.451378,150.515179,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072705,1,,occurrenceRemarks withheld,2023,2,27,Australia,AU,New South Wales,-28.560609,153.386672,EPSG:4326 +HUMAN_OBSERVATION,OJJS19043000;ODMP22022701,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-33.966691,150.921152,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004200,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-28.598584,153.092552,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-29.485608,153.103752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.451548,150.524435,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,4,27,Australia,AU,New South Wales,-31.447659,152.925693,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.467948,150.520489,EPSG:4326 +HUMAN_OBSERVATION,ODMP21050300,1,,occurrenceRemarks withheld,2020,12,25,Australia,AU,New South Wales,-34.02833,150.96493,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.44784,150.513172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.43575,150.60295,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-32.589817,151.794214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.399161,150.6398,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,6,20,Australia,AU,New South Wales,-31.451029,152.912574,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-30.35986,153.06158,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.529031,152.858113,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.680336,149.96634,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.385326,150.626508,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.446694,150.515774,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-29.485604,153.103774,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,29,Australia,AU,New South Wales,-31.646568,152.821657,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403060G,1,,occurrenceRemarks withheld,2024,2,5,Australia,AU,New South Wales,-32.142592,152.365667,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,16,Australia,AU,New South Wales,-28.889666,153.189446,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-880,1,,occurrenceRemarks withheld,2023,7,2,Australia,AU,New South Wales,-30.286651,152.825611,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2022,12,10,Australia,AU,New South Wales,-31.473007,152.86882,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23040505,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-32.403341,149.760909,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,28,Australia,AU,New South Wales,-30.39088,152.94413,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-28.597991,153.089215,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-28.95821,153.433407,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.487752,150.634921,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-34.096128,150.985306,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.465761,150.521544,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.4268,150.604925,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-28.815042,153.334878,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-29.480131,153.104289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.427512,150.603055,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.446367,150.514348,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-34.91134,150.03941,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.465782,150.522599,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,12,16,Australia,AU,New South Wales,-32.736793,152.172395,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-31.462053,152.87463,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-31.93317,152.415339,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210G,1,,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-28.269182,153.393029,EPSG:4326 +HUMAN_OBSERVATION,OJJS20072903,1,,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-31.474412,152.917599,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.485971,150.523265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.492705,150.63881,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-29.480098,153.104074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.390195,150.626033,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-31.126171,152.797444,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-32.22908,152.21206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.411185,150.596614,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.937089,153.316984,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.872021,153.335449,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.489438,150.638651,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022410,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-32.725255,152.076541,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-29.490441,153.109374,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003870,1,MALE,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.667693,153.436484,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-28.819935,153.276731,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.420547,150.609248,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.460208,150.518933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.469522,150.530566,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-31.482531,152.915691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.38971,150.627058,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-31.429323,152.911508,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-34.49539,150.47147,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,20,Australia,AU,New South Wales,-32.706596,152.063752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.457394,150.518429,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.464089,150.523128,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,14,Australia,AU,New South Wales,-28.25059,153.373615,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154N,1,,occurrenceRemarks withheld,2022,8,22,Australia,AU,New South Wales,-28.610492,152.661161,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-33.712288,150.786088,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.524474,150.566043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-34.400734,150.64143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.420371,150.608992,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.4479,150.517893,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-28.89613,153.339458,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.420163,150.63118,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.425644,150.602031,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,7,19,Australia,AU,New South Wales,-31.930546,152.40587,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221T,1,,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-32.696955,151.698317,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-30.3598,153.06132,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.397198,150.646467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.395221,150.64351,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-33.569109,149.54966,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.462201,150.534515,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.82437,153.318368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.424825,150.602588,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.46325,150.532002,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102212,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-32.688033,151.702712,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.424468,150.604589,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,24,Australia,AU,New South Wales,-33.704526,150.785882,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-29.490511,153.109363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.420904,150.630354,EPSG:4326 +HUMAN_OBSERVATION,ODMP21041001,1,,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.055514,150.838432,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2021,11,13,Australia,AU,New South Wales,-34.208051,150.786856,EPSG:4326 +HUMAN_OBSERVATION,OJNV23032200,1,FEMALE,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-36.61303,149.948533,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.385414,150.624526,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-29.490138,153.110479,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030S,1,MALE,occurrenceRemarks withheld,2023,8,28,Australia,AU,New South Wales,-31.467053,152.922646,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,6,25,Australia,AU,New South Wales,-31.460578,152.924145,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.181572,152.701034,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,5,8,Australia,AU,New South Wales,-29.483442,153.095227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.447172,150.519787,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-35.09674,150.06994,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-34.014065,150.878876,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-29.490124,153.110533,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-31.459449,152.923929,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-31.92905,152.383844,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.452301,150.522889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.422333,150.607892,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-28.683037,153.315789,EPSG:4326 +HUMAN_OBSERVATION,ODMP2302060B,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-34.150349,150.82422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.4581,150.659714,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.433196,150.615253,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,17,Australia,AU,New South Wales,-32.724199,152.114096,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-29.490521,153.10939,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.869015,153.335481,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.389281,150.628647,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,29,Australia,AU,New South Wales,-28.63227,153.115459,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-34.04429,150.851094,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,1,26,Australia,AU,New South Wales,-32.70664,152.06416,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-29.485267,153.103999,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,7,8,Australia,AU,New South Wales,-32.722459,152.077233,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-36.2338,149.407657,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,5,Australia,AU,New South Wales,-29.48558,153.103758,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-29.485482,153.103522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.39878,150.626171,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-29.442147,153.183766,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,7,18,Australia,AU,New South Wales,-28.233759,153.491683,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.440534,150.51698,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-34.52604,150.58451,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,30,Australia,AU,New South Wales,-28.819012,153.297172,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,15,Australia,AU,New South Wales,-28.80884,153.525862,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.460122,150.519132,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,28,Australia,AU,New South Wales,-35.069995,150.1299,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.42378,150.637334,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-28.6777,153.36363,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,4,16,Australia,AU,New South Wales,-31.444286,152.923886,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-31.94463,152.395186,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-28.56479,153.54974,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,1,23,Australia,AU,New South Wales,-33.97151,150.89337,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-30.34056,153.087009,EPSG:4326 +HUMAN_OBSERVATION,ODMP2302060C,1,,occurrenceRemarks withheld,2023,2,23,Australia,AU,New South Wales,-31.459623,152.928752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.456626,150.51967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.45619,150.658374,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-32.706299,152.063,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,6,26,Australia,AU,New South Wales,-29.492813,153.109626,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121409,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-32.723988,152.16658,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.465782,150.522578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435722,150.602918,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003896,1,,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-28.816046,153.306661,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-31.949355,152.374339,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.418912,150.602648,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031513,1,,occurrenceRemarks withheld,2022,10,9,Australia,AU,New South Wales,-28.854885,153.594928,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-29.490012,153.10115,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.420662,150.630873,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100501,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-31.635927,152.802445,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-32.767934,151.759579,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-28.560814,153.397476,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-28.886197,153.224432,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-29.489601,153.103902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.436561,150.615375,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-28.919236,153.21759,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,FEMALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-29.492609,153.093277,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.457599,152.884272,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,7,7,Australia,AU,New South Wales,-29.375479,149.811205,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-28.833424,153.34377,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-28.823212,153.319891,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.45097,150.606281,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-31.130775,152.81408,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.840581,153.360617,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-28.687767,153.607389,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-28.220704,153.522363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.453992,150.520924,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-31.460774,152.92337,EPSG:4326 +HUMAN_OBSERVATION,ODFK24090300,1,,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-35.365574,150.452596,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.420566,150.60928,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.420668,150.609441,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030U,1,,occurrenceRemarks withheld,2022,7,13,Australia,AU,New South Wales,-32.710569,152.071492,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-29.599543,152.863097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.428494,150.597075,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.45098,152.929061,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-36.576557,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,22,Australia,AU,New South Wales,-33.71849,150.784917,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.399596,150.625028,EPSG:4326 +HUMAN_OBSERVATION,OJJS20012800,1,,occurrenceRemarks withheld,2022,12,10,Australia,AU,New South Wales,-33.12797,150.70813,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,16,Australia,AU,New South Wales,-29.490404,153.108012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.434933,150.603115,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-34.500217,150.582601,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.053416,150.838978,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121102,1,,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-31.444162,152.90958,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,1,19,Australia,AU,New South Wales,-34.117213,150.797004,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-31.451535,152.921882,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.291869,152.864165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.433764,150.61713,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-34.447285,150.51382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.451599,150.518056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.491716,150.63899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.423763,150.637389,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-31.468154,152.914922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.465656,150.521275,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.49152,150.639072,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.450297,150.51607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.41719,150.601261,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,7,21,Australia,AU,New South Wales,-34.04391,150.862529,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,24,Australia,AU,New South Wales,-29.490306,153.108097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.42786,150.597812,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.298423,149.317865,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041307,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.082676,150.842294,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.426364,150.602903,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-28.872288,153.274356,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.46405,150.523891,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,1,9,Australia,AU,New South Wales,-31.62996,152.782748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.398897,150.645278,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040432,1,MALE,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-30.26309,153.118753,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,3,4,Australia,AU,New South Wales,-29.490437,153.109379,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-34.083986,150.978269,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-29.47802,153.104004,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.438031,150.606617,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-31.163855,152.85616,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-29.487037,153.097326,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-31.461866,152.924481,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,25,Australia,AU,New South Wales,-33.718582,150.783165,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-31.47532,152.923188,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-31.453608,152.921158,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,23,Australia,AU,New South Wales,-28.57405,153.436633,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,23,Australia,AU,New South Wales,-29.490273,153.110318,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.418648,150.602492,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419596,150.611799,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-31.140208,152.809452,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,1,22,Australia,AU,New South Wales,-32.805023,151.859808,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-34.124092,150.9739,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,MALE,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-32.345957,152.258023,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020703,1,,occurrenceRemarks withheld,2020,5,5,Australia,AU,New South Wales,-30.666881,152.954415,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-28.398603,153.556057,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.435837,150.616593,EPSG:4326 +HUMAN_OBSERVATION,OPJG21060803,1,,occurrenceRemarks withheld,2024,4,19,Australia,AU,New South Wales,-33.09847,151.230894,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-31.459506,152.925662,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-34.20866,150.809,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,3,Australia,AU,New South Wales,-28.663535,153.11128,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OJJS17052901,1,MALE,occurrenceRemarks withheld,2022,11,15,Australia,AU,New South Wales,-32.17698,152.448841,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,1,18,Australia,AU,New South Wales,-32.706537,152.063779,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308240S,1,,occurrenceRemarks withheld,2020,4,22,Australia,AU,New South Wales,-32.667886,152.171498,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304170E,1,,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-34.060701,150.840628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.451503,150.522183,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,31,Australia,AU,New South Wales,-28.232574,153.47857,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,6,16,Australia,AU,New South Wales,-31.443561,152.919463,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.45352,150.608504,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.429714,150.61421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.42192,150.636288,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.390989,150.645217,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.403111,150.638438,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211H,1,,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-32.706001,152.066398,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435678,150.602963,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,2,Australia,AU,New South Wales,-31.47588,152.916502,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-33.968789,150.911136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.448957,150.516262,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.4281,150.600383,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.581514,149.880784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.388046,150.631455,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2024,2,5,Australia,AU,New South Wales,-29.48961,153.10394,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.464458,150.523085,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-28.831058,153.306646,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.514336,150.546628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.387138,150.630687,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,7,Australia,AU,New South Wales,-29.490301,153.104825,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.395573,150.642641,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,12,,Australia,AU,New South Wales,-36.109474,149.330907,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240E,1,,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-32.699624,152.06499,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-33.713367,150.785663,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,7,6,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-30.887589,153.043427,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-34.527337,150.602656,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.45144,150.517321,EPSG:4326 +HUMAN_OBSERVATION,OMCE97032109,1,MALE,occurrenceRemarks withheld,2024,3,29,Australia,AU,New South Wales,-31.690323,150.006295,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-33.77871,150.100651,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,13,Australia,AU,New South Wales,-28.982555,153.415401,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404,1,,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-31.643698,152.550241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433089,150.607487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.434252,150.608858,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.418247,150.601818,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.439429,150.620974,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.447621,150.518816,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-31.46623,152.927762,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.435184,150.615947,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.430631,150.609483,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.432334,150.612187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.459973,150.525547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.419827,150.602404,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-31.453774,152.918781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.437791,150.607255,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032902,1,,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-32.716992,152.073373,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.464561,150.521057,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021804,1,FEMALE,occurrenceRemarks withheld,2021,10,24,Australia,AU,New South Wales,-29.354364,150.200394,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,26,Australia,AU,New South Wales,-29.489788,153.105206,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,MALE,occurrenceRemarks withheld,2024,1,30,Australia,AU,New South Wales,-31.945372,152.298863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.450965,150.522776,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.385499,150.626557,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OPJG19103002,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.90699,152.728756,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140O,1,,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-32.759387,152.103453,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,12,16,Australia,AU,New South Wales,-28.5551,153.07448,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,,occurrenceRemarks withheld,2023,7,1,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031506,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-28.813325,153.336079,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-34.52211,150.56515,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,28,Australia,AU,New South Wales,-30.3905,152.9439,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,6,25,Australia,AU,New South Wales,-30.222274,152.795548,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-31.116484,152.904746,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,14,Australia,AU,New South Wales,-29.782422,151.136462,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.438102,150.604276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.447295,150.514342,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.448826,150.521327,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.434508,150.606761,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,8,8,Australia,AU,New South Wales,-30.095375,152.185919,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.392703,150.639209,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,11,25,Australia,AU,New South Wales,-33.491225,149.552171,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-34.09,150.98,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,9,Australia,AU,New South Wales,-28.38145,153.563417,EPSG:4326 +HUMAN_OBSERVATION,OJJS20011504,1,MALE,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-29.37758,153.363258,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-32.215233,151.910427,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,12,19,Australia,AU,New South Wales,-28.81845,153.298557,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002802,1,,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-29.38163,153.155147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.420322,150.627325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.39555,150.642381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.43065,150.609058,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-28.46623,153.461614,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-29.485632,153.103463,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418948,150.609511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.46576,150.522404,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,1,25,Australia,AU,New South Wales,-31.476822,152.915856,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.455639,150.658814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.442574,150.520238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.493002,150.639248,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-29.482228,153.104267,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,10,10,Australia,AU,New South Wales,-31.470297,152.917952,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090R,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.47042,152.909957,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-29.485557,153.103758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.38611,150.624593,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.286472,152.87222,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.432663,150.611971,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-29.485459,153.103795,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220M,1,,occurrenceRemarks withheld,2022,10,14,Australia,AU,New South Wales,-32.732605,152.03389,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-31.444411,152.922317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.466225,150.52312,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.448796,150.515854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.43558,150.60438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.388099,150.62445,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-28.688361,153.516301,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-28.163166,153.486459,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,21,Australia,AU,New South Wales,-31.445658,152.916735,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.458339,150.6595,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.446181,150.517596,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.435435,150.603427,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,16,Australia,AU,New South Wales,-29.491926,153.096628,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,MALE,occurrenceRemarks withheld,2024,6,24,Australia,AU,New South Wales,-31.927523,152.403775,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,12,Australia,AU,New South Wales,-31.457903,152.893283,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,MALE,occurrenceRemarks withheld,2024,5,29,Australia,AU,New South Wales,-31.146388,152.809083,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,10,10,Australia,AU,New South Wales,-31.454443,152.921229,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062101,1,MALE,occurrenceRemarks withheld,2023,4,17,Australia,AU,New South Wales,-34.77279,146.586089,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,8,18,Australia,AU,New South Wales,-32.762364,152.087047,EPSG:4326 +HUMAN_OBSERVATION,OLHP24051300,1,,occurrenceRemarks withheld,2024,4,29,Australia,AU,New South Wales,-29.71997,151.011472,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-33.689127,149.563827,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022604,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.903953,152.743508,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,20,Australia,AU,New South Wales,-29.490259,153.108194,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.434324,152.877587,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,13,Australia,AU,Queensland,-26.43875,152.991477,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-28.339384,153.219631,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.428197,150.601197,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-31.005135,152.756388,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-28.589459,153.445719,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436544,150.520721,EPSG:4326 +HUMAN_OBSERVATION,OLHP24020801,1,,occurrenceRemarks withheld,2023,6,25,Australia,AU,New South Wales,-31.47563,152.926507,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.44971,150.51649,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.465718,150.520337,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-31.479428,152.921536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.469354,150.526706,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-29.487423,153.103208,EPSG:4326 +HUMAN_OBSERVATION,OJBL97031300,1,FEMALE,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-30.434893,152.833513,EPSG:4326 +HUMAN_OBSERVATION,OCHV19051300,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-29.691697,152.867673,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190S,1,,occurrenceRemarks withheld,2024,8,23,Australia,AU,New South Wales,-31.95546,152.44218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.392903,150.632721,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.459319,150.534654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.466052,150.521666,EPSG:4326 +HUMAN_OBSERVATION,OSLS05062143,1,,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-34.050756,150.859518,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-31.44857,152.87918,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,18,Australia,AU,New South Wales,-28.394204,153.557079,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,FEMALE,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-28.982816,153.415946,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,1,11,Australia,AU,New South Wales,-31.44104,152.88391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-34.444489,150.60405,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.431202,150.615168,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.454037,150.520443,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200F,1,MALE,occurrenceRemarks withheld,2024,4,22,Australia,AU,New South Wales,-31.476147,152.912782,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-28.555867,153.543661,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-31.439218,152.904597,EPSG:4326 +HUMAN_OBSERVATION,ODFK23111401,1,,occurrenceRemarks withheld,2024,9,4,Australia,AU,New South Wales,-31.570282,152.174222,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.44204,150.606013,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,10,13,Australia,AU,New South Wales,-30.066931,152.250288,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.436556,150.607747,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100402,1,,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-32.587972,151.77082,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.446421,150.5139,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.431441,150.604335,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,4,16,Australia,AU,New South Wales,-29.485571,153.103827,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-34.046504,151.007009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-34.447408,150.514545,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.457352,150.659288,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,22,Australia,AU,New South Wales,-31.466371,152.909177,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-34.14382,150.79,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.465771,150.521609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.429105,150.599713,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,2,10,Australia,AU,New South Wales,-28.850061,153.315752,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,20,Australia,AU,New South Wales,-28.925911,153.259862,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.2037,149.3039,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.393867,150.641101,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,4,28,Australia,AU,New South Wales,-33.774415,150.060153,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.429732,150.616559,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-33.709625,150.78604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.431083,150.613681,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-33.70956,150.786533,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.430226,150.607699,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-33.709049,150.785842,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,16,Australia,AU,New South Wales,-32.706535,152.063741,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.551144,149.998977,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.441526,150.51744,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-33.776491,150.099074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.394629,150.642765,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.386328,150.626566,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.435553,150.615458,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.445892,150.513165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.420869,150.630388,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.446179,150.513972,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070M,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-32.96288,151.52664,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,29,Australia,AU,New South Wales,-31.466613,152.908969,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.453974,150.520902,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.570187,149.979238,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100519,1,,occurrenceRemarks withheld,2024,3,31,Australia,AU,New South Wales,-31.93321,152.412818,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,1,17,Australia,AU,New South Wales,-28.649429,153.454728,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,29,Australia,AU,New South Wales,-29.490217,153.108151,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.446667,150.517582,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-31.479295,152.913234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.448295,150.516054,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.398718,150.621105,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-31.639074,152.793146,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,12,Australia,AU,New South Wales,-31.45599,152.927387,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,1,3,Australia,AU,New South Wales,-32.707662,152.068413,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-34.439804,150.618928,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.396523,150.641375,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.3866,150.625265,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,17,Australia,AU,New South Wales,-33.709762,150.785316,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,12,4,Australia,AU,New South Wales,-31.453019,152.925868,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-31.176806,152.943056,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152L,1,,occurrenceRemarks withheld,2022,7,14,Australia,AU,New South Wales,-29.016415,153.431324,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-31.463064,152.820092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.448906,150.617854,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-29.031736,153.41301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.448031,150.516355,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.454015,150.520292,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,7,6,Australia,AU,New South Wales,-28.824435,153.318601,EPSG:4326 +HUMAN_OBSERVATION,Obs_0190,1,MALE,occurrenceRemarks withheld,2024,4,27,Australia,AU,New South Wales,-33.104783,151.150223,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-34.140137,150.794683,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.680336,149.96634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.42032,150.609157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-34.438513,150.616092,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.041189,150.977585,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-34.465473,150.520268,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-29.489998,153.101301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.427951,150.597885,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-29.490147,153.110506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.421574,150.627246,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-29.725122,152.923386,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.429723,150.610554,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002851,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-29.42432,153.193992,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.488077,150.519407,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,5,23,Australia,AU,New South Wales,-28.862636,153.315136,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-31.128277,152.794251,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,21,Australia,AU,New South Wales,-31.85809,152.355785,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,,occurrenceRemarks withheld,2023,6,11,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210L,1,,occurrenceRemarks withheld,2022,3,30,Australia,AU,New South Wales,-28.261188,153.398238,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,24,Australia,AU,New South Wales,-29.490217,153.110203,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.420499,150.611882,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.41701,150.597121,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.3893,150.623601,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001401,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-30.582438,152.848859,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,3,Australia,AU,New South Wales,-28.660527,153.590336,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.420746,150.609264,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,29,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-33.756339,150.039726,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,22,Australia,AU,New South Wales,-28.331279,153.55998,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,8,Australia,AU,New South Wales,-29.490446,153.109401,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.949626,153.316981,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,5,Australia,AU,New South Wales,-31.448716,152.879212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.42034,150.636136,EPSG:4326 +HUMAN_OBSERVATION,OLHP23071102,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-29.652568,152.865602,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-31.633106,152.755229,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-31.455921,152.928742,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,7,1,Australia,AU,New South Wales,-31.458085,152.909944,EPSG:4326 +HUMAN_OBSERVATION,ODMP23070402,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-30.428741,153.043951,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,16,Australia,AU,New South Wales,-28.81707,153.30059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.385919,150.624544,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.436693,150.520097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.421993,150.607564,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.188482,150.787655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.427841,150.598226,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.487661,150.634891,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-30.383883,152.99617,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.434324,150.617158,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-33.3858,150.693565,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.960088,153.394595,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-29.011799,153.170518,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.465646,150.520339,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-30.332811,151.649653,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-29.478847,153.104171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.421019,150.626968,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-34.095849,150.985492,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210B,1,,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-32.73655,152.08885,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-33.717758,150.784178,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082308;ODFK23082309;ODFK2308230A;ODFK2308230B,1,MALE,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.137132,150.843837,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080300,1,,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-33.541189,149.546315,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-31.138286,152.878493,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.4239,150.605062,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.420934,150.626774,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.435421,150.615168,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152A,1,,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-28.941391,153.224344,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-29.490199,153.108205,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-33.413568,150.703279,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.097889,150.841415,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.428924,150.614384,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031M,1,,occurrenceRemarks withheld,2023,5,1,Australia,AU,New South Wales,-31.458562,152.926532,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-28.89478,153.258624,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-28.93365,153.270839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.420949,150.627079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.401388,150.645436,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.418297,150.632615,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.300188,152.820061,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.680336,149.96634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.42094,150.630353,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,3,30,Australia,AU,New South Wales,-33.779051,150.102885,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-31.460961,152.923326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.43338,150.616847,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-31.177132,152.943009,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,FEMALE,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.914471,152.37372,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.454201,150.547088,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111504,1,,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-33.685113,150.652692,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2021,12,2,Australia,AU,New South Wales,-32.710481,152.065397,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.41198,150.595775,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-28.649629,153.462475,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,7,18,Australia,AU,New South Wales,-31.099793,152.822977,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.420613,150.630689,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,9,7,Australia,AU,New South Wales,-34.18594,150.79082,EPSG:4326 +HUMAN_OBSERVATION,OCHV19051300,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-29.69152,152.866231,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.425527,150.604374,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,14,Australia,AU,New South Wales,-31.639483,152.790908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.411446,150.596127,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-32.712615,152.06976,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,27,Australia,AU,New South Wales,-29.48339,153.095089,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,13,Australia,AU,New South Wales,-31.454163,152.925204,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-28.408776,153.555267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.444973,150.518524,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.454497,150.605908,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-29.480654,153.104112,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,12,8,Australia,AU,New South Wales,-32.721099,151.992728,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.421405,150.637608,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,3,7,Australia,AU,New South Wales,-32.636469,151.699657,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-31.465185,152.910219,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,5,25,Australia,AU,New South Wales,-28.802118,152.639454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.384518,150.625291,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.432663,150.605073,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.460589,149.910112,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041N,1,MALE,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-34.053416,150.838978,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,3,1,Australia,AU,New South Wales,-32.70675,152.063231,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.397549,150.639432,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.421786,150.636335,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,28,Australia,AU,New South Wales,-35.062989,150.127277,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-30.296857,153.075165,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,5,21,Australia,AU,New South Wales,-36.467774,149.990835,EPSG:4326 +HUMAN_OBSERVATION,OLHP24010914,1,,occurrenceRemarks withheld,2023,11,7,Australia,AU,New South Wales,-31.459587,152.928677,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130D,1,,occurrenceRemarks withheld,2020,8,17,Australia,AU,New South Wales,-31.447017,152.910694,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.393748,153.559532,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-34.047767,150.996088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.43426,150.616169,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-33.522609,150.655487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.432328,150.605909,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,15,Australia,AU,New South Wales,-33.710257,150.786096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.427125,150.604034,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-28.362476,153.331312,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-34.44156,150.607768,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-31.642307,152.793234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.453532,150.518249,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.430344,150.616466,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.45161,150.517283,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-36.450213,149.978195,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.43532,150.603561,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,14,Australia,AU,New South Wales,-31.474519,152.919207,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.385387,150.624527,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-31.920942,152.372069,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-34.121228,150.970802,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-30.17532,152.91153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.455863,150.606587,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003959,1,FEMALE,occurrenceRemarks withheld,2023,3,22,Australia,AU,New South Wales,-28.925356,153.184797,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.464828,150.522247,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,14,Australia,AU,New South Wales,-31.468387,152.90797,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.418955,150.610338,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210L;ODMP2212210O,1,FEMALE,occurrenceRemarks withheld,2022,7,19,Australia,AU,New South Wales,-28.261128,153.398373,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.436206,150.618878,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2023,3,23,Australia,AU,New South Wales,-31.480755,152.69692,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.418194,150.600046,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-29.485608,153.103822,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-29.488546,153.093329,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160J,1,,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-32.727871,152.105595,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.446973,150.517986,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,20,Australia,AU,New South Wales,-29.489615,153.104289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427384,150.60481,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.46534,150.521698,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,3,27,Australia,AU,New South Wales,-31.4595,152.92886,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.420048,150.638277,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.465755,150.520848,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002829,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-29.484824,153.096011,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.43762,150.604997,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-28.937203,153.278038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.420651,150.630786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.436386,150.609646,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-28.889779,153.296795,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-36.155701,149.353038,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-31.125284,152.807462,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.446214,150.517018,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-33.857114,149.718566,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-29.485585,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090405,1,FEMALE,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-34.101929,150.821259,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-30.389981,152.944311,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-31.458012,152.893248,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.445873,150.514896,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-34.01746,150.890156,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2020,5,11,Australia,AU,New South Wales,-31.285018,152.812053,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100O,1,,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-32.053775,152.505486,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240O,1,,occurrenceRemarks withheld,2022,3,20,Australia,AU,New South Wales,-32.737563,152.056954,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,12,Australia,AU,New South Wales,-28.980816,153.434446,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.432626,150.607315,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-33.473775,150.796982,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004005,1,,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-28.945503,152.934505,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,11,Australia,AU,New South Wales,-33.719424,150.782593,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2020,6,21,Australia,AU,New South Wales,-33.527026,150.659256,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-28.825764,153.212338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.485767,150.636229,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.633581,149.921178,EPSG:4326 +HUMAN_OBSERVATION,OLHP24062103,1,,occurrenceRemarks withheld,2024,5,19,Australia,AU,New South Wales,-30.445093,153.053324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,22,Australia,AU,New South Wales,-34.439125,150.616009,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2021,12,10,Australia,AU,New South Wales,-34.114645,150.940432,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.497197,150.533158,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-33.707259,150.786198,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-31.45807,152.910172,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-33.689184,149.563961,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-31.458613,152.929582,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.4655,150.522053,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-36.154319,149.350694,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-34.018617,150.884315,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140R,1,,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-28.813771,153.334647,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-31.485158,152.914453,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180I,1,FEMALE,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-28.861422,153.583032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.385833,150.627548,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,10,Australia,AU,New South Wales,-31.468778,152.912999,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-29.312652,152.858679,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-34.439764,150.617351,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042P,1,,occurrenceRemarks withheld,2023,1,30,Australia,AU,New South Wales,-33.993426,150.890522,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.454979,150.610291,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.476379,152.929788,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-28.634338,153.549025,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.574566,149.915309,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.435059,150.616038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.396268,150.644046,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-28.524623,152.999358,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-29.485589,153.103786,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.959963,153.395282,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-31.436683,152.914641,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.419056,150.610433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.430564,150.612956,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270K,1,,occurrenceRemarks withheld,2022,4,13,Australia,AU,New South Wales,-29.66,151.042,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,7,24,Australia,AU,New South Wales,-31.446905,152.921342,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-31.446958,152.890444,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.687614,153.608837,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419195,150.6102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.42302,150.604336,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-28.851012,153.309506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.427917,150.597962,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418255,150.635575,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.451529,150.518613,EPSG:4326 +HUMAN_OBSERVATION,OPUR15021900,1,FEMALE,occurrenceRemarks withheld,2024,2,14,Australia,AU,New South Wales,-33.48096,149.343932,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002557,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-29.095797,153.396186,EPSG:4326 +HUMAN_OBSERVATION,OJJS20040702,1,,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-29.490269,153.110632,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150C,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-33.448338,150.616081,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-31.470442,152.907333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.386698,150.625643,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,26,Australia,AU,New South Wales,-33.712525,150.784668,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.091934,150.816508,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.485435,150.634442,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2021,11,8,Australia,AU,New South Wales,-32.738104,152.059137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.425127,150.600022,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-29.489988,153.101306,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002794,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.489437,153.095115,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,,occurrenceRemarks withheld,2023,3,9,Australia,AU,New South Wales,-28.960305,153.393908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.395308,150.630293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.395668,150.641453,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-28.92872,153.450746,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-29.490535,153.095727,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-31.92625,152.353525,EPSG:4326 +HUMAN_OBSERVATION,OVGI98110201,1,,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-30.481454,151.738435,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-34.90234,150.06308,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.394108,150.645216,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2023,6,24,Australia,AU,New South Wales,-36.681231,149.933771,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,4,Australia,AU,New South Wales,-31.465413,152.910618,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.419715,150.611404,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,14,Australia,AU,New South Wales,-28.689402,153.475241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.490892,150.637837,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-34.077271,150.840277,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.465828,150.520432,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,2,6,Australia,AU,New South Wales,-31.468743,152.913786,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250V,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-32.747654,152.074343,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.440048,150.518811,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.71872,152.753459,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.421433,150.627424,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122007,1,MALE,occurrenceRemarks withheld,2022,11,1,Australia,AU,New South Wales,-36.167586,149.374462,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.437956,150.604204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.469353,150.526652,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.435019,150.615811,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003883,1,,occurrenceRemarks withheld,2023,2,14,Australia,AU,New South Wales,-28.88355,153.256332,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-30.511997,151.506959,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-34.213206,150.799298,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,3,Australia,AU,New South Wales,-29.490269,153.110474,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-28.890141,153.303792,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-31.459003,152.89175,EPSG:4326 +HUMAN_OBSERVATION,OJJS1810240B,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-32.728775,152.006224,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,1,12,Australia,AU,New South Wales,-32.708626,152.064009,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,23,Australia,AU,New South Wales,-28.893976,153.323257,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.435108,150.608855,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.419126,150.610333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.410125,150.597286,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.420261,150.635333,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-31.485522,152.91475,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.435393,150.615125,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-30.842983,152.784299,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.462829,150.524113,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062903,1,,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-32.662279,151.717435,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070601,1,,occurrenceRemarks withheld,2020,5,14,Australia,AU,New South Wales,-34.352882,150.685179,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.3813,153.563539,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,5,Australia,AU,New South Wales,-33.715611,150.785322,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022417,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-32.76175,152.112039,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.388106,150.62433,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,7,5,Australia,AU,New South Wales,-29.608586,150.862965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.395693,150.641376,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.436398,150.608884,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.809458,153.345447,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.560833,152.210152,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-34.037772,150.861976,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-29.485814,153.103656,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.42774,150.600894,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.591357,153.44585,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.465821,150.520519,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,7,Australia,AU,New South Wales,-29.485464,153.103784,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251D,1,MALE,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-32.711474,151.844528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.465707,150.521589,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.459936,150.525493,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.464041,150.523892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.427303,150.604813,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131I,1,,occurrenceRemarks withheld,2023,10,28,Australia,AU,Queensland,-27.557712,153.059241,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-28.330518,152.564844,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-28.399735,153.556055,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.397369,150.62781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.42031,150.609113,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-28.987066,153.28537,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.579679,149.991891,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-30.522681,152.901874,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,11,21,Australia,AU,New South Wales,-34.068362,150.847233,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304170I,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-32.791439,151.853723,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-28.536314,153.085892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.387786,150.632006,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.098147,150.808618,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-33.708246,150.785862,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.438793,150.604136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.395086,150.629092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.396283,150.641098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-34.438663,150.617742,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.144268,150.792484,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,8,10,Australia,AU,New South Wales,-28.818892,153.327395,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310040A,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-31.470538,152.910328,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.639841,153.629186,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.419909,150.602902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.428516,150.598631,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-30.348298,152.613306,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,ODMP22111607,1,,occurrenceRemarks withheld,2022,10,9,Australia,AU,New South Wales,-34.063478,150.841516,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.398613,150.645046,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,6,25,Australia,AU,New South Wales,-31.459579,152.928233,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-28.580764,153.081018,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040I,1,MALE,occurrenceRemarks withheld,2024,3,26,Australia,AU,New South Wales,-33.113703,149.650137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.42092,150.630223,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004072,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.711329,153.45051,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.885013,152.777302,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-31.443546,152.900377,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,2,Australia,AU,New South Wales,-31.458852,152.926283,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.459445,150.525301,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-29.746351,151.075099,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.459072,150.659164,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.437889,150.604902,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.09259,150.838139,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.385808,150.627179,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.450957,150.522853,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-28.500347,152.975268,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,22,Australia,AU,New South Wales,-28.399486,153.556034,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,10,Australia,AU,New South Wales,-33.705878,150.786995,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.437066,150.606634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.388381,150.631533,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-29.014939,153.411379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.425276,150.602597,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,10,Australia,AU,New South Wales,-32.709018,152.064443,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042W,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-33.947266,150.95177,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-29.485566,153.103849,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.437826,150.61597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.446581,150.518237,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,4,25,Australia,AU,New South Wales,-29.489535,153.103865,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.481153,150.532825,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-29.490627,153.109418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.457023,150.528104,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418948,150.609511,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-28.275076,153.395157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418948,150.609511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.466051,150.52208,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-28.818638,153.367603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.45521,150.519603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.447758,150.517125,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002841,1,,occurrenceRemarks withheld,2020,12,13,Australia,AU,New South Wales,-29.49413,153.092774,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-29.401221,153.35792,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.44921,150.516266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.438053,150.604092,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,1,30,Australia,AU,New South Wales,-29.51499,152.811467,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.915154,152.797565,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-32.706824,152.064461,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.400694,150.651046,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,,occurrenceRemarks withheld,2023,9,8,Australia,AU,New South Wales,-28.56689,153.072034,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,5,3,Australia,AU,New South Wales,-31.593195,152.84034,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,11,Australia,AU,New South Wales,-33.716282,150.785102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.390527,150.626448,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,10,2,Australia,AU,New South Wales,-31.459191,152.928719,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-34.101151,150.821928,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-29.485366,153.104031,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,3,18,Australia,AU,New South Wales,-29.489591,153.103886,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221H,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-32.722426,152.080846,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.386377,150.627674,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.452345,150.522812,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.437263,150.605649,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.392957,150.63272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.46333,150.519515,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.491585,150.639179,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-31.563824,152.815969,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-33.704017,150.785894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.392863,150.632983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-31.458037,152.875238,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,4,22,Australia,AU,New South Wales,-31.977079,152.392849,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260W,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-32.732613,152.017532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.420229,150.63132,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.915154,152.797565,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-30.912042,152.821558,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-31.429663,152.912507,EPSG:4326 +HUMAN_OBSERVATION,ODMP2302060B,1,,occurrenceRemarks withheld,2023,2,27,Australia,AU,New South Wales,-34.15646,150.827643,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.418318,150.632734,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.488488,150.637524,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-34.439745,150.617298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.427524,150.605513,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-31.9159,152.38251,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-31.180584,150.137736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.457737,150.659147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.39365,150.644348,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.446584,150.518825,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2024,3,6,Australia,AU,New South Wales,-31.449626,152.920583,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,FEMALE,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-28.397401,153.556968,EPSG:4326 +HUMAN_OBSERVATION,ODFK24082203,1,,occurrenceRemarks withheld,2024,7,23,Australia,AU,New South Wales,-32.799571,151.84826,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.475711,150.533007,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072703;OLHP23072704,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.594077,152.190265,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-28.797493,153.593108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-34.398686,150.645077,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.839565,153.279241,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,25,Australia,AU,New South Wales,-29.48725,153.103342,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.982484,153.440827,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,5,Australia,AU,New South Wales,-33.706245,150.786193,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457107,150.518056,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,20,Australia,AU,New South Wales,-28.394686,153.557586,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-28.638721,153.450482,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,4,10,Australia,AU,New South Wales,-30.887705,153.07168,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.452693,150.523988,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,3,27,Australia,AU,New South Wales,-34.773332,146.594753,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210P,1,FEMALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-32.71973,152.06845,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001963,1,MALE,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-32.298768,152.34591,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.426734,150.60385,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.92352,152.371277,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-31.611878,152.292394,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-30.23166,153.00805,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-29.490161,153.110286,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,16,Australia,AU,New South Wales,-33.991958,150.89266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.447164,150.515858,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,20,Australia,AU,New South Wales,-31.466054,152.909528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.389545,150.628814,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-34.03627,150.988359,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.455735,150.66003,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-32.72873,152.006267,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221V,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-32.779102,152.11459,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140H,1,,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-28.532129,153.155464,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-29.488136,153.092083,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-34.440795,150.516515,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,26,Australia,AU,New South Wales,-32.706607,152.063805,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,4,23,Australia,AU,New South Wales,-31.950012,152.514058,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,2,21,Australia,AU,New South Wales,-32.706122,152.063543,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-33.99196,150.89266,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-28.259715,153.397897,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2023,2,20,Australia,AU,New South Wales,-31.975751,152.563604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.488525,150.637599,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.397447,153.55705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.459266,150.521366,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,6,2,Australia,AU,New South Wales,-29.739233,151.056697,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-28.875831,153.376753,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-34.188759,150.725531,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-28.59283,153.081228,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.453762,150.517154,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-31.470447,152.911259,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-31.299415,152.863565,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.45418,150.662174,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,1,21,Australia,AU,New South Wales,-31.393213,152.869656,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.447236,150.513212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.436153,150.616192,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-31.675783,152.805718,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,18,Australia,AU,New South Wales,-29.485585,153.103752,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-29.482751,153.104444,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-28.642822,153.618366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.435392,150.521299,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,8,12,Australia,AU,New South Wales,-34.469778,150.516168,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.429503,150.616838,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,4,18,Australia,AU,New South Wales,-29.611714,150.862909,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.483615,150.632834,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.464117,150.522747,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-29.487756,153.091039,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;ODMP2212210P;ODMP2212210Q;OLHP2311100C,1,,occurrenceRemarks withheld,2022,6,8,Australia,AU,New South Wales,-30.11224,152.133659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.459953,150.525449,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-29.485137,153.104031,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,24,Australia,AU,New South Wales,-29.489433,153.102846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.462065,150.519346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.43656,150.607954,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2024,6,5,Australia,AU,New South Wales,-34.469484,150.44063,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021400,1,,occurrenceRemarks withheld,2024,2,14,Australia,AU,New South Wales,-31.446344,152.915047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.435193,150.618243,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,MALE,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-32.723551,152.067952,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.403815,150.643661,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.438564,150.519008,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.45613,150.657603,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-30.505785,152.909979,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.820583,153.421868,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.420284,150.634626,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,MALE,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-32.863373,151.580448,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-32.688545,151.655273,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-31.448275,152.902021,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.400914,150.619998,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-32.64283,151.58005,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-28.864616,153.293102,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150X,1,,occurrenceRemarks withheld,2023,12,5,Australia,AU,New South Wales,-32.067098,151.739332,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-33.526945,150.658886,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-29.490255,153.108113,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,13,Australia,AU,New South Wales,-31.459139,152.882581,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-31.994786,151.819164,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.431193,150.615636,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.286301,152.872105,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004285,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-29.055077,153.306243,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-31.92302,152.35312,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-33.775998,150.064169,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.952373,153.459962,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.39014,150.626035,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-28.960694,153.394732,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.647513,153.224314,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,12,16,Australia,AU,New South Wales,-29.490208,153.108205,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,21,Australia,AU,New South Wales,-29.490213,153.10813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,10,24,Australia,AU,New South Wales,-34.436377,150.618884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.421465,150.637454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.446337,150.51375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.43744,150.518246,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2020,12,25,Australia,AU,New South Wales,-32.713391,152.066564,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-28.535988,153.085229,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.394711,150.643742,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.445846,150.513123,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-30.418587,152.973345,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040407,1,FEMALE,occurrenceRemarks withheld,2024,3,23,Australia,AU,New South Wales,-31.458556,152.92819,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110U,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-31.453888,152.925424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.447242,150.513059,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-33.706853,150.787301,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,20,Australia,AU,New South Wales,-32.029779,152.381369,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-31.543812,152.826214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.387121,150.631634,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2023,4,1,Australia,AU,New South Wales,-28.721583,153.610336,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-28.81679,153.298493,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.385787,150.623287,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,8,Australia,AU,New South Wales,-28.841696,153.560036,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-31.958138,152.359276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.398869,150.616358,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.415233,150.59752,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,21,Australia,AU,New South Wales,-28.953942,153.322384,EPSG:4326 +HUMAN_OBSERVATION,OICG21022200,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-30.478856,151.698911,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-33.623333,149.547784,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.442862,152.905358,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.386154,150.62457,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,4,18,Australia,AU,New South Wales,-30.421928,152.983236,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,16,Australia,AU,New South Wales,-29.486005,153.09011,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.46529,150.521014,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,1,2,Australia,AU,New South Wales,-31.630309,152.784261,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.459084,150.515048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.421804,150.636324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.423798,150.637334,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,,occurrenceRemarks withheld,2023,3,11,Australia,AU,New South Wales,-28.95969,153.394678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.396056,150.626585,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.458336,150.660295,EPSG:4326 +HUMAN_OBSERVATION,OPUR21080903,1,,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-31.467175,152.873293,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-32.738962,152.090193,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.430545,150.617091,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-31.456145,152.930261,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,6,Australia,AU,New South Wales,-29.485585,153.103859,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,6,3,Australia,AU,New South Wales,-33.778799,150.059885,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070B,1,,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-28.972241,153.404587,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,9,Australia,AU,New South Wales,-31.466083,152.904969,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.465209,150.520581,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.805609,153.292968,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.434473,150.606784,EPSG:4326 +HUMAN_OBSERVATION,OIXR16111000,1,FEMALE,occurrenceRemarks withheld,2020,6,5,Australia,AU,New South Wales,-34.040711,150.872102,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,1,7,Australia,AU,New South Wales,-29.041176,153.28759,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17149,152.90829,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140R,1,,occurrenceRemarks withheld,2021,12,3,Australia,AU,New South Wales,-33.462578,150.589332,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.491951,150.639463,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.398771,150.627118,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2022,6,14,Australia,AU,New South Wales,-32.735486,152.139095,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-32.706746,152.063828,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,19,Australia,AU,New South Wales,-29.478366,153.103924,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-31.506722,152.775955,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.449996,150.515916,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.427107,150.604949,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,MALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-31.933496,152.415866,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-28.856146,153.292217,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.435671,150.615498,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.488387,150.636993,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012904,1,,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-31.544439,152.857656,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,8,Australia,AU,New South Wales,-33.708256,150.784742,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-31.94582,152.40417,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050S,1,,occurrenceRemarks withheld,2023,2,3,Australia,AU,New South Wales,-30.887517,153.071943,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2021,1,26,Australia,AU,New South Wales,-33.774893,150.087135,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122106,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-28.831073,153.279661,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.433892,150.614896,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-34.0668,150.840082,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.420296,150.627347,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-32.735486,152.139095,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,2,10,Australia,AU,New South Wales,-28.678852,153.279696,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.429677,150.606812,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.395132,150.628678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.395384,150.630052,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090406,1,,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-32.751428,151.985731,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,4,29,Australia,AU,New South Wales,-28.825805,153.298208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.438062,150.616529,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140E,1,,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-31.271386,152.865519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.448032,150.517324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.403407,150.650089,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-31.932795,152.40798,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.465631,150.520481,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-36.44151,149.962098,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-28.677649,153.491585,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,29,Australia,AU,New South Wales,-33.709634,150.785955,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,26,Australia,AU,New South Wales,-28.844725,153.302724,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041N,1,MALE,occurrenceRemarks withheld,2023,5,24,Australia,AU,New South Wales,-34.053416,150.838978,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-28.399966,153.556379,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-31.945396,152.298857,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-32.740523,151.995551,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,26,Australia,AU,New South Wales,-29.4853,153.104063,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,13,Australia,AU,New South Wales,-29.489867,153.110586,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,4,Australia,AU,New South Wales,-29.488779,153.093581,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,12,26,Australia,AU,New South Wales,-32.096155,152.122807,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150T,1,,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-33.711138,150.233122,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-28.813621,153.332351,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,FEMALE,occurrenceRemarks withheld,2024,3,26,Australia,AU,New South Wales,-34.073845,150.834515,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-28.38674,153.523666,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-29.489636,153.104667,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-31.793452,151.914825,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100515,1,FEMALE,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-31.473757,152.901357,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419596,150.611799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.430336,150.607283,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,,occurrenceRemarks withheld,2022,7,1,Australia,AU,New South Wales,-34.746415,146.529813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.45647,150.658856,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,7,24,Australia,AU,New South Wales,-29.485529,153.103784,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,21,Australia,AU,New South Wales,-29.490138,153.107545,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-31.637334,152.78993,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.42855,150.597139,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.066471,150.885391,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,9,10,Australia,AU,New South Wales,-31.484727,152.914314,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102102,1,,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-32.642844,151.615346,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,28,Australia,AU,New South Wales,-28.674873,153.61121,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.086171,150.976926,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-29.477735,153.104208,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090504,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-31.126555,152.794359,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190O,1,MALE,occurrenceRemarks withheld,2024,8,7,Australia,AU,New South Wales,-31.949133,152.374059,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-29.490245,153.108215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.41893,150.609555,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.425653,150.602031,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-34.395927,150.643218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.463829,150.52454,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.830775,153.283377,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.191262,152.028909,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.447765,150.516156,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150Q,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-30.587496,151.301493,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181A,1,,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-28.648123,153.242496,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-30.420651,153.006896,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.430944,150.615371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.459926,150.525472,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-32.706538,152.063978,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240S,1,,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-32.684018,151.706476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435821,150.616245,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-30.500156,152.901147,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,MALE,occurrenceRemarks withheld,2024,9,4,Australia,AU,New South Wales,-30.298502,152.702666,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-28.75957,153.2897,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,25,Australia,AU,New South Wales,-28.818059,153.298364,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.42723,150.604782,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-30.881917,152.869823,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130Z,1,,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-31.93297,152.41473,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.433548,150.617125,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.928286,152.403593,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2022,11,1,Australia,AU,New South Wales,-33.147148,151.077021,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.425943,150.598008,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.446088,150.517011,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-31.920313,152.405107,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003819,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-28.827525,153.316393,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,21,Australia,AU,New South Wales,-28.953942,153.322384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.424739,150.604614,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.399605,150.639439,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,3,1,Australia,AU,New South Wales,-32.713173,152.186532,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003881,1,FEMALE,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-28.827209,153.318036,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435696,150.616303,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-29.483465,153.095207,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090405,1,,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-34.073921,150.834555,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003986,1,MALE,occurrenceRemarks withheld,2023,4,25,Australia,AU,New South Wales,-28.637403,153.630114,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-28.955029,153.411653,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042S,1,MALE,occurrenceRemarks withheld,2023,2,9,Australia,AU,New South Wales,-34.562316,150.184395,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-34.014328,150.885017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.432575,150.614411,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-28.671784,153.451854,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-28.916787,153.319157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.389566,150.627106,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,1,28,Australia,AU,New South Wales,-29.81019,152.830824,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,6,7,Australia,AU,New South Wales,-32.032221,152.488711,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-29.49025,153.10821,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.421042,150.627239,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,7,Australia,AU,New South Wales,-29.484861,153.103822,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-28.387113,153.565884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.427681,150.605694,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,30,Australia,AU,New South Wales,-33.710168,150.78558,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-29.484903,153.103876,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-28.871817,153.409381,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.696462,152.788456,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-34.191742,150.755722,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-31.635736,152.787346,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210I,1,,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-32.722708,152.077083,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.400719,150.619243,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,7,4,Australia,AU,New South Wales,-33.775135,150.101991,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-31.923032,152.370526,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,5,31,Australia,AU,New South Wales,-29.194282,153.029678,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-32.735846,152.04058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.389985,150.627301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.44875,150.515822,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-29.66721,152.867847,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-31.441732,152.91127,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-29.490404,153.108017,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,5,Australia,AU,New South Wales,-28.260365,153.401969,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150W,1,MALE,occurrenceRemarks withheld,2020,12,27,Australia,AU,New South Wales,-33.713011,150.377621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.450889,150.606294,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.920923,152.383387,EPSG:4326 +HUMAN_OBSERVATION,OJJS1912230F,1,,occurrenceRemarks withheld,2020,5,11,Australia,AU,New South Wales,-29.46469,153.111333,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2023,2,5,Australia,AU,New South Wales,-34.073711,150.836991,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,7,2,Australia,AU,New South Wales,-30.886238,153.073874,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-32.240126,151.932749,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-34.063823,150.838524,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-31.446332,152.894119,EPSG:4326 +HUMAN_OBSERVATION,ODMP21070805,1,,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-33.958262,150.928579,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007130E,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.957561,152.181442,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,6,17,Australia,AU,New South Wales,-29.485436,153.103886,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-31.46544,152.856111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.403444,150.650143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.464776,150.522357,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.388198,150.630962,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.631257,153.113632,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100407,1,,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-34.090657,150.985375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.453832,150.520602,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031I,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-36.532196,150.028318,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.388112,150.631149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.389024,150.623815,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-34.398658,150.645045,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.448466,150.517398,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150Z,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.029025,151.045771,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.399535,150.616807,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030W,1,MALE,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-30.885558,153.070235,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-30.191822,152.781441,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2023,3,4,Australia,AU,New South Wales,-32.707602,152.069356,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-32.63767,151.76491,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,1,26,Australia,AU,New South Wales,-31.48169,152.915946,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,6,11,Australia,AU,New South Wales,-28.87809,153.426477,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-31.116816,150.263389,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-28.651328,153.45545,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030T,1,,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-32.686954,151.689549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.4372,150.518406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.466214,150.523,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250A,2,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.767703,146.578625,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-28.686572,153.287936,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-33.77867,150.102412,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-29.49046,153.109396,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,FEMALE,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-34.150166,150.823674,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.203358,152.664512,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-31.431369,152.912464,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-28.8161,153.336244,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.448153,150.519301,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-31.640725,152.792848,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-31.918271,152.37838,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-28.849617,153.307837,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.465443,150.523687,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.453478,150.518218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.46223,150.534634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.435425,150.602916,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.454074,150.520497,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-31.436311,152.900364,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.454487,150.657039,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.488639,150.634188,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,3,Australia,AU,New South Wales,-31.469033,152.919855,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,26,Australia,AU,New South Wales,-29.488139,153.103484,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003825,1,MALE,occurrenceRemarks withheld,2023,2,12,Australia,AU,New South Wales,-28.830629,153.230526,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-29.339319,152.848879,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,2,15,Australia,AU,New South Wales,-31.454109,152.916885,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.420783,150.630173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.446525,150.515932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.430647,150.608471,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,18,Australia,AU,New South Wales,-29.490199,153.10975,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,1,5,Australia,AU,New South Wales,-30.50416,152.9214,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-28.959727,153.394144,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-29.489788,153.105201,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-34.314732,150.722098,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,2,18,Australia,AU,New South Wales,-31.466668,152.899746,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.446844,150.516096,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-28.68319,153.280652,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210K,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-32.712685,152.06635,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004213,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-28.676052,153.547463,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.432608,150.605009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.422108,150.607942,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,11,21,Australia,AU,New South Wales,-34.150311,150.82411,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2022,5,12,Australia,AU,New South Wales,-32.574766,151.775894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.436122,150.616443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.427338,150.604735,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-31.44384,152.924873,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,3,14,Australia,AU,New South Wales,-36.572615,149.944869,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,FEMALE,occurrenceRemarks withheld,2024,6,14,Australia,AU,New South Wales,-31.144333,152.86125,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.421745,150.637457,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.465735,150.52161,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-34.439156,150.617162,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130D,1,,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-31.981248,152.357065,EPSG:4326 +HUMAN_OBSERVATION,OJJS19090300,1,,occurrenceRemarks withheld,2022,4,17,Australia,AU,New South Wales,-32.764939,152.114072,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,18,Australia,AU,New South Wales,-31.434325,152.87778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.420544,150.609085,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.435647,150.615216,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.389793,150.628133,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-34.079579,150.80858,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110B,1,,occurrenceRemarks withheld,2023,4,13,Australia,AU,New South Wales,-32.903614,151.720227,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-28.394529,153.558596,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,10,Australia,AU,New South Wales,-31.450184,152.929008,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,2,17,Australia,AU,New South Wales,-32.712151,152.068045,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.435204,150.61697,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2022,6,29,Australia,AU,New South Wales,-36.160568,149.345255,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.43322,150.607723,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-31.447447,152.877363,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100607,1,FEMALE,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-31.471934,152.926763,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.438766,150.60368,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-28.851685,153.366858,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.392757,150.639175,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.470965,150.53011,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-28.726548,153.548753,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090U,1,MALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-32.667342,152.01404,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180Y,1,,occurrenceRemarks withheld,2022,10,13,Australia,AU,New South Wales,-28.813955,153.275153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.488051,150.635914,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.399702,150.617488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.427132,150.603914,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-34.05342,150.83898,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081103,1,,occurrenceRemarks withheld,2023,3,24,Australia,AU,New South Wales,-33.4937,149.562103,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.488626,150.635375,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-31.44531,152.911729,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-31.914293,152.378708,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.079579,150.80858,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002794,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.489437,153.095115,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OMFZ23033002;ODFK24051300,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-33.251643,150.88723,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,2,12,Australia,AU,New South Wales,-28.632652,153.471538,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.464596,150.521916,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.388018,150.631423,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.450382,150.596971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.457774,150.526014,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.464174,150.520644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.456879,150.527695,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-33.774038,150.062109,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.418306,150.632604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.432607,150.613279,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.420947,150.630223,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.42067,150.630818,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004101,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.868818,153.221964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.46455,150.526304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.435348,150.618347,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100503,1,,occurrenceRemarks withheld,2024,6,20,Australia,AU,New South Wales,-31.473213,152.924126,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-33.712649,150.785747,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-29.48975,153.101279,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-28.687767,153.607389,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-29.489274,153.098152,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,18,Australia,AU,New South Wales,-31.434325,152.87778,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-29.480439,153.104315,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180D,1,,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-28.86456,153.293232,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-33.543308,149.62228,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040C,1,,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-34.060288,150.841815,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.457568,152.927995,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2023,5,28,Australia,AU,New South Wales,-29.030312,152.987135,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-31.448576,152.90916,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.423695,150.634791,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-29.092827,152.503231,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.182206,153.002583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.418306,150.632604,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,FEMALE,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-28.823247,153.308213,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-29.491529,153.099761,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-29.484936,153.103817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.454071,150.520344,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-31.45418,152.925258,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.41973,150.632585,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003912,1,,occurrenceRemarks withheld,2023,1,7,Australia,AU,New South Wales,-28.530409,152.973995,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.441615,150.517416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.433032,150.607347,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.422665,150.604586,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-28.598067,153.08973,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-33.777296,150.063013,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003880,1,,occurrenceRemarks withheld,2023,3,16,Australia,AU,New South Wales,-28.847331,153.302218,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-33.325293,150.304449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.391646,150.645633,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.872021,153.339182,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-29.482115,153.10416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.453938,150.520479,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.447868,150.516338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.388744,150.63025,EPSG:4326 +HUMAN_OBSERVATION,OPJG20060402,1,,occurrenceRemarks withheld,2020,3,31,Australia,AU,New South Wales,-34.80854,150.02093,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004284,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-29.018727,153.420144,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.250309,149.406876,EPSG:4326 +HUMAN_OBSERVATION,OPUR14011100,1,,occurrenceRemarks withheld,2022,8,18,Australia,AU,New South Wales,-29.305723,153.165825,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.459877,150.519063,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031811,1,FEMALE,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-28.817457,153.30278,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,10,12,Australia,AU,New South Wales,-34.139613,150.778378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.42691,150.604976,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,28,Australia,AU,New South Wales,-35.062989,150.127277,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-31.915901,152.373563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.446443,150.51453,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-30.912587,153.044217,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419089,150.61028,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-28.82356,153.300335,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-28.923013,153.185174,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.024321,151.042791,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,,occurrenceRemarks withheld,2023,5,1,Australia,AU,New South Wales,-28.95915,153.394206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.446017,150.514445,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-28.934723,153.278306,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,24,Australia,AU,New South Wales,-33.711778,150.785282,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-31.642546,152.793528,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-29.480444,153.104122,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,3,15,Australia,AU,New South Wales,-34.140905,150.791179,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004171,1,MALE,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.671454,153.491504,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060S,1,,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-31.464557,152.924261,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.397749,150.621382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.394039,150.630873,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.399595,150.639407,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.431335,150.615077,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.491493,150.639094,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.491511,150.639083,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,3,30,Australia,AU,New South Wales,-28.883842,153.325737,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.41908,150.610291,EPSG:4326 +HUMAN_OBSERVATION,SCHM-035,1,,occurrenceRemarks withheld,2020,8,23,Australia,AU,New South Wales,-34.276055,150.784263,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.447755,150.516102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.465815,150.522457,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,,occurrenceRemarks withheld,2023,1,26,Australia,AU,New South Wales,-28.823212,153.301419,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140E,1,,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-31.253271,152.966901,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,7,21,Australia,AU,New South Wales,-31.948252,152.300422,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,2,Australia,AU,New South Wales,-31.474216,152.900319,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,24,Australia,AU,New South Wales,-28.67706,153.289504,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.420305,150.62738,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-29.477376,153.104557,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.429523,150.618763,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004050,1,,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-28.2398,153.514459,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.650407,149.955028,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-28.365997,153.574456,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154T,1,,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-28.819626,153.335751,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-31.913202,152.374047,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-28.843373,153.32037,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,9,Australia,AU,New South Wales,-29.490161,153.110501,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.423797,150.637279,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003802,1,,occurrenceRemarks withheld,2023,4,8,Australia,AU,New South Wales,-29.016187,153.430653,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.466222,150.522946,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433583,150.617048,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004179,1,MALE,occurrenceRemarks withheld,2023,7,1,Australia,AU,New South Wales,-28.610492,152.661161,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-30.210355,152.749856,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.418972,150.609391,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-29.488041,153.102561,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419383,150.638872,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.447296,150.513058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.423842,150.6373,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,6,4,Australia,AU,New South Wales,-28.638162,153.531976,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-34.354778,150.659547,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102218,1,,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-32.7091,152.071229,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.465255,150.522386,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,19,Australia,AU,New South Wales,-29.485566,153.103833,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-29.48813,153.091849,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150D,1,,occurrenceRemarks withheld,2022,9,7,Australia,AU,New South Wales,-28.591399,153.418449,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-29.485737,153.103725,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.315304,152.011194,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-28.636135,153.447181,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082307,1,,occurrenceRemarks withheld,2023,5,25,Australia,AU,New South Wales,-34.26555,150.75978,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,7,Australia,AU,New South Wales,-28.839872,153.303635,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-31.22944,150.16788,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300O,1,,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-32.748493,152.033432,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,27,Australia,AU,New South Wales,-29.485758,153.103693,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.390077,150.627396,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,21,Australia,AU,New South Wales,-33.709453,150.785155,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-31.532957,152.836071,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.491696,150.639317,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,6,12,Australia,AU,New South Wales,-28.822269,153.329782,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102503,2,,occurrenceRemarks withheld,2024,9,5,Australia,AU,New South Wales,-30.379068,153.015765,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS;ODFK23090501,1,,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-30.483565,151.751141,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-33.709474,150.785132,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,2,FEMALE,occurrenceRemarks withheld,2024,9,15,Australia,AU,New South Wales,-29.726114,150.937159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.46046,150.515334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.45998,150.52547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.453488,150.518283,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,1,MALE,occurrenceRemarks withheld,2023,4,16,Australia,AU,New South Wales,-28.62832,153.426177,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,4,6,Australia,AU,New South Wales,-29.08315,153.37193,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132R,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-31.41529,152.89726,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.685552,153.525734,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.076756,150.86069,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-28.815115,153.285223,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100Y,1,MALE,occurrenceRemarks withheld,2020,2,20,Australia,AU,New South Wales,-32.709662,152.061388,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-33.717635,150.78398,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-29.482153,153.104262,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121103,1,MALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.113865,152.903644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.437255,150.613995,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.46304,150.519872,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-28.397324,153.557137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419785,150.635434,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250I,1,FEMALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-32.76419,152.118095,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,9,10,Australia,AU,New South Wales,-31.926205,152.352281,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.389807,150.63071,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.437687,150.603787,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-33.713868,150.785118,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.438851,150.518009,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.053416,150.838978,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091808,1,,occurrenceRemarks withheld,2024,8,17,Australia,AU,New South Wales,-32.647053,151.624176,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,4,6,Australia,AU,New South Wales,-31.13819,150.13794,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-30.095476,152.204862,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,4,5,Australia,AU,New South Wales,-29.070677,153.079295,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040427,1,,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-33.432002,149.33336,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-28.38948,152.679161,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-29.48531,153.103961,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041T,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.374914,153.017126,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-28.67595,153.277461,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.459204,150.516111,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,28,Australia,AU,New South Wales,-30.374914,153.017126,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003923,1,,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.928314,153.21011,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,,occurrenceRemarks withheld,2022,12,28,Australia,AU,New South Wales,-34.768008,146.587798,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-30.407831,153.027007,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.459222,150.5161,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-33.705726,150.785202,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,12,8,Australia,AU,New South Wales,-29.740227,151.058657,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.419124,150.610246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.420635,150.630917,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,17,Australia,AU,New South Wales,-31.45954,152.924348,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-31.149497,152.810319,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,2,18,Australia,AU,New South Wales,-29.479332,153.104197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.430519,150.609758,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-34.462307,150.549897,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003823,1,,occurrenceRemarks withheld,2023,6,21,Australia,AU,New South Wales,-28.716027,153.465978,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-31.485223,152.918202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.453962,150.520304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.39273,150.639175,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,6,21,Australia,AU,New South Wales,-29.7403,151.058613,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.45488,150.663406,EPSG:4326 +HUMAN_OBSERVATION,OJJS18041601,1,,occurrenceRemarks withheld,2020,12,14,Australia,AU,New South Wales,-28.889765,153.231893,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.455318,150.519611,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,21,Australia,AU,New South Wales,-29.486879,153.09717,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.418912,150.632717,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-29.477235,153.104391,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.632616,152.755283,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-32.711058,152.065485,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.426091,150.603716,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.444736,150.517487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.469272,150.527525,EPSG:4326 +HUMAN_OBSERVATION,ODFK24021300;ODFK24021301,1,,occurrenceRemarks withheld,2024,1,14,Australia,AU,New South Wales,-28.721083,152.097222,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.449128,150.516236,EPSG:4326 +HUMAN_OBSERVATION,OPUR14061300,1,,occurrenceRemarks withheld,2023,3,16,Australia,AU,New South Wales,-28.950323,153.370132,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.465882,150.522183,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-34.024625,150.990148,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.445954,150.513087,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,FEMALE,occurrenceRemarks withheld,2020,2,2,Australia,AU,New South Wales,-36.18352,149.35486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.458245,150.526142,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-29.031125,153.429213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.389974,150.627225,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.450949,150.51579,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180D,1,,occurrenceRemarks withheld,2022,11,5,Australia,AU,New South Wales,-28.864429,153.293305,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-33.714207,150.78539,EPSG:4326 +HUMAN_OBSERVATION,OVGI98110201,1,,occurrenceRemarks withheld,2020,12,12,Australia,AU,New South Wales,-30.477681,151.739807,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-28.821686,153.305197,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-28.845355,153.309927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.431504,150.612157,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-34.092443,150.826181,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,10,2,Australia,AU,New South Wales,-32.097185,152.32559,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.352874,150.551525,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-30.383883,152.99617,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-33.710245,150.78455,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004074,1,MALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-28.430159,153.017865,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042608,1,,occurrenceRemarks withheld,2024,4,3,Australia,AU,New South Wales,-31.940637,152.415576,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.419531,150.611681,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.463763,150.523976,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-29.485272,153.103897,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-31.473832,152.921058,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-36.44151,149.962098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.418444,150.633209,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003854,1,,occurrenceRemarks withheld,2023,3,5,Australia,AU,New South Wales,-29.020033,153.394037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.4526,150.604798,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-28.229862,153.427208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.463834,150.523909,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.383966,150.623306,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.465645,150.52071,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.480857,150.533367,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.388805,150.624572,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.393488,150.643896,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-33.708407,150.786864,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-33.419281,149.577506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.434972,150.602787,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-31.474786,152.897239,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-29.490175,153.109862,EPSG:4326 +HUMAN_OBSERVATION,Obs_2037,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-28.808559,153.510594,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-31.46144,152.9199,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-29.485566,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003977,1,MALE,occurrenceRemarks withheld,2023,1,28,Australia,AU,New South Wales,-28.882121,153.202587,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-29.490871,153.109288,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.450098,150.516522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.438204,150.616395,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.436247,150.615895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.463375,150.523911,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.419998,150.638028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.488743,150.635328,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104130A,1,,occurrenceRemarks withheld,2021,1,21,Australia,AU,New South Wales,-32.193036,151.905864,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.383951,150.622556,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-28.31471,153.388541,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070601,1,,occurrenceRemarks withheld,2022,8,15,Australia,AU,New South Wales,-34.354355,150.68425,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-28.931808,153.276945,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-29.490172,153.109969,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004221,1,FEMALE,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-28.826573,153.315755,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-32.154128,151.938478,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003863,1,,occurrenceRemarks withheld,2023,6,22,Australia,AU,New South Wales,-28.81754,153.316076,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090803,1,,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-31.459671,152.882512,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-29.490413,153.109449,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-29.48579,153.103666,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,20,Australia,AU,New South Wales,-28.62251,153.32644,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150G,1,MALE,occurrenceRemarks withheld,2020,3,27,Australia,AU,New South Wales,-35.096731,150.069922,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152B,1,,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-28.264551,153.472011,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.428884,150.600404,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,11,9,Australia,AU,New South Wales,-31.451348,152.915703,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-28.826273,153.281284,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.385597,150.626511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.457653,150.659008,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.491393,150.639043,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010703,1,,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-29.726523,152.929942,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.388539,150.630376,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.449037,150.51663,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.411572,150.596135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435321,150.615127,EPSG:4326 +HUMAN_OBSERVATION,ODMP21121516,1,,occurrenceRemarks withheld,2021,12,30,Australia,AU,New South Wales,-31.041075,150.075773,EPSG:4326 +HUMAN_OBSERVATION,ODFK23111401,1,,occurrenceRemarks withheld,2024,9,5,Australia,AU,New South Wales,-31.573591,152.187934,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-29.485118,153.104176,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,23,Australia,AU,New South Wales,-31.30097,152.863085,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153M,1,,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-28.851337,153.373978,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-31.919738,152.379013,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-31.63015,152.787166,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150Q,1,,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-33.568445,150.625201,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-34.394755,150.641827,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.471073,150.53101,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-33.717264,150.784238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.411329,150.596588,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-28.260223,153.401382,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435825,150.519959,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-30.901413,151.97042,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.434099,150.616239,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.394721,150.641469,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.465492,150.525623,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-28.393411,153.563264,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-29.479844,153.104224,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-28.952428,153.42936,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.397704,150.639971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.478926,150.53374,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.459005,150.656162,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.390513,150.627123,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.49299,150.639096,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.443537,152.838289,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-28.824892,153.317663,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,3,4,Australia,AU,New South Wales,-31.453918,152.910451,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.464757,150.522281,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,FEMALE,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-30.400937,152.992853,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-29.489853,153.101274,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.397387,150.627788,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.41833,150.603317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.447216,150.513093,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.436047,150.616315,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,12,9,Australia,AU,New South Wales,-31.444529,152.905555,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003945,1,MALE,occurrenceRemarks withheld,2023,5,29,Australia,AU,New South Wales,-28.393761,153.559577,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.412869,150.597446,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.389595,150.62717,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-30.254708,152.803234,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-28.66697,153.489654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435774,150.52144,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.251271,153.502222,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-31.476858,152.926095,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-28.672232,153.415221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.412514,150.601884,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OIXR16051100,1,,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-29.441584,149.870381,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003966,1,,occurrenceRemarks withheld,2023,4,26,Australia,AU,New South Wales,-28.764982,153.248563,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2024,2,28,Australia,AU,New South Wales,-31.442821,152.919764,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.433074,150.615931,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.469623,150.526611,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.445937,150.513142,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-32.691981,151.697867,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.420296,150.627347,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435788,150.521222,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-29.483255,153.095169,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.650337,152.823148,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419766,150.635347,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,4,22,Australia,AU,New South Wales,-31.985428,152.400438,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-34.189867,150.785746,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100301,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-31.101405,152.859604,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,MALE,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-36.09905,149.498434,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.465735,150.52161,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.412769,150.598298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.469469,150.527498,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.386798,150.627108,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,7,7,Australia,AU,New South Wales,-32.690809,151.650275,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-29.489279,153.103216,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-32.648007,151.955971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.412485,150.601787,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003803,1,,occurrenceRemarks withheld,2023,1,7,Australia,AU,New South Wales,-28.638053,153.591191,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050T,1,,occurrenceRemarks withheld,2023,2,10,Australia,AU,New South Wales,-35.048723,150.673181,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.438002,150.604213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.485681,150.636928,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-33.703492,150.787695,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-31.447602,152.881609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.43641,150.615956,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-29.025463,153.286418,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,3,7,Australia,AU,New South Wales,-36.590303,149.956571,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,7,21,Australia,AU,New South Wales,-32.428513,151.968804,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.423877,150.637212,EPSG:4326 +HUMAN_OBSERVATION,Obs_0762,1,,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-32.726537,151.847435,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-33.777258,150.102546,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.445992,150.513194,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-29.489951,153.10115,EPSG:4326 +HUMAN_OBSERVATION,OKEM14042900,1,,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-34.078012,150.840449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.447407,150.520291,EPSG:4326 +HUMAN_OBSERVATION,OPUR16092100,1,,occurrenceRemarks withheld,2020,7,18,Australia,AU,New South Wales,-33.531531,149.559384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.446275,150.513806,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140O,1,FEMALE,occurrenceRemarks withheld,2022,2,1,Australia,AU,New South Wales,-32.759638,152.103901,EPSG:4326 +HUMAN_OBSERVATION,OESM20102100,1,,occurrenceRemarks withheld,2022,4,27,Australia,AU,New South Wales,-33.172732,151.237597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.397976,150.62143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.421298,150.626938,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-29.490877,153.099302,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.392883,150.632657,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,8,3,Australia,AU,New South Wales,-32.721365,151.733212,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031406,1,FEMALE,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-30.398845,151.70833,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.385763,150.623005,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.451379,150.518324,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,2,16,Australia,AU,New South Wales,-35.134333,150.044944,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-28.818329,153.280046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.465833,150.522435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.420714,150.630784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.447331,150.514308,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.437884,150.605555,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-29.483502,153.095239,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.436748,150.527609,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-29.490194,153.109766,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-30.896823,153.046222,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-32.713391,152.066564,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.447212,150.514236,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,12,16,Australia,AU,New South Wales,-31.46373,152.876663,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.465843,150.521618,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,4,19,Australia,AU,New South Wales,-28.904888,153.348793,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-34.218206,150.793683,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152Y,1,MALE,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-28.685405,153.526358,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-29.490166,153.110533,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031N,1,,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-31.459778,152.92659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.431946,150.613559,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,6,26,Australia,AU,New South Wales,-28.58481,153.07216,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.485626,150.637823,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,MALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-34.069805,150.835694,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2024,8,31,Australia,AU,New South Wales,-34.147778,150.790694,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.397064,150.644198,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.035121,150.873769,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,5,19,Australia,AU,New South Wales,-31.44445,152.924557,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.632151,149.941399,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-34.440016,150.617769,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547428,150.01112,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-29.012361,153.271235,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.395417,150.629899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.439538,150.516345,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,4,23,Australia,AU,New South Wales,-28.894283,153.321727,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.44632,150.513794,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.457812,152.927516,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,24,Australia,AU,New South Wales,-29.490147,153.109712,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-28.238698,153.506293,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-33.097989,151.157008,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.439753,150.604794,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17185,152.9088,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022412,1,,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-32.731218,152.037231,EPSG:4326 +HUMAN_OBSERVATION,OPUR21080904;OMFZ23032807,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-31.47065,152.931186,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-33.546935,150.674086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.397968,150.621507,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090Y,1,MALE,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-31.461622,152.930099,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004016,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-28.81848,153.298463,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-32.666903,152.014607,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022518,1,FEMALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-32.725131,152.074143,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004044,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-28.637878,153.62882,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-29.490259,153.108199,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.429645,150.618107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.395414,150.643233,EPSG:4326 +HUMAN_OBSERVATION,OCHV19051300,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-29.692017,152.86634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.490645,150.638607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.431364,150.615175,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-28.58182,153.067923,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007130E,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.961599,152.182816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.459971,150.519212,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-33.713891,150.785422,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,5,Australia,AU,New South Wales,-28.819132,153.315491,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.436929,150.60333,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.09214,150.838333,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-31.439189,152.90422,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-29.485165,153.104133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.395148,150.629025,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2022,10,22,Australia,AU,New South Wales,-31.924726,152.314657,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,6,Australia,AU,New South Wales,-29.487523,153.110951,EPSG:4326 +HUMAN_OBSERVATION,ODFK2307310B,1,,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-30.551316,152.894005,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.397378,150.627777,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-32.069784,152.50487,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050W,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-36.183184,149.32161,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-28.919346,153.461447,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,2,20,Australia,AU,New South Wales,-29.630491,152.899776,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,24,Australia,AU,New South Wales,-29.488144,153.102679,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130G,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-32.664107,151.671292,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-33.716385,150.784866,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OJJS20041402;OJJS20041409;OMFZ23033002,1,,occurrenceRemarks withheld,2022,7,12,Australia,AU,New South Wales,-34.205152,150.591274,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-28.640579,153.553525,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-31.441108,152.902595,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.437486,150.605501,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-34.446511,150.514333,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-31.850361,152.401928,EPSG:4326 +HUMAN_OBSERVATION,OJJS1912230F,1,,occurrenceRemarks withheld,2020,5,2,Australia,AU,New South Wales,-29.487037,153.10298,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.821668,153.3033,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.450414,150.597699,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-30.100682,152.12561,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,4,2,Australia,AU,New South Wales,-34.199629,150.777581,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-28.983022,153.441702,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150H,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-31.64814,152.795265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.454081,150.520388,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,28,Australia,AU,New South Wales,-31.460778,152.894704,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.399547,150.624812,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-29.490231,153.108221,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,FEMALE,occurrenceRemarks withheld,2023,1,19,Australia,AU,New South Wales,-32.682192,151.80593,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-29.490371,153.108156,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110E,1,,occurrenceRemarks withheld,2023,4,4,Australia,AU,New South Wales,-30.518805,151.527885,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.383802,150.623202,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,20,Australia,AU,New South Wales,-33.706008,150.786159,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-31.437546,152.905454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418948,150.609511,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-34.500349,150.563856,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.427476,150.603535,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,8,4,Australia,AU,New South Wales,-31.476858,152.926095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.446882,150.516193,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.433645,150.616992,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.426759,150.601412,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.431248,150.615678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.44794,150.51811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.438001,150.604159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.390998,150.627957,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004178,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.913129,153.404093,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707;OPJG15082102,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-30.21858,152.793051,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,26,Australia,AU,New South Wales,-31.576523,152.81287,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,4,Australia,AU,New South Wales,-33.713566,150.785134,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.421374,150.626708,EPSG:4326 +HUMAN_OBSERVATION,ODMP21060800,1,,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-29.735136,152.924801,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.447471,150.516339,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-28.900565,153.208094,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-34.3205,150.756278,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100501,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.59299,152.83709,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.398976,150.645189,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-34.035977,151.02349,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.451424,150.518322,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121501,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-34.442781,150.519033,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,6,1,Australia,AU,New South Wales,-30.29861,153.1094,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,8,Australia,AU,New South Wales,-32.312586,152.041806,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,15,Australia,AU,New South Wales,-28.396942,153.557446,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-31.474068,152.900839,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.805797,153.342482,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.44717,150.513072,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.143508,150.795133,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-33.309603,150.308938,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003984,1,MALE,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-28.711535,153.593647,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2023,6,24,Australia,AU,New South Wales,-36.651821,149.940238,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-31.455937,152.928804,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-28.394156,153.558228,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004058,1,FEMALE,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.940107,153.27744,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140P,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-31.998586,152.480034,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,10,1,Australia,AU,New South Wales,-29.490255,153.108113,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-28.834072,153.324396,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-30.299239,153.094793,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-34.12137,150.971233,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-33.765926,150.056839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.420715,150.630817,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,29,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031811,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-28.817457,153.30278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.489553,150.638539,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.433539,150.617115,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.447751,150.520357,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-30.419761,152.978394,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,14,Australia,AU,New South Wales,-33.719291,150.782872,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-28.688792,153.590651,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.223426,152.189959,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.46572,150.520413,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.111115,150.804942,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.435661,150.615444,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-33.763571,150.057545,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.418436,150.597668,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-34.437933,150.615467,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100P,1,MALE,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-28.518941,153.452439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.403137,150.638383,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,30,Australia,AU,New South Wales,-29.490259,153.110039,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-31.488169,152.910635,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-34.15623,150.824495,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.444744,150.514341,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.448784,150.517029,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.388697,150.624151,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.39265,150.639232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.389721,150.628102,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,FEMALE,occurrenceRemarks withheld,2024,5,29,Australia,AU,New South Wales,-31.145805,152.797861,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-32.706607,152.063754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.454159,150.523378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.485238,150.636854,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,7,1,Australia,AU,New South Wales,-31.482764,152.919799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.458499,150.655621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.421082,150.626999,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002739,1,,occurrenceRemarks withheld,2022,5,12,Australia,AU,New South Wales,-29.490064,153.110515,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.454304,150.648892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.450914,150.515824,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-28.889997,153.29881,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.439225,150.619782,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.42551,150.603014,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.431289,150.614992,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,10,28,Australia,AU,New South Wales,-32.76438,152.11736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.384048,150.622433,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102213,1,,occurrenceRemarks withheld,2022,7,4,Australia,AU,New South Wales,-32.701038,152.062822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.447285,150.52048,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.060984,150.866027,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2020,4,27,Australia,AU,New South Wales,-31.257275,152.743252,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,1,22,Australia,AU,New South Wales,-31.441169,152.885035,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-33.70335,150.787878,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.390061,150.629832,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2022,6,10,Australia,AU,New South Wales,-31.403015,152.093798,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.433918,150.606517,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-28.810373,153.510079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.439884,150.517837,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-32.733047,152.09001,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-31.448292,152.893735,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2020,6,4,Australia,AU,New South Wales,-33.994363,150.996801,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,3,14,Australia,AU,New South Wales,-31.437735,152.905432,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121105,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-33.54555,149.521265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.423788,150.63728,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111318,1,,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-31.481587,152.921047,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.28482,152.871508,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.42086,150.630421,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222O,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-32.77124,151.943636,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,4,Australia,AU,New South Wales,-31.455223,152.913506,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003900,1,FEMALE,occurrenceRemarks withheld,2023,1,14,Australia,AU,New South Wales,-28.955977,153.319712,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.457905,152.873213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.447704,150.518052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.492909,150.639131,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-31.481563,152.920871,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.632151,149.941399,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-29.490283,153.108108,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,6,Australia,AU,New South Wales,-29.490301,153.110302,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-31.467296,152.909815,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,4,28,Australia,AU,New South Wales,-28.891207,153.354441,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,11,1,Australia,AU,New South Wales,-29.661227,152.874732,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.44302,152.886806,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-30.290446,152.699727,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.45289,150.519911,EPSG:4326 +HUMAN_OBSERVATION,OLHP23082408,1,MALE,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-32.484725,152.270246,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031817,1,,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-28.651026,153.455295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.420314,150.627368,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-28.683592,153.521789,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004018,1,,occurrenceRemarks withheld,2023,9,19,Australia,AU,New South Wales,-28.556389,153.14999,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-31.444171,152.907072,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,5,Australia,AU,New South Wales,-29.485159,153.103826,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,5,9,Australia,AU,New South Wales,-34.20866,150.809,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,7,Australia,AU,New South Wales,-29.490044,153.101209,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.42772,150.605388,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100503,1,,occurrenceRemarks withheld,2024,4,14,Australia,AU,New South Wales,-31.474155,152.900359,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030603,1,,occurrenceRemarks withheld,2024,2,12,Australia,AU,New South Wales,-31.452173,152.921463,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.386946,150.631443,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.680336,149.96634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.447773,150.516526,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.447816,150.518658,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.456578,150.519519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.421169,150.626343,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,2,1,Australia,AU,New South Wales,-30.4053,152.93813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.46212,150.524297,EPSG:4326 +HUMAN_OBSERVATION,OPUR22062301,1,,occurrenceRemarks withheld,2023,6,16,Australia,AU,New South Wales,-33.660153,149.855475,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,12,Australia,AU,New South Wales,-29.487565,153.103291,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-34.218972,150.7915,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-28.888915,153.186783,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,5,9,Australia,AU,New South Wales,-34.766634,146.580079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.452583,150.519877,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-31.445958,152.915585,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-29.485833,153.103623,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.466271,150.524022,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.810856,152.82372,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,3,6,Australia,AU,New South Wales,-31.47324,152.92546,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.86465,153.293074,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202,1,,occurrenceRemarks withheld,2020,5,30,Australia,AU,New South Wales,-30.417,151.682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.463433,150.535295,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,MALE,occurrenceRemarks withheld,2023,2,12,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260E,1,,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-32.737608,152.041096,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002839,1,FEMALE,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-29.664828,152.872978,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2021,11,25,Australia,AU,New South Wales,-29.834378,150.84497,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300L,1,,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-32.707495,152.065878,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.433449,150.616671,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-31.45678,152.900435,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-29.50457,152.824566,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,FEMALE,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-31.914295,152.37346,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,MALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.84369,153.302888,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,1,10,Australia,AU,New South Wales,-31.631326,152.782807,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.420608,150.609127,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,1,27,Australia,AU,New South Wales,-31.202931,152.964644,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,27,Australia,AU,New South Wales,-29.477333,153.104562,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002557,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-29.095797,153.396186,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,18,Australia,AU,New South Wales,-28.440359,152.991128,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,2,10,Australia,AU,New South Wales,-33.99196,150.89266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.450929,150.523256,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.418301,150.633757,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-33.706016,150.786187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.447713,150.517583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.427311,150.604747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.46529,150.522342,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140Y,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-28.524436,153.089624,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,1,Australia,AU,New South Wales,-28.623747,152.990198,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040D,1,MALE,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-33.978217,150.988852,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-29.48531,153.104138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.452505,150.610982,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,8,Australia,AU,New South Wales,-32.706544,152.06372,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.439129,150.60516,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-33.705961,150.786296,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082309,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.411614,152.993768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418878,150.632816,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2020,4,6,Australia,AU,New South Wales,-31.478312,152.913797,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-29.490091,153.10122,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,19,Australia,AU,New South Wales,-29.479458,153.104208,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,9,11,Australia,AU,New South Wales,-29.665515,151.027295,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-29.834312,150.844879,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-32.573656,151.737838,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190A,1,,occurrenceRemarks withheld,2023,2,26,Australia,AU,New South Wales,-29.484657,153.096045,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.810553,153.068987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.446408,150.517241,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041T,1,MALE,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-30.374914,153.017126,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-31.458684,152.925438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.452529,150.519911,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-29.487892,153.091736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.39273,150.639175,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2022,6,14,Australia,AU,New South Wales,-32.728197,152.150532,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-29.490208,153.108194,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-28.222185,153.537072,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,6,14,Australia,AU,New South Wales,-28.673033,153.493043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.420716,150.609102,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-32.710459,152.06523,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-28.820487,153.285454,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,10,Australia,AU,New South Wales,-35.081492,150.028546,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.385901,150.624512,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.392685,150.639177,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-28.651078,153.376844,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,2,10,Australia,AU,New South Wales,-33.52261,150.65549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-34.465131,150.520703,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-28.841908,153.204977,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-29.486972,153.091741,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-29.49109,153.096017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.42209,150.60791,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.575848,150.016461,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,25,Australia,AU,New South Wales,-29.485202,153.104149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.417675,150.603009,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-29.490213,153.110517,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.575848,150.016461,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,30,Australia,AU,New South Wales,-34.439947,150.618391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.433605,150.614034,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.414402,150.597903,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.413334,150.597227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.418351,150.632602,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,10,Australia,AU,New South Wales,-28.621616,153.425915,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003858,1,MALE,occurrenceRemarks withheld,2023,3,22,Australia,AU,New South Wales,-28.820041,153.302397,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-33.717699,150.784145,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240X,1,,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-32.729647,152.08478,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-28.629,153.446567,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.417649,150.603043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.386955,150.631475,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,28,Australia,AU,New South Wales,-30.867392,152.734409,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.469497,150.527105,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.949626,153.316981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.42101,150.629764,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004168,1,,occurrenceRemarks withheld,2023,8,18,Australia,AU,New South Wales,-28.402583,153.528744,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-28.63165,153.426896,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.459501,150.515624,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.441777,152.9023,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-28.668946,153.192734,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.458661,150.515975,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,6,18,Australia,AU,New South Wales,-34.02432,151.04278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.465375,150.520739,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,7,Australia,AU,New South Wales,-29.485585,153.103752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.397558,150.62315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.444715,150.516018,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,MALE,occurrenceRemarks withheld,2022,7,16,Australia,AU,New South Wales,-32.709749,152.062583,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-29.489596,153.103924,EPSG:4326 +HUMAN_OBSERVATION,WARC-BM,1,,occurrenceRemarks withheld,2021,12,22,Australia,AU,New South Wales,-32.968863,151.556672,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-34.14907,150.824297,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,5,25,Australia,AU,New South Wales,-31.447639,152.920984,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.433064,150.614016,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.389476,150.628968,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003949,1,,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-28.874355,153.278824,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-31.448746,152.916147,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-30.173921,152.788897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.435589,150.615479,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062101,2,FEMALE,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.769805,146.590933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.410268,150.597651,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002829,1,,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-29.483932,153.095309,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-28.561624,153.115857,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-28.850549,153.1621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.438102,150.604276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.456242,150.655913,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-34.448119,150.52392,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.388596,150.624012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.4352,150.608461,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,13,Australia,AU,New South Wales,-31.4662,152.899322,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-31.929085,152.383795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.446992,150.515396,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,22,Australia,AU,New South Wales,-28.864647,153.293198,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.805797,153.342482,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.428718,150.616305,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,9,Australia,AU,New South Wales,-33.713244,150.785381,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.805797,153.342482,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102106,1,,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-32.73815,152.033792,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-28.639313,153.413693,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,8,21,Australia,AU,New South Wales,-30.641952,152.95885,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,MALE,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-32.456803,151.769527,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.398656,150.64026,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122002,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-28.972767,153.405095,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100B,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-30.467908,152.889585,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.418357,150.631971,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2021,1,21,Australia,AU,New South Wales,-34.078313,150.840647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.42008,150.640898,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-34.435494,150.850888,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,FEMALE,occurrenceRemarks withheld,2024,6,12,Australia,AU,New South Wales,-31.145777,152.8995,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.454382,150.606945,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-29.490586,153.108113,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-30.296029,153.123949,EPSG:4326 +HUMAN_OBSERVATION,OPJL98052800,1,,occurrenceRemarks withheld,2020,4,16,Australia,AU,New South Wales,-31.521912,151.652436,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.453849,150.520525,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,MALE,occurrenceRemarks withheld,2023,11,25,Australia,AU,New South Wales,-34.150224,150.822925,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.423689,150.637282,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-29.490124,153.107427,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.390131,150.627384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.420279,150.627391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.4403,150.603702,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.43931,150.604274,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.450225,150.516116,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,5,Australia,AU,New South Wales,-31.45465,152.926752,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.447961,150.518251,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.412982,150.599086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.450866,150.515716,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-28.374668,153.563915,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-31.121738,152.798305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.386597,150.627407,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,25,Australia,AU,New South Wales,-29.492463,153.109986,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-28.632125,153.448574,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-31.948252,152.300422,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,28,Australia,AU,New South Wales,-35.069995,150.1299,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.426606,150.604212,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-31.640304,152.788615,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030B,1,,occurrenceRemarks withheld,2022,4,26,Australia,AU,New South Wales,-29.03086,153.328317,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-31.930225,152.400065,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.393452,150.63971,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-28.924822,153.466019,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-31.44523,152.919351,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.435989,150.616577,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-29.490241,153.108215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.448214,150.516067,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-28.667825,153.301753,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-29.437147,153.192812,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-29.812458,152.807397,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.435979,150.608645,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,4,Australia,AU,New South Wales,-28.661655,153.053386,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.494831,150.641102,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,5,Australia,AU,New South Wales,-33.716153,150.782986,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.456178,150.655871,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130U,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-31.4322,152.910423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419095,150.610149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.459009,150.659166,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071611,1,,occurrenceRemarks withheld,2020,6,14,Australia,AU,New South Wales,-29.478606,153.104158,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003923,1,,occurrenceRemarks withheld,2023,3,9,Australia,AU,New South Wales,-28.928136,153.209622,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-34.465816,150.521586,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.471383,150.528933,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-28.44262,153.05985,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,9,Australia,AU,New South Wales,-29.484693,153.089219,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-28.583656,153.550491,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-32.630479,151.70521,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003906,1,,occurrenceRemarks withheld,2023,4,22,Australia,AU,New South Wales,-29.016259,153.428712,EPSG:4326 +HUMAN_OBSERVATION,OJJS20040702,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-29.489937,153.11064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.394767,150.64287,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-28.839441,153.206273,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-30.33947,153.087339,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-36.435679,149.980514,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,2,13,Australia,AU,New South Wales,-28.816947,153.335722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.447271,150.514451,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-28.93375,153.31904,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,4,19,Australia,AU,New South Wales,-30.991875,150.243684,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.3706,152.784268,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.38557,150.626523,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.430591,150.607896,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.435475,150.51961,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,6,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-34.55135,150.51272,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-29.48982,153.101789,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.454331,150.521197,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152L,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-29.016415,153.431324,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-31.458348,152.913209,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.44389,152.888038,EPSG:4326 +HUMAN_OBSERVATION,OJYL21042700,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-32.730578,152.139986,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082302;ODFK23082303;ODFK23082304;ODFK23082307;ODFK23082308,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-34.209846,150.784001,EPSG:4326 +HUMAN_OBSERVATION,OPXE96061101,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-31.602768,152.801772,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.440147,150.529755,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-28.679011,153.277839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.435537,150.615556,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130E,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-31.925198,152.403266,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-29.489535,153.103924,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.44996,150.516374,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-29.487915,153.091741,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151A,1,,occurrenceRemarks withheld,2022,8,28,Australia,AU,New South Wales,-28.512102,153.130051,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-31.477808,152.892385,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.423373,150.595198,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-29.490236,153.10821,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,2,14,Australia,AU,New South Wales,-29.485711,153.103677,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,14,Australia,AU,New South Wales,-31.637379,152.788667,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-28.650053,153.559875,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-31.85809,152.355785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.421866,150.636289,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-29.667187,152.867959,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060503,1,,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-28.839794,153.314434,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.435544,150.519445,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420227,150.610378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.431895,150.611895,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-29.635356,152.886569,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.82437,153.318368,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041S,1,FEMALE,occurrenceRemarks withheld,2022,10,1,Australia,AU,New South Wales,-31.443648,152.908706,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,30,Australia,AU,New South Wales,-29.489563,153.103951,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.424686,150.604659,EPSG:4326 +HUMAN_OBSERVATION,ODFK2408220L,1,,occurrenceRemarks withheld,2024,3,21,Australia,AU,New South Wales,-31.500172,152.808721,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004152,1,,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-28.679772,153.543844,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.39274,150.639219,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.436834,150.619219,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102508,2,,occurrenceRemarks withheld,2024,9,25,Australia,AU,New South Wales,-28.59695,153.277428,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-32.708972,152.064506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.43757,150.604726,EPSG:4326 +HUMAN_OBSERVATION,ODMP06091900,1,,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-31.450375,152.916822,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031M,1,,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-31.459713,152.926823,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.435837,150.616593,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.389939,150.62541,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-29.488742,153.10195,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,19,Australia,AU,New South Wales,-32.180517,152.356186,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004249,1,FEMALE,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-28.902453,153.25443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.395976,150.628969,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-34.5,150.563856,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.447285,150.513809,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-34.098204,150.808174,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,7,20,Australia,AU,New South Wales,-29.483778,153.104128,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-35.061219,150.115727,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.449514,150.615736,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083000,1,MALE,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-33.571064,150.665994,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2023,12,5,Australia,AU,New South Wales,-31.454648,152.926839,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,FEMALE,occurrenceRemarks withheld,2020,2,13,Australia,AU,New South Wales,-33.109066,151.141399,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,ODMP22030100,1,,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-31.876653,152.386934,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-31.413327,152.126308,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.470462,150.523985,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003918,1,MALE,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-28.812094,153.347684,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-34.440736,150.61542,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-28.681056,153.530618,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060503,1,,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-28.839794,153.314434,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-28.824722,153.310312,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004223,1,FEMALE,occurrenceRemarks withheld,2023,7,22,Australia,AU,New South Wales,-28.579383,153.155768,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-30.096213,153.180893,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.448223,150.516077,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-32.69442,151.64852,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.229858,152.203368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.446338,150.513826,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-29.490367,153.108049,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,5,16,Australia,AU,New South Wales,-29.489858,153.103366,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-31.469486,152.91044,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.486019,150.636211,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-34.216292,150.794723,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-31.675812,152.805731,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-29.4853,153.104047,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032105,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-32.728381,152.089896,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,2,16,Australia,AU,New South Wales,-29.49032,153.108273,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.465771,150.520292,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,12,Australia,AU,New South Wales,-28.385497,153.561351,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-31.922592,152.380773,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-28.78141,153.499008,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.437904,150.604281,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-31.456199,152.894238,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.474888,152.928242,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-29.025463,153.286418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.454272,150.657078,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.385695,150.626921,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-34.038905,151.022421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.434897,150.603138,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,6,28,Australia,AU,New South Wales,-31.468453,152.883722,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041401,1,,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-32.72794,152.08026,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020E,1,,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-35.740656,149.263454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.435263,150.618154,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.544176,152.838167,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-32.07277,151.887504,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011011,1,,occurrenceRemarks withheld,2024,3,15,Australia,AU,New South Wales,-31.466536,152.897911,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.570187,149.979238,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,24,Australia,AU,New South Wales,-29.488037,153.092068,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,FEMALE,occurrenceRemarks withheld,2022,12,10,Australia,AU,New South Wales,-34.745239,146.530127,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052709,1,,occurrenceRemarks withheld,2024,7,7,Australia,AU,New South Wales,-32.700714,152.062595,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-31.529299,152.532467,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-34.098427,150.819336,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,7,3,Australia,AU,New South Wales,-32.763162,152.034077,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,24,Australia,AU,New South Wales,-33.716304,150.784622,EPSG:4326 +HUMAN_OBSERVATION,SHARM,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-32.570532,149.607683,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-35.955867,146.624949,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,8,29,Australia,AU,New South Wales,-32.650013,151.91114,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.398578,150.639936,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.418316,150.632658,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.420278,150.62738,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-28.589579,153.549446,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031412,1,,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-31.870324,152.632574,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-29.211324,153.002156,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.436414,150.615238,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-29.485188,153.104181,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-29.490558,153.108162,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.914264,152.381829,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.421505,150.627422,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-29.489577,153.103886,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-28.625868,153.48166,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004237,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.931665,153.272536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.437488,150.606992,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.431106,150.614866,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.46405,150.523891,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,10,12,Australia,AU,New South Wales,-31.461909,152.929231,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.395122,150.629059,EPSG:4326 +HUMAN_OBSERVATION,ODMP99111100,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-29.079372,153.03851,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.466133,150.521686,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-30.255052,153.087713,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-32.725218,152.072592,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.451351,150.518292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.430023,150.607912,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.433789,150.616977,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-30.30034,153.094347,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,7,24,Australia,AU,New South Wales,-31.280144,152.886332,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-29.489699,153.105184,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.459118,150.659195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.437858,150.605153,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022607,1,,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-31.4358,152.9083,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-31.4359,152.92304,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-29.48056,153.089901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.448126,150.519301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.46618,150.523088,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.638566,152.794025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.449514,150.51617,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.453169,152.899978,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140B,1,,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-31.448971,152.879841,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-34.169865,150.76181,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,7,12,Australia,AU,New South Wales,-29.49018,153.110522,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-31.459605,152.92901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.388495,150.630931,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-31.460469,152.928873,EPSG:4326 +HUMAN_OBSERVATION,ODMP21121516,1,FEMALE,occurrenceRemarks withheld,2022,5,9,Australia,AU,New South Wales,-31.09678,150.17621,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,2,11,Australia,AU,New South Wales,-31.59502,152.838392,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.427582,150.603423,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070601,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.356036,150.684441,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,4,25,Australia,AU,New South Wales,-33.714314,150.785948,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.49177,150.638978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.388142,150.631289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-34.447398,150.514524,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,2,MALE,occurrenceRemarks withheld,2024,9,4,Australia,AU,New South Wales,-28.626509,153.428944,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-28.672232,153.415221,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210I,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-28.258738,153.398789,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-29.505009,152.824357,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-31.459753,152.923379,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101300,1,,occurrenceRemarks withheld,2020,6,29,Australia,AU,New South Wales,-29.713294,150.908967,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-31.44542,152.902506,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,5,10,Australia,AU,New South Wales,-33.779405,150.059594,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.419792,150.602449,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,3,3,Australia,AU,New South Wales,-29.730627,151.083101,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.432072,150.606167,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,FEMALE,occurrenceRemarks withheld,2023,1,17,Australia,AU,New South Wales,-31.920475,151.880598,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,MALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.953149,153.369052,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.437979,150.51606,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,FEMALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.953149,153.369052,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-28.328728,153.5017,EPSG:4326 +HUMAN_OBSERVATION,OJJS19051305,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-32.031041,152.490193,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,9,Australia,AU,New South Wales,-32.706167,152.063304,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866277,153.367822,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-29.486811,153.110908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.45117,150.519549,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-31.127121,152.793561,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001177,1,,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-32.7352,152.105015,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,20,Australia,AU,New South Wales,-32.639151,152.146482,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.396774,150.643651,EPSG:4326 +HUMAN_OBSERVATION,OJJS17062707;OJJS20041402;ODMP21052900;ODMP21081303,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-32.650004,151.955751,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.387776,150.631474,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020607,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-31.44444,152.884616,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.433645,150.616992,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100L,1,MALE,occurrenceRemarks withheld,2023,11,25,Australia,AU,New South Wales,-31.46584,152.921855,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.421314,150.627308,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-29.48558,153.103522,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-31.480925,152.915982,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,24,Australia,AU,New South Wales,-33.705799,150.786983,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,17,Australia,AU,New South Wales,-33.716621,150.78292,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111309,1,MALE,occurrenceRemarks withheld,2023,12,10,Australia,AU,New South Wales,-32.085936,151.876097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.418159,150.600069,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-28.398741,153.555924,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.39779,150.622088,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.586475,153.555227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.452803,150.604596,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.445923,150.517321,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100S,1,MALE,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-30.462703,152.902522,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-28.889703,153.184459,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.430095,150.616212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.4541,150.520474,EPSG:4326 +HUMAN_OBSERVATION,ODMP21060800,1,,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-29.733175,152.924371,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,27,Australia,AU,New South Wales,-29.489563,153.103924,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270H,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-29.488,152.331052,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-34.238646,150.832866,EPSG:4326 +HUMAN_OBSERVATION,OAAB12090700,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-33.113951,150.051182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.433011,150.614072,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-28.864692,153.292875,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.421059,150.629969,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.444815,150.518692,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.447252,150.513103,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080106,1,,occurrenceRemarks withheld,2020,12,13,Australia,AU,New South Wales,-33.345951,151.315355,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-34.747516,146.534284,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.417549,150.633082,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-33.706624,150.785937,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-28.823055,153.316818,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.436386,150.609646,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,30,Australia,AU,New South Wales,-28.396817,153.557802,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-31.424151,152.879008,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.467965,150.520434,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.454159,150.523378,EPSG:4326 +HUMAN_OBSERVATION,OPUR18080101,1,,occurrenceRemarks withheld,2024,4,23,Australia,AU,New South Wales,-28.820852,153.317993,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,6,26,Australia,AU,New South Wales,-33.76384,150.62578,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-28.260547,153.402115,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-31.455727,152.929791,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-29.330013,152.900306,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.434962,150.608261,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-29.48318,153.104256,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100515,1,,occurrenceRemarks withheld,2024,6,16,Australia,AU,New South Wales,-31.469437,152.910327,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409020A,1,,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-30.330959,152.898021,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.392694,150.639209,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-31.630248,152.784984,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083000,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-32.719866,151.992127,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,7,25,Australia,AU,New South Wales,-33.775645,150.056895,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,3,11,Australia,AU,New South Wales,-32.72574,152.175,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-33.711352,150.785995,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.454668,150.51913,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.465996,150.522049,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250A,1,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.767365,146.573313,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.427259,150.600266,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,4,5,Australia,AU,New South Wales,-31.55547,152.850839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.435536,150.615524,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.453442,150.520918,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,FEMALE,occurrenceRemarks withheld,2024,5,22,Australia,AU,New South Wales,-31.335146,152.868399,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,7,24,Australia,AU,New South Wales,-29.490441,153.109379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.427751,150.60097,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-29.491557,153.099783,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,21,Australia,AU,New South Wales,-32.29582,152.01894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427282,150.604672,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.420948,150.630321,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,2,9,Australia,AU,New South Wales,-33.109066,151.141399,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040J,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.409514,152.899845,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,FEMALE,occurrenceRemarks withheld,2021,12,8,Australia,AU,New South Wales,-36.130563,149.324303,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-34.025693,150.990858,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,13,Australia,AU,New South Wales,-29.490096,153.107432,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.230264,152.196338,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-28.999986,153.372262,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.395752,150.626235,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290V,1,FEMALE,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-31.458149,152.921208,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012911,1,MALE,occurrenceRemarks withheld,2023,12,16,Australia,AU,New South Wales,-31.636282,152.795512,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.455147,150.659459,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.389405,150.625305,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.419133,150.610246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.427186,150.604816,EPSG:4326 +HUMAN_OBSERVATION,OJJS1208150Z,1,MALE,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-32.663949,151.642979,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.191563,152.028525,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419995,150.610047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.471139,150.529843,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030P,1,MALE,occurrenceRemarks withheld,2022,5,30,Australia,AU,New South Wales,-30.681882,151.329514,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,13,Australia,AU,New South Wales,-29.490007,153.100802,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,2,8,Australia,AU,New South Wales,-32.061484,152.282676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.389203,150.628813,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111507,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-33.57314,150.63391,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-28.679393,153.27827,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.018442,150.885453,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.435361,150.602885,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-32.984102,151.486471,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,12,10,Australia,AU,New South Wales,-34.029876,150.990611,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-29.490269,153.108135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.448796,150.515865,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-31.439849,152.920617,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111501,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-28.584015,153.542842,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004183,1,,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.636204,153.518787,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.396304,150.642185,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150D,1,,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-28.723573,153.5253,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,13,Australia,AU,New South Wales,-33.717587,150.783787,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.466442,150.52135,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082308;ODFK23082309;ODFK2308230A;ODFK2308230B,1,FEMALE,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.13748,150.84,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.271322,153.39438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.438809,150.516835,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.421225,150.627397,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-28.407803,153.55336,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-34.90619,150.06673,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435802,150.616224,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2024,3,12,Australia,AU,New South Wales,-31.929515,152.37939,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.453508,150.525041,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-31.46849,152.874984,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040416,1,,occurrenceRemarks withheld,2023,5,14,Australia,AU,New South Wales,-31.092748,150.932034,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.450537,150.515944,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.422762,150.637863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.428575,150.60025,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.637274,152.797276,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.790624,152.433393,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.447552,150.518513,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122107,1,,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-34.019695,151.04544,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.385964,150.624532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.436375,150.616001,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.449983,152.90616,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-33.718032,150.784399,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.572611,149.995573,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,17,Australia,AU,New South Wales,-33.71026,150.785593,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,28,Australia,AU,New South Wales,-35.076865,150.120508,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-33.715263,150.784754,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,3,19,Australia,AU,New South Wales,-31.590569,152.784552,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.493197,150.639079,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-31.632369,152.78503,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,1,Australia,AU,New South Wales,-31.476594,152.888969,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.570187,149.979238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.42567,150.602009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.419827,150.638033,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-31.630117,152.78703,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-29.479645,153.10409,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-32.683942,151.650005,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,7,14,Australia,AU,New South Wales,-29.490012,153.101392,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-31.475384,152.922714,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,26,Australia,AU,New South Wales,-28.691138,153.486663,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,24,Australia,AU,New South Wales,-31.438712,152.897331,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.387803,150.631506,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.058746,150.886108,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,24,Australia,AU,New South Wales,-29.490535,153.108119,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,11,8,Australia,AU,New South Wales,-29.485538,153.103666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.385727,150.627192,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003900,1,MALE,occurrenceRemarks withheld,2023,4,23,Australia,AU,New South Wales,-28.925133,153.296166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.388253,150.630982,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220W,1,,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-32.767718,152.110584,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.918199,152.379576,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.485136,150.637172,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-28.398603,153.556057,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.45144,150.517321,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.488954,150.637892,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-30.17557,152.90799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.430032,150.614364,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021301,1,,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-32.335288,152.268663,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.419824,150.632757,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.42386,150.637267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.43658,150.520709,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130E,1,,occurrenceRemarks withheld,2020,8,6,Australia,AU,New South Wales,-31.925107,152.403088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.457996,150.531199,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.435045,150.604232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.423735,150.637346,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.736962,152.074378,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-29.490114,153.107421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.452653,150.524217,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132A,1,,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-35.179604,149.227204,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,1,Australia,AU,New South Wales,-29.477319,153.104546,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-32.711007,152.065264,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,5,Australia,AU,New South Wales,-29.484693,153.103849,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.471221,150.529416,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004092,1,,occurrenceRemarks withheld,2023,7,17,Australia,AU,New South Wales,-28.821734,153.300847,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-31.479328,152.913379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.427738,150.600785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.420173,150.631267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.440765,150.604015,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090803,1,,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-31.460668,152.921826,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.419385,150.600078,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.464532,150.521864,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250K,1,,occurrenceRemarks withheld,2024,9,22,Australia,AU,New South Wales,-33.641224,149.51629,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.452102,150.524647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.418945,150.609392,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-28.672232,153.415221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.422146,150.637239,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.392841,150.644001,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,5,15,Australia,AU,New South Wales,-28.330904,153.556168,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,FEMALE,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-36.18352,149.35486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.469579,150.526689,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.420524,150.635391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.388867,150.629638,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,2,6,Australia,AU,New South Wales,-30.32528,152.988079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.394298,150.632138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-34.446457,150.514345,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,4,25,Australia,AU,New South Wales,-28.63955,153.01536,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-30.895341,153.037179,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-28.59082,152.3233,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,8,30,Australia,AU,New South Wales,-31.461796,152.922214,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,2,19,Australia,AU,New South Wales,-31.903915,152.344742,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.399554,150.616817,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,ODMP21060800,1,MALE,occurrenceRemarks withheld,2022,11,10,Australia,AU,New South Wales,-29.739464,152.921998,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-29.490502,153.10814,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-34.021389,150.880905,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-29.631196,152.900076,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.452237,150.523272,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.053416,150.838978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.427529,150.603914,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.831137,153.278132,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070800;OPUR21080903,1,,occurrenceRemarks withheld,2020,2,14,Australia,AU,New South Wales,-31.447028,152.856894,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260M,1,,occurrenceRemarks withheld,2020,4,7,Australia,AU,New South Wales,-32.731544,152.037804,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-29.4841,153.095421,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2021,11,21,Australia,AU,New South Wales,-29.834535,150.844843,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011102,1,,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-32.752293,151.882303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.446398,150.514096,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-33.709609,150.786461,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.460946,150.524614,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,7,7,Australia,AU,New South Wales,-29.375458,149.811338,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-30.41356,153.01327,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,4,13,Australia,AU,New South Wales,-31.468791,152.92489,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,16,Australia,AU,New South Wales,-34.440279,150.618817,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-29.683519,151.064694,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103107,1,,occurrenceRemarks withheld,2023,1,17,Australia,AU,New South Wales,-32.728082,152.08916,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.435786,150.615386,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-29.491861,153.096634,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111329,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-31.261111,152.887399,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-28.260624,153.403175,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.41921,150.603575,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004207,1,,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-28.675702,153.4658,EPSG:4326 +HUMAN_OBSERVATION,OPJG15082102,1,,occurrenceRemarks withheld,2022,1,10,Australia,AU,New South Wales,-30.140644,152.635197,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090407,1,FEMALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-32.726204,152.117738,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.420671,150.609114,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-28.826912,153.22503,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,12,22,Australia,AU,New South Wales,-31.435939,152.901512,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-34.49092,150.46757,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.446849,150.51589,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-28.818985,153.276437,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,FEMALE,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-34.056603,150.839123,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.465708,150.520261,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-31.913487,152.379887,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082308;ODFK23082309;ODFK2308230A;ODFK2308230B,1,FEMALE,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.137132,150.843837,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-36.171177,148.974951,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-28.823818,153.316272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.438767,150.603702,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-34.141271,150.82369,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-30.42108,153.006664,EPSG:4326 +HUMAN_OBSERVATION,OJBL97031300,1,MALE,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-30.434821,152.833456,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.438397,150.604583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.389577,150.627193,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,7,Australia,AU,New South Wales,-28.661306,153.60953,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-32.710616,152.072676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.447272,150.518957,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.428937,150.601262,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.447055,150.515383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.452131,150.517181,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-28.825156,153.304545,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,FEMALE,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-30.342321,153.072209,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.433406,150.616313,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-29.488041,153.09165,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091705,1,,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-31.945523,152.393235,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,10,23,Australia,AU,New South Wales,-32.70236,152.064147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.410161,150.597296,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.412485,150.601776,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004148,1,,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-28.821082,153.317837,EPSG:4326 +HUMAN_OBSERVATION,OJJS20080301,1,,occurrenceRemarks withheld,2020,6,30,Australia,AU,New South Wales,-32.655466,151.660173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.443847,150.514553,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004020,1,FEMALE,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-28.874375,153.39669,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003889,1,,occurrenceRemarks withheld,2023,3,19,Australia,AU,New South Wales,-28.824405,153.326024,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.389326,150.629592,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.420476,150.609283,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110T,1,,occurrenceRemarks withheld,2023,7,21,Australia,AU,New South Wales,-31.47494,152.897321,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071005,1,,occurrenceRemarks withheld,2024,6,5,Australia,AU,New South Wales,-31.933085,152.412874,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.184928,149.238121,EPSG:4326 +HUMAN_OBSERVATION,OPJG21031206,1,MALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-30.35381,153.079297,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,4,Australia,AU,New South Wales,-31.449373,152.819478,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.479129,152.86799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.41822,150.635587,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.431296,150.615361,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-29.662059,152.878844,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.439246,150.604243,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.418329,150.631918,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-31.933138,152.415185,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.452098,150.517334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.428091,150.600405,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-31.44365,152.900459,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,24,Australia,AU,New South Wales,-33.703959,150.785938,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.440138,150.529768,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-28.856019,153.292385,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,6,13,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,11,Australia,AU,New South Wales,-28.2525,153.374722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.466197,150.523044,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.203254,152.746956,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-30.099383,152.177441,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.433528,150.61705,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200K,1,,occurrenceRemarks withheld,2024,3,4,Australia,AU,New South Wales,-29.728212,151.083923,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,21,Australia,AU,New South Wales,-33.717133,150.785297,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-31.464149,152.928529,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,2,Australia,AU,New South Wales,-28.394206,153.558425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.425932,150.59791,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052707,1,,occurrenceRemarks withheld,2024,4,26,Australia,AU,New South Wales,-32.72335,152.070176,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.474153,152.901052,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-28.399832,153.556301,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042O,1,,occurrenceRemarks withheld,2022,8,18,Australia,AU,New South Wales,-34.093737,150.808078,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-34.932599,150.145816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.446817,150.520069,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,FEMALE,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861053,153.280631,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,2,Australia,AU,New South Wales,-31.4527,152.881693,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.442154,152.902077,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003961,1,,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-28.675365,153.548838,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,12,28,Australia,AU,New South Wales,-28.864673,153.293072,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-31.450312,152.899817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.412459,150.60182,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,5,25,Australia,AU,New South Wales,-28.831591,152.627183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.426985,150.597804,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.389424,150.629046,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.922893,152.384162,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,7,13,Australia,AU,New South Wales,-28.644485,153.434311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.425405,150.603169,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,29,Australia,AU,New South Wales,-29.485207,153.10416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.399361,150.623109,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-34.130124,150.979882,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,17,Australia,AU,New South Wales,-32.346095,152.526032,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-34.3838,150.77507,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-31.437714,152.895053,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031402,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-28.879257,153.324344,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-31.698289,152.283175,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.677452,153.486365,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-31.482596,152.915678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.437093,150.602955,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,,occurrenceRemarks withheld,2023,5,29,Australia,AU,New South Wales,-32.23808,152.19904,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-29.504766,152.824642,EPSG:4326 +HUMAN_OBSERVATION,OLHP24013007,1,,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-28.9904,153.2884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.445956,150.513185,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.457795,152.873698,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-29.490227,153.110533,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.420965,150.630266,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,FEMALE,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-31.926457,152.358778,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,4,26,Australia,AU,New South Wales,-31.483349,150.410742,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.420658,150.630688,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,3,5,Australia,AU,New South Wales,-33.712917,150.784484,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-34.757454,146.565741,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-28.253243,153.376426,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,24,Australia,AU,New South Wales,-29.490217,153.109728,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011003,1,,occurrenceRemarks withheld,2024,4,12,Australia,AU,New South Wales,-30.439187,152.937114,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-29.478926,153.104176,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,FEMALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-36.16674,149.39999,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.418297,150.632615,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.145239,150.792031,EPSG:4326 +HUMAN_OBSERVATION,OICG17032900,1,,occurrenceRemarks withheld,2021,2,10,Australia,AU,New South Wales,-28.369446,153.457587,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,19,Australia,AU,New South Wales,-29.490707,153.109326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.466308,150.521855,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-30.8961,153.036423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.389783,150.628057,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-28.393945,153.559092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-34.455619,150.653982,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.454992,150.606307,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.491928,150.639191,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,3,7,Australia,AU,New South Wales,-29.105122,153.423548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.436153,150.616192,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202,1,,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-30.477854,151.739939,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.437479,150.606992,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-31.629703,152.785354,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.46646,150.521349,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.458267,150.661853,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-28.818352,153.342482,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.450901,150.515182,EPSG:4326 +HUMAN_OBSERVATION,Obs_1482,1,,occurrenceRemarks withheld,2023,8,28,Australia,AU,New South Wales,-32.611461,151.854344,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.464357,150.522555,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-29.482111,153.104208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.388812,150.623538,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.185868,152.967622,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-29.485426,153.103543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.392368,150.633498,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.491925,150.639986,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,24,Australia,AU,New South Wales,-29.49017,153.107942,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,2,Australia,AU,New South Wales,-28.854553,153.394751,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-31.932493,152.412852,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-34.026262,150.990234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.438134,150.606353,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.458277,150.659578,EPSG:4326 +HUMAN_OBSERVATION,ODFK23083001,1,,occurrenceRemarks withheld,2023,4,5,Australia,AU,New South Wales,-29.490637,153.110399,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,12,27,Australia,AU,New South Wales,-32.706607,152.063773,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.450006,150.516405,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-31.435745,152.895697,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.434934,150.617478,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003899,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-28.888717,153.299324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.38986,150.627837,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.394954,150.641375,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181X,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-28.876314,153.378802,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.452552,150.522827,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,6,28,Australia,AU,New South Wales,-28.8234,153.2138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.386384,150.630817,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-31.40059,152.234521,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.455043,150.609832,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,18,Australia,AU,New South Wales,-31.467459,152.909886,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032208,1,,occurrenceRemarks withheld,2021,2,11,Australia,AU,New South Wales,-33.567539,149.549946,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.45842,150.662807,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-31.03932,150.06731,EPSG:4326 +HUMAN_OBSERVATION,OIXR16111000;OSHD19121001,1,FEMALE,occurrenceRemarks withheld,2023,6,4,Australia,AU,New South Wales,-34.098713,150.809067,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041A,1,MALE,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-30.516811,151.517753,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.460229,150.531982,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-28.272041,153.460073,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.465743,150.521588,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.43345,150.616704,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-31.93643,152.45426,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,4,26,Australia,AU,New South Wales,-32.653981,151.789385,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-29.485571,153.10379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.427235,150.604086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.454225,150.605839,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303230V,1,,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-34.071526,149.69177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.485592,150.636996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.4885,150.63539,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.466326,150.521419,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,12,28,Australia,AU,New South Wales,-31.641869,152.793198,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-30.209704,152.749317,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-28.675517,153.493023,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,4,5,Australia,AU,New South Wales,-29.041882,152.935644,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.68121,153.60155,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011109,1,,occurrenceRemarks withheld,2023,11,12,Australia,AU,New South Wales,-32.722386,152.080271,EPSG:4326 +HUMAN_OBSERVATION,OSYF17103100,1,,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-32.721615,150.713472,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.864561,153.293095,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-29.488051,153.092149,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102,1,,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-32.477379,151.907103,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-31.728498,152.699151,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083002,1,MALE,occurrenceRemarks withheld,2024,4,4,Australia,AU,New South Wales,-34.069559,150.835074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.488042,150.635468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.465553,150.520222,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,9,18,Australia,AU,New South Wales,-34.01577,150.886924,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.503907,149.934931,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-30.566023,152.77719,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.438444,150.615757,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.447312,150.518727,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,21,Australia,AU,New South Wales,-32.64183,152.134335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.437011,150.605177,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150W,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-28.889165,153.229584,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.413786,150.599172,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-28.582538,153.377332,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.386735,150.627577,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.457555,150.6595,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-35.407548,149.821627,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,MALE,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-32.691444,151.709143,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-31.445302,152.907921,EPSG:4326 +HUMAN_OBSERVATION,OJJS20110901;OJJS20110903,1,,occurrenceRemarks withheld,2020,8,10,Australia,AU,New South Wales,-30.648466,152.95772,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.399554,150.616817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.393514,150.631236,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,3,Australia,AU,New South Wales,-29.487593,153.091098,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.048436,150.881052,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,7,23,Australia,AU,New South Wales,-29.66244,152.15203,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004165,1,FEMALE,occurrenceRemarks withheld,2023,8,28,Australia,AU,New South Wales,-28.822956,153.30184,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150U,1,MALE,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-28.694824,153.496543,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.454655,152.907086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.463778,150.523802,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-28.882387,153.274519,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090407,1,FEMALE,occurrenceRemarks withheld,2020,12,18,Australia,AU,New South Wales,-32.73714,152.0566,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.425787,150.602419,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.420634,150.630863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.430542,150.610443,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-31.629167,152.786519,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-31.442482,152.898504,EPSG:4326 +HUMAN_OBSERVATION,OJMM08020900,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.1615,150.97869,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-31.13359,149.99181,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080900,1,MALE,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-32.717564,151.718276,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150H,1,,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-33.451036,150.867733,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,25,Australia,AU,New South Wales,-35.081255,150.121216,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-32.710083,152.064971,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-31.404491,152.123807,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.452064,150.517422,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-29.485781,153.103699,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,5,26,Australia,AU,New South Wales,-28.38855,153.557601,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-31.454207,152.925738,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,15,Australia,AU,New South Wales,-31.443086,152.895096,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-31.453952,152.925165,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-31.921045,152.372097,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,19,Australia,AU,New South Wales,-29.488144,153.09224,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.420975,150.636793,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-31.444948,152.915556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.389635,150.628768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.446159,150.517423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.421026,150.626891,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.485935,150.63605,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.447234,150.518849,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-28.63955,153.01536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.46561,150.520341,EPSG:4326 +HUMAN_OBSERVATION,OJJS20042903,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-32.616911,151.710282,EPSG:4326 +HUMAN_OBSERVATION,OPJG16091402,1,,occurrenceRemarks withheld,2022,9,2,Australia,AU,New South Wales,-31.798099,152.589764,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.448775,150.617596,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,8,Australia,AU,New South Wales,-33.718254,150.784322,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.195798,150.789597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.426082,150.602312,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,16,Australia,AU,New South Wales,-32.70598,152.063438,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002015,1,,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-32.806959,151.825499,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,2,16,Australia,AU,New South Wales,-32.241752,150.438813,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110Q,1,,occurrenceRemarks withheld,2023,7,25,Australia,AU,New South Wales,-33.491102,149.46456,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-29.489951,153.10122,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-34.027287,150.98877,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2024,6,13,Australia,AU,New South Wales,-29.609284,150.861619,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.430155,150.610052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.44792,150.51625,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154P,1,MALE,occurrenceRemarks withheld,2022,8,28,Australia,AU,New South Wales,-28.678998,153.27974,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,21,Australia,AU,New South Wales,-30.374914,153.017126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.388888,150.630725,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200P,1,,occurrenceRemarks withheld,2024,4,8,Australia,AU,New South Wales,-31.4541,152.9276,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140E,1,,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-31.255768,152.963573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.434482,150.606784,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100401,1,,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-30.916151,153.061154,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,12,Australia,AU,New South Wales,-29.489848,153.103441,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.438432,150.523135,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,6,Australia,AU,New South Wales,-29.485604,153.10372,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-29.040946,153.285323,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.418057,150.632763,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.445946,150.513141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.493191,150.639232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.388088,150.632215,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152W,1,MALE,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-28.888717,153.299324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.467614,150.52002,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100516,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,Queensland,-21.160705,149.062543,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,2,14,Australia,AU,New South Wales,-34.045587,151.005503,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.38953,150.627074,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250H,1,,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-32.760544,152.105574,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,5,Australia,AU,New South Wales,-29.489414,153.101574,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.824882,153.303135,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,9,9,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040423,1,MALE,occurrenceRemarks withheld,2022,10,23,Australia,AU,New South Wales,-32.020247,152.466547,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-32.403623,152.456293,EPSG:4326 +HUMAN_OBSERVATION,OJJS18041601,1,,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-28.404354,153.527598,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.425934,150.598008,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-34.514336,150.546628,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,6,Australia,AU,New South Wales,-29.485646,153.103618,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.728239,152.087904,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.421307,150.627427,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.389595,150.62717,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.444332,150.51801,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-34.085987,150.833136,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,6,15,Australia,AU,New South Wales,-32.733304,152.100262,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-29.490297,153.108146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.386138,150.626039,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082306,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-30.414469,153.001032,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,MALE,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-31.93308,152.415374,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-28.678994,153.277955,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.464663,150.529239,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,6,30,Australia,AU,New South Wales,-30.218879,152.800106,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.398676,150.645056,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-36.450213,149.978195,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.43064,150.609004,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.466142,150.521696,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-29.491483,153.096242,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210D,1,,occurrenceRemarks withheld,2021,1,2,Australia,AU,New South Wales,-32.765351,152.03482,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.459431,150.521927,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.473761,152.92666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.392891,150.645218,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2021,12,13,Australia,AU,New South Wales,-34.37673,150.398058,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-29.47845,153.104106,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-28.665253,153.57307,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031811,1,,occurrenceRemarks withheld,2022,12,17,Australia,AU,New South Wales,-28.822635,153.306614,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181V,1,MALE,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-28.818627,153.302174,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-34.112152,150.801348,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,10,20,Australia,AU,New South Wales,-30.34975,153.096489,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.191495,152.029056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.438939,150.605101,EPSG:4326 +HUMAN_OBSERVATION,ODFK23072700;ODFK23072701,1,,occurrenceRemarks withheld,2023,7,11,Australia,AU,New South Wales,-35.777938,148.039429,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.297737,149.316321,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-34.51358,150.52964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.420178,150.638045,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,3,15,Australia,AU,New South Wales,-34.048508,150.993823,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-29.490497,153.108113,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-34.43782,150.616612,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-29.769074,151.103015,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.436389,150.615783,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.420604,150.630711,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-34.060984,150.866027,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.48568,152.78048,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-30.485692,152.986767,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001627,1,,occurrenceRemarks withheld,2022,3,11,Australia,AU,New South Wales,-31.451319,152.79576,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.449017,150.516097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.427034,150.604907,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-30.927524,150.059758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.418351,150.632602,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,FEMALE,occurrenceRemarks withheld,2023,11,17,Australia,AU,New South Wales,-31.932772,152.413018,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-31.457605,152.917354,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.421332,150.627307,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,17,Australia,AU,New South Wales,-36.124832,149.307204,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,19,Australia,AU,New South Wales,-31.474877,152.897363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.420112,150.631378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.435682,150.603594,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-31.456237,152.907848,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.475695,150.533116,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-28.390177,153.561257,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,7,24,Australia,AU,New South Wales,-31.431,152.895044,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-30.28081,153.05392,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011000,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-32.9108,151.0666,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-31.445449,152.893775,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.455258,150.607007,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.446686,150.518071,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.420566,150.60928,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-29.025463,153.286418,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-29.485401,153.103884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.450087,150.516414,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004026,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-28.704717,153.531367,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,FEMALE,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-28.846194,153.302579,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,3,16,Australia,AU,New South Wales,-31.440989,152.917579,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-28.974833,153.437028,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-28.481454,152.980473,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-33.778771,150.072732,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050A,1,,occurrenceRemarks withheld,2024,2,13,Australia,AU,New South Wales,-31.446301,152.915047,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2022,6,10,Australia,AU,New South Wales,-31.26569,152.82929,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,9,2,Australia,AU,New South Wales,-28.674101,153.608782,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031530,1,,occurrenceRemarks withheld,2022,11,12,Australia,AU,New South Wales,-28.699307,153.441201,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-29.661957,152.879128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.465253,150.52095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.390323,150.628955,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,11,Australia,AU,New South Wales,-35.078506,150.039438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.434955,150.616672,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-30.027575,152.241178,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.419635,150.611461,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-32.713766,152.070155,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040427,1,FEMALE,occurrenceRemarks withheld,2022,10,9,Australia,AU,New South Wales,-33.580187,149.51451,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,12,Australia,AU,New South Wales,-33.715313,150.785282,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,13,Australia,AU,New South Wales,-28.666818,153.284266,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,22,Australia,AU,New South Wales,-29.484385,153.104047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.387831,150.631527,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010702,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-29.494083,153.094635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.431318,150.6151,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.380735,150.537335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.393115,150.645146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.420994,150.628024,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-29.489848,153.110554,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-28.889132,153.229587,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-28.625544,153.007682,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003972,1,,occurrenceRemarks withheld,2023,5,28,Australia,AU,New South Wales,-28.690049,153.608154,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.461697,150.486827,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-31.438393,152.91782,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,13,Australia,AU,New South Wales,-29.487836,153.091607,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,,occurrenceRemarks withheld,2023,11,29,Australia,AU,New South Wales,-29.492624,153.09317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.439198,150.619762,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-28.269898,153.305432,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-34.447775,150.51312,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-28.667194,153.328215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.454145,150.520462,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-29.484987,153.103833,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080903,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-28.965193,152.92597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.38557,150.626512,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.465796,150.522414,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-34.39801,150.48515,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.465629,150.520841,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.423417,150.605696,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002826,1,,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-29.627806,152.860293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,18,Australia,AU,New South Wales,-34.441143,150.61642,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-31.448796,152.901465,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-33.854489,150.247246,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.411142,152.216815,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.429601,150.614887,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031546,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-28.733635,153.544989,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-33.71694,150.783887,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.385472,150.626602,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,4,Australia,AU,New South Wales,-31.44651,152.891577,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,4,16,Australia,AU,New South Wales,-32.706194,152.063261,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.447281,150.518967,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101305,1,,occurrenceRemarks withheld,2020,8,10,Australia,AU,New South Wales,-31.793819,152.689833,EPSG:4326 +HUMAN_OBSERVATION,OPJG03110300;OJJS20102802;OPJG21061500;OPJG21071400,1,,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-32.698758,150.139812,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-29.490142,153.107438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.450043,150.51647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.421681,150.638851,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.438922,150.604263,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-30.53562,152.6143,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-28.996723,153.307732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.417651,150.633242,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-29.328715,153.233803,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.46499,150.524419,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.444717,150.604152,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.448677,152.905822,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004146,1,,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-28.618439,153.117442,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-28.894918,153.325686,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,3,24,Australia,AU,New South Wales,-31.453298,152.909346,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090405,1,FEMALE,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-34.097588,150.808544,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-30.059088,152.248544,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,9,Australia,AU,New South Wales,-29.49025,153.108189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.444134,150.515382,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.446365,150.513825,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.465876,150.522357,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-31.915828,152.374025,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151W,1,,occurrenceRemarks withheld,2022,8,18,Australia,AU,New South Wales,-28.839568,153.206595,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003857,1,,occurrenceRemarks withheld,2023,4,27,Australia,AU,New South Wales,-28.890086,153.227641,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.431796,150.611909,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-32.229858,152.203368,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121100,1,,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-31.936369,152.455197,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.095871,150.84256,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-31.12662,150.15712,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,FEMALE,occurrenceRemarks withheld,2022,2,25,Australia,AU,New South Wales,-30.373861,153.01171,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091906,1,,occurrenceRemarks withheld,2024,7,25,Australia,AU,New South Wales,-31.939633,152.414615,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-34.748414,146.56435,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003814,1,,occurrenceRemarks withheld,2023,4,28,Australia,AU,New South Wales,-28.924809,153.159083,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.300643,153.123305,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-29.477016,153.10475,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003887,1,,occurrenceRemarks withheld,2023,3,15,Australia,AU,New South Wales,-28.82047,153.302967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.388892,150.630931,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,2,16,Australia,AU,New South Wales,-31.46356,152.924533,EPSG:4326 +HUMAN_OBSERVATION,OLHP23071001,1,,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-32.71712,152.071511,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031100,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-32.65561,151.962627,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.393126,150.644287,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,29,Australia,AU,New South Wales,-33.714026,150.786057,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-31.191933,152.975743,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,5,23,Australia,AU,New South Wales,-32.654088,151.789792,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111503,1,,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-32.68591,151.661001,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.449658,152.907054,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-31.456325,152.897875,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-29.487747,153.091468,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150G,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-28.818014,153.276657,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-34.130172,150.981735,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.438966,150.604208,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002777,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-29.492534,153.093454,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-28.679386,153.277281,EPSG:4326 +HUMAN_OBSERVATION,OJJS20080303,1,MALE,occurrenceRemarks withheld,2021,2,17,Australia,AU,New South Wales,-32.587406,151.771158,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,3,6,Australia,AU,New South Wales,-28.66184,153.354401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457852,150.531214,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-31.443094,152.893768,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707;OPJG20112703,1,,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-30.521931,152.605868,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.48856,150.634724,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.298331,149.321078,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-29.490208,153.109728,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032707,1,MALE,occurrenceRemarks withheld,2020,6,1,Australia,AU,New South Wales,-33.49075,149.552017,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,12,Australia,AU,New South Wales,-29.489732,153.101392,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020609,1,,occurrenceRemarks withheld,2024,2,3,Australia,AU,New South Wales,-34.043832,150.870993,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.388039,150.632021,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004124,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-29.016164,153.430479,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-31.463603,152.14047,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-36.1835,149.354865,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,6,5,Australia,AU,New South Wales,-28.685102,153.301293,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,7,18,Australia,AU,New South Wales,-28.563076,153.128071,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-31.91019,152.40941,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.429755,150.609889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.449642,150.51622,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-32.697232,151.694627,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022603,1,,occurrenceRemarks withheld,2020,7,22,Australia,AU,New South Wales,-31.476918,152.923472,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401110H,1,,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-32.712611,152.073109,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,26,Australia,AU,New South Wales,-31.489791,152.910026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.400325,150.639832,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,2,15,Australia,AU,New South Wales,-29.485786,153.103688,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-28.686607,153.607362,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,2,18,Australia,AU,New South Wales,-32.723348,152.075981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.436884,150.603777,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-34.083054,150.999003,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100F,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-33.564761,150.67208,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,22,Australia,AU,New South Wales,-34.439876,150.615705,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-34.462,150.549897,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-29.384661,152.723772,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.453267,150.522958,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-30.208097,153.138784,EPSG:4326 +HUMAN_OBSERVATION,OAAB12090700,1,,occurrenceRemarks withheld,2020,9,4,Australia,AU,New South Wales,-32.664717,149.481758,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-33.707068,150.787267,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.140485,152.70963,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-33.710453,150.786197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.469519,150.527268,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.485668,150.636232,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,2,Australia,AU,New South Wales,-29.490217,153.109755,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.39762,150.623104,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435407,150.602906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.429366,150.613947,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.704084,153.445237,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-31.485895,152.914421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.39317,150.644688,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-28.798532,153.506227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.419214,150.609319,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.466379,150.52182,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.574646,153.433733,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.491681,150.639013,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260G,1,,occurrenceRemarks withheld,2024,6,19,Australia,AU,New South Wales,-31.474157,152.898578,EPSG:4326 +HUMAN_OBSERVATION,ODFK23083000,1,,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-29.640893,152.830729,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.420462,150.635469,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-34.46442,150.438946,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,2,28,Australia,AU,New South Wales,-28.65348,153.45439,EPSG:4326 +HUMAN_OBSERVATION,OPUR20091102;OPUR20120700,1,,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-31.049286,150.092991,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003989,1,,occurrenceRemarks withheld,2023,2,25,Australia,AU,New South Wales,-28.882533,153.352005,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.46569,150.520752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-34.439879,150.518055,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,1,2,Australia,AU,New South Wales,-28.638,153.31269,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-28.872288,153.27655,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-32.815056,151.480202,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-31.455572,152.898599,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.4694,150.527195,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003826,1,MALE,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-28.808662,153.510618,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-29.490637,153.108124,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-30.421882,152.978966,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.453652,150.517505,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-31.918245,152.378362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427409,150.604722,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012504,1,,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-28.68185,153.6109,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.395078,150.630539,EPSG:4326 +HUMAN_OBSERVATION,OPXE96061101,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-31.216978,152.950561,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,12,25,Australia,AU,New South Wales,-28.257664,153.400633,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-28.82175,153.33124,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.388611,150.62946,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.446411,150.513835,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004101,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-28.87218,153.216831,EPSG:4326 +HUMAN_OBSERVATION,OSYK02050800,1,,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-30.33197,151.57815,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-31.431446,152.910589,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-28.259943,153.401898,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-30.462807,152.902216,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.447933,150.516902,EPSG:4326 +HUMAN_OBSERVATION,OPUR17120700,1,,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-31.287935,152.958535,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.391208,150.643949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.431953,150.613493,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.846843,153.314609,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-34.207579,150.796001,EPSG:4326 +HUMAN_OBSERVATION,OPJG21083101,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-37.366283,149.649508,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.396473,150.627172,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190O,1,,occurrenceRemarks withheld,2024,8,26,Australia,AU,New South Wales,-31.9505,152.36433,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,11,Australia,AU,New South Wales,-28.821373,153.313065,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,24,Australia,AU,New South Wales,-29.491609,153.099788,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-36.503585,149.989088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.438277,150.606295,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-28.229296,153.531294,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,7,Australia,AU,New South Wales,-28.210224,153.494903,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-29.337796,152.903199,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-31.446628,152.893638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.389625,150.625973,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270K,1,,occurrenceRemarks withheld,2022,3,10,Australia,AU,New South Wales,-29.66,151.042,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,27,Australia,AU,New South Wales,-28.9982,153.301536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.493278,150.639109,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.420323,150.627379,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-30.23729,152.90267,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-34.451829,150.518142,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.586543,153.555195,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,12,Australia,AU,New South Wales,-28.881084,153.262977,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-29.745618,151.083496,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,27,Australia,AU,New South Wales,-29.480383,153.104133,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,10,24,Australia,AU,New South Wales,-32.706601,152.065095,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-31.45409,152.925348,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,2,20,Australia,AU,New South Wales,-32.709662,152.061388,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2024,5,31,Australia,AU,New South Wales,-31.445661,152.916075,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.390091,150.627689,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154V,1,,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-28.680835,153.484337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.468649,150.520403,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.10581,150.812613,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.444763,150.514373,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030I,1,,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-31.431749,152.910807,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.394295,150.630115,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,11,24,Australia,AU,New South Wales,-32.705836,152.063851,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.398032,150.63969,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-28.815308,153.318734,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.389454,150.629697,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866277,153.367822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.459084,150.515048,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.911521,152.379615,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.42089,150.630572,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.564757,150.015337,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042A,1,FEMALE,occurrenceRemarks withheld,2023,4,10,Australia,AU,New South Wales,-31.071839,150.170039,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011201,1,,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-30.484131,151.64,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.452538,150.519878,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-31.928166,152.498708,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.465221,150.524717,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121102,1,,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-31.460967,152.929586,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,26,Australia,AU,New South Wales,-29.487798,153.091339,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.500349,150.563856,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907171A,1,FEMALE,occurrenceRemarks withheld,2023,4,14,Australia,AU,New South Wales,-29.707102,152.878361,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,12,18,Australia,AU,New South Wales,-30.826158,152.796737,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-28.873889,153.279776,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011014,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-32.728849,152.039666,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101Z,1,,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-31.465131,152.819515,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-28.923326,153.262928,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.453718,150.51808,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.439237,150.604679,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222M,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-32.722656,152.072576,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.446072,150.513149,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,8,Australia,AU,New South Wales,-31.446463,152.893782,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.091605,150.822272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.464339,150.523012,EPSG:4326 +HUMAN_OBSERVATION,ODFK23122105,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-34.136195,150.798386,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.360232,152.778159,EPSG:4326 +HUMAN_OBSERVATION,OSYK02050800,1,,occurrenceRemarks withheld,2020,8,22,Australia,AU,New South Wales,-30.1873,152.69903,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-31.125764,152.797403,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-33.708134,150.784951,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021804,1,FEMALE,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-29.353952,150.200415,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100J,1,,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-31.442949,152.888212,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-29.578019,152.786303,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-34.60904,150.60054,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150G,1,,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.028699,151.046163,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111302,1,,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-31.451443,152.914421,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-32.710944,152.06535,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.411545,150.596146,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020202,1,,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-32.739975,152.073562,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.386438,150.630815,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130J,1,,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-31.451443,152.914421,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031803,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-28.822574,153.3159,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,6,30,Australia,AU,New South Wales,-30.50157,151.66621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.386706,150.625142,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,3,26,Australia,AU,New South Wales,-31.139683,152.800782,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.43434,150.61707,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.456666,150.51943,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2024,5,22,Australia,AU,New South Wales,-31.304217,152.87026,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,21,Australia,AU,New South Wales,-32.706782,152.06385,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-32.22768,152.24788,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.429088,150.614467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.388466,150.632215,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,17,Australia,AU,New South Wales,-36.08564,149.298614,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.487991,150.635165,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.827891,153.321214,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-34.098121,150.808214,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030U,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-34.072662,150.858454,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,5,3,Australia,AU,New South Wales,-28.803954,152.731727,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011200,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.957841,152.1867,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.385767,150.623211,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.434359,150.617124,EPSG:4326 +HUMAN_OBSERVATION,ODMP10100606,1,,occurrenceRemarks withheld,2022,10,8,Australia,AU,New South Wales,-28.809314,153.288292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.392881,150.639508,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,13,Australia,AU,New South Wales,-31.440849,152.907433,EPSG:4326 +HUMAN_OBSERVATION,ODMP06091900,1,,occurrenceRemarks withheld,2022,3,20,Australia,AU,New South Wales,-31.450675,152.916509,EPSG:4326 +HUMAN_OBSERVATION,SCHM-035,1,,occurrenceRemarks withheld,2023,6,4,Australia,AU,New South Wales,-34.263916,150.230275,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-28.65505,153.59019,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.465707,150.521579,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.428506,150.598598,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.446417,150.514129,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.390104,150.626025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.418514,150.633076,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-29.485622,153.103479,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.845525,153.302578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.427023,150.604799,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.910046,153.346548,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,14,Australia,AU,New South Wales,-31.445979,152.915576,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.453972,150.520358,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-32.229205,152.189597,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-34.095162,150.961107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.45858,150.656065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.447574,150.517381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.419106,150.610247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.45561,150.608412,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-32.710612,152.067342,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.399574,150.624822,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-28.783966,152.092547,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,15,Australia,AU,New South Wales,-29.4858,153.103704,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.469526,150.527159,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,26,Australia,AU,New South Wales,-28.822308,153.285445,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.437085,150.602999,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,3,9,Australia,AU,New South Wales,-34.091408,150.98719,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.418972,150.609402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.389888,150.630696,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-30.345701,153.085519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433133,150.607442,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.389513,150.629,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.399632,150.651174,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-34.186262,150.791103,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,FEMALE,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-31.947317,152.387318,EPSG:4326 +HUMAN_OBSERVATION,ODDP13030700,1,MALE,occurrenceRemarks withheld,2021,11,10,Australia,AU,New South Wales,-30.92833,149.066364,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.485649,150.636211,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-29.489666,153.105024,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.452701,150.517262,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,FEMALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-29.35394,150.200414,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004036,1,,occurrenceRemarks withheld,2023,7,24,Australia,AU,New South Wales,-28.822191,153.305757,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.454025,150.520313,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.444745,150.514407,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.423678,150.637217,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.489463,150.638564,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.42193,150.607577,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.454331,150.521197,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-31.946624,152.388471,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.425533,152.821464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.463172,150.524157,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-30.186651,153.086458,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-28.814201,153.334169,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-31.915437,152.374042,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.459943,150.519169,EPSG:4326 +HUMAN_OBSERVATION,OJJS18041601,1,,occurrenceRemarks withheld,2020,12,14,Australia,AU,New South Wales,-28.889032,153.228173,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307101N,1,,occurrenceRemarks withheld,2023,12,20,Australia,AU,New South Wales,-31.904941,152.325936,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-36.590676,149.945176,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.436966,150.605211,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.385481,150.62659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.44945,150.516095,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,3,4,Australia,AU,New South Wales,-32.706102,152.063516,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.42082,150.627898,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100603,1,,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-30.319659,153.106133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.395993,150.641466,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.024511,150.865353,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-31.415433,152.126308,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,4,29,Australia,AU,New South Wales,-34.65589,150.7644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.435572,150.61549,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,21,Australia,AU,New South Wales,-31.453184,152.877874,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.417961,150.632918,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-28.993352,153.437732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.434687,150.606647,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004191,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-29.016289,153.389441,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2020,6,15,Australia,AU,New South Wales,-30.202024,152.773834,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.390315,150.62901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.421225,150.627364,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.434261,150.617192,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.385834,150.627135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.488639,150.634188,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.632291,152.755218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.445838,150.513155,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-31.322372,152.401322,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-29.727368,152.927917,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-36.434481,149.990128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.383895,150.622927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.437571,150.519363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.420629,150.609268,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-30.423408,153.011319,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-29.490063,153.101188,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.447321,150.518705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.42325,150.605015,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,MALE,occurrenceRemarks withheld,2023,8,19,Australia,AU,New South Wales,-34.052138,150.838417,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-32.736973,152.03524,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.435054,150.61717,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-33.709294,150.784457,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,24,Australia,AU,New South Wales,-31.12568,152.800906,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-30.05116,152.244418,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-31.46662,152.90922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.449084,150.608043,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-28.256771,153.402244,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-34.104728,150.979649,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250U,1,,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-32.704025,151.692597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.43874,150.60416,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,6,6,Australia,AU,New South Wales,-31.98075,152.34022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.384545,150.625258,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-31.656124,152.795492,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-31.480025,152.905437,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020609,1,,occurrenceRemarks withheld,2024,1,26,Australia,AU,New South Wales,-34.050188,150.83685,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,6,11,Australia,AU,New South Wales,-28.616286,153.429996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.471294,150.529447,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121400,1,,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-34.102787,150.78122,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030N,1,,occurrenceRemarks withheld,2022,6,13,Australia,AU,New South Wales,-32.720415,149.170801,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-29.485744,153.10364,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.399692,150.617434,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.420975,150.630298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.45398,150.520315,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.183701,153.001875,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.491511,150.639094,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-31.594241,152.836236,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-30.082651,152.215502,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.395595,150.642836,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,1,2,Australia,AU,New South Wales,-31.915114,152.378915,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.446746,150.515675,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.436344,150.603336,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.395827,150.643635,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,4,27,Australia,AU,New South Wales,-31.914471,152.373819,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.459122,150.521839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.456994,150.528051,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-29.354577,150.199809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.478078,150.532806,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.45297,150.523424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.45261,150.519909,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.426377,150.60584,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-28.821034,153.299072,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,27,Australia,AU,New South Wales,-29.489339,153.110662,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.454871,150.606126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.420643,150.630819,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,4,Australia,AU,New South Wales,-28.237891,153.514752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.419532,150.633059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.418408,150.633678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.434921,150.608958,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032118,1,,occurrenceRemarks withheld,2022,11,13,Australia,AU,New South Wales,-32.725127,152.075749,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022523,1,,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-29.78675,151.19617,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-28.654774,153.359794,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-31.129063,152.790413,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-30.314103,152.857493,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.45337,150.61099,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.445972,150.513097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.414032,150.640959,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090804,1,,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-30.983682,150.264751,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200C,1,,occurrenceRemarks withheld,2024,4,25,Australia,AU,New South Wales,-30.959107,152.857111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.449262,150.516188,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.44702,150.516298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.423923,150.637287,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031807,1,FEMALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.858113,153.137379,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,9,Australia,AU,New South Wales,-29.490199,153.108113,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,MALE,occurrenceRemarks withheld,2022,1,15,Australia,AU,New South Wales,-32.766593,152.117875,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.438407,150.604648,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,MALE,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-30.437766,152.981813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.465546,150.520299,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.38843,150.632227,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150K,1,,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-33.6434,150.56513,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-33.944023,150.916185,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031O,1,,occurrenceRemarks withheld,2023,5,10,Australia,AU,New South Wales,-31.443998,152.903345,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,19,Australia,AU,New South Wales,-31.386864,150.406039,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2022,1,1,Australia,AU,New South Wales,-32.708193,152.066185,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-31.459219,152.925931,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.446972,150.513949,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-30.418407,152.973397,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.420269,150.627381,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180M,1,FEMALE,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-28.93445,153.278284,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.447323,150.513057,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.410089,150.597265,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.182353,153.002652,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.487896,150.637225,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-31.479203,152.917952,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-29.489573,153.103913,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-28.852027,153.285507,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.435334,150.602908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.39619,150.640949,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-32.220759,152.193373,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W;ODMP2202251J,1,FEMALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-32.719735,152.06845,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-29.488065,153.092144,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100I,1,MALE,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-31.454135,152.925162,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.953149,153.369052,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-29.487901,153.091205,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.489365,150.63861,EPSG:4326 +HUMAN_OBSERVATION,ODLC98101500,1,,occurrenceRemarks withheld,2022,4,4,Australia,AU,New South Wales,-28.413351,153.023207,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.417235,150.601238,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.42067,150.609071,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-31.477808,152.892385,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.443856,150.514574,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-32.724707,152.073059,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-31.446909,152.892125,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.423913,150.605236,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.003485,150.884961,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,5,29,Australia,AU,New South Wales,-34.267546,150.524542,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.921347,152.382914,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.431989,152.853946,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011017,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.009414,152.197719,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011007,1,,occurrenceRemarks withheld,2023,12,10,Australia,AU,New South Wales,-28.635524,152.176238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.392795,150.639293,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.211503,150.786098,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.104028,150.97543,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-31.34267,152.711167,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-29.485146,153.104053,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,7,4,Australia,AU,New South Wales,-31.453287,152.916227,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,12,Australia,AU,New South Wales,-28.678974,153.277975,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.453993,150.520978,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-31.449067,152.878226,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,29,Australia,AU,New South Wales,-32.706091,152.063291,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.439498,150.618959,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.814294,152.816573,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030Q,1,MALE,occurrenceRemarks withheld,2022,3,28,Australia,AU,New South Wales,-30.236849,152.903112,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.386129,150.624669,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.455124,150.609862,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,27,Australia,AU,New South Wales,-29.480794,153.104171,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-29.480033,153.104283,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.793323,152.433598,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435386,150.615202,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-29.491506,153.109664,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-29.485384,153.103865,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-34.014812,150.886398,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,4,24,Australia,AU,New South Wales,-32.706548,152.063817,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,2,5,Australia,AU,New South Wales,-31.47489,152.897307,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.435698,150.607195,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033009,1,,occurrenceRemarks withheld,2020,6,25,Australia,AU,New South Wales,-33.153346,151.100714,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,3,23,Australia,AU,New South Wales,-28.82175,153.33124,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.388183,150.631103,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,20,Australia,AU,New South Wales,-28.55567,153.469126,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-29.032061,153.407003,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-34.441073,150.616955,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-30.090195,152.143949,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040Y,1,,occurrenceRemarks withheld,2023,1,1,Australia,AU,New South Wales,-32.173607,148.646979,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2021,12,6,Australia,AU,New South Wales,-34.143688,150.790513,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-33.705307,150.785672,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040414,1,FEMALE,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-29.708536,152.943605,EPSG:4326 +HUMAN_OBSERVATION,OJJS07090600,1,,occurrenceRemarks withheld,2023,10,1,Australia,AU,New South Wales,-30.371512,153.094604,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-34.286451,150.671616,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,12,20,Australia,AU,New South Wales,-31.440674,152.908902,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-28.712751,153.598093,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033009,1,,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-33.133958,151.223866,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-31.445901,152.915469,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012502,1,,occurrenceRemarks withheld,2023,12,25,Australia,AU,New South Wales,-28.689494,153.363168,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-29.485291,153.10402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.461341,150.51964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.447128,150.51586,EPSG:4326 +HUMAN_OBSERVATION,OJJS12110500,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-34.076045,150.855847,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.429253,150.615071,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-31.467868,152.818836,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004169,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.68585,152.988571,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.447158,150.519559,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436318,150.61585,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.446411,150.516512,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,2,8,Australia,AU,New South Wales,-28.711977,153.402776,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,2,16,Australia,AU,New South Wales,-31.921976,152.380327,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.383478,150.623733,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,1,15,Australia,AU,New South Wales,-31.163662,152.906905,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,15,Australia,AU,New South Wales,-28.864651,153.293141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.432787,150.613241,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,23,Australia,AU,New South Wales,-29.490558,153.10813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.414103,150.59876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.447074,150.51585,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-36.434481,149.990128,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,7,24,Australia,AU,New South Wales,-29.477735,153.104337,EPSG:4326 +HUMAN_OBSERVATION,Obs_1413,1,MALE,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-28.930282,152.530614,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-31.485159,152.918172,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.268543,152.822099,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.437969,150.605335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.446521,150.514387,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,2,16,Australia,AU,New South Wales,-31.458613,152.92957,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.399658,150.617521,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-29.488186,153.092203,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.493156,150.640245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.438006,150.60442,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-33.623333,149.547784,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.473649,152.913935,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.423303,150.604981,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,6,18,Australia,AU,New South Wales,-29.489914,153.103371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.427169,150.605349,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181P,1,,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-28.931139,153.270395,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,7,2,Australia,AU,New South Wales,-28.398851,153.555981,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,7,12,Australia,AU,New South Wales,-34.190765,150.798237,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040425,1,MALE,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-29.854432,152.892464,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-31.436665,152.905629,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-28.399168,153.555851,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.479641,150.533446,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.438866,150.604613,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.872021,153.335449,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,2,16,Australia,AU,New South Wales,-29.490068,153.107411,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003998,1,FEMALE,occurrenceRemarks withheld,2023,6,10,Australia,AU,New South Wales,-28.640638,152.940498,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-31.489249,152.907773,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.418464,150.597722,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-31.256329,152.746224,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,3,19,Australia,AU,New South Wales,-28.901995,153.444405,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-34.100918,150.822089,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-34.450947,150.614781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.388839,150.630965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.471009,150.530957,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.457404,150.519332,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-29.485585,153.1038,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.910046,153.346548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.465753,150.520293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.438699,150.603932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.465415,150.520967,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150R,1,,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-31.46431,152.919139,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-31.430776,152.911292,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,19,Australia,AU,New South Wales,-28.818643,153.333259,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-32.705557,152.063631,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.562884,152.822341,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.394549,150.632098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.485738,150.635664,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,FEMALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-36.03167,149.39945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.423816,150.637333,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.069134,150.881836,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.430753,150.610655,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041N,1,MALE,occurrenceRemarks withheld,2023,5,18,Australia,AU,New South Wales,-34.068546,150.842335,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-30.412503,153.01346,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-31.435838,152.905296,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.395294,150.630022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.421752,150.639219,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,6,Australia,AU,New South Wales,-29.487901,153.091285,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,4,20,Australia,AU,New South Wales,-28.913441,153.261246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.465823,150.522402,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.383695,150.624683,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.850935,153.30978,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052007,1,FEMALE,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-31.192743,152.969997,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-29.485454,153.103741,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.45297,150.519866,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-29.489699,153.104847,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-29.086999,153.379512,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022508,1,FEMALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-32.738424,152.058972,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-28.664639,153.607954,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,21,Australia,AU,New South Wales,-33.71671,150.784078,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866277,153.367822,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,8,Australia,AU,New South Wales,-29.490269,153.108199,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130J,1,MALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-31.451443,152.914421,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,MALE,occurrenceRemarks withheld,2023,2,5,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010703,1,MALE,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-29.726604,152.930133,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131G,1,,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-31.993933,152.009401,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-31.458851,152.925984,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.420676,150.630676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.432971,150.61391,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.570187,149.979238,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-29.490222,153.108151,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,11,5,Australia,AU,New South Wales,-31.463982,152.928607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.428125,150.600306,EPSG:4326 +HUMAN_OBSERVATION,VEG-IZAA,1,,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-30.26903,153.034932,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.398781,150.62715,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-31.419488,152.107655,EPSG:4326 +HUMAN_OBSERVATION,ODMP21041902,1,,occurrenceRemarks withheld,2020,12,22,Australia,AU,New South Wales,-30.556321,152.65317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.391613,150.644383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.397769,150.621936,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-28.854476,153.394737,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.448662,150.516391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.428943,150.600174,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,28,Australia,AU,New South Wales,-35.076012,150.123233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.395238,150.640192,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,12,Australia,AU,New South Wales,-29.490032,153.108231,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-31.915685,152.379417,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-29.490213,153.108119,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0006388,1,,occurrenceRemarks withheld,2024,7,7,Australia,AU,New South Wales,-31.932117,152.413213,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083000,1,MALE,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-33.571047,150.666119,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.420304,150.627293,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250K,1,,occurrenceRemarks withheld,2024,9,14,Australia,AU,New South Wales,-33.637563,149.513928,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003856,1,,occurrenceRemarks withheld,2023,1,8,Australia,AU,New South Wales,-28.87453,153.311341,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.488221,150.637249,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.424692,150.604539,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.471008,150.53001,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,30,Australia,AU,New South Wales,-29.480224,153.104165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.420635,150.630917,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,1,2,Australia,AU,New South Wales,-31.644972,150.234723,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-31.603505,152.804326,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-28.934472,153.278306,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.45196,150.602977,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003968,1,,occurrenceRemarks withheld,2023,2,4,Australia,AU,New South Wales,-28.709279,153.464226,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100G,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-32.662,151.675,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-31.934235,152.271045,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040420,1,MALE,occurrenceRemarks withheld,2022,12,11,Australia,AU,New South Wales,-33.376554,150.813062,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.466135,150.521337,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070703,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-33.526307,150.662826,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,6,5,Australia,AU,New South Wales,-32.515004,151.735887,EPSG:4326 +HUMAN_OBSERVATION,OLHP23082512,1,,occurrenceRemarks withheld,2021,2,4,Australia,AU,New South Wales,-32.666864,152.173331,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.464623,150.531722,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,27,Australia,AU,New South Wales,-31.785133,152.698976,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.427265,150.599657,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-34.284386,150.716872,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,10,13,Australia,AU,New South Wales,-30.374914,153.017126,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,4,Australia,AU,New South Wales,-33.711685,150.786364,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.426813,150.604206,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-32.713215,152.162329,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,1,7,Australia,AU,New South Wales,-28.816684,153.336838,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-31.446399,152.915153,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-31.933102,152.415353,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131E,1,,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-31.450726,152.875957,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.51267,149.987449,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-29.485608,153.09651,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.397106,150.642152,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-31.44696,152.906239,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.953149,153.369052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.465631,150.522277,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-29.490077,153.10107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.481165,150.532552,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.0268,151.046985,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-34.447125,150.513063,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-30.911228,153.059473,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-34.395638,150.64178,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.436896,150.614506,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,6,8,Australia,AU,New South Wales,-28.672297,153.323702,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.184695,152.03058,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-33.139385,151.089603,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,FEMALE,occurrenceRemarks withheld,2024,6,13,Australia,AU,New South Wales,-31.192916,152.845694,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-34.063186,150.844126,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.920849,152.379891,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-28.82636,153.317943,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-31.411202,152.105304,EPSG:4326 +HUMAN_OBSERVATION,OJNV22121600,1,,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-36.58782,149.97061,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-29.490287,153.108151,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-29.006796,152.913957,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,9,Australia,AU,New South Wales,-33.70761,150.785751,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101P,1,,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-32.697386,151.79325,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-29.489605,153.10394,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,,occurrenceRemarks withheld,2022,3,23,Australia,AU,New South Wales,-32.738404,152.109971,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.950844,153.262256,EPSG:4326 +HUMAN_OBSERVATION,OJJS19122407,1,,occurrenceRemarks withheld,2020,8,4,Australia,AU,New South Wales,-34.157179,150.804653,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-32.223426,152.189959,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.491746,150.639109,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.494284,150.640758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.433941,150.608616,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-34.130917,150.982585,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.488609,150.635419,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100209,1,FEMALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-35.992618,149.361953,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.417381,150.601353,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-33.76622,150.02666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.392509,150.633809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.454047,150.520498,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.446302,150.513806,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,8,Australia,AU,New South Wales,-33.707706,150.785441,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100503,1,,occurrenceRemarks withheld,2024,3,27,Australia,AU,New South Wales,-31.473213,152.924126,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250E,2,FEMALE,occurrenceRemarks withheld,2024,9,29,Australia,AU,New South Wales,-34.927256,150.76497,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-30.39287,152.94061,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.447358,150.51385,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.437819,150.60596,EPSG:4326 +HUMAN_OBSERVATION,Obs_0683,1,,occurrenceRemarks withheld,2022,7,19,Australia,AU,New South Wales,-28.658397,153.613718,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.384561,150.622854,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070C,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-30.507605,152.927732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.454531,150.60582,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,4,23,Australia,AU,New South Wales,-31.943356,152.43636,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-31.453398,152.909127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.394786,150.642946,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-32.686569,151.655534,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.451356,150.616337,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-28.981717,153.440619,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.446257,150.513829,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.453724,150.51746,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.652253,152.808817,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2022,11,7,Australia,AU,New South Wales,-33.491237,149.552103,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.61134,153.388372,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003853,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-28.885717,153.218372,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.420801,150.630618,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-34.476,150.577567,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.389238,150.628801,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-33.713675,150.78484,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.466839,150.520946,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.872021,153.339182,EPSG:4326 +HUMAN_OBSERVATION,CLARP,1,,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-31.637937,152.237605,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,21,Australia,AU,New South Wales,-29.489526,153.10151,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,6,29,Australia,AU,New South Wales,-28.888635,153.273906,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-29.736166,152.94059,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-34.61875,150.21371,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,5,8,Australia,AU,New South Wales,-29.483435,153.095532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.385809,150.627201,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,FEMALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-29.354393,150.200473,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.434668,150.606626,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-29.490787,153.10932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.465509,150.520235,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.453571,150.520153,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.638555,152.794163,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-31.443304,152.923854,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-33.431033,150.615629,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,24,Australia,AU,New South Wales,-28.846236,153.317214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.465705,150.521459,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.421204,150.626277,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-31.818397,152.436118,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-33.708375,150.786946,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2022,9,10,Australia,AU,New South Wales,-31.915681,152.374871,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,26,Australia,AU,New South Wales,-29.490339,153.108065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435563,150.615512,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-30.504964,152.924357,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-36.015923,149.365456,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121102,1,,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-31.471364,152.926107,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,FEMALE,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-30.365322,153.012809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.390847,150.62807,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.437983,150.604159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.45409,150.520431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.451563,150.518068,EPSG:4326 +HUMAN_OBSERVATION,OJJS17032800,1,,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-31.079438,150.095687,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,8,9,Australia,AU,New South Wales,-31.458972,152.890135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.422562,150.608538,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.440831,150.603665,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,2,Australia,AU,New South Wales,-28.794781,153.504788,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.468198,153.052346,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-32.220827,152.198292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.465722,150.521404,EPSG:4326 +HUMAN_OBSERVATION,OJJS18041601,1,,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-29.432632,153.167463,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,15,Australia,AU,New South Wales,-28.864618,153.293409,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,1,22,Australia,AU,New South Wales,-32.428555,151.77252,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.427338,150.604735,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,9,6,Australia,AU,New South Wales,-29.722007,152.938192,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.420341,150.636212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.414865,150.596693,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.432758,150.607616,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-29.560969,152.803229,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-31.467655,152.905478,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,12,26,Australia,AU,New South Wales,-34.878995,146.829753,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,MALE,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-28.830442,153.217689,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-31.454549,152.926578,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-31.91785,152.377772,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,14,Australia,AU,New South Wales,-31.446352,152.915039,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-34.03093,150.859776,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-33.764804,150.055172,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030508,1,,occurrenceRemarks withheld,2024,6,15,Australia,AU,New South Wales,-31.455905,152.876081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.40298,150.650362,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-30.374914,153.017126,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,20,Australia,AU,New South Wales,-32.175333,152.098861,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-28.894609,153.353824,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202070P,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-34.196128,150.781397,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-31.555227,152.638392,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030600,1,,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-32.726415,151.854278,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,25,Australia,AU,New South Wales,-33.716394,150.784899,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-36.662249,149.936774,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012504,1,,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-28.68185,153.6109,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,8,Australia,AU,New South Wales,-28.822398,153.281817,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-31.440551,152.885124,EPSG:4326 +HUMAN_OBSERVATION,OJJS19022501;ODMP21050503,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-32.714185,151.780333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.452056,150.517455,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-28.403846,153.556828,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-31.444134,152.92573,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-29.488144,153.092272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.423752,150.637302,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.419117,150.610322,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-31.460656,152.914215,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,5,3,Australia,AU,New South Wales,-31.444793,152.915994,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-31.448305,152.894418,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121302,1,,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-31.650157,152.83008,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-29.482624,153.095909,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090401,1,FEMALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-32.743065,152.065691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.436481,150.615878,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,1,8,Australia,AU,New South Wales,-29.74731,151.083234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.385834,150.625275,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-31.4469,152.922548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.396274,150.644351,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-29.654391,150.831321,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,3,17,Australia,AU,New South Wales,-31.453985,152.924859,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.437655,150.60492,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,26,Australia,AU,New South Wales,-29.618249,150.817545,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.45633,150.655834,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-34.20866,150.809,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-31.447575,152.896393,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.424692,150.604539,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,7,5,Australia,AU,New South Wales,-31.471601,152.909796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.390881,150.643817,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO,1,,occurrenceRemarks withheld,2020,8,2,Australia,AU,New South Wales,-30.6487,152.9581,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.463421,150.534664,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.812571,152.823603,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032112,1,,occurrenceRemarks withheld,2022,7,16,Australia,AU,New South Wales,-32.735366,152.039817,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150G,1,MALE,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-35.047975,150.109142,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-29.489582,153.110597,EPSG:4326 +HUMAN_OBSERVATION,ODMP21070805,1,,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-33.952749,150.933901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.423698,150.637304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.397019,150.643253,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,2,21,Australia,AU,New South Wales,-31.905008,152.418213,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;ORSF21090200,1,MALE,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-32.406834,149.767163,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.491503,150.639127,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-29.488102,153.092224,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150Z,1,,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-34.018358,151.039191,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-33.491254,149.552078,EPSG:4326 +HUMAN_OBSERVATION,SHARM,1,,occurrenceRemarks withheld,2024,9,,Australia,AU,New South Wales,-32.588052,149.574448,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.465222,150.520766,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.389567,150.629031,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,12,10,Australia,AU,New South Wales,-28.72186,153.521123,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.086512,150.977245,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-29.485585,153.103755,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,3,10,Australia,AU,New South Wales,-29.091518,153.385934,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.449147,150.521633,EPSG:4326 +HUMAN_OBSERVATION,OJJS19122408,1,,occurrenceRemarks withheld,2020,7,12,Australia,AU,New South Wales,-31.925208,152.403053,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-28.768431,153.49754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.485252,150.637104,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091903,1,,occurrenceRemarks withheld,2024,8,9,Australia,AU,New South Wales,-32.338572,152.523761,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-29.010393,153.272199,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032208,1,,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-33.563409,149.549569,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,12,9,Australia,AU,New South Wales,-31.456352,152.923591,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-28.65505,153.59019,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900;OMRF21071000,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.084503,150.978594,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050Z,1,,occurrenceRemarks withheld,2023,4,16,Australia,AU,New South Wales,-31.459497,152.928862,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.437573,150.607164,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-31.457515,152.895113,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080204,1,,occurrenceRemarks withheld,2021,2,9,Australia,AU,New South Wales,-34.078728,150.848251,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004016,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-28.81848,153.298463,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.182696,153.004617,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.465692,150.521274,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.433663,150.616992,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122105,1,MALE,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-31.454642,152.908555,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.454054,150.520399,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.420483,150.609206,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2023,2,5,Australia,AU,New South Wales,-34.098117,150.808288,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.421294,150.627232,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,21,Australia,AU,New South Wales,-29.484371,153.104031,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,24,Australia,AU,New South Wales,-29.490586,153.109363,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-30.505568,152.910323,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,10,12,Australia,AU,New South Wales,-31.630507,152.784391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.450899,150.515552,EPSG:4326 +HUMAN_OBSERVATION,ODMP2302060B,1,FEMALE,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-34.151179,150.824237,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-31.4766,152.930019,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.433008,150.613964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.481085,150.533034,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-32.73263,152.02848,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-31.910186,152.409406,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032101,1,,occurrenceRemarks withheld,2022,12,11,Australia,AU,New South Wales,-32.729403,152.085295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.411963,150.596308,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-36.522201,149.977337,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-28.809588,153.296147,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-29.742098,151.066755,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-28.686915,153.523472,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.418176,150.600047,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-29.320091,152.840035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.425257,150.60486,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-31.127475,152.806661,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-31.929119,152.38376,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.223126,153.499496,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.452539,150.519933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427275,150.604781,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-31.468619,152.907877,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,30,Australia,AU,New South Wales,-29.490213,153.10821,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO;OJJS20110901,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-30.667328,152.955919,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111309,1,MALE,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-32.046777,151.851809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.488454,150.635326,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,5,1,Australia,AU,New South Wales,-28.258145,153.400672,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.438162,150.616581,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,12,16,Australia,AU,New South Wales,-28.666771,153.414263,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,15,Australia,AU,New South Wales,-28.569742,153.549427,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.389673,150.627027,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004086,1,,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-28.821099,153.316134,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,19,Australia,AU,New South Wales,-29.490199,153.109755,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-29.477319,153.104546,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.439289,150.604144,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-29.489549,153.103935,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.491431,150.638671,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200T,1,,occurrenceRemarks withheld,2024,4,3,Australia,AU,New South Wales,-31.409189,152.900722,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003856,1,FEMALE,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-28.874205,153.279565,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.433976,150.614567,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-29.040946,153.285323,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-28.384631,153.547279,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.360232,152.778159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.447225,150.513093,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.143675,150.792885,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100310,1,,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-30.467635,152.891395,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.389603,150.627137,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-31.474006,152.900919,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-29.490539,153.108162,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.182481,153.002256,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.432598,150.613279,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-29.488027,153.09202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.385685,150.623159,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2024,7,12,Australia,AU,New South Wales,-32.236859,151.774513,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.418905,150.632793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.434621,150.616224,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.435089,150.608322,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210I,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-28.267041,153.394064,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,2,13,Australia,AU,New South Wales,-28.601078,153.095224,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,FEMALE,occurrenceRemarks withheld,2024,4,8,Australia,AU,New South Wales,-34.030317,150.989041,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004245,1,FEMALE,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-28.618208,153.508229,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.434271,150.617192,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.648892,152.81935,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-33.709989,150.958541,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-28.682671,153.487886,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.390534,150.627242,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,11,14,Australia,AU,New South Wales,-31.905008,152.418213,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,4,23,Australia,AU,New South Wales,-31.474753,152.802107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.386185,150.624298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.434957,150.615878,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,25,Australia,AU,New South Wales,-29.480131,153.090856,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.418947,150.6095,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,7,Australia,AU,New South Wales,-29.489666,153.104761,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.396031,150.629001,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-34.38071,150.53304,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041V,1,FEMALE,occurrenceRemarks withheld,2022,8,13,Australia,AU,New South Wales,-33.344283,150.705766,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150Q,1,,occurrenceRemarks withheld,2020,4,24,Australia,AU,New South Wales,-32.3877,150.679901,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-31.442303,152.901864,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.68121,153.60155,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-33.778195,150.055339,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.450714,150.520618,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-31.475785,152.90819,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102223,1,,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-32.728287,152.007737,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,1,13,Australia,AU,New South Wales,-28.398325,153.557714,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.420947,150.630234,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-29.490469,153.109363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419119,150.610442,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-30.888396,153.071428,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-31.460013,152.922969,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.457703,150.606644,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-28.817057,153.322321,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-34.015472,150.876658,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-31.459113,152.928707,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.441378,150.517727,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.469489,150.527149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.488144,150.635618,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,23,Australia,AU,New South Wales,-28.393386,153.561219,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.458471,150.661695,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.444943,150.517916,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.491511,150.639094,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-28.867547,153.391331,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042W,1,MALE,occurrenceRemarks withheld,2022,8,15,Australia,AU,New South Wales,-34.113612,150.797306,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,3,11,Australia,AU,New South Wales,-34.129134,150.793315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.469352,150.527512,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,3,Australia,AU,New South Wales,-28.557,153.468596,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-33.778446,150.101318,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102,1,,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-32.472815,151.896381,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-28.282383,153.390054,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.434663,152.907801,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-34.249366,150.666545,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.445824,150.514255,EPSG:4326 +HUMAN_OBSERVATION,OPJG21031205,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-28.662539,153.42455,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.182186,153.002312,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.192158,150.784406,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004129,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.821728,153.306421,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,3,29,Australia,AU,New South Wales,-31.458898,152.926025,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.730533,152.039889,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-31.474859,152.868196,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-28.711703,153.290989,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-28.666586,153.328392,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022601,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.483779,152.782127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.45261,150.519898,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.421348,150.626752,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,3,19,Australia,AU,New South Wales,-31.95843,152.390764,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-34.023931,150.866622,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.399514,150.639431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.419125,150.61029,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-30.24074,152.90641,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-29.478791,153.10416,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-31.459115,152.928733,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.446453,150.514585,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,7,11,Australia,AU,New South Wales,-29.705835,150.99157,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-32.229205,152.189597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-34.446035,150.513095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.435,150.604245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.446891,150.515747,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-29.489648,153.101419,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-31.449625,152.930481,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.45887,150.525394,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-31.670986,152.807865,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,1,7,Australia,AU,New South Wales,-28.65207,153.59617,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,9,25,Australia,AU,New South Wales,-31.246496,152.758918,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.294353,149.324745,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,12,3,Australia,AU,New South Wales,-32.705708,152.063608,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-31.876522,152.38713,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004194,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.687383,153.531123,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-34.135265,150.790894,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003801,1,,occurrenceRemarks withheld,2023,3,27,Australia,AU,New South Wales,-28.820794,153.296899,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-29.891456,152.17254,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,MALE,occurrenceRemarks withheld,2023,7,1,Australia,AU,New South Wales,-34.05664,150.84311,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.978044,153.406428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.430032,150.614364,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003871,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-28.7863,153.382819,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,26,Australia,AU,New South Wales,-28.399483,153.556012,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-31.469217,152.912089,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.488673,150.637345,EPSG:4326 +HUMAN_OBSERVATION,OPXE99030200,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.652416,152.825124,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.469391,150.527195,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-33.706027,150.786241,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154E,1,,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-28.63518,153.63661,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.446612,150.514406,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-34.83788,150.0108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.466433,150.521383,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031517,1,,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-28.68934,153.60798,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.137524,150.793832,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.809912,152.826153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.423744,150.637324,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,21,Australia,AU,New South Wales,-31.460297,152.897146,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052014,1,FEMALE,occurrenceRemarks withheld,2024,4,14,Australia,AU,New South Wales,-28.719403,153.331167,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-33.774437,150.053503,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.41894,150.632738,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103006,1,,occurrenceRemarks withheld,2023,8,19,Australia,AU,New South Wales,-32.606552,151.670037,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.73276,152.081965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.447405,150.51707,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,1,17,Australia,AU,New South Wales,-29.515097,152.81152,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090407,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-32.722852,151.851816,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,26,Australia,AU,New South Wales,-29.033708,153.279987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.394348,150.630081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.399936,150.62442,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,1,Australia,AU,New South Wales,-28.649096,153.456385,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-28.74039,153.591093,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042Q,1,,occurrenceRemarks withheld,2023,1,2,Australia,AU,New South Wales,-30.3,151.3166,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290K,1,,occurrenceRemarks withheld,2024,1,4,Australia,AU,New South Wales,-31.939273,152.403784,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,3,29,Australia,AU,New South Wales,-31.459581,152.928234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.421187,150.626343,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.420287,150.62738,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152A,1,,occurrenceRemarks withheld,2022,12,10,Australia,AU,New South Wales,-28.941391,153.224344,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.456958,150.515133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.383461,150.623744,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,17,Australia,AU,New South Wales,-29.476792,153.104911,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,FEMALE,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.95968,153.394689,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.432093,150.615535,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.451397,150.518323,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.150307,150.824127,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032208,1,,occurrenceRemarks withheld,2021,2,3,Australia,AU,New South Wales,-33.561952,149.552928,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.396313,150.644078,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.446253,150.51718,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003938,1,,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-28.637349,153.629331,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.427344,150.600481,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.397399,150.622817,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.220827,152.198292,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-28.586544,153.552367,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-29.483885,153.104106,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041403,1,,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-29.728539,151.082882,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-29.490455,153.109363,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210X,1,,occurrenceRemarks withheld,2022,2,17,Australia,AU,New South Wales,-32.708155,152.067434,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,3,6,Australia,AU,New South Wales,-31.485794,152.916167,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,28,Australia,AU,New South Wales,-31.447895,152.895326,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,29,Australia,AU,New South Wales,-33.714084,150.785979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.488664,150.637334,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-33.708651,150.786645,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,17,Australia,AU,New South Wales,-29.490184,153.108049,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,5,24,Australia,AU,New South Wales,-31.45491,152.89309,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.139603,152.714762,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-30.488316,152.912151,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,2,15,Australia,AU,New South Wales,-33.200215,151.170878,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.415877,150.640309,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.383998,150.622631,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,10,Australia,AU,New South Wales,-35.079586,150.034879,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-29.49004,153.101167,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-29.488503,153.110865,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-34.447373,150.514176,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003833,1,,occurrenceRemarks withheld,2023,4,20,Australia,AU,New South Wales,-28.388099,153.557697,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.420342,150.630185,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,7,24,Australia,AU,New South Wales,-31.475274,152.897428,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2024,3,23,Australia,AU,New South Wales,-34.091166,150.985399,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419025,150.610271,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-30.325257,152.802063,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-36.019986,149.250553,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.39718,150.6465,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.465751,150.522383,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-29.489573,153.103924,EPSG:4326 +HUMAN_OBSERVATION,ODMP21070805,1,,occurrenceRemarks withheld,2022,11,15,Australia,AU,New South Wales,-33.95807,150.9286,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435787,150.521179,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,19,Australia,AU,New South Wales,-28.473948,152.995213,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040S,1,,occurrenceRemarks withheld,2022,9,2,Australia,AU,New South Wales,-32.708193,152.066185,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.458591,150.525435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.439211,150.604266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.435435,150.603438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.43325,150.615709,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-31.450436,152.877911,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,19,Australia,AU,New South Wales,-28.822308,153.283251,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,2,3,Australia,AU,New South Wales,-32.720714,151.991907,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-29.488975,153.101966,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-31.437726,152.905546,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.432618,150.615215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.435608,150.518584,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.385463,150.626602,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.42371,150.637467,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-30.52432,152.6077,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101M,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-32.697386,151.79325,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,4,20,Australia,AU,New South Wales,-31.471075,152.92671,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-32.739618,152.02018,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140P,1,,occurrenceRemarks withheld,2022,11,14,Australia,AU,New South Wales,-28.822558,153.316363,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-29.934297,152.230194,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-30.35221,153.080304,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,6,9,Australia,AU,New South Wales,-33.531096,150.651208,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-29.488788,153.09341,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.431013,150.61612,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.434334,150.606614,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.471393,150.529008,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-34.455,150.527581,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.454875,150.518677,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,8,Australia,AU,New South Wales,-34.91207,150.04376,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004172,1,FEMALE,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-28.268646,153.472453,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042H,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-32.173607,148.646979,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,5,3,Australia,AU,New South Wales,-31.471746,152.900602,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.421191,150.627474,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150H,1,,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-31.429645,152.911447,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,1,14,Australia,AU,New South Wales,-31.465805,152.906388,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-29.084298,153.373633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.388897,150.624232,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003845,1,,occurrenceRemarks withheld,2023,3,1,Australia,AU,New South Wales,-28.767297,153.498212,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,20,Australia,AU,New South Wales,-32.17517,152.086695,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.4308,150.611208,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.468198,153.052346,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100G,1,,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-32.66138,151.668509,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004009,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-28.287244,153.236855,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.297807,149.316428,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-33.076619,151.15607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.488334,150.637528,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,FEMALE,occurrenceRemarks withheld,2023,7,26,Australia,AU,New South Wales,-31.914352,152.373528,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-28.692644,153.288541,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404,1,,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-31.781095,152.439049,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.446221,150.513808,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.43602,150.616315,EPSG:4326 +HUMAN_OBSERVATION,OPUR19102300;ODMP21041907,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.86916,151.562078,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,4,22,Australia,AU,New South Wales,-28.672208,153.415262,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-34.149854,150.823749,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-31.454742,152.926853,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070E,1,,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-31.651749,152.828322,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.420898,150.630529,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-34.27594,150.69488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418211,150.63562,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-32.753251,152.068443,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-29.485132,153.104122,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-32.735486,152.139095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.438922,150.604263,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,4,Australia,AU,New South Wales,-28.735117,153.416729,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-28.313877,153.272353,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-34.062263,150.849405,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-28.890594,152.577613,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.488077,150.519407,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.420631,150.630678,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-28.236882,153.49413,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-28.65505,153.59019,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-34.140954,150.790728,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.453753,150.517154,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.035121,150.873769,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,5,23,Australia,AU,New South Wales,-29.606316,152.880613,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-33.718649,150.782566,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.203692,150.789285,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-31.539511,152.825809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.446426,150.513704,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-29.485104,153.104133,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,23,Australia,AU,New South Wales,-28.960713,153.454569,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.447333,150.513089,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.400995,150.619996,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.402485,152.138047,EPSG:4326 +HUMAN_OBSERVATION,SHARM,1,,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-32.64028,150.033612,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-29.632897,152.898037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.396875,150.641887,EPSG:4326 +HUMAN_OBSERVATION,CHADL,1,,occurrenceRemarks withheld,2020,2,7,Australia,AU,New South Wales,-28.974107,153.355485,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,25,Australia,AU,New South Wales,-35.991781,149.364111,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-34.31447,150.649967,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-33.562043,149.552664,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.438141,150.519009,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-28.397082,153.557416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.392606,150.636036,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.434894,150.608948,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-34.447331,150.513851,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,28,Australia,AU,New South Wales,-31.439547,152.887338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.439362,150.619387,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-33.71409,150.785108,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-31.46311,152.926506,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,1,8,Australia,AU,New South Wales,-31.443758,152.924623,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.418945,150.609403,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,10,Australia,AU,New South Wales,-29.762752,151.110282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.454045,150.5204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.463934,150.524396,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.12129,150.968568,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,12,30,Australia,AU,New South Wales,-31.485305,152.918155,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-34.190837,150.790124,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.447295,150.51654,EPSG:4326 +HUMAN_OBSERVATION,OJJS1712110E,1,MALE,occurrenceRemarks withheld,2024,3,9,Australia,AU,New South Wales,-34.205559,150.791789,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.81369,152.823673,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.453425,150.524945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.418381,150.633668,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-34.214306,150.796472,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-31.453947,152.925194,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-31.867385,152.702188,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.457537,150.659501,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.13135,152.82203,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.454585,150.607168,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2024,1,17,Australia,AU,New South Wales,-31.984778,152.100633,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-32.710276,152.06546,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,4,11,Australia,AU,New South Wales,-31.469654,152.903255,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004132,1,MALE,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.656304,153.183588,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.454029,150.52052,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032804,1,,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-31.473808,152.819479,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.389487,150.629544,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-29.478646,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,13,Australia,AU,New South Wales,-34.443934,150.528771,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,7,11,Australia,AU,New South Wales,-29.741266,151.061151,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.388851,150.626038,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-28.581206,153.550376,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.392883,150.640574,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,4,25,Australia,AU,New South Wales,-29.485557,153.103752,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.680336,149.96634,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-31.904256,152.422603,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-30.39315,152.94117,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-28.8161,153.336244,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-32.233788,152.201795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.49182,150.639216,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,1,18,Australia,AU,New South Wales,-31.636124,152.786994,EPSG:4326 +HUMAN_OBSERVATION,OPUR20021302,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-32.73831,152.02759,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-29.487705,153.090947,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,2,18,Australia,AU,New South Wales,-29.482036,153.104176,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,20,Australia,AU,New South Wales,-29.49025,153.108162,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.890884,153.356996,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-31.444323,152.907381,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,2,19,Australia,AU,New South Wales,-33.44778,150.713637,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151Y,1,,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.824828,153.317607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.38953,150.627118,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.438804,150.60332,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.464828,150.522247,EPSG:4326 +HUMAN_OBSERVATION,ODFK24092407,1,FEMALE,occurrenceRemarks withheld,2024,9,29,Australia,AU,New South Wales,-34.028961,150.989988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.435477,150.618485,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.454734,150.519705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,1,Australia,AU,New South Wales,-34.438598,150.615829,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.42848,150.598632,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-31.457717,152.92131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.387155,150.6311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.491341,150.638707,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,24,Australia,AU,New South Wales,-28.878292,153.431428,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OJJS20041402;OJJS20041409;OMFZ23033002,1,,occurrenceRemarks withheld,2023,1,10,Australia,AU,New South Wales,-32.774205,152.085313,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032706,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-33.300997,149.710008,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220M,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-32.737829,152.028949,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-34.095113,150.98716,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-29.479804,153.10423,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,4,4,Australia,AU,New South Wales,-36.599554,149.951303,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,4,13,Australia,AU,New South Wales,-31.468765,152.924902,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012500,1,,occurrenceRemarks withheld,2023,12,20,Australia,AU,New South Wales,-31.192721,152.971625,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,3,25,Australia,AU,New South Wales,-28.868777,153.037045,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418814,150.632763,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-33.717501,150.785175,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.459879,150.51915,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.460477,150.529983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.385159,150.624392,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130E,1,MALE,occurrenceRemarks withheld,2020,7,15,Australia,AU,New South Wales,-31.925266,152.402899,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-31.63077,152.783554,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-33.706009,150.786205,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-34.343302,150.745843,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210T,1,,occurrenceRemarks withheld,2020,12,17,Australia,AU,New South Wales,-32.701772,151.696517,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-29.005137,152.895153,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,12,11,Australia,AU,New South Wales,-34.012784,150.880542,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,25,Australia,AU,New South Wales,-32.705836,152.063585,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,5,23,Australia,AU,New South Wales,-28.8452,153.331636,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.439225,150.619782,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,3,6,Australia,AU,New South Wales,-28.65498,153.434738,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030V,1,,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-31.45852,152.876255,EPSG:4326 +HUMAN_OBSERVATION,BROD-AGIS,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-30.207711,153.139673,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-30.352687,153.10088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.386707,150.625164,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.448773,150.516953,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-31.595265,152.838837,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2024,8,28,Australia,AU,New South Wales,-33.964444,150.965833,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-30.436107,152.976369,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-28.81441,153.314485,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2023,11,29,Australia,AU,New South Wales,-31.43674,152.9054,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.456143,150.657809,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17413,152.90749,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-31.629319,152.786855,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457138,150.528014,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.393037,150.633588,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021507,1,,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-30.887299,153.071793,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,28,Australia,AU,New South Wales,-33.703792,150.78669,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.429778,150.61658,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.383546,150.623948,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070703,1,,occurrenceRemarks withheld,2020,5,10,Australia,AU,New South Wales,-33.52725,150.662866,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,FEMALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-31.45119,152.907639,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.435538,150.61609,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150N,1,FEMALE,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-28.384628,153.549454,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072600;OPJG22072601,1,,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-28.257901,153.40063,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011007,1,,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-28.63703,152.176919,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041307,1,MALE,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-34.083377,150.85134,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102,1,,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-32.469052,151.89786,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2020,7,22,Australia,AU,New South Wales,-32.590716,151.77213,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.872021,153.339182,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-31.26329,152.82929,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.915154,152.797565,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.386597,150.627429,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-28.244216,153.48519,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.949626,153.316981,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.458312,150.659512,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,12,13,Australia,AU,New South Wales,-31.464817,152.921251,EPSG:4326 +HUMAN_OBSERVATION,CHADL,1,,occurrenceRemarks withheld,2020,2,3,Australia,AU,New South Wales,-28.390166,153.547185,EPSG:4326 +HUMAN_OBSERVATION,ODFK23083004,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-29.49087,153.108848,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-31.85809,152.355785,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-29.482022,153.104176,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-34.101425,150.82139,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-28.864616,153.293102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.456594,150.519421,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,MALE,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-36.15513,149.375368,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2022,9,12,Australia,AU,New South Wales,-29.931016,152.233106,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031M,1,FEMALE,occurrenceRemarks withheld,2023,4,29,Australia,AU,New South Wales,-31.459683,152.926877,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-29.662176,152.878801,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-31.45681,152.910583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-34.446106,150.51305,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.396004,150.62898,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-32.70643,152.064359,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.456712,150.519428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.422972,150.606013,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.459926,150.52545,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031548,1,,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-28.818133,153.342293,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-28.815042,153.334878,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004081,1,,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.66949,153.354949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.389845,150.627544,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-29.488784,153.09415,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-31.928326,152.403699,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.191941,152.820235,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.488597,150.637608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.417677,150.603107,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303200A,1,,occurrenceRemarks withheld,2022,11,10,Australia,AU,New South Wales,-32.760544,152.105574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.47099,150.530011,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-32.219628,152.19096,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002557,1,,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-29.096775,153.395162,EPSG:4326 +HUMAN_OBSERVATION,OFAG22112400,1,,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-33.365499,150.813404,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-30.522816,152.901468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.465601,150.521669,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-28.66571,153.52513,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.422844,150.637894,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.285093,152.873672,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.431013,150.614749,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.488056,150.636676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.419967,150.631317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.420974,150.626523,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200R,1,,occurrenceRemarks withheld,2024,3,21,Australia,AU,New South Wales,-31.471534,152.919548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.417639,150.603,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-31.454715,152.926729,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-31.13479,150.04816,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-28.824876,153.318052,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091705,1,,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-31.935307,152.412132,EPSG:4326 +HUMAN_OBSERVATION,OJJS20040702,1,FEMALE,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-29.490044,153.110413,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-33.58539,150.656179,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.444787,150.514677,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.454742,150.520978,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004119,1,MALE,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.662989,153.110857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.434506,150.616315,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-31.44848,152.878917,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-30.32507,153.07978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.438535,150.607038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.395382,150.629932,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,30,Australia,AU,New South Wales,-31.457146,152.926891,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.396287,150.644122,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153C,1,,occurrenceRemarks withheld,2022,12,4,Australia,AU,New South Wales,-28.722016,153.520079,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.485654,150.637833,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.418985,150.609129,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-31.452639,152.92038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-34.439232,150.615952,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,7,22,Australia,AU,New South Wales,-31.552937,152.852629,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,1,12,Australia,AU,New South Wales,-28.930457,153.329859,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-28.977316,153.306378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.426757,150.603642,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.44735,150.51878,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,7,12,Australia,AU,New South Wales,-34.759018,150.161603,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082307,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-30.418651,152.92636,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.437518,150.60574,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-28.679301,153.278134,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303200D,1,,occurrenceRemarks withheld,2022,7,15,Australia,AU,New South Wales,-32.636305,151.625848,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.434424,150.61722,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.652221,152.809253,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-31.637,152.798276,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,2,Australia,AU,New South Wales,-29.480593,153.089499,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.560727,152.209529,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.447652,150.51727,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.430886,150.614666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.462391,150.535445,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-28.930299,153.474745,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.448778,150.515887,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-31.425634,152.879202,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.060984,150.866027,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.206121,150.795584,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,4,21,Australia,AU,New South Wales,-31.326927,152.903765,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100H,1,FEMALE,occurrenceRemarks withheld,2020,3,3,Australia,AU,New South Wales,-32.67,151.726,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.447449,150.517025,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-29.487528,153.091081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.451437,150.616334,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-31.917179,152.378576,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290F,1,FEMALE,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-32.684623,151.696604,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060503,1,,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-28.837037,153.316219,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,6,6,Australia,AU,New South Wales,-32.718543,152.154518,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-29.480794,153.104122,EPSG:4326 +HUMAN_OBSERVATION,OPJG21123101,1,,occurrenceRemarks withheld,2022,3,2,Australia,AU,New South Wales,-32.772258,152.097247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.437657,150.605028,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,23,Australia,AU,New South Wales,-30.627392,152.630315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.456723,150.659382,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032804,1,,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-31.44175,152.842629,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,6,Australia,AU,New South Wales,-31.450891,152.92717,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121102,1,,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-31.454243,152.92468,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.513591,150.52863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.390456,150.626048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.429581,150.598709,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,2,6,Australia,AU,New South Wales,-30.326866,152.985867,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-32.8791,149.80289,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-29.484376,153.10394,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.680336,149.96634,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-31.632016,152.785809,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-29.808932,152.809794,EPSG:4326 +HUMAN_OBSERVATION,OESM20102100,1,,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-33.171243,151.242145,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-28.816492,153.30358,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,7,18,Australia,AU,New South Wales,-28.933563,153.318696,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.386879,150.625213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.388109,150.63191,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-31.46991,150.41131,EPSG:4326 +HUMAN_OBSERVATION,Obs_2411,1,,occurrenceRemarks withheld,2024,4,4,Australia,AU,New South Wales,-36.175635,149.359541,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,1,10,Australia,AU,New South Wales,-28.616529,153.476882,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-31.444767,152.880504,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-28.679345,153.602345,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,25,Australia,AU,New South Wales,-28.732183,153.434038,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-30.455966,152.712126,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,7,5,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,FEMALE,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-28.826058,153.299233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.464328,150.52249,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.438098,150.616517,EPSG:4326 +HUMAN_OBSERVATION,OJJS20080302,1,,occurrenceRemarks withheld,2020,7,17,Australia,AU,New South Wales,-31.463796,152.881952,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-29.485303,153.103975,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403060H,1,,occurrenceRemarks withheld,2024,2,21,Australia,AU,New South Wales,-31.474332,152.909401,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-30.3919,152.93946,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419396,150.635815,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-32.708193,152.066185,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-36.041388,149.361927,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-28.828409,153.374809,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-29.48791,153.091672,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-33.776153,150.063462,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-31.435079,152.910622,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.447455,150.519071,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,6,5,Australia,AU,New South Wales,-31.456783,152.87901,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-29.48559,153.103811,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004149,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-28.389868,153.565066,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-31.286691,152.814708,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.44298,150.518453,EPSG:4326 +HUMAN_OBSERVATION,OJQS16052400,1,,occurrenceRemarks withheld,2020,6,,Australia,AU,New South Wales,-30.48978,151.642244,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.420288,150.627391,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-30.17498,152.91096,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,6,11,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.420197,150.638066,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.438031,150.606617,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100F,1,,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-33.565013,150.671829,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.385447,150.627592,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.91537,152.385326,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-33.27166,150.295045,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-29.490577,153.10821,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131T,1,,occurrenceRemarks withheld,2023,10,16,Australia,AU,New South Wales,-31.472718,152.910422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.423313,150.604992,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.432681,150.607379,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-31.444425,152.926635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.388896,150.626037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.419707,150.611491,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140Q,1,,occurrenceRemarks withheld,2022,1,28,Australia,AU,New South Wales,-28.664007,152.125215,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,25,Australia,AU,New South Wales,-28.24154,153.471848,EPSG:4326 +HUMAN_OBSERVATION,OJJS13032501,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-30.168938,152.474267,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-31.304447,152.865626,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.427293,150.604769,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-31.501305,152.86658,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,5,9,Australia,AU,New South Wales,-32.706888,152.064319,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304170F,1,,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-34.359944,150.54652,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.447144,150.513095,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-31.942142,152.398164,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111502,1,FEMALE,occurrenceRemarks withheld,2022,1,12,Australia,AU,New South Wales,-34.056588,150.836877,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-30.318813,153.108913,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.465869,150.521574,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-31.914308,152.37354,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.427926,150.597951,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-31.192818,152.974022,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-31.450459,152.914785,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-30.87937,152.796194,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200A,1,,occurrenceRemarks withheld,2024,4,2,Australia,AU,New South Wales,-31.431846,152.893876,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-29.114869,153.424775,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-30.345041,152.613391,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-30.193432,152.778176,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.429892,150.607655,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,26,Australia,AU,New South Wales,-33.716597,150.784231,EPSG:4326 +HUMAN_OBSERVATION,ODMP1003011Y,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-31.27024,152.82512,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,10,18,Australia,AU,New South Wales,-31.95843,152.390764,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,12,27,Australia,AU,New South Wales,-32.722541,152.077045,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050O,1,,occurrenceRemarks withheld,2023,2,23,Australia,AU,New South Wales,-28.268359,153.473688,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2023,3,18,Australia,AU,New South Wales,-34.051381,150.850271,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.297286,149.32325,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-29.740284,151.058608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.419126,150.610333,EPSG:4326 +HUMAN_OBSERVATION,ODFK23121104,1,,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-29.670882,152.87591,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.48464,150.634688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.453221,150.522459,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-34.453861,150.606601,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-31.555324,152.851072,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.43584,150.616288,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.420841,150.629888,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-29.667322,152.868705,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-28.926928,153.156475,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-29.774595,151.091178,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,11,Australia,AU,New South Wales,-29.489741,153.105211,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-32.708565,152.064745,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.418328,150.635606,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.441674,150.517196,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;ORSF21090200,1,MALE,occurrenceRemarks withheld,2021,,,Australia,AU,New South Wales,-32.422645,149.81765,EPSG:4326 +HUMAN_OBSERVATION,ODDP13030700,1,,occurrenceRemarks withheld,2022,5,1,Australia,AU,New South Wales,-31.266761,149.179967,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-28.855126,153.39381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-34.450429,150.615492,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-29.63205,152.898132,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.395099,150.641436,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.44384,150.51599,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250D,2,FEMALE,occurrenceRemarks withheld,2024,9,6,Australia,AU,New South Wales,-29.779195,150.979581,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-29.478814,153.10416,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-28.673234,153.489332,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,22,Australia,AU,New South Wales,-29.491529,153.099772,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080903,1,,occurrenceRemarks withheld,2023,2,8,Australia,AU,New South Wales,-28.954711,152.932247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.466206,150.523077,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-34.204511,150.790681,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.465745,150.520315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.448807,150.516844,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.42078,150.609187,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-31.92625,152.353525,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.488626,150.635375,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,29,Australia,AU,New South Wales,-29.490292,153.1102,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-33.430832,150.61642,EPSG:4326 +HUMAN_OBSERVATION,OJJS20080304,1,,occurrenceRemarks withheld,2020,7,24,Australia,AU,New South Wales,-34.053946,150.998276,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-30.053999,152.247202,EPSG:4326 +HUMAN_OBSERVATION,OCHV19051300,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-29.691415,152.866239,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-31.63241,152.776019,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,7,22,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OPUR20021302,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-32.72417,152.01619,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,25,Australia,AU,New South Wales,-31.426452,152.880419,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.459327,150.534643,EPSG:4326 +HUMAN_OBSERVATION,ODFK24030506,1,,occurrenceRemarks withheld,2024,2,14,Australia,AU,New South Wales,-32.724077,152.077182,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-28.651787,153.497224,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.424547,150.604489,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-31.932137,152.412776,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-34.022401,150.875183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.394246,150.642047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,21,Australia,AU,New South Wales,-34.439501,150.617718,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-30.280293,153.054765,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.465402,150.521653,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.432497,150.605328,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-29.054449,152.93218,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,12,19,Australia,AU,New South Wales,-28.388795,153.561867,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.454267,150.607961,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.446187,150.513896,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-31.176198,152.90954,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.386856,150.630564,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,8,12,Australia,AU,New South Wales,-34.469837,150.519563,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-29.476736,153.104535,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.956006,153.428287,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.459972,150.525525,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-29.486346,153.103366,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-28.875296,153.42536,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180H,1,MALE,occurrenceRemarks withheld,2022,9,22,Australia,AU,New South Wales,-28.870616,153.461641,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418983,150.609467,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,26,Australia,AU,New South Wales,-33.715387,150.784944,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,FEMALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-28.94184,153.315369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.426897,150.603878,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,10,Australia,AU,New South Wales,-31.442672,152.898317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.437545,150.607143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.420616,150.630863,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-33.489673,150.67903,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,8,Australia,AU,New South Wales,-33.713322,150.784785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.435184,150.609027,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090504,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-30.326233,151.649794,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418878,150.632816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.459151,150.516156,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.394584,150.642734,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-28.393545,153.541208,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150G,1,MALE,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-35.096731,150.069922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.448825,150.521305,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-33.764062,150.056935,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,4,11,Australia,AU,New South Wales,-31.459818,152.926823,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.458864,152.925573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.437652,150.605671,EPSG:4326 +HUMAN_OBSERVATION,ODMP2302060B,1,MALE,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-34.149808,150.825173,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2023,6,19,Australia,AU,New South Wales,-36.5994,149.954611,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-31.949378,152.369116,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-29.490264,153.110286,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032909,1,,occurrenceRemarks withheld,2024,8,8,Australia,AU,New South Wales,-32.71793,151.721095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.388234,150.630917,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.418832,150.632752,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,3,19,Australia,AU,New South Wales,-31.081243,152.890696,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.44668,150.515993,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.447378,150.513066,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-33.222527,151.024832,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2024,1,17,Australia,AU,New South Wales,-31.93235,152.412602,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436517,150.520722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,11,Australia,AU,New South Wales,-34.438103,150.616778,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.143689,152.822435,EPSG:4326 +HUMAN_OBSERVATION,OPUR18080101,1,MALE,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-28.817282,153.31679,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.452018,150.51738,EPSG:4326 +HUMAN_OBSERVATION,OJJS20051106,1,,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-30.404171,151.699282,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,6,11,Australia,AU,New South Wales,-30.296061,153.098466,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.418167,150.603246,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,11,26,Australia,AU,New South Wales,-31.908858,152.085037,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-30.910992,153.069058,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-31.446178,152.894842,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-29.49004,153.09577,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.420586,150.63069,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.46656,150.521423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.452656,150.523956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.437743,150.603002,EPSG:4326 +HUMAN_OBSERVATION,ODMP07011002,1,,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-31.899816,152.299643,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.421206,150.627332,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-29.478996,153.104192,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-28.819415,153.301696,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,MALE,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-34.014418,150.880149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.438927,150.602663,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-223,1,,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-31.951329,152.439573,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,3,20,Australia,AU,New South Wales,-32.705721,152.063527,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100501,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.54185,152.857251,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.465817,150.521641,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,15,Australia,AU,New South Wales,-29.490222,153.109723,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.451325,150.518336,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,4,Australia,AU,New South Wales,-29.490203,153.110522,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200Q,1,,occurrenceRemarks withheld,2024,4,11,Australia,AU,Queensland,-26.790627,153.08192,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041307,1,MALE,occurrenceRemarks withheld,2021,12,2,Australia,AU,New South Wales,-34.08271,150.841671,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.393649,150.630754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.447149,150.519548,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,18,Australia,AU,New South Wales,-29.484315,153.103988,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.439071,150.523563,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,4,16,Australia,AU,New South Wales,-32.72314,152.079143,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.444995,152.889384,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-31.297769,152.864498,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-30.884135,153.041213,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-29.631951,152.89977,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052001,1,,occurrenceRemarks withheld,2024,7,15,Australia,AU,New South Wales,-31.475419,152.896932,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-31.463907,152.923894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435763,150.521343,EPSG:4326 +HUMAN_OBSERVATION,Obs_2557,1,MALE,occurrenceRemarks withheld,2023,2,15,Australia,AU,New South Wales,-33.541697,150.640056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.42742,150.602981,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-30.500084,152.900594,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.395686,150.626552,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,6,Australia,AU,New South Wales,-29.485552,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.446962,150.520098,EPSG:4326 +HUMAN_OBSERVATION,OJJS1208150Z,1,MALE,occurrenceRemarks withheld,2020,5,20,Australia,AU,New South Wales,-32.560405,151.740463,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,23,Australia,AU,New South Wales,-30.654151,152.644721,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-29.492841,153.109615,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-32.706152,152.063638,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153C,1,FEMALE,occurrenceRemarks withheld,2022,12,4,Australia,AU,New South Wales,-28.722016,153.520079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.420606,150.630798,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-29.005774,152.894307,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.435691,150.607282,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-31.653256,152.819409,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-31.63011,152.784289,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.133033,150.796938,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,21,Australia,AU,New South Wales,-28.625868,153.48166,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-29.490175,153.110517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.463717,150.52389,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.426777,150.601455,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-33.779057,150.10201,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181P,1,,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-28.931139,153.270395,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.423313,150.604992,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.43093,150.609573,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,SCHM-035,1,,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-34.340535,150.224518,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,FEMALE,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-34.53145,150.21501,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,FEMALE,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-29.12052,153.152734,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.584906,153.158949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.450877,150.515781,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.106034,150.957161,EPSG:4326 +HUMAN_OBSERVATION,OSYK02050800,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-28.25447,152.50221,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-34.52938,150.483836,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060U,1,,occurrenceRemarks withheld,2022,12,10,Australia,AU,New South Wales,-31.47462,152.89746,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2020,6,27,Australia,AU,New South Wales,-33.491237,149.552103,EPSG:4326 +HUMAN_OBSERVATION,OJJS19090309,1,,occurrenceRemarks withheld,2020,1,23,Australia,AU,New South Wales,-32.710867,152.065776,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,3,30,Australia,AU,New South Wales,-32.529237,151.887282,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.970096,153.433693,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181I,1,MALE,occurrenceRemarks withheld,2022,7,15,Australia,AU,New South Wales,-28.625631,153.010179,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.386205,150.62582,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.432342,150.612133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.429501,150.614401,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,4,15,Australia,AU,New South Wales,-28.72669,153.522745,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041400,1,,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-28.87101,153.26621,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-29.490511,153.109385,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.42393,150.637156,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-30.323015,153.101015,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436063,150.615737,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-29.490614,153.109358,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.421813,150.636302,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,8,4,Australia,AU,New South Wales,-32.727892,152.084414,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.453507,150.524997,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-28.647381,153.550749,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.435532,150.615328,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-32.710983,152.065383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.465678,150.521895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.469408,150.52714,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062802,1,,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-33.137308,151.224001,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072601;ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,5,Australia,AU,New South Wales,-28.259876,153.400804,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-36.185399,149.341081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.435222,150.616534,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.436538,150.607759,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,5,2,Australia,AU,New South Wales,-34.122257,150.813056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-34.444676,150.514115,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.471466,150.5304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.491784,150.639249,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OJJS20041402;OJJS20041409;OMFZ23033002,1,,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-32.405683,151.7355,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102208,1,,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-32.727802,152.036232,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.872021,153.339182,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-30.204467,152.83173,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,7,Australia,AU,New South Wales,-29.483325,153.095164,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.420581,150.637424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.454593,150.607146,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,,occurrenceRemarks withheld,2023,7,26,Australia,AU,New South Wales,-31.924229,152.36208,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.957973,153.433991,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.490954,150.638249,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.066879,150.880417,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-33.14282,150.686923,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,10,1,Australia,AU,New South Wales,-29.505205,152.824663,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,5,19,Australia,AU,New South Wales,-28.830677,153.224597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.458544,150.664088,EPSG:4326 +HUMAN_OBSERVATION,OPUR18082000,1,,occurrenceRemarks withheld,2020,2,,Australia,AU,New South Wales,-32.311041,152.481865,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,7,8,Australia,AU,New South Wales,-31.449124,152.916788,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-32.706381,152.063414,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.206671,152.731567,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004053,1,,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-28.889404,153.229111,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.564757,150.015337,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-31.443649,152.884757,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.296628,149.323764,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.393439,150.641352,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.465105,150.520769,EPSG:4326 +HUMAN_OBSERVATION,SCHM-035,1,,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-34.349138,150.738381,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-33.705596,150.785389,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.433773,150.61713,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.632151,149.941399,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-31.27014,152.82517,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.453948,150.516985,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-31.27014,152.82517,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-29.049404,152.934971,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062801,1,,occurrenceRemarks withheld,2024,1,20,Australia,AU,New South Wales,-31.207704,152.964486,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-31.190524,152.970853,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.441533,150.517375,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23040517,1,,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-33.459323,150.827612,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-31.442819,152.900937,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140R,1,FEMALE,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-28.813771,153.334647,EPSG:4326 +HUMAN_OBSERVATION,OJJS19043000;ODMP22022701,1,,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-33.970174,150.915959,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-30.889174,153.05434,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-29.055661,153.30654,EPSG:4326 +HUMAN_OBSERVATION,OJQS16052400,1,,occurrenceRemarks withheld,2020,9,,Australia,AU,New South Wales,-30.534748,151.696174,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-28.8883,153.22771,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,26,Australia,AU,New South Wales,-31.465447,152.91062,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2021,1,18,Australia,AU,New South Wales,-30.35799,153.0571,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-29.477702,153.104374,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,19,Australia,AU,New South Wales,-29.484147,153.10416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.428585,150.600282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.485262,150.637136,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.680336,149.96634,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-35.942751,149.282607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.447542,150.516293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.4912,150.638885,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.397576,150.640355,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,3,29,Australia,AU,New South Wales,-33.772617,150.0592,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.443211,150.518293,EPSG:4326 +HUMAN_OBSERVATION,ODMP21070804,1,,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-34.11331,150.934924,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140E,1,,occurrenceRemarks withheld,2024,4,3,Australia,AU,New South Wales,-31.252539,152.961324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435398,150.602906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.388194,150.631679,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.431084,150.613725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.488516,150.6376,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.872021,153.339182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.446354,150.514141,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-28.812146,153.298042,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-28.5926,152.32289,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-28.386672,153.561629,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.437535,150.604771,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.388144,150.624438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.39804,150.621961,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-32.049839,151.632887,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100L,1,,occurrenceRemarks withheld,2024,5,26,Australia,AU,New South Wales,-31.946897,152.406347,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102203,1,,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-32.728444,152.10131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.3881,150.632389,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-31.883018,152.385302,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.43647,150.615323,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,7,Australia,AU,New South Wales,-31.448084,152.90199,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-31.918902,152.37806,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.454972,150.514103,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.953149,153.369052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.488677,150.634296,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-29.482993,153.10446,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-30.56221,152.90244,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OPUR20021302,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-32.7357,152.0415,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,6,Australia,AU,New South Wales,-28.29284,153.243706,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,17,Australia,AU,New South Wales,-31.353062,152.710031,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-31.467176,152.909817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.446564,150.518281,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-30.505388,152.909916,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2024,3,7,Australia,AU,New South Wales,-31.919584,152.379581,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.457416,150.659319,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,3,Australia,AU,New South Wales,-29.367253,153.106719,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-29.03875,153.400651,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.19165,152.029276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.447238,150.51639,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-29.490152,153.110522,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,7,Australia,AU,New South Wales,-29.490217,153.108178,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.438283,150.610288,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.459827,150.525453,EPSG:4326 +HUMAN_OBSERVATION,ODFK24030500,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-32.740464,152.172488,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080307,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-33.5028,149.346884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.43259,150.613323,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.43895,150.604328,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.452213,150.523011,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.454105,150.520692,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-33.706123,150.786219,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.422744,150.604932,EPSG:4326 +HUMAN_OBSERVATION,OAQE22092105,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-35.148653,150.041621,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-28.38924,153.561513,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.465232,150.524814,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004155,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.623455,153.427458,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.392799,150.639511,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150I,1,,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-31.457285,152.884453,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-28.489589,152.406634,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-29.48777,153.091414,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.389617,150.628812,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.465849,150.522369,EPSG:4326 +HUMAN_OBSERVATION,OLHP24051305,1,,occurrenceRemarks withheld,2024,4,3,Australia,AU,New South Wales,-29.779021,150.979244,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,8,20,Australia,AU,New South Wales,-31.459862,152.922394,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-34.21635,150.79185,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-28.689364,153.607914,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.902069,152.855376,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.384024,150.622608,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,8,30,Australia,AU,New South Wales,-31.447411,152.925587,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.522625,152.875766,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-28.818638,153.367603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.394528,150.642659,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,2,3,Australia,AU,New South Wales,-30.27934,153.053502,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004109,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.826361,153.281384,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270U,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-31.165052,152.881469,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-29.136396,152.940819,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.466523,150.526615,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-30.225566,152.782717,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,23,Australia,AU,New South Wales,-32.413347,151.985514,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W;ODMP22022521,1,,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-32.739099,152.059278,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070J,1,,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-34.01043,150.886004,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060502,1,,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-30.223309,153.137472,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-28.535507,153.16197,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-29.490096,153.107405,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.385806,150.6252,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,14,Australia,AU,New South Wales,-29.484819,153.103854,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-31.459097,152.928743,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150G,1,FEMALE,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-35.047975,150.109142,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.10918,150.81996,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2024,1,14,Australia,AU,New South Wales,-29.729673,151.084565,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-34.028811,150.989044,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;ODMP2212210P;ODMP2212210Q;OLHP2311100C,1,,occurrenceRemarks withheld,2022,5,28,Australia,AU,New South Wales,-30.095391,152.156818,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-28.589585,153.139413,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,3,5,Australia,AU,New South Wales,-34.093843,150.983866,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,1,24,Australia,AU,New South Wales,-28.640611,153.274462,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031409,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-28.817853,153.347296,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.398552,153.556406,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-30.210364,152.749627,EPSG:4326 +HUMAN_OBSERVATION,ODMP09041409,1,,occurrenceRemarks withheld,2022,1,26,Australia,AU,New South Wales,-32.313717,151.951946,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.437702,150.605027,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.467583,150.528272,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,4,15,Australia,AU,New South Wales,-34.042123,150.999302,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,9,15,Australia,AU,New South Wales,-31.650563,152.818975,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.449012,150.608013,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.284254,152.865132,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.557254,150.016582,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,3,15,Australia,AU,New South Wales,-32.054737,151.961014,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.494222,150.640368,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-31.169097,152.805614,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.439069,150.450525,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-31.464391,152.870462,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.463745,150.523944,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402130D,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,Victoria,-37.496627,144.582084,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.399193,150.63957,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,12,30,Australia,AU,New South Wales,-34.068105,150.807228,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-31.447377,152.909438,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,1,5,Australia,AU,New South Wales,-30.50456,152.92022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.393134,150.6447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.455237,150.519624,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-34.021161,150.985078,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-29.490259,153.108199,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-29.485482,153.103554,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.864674,153.293107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.389766,150.628112,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,3,3,Australia,AU,New South Wales,-34.096709,150.98767,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,2,6,Australia,AU,New South Wales,-31.443058,152.8933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.385414,150.624526,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,2,1,Australia,AU,New South Wales,-30.40529,152.93786,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,14,Australia,AU,New South Wales,-33.717297,150.785186,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.44031,150.51752,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,25,Australia,AU,New South Wales,-31.13994,152.810398,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.420746,150.609264,EPSG:4326 +HUMAN_OBSERVATION,OJQS16052400,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-30.515005,151.662782,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-32.02353,152.19565,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-34.440361,150.516484,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.465647,150.521276,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-32.770718,152.113549,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-29.490404,153.109503,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,3,27,Australia,AU,New South Wales,-28.817881,153.314475,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-28.822295,153.3114,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.44593,150.514143,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-30.505165,152.924222,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080308,1,,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-31.604609,152.805362,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-33.716439,150.784983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.451338,150.609415,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-28.959978,153.395153,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-33.197974,151.038719,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.418138,150.633228,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-31.453554,152.925728,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-31.419429,152.747238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.387734,150.626048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.393403,150.643246,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-34.189691,150.723282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.387572,150.631208,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-33.45288,150.717277,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.418288,150.632626,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020I,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-32.713171,152.065459,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.462975,150.533589,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-29.490423,153.108167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.432848,150.609921,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,Queensland,-28.336934,152.700219,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-34.447867,150.514096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.434634,150.608107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.388758,150.630511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.43528,150.616717,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-31.639259,152.793505,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-34.024959,150.908104,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2022,5,10,Australia,AU,New South Wales,-34.104545,150.809328,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012912,1,,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-31.225805,152.906953,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-31.42924,152.882699,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100I,1,,occurrenceRemarks withheld,2023,11,29,Australia,AU,New South Wales,-31.453935,152.875707,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308251K,1,FEMALE,occurrenceRemarks withheld,2020,2,13,Australia,AU,New South Wales,-32.663273,152.175164,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012900,1,,occurrenceRemarks withheld,2023,12,25,Australia,AU,New South Wales,-32.302744,152.336317,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091804,1,,occurrenceRemarks withheld,2024,7,2,Australia,AU,New South Wales,-32.722866,152.079401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.393405,150.6438,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101U,1,,occurrenceRemarks withheld,2023,12,15,Australia,AU,New South Wales,-31.440522,152.924589,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.43592,150.615763,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,4,26,Australia,AU,New South Wales,-28.660915,153.607758,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-30.374914,153.017126,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,14,Australia,AU,New South Wales,-29.490259,153.108194,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-29.484665,153.103854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.43858,150.607059,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,11,Australia,AU,New South Wales,-29.02619,153.284708,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-29.490469,153.109299,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.432589,150.615107,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160J,1,,occurrenceRemarks withheld,2023,2,1,Australia,AU,New South Wales,-32.733421,152.1024,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,1,24,Australia,AU,New South Wales,-31.485855,152.916192,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.444729,150.514483,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.889215,153.229565,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-30.119255,152.138925,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.458451,150.518539,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,2,,occurrenceRemarks withheld,2023,12,11,Australia,AU,New South Wales,-28.974427,153.428671,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.436218,150.604308,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031807,1,,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.858113,153.137379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.459036,150.659154,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-29.080189,153.362835,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.39684,150.641942,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.439554,150.603864,EPSG:4326 +HUMAN_OBSERVATION,OJJS15061602,1,,occurrenceRemarks withheld,2020,6,28,Australia,AU,New South Wales,-29.488544,153.1019,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-36.531199,149.975174,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.465801,150.520444,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-31.43014,152.105398,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866277,153.367822,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.084978,150.9783,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-30.332293,152.620848,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-32.731136,152.083663,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.557254,150.016582,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153A,1,,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-28.887405,153.302446,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-31.126833,152.793929,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-30.35819,153.05718,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,10,Australia,AU,New South Wales,-28.655528,153.355464,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030H,1,,occurrenceRemarks withheld,2022,6,5,Australia,AU,New South Wales,-34.329175,150.745287,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-29.486911,153.103184,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-31.429138,152.891913,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,18,Australia,AU,New South Wales,-33.473775,150.796982,EPSG:4326 +HUMAN_OBSERVATION,ODFK24082207,1,,occurrenceRemarks withheld,2024,7,26,Australia,AU,New South Wales,-32.03718,152.194346,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300G,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-32.488271,151.784679,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-31.467655,152.905478,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.384212,150.623418,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.452044,150.517335,EPSG:4326 +HUMAN_OBSERVATION,OPRS04081700;OPJGI0001688,1,,occurrenceRemarks withheld,2023,1,24,Australia,AU,New South Wales,-29.38182,153.095837,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.420644,150.630873,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.389915,150.630696,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.464383,150.522075,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031102,1,,occurrenceRemarks withheld,2024,3,1,Australia,AU,New South Wales,-32.70652,152.064607,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070P,1,,occurrenceRemarks withheld,2020,12,28,Australia,AU,New South Wales,-34.755701,146.57015,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-31.45948,152.927599,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-29.862543,152.191408,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-33.678452,149.467794,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.388741,150.623616,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457942,150.531223,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-31.463925,152.924781,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-31.465698,152.856079,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111322,1,FEMALE,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-31.43684,152.905367,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.464208,150.528567,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-31.467923,152.916219,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.421416,150.603893,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-32.737661,152.057893,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022415,1,,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-32.747766,151.883896,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100Y,1,FEMALE,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-31.453816,152.919013,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,25,Australia,AU,New South Wales,-35.062511,150.119215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.454091,150.520474,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-30.8961,153.036423,EPSG:4326 +HUMAN_OBSERVATION,Obs_2872,1,,occurrenceRemarks withheld,2021,3,,Australia,AU,New South Wales,-33.10191,151.2467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-34.446013,150.513792,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-33.419281,149.577506,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-28.908353,153.303922,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,21,Australia,AU,New South Wales,-32.897817,151.738163,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-28.819449,153.302428,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2024,1,14,Australia,AU,New South Wales,-31.636955,152.798319,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-29.49017,153.10968,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,9,4,Australia,AU,New South Wales,-32.733877,152.007806,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.44728,150.513134,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.451444,150.518387,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004064,1,,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-28.2538,153.377137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.494238,150.640705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.421847,150.636235,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.455237,150.519624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.393399,150.639722,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-31.932197,152.412515,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,19,Australia,AU,New South Wales,-29.485578,153.103752,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866277,153.367822,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-29.487974,153.091916,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-28.604299,153.325993,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.421233,150.627353,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.421177,150.6263,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.078232,150.839671,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.466846,150.521284,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.399174,150.63956,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,4,Australia,AU,New South Wales,-28.735117,153.416729,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.452,150.51738,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-28.826154,153.28111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.447097,150.51302,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.443448,152.898222,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.437605,150.605617,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-31.447942,152.891412,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,2,8,Australia,AU,New South Wales,-31.92602,152.212482,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,3,21,Australia,AU,New South Wales,-31.443058,152.8933,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,1,8,Australia,AU,New South Wales,-32.74141,152.00098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.466409,150.521046,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-31.676328,152.802775,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.450023,150.606721,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.466251,150.523924,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.420074,150.603485,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.386745,150.62712,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.456144,150.518117,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.446326,150.513642,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062901,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-33.085576,151.120388,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-33.714767,150.785566,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-28.643867,153.623961,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,MALE,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-28.982816,153.415946,EPSG:4326 +HUMAN_OBSERVATION,OJBL99022300,1,MALE,occurrenceRemarks withheld,2024,8,1,Australia,AU,New South Wales,-32.323583,151.833508,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.393287,150.640965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.38784,150.631548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.465825,150.521608,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150J,1,,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-33.501001,149.391328,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-28.440333,152.884465,EPSG:4326 +HUMAN_OBSERVATION,OJJS1802200K,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-28.727556,153.423562,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,1,16,Australia,AU,New South Wales,-32.032221,152.488711,EPSG:4326 +HUMAN_OBSERVATION,OGEM18052300,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.139848,150.79567,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-33.705697,150.785297,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-32.722654,152.076629,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,1,25,Australia,AU,New South Wales,-28.646734,153.453198,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.399565,150.624822,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-31.465972,152.865331,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-28.680184,153.602885,EPSG:4326 +HUMAN_OBSERVATION,ODMP21060800,1,FEMALE,occurrenceRemarks withheld,2022,2,9,Australia,AU,New South Wales,-29.733729,152.92489,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153V,1,,occurrenceRemarks withheld,2022,9,3,Australia,AU,New South Wales,-28.814127,153.337868,EPSG:4326 +HUMAN_OBSERVATION,OKEM18092400,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-34.240851,150.693914,EPSG:4326 +HUMAN_OBSERVATION,ODMP22100603,1,,occurrenceRemarks withheld,2022,9,2,Australia,AU,New South Wales,-28.972103,153.290107,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-28.894918,153.325686,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,16,Australia,AU,New South Wales,-28.998449,153.394017,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-29.490072,153.101161,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-34.437937,150.616109,EPSG:4326 +HUMAN_OBSERVATION,OESM20102100,1,,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-33.161187,151.233191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,3,Australia,AU,New South Wales,-34.43969,150.613567,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-31.491273,152.90348,EPSG:4326 +HUMAN_OBSERVATION,OSYF17103100,1,,occurrenceRemarks withheld,2021,1,30,Australia,AU,New South Wales,-32.721615,150.713472,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,MALE,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-32.770144,152.115386,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.652997,152.810627,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.433586,150.613969,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-33.749522,150.114595,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.466571,150.522826,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,FEMALE,occurrenceRemarks withheld,2022,10,13,Australia,AU,New South Wales,-30.318214,153.093984,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.463743,150.523879,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300Y,1,,occurrenceRemarks withheld,2023,8,7,Australia,AU,New South Wales,-32.727173,152.009829,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-30.1757,152.91001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.402117,150.638335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.418476,150.633458,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,7,10,Australia,AU,New South Wales,-31.458194,152.920536,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,4,8,Australia,AU,New South Wales,-31.19265,150.01137,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.652531,152.808051,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-29.490007,153.10122,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300C,1,,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-32.721606,152.081165,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,5,Australia,AU,New South Wales,-28.864021,153.29238,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180D,1,FEMALE,occurrenceRemarks withheld,2022,10,28,Australia,AU,New South Wales,-28.864601,153.293151,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.418235,150.597554,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002739,1,,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-29.490082,153.110513,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-29.485678,153.103463,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,MALE,occurrenceRemarks withheld,2023,5,6,Australia,AU,New South Wales,-28.960502,153.394509,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,3,Australia,AU,New South Wales,-28.768431,153.49754,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-29.487981,153.091806,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-31.455951,152.898604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.420643,150.63083,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-28.647443,153.47285,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210W,1,,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-32.643567,151.628085,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.488216,150.637009,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,28,Australia,AU,New South Wales,-33.714843,150.785838,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-32.926388,151.778772,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.388897,150.624221,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-28.82245,153.316265,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-29.491711,153.097288,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.39509,150.640469,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.426383,150.604306,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,MALE,occurrenceRemarks withheld,2022,7,11,Australia,AU,New South Wales,-34.74523,146.535179,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,14,Australia,AU,New South Wales,-32.710683,152.072098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.400307,150.639833,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.418306,150.632614,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-30.503138,152.9065,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,23,Australia,AU,New South Wales,-28.874085,153.274837,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,27,Australia,AU,New South Wales,-35.078534,150.124272,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,4,20,Australia,AU,New South Wales,-31.299177,152.8666,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004177,1,FEMALE,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-28.345835,153.54091,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,23,Australia,AU,New South Wales,-29.490199,153.11049,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-32.730846,152.170903,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.464862,150.522583,EPSG:4326 +HUMAN_OBSERVATION,ODMP08112100,1,,occurrenceRemarks withheld,2023,4,26,Australia,AU,New South Wales,-28.574595,153.157949,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.818579,153.296004,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,12,25,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.429287,150.614515,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.426021,150.595536,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-31.152305,152.79675,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031804,1,,occurrenceRemarks withheld,2022,7,18,Australia,AU,New South Wales,-28.446872,153.052792,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,4,12,Australia,AU,New South Wales,-32.70632,152.063349,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.451991,150.517381,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,12,Australia,AU,New South Wales,-29.490222,153.108146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.447259,150.516966,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-29.477502,153.104187,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-33.710151,150.785371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.39576,150.646725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.455333,150.519469,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.432065,150.615525,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-28.259715,153.397897,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-30.362586,153.104227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.419941,150.63791,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-30.32338,153.10297,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-32.706122,152.063684,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-34.39896,150.642959,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130S,1,FEMALE,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-31.444928,152.912534,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,9,4,Australia,AU,New South Wales,-34.017953,150.884823,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.452898,150.519857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.422053,150.6079,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,6,5,Australia,AU,New South Wales,-31.45491,152.89309,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083000,1,,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-33.520759,150.655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.459897,150.519116,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,2,Australia,AU,New South Wales,-29.487649,153.091242,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,26,Australia,AU,New South Wales,-29.490488,153.109449,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-29.490236,153.108205,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210S,1,,occurrenceRemarks withheld,2020,12,25,Australia,AU,New South Wales,-32.696461,151.695225,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.388849,150.62407,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-31.629178,152.786722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.460813,150.520733,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.455483,150.60884,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041P,1,FEMALE,occurrenceRemarks withheld,2023,1,2,Australia,AU,New South Wales,-32.54383,151.43339,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2020,12,24,Australia,AU,New South Wales,-31.932131,152.412719,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.450938,150.514386,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-29.489548,153.10416,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,17,Australia,AU,New South Wales,-28.885381,153.22254,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-31.463343,152.921425,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042K,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-32.564169,149.660965,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-31.927966,152.403573,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,3,Australia,AU,New South Wales,-31.453845,152.87764,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.399702,150.624894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.395319,150.630391,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,30,Australia,AU,New South Wales,-28.825104,153.28464,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-29.485538,153.103747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.434442,150.616273,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-29.485538,153.103913,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,25,Australia,AU,New South Wales,-33.775084,150.057972,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-30.296694,152.918687,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-28.586098,153.554438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436318,150.61585,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.399758,150.617573,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-33.709599,150.786067,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.39784,150.647048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-34.439099,150.616522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435678,150.602963,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.392367,150.633487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.447056,150.515883,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-33.776903,150.101252,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-31.474811,152.89714,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-28.231176,153.528278,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-31.443637,152.899467,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,5,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-31.438393,152.91782,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.41909,150.610334,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-28.993352,153.437732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.435986,150.520357,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001217,1,,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-28.541139,153.06119,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-29.480084,153.104267,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2022,4,24,Australia,AU,New South Wales,-31.926101,152.377799,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403060K,1,,occurrenceRemarks withheld,2024,2,8,Australia,AU,New South Wales,-31.450315,152.751422,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303280D,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-31.42985,152.815095,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.810297,152.823969,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-29.507987,152.825076,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435778,150.52119,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100407,1,,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-34.045544,151.010546,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.456144,152.904095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.419718,150.637557,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.394074,150.630839,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2022,8,20,Australia,AU,New South Wales,-31.476768,152.913618,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-28.330657,153.561808,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,1,21,Australia,AU,New South Wales,-34.202172,150.788792,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-32.699547,152.064574,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150U,1,MALE,occurrenceRemarks withheld,2022,8,18,Australia,AU,New South Wales,-28.693467,153.496849,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,8,Australia,AU,New South Wales,-31.470118,152.918504,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.447403,150.518768,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-31.53933,152.782929,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-28.622261,153.002877,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.490652,150.638519,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-30.32307,153.1033,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-31.707901,152.641843,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.420624,150.630787,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091904,1,,occurrenceRemarks withheld,2024,8,29,Australia,AU,New South Wales,-31.845958,152.079896,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,9,Australia,AU,New South Wales,-28.69241,153.510553,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040426,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-31.869627,152.692046,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002776,1,MALE,occurrenceRemarks withheld,2022,10,13,Australia,AU,New South Wales,-29.698519,152.920514,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,17,Australia,AU,New South Wales,-31.471944,152.868199,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003945,1,,occurrenceRemarks withheld,2023,4,5,Australia,AU,New South Wales,-28.398963,153.555979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.449874,150.516583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.464195,150.522124,EPSG:4326 +HUMAN_OBSERVATION,OPJG23060600,1,,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-30.432207,152.982849,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.459264,150.530607,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-28.69445,153.495167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.465719,150.521284,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,8,15,Australia,AU,New South Wales,-29.911288,152.172614,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052709,1,,occurrenceRemarks withheld,2024,5,23,Australia,AU,New South Wales,-32.71063,152.071535,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132H,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-30.46734,152.894649,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.427468,150.603557,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080904,1,MALE,occurrenceRemarks withheld,2020,8,11,Australia,AU,New South Wales,-31.474405,152.929137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.387812,150.631484,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.44716,150.513018,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.391492,150.645137,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-31.454746,152.926634,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-28.89079,153.308213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.459917,150.525483,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-31.443198,152.911566,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.463703,150.524098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.446067,150.513791,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,5,4,Australia,AU,New South Wales,-34.0247,150.981507,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-31.305577,152.819927,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-29.489662,153.101317,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-32.73255,152.013478,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-28.716257,153.599207,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011200,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.953816,152.186911,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2020,12,12,Australia,AU,New South Wales,-32.72246,152.077637,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-30.251232,152.790539,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101304,1,,occurrenceRemarks withheld,2022,4,14,Australia,AU,New South Wales,-30.3065,153.100184,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,18,Australia,AU,New South Wales,-33.708828,150.785872,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.185283,153.00569,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.446822,150.5128,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102217,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-32.600859,151.617112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.385667,150.626857,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-30.379586,153.033221,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100310,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-30.263392,153.112725,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152N,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-28.35734,153.4261,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-28.983835,153.295453,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.422708,150.636918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.423771,150.637334,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,9,18,Australia,AU,New South Wales,-28.398817,153.555987,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-34.098074,150.808356,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.467613,150.520858,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.294306,149.324831,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303280D,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-31.42801,152.81527,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,7,29,Australia,AU,New South Wales,-32.722468,152.077211,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-29.709626,152.935139,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-29.485599,153.103468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.401626,150.645582,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.386185,150.624287,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-32.764542,152.116346,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.813401,152.823694,EPSG:4326 +HUMAN_OBSERVATION,OPUR16101700,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-32.387432,152.242595,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,10,21,Australia,AU,New South Wales,-34.085671,150.975455,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.418805,150.609156,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083000,1,MALE,occurrenceRemarks withheld,2020,9,,Australia,AU,New South Wales,-33.53116,150.653641,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004211,1,FEMALE,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-28.820797,153.303853,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070P,1,,occurrenceRemarks withheld,2020,12,21,Australia,AU,New South Wales,-34.769461,146.588099,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,30,Australia,AU,New South Wales,-30.646868,152.984371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.492831,150.6402,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,7,22,Australia,AU,New South Wales,-31.461866,152.895568,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.423779,150.63728,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221A,1,,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-32.719816,152.075352,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-33.719256,150.78494,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070601,1,,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.355784,150.684569,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-29.490726,153.10813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.450024,150.516416,EPSG:4326 +HUMAN_OBSERVATION,OPUR23081702;ODFK2310250A,1,,occurrenceRemarks withheld,2023,8,,Australia,AU,New South Wales,-29.195909,153.127304,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,8,Australia,AU,New South Wales,-29.490213,153.108221,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-28.581914,153.132682,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,6,13,Australia,AU,New South Wales,-29.03767,153.399764,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,FEMALE,occurrenceRemarks withheld,2022,8,12,Australia,AU,New South Wales,-31.439395,152.904691,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-34.123039,150.972884,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,FEMALE,occurrenceRemarks withheld,2023,1,26,Australia,AU,New South Wales,-28.82525,153.300294,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-31.07321,150.16432,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150V,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-28.788298,153.500772,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-32.74408,152.08747,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-34.105555,150.957118,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,4,19,Australia,AU,New South Wales,-36.567944,149.950099,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.424822,150.60472,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.422431,150.637024,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.458311,150.662766,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.431403,150.604696,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.427358,150.602994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.410584,150.594499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-34.440306,150.615998,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OSHD13030401,1,,occurrenceRemarks withheld,2023,4,13,Australia,AU,New South Wales,-32.738832,151.855044,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.431399,150.615108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.423762,150.637324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.454117,150.520419,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.420666,150.630144,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-28.809978,153.510401,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.830312,153.329229,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.435144,150.608854,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-29.485057,153.103849,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.420657,150.630633,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.557254,150.016582,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.466252,150.524425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.488316,150.637028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.493223,150.639067,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,MALE,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-34.112369,150.801671,EPSG:4326 +HUMAN_OBSERVATION,OGRJ01031200,1,MALE,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-32.140794,152.313744,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-31.124684,152.798999,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.461212,150.519535,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,28,Australia,AU,New South Wales,-29.479603,153.104224,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,6,26,Australia,AU,New South Wales,-31.482664,152.915663,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-28.676823,153.280525,EPSG:4326 +HUMAN_OBSERVATION,ODMP10100606,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-32.213007,152.323041,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,29,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,Obs_0292,1,MALE,occurrenceRemarks withheld,2023,12,29,Australia,AU,New South Wales,-32.400924,151.987275,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.457987,150.613362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.465846,150.522641,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.465711,150.520414,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,20,Australia,AU,New South Wales,-29.640871,152.83066,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-30.221828,152.725457,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-31.87703,152.327772,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002770,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-30.081071,152.633936,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300A,1,,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-32.728703,152.1067,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.435902,150.615785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.457684,150.606611,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-31.415267,152.132313,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.454462,150.606899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.459465,150.523635,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-30.469192,152.661937,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-880,1,,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-30.009664,151.295088,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-32.213007,152.323041,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004011,1,,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.37442,153.560832,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-31.474927,152.897126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.466526,150.527726,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.453876,150.524508,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.487661,150.634891,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,4,4,Australia,AU,New South Wales,-36.599554,149.951303,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-31.45439,152.902607,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,12,22,Australia,AU,New South Wales,-31.420297,152.208012,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.557254,150.016582,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,5,25,Australia,AU,New South Wales,-31.710087,152.163099,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-31.459104,152.926157,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-28.999361,152.059198,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.915154,152.797565,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,,occurrenceRemarks withheld,2020,1,23,Australia,AU,New South Wales,-36.164086,149.421412,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.439408,150.618961,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,23,Australia,AU,New South Wales,-28.969541,153.432335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.393116,150.645157,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-28.687002,153.600953,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-31.470168,152.918407,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418963,150.609402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.4375,150.605773,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-29.312999,152.885439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.447525,150.517208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.452099,150.517366,EPSG:4326 +HUMAN_OBSERVATION,OLHP24051301,1,,occurrenceRemarks withheld,2024,4,24,Australia,AU,New South Wales,-30.29436,153.124177,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-33.706328,150.786378,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2024,9,20,Australia,AU,New South Wales,-34.117278,150.797056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.452078,150.517215,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150U,1,,occurrenceRemarks withheld,2022,10,12,Australia,AU,New South Wales,-28.68424,153.526866,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,1,Australia,AU,New South Wales,-29.48707,153.111037,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130E,1,,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-31.925334,152.402887,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.388226,150.630993,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181W,1,,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-29.016172,153.43077,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210X,1,,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-32.708155,152.067434,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180L,1,MALE,occurrenceRemarks withheld,2022,10,14,Australia,AU,New South Wales,-28.677275,153.492705,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003897,1,,occurrenceRemarks withheld,2023,6,19,Australia,AU,New South Wales,-28.830086,153.207817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.398619,150.616485,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-29.489549,153.103983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.466778,150.521057,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-32.710545,152.068252,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-29.487588,153.090781,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-29.490591,153.108162,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004122,1,,occurrenceRemarks withheld,2023,8,28,Australia,AU,New South Wales,-28.998903,153.289497,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.427158,150.604795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418826,150.632894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.446381,150.517242,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111308,1,,occurrenceRemarks withheld,2024,1,14,Australia,AU,New South Wales,-31.474953,152.921646,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-31.634861,152.786427,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,MALE,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.876729,152.385763,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121501,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.426658,150.534404,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.418247,150.633758,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190M,1,,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-34.052919,150.849072,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,4,30,Australia,AU,New South Wales,-31.828573,152.617483,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.437732,150.605168,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.418258,150.631974,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-31.918732,152.379287,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.224807,151.725171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.420021,150.631315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.428623,150.601772,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-33.70573,150.785225,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-31.920978,152.380233,EPSG:4326 +HUMAN_OBSERVATION,BREHS-HO,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-33.365499,150.813393,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.437905,150.604325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.488657,150.634188,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-31.203574,152.39132,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.420711,150.629685,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.435982,150.615751,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,2,6,Australia,AU,New South Wales,-30.326332,152.98601,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.447472,150.51857,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-29.00401,153.29749,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418769,150.609146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.392745,150.639501,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-29.862543,152.191408,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.455283,150.519656,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-31.436032,152.897998,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.465717,150.521611,EPSG:4326 +HUMAN_OBSERVATION,SCHM-035,1,,occurrenceRemarks withheld,2023,6,12,Australia,AU,New South Wales,-34.263818,150.23013,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO;OJJS20110901,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-30.666958,152.955146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418552,150.609577,EPSG:4326 +HUMAN_OBSERVATION,OKEM14042900,1,,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-34.100528,150.823257,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052015,1,,occurrenceRemarks withheld,2024,4,1,Australia,AU,New South Wales,-32.716024,152.161312,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-30.417681,153.010861,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,25,Australia,AU,New South Wales,-33.71321,150.786153,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-29.692524,152.851464,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-30.422885,153.011912,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.420406,150.627942,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.514707,149.962048,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091904,1,,occurrenceRemarks withheld,2024,8,28,Australia,AU,New South Wales,-32.405773,152.281171,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,1,18,Australia,AU,New South Wales,-29.505452,152.824518,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.435403,150.615158,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-30.420393,152.979071,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.395282,150.64204,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,FEMALE,occurrenceRemarks withheld,2022,6,3,Australia,AU,New South Wales,-31.442765,152.900998,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100G,2,,occurrenceRemarks withheld,2024,9,12,Australia,AU,New South Wales,-31.184721,152.967148,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,7,Australia,AU,New South Wales,-28.400371,153.5569,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081304;ODMP21081305,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-34.196299,150.781736,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-31.214814,152.9249,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-31.458791,152.919045,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072600;OPJG22072601,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-28.257714,153.400596,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.388398,150.631511,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004117,1,FEMALE,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-28.837715,153.322093,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,25,Australia,AU,New South Wales,-28.838594,153.390578,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-28.397528,153.557172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.488047,150.636676,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150O,1,FEMALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.082932,150.998642,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-28.864551,153.29336,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-649;OIXR15021205,1,,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-36.226553,150.01615,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.451567,150.522236,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,3,Australia,AU,New South Wales,-31.438637,152.908308,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419689,150.61147,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.063969,150.883942,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.454314,150.521241,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-29.505434,152.824706,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091000;OJJS20041402,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-31.750441,151.421792,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100519,1,,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-31.933292,152.414856,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-32.220827,152.198292,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-33.717881,150.784669,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-28.560007,153.018706,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-32.666903,152.014607,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-32.220759,152.193373,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.447007,150.518344,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-32.722902,152.152571,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003906,1,,occurrenceRemarks withheld,2023,4,22,Australia,AU,New South Wales,-29.016259,153.428712,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-32.446115,151.774796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.464214,150.522167,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.442907,152.897944,EPSG:4326 +HUMAN_OBSERVATION,CHADL,1,,occurrenceRemarks withheld,2020,1,25,Australia,AU,New South Wales,-28.998794,153.375005,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020301,1,MALE,occurrenceRemarks withheld,2022,7,3,Australia,AU,New South Wales,-31.454184,152.924933,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-31.459265,152.9193,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-32.232904,152.187392,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100508,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.477051,152.91757,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.085987,150.833136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.427646,150.60576,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-32.751428,151.985731,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,12,3,Australia,AU,New South Wales,-32.689812,151.688766,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.468198,153.052346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.494051,150.640362,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-28.648876,153.317531,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,4,21,Australia,AU,New South Wales,-31.966894,152.395436,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,3,27,Australia,AU,New South Wales,-29.487686,153.102733,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.457489,150.528896,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.432626,150.605009,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-32.737992,152.056469,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.449297,150.520127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.449501,150.597551,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.3832,150.623338,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,14,Australia,AU,New South Wales,-28.939107,153.277646,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.363394,150.556893,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.394767,150.64287,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-31.419488,152.107655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.427686,150.60317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.437966,150.604214,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,28,Australia,AU,New South Wales,-28.610492,152.661161,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150U,1,,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-32.494759,149.912959,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.423824,150.637311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.38536,150.626866,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433153,150.615809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.386215,150.625852,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.423417,150.605696,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,22,Australia,AU,New South Wales,-28.822468,153.304113,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-34.157616,150.790835,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.448993,150.516697,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111502,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.056615,150.836892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.466225,150.52312,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-29.490227,153.108167,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.098443,150.816907,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002818,1,,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-29.377847,153.363197,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.286978,152.872682,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-30.389611,152.943613,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.455957,150.657531,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-29.48778,153.103001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.457009,150.518081,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-34.085987,150.833136,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,30,Australia,AU,New South Wales,-29.489862,153.10158,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-30.244629,152.927638,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,7,22,Australia,AU,New South Wales,-32.738106,152.059388,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-28.687767,153.607389,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.4599,150.525494,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.284893,152.872086,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,26,Australia,AU,New South Wales,-29.489974,153.101301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.399488,150.639453,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.418408,150.597636,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-32.720012,152.133157,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-34.031656,151.031397,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.462215,150.535233,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007130E,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.960117,152.182861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.465724,150.520185,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.439154,150.619817,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-33.717019,150.785264,EPSG:4326 +HUMAN_OBSERVATION,OPUR23110802,1,MALE,occurrenceRemarks withheld,2023,2,5,Australia,AU,New South Wales,-34.073654,150.836945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.423788,150.637269,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.395569,150.642413,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021507,1,,occurrenceRemarks withheld,2024,7,9,Australia,AU,New South Wales,-30.887407,153.071807,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-32.727389,152.078185,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-29.490199,153.108162,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.153665,152.794884,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-31.438717,152.919458,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-28.672561,153.325851,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,5,22,Australia,AU,New South Wales,-31.919949,152.379321,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.42604,150.601987,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-28.929694,153.315922,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-29.48968,153.105024,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.449505,152.906378,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,6,29,Australia,AU,New South Wales,-34.015498,150.88363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.451461,150.518343,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-31.436227,152.915166,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,8,Australia,AU,New South Wales,-28.228241,153.487864,EPSG:4326 +HUMAN_OBSERVATION,OPUR21111600,1,,occurrenceRemarks withheld,2023,12,16,Australia,AU,New South Wales,-31.668072,152.09566,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004065,1,FEMALE,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-28.380941,153.563882,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.455842,150.657643,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-29.740244,151.060645,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101D,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-31.905384,152.299722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.460282,150.518985,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003883,1,,occurrenceRemarks withheld,2023,2,20,Australia,AU,New South Wales,-28.879711,153.195391,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.832329,152.732899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.39595,150.642043,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-31.953089,152.375866,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,1,1,Australia,AU,New South Wales,-31.921251,152.372252,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.458634,150.656053,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-30.286304,153.111219,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-34.098116,150.808286,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.459888,150.519149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.438823,150.604266,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210J,1,,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-32.692029,151.701571,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-28.224592,153.501114,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.139386,150.792881,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.491806,150.638988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.464596,150.521884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433754,150.617065,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-31.13273,150.01413,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-31.443061,152.916955,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.438903,150.604655,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,1,9,Australia,AU,New South Wales,-31.633797,152.78529,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-34.043858,150.986961,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2023,5,18,Australia,AU,New South Wales,-29.021761,153.284425,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,16,Australia,AU,New South Wales,-29.490194,153.10975,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.420331,150.636137,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004208,1,FEMALE,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-28.874133,153.26475,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-31.459497,152.928861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.427608,150.59462,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.423824,150.637268,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,7,24,Australia,AU,New South Wales,-31.281793,152.888406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.399657,150.624896,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.438048,150.604299,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-31.472546,152.911398,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.420662,150.630894,EPSG:4326 +HUMAN_OBSERVATION,OSYK01011201,1,,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-29.682681,152.863782,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-29.490222,153.10976,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.42466,150.604725,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-29.488018,153.092052,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.22351,150.797297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.493091,150.639224,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031408,1,,occurrenceRemarks withheld,2022,1,2,Australia,AU,New South Wales,-28.715757,153.289166,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-30.435319,152.98038,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,12,10,Australia,AU,New South Wales,-34.030144,150.990212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.451555,150.517241,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-32.23042,152.21262,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.398718,150.621126,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,1,14,Australia,AU,New South Wales,-31.453371,152.925147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.395153,150.629286,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-28.864702,153.292768,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.914717,152.38381,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23041908,1,,occurrenceRemarks withheld,2023,4,10,Australia,AU,New South Wales,-30.484348,151.738755,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.471492,150.524107,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-31.466746,152.924256,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-31.454029,152.924837,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-31.461666,152.870552,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.419531,150.611681,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,2,21,Australia,AU,New South Wales,-28.80993,153.337337,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-31.452737,152.925853,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-33.491319,149.552143,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122106,1,,occurrenceRemarks withheld,2022,7,3,Australia,AU,New South Wales,-28.831045,153.279615,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-32.219628,152.19096,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-33.705564,150.785249,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-31.459125,152.925301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.457494,150.528243,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.399685,150.624949,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-28.36289,153.531038,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250B,1,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-31.637937,152.795091,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.570187,149.979238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.421375,150.626751,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.435533,150.615372,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-28.555383,153.516943,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-29.488135,153.092229,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.491421,150.639086,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.439347,150.604784,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,25,Australia,AU,New South Wales,-31.631598,152.785889,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,13,Australia,AU,New South Wales,-33.715649,150.785296,EPSG:4326 +HUMAN_OBSERVATION,OMZS17080800,1,FEMALE,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-34.51311,150.221668,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.420904,150.630354,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-29.667303,152.868104,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.073063,150.859156,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-29.485141,153.096151,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.960638,153.402686,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.429836,150.615849,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-31.475533,152.927881,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.447351,150.513078,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.385672,150.627107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.447891,150.513933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.421215,150.627354,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.436005,150.608612,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-33.443484,150.696147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.467444,150.522746,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-31.928254,152.403627,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-28.82563,153.325204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420156,150.610445,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.435921,150.616307,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251D,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-32.74536,151.8658,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.485536,150.636399,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907171A,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-29.707344,152.879562,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-28.959546,153.394445,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.45268,150.524249,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.453435,150.517436,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.439743,150.604751,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.488536,150.634431,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-31.493585,152.90386,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-32.724707,152.073059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.420616,150.630863,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-32.220827,152.198292,EPSG:4326 +HUMAN_OBSERVATION,ODMP23033105,1,,occurrenceRemarks withheld,2022,5,3,Australia,AU,New South Wales,-32.685393,151.652462,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151N,1,,occurrenceRemarks withheld,2022,12,19,Australia,AU,New South Wales,-28.596155,153.5451,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-31.463023,152.92604,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,3,28,Australia,AU,New South Wales,-34.769934,146.590309,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.436815,150.619176,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,7,Australia,AU,New South Wales,-32.706311,152.063517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.427429,150.60297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.422052,150.607824,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.446118,150.51405,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-34.028515,150.988518,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OJJS20041402;OJJS20041409;OMFZ23033002,1,,occurrenceRemarks withheld,2022,5,23,Australia,AU,New South Wales,-31.832643,151.906449,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.560739,152.210284,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.450034,150.516481,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003835,1,,occurrenceRemarks withheld,2023,4,10,Australia,AU,New South Wales,-29.164296,153.287241,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.405634,150.63739,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131L,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-31.476451,152.864984,EPSG:4326 +HUMAN_OBSERVATION,OPJG18122000,1,,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-31.360285,152.70819,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-32.63318,152.006699,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.454586,150.607211,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.421161,150.63013,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-31.444372,152.922345,EPSG:4326 +HUMAN_OBSERVATION,OJJS06031407,1,,occurrenceRemarks withheld,2020,12,30,Australia,AU,New South Wales,-32.401005,152.466843,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-34.060984,150.866027,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-28.82675,153.318447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.455415,150.609071,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,FEMALE,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-28.84663,153.302384,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040W,1,MALE,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-34.054438,150.975774,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.487777,150.636205,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.459272,150.523423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.420783,150.630597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.38811,150.631497,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,12,26,Australia,AU,New South Wales,-31.630053,152.784006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.389747,150.628079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.456525,150.656569,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.683535,153.608688,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,3,5,Australia,AU,New South Wales,-28.996723,153.307739,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.397759,150.640035,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-29.490637,153.109433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.389796,150.625011,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,1,24,Australia,AU,New South Wales,-28.94975,153.31678,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,13,Australia,AU,New South Wales,-29.490199,153.109819,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.423294,150.604949,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2023,11,29,Australia,AU,New South Wales,-34.149664,150.82301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.41909,150.610334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.435019,150.615811,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003937,1,,occurrenceRemarks withheld,2023,1,23,Australia,AU,New South Wales,-29.725051,152.930912,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.434231,150.615626,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031504,1,,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-28.844961,153.204928,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OJJS1208150J,1,MALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-32.669349,151.715263,EPSG:4326 +HUMAN_OBSERVATION,OPRS04081700,1,,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-28.908123,152.387108,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-36.547428,150.01112,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-28.88526,153.300004,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.466734,150.521102,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-31.93643,152.45426,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,1,Australia,AU,New South Wales,-28.63955,153.01536,EPSG:4326 +HUMAN_OBSERVATION,ODMP2302060B,1,,occurrenceRemarks withheld,2024,9,30,Australia,AU,New South Wales,-34.155923,150.82767,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-31.437176,152.898896,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002557,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-29.097349,153.396418,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,5,2,Australia,AU,New South Wales,-29.740281,151.058604,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-30.511997,151.506959,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,25,Australia,AU,New South Wales,-30.750596,151.376234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.434171,150.615802,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.295538,149.32438,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-31.45737,152.891511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.397712,150.640884,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140Q,1,,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-28.924853,153.159104,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,6,22,Australia,AU,New South Wales,-31.489708,152.905758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.448102,150.515885,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011014,1,,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-32.729431,152.03724,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.452648,150.523967,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,10,Australia,AU,New South Wales,-34.971087,150.101687,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.727316,152.011377,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-31.44785,152.895521,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.493166,150.640289,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062801,1,,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-31.129566,152.858691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.430094,150.616603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.43941,150.603836,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.943961,152.395775,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003890,1,,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-28.720511,153.292847,EPSG:4326 +HUMAN_OBSERVATION,OPJG23021001,1,,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-30.17465,152.656167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.420668,150.609441,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-34.398179,150.639816,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004123,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.863762,153.178153,EPSG:4326 +HUMAN_OBSERVATION,OJJS19090300;ODMP2202250L,1,FEMALE,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-32.738862,152.092193,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.749083,152.716509,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.29805,149.321783,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-34.447292,150.514592,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.425897,150.597944,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-28.66561,153.586284,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.417558,150.63306,EPSG:4326 +HUMAN_OBSERVATION,OVGI98110201,1,,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-30.477824,151.739603,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2023,3,19,Australia,AU,New South Wales,-30.245461,152.890607,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-29.485473,153.10379,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-29.490142,153.108065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.388815,150.623691,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,18,Australia,AU,New South Wales,-29.490091,153.107373,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-31.914407,152.373707,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.420681,150.627228,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,5,4,Australia,AU,New South Wales,-28.889073,153.413708,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-31.47441,152.896993,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.436548,150.603656,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-32.305041,152.028315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.437652,150.606639,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.437993,150.604214,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-28.391295,153.562646,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,4,20,Australia,AU,New South Wales,-31.326927,152.903765,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866891,153.343646,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.437864,150.605001,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022608,1,,occurrenceRemarks withheld,2022,12,9,Australia,AU,New South Wales,-32.510486,151.675478,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-31.674782,152.806579,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-29.491567,153.099772,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.423618,150.63735,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.92017,152.378286,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.443043,152.898533,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.420667,150.630709,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.464291,150.522426,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-29.744032,151.05149,EPSG:4326 +HUMAN_OBSERVATION,OVGI98110201,1,,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-30.479329,151.739707,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.459203,150.516035,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.953149,153.369052,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081300,1,,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.075588,150.997694,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-33.408392,150.697215,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090407,1,MALE,occurrenceRemarks withheld,2021,1,19,Australia,AU,New South Wales,-32.727834,152.078142,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-30.083437,152.175292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.465747,150.520413,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,12,10,Australia,AU,New South Wales,-31.466445,152.926618,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-28.524725,153.114205,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031820,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-28.805242,153.282479,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.342321,152.733213,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090M,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-31.444859,152.916532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.463581,150.523884,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-30.230133,152.939246,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100D,1,,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-31.475115,152.897256,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.383326,150.623335,EPSG:4326 +HUMAN_OBSERVATION,OPUR21082000,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-33.484283,150.798877,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,10,Australia,AU,New South Wales,-29.480588,153.090341,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.446399,150.514162,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.423779,150.637302,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,20,Australia,AU,New South Wales,-28.889411,153.27327,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-28.784217,152.092381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.420746,150.609264,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.387288,150.630965,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2020,2,24,Australia,AU,New South Wales,-28.58454,153.554571,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-28.555194,153.074309,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003900,1,FEMALE,occurrenceRemarks withheld,2023,1,29,Australia,AU,New South Wales,-28.951212,153.315573,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-31.457385,152.874801,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,8,30,Australia,AU,New South Wales,-31.482126,152.91584,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041T,1,,occurrenceRemarks withheld,2022,12,25,Australia,AU,New South Wales,-30.307389,153.099426,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,5,11,Australia,AU,New South Wales,-28.827692,153.297816,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-28.695179,153.496076,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-33.71231,150.786073,EPSG:4326 +HUMAN_OBSERVATION,OPJG19080903,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-31.350774,152.780121,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,4,Australia,AU,New South Wales,-28.664312,153.60724,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.43489,150.616609,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-28.585012,153.552129,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.442975,150.516918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.471255,150.532441,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,12,2,Australia,AU,New South Wales,-31.640364,152.791628,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121405,1,,occurrenceRemarks withheld,2024,4,27,Australia,AU,New South Wales,-33.501247,149.368325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.420649,150.629731,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,4,Australia,AU,New South Wales,-29.491002,153.108119,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-33.775559,150.103132,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.446021,150.514619,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.434588,150.616367,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150Q,1,,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-30.587778,151.300556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.430531,150.610367,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,6,6,Australia,AU,New South Wales,-33.76085,150.047763,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.447385,152.857153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419018,150.610347,EPSG:4326 +HUMAN_OBSERVATION,OPUR23030700,1,,occurrenceRemarks withheld,2023,5,26,Australia,AU,New South Wales,-31.932222,152.406107,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,3,Australia,AU,New South Wales,-28.260576,153.469339,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,29,Australia,AU,New South Wales,-28.834132,153.217453,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.456526,150.528528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.420565,150.609226,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,31,Australia,AU,New South Wales,-29.094796,153.396299,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2023,3,20,Australia,AU,New South Wales,-32.710657,152.071786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.420961,150.627263,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-28.818638,153.367603,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-29.485552,153.103677,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.424887,150.602521,EPSG:4326 +HUMAN_OBSERVATION,OPUR20050100,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-28.889491,153.229863,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022403,1,,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-32.722397,152.077144,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.388094,150.63116,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.457591,150.659532,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.456586,150.519454,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,,occurrenceRemarks withheld,2024,4,19,Australia,AU,New South Wales,-31.619955,152.226191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.394215,150.644191,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-33.704889,150.784915,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.44717,150.513072,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.385445,150.626602,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.454015,150.520259,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.447244,150.514452,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.458235,150.660167,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,2,9,Australia,AU,New South Wales,-29.492795,153.109546,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.452027,150.517379,EPSG:4326 +HUMAN_OBSERVATION,ODFK24092407,1,MALE,occurrenceRemarks withheld,2024,9,7,Australia,AU,New South Wales,-34.090362,150.985794,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.392695,150.63922,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,14,Australia,AU,New South Wales,-29.490255,153.10814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.428612,150.600325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.423771,150.637356,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.421802,150.636247,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.811319,152.825478,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-34.096265,150.98509,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.453409,150.525066,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-29.490222,153.109776,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260C,1,,occurrenceRemarks withheld,2020,12,29,Australia,AU,New South Wales,-32.711087,152.060759,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-28.683592,153.521789,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,3,10,Australia,AU,New South Wales,-31.429377,152.884859,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.488809,150.637831,EPSG:4326 +HUMAN_OBSERVATION,OLHP24071201,1,,occurrenceRemarks withheld,2024,6,8,Australia,AU,New South Wales,-34.622911,150.204506,EPSG:4326 +HUMAN_OBSERVATION,OLHP24020801,1,,occurrenceRemarks withheld,2023,4,12,Australia,AU,New South Wales,-31.476079,152.926324,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-31.654877,152.809901,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,2,7,Australia,AU,New South Wales,-33.991958,150.89266,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,6,13,Australia,AU,New South Wales,-29.744744,151.081243,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.465942,150.52205,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,1,29,Australia,AU,New South Wales,-28.658739,153.610351,EPSG:4326 +HUMAN_OBSERVATION,OPUR20021302,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-32.729398,152.026121,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031549,1,FEMALE,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-28.816234,153.313061,EPSG:4326 +HUMAN_OBSERVATION,OPUR18080101,1,MALE,occurrenceRemarks withheld,2022,11,14,Australia,AU,New South Wales,-28.817043,153.316807,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-29.067039,153.147631,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012505,1,,occurrenceRemarks withheld,2024,2,17,Australia,AU,New South Wales,-31.453367,152.925124,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-31.444781,152.890613,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.448715,150.516759,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.41908,150.610291,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050U,1,,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-31.654173,152.816767,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.430565,150.610715,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.38842,150.632184,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.420616,150.63083,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-34.006923,151.003682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.383291,150.623357,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-31.933158,152.412383,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-29.490511,153.109422,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022604,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.934538,152.724564,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,2,15,Australia,AU,New South Wales,-32.706553,152.063752,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-31.631781,152.785604,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004229,1,,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-29.042938,153.289364,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-29.031105,152.986734,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.441249,152.902945,EPSG:4326 +HUMAN_OBSERVATION,CLARP,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.507705,152.682237,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082308;ODFK23082309;ODFK2308230A;ODFK2308230B,1,MALE,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.13748,150.84,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.448283,150.516337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.419406,150.63588,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251S,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-32.725789,152.077177,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-34.149678,150.823266,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-29.48452,153.103988,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,4,3,Australia,AU,New South Wales,-31.55526,152.851078,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.459084,150.515048,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-31.419488,152.107655,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-36.181236,149.298072,EPSG:4326 +HUMAN_OBSERVATION,OGXN10042200,1,,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-33.556303,149.553286,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.437665,150.604963,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-34.078737,150.837478,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-32.72797,152.078075,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,,occurrenceRemarks withheld,2022,6,3,Australia,AU,New South Wales,-31.437349,152.904981,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-30.398276,152.986144,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,13,Australia,AU,New South Wales,-29.49018,153.110517,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2022,3,12,Australia,AU,New South Wales,-32.662551,152.171924,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.420913,150.630376,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-31.431803,152.91088,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.435137,152.896382,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060F,1,,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-31.447295,152.928901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.436004,150.616381,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.389256,150.628757,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.485924,150.638304,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-30.410794,153.026376,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.438678,150.604662,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072601;ODMP2212210O,1,,occurrenceRemarks withheld,2022,2,25,Australia,AU,New South Wales,-28.260511,153.399378,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-29.489932,153.10114,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-31.299381,152.863579,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.488036,150.637472,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.438071,150.604081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.462183,150.534559,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-28.690609,153.507271,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.401097,152.813274,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-28.864615,153.293195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.447174,150.514128,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,6,Australia,AU,New South Wales,-28.687767,153.607389,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.465482,150.522031,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-223;OPJG22022105,1,,occurrenceRemarks withheld,2024,4,10,Australia,AU,New South Wales,-31.470887,151.481451,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.393426,150.639754,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,1,2,Australia,AU,New South Wales,-28.8445,153.03887,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221A,1,,occurrenceRemarks withheld,2021,11,21,Australia,AU,New South Wales,-32.722465,152.077229,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,25,Australia,AU,New South Wales,-35.06333,150.121806,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-29.490259,153.108092,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-28.669384,153.45436,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-29.483203,153.104197,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220O,1,,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-32.724028,152.115767,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-31.447884,152.895436,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-29.49017,153.110527,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-28.342929,152.96702,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.419098,150.61029,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,24,Australia,AU,New South Wales,-31.451678,152.922045,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.917085,152.377586,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,3,10,Australia,AU,New South Wales,-31.916245,152.374123,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,12,Australia,AU,New South Wales,-31.450157,152.92906,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100B,1,,occurrenceRemarks withheld,2023,11,26,Australia,AU,New South Wales,-34.982344,149.747024,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-34.439808,150.617274,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-36.435679,149.980514,EPSG:4326 +HUMAN_OBSERVATION,ODFK24030602,1,,occurrenceRemarks withheld,2024,2,18,Australia,AU,New South Wales,-32.586484,151.772168,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.447153,150.513106,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.944776,152.394987,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,3,2,Australia,AU,New South Wales,-31.48887,152.907862,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.431104,150.615215,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042J,1,,occurrenceRemarks withheld,2022,9,5,Australia,AU,New South Wales,-34.452853,150.486641,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.45599,150.657378,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-29.487322,153.103495,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.514293,150.545289,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-30.437303,152.981126,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2021,1,12,Australia,AU,New South Wales,-29.346563,152.944433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.417707,150.60142,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303200D,1,,occurrenceRemarks withheld,2022,8,12,Australia,AU,New South Wales,-32.664011,151.723591,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.487974,150.635209,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100501,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-31.713817,152.76081,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-29.489904,153.101354,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2022,7,25,Australia,AU,New South Wales,-30.180461,152.990735,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2020,2,5,Australia,AU,New South Wales,-32.246573,151.733337,EPSG:4326 +HUMAN_OBSERVATION,ODFK23111401,1,,occurrenceRemarks withheld,2024,9,5,Australia,AU,New South Wales,-31.575228,152.188489,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,6,18,Australia,AU,New South Wales,-31.470576,152.908066,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.435385,150.615158,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-33.522609,150.655487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.446416,150.514096,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-34.450993,150.614812,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.448791,150.518281,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030I,1,,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-31.254088,152.966338,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,6,25,Australia,AU,New South Wales,-32.745927,152.084753,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-31.448166,152.922243,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-28.931463,153.004171,EPSG:4326 +HUMAN_OBSERVATION,CORD;OCAY21082100;ODMP2202070L;ODMP2202070M,1,,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-36.108498,149.311159,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-28.476852,153.224127,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,20,Australia,AU,New South Wales,-29.490241,153.108113,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111511,1,,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-33.44793,150.61281,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,28,Australia,AU,New South Wales,-29.485594,153.103744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.451593,150.517305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.443331,150.51447,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,8,Australia,AU,New South Wales,-31.464065,152.926654,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041V,1,FEMALE,occurrenceRemarks withheld,2023,4,14,Australia,AU,New South Wales,-33.58539,150.656179,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.447635,150.523527,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-31.642007,152.794013,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012900,1,MALE,occurrenceRemarks withheld,2024,9,5,Australia,AU,New South Wales,-32.331635,152.314015,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220U,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-32.713518,152.07177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.394441,150.629741,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-31.412421,152.198215,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-31.445315,152.923301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.418919,150.604823,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.437536,150.605761,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.446365,150.517351,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-31.435753,152.895654,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-28.959102,153.39275,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.437964,150.604138,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-29.490068,153.107421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.420746,150.630555,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,4,6,Australia,AU,New South Wales,-32.709016,152.064158,EPSG:4326 +HUMAN_OBSERVATION,OJJS17062707,1,,occurrenceRemarks withheld,2020,4,7,Australia,AU,New South Wales,-32.488185,151.86688,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-36.043897,149.360515,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-32.71021,152.066029,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-32.224416,152.194095,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403060J,1,,occurrenceRemarks withheld,2024,2,17,Australia,AU,New South Wales,-31.471614,152.909325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.397078,150.64212,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.554597,149.949397,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,4,10,Australia,AU,New South Wales,-31.445894,152.915425,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-31.921004,152.371872,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.388117,150.632345,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-33.776734,150.06137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.429396,150.616895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.433837,150.617172,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,8,29,Australia,AU,New South Wales,-29.631513,152.900097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.388488,150.631008,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100R,1,,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-31.444794,152.888297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.387656,150.63089,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031539,1,,occurrenceRemarks withheld,2022,9,10,Australia,AU,New South Wales,-28.809095,153.34886,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,8,17,Australia,AU,New South Wales,-34.141271,150.82369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.418467,150.63348,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.452109,150.51741,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,4,28,Australia,AU,New South Wales,-28.625849,153.443622,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-31.340843,152.721054,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-34.437569,150.517927,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-28.649467,153.292109,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.386111,150.625148,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.477897,152.891395,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-28.868027,153.336688,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.485932,150.63826,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-29.481424,153.104171,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041C,1,,occurrenceRemarks withheld,2022,8,18,Australia,AU,New South Wales,-29.762752,151.110282,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-29.490208,153.109793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.446338,150.513794,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-31.629699,152.78528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.48798,150.637364,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,28,Australia,AU,New South Wales,-31.428965,152.885087,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,9,5,Australia,AU,New South Wales,-34.056,150.847722,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.953149,153.369052,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-31.15847,150.10822,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004127,1,,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.660285,153.164587,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,4,19,Australia,AU,New South Wales,-28.845006,153.320408,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-29.489003,153.094949,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.827996,153.303174,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-30.380565,152.992896,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-31.26349,152.832,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,3,3,Australia,AU,New South Wales,-31.441884,152.901577,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,30,Australia,AU,New South Wales,-28.4464,153.052931,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.342971,152.609383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.427292,150.604726,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-30.275567,152.915981,EPSG:4326 +HUMAN_OBSERVATION,OPUR14061300,1,,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-32.38639,149.818352,EPSG:4326 +HUMAN_OBSERVATION,OPRS04081700,1,,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-29.430623,153.166228,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100W,1,,occurrenceRemarks withheld,2023,11,20,Australia,AU,New South Wales,-28.246903,153.482892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.454874,150.518612,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,26,Australia,AU,New South Wales,-29.490735,153.10931,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.430386,150.61678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.412301,150.602021,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-29.485123,153.104004,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,6,Australia,AU,New South Wales,-32.7884,151.849654,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.69032,153.60237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.465805,150.522414,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,,occurrenceRemarks withheld,2020,5,21,Australia,AU,New South Wales,-28.731653,153.545455,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001401,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-30.598083,152.846008,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-31.463091,152.926704,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.417717,150.601474,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-32.232904,152.187392,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030509,1,,occurrenceRemarks withheld,2024,2,10,Australia,AU,New South Wales,-31.996932,152.403946,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.44753,150.517458,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-31.456239,152.924659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.453261,150.524874,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.459934,150.51917,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-32.01839,151.96116,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-31.1112,150.12038,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,5,8,Australia,AU,New South Wales,-28.815323,153.312357,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-31.45017,152.929001,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.39972,150.617498,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-33.705991,150.786166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419124,150.610213,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-28.556838,153.548387,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,2,3,Australia,AU,New South Wales,-31.466442,152.928736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.394645,150.641688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.484222,150.635119,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-30.290301,152.699675,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110M,1,,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-31.44142,152.911398,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.650407,149.955028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.43837,150.604627,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.429878,150.60512,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.420215,150.63528,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,17,Australia,AU,New South Wales,-33.708275,150.784781,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-29.236904,152.955746,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-29.489937,153.101488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.388127,150.624482,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.471204,150.52946,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.43971,150.518582,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-28.830222,153.217711,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-29.485678,153.103645,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.435028,150.615799,EPSG:4326 +HUMAN_OBSERVATION,ODLC98101500,1,,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-28.345422,152.967002,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.420344,150.635908,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190E,1,,occurrenceRemarks withheld,2024,7,22,Australia,AU,New South Wales,-31.933849,152.414579,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-31.456465,152.15231,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.464068,150.52388,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-32.654299,151.79094,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.818579,153.296004,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-29.48996,153.10078,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,1,9,Australia,AU,New South Wales,-31.441724,152.903576,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,2,,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-28.972323,153.42898,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041N,1,MALE,occurrenceRemarks withheld,2023,1,28,Australia,AU,New South Wales,-34.055784,150.846601,EPSG:4326 +HUMAN_OBSERVATION,OIXR14091500,1,,occurrenceRemarks withheld,2020,3,24,Australia,AU,New South Wales,-31.101711,150.087296,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.467624,150.520052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.444906,150.517873,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,Queensland,-27.652236,153.191476,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OMFZ23033002;ODFK24051300,1,,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-33.252204,150.878065,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,2,Australia,AU,New South Wales,-31.44561,152.907416,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-30.290446,152.699633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418963,150.609402,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-31.458481,152.914172,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-31.471961,152.919133,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-31.43089,152.91471,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102213,1,,occurrenceRemarks withheld,2021,11,9,Australia,AU,New South Wales,-32.709087,152.059973,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.422771,150.637395,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.439103,150.605194,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,25,Australia,AU,New South Wales,-29.485225,153.096204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.43316,150.605091,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.437621,150.603669,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.427219,150.52627,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-31.148381,149.303667,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110U,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-31.449715,152.927087,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.46626,150.523075,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.423815,150.637279,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-31.478974,152.923461,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,8,19,Australia,AU,New South Wales,-32.999699,151.577868,EPSG:4326 +HUMAN_OBSERVATION,OPUR20051800,1,MALE,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-28.866595,153.577766,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004110,1,FEMALE,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.637434,153.629579,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.444992,150.514552,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-28.642979,153.409445,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.396459,150.626911,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,2,11,Australia,AU,New South Wales,-32.672298,151.687532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.464189,150.520938,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR1511120M;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-28.54593,153.52954,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,23,Australia,AU,New South Wales,-29.490203,153.110511,EPSG:4326 +HUMAN_OBSERVATION,OAMS01021300,1,,occurrenceRemarks withheld,2020,9,,Australia,AU,New South Wales,-28.523,153.188,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-28.358392,153.522273,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR1511120M;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-28.54593,153.52954,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153K,1,FEMALE,occurrenceRemarks withheld,2022,7,15,Australia,AU,New South Wales,-28.620707,153.116477,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-29.488555,153.10343,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,2,Australia,AU,New South Wales,-28.400128,153.556747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.452564,150.522936,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090Q,1,,occurrenceRemarks withheld,2023,6,15,Australia,AU,New South Wales,-33.50023,149.586298,EPSG:4326 +HUMAN_OBSERVATION,OLHP24051304,1,FEMALE,occurrenceRemarks withheld,2024,4,24,Australia,AU,New South Wales,-33.98015,150.99372,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-29.489741,153.105227,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031N,1,,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-31.459712,152.927071,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-30.239,152.90373,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.454636,150.514908,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,3,2,Australia,AU,New South Wales,-31.948252,152.300422,EPSG:4326 +HUMAN_OBSERVATION,OPJG22081702,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.816334,152.441107,EPSG:4326 +HUMAN_OBSERVATION,OPJG15082102;OPJG18020707,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-30.178769,152.661159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.493205,150.639024,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031406,1,FEMALE,occurrenceRemarks withheld,2022,6,18,Australia,AU,New South Wales,-30.39916,151.708481,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,9,9,Australia,AU,New South Wales,-31.459637,152.914814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.446511,150.514333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.421497,150.627455,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.432518,150.605001,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,2,2,Australia,AU,New South Wales,-29.679836,152.875695,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.465744,150.52026,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,3,7,Australia,AU,New South Wales,-31.915566,152.373959,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.388451,150.625843,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.478889,150.533675,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-31.46913,152.91969,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.464168,150.522157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.398059,150.622004,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.432588,150.615053,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,25,Australia,AU,New South Wales,-33.703553,150.785139,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.459835,150.525409,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-31.428986,152.914755,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-31.44384,152.924873,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-31.645619,152.796696,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.45356,150.608699,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-30.405003,152.865888,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,6,14,Australia,AU,New South Wales,-31.466926,152.908106,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211N,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-32.761256,152.105266,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-28.365769,153.461306,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-28.38915,153.563952,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,MALE,occurrenceRemarks withheld,2022,1,10,Australia,AU,New South Wales,-32.611134,151.782221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.388916,150.624242,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-28.864665,153.293429,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.455819,150.658308,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.466304,150.523466,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-32.669349,151.715263,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,30,Australia,AU,New South Wales,-31.452721,152.914214,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.46379,150.523943,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040701,1,,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-32.659978,151.659955,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.438051,150.606736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.386055,150.625487,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-28.46907,152.444789,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100H,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.447277,152.901831,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-29.040372,153.401541,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,1,21,Australia,AU,New South Wales,-34.202477,150.790376,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003837,1,MALE,occurrenceRemarks withheld,2023,2,3,Australia,AU,New South Wales,-28.711692,153.593426,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.562884,152.822341,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-30.365294,153.018994,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260N,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-33.705439,151.209269,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-28.961088,152.750964,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,3,Australia,AU,New South Wales,-28.660527,153.590336,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-29.490114,153.107464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.467134,150.520796,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-29.489988,153.101306,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.42086,150.630388,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.398881,150.616521,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,5,19,Australia,AU,New South Wales,-33.491237,149.552103,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.453671,150.607912,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.451591,150.517229,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033003,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-31.458729,152.879347,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,FEMALE,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-34.744251,146.532263,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180R,1,,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-28.82038,153.298251,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-32.232731,152.351609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.398238,150.640554,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.548357,150.644174,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,8,Australia,AU,New South Wales,-32.293912,152.061841,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.428881,150.596096,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021508,1,FEMALE,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-31.45463,152.912794,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-29.489914,153.101188,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011014,1,,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-31.474953,152.897335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.469599,150.526765,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-36.503585,149.989088,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-31.463296,152.92706,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-29.485805,153.103736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.454469,150.605876,EPSG:4326 +HUMAN_OBSERVATION,OLHP24010911,1,,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-31.472034,152.926682,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040707,1,,occurrenceRemarks withheld,2020,12,12,Australia,AU,New South Wales,-33.550659,151.201931,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.385799,150.62718,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2022,12,27,Australia,AU,New South Wales,-34.773396,146.594919,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,14,Australia,AU,New South Wales,-29.489965,153.110538,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,4,20,Australia,AU,New South Wales,-36.568285,149.938839,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,8,28,Australia,AU,New South Wales,-29.487201,153.111016,EPSG:4326 +HUMAN_OBSERVATION,OICG18022200,1,,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-28.931667,153.273816,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-29.490184,153.109744,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.42899,153.04413,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.428978,150.614383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.466422,150.524398,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-34.119269,150.796544,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-34.4866,150.47857,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-30.324995,152.801762,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.488204,150.637325,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-34.314397,150.644372,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,10,Australia,AU,New South Wales,-29.489573,153.103929,EPSG:4326 +HUMAN_OBSERVATION,ODMP2302060B,1,,occurrenceRemarks withheld,2023,12,29,Australia,AU,New South Wales,-34.151409,150.824721,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2023,4,24,Australia,AU,New South Wales,-36.058,149.295,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-33.703312,150.787865,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-29.480915,153.104176,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-32.47224,151.9746,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.465726,150.521632,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003829,1,FEMALE,occurrenceRemarks withheld,2023,6,19,Australia,AU,New South Wales,-28.239324,153.516485,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031N,1,,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-31.459654,152.926675,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-34.103425,150.961299,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.363394,150.556893,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.957716,153.432697,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.46125,150.519642,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.437077,150.603032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,26,Australia,AU,New South Wales,-34.440721,150.618793,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031413,1,MALE,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-29.630516,152.864758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-34.441897,150.514861,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,MALE,occurrenceRemarks withheld,2024,1,4,Australia,AU,New South Wales,-36.160578,149.345233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.420994,150.628002,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090504,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-31.126306,152.791716,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-34.62353,150.21104,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418948,150.609511,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-29.490311,153.108226,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050B,1,MALE,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-31.194907,152.91631,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,5,22,Australia,AU,New South Wales,-28.718685,150.277813,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,7,29,Australia,AU,New South Wales,-28.26064,153.403914,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-30.44826,153.05707,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.464936,150.521329,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.454804,150.658511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.491423,150.638759,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-29.490605,153.108151,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-29.485296,153.096204,EPSG:4326 +HUMAN_OBSERVATION,OJJS19090300,1,MALE,occurrenceRemarks withheld,2020,6,27,Australia,AU,New South Wales,-32.738157,152.112115,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-29.383562,153.092783,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210J,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-28.275319,153.395229,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.439135,150.515574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.485662,150.637822,EPSG:4326 +HUMAN_OBSERVATION,ODMP08072300,1,,occurrenceRemarks withheld,2022,2,,Australia,AU,New South Wales,-29.425825,151.071543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.447292,150.519043,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,2,14,Australia,AU,New South Wales,-34.117194,150.786775,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.447904,150.516337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.417697,150.633252,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-29.489591,153.103859,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-29.49011,153.107416,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021507,1,MALE,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-30.887326,153.071736,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-31.914194,152.450455,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.398066,150.644246,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2020,3,8,Australia,AU,New South Wales,-29.667401,152.867846,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041S,1,FEMALE,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-31.454908,152.921976,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220Y,1,,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-32.72557,152.08418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.423286,150.605025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.434447,150.609157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.386707,150.625164,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-34.100415,150.96084,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-28.390181,153.563451,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.420572,150.60915,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23061704,1,,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-28.827062,153.20438,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250B,1,,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-32.722543,152.076895,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-31.475075,152.910679,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,4,4,Australia,AU,New South Wales,-36.599554,149.951303,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,23,Australia,AU,New South Wales,-33.717563,150.783933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.420736,150.630076,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004173,1,,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-28.823981,153.321914,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-28.872605,153.419288,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.454699,150.522448,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,23,Australia,AU,New South Wales,-31.631915,152.786204,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-29.316805,152.855893,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-33.543308,149.62228,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-32.240856,152.187169,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.432222,150.605532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.458602,150.5255,EPSG:4326 +HUMAN_OBSERVATION,ODMP22111603,1,FEMALE,occurrenceRemarks withheld,2023,2,24,Australia,AU,New South Wales,-36.29988,149.27087,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.453229,150.59825,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.428664,150.600215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.447196,150.518763,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.465251,150.524847,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.813462,153.334493,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.450839,150.607394,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.484692,152.782809,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102229,1,,occurrenceRemarks withheld,2021,2,10,Australia,AU,New South Wales,-32.739136,152.077653,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,18,Australia,AU,New South Wales,-28.794203,153.36019,EPSG:4326 +HUMAN_OBSERVATION,OPUR20021302,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-32.72376,152.01582,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,3,11,Australia,AU,New South Wales,-28.846402,153.319916,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-28.5583,153.468842,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-30.417681,153.010861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.438382,150.60429,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.8186,153.277965,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.650407,149.955028,EPSG:4326 +HUMAN_OBSERVATION,OSLS05062143,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.051222,150.859396,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.453574,152.849049,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-29.490455,153.10939,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.41959,150.632796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.392676,150.639177,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,7,14,Australia,AU,New South Wales,-28.421165,153.01413,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060M,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.903028,152.3933,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,7,7,Australia,AU,New South Wales,-29.743827,151.021577,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.456528,150.608342,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-29.490465,153.10946,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.455453,150.609178,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.396339,150.642152,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-28.66747,153.6062,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-29.488149,153.092347,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.38936,150.626698,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004196,1,,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.824359,153.301111,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-28.388052,153.563931,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-32.705566,152.063481,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-28.229862,153.427208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.435402,150.615125,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,6,14,Australia,AU,New South Wales,-32.35706,151.972865,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.465518,150.52559,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181T,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.734759,153.591776,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,6,Australia,AU,New South Wales,-28.732156,153.433757,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-31.470586,152.926159,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-31.44446,152.907196,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-28.830931,153.281772,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-28.59278,152.32312,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.450124,150.516467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.452624,150.52412,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.456674,150.514777,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-33.707842,150.786774,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.436312,150.616013,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-29.490395,153.109594,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,23,Australia,AU,New South Wales,-29.49039,153.108044,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.442717,150.516621,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,1,Australia,AU,New South Wales,-32.10128,152.384342,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-28.588399,153.446164,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122005,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-28.54473,153.040115,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.390007,150.629856,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-31.263827,152.818011,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-30.191203,152.783572,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003832,1,,occurrenceRemarks withheld,2023,2,15,Australia,AU,New South Wales,-28.88936,153.184802,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-32.029955,151.842163,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-31.444037,152.924469,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003856,1,MALE,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-28.87382,153.27916,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-28.850227,153.378429,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,11,Australia,AU,New South Wales,-33.710679,150.784289,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,4,Australia,AU,New South Wales,-29.492767,153.109873,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-31.649272,152.825149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.443176,150.518338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.418443,150.633165,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-29.48559,153.103774,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.447244,150.513157,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,19,Australia,AU,New South Wales,-31.629368,152.787075,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.11556,150.80876,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.948252,152.300422,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-29.48982,153.101236,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,3,19,Australia,AU,New South Wales,-29.387549,153.363468,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.572611,149.995573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.448509,150.51682,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,7,Australia,AU,New South Wales,-31.442885,152.896223,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-31.481883,152.916037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.438923,150.604307,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,3,12,Australia,AU,New South Wales,-32.720894,151.991124,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.446992,150.515396,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-31.920145,152.378992,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,29,Australia,AU,New South Wales,-33.717419,150.784153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.451228,150.600124,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,5,28,Australia,AU,New South Wales,-28.38399,153.562188,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.430841,150.613753,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.446773,150.517024,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153U,1,,occurrenceRemarks withheld,2022,10,2,Australia,AU,New South Wales,-28.74829,153.344753,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-31.932238,152.412714,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.451805,150.518431,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,20,Australia,AU,New South Wales,-29.485599,153.103463,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.326988,153.088652,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.437967,150.60429,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.438996,150.60437,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,9,3,Australia,AU,New South Wales,-32.705776,152.064139,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-29.487812,153.091613,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-31.486714,152.778519,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,3,5,Australia,AU,New South Wales,-34.093124,150.985108,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-32.709746,152.066307,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.150217,150.823287,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,FEMALE,occurrenceRemarks withheld,2023,4,19,Australia,AU,New South Wales,-32.58805,151.7782,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041W,1,MALE,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-33.210524,151.256355,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.447136,150.51315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.424686,150.60468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.434687,150.606647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.486022,150.634948,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308240Y,1,,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-32.6278,152.0527,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,12,27,Australia,AU,New South Wales,-34.75678,146.534785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,21,Australia,AU,New South Wales,-34.437934,150.61551,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.057941,150.89035,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300H,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-32.721216,152.078464,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,29,Australia,AU,New South Wales,-31.451825,152.926482,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-32.225666,152.196402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.392863,150.632983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.428314,150.604435,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2020,8,7,Australia,AU,New South Wales,-32.570265,151.622262,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,2,Australia,AU,New South Wales,-28.873812,153.348488,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-31.446169,152.916034,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.395586,150.642369,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-29.490227,153.108146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.448232,150.516055,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,22,Australia,AU,New South Wales,-34.017438,150.888867,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-34.030191,150.848206,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-31.241046,152.822526,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-28.25783,153.400598,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-31.378519,152.756187,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,MALE,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-31.933404,152.415901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.389759,150.625915,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-29.489858,153.101247,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-31.644405,152.795197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.421347,150.626719,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,23,Australia,AU,New South Wales,-28.397314,153.556988,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-32.701664,152.065276,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200A,1,,occurrenceRemarks withheld,2024,4,2,Australia,AU,New South Wales,-31.439513,152.886512,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-34.455834,150.515264,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-29.487107,153.09732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.451471,150.518386,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-28.982543,153.422166,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-34.028785,150.9892,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-28.844273,153.302801,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.422052,150.607824,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.435711,150.61615,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-33.71604,150.784989,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS;ODFK23090501,1,,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-30.448436,151.824666,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,10,Australia,AU,New South Wales,-31.456848,152.874899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.454853,150.663396,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,6,14,Australia,AU,New South Wales,-31.470069,152.925782,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435589,150.61636,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-31.473064,152.91439,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,7,6,Australia,AU,New South Wales,-31.467655,152.905478,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-29.490175,153.110511,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,24,Australia,AU,New South Wales,-33.717197,150.783426,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,2,Australia,AU,New South Wales,-33.710617,150.786096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.448994,150.516283,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-28.387638,153.557323,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-28.8605,153.4039,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.420489,150.635479,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-31.461934,152.870504,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.434263,150.616322,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-28.894918,153.325686,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-31.479873,152.87339,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.437387,150.605526,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,29,Australia,AU,New South Wales,-29.48558,153.103755,EPSG:4326 +HUMAN_OBSERVATION,OEIJ21090900,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-30.887528,153.073472,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-31.435403,152.915447,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-31.88371,152.389984,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-29.488055,153.091693,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154U,1,,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-28.592481,153.418498,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003800,1,,occurrenceRemarks withheld,2023,3,6,Australia,AU,New South Wales,-28.489141,153.022335,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-29.485473,153.103626,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003871,1,,occurrenceRemarks withheld,2023,8,28,Australia,AU,New South Wales,-28.785698,153.382218,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-28.571967,153.515119,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-36.502277,149.966791,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.437966,150.604214,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-34.042234,150.85704,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-29.490203,153.108215,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160J,1,,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-32.727829,152.105567,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,22,Australia,AU,New South Wales,-29.48345,153.095232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.388941,150.629288,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.632151,149.941399,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,8,Australia,AU,New South Wales,-31.4908,152.909109,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.426769,150.603337,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030608,1,,occurrenceRemarks withheld,2024,2,25,Australia,AU,New South Wales,-31.450573,152.925831,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.464341,150.522228,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.1081,150.983419,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-28.993269,153.438286,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-29.485576,153.103806,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250N,1,,occurrenceRemarks withheld,2024,9,1,Australia,AU,New South Wales,-34.036214,151.037077,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,1,31,Australia,AU,New South Wales,-30.40529,152.93786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.484317,150.533722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.420494,150.611578,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,6,20,Australia,AU,New South Wales,-29.681698,152.933658,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,3,25,Australia,AU,New South Wales,-28.67286,153.502349,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-29.488639,153.093141,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-29.489909,153.110522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.446365,150.519593,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.452321,150.522997,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,6,26,Australia,AU,New South Wales,-31.470742,152.919075,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.452898,150.519879,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.390635,150.627369,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-28.393303,153.563435,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,12,5,Australia,AU,New South Wales,-31.631882,152.785676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.394267,150.640796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.465746,150.520391,EPSG:4326 +HUMAN_OBSERVATION,OJJS19122407,1,,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-34.157278,150.804225,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.418926,150.632945,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,8,21,Australia,AU,New South Wales,-31.455771,152.929855,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-31.926624,152.352277,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003960,1,,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-28.815522,153.40366,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022521,1,FEMALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-32.739099,152.059278,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,7,Australia,AU,New South Wales,-29.486346,153.103307,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-29.479556,153.104079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.420679,150.630818,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,12,5,Australia,AU,New South Wales,-28.620422,153.432401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.387096,150.631743,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,21,Australia,AU,New South Wales,-28.806225,153.456029,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.098917,150.820437,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,10,Australia,AU,New South Wales,-28.855997,153.323701,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.452804,150.517476,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,6,11,Australia,AU,New South Wales,-36.436787,149.967562,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.435224,150.61661,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.394469,150.629795,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-28.80931,153.28829,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,7,2,Australia,AU,New South Wales,-28.400123,153.556462,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,16,Australia,AU,New South Wales,-28.766815,153.49897,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-34.069613,150.841833,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150W,1,,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-28.286849,153.376871,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-33.705699,150.787493,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.451681,150.522526,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.420679,150.630829,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.450976,150.522906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.458955,150.659167,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030B,1,,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-30.896555,153.03747,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-28.316831,152.43885,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.434284,150.616506,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.394749,150.641479,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.420147,150.631301,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250J,1,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.763847,146.601837,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-29.02895,153.434872,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,12,8,Australia,AU,New South Wales,-32.706494,152.063473,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-31.433425,152.920664,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121501,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-31.146275,152.798937,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.444965,150.514552,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-31.144587,152.863253,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.445913,150.514176,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.432248,150.605487,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-30.380497,153.032631,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.457961,150.525943,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.452644,150.523815,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.425029,150.601505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.455265,150.519667,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-31.458825,152.925939,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,7,Australia,AU,New South Wales,-29.488368,153.102218,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-28.679346,153.60215,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-30.53739,152.902329,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,MALE,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-28.825013,153.300219,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,MALE,occurrenceRemarks withheld,2020,2,2,Australia,AU,New South Wales,-36.18352,149.35486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.491511,150.639116,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,FEMALE,occurrenceRemarks withheld,2020,2,2,Australia,AU,New South Wales,-36.18352,149.35486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.399619,150.624799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.430835,150.615788,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,20,Australia,AU,New South Wales,-32.022615,152.378675,EPSG:4326 +HUMAN_OBSERVATION,ODMP2302060B,1,,occurrenceRemarks withheld,2023,6,24,Australia,AU,New South Wales,-34.226993,150.822597,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-28.846215,153.302464,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-29.490605,153.108135,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-28.96827,153.434588,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,7,12,Australia,AU,New South Wales,-28.992784,153.436829,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-31.460823,152.913432,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-30.803565,150.027288,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.498603,150.554112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.398754,150.621104,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-31.464927,152.921168,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,6,4,Australia,AU,New South Wales,-34.00692,151.00368,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041400,1,,occurrenceRemarks withheld,2021,2,14,Australia,AU,New South Wales,-28.870978,153.267067,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101302,1,,occurrenceRemarks withheld,2020,6,20,Australia,AU,New South Wales,-30.382537,153.044,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-29.490142,153.110511,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-31.910186,152.409406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.389203,150.628834,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.434348,150.616994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.45886,150.525329,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,3,9,Australia,AU,New South Wales,-34.094181,150.986375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.446097,150.513017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.420601,150.609225,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-29.485576,153.103463,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-29.491459,153.096258,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-32.224416,152.194095,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102105,1,,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-32.712362,152.068194,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-28.61243,153.21666,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-29.490208,153.110195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419596,150.611799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.46924,150.530443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-34.446382,150.517307,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-28.927498,153.158075,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031803,1,,occurrenceRemarks withheld,2022,11,13,Australia,AU,New South Wales,-28.822219,153.316467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.440016,150.515918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419389,150.635913,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-33.768071,150.059118,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.397185,150.646283,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.451467,150.522206,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,23,Australia,AU,New South Wales,-29.48565,153.103473,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.423872,150.637419,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.458624,150.656031,EPSG:4326 +HUMAN_OBSERVATION,OKEM14042900,1,MALE,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-34.140954,150.790728,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.437318,150.60568,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-29.489563,153.103935,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.429519,150.614422,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2020,7,29,Australia,AU,New South Wales,-34.073291,150.859148,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,3,18,Australia,AU,New South Wales,-29.741249,151.061116,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.447949,150.516358,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-31.477972,152.927297,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-33.709721,150.786056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.452274,150.52289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.403389,150.65009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.465755,150.520358,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.388448,150.631727,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,12,Australia,AU,New South Wales,-29.490255,153.108172,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-31.459497,152.928861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.443266,150.518346,EPSG:4326 +HUMAN_OBSERVATION,OPRS04081700,1,,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-29.428979,153.167359,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.489463,150.638564,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,MALE,occurrenceRemarks withheld,2024,4,27,Australia,AU,New South Wales,-34.02005,150.993075,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-31.165077,152.951757,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.44647,150.516739,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-29.483895,153.104117,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-29.504677,152.824368,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,9,Australia,AU,New South Wales,-32.706571,152.063741,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-28.890161,153.315144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.425299,150.603292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.402404,150.645767,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251Q,1,,occurrenceRemarks withheld,2024,5,12,Australia,AU,New South Wales,-32.686273,151.654056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.454029,150.52052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.396383,150.627153,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.418852,150.632871,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091803,1,,occurrenceRemarks withheld,2024,8,25,Australia,AU,New South Wales,-32.70916,152.06673,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310310G,1,MALE,occurrenceRemarks withheld,2023,1,2,Australia,AU,New South Wales,-31.464663,152.92794,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.44759,150.517293,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-34.500349,150.563856,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.91479,152.381738,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190A,1,,occurrenceRemarks withheld,2024,8,5,Australia,AU,New South Wales,-31.973658,152.254209,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.386902,150.630574,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-30.341575,152.619522,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,16,Australia,AU,New South Wales,-29.490119,153.107421,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-30.290446,152.699633,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082308;ODFK23082309;ODFK2308230A;ODFK2308230B,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.137759,150.843593,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,3,4,Australia,AU,New South Wales,-31.474001,152.899582,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-30.399605,152.988323,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,FEMALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.845525,153.302578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.420658,150.630688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.437863,150.604968,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,17,Australia,AU,New South Wales,-33.717263,150.78429,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-30.296661,153.124797,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-29.81225,152.80718,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,24,Australia,AU,New South Wales,-32.705336,152.063593,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2022,8,18,Australia,AU,New South Wales,-30.08386,152.179389,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.42071,150.630099,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-34.098368,150.808546,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-31.466107,152.909507,EPSG:4326 +HUMAN_OBSERVATION,OJJS1208150Z,1,FEMALE,occurrenceRemarks withheld,2020,6,18,Australia,AU,New South Wales,-32.73989,152.101463,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-28.871902,153.296745,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,4,25,Australia,AU,New South Wales,-32.653944,151.790756,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.490979,150.470737,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.458786,150.532841,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.390077,150.626004,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,FEMALE,occurrenceRemarks withheld,2023,5,7,Australia,AU,New South Wales,-32.67359,151.67482,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,11,5,Australia,AU,New South Wales,-34.476,150.577567,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-34.045189,151.010064,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,5,18,Australia,AU,New South Wales,-29.489577,153.10387,EPSG:4326 +HUMAN_OBSERVATION,OJJS20051106,1,,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-30.579869,151.714462,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-30.345726,152.610215,EPSG:4326 +HUMAN_OBSERVATION,ODFK24030508,1,,occurrenceRemarks withheld,2024,1,5,Australia,AU,New South Wales,-32.733212,152.077563,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080305,1,,occurrenceRemarks withheld,2022,6,13,Australia,AU,New South Wales,-33.555788,149.548634,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003911,1,,occurrenceRemarks withheld,2023,3,5,Australia,AU,New South Wales,-28.829574,153.298075,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-31.468617,152.908714,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.465724,150.521502,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.458461,150.518549,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,23,Australia,AU,New South Wales,-29.489559,153.103849,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-29.490479,153.109492,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.456787,150.523148,EPSG:4326 +HUMAN_OBSERVATION,OIXR15112703;ODMP21070805,1,,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-33.955172,150.933067,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210C,1,,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-28.276269,153.392884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.423771,150.605392,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-31.466199,152.929598,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-32.676634,151.90778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.467305,150.520345,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,3,21,Australia,AU,New South Wales,-28.260597,153.402426,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,6,15,Australia,AU,New South Wales,-32.721097,151.992714,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-29.666912,152.868447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.438759,150.603289,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.427338,150.604746,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-31.48966,152.775869,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.463709,150.523945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.386168,150.625277,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-31.125268,152.820537,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-33.775948,150.0628,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131R,1,,occurrenceRemarks withheld,2023,10,16,Australia,AU,New South Wales,-31.472727,152.910158,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-32.229632,152.208268,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.464845,150.522203,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.11073,150.81844,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-31.020056,152.739734,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,1,Australia,AU,New South Wales,-31.452728,152.9133,EPSG:4326 +HUMAN_OBSERVATION,OPJG20060402,1,,occurrenceRemarks withheld,2020,3,9,Australia,AU,New South Wales,-32.2991,152.07814,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.454025,150.520781,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-33.491228,149.552133,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,30,Australia,AU,New South Wales,-29.485272,153.103688,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,1,11,Australia,AU,New South Wales,-28.2525,153.374722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.453997,150.520249,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,29,Australia,AU,New South Wales,-28.874261,153.378488,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,7,Australia,AU,New South Wales,-28.864637,153.293166,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041C,1,,occurrenceRemarks withheld,2022,8,27,Australia,AU,New South Wales,-29.632844,150.783953,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.215789,152.655689,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.39514,150.628634,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030Q,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-34.012389,150.9025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.465569,150.528103,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-28.260447,153.400174,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-34.053416,150.838978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.395577,150.642347,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.433118,150.614015,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.638566,152.794025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.447791,150.516536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.438814,150.518413,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042B,1,FEMALE,occurrenceRemarks withheld,2023,4,20,Australia,AU,New South Wales,-34.284048,150.58705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.420565,150.609226,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-28.817057,153.322321,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-32.724199,152.114096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.467613,150.520858,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,7,12,Australia,AU,New South Wales,-31.642109,152.793878,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-28.328511,152.565808,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-31.94825,152.30042,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.81222,153.313992,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,7,7,Australia,AU,New South Wales,-34.048247,150.995551,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,7,4,Australia,AU,New South Wales,-33.778621,150.055832,EPSG:4326 +HUMAN_OBSERVATION,OESM20102100;OJJS20102702,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-33.6881,151.1559,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.937691,152.452211,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,22,Australia,AU,New South Wales,-28.661336,153.609474,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,18,Australia,AU,New South Wales,-31.443876,152.924576,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.420596,150.627959,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.386856,150.630564,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004145,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.667113,153.090954,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003895,1,,occurrenceRemarks withheld,2023,1,8,Australia,AU,New South Wales,-28.24167,153.511168,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,2,16,Australia,AU,New South Wales,-31.94582,152.40417,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-34.44195,150.514816,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-31.454077,152.925107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.434971,150.617063,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433754,150.617065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.479679,150.533064,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,5,Australia,AU,New South Wales,-33.356554,149.972988,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2024,3,1,Australia,AU,New South Wales,-31.629319,152.786859,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.445546,150.516102,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-28.639176,153.480946,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.430897,150.615721,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.444037,152.889825,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,6,Australia,AU,New South Wales,-29.490222,153.108151,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.388235,150.624468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436111,150.520723,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-28.65505,153.59019,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,29,Australia,AU,New South Wales,-33.7108,150.78512,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-28.877092,153.049424,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2023,8,7,Australia,AU,New South Wales,-33.689354,149.563734,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.4516,150.517229,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102226,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-32.727935,152.009529,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.436324,150.609724,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003901,1,,occurrenceRemarks withheld,2023,6,26,Australia,AU,New South Wales,-28.666495,153.411934,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-32.586257,151.911101,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.810965,152.823947,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032807;OLHP2310050T,1,,occurrenceRemarks withheld,2022,10,13,Australia,AU,New South Wales,-32.157782,152.352531,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.385597,150.626522,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-34.0251,150.986372,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.429416,150.616514,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100407,1,,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-34.094798,150.983828,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052004,1,,occurrenceRemarks withheld,2024,4,28,Australia,AU,New South Wales,-32.06005,152.540692,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.433811,150.617216,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,7,22,Australia,AU,New South Wales,-31.986332,152.505439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.466455,150.524234,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100H,1,FEMALE,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-34.020781,150.990029,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-28.934629,153.177428,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130F,1,,occurrenceRemarks withheld,2020,8,2,Australia,AU,New South Wales,-34.149515,150.829553,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-34.447313,150.514341,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-31.13574,150.08917,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-28.589152,153.549545,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130C,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-31.47209,152.933578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.428516,150.598652,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2022,9,7,Australia,AU,New South Wales,-34.207721,150.784274,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,2,22,Australia,AU,New South Wales,-30.911362,153.0686,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,MALE,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-29.506027,152.824652,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-29.48566,153.10342,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-28.586525,153.555155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.400949,150.619965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.42966,150.602711,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-29.674618,152.840769,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.421633,150.608967,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003929,1,,occurrenceRemarks withheld,2023,6,22,Australia,AU,New South Wales,-28.874994,153.393931,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.450234,150.516094,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140D,1,MALE,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-30.517778,152.896484,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290G,1,,occurrenceRemarks withheld,2022,3,28,Australia,AU,New South Wales,-32.709429,152.062415,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.39447,150.629849,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.459815,150.519075,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,11,20,Australia,AU,New South Wales,-34.46885,150.498,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.430727,150.607925,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.433206,150.605166,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,10,18,Australia,AU,New South Wales,-28.81467,153.27553,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,1,Australia,AU,New South Wales,-29.485688,153.103774,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-28.960009,153.395308,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.466726,150.521135,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,7,Australia,AU,New South Wales,-28.626289,153.489945,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,MALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-34.091345,150.828305,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-31.424843,152.882185,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.465783,150.520412,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-28.299964,153.389223,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221L,1,,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-32.650668,151.635202,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-28.257746,153.400572,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,7,Australia,AU,New South Wales,-34.068368,150.913678,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-31.355661,152.218526,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.388452,150.631498,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,3,12,Australia,AU,New South Wales,-33.712916,150.785233,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-31.473725,152.86834,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.459906,150.51916,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250J,1,MALE,occurrenceRemarks withheld,2024,9,24,Australia,AU,New South Wales,-34.763847,146.601837,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,30,Australia,AU,New South Wales,-28.662022,153.60972,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,5,Australia,AU,New South Wales,-29.490437,153.109353,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-30.24079,152.90636,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,1,12,Australia,AU,New South Wales,-31.466547,152.928616,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.475711,150.533018,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-34.045661,151.008325,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140Y,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-28.535791,153.084825,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210I,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-28.267041,153.394064,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-36.522201,149.977337,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-34.094834,150.983913,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-33.715354,150.785391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.447257,150.513766,EPSG:4326 +HUMAN_OBSERVATION,ODMP23070402,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.407587,153.001329,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.435369,150.616214,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090503;OLHP23090504,1,,occurrenceRemarks withheld,2021,1,24,Australia,AU,New South Wales,-30.493985,152.941816,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.90034,152.72868,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.446473,150.513779,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-29.025463,153.286418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.418153,150.597491,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.466454,150.524158,EPSG:4326 +HUMAN_OBSERVATION,SCHM-035,1,,occurrenceRemarks withheld,2020,8,,Australia,AU,New South Wales,-34.278848,150.781648,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-31.792494,152.608876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.421095,150.636953,EPSG:4326 +HUMAN_OBSERVATION,OPJG22081704,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.534592,152.708733,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102201,1,,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-32.739,152.090922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.455582,150.608826,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.388094,150.63116,EPSG:4326 +HUMAN_OBSERVATION,OPUR23030700,1,,occurrenceRemarks withheld,2023,5,26,Australia,AU,New South Wales,-31.933339,152.40555,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-34.440335,150.61887,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.489462,150.638487,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,21,Australia,AU,New South Wales,-29.490124,153.110522,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,1,11,Australia,AU,New South Wales,-31.451891,152.897379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.434961,150.609131,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,2,5,Australia,AU,New South Wales,-32.722468,152.077227,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-32.706544,152.06372,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,MALE,occurrenceRemarks withheld,2023,4,27,Australia,AU,New South Wales,-28.845967,153.316506,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;ORSF21090200,1,MALE,occurrenceRemarks withheld,2021,,,Australia,AU,New South Wales,-32.43791,149.848566,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.395808,150.629116,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-30.341503,152.619471,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-28.824247,153.301402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.420658,150.630677,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,7,3,Australia,AU,New South Wales,-31.875282,152.385639,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,3,18,Australia,AU,New South Wales,-34.26599,150.68562,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-30.331223,152.615807,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,26,Australia,AU,New South Wales,-28.823033,153.321716,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.430803,150.61185,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-31.463887,152.924847,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,2,17,Australia,AU,New South Wales,-30.4613,152.89138,EPSG:4326 +HUMAN_OBSERVATION,Obs_1523,1,,occurrenceRemarks withheld,2023,11,25,Australia,AU,New South Wales,-32.243349,151.990528,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,MALE,occurrenceRemarks withheld,2020,8,10,Australia,AU,New South Wales,-29.834745,150.845125,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-33.71013,150.785729,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,6,19,Australia,AU,New South Wales,-34.03451,151.02698,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2022,6,1,Australia,AU,New South Wales,-29.840897,152.242562,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.39618,150.640873,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,6,10,Australia,AU,New South Wales,-33.777864,150.056592,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,4,27,Australia,AU,New South Wales,-32.706728,152.063678,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,2,14,Australia,AU,New South Wales,-31.456429,152.916661,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,2,13,Australia,AU,New South Wales,-31.47046,152.907331,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-31.633293,152.785306,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.429437,152.885379,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-34.021161,150.985078,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042606,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-31.961389,151.846984,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.435369,150.616214,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-28.850792,153.313629,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.485543,150.636333,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,5,Australia,AU,New South Wales,-29.49017,153.101156,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,3,17,Australia,AU,New South Wales,-29.68938,152.933894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,7,Australia,AU,New South Wales,-34.438192,150.616254,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111307,1,,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-32.693439,151.650573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.446964,150.517094,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-29.490217,153.108178,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,29,Australia,AU,New South Wales,-29.488821,153.094048,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070B,1,,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-32.765351,152.034822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.397948,150.621398,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-29.484581,153.095893,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,1,30,Australia,AU,New South Wales,-33.97151,150.89337,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-31.460634,152.918972,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-31.877279,148.54409,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.422646,150.636974,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.446674,150.516145,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-28.393545,153.541208,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.464872,150.521756,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.441974,152.902386,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-30.399605,152.988323,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-32.219628,152.19096,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070P,1,,occurrenceRemarks withheld,2020,12,28,Australia,AU,New South Wales,-34.763879,146.562101,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-34.046504,151.007009,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-31.413327,152.126308,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-28.844246,153.302783,EPSG:4326 +HUMAN_OBSERVATION,OJJS1912230A,1,FEMALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-29.494158,153.094708,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,1,Australia,AU,New South Wales,-28.35569,153.163396,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.482965,150.531498,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-28.585389,153.0693,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,2,3,Australia,AU,New South Wales,-31.446349,152.918296,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-29.484656,153.095893,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.435917,150.618854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.395859,150.642959,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-32.769544,152.115157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.394583,150.643626,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.383768,150.622876,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150U,1,,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-31.786665,152.70897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427068,150.604765,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-29.478029,153.104037,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-28.631954,153.502334,EPSG:4326 +HUMAN_OBSERVATION,OJMM08020900,1,FEMALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-33.975565,151.017493,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.389721,150.628124,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-34.408735,150.532126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.455385,150.65918,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-29.490595,153.108199,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,3,3,Australia,AU,New South Wales,-29.729649,151.084576,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.460307,150.566447,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-31.459953,152.924026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.385853,150.627178,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,24,Australia,AU,New South Wales,-29.642903,152.829547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.388655,150.630351,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-29.483773,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,14,Australia,AU,New South Wales,-29.487976,153.092111,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-28.901462,153.296258,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.439335,150.518767,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.421755,150.6375,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,17,Australia,AU,New South Wales,-33.7063,150.786149,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003886,1,,occurrenceRemarks withheld,2023,3,4,Australia,AU,New South Wales,-28.811929,153.311649,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-28.618525,153.249624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.420857,150.62793,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-29.490201,153.110037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.395906,150.642121,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.427516,150.594557,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.437973,150.604138,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.463905,150.521591,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,7,11,Australia,AU,New South Wales,-34.113878,150.937199,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.43188,150.612026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.439243,150.617007,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.420681,150.609179,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.422614,150.637204,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-28.949687,153.434162,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.44649,150.516847,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,1,,occurrenceRemarks withheld,2022,5,16,Australia,AU,New South Wales,-28.62623,153.427337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.469457,150.526867,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-31.910186,152.409406,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,11,8,Australia,AU,New South Wales,-30.300468,153.12381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.437402,150.604905,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-30.291368,153.109336,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082308;ODFK23082309;ODFK2308230A;ODFK2308230B,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.16744,150.814484,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-28.827512,153.288381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.425996,150.597919,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-28.662281,153.399388,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-31.424892,152.875432,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,3,17,Australia,AU,New South Wales,-29.49018,153.110527,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.422981,150.607852,EPSG:4326 +HUMAN_OBSERVATION,ODFK23122107,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-34.077914,150.170879,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-29.490563,153.108113,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.483555,150.530838,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,6,Australia,AU,New South Wales,-31.474203,152.89825,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.417531,150.633082,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-29.490614,153.109294,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.457833,150.527144,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,,occurrenceRemarks withheld,2023,1,13,Australia,AU,New South Wales,-32.721947,151.993994,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.096581,150.985308,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.953149,153.369052,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-36.595044,149.951075,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-28.250411,153.37174,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130B,1,MALE,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-30.885807,153.071468,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-29.490199,153.110324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.396464,150.627172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.433471,150.61642,EPSG:4326 +HUMAN_OBSERVATION,OPUR15101800,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-30.489236,151.641306,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-29.487882,153.091752,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,8,Australia,AU,New South Wales,-29.479696,153.104192,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.426817,150.603956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.38731,150.631161,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.457207,150.527424,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,15,Australia,AU,New South Wales,-29.490208,153.109793,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,12,Australia,AU,New South Wales,-29.485632,153.103913,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-34.114161,150.938471,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.420371,150.608992,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.446575,150.514385,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131F,1,FEMALE,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-31.470478,152.923687,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-28.36428,153.560834,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.433196,150.615253,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-29.490236,153.108215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.488049,150.635359,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030E,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.737,152.05636,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-28.811791,153.376231,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-28.503093,152.97089,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-30.300157,153.124319,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,26,Australia,AU,New South Wales,-31.440281,152.9038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.464285,150.522154,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.395536,150.642566,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,21,Australia,AU,New South Wales,-33.705505,150.787065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.436014,150.616435,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004283,1,MALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.931395,153.272785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.465321,150.520741,EPSG:4326 +HUMAN_OBSERVATION,OPUR16092100,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-33.509987,149.703121,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.423701,150.637478,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021507,1,MALE,occurrenceRemarks withheld,2024,9,11,Australia,AU,New South Wales,-30.876775,153.071134,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-31.447238,152.926863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.428332,150.598462,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.494173,150.640609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.439536,150.603865,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251F,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-32.738165,152.173118,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420128,150.63451,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-29.485571,153.103822,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,3,Australia,AU,New South Wales,-29.490493,153.108135,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030K,1,MALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-31.469198,152.91861,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-31.915492,152.374087,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-31.446475,152.905795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.466177,150.52384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.466114,150.522078,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,24,Australia,AU,New South Wales,-34.439121,150.615814,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,13,Australia,AU,New South Wales,-31.435087,152.884877,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.446563,150.516453,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.415374,150.639964,EPSG:4326 +HUMAN_OBSERVATION,OPUR20091100,1,,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-34.057627,150.847998,EPSG:4326 +HUMAN_OBSERVATION,OPJG22022103,1,,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-31.802226,152.602233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.485745,150.637906,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-29.485333,153.103913,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.448975,150.516251,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,3,27,Australia,AU,New South Wales,-31.458826,152.9152,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-28.824059,153.303014,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042M,1,,occurrenceRemarks withheld,2023,1,9,Australia,AU,New South Wales,-33.961723,151.149711,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,15,Australia,AU,New South Wales,-29.485599,153.103806,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,13,Australia,AU,New South Wales,-28.56031,153.12396,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.396434,150.644716,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260M,1,,occurrenceRemarks withheld,2020,3,5,Australia,AU,New South Wales,-32.731768,152.039969,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.385388,150.62456,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-28.817757,153.303301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.395717,150.626269,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,5,17,Australia,AU,New South Wales,-28.630438,153.425634,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.08358,150.978821,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.446382,150.513749,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210D,1,FEMALE,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-28.268696,153.395846,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110F,1,,occurrenceRemarks withheld,2023,3,30,Australia,AU,New South Wales,-33.564904,150.675242,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004285,1,FEMALE,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-29.055077,153.306243,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004199,1,FEMALE,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.488685,153.022884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.420721,150.626987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.398482,150.642016,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.439502,150.603931,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,2,13,Australia,AU,New South Wales,-30.441575,151.66884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-34.43981,150.517284,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,6,5,Australia,AU,New South Wales,-28.930457,153.329859,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-34.101493,150.96115,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.420659,150.627924,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180D,1,,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-28.864548,153.293334,EPSG:4326 +HUMAN_OBSERVATION,OLHP24071200,1,,occurrenceRemarks withheld,2024,6,24,Australia,AU,New South Wales,-32.565734,151.62532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.488651,150.634308,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-28.615161,153.369056,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-29.807806,152.811214,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004032,1,,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-28.839311,153.036615,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.941392,153.361038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.392427,150.633746,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.941392,153.361038,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-32.710698,152.06574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.395778,150.646703,EPSG:4326 +HUMAN_OBSERVATION,Obs_2557,1,,occurrenceRemarks withheld,2024,5,27,Australia,AU,New South Wales,-34.117089,150.796332,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-31.467055,152.899826,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,5,29,Australia,AU,New South Wales,-34.23673,150.76611,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-34.01437,150.878723,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-29.177135,150.183852,EPSG:4326 +HUMAN_OBSERVATION,OJJS20061001,1,,occurrenceRemarks withheld,2020,5,26,Australia,AU,New South Wales,-34.408105,150.87045,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.420632,150.630732,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-29.667322,152.868705,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-31.449186,152.924403,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-33.460525,150.588079,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-32.223426,152.189959,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.465049,150.522458,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-31.629903,152.787095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419596,150.611799,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-28.817999,153.29927,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.821668,153.3033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.464213,150.522581,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-29.489825,153.101639,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-32.739099,152.059278,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-30.240487,153.054871,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.462295,152.922143,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-29.677381,152.877828,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080900,1,MALE,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-32.717574,151.718278,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-29.666874,152.867975,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.420737,150.630098,EPSG:4326 +HUMAN_OBSERVATION,OLHP24013005,1,,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-32.916872,151.554827,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-29.489531,153.102642,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.821933,153.302389,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.430713,150.611374,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.411563,150.596135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.432462,150.605394,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.104761,150.813678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.43319,150.615863,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002758,1,MALE,occurrenceRemarks withheld,2022,6,20,Australia,AU,New South Wales,-29.483853,153.104128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.424501,150.604436,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-28.68934,153.60949,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2020,3,23,Australia,AU,New South Wales,-31.460209,152.913159,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-32.381509,152.492294,EPSG:4326 +HUMAN_OBSERVATION,OJJS10032403,1,,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-28.26485,153.419273,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.537916,150.63226,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,18,Australia,AU,New South Wales,-33.719615,150.782969,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-28.454802,152.991787,EPSG:4326 +HUMAN_OBSERVATION,OPJG19043000,1,,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-30.42822,152.97101,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032403;OMFZ23032405,1,,occurrenceRemarks withheld,2023,1,10,Australia,AU,New South Wales,-34.87874,150.575889,EPSG:4326 +HUMAN_OBSERVATION,OPJG22081703,1,,occurrenceRemarks withheld,2024,4,19,Australia,AU,New South Wales,-33.053353,151.323158,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.393142,150.645124,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-30.350074,151.664803,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.451557,150.517317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.463324,150.524065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.420296,150.627369,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-31.483446,152.91618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.466696,150.520994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.43267,150.60405,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.438488,150.617573,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102500,1,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.763563,146.603422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.434894,150.608948,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.429642,150.614212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.488251,150.6374,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,20,Australia,AU,New South Wales,-31.475555,152.923393,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.293679,149.324895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.395424,150.643298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.431805,150.611898,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.861197,153.280642,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-31.251,152.962004,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,22,Australia,AU,New South Wales,-28.731887,153.43429,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.881036,153.323595,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-31.479611,152.905944,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.438632,150.604663,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003942,1,,occurrenceRemarks withheld,2023,5,3,Australia,AU,New South Wales,-28.928931,153.209526,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030X,1,,occurrenceRemarks withheld,2023,8,18,Australia,AU,New South Wales,-33.687268,150.262595,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-34.441112,150.617128,EPSG:4326 +HUMAN_OBSERVATION,OLHP23071019,1,,occurrenceRemarks withheld,2023,4,25,Australia,AU,New South Wales,-31.479918,152.913301,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004252,1,FEMALE,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-28.60426,153.400546,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,3,9,Australia,AU,New South Wales,-34.092132,150.986111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.441578,150.517362,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-29.490175,153.100743,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.3833,150.623368,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,6,20,Australia,AU,New South Wales,-31.45318,152.913236,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.395302,150.630479,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303230E,1,,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-32.848503,151.452197,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-28.388033,153.563655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.394953,150.640385,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.392846,150.639575,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-28.648221,153.387305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.46429,150.524625,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111207,1,,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-32.735538,152.173585,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-29.485646,153.103731,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.68121,153.60155,EPSG:4326 +HUMAN_OBSERVATION,ODMP22100605,1,FEMALE,occurrenceRemarks withheld,2022,9,7,Australia,AU,New South Wales,-28.643692,153.554897,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-31.194397,152.915361,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041404,1,,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-33.528787,149.596912,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,7,Australia,AU,New South Wales,-29.051534,153.302775,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,FEMALE,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-28.94236,153.062018,EPSG:4326 +HUMAN_OBSERVATION,OEIJ21090900,1,,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-30.917722,153.062833,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-31.444289,152.907318,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-31.443855,152.907177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.441623,150.51735,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.418904,150.632739,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-32.706418,152.063323,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-31.241792,152.901649,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-28.818677,153.298166,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,MALE,occurrenceRemarks withheld,2022,8,18,Australia,AU,New South Wales,-34.09361,150.808018,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,29,Australia,AU,New South Wales,-28.626581,153.403554,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,3,29,Australia,AU,New South Wales,-32.511437,151.784837,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.44657,150.519902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.464528,150.522114,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.44657,150.519902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.418099,150.597982,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.68121,153.60155,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,3,9,Australia,AU,New South Wales,-36.576974,149.950453,EPSG:4326 +HUMAN_OBSERVATION,ODFK2404260C,1,,occurrenceRemarks withheld,2024,4,12,Australia,AU,New South Wales,-32.086565,152.258665,EPSG:4326 +HUMAN_OBSERVATION,OLHP23071102,1,MALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-29.650135,152.865295,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190K,1,MALE,occurrenceRemarks withheld,2024,9,5,Australia,AU,New South Wales,-32.069776,152.540594,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.429528,150.614422,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-28.252222,153.374444,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.422981,150.607852,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,7,Australia,AU,New South Wales,-28.349908,153.34652,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-36.248408,149.417403,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-28.603203,153.092748,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151L,1,,occurrenceRemarks withheld,2022,7,14,Australia,AU,New South Wales,-28.822848,153.304113,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.438004,150.606618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.399305,150.645375,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,4,6,Australia,AU,New South Wales,-36.577361,149.933675,EPSG:4326 +HUMAN_OBSERVATION,OJBL97031300,1,,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-31.526558,151.631137,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-28.830728,153.283431,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-29.489769,153.105292,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100T,1,,occurrenceRemarks withheld,2023,11,6,Australia,AU,Victoria,-38.711062,146.165938,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,4,Australia,AU,New South Wales,-29.488744,153.093959,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-30.23833,152.90455,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-29.488471,153.093367,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.805797,153.342482,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,1,Australia,AU,New South Wales,-29.488802,153.093978,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260C,1,,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-32.710742,152.061019,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,2,12,Australia,AU,New South Wales,-33.825788,151.203649,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121408,1,,occurrenceRemarks withheld,2023,1,26,Australia,AU,New South Wales,-28.389309,153.562095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.389451,150.629512,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.420956,150.630266,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202,1,,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-30.653,151.49,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.421321,150.626742,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.722451,152.077228,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.44652,150.514332,EPSG:4326 +HUMAN_OBSERVATION,OPJG21060804,1,,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-31.515379,152.72318,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-31.438655,152.908264,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100402,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-32.582884,151.78239,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031516,1,,occurrenceRemarks withheld,2022,7,23,Australia,AU,New South Wales,-28.666682,153.283805,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.454496,150.515565,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-31.127211,152.793519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.430886,150.614699,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-31.439976,152.903897,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,4,16,Australia,AU,New South Wales,-28.821335,153.302231,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.391025,150.628402,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.395888,150.642132,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,10,Australia,AU,New South Wales,-31.459822,152.92433,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-29.477903,153.104053,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,3,2,Australia,AU,New South Wales,-31.489287,152.907779,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.451611,150.524411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.452018,150.517391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.494135,150.640533,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.465817,150.521651,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.438142,150.606342,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132F,1,,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-31.455164,152.922891,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.17452,150.80026,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,26,Australia,AU,New South Wales,-31.45372,152.921496,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.49068,150.638529,EPSG:4326 +HUMAN_OBSERVATION,SHARM,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-32.565707,149.646068,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,15,Australia,AU,New South Wales,-31.470606,152.912431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.491311,150.638522,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,FEMALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-32.973135,151.532728,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.465698,150.52159,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,12,Australia,AU,New South Wales,-29.488784,153.101955,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,FEMALE,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-31.933124,152.415176,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,10,1,Australia,AU,New South Wales,-29.485692,153.103463,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.396751,150.644348,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,3,13,Australia,AU,New South Wales,-30.37491,153.01713,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-29.320091,152.840035,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,29,Australia,AU,New South Wales,-29.489479,153.102867,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251F,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-32.714128,152.153782,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.388214,150.631755,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111505,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.06232,150.996362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.412796,150.598341,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,MALE,occurrenceRemarks withheld,2022,9,6,Australia,AU,New South Wales,-34.111104,150.802439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.420635,150.627196,EPSG:4326 +HUMAN_OBSERVATION,OPUR21080904;OMFZ23032808,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-32.157662,152.361906,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-28.309888,152.478835,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-29.51492,152.811536,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,28,Australia,AU,New South Wales,-28.729078,153.433168,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.458383,150.525376,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-30.266518,153.109728,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,17,Australia,AU,New South Wales,-32.706517,152.063773,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.41909,150.610323,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.384708,150.623915,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.388144,150.624449,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-28.83787,153.239028,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-31.455656,152.926432,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.453989,150.520325,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,10,9,Australia,AU,New South Wales,-29.642883,152.831683,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032907,1,,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-32.737065,152.040754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.386761,150.625184,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-29.490535,153.109379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.4287,150.600203,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.42677,150.601542,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-34.577916,150.252967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.446649,150.515819,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.447701,150.518748,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,7,Australia,AU,New South Wales,-28.818006,153.29541,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,,occurrenceRemarks withheld,2022,6,3,Australia,AU,New South Wales,-31.439311,152.904809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.386038,150.626499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.393923,150.644482,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100501,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-31.374754,152.798162,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-31.481206,152.922993,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-29.354409,150.200421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-34.438776,150.616161,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-31.422741,152.107825,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,7,25,Australia,AU,New South Wales,-28.259317,153.402111,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-31.83022,152.42921,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,FEMALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-28.982474,153.41537,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.480007,150.534154,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.433171,150.61582,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122101,1,,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-31.880154,152.384457,EPSG:4326 +HUMAN_OBSERVATION,OPJG20060401,1,,occurrenceRemarks withheld,2020,5,29,Australia,AU,New South Wales,-28.30651,153.55964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.447225,150.513103,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-28.400022,153.556688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.452747,150.517315,EPSG:4326 +HUMAN_OBSERVATION,BREHS-HO,1,,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-33.404535,151.088534,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-31.436245,152.916045,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-29.490222,153.109755,EPSG:4326 +HUMAN_OBSERVATION,OPUR20050100;OMFZ23032902,1,,occurrenceRemarks withheld,2023,2,16,Australia,AU,New South Wales,-30.989232,150.244031,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060500,1,,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-28.83683,153.315839,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-32.229858,152.203368,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-31.480814,152.921471,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.395659,150.642856,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.450495,150.604128,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-29.491879,153.096666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.417354,150.601322,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032109,1,,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-32.73087,152.141361,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083000,1,FEMALE,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-33.501137,150.747633,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.910046,153.346548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-34.440907,150.616307,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,FEMALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-36.06671,149.316236,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210J,1,,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-28.274429,153.394982,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-29.485225,153.104176,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140X,1,,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-31.435541,152.908978,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,10,10,Australia,AU,New South Wales,-28.360278,153.291111,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-31.641968,152.809107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.419156,150.603587,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.388214,150.631755,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-32.242985,152.213451,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,17,Australia,AU,New South Wales,-36.067117,149.316856,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-29.001489,153.282702,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.48552,150.636062,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,6,26,Australia,AU,New South Wales,-28.816748,153.321446,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,10,Australia,AU,New South Wales,-29.490128,153.10748,EPSG:4326 +HUMAN_OBSERVATION,OLHP24071205,1,MALE,occurrenceRemarks withheld,2024,6,29,Australia,AU,New South Wales,-31.456442,152.929425,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-29.485571,153.103758,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-28.738895,153.390849,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-33.709666,150.785196,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.419635,150.609622,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.415438,150.640027,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-28.867701,153.291892,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2022,8,29,Australia,AU,New South Wales,-28.98796,153.288143,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,FEMALE,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-34.072488,150.835933,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,4,Australia,AU,New South Wales,-29.490524,153.109448,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.420645,150.609191,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-29.490623,153.108178,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,21,Australia,AU,New South Wales,-31.914225,152.386019,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.438762,150.617282,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-31.526396,152.791737,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.435715,150.607162,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-29.483806,153.095233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.434962,150.608261,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251B,1,,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-32.699775,152.064619,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.418809,150.632948,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260C,1,,occurrenceRemarks withheld,2021,1,6,Australia,AU,New South Wales,-32.706861,152.06353,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,MALE,occurrenceRemarks withheld,2022,4,4,Australia,AU,New South Wales,-34.068105,150.807228,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-34.072934,150.856933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.420639,150.630645,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.169438,152.817132,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-28.999887,153.375432,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-34.045474,151.008744,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-33.713876,150.785124,EPSG:4326 +HUMAN_OBSERVATION,OLHP24071206,1,,occurrenceRemarks withheld,2024,6,9,Australia,AU,New South Wales,-32.058882,152.541045,EPSG:4326 +HUMAN_OBSERVATION,OVGI98110201,1,FEMALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-30.480107,151.740357,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.399747,150.624882,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-34.153305,150.792357,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,MALE,occurrenceRemarks withheld,2020,6,18,Australia,AU,New South Wales,-28.625416,153.007718,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.391866,150.644409,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,1,MALE,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-28.626373,153.427687,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.465801,150.522664,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.446332,150.513957,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,8,6,Australia,AU,New South Wales,-33.77411,150.080328,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-33.94594,150.913647,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-31.440969,152.923632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.388951,150.63069,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-31.468126,152.91638,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-34.143542,150.795035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.459971,150.525438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.488486,150.63747,EPSG:4326 +HUMAN_OBSERVATION,OJJS20080303,1,,occurrenceRemarks withheld,2020,7,29,Australia,AU,New South Wales,-32.59321,151.77068,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091709,1,FEMALE,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-34.142425,150.994495,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-29.490385,153.109342,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.387066,150.630689,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-31.946553,152.421401,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,2,20,Australia,AU,New South Wales,-32.72578,152.17355,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260L,1,MALE,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-31.467259,152.909758,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-36.556654,150.010499,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2020,12,12,Australia,AU,New South Wales,-32.736745,152.040714,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260V,1,FEMALE,occurrenceRemarks withheld,2020,2,2,Australia,AU,New South Wales,-32.759137,152.103295,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.651946,152.818343,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435366,150.615115,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.466268,150.52302,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-29.48961,153.103913,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-29.480672,153.104096,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-29.49004,153.101118,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004172,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-28.268646,153.472453,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004237,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.931581,153.273098,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-31.643396,152.793922,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,9,12,Australia,AU,New South Wales,-32.729651,152.000911,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060500,1,,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-28.840513,153.31217,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2023,12,11,Australia,AU,New South Wales,-33.516421,149.548002,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,3,Australia,AU,New South Wales,-29.476782,153.104916,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-29.779303,150.979274,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,3,24,Australia,AU,New South Wales,-31.459167,152.928887,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.422562,150.607189,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-31.453137,152.925969,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,4,2,Australia,AU,New South Wales,-31.465777,152.911256,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-31.64041,152.789189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-34.495616,150.524983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-31.452558,152.879032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.420502,150.609249,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.447774,150.513044,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.48934,150.63872,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.398598,153.556187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.389792,150.628067,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154W,1,MALE,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-28.768431,153.49754,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-31.479999,152.914724,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2024,10,16,Australia,AU,New South Wales,-33.964722,150.965833,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181Q,1,MALE,occurrenceRemarks withheld,2022,9,10,Australia,AU,New South Wales,-28.383579,153.561793,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111506,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-32.24532,151.694853,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.560471,152.209893,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.420782,150.630108,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140O,1,FEMALE,occurrenceRemarks withheld,2022,3,7,Australia,AU,New South Wales,-32.763889,152.113547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.438453,150.615789,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.446329,150.513826,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.451607,150.515324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.446122,150.513811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.42011,150.634489,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140X,1,,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-31.443779,152.904605,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.447038,150.516308,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,2,4,Australia,AU,New South Wales,-28.398928,153.555848,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.424476,150.604556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.423744,150.637324,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,5,19,Australia,AU,New South Wales,-31.444719,152.91574,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO,1,,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-30.415963,152.948669,EPSG:4326 +HUMAN_OBSERVATION,OLHP23071019,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.479773,152.913215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.438588,150.617603,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,6,30,Australia,AU,New South Wales,-34.078737,150.837478,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-34.094764,150.983926,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020703,1,,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-30.38791,152.932654,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-33.502354,149.347514,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,2,20,Australia,AU,New South Wales,-31.45219,152.912566,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.631096,152.756048,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-34.20747,150.725647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.447592,150.514279,EPSG:4326 +PRESERVED_SPECIMEN,OICG17030600,1,,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-28.389677,153.556471,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.296967,149.313139,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-34.053416,150.838978,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,FEMALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.95995,153.395278,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210U,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-32.710711,152.060844,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,2,6,Australia,AU,New South Wales,-30.324668,152.985286,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060Z,1,MALE,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-30.298884,153.124549,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100308,1,,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-31.441098,152.911128,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-28.397143,153.557389,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-30.421973,153.012047,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-28.864616,153.293102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.420658,150.609376,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-29.485482,153.103532,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0005721,1,FEMALE,occurrenceRemarks withheld,2024,7,24,Australia,AU,New South Wales,-33.995358,150.996577,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.420634,150.630841,EPSG:4326 +HUMAN_OBSERVATION,ODFK24041700,1,,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-30.43784,152.90511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.437545,150.607143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419075,150.610052,EPSG:4326 +HUMAN_OBSERVATION,OJJS06031407,1,FEMALE,occurrenceRemarks withheld,2020,5,20,Australia,AU,New South Wales,-34.545781,150.511437,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,8,17,Australia,AU,New South Wales,-28.257824,153.400684,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,1,Australia,AU,New South Wales,-29.485713,153.089722,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-29.661971,152.879112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.462403,150.534726,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-29.477371,153.104197,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-28.692655,153.383637,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.451872,150.515523,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435492,150.61559,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,12,8,Australia,AU,New South Wales,-34.306234,150.738184,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.439381,150.603271,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-28.936406,153.288698,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100Y,1,MALE,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-32.73255,152.013478,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.42094,150.628025,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003837,1,FEMALE,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-28.693291,153.49553,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.446562,150.518162,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041A,1,FEMALE,occurrenceRemarks withheld,2022,7,3,Australia,AU,New South Wales,-29.778838,151.025245,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,16,Australia,AU,New South Wales,-29.490507,153.108178,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-36.547428,150.01112,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-28.95972,153.395443,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-34.190016,150.790474,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-33.710166,150.785627,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.438892,150.604101,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.45256,150.524079,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-28.644927,153.404449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.487992,150.635208,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,21,Australia,AU,New South Wales,-33.780027,150.055816,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,,occurrenceRemarks withheld,2024,2,23,Australia,AU,New South Wales,-34.027732,150.988775,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2023,6,24,Australia,AU,New South Wales,-36.656364,149.937727,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-29.012361,153.271235,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.434473,150.616457,EPSG:4326 +HUMAN_OBSERVATION,Obs_0229,1,FEMALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.45393,152.925261,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022604,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.533373,152.704503,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-34.213357,150.799325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.433074,150.615931,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.465706,150.521502,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004123,1,FEMALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.863762,153.178153,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080100,1,,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-30.233101,153.053889,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-29.490166,153.109755,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210U,1,,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-32.710711,152.060844,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-33.716973,150.785265,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132J,1,,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-31.474266,152.93177,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-28.824308,153.320345,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.872021,153.339182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.417881,150.601546,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003934,1,MALE,occurrenceRemarks withheld,2023,6,23,Australia,AU,New South Wales,-28.650301,153.46202,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220Z,1,,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-32.748356,152.067513,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.485216,150.637116,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-33.7064,150.786272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.44703,150.515895,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-30.314076,152.857337,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-31.425961,152.882485,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-29.490189,153.109755,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.399535,150.616807,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500,1,,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-28.58252,153.53868,EPSG:4326 +HUMAN_OBSERVATION,OJJS17032800,1,,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-30.414646,150.259326,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.490643,150.638487,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153X,1,,occurrenceRemarks withheld,2022,10,2,Australia,AU,New South Wales,-28.492487,153.062266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.388557,150.629451,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-28.808246,153.261976,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.452324,150.523106,EPSG:4326 +HUMAN_OBSERVATION,OIXR17090600,1,,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-30.59987,153.007023,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.426842,150.604282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.494257,150.640791,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.465726,150.521621,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.465683,150.52171,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR1511120M;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-28.70899,153.60117,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-29.477628,153.104348,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.453414,150.522181,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.395255,150.630338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.399582,150.616871,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.216754,152.192089,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.395133,150.6292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.464348,150.522109,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,20,Australia,AU,New South Wales,-33.716996,150.785187,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121107,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-30.884454,153.07276,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,2,16,Australia,AU,New South Wales,-31.62955,152.785915,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210X,1,,occurrenceRemarks withheld,2022,2,2,Australia,AU,New South Wales,-32.708155,152.067434,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.429441,150.615033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.444772,150.514384,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260C,1,,occurrenceRemarks withheld,2020,12,16,Australia,AU,New South Wales,-32.710089,152.060935,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-29.490026,153.110554,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.42101,150.630264,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-28.874167,153.445597,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,MALE,occurrenceRemarks withheld,2024,4,7,Australia,AU,New South Wales,-34.095222,150.984453,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.445995,150.514217,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.465853,150.522075,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.388236,150.631047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.465841,150.521498,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-32.706574,152.063724,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.464367,150.522173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.389655,150.62706,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-31.460223,152.898285,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.343746,152.608995,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.420658,150.630677,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.427149,150.603381,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-31.426997,152.895614,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-31.440204,152.922383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.418983,150.609467,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,20,Australia,AU,New South Wales,-33.71912,150.785257,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,5,Australia,AU,New South Wales,-31.474141,152.900315,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-30.221585,152.72551,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-34.020579,150.895931,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310040D,1,MALE,occurrenceRemarks withheld,2021,2,9,Australia,AU,New South Wales,-32.590289,151.774065,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.419663,150.609665,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-28.889132,153.229587,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,MALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-34.15014,150.823073,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-28.829782,153.323016,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433754,150.617065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.48803,150.636688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.432823,150.609997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.491909,150.639148,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041305,1,,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-31.429558,152.911078,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.320689,153.463836,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,2,10,Australia,AU,New South Wales,-34.130538,150.982615,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,13,Australia,AU,New South Wales,-28.766222,153.018709,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.386741,150.625076,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-28.82599,153.31452,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420262,150.610333,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,7,Australia,AU,New South Wales,-33.706021,150.786172,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,4,25,Australia,AU,New South Wales,-28.813914,153.334641,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100313,1,FEMALE,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-34.102502,150.80927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.429287,150.614515,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.44639,150.51414,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,4,Australia,AU,New South Wales,-31.455648,152.926365,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011003,1,,occurrenceRemarks withheld,2024,4,1,Australia,AU,New South Wales,-30.43151,152.947353,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-34.199921,150.780214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.38557,150.626523,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.424557,150.604564,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,21,Australia,AU,New South Wales,-31.911916,152.385525,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-29.490367,153.108237,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,26,Australia,AU,New South Wales,-29.49039,153.107979,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250E,1,MALE,occurrenceRemarks withheld,2024,9,29,Australia,AU,New South Wales,-34.064692,150.839405,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.446053,150.514422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.465702,150.521307,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,5,15,Australia,AU,New South Wales,-32.706596,152.063819,EPSG:4326 +HUMAN_OBSERVATION,ODMP23070402,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-30.408846,152.995108,EPSG:4326 +HUMAN_OBSERVATION,Obs_0645,1,MALE,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-33.709615,149.422883,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-31.449383,152.879669,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435704,150.602919,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,7,5,Australia,AU,New South Wales,-28.97709,153.30734,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-28.408776,153.555267,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-31.444276,152.906909,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-33.713508,150.784845,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-31.353747,152.713667,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-31.449531,152.924965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.42067,150.63084,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,7,26,Australia,AU,New South Wales,-29.65103,150.828654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.446444,150.517229,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210X,1,,occurrenceRemarks withheld,2022,1,22,Australia,AU,New South Wales,-32.708155,152.067434,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.440629,150.515454,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,22,Australia,AU,New South Wales,-33.71335,150.784721,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-29.491385,153.097706,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-29.489591,153.103838,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,12,9,Australia,AU,New South Wales,-31.081341,152.877046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.451389,150.518345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.411982,150.594981,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.572611,149.995573,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-30.382351,152.934926,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.434294,150.615635,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,4,17,Australia,AU,New South Wales,-34.048358,150.995689,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.388202,150.631625,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2020,2,15,Australia,AU,New South Wales,-32.094306,152.114218,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.181156,152.823796,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004146,1,FEMALE,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-28.618439,153.117442,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.469532,150.526571,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.447366,150.519139,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.820088,153.273941,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,3,23,Australia,AU,New South Wales,-33.50371,150.70213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.458074,150.659312,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-28.80989,153.511481,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.417054,150.597066,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-31.629178,152.786446,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-29.485158,153.103798,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.652671,152.810191,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-34.027632,150.989451,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.399661,150.644713,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-29.491604,153.099809,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004074,1,FEMALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.428158,153.02308,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-29.762752,151.110282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.399186,150.63969,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-33.70596,150.78569,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-29.490245,153.10814,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-28.354864,153.238214,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004165,1,,occurrenceRemarks withheld,2023,8,28,Australia,AU,New South Wales,-28.822956,153.30184,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.465823,150.522413,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.438913,150.604274,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-34.83474,150.02023,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.393287,150.640965,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.420652,150.63084,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-31.933259,152.415109,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,19,Australia,AU,New South Wales,-33.719047,150.784129,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-31.117549,152.81849,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310040C,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-33.50904,150.747599,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.456036,150.657899,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.681355,149.952917,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022406,1,,occurrenceRemarks withheld,2021,12,4,Australia,AU,New South Wales,-32.718954,152.113797,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.488077,150.519407,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-29.489708,153.105061,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,9,Australia,AU,New South Wales,-29.488321,153.092369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.423752,150.63727,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,MALE,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-29.350259,150.200782,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-28.399086,153.555804,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040413,1,MALE,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-34.069925,150.846368,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-28.68447,153.529918,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.581514,149.880784,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-31.454727,152.926767,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.42058,150.627122,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.822469,153.313688,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,27,Australia,AU,New South Wales,-31.816765,152.698143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.439326,150.603272,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-30.894257,151.936835,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007130E,1,FEMALE,occurrenceRemarks withheld,2024,5,13,Australia,AU,New South Wales,-32.086594,152.510315,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-28.508764,153.215212,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.040859,150.883972,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.437833,150.60437,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-31.93256,152.412593,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.418963,150.639069,EPSG:4326 +HUMAN_OBSERVATION,OJQS16052400,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-30.403711,151.69649,EPSG:4326 +HUMAN_OBSERVATION,OPUR21080904,1,,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-32.062371,152.515432,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010702,1,FEMALE,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-29.494295,153.09485,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.388165,150.624601,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240O,1,,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-32.737563,152.056954,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-33.119088,151.23296,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-29.088072,153.001165,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,2,Australia,AU,New South Wales,-29.485716,153.089719,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-29.489372,153.101719,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-31.547065,152.8081,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-28.589934,153.451256,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-28.646734,153.453198,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-34.297459,150.735005,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.43382,150.614887,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.454856,150.518634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.465652,150.520633,EPSG:4326 +HUMAN_OBSERVATION,ODMP1003011Y,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-31.26329,152.82929,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-31.484398,152.915674,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-34.469881,150.427926,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,3,8,Australia,AU,New South Wales,-33.713636,150.78486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.418359,150.603392,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.455917,150.606597,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-28.982788,153.297303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.423861,150.637332,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,17,Australia,AU,New South Wales,-29.49018,153.110511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.45297,150.524328,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,7,24,Australia,AU,New South Wales,-29.490876,153.109235,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-31.459627,152.860959,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.436434,150.615814,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210G,1,,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-28.260489,153.399729,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,12,Australia,AU,New South Wales,-28.613503,153.133308,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-31.34061,152.632467,EPSG:4326 +HUMAN_OBSERVATION,OJMM08020900,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.126957,150.979762,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070G,1,,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-33.540825,149.68428,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,4,16,Australia,AU,New South Wales,-28.816233,153.304698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.444915,150.514772,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,5,Australia,AU,New South Wales,-29.485356,153.103929,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-34.182683,150.790726,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-33.776978,150.056471,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-28.64736,153.60197,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152C,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-28.650831,153.299672,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-30.246519,152.968676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.485695,150.636242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.423869,150.637266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.398278,150.640292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.425221,150.604839,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-33.70518,150.785159,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.035121,150.873769,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.466725,150.521091,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.45919,150.659193,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-33.491219,149.552128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.465634,150.521091,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-28.837392,153.385132,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,2,20,Australia,AU,New South Wales,-31.473025,152.921528,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-31.449902,152.816037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.450035,150.516513,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-31.449625,152.930481,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-34.498,150.554112,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031401,1,,occurrenceRemarks withheld,2024,2,18,Australia,AU,New South Wales,-34.519362,150.558511,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2020,3,26,Australia,AU,New South Wales,-31.142198,152.804879,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080903,1,,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-31.466441,152.85428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.420651,150.630797,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111503,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-33.54771,150.650302,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.479691,150.533238,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,3,22,Australia,AU,New South Wales,-30.297388,153.12565,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,6,14,Australia,AU,New South Wales,-28.835793,153.431711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.453915,150.520251,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.471464,150.524075,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.963196,153.40879,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-29.505196,152.824668,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.0268,151.046985,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-30.382752,153.03365,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-31.463721,152.926188,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,10,Australia,AU,New South Wales,-31.465838,152.927492,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.397908,150.642608,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,3,Australia,AU,New South Wales,-29.485697,153.103731,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080902,1,,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-31.448924,152.921041,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.918792,152.78933,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052008,1,MALE,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.450749,152.929451,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.491863,150.640042,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-33.717257,150.784515,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-33.138034,151.081155,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-32.229858,152.203368,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,1,Australia,AU,New South Wales,-33.719168,150.784015,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001055,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-30.874796,149.04158,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-29.007147,153.409947,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.462179,150.535234,EPSG:4326 +HUMAN_OBSERVATION,OSYK01011201,1,,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-29.620256,152.908687,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,24,Australia,AU,New South Wales,-29.488489,153.094654,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-30.027688,152.24139,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-31.453973,152.924043,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,17,Australia,AU,New South Wales,-31.445575,152.894749,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.418324,150.632603,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-28.617599,152.980949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.451335,150.51839,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111503,1,,occurrenceRemarks withheld,2021,11,26,Australia,AU,New South Wales,-32.686028,151.660868,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121500,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-30.410423,152.995047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.431938,150.613646,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180J,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-28.676052,153.547463,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-29.490124,153.110506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.466629,150.521257,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.398727,150.621137,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.138631,152.811419,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-30.083636,152.216162,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.390225,150.630839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.418202,150.601819,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.393135,150.644286,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260G,1,,occurrenceRemarks withheld,2020,2,11,Australia,AU,New South Wales,-31.474198,152.899825,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-34.446327,150.513729,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.436057,150.616347,EPSG:4326 +HUMAN_OBSERVATION,ODFK2307190M,1,,occurrenceRemarks withheld,2024,1,29,Australia,AU,New South Wales,-29.683038,152.880313,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032107,1,,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-32.728503,152.086403,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,6,Australia,AU,New South Wales,-29.489699,153.105249,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-32.730557,152.170798,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-30.296554,153.124516,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.423726,150.637325,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,,occurrenceRemarks withheld,2022,6,1,Australia,AU,New South Wales,-31.445136,152.916352,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-30.1761,152.90803,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-31.910518,152.374662,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.420643,150.630819,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101I,1,,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-32.697419,151.793845,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-30.438,152.982149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.420863,150.630573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.457674,150.606579,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-30.401081,152.992487,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,FEMALE,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.395099,150.643764,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.465751,150.522404,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.393254,150.63133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.43757,150.517971,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-32.253276,152.214313,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-30.493343,151.603034,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.454784,150.519975,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.466233,150.523076,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021505,1,,occurrenceRemarks withheld,2024,1,21,Australia,AU,New South Wales,-34.195962,150.791592,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.398718,150.621137,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.679647,153.277434,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.429413,150.614991,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.437142,150.51868,EPSG:4326 +HUMAN_OBSERVATION,OPJG16091402,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.892941,152.737532,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-29.49046,153.109315,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,MALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-32.699763,152.065329,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-32.005825,152.564568,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-28.721695,153.182759,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-34.03158,150.84661,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.449227,150.516222,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.454099,150.52042,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.485627,150.637877,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,19,Australia,AU,New South Wales,-28.399102,153.555824,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091904,1,,occurrenceRemarks withheld,2024,8,28,Australia,AU,New South Wales,-32.422788,152.283483,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.924988,152.380487,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-28.822511,153.316211,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083007,1,,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.048601,151.00442,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-31.469642,152.804436,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-30.340176,153.094397,EPSG:4326 +HUMAN_OBSERVATION,ODFK24082209,1,FEMALE,occurrenceRemarks withheld,2024,7,24,Australia,AU,New South Wales,-32.456841,151.766346,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-31.477446,152.922232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.45729,150.659334,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-33.709225,150.785882,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-31.44873,152.879356,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-34.028286,150.987969,EPSG:4326 +HUMAN_OBSERVATION,SCHM-035,1,,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-34.26253,150.23157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.393781,150.640864,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-28.517053,153.157596,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,18,Australia,AU,New South Wales,-29.485669,153.10379,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,3,2,Australia,AU,New South Wales,-33.712767,150.785581,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-33.419281,149.577506,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-31.455657,152.914709,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,7,14,Australia,AU,New South Wales,-31.481811,152.916405,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270U,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-31.17135,152.875432,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.397077,150.642088,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-29.490227,153.110517,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021804,1,,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-29.065392,150.309176,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.437536,150.605772,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-31.444973,152.896191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.465744,150.52161,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-36.00758,149.36338,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180V,1,FEMALE,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-28.637406,153.629481,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.070244,150.991425,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-28.5216,152.967403,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-30.027688,152.24139,EPSG:4326 +HUMAN_OBSERVATION,OJKB22082200,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-30.910394,153.04869,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,28,Australia,AU,New South Wales,-31.428791,152.883229,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405090A,1,,occurrenceRemarks withheld,2023,7,5,Australia,AU,New South Wales,-32.681213,151.78529,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,ODFK23071915,1,MALE,occurrenceRemarks withheld,2023,11,24,Australia,AU,New South Wales,-29.590771,152.915116,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.427008,150.604038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.45385,150.52058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.465732,150.52148,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.389664,150.627027,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.41662,150.597491,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-31.26349,152.832,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.44735,150.518802,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,3,1,Australia,AU,New South Wales,-33.713614,150.784794,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-29.337796,152.903199,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.38876,150.623638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.386154,150.626408,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.47278,150.52937,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.44046,150.517776,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,13,Australia,AU,New South Wales,-31.643891,152.794392,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.299008,149.322894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.488582,150.637772,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.465763,150.520336,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,10,1,Australia,AU,New South Wales,-28.67354,153.60072,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,20,Australia,AU,New South Wales,-31.435877,152.90797,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-34.033164,150.990528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.435517,150.603468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.437646,150.606291,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,7,Australia,AU,New South Wales,-29.490572,153.10944,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.435517,150.603468,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-31.473876,152.900474,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003924,1,,occurrenceRemarks withheld,2023,4,11,Australia,AU,New South Wales,-28.749727,153.344106,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.422432,150.608357,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.433367,150.605564,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.388486,150.630921,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-29.64283,152.86554,EPSG:4326 +HUMAN_OBSERVATION,ODMP99111100,1,,occurrenceRemarks withheld,2023,3,4,Australia,AU,New South Wales,-32.180879,150.973154,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-31.430898,152.884625,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-36.547428,150.01112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.491536,150.638973,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-30.339419,153.087037,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-29.742759,151.058854,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-30.082651,152.215502,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-28.894914,152.750475,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,4,5,Australia,AU,New South Wales,-29.074898,153.083321,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-28.989853,153.427889,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020606,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-31.638302,152.787183,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,26,Australia,AU,New South Wales,-31.448897,152.921586,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-30.500138,152.901105,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090503;OLHP23090504,1,FEMALE,occurrenceRemarks withheld,2020,12,27,Australia,AU,New South Wales,-30.494048,152.941743,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2023,6,19,Australia,AU,New South Wales,-29.740307,151.058615,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.397888,150.645795,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,19,Australia,AU,New South Wales,-33.708834,150.785963,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,6,Australia,AU,New South Wales,-31.448736,152.906748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.440133,150.604381,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001963,1,FEMALE,occurrenceRemarks withheld,2024,6,8,Australia,AU,New South Wales,-31.920014,152.401764,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,20,Australia,AU,New South Wales,-29.477301,153.10423,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021807,1,FEMALE,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-29.065603,150.309752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.41574,150.640247,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,5,22,Australia,AU,New South Wales,-28.662895,153.492997,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,1,5,Australia,AU,New South Wales,-30.50407,152.92086,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-29.489615,153.103865,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150K,1,MALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-30.654909,151.489738,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.388191,150.631038,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-29.490488,153.109396,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.642289,152.793255,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.390815,150.627821,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,4,Australia,AU,New South Wales,-29.489559,153.103956,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-28.656766,153.49357,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150H,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.898293,152.729513,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.44481,150.515808,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-31.443199,152.924755,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.418742,150.609158,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,20,Australia,AU,New South Wales,-32.692892,151.703538,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-34.091422,150.985777,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-29.490213,153.108226,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290F,1,,occurrenceRemarks withheld,2022,5,28,Australia,AU,New South Wales,-32.722656,152.072576,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101303,1,,occurrenceRemarks withheld,2020,7,2,Australia,AU,New South Wales,-29.779602,151.077654,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.69032,153.60237,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031545,1,FEMALE,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-28.231036,153.519027,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.456024,150.522442,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.446204,150.513885,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-29.466279,153.063541,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-29.479939,153.104267,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,3,22,Australia,AU,New South Wales,-28.869424,153.433,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012913,1,,occurrenceRemarks withheld,2021,12,8,Australia,AU,New South Wales,-32.173952,151.97091,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,2,14,Australia,AU,New South Wales,-32.706539,152.063539,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,27,Australia,AU,New South Wales,-29.478833,153.104149,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-28.900407,153.298056,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.568584,149.931388,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004175,1,,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-28.689112,153.516648,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,11,Australia,AU,New South Wales,-29.490199,153.110517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.435848,150.618573,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,21,Australia,AU,New South Wales,-29.488051,153.091688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-34.485074,150.634877,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.638043,153.629227,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-28.959848,153.395049,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,11,Australia,AU,New South Wales,-29.489185,153.101687,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152W,1,MALE,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.888717,153.299324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.388458,150.632259,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-28.848174,153.302529,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.447526,150.516359,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-29.484642,153.09592,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.451428,150.51718,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.462132,150.534713,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,13,Australia,AU,New South Wales,-31.464081,152.926667,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.396277,150.642165,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,2,16,Australia,AU,New South Wales,-32.70658,152.063709,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-29.485753,153.103715,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2022,2,1,Australia,AU,New South Wales,-29.037676,152.979774,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-34.239726,150.800502,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-32.734519,152.081806,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,MALE,occurrenceRemarks withheld,2022,9,18,Australia,AU,New South Wales,-28.398817,153.555987,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OMFZ23033002;ODFK24051300,1,,occurrenceRemarks withheld,2023,2,14,Australia,AU,New South Wales,-32.127955,152.025636,EPSG:4326 +HUMAN_OBSERVATION,OJJS18041601,1,,occurrenceRemarks withheld,2020,12,14,Australia,AU,New South Wales,-28.88938,153.231141,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,2,23,Australia,AU,New South Wales,-28.397093,153.557263,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-31.446329,152.904395,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042E,1,,occurrenceRemarks withheld,2023,2,12,Australia,AU,New South Wales,-33.450024,150.623927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.419071,150.610302,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,6,Australia,AU,New South Wales,-29.479566,153.104219,EPSG:4326 +HUMAN_OBSERVATION,OLHP24013003,1,,occurrenceRemarks withheld,2023,12,17,Australia,AU,,-31.782566,152.938501,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-31.439834,152.917667,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.398307,150.627338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-34.447869,150.516839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.4657,150.520784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.439013,150.602476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.430378,150.616835,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,MALE,occurrenceRemarks withheld,2024,4,6,Australia,AU,New South Wales,-34.093936,150.984352,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-32.685958,151.654866,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-31.465732,152.905244,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,6,13,Australia,AU,New South Wales,-31.915642,152.37447,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-29.488984,153.094826,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.363394,150.556893,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041X,1,,occurrenceRemarks withheld,2023,4,6,Australia,AU,New South Wales,-30.530395,151.520047,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003867,1,,occurrenceRemarks withheld,2023,3,27,Australia,AU,New South Wales,-28.82451,153.318297,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-36.060556,149.281556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.437893,150.604184,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.438044,150.604092,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,6,21,Australia,AU,New South Wales,-31.939329,152.474401,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-31.444854,152.916488,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,30,Australia,AU,New South Wales,-28.87187,153.335403,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,4,9,Australia,AU,New South Wales,-31.464704,152.927951,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,10,Australia,AU,New South Wales,-33.716422,150.785179,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060500,1,,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-28.83946,153.314617,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-28.849854,153.307505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.398764,150.621169,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17426,152.90835,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-32.734865,152.101945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.452939,150.521455,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-33.777078,150.106794,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.437563,150.605738,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181G,1,,occurrenceRemarks withheld,2022,10,12,Australia,AU,New South Wales,-28.715046,153.464582,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.470019,150.530584,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.420655,150.609212,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-34.20234,150.8006,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,2,12,Australia,AU,New South Wales,-34.077324,150.999829,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140K,1,FEMALE,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-29.019311,153.42258,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-29.487906,153.09172,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.444936,150.518438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.4397,150.518539,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,2,4,Australia,AU,New South Wales,-31.453606,152.924805,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409020A,1,,occurrenceRemarks withheld,2023,7,18,Australia,AU,New South Wales,-30.286641,152.826093,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.420496,150.627929,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,2,14,Australia,AU,New South Wales,-34.098084,150.808267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.465764,150.520401,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-35.926841,149.304081,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.572611,149.995573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.388046,150.631488,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-28.651425,153.012955,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260K,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-31.44624,152.921997,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-28.649451,153.362191,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160B,1,,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-33.489267,149.398635,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-28.398753,153.555983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.435535,150.615459,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,4,13,Australia,AU,New South Wales,-31.178479,150.298856,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,1,Australia,AU,New South Wales,-33.71856,150.78265,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.068165,150.881683,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.465867,150.522325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.43506,150.608247,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-29.490227,153.108135,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,10,24,Australia,AU,New South Wales,-31.459087,152.928754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.435165,150.618222,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.456375,150.528156,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.423797,150.637279,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,7,15,Australia,AU,New South Wales,-32.720775,152.076235,EPSG:4326 +HUMAN_OBSERVATION,OJJS13032501,1,MALE,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-29.538473,152.246369,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-30.468302,152.889845,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031542,1,MALE,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-28.559187,153.396151,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,FEMALE,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-28.399267,153.555861,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-32.706528,152.063352,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-30.098238,152.179784,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.293878,149.324884,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-34.509694,150.607343,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-28.275818,153.39436,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.450528,150.5159,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-29.477133,153.104348,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.465247,150.52243,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-29.504028,152.824684,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.387924,150.624238,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-31.630013,152.785651,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.422448,150.637013,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041C,1,,occurrenceRemarks withheld,2023,2,27,Australia,AU,New South Wales,-29.673881,150.913767,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.389609,150.628855,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-29.030776,152.986354,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,FEMALE,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-28.555784,153.075063,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111503,1,MALE,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-32.686041,151.660851,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.434839,152.852678,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111301,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-31.459951,152.922651,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041307,1,FEMALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.081916,150.842938,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-29.049606,153.395229,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.421195,150.626299,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131A,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-32.685932,151.658745,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190N,1,,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-31.4412,152.823724,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303200B,1,,occurrenceRemarks withheld,2022,10,21,Australia,AU,New South Wales,-32.662223,151.739169,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-32.23679,152.21745,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,6,Australia,AU,New South Wales,-29.489577,153.110619,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-30.099916,152.174797,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.291869,152.864165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.435628,150.54053,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270V,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-32.72107,151.99159,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,2,23,Australia,AU,New South Wales,-29.087018,153.379478,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-28.656899,153.521268,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.418999,150.609379,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,MALE,occurrenceRemarks withheld,2023,2,24,Australia,AU,New South Wales,-28.844336,153.319838,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-33.717002,150.784171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.444992,150.514552,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,2,14,Australia,AU,New South Wales,-31.453534,152.918363,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,1,16,Australia,AU,New South Wales,-31.438575,152.921014,EPSG:4326 +HUMAN_OBSERVATION,OICG17030600,1,,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-28.390147,153.556633,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-29.48785,153.091725,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.395396,150.643277,EPSG:4326 +HUMAN_OBSERVATION,ODFK2312070C,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-29.668422,152.867632,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061004,1,,occurrenceRemarks withheld,2020,6,25,Australia,AU,New South Wales,-30.223959,152.793715,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-31.435778,152.895916,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.430863,150.615809,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-31.435933,152.897939,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,2,14,Australia,AU,New South Wales,-31.434908,152.90508,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.454635,150.610638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.420911,150.627928,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2024,3,26,Australia,AU,New South Wales,-31.437597,152.893632,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-30.420972,153.006945,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310040A,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-31.476786,152.911639,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-34.319081,150.726479,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-31.469322,152.917338,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-35.09674,150.06994,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-29.505224,152.824631,EPSG:4326 +HUMAN_OBSERVATION,OJJS17121103,1,MALE,occurrenceRemarks withheld,2023,7,11,Australia,AU,New South Wales,-34.038028,150.860305,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,1,28,Australia,AU,New South Wales,-28.398625,153.556227,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,12,27,Australia,AU,New South Wales,-31.920019,152.378334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.437488,150.607014,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-31.438679,152.888402,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090403,1,,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-29.680128,152.878593,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004111,1,FEMALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.668167,153.517284,EPSG:4326 +HUMAN_OBSERVATION,OJJS20072903,1,FEMALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-31.474609,152.917656,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.448184,150.526591,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.428409,150.597752,EPSG:4326 +HUMAN_OBSERVATION,ODFK24092001,1,,occurrenceRemarks withheld,2024,9,6,Australia,AU,New South Wales,-33.002863,151.610809,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150U,1,MALE,occurrenceRemarks withheld,2022,7,13,Australia,AU,New South Wales,-31.78743,152.709352,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,12,20,Australia,AU,New South Wales,-29.628478,152.864189,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-29.766384,151.101819,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150A,1,,occurrenceRemarks withheld,2022,9,2,Australia,AU,New South Wales,-28.838384,152.937204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.42716,150.602108,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-28.694401,153.495239,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091705,1,MALE,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-31.90711,152.411871,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.392747,150.635869,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.421189,150.627398,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-29.490269,153.11013,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.395844,150.641709,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.419167,150.609211,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-31.92625,152.353525,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.831137,153.278132,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,21,Australia,AU,New South Wales,-32.296196,152.014036,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,4,26,Australia,AU,New South Wales,-31.436768,152.905805,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080302,1,,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-31.641784,152.793741,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;ODMP2212210P;ODMP2212210Q;OLHP2311100C,1,,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-30.899559,151.96533,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.446427,150.513747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.446982,150.516658,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,7,20,Australia,AU,New South Wales,-31.428381,152.881865,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250A,2,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.768196,146.578454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.399619,150.624799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.404356,150.642688,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,25,Australia,AU,New South Wales,-31.734425,152.237072,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-28.951435,153.458698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.418208,150.63315,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,5,25,Australia,AU,New South Wales,-29.489391,153.102889,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OMFZ23033002;ODFK24051300,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-33.252758,150.879362,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102104,1,,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-32.711027,152.061988,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2024,5,18,Australia,AU,New South Wales,-30.426701,152.953158,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,23,Australia,AU,New South Wales,-31.281234,152.861555,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-29.489671,153.12006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.389408,150.62686,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.420915,150.630452,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.446143,150.517521,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,15,Australia,AU,New South Wales,-31.446445,152.913802,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-32.219628,152.19096,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-29.490325,153.108038,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.728523,152.088434,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082303;ODFK23082304;ODFK23082306;ODFK23082307,1,MALE,occurrenceRemarks withheld,2023,5,24,Australia,AU,New South Wales,-34.280016,150.732187,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-30.39318,152.94103,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101300,1,MALE,occurrenceRemarks withheld,2020,12,3,Australia,AU,New South Wales,-29.655536,150.831824,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.439335,150.603272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.403584,150.646136,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.418338,150.631928,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-28.88864,153.302183,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-34.15774,150.790713,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,6,Australia,AU,New South Wales,-29.485482,153.103559,EPSG:4326 +HUMAN_OBSERVATION,ODMP22100601,1,,occurrenceRemarks withheld,2022,9,18,Australia,AU,New South Wales,-30.364138,153.01055,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-32.225666,152.196402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.455124,150.60983,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040432,1,,occurrenceRemarks withheld,2022,12,27,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.43512,150.615895,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-31.434776,152.900233,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,23,Australia,AU,New South Wales,-28.35123,153.471272,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,12,12,Australia,AU,New South Wales,-31.481262,152.919363,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-31.995876,151.812061,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,25,Australia,AU,New South Wales,-29.485113,153.104128,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.225666,152.196402,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,25,Australia,AU,New South Wales,-29.485618,153.103736,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-29.930383,152.213217,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.42283,150.607486,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-29.492883,153.093531,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.225666,152.196402,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.421188,150.627355,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-29.505999,152.824652,EPSG:4326 +HUMAN_OBSERVATION,OJJS12081502,1,,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-32.721978,152.077046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.464354,150.522413,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151Z,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-28.764072,153.492978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.41848,150.633208,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-29.485576,153.103817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.42731,150.604725,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.56122,150.007338,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150P,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.048655,151.004251,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2021,11,24,Australia,AU,New South Wales,-29.667359,152.868705,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2024,2,5,Australia,AU,New South Wales,-30.644608,151.482228,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-31.629803,152.785099,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-30.240447,152.906313,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-30.345472,152.609738,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,15,Australia,AU,New South Wales,-29.485104,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435661,150.603029,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,3,22,Australia,AU,New South Wales,-29.488788,153.094037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.450387,150.605068,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041N,1,,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-34.053416,150.838978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.421222,150.626298,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-31.918994,152.379145,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,3,17,Australia,AU,New South Wales,-30.356281,153.079544,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,26,Australia,AU,New South Wales,-33.709466,150.785123,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020703,1,,occurrenceRemarks withheld,2020,6,30,Australia,AU,New South Wales,-30.219284,152.7936,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404,1,,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-31.778126,152.434831,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,4,29,Australia,AU,New South Wales,-31.447517,152.925763,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,5,Australia,AU,New South Wales,-29.490213,153.107979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.384464,150.625292,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-32.714028,152.065577,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-33.999472,150.893243,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.420233,150.62736,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,11,Australia,AU,New South Wales,-28.82537,153.315409,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.420783,150.63063,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.81222,153.313992,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-33.716799,150.785143,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-31.933106,152.415619,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-32.931347,151.541578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.436416,150.615814,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140J,1,MALE,occurrenceRemarks withheld,2023,1,1,Australia,AU,New South Wales,-31.457953,152.927051,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-31.448512,152.894005,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-31.454902,152.893086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.464309,150.524189,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,12,Australia,AU,New South Wales,-31.469094,152.921825,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.485702,153.103768,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-28.408402,153.556801,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.491672,150.639002,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-30.422349,152.999987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.458669,150.529286,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.425923,150.5979,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,29,Australia,AU,New South Wales,-33.709574,150.786062,EPSG:4326 +HUMAN_OBSERVATION,ODLC98101500,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-28.435507,153.096064,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121500,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-30.406531,152.997489,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.440307,150.516497,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-28.327546,153.399632,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,2,7,Australia,AU,New South Wales,-31.428457,152.910165,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-30.895349,153.038528,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.447899,152.856541,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,22,Australia,AU,New South Wales,-29.48809,153.092189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.387355,150.631192,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.423779,150.637269,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.393188,150.644252,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,FEMALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-29.660332,152.873807,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,25,Australia,AU,New South Wales,-28.546386,153.230507,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.387795,150.631517,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031815,1,,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-28.823907,153.321966,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.435394,150.520951,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.490634,150.63852,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-31.43051,152.895156,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.448143,152.894671,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.395098,150.642741,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.813462,153.334493,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.44734,150.51433,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-31.634123,152.785067,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-29.490138,153.110468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.430388,150.611818,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.434297,150.617169,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-32.728372,152.085862,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240U,1,,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-32.772728,151.940231,EPSG:4326 +HUMAN_OBSERVATION,OJAJ23012300,1,,occurrenceRemarks withheld,2022,12,,Australia,AU,New South Wales,-33.003477,151.478858,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.464298,150.523198,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-36.019159,149.356911,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,7,Australia,AU,New South Wales,-28.394633,153.557433,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.442198,152.902274,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151G,1,,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-28.880196,153.32363,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004218,1,MALE,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-28.666449,153.148227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.38809,150.624418,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004282,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-28.288414,153.394474,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.422431,150.607389,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.429369,150.616406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.44683,150.520297,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221C,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-32.723156,152.075214,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-31.451701,152.897243,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040701,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-32.659995,151.659873,EPSG:4326 +HUMAN_OBSERVATION,Obs_2158;ODFK23120500;ODFK23120501,1,MALE,occurrenceRemarks withheld,2023,11,28,Australia,AU,New South Wales,-34.726587,149.829754,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-29.490483,153.107985,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.488066,150.635315,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090407,1,FEMALE,occurrenceRemarks withheld,2021,1,18,Australia,AU,New South Wales,-32.71616,152.162237,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,FEMALE,occurrenceRemarks withheld,2023,1,16,Australia,AU,New South Wales,-34.083828,150.833865,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.420983,150.62698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.423744,150.637346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.384103,150.622486,EPSG:4326 +HUMAN_OBSERVATION,SCHM-035,1,,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-34.263,150.23152,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,16,Australia,AU,New South Wales,-29.490119,153.10792,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.436453,150.615857,EPSG:4326 +HUMAN_OBSERVATION,OPUR20021302,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-32.73177,152.03683,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-30.505864,152.920796,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003899,1,FEMALE,occurrenceRemarks withheld,2023,1,21,Australia,AU,New South Wales,-28.888717,153.299324,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150U,1,,occurrenceRemarks withheld,2023,7,17,Australia,AU,New South Wales,-28.692221,153.494964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.443886,150.516043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.388603,150.623947,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.459379,150.523366,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-32.706529,152.063593,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-31.936428,152.454265,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032903,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.671361,152.499597,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022514,1,MALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-32.730732,152.081731,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090808,1,,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-33.997712,150.908678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.432905,150.615566,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435981,150.615664,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.485811,150.636173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.466249,150.52116,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221O,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-32.733449,152.101706,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-31.446736,152.911386,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.420314,150.630154,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-29.484259,153.104085,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-29.793058,150.925808,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.434588,150.616367,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,FEMALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-31.933484,152.415704,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150F,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-33.690824,150.597821,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,6,20,Australia,AU,New South Wales,-31.915668,152.374449,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-29.487745,153.091484,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.46588,150.522096,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121100,1,FEMALE,occurrenceRemarks withheld,2024,9,1,Australia,AU,New South Wales,-31.937163,152.456299,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.436426,150.517167,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,23,Australia,AU,New South Wales,-29.482143,153.104171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.427034,150.604864,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.428099,150.600372,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.824882,153.303135,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-30.340482,153.087187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.447354,150.514558,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.445964,150.513152,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-31.642686,152.793337,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003877,1,,occurrenceRemarks withheld,2023,4,5,Australia,AU,New South Wales,-28.38755,153.56563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.427851,150.597812,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-31.449792,152.925261,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-28.681672,153.358638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.436993,150.603328,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.423824,150.637278,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-34.265974,150.685616,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,9,15,Australia,AU,New South Wales,-31.650872,152.818069,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.464625,150.526019,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011014,1,,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-32.729459,152.03724,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-30.255061,153.087723,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080900,1,MALE,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-32.717229,151.718687,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-31.632782,152.785414,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.43533,150.616063,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.481256,150.630932,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-32.709669,152.064528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.387446,150.6312,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-33.70738,150.785204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.458154,150.526112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.432584,150.614868,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,29,Australia,AU,New South Wales,-28.387951,153.551531,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2024,4,21,Australia,AU,New South Wales,-34.491282,150.471246,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.34163,152.607443,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,1,23,Australia,AU,New South Wales,-31.479611,152.905944,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2023,4,13,Australia,AU,New South Wales,-36.196045,149.253351,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.420233,150.62736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.447129,150.515457,EPSG:4326 +HUMAN_OBSERVATION,OPUR21082000;ODMP22022808,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-33.487342,150.802933,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,3,17,Australia,AU,New South Wales,-31.456781,152.926628,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-31.948252,152.300422,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-29.732652,150.97648,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,9,12,Australia,AU,New South Wales,-31.441582,152.903278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.418859,150.609144,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-28.561518,153.116051,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140J,1,,occurrenceRemarks withheld,2021,11,25,Australia,AU,New South Wales,-31.458124,152.927198,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2022,3,22,Australia,AU,New South Wales,-36.652965,149.97014,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-28.321344,153.568084,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,FEMALE,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-30.648712,152.965047,EPSG:4326 +HUMAN_OBSERVATION,OFML23122100,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-34.452664,150.647622,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060503,1,,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-28.83683,153.315839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.388587,150.624012,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-28.824943,153.301673,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.400719,150.619264,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.420977,150.628057,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.446205,150.517019,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,16,Australia,AU,New South Wales,-33.709171,150.786003,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-34.061857,150.84496,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,10,Australia,AU,New South Wales,-29.488532,153.093313,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2020,2,25,Australia,AU,New South Wales,-28.586223,153.555001,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-31.629506,152.78568,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.628756,152.757188,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,10,8,Australia,AU,New South Wales,-32.711305,152.065329,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.436906,150.614549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.465744,150.520282,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041403,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-29.728742,151.085138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.432504,150.60523,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.427636,150.605728,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.465643,150.520644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.463135,150.524093,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-36.441024,149.978709,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-29.489652,153.104782,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-28.944071,152.968374,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-29.490418,153.108151,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-29.490222,153.108194,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.46626,150.523957,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.42025,150.627316,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-28.959919,153.395247,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-33.712369,150.786039,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,21,Australia,AU,New South Wales,-29.485576,153.103817,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,FEMALE,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-28.982434,153.422453,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.39069,150.645595,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,18,Australia,AU,New South Wales,-31.451529,152.915236,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.418954,150.63908,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2024,3,2,Australia,AU,New South Wales,-29.746371,151.075117,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-31.473865,152.900988,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,7,Australia,AU,New South Wales,-28.823419,153.317762,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,29,Australia,AU,New South Wales,-29.48657,153.103264,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.441816,150.521088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.42897,150.614437,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.827996,153.303174,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.467793,150.529735,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-34.225876,150.794266,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,3,16,Australia,AU,New South Wales,-28.609403,153.298636,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.454064,150.520475,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.431072,150.613605,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.459177,150.516068,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042A,1,FEMALE,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-31.472333,150.660049,EPSG:4326 +HUMAN_OBSERVATION,OIXR13102801,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-33.152864,149.764507,EPSG:4326 +HUMAN_OBSERVATION,OPJG22081703,1,,occurrenceRemarks withheld,2024,4,19,Australia,AU,New South Wales,-33.053312,151.323416,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,ODMP21083102,1,,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-32.230006,150.958341,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.419124,150.610246,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,22,Australia,AU,New South Wales,-31.461626,152.893921,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-31.475477,152.867921,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,6,16,Australia,AU,New South Wales,-29.489153,153.10181,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,3,6,Australia,AU,New South Wales,-34.093731,150.987244,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,20,Australia,AU,New South Wales,-33.718487,150.785009,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-33.642472,150.566209,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-31.228903,152.731978,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011200,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.952332,152.187255,EPSG:4326 +HUMAN_OBSERVATION,DOUS-HO,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-34.75049,150.06743,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-30.655961,151.512471,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-31.125972,152.797612,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.448808,150.515995,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.464468,150.52315,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-30.34407,153.085186,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-29.38284,153.092484,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.419963,150.602433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,2,Australia,AU,New South Wales,-34.43895,150.614469,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-30.345347,152.613317,EPSG:4326 +HUMAN_OBSERVATION,OPJG23080901,1,,occurrenceRemarks withheld,2024,6,26,Australia,AU,New South Wales,-30.152457,152.823003,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.393585,150.641435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,1,Australia,AU,New South Wales,-34.438545,150.615863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.423806,150.637279,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031532,1,FEMALE,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-28.825083,153.323778,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-30.505415,152.910083,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.902372,152.777767,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-31.444224,152.915824,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-34.90278,150.0569,EPSG:4326 +HUMAN_OBSERVATION,OPUR23110802,1,FEMALE,occurrenceRemarks withheld,2023,2,5,Australia,AU,New South Wales,-34.098209,150.808578,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,4,Australia,AU,New South Wales,-28.673043,153.499517,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,11,Australia,AU,New South Wales,-29.486257,153.093372,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.423815,150.637311,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032114,1,,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-32.715703,152.186691,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,1,Australia,AU,New South Wales,-29.490222,153.107899,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,10,Australia,AU,New South Wales,-29.488237,153.092133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.447224,150.513049,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.922032,152.371779,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.922267,152.374985,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060503,1,,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-28.83683,153.315839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.420278,150.62738,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.460316,150.515349,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.455229,150.519657,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.399208,150.618535,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,30,Australia,AU,New South Wales,-28.816083,153.453368,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,2,26,Australia,AU,New South Wales,-28.682564,153.492103,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.709938,152.776014,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.46673,150.522648,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,3,Australia,AU,New South Wales,-31.554697,152.851474,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.446505,150.514942,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.437121,150.604815,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-29.485202,153.104171,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-34.400666,150.880379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435768,150.616301,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,3,11,Australia,AU,New South Wales,-29.490189,153.110522,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-32.683146,151.656159,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004255,1,MALE,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-28.849597,153.215295,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.650407,149.955028,EPSG:4326 +HUMAN_OBSERVATION,OPJG20060401,1,,occurrenceRemarks withheld,2020,3,20,Australia,AU,New South Wales,-32.06324,151.6887,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,13,Australia,AU,New South Wales,-29.490044,153.101177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.45499,150.514125,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.394559,150.632109,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-29.490488,153.109465,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.465671,150.521547,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-31.45112,152.915625,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-29.488027,153.092111,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-29.442125,153.168357,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,2,12,Australia,AU,New South Wales,-31.48443,152.915605,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-30.54187,152.87689,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,16,Australia,AU,New South Wales,-30.88453,153.071899,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081305;ODMP21081306,1,,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-34.357578,150.684291,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-28.947668,153.316082,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.420661,150.630818,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-34.124253,150.973831,EPSG:4326 +HUMAN_OBSERVATION,OPJG15082102,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-29.233564,152.952743,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-29.490142,153.107464,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-28.578634,153.282968,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.465872,150.520387,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202,1,,occurrenceRemarks withheld,2020,4,29,Australia,AU,New South Wales,-30.48,151.626,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,13,Australia,AU,New South Wales,-28.661326,153.609468,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-29.702491,152.940468,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,5,31,Australia,AU,New South Wales,-33.771587,150.055727,EPSG:4326 +HUMAN_OBSERVATION,OPUR20021302,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-32.73196,152.03975,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102500,2,FEMALE,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.76658,146.586232,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-28.392174,153.562124,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,FEMALE,occurrenceRemarks withheld,2023,3,25,Australia,AU,New South Wales,-30.295796,153.124322,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.453581,150.518879,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-34.018852,150.989923,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-34.447724,150.51323,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-28.849862,153.030808,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,7,22,Australia,AU,New South Wales,-32.739674,152.056884,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.194077,152.74634,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004219,1,,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.912489,153.318614,EPSG:4326 +HUMAN_OBSERVATION,OJJS06031407,1,MALE,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-31.306479,152.599014,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-875,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.131957,152.823508,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-31.642547,152.79342,EPSG:4326 +HUMAN_OBSERVATION,OJJS20113001,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-31.627153,150.729939,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-31.454452,152.926447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.45475,150.520052,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012909,1,MALE,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-31.634319,152.293773,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-31.128656,152.794428,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-31.476528,152.925048,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,11,9,Australia,AU,New South Wales,-33.969092,150.892923,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-31.481222,152.922476,EPSG:4326 +HUMAN_OBSERVATION,ODMP22090801,1,,occurrenceRemarks withheld,2022,8,20,Australia,AU,New South Wales,-32.557341,151.620511,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-29.489596,153.103908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.443586,150.515442,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.92842,152.384301,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.196137,150.790596,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,28,Australia,AU,New South Wales,-29.436168,153.17121,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-31.913202,152.374047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.441412,150.515855,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102220,1,,occurrenceRemarks withheld,2020,12,30,Australia,AU,New South Wales,-32.723234,152.105686,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031808,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-28.747562,152.646791,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-30.26074,153.021033,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.093868,150.839737,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.392808,150.639499,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022512,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-32.727053,152.079648,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.429609,150.610241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.388407,150.63151,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-31.450735,152.923246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419063,150.610335,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-32.231456,152.00169,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419631,150.611755,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,29,Australia,AU,New South Wales,-28.815732,153.272402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.439479,150.618937,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.4001,150.639882,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.44718,150.513094,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,6,Australia,AU,New South Wales,-29.490222,153.110334,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-29.482069,153.104187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.459147,150.522611,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,MALE,occurrenceRemarks withheld,2023,9,19,Australia,AU,New South Wales,-31.940196,152.413117,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-33.774886,150.06438,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-31.124186,152.797815,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060503,1,,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-28.838902,153.313836,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.449093,150.51628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.463735,150.523912,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-28.260886,153.402031,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-34.434494,150.616185,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.821398,153.311493,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.467783,150.529278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.420517,150.637361,EPSG:4326 +HUMAN_OBSERVATION,OPJG18122002,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-30.199998,152.775979,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030U,1,,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-34.044212,150.862191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.446292,150.517321,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-31.459989,152.893648,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,25,Australia,AU,New South Wales,-29.485748,153.103768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.422108,150.607942,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-36.183858,149.361836,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-31.452772,152.925876,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-31.440603,152.89608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.446571,150.518194,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.411554,150.596135,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,2,Australia,AU,New South Wales,-28.380983,153.567429,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.632867,149.949786,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150O,1,,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-32.059088,152.544398,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-28.582782,153.553643,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-29.02257,152.311645,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.421288,150.627352,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.421852,150.637421,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001217,1,,occurrenceRemarks withheld,2021,7,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.446493,150.514355,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.399195,150.63969,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427391,150.604701,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190L,1,,occurrenceRemarks withheld,2023,2,14,Australia,AU,New South Wales,-32.881863,151.615722,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-28.579378,153.153574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.436866,150.603789,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004206,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-28.39093,153.565361,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,9,17,Australia,AU,New South Wales,-31.457462,152.891742,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2020,11,21,Australia,AU,New South Wales,-34.098156,150.781694,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,MALE,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-34.061656,150.841769,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.459908,150.525472,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-28.653446,153.454341,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.39249,150.633788,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.420834,150.627691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.465785,150.521848,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.490862,150.638644,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004068,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-28.821934,153.272886,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.389469,150.627196,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.423862,150.637375,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122007,1,,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-35.966472,149.143651,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-28.67595,153.277461,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002557,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-29.096772,153.395163,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004226,1,MALE,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-28.812375,153.340906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.460716,150.532001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.435511,150.602718,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.389862,150.630741,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-29.366879,153.106606,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.450079,152.906995,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.423771,150.637356,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.488612,150.6342,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,MALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-32.987808,151.493069,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.493179,150.63908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,24,Australia,AU,New South Wales,-34.439854,150.61736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.45081,150.601801,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.392926,150.632982,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-28.822599,153.302591,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-29.485576,153.103811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.389566,150.627106,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.43234,150.61111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.463074,150.519773,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.462178,150.534744,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.151316,152.798733,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-31.485441,152.916764,EPSG:4326 +HUMAN_OBSERVATION,OJJS20012800,1,,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-33.27397,150.58678,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-28.724632,153.380013,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.691594,152.775119,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.432302,150.605976,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180D,1,,occurrenceRemarks withheld,2022,10,28,Australia,AU,New South Wales,-28.864601,153.293151,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-31.44455,152.893707,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-29.480056,153.104299,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.439759,152.90421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.42049,150.637394,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-34.091028,150.986122,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.824122,153.218028,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2022,8,18,Australia,AU,New South Wales,-36.577361,149.933675,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.394684,150.643754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.451038,150.515287,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,3,28,Australia,AU,New South Wales,-34.759519,146.585861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.430712,150.611341,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.465067,150.522457,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091908,1,,occurrenceRemarks withheld,2024,9,1,Australia,AU,New South Wales,-32.174793,152.096214,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-29.489657,153.104074,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103005,1,,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-32.806492,151.867777,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.420733,150.630827,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.220827,152.198292,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-29.725567,151.011059,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-32.722484,152.077198,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,4,6,Australia,AU,New South Wales,-36.577361,149.933675,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,2,8,Australia,AU,New South Wales,-28.960887,153.399891,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.420628,150.635639,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,FEMALE,occurrenceRemarks withheld,2024,6,3,Australia,AU,New South Wales,-31.474181,152.899747,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-30.351067,153.076192,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-29.490404,153.10821,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-28.233303,153.526673,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304051H,1,,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-32.490273,151.874709,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.43874,150.60416,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121500,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-30.420295,152.92491,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.444997,150.515226,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.433523,150.608933,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.453974,150.520478,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.481232,150.532746,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.429198,150.614583,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,12,3,Australia,AU,New South Wales,-31.936905,152.510302,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2020,5,21,Australia,AU,New South Wales,-31.167719,152.950337,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102109,1,,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-32.728518,152.085488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.469253,150.526622,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.466269,150.523924,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,17,Australia,AU,New South Wales,-28.468821,152.796299,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.438637,150.603978,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.573128,153.530937,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-28.902327,152.543905,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,8,Australia,AU,New South Wales,-29.490259,153.108194,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.446467,150.514377,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-33.718822,150.782675,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.609857,149.909046,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100501,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.472414,152.926795,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-28.946967,153.443406,EPSG:4326 +HUMAN_OBSERVATION,ENGD;OPJGI0002127;OJJS18112601,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-34.070431,150.768733,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-29.488303,153.110136,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031410,1,,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-29.567572,152.782206,EPSG:4326 +HUMAN_OBSERVATION,OJJS18041601,1,,occurrenceRemarks withheld,2020,12,14,Australia,AU,New South Wales,-28.889129,153.229427,EPSG:4326 +HUMAN_OBSERVATION,SHARM,1,,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-32.737892,149.677073,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-34.02523,150.98796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.40026,150.639769,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,MALE,occurrenceRemarks withheld,2024,3,7,Australia,AU,New South Wales,-31.4667,152.9293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.396541,150.641374,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.425076,150.604811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.439162,150.619763,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-29.76786,150.94008,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.420675,150.630644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.384051,150.622607,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022407,1,,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-32.762311,152.046485,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.085006,150.978364,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.453397,150.522258,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.437895,150.604282,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060503,1,,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-28.839794,153.314434,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.393858,150.640645,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091705,1,,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-31.830933,152.63384,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,12,Australia,AU,New South Wales,-31.638897,152.789676,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-30.240904,152.902842,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.431324,150.61498,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.470932,150.530263,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.387785,150.631473,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-31.641589,152.794801,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240E,1,,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-32.710449,152.060901,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,18,Australia,AU,New South Wales,-28.178665,153.537002,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-31.709154,152.159805,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2022,12,26,Australia,AU,New South Wales,-32.722344,152.077155,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.395632,150.642411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.446466,150.514323,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-29.485594,153.1038,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,6,25,Australia,AU,New South Wales,-30.221626,152.796484,EPSG:4326 +HUMAN_OBSERVATION,OPJG22022105,1,,occurrenceRemarks withheld,2024,7,1,Australia,AU,New South Wales,-31.247409,152.769313,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.456044,150.523388,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.423861,150.63731,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.630803,152.791684,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-29.382377,152.723448,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,27,Australia,AU,New South Wales,-31.467704,152.87323,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-28.811172,153.364452,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-34.494,150.609073,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,1,7,Australia,AU,New South Wales,-31.933181,152.415064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.462354,150.518957,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,9,Australia,AU,New South Wales,-29.477474,153.104079,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,11,Australia,AU,New South Wales,-28.636488,153.635695,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022603,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-31.466332,152.914224,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030506,1,,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-32.749051,152.031875,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-29.678429,152.878849,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-28.37268,153.556565,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,2,Australia,AU,New South Wales,-31.445922,152.914976,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.421781,150.637467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.437754,150.606767,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-31.43744,152.905444,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-36.102074,149.298857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.464783,150.522215,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004237,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.931622,153.27331,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.45055,150.617513,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.465779,150.522447,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004197,1,MALE,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-28.864526,153.293421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.417206,150.601152,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.43206,150.607897,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-28.80952,153.508917,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-33.713883,150.786031,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419694,150.63536,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-29.834383,150.845128,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-31.948252,152.300422,EPSG:4326 +HUMAN_OBSERVATION,ODFK24012503,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-33.4375,150.833611,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.385818,150.627201,EPSG:4326 +HUMAN_OBSERVATION,ODFK24062802,1,,occurrenceRemarks withheld,2024,2,21,Australia,AU,New South Wales,-29.590841,152.915167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.420048,150.631314,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-34.150171,150.822876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.432848,150.609921,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,7,Australia,AU,New South Wales,-28.669477,153.523325,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,6,30,Australia,AU,New South Wales,-31.450165,152.92256,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,4,23,Australia,AU,New South Wales,-31.491616,152.906418,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180M,1,,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-28.940534,153.27955,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.449299,150.51622,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-29.489862,153.101086,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-29.485996,153.103538,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-33.56304,149.551646,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,3,5,Australia,AU,New South Wales,-29.490269,153.108108,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060U,1,,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-31.456755,152.908358,EPSG:4326 +HUMAN_OBSERVATION,OVGI98110201,1,,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-30.477386,151.740307,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310310D,1,,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-28.999789,153.375311,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-28.885195,153.374956,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-28.228915,153.489569,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,25,Australia,AU,New South Wales,-34.439033,150.617329,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-31.633774,152.785147,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-31.454507,152.92669,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-31.483677,152.915577,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-34.234423,150.791487,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-29.489951,153.101258,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004137,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-28.822468,153.272654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.489499,150.638552,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.393657,150.640976,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-36.016019,149.363793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.439519,150.603909,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,14,Australia,AU,New South Wales,-29.490217,153.110517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.38578,150.627104,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-28.226882,153.498072,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,2,6,Australia,AU,New South Wales,-31.933228,152.415127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.485135,150.637096,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-28.865643,153.288603,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-31.460953,152.894723,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.466798,150.521122,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,4,19,Australia,AU,New South Wales,-29.685291,152.868887,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-31.474053,152.868105,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.397731,150.640916,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.420215,150.63528,EPSG:4326 +HUMAN_OBSERVATION,ODFK2404120I,1,,occurrenceRemarks withheld,2024,2,18,Australia,AU,New South Wales,-32.946454,151.229312,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.424685,150.604626,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.465535,150.521518,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.420658,150.630688,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-31.124545,152.802324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.428957,150.600446,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,9,2,Australia,AU,New South Wales,-34.014065,150.878876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.396285,150.642153,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091809,1,,occurrenceRemarks withheld,2024,7,20,Australia,AU,New South Wales,-32.739915,152.084121,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.389674,150.627092,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-31.448553,152.919651,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,7,24,Australia,AU,New South Wales,-31.481678,152.915881,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,19,Australia,AU,New South Wales,-29.49018,153.110517,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,7,25,Australia,AU,New South Wales,-29.490824,153.109245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.420759,150.630772,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.442791,150.517609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.389674,150.627092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.423718,150.637379,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-31.444973,152.896191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.436171,150.602786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.430686,150.613224,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.483874,150.530992,EPSG:4326 +HUMAN_OBSERVATION,OJJS20051106,1,,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-30.578976,151.713504,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.446715,150.515948,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-32.724199,152.114096,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-31.244603,152.720089,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-34.109268,150.818832,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.453974,150.520467,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-28.35799,153.303636,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,18,Australia,AU,New South Wales,-29.49025,153.108119,EPSG:4326 +HUMAN_OBSERVATION,OJJS20040702,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-29.490133,153.110613,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.447026,150.518387,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.434762,150.608647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.430731,150.611374,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-34.929469,150.140023,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-31.4433,152.900668,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-31.458324,152.922261,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.446555,150.514277,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.293378,149.324637,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.420756,150.630141,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,FEMALE,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-35.09674,150.06994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.435903,150.618593,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.455451,150.656033,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-28.390324,153.324552,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.392731,150.639241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.446223,150.517029,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,10,24,Australia,AU,New South Wales,-34.436808,150.618349,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,4,19,Australia,AU,New South Wales,-31.590521,152.781645,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.810307,153.508577,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.451011,150.515287,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.8343,153.324647,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-31.150071,149.911111,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-33.442702,150.718217,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040404,1,,occurrenceRemarks withheld,2024,3,15,Australia,AU,New South Wales,-31.91313,152.300391,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,18,Australia,AU,New South Wales,-28.822412,153.411846,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060L,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-28.947235,150.402667,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-29.872226,152.181732,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,25,Australia,AU,New South Wales,-31.140009,152.810456,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-29.480827,153.104106,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,17,Australia,AU,New South Wales,-28.864265,153.292695,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418825,150.632861,EPSG:4326 +HUMAN_OBSERVATION,OJKB21081103,1,MALE,occurrenceRemarks withheld,2021,1,21,Australia,AU,New South Wales,-29.580602,152.781654,EPSG:4326 +HUMAN_OBSERVATION,OJJS17032800,1,,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-31.079438,150.095687,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-30.258635,152.816719,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072600;OPJG22072601,1,,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-28.257818,153.400637,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.430657,150.608503,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-34.236944,150.662495,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111300,1,,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-31.44559,152.904751,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-28.679423,153.283497,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,3,19,Australia,AU,New South Wales,-31.590569,152.784552,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.460235,150.518921,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.487985,150.636689,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-34.440959,150.6176,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,11,Australia,AU,New South Wales,-29.488447,153.10357,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.447531,150.517502,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-28.393638,153.557027,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-33.714112,150.785331,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.493171,150.639145,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.448814,150.515886,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.446889,150.521427,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.444725,150.516083,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.435633,150.616337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-34.465807,150.521608,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-28.703622,153.480957,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011007,1,MALE,occurrenceRemarks withheld,2023,12,27,Australia,AU,New South Wales,-28.636985,152.176938,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-36.176369,149.359189,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,4,Australia,AU,New South Wales,-29.485618,153.103463,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.455073,150.610005,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.813031,152.823571,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,26,Australia,AU,New South Wales,-28.661319,153.609535,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.588985,153.552228,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003945,1,,occurrenceRemarks withheld,2023,5,29,Australia,AU,New South Wales,-28.396704,153.557681,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.469182,153.043387,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.472561,150.529725,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-28.667698,153.515143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.392582,150.633861,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-30.441321,153.036374,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-28.331028,153.546639,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.417976,150.632809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.456393,150.655821,EPSG:4326 +HUMAN_OBSERVATION,OPJG21031205,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-28.662508,153.424172,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-29.480883,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.436157,150.615941,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,3,24,Australia,AU,New South Wales,-31.453772,152.910556,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032000,1,,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-32.711701,152.159445,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240N,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-32.733374,152.101746,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-29.631853,152.898016,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-29.485646,153.103731,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-33.976184,150.993522,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-34.83574,150.01181,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-34.23387,150.79367,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.341208,152.605312,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260E,1,,occurrenceRemarks withheld,2020,2,5,Australia,AU,New South Wales,-32.737551,152.0409,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.39548,150.641523,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,4,13,Australia,AU,New South Wales,-30.886928,153.071635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.457663,150.659029,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.459562,150.534636,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-29.662082,152.879069,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.465349,150.520784,EPSG:4326 +HUMAN_OBSERVATION,ODMP99111100,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-29.072674,153.040573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.477404,150.532456,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-28.563092,152.786709,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.681355,149.952917,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,12,19,Australia,AU,New South Wales,-31.441436,152.910626,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-28.862631,153.312942,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,7,Australia,AU,New South Wales,-29.489629,153.101719,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031409,1,,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-30.4751,152.94051,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.465959,150.515525,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-33.713358,150.784694,EPSG:4326 +HUMAN_OBSERVATION,OLHP24013004,1,,occurrenceRemarks withheld,2023,12,28,Australia,AU,New South Wales,-31.905232,152.326124,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.388847,150.630922,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190J,1,,occurrenceRemarks withheld,2024,7,7,Australia,AU,New South Wales,-32.201281,152.136862,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004035,1,,occurrenceRemarks withheld,2023,9,19,Australia,AU,New South Wales,-28.240082,153.501594,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.433048,150.615986,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.465587,150.521898,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,1,18,Australia,AU,New South Wales,-34.112821,150.789066,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.219628,152.19096,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-32.706185,152.063401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.389204,150.628878,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.446777,150.516773,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.435537,150.615556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.419064,150.609464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.434902,150.608904,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,,occurrenceRemarks withheld,2023,4,27,Australia,AU,New South Wales,-28.846422,153.316233,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-31.932308,152.412688,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,9,Australia,AU,New South Wales,-29.485538,153.10379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.436531,150.603679,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,1,22,Australia,AU,New South Wales,-31.449908,152.924308,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031522,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-28.580872,153.15582,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.441424,150.517748,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022516,1,,occurrenceRemarks withheld,2022,6,13,Australia,AU,New South Wales,-32.720145,151.988872,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.418343,150.632646,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.436362,150.603368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.454189,150.520385,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-31.445903,152.915574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.455105,150.610277,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.43949,150.619002,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.39554,150.642762,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,FEMALE,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-29.66734,152.867825,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-34.29377,150.82481,EPSG:4326 +HUMAN_OBSERVATION,ODFK23120709,1,,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-29.731778,152.960707,EPSG:4326 +HUMAN_OBSERVATION,OJJS20040800,1,FEMALE,occurrenceRemarks withheld,2020,4,7,Australia,AU,New South Wales,-29.735184,152.922816,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,23,Australia,AU,New South Wales,-28.981439,153.437446,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303240M,1,,occurrenceRemarks withheld,2023,7,20,Australia,AU,New South Wales,-33.566944,150.970833,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.830777,153.283326,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,28,Australia,AU,New South Wales,-30.877162,152.737845,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-28.825855,153.322444,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.826069,153.315522,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.239653,153.503422,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,8,4,Australia,AU,New South Wales,-36.554484,149.949575,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.457014,150.6581,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-29.488779,153.101955,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.147892,150.793923,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-31.674712,152.806554,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.432299,150.61085,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202,1,,occurrenceRemarks withheld,2022,3,10,Australia,AU,New South Wales,-30.455,151.667,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,4,27,Australia,AU,New South Wales,-31.915606,152.374088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.42923,150.614365,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.465797,150.521543,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,11,10,Australia,AU,New South Wales,-31.484394,152.915635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.411616,150.596068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.417629,150.602956,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090503;OLHP23090504,1,FEMALE,occurrenceRemarks withheld,2021,1,9,Australia,AU,New South Wales,-30.494909,152.941445,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.449597,150.515797,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-31.923541,152.371046,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,12,,Australia,AU,New South Wales,-30.021503,151.897396,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180L,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-28.678687,153.493649,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.509694,150.607343,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-29.488046,153.102577,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-29.485286,153.103918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.446209,150.51765,EPSG:4326 +HUMAN_OBSERVATION,OJJS0706270V,1,,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-33.149976,149.690579,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,1,Australia,AU,New South Wales,-29.489797,153.101322,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-29.476932,153.104825,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-223,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-31.957715,152.417079,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-32.706113,152.063293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.475782,150.532929,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,10,Australia,AU,New South Wales,-34.440994,150.61526,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-32.229205,152.189597,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-31.451721,152.897027,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031517,1,FEMALE,occurrenceRemarks withheld,2022,7,6,Australia,AU,New South Wales,-28.73469,153.5465,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031806,1,,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-28.886375,153.222609,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150U,1,,occurrenceRemarks withheld,2024,3,24,Australia,AU,New South Wales,-32.696024,150.003869,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-31.629635,152.787019,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,5,29,Australia,AU,New South Wales,-28.840919,153.231128,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-28.815793,153.315553,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,26,Australia,AU,New South Wales,-29.488765,153.094177,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-34.201092,150.754898,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004142,1,FEMALE,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-28.900009,153.297949,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-29.48664,153.097186,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-29.490082,153.101161,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150M,1,,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-30.442547,152.893564,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,2,15,Australia,AU,New South Wales,-32.706257,152.063513,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.467324,150.512834,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.446035,150.513106,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-33.70598,150.786413,EPSG:4326 +HUMAN_OBSERVATION,Obs_0305,1,,occurrenceRemarks withheld,2022,7,4,Australia,AU,New South Wales,-32.727471,152.006253,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,21,Australia,AU,New South Wales,-31.913607,152.401042,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,4,29,Australia,AU,New South Wales,-31.446468,152.914903,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.456986,150.528073,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.445884,150.517213,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100G,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.446229,152.891058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.392339,150.633422,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-28.958311,153.432956,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,10,Australia,AU,New South Wales,-31.446849,152.893115,EPSG:4326 +HUMAN_OBSERVATION,OPXE96061101,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-31.653199,152.810715,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.451458,150.522207,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150D,1,FEMALE,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-36.053748,149.365149,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-28.840728,153.285659,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-36.059639,149.282056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.493234,150.639143,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-31.432821,152.896919,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003946,1,,occurrenceRemarks withheld,2023,4,4,Australia,AU,New South Wales,-28.610591,152.661316,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,16,Australia,AU,New South Wales,-36.064179,149.30799,EPSG:4326 +HUMAN_OBSERVATION,OPXE96061101,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-31.653199,152.810715,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-30.287438,152.609645,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,16,Australia,AU,New South Wales,-32.338554,152.531129,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-29.49082,153.10932,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,3,Australia,AU,New South Wales,-33.713576,150.783627,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.450362,150.615266,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260C,1,,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-32.707682,152.063952,EPSG:4326 +HUMAN_OBSERVATION,OJJS21010501,1,MALE,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-30.17693,152.489306,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-31.641205,152.793435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.457843,150.65996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.451497,150.616148,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060502,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-30.326985,153.085842,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,9,Australia,AU,New South Wales,-33.717554,150.783939,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,2,23,Australia,AU,New South Wales,-31.456201,152.89787,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.465618,150.521178,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-31.443248,152.894048,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,MALE,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-28.849986,153.315905,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433772,150.617065,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,13,Australia,AU,New South Wales,-29.48792,153.102454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.387059,150.626589,EPSG:4326 +HUMAN_OBSERVATION,OJJS20040702,1,,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-29.48947,153.110576,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.572611,149.995573,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,23,Australia,AU,New South Wales,-28.884244,153.324752,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,2,12,Australia,AU,New South Wales,-28.585441,153.071682,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-29.490054,153.10976,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.435786,150.615386,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,12,22,Australia,AU,New South Wales,-31.47932,152.914411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.465727,150.520337,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-34.083054,150.999003,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,MALE,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-31.926413,152.352917,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.420676,150.630676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.428666,150.60028,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.454454,150.606486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.456975,150.659854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.430575,150.609409,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.085514,150.975253,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,4,Australia,AU,New South Wales,-33.706871,150.785781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-34.466462,150.522786,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072601;ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,8,Australia,AU,New South Wales,-28.257745,153.400663,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,3,2,Australia,AU,New South Wales,-34.490589,150.466953,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-28.959973,153.394863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.4184,150.632786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.399692,150.617434,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.450527,150.515868,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.389352,150.623523,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-31.914503,152.38007,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,3,31,Australia,AU,New South Wales,-34.754674,146.552742,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,2,6,Australia,AU,New South Wales,-31.440823,152.88388,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,1,Australia,AU,New South Wales,-29.774336,151.033701,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.396268,150.642197,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,FEMALE,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-29.631317,152.900516,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.429655,150.618128,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-28.959978,153.395153,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-30.334349,153.096335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.418357,150.63196,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2023,4,27,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,23,Australia,AU,New South Wales,-29.490147,153.109959,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.462348,150.534685,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.436004,150.615935,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-32.590267,151.773657,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,20,Australia,AU,New South Wales,-35.157587,149.946838,EPSG:4326 +HUMAN_OBSERVATION,ODMP1003011Y,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-31.27744,152.81802,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-31.449161,152.90517,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-34.511833,150.538333,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.430305,150.609873,EPSG:4326 +HUMAN_OBSERVATION,OPXE96061101,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.949853,153.316325,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,1,19,Australia,AU,New South Wales,-34.053649,150.837283,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.433794,150.608022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.39633,150.64213,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041A,1,,occurrenceRemarks withheld,2023,1,15,Australia,AU,New South Wales,-30.643622,151.497089,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,14,Australia,AU,New South Wales,-31.473012,152.926446,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.394519,150.642638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.488846,150.637862,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.384491,150.622508,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.397171,150.646468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.437543,150.517971,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-31.355557,152.69277,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.392851,150.644055,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,5,3,Australia,AU,New South Wales,-32.777513,152.109985,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-28.864669,153.293096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418752,150.60918,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.437085,150.602977,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.420467,150.609316,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-33.708813,150.785908,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-28.626781,153.481287,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,27,Australia,AU,New South Wales,-29.490516,153.109417,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2022,5,23,Australia,AU,New South Wales,-32.728196,152.086206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.385517,150.626589,EPSG:4326 +HUMAN_OBSERVATION,OJJS20041402,1,,occurrenceRemarks withheld,2020,4,,Australia,AU,New South Wales,-32.314012,151.758849,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.465699,150.521622,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240Q,1,,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-32.739923,152.094146,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,1,3,Australia,AU,New South Wales,-29.200397,153.143431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.450677,150.520619,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.447205,150.512995,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.418183,150.599916,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.386006,150.627163,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-28.871912,153.415881,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.427328,150.604725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.458757,150.660152,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419018,150.609422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.461927,150.533445,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060502,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-30.338406,153.078262,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,2,10,Australia,AU,New South Wales,-28.822308,153.283257,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-28.958968,153.393981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.43897,150.604403,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,26,Australia,AU,New South Wales,-29.152018,152.915095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.456233,150.655913,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.418852,150.632871,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.458375,150.659499,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002739,1,,occurrenceRemarks withheld,2022,5,14,Australia,AU,New South Wales,-29.490213,153.110522,EPSG:4326 +HUMAN_OBSERVATION,OLHP23082509,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-32.665157,152.041486,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-29.726928,152.929481,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-29.485552,153.103752,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,8,20,Australia,AU,New South Wales,-34.189017,150.790785,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,9,18,Australia,AU,New South Wales,-28.398817,153.555987,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-32.404663,151.752415,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-34.514,150.595561,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210T,1,,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-32.657602,151.963689,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.479609,150.533186,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,4,20,Australia,AU,New South Wales,-31.924736,152.314588,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.49135,150.639164,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-28.83929,153.361058,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,6,Australia,AU,New South Wales,-29.489535,153.10394,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,3,29,Australia,AU,New South Wales,-31.189048,152.973842,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.447312,150.519598,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.439072,150.525216,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.432459,150.614425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.390288,150.628978,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,3,Australia,AU,New South Wales,-29.480378,153.104171,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.098225,150.808549,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,23,Australia,AU,New South Wales,-31.447485,152.892524,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-29.484805,153.095995,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2021,2,16,Australia,AU,New South Wales,-32.737789,152.039104,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060500,1,,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-28.838571,153.311174,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.419698,150.61147,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-28.254046,153.375014,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-33.386849,150.694698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.423798,150.637345,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-31.936905,152.510302,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070800;OPUR21080903,1,,occurrenceRemarks withheld,2020,2,12,Australia,AU,New South Wales,-31.426271,152.880083,EPSG:4326 +HUMAN_OBSERVATION,F-OBS000277,1,,occurrenceRemarks withheld,2020,5,14,Australia,AU,New South Wales,-31.775191,152.586591,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.464889,150.521701,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-33.714524,150.785131,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-32.70656,152.063775,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.418297,150.632582,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-31.456759,152.921205,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.39831,150.640106,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2023,12,18,Australia,AU,New South Wales,-31.464769,152.872205,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-31.914535,152.373639,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-34.89993,150.05708,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132E,1,,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-31.44219,152.91225,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,,occurrenceRemarks withheld,2023,1,1,Australia,AU,New South Wales,-34.740797,146.529719,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,2,15,Australia,AU,New South Wales,-30.345093,153.086229,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,FEMALE,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-28.555784,153.075063,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.454357,152.906556,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031537,1,,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-28.637369,153.629423,EPSG:4326 +HUMAN_OBSERVATION,ODFK23121108,1,,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-29.478225,153.103918,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-31.407587,152.141262,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-33.419281,149.577506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457035,150.518026,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-29.490217,153.108183,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102213,1,,occurrenceRemarks withheld,2020,12,17,Australia,AU,New South Wales,-32.70652,152.064607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.46924,150.530443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.494152,150.640457,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.396795,150.641932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.447518,150.516414,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,6,25,Australia,AU,New South Wales,-32.775837,152.085296,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003962,1,,occurrenceRemarks withheld,2023,4,24,Australia,AU,New South Wales,-28.506774,153.53323,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.389925,150.630717,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-31.558909,152.590888,EPSG:4326 +HUMAN_OBSERVATION,OJJT03110500,1,,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-34.093819,150.833835,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405270B,1,,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-30.402213,151.624706,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,17,Australia,AU,New South Wales,-31.621103,152.694188,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011200,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.951998,152.19037,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-29.479988,153.10424,EPSG:4326 +HUMAN_OBSERVATION,OCMK22081600,1,,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-33.228387,151.118042,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-28.97709,153.30734,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-31.915639,152.373325,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003837,1,,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-28.693291,153.49553,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,28,Australia,AU,New South Wales,-33.710495,150.785138,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-29.489923,153.110533,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.457594,150.518499,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,7,10,Australia,AU,New South Wales,-31.487894,152.909685,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-34.477465,150.532346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.488288,150.636996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.492994,150.639346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419018,150.610347,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001217,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-28.712315,153.594424,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004047,1,MALE,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-28.500029,153.149332,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-28.658124,153.590577,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-28.848102,153.302486,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,4,23,Australia,AU,New South Wales,-32.518862,151.843566,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-29.4875,153.102701,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-31.442876,152.91956,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-31.145158,152.980062,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,3,Australia,AU,New South Wales,-29.485594,153.103811,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,MALE,occurrenceRemarks withheld,2022,7,17,Australia,AU,New South Wales,-34.013124,150.877346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.388104,150.624211,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,3,Australia,AU,New South Wales,-34.265974,150.685616,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.129716,150.98141,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,23,Australia,AU,New South Wales,-32.705964,152.063585,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-32.706553,152.063312,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.436166,150.615909,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-28.434815,153.015853,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.452055,150.517444,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-33.953175,150.940088,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-31.476487,152.926263,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-31.59403,152.838531,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.428621,150.600292,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-28.659488,153.61586,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-29.489657,153.10416,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2022,10,28,Australia,AU,New South Wales,-34.066996,150.848132,EPSG:4326 +HUMAN_OBSERVATION,ODFK24021200,1,,occurrenceRemarks withheld,2023,12,5,Australia,AU,New South Wales,-30.40514,152.87057,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2024,7,28,Australia,AU,New South Wales,-33.976111,150.986371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.432919,150.615848,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031534,1,,occurrenceRemarks withheld,2022,7,21,Australia,AU,New South Wales,-28.81439,153.34001,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-30.326207,151.649775,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,2,15,Australia,AU,New South Wales,-28.817652,153.303208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.451829,150.518267,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,2,28,Australia,AU,New South Wales,-31.458665,152.911789,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.432696,150.603973,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.420658,150.630688,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.541583,150.016902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.423798,150.637345,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.446656,150.515721,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-28.37446,153.560235,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.447586,150.518447,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.865743,153.303017,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151D,1,,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-29.018925,153.395546,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,4,3,Australia,AU,New South Wales,-31.913202,152.374047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.437896,150.604369,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-34.40122,150.4846,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,4,Australia,AU,New South Wales,-29.485641,153.103763,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,28,Australia,AU,New South Wales,-35.066402,150.121111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.418877,150.632751,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.8186,153.277965,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003871,1,,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-28.787324,153.383242,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,6,Australia,AU,New South Wales,-28.826884,153.316022,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181V,1,,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-28.81811,153.301256,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.454189,150.608126,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-31.458621,152.922496,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.434294,150.616092,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,10,Australia,AU,New South Wales,-31.207512,152.390213,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJKB21062902,1,,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-33.561591,149.526366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.393208,150.644328,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030602,1,,occurrenceRemarks withheld,2024,2,26,Australia,AU,New South Wales,-31.484888,152.901728,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-31.26337,152.8278,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.388417,150.631521,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.412973,150.599043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.446556,150.514331,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-30.120163,152.741668,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.429494,150.616838,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-34.398682,150.640194,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,25,Australia,AU,New South Wales,-29.484754,153.096108,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004276,1,,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-28.224592,153.501114,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.387856,150.624446,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,2,17,Australia,AU,New South Wales,-34.103904,150.956507,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.427889,150.597898,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.43163,150.611217,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.454019,150.520487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.387553,150.631132,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-31.914637,152.381097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.437877,150.604293,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-28.826415,153.281139,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-31.443521,152.898346,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,5,4,Australia,AU,New South Wales,-28.86626,153.388725,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-34.139613,150.778378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.413746,150.595746,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-28.82706,153.322333,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,23,Australia,AU,New South Wales,-31.453336,152.924358,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.395724,150.642941,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,3,8,Australia,AU,New South Wales,-28.840098,153.140258,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-29.489956,153.101569,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,12,18,Australia,AU,New South Wales,-31.442488,152.901272,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,3,5,Australia,AU,New South Wales,-31.446271,152.893647,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-31.481437,152.907614,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180F,1,,occurrenceRemarks withheld,2022,7,4,Australia,AU,New South Wales,-28.863958,153.293688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.424719,150.60271,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-30.429414,152.976873,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-33.776012,150.063219,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,15,Australia,AU,New South Wales,-28.385548,153.562111,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-28.580327,153.511009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436302,150.615937,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,4,Australia,AU,New South Wales,-29.489741,153.10519,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004237,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.92076,153.266992,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003874,1,MALE,occurrenceRemarks withheld,2023,4,10,Australia,AU,New South Wales,-28.643115,153.140035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.46531,150.522461,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.396795,150.641932,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.632867,149.949786,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,19,Australia,AU,New South Wales,-29.48375,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.390004,150.627811,EPSG:4326 +HUMAN_OBSERVATION,OPJG15082102,1,,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-30.560076,152.993755,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,4,8,Australia,AU,New South Wales,-31.62958,152.786822,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-31.306397,152.866917,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-31.438541,152.908333,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,11,13,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.430751,150.613299,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-28.868027,153.336688,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031547,1,,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-28.833877,153.335614,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-33.716655,150.784611,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-29.39242,153.19895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.396982,150.644146,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.447795,150.5172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-34.446239,150.51384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.44762,150.517009,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-31.640743,152.791043,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033009,1,,occurrenceRemarks withheld,2020,6,20,Australia,AU,New South Wales,-33.200218,151.160011,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.466039,150.521917,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.420649,150.629731,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110L,1,FEMALE,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-31.474333,152.868377,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-28.633989,153.484382,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,11,Australia,AU,New South Wales,-29.485496,153.103947,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-29.485347,153.103634,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-30.24028,152.9063,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.420618,150.609192,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-29.489615,153.104385,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-31.443643,152.924715,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-34.061552,150.844493,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.42878,150.61626,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-28.863526,153.292114,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,,occurrenceRemarks withheld,2022,12,10,Australia,AU,New South Wales,-34.747799,146.531241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.436995,150.603469,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418843,150.63286,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100407,1,,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-34.045689,151.009484,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102210,1,,occurrenceRemarks withheld,2022,3,27,Australia,AU,New South Wales,-32.708604,152.068801,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122007,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-36.084545,149.150167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.389743,150.625992,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.452627,150.519854,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,3,26,Australia,AU,New South Wales,-33.775552,150.062479,EPSG:4326 +HUMAN_OBSERVATION,OJJS20080302,1,FEMALE,occurrenceRemarks withheld,2020,7,15,Australia,AU,New South Wales,-31.442527,152.918472,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,23,Australia,AU,New South Wales,-33.713395,150.785498,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-32.722818,151.851875,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,24,Australia,AU,New South Wales,-28.596578,153.089601,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,6,3,Australia,AU,New South Wales,-31.927966,152.403877,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.452,150.517369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.432194,150.605532,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-32.706625,152.063655,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,18,Australia,AU,New South Wales,-28.824581,153.315895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.474915,150.533313,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.447261,150.513091,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.420657,150.630644,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-29.477581,153.10423,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-30.880197,153.071977,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-34.19595,150.79862,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041Y,1,,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-30.5006,151.6674,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.421812,150.63628,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-31.2829,152.82489,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.43905,150.602529,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,1,15,Australia,AU,New South Wales,-31.459239,152.865607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.46384,150.523745,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-31.450157,152.930102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.446141,150.513854,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-33.71313,150.089698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.429878,150.60512,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-34.448538,150.515589,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.488356,150.635394,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-29.48007,153.104112,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.546122,150.626185,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,8,Australia,AU,New South Wales,-29.49017,153.110511,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,8,Australia,AU,New South Wales,-29.490058,153.107438,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,5,8,Australia,AU,New South Wales,-31.450178,152.929028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.459194,150.533863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.429317,150.606811,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.220281,149.397319,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.389026,150.626675,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100501,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-31.630813,152.79166,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,8,11,Australia,AU,New South Wales,-33.699723,149.543438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.434536,150.616455,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-34.49557,150.47178,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.42672,150.598073,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.456258,150.658154,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.460273,150.518986,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.430593,150.61079,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-31.466515,152.927978,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-29.490516,153.109353,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-34.027328,150.989327,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-31.471389,152.917254,EPSG:4326 +HUMAN_OBSERVATION,OPJG21032600,1,,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.055833,150.77,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.388159,150.631713,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-29.479827,153.104208,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070R,1,,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-33.542098,149.681988,EPSG:4326 +HUMAN_OBSERVATION,OCAM10010600,1,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.755822,146.569688,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.445191,150.516798,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.462212,150.534634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.388086,150.631215,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,6,19,Australia,AU,New South Wales,-28.854755,153.384714,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,24,Australia,AU,New South Wales,-28.864664,153.293124,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.420956,150.630244,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,7,6,Australia,AU,New South Wales,-31.240123,152.757359,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-29.485772,153.103677,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,6,30,Australia,AU,New South Wales,-34.024485,150.97665,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.491047,150.638399,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.435956,150.61623,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.427739,150.600818,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-30.22644,153.137708,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.455229,150.519657,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.452662,150.519788,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.42173,150.636228,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-28.848741,153.286486,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2024,9,10,Australia,AU,New South Wales,-34.360278,150.813889,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2021,12,3,Australia,AU,New South Wales,-32.729621,152.131573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.395571,150.641575,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300P,1,,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-32.710719,152.068841,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.454944,150.657331,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.13442,150.79459,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.451942,150.521169,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.485579,150.636311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.451565,150.517263,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.420655,150.630525,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,MALE,occurrenceRemarks withheld,2021,1,4,Australia,AU,New South Wales,-34.139758,150.786977,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-29.486313,153.096736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.43049,150.610575,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001217,1,,occurrenceRemarks withheld,2021,8,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.429601,150.618119,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.488673,150.637769,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-31.444937,152.916639,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-28.972314,153.428775,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.454505,150.515565,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,15,Australia,AU,New South Wales,-32.349837,152.492959,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251V,1,,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-32.729167,152.089444,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.45411,150.520496,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,2,15,Australia,AU,New South Wales,-31.60035,152.241456,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-28.653446,153.454341,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110Y,1,,occurrenceRemarks withheld,2023,7,10,Australia,AU,New South Wales,-31.475408,152.897069,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,11,Australia,AU,New South Wales,-28.864652,153.29284,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-30.371294,151.569727,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-33.712933,150.785833,EPSG:4326 +HUMAN_OBSERVATION,OVGI98110201,1,,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-30.477591,151.73971,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.432551,150.615467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.446583,150.514341,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,8,Australia,AU,New South Wales,-29.489568,153.103913,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-28.983325,153.297349,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.463869,150.52209,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-28.779615,153.237182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.387767,150.631496,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.397817,150.622098,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2022,5,19,Australia,AU,New South Wales,-30.22548,152.631725,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,18,Australia,AU,New South Wales,-33.714179,150.785108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.49191,150.639192,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.454285,150.60845,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-34.138901,150.836838,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.449963,150.618411,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.435183,150.618211,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,2,Australia,AU,New South Wales,-34.438816,150.615877,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060502,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-30.3382,153.077824,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.113099,150.833867,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,1,5,Australia,AU,New South Wales,-30.50624,152.92611,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419665,150.635274,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,3,14,Australia,AU,New South Wales,-28.828432,153.295648,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190I,1,,occurrenceRemarks withheld,2024,9,5,Australia,AU,New South Wales,-32.030191,151.969432,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,16,Australia,AU,New South Wales,-28.683061,153.44059,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-32.76048,151.766918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.457412,150.518406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.422186,150.605905,EPSG:4326 +HUMAN_OBSERVATION,OLHP2312140B,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-31.941297,152.476462,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2022,4,5,Australia,AU,New South Wales,-28.786007,152.091413,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,11,Australia,AU,New South Wales,-32.706172,152.063393,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-31.465818,152.92343,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-28.851685,153.366858,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090403,1,,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-29.678687,152.871273,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.455212,150.606976,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,2,15,Australia,AU,New South Wales,-28.615315,153.130165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.477691,150.634443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.447574,150.517413,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.468275,150.52061,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.222189,151.721419,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-33.706053,150.786125,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.388443,150.631488,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140W,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-36.465931,148.720808,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.39576,150.646725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.451533,150.515261,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,17,Australia,AU,New South Wales,-29.490301,153.108017,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,8,13,Australia,AU,New South Wales,-28.847902,153.319997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.448091,150.515798,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-28.923326,153.262928,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-28.62343,153.425778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.466504,150.507579,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-32.710635,152.06574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.388206,150.630885,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-30.295912,153.123835,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.420911,150.630245,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-28.260327,153.400487,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-28.260534,153.402932,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.495912,152.877938,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.455056,150.606828,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,15,Australia,AU,New South Wales,-33.714085,150.78516,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,12,25,Australia,AU,New South Wales,-31.455426,152.912201,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.492062,150.639144,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-29.485127,153.104031,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.436291,150.603413,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,12,5,Australia,AU,New South Wales,-32.706723,152.063956,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100408,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-31.440734,152.921716,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101306,1,FEMALE,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-33.271332,150.686648,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,7,3,Australia,AU,New South Wales,-32.765093,152.03604,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-32.233788,152.201795,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-28.389746,153.275997,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.742226,152.098552,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,12,22,Australia,AU,New South Wales,-33.51732,150.617141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.431049,150.61613,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111503,1,FEMALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-32.68599,151.660673,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.416963,150.599777,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-30.919434,153.063749,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.423303,150.604981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.395697,150.642975,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030R,1,,occurrenceRemarks withheld,2023,2,22,Australia,AU,New South Wales,-30.63688,151.41558,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.41963,150.611689,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-31.141102,152.773921,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-36.255119,149.428881,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.394478,150.629795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.447136,150.513139,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070D,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-34.061266,151.000434,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152U,1,FEMALE,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-28.55488,153.075664,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070B,1,,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-32.763364,152.035625,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.43788,150.603074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.42092,150.62795,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-36.459771,149.965237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.420425,150.635438,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,23,Australia,AU,New South Wales,-28.326808,153.466987,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,12,25,Australia,AU,New South Wales,-31.914418,152.378375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.489471,150.633849,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401110E,1,,occurrenceRemarks withheld,2023,12,18,Australia,AU,New South Wales,-32.723509,152.015244,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.470964,150.524297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.493183,150.639297,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-36.554124,150.021287,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.452609,150.519865,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,MALE,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-34.800551,150.021283,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-31.448193,152.895148,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.403398,150.650101,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.4366,150.519033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.390195,150.626033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.387417,150.631136,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2024,5,28,Australia,AU,New South Wales,-36.175444,149.337584,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.463671,150.523837,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.465908,150.522128,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-28.257735,153.400654,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,24,Australia,AU,New South Wales,-31.447197,152.900786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.430725,150.607838,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-31.44127,152.90363,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,4,Australia,AU,New South Wales,-31.438605,152.90564,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,17,Australia,AU,New South Wales,-31.436746,152.905377,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-32.472237,151.974623,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-29.490866,153.100158,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090407,1,FEMALE,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-32.723591,152.150659,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222F,1,,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-32.728562,152.081013,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-29.490236,153.110152,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,27,Australia,AU,New South Wales,-29.48862,153.093045,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-32.241755,152.189974,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.386344,150.627393,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-28.329373,153.467912,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.435341,150.603245,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-28.624817,153.168586,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-31.952512,152.30434,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.393278,150.643282,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500,1,,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-28.7273,153.60144,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-29.490227,153.108135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.395042,150.630997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.426283,150.60519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.446418,150.513737,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.420168,150.634248,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-28.82053,153.32518,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-34.476096,150.532545,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,2,26,Australia,AU,New South Wales,-28.59977,153.55565,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-35.927903,149.283628,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-28.93805,153.277607,EPSG:4326 +HUMAN_OBSERVATION,OGEM18052300,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.145033,150.796614,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.436573,150.607671,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,4,23,Australia,AU,New South Wales,-36.168165,149.273922,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OMFZ23033002;ODFK24051300,1,,occurrenceRemarks withheld,2023,2,9,Australia,AU,New South Wales,-32.132422,152.028844,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,7,Australia,AU,New South Wales,-28.649451,153.362191,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.446301,150.513762,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.465785,150.52051,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.427432,150.603579,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.438438,150.617335,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-29.485291,153.104047,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-29.490002,153.101322,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.451671,150.522472,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-30.517172,152.886444,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-29.485424,153.103771,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,12,Australia,AU,New South Wales,-29.478753,153.104128,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-28.837883,153.140216,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.491463,150.638965,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.436186,150.51688,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.297419,149.323215,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153Y,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-28.589257,153.445933,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-29.339869,153.254317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.43093,150.61461,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.388506,150.631007,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.394964,150.641418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.466022,150.521526,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.420947,150.630266,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,9,Australia,AU,New South Wales,-29.483447,153.095235,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.423798,150.637345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435724,150.521213,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2020,1,23,Australia,AU,New South Wales,-31.550983,152.707755,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220A,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-32.604161,151.725053,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.447162,150.513105,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181D,1,,occurrenceRemarks withheld,2022,8,28,Australia,AU,New South Wales,-28.845689,153.59614,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-32.686658,151.652747,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,12,Australia,AU,New South Wales,-29.015237,153.394806,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,13,Australia,AU,New South Wales,-33.716466,150.784508,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122000,1,FEMALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-32.966096,149.678336,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-32.738641,152.111759,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-29.483481,153.09525,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.427299,150.600493,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,2,8,Australia,AU,New South Wales,-28.858382,153.312937,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.397795,150.621903,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.417818,150.601537,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,29,Australia,AU,New South Wales,-28.830562,153.218041,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-28.858812,153.34316,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.457817,152.87346,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,23,Australia,AU,New South Wales,-29.489531,153.103951,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.449835,152.907006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.421362,150.627491,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-29.489979,153.101177,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,18,Australia,AU,New South Wales,-33.708214,150.785232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.392693,150.639144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.450913,150.522876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.421781,150.637467,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,3,31,Australia,AU,New South Wales,-34.773124,146.587844,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.390612,150.628947,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,27,Australia,AU,New South Wales,-29.490114,153.10748,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-34.079306,150.839908,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.445441,150.516225,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122109,1,,occurrenceRemarks withheld,2022,11,6,Australia,AU,New South Wales,-30.278132,153.14144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.452881,150.519901,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031510,1,FEMALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-28.822501,153.302986,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-34.512,150.523877,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-29.662278,152.878763,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-28.816275,153.273151,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.465708,150.520305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.446556,150.514331,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.098087,150.844131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.450481,150.617689,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,3,29,Australia,AU,New South Wales,-28.920319,153.267189,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,4,7,Australia,AU,New South Wales,-33.778902,150.100785,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-29.660144,152.883713,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030509,1,,occurrenceRemarks withheld,2024,1,13,Australia,AU,New South Wales,-31.944825,152.394606,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-28.288936,153.39463,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.420277,150.627315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.426815,150.604293,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050C,1,,occurrenceRemarks withheld,2024,3,25,Australia,AU,New South Wales,-31.437668,152.905373,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,,occurrenceRemarks withheld,2024,6,29,Australia,AU,New South Wales,-31.946761,152.299156,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-33.716293,150.785221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.455887,150.657642,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-31.915492,152.374065,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2023,11,29,Australia,AU,New South Wales,-31.453816,152.918745,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.388794,150.623996,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,OPJG22081704,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-31.225616,152.772936,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004060,1,MALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.561525,153.116345,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.146058,152.86366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.471257,150.528958,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.65887,152.813158,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.464503,150.523116,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2024,6,2,Australia,AU,New South Wales,-34.470055,150.441886,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.450043,150.516459,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,FEMALE,occurrenceRemarks withheld,2022,10,20,Australia,AU,New South Wales,-34.099778,150.803384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.439344,150.603228,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.436102,150.616346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.458324,150.659664,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,3,12,Australia,AU,New South Wales,-32.90371,151.61099,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.466664,150.522508,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-28.631915,153.489942,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,4,17,Australia,AU,New South Wales,-29.677883,152.87607,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OEIJ21090900,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-30.885806,153.072111,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,26,Australia,AU,New South Wales,-33.713902,150.785791,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-33.417464,149.350046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-34.437838,150.616612,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041C,1,,occurrenceRemarks withheld,2023,3,27,Australia,AU,New South Wales,-29.860281,150.573795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.390122,150.626035,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160A,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-30.643768,151.332101,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,27,Australia,AU,New South Wales,-28.834659,153.325901,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-29.490114,153.101274,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-28.650953,153.403568,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.421207,150.627398,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-29.4901,153.107427,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-30.492423,151.622529,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-31.943285,152.471384,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-34.476,150.577567,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,4,21,Australia,AU,New South Wales,-31.457964,152.87643,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-28.844482,153.3209,EPSG:4326 +HUMAN_OBSERVATION,ORCL20121600,1,,occurrenceRemarks withheld,2020,8,20,Australia,AU,New South Wales,-31.463333,152.867778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.451466,150.522174,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-29.488812,153.101971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.455069,150.657262,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,25,Australia,AU,New South Wales,-31.458591,152.929581,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,28,Australia,AU,New South Wales,-29.490264,153.10813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.400638,150.624357,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419109,150.610366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.397591,150.622039,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,31,Australia,AU,New South Wales,-29.490488,153.109422,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070G,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-33.534672,149.679004,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-30.936905,153.044129,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181V,1,,occurrenceRemarks withheld,2023,8,28,Australia,AU,New South Wales,-28.818632,153.302184,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-30.422288,152.980216,EPSG:4326 +HUMAN_OBSERVATION,ODMP21121516,1,FEMALE,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-31.775333,150.157778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.455545,150.608806,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.452184,150.518463,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210J,1,FEMALE,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-28.275582,153.394861,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-30.290401,152.699675,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-31.42228,152.881156,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-28.25361,153.474958,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.465867,150.521454,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,6,Australia,AU,New South Wales,-31.466317,152.926892,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,FEMALE,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-32.003815,151.943845,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-31.444461,152.90469,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-29.491529,153.109696,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419124,150.610246,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-33.775679,150.103635,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-31.92614,152.354081,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-30.263237,153.112743,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,22,Australia,AU,New South Wales,-29.48969,153.104927,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,25,Australia,AU,New South Wales,-29.187534,152.78605,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-31.140562,152.807831,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-29.485494,153.103821,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-29.489316,153.101853,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419576,150.635788,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,2,12,Australia,AU,New South Wales,-31.436985,152.905522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.458919,150.529616,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.428623,150.601772,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081101,1,,occurrenceRemarks withheld,2023,4,23,Australia,AU,New South Wales,-31.443161,152.900839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.494302,150.640746,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.467675,150.519474,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,1,Australia,AU,New South Wales,-28.653956,153.008361,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-29.726819,152.929344,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.81222,153.313992,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.471308,150.523895,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080302,1,,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-31.946054,152.417908,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-28.561971,153.133501,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.437929,150.604172,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-36.474664,149.917922,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-33.70615,150.786179,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.400119,150.639435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.454631,150.657024,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.451538,150.518156,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-31.454786,152.918794,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070P,1,,occurrenceRemarks withheld,2020,12,21,Australia,AU,New South Wales,-34.74265,146.555555,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,5,Australia,AU,New South Wales,-31.454468,152.926415,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-29.739275,151.05735,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-29.485069,153.10416,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-31.469908,152.918206,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-29.476684,153.104514,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,4,21,Australia,AU,New South Wales,-31.442702,152.897136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.494172,150.640565,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.421195,150.62631,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-29.505303,152.824856,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.395698,150.626247,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,4,Australia,AU,New South Wales,-33.705918,150.786689,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.452044,150.517346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.389904,150.625476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.435672,150.607272,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,6,Australia,AU,New South Wales,-29.48968,153.104761,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-31.158259,152.922256,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-31.468845,152.91908,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310310E,1,,occurrenceRemarks withheld,2023,1,7,Australia,AU,New South Wales,-33.04652,151.124941,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103002,1,,occurrenceRemarks withheld,2023,4,13,Australia,AU,New South Wales,-32.727602,152.00565,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,25,Australia,AU,New South Wales,-29.222512,152.793993,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,2,26,Australia,AU,New South Wales,-28.855481,153.313501,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,23,Australia,AU,New South Wales,-34.440031,150.616256,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-32.710393,152.065241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.434595,150.616269,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032807,1,,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-31.472717,152.832147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.439479,150.606913,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082302;ODFK23082303;ODFK23082304;ODFK23082306,1,FEMALE,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.066693,150.887227,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-29.480789,153.104165,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-33.169384,151.245714,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,8,28,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,5,Australia,AU,New South Wales,-31.453187,152.925962,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.489359,150.638773,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-29.48834,153.102272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.449458,150.516063,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,MALE,occurrenceRemarks withheld,2024,5,28,Australia,AU,New South Wales,-31.1425,152.796527,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082302;ODFK23082303;ODFK23082304;ODFK23082305;ODFK23082306,1,,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-34.023695,150.880518,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.420741,150.629826,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.437936,150.61563,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.389111,150.631055,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,24,Australia,AU,New South Wales,-28.482389,152.835862,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-29.485361,153.104085,EPSG:4326 +HUMAN_OBSERVATION,ODFK23120705,1,,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-29.674141,152.877336,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-30.418497,152.973449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.420655,150.609223,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-28.388041,153.561464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.447175,150.519939,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.462273,150.534513,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-36.459771,149.965237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.493,150.639161,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-29.48743,153.090915,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,24,Australia,AU,New South Wales,-28.64025,153.481911,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.455919,150.657413,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-31.454879,152.898137,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082308;ODFK23082309;ODFK2308230A;ODFK2308230B,1,FEMALE,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.145116,150.79285,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-33.717336,150.784251,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.386973,150.631485,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-34.20198,150.789445,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,2,14,Australia,AU,New South Wales,-32.720258,152.173645,EPSG:4326 +HUMAN_OBSERVATION,OJJS19022501;ODMP21050503,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-32.714185,151.780333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.447874,150.517949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.471375,150.530348,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.429142,150.599287,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012913,1,,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-32.174066,151.971519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.468247,150.529482,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.42017,150.609302,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,2,14,Australia,AU,New South Wales,-31.485334,152.918134,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-29.485571,153.103854,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,8,Australia,AU,New South Wales,-29.478683,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.464597,150.521045,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-31.456647,152.872924,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.420439,150.628235,EPSG:4326 +HUMAN_OBSERVATION,OGEM18052300,1,,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-36.57367,149.955133,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-33.717047,150.785383,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.458309,150.662189,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.84178,152.759299,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101301,1,,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-28.261488,153.468867,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.469569,150.526657,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.387015,150.631778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.424401,150.603013,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,19,Australia,AU,New South Wales,-33.705579,150.785282,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-29.482214,153.104208,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-32.765951,152.115127,EPSG:4326 +HUMAN_OBSERVATION,OPUR20021302,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-32.72811,151.98576,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2022,10,24,Australia,AU,New South Wales,-32.029833,152.215,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2021,2,15,Australia,AU,New South Wales,-34.042768,150.863295,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,16,Australia,AU,New South Wales,-29.48919,153.098012,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-31.445989,152.901949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.430831,150.609543,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-31.17763,150.03886,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,6,12,Australia,AU,New South Wales,-32.706571,152.063687,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.469437,150.531711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.396048,150.640148,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.42742,150.602981,EPSG:4326 +HUMAN_OBSERVATION,OFAG22112400,1,,occurrenceRemarks withheld,2023,12,28,Australia,AU,New South Wales,-33.296261,150.938179,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.389595,150.627214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.384543,150.622865,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220O,1,,occurrenceRemarks withheld,2024,8,6,Australia,AU,New South Wales,-32.742829,152.065122,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001963,1,,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-31.449213,152.89258,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-28.842314,153.403814,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,4,6,Australia,AU,New South Wales,-36.577361,149.933675,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-29.490208,153.099005,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-31.439508,152.898794,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.385606,150.626522,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-28.609899,153.248538,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.464866,150.521451,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.429764,150.599291,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150X,1,MALE,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-28.624194,152.956825,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.445854,150.513046,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.84178,152.759299,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-31.536568,152.805693,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,2,7,Australia,AU,New South Wales,-31.910186,152.409406,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.862857,153.317651,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,6,Australia,AU,New South Wales,-29.485487,153.103817,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-31.466501,152.912339,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,6,29,Australia,AU,New South Wales,-31.876193,152.377728,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-31.43067,152.909674,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.200967,152.965822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.459248,150.521345,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.388108,150.62445,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102103,1,,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-32.711197,152.072216,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-31.911449,152.379609,EPSG:4326 +HUMAN_OBSERVATION,ODFK23083000,1,MALE,occurrenceRemarks withheld,2023,3,26,Australia,AU,New South Wales,-29.642636,152.8325,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,7,16,Australia,AU,New South Wales,-34.123519,150.971387,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,5,30,Australia,AU,New South Wales,-28.201099,153.517069,EPSG:4326 +HUMAN_OBSERVATION,OPUR23110802,1,,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-34.073712,150.834763,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.385826,150.627179,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-29.723819,152.931549,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-29.488116,153.092267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.465708,150.520294,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-32.722194,151.854881,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.458178,150.527287,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.419707,150.60962,EPSG:4326 +HUMAN_OBSERVATION,ODMP22111607,1,MALE,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-34.065309,150.840112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.386167,150.625701,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.44689,150.517031,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.400878,150.619064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.449494,150.516921,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-34.928544,150.146267,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030Q,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-34.009056,150.901139,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.418288,150.632626,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,20,Australia,AU,New South Wales,-28.976503,153.450907,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.45747,150.515934,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-28.254046,153.375014,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.467205,150.520751,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.435333,150.60281,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,3,8,Australia,AU,New South Wales,-31.465638,152.927623,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-29.736994,151.057991,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-28.283096,153.476669,EPSG:4326 +HUMAN_OBSERVATION,OLHP2407120I,1,,occurrenceRemarks withheld,2024,6,12,Australia,AU,New South Wales,-31.428813,152.883172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.420029,150.634502,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-34.446017,150.513117,EPSG:4326 +HUMAN_OBSERVATION,OPUR20051800;OPJGI0003846,1,,occurrenceRemarks withheld,2023,5,24,Australia,AU,New South Wales,-28.825541,153.603521,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290E,1,,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-32.725825,152.103577,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-28.405,153.548611,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.811157,152.826358,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.426641,150.601393,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.455735,150.527581,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.418389,150.633624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.488864,150.637884,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-31.454938,152.926937,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101Q,1,,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-31.910009,152.406634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.456341,150.655888,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072703;OLHP23072704,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.594109,152.191129,EPSG:4326 +HUMAN_OBSERVATION,HOBCD-HO;ODMP09041409,1,,occurrenceRemarks withheld,2022,1,26,Australia,AU,New South Wales,-32.305306,151.955853,EPSG:4326 +HUMAN_OBSERVATION,OLHP23071019,1,,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-31.439921,152.909528,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-29.740224,151.058653,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-31.924253,152.383697,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260G,1,,occurrenceRemarks withheld,2020,2,8,Australia,AU,New South Wales,-31.473845,152.901028,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-32.764468,152.117247,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-30.272467,153.063144,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-31.592736,152.710408,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.395382,150.629932,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-33.714038,150.784736,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-31.436541,152.895995,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.434677,150.606626,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-28.387941,153.563841,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,5,Australia,AU,New South Wales,-33.713156,150.78557,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.387754,150.631268,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.437959,150.605237,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-28.240955,153.498827,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.420338,150.627215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.425969,150.597931,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,1,8,Australia,AU,New South Wales,-31.444306,152.924676,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,3,27,Australia,AU,New South Wales,-29.489153,153.101671,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.220759,152.193373,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-33.491219,149.552128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.385842,150.625232,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,12,5,Australia,AU,New South Wales,-31.630062,152.784642,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-30.345268,153.077582,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-32.22154,152.20513,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,FEMALE,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-29.631317,152.900516,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.429618,150.618107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.458331,150.659544,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090803,1,,occurrenceRemarks withheld,2024,9,8,Australia,AU,New South Wales,-31.460665,152.921842,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2021,2,16,Australia,AU,New South Wales,-31.456222,152.930047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.428686,150.600388,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181H,1,,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-28.8747,153.13522,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100A,1,,occurrenceRemarks withheld,2023,11,27,Australia,AU,New South Wales,-31.473214,152.895709,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-31.447129,152.922601,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.434294,150.616092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-34.439498,150.517924,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,5,16,Australia,AU,New South Wales,-30.504429,152.920224,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-31.446692,152.901675,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.425029,150.601505,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-30.157302,152.72632,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.060984,150.866027,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.449515,150.516191,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.014552,151.992845,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-28.879476,153.194946,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,5,8,Australia,AU,New South Wales,-32.018393,151.961159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.453934,150.520283,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-31.920413,152.37985,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222E,1,,occurrenceRemarks withheld,2020,7,25,Australia,AU,New South Wales,-32.739859,152.083346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.465745,150.520315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.392755,150.635803,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012900,1,,occurrenceRemarks withheld,2024,3,24,Australia,AU,New South Wales,-32.325771,152.33194,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.049376,150.882196,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-34.444103,150.514741,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.628707,152.756984,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.428646,150.600205,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.447348,150.513807,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.183338,150.790715,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,6,Australia,AU,New South Wales,-28.885364,153.194868,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,5,13,Australia,AU,New South Wales,-33.9837,151.003562,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.469429,150.526824,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,4,26,Australia,AU,New South Wales,-33.71762,150.785438,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-31.304895,152.865916,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,6,18,Australia,AU,New South Wales,-31.163366,152.970434,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,5,24,Australia,AU,New South Wales,-28.260392,153.399425,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-28.381234,153.557109,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-34.437416,150.615742,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041307,1,MALE,occurrenceRemarks withheld,2021,2,3,Australia,AU,New South Wales,-34.078074,150.848121,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,24,Australia,AU,New South Wales,-31.468209,152.915001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.434326,150.616353,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003859,1,FEMALE,occurrenceRemarks withheld,2023,6,26,Australia,AU,New South Wales,-28.937766,153.277469,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250J,1,,occurrenceRemarks withheld,2024,9,22,Australia,AU,New South Wales,-34.763847,146.601837,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.423843,150.637343,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,1,Australia,AU,New South Wales,-28.849862,153.030808,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.447283,150.513744,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,3,8,Australia,AU,New South Wales,-31.948252,152.300422,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080306,1,,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-31.263661,152.913599,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.449093,150.516313,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.391267,153.562726,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,14,Australia,AU,New South Wales,-31.459055,152.926242,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR1511120M;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-28.556,153.52855,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-28.846727,153.302376,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.443586,150.515442,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-31.558685,152.591511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.459107,150.523287,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.38742,150.631288,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,10,Australia,AU,New South Wales,-34.991301,150.106937,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.421456,150.637465,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-31.15855,150.10783,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-29.485188,153.103704,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,7,2,Australia,AU,New South Wales,-31.448727,152.914707,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,21,Australia,AU,New South Wales,-31.914553,152.401182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.441923,150.514828,EPSG:4326 +HUMAN_OBSERVATION,ODFK23111401,1,,occurrenceRemarks withheld,2024,9,5,Australia,AU,New South Wales,-31.574191,152.18716,EPSG:4326 +HUMAN_OBSERVATION,OLHP24051303,1,,occurrenceRemarks withheld,2024,4,22,Australia,AU,New South Wales,-34.055382,151.125419,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,29,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-31.430264,152.904119,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121102,1,,occurrenceRemarks withheld,2023,12,8,Australia,AU,New South Wales,-31.453932,152.92476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.447265,150.51419,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-28.605847,153.400968,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-33.717627,150.783953,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-31.443334,152.909403,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.446585,150.514864,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,1,22,Australia,AU,New South Wales,-28.325659,153.460817,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-31.958711,152.141468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.4238,150.605456,EPSG:4326 +HUMAN_OBSERVATION,OJXK00052203,1,,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-34.094371,150.980948,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004243,1,,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-28.899787,153.35131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.38783,150.631472,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003923,1,,occurrenceRemarks withheld,2023,3,5,Australia,AU,New South Wales,-28.928152,153.210548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.446417,150.516795,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154S,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-28.867451,153.578194,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.212513,149.386481,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150H,1,,occurrenceRemarks withheld,2022,1,28,Australia,AU,New South Wales,-28.865072,153.587255,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.421164,150.627508,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-31.469157,152.927141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.463863,150.52443,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,22,Australia,AU,New South Wales,-29.490217,153.108183,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,Obs_0600,1,,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-30.318215,153.093817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.437873,150.605022,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,2,14,Australia,AU,New South Wales,-29.480107,153.104138,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W;ODMP2202250I,1,FEMALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-32.76419,152.118095,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.099116,150.805509,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-29.490348,153.108054,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.464206,150.52269,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,5,Australia,AU,New South Wales,-28.821466,153.334201,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-28.394275,153.557464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.451547,150.517274,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.423731,150.637161,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-33.718645,150.783711,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,12,13,Australia,AU,New South Wales,-34.139613,150.778378,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307101O,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-29.746685,151.080881,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,12,26,Australia,AU,New South Wales,-32.013104,152.18402,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,8,Australia,AU,New South Wales,-29.490175,153.110533,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-29.488298,153.102256,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,4,22,Australia,AU,New South Wales,-36.067862,149.265895,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-32.710682,152.072174,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.488399,150.637603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.423837,150.637517,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.303957,152.87081,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130B,1,,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-30.88573,153.071746,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,FEMALE,occurrenceRemarks withheld,2023,4,27,Australia,AU,New South Wales,-28.846422,153.316233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.449235,150.516189,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100K,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-32.710748,152.072328,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-29.489582,153.103908,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,19,Australia,AU,New South Wales,-31.457386,152.892863,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,1,Australia,AU,New South Wales,-29.484011,153.104047,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030V,1,MALE,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-32.731882,152.017057,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.384027,150.623195,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,6,25,Australia,AU,New South Wales,-30.221815,152.796193,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.432982,150.61169,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.446705,150.512792,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,11,1,Australia,AU,New South Wales,-31.571716,152.825403,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-31.441229,152.908587,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-28.883408,153.351351,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.492955,150.64012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.451565,150.517263,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.465681,150.520295,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-31.895028,152.292426,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.432314,150.612101,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190U,1,,occurrenceRemarks withheld,2024,7,24,Australia,AU,New South Wales,-32.059321,152.540559,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.43576,150.615909,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-29.490199,153.109782,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.419011,150.609542,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-29.026499,153.437185,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-29.489802,153.101574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.419815,150.632757,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-28.650527,153.461934,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-32.710965,152.065351,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.447322,150.514309,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-34.099398,150.962609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419694,150.635371,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,12,,Australia,AU,New South Wales,-36.147372,149.328498,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.445919,150.513153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-34.464213,150.522145,EPSG:4326 +HUMAN_OBSERVATION,ODFK2408220H,1,,occurrenceRemarks withheld,2024,7,26,Australia,AU,New South Wales,-31.183216,152.908214,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.286282,152.871937,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,15,Australia,AU,New South Wales,-29.485534,153.103779,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,24,Australia,AU,New South Wales,-33.704543,150.786008,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012906,1,,occurrenceRemarks withheld,2023,12,23,Australia,AU,New South Wales,-31.459598,152.929126,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-30.423246,153.012943,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080307,1,FEMALE,occurrenceRemarks withheld,2022,3,8,Australia,AU,New South Wales,-28.936691,153.289719,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-29.485155,153.103763,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240P,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-32.521604,151.797826,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,27,Australia,AU,New South Wales,-30.514694,152.992352,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.452251,150.523086,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-28.653446,153.454341,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-29.490259,153.109975,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-31.649833,152.828331,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,24,Australia,AU,New South Wales,-33.717538,150.784114,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041N,1,FEMALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.450032,150.516361,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.430095,150.616212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.427185,150.603391,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-31.440117,152.88479,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,MALE,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-31.933448,152.415624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.454091,150.520474,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,13,Australia,AU,New South Wales,-33.703887,150.787074,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-28.479923,153.335477,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101L,1,FEMALE,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-31.436383,152.897922,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-31.444562,152.924453,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,MALE,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-29.490877,153.099302,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,5,20,Australia,AU,New South Wales,-31.060477,152.848198,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-29.483477,153.095244,EPSG:4326 +HUMAN_OBSERVATION,ODMP23060600,1,,occurrenceRemarks withheld,2023,3,23,Australia,AU,New South Wales,-33.440682,150.622371,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041N,1,FEMALE,occurrenceRemarks withheld,2022,9,3,Australia,AU,New South Wales,-33.99746,150.903703,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.447225,150.513082,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,5,6,Australia,AU,New South Wales,-28.999986,153.375627,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2024,2,9,Australia,AU,New South Wales,-31.437476,152.893002,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042B,1,MALE,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-33.936341,150.935691,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,11,Australia,AU,New South Wales,-29.489559,153.103945,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-31.548541,152.854058,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,2,25,Australia,AU,New South Wales,-31.926376,152.376481,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-29.769535,150.939105,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-31.460949,152.922796,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.245504,151.727323,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,4,23,Australia,AU,New South Wales,-31.945217,152.428937,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,1,2,Australia,AU,New South Wales,-31.980755,152.34022,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-29.479566,153.104214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.465739,150.520467,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-31.465233,152.924315,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.554124,150.021287,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-29.49004,153.110586,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.472611,150.527253,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031407,1,,occurrenceRemarks withheld,2024,2,6,Australia,AU,New South Wales,-33.479658,150.704764,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-29.489367,153.102422,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,7,10,Australia,AU,New South Wales,-31.932147,152.412625,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435791,150.616104,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-28.869331,153.286672,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,3,23,Australia,AU,New South Wales,-29.488111,153.102416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.420658,150.609376,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.395267,150.630034,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-31.435876,152.895376,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,12,5,Australia,AU,New South Wales,-32.70649,152.063712,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100S,1,,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-32.85631,151.55109,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,16,Australia,AU,New South Wales,-33.709559,150.785179,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,14,Australia,AU,New South Wales,-29.48855,153.092921,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.43214,150.605534,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.436265,150.615917,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-33.705743,150.786936,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.42865,150.600389,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,5,Australia,AU,New South Wales,-29.490633,153.109417,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.390621,150.628979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.432858,150.61412,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,4,12,Australia,AU,New South Wales,-31.468579,152.924875,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-33.719507,150.78302,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-34.212033,150.733989,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210T,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-32.701559,151.697425,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003927,1,,occurrenceRemarks withheld,2023,4,18,Australia,AU,New South Wales,-28.816413,153.321959,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.68121,153.60155,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,4,13,Australia,AU,New South Wales,-31.163701,150.288754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.463806,150.523866,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.42067,150.630829,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.13952,150.79498,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-30.506362,152.924506,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-30.881636,152.440205,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,2,10,Australia,AU,New South Wales,-28.68603,153.606027,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.442079,152.902377,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-33.710818,150.785299,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.386244,150.63106,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.441732,150.607807,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.445541,150.514971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.491463,150.638965,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.434984,150.616802,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-32.551635,151.736498,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,2,12,Australia,AU,New South Wales,-28.585441,153.071682,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.511423,149.969776,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-34.443361,150.526111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.420783,150.63063,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-31.476707,152.916224,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR16092800;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-28.57492,153.51898,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.490635,150.638552,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.395122,150.629102,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060X,1,,occurrenceRemarks withheld,2023,8,29,Australia,AU,New South Wales,-31.48485,152.918615,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-29.762752,151.110282,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121303,1,MALE,occurrenceRemarks withheld,2022,11,12,Australia,AU,New South Wales,-31.774385,151.007545,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.423734,150.637303,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-33.709479,150.785149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.400932,150.619998,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.41963,150.611689,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.46377,150.523834,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,4,21,Australia,AU,New South Wales,-30.893988,153.070842,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.446449,150.51749,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,6,Australia,AU,New South Wales,-31.459941,152.924282,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,7,24,Australia,AU,New South Wales,-31.458053,152.879106,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.421216,150.627365,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-29.762752,151.110282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.466847,150.521349,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.655722,153.488602,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.447251,150.513048,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-29.762752,151.110282,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150K,1,MALE,occurrenceRemarks withheld,2021,11,9,Australia,AU,New South Wales,-30.654341,151.489931,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-34.021692,150.991638,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-28.60141,153.54955,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-28.558093,153.428133,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180M,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-28.938938,153.277512,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-34.509,150.574297,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122108,1,,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-34.028381,150.965101,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,5,1,Australia,AU,New South Wales,-31.469932,152.912811,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,10,Australia,AU,New South Wales,-28.604193,153.555846,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308240M,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-32.662205,152.173943,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.42572,150.595795,EPSG:4326 +HUMAN_OBSERVATION,OJJS20040702,1,,occurrenceRemarks withheld,2023,3,5,Australia,AU,New South Wales,-29.489844,153.110586,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.426396,150.604523,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-28.660932,153.605566,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240T,1,,occurrenceRemarks withheld,2024,3,28,Australia,AU,New South Wales,-32.730633,152.092919,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-30.207297,153.057457,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,7,23,Australia,AU,New South Wales,-31.393213,152.869656,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.44775,150.517637,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,16,Australia,AU,New South Wales,-28.864525,153.293236,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,6,12,Australia,AU,New South Wales,-28.82175,153.33124,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-29.485851,153.10372,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-31.448054,152.905986,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.446389,150.514097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.469552,150.52669,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.434588,150.616367,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-31.642103,152.792395,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.422301,150.607632,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080303,1,,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-28.729831,153.426993,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.459177,150.516079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.393284,150.644532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.444973,150.515401,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-28.386939,153.561767,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-30.38985,152.94486,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-28.454651,153.284859,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,20,Australia,AU,New South Wales,-33.705565,150.787432,EPSG:4326 +HUMAN_OBSERVATION,ODMP22070803,1,MALE,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-29.478655,153.104144,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270V,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-32.73763,152.03529,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,16,Australia,AU,New South Wales,-29.485552,153.103779,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250A,1,,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-32.508841,151.67902,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.408767,152.216293,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-31.26329,152.82929,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.491444,150.638432,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-34.299808,150.647889,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100317,1,,occurrenceRemarks withheld,2024,3,11,Australia,AU,New South Wales,-31.453712,152.888034,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,4,28,Australia,AU,New South Wales,-28.82175,153.33124,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-28.388884,153.546746,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W;ODMP23040400,1,FEMALE,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-32.629403,151.704792,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.435803,150.615342,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,21,Australia,AU,New South Wales,-28.614583,153.367878,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.418329,150.631918,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-30.399605,152.988323,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.435701,150.616564,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.427035,150.604918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,14,Australia,AU,New South Wales,-34.43745,150.615644,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,1,7,Australia,AU,New South Wales,-30.275033,153.070208,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-865,1,,occurrenceRemarks withheld,2021,11,25,Australia,AU,New South Wales,-30.195134,152.837387,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-33.706039,150.785973,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419025,150.639013,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-29.489741,153.10519,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-29.490147,153.110544,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.420913,150.627558,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.466039,150.521917,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.146266,149.29156,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-31.438751,152.88594,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.429618,150.618107,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154D,1,FEMALE,occurrenceRemarks withheld,2022,11,10,Australia,AU,New South Wales,-28.890296,153.228626,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.392865,150.632646,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-32.656066,151.96482,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-29.485562,153.103817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.420385,150.630108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.419721,150.632585,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.388217,150.630994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.439399,150.60376,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-33.712832,150.78543,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,17,Australia,AU,New South Wales,-29.490044,153.1074,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.827996,153.303174,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.386272,150.626448,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100G,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-32.671713,151.690393,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,FEMALE,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-28.959081,153.39413,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.458568,150.655913,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.436325,150.52063,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.485508,150.636367,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.422798,150.637362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.423762,150.637335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.46505,150.521195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436009,150.61575,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,19,Australia,AU,New South Wales,-31.10266,150.12123,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-31.434374,152.888228,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-32.706359,152.063282,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022410,1,,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-32.728298,152.088904,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121108,1,,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-31.458871,152.926206,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-34.773113,146.59557,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-28.960002,153.395266,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080900,1,MALE,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-32.717568,151.718273,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020703,1,,occurrenceRemarks withheld,2020,7,7,Australia,AU,New South Wales,-30.211983,152.799071,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,MALE,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-29.031029,153.428104,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.460072,150.522877,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004205,1,,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-28.688516,153.511573,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-32.706773,152.063978,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004221,1,MALE,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-28.826573,153.315755,EPSG:4326 +HUMAN_OBSERVATION,OPJG16091402,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-32.371169,152.249109,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-32.7622,152.08655,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,6,27,Australia,AU,New South Wales,-32.738157,152.112115,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.43507,150.604156,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,2,Australia,AU,New South Wales,-29.49032,153.108156,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,18,Australia,AU,New South Wales,-28.793312,153.436171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.4526,150.519866,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-29.491557,153.099745,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.448767,150.517563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.432812,150.607615,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-28.825034,153.307082,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,11,7,Australia,AU,New South Wales,-30.455002,153.049352,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.424705,150.604756,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032003,1,,occurrenceRemarks withheld,2022,12,8,Australia,AU,New South Wales,-32.605633,151.717661,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042V,1,FEMALE,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-30.65074,152.963797,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,6,20,Australia,AU,New South Wales,-31.913202,152.374047,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-29.115171,153.425541,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.454511,150.614451,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-34.188134,150.790596,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,3,12,Australia,AU,New South Wales,-28.815953,153.322455,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-32.078156,151.901456,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190C,1,,occurrenceRemarks withheld,2023,2,24,Australia,AU,New South Wales,-31.470504,152.919264,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,6,4,Australia,AU,New South Wales,-31.467319,152.928931,EPSG:4326 +HUMAN_OBSERVATION,OIXR1511120C,1,,occurrenceRemarks withheld,2024,9,17,Australia,AU,New South Wales,-28.600018,153.476321,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,5,6,Australia,AU,New South Wales,-33.993574,151.014763,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-28.863526,153.292114,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,6,7,Australia,AU,New South Wales,-28.229207,153.491173,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111507,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-31.186837,152.941408,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.383841,150.622929,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.144317,150.792385,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-32.71273,152.069699,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.444968,150.518709,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190D,1,,occurrenceRemarks withheld,2024,7,22,Australia,AU,New South Wales,-31.902724,152.389012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.437878,150.604326,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-31.448159,152.895013,EPSG:4326 +HUMAN_OBSERVATION,OPXE00110600,1,,occurrenceRemarks withheld,2024,9,16,Australia,AU,New South Wales,-30.385515,153.042596,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,7,1,Australia,AU,New South Wales,-31.63091,152.77232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.436335,150.60338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.452071,150.517346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.446381,150.513716,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.431936,150.613526,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.434611,150.61617,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180L,1,FEMALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-28.679852,153.49024,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-29.489181,153.101606,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-30.514694,152.992352,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-32.706539,152.063668,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111505,1,FEMALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.084108,150.999049,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-28.825204,153.30567,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.41754,150.63306,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.447427,150.518158,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032403;OMFZ23032405,1,,occurrenceRemarks withheld,2023,1,10,Australia,AU,New South Wales,-34.878667,150.575859,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,18,Australia,AU,New South Wales,-28.824581,153.315895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.39804,150.62195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.397373,150.622883,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.465568,150.523618,EPSG:4326 +HUMAN_OBSERVATION,OPJG21021800,1,,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-33.99862,150.910854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.419751,150.611425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.455248,150.519733,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.418389,150.633624,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,6,11,Australia,AU,New South Wales,-28.885814,153.225408,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.43584,150.61632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.395301,150.629924,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052019,1,,occurrenceRemarks withheld,2024,4,22,Australia,AU,New South Wales,-31.938817,152.271587,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-31.632416,152.775948,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-30.348292,153.079462,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,FEMALE,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-34.074077,150.837708,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.420695,150.62701,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.42994,150.599515,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,3,18,Australia,AU,New South Wales,-31.474529,152.919357,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004074,1,,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-28.429706,153.019684,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.390066,150.627788,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.423715,150.637271,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.443454,150.518711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.425331,150.602628,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,28,Australia,AU,New South Wales,-35.069514,150.12473,EPSG:4326 +HUMAN_OBSERVATION,OICG18022200,1,,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-28.935421,153.277528,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,4,26,Australia,AU,New South Wales,-29.48555,153.103753,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-36.152378,149.351835,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.389765,150.628079,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.438102,150.604297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.465744,150.521632,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-29.49017,153.109921,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,6,11,Australia,AU,New South Wales,-31.138343,152.797743,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-34.604121,150.61831,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.388749,150.631011,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-31.438248,152.919755,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-34.474344,150.431211,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-31.948252,152.300422,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-28.864525,153.292726,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,4,24,Australia,AU,New South Wales,-34.12769,150.980482,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,22,Australia,AU,New South Wales,-29.485594,153.103817,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-31.423997,152.215656,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.436255,150.615841,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-33.773724,150.06103,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-31.447377,152.909438,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-28.987228,153.290224,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.424952,150.596187,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-31.459109,152.928674,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.427866,150.600858,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140E,1,,occurrenceRemarks withheld,2024,4,25,Australia,AU,New South Wales,-31.25256,152.961335,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-31.447598,152.921844,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-34.030929,150.991491,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.447748,150.513088,EPSG:4326 +HUMAN_OBSERVATION,OPJG22081700,1,,occurrenceRemarks withheld,2022,2,14,Australia,AU,New South Wales,-31.707847,152.641843,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-28.590516,153.041744,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-34.225306,150.801045,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031812,1,FEMALE,occurrenceRemarks withheld,2022,9,4,Australia,AU,New South Wales,-28.597941,153.089415,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.953149,153.369052,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.69693,153.463733,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-29.918308,152.155406,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,4,9,Australia,AU,New South Wales,-31.932983,152.412329,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.422052,150.607824,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.423726,150.637325,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-28.846727,153.302376,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.387795,150.631549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.439225,150.619739,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.452783,150.517303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.400757,150.620296,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-31.454812,152.926909,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-31.455592,152.905067,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004233,1,,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-28.711629,153.555297,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-28.783076,152.089051,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-31.910631,152.376948,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.454083,150.520497,EPSG:4326 +HUMAN_OBSERVATION,OJJS1208150J,1,MALE,occurrenceRemarks withheld,2020,2,18,Australia,AU,New South Wales,-32.574764,151.778714,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150Q,1,,occurrenceRemarks withheld,2020,6,6,Australia,AU,New South Wales,-32.341905,150.886418,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.422215,150.604174,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.111,150.82176,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.462102,150.524265,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211R,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-32.710696,152.072066,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-29.591069,152.915878,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.466278,150.523945,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011005,1,,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-31.981852,152.356775,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-30.094803,152.160787,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.486005,150.638302,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110U,1,,occurrenceRemarks withheld,2023,11,12,Australia,AU,New South Wales,-31.454151,152.925092,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-29.489662,153.104782,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-31.425358,152.878684,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.388918,150.630887,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-28.391241,153.562595,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.459345,150.53461,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.459261,150.523347,EPSG:4326 +HUMAN_OBSERVATION,ODMP23033108,1,,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-32.710276,152.070248,EPSG:4326 +HUMAN_OBSERVATION,OJJS06031407,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-36.058338,149.300293,EPSG:4326 +HUMAN_OBSERVATION,OPJG22120100,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.506077,152.69153,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-31.353747,152.713677,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.453569,150.518281,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270U,1,,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-31.69116,152.719133,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-33.705879,150.78696,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-31.91982,152.364666,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-36.021682,149.372739,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-28.374485,153.56316,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071102,1,,occurrenceRemarks withheld,2024,8,28,Australia,AU,New South Wales,-31.933947,152.40818,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.420649,150.630677,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-34.035121,150.873769,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.299527,152.018258,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.425161,150.602687,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.447457,150.516971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.435192,150.608983,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-28.260255,153.402508,EPSG:4326 +HUMAN_OBSERVATION,OJJS19043000;ODMP22022701,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-33.967017,150.921241,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,3,17,Australia,AU,New South Wales,-31.92441,152.35899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.465091,150.522293,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-31.92441,152.35899,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-36.474664,149.917922,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,12,Australia,AU,New South Wales,-33.717336,150.784169,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,27,Australia,AU,New South Wales,-32.706607,152.063795,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,20,Australia,AU,New South Wales,-29.490245,153.10813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.494101,150.640621,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300C,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-32.723578,152.07807,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-31.155303,152.794286,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.469453,150.527128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435749,150.602918,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070P,1,,occurrenceRemarks withheld,2020,12,21,Australia,AU,New South Wales,-34.742652,146.555562,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.397549,150.640345,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-31.454907,152.922233,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-36.554124,150.021287,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-32.752581,151.766343,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.397896,150.645741,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.393586,150.641022,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-31.450415,152.929314,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003916,1,,occurrenceRemarks withheld,2023,2,24,Australia,AU,New South Wales,-28.8002,153.36858,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.482418,150.524524,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,,occurrenceRemarks withheld,2022,12,10,Australia,AU,New South Wales,-34.737958,146.529623,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-31.674586,150.657125,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132M,1,FEMALE,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-31.470361,152.924006,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102224,1,,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-32.729613,152.088083,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150E,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-31.459585,152.92899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.465778,150.522404,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.397714,150.640025,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-31.47939,152.9215,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-29.402855,152.740925,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.421816,150.62762,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.438776,150.603712,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2022,11,7,Australia,AU,New South Wales,-32.080351,151.900624,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,22,Australia,AU,New South Wales,-28.397012,153.557309,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-29.489591,153.103988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.388233,150.625295,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-31.4374,152.486229,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-29.489381,153.101682,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.501719,152.865621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.462147,150.534516,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,7,26,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-34.446126,150.60014,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.418357,150.633864,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.430751,150.607772,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-30.4187,152.9781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.488357,150.635437,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-30.910708,153.042145,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-28.821687,153.311929,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.399375,150.645275,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003871,1,,occurrenceRemarks withheld,2023,1,1,Australia,AU,New South Wales,-28.787908,153.386533,EPSG:4326 +HUMAN_OBSERVATION,CHADL,1,,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-28.400667,153.532794,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.448232,150.516066,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-31.10611,152.828507,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,5,Australia,AU,New South Wales,-29.489993,153.101365,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-29.489545,153.103892,EPSG:4326 +HUMAN_OBSERVATION,OPRS04081700,1,,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-28.907933,152.387027,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.435378,150.616181,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.433746,150.617098,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-28.633009,153.294848,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,11,24,Australia,AU,New South Wales,-31.456441,152.929415,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051404,1,,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-31.765534,152.429322,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.430759,150.607739,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.434962,150.520093,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003858,1,FEMALE,occurrenceRemarks withheld,2023,3,28,Australia,AU,New South Wales,-28.82038,153.30287,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,4,21,Australia,AU,New South Wales,-30.902075,153.064839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.42026,150.62737,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.432588,150.613225,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.389736,150.627047,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,2,14,Australia,AU,New South Wales,-32.725735,152.175002,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.430691,150.6107,EPSG:4326 +HUMAN_OBSERVATION,ODMP22100602,1,,occurrenceRemarks withheld,2022,9,24,Australia,AU,Victoria,-38.670586,143.858798,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2023,2,3,Australia,AU,New South Wales,-28.715639,153.602142,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.436084,150.602527,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002775,1,,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-29.654339,152.829335,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.459186,150.521869,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.396778,150.641987,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.913596,152.383726,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.419487,150.633071,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.46495,150.522472,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080100,1,,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-30.239315,153.045499,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.066007,150.762313,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-28.820915,153.299899,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-31.249124,152.754942,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-30.36738,153.07339,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.392586,150.642486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.427088,150.604884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.469462,150.52716,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.420609,150.630939,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,1,2,Australia,AU,New South Wales,-28.725986,153.447901,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23040308,1,FEMALE,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-28.918802,153.241488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.403207,150.646712,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.417551,150.633169,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-31.474712,152.897361,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,6,Australia,AU,New South Wales,-29.484268,153.104026,EPSG:4326 +HUMAN_OBSERVATION,ODFK2307310B,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-30.594659,152.895335,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-33.70331,150.785319,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-28.380335,153.564544,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-30.059088,152.248544,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.426898,150.604846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.435024,150.604081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.404383,150.642688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.420565,150.609226,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-29.490451,153.109363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.448284,150.516391,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-36.432232,149.972808,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.420618,150.627229,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OPJG18122000,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-30.865035,152.901822,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031542,1,MALE,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-28.561437,153.396688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.394602,150.632021,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.465232,150.524825,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,FEMALE,occurrenceRemarks withheld,2023,9,8,Australia,AU,New South Wales,-28.960122,153.394539,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.386266,150.626601,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-31.44004,152.896777,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.650407,149.955028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.399906,150.617297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.483861,150.635118,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-31.491606,152.907543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.463645,150.521226,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,MALE,occurrenceRemarks withheld,2023,5,9,Australia,AU,New South Wales,-34.058717,150.84298,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,4,12,Australia,AU,New South Wales,-31.457437,152.921919,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072601;ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,9,Australia,AU,New South Wales,-28.260126,153.402261,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-29.676668,152.876499,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-33.705279,150.785483,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.413791,150.595723,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-29.47986,153.104106,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-31.902059,152.390835,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-31.911306,152.327996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.438745,150.603985,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-31.637224,152.797241,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-28.882972,153.356939,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210F,1,,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-32.690902,151.693377,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-31.446285,152.925879,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,6,20,Australia,AU,New South Wales,-31.451029,152.912478,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-31.466794,152.928545,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-28.398698,153.55592,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004023,1,,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.313495,153.233745,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,3,28,Australia,AU,New South Wales,-31.918122,152.377853,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-29.490175,153.107985,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.47142,150.529018,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-29.490362,153.109589,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,8,Australia,AU,New South Wales,-31.563364,152.845093,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-30.08386,152.179389,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-31.444948,152.915556,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-31.641771,152.792673,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041303,1,FEMALE,occurrenceRemarks withheld,2024,2,21,Australia,AU,New South Wales,-31.944661,152.413602,EPSG:4326 +HUMAN_OBSERVATION,ODFK24092407,1,FEMALE,occurrenceRemarks withheld,2024,9,29,Australia,AU,New South Wales,-34.029402,150.987132,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.464534,150.521983,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083000,1,MALE,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-33.53092,150.653568,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,12,27,Australia,AU,New South Wales,-31.920019,152.378334,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.831137,153.278132,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-31.162056,151.052686,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221P,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-32.593048,151.767054,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,2,14,Australia,AU,New South Wales,-32.792187,151.851257,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-29.490834,153.109304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.385727,150.623017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.435707,150.615508,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.42055,150.609379,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003955,1,MALE,occurrenceRemarks withheld,2023,1,23,Australia,AU,New South Wales,-28.82595,153.298814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.464506,150.523236,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-31.636424,152.78724,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-29.492718,153.093327,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.438557,150.617418,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,25,Australia,AU,New South Wales,-29.490357,153.10814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.488261,150.637019,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.385892,150.624524,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-28.827819,153.235392,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.393856,150.640536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419721,150.635381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.420895,150.628005,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-31.468116,152.877459,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.459623,152.929013,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.491239,150.638535,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.42299,150.638455,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.433766,150.607968,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,FEMALE,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-30.307115,153.074977,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004128,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-29.028206,153.315107,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,2,22,Australia,AU,New South Wales,-28.928842,153.272904,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17336,152.90968,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.427338,150.604768,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-29.479967,153.104085,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-28.839388,153.030246,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030R,1,FEMALE,occurrenceRemarks withheld,2022,6,3,Australia,AU,New South Wales,-30.622084,151.377711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.389327,150.629625,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.448648,150.51613,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.420957,150.62797,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.434354,150.616363,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-29.489582,153.103908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.433801,150.607913,EPSG:4326 +HUMAN_OBSERVATION,OPUR18082000,1,,occurrenceRemarks withheld,2021,11,,Australia,AU,New South Wales,-28.771137,152.901602,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003964,1,,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-28.216269,153.512327,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,3,11,Australia,AU,New South Wales,-32.706298,152.063435,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,23,Australia,AU,New South Wales,-28.84777,153.320897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.43502,150.615876,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080900,1,,occurrenceRemarks withheld,2023,7,17,Australia,AU,New South Wales,-32.717413,151.718634,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-32.727783,152.078206,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.511423,149.969776,EPSG:4326 +HUMAN_OBSERVATION,OPJG2103120A,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-31.39744,152.12972,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-30.345268,153.077582,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-34.13776,150.79409,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,1,Australia,AU,New South Wales,-29.489587,153.103935,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-28.78326,153.5811,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003873,1,,occurrenceRemarks withheld,2023,3,3,Australia,AU,New South Wales,-28.836389,153.263825,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-31.943207,152.441464,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111309,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.222679,152.448885,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-31.451147,152.92519,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.491527,150.638974,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.421072,150.626912,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-32.50942,151.82212,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,8,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-28.847235,153.296686,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,15,Australia,AU,New South Wales,-36.108252,149.308567,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,MALE,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-29.506886,152.824888,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.394269,150.629746,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,20,Australia,AU,New South Wales,-29.480196,153.104243,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031537,1,FEMALE,occurrenceRemarks withheld,2022,10,17,Australia,AU,New South Wales,-28.637369,153.629423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.425277,150.602629,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-29.488023,153.092058,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,12,Australia,AU,New South Wales,-28.274143,153.442773,EPSG:4326 +HUMAN_OBSERVATION,OGEM18052300,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.13986,150.795668,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-31.400586,152.233827,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.692405,153.508359,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-29.484343,153.104058,EPSG:4326 +HUMAN_OBSERVATION,ODFK23122107,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-34.034662,150.187734,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-32.743401,152.17062,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-30.295851,153.098334,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-33.706009,150.786173,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,12,9,Australia,AU,New South Wales,-28.813127,153.336241,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,5,3,Australia,AU,New South Wales,-28.864644,153.293062,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021308,1,,occurrenceRemarks withheld,2024,2,14,Australia,AU,New South Wales,-31.926849,152.358798,EPSG:4326 +HUMAN_OBSERVATION,OJJS19043000;ODMP22022701,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-33.967038,150.920916,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.434381,150.616362,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-30.382225,152.93577,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.429206,150.616389,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-31.436748,152.892981,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-31.928854,152.30757,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,7,Australia,AU,New South Wales,-29.490343,153.108038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.447863,150.51833,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.396304,150.644056,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.423762,150.605392,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.448163,150.519333,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.632867,149.949786,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.420622,150.630678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.436618,150.519054,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2023,12,4,Australia,AU,New South Wales,-33.549377,149.553176,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.44099,152.903127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.487758,150.636151,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.386681,150.62523,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,9,12,Australia,AU,New South Wales,-30.410249,151.579577,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-28.397381,153.557439,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-30.426774,152.932029,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-29.485604,153.103827,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004030,1,FEMALE,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-28.876449,153.298311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.437533,150.519288,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-29.48559,153.103715,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220P,1,,occurrenceRemarks withheld,2021,1,17,Australia,AU,New South Wales,-32.72313,152.081222,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.432259,150.605618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.455321,150.659617,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.437544,150.605728,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.457764,150.525982,EPSG:4326 +HUMAN_OBSERVATION,OJJS19072302,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-30.369444,153.0156,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.419619,150.609731,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-32.706746,152.06386,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.433044,150.607467,EPSG:4326 +HUMAN_OBSERVATION,DOUS-HO,1,,occurrenceRemarks withheld,2024,3,7,Australia,AU,New South Wales,-34.725342,150.451797,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022603,1,MALE,occurrenceRemarks withheld,2020,7,29,Australia,AU,New South Wales,-31.466666,152.914177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.437252,150.603212,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-34.021426,150.991049,EPSG:4326 +HUMAN_OBSERVATION,HOBCD-HO,1,,occurrenceRemarks withheld,2021,12,8,Australia,AU,New South Wales,-32.35519,149.807846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.457913,150.613712,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-30.193444,153.033527,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,1,Australia,AU,New South Wales,-31.454369,152.925785,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2020,6,7,Australia,AU,New South Wales,-31.457026,152.879033,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040430,1,MALE,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-30.193444,153.033527,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.452556,150.51991,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,2,6,Australia,AU,New South Wales,-29.48536,153.103874,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-28.65505,153.59019,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.436209,150.517108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.385712,150.626878,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.465925,150.522095,EPSG:4326 +HUMAN_OBSERVATION,OCAM10010600,2,FEMALE,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.75621,146.569102,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,FEMALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.916034,152.407305,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-30.34853,153.04933,EPSG:4326 +HUMAN_OBSERVATION,ODFK24062805,1,FEMALE,occurrenceRemarks withheld,2023,11,20,Australia,AU,New South Wales,-29.677019,152.876367,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,2,3,Australia,AU,New South Wales,-31.455175,152.927068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.420956,150.630266,EPSG:4326 +HUMAN_OBSERVATION,OPJG1703020A,1,,occurrenceRemarks withheld,2023,1,25,Australia,AU,New South Wales,-37.366383,149.649444,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-31.491606,152.907543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-34.434444,150.616393,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.46677,150.52109,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,7,18,Australia,AU,New South Wales,-31.923165,152.370717,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,29,Australia,AU,New South Wales,-33.719486,150.782841,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-31.458616,152.922453,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.459465,150.515635,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290D,1,,occurrenceRemarks withheld,2022,2,28,Australia,AU,New South Wales,-32.727623,152.085547,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,FEMALE,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-32.72129,151.991483,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.387836,150.624371,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.136158,150.796198,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-34.439459,150.615597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.452435,150.522798,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,26,Australia,AU,New South Wales,-28.384369,153.562904,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;ORSF21090200,1,MALE,occurrenceRemarks withheld,2021,,,Australia,AU,New South Wales,-32.367381,149.857486,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,23,Australia,AU,New South Wales,-29.490147,153.110522,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2024,1,26,Australia,AU,New South Wales,-34.191199,150.790629,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-30.417681,153.010861,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-34.130172,150.981735,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,7,2,Australia,AU,New South Wales,-30.337884,153.095191,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2023,4,2,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,,occurrenceRemarks withheld,2022,6,30,Australia,AU,New South Wales,-34.025872,150.984263,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-28.258765,153.474069,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.438837,150.604962,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.653803,152.807374,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151F,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-28.384544,153.562683,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.818806,153.334377,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,1,12,Australia,AU,New South Wales,-34.121255,150.968612,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,11,14,Australia,AU,New South Wales,-28.720013,153.593712,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-33.764309,150.057099,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2022,7,14,Australia,AU,New South Wales,-31.518379,152.689584,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-30.32947,153.08487,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-29.490581,153.108124,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-29.489974,153.095491,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.395666,150.641355,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-29.489624,153.101403,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100503,1,,occurrenceRemarks withheld,2024,4,14,Australia,AU,New South Wales,-31.474183,152.898859,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.397604,150.623181,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-32.055361,152.510395,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.191329,152.028937,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.435107,150.615688,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,12,Australia,AU,New South Wales,-33.717929,150.783598,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251R,1,FEMALE,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-32.629403,151.704792,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,3,30,Australia,AU,New South Wales,-28.824228,153.317936,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-31.935759,152.411676,EPSG:4326 +HUMAN_OBSERVATION,OPUR20091102;OPUR20120700,1,,occurrenceRemarks withheld,2021,2,3,Australia,AU,New South Wales,-34.184215,149.714337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.472118,150.531001,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.652764,152.816689,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-28.373466,153.56233,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,2,3,Australia,AU,New South Wales,-31.459272,152.924973,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.419695,150.609936,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003970,1,,occurrenceRemarks withheld,2023,7,8,Australia,AU,New South Wales,-28.59417,153.07096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.440039,150.517473,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004028,1,,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-28.2398,153.514459,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121406,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-32.591463,151.635148,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003927,1,,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-28.822466,153.320612,EPSG:4326 +HUMAN_OBSERVATION,OJJS20040702,1,,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-29.490285,153.110586,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.226111,152.204264,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150X,1,,occurrenceRemarks withheld,2024,1,14,Australia,AU,New South Wales,-32.329761,152.541878,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.436573,150.607671,EPSG:4326 +HUMAN_OBSERVATION,OJJS17072600,1,,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-30.541063,152.65725,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-31.19451,150.06457,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418239,150.635641,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-33.70833,150.786985,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.431164,150.615082,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.453307,150.517363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.435154,150.608876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.445974,150.513195,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-29.490236,153.108226,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,12,7,Australia,AU,New South Wales,-31.413327,152.126308,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150N,1,MALE,occurrenceRemarks withheld,2020,6,14,Australia,AU,Victoria,-38.418359,145.060212,EPSG:4326 +HUMAN_OBSERVATION,SHARM,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-32.452504,149.762497,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,7,14,Australia,AU,New South Wales,-34.113548,150.939559,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040B,1,FEMALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-33.58539,150.656179,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.45453,150.606233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.422301,150.607632,EPSG:4326 +HUMAN_OBSERVATION,ODFK23122107,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-34.386531,150.379521,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,17,Australia,AU,New South Wales,-31.480432,152.870433,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-28.593268,153.007261,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,4,18,Australia,AU,New South Wales,-28.822719,153.308464,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-28.80854,153.353347,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.080406,150.862739,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,4,26,Australia,AU,New South Wales,-31.431087,152.909624,EPSG:4326 +HUMAN_OBSERVATION,OPJG15082102,1,,occurrenceRemarks withheld,2024,1,23,Australia,AU,New South Wales,-30.153666,152.780581,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-28.915929,153.462238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.423797,150.637312,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031521,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-29.091442,153.427558,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.38896,150.629298,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.417665,150.613559,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.959992,153.395214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.388458,150.632259,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.445063,150.514506,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-31.12871,152.790244,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2021,11,21,Australia,AU,New South Wales,-28.957043,152.750915,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.488612,150.6342,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,16,Australia,AU,New South Wales,-30.877808,153.069313,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,6,Australia,AU,New South Wales,-29.485571,153.103784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.438196,150.606319,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,2,15,Australia,AU,New South Wales,-34.099913,150.809607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.489835,150.633991,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150Q,1,,occurrenceRemarks withheld,2023,7,24,Australia,AU,New South Wales,-30.590548,151.300376,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220O,1,,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-32.742829,152.065122,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.435742,150.61591,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260M,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-32.730474,152.039401,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041N,1,FEMALE,occurrenceRemarks withheld,2023,2,3,Australia,AU,New South Wales,-34.062857,150.837538,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220L,1,,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-32.770773,152.113237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.464043,150.525296,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.582799,153.553614,EPSG:4326 +HUMAN_OBSERVATION,OEMM09120306,1,MALE,occurrenceRemarks withheld,2022,9,22,Australia,AU,Victoria,-35.852747,145.448355,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.465821,150.520541,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.470947,150.53011,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,8,Australia,AU,New South Wales,-29.489363,153.102889,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.831137,153.278132,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,29,Australia,AU,New South Wales,-29.489582,153.103913,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-31.948252,152.300422,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-34.54504,150.61934,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.479689,150.533107,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-28.943114,153.243407,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-29.490203,153.110533,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-28.94801,153.31683,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021502,1,,occurrenceRemarks withheld,2024,1,20,Australia,AU,New South Wales,-28.637197,152.176506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.433712,150.604314,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,4,12,Australia,AU,New South Wales,-32.706589,152.063838,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.443417,150.514696,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-29.490474,153.109481,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.395878,150.642089,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,MALE,occurrenceRemarks withheld,2024,6,14,Australia,AU,New South Wales,-31.139833,152.857194,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.420658,150.609376,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-31.460812,152.922619,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-33.717212,150.784215,EPSG:4326 +HUMAN_OBSERVATION,OJJS12081501,1,,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-32.703163,152.065229,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.458817,150.665158,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.418037,150.632655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.431074,150.613692,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-29.490121,153.108207,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,2,Australia,AU,New South Wales,-31.458749,152.91497,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-32.773066,151.859267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.487827,150.635071,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-28.932421,153.278171,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070P,1,,occurrenceRemarks withheld,2020,12,21,Australia,AU,New South Wales,-34.742845,146.555434,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,12,12,Australia,AU,New South Wales,-31.458001,152.92885,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-31.1337,150.01208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.390167,150.626012,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-28.672704,153.558512,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150U,1,FEMALE,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-28.693236,153.49619,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-29.489638,153.101392,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.440771,150.517549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.439182,150.61986,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-31.629234,152.786585,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.468972,150.644364,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032002,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-32.723669,152.076732,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,4,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.42093,150.630278,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-33.486625,150.67371,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-28.820298,153.302264,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-29.630985,152.899322,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.486311,150.637771,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.39506,150.628691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.447267,150.51381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.445697,150.514193,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,1,31,Australia,AU,New South Wales,-28.398509,153.556098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.46647,150.521425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.433862,150.61704,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.436139,150.602536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.410649,150.594562,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250P,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-32.732436,152.087252,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.417531,150.633082,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.386937,150.631465,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,7,24,Australia,AU,New South Wales,-32.472237,151.974623,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160G,1,,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-30.331064,152.619085,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,14,Australia,AU,New South Wales,-31.475421,152.919418,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,10,Australia,AU,New South Wales,-28.864682,153.293115,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-31.918115,152.378988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.41908,150.610291,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,3,17,Australia,AU,New South Wales,-30.47848,152.677408,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022604,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.905427,152.736179,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.46571,150.520817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.493182,150.639254,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-32.737046,152.036748,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.796934,152.812724,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,13,Australia,AU,New South Wales,-29.483853,153.104096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.453556,150.518096,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090407,1,MALE,occurrenceRemarks withheld,2021,2,17,Australia,AU,New South Wales,-32.73749,152.03904,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-31.185968,152.967384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.447208,150.514497,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.468887,150.519242,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,4,9,Australia,AU,New South Wales,-32.706167,152.063529,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.437862,150.616459,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.487753,150.634954,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.488532,150.637512,EPSG:4326 +HUMAN_OBSERVATION,OJJS19061100,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-32.313952,151.786914,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,4,8,Australia,AU,New South Wales,-33.144457,151.062932,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-29.485557,153.1038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.428191,150.605494,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131B,1,,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-32.093467,152.386379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.452023,150.517195,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2024,2,3,Australia,AU,New South Wales,-34.199955,150.790496,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003885,1,,occurrenceRemarks withheld,2023,1,8,Australia,AU,New South Wales,-28.241619,153.510503,EPSG:4326 +HUMAN_OBSERVATION,ODFK23111401,1,,occurrenceRemarks withheld,2024,9,4,Australia,AU,New South Wales,-31.571531,152.173378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.43544,150.615679,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-34.188197,150.790568,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.448863,150.516515,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.652842,152.80765,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.454555,150.662457,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-29.489942,153.101199,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-29.491618,153.099745,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140T,1,,occurrenceRemarks withheld,2022,1,3,Australia,AU,New South Wales,-32.733483,152.01786,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-33.715704,150.78526,EPSG:4326 +HUMAN_OBSERVATION,ODFK24030604,1,,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-32.717002,152.073383,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,4,17,Australia,AU,New South Wales,-29.69253,152.85146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.418852,150.632871,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.226111,152.204264,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.447413,150.514338,EPSG:4326 +HUMAN_OBSERVATION,OLHP24013002,1,FEMALE,occurrenceRemarks withheld,2023,12,20,Australia,AU,New South Wales,-32.139621,152.228725,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.453119,150.520079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.421507,150.627487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.42057,150.630799,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,FEMALE,occurrenceRemarks withheld,2023,4,4,Australia,AU,New South Wales,-31.91429,152.373559,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002739,1,,occurrenceRemarks withheld,2022,5,16,Australia,AU,New South Wales,-29.489937,153.110522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.42118,150.627398,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122003,1,,occurrenceRemarks withheld,2022,9,2,Australia,AU,New South Wales,-30.888249,153.073117,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.456913,150.515123,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.45785,150.527133,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,6,25,Australia,AU,New South Wales,-28.822003,153.318421,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,10,1,Australia,AU,New South Wales,-29.490876,153.109272,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-32.744631,152.087507,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.386955,150.631442,EPSG:4326 +HUMAN_OBSERVATION,OPJG21031201,1,,occurrenceRemarks withheld,2020,12,25,Australia,AU,New South Wales,-30.40296,151.56004,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,7,14,Australia,AU,New South Wales,-30.30666,153.00518,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-29.667415,152.867922,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-32.709638,152.066216,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.465749,150.521425,EPSG:4326 +HUMAN_OBSERVATION,Obs_0305,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-32.738128,152.038948,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-30.325339,152.802334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.422319,150.607653,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.443455,152.898315,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.206528,150.792549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.435069,150.603155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.388933,150.624209,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.465682,150.521242,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-33.718625,150.783192,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503;ODFK23090504,1,,occurrenceRemarks withheld,2023,6,12,Australia,AU,New South Wales,-30.450682,151.824597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.452945,150.615062,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-32.282319,151.987701,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-31.282976,152.861758,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,1,29,Australia,AU,New South Wales,-31.19271,152.970084,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,11,26,Australia,AU,New South Wales,-31.918407,152.378287,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-36.554124,150.021287,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-30.347463,152.611582,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-28.83677,153.364771,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-28.585138,153.458043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.388923,150.630691,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.385773,150.627213,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-32.709625,152.07148,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-30.177887,152.893895,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-30.11253,152.132821,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-31.64263,152.793355,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.457412,150.518406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.447343,150.518878,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080301,1,,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-31.879441,152.344025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.410179,150.597273,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303200G,1,,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-32.70933,152.071191,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003945,1,,occurrenceRemarks withheld,2023,3,9,Australia,AU,New South Wales,-28.399671,153.556102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.435028,150.615799,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,3,4,Australia,AU,New South Wales,-28.687084,153.514342,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091705,1,,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-31.938794,152.402309,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.455264,150.659466,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-28.65505,153.59019,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004233,1,,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-28.76994,153.521081,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-28.824698,153.282153,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.556943,149.960571,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,4,10,Australia,AU,New South Wales,-28.264126,153.395547,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-31.425606,152.87922,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2023,5,21,Australia,AU,New South Wales,-29.042093,152.989306,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110V,1,MALE,occurrenceRemarks withheld,2023,7,25,Australia,AU,New South Wales,-31.469665,152.923299,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2023,6,22,Australia,AU,New South Wales,-36.347022,149.95515,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.42031,150.609113,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111310,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-31.46923,152.93067,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.446434,150.514085,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.418054,150.599778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.490907,150.638185,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-34.514912,150.552766,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.39431,150.642089,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,5,Australia,AU,New South Wales,-29.489577,153.103929,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.160261,152.820431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.437708,150.603025,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-28.924508,153.271685,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052000,1,,occurrenceRemarks withheld,2024,4,14,Australia,AU,South Australia,-34.564653,138.932937,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-30.414124,153.013608,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-31.43072,152.896341,EPSG:4326 +HUMAN_OBSERVATION,OAXS20102000,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-33.052972,151.476361,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.441406,150.517748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.432176,150.605511,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,6,6,Australia,AU,New South Wales,-28.400321,153.557213,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,MALE,occurrenceRemarks withheld,2024,4,28,Australia,AU,New South Wales,-34.023298,150.992208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.465204,150.520788,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-32.706371,152.063278,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-29.489349,153.101649,EPSG:4326 +HUMAN_OBSERVATION,OLHP23071019,1,,occurrenceRemarks withheld,2024,6,28,Australia,AU,New South Wales,-31.466533,152.930223,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.435401,150.618302,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041403,1,FEMALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-29.728616,151.083342,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.451799,150.515493,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,1,Australia,AU,New South Wales,-33.704186,150.787146,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-31.452452,152.925329,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.572611,149.995573,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-29.479818,153.104026,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,1,24,Australia,AU,New South Wales,-29.666949,152.868061,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.466224,150.523044,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-32.235432,152.343512,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.073199,150.860211,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-29.490138,153.107464,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,26,Australia,AU,New South Wales,-33.705015,150.786822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.433354,150.616413,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,15,Australia,AU,New South Wales,-28.830686,153.283467,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-30.910658,153.04209,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,2,10,Australia,AU,New South Wales,-31.933204,152.415139,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121102,1,,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-31.454073,152.924868,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2021,10,12,Australia,AU,New South Wales,-34.148284,150.790868,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,20,Australia,AU,New South Wales,-34.440927,150.616883,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.463769,150.523802,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.421241,150.627288,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.466105,150.521621,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150U,1,,occurrenceRemarks withheld,2022,6,3,Australia,AU,New South Wales,-31.781941,152.710623,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.394487,150.629827,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,9,Australia,AU,New South Wales,-29.488518,153.093077,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,4,5,Australia,AU,New South Wales,-29.631326,152.900816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.424914,150.602542,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004157,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-28.939508,153.277348,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,7,9,Australia,AU,New South Wales,-31.440563,152.910446,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.446085,150.51379,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-30.157302,152.72632,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-31.595622,152.839123,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002777,1,,occurrenceRemarks withheld,2020,7,18,Australia,AU,New South Wales,-29.492788,153.093514,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-33.953175,150.940088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.427564,150.603423,EPSG:4326 +HUMAN_OBSERVATION,OSXK00032802,1,,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-32.386406,149.822325,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260D,1,,occurrenceRemarks withheld,2020,2,9,Australia,AU,New South Wales,-28.61541,153.454664,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090406,1,,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-30.366871,153.019614,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100500,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-33.573049,150.634767,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022404,1,,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-32.733082,152.039564,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-30.507663,152.927329,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040301,1,,occurrenceRemarks withheld,2024,3,13,Australia,AU,New South Wales,-31.45942,152.928317,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-31.147698,152.801269,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,12,Australia,AU,New South Wales,-29.490409,153.108012,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040C,1,,occurrenceRemarks withheld,2024,3,27,Australia,AU,New South Wales,-31.47032,152.919293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.413943,150.595653,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-31.474914,152.922804,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.487714,150.636196,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,5,24,Australia,AU,New South Wales,-32.654111,151.789933,EPSG:4326 +HUMAN_OBSERVATION,Obs_2858,1,,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-32.670293,151.715325,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140E,1,,occurrenceRemarks withheld,2024,4,1,Australia,AU,New South Wales,-31.252551,152.961258,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.422333,150.607892,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160J,1,,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-32.733272,152.102708,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.456668,150.519484,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.419982,150.63817,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032900,1,,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-32.711305,152.064412,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-29.690996,152.904782,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.447186,150.51958,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.449528,150.615997,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,8,22,Australia,AU,New South Wales,-31.453753,152.921665,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090503;OLHP23090504,1,,occurrenceRemarks withheld,2021,1,11,Australia,AU,New South Wales,-30.494066,152.941754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.427025,150.603961,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-34.483871,150.567012,EPSG:4326 +HUMAN_OBSERVATION,OJQS10111200,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-29.876908,152.279242,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090407,1,FEMALE,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-32.487277,152.269131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.462975,150.519776,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.446545,150.518238,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,2,16,Australia,AU,New South Wales,-31.443756,152.924537,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004257,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.847074,153.182249,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.780022,152.721325,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,3,Australia,AU,New South Wales,-34.022804,150.876419,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-28.252334,153.374763,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,8,Australia,AU,New South Wales,-34.439766,150.616971,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO;OJJS20110901,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-30.648838,152.957921,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130D,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-31.446683,152.910747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.489296,150.638753,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-33.443058,150.61687,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.385822,150.62744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.393161,150.645156,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-28.823294,153.342755,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,12,16,Australia,AU,New South Wales,-31.453974,152.915685,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,8,7,Australia,AU,New South Wales,-32.70657,152.06372,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.198852,150.78839,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022508,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-32.727203,152.13525,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-28.371176,153.559696,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150T,1,,occurrenceRemarks withheld,2022,10,8,Australia,AU,New South Wales,-28.3886,153.557543,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.449225,152.907065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.465645,150.52071,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-28.678098,153.495337,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,4,17,Australia,AU,New South Wales,-28.509896,153.534066,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.438587,150.615687,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.46447,150.521898,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-29.013555,153.397512,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.435979,150.608645,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,9,19,Australia,AU,New South Wales,-31.21821,150.31054,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220O,1,,occurrenceRemarks withheld,2023,4,26,Australia,AU,New South Wales,-32.706633,152.063696,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2023,3,23,Australia,AU,New South Wales,-32.612534,151.710779,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-30.584828,152.986639,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.207726,152.660995,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040432,1,FEMALE,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-30.437247,152.987287,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070B,1,,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-32.76535,152.0348,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.423834,150.637333,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-33.773548,150.064231,EPSG:4326 +HUMAN_OBSERVATION,OPJG21083100,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-30.143817,153.152022,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-31.452842,152.914201,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-31.147624,152.821582,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-28.238877,153.515926,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-28.817995,153.428365,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,29,Australia,AU,New South Wales,-29.486696,153.103259,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,5,9,Australia,AU,New South Wales,-28.585441,153.071682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.45145,150.518245,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,MALE,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-29.625039,152.826585,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-34.444556,150.527361,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-29.489381,153.103055,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-29.489872,153.110533,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.420789,150.63002,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,13,Australia,AU,New South Wales,-32.706616,152.063752,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-29.49025,153.110023,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-31.453741,152.925303,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-29.489727,153.105233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.454566,150.607157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.465837,150.520399,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.445617,150.516481,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090404,1,FEMALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-32.724577,152.077254,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-28.582477,153.551041,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,3,21,Australia,AU,New South Wales,-30.880197,153.071977,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-34.442899,150.603399,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-32.00875,152.166938,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-29.485282,153.103988,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-28.85774,153.334102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.421769,150.636368,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-28.619978,153.400236,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.447732,150.513197,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031402,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-33.695661,150.574292,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-32.743606,152.088405,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003970,1,FEMALE,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-28.249424,153.479122,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-30.192008,153.091927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.437396,150.605504,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-34.437739,150.616626,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-34.060825,150.840231,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100A,1,,occurrenceRemarks withheld,2022,9,5,Australia,AU,New South Wales,-34.197915,150.789914,EPSG:4326 +HUMAN_OBSERVATION,OGRJ01031200,1,,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-32.045078,152.526792,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418221,150.635663,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.45665,150.519485,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-31.650019,152.826264,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.483446,152.782506,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,26,Australia,AU,New South Wales,-33.705762,150.786918,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,26,Australia,AU,New South Wales,-29.483969,153.095325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.420209,150.610378,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003973,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-28.889151,153.269552,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.466233,150.521269,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-34.397738,150.640818,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23040505,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-32.403422,149.761113,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.41811,150.603106,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,13,Australia,AU,New South Wales,-28.384052,153.562348,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,6,7,Australia,AU,New South Wales,-31.429546,152.913123,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,27,Australia,AU,New South Wales,-31.783116,152.71241,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2024,1,23,Australia,AU,New South Wales,-31.190689,152.970752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.447236,150.519839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.449812,150.607424,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,5,Australia,AU,New South Wales,-31.447608,152.925749,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.465778,150.522828,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-31.443736,152.899605,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,15,Australia,AU,New South Wales,-36.108252,149.308567,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080300,1,,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-31.454857,152.881362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.481266,150.532626,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.435041,150.618313,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-29.490488,153.109471,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.454084,150.520551,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,1,Australia,AU,New South Wales,-29.489792,153.105233,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-34.095981,150.986522,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,5,31,Australia,AU,New South Wales,-33.773548,150.065764,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,21,Australia,AU,New South Wales,-29.490194,153.110055,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.457413,150.659178,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150U,1,,occurrenceRemarks withheld,2024,6,5,Australia,AU,New South Wales,-32.696024,150.003869,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.448675,150.522779,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.394514,150.629805,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.638123,149.930096,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-28.699705,153.358079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.418399,150.633678,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2023,1,1,Australia,AU,New South Wales,-34.103482,150.976212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.427742,150.605572,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.437992,150.604203,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003887,1,MALE,occurrenceRemarks withheld,2023,4,11,Australia,AU,New South Wales,-28.820727,153.30083,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-32.776668,152.08227,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-29.631247,152.900022,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-28.59266,152.32285,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,11,,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.386652,150.625154,EPSG:4326 +HUMAN_OBSERVATION,OLHP24080501,1,,occurrenceRemarks withheld,2024,7,24,Australia,AU,New South Wales,-31.456148,152.929155,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.451466,150.602142,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,2,16,Australia,AU,New South Wales,-30.50157,151.66621,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-28.594978,153.077879,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500,1,,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-28.58252,153.53868,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-31.432993,152.749732,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-30.381692,152.934864,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,11,24,Australia,AU,New South Wales,-32.03086,151.950092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.40019,150.639858,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.426063,150.603619,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-29.354393,150.200473,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.465951,150.522061,EPSG:4326 +HUMAN_OBSERVATION,OPJG15082102,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-30.218407,152.792449,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007130E,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.958599,152.180054,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-28.555716,153.074068,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-36.188545,149.282657,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.392339,150.633422,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-29.480051,153.104272,EPSG:4326 +HUMAN_OBSERVATION,OJJS2006300F,1,,occurrenceRemarks withheld,2020,5,22,Australia,AU,New South Wales,-29.679147,152.870041,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,1,10,Australia,AU,New South Wales,-31.453019,152.925868,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221E,1,,occurrenceRemarks withheld,2020,12,24,Australia,AU,New South Wales,-32.718621,152.142571,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-31.430412,152.911295,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,1,24,Australia,AU,New South Wales,-29.48558,153.103811,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,24,Australia,AU,New South Wales,-29.485361,153.103935,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837908,153.306627,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-29.485576,153.103747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.447648,150.518391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.491601,150.63907,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,6,16,Australia,AU,New South Wales,-31.257732,152.902536,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.257052,150.706837,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020301,1,,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-31.454658,152.926952,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.458792,150.523786,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.46226,150.45143,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-31.472926,152.921522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.392783,150.635846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.42034,150.627324,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,5,24,Australia,AU,New South Wales,-32.654338,151.789011,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004101,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-28.863704,153.218171,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.238862,153.48834,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.429636,150.618085,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-29.490283,153.10814,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-29.477539,153.10446,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140I,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-33.555824,150.668216,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-30.344469,152.609263,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.832918,153.589469,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.448181,150.516645,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,31,Australia,AU,New South Wales,-29.483741,153.104085,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003996,1,MALE,occurrenceRemarks withheld,2023,3,23,Australia,AU,New South Wales,-28.818587,153.302196,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-34.195909,150.783507,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,4,Australia,AU,New South Wales,-33.715746,150.785547,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-33.753483,150.115909,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022603,1,MALE,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-31.466412,152.914151,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-29.834314,150.844864,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-28.850517,153.312778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.463798,150.52391,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-31.344735,152.735456,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,11,Australia,AU,New South Wales,-32.70614,152.063418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.453014,150.51759,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.419496,150.63307,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.916275,152.769456,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.430166,150.610127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.446592,150.514308,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.425788,150.597882,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.463036,150.519687,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-29.487882,153.091741,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.388136,150.624471,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-30.889482,153.068091,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.447098,150.513075,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-33.194327,151.04505,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-31.443763,152.900217,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,3,Australia,AU,New South Wales,-31.447572,152.925787,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052700,1,,occurrenceRemarks withheld,2024,4,28,Australia,AU,New South Wales,-32.707087,152.071733,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.464821,150.525436,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,3,23,Australia,AU,New South Wales,-33.780771,150.103604,EPSG:4326 +HUMAN_OBSERVATION,ODFK23122109,1,MALE,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-34.150024,150.758944,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.459869,150.519106,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031407,1,MALE,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-33.479658,150.704764,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-28.875094,153.294852,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,8,22,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-30.313905,152.857805,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.435015,150.603167,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,18,Australia,AU,New South Wales,-28.32982,153.555115,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-36.432232,149.972808,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-29.489685,153.095233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.420727,150.609221,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152I,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-28.94339,153.2817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.451594,150.522268,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.494096,150.640382,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251U,1,,occurrenceRemarks withheld,2022,5,11,Australia,AU,New South Wales,-32.711264,152.062152,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100504,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-32.732986,152.030988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.399876,150.643662,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031V,1,,occurrenceRemarks withheld,2022,10,12,Australia,AU,New South Wales,-32.176503,152.194716,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.433211,150.61188,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.400701,150.619243,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-31.630112,152.787165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.420902,150.627918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.446281,150.516788,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.489549,150.633237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.389844,150.630741,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-29.72653,152.92876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.465272,150.522364,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-28.818515,153.333795,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,11,13,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,6,6,Australia,AU,New South Wales,-31.980755,152.34022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.449099,150.618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.436462,150.615835,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-31.26349,152.832,EPSG:4326 +HUMAN_OBSERVATION,OPUR17021400;OGEM18052300,1,,occurrenceRemarks withheld,2024,4,9,Australia,AU,New South Wales,-36.148614,150.006047,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240N,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-32.734692,152.100351,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.395535,150.641555,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,6,6,Australia,AU,New South Wales,-28.67595,153.277461,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.488278,150.636953,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.465072,150.520933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.438499,150.615831,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.489835,150.633991,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2023,5,26,Australia,AU,New South Wales,-32.732002,151.994379,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-28.330093,152.565248,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.43378,150.616999,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-29.016415,153.431324,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070700,1,,occurrenceRemarks withheld,2020,2,22,Australia,AU,New South Wales,-32.735591,152.083425,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-33.717469,150.785095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.491775,150.63925,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003837,1,FEMALE,occurrenceRemarks withheld,2023,5,23,Australia,AU,New South Wales,-28.693308,153.4962,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,4,2,Australia,AU,New South Wales,-30.921786,153.086374,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-29.485524,153.103784,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003916,1,,occurrenceRemarks withheld,2023,2,24,Australia,AU,New South Wales,-28.8002,153.36858,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,3,17,Australia,AU,New South Wales,-29.488623,153.093839,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-29.477763,153.104305,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-31.478974,152.923461,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-34.099907,150.809099,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-28.815323,153.312357,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.434695,150.60248,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-31.284534,152.865058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.447169,150.512985,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-29.489391,153.101714,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.388343,150.630055,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,FEMALE,occurrenceRemarks withheld,2020,3,23,Australia,AU,New South Wales,-32.736906,152.057723,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-29.484614,153.095893,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.389229,150.628757,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003847,1,,occurrenceRemarks withheld,2023,5,29,Australia,AU,New South Wales,-28.627092,153.005012,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040B,1,,occurrenceRemarks withheld,2023,5,8,Australia,AU,New South Wales,-33.39893,150.732467,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022520,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-32.524161,151.798193,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.294327,149.324809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.39402,150.630841,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-31.447637,152.9258,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.395515,150.641479,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004136,1,FEMALE,occurrenceRemarks withheld,2023,7,17,Australia,AU,New South Wales,-28.315525,153.531713,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-28.887585,153.22599,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.434916,150.602691,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,12,9,Australia,AU,New South Wales,-32.709268,152.064574,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-30.468293,152.889761,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111309,1,,occurrenceRemarks withheld,2022,5,26,Australia,AU,New South Wales,-31.866824,152.639906,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-29.478716,153.103956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.419291,150.598525,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150D,1,,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-28.681463,153.485179,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-33.713315,150.786044,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-30.3673,153.07341,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,8,1,Australia,AU,New South Wales,-31.987576,152.260867,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150H,1,,occurrenceRemarks withheld,2024,7,22,Australia,AU,New South Wales,-31.621151,152.570857,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210Y,1,,occurrenceRemarks withheld,2022,10,14,Australia,AU,New South Wales,-32.713375,152.070546,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.448336,150.516324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.392685,150.639209,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.727459,152.006573,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,11,13,Australia,AU,New South Wales,-31.454017,152.925119,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,5,20,Australia,AU,New South Wales,-31.071286,152.831332,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,7,17,Australia,AU,New South Wales,-31.453481,152.910301,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102,1,,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-32.481601,151.90159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.442804,150.51515,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.436787,150.616304,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-33.705914,150.78579,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-32.315308,152.011198,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,FEMALE,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-31.908074,152.405062,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.446674,150.515721,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,25,Australia,AU,New South Wales,-29.478893,153.104155,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-28.395477,152.685311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.424923,150.604369,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-29.48989,153.101574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.420878,150.630388,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,4,11,Australia,AU,New South Wales,-31.479734,152.887374,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.392614,150.639266,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-28.255296,153.400824,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-28.661428,153.355949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.419712,150.609859,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.421163,150.627453,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,7,Australia,AU,New South Wales,-33.713381,150.784628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.424826,150.602642,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.447332,150.513013,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866277,153.367822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.45841,150.525386,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.431251,150.615352,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.452596,150.519626,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,1,29,Australia,AU,New South Wales,-30.354527,153.034208,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003883,1,,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-28.939407,153.43553,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.437949,150.604291,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-33.709283,150.785634,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,2,Australia,AU,New South Wales,-31.550641,152.852497,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-29.505429,152.824062,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.431953,150.613482,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.482164,150.532893,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042G,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-32.737141,152.031075,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-28.47123,152.809611,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2023,7,2,Australia,AU,New South Wales,-34.098195,150.808205,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,2,2,Australia,AU,New South Wales,-31.94582,152.40417,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.42093,150.627993,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090504,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-31.128698,152.790182,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,FEMALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-34.139845,150.791046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.419582,150.632829,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,18,Australia,AU,New South Wales,-29.489535,153.103956,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090W,1,,occurrenceRemarks withheld,2024,9,4,Australia,AU,New South Wales,-31.867951,152.270273,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.41701,150.59711,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002739,1,,occurrenceRemarks withheld,2022,5,1,Australia,AU,New South Wales,-29.490058,153.110554,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-29.767673,151.101055,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.418925,150.63895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.389939,150.625431,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.18501,153.003971,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.450215,150.516051,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-28.886135,153.322407,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2023,,,Australia,AU,New South Wales,-28.713649,153.603032,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-29.485496,153.103774,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.385882,150.624937,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002829,1,FEMALE,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-29.484567,153.095931,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,15,Australia,AU,New South Wales,-29.047059,153.395917,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-29.489587,153.103881,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,ODMP06091900,1,,occurrenceRemarks withheld,2022,3,19,Australia,AU,New South Wales,-31.450527,152.916499,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-32.21526,152.195533,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.4599,150.525494,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.423798,150.637355,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-33.713476,150.785478,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,19,Australia,AU,New South Wales,-29.478067,153.103977,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004049,1,,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-28.823097,153.307108,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,10,Australia,AU,New South Wales,-32.706571,152.063752,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-32.35301,151.81336,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.417665,150.633481,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,7,19,Australia,AU,New South Wales,-29.65128,150.831497,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003985,1,,occurrenceRemarks withheld,2023,3,8,Australia,AU,New South Wales,-28.557321,153.472547,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,1,Australia,AU,New South Wales,-28.397252,153.556977,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-28.66904,153.427431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.451647,150.518664,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,4,16,Australia,AU,New South Wales,-30.88564,153.071988,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-31.872617,152.368307,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-33.718275,150.783058,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,10,3,Australia,AU,New South Wales,-32.633078,152.004999,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.182605,153.004553,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.437134,150.518691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.464234,150.520969,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150S,1,,occurrenceRemarks withheld,2021,5,,Australia,AU,New South Wales,-33.52168,150.65126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.386715,150.625142,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,11,Australia,AU,New South Wales,-29.490222,153.108178,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-31.43899,152.887929,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.436503,150.520472,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.44097,150.517152,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-34.89741,150.05406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.388277,150.631742,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.469562,150.527179,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,25,Australia,AU,New South Wales,-29.485697,153.103731,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-33.999714,150.896614,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-28.808246,153.261976,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.443766,150.518984,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500,1,,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-28.7273,153.60144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.435519,150.615568,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.439353,150.517461,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040427,1,FEMALE,occurrenceRemarks withheld,2022,10,8,Australia,AU,New South Wales,-33.570549,149.541298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.388252,150.630949,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032804,1,,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-31.441729,152.842028,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-29.485594,153.103822,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,7,17,Australia,AU,New South Wales,-28.824306,153.282714,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,19,Australia,AU,New South Wales,-31.10635,150.12018,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,10,Australia,AU,New South Wales,-31.454803,152.926819,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.465851,150.521574,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,23,Australia,AU,New South Wales,-29.480061,153.104289,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-29.490432,153.095663,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,25,Australia,AU,New South Wales,-28.81546,153.30336,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-28.836553,153.322696,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401100Z,1,,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-31.42999,152.91316,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180A,1,,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-28.458033,153.271156,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.391929,150.644407,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-28.827861,153.310054,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.424577,150.602812,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,10,Australia,AU,New South Wales,-28.864618,153.293264,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,1,28,Australia,AU,New South Wales,-28.866037,153.580918,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,22,Australia,AU,New South Wales,-33.719306,150.782552,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,3,30,Australia,AU,New South Wales,-28.473692,152.489058,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022608,1,,occurrenceRemarks withheld,2024,4,19,Australia,AU,New South Wales,-31.559219,152.749371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.421305,150.627319,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.386707,150.625196,EPSG:4326 +HUMAN_OBSERVATION,OLHP24013000,1,,occurrenceRemarks withheld,2023,12,11,Australia,AU,New South Wales,-31.459867,152.914196,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-29.013371,153.397106,EPSG:4326 +HUMAN_OBSERVATION,OJJS11062906,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-31.440252,152.88495,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307101E,1,,occurrenceRemarks withheld,2024,6,29,Australia,AU,New South Wales,-31.436114,152.884429,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,12,Australia,AU,New South Wales,-29.489596,153.103897,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,4,9,Australia,AU,New South Wales,-31.474242,152.868031,EPSG:4326 +HUMAN_OBSERVATION,Obs_2124,1,,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-31.438625,152.9086,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-29.605435,152.641625,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,20,Australia,AU,New South Wales,-34.440316,150.616988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.433123,150.605093,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-28.908299,153.348122,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.490714,150.521971,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-31.463493,152.924536,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,6,Australia,AU,New South Wales,-29.487425,153.090894,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-32.875538,151.58838,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.384972,150.625463,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-33.087519,151.196735,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.447147,150.518144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.427311,150.604736,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,5,20,Australia,AU,New South Wales,-34.48964,150.46736,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011104,1,,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.660629,151.66091,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-32.683168,151.656185,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-30.570923,151.718595,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-29.793058,150.925808,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-29.477366,153.104514,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-28.662662,153.614383,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-32.874627,151.586978,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419119,150.610442,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.17285,152.90993,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-31.915375,152.374358,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-31.485404,152.915878,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.464638,150.52309,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-34.49208,150.47216,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.657162,149.959933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.39461,150.642701,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-30.4684,152.7154,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,8,Australia,AU,New South Wales,-34.440616,150.616196,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-31.143567,152.863317,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,10,13,Australia,AU,New South Wales,-34.187079,150.796414,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-31.484386,152.915355,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.453554,150.520186,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,12,23,Australia,AU,New South Wales,-31.479398,152.914262,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022414,1,,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-32.698016,151.765357,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.458877,150.525318,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.59176,153.54948,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.423019,150.638563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.453869,150.520633,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,2,Australia,AU,New South Wales,-33.717003,150.784216,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-28.558157,153.07555,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.418054,150.597962,EPSG:4326 +HUMAN_OBSERVATION,OSSD22052500,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-34.23443,150.79418,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-28.573115,153.437475,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.850479,153.307505,EPSG:4326 +HUMAN_OBSERVATION,OFLM00020900,1,,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-32.202337,152.535936,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-34.497472,150.535175,EPSG:4326 +HUMAN_OBSERVATION,OPJG22120100,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-32.459181,152.261989,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,17,Australia,AU,New South Wales,-28.535245,153.064703,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-29.485109,153.104063,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419134,150.610289,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-30.8961,153.036423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.437121,150.602965,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,12,27,Australia,AU,New South Wales,-28.257744,153.40067,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,MALE,occurrenceRemarks withheld,2022,12,4,Australia,AU,New South Wales,-34.11751,150.799848,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-33.791641,149.453035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.42193,150.607577,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,30,Australia,AU,New South Wales,-28.8205,153.298899,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-31.453171,152.880655,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091807,1,,occurrenceRemarks withheld,2024,3,15,Australia,AU,New South Wales,-32.653494,151.784804,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.451388,150.518313,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-36.447255,149.959252,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR1511120M;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-28.54593,153.52954,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221M,1,,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-32.722458,152.075269,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-30.895436,151.963543,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030D,1,,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-31.445282,152.923661,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004147,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.861642,153.585588,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-33.953175,150.940088,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-31.915995,152.374278,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042W,1,FEMALE,occurrenceRemarks withheld,2023,1,2,Australia,AU,New South Wales,-34.085656,150.815095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.395335,150.630325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-34.449333,150.520125,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-29.478674,153.104138,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.622393,152.979536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.465716,150.521589,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-29.489367,153.1077,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-29.488424,153.09253,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150N,1,,occurrenceRemarks withheld,2024,1,14,Australia,AU,New South Wales,-34.047038,151.005586,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-29.479963,153.104272,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101G,1,,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-31.44407,152.92376,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.389868,150.627793,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-33.775973,150.062723,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-29.477329,153.104557,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,5,Australia,AU,New South Wales,-29.485695,153.103717,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.431231,150.603776,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-31.631042,152.782635,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-28.589459,153.445719,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-30.23995,152.90614,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,5,19,Australia,AU,New South Wales,-28.393661,153.557536,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.469379,150.527479,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-29.48552,153.103849,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,2,15,Australia,AU,New South Wales,-31.911866,152.381244,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-34.1399,150.792628,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,2,13,Australia,AU,New South Wales,-33.552581,149.556514,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-28.258555,153.402173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.42808,150.600743,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083002,1,FEMALE,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-34.069512,150.834868,EPSG:4326 +HUMAN_OBSERVATION,Obs_0305,1,,occurrenceRemarks withheld,2023,1,3,Australia,AU,New South Wales,-32.734873,152.041401,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083000,1,,occurrenceRemarks withheld,2021,3,1,Australia,AU,Queensland,-26.274399,151.995057,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,4,24,Australia,AU,New South Wales,-36.313453,149.341408,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003777,1,FEMALE,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-33.969405,150.919596,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,2,11,Australia,AU,New South Wales,-31.444457,152.904688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.41967,150.611438,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-28.8161,153.336244,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.298453,149.318031,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,2,13,Australia,AU,New South Wales,-31.436901,152.905493,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.485528,150.635985,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.430859,150.603612,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-28.653247,153.306193,EPSG:4326 +HUMAN_OBSERVATION,ODMP21121516,1,MALE,occurrenceRemarks withheld,2022,9,4,Australia,AU,New South Wales,-31.0339,150.04662,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.436859,150.60664,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-30.298352,153.075203,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-29.3406,153.25918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419079,150.610226,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.42027,150.627424,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,7,16,Australia,AU,New South Wales,-34.121054,150.968497,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-34.445942,150.513838,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,11,8,Australia,AU,New South Wales,-33.196786,151.041211,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.445147,150.515537,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-36.432232,149.972808,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,20,Australia,AU,New South Wales,-29.48558,153.1038,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-30.24015,152.90279,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003963,1,,occurrenceRemarks withheld,2023,4,12,Australia,AU,New South Wales,-28.864649,153.294456,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.390104,150.627406,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,8,Australia,AU,New South Wales,-29.490147,153.10077,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-33.718759,150.783755,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.420671,150.627195,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031800,1,,occurrenceRemarks withheld,2022,12,20,Australia,AU,New South Wales,-28.598873,153.545214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.417054,150.597077,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2024,2,16,Australia,AU,New South Wales,-29.608734,150.864107,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,2,19,Australia,AU,New South Wales,-33.774438,150.059214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.446563,150.518238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.436943,150.619227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.447161,150.513029,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.895519,152.788781,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-29.490245,153.108124,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,3,Australia,AU,New South Wales,-28.671784,153.327762,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-31.928166,152.498708,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-31.438716,152.908216,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121501,1,,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-31.145762,152.786758,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030505,1,,occurrenceRemarks withheld,2024,2,10,Australia,AU,New South Wales,-29.77223,151.082425,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251M,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-32.711197,152.072216,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,19,Australia,AU,New South Wales,-31.454913,152.926984,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.455284,150.659564,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140D,1,,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-28.819052,153.280413,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-28.572519,153.439389,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-29.485197,153.104144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.439009,150.602705,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,29,Australia,AU,New South Wales,-29.490194,153.10976,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-30.367814,153.073799,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2021,11,8,Australia,AU,New South Wales,-29.667396,152.868104,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-34.098161,150.808197,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,5,Australia,AU,New South Wales,-29.485346,153.103886,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.418375,150.63382,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-30.418271,152.973345,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032908,1,,occurrenceRemarks withheld,2022,6,25,Australia,AU,New South Wales,-32.711701,152.159445,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-28.653446,153.454341,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.395089,150.642742,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-28.850161,153.214137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.399499,150.625139,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,19,Australia,AU,New South Wales,-29.484702,153.103822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.388849,150.629627,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.465809,150.520389,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.459251,150.516175,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.438064,150.604168,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.438001,150.604202,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2021,12,29,Australia,AU,New South Wales,-36.077344,149.223474,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.447287,150.513918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.43501,150.615811,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,FEMALE,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-31.928295,152.40371,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.383326,150.623291,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-29.485576,153.103811,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,11,12,Australia,AU,New South Wales,-32.527568,151.93656,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,2,Australia,AU,New South Wales,-31.445932,152.915486,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003936,1,FEMALE,occurrenceRemarks withheld,2023,3,14,Australia,AU,New South Wales,-28.8433,152.82712,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,3,29,Australia,AU,New South Wales,-33.775493,150.094228,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-29.489545,153.103859,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,7,5,Australia,AU,New South Wales,-28.820316,153.311636,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.393395,150.6433,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-29.630972,152.899674,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.4363,150.615839,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-31.642109,152.793878,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,2,8,Australia,AU,New South Wales,-31.980755,152.34022,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-33.71717,150.784543,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.137545,150.793837,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,5,19,Australia,AU,New South Wales,-31.91019,152.40941,EPSG:4326 +HUMAN_OBSERVATION,SCHM-035,1,,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-34.412696,150.358327,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181L,1,,occurrenceRemarks withheld,2022,7,11,Australia,AU,New South Wales,-28.540438,153.061285,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-33.313359,150.179226,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-28.879979,153.382207,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.463707,150.523869,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152W,1,MALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.888717,153.299324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.460056,150.531432,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-28.589179,153.549607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.419498,150.635953,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130I,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-31.643706,152.790423,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.436557,150.615158,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-28.55679,153.550107,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-30.631123,151.778494,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.453344,150.522292,EPSG:4326 +HUMAN_OBSERVATION,SCHM-035,1,,occurrenceRemarks withheld,2020,9,4,Australia,AU,New South Wales,-34.267639,150.23546,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-28.826412,153.315937,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-36.441024,149.978709,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-29.490474,153.109369,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-29.485473,153.103505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.493954,150.640484,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-29.683515,152.87324,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2024,6,16,Australia,AU,New South Wales,-32.706636,152.06396,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.4657,150.520327,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160J,1,,occurrenceRemarks withheld,2023,1,19,Australia,AU,New South Wales,-32.728323,152.106101,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004240,1,,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-28.861328,153.333311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.423808,150.605413,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-29.080778,153.010167,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,22,Australia,AU,New South Wales,-29.490446,153.108172,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,2,9,Australia,AU,New South Wales,-30.15738,153.09578,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,ODFK23091101,1,FEMALE,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-30.53312,152.630999,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.44649,150.519959,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-30.31747,153.11197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.463853,150.523495,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-31.465261,152.868144,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,MALE,occurrenceRemarks withheld,2024,6,20,Australia,AU,New South Wales,-31.939208,152.410062,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.438497,150.615712,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.460353,150.515381,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,12,Australia,AU,New South Wales,-32.203408,152.298153,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150H,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-28.867527,153.446234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.435024,150.603145,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.797394,152.812651,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.448505,150.617615,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-31.459609,152.929032,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,MALE,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-28.872929,153.281861,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,20,Australia,AU,New South Wales,-28.815739,153.319097,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.446147,150.514191,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-31.632463,152.784667,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.465714,150.521459,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.416786,150.601359,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-36.459771,149.965237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.388987,150.626067,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210K,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-32.583593,151.823282,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-31.45536,152.921143,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-31.457655,152.92734,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002751,1,,occurrenceRemarks withheld,2020,6,23,Australia,AU,New South Wales,-29.334619,153.129423,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004031,1,,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-28.559749,153.162028,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,1,1,Australia,AU,New South Wales,-32.734454,152.016744,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-33.714129,150.785178,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-35.060622,150.117869,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090407,1,FEMALE,occurrenceRemarks withheld,2021,2,20,Australia,AU,New South Wales,-32.72578,152.17355,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.4462,150.513232,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-30.372589,151.566248,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.488016,150.637374,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-29.767315,151.10172,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.297742,149.316289,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121501,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-34.444485,150.51889,EPSG:4326 +HUMAN_OBSERVATION,OIXR16051100,1,,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-29.441584,149.870381,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2024,3,1,Australia,AU,New South Wales,-34.879659,146.835809,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-31.431231,152.902432,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.298931,149.323447,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-31.12735,150.01549,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.850912,153.315798,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,4,9,Australia,AU,New South Wales,-31.476644,152.913198,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-31.141782,152.798197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.420609,150.609192,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.489211,150.524748,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.554124,150.021287,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-31.436745,152.650468,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.811407,152.824267,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100601,1,,occurrenceRemarks withheld,2024,1,26,Australia,AU,New South Wales,-31.45623,152.930318,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,2,11,Australia,AU,New South Wales,-32.706257,152.063508,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080301,1,,occurrenceRemarks withheld,2022,7,8,Australia,AU,New South Wales,-30.885996,153.071979,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-34.188031,150.78748,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-32.22662,152.20646,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-33.976184,150.993522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.423754,150.637422,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-31.462332,152.894957,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-28.860794,153.409093,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,16,Australia,AU,New South Wales,-31.445979,152.915427,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250A,1,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.767365,146.573313,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,28,Australia,AU,New South Wales,-31.441711,152.909381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.452707,150.60474,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.436332,150.609669,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.44652,150.514789,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-36.432232,149.972808,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.432053,150.612141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.437806,150.607092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.467829,150.529756,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.42063,150.630156,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,9,8,Australia,AU,New South Wales,-30.380447,153.032695,EPSG:4326 +HUMAN_OBSERVATION,ODFK23091102;ODFK23091103,1,MALE,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-30.523033,152.988024,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-28.891385,153.307736,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.453542,150.608689,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032807;OLHP2310050S,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-32.157945,152.361435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.450107,150.516522,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.427447,150.602981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.421198,150.627365,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.384516,150.622833,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.921829,152.429199,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-34.438521,150.51643,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041R,1,,occurrenceRemarks withheld,2023,4,19,Australia,AU,New South Wales,-33.581979,149.552328,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,7,29,Australia,AU,New South Wales,-29.728067,152.93879,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-34.23148,150.797333,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-31.650173,152.828715,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.415167,152.21561,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.45333,150.520726,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.640426,149.947048,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-34.1925,150.79015,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.447181,150.513148,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.435688,150.607163,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-29.490806,153.10931,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-31.447443,152.892054,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.49421,150.640684,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-28.686362,153.516594,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022604,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.903477,152.731612,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.420262,150.627457,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,13,Australia,AU,New South Wales,-29.480084,153.090835,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-28.878209,153.244711,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-31.472917,152.911165,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,4,30,Australia,AU,New South Wales,-32.736244,152.081977,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022414,1,,occurrenceRemarks withheld,2021,11,7,Australia,AU,New South Wales,-32.698016,151.765357,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,6,20,Australia,AU,New South Wales,-34.052599,150.994766,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,3,24,Australia,AU,New South Wales,-31.63008,152.786218,EPSG:4326 +HUMAN_OBSERVATION,OPUR23081702;ODFK2310250A,1,,occurrenceRemarks withheld,2023,,,Australia,AU,New South Wales,-29.166116,152.822273,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.49498,150.609073,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.387435,150.631114,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003837,1,,occurrenceRemarks withheld,2023,3,19,Australia,AU,New South Wales,-28.711776,153.590547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.446346,150.51375,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-28.68721,153.519374,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-30.083815,152.138375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.397752,150.621991,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,31,Australia,AU,New South Wales,-28.94445,153.316687,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153G,1,,occurrenceRemarks withheld,2022,10,20,Australia,AU,New South Wales,-28.567538,153.528655,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.144381,150.79379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.448988,150.516011,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-32.731353,152.088271,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-29.489648,153.101354,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,6,11,Australia,AU,New South Wales,-29.03758,153.399568,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,7,5,Australia,AU,New South Wales,-33.761197,150.075187,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,3,1,Australia,AU,New South Wales,-28.886056,153.319101,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-31.553047,152.852271,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-28.816629,153.336083,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150U,1,,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-32.696024,150.003869,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.435078,150.617909,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-33.716463,150.784864,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022414,1,,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-32.698016,151.765357,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033009,1,,occurrenceRemarks withheld,2020,6,18,Australia,AU,New South Wales,-33.108598,151.237953,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150F,1,FEMALE,occurrenceRemarks withheld,2024,1,23,Australia,AU,New South Wales,-32.039901,152.460271,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,3,Australia,AU,New South Wales,-29.490423,153.109331,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,11,23,Australia,AU,New South Wales,-31.484947,152.903792,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,14,Australia,AU,New South Wales,-33.716967,150.785278,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,1,17,Australia,AU,New South Wales,-28.827533,153.221448,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.465031,150.522448,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405270B,1,,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-30.402213,151.624706,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-29.480556,153.104133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.446382,150.517285,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-34.438412,150.617368,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,9,25,Australia,AU,New South Wales,-30.363455,153.074384,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,5,29,Australia,AU,New South Wales,-31.43944,152.886066,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042O,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-34.144495,150.824834,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,13,Australia,AU,New South Wales,-31.458917,152.924941,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.08336,150.981149,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2024,4,28,Australia,AU,New South Wales,-34.098297,150.808226,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-30.418362,152.973761,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.438106,150.604504,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-29.483853,153.104096,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004224,1,,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.252442,153.435457,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.436291,150.603413,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.486587,150.6376,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-28.308531,153.47492,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.444801,150.515798,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,27,Australia,AU,New South Wales,-35.076943,150.120491,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2022,8,13,Australia,AU,New South Wales,-34.701028,150.13075,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150P,1,,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-35.079356,150.149708,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-29.485165,153.104037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.387812,150.631484,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.452218,150.608781,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,6,4,Australia,AU,New South Wales,-29.761499,151.103579,EPSG:4326 +HUMAN_OBSERVATION,ODFK23111401,1,,occurrenceRemarks withheld,2024,9,4,Australia,AU,New South Wales,-31.569933,152.173203,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.436039,150.616358,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091709,1,,occurrenceRemarks withheld,2022,12,27,Australia,AU,New South Wales,-34.036295,151.026035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.418317,150.63269,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091902,1,,occurrenceRemarks withheld,2024,9,5,Australia,AU,New South Wales,-32.240759,152.458702,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.420754,150.630054,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.603203,153.092754,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.443017,152.898086,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152V,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-28.857815,153.276239,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,3,21,Australia,AU,New South Wales,-31.92441,152.35899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.436021,150.616337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.447234,150.514431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.418389,150.633635,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,21,Australia,AU,New South Wales,-31.436069,152.897967,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,3,30,Australia,AU,New South Wales,-29.739723,151.059212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.44146,150.517301,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.433333,150.52425,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,MALE,occurrenceRemarks withheld,2022,11,5,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-31.474359,152.922927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.395409,150.62991,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020201,1,,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-32.726424,152.148222,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,22,Australia,AU,New South Wales,-29.490222,153.109766,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.397744,150.622024,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,9,Australia,AU,New South Wales,-29.485188,153.103994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.434241,150.616116,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.386946,150.630986,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-33.491195,149.552114,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180J,1,,occurrenceRemarks withheld,2023,8,18,Australia,AU,New South Wales,-28.676052,153.547334,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,1,22,Australia,AU,New South Wales,-29.478786,153.104138,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.886464,153.300206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.421631,150.626918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.436557,150.615158,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-32.706755,152.063862,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,4,Australia,AU,New South Wales,-28.873569,153.38998,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-29.490278,153.110125,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-31.872896,152.361619,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-092,1,,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-29.388848,153.083203,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102218,1,,occurrenceRemarks withheld,2021,2,7,Australia,AU,New South Wales,-32.735558,152.076205,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-31.442636,152.898943,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.441786,150.607772,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.447296,150.513928,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-34.44195,150.514827,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-28.680668,153.615374,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-28.817168,153.327926,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.419002,150.609531,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251P,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-32.709625,152.07148,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,FEMALE,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-32.727893,152.087289,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.650301,153.46202,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-36.151906,149.351709,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.432859,150.615524,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.383415,150.623745,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-31.43675,152.89298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.39676,150.644348,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.810362,152.825293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.434975,150.608935,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140M,1,,occurrenceRemarks withheld,2021,11,28,Australia,AU,New South Wales,-29.029201,153.374185,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,3,18,Australia,AU,New South Wales,-29.488088,153.102508,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,5,Australia,AU,New South Wales,-33.706489,150.78694,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,14,Australia,AU,New South Wales,-31.434745,152.908215,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,MALE,occurrenceRemarks withheld,2024,2,27,Australia,AU,New South Wales,-30.337135,153.056638,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23041908,1,,occurrenceRemarks withheld,2023,2,1,Australia,AU,New South Wales,-30.4842,151.738846,EPSG:4326 +HUMAN_OBSERVATION,OLHP2312140F,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-32.408237,152.479253,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-29.089379,153.384261,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250A,1,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.767365,146.573313,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,19,Australia,AU,New South Wales,-29.488209,153.09216,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,6,8,Australia,AU,New South Wales,-28.719867,153.599218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.447261,150.513962,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042600,1,,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-31.939308,152.464937,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.466225,150.523991,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.419354,150.59849,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.509623,150.574297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.421637,150.639331,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.41968,150.61147,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-33.70879,150.785979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.43498,150.616595,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032804,1,,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-31.50084,152.763456,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,1,Australia,AU,New South Wales,-31.57399,152.814633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.491563,150.639005,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.469652,150.527177,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.452211,150.51843,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111309,1,MALE,occurrenceRemarks withheld,2023,12,4,Australia,AU,New South Wales,-32.20813,152.26075,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,3,21,Australia,AU,New South Wales,-31.465013,152.874926,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010703,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-29.726674,152.929779,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-29.48558,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.388118,150.624493,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.494099,150.640524,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-33.70803,150.784703,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,21,Australia,AU,New South Wales,-29.485688,153.103779,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240M,1,,occurrenceRemarks withheld,2022,1,20,Australia,AU,New South Wales,-32.744614,152.074128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.41932,150.638874,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-30.408847,153.000276,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-34.730723,146.512624,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.454053,150.520389,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,2,17,Australia,AU,New South Wales,-32.712818,152.070398,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-31.42527,152.88053,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2024,1,17,Australia,AU,New South Wales,-28.784917,152.09174,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.465374,150.521577,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-33.118012,151.234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.447559,150.51798,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.465119,150.522358,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,24,Australia,AU,New South Wales,-29.491571,153.099793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.45297,150.523424,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,6,24,Australia,AU,New South Wales,-34.03444,151.08566,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-34.464095,150.522105,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-34.450226,150.596834,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-31.449788,152.924192,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,11,Australia,AU,New South Wales,-29.490507,153.109396,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083001,1,,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-32.353086,151.813666,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,7,19,Australia,AU,New South Wales,-32.70658,152.063687,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.437414,150.51964,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-30.916546,152.759506,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-28.796866,153.359451,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,2,13,Australia,AU,New South Wales,-31.452744,152.925818,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.427071,150.603992,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-31.632199,152.785443,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-28.39009,153.56086,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,25,Australia,AU,New South Wales,-29.492599,153.098667,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-31.915481,152.374067,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-28.864615,153.293195,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.920432,152.404546,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-31.473236,152.87324,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080904;OMFZ23032403,1,,occurrenceRemarks withheld,2023,1,8,Australia,AU,New South Wales,-32.80101,151.716251,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-29.490862,153.109304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.418255,150.632736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.386719,150.627197,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,7,25,Australia,AU,New South Wales,-31.131447,152.811429,EPSG:4326 +HUMAN_OBSERVATION,OJJS19090300,1,MALE,occurrenceRemarks withheld,2021,1,17,Australia,AU,New South Wales,-32.720642,152.103693,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.434854,150.617077,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.437018,150.603229,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.466125,150.521305,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-28.388732,153.546218,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050R,1,,occurrenceRemarks withheld,2023,2,16,Australia,AU,New South Wales,-32.91562,151.59348,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-28.256448,153.401543,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-28.63955,153.01536,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-31.122511,152.799906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.383896,150.62296,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-28.784917,152.09174,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,21,Australia,AU,New South Wales,-31.475241,152.897066,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,26,Australia,AU,New South Wales,-29.485573,153.103755,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103101,1,,occurrenceRemarks withheld,2022,12,26,Australia,AU,New South Wales,-34.03636,151.02546,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.932608,152.413034,EPSG:4326 +HUMAN_OBSERVATION,OLHP23071100,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-31.46776,152.921557,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,6,Australia,AU,New South Wales,-29.485559,153.103752,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-32.249007,152.215241,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070601,1,,occurrenceRemarks withheld,2020,5,14,Australia,AU,New South Wales,-34.352833,150.685257,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.452614,150.524099,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090600,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-33.561748,149.552708,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-29.490203,153.098865,EPSG:4326 +HUMAN_OBSERVATION,OMCE97042908,1,,occurrenceRemarks withheld,2020,1,,Australia,AU,New South Wales,-30.345313,153.085619,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-28.257919,153.400728,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,29,Australia,AU,New South Wales,-29.485319,153.104004,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-29.477646,153.104364,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-32.070691,152.036748,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150N,1,,occurrenceRemarks withheld,2020,6,8,Australia,AU,Victoria,-38.418359,145.060212,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2021,11,8,Australia,AU,New South Wales,-32.70933,152.062586,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.458401,150.528042,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.386266,150.624285,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.392548,150.639083,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130V,1,,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-32.130634,152.353555,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.454194,150.606526,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-32.23198,152.192249,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.426947,150.597675,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-32.727783,152.078206,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,18,Australia,AU,New South Wales,-31.17914,150.13963,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,10,22,Australia,AU,New South Wales,-33.113355,151.118573,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,FEMALE,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-31.436927,152.905648,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.385781,150.622982,EPSG:4326 +HUMAN_OBSERVATION,OPJG09091000,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-30.117272,152.788922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.444615,150.51465,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.438472,150.61581,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.526054,152.843329,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-28.501505,153.073907,EPSG:4326 +HUMAN_OBSERVATION,OSSD22052500,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-34.23001,150.79308,EPSG:4326 +HUMAN_OBSERVATION,ODMP21050300,1,,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-34.106742,150.953442,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-34.396977,150.640165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.45522,150.519668,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.422319,150.607664,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.426927,150.604932,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-30.351545,152.606727,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.446704,150.51942,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-31.452844,152.875823,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.436878,150.606694,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003990,1,,occurrenceRemarks withheld,2023,6,19,Australia,AU,New South Wales,-28.623698,153.007455,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160D,1,,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-30.887804,153.069496,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060503,1,,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-28.840678,153.310848,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-28.86986,153.349116,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.461552,150.524281,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.394336,150.631778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.393868,150.640666,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,2,14,Australia,AU,New South Wales,-34.130879,150.982477,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2021,12,13,Australia,AU,New South Wales,-28.586547,153.55232,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-33.991958,150.89266,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,3,Australia,AU,New South Wales,-33.713901,150.785758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.491494,150.63916,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.43379,150.617064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.448608,150.515914,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,7,6,Australia,AU,New South Wales,-31.440852,152.883809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.395577,150.642837,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-28.618808,153.00335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.436434,150.608883,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300U,1,,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-32.738464,152.111855,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.459194,150.521347,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.447056,150.516308,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.388107,150.632291,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,FEMALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-28.257945,153.400574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.432974,150.611712,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.447253,150.518925,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-28.83385,153.352906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.431481,150.611896,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-29.397543,153.359607,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900;OMRF21071000,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.085499,150.979713,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-28.83385,153.352906,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-31.434677,152.906408,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-29.029015,153.434144,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-31.626749,152.220622,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.397266,150.64627,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.465193,150.521572,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,1,18,Australia,AU,New South Wales,-32.716103,152.162175,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121100,1,,occurrenceRemarks withheld,2023,3,25,Australia,AU,New South Wales,-31.94,152.466,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130G,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-31.429766,152.911128,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,20,Australia,AU,New South Wales,-28.7234,153.523849,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-29.476838,153.104868,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-28.870802,153.482612,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,28,Australia,AU,New South Wales,-31.441764,152.918974,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-30.332321,152.620869,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240V,1,,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-32.739862,152.097539,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.462856,150.524112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.429502,150.614455,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,2,Australia,AU,New South Wales,-33.717055,150.785254,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022526,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-32.722735,152.077019,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,15,Australia,AU,New South Wales,-30.446415,152.638155,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-31.460468,152.895047,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004002,1,,occurrenceRemarks withheld,2023,2,10,Australia,AU,New South Wales,-29.003629,153.408769,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,25,Australia,AU,New South Wales,-31.446742,152.921754,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-34.0684,150.91364,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-31.626402,152.160538,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2020,12,17,Australia,AU,New South Wales,-31.933142,152.415091,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,FEMALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-31.454584,152.926354,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-31.451116,152.930206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.390084,150.627787,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.425098,150.599947,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080903,1,FEMALE,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-28.929895,153.003535,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,12,13,Australia,AU,New South Wales,-31.465621,152.927689,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.420848,150.627941,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,6,6,Australia,AU,New South Wales,-31.456741,152.878879,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.448936,150.607851,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,24,Australia,AU,New South Wales,-33.718187,150.784442,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.46119,150.524683,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180L,1,,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-28.679923,153.490226,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,2,11,Australia,AU,New South Wales,-28.389209,153.561346,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-28.914105,153.319544,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-31.505865,152.644655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.452035,150.517336,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,30,Australia,AU,New South Wales,-34.440198,150.618351,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.436545,150.60259,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,MALE,occurrenceRemarks withheld,2024,7,10,Australia,AU,New South Wales,-31.909761,152.406411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-34.463811,150.524998,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.438897,150.60434,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.446284,150.513795,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-32.07347,152.363201,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,18,Australia,AU,New South Wales,-29.483745,153.104181,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250Z,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-32.748567,152.16856,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-36.474664,149.917922,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-28.82415,153.320392,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-28.872186,153.381937,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-33.708357,150.786992,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.533974,152.834299,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.453107,150.51997,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,25,Australia,AU,New South Wales,-28.830313,153.324953,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,6,19,Australia,AU,New South Wales,-28.65348,153.45439,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-32.219628,152.19096,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.443115,150.514934,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.467503,150.523866,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.435783,150.517012,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-31.235504,152.748256,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-32.689634,151.707228,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-29.4887,153.102561,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.464837,150.522236,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132S,1,,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-30.880745,153.07377,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-34.446918,150.517498,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,5,Australia,AU,New South Wales,-29.490778,153.109251,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070J,1,,occurrenceRemarks withheld,2020,11,14,Australia,AU,New South Wales,-34.005448,150.886337,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-36.020013,149.361307,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-29.031264,152.986544,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.33583,153.541106,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.394268,150.630138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.485535,150.636366,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-34.339191,150.74776,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,1,12,Australia,AU,New South Wales,-29.48848,153.103618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.469963,150.516271,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.463852,150.522569,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-28.92735,153.157975,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,26,Australia,AU,New South Wales,-28.960004,153.395298,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-28.665755,153.523303,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-29.47887,153.104155,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-31.474884,152.897352,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,7,Australia,AU,New South Wales,-33.703739,150.785921,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.843864,153.197758,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;ODMP2212210P;ODMP2212210Q;OLHP2311100C,1,,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-30.091144,152.157972,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-29.485585,153.103779,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-29.490269,153.10814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.423782,150.637454,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,2,6,Australia,AU,New South Wales,-28.825577,153.291283,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.455768,150.610051,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-29.485576,153.103817,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403060I,1,,occurrenceRemarks withheld,2024,2,11,Australia,AU,New South Wales,-32.052253,152.542492,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.393706,150.644423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.481705,150.532504,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-33.464338,150.586628,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-31.426555,152.883013,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-28.847118,153.297006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.423497,150.605672,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,12,19,Australia,AU,New South Wales,-29.631042,152.899325,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160J,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-32.726436,152.104403,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,17,Australia,AU,New South Wales,-31.475879,152.916594,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,2,21,Australia,AU,New South Wales,-31.480571,152.913153,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-28.820834,153.281985,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,3,18,Australia,AU,New South Wales,-29.490516,153.109417,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.435751,150.607161,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.446926,150.513885,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-28.94146,153.315192,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.385956,150.624554,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.465552,150.528136,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-31.640024,152.790998,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,8,17,Australia,AU,New South Wales,-34.384972,150.334694,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140J,1,,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-31.458044,152.927173,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.420322,150.636126,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-32.710907,152.064955,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-31.435164,152.895785,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-31.449268,152.883023,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.4659,150.522204,EPSG:4326 +HUMAN_OBSERVATION,F-OBS000187,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,,-30.474167,153.359444,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,22,Australia,AU,New South Wales,-31.467267,152.903039,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-33.7064,150.785493,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,10,18,Australia,AU,New South Wales,-34.104746,150.821796,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.802661,152.889058,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-29.489974,153.1085,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-33.712308,150.786036,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-33.71859,150.783052,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-32.04245,151.75204,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.424559,150.602813,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-31.443977,152.892872,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.447396,150.518833,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,5,Australia,AU,New South Wales,-29.490175,153.109739,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.465827,150.520389,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.425739,150.602279,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220D,1,,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-32.7214,151.65776,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.427256,150.604716,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004236,1,,occurrenceRemarks withheld,2023,8,19,Australia,AU,New South Wales,-28.858365,153.057976,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150Q,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-32.917245,150.732017,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.098229,150.808597,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300S,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-32.895553,151.575576,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022603,1,,occurrenceRemarks withheld,2020,3,11,Australia,AU,New South Wales,-31.466553,152.914435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.450913,150.522887,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.456769,150.608216,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-28.817639,153.338752,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,9,Australia,AU,New South Wales,-28.393883,153.559233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.454843,150.657247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.388233,150.625295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.420923,150.627166,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-28.589252,153.325824,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707;OPJG20112703,1,,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-30.523005,152.627106,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-29.485258,153.104154,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.454115,150.606659,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004269,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-28.82576,153.316639,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.229205,152.189597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.485942,150.638304,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.650407,149.955028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.397258,150.623017,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,1,Australia,AU,New South Wales,-29.490133,153.108017,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-31.459878,152.922659,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,2,10,Australia,AU,New South Wales,-31.187267,152.9415,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,4,12,Australia,AU,New South Wales,-31.09179,150.08624,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103101,1,,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-34.0252,151.0288,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081117,1,,occurrenceRemarks withheld,2023,7,8,Australia,AU,New South Wales,-31.450157,152.908157,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111311,1,,occurrenceRemarks withheld,2024,1,29,Australia,AU,New South Wales,-30.37894,153.017398,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-31.915646,152.37414,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,12,10,Australia,AU,New South Wales,-31.633853,152.785164,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.420013,150.631348,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310310B,1,,occurrenceRemarks withheld,2023,1,7,Australia,AU,New South Wales,-32.711914,152.070793,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-31.473855,152.917848,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.44672,150.513097,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-29.186193,153.132092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.442995,150.516994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.448204,150.516034,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-29.736748,151.058724,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,6,23,Australia,AU,New South Wales,-32.724694,152.073064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.432173,150.615489,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.42429,150.603811,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-28.665447,153.404602,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.446344,150.513674,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,8,25,Australia,AU,New South Wales,-30.462176,152.902664,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-36.013015,149.374883,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090T,1,,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-31.437304,152.897381,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,3,1,Australia,AU,New South Wales,-31.484325,152.915683,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040402;OLHP24040403,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.452173,152.921463,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-29.491562,153.09974,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-31.445884,152.915434,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.886211,153.218423,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031523,1,,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-28.85535,153.394044,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.432558,150.604314,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-28.82455,153.29793,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2022,12,11,Australia,AU,New South Wales,-34.012784,150.880542,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-28.377985,152.586083,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.396977,150.640165,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041A,1,FEMALE,occurrenceRemarks withheld,2023,3,21,Australia,AU,New South Wales,-30.362675,151.554208,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-34.099874,150.961373,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-29.48538,153.103897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.446707,150.516862,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-31.126116,152.79736,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-34.229227,150.795181,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-34.141271,150.82369,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-28.586411,153.552471,EPSG:4326 +HUMAN_OBSERVATION,ODFK2408220F,1,,occurrenceRemarks withheld,2024,1,4,Australia,AU,New South Wales,-32.649391,149.943519,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;ODMP2212210P;ODMP2212210Q;OLHP2311100C,1,,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-29.84096,152.238141,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080100,1,,occurrenceRemarks withheld,2023,12,23,Australia,AU,New South Wales,-30.239463,153.044099,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.455196,150.658717,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-32.038529,152.263682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.451441,150.518246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.419046,150.609498,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-31.431013,152.88223,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.434545,150.603561,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,3,25,Australia,AU,New South Wales,-32.92601,151.50578,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,11,15,Australia,AU,New South Wales,-32.737269,152.089051,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.834228,153.320987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.391033,150.628359,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.491628,150.639101,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,18,Australia,AU,New South Wales,-31.444243,152.907014,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-28.871545,153.476288,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.445989,150.51437,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-34.06116,150.996146,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-36.474664,149.917922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.437934,150.604879,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.181904,153.004819,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-30.505562,152.920647,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,7,Australia,AU,New South Wales,-29.485151,153.104133,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020301,1,FEMALE,occurrenceRemarks withheld,2022,3,21,Australia,AU,New South Wales,-31.643094,152.83467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.417746,150.602953,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.2262,150.794959,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.465734,150.521578,EPSG:4326 +HUMAN_OBSERVATION,OLHP24013004,1,,occurrenceRemarks withheld,2024,6,27,Australia,AU,New South Wales,-31.913066,152.326902,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,12,23,Australia,AU,New South Wales,-34.060825,150.840231,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,4,12,Australia,AU,New South Wales,-33.779934,150.102132,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.395142,150.6292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.413108,150.59906,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-31.454477,152.926556,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-33.76776,150.060813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.434857,150.605685,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-33.78291,150.070141,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100L,1,,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-32.727385,152.005398,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-29.490479,153.10946,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.827996,153.303174,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,11,Australia,AU,New South Wales,-29.793058,150.925808,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.388287,150.629926,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,19,Australia,AU,New South Wales,-31.632409,152.78551,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-29.489554,153.103935,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.418204,150.632008,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.466542,150.521423,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-32.59069,151.604065,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003854,1,MALE,occurrenceRemarks withheld,2023,3,7,Australia,AU,New South Wales,-29.019903,153.394195,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,3,1,Australia,AU,New South Wales,-34.098285,150.808623,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,1,14,Australia,AU,New South Wales,-32.7213,152.075,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-32.728107,152.00351,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.399167,153.555833,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-32.723498,152.077828,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.443245,150.518216,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,20,Australia,AU,New South Wales,-29.49025,153.108119,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.393466,150.64133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.419671,150.632772,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.420948,150.63031,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,3,29,Australia,AU,New South Wales,-28.827302,153.315556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.436153,150.616192,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-30.221882,152.725343,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002758,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-29.479668,153.104299,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427068,150.604765,EPSG:4326 +HUMAN_OBSERVATION,OJQS16052400,1,,occurrenceRemarks withheld,2020,2,,Australia,AU,New South Wales,-30.496853,151.642997,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2023,12,20,Australia,AU,New South Wales,-31.43676,152.905333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.42098,150.636586,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,MALE,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-28.963784,153.402846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.420013,150.63138,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,11,14,Australia,AU,New South Wales,-29.442125,153.168357,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.810551,152.825231,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-28.838558,153.390708,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-32.24075,152.20724,EPSG:4326 +HUMAN_OBSERVATION,OSYF17103100,1,,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-32.673499,150.716117,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427068,150.604765,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-29.489634,153.104696,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-30.39464,152.939801,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.425546,150.604384,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150R,1,FEMALE,occurrenceRemarks withheld,2022,6,29,Australia,AU,New South Wales,-33.689191,149.33085,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.463788,150.525173,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.085563,150.979879,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-28.258293,153.401177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.436546,150.602644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.446339,150.513859,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090406,1,,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-30.367822,153.017038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.431955,150.613591,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.229205,152.189597,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-28.76005,153.48499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.447784,150.513076,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.420265,150.634594,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-33.436422,150.709702,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,3,15,Australia,AU,New South Wales,-28.971807,153.285111,EPSG:4326 +HUMAN_OBSERVATION,ODFK23073106,1,,occurrenceRemarks withheld,2023,11,29,Australia,AU,New South Wales,-34.71343,150.06776,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110R,1,,occurrenceRemarks withheld,2023,7,18,Australia,AU,New South Wales,-31.457636,152.881152,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,7,5,Australia,AU,New South Wales,-31.475605,152.909481,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.446756,150.516175,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.396714,152.814797,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-34.071944,150.994505,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-33.709604,150.786047,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.466088,150.522112,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.588285,149.913134,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-28.61965,153.269912,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154D,1,,occurrenceRemarks withheld,2022,11,10,Australia,AU,New South Wales,-28.890296,153.228626,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-31.448924,152.893449,EPSG:4326 +HUMAN_OBSERVATION,ODMP99090100,1,,occurrenceRemarks withheld,2021,10,9,Australia,AU,New South Wales,-34.124839,150.974031,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-29.486384,153.103377,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,6,28,Australia,AU,New South Wales,-31.458735,152.883218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.439055,150.605043,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-34.141626,150.79132,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.413746,150.595746,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.421486,150.627335,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,18,Australia,AU,New South Wales,-33.70803,150.78477,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-32.722468,152.077238,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,20,Australia,AU,New South Wales,-31.46699,152.906807,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.419036,150.604798,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160J,1,,occurrenceRemarks withheld,2023,1,17,Australia,AU,New South Wales,-32.733067,152.103041,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,4,14,Australia,AU,New South Wales,-36.330022,149.325146,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,9,8,Australia,AU,New South Wales,-31.450401,152.881609,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011014,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-32.731988,152.039641,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.960764,153.399922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.420607,150.630863,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,12,3,Australia,AU,New South Wales,-28.644511,153.55716,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,17,Australia,AU,New South Wales,-33.719356,150.782684,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-31.442724,152.901201,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,11,13,Australia,AU,New South Wales,-29.485324,153.10401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.456487,150.60855,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2022,2,1,Australia,AU,New South Wales,-29.03783,152.981376,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.421242,150.627331,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.464163,150.522343,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,2,10,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-31.447644,152.893081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.449043,150.516042,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.419967,150.631327,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004021,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-28.232986,153.443471,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.422772,150.637417,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,,occurrenceRemarks withheld,2023,6,22,Australia,AU,New South Wales,-29.469548,153.133761,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-33.991232,150.88454,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-28.686915,153.523472,EPSG:4326 +HUMAN_OBSERVATION,ODFK23121105,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-30.16019,152.606551,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.434957,150.608946,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.491945,150.639158,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.449784,150.515683,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.451943,150.51723,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.392785,150.63925,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.477518,150.630638,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-31.456123,152.924669,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304051H,1,,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-32.484925,151.863529,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.431965,150.613602,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.294659,149.324922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.385589,150.626576,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.489108,150.637899,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-28.822938,153.297989,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.474888,152.928242,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,5,14,Australia,AU,New South Wales,-28.982666,153.421332,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.383291,150.623379,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-31.2816,152.83195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.452472,150.523755,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,5,14,Australia,AU,New South Wales,-34.467647,150.421155,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,2,26,Australia,AU,New South Wales,-29.759968,151.083408,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-33.709463,150.785132,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,13,Australia,AU,New South Wales,-29.490404,153.108017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.423824,150.637268,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.445873,150.513111,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,7,26,Australia,AU,New South Wales,-30.50591,152.921682,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-31.478508,152.913531,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002257,1,,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-28.228302,153.412883,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,6,24,Australia,AU,New South Wales,-30.884921,153.07175,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-33.76782,150.062181,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.451879,150.60989,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-32.216754,152.192089,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.418342,150.632613,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-30.290202,152.699582,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-28.727142,153.169459,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-29.478786,153.104235,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002829,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-29.484553,153.09592,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.390078,150.627439,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-28.82558,153.317376,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,10,Australia,AU,New South Wales,-29.485762,153.093131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.46428,150.522306,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433281,150.607623,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.832918,153.589469,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.575848,150.016461,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-29.346563,152.944433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.465665,150.520404,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,,Australia,AU,New South Wales,-28.703163,153.612304,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.490972,150.638249,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,6,21,Australia,AU,New South Wales,-29.485545,153.103822,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021500,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.946291,152.564105,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-28.41521,153.554216,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-33.309974,150.180204,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-36.435679,149.980514,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.654857,152.812179,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-36.435679,149.980514,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.418232,150.632018,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,10,Australia,AU,New South Wales,-29.482961,153.104417,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-30.882465,152.754102,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-30.84178,152.759299,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,2,28,Australia,AU,New South Wales,-28.629822,153.269325,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-28.88859,153.270371,EPSG:4326 +HUMAN_OBSERVATION,OJJS1802200K,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-28.727662,153.423585,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-34.188134,150.790596,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-31.457397,152.924148,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031541,1,FEMALE,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-28.386918,153.564733,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.436591,150.60767,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-31.443115,152.919379,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-28.953942,153.322384,EPSG:4326 +HUMAN_OBSERVATION,OWEH18012200,1,,occurrenceRemarks withheld,2020,2,,Australia,AU,New South Wales,-30.749529,150.73808,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-32.706679,152.06371,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-29.486626,153.1032,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031T,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.443492,152.889456,EPSG:4326 +HUMAN_OBSERVATION,ODMP22091202,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-28.632376,153.11547,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004196,1,,occurrenceRemarks withheld,2023,8,18,Australia,AU,New South Wales,-28.881133,153.296701,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.447253,150.518892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.42066,150.630786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.388104,150.624211,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.446683,150.516134,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,4,8,Australia,AU,New South Wales,-32.706659,152.063831,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.436911,150.603755,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-29.480869,153.104155,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-29.48559,153.103468,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,26,Australia,AU,New South Wales,-29.491525,153.099729,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.436057,150.616347,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,20,Australia,AU,New South Wales,-31.194882,152.972564,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-32.721989,152.143974,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.46975,150.51643,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,23,Australia,AU,New South Wales,-29.489629,153.10468,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150E,1,,occurrenceRemarks withheld,2022,12,4,Australia,AU,New South Wales,-28.809282,153.507589,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-30.522618,152.902281,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.468295,150.530047,EPSG:4326 +HUMAN_OBSERVATION,OLHP24062103,1,,occurrenceRemarks withheld,2024,9,7,Australia,AU,New South Wales,-30.403932,153.031448,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.437946,150.604128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.488041,150.635893,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-30.52433,152.60674,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.422725,150.636885,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,9,28,Australia,AU,New South Wales,-29.560587,150.543732,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.397613,150.623181,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,4,21,Australia,AU,New South Wales,-31.965832,152.394754,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-29.480028,153.10409,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-28.554293,153.071673,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.465774,150.520412,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102100,1,,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-32.727714,152.085192,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111508,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-28.647412,153.320382,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-28.816928,153.318918,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,5,24,Australia,AU,New South Wales,-29.184329,153.003754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.386883,150.631009,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310310F,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-28.381267,153.556638,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.176,150.80115,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,7,6,Australia,AU,New South Wales,-31.469072,152.915719,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-28.671784,153.327762,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100300,1,,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-31.635274,152.791131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.420066,150.63832,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003982,1,,occurrenceRemarks withheld,2023,5,26,Australia,AU,New South Wales,-28.765294,153.497743,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062105,1,,occurrenceRemarks withheld,2023,5,26,Australia,AU,New South Wales,-31.460128,152.924406,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2024,9,14,Australia,AU,New South Wales,-34.034467,150.878928,EPSG:4326 +HUMAN_OBSERVATION,OPJG21031205,1,MALE,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-28.662577,153.423967,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-31.457791,152.906598,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,8,5,Australia,AU,New South Wales,-32.730717,152.081831,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-28.577043,153.376638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.393433,150.631271,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,12,Australia,AU,New South Wales,-28.661269,153.609501,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,3,8,Australia,AU,New South Wales,-31.466373,152.927676,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-31.933312,152.415054,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.297497,149.323194,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-33.717762,150.78415,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041A,1,,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-30.639889,151.491755,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022410,1,,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-32.706587,152.063619,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-30.311948,152.842695,EPSG:4326 +HUMAN_OBSERVATION,STAG-035,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-30.582565,152.848953,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,19,Australia,AU,New South Wales,-29.484646,153.10387,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-31.485856,152.916123,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002740,1,MALE,occurrenceRemarks withheld,2023,12,5,Australia,AU,New South Wales,-29.707205,152.879021,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,8,29,Australia,AU,New South Wales,-28.23901,153.49556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.464118,150.521451,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,4,16,Australia,AU,New South Wales,-32.706607,152.06373,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,8,Australia,AU,New South Wales,-33.71923,150.783125,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.438078,150.605343,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,4,Australia,AU,New South Wales,-29.490175,153.109744,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-28.625024,153.008561,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.423824,150.6373,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101301,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-28.261513,153.468392,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004126,1,FEMALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-29.086962,153.380525,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.453487,150.608658,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.430911,150.611357,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,4,19,Australia,AU,New South Wales,-36.563499,149.949818,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100506,1,,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-31.40352,152.861707,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2022,12,9,Australia,AU,New South Wales,-31.44835,152.905645,EPSG:4326 +HUMAN_OBSERVATION,ODFK24070300,1,MALE,occurrenceRemarks withheld,2024,4,17,Australia,AU,New South Wales,-31.4724,152.9096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.425005,150.604845,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-29.488812,153.101971,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-33.715752,150.785348,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-28.847202,153.296588,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.465744,150.520293,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-33.706336,150.785426,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-34.932794,150.145644,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-29.48686,153.103162,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.41963,150.611689,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081117,1,,occurrenceRemarks withheld,2023,7,8,Australia,AU,New South Wales,-31.450423,152.90804,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,25,Australia,AU,New South Wales,-31.129256,152.808637,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-29.479612,153.104197,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.393435,150.639743,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004142,1,MALE,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-28.900009,153.297949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.395897,150.642132,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-30.891519,152.990676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.420922,150.628048,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-29.490189,153.10814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.39002,150.627278,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-31.12175,152.798309,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,11,Australia,AU,New South Wales,-28.98306,153.412734,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,24,Australia,AU,New South Wales,-29.490184,153.110517,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-32.01839,151.96116,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,26,Australia,AU,New South Wales,-28.844288,153.30281,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-34.099914,150.962174,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.427337,150.604703,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.48624,150.635051,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.385808,150.627168,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-34.643015,150.57783,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.826643,153.317829,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,11,Australia,AU,New South Wales,-29.490423,153.109626,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250E,1,MALE,occurrenceRemarks withheld,2024,9,30,Australia,AU,New South Wales,-28.540297,153.109868,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,9,6,Australia,AU,New South Wales,-32.75346,152.1261,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-33.705457,150.787435,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-29.506274,152.824534,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.420431,150.635242,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,5,Australia,AU,New South Wales,-33.719105,150.78509,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,6,19,Australia,AU,New South Wales,-32.724782,152.073162,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,3,14,Australia,AU,New South Wales,-32.748807,152.068988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.397095,150.640684,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-36.333231,149.465047,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-28.822325,153.285486,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102211,1,,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-32.72313,152.081222,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.451648,150.524443,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,5,23,Australia,AU,New South Wales,-28.93121,153.276254,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2024,7,9,Australia,AU,New South Wales,-32.722522,152.07705,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-31.458113,152.929009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.447057,150.516373,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-28.683598,153.611458,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.437315,150.605528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.457634,150.659422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.472439,150.51881,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-34.096229,150.984599,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.43848,150.615756,EPSG:4326 +HUMAN_OBSERVATION,OLHP24010912,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.453287,152.916226,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.40015,150.647625,EPSG:4326 +HUMAN_OBSERVATION,OJMM08020900,1,FEMALE,occurrenceRemarks withheld,2023,11,7,Australia,AU,New South Wales,-34.040911,151.004595,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.393106,150.645125,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,4,Australia,AU,New South Wales,-29.490511,153.109412,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2023,6,19,Australia,AU,New South Wales,-36.601821,149.952899,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020I,1,,occurrenceRemarks withheld,2021,11,13,Australia,AU,New South Wales,-32.708207,152.068075,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-30.23588,152.90703,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154G,1,MALE,occurrenceRemarks withheld,2022,10,24,Australia,AU,New South Wales,-28.585754,153.071738,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-30.275648,152.916074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.418998,150.61026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.488964,150.637914,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.491527,150.639006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.417421,150.632966,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,26,Australia,AU,New South Wales,-31.458895,152.926277,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040S,1,,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-32.8836,151.58246,EPSG:4326 +HUMAN_OBSERVATION,ODFK23083002,1,,occurrenceRemarks withheld,2023,2,12,Australia,AU,New South Wales,-29.6424,152.830784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.434801,150.615294,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.452236,150.51746,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.395151,150.62871,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2024,9,12,Australia,AU,New South Wales,-34.010835,150.877474,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-29.479921,153.104063,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2020,6,27,Australia,AU,New South Wales,-34.100666,150.812503,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-29.485501,153.103672,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.39461,150.642701,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150Y,1,,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-31.468765,152.924902,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-28.638162,153.531976,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2020,8,8,Australia,AU,New South Wales,-30.35546,153.07458,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.422972,150.606013,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-31.459529,152.928691,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-28.876858,153.324244,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,5,Australia,AU,New South Wales,-28.33014,153.562711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.397821,150.639968,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072601;ODMP2212210O,1,,occurrenceRemarks withheld,2022,3,19,Australia,AU,New South Wales,-28.257021,153.40205,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-33.7096,150.786543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.467373,150.522814,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.471329,150.519192,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,6,Australia,AU,New South Wales,-33.709387,150.7853,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-28.864668,153.293136,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,6,Australia,AU,New South Wales,-34.143183,150.790539,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OIXR1511120C,1,,occurrenceRemarks withheld,2022,4,6,Australia,AU,New South Wales,-28.346767,153.565839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.389378,150.626709,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004279,1,,occurrenceRemarks withheld,2023,9,19,Australia,AU,New South Wales,-29.028709,153.156659,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-29.478786,153.104133,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODFK2404260A,1,,occurrenceRemarks withheld,2024,2,2,Australia,AU,New South Wales,-32.329808,152.542582,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.435056,150.606659,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-33.716468,150.785064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.438977,150.604305,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,6,17,Australia,AU,New South Wales,-29.022198,153.409213,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-29.339012,153.249164,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.435037,150.615832,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-28.610492,152.661161,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.43163,150.611217,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-35.90077,145.70962,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-31.445926,152.915385,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.451449,150.522207,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-33.717297,150.78418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.457712,150.606643,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150X,1,MALE,occurrenceRemarks withheld,2023,12,15,Australia,AU,New South Wales,-32.067098,151.739332,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-31.457254,152.929184,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.394665,150.642743,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004178,1,FEMALE,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.913129,153.404093,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-28.428023,153.514529,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.388354,150.630131,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.551144,149.998977,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-29.48813,153.09217,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-29.488928,153.102003,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.435469,150.602849,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083001,1,,occurrenceRemarks withheld,2023,6,16,Australia,AU,New South Wales,-33.552733,150.654304,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,FEMALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-32.71933,152.07514,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,17,Australia,AU,New South Wales,-30.309466,153.071009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.491349,150.639109,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.453799,150.520309,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.085563,150.979879,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-32.64584,151.72062,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.437658,150.517881,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210A,1,,occurrenceRemarks withheld,2022,11,24,Australia,AU,Victoria,-38.471947,146.216432,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-34.023661,150.987879,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-31.440076,152.924397,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.420402,150.627257,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-28.398184,153.555641,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-28.820085,153.302276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.400878,150.619064,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-32.217573,152.00548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.386075,150.625606,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-30.355053,153.087946,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070601,1,,occurrenceRemarks withheld,2020,5,14,Australia,AU,New South Wales,-34.352802,150.685167,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,5,24,Australia,AU,New South Wales,-31.465976,152.873048,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,4,24,Australia,AU,New South Wales,-36.313333,149.34148,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.427044,150.60494,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.388426,150.631521,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,26,Australia,AU,New South Wales,-29.4807,153.089504,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-31.443899,152.923355,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,8,22,Australia,AU,New South Wales,-28.864647,153.293198,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-31.932241,152.412624,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-31.94258,152.281302,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.452688,150.604686,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083000,1,MALE,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-33.541071,150.639048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.427088,150.60397,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,16,Australia,AU,New South Wales,-29.485776,153.103693,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-28.683592,153.521789,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.439063,150.603182,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032903,1,,occurrenceRemarks withheld,2022,11,14,Australia,AU,New South Wales,-32.721041,151.991587,EPSG:4326 +HUMAN_OBSERVATION,ODMP10100606,1,,occurrenceRemarks withheld,2023,1,2,Australia,AU,New South Wales,-34.072952,151.003336,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435765,150.521419,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418824,150.632839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.395854,150.643634,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866891,153.343646,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.690255,153.437583,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-29.490735,153.109272,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.467894,152.786372,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-30.29885,153.123399,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,19,Australia,AU,New South Wales,-28.389253,153.560784,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-31.643227,152.807425,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-28.868027,153.336688,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.45914,150.521816,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,2,,occurrenceRemarks withheld,2024,9,26,Australia,AU,New South Wales,-29.561262,150.854974,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.429035,150.599791,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-29.491571,153.099745,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.419082,150.609464,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,3,3,Australia,AU,New South Wales,-31.431532,152.916966,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.464615,150.521959,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.60386,153.402852,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-31.450571,152.914906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.44877,150.516801,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-31.13124,150.0282,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,22,Australia,AU,New South Wales,-28.25245,153.538997,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.43421,152.919528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.451158,150.519397,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-31.061581,152.719855,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,27,Australia,AU,New South Wales,-28.599197,153.091275,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,24,Australia,AU,New South Wales,-29.488149,153.092283,EPSG:4326 +HUMAN_OBSERVATION,OPXE96061101,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-31.216978,152.950561,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.389608,150.628812,EPSG:4326 +HUMAN_OBSERVATION,CHADL,1,,occurrenceRemarks withheld,2020,2,10,Australia,AU,New South Wales,-28.384726,153.562079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.448736,150.516465,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.929063,153.317852,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.450608,150.515844,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.435597,150.604326,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.677452,153.486365,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.395569,150.642413,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151V,1,,occurrenceRemarks withheld,2022,10,8,Australia,AU,New South Wales,-28.959457,153.394297,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-30.435319,152.98038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.447243,150.518849,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-29.490395,153.108071,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-31.482731,152.86752,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022608,2,FEMALE,occurrenceRemarks withheld,2024,9,22,Australia,AU,New South Wales,-32.515381,151.68364,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.471447,150.524097,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,10,Australia,AU,New South Wales,-33.715621,150.785264,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-31.552973,152.852429,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.420914,150.630387,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100501,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.432954,152.895431,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-31.443373,152.916457,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.434934,150.617478,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.467388,150.522672,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,6,4,Australia,AU,New South Wales,-28.719692,153.243582,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.430173,150.607744,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-31.442971,152.924807,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.435766,150.521473,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,4,Australia,AU,New South Wales,-31.44651,152.891577,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003949,1,,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-28.873812,153.277604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.421307,150.627406,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-28.435621,153.329651,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.386447,150.625737,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-31.448829,152.919097,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2022,,,Australia,AU,New South Wales,-28.981717,153.440619,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-29.770695,151.102086,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,3,8,Australia,AU,New South Wales,-28.845386,153.596207,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.428665,150.605764,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-28.379277,153.333213,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,29,Australia,AU,New South Wales,-31.4593,152.927271,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.399879,150.617341,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,16,Australia,AU,New South Wales,-29.489596,153.103918,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.469101,153.043399,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,1,Australia,AU,New South Wales,-31.473803,152.868131,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-29.488709,153.101944,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.422146,150.637239,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-29.490203,153.109734,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500,1,,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-28.48505,153.52658,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.43779,150.607212,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-33.717726,150.784073,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010703,1,MALE,occurrenceRemarks withheld,2021,12,20,Australia,AU,New South Wales,-29.726684,152.929553,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-30.417681,153.010861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.420956,150.630266,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083008,1,,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-32.938017,151.488892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.419685,150.635393,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.415898,150.597414,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210L,1,,occurrenceRemarks withheld,2021,12,6,Australia,AU,New South Wales,-28.261084,153.398506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.446906,150.51826,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-30.347263,153.078602,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.386892,150.630998,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.915045,153.318046,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,,occurrenceRemarks withheld,2020,9,25,Australia,AU,New South Wales,-33.791641,149.453035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.388156,150.631115,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022518,1,FEMALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-32.724577,152.077254,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,11,28,Australia,AU,New South Wales,-32.706144,152.063587,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.435899,150.604589,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.454008,150.516831,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.492063,150.640134,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,21,Australia,AU,New South Wales,-31.467116,152.899767,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-28.744317,153.266454,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003999,1,,occurrenceRemarks withheld,2023,1,4,Australia,AU,New South Wales,-28.883175,153.300827,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-34.437801,150.616548,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-29.480107,153.104256,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.632867,149.949786,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,18,Australia,AU,New South Wales,-31.945815,152.404167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.447426,150.514577,EPSG:4326 +HUMAN_OBSERVATION,OJJS20051106,1,,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-30.579557,151.713893,EPSG:4326 +HUMAN_OBSERVATION,OKAJ09082800,1,MALE,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-33.782392,150.590448,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-31.443135,152.919374,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004010,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-28.796571,153.504942,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,7,16,Australia,AU,New South Wales,-34.121713,150.968525,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.427906,150.600607,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.386355,150.625152,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,5,6,Australia,AU,New South Wales,-31.4692,152.917944,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-31.435652,152.890309,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.442023,150.607472,EPSG:4326 +HUMAN_OBSERVATION,OJJS20012802,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-33.51162,150.68312,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.465673,150.521677,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,MALE,occurrenceRemarks withheld,2023,1,26,Australia,AU,New South Wales,-28.824039,153.299786,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.442878,150.517422,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102112,1,,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-32.767983,152.107545,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091709,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-34.052384,151.002026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.420596,150.630766,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-28.328355,152.564373,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-29.728067,152.93879,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-31.125864,152.797591,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,3,3,Australia,AU,New South Wales,-31.914629,152.373881,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210D,1,,occurrenceRemarks withheld,2022,12,26,Australia,AU,New South Wales,-32.774514,151.931469,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251H,1,,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-32.730646,152.084599,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2022,5,14,Australia,AU,New South Wales,-31.403015,152.093798,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.418979,150.610653,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-29.490105,153.107411,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-29.500615,152.791633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.465815,150.522435,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,20,Australia,AU,New South Wales,-31.471984,152.916507,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.431005,150.609701,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.435156,150.608963,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.421248,150.626232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.399291,150.625548,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,5,25,Australia,AU,New South Wales,-28.863514,153.300166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.491669,150.638883,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040413,1,FEMALE,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140J,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-28.824468,153.325592,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.48827,150.636997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.464564,150.526119,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.46689,150.45753,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090504,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-30.42524,152.941884,EPSG:4326 +HUMAN_OBSERVATION,OPJG21060804,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-31.520846,152.727019,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-28.93058,153.187955,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-33.51732,150.617141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.389296,150.626678,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-31.618433,152.835986,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.4326,150.613377,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-31.463247,152.926492,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.49318,150.639177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.393426,150.631336,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.840581,153.360617,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-34.483871,150.567012,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-29.490119,153.107438,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220M,1,,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-32.736704,152.033707,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.929114,152.381646,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.840581,153.360617,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.485619,150.636974,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-28.833951,153.319519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.420708,150.609189,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,MALE,occurrenceRemarks withheld,2023,2,27,Australia,AU,New South Wales,-29.689336,152.862134,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.427171,150.604055,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-31.638266,152.789807,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-32.556735,151.747269,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-32.693871,151.652315,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-29.483801,153.104138,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181I,1,,occurrenceRemarks withheld,2022,7,23,Australia,AU,New South Wales,-28.6019,153.0359,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,19,Australia,AU,New South Wales,-28.223151,153.498403,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-34.331279,150.562641,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.429594,150.610416,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-31.478707,152.905517,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-31.170273,152.947982,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,3,Australia,AU,New South Wales,-28.864664,153.293365,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.451813,150.518398,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.394147,150.630391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.433764,150.617098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.450546,150.599349,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.465127,150.522325,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,4,5,Australia,AU,New South Wales,-29.071399,153.086703,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.420574,150.627285,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.39576,150.642016,EPSG:4326 +HUMAN_OBSERVATION,ODDP13030700,1,FEMALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-31.197908,149.369982,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-33.522609,150.655487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.463778,150.523823,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.45706,150.51796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.455387,150.657896,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,8,23,Australia,AU,New South Wales,-31.473441,152.919591,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.681355,149.952917,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.433048,150.615986,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.436074,150.615802,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.464893,150.521439,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041400,1,,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-28.871059,153.266394,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-28.82489,153.314058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.421839,150.636279,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,2,2,Australia,AU,New South Wales,-33.00885,151.71087,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040N,1,MALE,occurrenceRemarks withheld,2024,3,7,Australia,AU,New South Wales,-31.179839,152.968919,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.420685,150.630676,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.426435,152.821715,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.411503,150.596267,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,,occurrenceRemarks withheld,2022,12,29,Australia,AU,New South Wales,-34.75536,146.571529,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-29.488256,153.092058,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-31.280887,152.862176,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435811,150.615734,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-32.782264,151.636811,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021506,1,,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-31.464357,152.924757,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.964835,151.849778,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,20,Australia,AU,New South Wales,-31.642612,152.793516,EPSG:4326 +HUMAN_OBSERVATION,OPJG20060401,1,,occurrenceRemarks withheld,2020,5,25,Australia,AU,New South Wales,-28.30184,153.55943,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-36.503633,150.008014,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.488634,150.63531,EPSG:4326 +HUMAN_OBSERVATION,ODMP09041409,1,,occurrenceRemarks withheld,2020,3,24,Australia,AU,New South Wales,-31.100063,150.085764,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.420599,150.637424,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,7,17,Australia,AU,New South Wales,-28.517475,153.110916,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.901933,152.794945,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091705,1,,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-31.950972,152.298898,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,6,4,Australia,AU,New South Wales,-28.638162,153.531976,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-28.913883,153.45552,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22100600,1,MALE,occurrenceRemarks withheld,2022,8,27,Australia,AU,New South Wales,-33.980919,150.906186,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.429334,150.606767,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,6,Australia,AU,New South Wales,-31.48567,152.913498,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-29.862403,152.191536,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.491278,150.639144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.447766,150.513077,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-29.485594,153.103811,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-28.584993,153.215164,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.432453,150.607212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.423797,150.637279,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-33.714076,150.785243,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-31.161834,152.861607,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-29.163383,150.186149,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.395872,150.629146,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-31.652838,152.818061,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.923402,152.372698,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,10,Australia,AU,New South Wales,-31.437147,152.897761,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.44795,150.517272,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-29.485641,153.103457,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.390475,150.626101,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-29.49004,153.11057,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.469402,150.526857,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,3,4,Australia,AU,New South Wales,-28.818295,153.315696,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-31.474481,152.919209,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.446311,150.513827,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090X,1,,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-33.38583,150.964482,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,1,Australia,AU,New South Wales,-29.485576,153.103827,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004264,1,MALE,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-29.000187,153.371865,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-33.00885,151.71087,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,21,Australia,AU,New South Wales,-33.775502,150.056219,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.465775,150.520488,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,11,Australia,AU,New South Wales,-35.020999,150.149029,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,1,MALE,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-28.62639,153.427326,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-28.313118,152.493398,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,12,22,Australia,AU,New South Wales,-31.939223,152.417646,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OJJS1208150Z,1,MALE,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-32.447469,151.968181,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2024,7,5,Australia,AU,New South Wales,-34.482856,150.335817,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.438973,150.604534,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.607854,149.947316,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-28.837601,153.306657,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-30.289654,152.700655,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,3,25,Australia,AU,New South Wales,-33.775551,150.092834,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,4,28,Australia,AU,New South Wales,-31.433254,152.909776,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-31.442995,152.919406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.488197,150.637402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.464806,150.519374,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-35.061305,150.118279,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081109,1,,occurrenceRemarks withheld,2023,3,15,Australia,AU,New South Wales,-32.27449,151.854101,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-28.322836,153.465634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.385837,150.627276,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.42377,150.637313,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.420923,150.630397,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.423762,150.637335,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.450827,150.515565,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-31.92625,152.353525,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-34.215368,150.799208,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,2,10,Australia,AU,New South Wales,-33.99196,150.89266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.447831,150.519865,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.395041,150.630464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.465697,150.521514,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,6,24,Australia,AU,New South Wales,-32.75856,152.07746,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-31.474257,152.922865,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.465735,150.521632,EPSG:4326 +HUMAN_OBSERVATION,ODFK23121100,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-29.470529,153.132205,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-28.864605,153.293262,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,FEMALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-29.667173,152.868233,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-29.485179,153.096183,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-29.490908,153.109278,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO,1,,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-30.415963,152.948669,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.388868,150.625995,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-31.435872,152.885691,EPSG:4326 +HUMAN_OBSERVATION,ODMP21083102,1,,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-32.241455,150.971573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.45578,150.597774,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.437388,150.605547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.427039,150.605136,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090O,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-31.447809,152.869283,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,10,28,Australia,AU,New South Wales,-31.445982,152.915398,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.430689,150.607817,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2024,1,30,Australia,AU,New South Wales,-33.125134,151.232617,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022612,1,MALE,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-28.559995,153.395729,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,OJJS20072903,1,MALE,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-31.474412,152.917599,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.45773,150.606675,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-28.888425,153.270972,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.395872,150.643612,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-29.667023,152.868061,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-34.447196,150.513017,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,9,6,Australia,AU,New South Wales,-34.18322,150.790927,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.839565,153.279241,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,FEMALE,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-33.491209,149.552125,EPSG:4326 +HUMAN_OBSERVATION,ODFK2404260A,1,,occurrenceRemarks withheld,2024,2,2,Australia,AU,New South Wales,-32.330457,152.542118,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.446845,150.516129,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.423878,150.637288,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-29.485608,153.103817,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,1,MALE,occurrenceRemarks withheld,2022,11,6,Australia,AU,New South Wales,-28.625955,153.427845,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.466424,150.521372,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-31.470004,152.918506,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-31.526235,152.791776,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2021,12,2,Australia,AU,New South Wales,-31.914618,152.381452,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-31.455595,152.87487,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-32.706652,152.063964,EPSG:4326 +HUMAN_OBSERVATION,OGRJ01031200,1,,occurrenceRemarks withheld,2022,2,13,Australia,AU,New South Wales,-32.044844,152.524848,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,28,Australia,AU,New South Wales,-29.485571,153.103774,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.65318,152.807412,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,9,10,Australia,AU,New South Wales,-31.91883,152.377895,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,15,Australia,AU,New South Wales,-29.491595,153.099766,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-29.667284,152.867718,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.438132,150.616408,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-28.888631,153.302311,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100L,1,,occurrenceRemarks withheld,2023,8,28,Australia,AU,New South Wales,-31.940863,152.414267,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,7,4,Australia,AU,New South Wales,-29.667396,152.868919,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-36.497108,149.942556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.427813,150.600936,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.491798,150.639968,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-29.490544,153.108183,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-31.459214,152.871191,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,5,Australia,AU,New South Wales,-28.705379,153.47372,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-29.485576,153.103779,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260V,1,FEMALE,occurrenceRemarks withheld,2020,3,6,Australia,AU,New South Wales,-32.759249,152.103796,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022507,1,,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-32.543445,151.678195,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032804,1,,occurrenceRemarks withheld,2022,12,12,Australia,AU,New South Wales,-31.442787,152.846541,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-29.740814,151.059275,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.14022,150.79511,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-33.983885,151.002757,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.420642,150.630797,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-31.489655,152.907156,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,3,2,Australia,AU,New South Wales,-31.636597,152.787601,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.432671,150.613309,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,1,7,Australia,AU,New South Wales,-33.770977,150.113811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.465781,150.520314,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.442245,152.901928,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002739,1,,occurrenceRemarks withheld,2022,5,6,Australia,AU,New South Wales,-29.489606,153.110581,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.389682,150.627048,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,5,6,Australia,AU,New South Wales,-33.994863,151.013607,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-29.748749,151.073978,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-32.706501,152.063845,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2022,8,22,Australia,AU,New South Wales,-30.187383,152.989374,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041307,1,FEMALE,occurrenceRemarks withheld,2022,1,15,Australia,AU,New South Wales,-34.0769,150.857126,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,11,Australia,AU,New South Wales,-29.490581,153.109422,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,5,24,Australia,AU,New South Wales,-32.706526,152.063709,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100G,1,,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-31.184784,152.967038,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,5,4,Australia,AU,New South Wales,-28.53639,153.166202,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.839565,153.279241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.398129,150.645169,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,27,Australia,AU,New South Wales,-33.71748,150.784174,EPSG:4326 +HUMAN_OBSERVATION,OJJS1208150Z,1,FEMALE,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-32.711888,151.709719,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.439466,150.603932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.419743,150.611469,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004071,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.919949,153.395625,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-34.442335,150.515544,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,14,Australia,AU,New South Wales,-28.822021,153.334983,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-33.717252,150.784226,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-36.270292,149.410656,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-31.453745,152.924926,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2020,5,23,Australia,AU,New South Wales,-31.453909,152.925285,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-29.486846,153.097197,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,1,Australia,AU,New South Wales,-31.452292,152.922152,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.395684,150.641355,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,,occurrenceRemarks withheld,2023,3,26,Australia,AU,New South Wales,-28.96049,153.394466,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,2,3,Australia,AU,New South Wales,-31.439912,152.885288,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-31.92387,152.371874,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,2,21,Australia,AU,New South Wales,-28.552811,152.97267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.395684,150.641811,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101C,1,,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-33.85909,150.848922,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,21,Australia,AU,New South Wales,-29.487448,153.110989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.447155,150.513182,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.386874,150.630542,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.419695,150.609914,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2022,5,9,Australia,AU,New South Wales,-34.773157,146.595395,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-34.089471,150.989165,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022602,1,,occurrenceRemarks withheld,2020,2,8,Australia,AU,New South Wales,-29.27299,150.099132,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081110,1,,occurrenceRemarks withheld,2023,7,6,Australia,AU,New South Wales,-34.798013,150.161898,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102218,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-32.65525,151.645579,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150E,1,MALE,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-32.448985,151.969019,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100D,1,,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-32.674863,151.667897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.468274,150.529449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.397434,150.622805,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-28.629535,153.451554,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.078232,150.839671,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.420269,150.627348,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.420915,150.626742,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-28.86986,153.349116,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66111,153.60863,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.735006,152.030417,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.447359,150.516125,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-28.524358,153.13752,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,12,,Australia,AU,New South Wales,-36.139338,149.319923,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-31.427316,152.877653,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003887,1,FEMALE,occurrenceRemarks withheld,2023,3,15,Australia,AU,New South Wales,-28.820474,153.30294,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-28.820337,153.295272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.389683,150.627994,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-31.455105,152.92705,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,22,Australia,AU,New South Wales,-29.48968,153.104777,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.418139,150.631912,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-28.573115,153.429342,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-30.325375,152.802375,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.389969,150.630672,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.465688,150.521536,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031812,1,,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-28.599348,153.092219,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-29.490511,153.109363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.425701,150.595785,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-28.396866,153.559202,EPSG:4326 +HUMAN_OBSERVATION,OLHP24071204,1,,occurrenceRemarks withheld,2024,6,27,Australia,AU,New South Wales,-33.581329,150.234259,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-28.59438,153.078569,EPSG:4326 +HUMAN_OBSERVATION,ODMP06091900,1,MALE,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-31.450779,152.916371,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-30.17771,152.896953,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-33.433675,150.63871,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.38656,150.627376,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.464878,150.522463,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,MALE,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-29.667173,152.867632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.420991,150.630178,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.397548,150.640323,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,26,Australia,AU,New South Wales,-29.485548,153.103827,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-34.14156,150.797018,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.447054,150.513087,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-34.096961,150.961367,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011202,1,,occurrenceRemarks withheld,2020,5,30,Australia,AU,New South Wales,-30.417,151.682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.447254,150.518979,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-30.42243,153.00717,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-28.648182,153.315616,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003975,1,FEMALE,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-28.824986,153.299523,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.384094,150.622465,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-31.12222,152.84519,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,21,Australia,AU,New South Wales,-28.827945,153.317534,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100Q,1,,occurrenceRemarks withheld,2023,10,3,Australia,AU,New South Wales,-28.30883,153.349809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.42116,150.630054,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.438069,150.604429,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-31.473474,152.921957,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100304,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-31.440818,152.882528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.429272,150.615125,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.915169,152.378769,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,5,22,Australia,AU,New South Wales,-28.61307,153.206215,EPSG:4326 +HUMAN_OBSERVATION,OJJS17070500,1,,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-30.40789,152.88433,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-28.888838,153.302271,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-31.460651,152.919118,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-30.887,152.448947,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,4,Australia,AU,New South Wales,-28.903027,153.287916,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-32.774209,152.108169,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-28.571221,153.552936,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083006,1,,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-31.977374,151.921393,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022416,1,,occurrenceRemarks withheld,2021,11,14,Australia,AU,New South Wales,-32.700914,152.063358,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-33.717921,150.783468,EPSG:4326 +HUMAN_OBSERVATION,Obs_2557,1,MALE,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-34.06577,150.837451,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091709,1,,occurrenceRemarks withheld,2020,11,21,Australia,AU,New South Wales,-34.024194,151.050209,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,7,1,Australia,AU,New South Wales,-32.72502,152.01688,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002842,1,,occurrenceRemarks withheld,2020,6,23,Australia,AU,New South Wales,-29.633215,152.81167,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,FEMALE,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-33.623333,149.547784,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-31.456952,152.915174,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,7,15,Australia,AU,New South Wales,-33.757953,150.072998,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,6,Australia,AU,New South Wales,-29.490241,153.10821,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-34.106531,150.959382,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-31.89953,151.841009,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-31.46524,152.909439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.388155,150.631963,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.465806,150.522435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.456154,150.603989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.463743,150.523868,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.435382,150.521223,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.439181,150.604125,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,1,Australia,AU,New South Wales,-29.480266,153.090234,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,7,9,Australia,AU,New South Wales,-28.69241,153.510553,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-29.485324,153.103994,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-33.435406,150.616112,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011014,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-32.728908,152.039709,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-31.441793,152.902495,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003849,1,FEMALE,occurrenceRemarks withheld,2023,4,18,Australia,AU,New South Wales,-28.813011,153.311988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.389985,150.627301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.390539,150.628916,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,9,Australia,AU,New South Wales,-29.485057,153.104152,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.56179,152.59067,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-880,1,,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-30.510492,152.957635,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-31.442563,152.901603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.418342,150.632613,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-33.434912,150.615749,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003811,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-28.678877,153.470537,EPSG:4326 +HUMAN_OBSERVATION,OJJS20010703,1,MALE,occurrenceRemarks withheld,2022,1,10,Australia,AU,New South Wales,-29.726679,152.93054,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-28.98674,153.433721,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,2,12,Australia,AU,New South Wales,-31.450234,152.922261,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2023,1,13,Australia,AU,New South Wales,-35.991521,149.372129,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-29.49046,153.109465,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.465823,150.522381,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002813,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-29.598835,152.925739,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436074,150.520659,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,MALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.819553,153.302211,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.39164,150.644383,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,5,Australia,AU,New South Wales,-33.709272,150.785486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.462257,150.534633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.39775,150.640046,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004153,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.896665,153.35354,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004131,1,,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-28.879696,153.324023,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,4,25,Australia,AU,New South Wales,-33.779295,150.104474,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-28.399153,153.555909,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-32.706176,152.063401,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-29.489596,153.103908,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-28.826297,153.313985,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.427987,150.600615,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.48861,150.637346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.411562,150.596081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.438102,150.604297,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-28.855702,153.323323,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-28.388928,153.543966,EPSG:4326 +HUMAN_OBSERVATION,ODFK23121103,1,MALE,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-29.700507,152.924747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.434512,150.609242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.394592,150.643615,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070B,1,,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-32.764664,152.035932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.420948,150.627024,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-28.373989,153.560523,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032807;OLHP2310050T,1,,occurrenceRemarks withheld,2022,10,12,Australia,AU,New South Wales,-32.156684,152.359545,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-29.482167,153.10424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.436626,150.518978,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.886464,153.300206,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405270A,1,,occurrenceRemarks withheld,2024,5,28,Australia,AU,New South Wales,-32.570557,151.78254,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-31.443535,152.919603,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,23,Australia,AU,New South Wales,-28.824948,153.325705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.399739,150.617519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.424418,150.604373,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004196,1,,occurrenceRemarks withheld,2023,7,10,Australia,AU,New South Wales,-28.870658,153.29594,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090L,1,,occurrenceRemarks withheld,2023,11,12,Australia,AU,New South Wales,-34.082153,150.997861,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,23,Australia,AU,New South Wales,-33.713489,150.785438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.392731,150.639219,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,5,6,Australia,AU,New South Wales,-32.706607,152.063698,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-28.686362,153.516594,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-32.706475,152.063582,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-29.485127,153.104074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.394021,150.630863,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-28.827927,153.365248,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,15,Australia,AU,New South Wales,-34.440039,150.618954,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.449054,150.516597,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101F,1,,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-31.445426,152.908769,EPSG:4326 +HUMAN_OBSERVATION,ODFK24051402,1,,occurrenceRemarks withheld,2024,2,4,Australia,AU,New South Wales,-34.49028,150.46594,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003819,1,,occurrenceRemarks withheld,2023,5,29,Australia,AU,New South Wales,-28.826874,153.316596,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-30.317046,153.071952,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-31.438517,152.893872,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.419702,150.635317,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-31.426368,152.878118,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,15,Australia,AU,New South Wales,-29.48548,153.103846,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.445762,150.514736,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-32.003815,151.943845,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-31.252885,152.769111,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,18,Australia,AU,New South Wales,-31.458666,152.921777,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-34.066218,150.836568,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.396199,150.640927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418912,150.632717,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,12,5,Australia,AU,New South Wales,-34.190111,150.790406,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,26,Australia,AU,New South Wales,-31.633895,152.283995,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220O,1,,occurrenceRemarks withheld,2021,12,16,Australia,AU,New South Wales,-32.72845,152.106292,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,11,13,Australia,AU,New South Wales,-31.471275,152.90672,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-30.309466,153.071009,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003842,1,FEMALE,occurrenceRemarks withheld,2023,2,1,Australia,AU,New South Wales,-28.398854,153.556199,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.457317,150.659333,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-28.288936,153.39463,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211F,1,,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-32.72845,152.106292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.462792,150.524092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.467144,150.521743,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.466297,150.523085,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-31.948252,152.300422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.389724,150.625959,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-29.490012,153.110538,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2021,1,27,Australia,AU,New South Wales,-33.563133,149.550911,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.427449,150.603514,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.836062,153.287996,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.426741,150.601412,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500,1,,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-28.7273,153.60144,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-30.351336,153.079647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.437291,150.60567,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,6,29,Australia,AU,New South Wales,-31.491562,152.876765,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.465091,150.522326,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-34.20284,150.79435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.436145,150.520613,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-33.705995,150.786188,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-28.39705,152.657979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.438959,150.604306,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.448862,150.516918,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,8,15,Australia,AU,New South Wales,-31.454815,152.908723,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419631,150.611755,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,28,Australia,AU,New South Wales,-33.716817,150.784226,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.42697,150.603941,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,8,Australia,AU,New South Wales,-31.47374,152.900846,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-29.123301,150.309018,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,11,10,Australia,AU,New South Wales,-31.631189,152.787182,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-31.479051,152.871849,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.44638,150.514086,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080304,1,,occurrenceRemarks withheld,2022,4,17,Australia,AU,New South Wales,-34.110018,150.941547,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.197825,150.791409,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,24,Australia,AU,New South Wales,-28.650297,153.470868,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.488645,150.637302,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.438291,150.615783,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,7,Australia,AU,New South Wales,-28.400283,153.557114,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.438542,150.61571,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,20,Australia,AU,New South Wales,-29.489746,153.110603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.46584,150.522358,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-30.84178,152.759299,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2023,4,21,Australia,AU,New South Wales,-28.264271,153.337649,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-34.083644,150.999236,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,6,Australia,AU,New South Wales,-29.484777,153.095813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.458671,150.664149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.398176,150.64061,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.443802,150.514576,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.445855,150.513133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.451464,150.615387,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.418885,150.6091,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003945,1,MALE,occurrenceRemarks withheld,2023,5,29,Australia,AU,New South Wales,-28.397522,153.556542,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.388216,150.630918,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-34.023785,150.871039,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-29.490194,153.110297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.431927,150.613526,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.394003,150.630863,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-28.38442,153.547409,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,24,Australia,AU,New South Wales,-29.472733,153.107679,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.464944,150.522189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.434999,150.604201,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-31.437744,152.915607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.420296,150.627347,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,11,22,Australia,AU,New South Wales,-28.879979,153.382207,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,20,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.388325,150.63098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.426716,150.603817,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-36.576557,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.886464,153.300206,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-34.28401,150.74435,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-29.489984,153.101354,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004260,1,MALE,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-28.865871,153.289662,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2024,4,16,Australia,AU,New South Wales,-31.651384,152.60191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.447864,150.516164,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.42378,150.637334,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-34.085987,150.833136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.384724,150.626112,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072601,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-28.260476,153.401988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.447446,150.518636,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.395455,150.625776,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251A,1,,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-32.73076,152.083495,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.426481,150.604248,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.432177,150.605098,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2024,9,3,Australia,AU,New South Wales,-33.118462,151.23422,EPSG:4326 +HUMAN_OBSERVATION,OJJS2006300E,1,,occurrenceRemarks withheld,2020,2,5,Australia,AU,New South Wales,-29.743427,152.893154,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.448745,150.51826,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.419037,150.610401,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-32.738697,152.092763,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.418463,150.633731,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.441424,150.517759,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-29.479963,153.104289,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,16,Australia,AU,New South Wales,-28.530563,153.151184,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.387348,150.631257,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.447897,150.515086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.42009,150.634414,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080302,1,FEMALE,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-31.642346,152.79338,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-34.064689,150.841021,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,4,3,Australia,AU,New South Wales,-34.618598,150.384554,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.447245,150.518979,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.291869,152.864165,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-29.487901,153.091757,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.465675,150.520415,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-33.715285,150.7854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.388915,150.624221,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.460307,150.515338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.397745,150.6216,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.398463,150.640048,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,7,17,Australia,AU,New South Wales,-34.491005,150.468886,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,1,MALE,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-28.626458,153.427967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.420765,150.630641,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.886464,153.300206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.423826,150.637376,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.42428,152.822192,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150E,1,,occurrenceRemarks withheld,2020,5,24,Australia,AU,Queensland,-27.969639,153.356959,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-31.452858,152.924007,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-31.459228,152.924885,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.846635,153.302393,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090503;OLHP23090504,1,,occurrenceRemarks withheld,2023,1,26,Australia,AU,New South Wales,-30.493961,152.941787,EPSG:4326 +HUMAN_OBSERVATION,OSHD03070900,1,,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-28.873965,153.230665,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-28.933402,153.451495,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,,occurrenceRemarks withheld,2022,6,5,Australia,AU,New South Wales,-31.442828,152.901,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-29.741085,151.061084,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-29.612254,152.934694,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.437036,150.518345,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-28.821749,153.331243,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.457299,150.527487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.42024,150.627284,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-31.475472,152.92031,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.469397,150.527478,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.438978,150.60437,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,FEMALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-32.34057,151.817463,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-29.477287,153.1046,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,3,21,Australia,AU,New South Wales,-34.14127,150.82369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.420333,150.627422,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032208,1,,occurrenceRemarks withheld,2021,2,5,Australia,AU,New South Wales,-33.562852,149.55107,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-28.689903,153.345917,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-31.2829,152.82489,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042A,1,FEMALE,occurrenceRemarks withheld,2023,4,17,Australia,AU,New South Wales,-31.074172,150.170845,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.43558,150.615446,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-31.459677,152.929367,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.383998,150.622652,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.491269,150.639177,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020703,1,,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-30.213731,152.797166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.429591,150.614398,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002814,1,,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-29.676411,152.877594,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,10,Australia,AU,New South Wales,-29.49043,153.108242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.433105,150.605071,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-34.83704,150.01912,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-29.728067,152.93879,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-31.46972,152.923405,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,4,22,Australia,AU,New South Wales,-31.472366,152.925636,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.399726,150.617356,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,13,Australia,AU,New South Wales,-34.072952,151.003336,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-34.157547,150.790845,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.054438,150.975774,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052016,1,FEMALE,occurrenceRemarks withheld,2022,6,11,Australia,AU,New South Wales,-31.455822,152.920728,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.393235,150.643859,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-34.215361,150.799222,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,3,5,Australia,AU,New South Wales,-34.096306,150.985076,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-31.459132,152.928723,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-31.12713,152.793529,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,FEMALE,occurrenceRemarks withheld,2022,8,27,Australia,AU,New South Wales,-28.25571,153.401668,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.400356,150.639614,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-31.810661,152.243297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.43522,150.615511,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-29.490698,153.109304,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151X,1,,occurrenceRemarks withheld,2022,10,9,Australia,AU,New South Wales,-28.268362,153.473468,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.433416,150.616378,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-28.679301,153.278134,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-34.298488,150.613778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.418152,150.597905,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.488034,150.637395,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.437802,150.605993,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.44761,150.515171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.420903,150.627058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.424451,150.604676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.491715,150.638936,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-36.659369,149.984322,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.451593,150.524444,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.494076,150.640241,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2020,6,1,Australia,AU,New South Wales,-29.484642,153.103999,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-30.33086,151.640482,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,,occurrenceRemarks withheld,2023,2,1,Australia,AU,New South Wales,-32.216116,152.194689,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457927,150.531386,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-31.270924,152.865796,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,1,19,Australia,AU,New South Wales,-32.728997,152.106618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.46408,150.522247,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.446546,150.514299,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,18,Australia,AU,New South Wales,-29.485499,153.103795,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,7,20,Australia,AU,New South Wales,-31.491536,152.775507,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO;OJJS20110901,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-30.66667,152.955462,EPSG:4326 +HUMAN_OBSERVATION,OJJS19122407,1,,occurrenceRemarks withheld,2020,6,26,Australia,AU,New South Wales,-34.157201,150.8046,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-33.704417,150.786303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.495625,150.524961,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.632151,149.941399,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2022,5,21,Australia,AU,New South Wales,-31.919231,152.379463,EPSG:4326 +HUMAN_OBSERVATION,ODMP10030132,1,FEMALE,occurrenceRemarks withheld,2020,2,16,Australia,AU,New South Wales,-34.745648,146.563224,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.387975,153.564056,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.182013,153.002388,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-30.509627,152.921575,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-31.467513,152.930176,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,4,11,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.434905,150.615999,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.726571,152.784419,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.433855,150.617138,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.442926,152.898068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.38451,150.622518,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190I,1,MALE,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-28.818794,153.301846,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-29.487784,153.102508,EPSG:4326 +HUMAN_OBSERVATION,OJXK00052203,1,,occurrenceRemarks withheld,2022,12,28,Australia,AU,New South Wales,-34.100506,150.974638,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130J,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.451443,152.914421,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-29.834309,150.844858,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.488599,150.634429,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-31.444902,152.927351,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,29,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-34.085987,150.833136,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,10,Australia,AU,New South Wales,-29.490269,153.108199,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.459362,150.524335,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071001,1,,occurrenceRemarks withheld,2024,6,12,Australia,AU,New South Wales,-31.90123,152.327246,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004071,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.919066,153.395987,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-29.505641,152.82484,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-30.880197,153.071977,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.458317,150.659283,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,12,Australia,AU,New South Wales,-33.770274,150.078969,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.91474,152.821574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.444478,150.515894,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-31.519199,152.812262,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.431049,150.61378,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,19,Australia,AU,New South Wales,-31.453009,152.926032,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-30.36468,153.06119,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.189423,150.798085,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,20,Australia,AU,New South Wales,-29.483334,153.095142,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,1,29,Australia,AU,New South Wales,-31.435911,152.915571,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,5,4,Australia,AU,New South Wales,-28.863674,153.292753,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-31.1269,152.796697,EPSG:4326 +HUMAN_OBSERVATION,OPXC11112900,1,MALE,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-34.072982,151.052862,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-28.649832,153.620433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.471979,150.529024,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500,1,,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-28.7273,153.60144,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.434395,150.61708,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405270B,1,,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.402213,151.624706,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.574566,149.915309,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2020,5,21,Australia,AU,New South Wales,-33.527069,150.659722,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.098127,150.808259,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,6,10,Australia,AU,New South Wales,-31.467655,152.864853,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-29.490241,153.110216,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.437984,150.60516,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.435957,150.616306,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030E,1,,occurrenceRemarks withheld,2022,6,8,Australia,AU,New South Wales,-33.512784,150.711906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.422644,150.636877,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-29.489199,153.098152,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,1,30,Australia,AU,New South Wales,-31.246426,152.745717,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-33.714032,150.785778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.459054,150.659165,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-31.299396,152.863584,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.453443,150.517392,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-28.248694,153.477993,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111327,1,,occurrenceRemarks withheld,2023,8,18,Australia,AU,New South Wales,-30.241077,152.902947,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-29.058961,153.308892,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-29.490217,153.109728,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,29,Australia,AU,New South Wales,-31.485275,152.914772,EPSG:4326 +HUMAN_OBSERVATION,CHADL,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-28.388147,153.355574,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040709,1,,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-34.005673,150.894781,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.448715,150.515867,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-31.461057,152.929906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.435174,150.607145,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.447214,150.516543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-34.446346,150.517308,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,5,25,Australia,AU,New South Wales,-29.490133,153.100764,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.420877,150.630366,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.44942,150.515988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.420956,150.630244,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-28.651389,153.458959,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,13,Australia,AU,New South Wales,-29.491492,153.099761,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,19,Australia,AU,New South Wales,-31.465813,152.91021,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210V,1,,occurrenceRemarks withheld,2022,8,29,Australia,AU,New South Wales,-32.72228,152.077509,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.491021,150.638444,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-28.826223,153.317932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.411572,150.596135,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-29.796463,150.922668,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.464915,150.522059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.423913,150.605236,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.298419,149.320608,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083005,1,,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-33.458223,149.407839,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-31.473137,152.868353,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,16,Australia,AU,New South Wales,-32.705575,152.063674,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-30.355053,153.087946,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,6,12,Australia,AU,New South Wales,-32.721062,151.992766,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,3,22,Australia,AU,New South Wales,-31.475748,152.923069,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.420471,150.628039,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-28.829011,153.277104,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040408,1,,occurrenceRemarks withheld,2024,3,24,Australia,AU,New South Wales,-30.301964,153.098775,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.490135,150.637881,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.434361,150.615372,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,FEMALE,occurrenceRemarks withheld,2020,8,30,Australia,AU,New South Wales,-32.660683,151.660859,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.467198,150.521741,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,8,Australia,AU,New South Wales,-32.307678,152.037485,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.386119,150.624593,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.727125,152.008807,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.436208,150.615788,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-29.353924,150.200496,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,4,16,Australia,AU,New South Wales,-31.422518,152.881414,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,5,30,Australia,AU,New South Wales,-31.464685,152.927818,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.447529,150.517382,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062101,1,MALE,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.771816,146.595526,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-33.705345,150.787125,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,4,15,Australia,AU,New South Wales,-31.454469,152.926066,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102224,1,,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-32.729391,152.089284,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002828,1,,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-29.679946,152.870582,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031414,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-33.993331,151.01625,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.434852,150.616055,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,22,Australia,AU,New South Wales,-29.490222,153.108081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.422333,150.637103,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.453517,150.520187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.452511,150.523906,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,30,Australia,AU,New South Wales,-29.490479,153.109412,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.419899,150.610213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.388352,150.630022,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031810,1,,occurrenceRemarks withheld,2022,12,19,Australia,AU,New South Wales,-28.977061,153.340451,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-29.485585,153.103795,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,17,Australia,AU,New South Wales,-29.48961,153.10394,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.417252,150.601183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.45836,150.659652,EPSG:4326 +HUMAN_OBSERVATION,OPJG21060804,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-31.513788,152.721847,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-28.663223,153.608324,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,6,11,Australia,AU,New South Wales,-28.823717,153.316254,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.465795,150.52236,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210D,1,,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-32.76541,152.03473,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-29.483741,153.104117,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.386185,150.625244,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.459354,150.53462,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-31.42403,152.879717,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.439661,150.603317,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,26,Australia,AU,New South Wales,-33.717673,150.783956,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-28.738801,153.277131,EPSG:4326 +HUMAN_OBSERVATION,OKEM14042900,1,,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-33.96711,150.896544,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.824561,153.315723,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23040505,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-32.373929,149.776514,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-32.706502,152.063384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.452871,150.519868,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-28.388682,153.561535,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,2,5,Australia,AU,New South Wales,-28.823407,153.301675,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-31.47699,152.915395,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2024,2,8,Australia,AU,New South Wales,-30.425791,152.696939,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.675199,152.801207,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130J,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-31.451443,152.914421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.491304,150.639111,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,,occurrenceRemarks withheld,2022,3,28,Australia,AU,New South Wales,-32.741594,152.113242,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.429755,150.609889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.452494,150.603973,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-31.26349,152.832,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082308;ODFK23082309;ODFK2308230A;ODFK2308230B,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.18588,150.801488,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,13,Australia,AU,New South Wales,-28.864686,153.293158,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152L,1,,occurrenceRemarks withheld,2022,9,23,Australia,AU,New South Wales,-29.017366,153.430836,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,20,Australia,AU,New South Wales,-29.476932,153.104804,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.452643,150.522857,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-31.915496,152.374119,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.394702,150.64372,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041307,1,,occurrenceRemarks withheld,2022,7,17,Australia,AU,New South Wales,-34.077418,150.853861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.453544,150.517487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.464161,150.52268,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.439648,150.619716,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.425485,150.604495,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,14,Australia,AU,New South Wales,-28.874019,153.276967,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-33.493056,149.375607,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-28.652487,153.383072,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.437789,150.6067,EPSG:4326 +HUMAN_OBSERVATION,CHADL,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-28.94558,153.223558,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,12,24,Australia,AU,New South Wales,-32.706589,152.06373,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,11,9,Australia,AU,New South Wales,-28.829011,153.277104,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072703;OLHP23072704,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.602724,152.164385,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,6,24,Australia,AU,New South Wales,-31.535114,152.650594,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.395408,150.629866,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.427311,150.604747,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-31.454049,152.925254,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200H,1,,occurrenceRemarks withheld,2024,4,18,Australia,AU,New South Wales,-31.449865,152.921875,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.394523,150.630294,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,FEMALE,occurrenceRemarks withheld,2021,2,11,Australia,AU,New South Wales,-29.577133,152.785428,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100316,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-31.474783,152.897336,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.446362,150.514098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,27,Australia,AU,New South Wales,-34.441085,150.615268,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,7,13,Australia,AU,New South Wales,-31.453626,152.888398,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.485999,152.690396,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.469581,150.526776,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-34.185522,150.747171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.445033,150.51923,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.41823,150.635652,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-28.968203,153.432977,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,OJJS10042000,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-32.967069,151.587159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.439694,150.619747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.438029,150.604702,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-29.768492,151.106712,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221H,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-32.7224,152.080757,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.632151,149.941399,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-31.44848,152.878917,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.412974,150.599119,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.434815,150.616001,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-34.27546,150.69922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.440724,150.514373,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-29.477604,153.104353,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.445995,150.514217,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091709,1,MALE,occurrenceRemarks withheld,2020,6,18,Australia,AU,New South Wales,-34.03974,151.019133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.423727,150.605426,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.398754,150.621136,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,15,Australia,AU,New South Wales,-29.485092,153.104141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.457499,150.610959,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.929063,153.317852,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.447473,150.515109,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.418877,150.632751,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.436377,150.609668,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-28.230931,153.525697,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.448794,150.515778,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-32.713292,152.070568,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-28.660191,153.618043,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-29.490203,153.108124,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.737707,152.021572,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022513,1,,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-32.769662,151.948245,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-29.484899,153.096049,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031R,1,,occurrenceRemarks withheld,2023,5,22,Australia,AU,New South Wales,-32.089861,152.432341,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2021,1,2,Australia,AU,New South Wales,-31.464292,152.928543,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-28.257095,153.4018,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.451601,150.517262,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-34.13792,150.79293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.418272,150.632702,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031544,1,,occurrenceRemarks withheld,2022,12,16,Australia,AU,New South Wales,-28.221806,153.52522,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-29.490292,153.108119,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-31.386864,150.406039,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.387417,150.631103,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-29.477674,153.104358,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.465806,150.522435,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,5,20,Australia,AU,New South Wales,-28.749883,153.343996,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-34.05187,150.847824,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.457792,152.873603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.392685,150.639177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,24,Australia,AU,New South Wales,-34.395931,150.64014,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.435951,150.608613,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-29.014516,153.39503,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,1,3,Australia,AU,New South Wales,-31.634448,152.784754,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.111288,150.834423,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2022,1,3,Australia,AU,New South Wales,-34.103174,150.810123,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.383839,150.62282,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-33.278915,150.275124,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.437991,150.616107,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-29.489736,153.101274,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-31.46408,152.926698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.42732,150.604747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.420778,150.630369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.420173,150.631267,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080900,1,MALE,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-32.717776,151.718753,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,21,Australia,AU,New South Wales,-28.664639,153.607954,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.437431,150.605927,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,7,3,Australia,AU,New South Wales,-30.68719,152.942564,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180U,1,,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-28.502506,153.464393,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.574566,149.915309,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.455626,150.657628,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.397087,150.64212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.421552,150.627486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.385782,150.627202,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,21,Australia,AU,New South Wales,-29.48565,153.103768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.438551,150.617538,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-28.820578,153.306858,EPSG:4326 +HUMAN_OBSERVATION,OGRJ01031200,1,MALE,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-32.065087,152.539311,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.889215,153.229565,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,8,7,Australia,AU,New South Wales,-34.111403,150.802726,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,3,2,Australia,AU,New South Wales,-32.706209,152.063365,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083000,1,MALE,occurrenceRemarks withheld,2020,1,25,Australia,AU,New South Wales,-33.570942,150.665991,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-31.05168,152.854757,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-31.479438,152.917743,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240T,1,,occurrenceRemarks withheld,2021,12,30,Australia,AU,New South Wales,-32.728381,152.089896,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,12,22,Australia,AU,New South Wales,-32.706586,152.063966,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.420654,150.60918,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-28.891406,153.245128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.438851,150.604298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.42944,150.616839,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.886464,153.300206,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-31.465376,152.910638,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.452619,150.519909,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.435599,150.518573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.4656,150.521168,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.393278,150.640933,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,8,Australia,AU,New South Wales,-34.91121,150.03915,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,29,Australia,AU,New South Wales,-32.120969,152.146989,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,1,18,Australia,AU,New South Wales,-31.636669,152.787249,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.39917,150.639788,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.449521,150.51605,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.436192,150.615886,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,12,22,Australia,AU,New South Wales,-34.192201,150.784467,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.872021,153.335449,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,3,Australia,AU,New South Wales,-28.677843,153.360098,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.390467,150.626112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.420517,150.637372,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-30.413154,152.996446,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-31.602615,152.164217,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-29.485702,153.103688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.485562,150.636333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.43762,150.604997,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-33.998514,150.901403,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.400869,150.619075,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-33.713066,150.785137,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,FEMALE,occurrenceRemarks withheld,2024,1,31,Australia,AU,New South Wales,-31.945394,152.298885,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-34.155007,150.791721,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,4,23,Australia,AU,New South Wales,-31.944525,152.426741,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.886464,153.300206,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,5,23,Australia,AU,New South Wales,-32.706659,152.063821,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091705,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-31.950763,152.467894,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-31.489975,152.877483,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.42092,150.630267,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,8,Australia,AU,New South Wales,-33.714005,150.785632,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,6,Australia,AU,New South Wales,-29.485488,153.103633,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022523,1,,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-29.78683,151.19568,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003954,1,,occurrenceRemarks withheld,2023,1,23,Australia,AU,New South Wales,-28.822311,153.31159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.46569,150.520295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.449607,150.516298,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.427469,150.603633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.457738,150.60661,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.466556,150.519877,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.419121,150.600422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.397048,150.641012,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,7,Australia,AU,New South Wales,-29.485417,153.103859,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,26,Australia,AU,New South Wales,-28.835219,153.326455,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.386414,150.627749,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-30.437334,152.98111,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-34.207368,150.792436,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,3,31,Australia,AU,New South Wales,-29.48962,153.101403,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.451149,150.519408,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-31.437226,152.905808,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,18,Australia,AU,New South Wales,-29.485384,153.103897,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-28.646862,153.387873,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-28.82399,153.281771,EPSG:4326 +HUMAN_OBSERVATION,ODFK24051402,1,,occurrenceRemarks withheld,2024,4,25,Australia,AU,New South Wales,-34.47006,150.44189,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OPJG20112703,1,,occurrenceRemarks withheld,2022,11,1,Australia,AU,New South Wales,-30.409617,152.886663,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-31.127639,152.801751,EPSG:4326 +HUMAN_OBSERVATION,OBMR00051900,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.968157,153.435912,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-29.489582,153.103865,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.38844,150.625746,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.49933,152.80457,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-28.331738,153.496317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.491629,150.639112,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.42034,150.627292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.390582,150.626468,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032807,1,,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-31.474812,152.832902,EPSG:4326 +HUMAN_OBSERVATION,OPJG16091402,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.579407,152.690045,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-28.823818,153.316272,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-32.229205,152.189597,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.397717,150.622025,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-30.332117,152.616032,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,23,Australia,AU,New South Wales,-33.717267,150.784208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.390306,150.62901,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.430722,150.611363,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,FEMALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-29.028181,153.418397,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.436605,150.603328,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-31.869252,152.695777,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,7,Australia,AU,New South Wales,-31.879896,152.356052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.389728,150.624317,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-31.456388,152.897748,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-31.13545,150.04927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.388143,150.630876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.446301,150.516863,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-31.467655,152.905478,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151I,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-28.656619,153.620547,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,8,28,Australia,AU,New South Wales,-33.49123,149.552134,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-29.487117,153.103007,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.395229,150.629023,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405201B,1,,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-29.728212,151.083923,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.451421,150.522153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.432813,150.615025,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,6,Australia,AU,New South Wales,-29.488779,153.094026,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042A,1,,occurrenceRemarks withheld,2022,10,12,Australia,AU,New South Wales,-31.520218,150.619592,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-32.206285,152.044047,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-31.448261,152.876721,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,2,18,Australia,AU,New South Wales,-31.444529,152.924528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.459003,150.534663,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.448318,150.516314,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.435555,150.518629,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.420917,150.627776,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100505,1,,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-31.397361,152.906513,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.56082,152.210153,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,23,Australia,AU,New South Wales,-29.49046,153.109369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.435222,150.616534,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.738241,152.092594,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,8,Australia,AU,New South Wales,-28.659861,153.282038,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070A,1,,occurrenceRemarks withheld,2020,2,28,Australia,AU,New South Wales,-33.508886,150.789028,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-32.706596,152.06384,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,21,Australia,AU,New South Wales,-29.489848,153.11056,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-31.916008,152.381397,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.429574,150.614888,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-31.469229,152.927336,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.884771,152.795899,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,5,Australia,AU,New South Wales,-33.711613,150.78523,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,12,8,Australia,AU,New South Wales,-34.304895,150.738044,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.184661,153.003085,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.4203,150.634571,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-29.482872,153.099352,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.38289,150.62314,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,FEMALE,occurrenceRemarks withheld,2022,6,1,Australia,AU,New South Wales,-31.443074,152.90074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.434962,150.617053,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-33.543126,149.257182,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,11,9,Australia,AU,New South Wales,-31.91099,152.378253,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140K,1,FEMALE,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-32.909303,151.486263,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111321,1,,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-31.476638,152.923303,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,9,Australia,AU,New South Wales,-28.394095,153.558471,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.453742,150.520605,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.45025,150.597627,EPSG:4326 +HUMAN_OBSERVATION,OJJS19022501;ODMP21050503,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-32.714185,151.780333,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,7,16,Australia,AU,New South Wales,-29.486379,153.103366,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,15,Australia,AU,New South Wales,-32.353443,152.488445,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150B,1,,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.00339,151.005752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.389735,150.627427,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-32.711199,152.072872,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.493097,150.639071,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-29.673432,152.874232,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-29.490778,153.109267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.41825,150.632061,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081117,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-31.455401,152.912313,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-31.429887,152.91386,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,4,22,Australia,AU,New South Wales,-36.072073,149.242726,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102204,1,,occurrenceRemarks withheld,2021,1,18,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.42934,150.61447,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-36.474664,149.917922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.39347,150.639698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.4464,150.513759,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310310A,1,,occurrenceRemarks withheld,2023,1,2,Australia,AU,New South Wales,-30.355259,153.075776,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-28.932217,153.276362,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,1,19,Australia,AU,New South Wales,-30.51724,152.88605,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041307,1,FEMALE,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-34.082903,150.8506,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-29.48756,153.091087,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-30.522436,152.617704,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.452932,150.520215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.451604,150.601376,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-31.441157,152.908634,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,29,Australia,AU,New South Wales,-28.804602,153.458172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-34.43748,150.518452,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,2,9,Australia,AU,New South Wales,-28.951966,153.059872,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.388216,150.630961,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-32.524306,151.796381,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-30.662627,152.967234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.460549,150.525051,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.421817,150.638869,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,11,1,Australia,AU,New South Wales,-31.445873,152.915465,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.491838,150.639226,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,12,22,Australia,AU,New South Wales,-36.89271,149.898037,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.44853,150.517439,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,5,6,Australia,AU,New South Wales,-31.905008,152.418213,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,4,28,Australia,AU,New South Wales,-31.446455,152.915061,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090405,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-32.732784,152.03798,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,4,Australia,AU,New South Wales,-31.44913,152.819394,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2022,12,24,Australia,AU,New South Wales,-31.45338,152.915099,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-30.505548,152.920421,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-30.091962,152.744978,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,5,9,Australia,AU,New South Wales,-36.56748,149.966961,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004248,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-28.834402,153.316908,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-32.7312,152.0837,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.423789,150.637345,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,4,17,Australia,AU,New South Wales,-28.649564,153.464903,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.419806,150.632768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.423789,150.637345,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,27,Australia,AU,New South Wales,-28.671975,153.488933,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,2,12,Australia,AU,New South Wales,-32.706203,152.063411,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,9,27,Australia,AU,New South Wales,-29.631666,152.899808,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-30.221909,152.725103,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,,occurrenceRemarks withheld,2022,8,12,Australia,AU,New South Wales,-31.442995,152.919406,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-34.462307,150.549897,EPSG:4326 +HUMAN_OBSERVATION,OPJG18122002,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-30.217086,152.795725,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-32.706189,152.063684,EPSG:4326 +HUMAN_OBSERVATION,OJMM08020900,1,MALE,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-34.036891,151.036607,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,4,24,Australia,AU,New South Wales,-36.313317,149.341526,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-33.51732,150.617141,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-29.4899,153.101274,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,3,Australia,AU,New South Wales,-29.484665,153.10387,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-31.469085,152.919726,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.484988,152.880069,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.465797,150.522447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.45196,150.602955,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.430657,150.611756,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.427284,150.60478,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180S,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-28.794375,153.360186,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.435453,150.603459,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.389684,150.628081,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,12,20,Australia,AU,New South Wales,-31.937692,152.413734,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-29.490525,153.108146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.386219,150.62421,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-30.910858,153.042306,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-28.399181,153.55592,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,25,Australia,AU,New South Wales,-31.486174,152.91449,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-30.290401,152.699686,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.398176,150.622023,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-28.819715,153.275632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.419751,150.611425,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,FEMALE,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-28.830303,153.21815,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.439145,150.619828,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.402355,150.644626,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303310D,1,,occurrenceRemarks withheld,2022,4,28,Australia,AU,New South Wales,-32.722708,152.077083,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,5,24,Australia,AU,New South Wales,-34.01117,150.89747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.387022,150.63168,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,21,Australia,AU,New South Wales,-28.81698,153.328561,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003991,1,,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-28.37847,153.55577,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-32.697232,151.806572,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.447899,150.51921,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.421038,150.629818,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-29.54529,152.671419,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022601,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.483888,152.782168,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-33.718702,150.784826,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.390753,150.627888,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060J,1,FEMALE,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-31.469153,152.927141,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-34.102731,150.805444,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.459688,150.516402,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,6,Australia,AU,New South Wales,-29.489414,153.103028,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-33.717233,150.784496,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,28,Australia,AU,New South Wales,-33.717623,150.783983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.434531,150.615313,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180M,1,FEMALE,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-28.939088,153.277501,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,7,Australia,AU,New South Wales,-28.82428,153.28271,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-29.480187,153.104278,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-31.905008,152.418213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.45482,150.519963,EPSG:4326 +HUMAN_OBSERVATION,OLHP23082402,1,,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-32.666898,152.173157,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030Y,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-36.299472,149.137668,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405090A,1,,occurrenceRemarks withheld,2023,7,5,Australia,AU,New South Wales,-32.681213,151.78529,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.706394,152.771907,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100D,1,,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-32.674746,151.667847,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,8,Australia,AU,New South Wales,-33.712811,150.785541,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-29.666331,152.875654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.423728,150.637455,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,1,22,Australia,AU,New South Wales,-31.446692,152.901675,EPSG:4326 +HUMAN_OBSERVATION,OJMM08020900,1,,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-34.002266,150.994716,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.433016,150.613887,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.447331,150.514341,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.971581,151.474066,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100409,1,,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-30.886804,153.074259,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.432108,150.606199,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.446363,150.51413,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101301,1,,occurrenceRemarks withheld,2020,6,30,Australia,AU,New South Wales,-28.26224,153.469132,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303310B,1,,occurrenceRemarks withheld,2022,2,26,Australia,AU,New South Wales,-32.74226,152.002122,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,FEMALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-31.932251,152.412732,EPSG:4326 +HUMAN_OBSERVATION,OPJG21031203,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-28.558684,153.145612,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.41754,150.633071,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.910703,152.374593,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,2,13,Australia,AU,New South Wales,-32.706215,152.063431,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-28.232026,153.5282,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032102,1,,occurrenceRemarks withheld,2022,10,23,Australia,AU,New South Wales,-32.582152,151.782574,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-32.531752,152.176881,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.446724,150.516829,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.465744,150.520293,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-33.801208,150.070046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.425979,150.598007,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-29.48558,153.103774,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,18,Australia,AU,New South Wales,-28.822731,153.310615,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-29.737008,151.05798,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.414256,150.596896,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,5,10,Australia,AU,New South Wales,-28.254048,153.493728,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-31.467655,152.905478,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100309,1,,occurrenceRemarks withheld,2023,8,19,Australia,AU,New South Wales,-31.459207,152.923246,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-31.554761,152.850938,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.464837,150.52266,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.437819,150.60596,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,7,16,Australia,AU,New South Wales,-31.444778,152.915715,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211N,1,,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-32.761248,152.105653,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.468649,150.520403,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-29.478805,153.104122,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2020,3,18,Australia,AU,New South Wales,-30.481497,152.686046,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.638162,153.531976,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.418291,150.632735,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.450794,150.607418,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,21,Australia,AU,New South Wales,-29.490539,153.109331,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,26,Australia,AU,New South Wales,-36.018932,149.376608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.489259,150.639201,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-29.485604,153.103838,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.437385,150.51642,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-28.959387,153.395743,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-28.885311,153.194794,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,7,25,Australia,AU,New South Wales,-32.738066,152.028079,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-30.42247,153.011902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435781,150.520004,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100404,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-30.48135,151.694366,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060P,1,,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-34.062302,150.867059,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-29.490227,153.109739,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.485713,150.636241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.42299,150.638455,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-31.911765,152.355335,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,13,Australia,AU,New South Wales,-31.458212,152.910468,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-30.364785,153.018715,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.447252,150.518859,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,FEMALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-32.722568,152.077015,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.388837,150.6309,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,12,30,Australia,AU,New South Wales,-34.077477,150.828654,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-29.667322,152.86849,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-30.326721,152.693995,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.386055,150.625487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.427088,150.60397,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.388915,150.624221,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-28.886532,153.322187,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.42094,150.630343,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.420162,150.627438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.487994,150.636732,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004193,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-28.866843,153.408399,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.380735,150.537335,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-31.446164,152.894609,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,MALE,occurrenceRemarks withheld,2020,6,5,Australia,AU,New South Wales,-32.515004,151.735887,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,16,Australia,AU,New South Wales,-31.64233,152.793992,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.469281,150.5271,EPSG:4326 +HUMAN_OBSERVATION,OLHP23071019,1,,occurrenceRemarks withheld,2023,6,22,Australia,AU,New South Wales,-31.439905,152.909504,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-29.490306,153.10813,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.496862,149.989443,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,23,Australia,AU,New South Wales,-32.391899,151.985131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.420452,150.627941,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.824561,153.315723,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,11,10,Australia,AU,New South Wales,-28.21894,153.523218,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-28.96002,153.395088,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,31,Australia,AU,New South Wales,-31.485897,152.913372,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.455024,150.659147,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003949,1,FEMALE,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-28.873812,153.277604,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,FEMALE,occurrenceRemarks withheld,2024,4,7,Australia,AU,New South Wales,-34.029434,150.990757,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140O,1,MALE,occurrenceRemarks withheld,2022,7,20,Australia,AU,New South Wales,-28.818314,153.301928,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.466952,150.521618,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-29.010748,153.270841,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.396857,150.641887,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-34.203451,150.791517,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121500,1,,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-30.409118,152.995484,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,6,29,Australia,AU,New South Wales,-28.257815,153.400942,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.420625,150.63083,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-28.864686,153.293096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.485469,150.634365,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.144616,150.793243,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.429973,150.607652,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,17,Australia,AU,New South Wales,-33.991958,150.89266,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-31.474481,152.919209,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-30.338947,152.618565,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,7,1,Australia,AU,New South Wales,-31.631608,152.771379,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083002,1,,occurrenceRemarks withheld,2023,2,3,Australia,AU,New South Wales,-34.069648,150.835102,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.433781,150.617064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.447313,150.518771,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,13,Australia,AU,New South Wales,-33.714063,150.785077,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-28.38096,153.563517,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,,occurrenceRemarks withheld,2021,9,15,Australia,AU,New South Wales,-32.754666,152.068748,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-32.589817,151.794214,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-29.490511,153.109396,EPSG:4326 +HUMAN_OBSERVATION,OICG17030600,1,,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-28.389895,153.555155,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-30.238007,152.889483,EPSG:4326 +HUMAN_OBSERVATION,OJBL96121700,1,,occurrenceRemarks withheld,2022,11,9,Australia,AU,New South Wales,-33.423971,149.432716,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-28.830821,153.323644,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-32.706585,152.063717,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-28.677151,153.607267,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.421269,150.626384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.423789,150.637356,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-29.484642,153.103817,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050S,1,,occurrenceRemarks withheld,2024,9,11,Australia,AU,New South Wales,-30.888135,153.071949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.454072,150.520421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.396437,150.62714,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250X,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-32.705915,152.063459,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,24,Australia,AU,New South Wales,-29.485543,153.103522,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-28.85774,153.334102,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.438028,150.604169,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,2,7,Australia,AU,New South Wales,-31.442636,152.898943,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-34.198212,150.784718,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-29.48198,153.104181,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.492972,150.639118,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-31.653907,152.811019,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.434418,150.616437,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-33.971509,150.89337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,20,Australia,AU,New South Wales,-34.440873,150.615067,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080903;OMFZ23032403,1,,occurrenceRemarks withheld,2023,6,25,Australia,AU,New South Wales,-36.890859,149.260919,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,7,25,Australia,AU,New South Wales,-28.636812,153.497445,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-31.634804,152.749135,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100403,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-32.965917,151.118039,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-31.928253,152.403864,EPSG:4326 +HUMAN_OBSERVATION,OLHP24010910,1,,occurrenceRemarks withheld,2023,10,13,Australia,AU,New South Wales,-30.902802,153.023516,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,4,Australia,AU,New South Wales,-28.238698,153.506293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.436552,150.520677,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,20,Australia,AU,New South Wales,-31.629488,152.787035,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060O,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-31.4738,152.92208,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.886464,153.300206,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-31.444905,152.914879,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.44764,150.520633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.423608,150.637295,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-31.662153,152.605373,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.433775,150.617217,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.650301,153.46202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.420075,150.631292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.446402,150.513857,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,3,15,Australia,AU,New South Wales,-30.29861,153.1094,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.426808,150.603913,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.464443,150.523238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.437904,150.605228,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.142422,150.794735,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.42438,150.604243,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.411572,150.596135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.430981,150.615392,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,29,Australia,AU,New South Wales,-33.71731,150.784451,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003844,1,,occurrenceRemarks withheld,2023,2,22,Australia,AU,New South Wales,-28.815314,153.31231,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-29.485576,153.103822,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-31.922726,152.370439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.393245,150.643892,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.421188,150.627333,EPSG:4326 +HUMAN_OBSERVATION,ONCB23082900,1,,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-31.216171,152.924861,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,FEMALE,occurrenceRemarks withheld,2023,1,29,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.465778,150.522415,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,18,Australia,AU,New South Wales,-33.717429,150.784877,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,10,16,Australia,AU,New South Wales,-31.649815,152.798993,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003861,1,,occurrenceRemarks withheld,2023,5,10,Australia,AU,New South Wales,-28.726034,153.458938,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,4,Australia,AU,New South Wales,-29.490577,153.108199,EPSG:4326 +HUMAN_OBSERVATION,ODMP21050505,1,,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-31.713471,152.70394,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.446569,150.514973,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.432642,150.607663,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153P,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-28.764765,153.24897,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,4,5,Australia,AU,New South Wales,-34.042369,151.009987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.45411,150.520528,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222L,1,,occurrenceRemarks withheld,2022,3,5,Australia,AU,New South Wales,-32.701714,152.064594,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,FEMALE,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.986035,152.46988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.429851,150.614304,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,24,Australia,AU,New South Wales,-33.717236,150.784491,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-29.353937,150.200434,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.393341,150.640931,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031103,1,,occurrenceRemarks withheld,2024,2,9,Australia,AU,New South Wales,-32.714874,152.161481,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-28.298507,153.301525,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-29.490334,153.108022,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.849992,153.308195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.42117,150.627323,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.429494,150.616838,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-32.23465,152.198472,EPSG:4326 +HUMAN_OBSERVATION,OJJS20080303,1,,occurrenceRemarks withheld,2020,12,22,Australia,AU,New South Wales,-32.593843,151.76992,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,4,27,Australia,AU,New South Wales,-31.25723,152.74321,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.438014,150.604398,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004220,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-28.826871,153.310688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.412987,150.597476,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-28.819555,153.302241,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-28.436217,153.255785,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,23,Australia,AU,New South Wales,-31.248575,152.888665,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290I,1,,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-31.930495,152.400639,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-28.542002,153.481572,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002826,1,,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-29.627572,152.860256,EPSG:4326 +HUMAN_OBSERVATION,OXKB22081700,1,,occurrenceRemarks withheld,2022,8,23,Australia,AU,New South Wales,-34.498,150.554112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.475648,150.533009,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,3,23,Australia,AU,New South Wales,-34.09283,150.984272,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180J,1,,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-28.674695,153.555071,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-34.21475,150.78925,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.38635,150.627675,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,2,Australia,AU,New South Wales,-34.439093,150.614824,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,5,5,Australia,AU,New South Wales,-30.667929,152.958078,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-29.490222,153.109771,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,MALE,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-34.072827,150.834223,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,5,18,Australia,AU,New South Wales,-28.257328,153.401753,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012913,1,,occurrenceRemarks withheld,2024,7,26,Australia,AU,New South Wales,-32.180821,151.971157,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0000930,1,,occurrenceRemarks withheld,2022,6,10,Australia,AU,New South Wales,-31.26849,152.82796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.420939,150.62796,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,15,Australia,AU,New South Wales,-29.488686,153.094155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.423752,150.637302,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-31.445133,152.912551,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.419995,150.631381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.466252,150.520452,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-32.706714,152.064019,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2022,9,17,Australia,AU,New South Wales,-34.141271,150.82369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.395691,150.641735,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150C,1,,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-31.921232,152.334665,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-29.489568,153.104213,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-34.110287,150.842026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.42371,150.637456,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,8,Australia,AU,New South Wales,-29.477207,153.104616,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.443883,150.514541,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.41801,150.632677,EPSG:4326 +HUMAN_OBSERVATION,OJJS19043000;ODMP22022701,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-33.96665,150.92085,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.46924,150.530443,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-28.810921,153.364986,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.421318,150.627046,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.436911,150.603298,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-34.465735,150.521621,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-28.819965,153.314782,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-33.716522,150.785413,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.436286,150.618854,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,14,Australia,AU,New South Wales,-28.683592,153.521789,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.421274,150.627559,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.488804,150.637548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419036,150.610346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.425312,150.602574,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,3,20,Australia,AU,New South Wales,-31.442418,152.895895,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-28.823816,153.299458,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,7,4,Australia,AU,New South Wales,-31.443451,152.89847,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2023,5,21,Australia,AU,New South Wales,-29.044391,152.986797,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-31.448811,152.879434,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250L,1,FEMALE,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-32.738862,152.092193,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-31.250034,152.826145,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,10,1,Australia,AU,New South Wales,-29.484992,153.103854,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-33.712254,150.78603,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,13,Australia,AU,New South Wales,-28.864636,153.293325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,15,Australia,AU,New South Wales,-34.439301,150.615819,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.392817,150.639477,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.386455,150.630793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.447216,150.513974,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.426956,150.597718,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-31.47441,152.870848,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-28.850597,153.308396,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260V,1,FEMALE,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-32.759253,152.10379,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004074,1,MALE,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-28.432565,153.018574,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-30.289977,153.103066,EPSG:4326 +HUMAN_OBSERVATION,ODMP21050300,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-34.028303,150.96953,EPSG:4326 +HUMAN_OBSERVATION,OJQS16052400,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-30.492845,151.602132,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,4,22,Australia,AU,New South Wales,-31.460822,152.923391,EPSG:4326 +HUMAN_OBSERVATION,ODFK23071915,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-29.590842,152.915266,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-29.490213,153.108049,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-29.485576,153.103881,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.418841,150.609134,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070701,1,,occurrenceRemarks withheld,2020,3,24,Australia,AU,New South Wales,-32.714675,152.1514,EPSG:4326 +HUMAN_OBSERVATION,ODFK23120707,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-29.041653,152.542586,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.422302,150.607686,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160L,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-28.725578,152.925549,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-33.997473,150.888206,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,1,4,Australia,AU,New South Wales,-32.960134,151.518472,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.443883,150.514574,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,23,Australia,AU,New South Wales,-29.490259,153.109996,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-33.716472,150.784958,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.457119,150.65936,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.419139,150.603609,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-34.414835,150.53165,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-29.026186,153.284708,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,2,10,Australia,AU,New South Wales,-33.776777,150.071494,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004278,1,FEMALE,occurrenceRemarks withheld,2023,8,19,Australia,AU,New South Wales,-28.865479,153.294555,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032804,1,,occurrenceRemarks withheld,2022,12,5,Australia,AU,New South Wales,-31.558796,152.832363,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-34.014965,150.899368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-34.439904,150.615726,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.396113,150.628596,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103109,1,,occurrenceRemarks withheld,2023,1,27,Australia,AU,New South Wales,-32.679556,151.645757,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-31.629741,152.78679,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-31.454846,152.926912,EPSG:4326 +HUMAN_OBSERVATION,OJBL97031300,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-30.434864,152.833588,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.423762,150.637346,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-29.055285,153.306138,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,29,Australia,AU,New South Wales,-31.479137,152.914761,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.494417,150.640656,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032804,1,,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-31.505069,152.713031,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-30.251439,152.790424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.463187,150.519574,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-28.687767,153.607389,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,,occurrenceRemarks withheld,2022,11,4,Australia,AU,New South Wales,-29.029064,153.395089,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,MALE,occurrenceRemarks withheld,2022,6,1,Australia,AU,New South Wales,-31.436671,152.905868,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-29.485487,153.103591,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-34.03052,150.989933,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-28.748383,153.345799,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.420681,150.60919,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.388226,150.630961,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,,occurrenceRemarks withheld,2022,5,11,Australia,AU,New South Wales,-31.650778,152.775569,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-30.083862,152.679185,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,13,Australia,AU,New South Wales,-29.47746,153.104079,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-28.732361,153.54433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419487,150.635867,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003854,1,,occurrenceRemarks withheld,2023,3,3,Australia,AU,New South Wales,-29.020072,153.394085,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-33.717237,150.784486,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.451931,150.518862,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-28.92056,153.266927,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.446457,150.513899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.43786,150.604337,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050G,1,,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-33.011246,151.493241,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-28.597294,153.089129,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.431359,150.604751,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.465649,150.520503,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.454056,150.516949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.421393,150.626772,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072701;OLHP23072702;OLHP23072703,1,,occurrenceRemarks withheld,2023,5,29,Australia,AU,New South Wales,-31.615373,152.186675,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.099374,150.96222,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-34.121387,150.971709,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-31.915468,152.374055,EPSG:4326 +HUMAN_OBSERVATION,OJJS20031101,1,,occurrenceRemarks withheld,2020,1,24,Australia,AU,New South Wales,-33.145366,151.091092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-34.432142,150.612062,EPSG:4326 +HUMAN_OBSERVATION,ORSF21090200,1,MALE,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-32.999328,149.424423,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-30.3972,152.99167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.387821,150.631472,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-29.489694,153.104906,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004166,1,FEMALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.532328,153.028282,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.386635,150.625166,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-29.490189,153.109964,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,1,18,Australia,AU,New South Wales,-31.45762,152.917727,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2022,7,11,Australia,AU,New South Wales,-34.101844,150.821644,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004274,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-28.381087,153.563734,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,6,11,Australia,AU,New South Wales,-31.134522,152.800457,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-33.717006,150.785303,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-34.218769,150.791719,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,12,5,Australia,AU,New South Wales,-34.025293,150.98868,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,10,Australia,AU,New South Wales,-29.485169,153.104165,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.388334,150.630022,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-29.490577,153.109374,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,MALE,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-34.094779,150.983802,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-31.923722,152.352895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.397983,150.621365,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.452846,150.517323,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-28.830718,153.28341,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-34.094439,150.983255,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.435355,150.521224,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004144,1,FEMALE,occurrenceRemarks withheld,2023,7,18,Australia,AU,New South Wales,-28.984155,153.407882,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220T,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-32.764528,152.116328,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-31.545763,152.847064,EPSG:4326 +HUMAN_OBSERVATION,OSYK02050800,1,,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-31.66596,152.18648,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2023,4,14,Australia,AU,New South Wales,-33.986634,151.009287,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,11,14,Australia,AU,New South Wales,-32.710929,152.065469,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,12,Australia,AU,New South Wales,-29.484343,153.10409,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-28.913154,153.409719,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.394322,150.630115,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,10,Australia,AU,New South Wales,-31.465629,152.898805,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-28.857637,153.260014,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-29.232738,152.967252,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.397328,150.622895,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.459188,150.516177,EPSG:4326 +HUMAN_OBSERVATION,OPJG18122002,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-30.200925,152.774585,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,4,Australia,AU,New South Wales,-31.454171,152.925276,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,19,Australia,AU,New South Wales,-29.490133,153.110527,EPSG:4326 +HUMAN_OBSERVATION,OJJS1802200K,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-28.727618,153.423741,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,7,11,Australia,AU,New South Wales,-32.714317,152.158526,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-34.185203,150.765176,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-31.4464,152.915172,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-32.226111,152.204264,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.44313,150.517425,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.421278,150.62733,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403140I,1,FEMALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-28.539857,152.975187,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.872021,153.335449,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.431371,150.615076,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2024,3,2,Australia,AU,New South Wales,-30.433824,152.949871,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.830774,153.283391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.429222,150.614409,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.443195,150.518871,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-29.726791,152.930363,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,5,21,Australia,AU,New South Wales,-31.450071,152.928917,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435304,150.616075,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.429126,150.616424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.438813,150.604234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.458029,150.656984,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.438012,150.604267,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-29.488279,153.092235,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.482188,150.532762,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220O,1,,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-32.72869,152.10621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.417686,150.603118,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.488316,150.637028,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR1511120M;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-28.54593,153.52954,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,8,Australia,AU,New South Wales,-29.490222,153.10813,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.416639,150.597524,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.426929,150.604127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.399341,150.623045,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.471463,150.528919,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.79653,153.36115,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,7,24,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.454583,150.607059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.418442,150.633579,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.392989,150.632969,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,MALE,occurrenceRemarks withheld,2023,3,10,Australia,AU,New South Wales,-28.889791,153.298632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.465764,150.520401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435662,150.520345,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,27,Australia,AU,New South Wales,-33.707426,150.785863,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-28.683592,153.521789,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2022,3,31,Australia,AU,New South Wales,-34.771778,146.58818,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071105,1,,occurrenceRemarks withheld,2024,4,13,Australia,AU,New South Wales,-31.954578,152.450445,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,7,10,Australia,AU,New South Wales,-31.643859,152.794343,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-28.992695,153.437123,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.460331,150.521444,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003978,1,,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-28.669614,153.354955,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.428623,150.601794,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,28,Australia,AU,New South Wales,-35.076865,150.120508,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.420614,150.630765,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-31.485524,152.915937,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,10,Australia,AU,New South Wales,-28.796818,153.292287,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.49169,150.639024,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,12,,Australia,AU,New South Wales,-36.100988,149.335305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.394967,150.642506,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,21,Australia,AU,New South Wales,-33.706849,150.78656,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003958,1,,occurrenceRemarks withheld,2023,6,18,Australia,AU,New South Wales,-28.508293,153.531111,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.435714,150.615421,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-36.497108,149.942556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.397247,150.626149,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-33.775761,150.104075,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.395791,150.643657,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.57753,149.945227,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.399532,150.638919,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,3,3,Australia,AU,New South Wales,-33.713341,150.784725,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,18,Australia,AU,New South Wales,-29.490231,153.108215,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.488018,150.636579,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-34.098569,150.80839,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.192347,152.029118,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.431379,150.615022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.464126,150.522289,EPSG:4326 +HUMAN_OBSERVATION,OJJS19072301;OJJS2007070K,1,,occurrenceRemarks withheld,2020,3,10,Australia,AU,New South Wales,-28.453356,153.296856,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-34.198742,150.776852,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-31.414401,152.895216,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,20,Australia,AU,New South Wales,-33.709957,150.78487,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260V,1,FEMALE,occurrenceRemarks withheld,2020,3,7,Australia,AU,New South Wales,-32.759425,152.103165,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO,1,,occurrenceRemarks withheld,2020,8,2,Australia,AU,New South Wales,-30.648789,152.958067,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-34.125489,150.812171,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.447385,150.51607,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-31.200948,152.965698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419151,150.610213,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,4,5,Australia,AU,New South Wales,-29.741249,151.061116,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-34.21642,150.79471,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083000,1,,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-33.753572,150.636505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.48758,150.636265,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-29.485608,153.103473,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.452076,150.517117,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.431074,150.613714,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-31.160035,152.899693,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.451114,150.519474,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.434616,150.608097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.446779,150.512877,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.492768,150.640213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.438823,150.604266,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-31.479611,152.905944,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-30.517524,152.885839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435727,150.521344,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.418373,150.633733,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251Q,1,,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-32.686273,151.654056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.466789,150.521122,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-34.47169,150.50645,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.451844,150.518114,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-29.490175,153.109701,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.493171,150.639178,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,2,6,Australia,AU,New South Wales,-29.48976,153.110603,EPSG:4326 +HUMAN_OBSERVATION,ODFK23111401,1,,occurrenceRemarks withheld,2024,9,5,Australia,AU,New South Wales,-31.577756,152.176126,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-29.479314,153.104053,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.453493,150.518087,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-28.823804,153.322062,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-29.339319,152.848879,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.41893,150.609523,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221Q,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-32.728084,152.08322,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.435218,150.615402,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-29.040946,153.285323,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260M,1,,occurrenceRemarks withheld,2020,4,23,Australia,AU,New South Wales,-32.730551,152.03968,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.449151,150.515168,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.42713,150.60336,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,21,Australia,AU,New South Wales,-31.914779,152.400453,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-34.397003,150.640089,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.432929,150.615446,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.327767,153.564642,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.185764,153.000849,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020200,1,FEMALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-32.599663,151.7332,EPSG:4326 +HUMAN_OBSERVATION,Obs_0229,1,,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-31.454102,152.925183,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,12,6,Australia,AU,New South Wales,-31.474012,152.900344,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-34.152923,150.806605,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,6,6,Australia,AU,New South Wales,-33.774428,150.05427,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,2,1,Australia,AU,New South Wales,-30.288526,153.066161,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,15,Australia,AU,New South Wales,-29.486374,153.103344,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101301,1,,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-28.26145,153.468674,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.3858,150.627201,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.425739,150.602279,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,4,Australia,AU,New South Wales,-28.697302,153.478405,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-30.313976,152.856734,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-31.641577,152.806737,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-28.380461,153.56441,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,1,Australia,AU,New South Wales,-32.569474,151.178816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.388254,150.631014,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.206047,150.790068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.419715,150.611404,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.388252,150.630949,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-28.63227,153.115459,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,14,Australia,AU,New South Wales,-31.636638,152.78769,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.588285,149.913134,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,5,Australia,AU,New South Wales,-28.864043,153.291586,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,6,Australia,AU,New South Wales,-31.454151,152.925231,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-31.429792,152.911149,EPSG:4326 +HUMAN_OBSERVATION,OPJG09091000,1,,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-30.117962,152.791122,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W;ODMP2202251I,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-32.640912,151.982103,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.388472,150.626006,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.419981,150.602443,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-29.48997,153.101231,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090406,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-30.367325,153.018876,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-31.46849,152.874984,EPSG:4326 +HUMAN_OBSERVATION,OJJS1208150J,1,FEMALE,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-32.465571,151.806799,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091705,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-31.904573,152.395098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435581,150.615512,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-28.397401,153.556968,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.41848,150.633197,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090405,1,,occurrenceRemarks withheld,2023,10,3,Australia,AU,New South Wales,-34.200241,150.782613,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240E,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-32.709353,152.062517,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,7,28,Australia,AU,New South Wales,-32.402038,151.947907,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.41848,150.633197,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-34.287934,150.724948,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,9,Australia,AU,New South Wales,-33.991958,150.89266,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-31.020669,153.020266,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111323,1,,occurrenceRemarks withheld,2023,10,1,Australia,AU,New South Wales,-31.474331,152.910488,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.450062,150.516491,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.459324,150.534915,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.469431,150.516265,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100502,1,,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-36.196034,149.253264,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.885013,152.777302,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-31.879092,152.428902,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-31.449139,152.90011,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060502,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-30.340486,153.078159,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,5,Australia,AU,New South Wales,-28.936208,153.17047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.452619,150.519898,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091709,1,MALE,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-33.965656,150.971987,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.423753,150.637324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.395443,150.641492,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.396832,150.641964,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.453094,150.517544,EPSG:4326 +HUMAN_OBSERVATION,OKEM14042900,1,,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-34.185745,150.790746,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.560469,149.984303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.455222,150.607041,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153O,1,FEMALE,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-28.400278,153.556714,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,6,Australia,AU,New South Wales,-28.400944,153.556935,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-33.719204,150.782826,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011003,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-33.503652,150.955006,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,11,Australia,AU,New South Wales,-28.378508,153.567422,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152S,1,,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-28.639233,153.14142,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-33.713164,150.785598,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,12,Australia,AU,New South Wales,-33.715803,150.785123,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-31.473925,152.900289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.4304,150.607803,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,2,17,Australia,AU,New South Wales,-28.95921,153.393631,EPSG:4326 +HUMAN_OBSERVATION,OPUR21110701,1,,occurrenceRemarks withheld,2023,1,9,Australia,AU,New South Wales,-28.949079,152.744263,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.420474,150.611491,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.389862,150.630752,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,9,Australia,AU,New South Wales,-29.485342,153.104031,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.389682,150.627048,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,,occurrenceRemarks withheld,2022,12,28,Australia,AU,New South Wales,-34.766625,146.58548,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.574566,149.915309,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-30.410201,153.002416,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,5,Australia,AU,New South Wales,-31.45501,152.927079,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-28.90155,153.33619,EPSG:4326 +HUMAN_OBSERVATION,OJBL96121700,1,,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-33.184202,149.181661,EPSG:4326 +HUMAN_OBSERVATION,PILEJ-HO,1,,occurrenceRemarks withheld,2022,8,6,Australia,AU,New South Wales,-30.384921,152.997221,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,4,24,Australia,AU,New South Wales,-31.444287,152.923828,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-28.830761,153.283326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.419689,150.61147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.418842,150.609166,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.434489,150.616391,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,22,Australia,AU,New South Wales,-33.716736,150.784147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.424812,150.600521,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.423434,150.605684,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-29.490119,153.107454,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.203045,150.765529,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-31.131496,152.798744,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.38972,150.628069,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,24,Australia,AU,New South Wales,-34.436401,150.615956,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-32.270482,151.980225,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.488252,150.637019,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B;ODMP2202240W,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-32.725859,152.073009,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OMBR21050700,1,,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-34.148999,150.845422,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,1,24,Australia,AU,New South Wales,-31.940544,152.414163,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,19,Australia,AU,New South Wales,-31.09328,150.11845,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,26,Australia,AU,New South Wales,-33.716256,150.785288,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.436103,150.616411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.439579,150.516159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.431107,150.604802,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.435028,150.615832,EPSG:4326 +HUMAN_OBSERVATION,OPJG22081703,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-32.188789,151.739717,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021805,1,FEMALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-29.353959,150.200465,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.466276,150.522933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.453497,150.524965,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152U,1,MALE,occurrenceRemarks withheld,2022,10,14,Australia,AU,New South Wales,-28.555969,153.077408,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-29.482251,153.104455,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-33.851764,151.277709,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,FEMALE,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-28.819412,153.30216,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.450178,150.515987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.385602,150.625369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.388069,150.624745,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-29.479944,153.104096,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-28.90155,153.33619,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,23,Australia,AU,New South Wales,-29.490035,153.114674,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050I,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-31.593889,152.839666,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2022,9,12,Australia,AU,New South Wales,-34.229781,150.743252,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-34.393153,150.644743,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.413719,150.595747,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.144527,152.717271,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.420295,150.627304,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-31.475525,152.922579,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.420064,150.634458,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.885013,152.777302,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.45116,152.823752,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.389904,150.625476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.440305,150.517726,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060502,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-30.326065,153.086133,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.389746,150.628025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.465672,150.520284,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,4,Australia,AU,New South Wales,-28.637352,153.592527,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.230264,152.196338,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070G,1,,occurrenceRemarks withheld,2020,3,23,Australia,AU,New South Wales,-33.42782,149.390551,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.461415,150.532644,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2023,4,23,Australia,AU,New South Wales,-31.934482,152.307001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.420886,150.630377,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,6,10,Australia,AU,New South Wales,-29.490339,153.108226,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.298719,149.319877,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,10,Australia,AU,New South Wales,-29.490698,153.108162,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-33.705613,150.785439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.435001,150.615833,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-29.479813,153.104074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.435364,150.521235,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-34.071206,150.846668,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.467966,152.914116,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.465671,150.521558,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.436139,150.616366,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2020,12,3,Australia,AU,New South Wales,-32.70652,152.064607,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003949,1,,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-28.873716,153.277934,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.824854,153.325226,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.465297,150.522233,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050S,1,FEMALE,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-30.881095,153.069361,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300B,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-32.720824,151.859334,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-28.358917,153.574261,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,22,Australia,AU,New South Wales,-31.399769,152.811972,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,1,25,Australia,AU,New South Wales,-32.72846,152.10642,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.465791,150.5204,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080302,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-33.99893,150.994844,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.434201,150.616378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.417579,150.603164,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,29,Australia,AU,New South Wales,-29.484063,153.104058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.435741,150.602036,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,2,27,Australia,AU,New South Wales,-31.554753,152.85068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.491726,150.639033,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-31.446555,152.912645,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2022,1,1,Australia,AU,New South Wales,-34.110095,150.803223,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.111288,150.834423,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-28.889381,153.184845,EPSG:4326 +HUMAN_OBSERVATION,OJJS20020408,1,MALE,occurrenceRemarks withheld,2024,8,6,Australia,AU,New South Wales,-34.11588,150.81506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.420517,150.637361,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102100,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-32.725873,152.076793,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,2,Australia,AU,New South Wales,-29.485356,153.103908,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-28.603208,153.092748,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,1,25,Australia,AU,New South Wales,-28.56045,153.114043,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180L,1,,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-28.680363,153.493177,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,23,Australia,AU,New South Wales,-28.635669,153.592409,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003822,1,,occurrenceRemarks withheld,2023,1,17,Australia,AU,New South Wales,-28.583396,153.470759,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.434201,150.616378,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.436544,150.518937,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.435257,150.614596,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,15,Australia,AU,New South Wales,-29.488142,153.092079,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,FEMALE,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.583053,153.554518,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.465294,150.520764,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.420296,150.627347,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-34.510838,150.542723,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-34.44725,150.516531,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.491873,150.640075,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2024,3,18,Australia,AU,New South Wales,-32.762229,152.0872,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-31.477453,152.915415,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.427125,150.604937,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.551144,149.998977,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-31.632483,152.784617,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-32.727358,152.009572,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435798,150.519938,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.450429,150.599353,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-30.35826,153.05728,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.388315,150.630936,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.493001,150.640141,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.434318,150.608997,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.885013,152.777302,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,3,14,Australia,AU,New South Wales,-31.436019,152.92242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.393552,150.635509,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.43847,150.523711,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,6,20,Australia,AU,New South Wales,-34.03451,151.02698,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.452765,150.517314,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-32.273526,151.985769,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.492823,150.640276,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,6,Australia,AU,New South Wales,-29.479393,153.104192,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,,occurrenceRemarks withheld,2022,9,17,Australia,AU,New South Wales,-34.06491,150.841313,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.46019,150.521578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.438767,150.60417,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.386918,150.630954,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-29.025463,153.286418,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-31.933206,152.415236,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,3,Australia,AU,New South Wales,-29.485545,153.103894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.465222,150.524782,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-33.449686,150.606159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.392862,150.639476,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,17,Australia,AU,New South Wales,-31.460528,152.92927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.437695,150.605114,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-28.816067,153.30668,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.385787,150.625179,EPSG:4326 +HUMAN_OBSERVATION,SHARM,1,,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-32.422781,149.834442,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.464056,150.523728,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,1,19,Australia,AU,New South Wales,-31.459272,152.925003,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-31.900655,152.387724,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-34.015787,150.897175,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.655712,149.986384,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.486355,150.637737,EPSG:4326 +HUMAN_OBSERVATION,OPUR15040300,1,,occurrenceRemarks withheld,2020,4,27,Australia,AU,New South Wales,-30.87473,152.74449,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-28.622151,153.407496,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.399436,150.616777,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-30.428617,153.032147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.465971,150.522137,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,7,Australia,AU,New South Wales,-33.714285,150.784977,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100515,1,,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-31.471613,152.909369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.435854,150.605939,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,2,20,Australia,AU,New South Wales,-34.047964,151.003064,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,5,Australia,AU,New South Wales,-29.490203,153.109739,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003925,1,,occurrenceRemarks withheld,2023,3,14,Australia,AU,New South Wales,-28.764372,153.250843,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-34.022401,150.875183,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,9,3,Australia,AU,New South Wales,-31.56023,152.848732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.420515,150.628429,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.451988,150.517239,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,1,7,Australia,AU,New South Wales,-33.780096,150.10055,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.433735,150.604107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.455085,150.519683,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,3,28,Australia,AU,New South Wales,-33.765793,150.04565,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-34.004553,150.863276,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040421,1,MALE,occurrenceRemarks withheld,2023,5,10,Australia,AU,New South Wales,-29.661626,152.876391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.387718,150.631312,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-31.710553,152.641643,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,MALE,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-32.692155,151.70976,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.443198,152.888201,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.440678,150.541045,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,30,Australia,AU,New South Wales,-29.485336,153.103886,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-36.432507,149.961734,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070F,1,,occurrenceRemarks withheld,2020,3,27,Australia,AU,New South Wales,-31.474677,152.91931,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.428605,150.601794,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-32.773077,152.087507,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-30.653566,152.962989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.418876,150.632718,EPSG:4326 +HUMAN_OBSERVATION,OPUR20021302,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-32.73271,152.03706,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.397309,150.622863,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080900,1,MALE,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-32.717235,151.718647,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003951,1,,occurrenceRemarks withheld,2023,3,7,Australia,AU,New South Wales,-28.809504,153.508848,EPSG:4326 +HUMAN_OBSERVATION,OSXK00032802;OJJS06072500,1,,occurrenceRemarks withheld,2021,9,22,Australia,AU,New South Wales,-32.18986,151.976081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.471394,150.530391,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-29.63106,152.899486,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.23465,152.198472,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,MALE,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-28.959976,153.39522,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260I,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-31.462547,152.928881,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.459242,150.516165,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,11,Australia,AU,New South Wales,-28.881904,153.263215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.446375,150.513836,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.388679,150.62414,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2020,7,15,Australia,AU,New South Wales,-33.52702,150.659275,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-29.490119,153.10748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.426933,150.604344,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-29.016415,153.431324,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR16092800;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-28.57492,153.51898,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,10,3,Australia,AU,New South Wales,-29.490208,153.110517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.465764,150.520401,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-33.522609,150.655487,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012913,1,MALE,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-32.170783,151.966919,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-31.488777,152.776629,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,19,Australia,AU,New South Wales,-34.440874,150.616928,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-34.399257,150.641972,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.431124,150.614855,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,21,Australia,AU,New South Wales,-28.693791,153.495269,EPSG:4326 +HUMAN_OBSERVATION,OJJS06031407,1,,occurrenceRemarks withheld,2020,7,16,Australia,AU,New South Wales,-34.037466,150.87916,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-31.203574,152.39132,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,23,Australia,AU,New South Wales,-29.485597,153.10376,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.449515,150.516224,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,4,24,Australia,AU,New South Wales,-28.861571,153.438729,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-31.454567,152.926477,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-31.63001,152.78431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.465732,150.521458,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-29.490208,153.110517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.387381,150.631115,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,3,Australia,AU,New South Wales,-33.522609,150.655487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.422211,150.607667,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,2,12,Australia,AU,New South Wales,-28.904951,153.299582,EPSG:4326 +HUMAN_OBSERVATION,BREHS-HO,1,,occurrenceRemarks withheld,2021,11,25,Australia,AU,New South Wales,-33.144625,151.091222,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.488083,150.636632,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310040D,1,,occurrenceRemarks withheld,2024,4,27,Australia,AU,New South Wales,-32.584927,151.774246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.389682,150.627059,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.457624,150.6589,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,3,29,Australia,AU,New South Wales,-31.437646,152.905425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.420628,150.609235,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-30.29583,153.123824,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.455826,150.65772,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,4,Australia,AU,New South Wales,-33.718585,150.78318,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.432848,150.615459,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,14,Australia,AU,New South Wales,-29.349618,153.240592,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,3,11,Australia,AU,New South Wales,-31.464724,152.921038,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091705,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-31.903003,152.392813,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-29.484324,153.104037,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-29.49017,153.110533,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003831,1,,occurrenceRemarks withheld,2023,6,4,Australia,AU,New South Wales,-28.615864,153.454401,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-29.489162,153.101703,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.395355,150.643006,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-29.489666,153.104337,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152A,1,,occurrenceRemarks withheld,2022,9,7,Australia,AU,New South Wales,-28.888824,153.233739,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,1,28,Australia,AU,New South Wales,-34.105016,150.977379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457097,150.517969,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-34.068218,150.835307,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.423752,150.637302,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,5,Australia,AU,New South Wales,-34.226306,150.799111,EPSG:4326 +HUMAN_OBSERVATION,OJXK00052203,1,,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-34.070793,150.993791,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.872021,153.335449,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-33.705818,150.787013,EPSG:4326 +HUMAN_OBSERVATION,OIXR15042008,1,,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-34.211747,150.7278,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,3,25,Australia,AU,New South Wales,-32.709447,152.063555,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,7,19,Australia,AU,New South Wales,-31.448115,152.921031,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,11,10,Australia,AU,New South Wales,-30.408961,152.999917,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020A,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-32.707398,152.063722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.481232,150.532746,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,24,Australia,AU,New South Wales,-34.446301,150.516863,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,1,Australia,AU,New South Wales,-33.716972,150.785263,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.514293,150.545289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.454319,150.521023,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.453717,150.517155,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091709,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-33.958414,150.95404,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,3,Australia,AU,New South Wales,-28.260298,153.401196,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020608,1,,occurrenceRemarks withheld,2022,12,21,Australia,AU,New South Wales,-31.481022,152.919153,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.488907,150.637774,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-28.97709,153.30734,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-28.864043,153.291586,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,5,22,Australia,AU,New South Wales,-28.660666,153.410861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.434698,150.615994,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.450106,150.516446,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.46624,150.522978,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,7,Australia,AU,New South Wales,-31.445923,152.920964,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,10,Australia,AU,New South Wales,-29.49017,153.110554,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.451533,150.515272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.4491,150.516204,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403152A,1,,occurrenceRemarks withheld,2022,12,23,Australia,AU,New South Wales,-28.946419,153.232915,EPSG:4326 +HUMAN_OBSERVATION,ODFK24062803,1,,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-29.706438,152.93253,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-34.139954,150.842911,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-28.667369,153.452495,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041S,1,FEMALE,occurrenceRemarks withheld,2022,8,20,Australia,AU,New South Wales,-31.476134,152.912768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.422089,150.607899,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.444314,152.884408,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.39011,150.630984,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2023,5,20,Australia,AU,New South Wales,-34.084454,150.833896,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042R,1,MALE,occurrenceRemarks withheld,2022,9,6,Australia,AU,New South Wales,-29.736253,152.938891,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.41945,150.635802,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-28.784917,152.09174,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072700;OLHP23072703;OLHP23072704,1,,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.594177,152.190359,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,9,16,Australia,AU,New South Wales,-31.630182,152.787145,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.394012,150.630906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.455738,150.655491,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.444992,150.514987,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.085656,150.815095,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-31.632853,152.776469,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.421451,150.627412,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-28.98159,153.31357,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-32.187837,152.19874,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.494248,150.640792,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.465797,150.522447,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,2,18,Australia,AU,New South Wales,-28.824357,153.282726,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457062,150.518036,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041N,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-34.072256,150.847475,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,3,26,Australia,AU,New South Wales,-33.775551,150.092834,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,5,26,Australia,AU,New South Wales,-29.051482,153.302778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.456859,150.517367,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.588285,149.913134,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-34.085656,150.815095,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.53719,152.617496,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.386381,150.627446,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.438622,150.604598,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,29,Australia,AU,New South Wales,-33.717284,150.784554,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.392894,150.632732,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-30.537219,152.902558,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,5,6,Australia,AU,New South Wales,-28.821749,153.331243,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,12,14,Australia,AU,New South Wales,-31.630722,152.782191,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-29.490217,153.109787,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240C,1,,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-32.747786,152.070405,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,7,10,Australia,AU,New South Wales,-29.489914,153.110479,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.388127,150.624471,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.420667,150.630666,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,23,Australia,AU,New South Wales,-30.631686,152.62673,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.439452,150.606936,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.280531,149.960189,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180K,1,,occurrenceRemarks withheld,2022,10,14,Australia,AU,New South Wales,-29.026272,153.437804,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,FEMALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-28.823238,153.309351,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,4,18,Australia,AU,New South Wales,-32.706571,152.063773,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-28.467992,153.050291,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-29.485492,153.103924,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.440186,150.603901,EPSG:4326 +HUMAN_OBSERVATION,OJJS1909030P,1,,occurrenceRemarks withheld,2021,11,4,Australia,AU,New South Wales,-32.709452,152.064957,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.429618,150.614854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.46569,150.520295,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.797015,152.812714,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-29.490605,153.108135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.46993,150.530227,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-28.847748,153.301997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.420821,150.62792,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190J,1,,occurrenceRemarks withheld,2024,8,24,Australia,AU,New South Wales,-32.200255,152.133691,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.470229,150.510331,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-31.641276,152.792499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.438748,150.604127,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2024,6,18,Australia,AU,New South Wales,-34.44059,150.45645,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.435074,150.606647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.435195,150.615599,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.447125,150.51303,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-31.48926,152.90778,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907171A,1,MALE,occurrenceRemarks withheld,2020,1,30,Australia,AU,New South Wales,-29.70686,152.879852,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002776,1,,occurrenceRemarks withheld,2020,7,21,Australia,AU,New South Wales,-29.423647,153.362242,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031Q,1,,occurrenceRemarks withheld,2023,11,26,Australia,AU,New South Wales,-31.459596,152.928994,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104,1,,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-31.491433,152.785908,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250J,2,FEMALE,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.753899,146.558609,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.428543,150.59863,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.438738,150.606826,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.436421,150.61514,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-29.487859,153.091248,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111314,1,,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-31.457986,152.921564,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-34.458268,150.659535,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.390943,150.64375,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2023,9,15,Australia,AU,New South Wales,-31.650394,152.817769,EPSG:4326 +HUMAN_OBSERVATION,OJJS13032501,1,MALE,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-28.856957,152.153868,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150U,1,,occurrenceRemarks withheld,2023,4,2,Australia,AU,New South Wales,-31.782598,152.711088,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.390403,150.626082,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003859,1,FEMALE,occurrenceRemarks withheld,2023,7,12,Australia,AU,New South Wales,-28.939638,153.273577,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,3,28,Australia,AU,New South Wales,-35.076012,150.123233,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111503,1,,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-32.6864,151.66009,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-28.823424,153.316454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.412846,150.597654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.436538,150.602677,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.418661,150.632778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.422333,150.607914,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.435246,150.618209,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-32.705653,152.063657,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,20,Australia,AU,New South Wales,-28.987266,153.28558,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150B,1,,occurrenceRemarks withheld,2021,11,7,Australia,AU,New South Wales,-34.046795,151.012056,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031P,1,,occurrenceRemarks withheld,2023,7,11,Australia,AU,New South Wales,-33.561189,150.677718,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,18,Australia,AU,New South Wales,-33.785162,150.068542,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.388036,150.624452,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.426779,150.60152,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,19,Australia,AU,New South Wales,-29.485594,153.103752,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-32.764989,152.116861,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,15,Australia,AU,New South Wales,-34.467442,150.520428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.447682,150.516507,EPSG:4326 +HUMAN_OBSERVATION,OBWM17022300,1,,occurrenceRemarks withheld,2022,9,18,Australia,AU,New South Wales,-31.33606,148.995175,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-29.485426,153.103884,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-28.878085,153.245736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.447216,150.51885,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,12,4,Australia,AU,New South Wales,-32.706562,152.06372,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.443818,150.514478,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.394045,150.642858,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-29.490236,153.108119,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.488085,150.635358,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,3,30,Australia,AU,New South Wales,-29.44215,153.18377,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,11,Australia,AU,New South Wales,-29.490507,153.109401,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,7,12,Australia,AU,New South Wales,-32.707662,152.068413,EPSG:4326 +HUMAN_OBSERVATION,ODFK23070600,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-29.507082,152.824738,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-28.61064,153.324182,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-28.83385,153.352906,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,4,22,Australia,AU,New South Wales,-28.845102,153.315869,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-33.709552,150.785159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.432601,150.615237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.447227,150.513169,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,2,20,Australia,AU,New South Wales,-29.48685,153.097251,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250G,1,,occurrenceRemarks withheld,2024,9,23,Australia,AU,New South Wales,-30.461154,152.887759,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-29.485758,153.103602,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.469383,150.527663,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,30,Australia,AU,New South Wales,-29.478828,153.104149,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,12,2,Australia,AU,New South Wales,-28.675077,153.600403,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.430626,150.607851,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.41908,150.61028,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-33.779389,150.055536,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,12,Australia,AU,New South Wales,-33.70395,150.786279,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.465553,150.525523,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-34.21627,150.7917,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,12,Australia,AU,New South Wales,-33.713293,150.784674,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.399282,150.644212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.465722,150.521404,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.420949,150.600773,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082307,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-30.41857,152.986678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.395347,150.643072,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,MALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.848828,153.306937,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.417606,150.603131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.49443,150.640852,EPSG:4326 +HUMAN_OBSERVATION,OJBL99022300,1,MALE,occurrenceRemarks withheld,2022,10,12,Australia,AU,New South Wales,-31.973444,151.921522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.462924,150.535081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.471055,150.53014,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.454357,150.608415,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-32.734228,152.10181,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240E,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-32.70951,152.061507,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,30,Australia,AU,New South Wales,-31.632364,152.785617,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-32.587629,151.783415,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,4,15,Australia,AU,New South Wales,-31.454741,152.926058,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403060C,1,,occurrenceRemarks withheld,2024,2,26,Australia,AU,New South Wales,-31.46353,152.92176,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-36.435679,149.980514,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-28.233314,153.527242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.404355,150.642656,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-30.17363,152.91043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.451025,150.601719,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-31.486201,152.913585,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-31.470412,152.923989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.467009,150.520854,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,12,Australia,AU,New South Wales,-29.486407,153.103291,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.420094,150.631367,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-36.434481,149.990128,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.465673,150.520328,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-28.840581,153.360617,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.431103,150.602724,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,5,29,Australia,AU,New South Wales,-28.393943,153.558143,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001963,1,,occurrenceRemarks withheld,2024,2,1,Australia,AU,New South Wales,-32.194431,152.019272,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,2,17,Australia,AU,New South Wales,-33.79772,150.067411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.453144,150.517346,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004047,1,MALE,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.499969,153.149391,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-33.716124,150.78495,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.440312,150.604354,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.572354,149.92265,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-33.51732,150.617141,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,12,21,Australia,AU,New South Wales,-28.746795,153.479024,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.440263,150.604138,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.442706,150.51697,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100P,1,,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-28.518972,153.452423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.44681,150.515717,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.445854,150.517486,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-31.454111,152.927637,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-29.592678,152.91583,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004237,1,FEMALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.920605,153.266675,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.450288,150.608281,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.437953,150.605423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.433057,150.611851,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.839565,153.279241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.413966,150.599156,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.864604,153.293124,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-31.461177,152.925077,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,FEMALE,occurrenceRemarks withheld,2023,7,1,Australia,AU,New South Wales,-34.07639,150.83952,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,,occurrenceRemarks withheld,2023,12,23,Australia,AU,New South Wales,-29.492595,153.093501,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070P,1,FEMALE,occurrenceRemarks withheld,2020,12,3,Australia,AU,New South Wales,-34.742669,146.555519,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.417676,150.633122,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-33.285633,150.270235,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.420623,150.630721,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,1,5,Australia,AU,New South Wales,-29.667023,152.868748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.465706,150.522395,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150E,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-31.454682,152.929122,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-34.210895,150.790619,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,7,4,Australia,AU,New South Wales,-32.765142,152.116968,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-29.491543,153.099713,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-29.489577,153.103908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.418904,150.63275,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-33.714082,150.785121,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.464086,150.52389,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,6,Australia,AU,New South Wales,-29.490432,153.107995,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-358,1,,occurrenceRemarks withheld,2020,9,2,Australia,AU,New South Wales,-31.346857,152.71928,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022403,1,,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-32.722402,152.077096,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,2,26,Australia,AU,New South Wales,-28.824419,153.21773,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131K,1,,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-31.468605,152.90872,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.44623,150.516942,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122003,1,FEMALE,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-30.88906,153.064905,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.420641,150.629796,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052013,1,,occurrenceRemarks withheld,2024,3,9,Australia,AU,New South Wales,-31.48899,152.909406,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.229205,152.189597,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-34.085656,150.815095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.454515,150.515597,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-34.097321,150.808667,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-31.457931,152.910016,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-31.452896,152.925678,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-32.226111,152.204264,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240W,1,,occurrenceRemarks withheld,2022,1,19,Australia,AU,New South Wales,-32.763831,152.043818,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,13,Australia,AU,New South Wales,-29.477777,153.104289,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,6,15,Australia,AU,New South Wales,-29.478847,153.104155,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-31.514706,152.795014,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021514,1,,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-32.059637,152.54045,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012913,1,,occurrenceRemarks withheld,2024,1,4,Australia,AU,New South Wales,-32.178556,151.971082,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-29.485552,153.103822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.416691,150.597402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.443376,150.514469,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,7,29,Australia,AU,New South Wales,-28.260772,153.40518,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.43801,150.604159,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,11,12,Australia,AU,New South Wales,-28.864561,153.293095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.413832,150.599181,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.452003,150.517533,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,4,24,Australia,AU,New South Wales,-28.64025,153.481911,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-28.826803,153.323947,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.424441,150.604611,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.386202,150.624254,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.395694,150.641865,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,24,Australia,AU,New South Wales,-29.488247,153.092259,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-28.603208,153.092748,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-33.714065,150.784752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.469288,150.526567,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-28.692958,153.532565,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,11,9,Australia,AU,New South Wales,-29.48559,153.103817,EPSG:4326 +HUMAN_OBSERVATION,OJJS20012800,1,,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-33.11436,150.92949,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.423165,150.598849,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-28.394235,153.5583,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180Q,1,,occurrenceRemarks withheld,2022,8,16,Australia,AU,New South Wales,-28.693539,153.29526,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102101,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-32.713192,152.065216,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.438144,150.606418,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,21,Australia,AU,New South Wales,-28.247811,153.410281,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,6,30,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,ODFK24040206,1,,occurrenceRemarks withheld,2024,1,17,Australia,AU,New South Wales,-28.255767,153.347323,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-31.453285,152.924992,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.400073,150.639883,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.399139,150.639604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.464577,150.521851,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-29.477805,153.104138,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041H,1,MALE,occurrenceRemarks withheld,2022,7,10,Australia,AU,New South Wales,-31.442995,152.919406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.420665,150.600542,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041309,1,FEMALE,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-34.141154,150.994404,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,10,22,Australia,AU,New South Wales,-31.45681,152.892785,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140O,1,MALE,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-32.759502,152.103245,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154G,1,,occurrenceRemarks withheld,2022,12,17,Australia,AU,New South Wales,-28.585111,153.072733,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-34.455594,150.654592,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012507,1,,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-28.71866,153.60049,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.386946,150.631443,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2024,9,25,Australia,AU,New South Wales,-29.756559,151.095618,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-30.24956,153.116803,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.055816,150.83687,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032909,1,,occurrenceRemarks withheld,2022,4,13,Australia,AU,New South Wales,-32.722521,151.743474,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2023,7,17,Australia,AU,New South Wales,-28.844954,153.31674,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.460244,150.51534,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.420653,150.609147,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-31.43932,152.904805,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.459918,150.525494,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042F,1,MALE,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-34.072952,151.003336,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102100,1,,occurrenceRemarks withheld,2022,4,30,Australia,AU,New South Wales,-32.736244,152.082218,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.428726,150.600148,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419951,150.610092,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210U,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-32.708268,152.068578,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102227,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-32.727959,152.086104,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.465655,150.520339,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.3977,150.622101,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,FEMALE,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-28.558324,153.049386,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-28.585441,153.071682,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-34.395968,150.642075,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032001,1,,occurrenceRemarks withheld,2022,10,9,Australia,AU,New South Wales,-32.870404,151.42825,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,26,Australia,AU,New South Wales,-33.716969,150.785367,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.387552,150.631121,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.465626,150.521559,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.465735,150.521621,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-29.487901,153.091698,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-33.70667,150.785349,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.398289,150.640422,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.477024,152.923288,EPSG:4326 +HUMAN_OBSERVATION,OTLW09041000,1,,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-29.358322,152.191717,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-29.485366,153.104026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.390121,150.627362,EPSG:4326 +HUMAN_OBSERVATION,OPUR18080101,1,MALE,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-28.817326,153.317172,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030A,1,,occurrenceRemarks withheld,2022,6,9,Australia,AU,New South Wales,-28.998,152.426,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101S,1,MALE,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-31.480127,152.921263,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102113,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-32.707593,152.066739,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2023,6,17,Australia,AU,New South Wales,-34.073964,150.83185,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-30.908854,152.812804,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,23,Australia,AU,New South Wales,-29.485604,153.1038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.456606,150.519551,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.447775,150.513109,EPSG:4326 +HUMAN_OBSERVATION,ODFK2404120L,1,,occurrenceRemarks withheld,2023,8,30,Australia,AU,New South Wales,-33.046796,151.484154,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-28.597513,153.325257,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-28.876839,153.193401,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,26,Australia,AU,New South Wales,-29.490147,153.108178,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.465537,150.525654,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.640426,149.947048,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2022,2,2,Australia,AU,New South Wales,-28.67595,153.277461,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-30.891124,152.764422,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.441879,150.514862,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.420985,150.627088,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,3,27,Australia,AU,New South Wales,-34.374065,150.540994,EPSG:4326 +HUMAN_OBSERVATION,ODFK24030505,1,,occurrenceRemarks withheld,2024,2,25,Australia,AU,New South Wales,-32.704382,152.065272,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050Y,1,MALE,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-31.444076,152.907152,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.43478,150.616024,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-30.379245,153.044401,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041400,1,,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-28.870908,153.265486,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.457568,152.927995,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-33.704865,150.785964,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,22,Australia,AU,New South Wales,-31.443309,152.913063,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.464044,150.525372,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-28.823778,153.297705,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022608,1,,occurrenceRemarks withheld,2023,11,8,Australia,AU,New South Wales,-32.51543,151.682517,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-28.873593,153.362241,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,6,Australia,AU,New South Wales,-29.490567,153.109251,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011014,1,,occurrenceRemarks withheld,2020,12,12,Australia,AU,New South Wales,-32.73044,152.03997,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-33.108131,151.144057,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.389793,150.628133,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.971677,151.472299,EPSG:4326 +HUMAN_OBSERVATION,OJJS17072600,1,,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-30.538299,152.647854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.396579,150.641949,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.226267,152.189573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.445376,150.516173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.413224,150.595348,EPSG:4326 +HUMAN_OBSERVATION,CLARP,1,,occurrenceRemarks withheld,2020,8,7,Australia,AU,New South Wales,-31.624332,152.158512,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,1,Australia,AU,New South Wales,-31.466639,152.909098,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.494777,150.641071,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.399269,150.639796,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-28.821749,153.331243,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111514,1,,occurrenceRemarks withheld,2020,12,18,Australia,AU,New South Wales,-33.838363,150.01527,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030609,1,MALE,occurrenceRemarks withheld,2024,2,8,Australia,AU,New South Wales,-31.450695,152.926157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,25,Australia,AU,New South Wales,-34.451628,150.517261,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.430018,150.611785,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,23,Australia,AU,New South Wales,-31.667452,152.410574,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.455061,150.609853,EPSG:4326 +HUMAN_OBSERVATION,OJJS07090600,1,,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-30.37234,153.095025,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092003,1,FEMALE,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-29.430725,153.018925,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.465763,150.520325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.454054,150.520432,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-32.70646,152.063797,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,1,Australia,AU,New South Wales,-28.673126,153.364178,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-28.398603,153.556312,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-36.497108,149.942556,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-28.82109,153.309732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.436205,150.616071,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.463456,150.523942,EPSG:4326 +HUMAN_OBSERVATION,OLNH08012500,1,FEMALE,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-30.408702,152.753775,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.393556,150.64459,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.886464,153.300206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.389758,150.628155,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,MALE,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-33.118401,151.234752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-34.452401,150.523833,EPSG:4326 +HUMAN_OBSERVATION,OPJG15082102,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-29.234079,152.953689,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303270T,1,,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-31.166194,152.895754,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-28.641838,153.553646,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-34.50172,150.47087,EPSG:4326 +HUMAN_OBSERVATION,OGXN10042200,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-33.563071,149.551019,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,21,Australia,AU,New South Wales,-28.327038,153.459485,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,2,10,Australia,AU,New South Wales,-33.719314,150.782438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.432132,150.608341,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.390066,150.627766,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-29.667471,152.867804,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-31.944491,152.395118,EPSG:4326 +HUMAN_OBSERVATION,ODMP21060800,1,,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-29.733745,152.930667,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-31.905008,152.418213,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,6,2,Australia,AU,New South Wales,-28.596042,153.083542,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.388334,150.630033,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,21,Australia,AU,New South Wales,-28.886922,153.322291,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,13,Australia,AU,New South Wales,-29.485585,153.1038,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031545,1,,occurrenceRemarks withheld,2022,11,11,Australia,AU,New South Wales,-28.231036,153.519027,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.452938,150.52139,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090600,1,,occurrenceRemarks withheld,2023,4,11,Australia,AU,New South Wales,-33.676706,149.467866,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.388828,150.630857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.436218,150.604308,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.494099,150.640545,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.389291,150.628255,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,6,Australia,AU,New South Wales,-28.687767,153.607389,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,3,18,Australia,AU,New South Wales,-29.741249,151.061116,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.43293,150.603956,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,20,Australia,AU,New South Wales,-29.370713,153.116863,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.574566,149.915309,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.839565,153.279241,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-29.490208,153.110297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.385872,150.627232,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2024,2,4,Australia,AU,New South Wales,-31.915683,152.374485,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.446079,150.513061,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.465906,150.522476,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.389804,150.627306,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004209,1,,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-28.196788,153.533367,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,19,Australia,AU,New South Wales,-33.717843,150.783465,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.491725,150.638957,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.925235,152.376957,EPSG:4326 +HUMAN_OBSERVATION,OPJG21123101,1,FEMALE,occurrenceRemarks withheld,2022,3,7,Australia,AU,New South Wales,-32.762061,152.091682,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-28.275644,153.394133,EPSG:4326 +HUMAN_OBSERVATION,OJJS11062906,1,,occurrenceRemarks withheld,2020,1,26,Australia,AU,New South Wales,-31.525827,152.792285,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.491327,150.638457,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0005228,1,FEMALE,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-31.175289,152.941899,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-28.82624,153.317259,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-28.387078,153.565768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.459908,150.519214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.386465,150.630815,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.445898,150.514797,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-28.361556,153.563269,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153R,1,,occurrenceRemarks withheld,2022,10,1,Australia,AU,New South Wales,-28.38884,153.56601,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,11,Australia,AU,New South Wales,-31.438699,152.921731,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-31.433627,152.896169,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-28.817088,153.328489,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,12,19,Australia,AU,New South Wales,-28.389187,153.56106,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.420687,150.630796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.388073,150.631444,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.462437,150.535509,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-28.938825,153.278327,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-31.915487,152.374605,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.420887,150.630431,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.446529,150.514332,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031818,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-28.817358,153.304787,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-34.090734,150.985236,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.486279,150.636138,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,2,10,Australia,AU,New South Wales,-28.704764,153.511348,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092002,1,FEMALE,occurrenceRemarks withheld,2023,3,12,Australia,AU,New South Wales,-29.707293,152.878742,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-31.941776,152.372712,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-31.905008,152.418213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.429592,150.618163,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.39446,150.629817,EPSG:4326 +HUMAN_OBSERVATION,ODMP22070804,1,,occurrenceRemarks withheld,2022,6,28,Australia,AU,New South Wales,-29.689451,152.868469,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-31.522499,152.876061,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-31.558798,152.590193,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.437646,150.604909,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.618562,149.923643,EPSG:4326 +HUMAN_OBSERVATION,OLHP23060700,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-31.436396,152.815697,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060502,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-30.338429,153.078226,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022603,1,FEMALE,occurrenceRemarks withheld,2020,2,29,Australia,AU,New South Wales,-31.454206,152.925051,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-34.021387,150.987906,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.386242,150.625384,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-28.880992,153.263732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.415897,150.597382,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,6,27,Australia,AU,New South Wales,-30.38912,152.94415,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-29.74789,151.000872,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.420605,150.628416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.383651,150.624739,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.432724,150.613254,EPSG:4326 +HUMAN_OBSERVATION,OPUR20091100,1,,occurrenceRemarks withheld,2020,11,19,Australia,AU,New South Wales,-31.591819,152.836505,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.494601,150.640368,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153K,1,,occurrenceRemarks withheld,2022,7,15,Australia,AU,New South Wales,-28.620707,153.116477,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210W,1,,occurrenceRemarks withheld,2021,2,19,Australia,AU,New South Wales,-32.643018,151.628329,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,23,Australia,AU,New South Wales,-31.453953,152.924926,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,6,3,Australia,AU,New South Wales,-28.28417,153.352303,EPSG:4326 +HUMAN_OBSERVATION,OJJS1912230A,1,,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-29.49424,153.094748,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309,1,,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-28.7043,153.5539,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.494099,150.640545,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,5,20,Australia,AU,New South Wales,-33.999426,150.901057,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-28.222185,153.537072,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.426741,150.601423,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-30.332194,152.620599,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-28.396913,153.557587,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.586214,153.55035,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.422426,150.607106,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,10,Australia,AU,New South Wales,-31.403876,152.873469,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041N,1,FEMALE,occurrenceRemarks withheld,2023,3,25,Australia,AU,New South Wales,-34.05684,150.835758,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-28.68643,153.390022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-34.461508,150.519874,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,18,Australia,AU,New South Wales,-30.295939,153.123949,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,6,23,Australia,AU,New South Wales,-31.429989,152.885071,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.39589,150.629168,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-31.1259,152.797402,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-33.446501,150.64131,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310030J,1,,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-33.564213,150.671834,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080307,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-33.633171,149.626586,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.454585,150.522615,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-34.056032,150.840011,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,MALE,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-28.82321,153.308256,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2023,3,21,Australia,AU,New South Wales,-31.444957,152.91598,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221F,1,,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-32.729581,152.084002,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-28.27506,153.395538,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.449989,150.618367,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-36.503585,149.989088,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2023,7,22,Australia,AU,New South Wales,-28.784917,152.09174,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,17,Australia,AU,New South Wales,-34.394295,150.640872,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-28.980401,153.434547,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150Q,1,,occurrenceRemarks withheld,2020,1,5,Australia,AU,New South Wales,-32.917517,150.727135,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.432653,150.605911,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-31.449552,152.723177,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.384025,150.622651,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,5,27,Australia,AU,New South Wales,-28.660403,153.421871,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.433143,150.615799,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.453149,150.51801,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140L,1,MALE,occurrenceRemarks withheld,2021,12,22,Australia,AU,New South Wales,-32.929694,151.550207,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,3,16,Australia,AU,New South Wales,-29.488564,153.093522,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-30.895644,152.7311,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-29.489666,153.104804,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.423096,150.605879,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,4,Australia,AU,New South Wales,-29.490255,153.108146,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002776,1,,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-29.627656,152.860653,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,5,16,Australia,AU,New South Wales,-29.490161,153.099058,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS;ODFK23090502,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-30.443292,151.734899,EPSG:4326 +HUMAN_OBSERVATION,ODFK23121108,1,,occurrenceRemarks withheld,2023,12,12,Australia,AU,New South Wales,-29.568082,152.651081,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-28.68957,153.60908,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,28,Australia,AU,New South Wales,-33.77608,150.084698,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-32.706609,152.063696,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.454055,150.520922,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.456569,150.519531,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,FEMALE,occurrenceRemarks withheld,2022,7,21,Australia,AU,New South Wales,-31.554086,152.852262,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.434998,150.602754,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-28.403401,153.555254,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-28.961764,153.402284,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.427476,150.603535,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,19,Australia,AU,New South Wales,-33.709463,150.786275,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.458159,150.661845,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.4479,150.517893,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031519,1,,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-28.818789,153.318393,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.418076,150.633274,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.452015,150.517238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.389433,150.629535,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.465157,150.522466,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.454365,150.607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.418471,150.633208,EPSG:4326 +HUMAN_OBSERVATION,OJJS20020408,1,MALE,occurrenceRemarks withheld,2024,2,22,Australia,AU,New South Wales,-34.118722,150.796806,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004195,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.676611,153.388415,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2022,6,9,Australia,AU,New South Wales,-31.92004,152.379527,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,8,2,Australia,AU,New South Wales,-34.003626,150.884876,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-33.623333,149.547784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.458353,150.658357,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,9,6,Australia,AU,New South Wales,-31.45931,152.92613,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031418,1,FEMALE,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-31.199869,152.938221,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-29.030742,152.986009,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,13,Australia,AU,New South Wales,-29.489582,153.101504,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.42451,150.604457,EPSG:4326 +HUMAN_OBSERVATION,OJJS19043000;ODMP22022701,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-33.967078,150.921153,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-28.808956,153.357586,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.3883,150.631089,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.445931,150.514165,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-33.706972,150.786167,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,1,Australia,AU,New South Wales,-33.717624,150.783748,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-33.53986,150.635201,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-33.275076,150.293351,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.460813,150.520733,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.425041,150.604855,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050K,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-31.436629,152.924786,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-33.710805,150.08858,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.412725,150.597005,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.429062,150.616393,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,25,Australia,AU,New South Wales,-33.709968,150.786821,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,7,21,Australia,AU,New South Wales,-31.946043,152.387898,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-28.870543,153.43273,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,6,30,Australia,AU,New South Wales,-30.376233,152.934733,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,5,11,Australia,AU,New South Wales,-31.306301,152.867,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.385633,150.626499,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-33.716732,150.784148,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.420661,150.63084,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-28.815309,153.310116,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151G,1,MALE,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-28.873585,153.271304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.429707,150.606953,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.434992,150.615833,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.451442,150.5183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.420097,150.609294,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-33.705548,150.785424,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,27,Australia,AU,New South Wales,-33.713332,150.784707,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.1302,150.79607,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,12,Australia,AU,New South Wales,-34.041189,150.977585,EPSG:4326 +HUMAN_OBSERVATION,OLHP24080502,1,,occurrenceRemarks withheld,2024,7,14,Australia,AU,New South Wales,-28.637563,153.629529,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-30.339641,153.093886,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.437332,150.605473,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,23,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,4,14,Australia,AU,New South Wales,-31.270036,150.451646,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,2,Australia,AU,New South Wales,-29.489657,153.101381,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.427664,150.605749,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,12,Australia,AU,New South Wales,-28.82294,153.304964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.423815,150.605315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.420769,150.628955,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.459878,150.519084,EPSG:4326 +HUMAN_OBSERVATION,SCHM-035,1,,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-34.348582,150.734614,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,,occurrenceRemarks withheld,2020,11,11,Australia,AU,New South Wales,-28.825034,153.307082,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.434921,150.608958,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.454858,150.659423,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.452079,150.517269,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.06966,150.838019,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.393468,150.631183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.465829,150.522718,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-31.44389,152.923702,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304051H,1,,occurrenceRemarks withheld,2020,4,14,Australia,AU,New South Wales,-32.459938,151.887913,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111309,1,MALE,occurrenceRemarks withheld,2023,12,11,Australia,AU,New South Wales,-31.87965,152.32222,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,20,Australia,AU,New South Wales,-29.48516,153.104171,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-29.736999,151.05798,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.448109,150.519335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.471411,150.528997,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020H,1,MALE,occurrenceRemarks withheld,2020,3,19,Australia,AU,New South Wales,-32.667623,151.716768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.41908,150.610291,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.467029,150.518753,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.438813,150.604234,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,MALE,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-34.029523,150.9874,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,15,Australia,AU,New South Wales,-29.480897,153.104165,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-32.226267,152.189573,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.46123,150.519545,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.091632,150.825751,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-31.918899,152.377925,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.458195,150.662334,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,5,10,Australia,AU,New South Wales,-34.746257,146.54434,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.419635,150.611461,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.423777,150.634843,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-28.843832,153.319686,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,1,11,Australia,AU,New South Wales,-29.667098,152.867675,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.446283,150.517332,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122106,1,,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-28.831045,153.279615,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.459706,150.51639,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,10,Australia,AU,New South Wales,-28.825094,153.315455,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.446522,150.514419,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-28.963946,153.403072,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.019382,150.968509,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-33.705927,150.785779,EPSG:4326 +HUMAN_OBSERVATION,OJJS08042300,1,,occurrenceRemarks withheld,2022,4,,Australia,AU,New South Wales,-28.354205,153.558112,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-32.71098,152.065275,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-36.569074,150.02021,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.491944,150.639103,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,5,Australia,AU,New South Wales,-34.90732,150.06256,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004217,1,MALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.317513,153.537737,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.436014,150.608601,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.449236,150.516232,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,9,28,Australia,AU,New South Wales,-33.522609,150.655487,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,MALE,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-31.93333,152.41503,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-31.465806,152.927123,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-31.455951,152.897949,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102213,1,,occurrenceRemarks withheld,2021,1,16,Australia,AU,New South Wales,-32.70652,152.064607,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,8,28,Australia,AU,New South Wales,-29.492767,153.109648,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-36.508695,150.004563,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-29.490189,153.109739,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.488599,150.634429,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.0268,151.046985,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.446375,150.513836,EPSG:4326 +HUMAN_OBSERVATION,ODDP13030700,1,,occurrenceRemarks withheld,2022,5,7,Australia,AU,New South Wales,-31.271006,149.175455,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.462756,150.524082,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,26,Australia,AU,New South Wales,-30.884771,152.795899,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040S,1,,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-32.50267,151.700897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.419978,150.610091,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.470921,150.530198,EPSG:4326 +HUMAN_OBSERVATION,ARMD,1,,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-31.43583,151.47704,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-28.818342,153.331678,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-29.261037,152.950898,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-30.382089,152.934198,EPSG:4326 +HUMAN_OBSERVATION,OSYK02050800,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-32.06324,151.6887,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.45545,150.653638,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-31.438862,152.90984,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.383778,150.622909,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.959532,153.395284,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-29.488125,153.092246,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.447276,150.51962,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2023,5,22,Australia,AU,New South Wales,-28.847893,153.302047,EPSG:4326 +HUMAN_OBSERVATION,OLHP23072705,1,,occurrenceRemarks withheld,2023,2,27,Australia,AU,New South Wales,-28.559864,153.388879,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.436999,150.603176,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,13,Australia,AU,New South Wales,-34.437398,150.519652,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.41664,150.597567,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,2,Australia,AU,New South Wales,-30.8961,153.036423,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,17,Australia,AU,New South Wales,-31.459315,152.929202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.448778,150.515887,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.470984,150.530196,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.452033,150.517216,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.17403,150.80606,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.437931,150.604281,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004161,1,MALE,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-28.821725,153.30074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.433848,150.614941,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-31.921242,152.372509,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.451551,150.515271,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121105,1,MALE,occurrenceRemarks withheld,2024,1,17,Australia,AU,New South Wales,-33.671649,149.361315,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.447162,150.517534,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,7,16,Australia,AU,New South Wales,-31.64291,152.794928,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-29.027211,153.405012,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.42068,150.609136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.452619,150.519898,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.41754,150.63306,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102203,1,,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-32.724039,152.104295,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-28.811981,153.299386,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,22,Australia,AU,New South Wales,-28.388596,153.558008,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-28.875831,153.376753,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-29.490096,153.101247,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-28.836547,153.134986,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260S,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-31.938608,152.432169,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.493996,150.64033,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2020,2,5,Australia,AU,New South Wales,-32.06978,152.50487,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.389396,150.626697,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-28.818643,153.333259,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-34.460307,150.566447,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,9,Australia,AU,New South Wales,-29.49018,153.108156,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,9,Australia,AU,New South Wales,-34.444076,150.529061,EPSG:4326 +HUMAN_OBSERVATION,OPXE96061101,1,MALE,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-31.598137,152.805829,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.466585,150.521291,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151D,1,FEMALE,occurrenceRemarks withheld,2022,10,22,Australia,AU,New South Wales,-29.020599,153.394814,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,10,Australia,AU,New South Wales,-31.470515,152.912037,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-30.50806,152.926849,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.400946,150.65105,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,2,17,Australia,AU,New South Wales,-31.453067,152.884303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.48592,150.636203,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.413061,150.59668,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090404,1,FEMALE,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-32.74222,152.073561,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,MALE,occurrenceRemarks withheld,2022,12,28,Australia,AU,New South Wales,-34.768497,146.5795,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.61119,153.438545,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.423834,150.637354,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,FEMALE,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-31.443444,152.919646,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.444992,150.514552,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-30.17518,152.91106,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,4,24,Australia,AU,New South Wales,-32.039046,152.261395,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,24,Australia,AU,New South Wales,-31.453288,152.916226,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.449468,150.516998,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040T,1,,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-33.95812,150.955259,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-29.483666,153.104208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.494221,150.64076,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-30.349753,152.607952,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040B,1,MALE,occurrenceRemarks withheld,2022,12,4,Australia,AU,New South Wales,-33.666194,150.026369,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,OPJG22022103,1,,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-32.36741,152.047805,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.388089,150.624407,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-28.547985,153.11679,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.38887,150.626049,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.399683,150.617434,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-34.190878,150.790329,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-28.87245,153.282988,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,,occurrenceRemarks withheld,2023,12,30,Australia,AU,New South Wales,-29.492707,153.093245,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150S,1,,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-32.059803,152.540183,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.427602,150.604902,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-29.483797,153.10416,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.392879,150.632417,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003883,1,,occurrenceRemarks withheld,2023,4,22,Australia,AU,New South Wales,-28.887362,153.22673,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,24,Australia,AU,New South Wales,-31.447669,152.925751,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.41963,150.611689,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,7,16,Australia,AU,New South Wales,-28.84,153.252709,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2022,7,9,Australia,AU,New South Wales,-34.103733,150.975589,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-32.74901,152.068849,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.601015,149.950035,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,2,26,Australia,AU,New South Wales,-31.913331,152.355001,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.447642,150.518064,EPSG:4326 +HUMAN_OBSERVATION,OJJS19022501;ODMP21050503,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-32.714185,151.780333,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.423834,150.637354,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-32.408741,152.216591,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070702,1,,occurrenceRemarks withheld,2020,3,17,Australia,AU,New South Wales,-28.815442,153.31216,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100518,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-31.44818,152.880491,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.419098,150.610279,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.430165,150.607788,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,7,23,Australia,AU,New South Wales,-29.48523,153.104015,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-28.682671,153.487886,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-34.83565,150.101709,EPSG:4326 +HUMAN_OBSERVATION,ODMP99090100,1,,occurrenceRemarks withheld,2024,3,15,Australia,AU,New South Wales,-34.090639,150.986053,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,2,5,Australia,AU,New South Wales,-30.334954,153.093109,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-31.863221,152.666458,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-33.711434,150.786051,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-31.44008,152.884086,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.810956,152.823916,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-28.553368,153.131198,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.394081,150.640975,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.429631,150.609969,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.488866,150.63796,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-28.580514,153.485796,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-29.631,152.866,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,FEMALE,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-30.299634,153.094616,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.796735,152.812797,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.418205,150.632509,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052706,1,,occurrenceRemarks withheld,2024,4,24,Australia,AU,New South Wales,-32.738114,152.108376,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-31.124537,152.797479,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-30.890844,153.064656,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310060H,1,FEMALE,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-36.156686,149.254042,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004065,1,,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-28.380941,153.563882,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-32.722485,152.077187,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,16,Australia,AU,New South Wales,-32.710337,152.065686,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-29.485594,153.103779,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-30.386055,153.033156,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,27,Australia,AU,New South Wales,-31.43736,152.905842,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,15,Australia,AU,New South Wales,-32.706203,152.063315,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-31.924484,152.383572,EPSG:4326 +HUMAN_OBSERVATION,OJJS06031407,1,MALE,occurrenceRemarks withheld,2023,1,1,Australia,AU,New South Wales,-32.40033,152.468964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.434354,150.616363,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401090V,1,,occurrenceRemarks withheld,2023,2,1,Australia,AU,New South Wales,-30.86688,152.724963,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,18,Australia,AU,New South Wales,-29.490488,153.109379,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-28.399308,153.556044,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,3,6,Australia,AU,New South Wales,-32.240807,151.93461,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,MALE,occurrenceRemarks withheld,2021,1,16,Australia,AU,New South Wales,-31.933272,152.415169,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021504,1,,occurrenceRemarks withheld,2024,1,23,Australia,AU,New South Wales,-31.428247,152.907767,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-34.195962,150.791979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.420227,150.634475,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,10,3,Australia,AU,New South Wales,-34.200209,150.782295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.459935,150.525482,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,10,9,Australia,AU,New South Wales,-29.48353,153.094955,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-32.226267,152.189573,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-32.70617,152.063347,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,4,Australia,AU,New South Wales,-31.460008,152.876305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.43812,150.604275,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-29.483969,153.104053,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,MALE,occurrenceRemarks withheld,2022,7,19,Australia,AU,New South Wales,-31.553705,152.853559,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.388461,150.631498,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,25,Australia,AU,New South Wales,-29.485183,153.103956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.426014,150.597952,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2021,2,10,Australia,AU,New South Wales,-28.967792,152.745333,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-31.448258,152.894775,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.370469,150.367836,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.426343,150.605058,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.469632,150.527068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.457931,150.531125,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-31.45415,152.925137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-34.394977,150.642549,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140J,1,,occurrenceRemarks withheld,2021,12,20,Australia,AU,New South Wales,-31.458022,152.927106,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-31.13969,152.799356,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,1,9,Australia,AU,New South Wales,-31.437548,152.905125,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.415032,150.597385,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.397129,150.640074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.390555,150.626469,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003850,1,,occurrenceRemarks withheld,2023,3,1,Australia,AU,New South Wales,-28.902871,153.329261,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,2,3,Australia,AU,New South Wales,-31.453379,152.879411,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,23,Australia,AU,New South Wales,-33.71698,150.785253,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-28.811145,153.36734,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.393905,150.644482,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,6,Australia,AU,New South Wales,-31.444037,152.889825,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.431952,150.613439,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150N,1,,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.001835,150.899879,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,23,Australia,AU,New South Wales,-34.397104,150.639248,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-30.327333,153.06654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.436398,150.608884,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.447461,150.516285,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-30.230178,152.938758,EPSG:4326 +HUMAN_OBSERVATION,ODMP99082301,1,,occurrenceRemarks withheld,2023,7,3,Australia,AU,New South Wales,-31.596406,152.188677,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-30.34293,153.07405,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,2,MALE,occurrenceRemarks withheld,2024,9,6,Australia,AU,New South Wales,-28.626972,153.428062,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.436443,150.615313,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,6,Australia,AU,New South Wales,-28.628296,153.427304,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-28.86462,153.293257,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.207222,150.790116,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,27,Australia,AU,New South Wales,-28.686437,153.515921,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,15,Australia,AU,New South Wales,-29.490175,153.110501,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-30.84178,152.759299,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2021,1,2,Australia,AU,New South Wales,-31.464277,152.928516,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,17,Australia,AU,New South Wales,-28.827734,153.269778,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.471437,150.530302,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,2,20,Australia,AU,New South Wales,-28.388894,153.561749,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.454546,152.907064,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.488328,150.63767,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-29.490227,153.110259,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.383989,150.622631,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,2,Australia,AU,New South Wales,-29.489517,153.103854,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,30,Australia,AU,New South Wales,-31.126098,152.797475,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-29.010748,153.270841,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,1,MALE,occurrenceRemarks withheld,2023,7,8,Australia,AU,New South Wales,-28.627478,153.429195,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-30.203921,152.927584,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-31.469852,152.918307,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-29.485664,153.103747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,9,Australia,AU,New South Wales,-34.435984,150.517136,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,7,Australia,AU,New South Wales,-29.482157,153.104176,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-28.222185,153.537072,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.390561,150.627284,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-31.675845,152.805621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.420712,150.630675,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,12,2,Australia,AU,New South Wales,-33.717699,150.78413,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.460307,150.566447,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.388099,150.624418,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.46377,150.523845,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-28.693297,153.495583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.491484,150.639084,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.39692,150.641864,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.465847,150.522249,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801101C;ODMP22022500,1,,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-32.718122,152.112878,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-33.491201,149.552114,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-31.403015,152.093798,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-28.958804,153.39279,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-31.930397,152.405625,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-30.39202,153.03041,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.385367,150.62444,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.448967,150.516284,EPSG:4326 +HUMAN_OBSERVATION,OJJS17112104;OJJS18042400,1,,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-31.257297,152.742556,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050U,1,,occurrenceRemarks withheld,2023,3,26,Australia,AU,New South Wales,-30.531204,151.51539,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.451656,150.517303,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-28.328909,153.494089,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,17,Australia,AU,New South Wales,-29.490516,153.109422,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-28.312341,153.284674,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-30.887331,153.072088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.44902,150.516239,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,4,27,Australia,AU,New South Wales,-28.434186,153.020038,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-29.109894,153.155062,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150C,1,,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-31.919639,152.332291,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-36.152417,149.351835,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-33.705763,150.786976,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100404,1,,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-30.481336,151.694363,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-28.692805,153.606178,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-33.717428,150.784194,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-29.490423,153.109551,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,3,Australia,AU,New South Wales,-36.441911,149.967708,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418842,150.632795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.465573,150.52561,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-28.847991,153.302682,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111509,1,,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-30.887087,153.038819,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003848,1,,occurrenceRemarks withheld,2023,1,25,Australia,AU,New South Wales,-28.819754,153.318703,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.453535,150.520175,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-31.127346,152.793571,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102216,1,,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-32.631105,151.711613,EPSG:4326 +HUMAN_OBSERVATION,OPUR21080903,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-31.46378,152.86181,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.420424,150.630248,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-31.85809,152.355785,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,MALE,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-28.849897,153.315879,EPSG:4326 +HUMAN_OBSERVATION,OLHP23121301,1,,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-34.038865,151.009547,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-31.85809,152.355785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.436605,150.603328,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020I,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-32.713712,152.065607,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,8,Australia,AU,New South Wales,-28.919248,153.176932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.43659,150.520796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.429294,150.614896,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-29.051477,153.300584,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.72968,153.53207,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.465695,150.521426,EPSG:4326 +HUMAN_OBSERVATION,OAJL99050700,1,,occurrenceRemarks withheld,2024,2,6,Australia,AU,New South Wales,-31.441925,152.229218,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-31.434794,152.909421,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500,1,,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-28.58252,153.53868,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-34.400186,150.647613,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,7,Australia,AU,New South Wales,-29.485669,153.103758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.420252,150.635312,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-28.629921,153.406757,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-29.485604,153.103489,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.420716,150.609135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.470998,150.53,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-31.933059,152.366876,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.491313,150.639089,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012913,1,MALE,occurrenceRemarks withheld,2023,12,2,Australia,AU,New South Wales,-32.186459,151.974108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.446888,150.514278,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,6,13,Australia,AU,New South Wales,-31.439042,152.917724,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042601,1,MALE,occurrenceRemarks withheld,2024,4,12,Australia,AU,New South Wales,-32.348816,152.491627,EPSG:4326 +HUMAN_OBSERVATION,OJJS20110901;OJJS20110902,1,,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-30.648882,152.957721,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.470173,150.528881,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-33.563141,149.550909,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-34.101023,150.809461,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011007,1,FEMALE,occurrenceRemarks withheld,2024,4,14,Australia,AU,New South Wales,-28.633952,152.179027,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.43408,150.61575,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-28.73488,153.590737,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-28.839441,153.206273,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-31.875459,152.372239,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433754,150.617065,EPSG:4326 +HUMAN_OBSERVATION,ODFK23121101,1,,occurrenceRemarks withheld,2023,9,21,Australia,AU,New South Wales,-29.436865,153.193102,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-31.463876,152.92795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.394558,150.641419,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,22,Australia,AU,New South Wales,-31.464679,152.927806,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,15,Australia,AU,New South Wales,-32.352271,152.484849,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2023,11,26,Australia,AU,New South Wales,-32.721476,152.077686,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-34.189948,150.787223,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-30.195951,152.834051,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-30.2403,152.90651,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.430069,150.607954,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,5,Australia,AU,New South Wales,-28.816675,153.330332,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.436244,150.517225,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,4,18,Australia,AU,New South Wales,-29.609219,150.861571,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.488302,150.637268,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090504,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-30.350067,151.664804,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,9,3,Australia,AU,New South Wales,-31.629177,152.786688,EPSG:4326 +HUMAN_OBSERVATION,OPUR23081702;ODFK2310250A,1,MALE,occurrenceRemarks withheld,2023,,,Australia,AU,New South Wales,-29.207445,153.329323,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.465692,150.52171,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-28.802962,153.294842,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-34.098097,150.809079,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012913,1,MALE,occurrenceRemarks withheld,2023,11,20,Australia,AU,New South Wales,-32.173677,151.972176,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001621;OIXR15090900;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-28.66927,153.61041,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110221I,1,,occurrenceRemarks withheld,2020,12,23,Australia,AU,New South Wales,-32.728381,152.089896,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.44598,150.513042,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2020,8,18,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,5,26,Australia,AU,New South Wales,-33.772112,150.091914,EPSG:4326 +HUMAN_OBSERVATION,OPJG15082102,1,,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-29.787327,152.607591,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,18,Australia,AU,New South Wales,-34.446182,150.51765,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-29.089379,153.384261,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.453609,150.517583,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050S,1,,occurrenceRemarks withheld,2023,4,26,Australia,AU,New South Wales,-30.997344,153.024645,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.588285,149.913134,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100317,1,,occurrenceRemarks withheld,2023,8,17,Australia,AU,New South Wales,-31.554223,152.494341,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151J,1,,occurrenceRemarks withheld,2022,8,18,Australia,AU,New South Wales,-28.669583,153.52339,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-29.014104,153.016741,EPSG:4326 +HUMAN_OBSERVATION,OPJG18122002,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-30.200744,152.774679,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.396796,150.641998,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.648169,149.934793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.452132,150.517213,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-34.085656,150.815095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.435407,150.521146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.420664,150.609212,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,12,Australia,AU,New South Wales,-29.484362,153.104031,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.420075,150.631303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.449632,150.515764,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-29.490147,153.107448,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,27,Australia,AU,New South Wales,-29.490114,153.100775,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-31.501105,152.803863,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002777,1,MALE,occurrenceRemarks withheld,2023,5,13,Australia,AU,New South Wales,-29.493252,153.09261,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-29.910913,152.135662,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.498995,150.53378,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,26,Australia,AU,New South Wales,-33.713475,150.783354,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-28.907257,153.347093,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,5,Australia,AU,New South Wales,-28.630745,153.270921,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2022,11,13,Australia,AU,New South Wales,-29.042336,153.289282,EPSG:4326 +HUMAN_OBSERVATION,ODMP10100606,1,,occurrenceRemarks withheld,2023,5,21,Australia,AU,New South Wales,-34.09468,150.809175,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.878411,153.248239,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030M,1,,occurrenceRemarks withheld,2022,10,1,Australia,AU,New South Wales,-28.661786,153.432717,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102508,1,,occurrenceRemarks withheld,2024,9,5,Australia,AU,New South Wales,-28.69937,153.247001,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,12,Australia,AU,New South Wales,-29.490264,153.108178,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2022,2,16,Australia,AU,New South Wales,-31.920975,152.377904,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-34.035121,150.873769,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003975,1,MALE,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-28.823219,153.309383,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,6,13,Australia,AU,New South Wales,-29.028213,153.433935,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.617465,149.947183,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-28.724041,153.379335,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.427336,150.60467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.43328,150.60758,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.493187,150.639025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.466292,150.519286,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.465708,150.525181,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222J,1,FEMALE,occurrenceRemarks withheld,2023,9,11,Australia,AU,New South Wales,-32.647301,151.760211,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.389798,150.630688,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-31.928032,152.379698,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,10,Australia,AU,New South Wales,-29.487938,153.091934,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.419117,150.610355,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-29.486454,153.097025,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190Q,1,,occurrenceRemarks withheld,2024,9,8,Australia,AU,New South Wales,-31.979847,151.94202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.420966,150.627045,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022522,1,,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-32.725422,152.077365,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,,occurrenceRemarks withheld,2023,6,22,Australia,AU,New South Wales,-28.889728,153.298939,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,15,Australia,AU,New South Wales,-31.46675,152.906604,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,,occurrenceRemarks withheld,2023,4,1,Australia,AU,New South Wales,-32.218476,152.190269,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-31.988722,151.810365,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-28.967906,153.284965,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,,occurrenceRemarks withheld,2023,8,6,Australia,AU,New South Wales,-28.551841,153.054728,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.853416,152.770676,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-33.496074,149.54979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.394767,150.642914,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.464077,150.523891,EPSG:4326 +HUMAN_OBSERVATION,ODFK23082308;ODFK23082309;ODFK2308230A;ODFK2308230B,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.185899,150.801531,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,17,Australia,AU,New South Wales,-28.384396,153.562606,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,6,Australia,AU,New South Wales,-28.383844,153.562317,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.460004,150.519102,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060502,1,,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-30.338589,153.078532,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-28.925911,153.262056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-34.43712,150.605686,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-31.445481,152.893286,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210V,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-32.708925,152.061765,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.454775,150.520846,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-34.149605,150.82316,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,FEMALE,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-36.225488,149.397925,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.299138,149.322825,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.418842,150.609166,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,1,28,Australia,AU,New South Wales,-28.695962,153.501298,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2022,2,3,Australia,AU,New South Wales,-32.665067,151.716625,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.420135,150.634412,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-31.45885,152.925812,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.447403,150.516951,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,8,13,Australia,AU,New South Wales,-28.39508,153.557985,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-31.456093,152.90512,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,12,27,Australia,AU,New South Wales,-30.344322,152.998395,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.447276,150.51962,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435598,150.615468,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23041908,1,,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-30.483519,151.739648,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.387006,150.626634,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-30.403504,151.725898,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.394455,150.631862,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.386874,150.630553,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,15,Australia,AU,New South Wales,-31.476247,152.872785,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-29.478823,153.104165,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.426598,152.842748,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,3,12,Australia,AU,New South Wales,-28.66131,153.609593,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,28,Australia,AU,New South Wales,-31.457676,152.921601,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,15,Australia,AU,New South Wales,-29.490119,153.107464,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,27,Australia,AU,New South Wales,-28.817522,153.335296,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-29.813117,152.827659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.437652,150.606639,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004237,1,FEMALE,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.92076,153.266992,EPSG:4326 +HUMAN_OBSERVATION,OJJS17083000,1,MALE,occurrenceRemarks withheld,2020,1,14,Australia,AU,New South Wales,-33.570947,150.666127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.419724,150.611436,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,4,4,Australia,AU,New South Wales,-36.599554,149.951303,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-28.987356,153.435756,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011013,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-31.466101,152.92438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.420915,150.628157,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004156,1,MALE,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.819149,153.278539,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-31.454544,152.925254,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,9,Australia,AU,New South Wales,-29.489657,153.104659,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-33.432242,150.613359,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.382602,150.137356,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-33.969982,150.98423,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,21,Australia,AU,New South Wales,-29.489349,153.101521,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,10,15,Australia,AU,New South Wales,-30.35499,153.076587,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-30.437334,152.98111,EPSG:4326 +HUMAN_OBSERVATION,Obs_2037,1,FEMALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-28.808559,153.510594,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.42488,150.602597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419097,150.610225,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,26,Australia,AU,New South Wales,-29.485172,153.10405,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-33.718443,150.785103,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-31.934482,152.307001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.464318,150.522447,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-33.991958,150.89266,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,10,Australia,AU,New South Wales,-28.300791,153.333564,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-31.469715,152.918987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.421019,150.626511,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-33.522609,150.655487,EPSG:4326 +HUMAN_OBSERVATION,OJMM08020900,1,MALE,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-34.034399,151.030221,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.84178,152.759299,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,26,Australia,AU,New South Wales,-34.420297,150.611192,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.463727,150.523955,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.494246,150.640672,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,23,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.17389,150.79722,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,26,Australia,AU,New South Wales,-31.632466,152.785452,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-33.716987,150.785248,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011019,1,,occurrenceRemarks withheld,2023,11,6,Australia,AU,New South Wales,-31.459453,152.92715,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,9,16,Australia,AU,New South Wales,-31.455909,152.908191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.387975,150.632001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.424649,150.604616,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.465717,150.520305,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004024,1,,occurrenceRemarks withheld,2023,7,23,Australia,AU,New South Wales,-28.668579,153.523645,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012505,1,,occurrenceRemarks withheld,2023,12,10,Australia,AU,New South Wales,-31.451833,152.926496,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.446389,150.514086,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102100,1,,occurrenceRemarks withheld,2022,1,3,Australia,AU,New South Wales,-32.747913,152.070202,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-29.490082,153.107411,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.418314,150.632571,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.465717,150.521633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.461337,150.53282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.4587,150.525486,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250N,1,,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-32.535193,151.600538,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,20,Australia,AU,New South Wales,-28.692812,153.516578,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-34.105006,150.970363,EPSG:4326 +HUMAN_OBSERVATION,ODFK24012507,1,,occurrenceRemarks withheld,2024,1,20,Australia,AU,New South Wales,-31.47019,152.918338,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-30.309466,153.071009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.395708,150.62628,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.798973,152.812379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.395134,150.628754,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,7,8,Australia,AU,New South Wales,-28.659154,153.612582,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,12,28,Australia,AU,New South Wales,-28.885311,153.194794,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,6,2,Australia,AU,New South Wales,-34.226418,150.744837,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,1,11,Australia,AU,New South Wales,-32.706526,152.063762,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.127444,152.810237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.389774,150.628079,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,6,10,Australia,AU,New South Wales,-28.260092,153.401038,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,FEMALE,occurrenceRemarks withheld,2023,3,22,Australia,AU,New South Wales,-31.919508,152.379025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.385772,150.622972,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070K,1,MALE,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-33.541594,149.682858,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420191,150.610379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.447001,150.515842,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.419977,150.631349,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2024,7,20,Australia,AU,New South Wales,-29.738292,151.05768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.434677,150.606626,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,6,Australia,AU,New South Wales,-29.366865,153.106633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.388352,150.630022,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.465828,150.520421,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,1,17,Australia,AU,New South Wales,-29.484002,153.104117,EPSG:4326 +HUMAN_OBSERVATION,OPXE99052505,1,,occurrenceRemarks withheld,2023,11,21,Australia,AU,New South Wales,-30.272301,153.066477,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.4338,150.617097,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-31.445349,152.892232,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-31.635235,152.786458,EPSG:4326 +HUMAN_OBSERVATION,OPJG24022604,1,,occurrenceRemarks withheld,2024,7,16,Australia,AU,New South Wales,-32.207858,152.253234,EPSG:4326 +HUMAN_OBSERVATION,OPJG21031209,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-32.482259,151.755461,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-28.860167,153.315236,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004202,1,,occurrenceRemarks withheld,2023,7,21,Australia,AU,New South Wales,-28.821034,153.300889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.39917,150.639799,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001963,1,,occurrenceRemarks withheld,2022,12,5,Australia,AU,New South Wales,-31.459827,152.910199,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.452618,150.519865,EPSG:4326 +HUMAN_OBSERVATION,ODMP10100606,1,,occurrenceRemarks withheld,2023,5,14,Australia,AU,New South Wales,-29.770209,151.051156,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022524,1,MALE,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-32.5899,151.79389,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,7,6,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-31.891787,152.319311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.493538,150.64043,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.420792,150.630597,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-28.979207,152.748662,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.420921,150.627058,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-36.156195,149.353127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.395695,150.646596,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-31.460329,152.870713,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,29,Australia,AU,New South Wales,-36.435679,149.980514,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,3,21,Australia,AU,New South Wales,-29.02612,153.28717,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.399161,150.639789,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.447363,150.514547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.435021,150.606692,EPSG:4326 +HUMAN_OBSERVATION,OIXR1511120C,1,MALE,occurrenceRemarks withheld,2022,11,1,Australia,AU,New South Wales,-28.648927,153.45613,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,7,15,Australia,AU,New South Wales,-28.690807,153.607377,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.450571,150.515834,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.846843,153.314609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.450527,150.515889,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004234,1,,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-28.602022,153.092706,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,4,7,Australia,AU,New South Wales,-28.839872,153.303635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-34.46606,150.521655,EPSG:4326 +HUMAN_OBSERVATION,SHARM,1,FEMALE,occurrenceRemarks withheld,2023,4,10,Australia,AU,New South Wales,-32.625001,149.96778,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-28.839872,153.303635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.433829,150.607956,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004281,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-28.870048,153.462986,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-28.882774,153.297711,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070704,1,,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-29.016576,153.429771,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-31.737459,152.152244,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-29.631769,152.899818,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.10747,150.81925,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-31.648275,152.801027,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-29.437147,153.192812,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,9,16,Australia,AU,New South Wales,-31.141314,152.823365,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-34.09151,150.98521,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.420606,150.637326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.446761,150.51291,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-29.490595,153.10806,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.418948,150.609511,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003812,1,,occurrenceRemarks withheld,2023,5,28,Australia,AU,New South Wales,-28.38361,153.562142,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.395406,150.643298,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-32.736456,152.03802,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.389801,150.628034,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,17,Australia,AU,New South Wales,-29.49025,153.10821,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2023,7,22,Australia,AU,New South Wales,-32.698717,152.064075,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.44611,150.513234,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2024,1,23,Australia,AU,New South Wales,-36.434771,148.663144,EPSG:4326 +HUMAN_OBSERVATION,SPAP-HO,1,,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-30.894342,150.042484,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.396457,150.627248,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.436652,150.608017,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081100,1,MALE,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-31.712723,152.783757,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-29.486575,153.103275,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2023,1,10,Australia,AU,New South Wales,-31.946553,152.421401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.472869,150.529324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.420336,150.611354,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,12,7,Australia,AU,New South Wales,-31.473925,152.900289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433308,150.60759,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.420324,150.627412,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.466716,150.521113,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-880;OPJG15082102;OPJG18122002,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-30.20617,152.804028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.420641,150.630721,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-28.251337,153.373197,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,4,15,Australia,AU,New South Wales,-31.475036,152.897301,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304050P,1,,occurrenceRemarks withheld,2023,2,21,Australia,AU,New South Wales,-32.545692,149.847761,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,,occurrenceRemarks withheld,2022,3,23,Australia,AU,New South Wales,-32.739275,152.10976,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-28.688428,153.359888,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100209,1,MALE,occurrenceRemarks withheld,2020,4,19,Australia,AU,New South Wales,-36.155483,149.362893,EPSG:4326 +HUMAN_OBSERVATION,WARC-BM,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-33.144443,151.475908,EPSG:4326 +HUMAN_OBSERVATION,Obs_0451,1,,occurrenceRemarks withheld,2024,1,27,Australia,AU,New South Wales,-32.725849,152.146708,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-30.043804,152.2405,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-30.904021,152.760068,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-33.203515,150.59937,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-31.09508,150.12083,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,1,22,Australia,AU,New South Wales,-29.490339,153.108226,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.447404,150.5188,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;ODMP2212210D,1,,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-28.271399,153.391205,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-28.719438,153.534374,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.388135,150.624438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.450025,150.516448,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150C,1,MALE,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-28.847843,153.478559,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-28.668812,153.612529,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,FEMALE,occurrenceRemarks withheld,2023,9,19,Australia,AU,New South Wales,-32.014774,152.189014,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.465961,150.522083,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,12,13,Australia,AU,New South Wales,-30.380924,153.017957,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.432081,150.606189,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007130E,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.959337,152.185974,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-32.226267,152.189573,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435313,150.616118,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.451564,150.517241,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070704,1,,occurrenceRemarks withheld,2020,3,13,Australia,AU,New South Wales,-29.01649,153.429792,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.447398,150.517625,EPSG:4326 +HUMAN_OBSERVATION,OPUR15020901,1,,occurrenceRemarks withheld,2022,3,6,Australia,AU,New South Wales,-28.730654,153.603662,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-29.661957,152.878903,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-34.485241,150.635602,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.303957,152.87081,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.423534,150.605725,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-29.157111,153.11683,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,26,Australia,AU,New South Wales,-28.660702,153.610029,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,4,1,Australia,AU,New South Wales,-33.775973,150.062723,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.433794,150.608022,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-34.44819,150.516644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.455069,150.657262,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-34.464039,150.525982,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2024,4,1,Australia,AU,New South Wales,-32.715996,152.161161,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-34.015833,150.877456,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OLHP24030601,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-31.899045,152.312594,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.465802,150.520487,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,3,21,Australia,AU,New South Wales,-31.554898,152.851312,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.447206,150.514377,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,,occurrenceRemarks withheld,2023,10,4,Australia,AU,New South Wales,-34.020842,150.9924,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-32.532721,151.847077,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.438739,150.603648,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,18,Australia,AU,New South Wales,-32.706589,152.06373,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-31.448497,152.922864,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-32.569232,151.79931,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.386615,150.627428,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-34.043934,150.886154,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-34.245426,150.699384,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,12,17,Australia,AU,New South Wales,-31.443135,152.919374,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.387335,150.631084,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.418712,150.632614,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405200K,1,,occurrenceRemarks withheld,2024,3,4,Australia,AU,New South Wales,-29.728212,151.083923,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2020,2,26,Australia,AU,New South Wales,-29.667331,152.867846,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-29.483344,153.095153,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,4,6,Australia,AU,New South Wales,-31.476491,152.913609,EPSG:4326 +HUMAN_OBSERVATION,ODMP23033107,1,,occurrenceRemarks withheld,2022,6,12,Australia,AU,New South Wales,-32.768807,152.113969,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,12,17,Australia,AU,New South Wales,-28.992713,153.437123,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004186,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.925911,153.262056,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150H,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.539863,152.762086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.435299,150.615857,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-34.372728,150.541229,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.466206,150.523926,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-29.667284,152.867718,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,6,24,Australia,AU,New South Wales,-32.722468,152.077265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.435234,150.616664,EPSG:4326 +HUMAN_OBSERVATION,ODMP2302060C,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-31.434781,152.907266,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-31.455103,152.926703,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-31.469307,152.914442,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.430082,150.607693,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180J,1,,occurrenceRemarks withheld,2023,8,27,Australia,AU,New South Wales,-28.676052,153.547463,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-32.716856,152.150385,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.418369,150.632613,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,3,28,Australia,AU,New South Wales,-34.759792,146.586516,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-34.437146,150.617611,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,7,Australia,AU,New South Wales,-29.490796,153.109331,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-31.442607,152.913689,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-31.449078,152.926214,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-28.683073,153.608329,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,25,Australia,AU,New South Wales,-29.489526,153.101864,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.433782,150.617086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.422432,150.608357,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,1,10,Australia,AU,New South Wales,-32.715495,152.162957,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.41848,150.633208,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-31.446007,152.915476,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,5,19,Australia,AU,New South Wales,-30.34688,153.085856,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103103,1,,occurrenceRemarks withheld,2023,1,10,Australia,AU,New South Wales,-33.122487,151.537833,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-29.642185,152.831905,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,6,22,Australia,AU,New South Wales,-28.845355,153.309927,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080204,1,,occurrenceRemarks withheld,2021,2,9,Australia,AU,New South Wales,-34.079536,150.848541,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-36.469037,149.958956,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,8,30,Australia,AU,New South Wales,-31.447477,152.925612,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,7,4,Australia,AU,New South Wales,-28.845355,153.309927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.453484,150.522538,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.451804,150.519269,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.422333,150.607914,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-31.925461,152.375604,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.390978,150.643694,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-29.811425,152.823729,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,16,Australia,AU,New South Wales,-28.659677,153.331782,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2023,11,12,Australia,AU,New South Wales,-33.679454,149.516761,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.420697,150.630861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.388879,150.626049,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,8,22,Australia,AU,New South Wales,-31.676499,152.803705,EPSG:4326 +HUMAN_OBSERVATION,OJJS1208150J,1,MALE,occurrenceRemarks withheld,2020,2,2,Australia,AU,New South Wales,-32.548846,151.742343,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,10,1,Australia,AU,New South Wales,-31.443777,152.908897,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,12,25,Australia,AU,New South Wales,-28.287731,153.395107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.466611,150.521258,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,5,31,Australia,AU,New South Wales,-31.48518,152.914417,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.464126,150.522289,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,29,Australia,AU,New South Wales,-34.395958,150.640118,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-32.229205,152.189597,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100312,1,,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-36.504827,148.671558,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,6,17,Australia,AU,New South Wales,-29.485692,153.103672,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.436103,150.616411,EPSG:4326 +HUMAN_OBSERVATION,OJKB21080309;OPJG22012500;OPJG22012505,1,,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-28.65505,153.59019,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,19,Australia,AU,New South Wales,-29.486472,153.103291,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.436395,150.609645,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,12,8,Australia,AU,New South Wales,-31.469103,152.919729,EPSG:4326 +HUMAN_OBSERVATION,OJJS2007070B,1,,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-32.763707,152.035856,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-34.4667,150.522507,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072804,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-32.299385,151.962107,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,9,4,Australia,AU,New South Wales,-34.085656,150.815095,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,7,22,Australia,AU,New South Wales,-28.981981,153.282717,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-29.483624,153.104224,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-32.714849,152.151324,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090503;OLHP23090504,1,,occurrenceRemarks withheld,2020,12,26,Australia,AU,New South Wales,-30.494062,152.941747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.452037,150.517412,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.395666,150.641377,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.437903,150.517961,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.423734,150.637314,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,2,15,Australia,AU,New South Wales,-28.394606,153.557679,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-32.706176,152.063508,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-30.797902,152.95646,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.2989,149.32349,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,7,17,Australia,AU,New South Wales,-28.890555,153.424541,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,7,22,Australia,AU,New South Wales,-31.465997,152.909512,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,8,14,Australia,AU,New South Wales,-33.505479,150.794721,EPSG:4326 +HUMAN_OBSERVATION,ODFK24012504,1,,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-33.735054,150.449654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.465691,150.521666,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,11,14,Australia,AU,New South Wales,-31.456072,152.879193,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,10,30,Australia,AU,New South Wales,-31.629166,152.786534,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-31.915764,152.374899,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.433719,150.61711,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,2,21,Australia,AU,New South Wales,-28.614583,153.367878,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.465626,150.520264,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-31.530519,152.790883,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-31.434206,152.920139,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.435973,150.615718,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103101,1,,occurrenceRemarks withheld,2023,1,20,Australia,AU,New South Wales,-34.038649,151.037675,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.452529,150.519911,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.466144,150.523089,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,3,5,Australia,AU,New South Wales,-29.63155,152.899947,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-29.479281,153.104203,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-28.823939,153.320904,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,9,17,Australia,AU,New South Wales,-29.490184,153.110527,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.443558,150.516738,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.41837,150.632656,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,12,26,Australia,AU,New South Wales,-32.705766,152.063582,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140W,1,,occurrenceRemarks withheld,2022,12,28,Australia,AU,New South Wales,-36.45878,148.71958,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,24,Australia,AU,New South Wales,-33.707063,150.785087,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.588285,149.913134,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.3987,150.616515,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300C,1,,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-32.721137,152.078194,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.383282,150.623358,EPSG:4326 +HUMAN_OBSERVATION,OLHP23062104,1,MALE,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-31.914513,152.373554,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.491736,150.639055,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-34.533564,150.600987,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,4,8,Australia,AU,New South Wales,-34.925982,150.146333,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.447285,150.513842,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,6,17,Australia,AU,New South Wales,-28.840576,153.320914,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,4,24,Australia,AU,New South Wales,-33.710446,150.786125,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071200,1,,occurrenceRemarks withheld,2024,4,23,Australia,AU,New South Wales,-32.059193,152.540876,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,2,11,Australia,AU,New South Wales,-31.436938,152.895057,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.431022,150.614727,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,15,Australia,AU,New South Wales,-29.490213,153.10975,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-29.489549,153.103902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.388099,150.632324,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OMFZ23033002;ODFK24051300,1,,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-33.250383,150.871984,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.14182,150.790671,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-28.993182,153.437117,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,MALE,occurrenceRemarks withheld,2023,5,28,Australia,AU,New South Wales,-31.952617,152.306361,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-29.487556,153.102706,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-32.229205,152.189597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.427431,150.603536,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,FEMALE,occurrenceRemarks withheld,2022,10,19,Australia,AU,New South Wales,-34.057238,150.839196,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,2,28,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.452637,150.521236,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,8,30,Australia,AU,New South Wales,-31.443386,152.916411,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-28.232736,153.518851,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,21,Australia,AU,New South Wales,-29.485496,153.103849,EPSG:4326 +HUMAN_OBSERVATION,OIXR16012802,1,,occurrenceRemarks withheld,2022,12,7,Australia,AU,New South Wales,-28.965181,152.997296,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-36.589766,149.919967,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-34.395809,150.646452,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,3,28,Australia,AU,New South Wales,-31.458122,152.911609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.435481,150.603458,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,8,21,Australia,AU,New South Wales,-31.458122,152.911609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.454431,150.6085,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.481759,150.532959,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-34.034102,151.004081,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,2,9,Australia,AU,New South Wales,-31.468932,152.927495,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.44899,150.516544,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.464726,150.529216,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,6,Australia,AU,New South Wales,-28.821749,153.331243,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.524694,152.830913,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-28.820206,153.314107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.438379,150.517424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.445845,150.51395,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290K,1,,occurrenceRemarks withheld,2024,1,18,Australia,AU,New South Wales,-31.965613,152.399208,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060500,1,,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.84073,153.31172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.463752,150.523879,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,6,16,Australia,AU,New South Wales,-28.6352,153.515179,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101301,1,,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-30.40517,152.87102,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003910,1,MALE,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.618562,149.923643,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-31.905008,152.418213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.4296,150.614866,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-31.443481,152.886224,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-28.868027,153.336688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.489733,150.63762,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.41848,150.597612,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-28.683177,153.522857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.435187,150.606426,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2022,10,2,Australia,AU,New South Wales,-34.098028,150.808142,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012505,1,,occurrenceRemarks withheld,2023,12,28,Australia,AU,New South Wales,-31.454124,152.925213,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072601;ODMP2212210O,1,,occurrenceRemarks withheld,2022,5,19,Australia,AU,New South Wales,-28.260549,153.402924,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,23,Australia,AU,New South Wales,-31.44337,152.886221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.395886,150.642034,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-36.650407,149.955028,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,30,Australia,AU,New South Wales,-29.485137,153.104144,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,11,Australia,AU,New South Wales,-36.650407,149.955028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.386327,150.627426,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,12,Australia,AU,New South Wales,-29.489582,153.104337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.418269,150.632572,EPSG:4326 +HUMAN_OBSERVATION,BREHS-HO,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-33.404535,151.088534,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.388279,150.630948,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-33.71695,150.785336,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2023,2,14,Australia,AU,New South Wales,-34.180313,150.79099,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-33.717186,150.784234,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,7,17,Australia,AU,New South Wales,-33.971509,150.89337,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-36.432507,149.961734,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-32.191181,152.028851,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.437977,150.605259,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.572611,149.995573,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-30.417681,153.010861,EPSG:4326 +HUMAN_OBSERVATION,OEMM0911130Y,1,MALE,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-37.177314,149.355934,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-32.706026,152.063459,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.420636,150.609159,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2022,8,10,Australia,AU,New South Wales,-32.617164,151.709206,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,23,Australia,AU,New South Wales,-29.490096,153.101124,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,1,Australia,AU,New South Wales,-33.704355,150.786404,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-30.2796,153.05285,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150B,1,MALE,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.451682,152.92797,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.420548,150.60927,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.390494,150.626112,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.452002,150.524563,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,12,Australia,AU,New South Wales,-29.490007,153.101183,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-33.716996,150.785607,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,10,16,Australia,AU,New South Wales,-31.629768,152.78678,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419119,150.610442,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2022,9,27,Australia,AU,New South Wales,-31.337231,152.637189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.392996,150.632403,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-32.761922,152.079275,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-31.469715,152.918987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.412796,150.597851,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2022,2,2,Australia,AU,New South Wales,-32.709829,152.065376,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.455222,150.607041,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-36.432507,149.961734,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-34.214486,150.799701,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-34.399437,150.645219,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,4,Australia,AU,New South Wales,-34.430202,150.607363,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,5,27,Australia,AU,New South Wales,-31.418737,152.756531,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.576791,149.955017,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.839565,153.279241,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-33.459334,150.593114,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,3,22,Australia,AU,New South Wales,-32.706445,152.06372,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011014,1,,occurrenceRemarks withheld,2020,11,26,Australia,AU,New South Wales,-32.732186,152.039732,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011014,1,,occurrenceRemarks withheld,2020,12,28,Australia,AU,New South Wales,-32.731591,152.037517,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.435354,150.521192,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,9,Australia,AU,New South Wales,-29.47986,153.10423,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,5,25,Australia,AU,New South Wales,-28.863514,153.300166,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801101C,1,FEMALE,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-32.713792,152.15428,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132M,1,MALE,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-31.470627,152.92365,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.495661,150.52496,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,2,Australia,AU,New South Wales,-29.484773,153.096081,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,9,3,Australia,AU,New South Wales,-29.740595,151.058987,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,8,27,Australia,AU,New South Wales,-31.487179,152.77598,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004242,1,,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-28.394929,153.55852,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,8,9,Australia,AU,New South Wales,-31.460002,152.89362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.425671,150.604326,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151G,1,,occurrenceRemarks withheld,2022,12,25,Australia,AU,New South Wales,-28.873768,153.279162,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032900,1,,occurrenceRemarks withheld,2021,10,14,Australia,AU,New South Wales,-31.874683,152.368864,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-28.876433,153.368127,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,7,28,Australia,AU,New South Wales,-31.629768,152.78563,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.588285,149.913134,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,7,17,Australia,AU,New South Wales,-28.890555,153.424541,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,2,21,Australia,AU,New South Wales,-31.486137,152.921537,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.492937,150.639173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.454028,150.520465,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,2,10,Australia,AU,New South Wales,-31.162751,152.81106,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-31.291869,152.864165,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,16,Australia,AU,New South Wales,-31.452399,152.926417,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2023,7,21,Australia,AU,New South Wales,-34.2116,150.798759,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,29,Australia,AU,New South Wales,-33.717064,150.785319,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,MALE,occurrenceRemarks withheld,2024,9,23,Australia,AU,New South Wales,-34.12069,150.99265,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-28.279523,152.477293,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435802,150.616224,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.388147,150.631072,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004241,1,,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-28.598099,153.090146,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181Q,1,,occurrenceRemarks withheld,2023,8,1,Australia,AU,New South Wales,-28.37413,153.555985,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,FEMALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.849992,153.308195,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,11,20,Australia,AU,New South Wales,-31.629899,152.787066,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.464626,150.523374,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-31.439414,152.910417,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-30.56177,152.90236,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.471245,150.511063,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.386407,150.627391,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100G,1,,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-32.660645,151.660978,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211G,1,,occurrenceRemarks withheld,2022,8,3,Australia,AU,New South Wales,-32.761129,152.08002,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-31.470422,152.912452,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.458668,150.523452,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-31.440917,152.909158,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,MALE,occurrenceRemarks withheld,2024,4,20,Australia,AU,New South Wales,-34.040549,150.986203,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.456287,150.655901,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,FEMALE,occurrenceRemarks withheld,2024,1,,Australia,AU,New South Wales,-30.421151,152.98375,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,11,Australia,AU,New South Wales,-29.486276,153.103473,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.446827,150.516141,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.640426,149.947048,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090407,1,FEMALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-32.714885,152.151316,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-33.705969,150.785705,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.43293,150.603956,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-31.430659,152.887029,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-28.82869,153.285591,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,5,20,Australia,AU,New South Wales,-36.468114,149.97978,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240N,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-32.72697,152.104747,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20040702,1,,occurrenceRemarks withheld,2023,3,4,Australia,AU,New South Wales,-29.490032,153.110506,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.451425,150.518344,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,2,12,Australia,AU,New South Wales,-31.165147,152.951652,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-29.813252,152.807198,EPSG:4326 +HUMAN_OBSERVATION,OJBL97031300,1,MALE,occurrenceRemarks withheld,2020,12,7,Australia,AU,New South Wales,-30.434874,152.833527,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.386688,150.627437,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222N,1,,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-32.733802,152.039015,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.551144,149.998977,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-28.760793,153.353423,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OIXR16092800;OPJG22012501,1,,occurrenceRemarks withheld,2021,11,3,Australia,AU,New South Wales,-28.57492,153.51898,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.472122,150.531175,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.465732,150.522351,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,9,12,Australia,AU,New South Wales,-34.116065,150.79517,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,21,Australia,AU,New South Wales,-29.488424,153.103602,EPSG:4326 +HUMAN_OBSERVATION,OIXR15090900;OPJG22012505;OPJG22012506,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.69032,153.60237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.396521,150.645018,EPSG:4326 +HUMAN_OBSERVATION,OEIJ21090900,1,,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-30.913667,153.067583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-34.465564,150.521626,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.398241,150.639804,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.452637,150.519886,EPSG:4326 +HUMAN_OBSERVATION,OJJS1802200K,1,,occurrenceRemarks withheld,2020,9,5,Australia,AU,New South Wales,-28.727155,153.423196,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-29.517651,152.795532,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,4,Australia,AU,New South Wales,-28.841394,153.205378,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110222H,1,,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-32.726405,152.130464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.448781,150.51691,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-29.484334,153.104042,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2024,7,14,Australia,AU,New South Wales,-28.958813,153.392954,EPSG:4326 +HUMAN_OBSERVATION,ODFK2408220M,1,,occurrenceRemarks withheld,2024,1,11,Australia,AU,New South Wales,-32.652496,149.926933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.434083,150.608536,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,22,Australia,AU,New South Wales,-29.490072,153.110565,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-30.051427,152.245688,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,11,Australia,AU,New South Wales,-33.716573,150.784586,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.39027,150.627608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.465763,150.520336,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,3,2,Australia,AU,New South Wales,-32.710938,152.065437,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-34.191884,150.784861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.435202,150.52125,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-31.442371,152.746584,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-28.678941,153.278017,EPSG:4326 +HUMAN_OBSERVATION,OJJS20020408,1,FEMALE,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-34.001972,150.886108,EPSG:4326 +HUMAN_OBSERVATION,ODMP21121501,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-30.5682,151.727184,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.439081,150.602724,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,24,Australia,AU,New South Wales,-28.590421,153.451098,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-34.533564,150.600987,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,22,Australia,AU,New South Wales,-31.430501,152.920355,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2023,8,22,Australia,AU,New South Wales,-28.784249,152.091725,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041400,1,,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-28.871731,153.260835,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.422641,150.637192,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.471347,150.528977,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004167,1,MALE,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-28.324609,153.47468,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,8,28,Australia,AU,New South Wales,-30.364091,153.009898,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.422609,150.636943,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.45017,152.906887,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,1,2,Australia,AU,New South Wales,-31.282665,152.867988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.452236,150.51746,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-33.541858,150.630559,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.470871,150.530842,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.438588,150.617603,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403153L,1,,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-28.641229,153.556075,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.469388,150.527511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.434511,150.616576,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-34.025559,150.991189,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-31.693918,152.596661,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-32.226267,152.189573,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180Q,1,,occurrenceRemarks withheld,2022,8,18,Australia,AU,New South Wales,-28.717308,153.297033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.447206,150.516575,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-31.202384,152.667757,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-31.629267,152.786625,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.385723,150.626997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.388942,150.62422,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2022,8,18,Australia,AU,New South Wales,-32.738074,152.123963,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100D,1,,occurrenceRemarks withheld,2023,10,28,Australia,AU,New South Wales,-31.918887,152.37097,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.424565,150.604488,EPSG:4326 +HUMAN_OBSERVATION,OLHP24011200,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.950415,152.187319,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-29.489596,153.103859,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.910046,153.346548,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-36.576557,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.440352,150.517344,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.397157,150.639203,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202250F,1,MALE,occurrenceRemarks withheld,2021,10,8,Australia,AU,New South Wales,-32.659322,152.02201,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.452351,150.522703,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,5,5,Australia,AU,New South Wales,-36.576557,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-29.489591,153.103849,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303280D,1,,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-31.42944,152.815152,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.457591,150.659053,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.459187,150.655308,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,12,Australia,AU,New South Wales,-28.586387,153.388749,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.56931,149.988655,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.466197,150.521303,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-29.480542,153.10409,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,21,Australia,AU,New South Wales,-34.459889,150.525408,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.420645,150.636052,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004267,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.607207,153.51463,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,4,21,Australia,AU,New South Wales,-32.706535,152.06373,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.910046,153.346548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.39161,150.64471,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,28,Australia,AU,New South Wales,-29.484301,153.104042,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,11,27,Australia,AU,New South Wales,-31.44807,152.905871,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.41895,150.632825,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-31.902443,152.388882,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-31.440548,152.88986,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.424477,150.60461,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,1,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2022,9,17,Australia,AU,New South Wales,-32.707448,152.071519,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,4,18,Australia,AU,New South Wales,-33.679751,149.522315,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021803,1,,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-29.033495,150.325587,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.439537,150.603908,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-33.970921,150.91465,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.389628,150.630269,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.465672,150.521601,EPSG:4326 +HUMAN_OBSERVATION,NATF-HU,1,,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-32.722224,152.074804,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,3,6,Australia,AU,New South Wales,-33.713272,150.7848,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,1,19,Australia,AU,New South Wales,-30.517494,152.88575,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-29.666874,152.868404,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-28.977706,153.406132,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.398655,150.616484,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-32.98809,151.488028,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150M,1,,occurrenceRemarks withheld,2024,1,17,Australia,AU,New South Wales,-31.468189,152.914958,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031531,1,,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-28.818692,153.314713,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-28.694311,153.380005,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.447967,150.516314,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.437946,150.604139,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.395098,150.629255,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-33.703852,150.786796,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-28.688501,153.603603,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-36.621708,149.938155,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,11,Australia,AU,New South Wales,-33.716458,150.784886,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.464025,150.525329,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-29.645186,152.829438,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,2,16,Australia,AU,New South Wales,-28.817186,153.299547,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-33.706783,150.785676,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,2,6,Australia,AU,New South Wales,-29.485646,153.103693,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.443104,152.898194,EPSG:4326 +HUMAN_OBSERVATION,OFML23122100,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-34.389831,150.634603,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.446998,150.517028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.447358,150.518737,EPSG:4326 +HUMAN_OBSERVATION,OAQE22092102,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-33.958383,150.953868,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.49422,150.640727,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-33.717215,150.784384,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2023,6,27,Australia,AU,New South Wales,-32.655321,151.78984,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.390663,150.62739,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,8,13,Australia,AU,New South Wales,-29.478856,153.103956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.463732,150.52377,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004067,1,MALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.650517,153.460499,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.488525,150.637588,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.464344,150.523273,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,24,Australia,AU,New South Wales,-29.48558,153.103784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.397238,150.640136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.455284,150.614788,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.420742,150.627139,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;ORSF21090200,1,MALE,occurrenceRemarks withheld,2021,,,Australia,AU,New South Wales,-32.386521,149.827489,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-34.395744,150.643071,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.464661,150.523351,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.452636,150.603893,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.436287,150.618887,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,12,9,Australia,AU,New South Wales,-28.705151,153.481576,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003891,1,,occurrenceRemarks withheld,2023,5,10,Australia,AU,New South Wales,-28.909308,153.341092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-34.446023,150.513836,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032005,1,,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-32.706513,152.063556,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-28.625677,153.012156,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.458634,150.656053,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.459967,150.519027,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,20,Australia,AU,New South Wales,-34.447262,150.513124,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.437966,150.604214,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,18,Australia,AU,New South Wales,-29.48432,153.104063,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-36.569074,150.02021,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041303,1,FEMALE,occurrenceRemarks withheld,2024,4,15,Australia,AU,New South Wales,-31.944661,152.413602,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,MALE,occurrenceRemarks withheld,2022,12,28,Australia,AU,New South Wales,-34.769223,146.58639,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-31.544762,152.855557,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.164121,152.815379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.395844,150.642155,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,2,13,Australia,AU,New South Wales,-32.70634,152.063772,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003810,1,,occurrenceRemarks withheld,2023,1,15,Australia,AU,New South Wales,-28.870934,153.395866,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.421019,150.626979,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-31.444286,152.923886,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-29.49018,153.11049,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,8,15,Australia,AU,New South Wales,-34.197877,150.791111,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2024,3,16,Australia,AU,New South Wales,-34.101266,150.809822,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,6,21,Australia,AU,New South Wales,-29.483764,153.104138,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.831137,153.278132,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.435537,150.615567,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-30.225716,152.780659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.396859,150.641963,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.390046,150.630931,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.447145,150.513128,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.418262,150.63267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.465465,150.520323,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.44381,150.514521,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OJJS20041402;OJJS20041409;OMFZ23033002,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-32.968488,151.410466,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.438102,150.604297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.465082,150.522294,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578531,149.934245,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,FEMALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-29.657054,150.835045,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-31.451168,152.908306,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-31.449383,152.879669,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100P,1,,occurrenceRemarks withheld,2023,12,9,Australia,AU,New South Wales,-28.518968,153.452422,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,11,1,Australia,AU,New South Wales,-31.443597,152.889538,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,11,19,Australia,AU,New South Wales,-31.894047,152.483796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,15,Australia,AU,New South Wales,-34.386222,150.625765,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.432096,150.611998,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-31.135543,152.807504,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-36.454235,149.995981,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003945,1,FEMALE,occurrenceRemarks withheld,2023,1,12,Australia,AU,New South Wales,-28.397364,153.557091,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,3,7,Australia,AU,New South Wales,-36.590303,149.956571,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.430198,150.607635,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022523,1,,occurrenceRemarks withheld,2020,4,6,Australia,AU,New South Wales,-29.7867,151.19536,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-29.484913,153.103811,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102224,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-32.735173,152.076205,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,9,21,Australia,AU,New South Wales,-31.92625,152.353525,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,24,Australia,AU,New South Wales,-31.445944,152.915352,EPSG:4326 +HUMAN_OBSERVATION,OIXR13062102;OMFZ23033002;ODFK24051300,1,,occurrenceRemarks withheld,2023,10,12,Australia,AU,New South Wales,-33.251643,150.88723,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.420296,150.627347,EPSG:4326 +HUMAN_OBSERVATION,OPJG21010800,1,,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-30.56148,152.90257,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150W,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-28.889165,153.229584,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.465758,150.520521,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.471266,150.529404,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,5,Australia,AU,New South Wales,-29.49017,153.108248,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101I,1,,occurrenceRemarks withheld,2023,11,20,Australia,AU,New South Wales,-32.661828,151.707644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.390825,150.627886,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.445845,150.51395,EPSG:4326 +HUMAN_OBSERVATION,OIXR15020903,1,,occurrenceRemarks withheld,2022,11,17,Australia,AU,New South Wales,-33.384167,150.693056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.396393,150.644456,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-31.443649,152.884757,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-28.649638,153.460145,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050A,1,,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-32.633443,151.625632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.438686,150.618013,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,10,29,Australia,AU,New South Wales,-28.889489,153.360215,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.451538,150.517285,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090405,1,,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-34.201999,150.789744,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,19,Australia,AU,New South Wales,-28.982508,153.419762,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.457116,150.518034,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,6,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.426747,150.604937,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,9,Australia,AU,New South Wales,-31.12848,150.00587,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-29.017366,153.430836,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,1,14,Australia,AU,New South Wales,-34.085987,150.833136,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,1,19,Australia,AU,New South Wales,-28.841163,153.28465,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-28.647443,153.47285,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-36.496862,149.989443,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.437095,150.617329,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220F,1,,occurrenceRemarks withheld,2020,10,4,Australia,AU,New South Wales,-32.767494,152.043163,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-34.208693,150.808987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.419622,150.635406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.447872,150.5139,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,1,Australia,AU,New South Wales,-30.325465,152.802364,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,5,13,Australia,AU,New South Wales,-33.382353,150.753388,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.434946,150.608871,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.436413,150.609634,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.435589,150.615479,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,12,21,Australia,AU,New South Wales,-31.454742,152.926257,EPSG:4326 +HUMAN_OBSERVATION,ODFK24052018,1,MALE,occurrenceRemarks withheld,2024,4,27,Australia,AU,New South Wales,-34.096518,150.984681,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.458558,150.663891,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,23,Australia,AU,New South Wales,-29.489573,153.101478,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,4,19,Australia,AU,New South Wales,-36.567944,149.950099,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.422117,150.607909,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2023,2,6,Australia,AU,New South Wales,-30.325627,152.985567,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022402,1,,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-32.737456,152.032271,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.386856,150.630564,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090407,1,MALE,occurrenceRemarks withheld,2020,7,21,Australia,AU,New South Wales,-32.878254,151.56183,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2021,2,19,Australia,AU,New South Wales,-33.773468,150.084819,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.420634,150.63083,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.428656,150.600248,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,22,Australia,AU,New South Wales,-29.480005,153.104273,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,3,11,Australia,AU,New South Wales,-31.050913,151.052402,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,3,14,Australia,AU,New South Wales,-32.709513,152.064857,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.446572,150.518205,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.488039,150.63672,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-29.485403,153.103945,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.487998,150.637386,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,12,19,Australia,AU,New South Wales,-29.631042,152.899325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.388103,150.631149,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433121,150.616485,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.41826,150.633497,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,28,Australia,AU,New South Wales,-28.818425,153.298252,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,2,13,Australia,AU,New South Wales,-32.706625,152.063956,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,5,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,,occurrenceRemarks withheld,2022,5,29,Australia,AU,New South Wales,-34.235075,150.573283,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2024,7,12,Australia,AU,New South Wales,-32.320798,152.521988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.437659,150.606051,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.49421,150.640684,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,20,Australia,AU,New South Wales,-29.485564,153.103755,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.297209,149.315929,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.466038,150.520556,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.549371,149.943147,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041A,1,MALE,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-30.493343,151.603034,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,10,16,Australia,AU,New South Wales,-32.711152,152.064978,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,6,20,Australia,AU,New South Wales,-31.641862,152.794076,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-29.490862,153.109256,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.463089,150.51961,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.397396,150.627809,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-30.885013,152.777302,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,8,26,Australia,AU,New South Wales,-35.813324,145.554672,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.085987,150.833136,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,4,Australia,AU,New South Wales,-31.438605,152.90564,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.438047,150.604245,EPSG:4326 +HUMAN_OBSERVATION,OJKB21083004,1,,occurrenceRemarks withheld,2021,8,19,Australia,AU,New South Wales,-36.154546,149.350394,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-30.301338,153.11033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.435179,150.616622,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.389566,150.627106,EPSG:4326 +HUMAN_OBSERVATION,OPUR17011801,1,FEMALE,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-36.197052,149.247952,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,12,Australia,AU,New South Wales,-34.45584,150.606838,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.466552,150.527682,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131O,1,,occurrenceRemarks withheld,2023,9,8,Australia,AU,New South Wales,-31.652219,152.601811,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004237,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-28.931682,153.272501,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,16,Australia,AU,New South Wales,-28.6829,153.36138,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,12,19,Australia,AU,New South Wales,-30.258572,152.816657,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-29.740233,151.058609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.432132,150.608341,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.387846,150.624392,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040701,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-32.659944,151.660062,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-33.140339,151.091706,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-28.811981,153.299386,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,7,Australia,AU,New South Wales,-34.229227,150.795181,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090503;OLHP23090504,1,FEMALE,occurrenceRemarks withheld,2023,2,10,Australia,AU,New South Wales,-30.493998,152.94186,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,8,Australia,AU,New South Wales,-36.579686,150.010074,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,,occurrenceRemarks withheld,2022,4,19,Australia,AU,New South Wales,-32.71853,152.117983,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-32.226111,152.204264,EPSG:4326 +HUMAN_OBSERVATION,ODMP23070402,1,,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-30.42329,153.041198,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,2,17,Australia,AU,New South Wales,-29.679916,152.875153,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,12,9,Australia,AU,New South Wales,-28.473865,152.873157,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-32.708486,152.071672,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.399167,153.555833,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,7,Australia,AU,New South Wales,-34.398091,150.645115,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-31.432924,152.893032,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,2,18,Australia,AU,New South Wales,-28.854374,153.353561,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-343,1,,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-29.037243,152.984468,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,5,19,Australia,AU,New South Wales,-33.713879,150.786074,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,17,Australia,AU,New South Wales,-29.490563,153.108162,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,5,Australia,AU,New South Wales,-29.480026,153.104132,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.387572,150.631208,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.433125,150.613949,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-28.399676,153.556036,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.419787,150.610031,EPSG:4326 +HUMAN_OBSERVATION,OLHP23080904,1,,occurrenceRemarks withheld,2023,7,18,Australia,AU,New South Wales,-28.963657,152.862909,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,1,Australia,AU,New South Wales,-29.489638,153.101757,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001236,1,,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-28.731193,153.18008,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,7,Australia,AU,New South Wales,-29.485599,153.103806,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,1,Australia,AU,New South Wales,-31.474821,152.93214,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-28.694401,153.495239,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,3,Australia,AU,New South Wales,-28.79448,153.50506,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,1,22,Australia,AU,New South Wales,-29.485566,153.103779,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.488498,150.637589,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,3,Australia,AU,New South Wales,-29.490082,153.110517,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,22,Australia,AU,New South Wales,-28.647291,153.360264,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.393104,150.644559,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.400334,150.639832,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002789,1,,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-29.726558,152.929452,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,29,Australia,AU,New South Wales,-32.23198,152.192249,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,14,Australia,AU,New South Wales,-28.258683,153.401925,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-28.260697,153.405888,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.463897,150.522568,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-29.030741,152.988175,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.464627,150.523417,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091704,1,,occurrenceRemarks withheld,2021,2,21,Australia,AU,New South Wales,-33.65595,149.439474,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.298561,149.318201,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.447223,150.516521,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.452916,150.519856,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,10,Australia,AU,New South Wales,-29.483465,153.094928,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004101,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-28.873864,153.217687,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.430947,150.615948,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.445967,150.512869,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.419089,150.61028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.388858,150.631041,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131J,1,,occurrenceRemarks withheld,2023,10,6,Australia,AU,New South Wales,-31.480608,152.921877,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.455263,150.659902,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2023,5,23,Australia,AU,New South Wales,-34.078738,150.837478,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.447142,150.519668,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-34.393761,150.644497,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081703,1,,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-31.560491,152.209798,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,21,Australia,AU,New South Wales,-34.42056,150.630734,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,4,Australia,AU,New South Wales,-34.432797,150.520919,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-32.725515,152.077239,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,1,28,Australia,AU,New South Wales,-31.263642,152.889071,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.423728,150.637466,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.434527,150.606793,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,10,5,Australia,AU,New South Wales,-30.099383,152.177441,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031823,1,,occurrenceRemarks withheld,2022,11,7,Australia,AU,New South Wales,-28.782321,153.514233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427033,150.604809,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-31.629845,152.786474,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,28,Australia,AU,New South Wales,-34.440276,150.617261,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210N,1,,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-32.732744,152.014627,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2022,11,10,Australia,AU,New South Wales,-34.068546,150.842335,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-31.468197,152.901709,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,MALE,occurrenceRemarks withheld,2023,5,7,Australia,AU,New South Wales,-28.994479,153.298615,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,16,Australia,AU,New South Wales,-33.715627,150.785544,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.443815,150.516066,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.419733,150.611393,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2022,2,26,Australia,AU,New South Wales,-31.904265,152.353992,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091907,1,MALE,occurrenceRemarks withheld,2024,9,2,Australia,AU,New South Wales,-32.059492,152.543334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,2,Australia,AU,New South Wales,-34.447107,150.513934,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.447395,150.517016,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.399853,150.617353,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,15,Australia,AU,New South Wales,-29.489157,153.103269,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.419296,150.609828,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.389872,150.627532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.399142,150.639757,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.384447,150.625326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-34.445672,150.513857,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,9,13,Australia,AU,New South Wales,-29.487528,153.091028,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.465351,150.523113,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.431023,150.613835,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.458747,150.661013,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-34.429595,150.60997,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,1,3,Australia,AU,New South Wales,-34.298171,150.735521,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.294545,153.124429,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-34.085987,150.833136,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.3931,150.639187,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,27,Australia,AU,New South Wales,-30.885013,152.777302,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-34.437855,150.616546,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.45532,150.606984,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,MALE,occurrenceRemarks withheld,2020,12,2,Australia,AU,New South Wales,-28.990842,153.437824,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.395375,150.630031,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,4,1,Australia,AU,New South Wales,-32.71109,152.065376,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.456551,150.519531,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-28.399617,153.556043,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,4,20,Australia,AU,New South Wales,-31.303312,152.870156,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.842289,153.316666,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-28.326579,153.465827,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.475231,152.867852,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.439398,150.618929,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303290H,1,,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,6,Australia,AU,New South Wales,-31.449309,152.926025,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.941392,153.361038,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,3,5,Australia,AU,New South Wales,-31.912724,152.359068,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.436974,150.603285,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-34.045432,151.008633,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,8,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OJJS20040702,1,,occurrenceRemarks withheld,2023,10,19,Australia,AU,New South Wales,-29.49028,153.110608,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401110F,1,,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-32.737588,152.088396,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.651646,149.941793,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011012,1,,occurrenceRemarks withheld,2022,4,12,Australia,AU,New South Wales,-32.728513,152.00351,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2022,6,22,Australia,AU,New South Wales,-30.22867,152.633033,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-33.709233,150.78601,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181B,1,,occurrenceRemarks withheld,2022,9,13,Australia,AU,New South Wales,-28.637454,153.629182,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2022,12,28,Australia,AU,New South Wales,-34.492082,150.472157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.42047,150.609468,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,30,Australia,AU,New South Wales,-29.487579,153.111016,EPSG:4326 +HUMAN_OBSERVATION,ODMP22022414,1,,occurrenceRemarks withheld,2022,1,24,Australia,AU,New South Wales,-32.698016,151.765357,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-28.959978,153.395134,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866891,153.343646,EPSG:4326 +HUMAN_OBSERVATION,OPXC10112400;OJKB21083004;ODMP22110900,1,MALE,occurrenceRemarks withheld,2021,10,,Australia,AU,New South Wales,-36.309402,149.343492,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180E,1,MALE,occurrenceRemarks withheld,2022,9,26,Australia,AU,New South Wales,-28.650293,153.343041,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-31.924406,152.359003,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,24,Australia,AU,New South Wales,-31.452603,152.925913,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.434481,150.616424,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,19,Australia,AU,New South Wales,-28.843092,153.434097,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,10,17,Australia,AU,New South Wales,-34.100569,150.81033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.39251,150.633885,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,27,Australia,AU,New South Wales,-33.703676,150.787261,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,FEMALE,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-28.844532,153.302753,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.449825,150.610394,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,2,6,Australia,AU,New South Wales,-28.635342,153.549036,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.463743,150.523879,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210D,1,,occurrenceRemarks withheld,2021,3,10,Australia,AU,New South Wales,-32.764968,152.035894,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,3,29,Australia,AU,New South Wales,-29.479743,153.104205,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,14,Australia,AU,New South Wales,-33.71601,150.785008,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.463814,150.523822,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.439407,150.603727,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,13,Australia,AU,New South Wales,-29.490591,153.108156,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,FEMALE,occurrenceRemarks withheld,2021,1,21,Australia,AU,New South Wales,-29.667173,152.868147,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,12,20,Australia,AU,New South Wales,-29.47971,153.104197,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,12,4,Australia,AU,New South Wales,-31.440613,152.90886,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.447332,150.513046,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004080,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-28.813729,153.338339,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,1,1,Australia,AU,New South Wales,-32.732632,152.028485,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202010B,1,,occurrenceRemarks withheld,2022,7,29,Australia,AU,New South Wales,-28.784836,152.089026,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,6,29,Australia,AU,New South Wales,-30.382081,152.935083,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.439479,150.619405,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-31.434633,152.888231,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,9,8,Australia,AU,New South Wales,-28.217436,153.531628,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,FEMALE,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-29.492989,152.828321,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.455053,150.609897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.447171,150.513094,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.419907,150.637987,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.420623,150.628415,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.420527,150.610522,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.389577,150.627193,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.391281,150.644947,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.420214,150.637532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.437076,150.602978,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,10,5,Australia,AU,New South Wales,-31.489423,152.905423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-34.403923,150.642211,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,12,31,Australia,AU,New South Wales,-29.490479,153.109363,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,4,15,Australia,AU,New South Wales,-29.019628,153.394095,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2022,6,2,Australia,AU,New South Wales,-30.46038,151.60109,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.459263,150.534558,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-32.231881,152.200143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.451539,150.604001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.427169,150.603979,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.433054,150.613973,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2022,1,10,Australia,AU,New South Wales,-32.611168,151.781251,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.450542,150.597347,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,2,2,Australia,AU,New South Wales,-33.565048,151.168685,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-28.687821,153.609158,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.447403,150.516994,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-29.010897,153.270147,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,9,Australia,AU,New South Wales,-29.485314,153.103956,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.417622,150.603044,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.471357,150.528988,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,3,18,Australia,AU,New South Wales,-31.474602,152.919486,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,30,Australia,AU,New South Wales,-31.469108,152.9197,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-28.824085,153.297436,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,13,Australia,AU,New South Wales,-29.489788,153.101767,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.438483,150.604385,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-28.665174,153.282528,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-28.666544,153.509243,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.44878,150.51642,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,6,26,Australia,AU,New South Wales,-31.444809,152.910145,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.092213,150.837726,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.175957,150.803232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.429599,150.618043,EPSG:4326 +HUMAN_OBSERVATION,OLHP2312140H,1,FEMALE,occurrenceRemarks withheld,2020,8,28,Australia,AU,New South Wales,-28.963487,153.307137,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.393143,150.645156,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.478946,150.533401,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.455014,150.609757,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,9,7,Australia,AU,New South Wales,-33.491212,149.552127,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003868,1,FEMALE,occurrenceRemarks withheld,2023,5,21,Australia,AU,New South Wales,-28.959084,153.39393,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.395148,150.629025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.465127,150.522292,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.435669,150.616314,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,20,Australia,AU,New South Wales,-28.373982,153.558056,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.421177,150.626278,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.4296,150.614855,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.465491,150.520246,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-29.485716,153.103736,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-29.477866,153.10431,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,FEMALE,occurrenceRemarks withheld,2022,10,24,Australia,AU,New South Wales,-32.65304,151.95424,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.492661,150.638887,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-29.490089,153.100896,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-29.479402,153.104015,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130B,1,,occurrenceRemarks withheld,2023,10,20,Australia,AU,New South Wales,-30.379066,153.031304,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.568735,149.958935,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.458236,150.657881,EPSG:4326 +HUMAN_OBSERVATION,Obs_0423,1,,occurrenceRemarks withheld,2024,7,22,Australia,AU,New South Wales,-32.561276,151.794683,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.41182,150.599119,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-31.439524,152.886664,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-34.446321,150.517385,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.395005,150.6412,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,24,Australia,AU,New South Wales,-28.853089,153.584803,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311130D,1,MALE,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-31.989129,152.343432,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2020,6,16,Australia,AU,New South Wales,-36.432507,149.961734,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-31.448241,152.894957,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.430981,150.615392,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.394303,150.630093,EPSG:4326 +HUMAN_OBSERVATION,OIXR1511120C,1,,occurrenceRemarks withheld,2022,4,14,Australia,AU,New South Wales,-29.053097,153.308724,EPSG:4326 +HUMAN_OBSERVATION,OPJG16091402,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-32.378769,152.254457,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.424565,150.60451,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.389566,150.627106,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,6,20,Australia,AU,New South Wales,-30.389392,153.024681,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091703,1,,occurrenceRemarks withheld,2021,10,26,Australia,AU,New South Wales,-34.099195,150.808191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.426719,150.604938,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,18,Australia,AU,New South Wales,-28.81335,153.334391,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2020,10,2,Australia,AU,New South Wales,-34.098144,150.808265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.418842,150.632795,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,23,Australia,AU,New South Wales,-29.490661,153.109315,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.193844,152.716871,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.43677,150.602551,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-28.670068,153.523414,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.487753,150.634954,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004029,1,MALE,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-28.808432,153.425848,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-29.336773,152.939011,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.448723,150.515834,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.463783,150.523148,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,10,10,Australia,AU,New South Wales,-31.476299,152.925913,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.452109,150.523178,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.560944,149.994744,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,2,27,Australia,AU,New South Wales,-32.706031,152.063362,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,MALE,occurrenceRemarks withheld,2021,11,29,Australia,AU,New South Wales,-29.667378,152.868083,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.370469,150.367836,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-29.736919,152.940685,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-34.437881,150.515992,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.443412,152.898147,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,24,Australia,AU,New South Wales,-34.386196,150.625809,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,5,17,Australia,AU,New South Wales,-33.771553,150.056193,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,4,20,Australia,AU,New South Wales,-33.710408,150.786211,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.455113,150.658632,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-33.703382,150.787828,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-29.505069,152.82411,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,9,17,Australia,AU,New South Wales,-30.312989,153.119262,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,FEMALE,occurrenceRemarks withheld,2023,10,23,Australia,AU,New South Wales,-32.70637,152.06338,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-31.151319,152.788816,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-36.497108,149.942556,EPSG:4326 +HUMAN_OBSERVATION,ODMP23020604,1,,occurrenceRemarks withheld,2022,12,26,Australia,AU,New South Wales,-28.809405,153.528025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.438777,150.603321,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-34.386274,150.624252,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.425061,150.601286,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.459466,150.521894,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.436318,150.61585,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2021,12,14,Australia,AU,New South Wales,-31.459099,152.928694,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,FEMALE,occurrenceRemarks withheld,2022,7,11,Australia,AU,New South Wales,-34.019362,150.885263,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-31.923917,152.383625,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.465865,150.522695,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-28.821749,153.331243,EPSG:4326 +HUMAN_OBSERVATION,ODFK2312070B,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-29.488433,153.112711,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004222,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.728134,153.450547,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042U,1,MALE,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-34.245314,150.699196,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-28.822624,153.281192,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004193,1,FEMALE,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-28.866843,153.408399,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2023,4,15,Australia,AU,New South Wales,-34.202078,150.788914,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-29.450991,153.077049,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-29.032133,152.985867,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.436192,150.615886,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.485556,150.63605,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2022,8,2,Australia,AU,New South Wales,-29.482101,153.104176,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032808,1,,occurrenceRemarks withheld,2023,9,29,Australia,AU,New South Wales,-31.44678,152.9259,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,2,Australia,AU,New South Wales,-29.489867,153.101247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.419117,150.610322,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.436192,150.615886,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-34.046584,150.848222,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,2,Australia,AU,New South Wales,-31.859414,152.682102,EPSG:4326 +HUMAN_OBSERVATION,OJBL99022300,1,FEMALE,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-32.00729,151.958138,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101U,1,,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-31.470377,152.930138,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,FEMALE,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,4,25,Australia,AU,New South Wales,-32.3727,150.6989,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-31.442396,152.907682,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,25,Australia,AU,New South Wales,-29.485481,153.103627,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,21,Australia,AU,New South Wales,-29.485328,153.104085,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.459948,150.524339,EPSG:4326 +HUMAN_OBSERVATION,ODDP13030700,1,FEMALE,occurrenceRemarks withheld,2022,4,13,Australia,AU,New South Wales,-29.46089,150.080376,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.8186,153.277965,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,FEMALE,occurrenceRemarks withheld,2023,2,17,Australia,AU,New South Wales,-31.44848,152.878917,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-29.320973,152.896427,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.578885,149.968131,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2022,3,29,Australia,AU,New South Wales,-32.515486,151.78609,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.388316,150.630056,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021800,1,,occurrenceRemarks withheld,2024,6,10,Australia,AU,New South Wales,-30.505908,152.919618,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-29.485235,153.104042,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2024,8,10,Australia,AU,New South Wales,-31.438946,152.887816,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.446286,150.513904,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.456559,150.519487,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.839565,153.279241,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031812,1,,occurrenceRemarks withheld,2023,7,28,Australia,AU,New South Wales,-28.598288,153.090199,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2022,8,30,Australia,AU,New South Wales,-36.297668,149.316085,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.466752,150.521069,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,9,23,Australia,AU,New South Wales,-31.344344,152.721327,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,7,7,Australia,AU,New South Wales,-31.481143,152.907539,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-714,1,,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.484926,152.782861,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,5,27,Australia,AU,New South Wales,-31.457371,152.917368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.38813,150.631159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.419178,150.610212,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-33.753414,150.115652,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.451592,150.51724,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,11,6,Australia,AU,New South Wales,-31.450143,152.929026,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.446356,150.517362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,30,Australia,AU,New South Wales,-34.41974,150.632618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.388629,150.630406,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004277,1,,occurrenceRemarks withheld,2023,8,26,Australia,AU,New South Wales,-28.606017,153.436993,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.420914,150.630387,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,10,19,Australia,AU,New South Wales,-31.476858,152.926095,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-28.814419,153.334325,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.400618,150.624249,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,12,12,Australia,AU,New South Wales,-32.706584,152.063111,EPSG:4326 +HUMAN_OBSERVATION,ODFK2405201A,1,,occurrenceRemarks withheld,2024,3,4,Australia,AU,New South Wales,-31.443011,152.91134,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,17,Australia,AU,New South Wales,-34.43873,150.604095,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.570187,149.979238,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-32.731611,152.039783,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.49122,150.638503,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.48813,150.635814,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,12,10,Australia,AU,New South Wales,-29.602081,151.413379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.394022,150.630939,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.435001,150.608902,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.437846,150.605001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.446493,150.513473,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,1,Australia,AU,New South Wales,-34.436645,150.519924,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-31.47889,152.915406,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-34.447145,150.513128,EPSG:4326 +HUMAN_OBSERVATION,Obs_1972,1,MALE,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-28.398675,153.556042,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.424962,150.604031,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.444713,150.51592,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,8,Australia,AU,New South Wales,-28.830976,153.229425,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.421915,150.627606,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,3,6,Australia,AU,New South Wales,-33.706893,150.785888,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,14,Australia,AU,New South Wales,-29.48558,153.103854,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,11,1,Australia,AU,New South Wales,-34.031656,151.031397,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-33.774089,150.063479,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.447169,150.514346,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;ODMP2212210P;ODMP2212210Q;OLHP2311100C,1,,occurrenceRemarks withheld,2022,5,19,Australia,AU,New South Wales,-30.075486,152.257472,EPSG:4326 +HUMAN_OBSERVATION,OPUR15021900;OJJS20070600,1,,occurrenceRemarks withheld,2021,2,21,Australia,AU,New South Wales,-29.492994,151.970947,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,10,Australia,AU,New South Wales,-34.454975,150.600398,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.397319,150.622895,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-33.713683,150.784784,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.420006,150.634242,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2020,8,29,Australia,AU,New South Wales,-31.85809,152.355785,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,31,Australia,AU,New South Wales,-28.396817,153.557802,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.452537,150.603885,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.440309,150.517443,EPSG:4326 +HUMAN_OBSERVATION,OEMM0911130Y,1,MALE,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-37.177314,149.355934,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,12,22,Australia,AU,New South Wales,-29.47753,153.104256,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,28,Australia,AU,New South Wales,-29.485716,153.103457,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,7,27,Australia,AU,New South Wales,-31.121882,152.814073,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.436395,150.609645,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.448082,150.519346,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090404,1,,occurrenceRemarks withheld,2023,8,29,Australia,AU,New South Wales,-33.491096,149.552086,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,9,Australia,AU,New South Wales,-34.447979,150.524932,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,1,21,Australia,AU,New South Wales,-28.63718,153.62828,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2021,7,23,Australia,AU,New South Wales,-31.230772,152.732487,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.941392,153.361038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.420306,150.62739,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,9,27,Australia,AU,New South Wales,-29.489582,153.101671,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.457449,150.518438,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,27,Australia,AU,New South Wales,-34.397203,150.639256,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.486724,153.103248,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,13,Australia,AU,New South Wales,-34.456513,150.52788,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.385685,150.626878,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,5,Australia,AU,New South Wales,-28.575997,153.511551,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,8,24,Australia,AU,New South Wales,-31.454545,152.916246,EPSG:4326 +HUMAN_OBSERVATION,OIXR15092200,1,,occurrenceRemarks withheld,2023,6,9,Australia,AU,New South Wales,-32.67215,151.691331,EPSG:4326 +HUMAN_OBSERVATION,SHARM,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-32.569722,149.636113,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071101,1,,occurrenceRemarks withheld,2024,5,7,Australia,AU,New South Wales,-32.200299,152.134042,EPSG:4326 +HUMAN_OBSERVATION,OLHP2402150H,1,,occurrenceRemarks withheld,2024,1,16,Australia,AU,New South Wales,-30.908334,152.858631,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.45296,150.521607,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.427229,150.603313,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,ODFK23080908,1,,occurrenceRemarks withheld,2023,6,8,Australia,AU,New South Wales,-34.1207,150.80354,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,8,Australia,AU,New South Wales,-29.490227,153.108156,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.421223,150.626331,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111509,1,,occurrenceRemarks withheld,2020,12,24,Australia,AU,New South Wales,-33.528552,150.659947,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-31.454996,152.927654,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,FEMALE,occurrenceRemarks withheld,2022,8,15,Australia,AU,New South Wales,-29.478487,153.104112,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-34.191884,150.784861,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.420102,150.631313,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.390466,150.62608,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.487723,150.636196,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.418903,150.632706,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,2,10,Australia,AU,New South Wales,-31.444491,152.904658,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-34.459917,150.52545,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,1,4,Australia,AU,New South Wales,-31.450542,152.915031,EPSG:4326 +HUMAN_OBSERVATION,OPJG18122002,1,,occurrenceRemarks withheld,2020,1,6,Australia,AU,New South Wales,-30.215801,152.793722,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401101A,1,,occurrenceRemarks withheld,2023,11,14,Australia,AU,New South Wales,-29.580973,152.839469,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.452593,150.519942,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,8,Australia,AU,New South Wales,-34.447903,150.520277,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031821,1,FEMALE,occurrenceRemarks withheld,2022,11,18,Australia,AU,New South Wales,-28.825256,153.324544,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,3,5,Australia,AU,New South Wales,-28.400103,153.556825,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004278,1,,occurrenceRemarks withheld,2023,8,19,Australia,AU,New South Wales,-28.865479,153.294555,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-31.467513,152.930176,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,4,Australia,AU,New South Wales,-28.818247,153.335602,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,12,7,Australia,AU,New South Wales,-34.4396,150.618673,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,9,Australia,AU,New South Wales,-29.485613,153.103468,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,2,FEMALE,occurrenceRemarks withheld,2024,9,15,Australia,AU,New South Wales,-29.773032,151.059914,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.449769,150.61722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.465518,150.52559,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2020,5,20,Australia,AU,New South Wales,-31.465781,152.927752,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.45059,150.603908,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.450043,150.516481,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-31.85809,152.355785,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.390582,150.626468,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-28.261421,153.471685,EPSG:4326 +HUMAN_OBSERVATION,ODMP96122300,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-32.055032,151.647073,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.392883,150.632646,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001595,1,,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-32.664396,151.808172,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,,Australia,AU,New South Wales,-32.739393,152.062901,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,31,Australia,AU,New South Wales,-29.489582,153.103945,EPSG:4326 +HUMAN_OBSERVATION,OPJG23121500,1,,occurrenceRemarks withheld,2022,10,7,Australia,AU,New South Wales,-30.40733,152.995718,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020301,1,MALE,occurrenceRemarks withheld,2023,9,4,Australia,AU,New South Wales,-31.454381,152.925167,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,2,Australia,AU,New South Wales,-29.483708,153.10409,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.910046,153.346548,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,9,Australia,AU,New South Wales,-30.163734,152.723198,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150R,1,MALE,occurrenceRemarks withheld,2022,9,9,Australia,AU,New South Wales,-28.889524,153.184716,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700,1,,occurrenceRemarks withheld,2020,4,29,Australia,AU,New South Wales,-28.257777,153.400663,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003883,1,,occurrenceRemarks withheld,2023,2,14,Australia,AU,New South Wales,-28.88355,153.256332,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-31.403015,152.093798,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2024,6,8,Australia,AU,New South Wales,-34.625558,150.192626,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.386199,150.625461,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-28.910046,153.346548,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.42384,150.637191,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.430952,150.615752,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-36.271187,149.960569,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150M,1,MALE,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-28.676101,153.280877,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.43035,150.616792,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.38936,150.62672,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002830,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-29.424245,153.193671,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,2,12,Australia,AU,New South Wales,-31.437056,152.905563,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.388063,150.624462,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-30.437334,152.98111,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,FEMALE,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-32.64281,151.57961,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,1,29,Australia,AU,New South Wales,-29.490119,153.110522,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,3,30,Australia,AU,New South Wales,-31.470255,152.903766,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.479575,150.533263,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.494136,150.640566,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100610,1,FEMALE,occurrenceRemarks withheld,2023,9,10,Australia,AU,New South Wales,-31.468337,152.925045,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.430888,150.608333,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-29.48791,153.102481,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.587028,149.887989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.452014,150.517195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.388089,150.624407,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.386624,150.627396,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040E,1,,occurrenceRemarks withheld,2023,8,13,Australia,AU,New South Wales,-31.192666,152.970025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.464253,150.523646,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.454786,150.52004,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,FEMALE,occurrenceRemarks withheld,2020,3,29,Australia,AU,New South Wales,-31.459146,152.929108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-34.438695,150.604618,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,30,Australia,AU,New South Wales,-29.488079,153.091532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.444691,150.514386,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2021,11,24,Australia,AU,New South Wales,-32.705979,152.063686,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,20,Australia,AU,New South Wales,-29.485155,153.104026,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.818579,153.296004,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003875,1,,occurrenceRemarks withheld,2023,1,19,Australia,AU,New South Wales,-28.820603,153.318536,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071101,1,,occurrenceRemarks withheld,2024,5,9,Australia,AU,New South Wales,-32.655936,152.035146,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.440726,150.603853,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.420803,150.629781,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-33.710825,150.784933,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.186864,150.801061,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004171,1,FEMALE,occurrenceRemarks withheld,2023,9,23,Australia,AU,New South Wales,-28.672094,153.491353,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.395872,150.629168,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.397548,150.640334,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.432045,150.612163,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.43382,150.607956,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-31.466373,152.927676,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-31.445977,152.904658,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,29,Australia,AU,New South Wales,-36.151214,149.328001,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-34.460344,150.516989,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.420509,150.637404,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,11,13,Australia,AU,New South Wales,-31.454161,152.925178,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.465672,150.520295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.491341,150.639142,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-31.12504,150.011428,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-28.830771,153.283518,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-28.612152,153.475189,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090503;OLHP23090504,1,FEMALE,occurrenceRemarks withheld,2023,1,27,Australia,AU,New South Wales,-30.493965,152.941789,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2023,7,24,Australia,AU,New South Wales,-34.11278,150.798126,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.386343,150.627338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.438095,150.604396,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220E,1,,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-32.738539,152.025304,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.437602,150.607272,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090808,1,,occurrenceRemarks withheld,2022,1,6,Australia,AU,New South Wales,-33.998837,150.900994,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150C,1,,occurrenceRemarks withheld,2021,11,8,Australia,AU,New South Wales,-31.474508,152.919189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,31,Australia,AU,New South Wales,-34.443882,150.514498,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-33.717367,150.784028,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,4,16,Australia,AU,New South Wales,-33.52261,150.65549,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,10,Australia,AU,New South Wales,-34.447107,150.513074,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,12,,Australia,AU,New South Wales,-34.533564,150.600987,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,MALE,occurrenceRemarks withheld,2020,2,27,Australia,AU,New South Wales,-31.470536,152.918296,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-28.675791,153.60798,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,3,Australia,AU,New South Wales,-29.489554,153.10394,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,17,Australia,AU,New South Wales,-33.708241,150.785269,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,3,16,Australia,AU,New South Wales,-28.849375,153.304941,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-36.656844,149.987591,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,MALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-31.629485,152.785737,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-31.637733,152.790133,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,17,Australia,AU,New South Wales,-29.490133,153.110533,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,30,Australia,AU,New South Wales,-29.487677,153.090974,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.463355,150.535003,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-32.115553,151.809884,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,MALE,occurrenceRemarks withheld,2022,1,19,Australia,AU,New South Wales,-29.679799,152.875764,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.469281,150.526643,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-29.490675,153.10932,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.390924,150.643718,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,MALE,occurrenceRemarks withheld,2021,11,28,Australia,AU,New South Wales,-29.667173,152.867632,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,12,13,Australia,AU,New South Wales,-32.735486,152.139095,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040421,1,FEMALE,occurrenceRemarks withheld,2023,4,5,Australia,AU,New South Wales,-29.692524,152.851464,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.452446,150.523788,EPSG:4326 +HUMAN_OBSERVATION,ODMP21060800,1,MALE,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-29.735054,152.930509,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.436476,150.603648,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.450207,150.516095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.451496,150.522282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.435184,150.609027,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-28.644521,153.454566,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.436573,150.607682,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,MALE,occurrenceRemarks withheld,2021,12,26,Australia,AU,New South Wales,-34.094974,150.961718,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.412885,150.598251,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,1,5,Australia,AU,New South Wales,-32.070198,152.300601,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,1,Australia,AU,New South Wales,-34.142436,150.794729,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.420837,150.630139,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.445857,150.514515,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,5,Australia,AU,New South Wales,-29.485548,153.103913,EPSG:4326 +HUMAN_OBSERVATION,DOUS-HO,1,,occurrenceRemarks withheld,2024,3,7,Australia,AU,New South Wales,-34.729131,150.451033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.433105,150.605071,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,10,7,Australia,AU,New South Wales,-29.487238,153.111005,EPSG:4326 +HUMAN_OBSERVATION,OJJS18102409,1,,occurrenceRemarks withheld,2021,11,9,Australia,AU,New South Wales,-32.721854,151.996814,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-34.49254,150.47153,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,23,Australia,AU,New South Wales,-31.125745,152.801965,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,7,19,Australia,AU,New South Wales,-28.669044,153.325401,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,8,17,Australia,AU,New South Wales,-28.237636,153.515052,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.418922,150.632771,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-28.285188,152.525805,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132R,1,,occurrenceRemarks withheld,2023,10,31,Australia,AU,New South Wales,-31.415256,152.897218,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181V,1,,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-28.817112,153.30459,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2024,1,2,Australia,AU,New South Wales,-33.716387,150.784436,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031527,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-28.849906,153.315879,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.418911,150.609512,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OJJS20040702,1,,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-29.49025,153.110738,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-31.923096,152.371305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.397068,150.642044,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.394531,150.632099,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.464653,150.523373,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030K,1,MALE,occurrenceRemarks withheld,2022,6,29,Australia,AU,New South Wales,-34.745121,146.53454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.447181,150.518916,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.448445,150.516767,EPSG:4326 +HUMAN_OBSERVATION,OJJS10042000,1,,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-32.967069,151.587159,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,3,Australia,AU,New South Wales,-33.706526,150.786202,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-28.647359,153.601971,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.565645,149.999247,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.434809,150.615207,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2023,11,5,Australia,AU,New South Wales,-31.914598,152.373789,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.394537,150.642659,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,18,Australia,AU,New South Wales,-29.488181,153.092347,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-31.457184,152.921693,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-32.632576,152.00028,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-28.387771,153.325549,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.070234,150.842133,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP23070402,1,,occurrenceRemarks withheld,2022,10,6,Australia,AU,New South Wales,-30.435307,152.948551,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,FEMALE,occurrenceRemarks withheld,2022,10,18,Australia,AU,New South Wales,-34.101855,150.821368,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-28.393996,153.560115,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2021,1,26,Australia,AU,New South Wales,-33.77383,150.062851,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308251E,1,,occurrenceRemarks withheld,2020,5,30,Australia,AU,New South Wales,-32.662336,152.171587,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-29.485627,153.103731,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.429445,150.616589,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.559404,149.938213,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-31.453571,152.925478,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.465655,150.52035,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,MALE,occurrenceRemarks withheld,2020,3,25,Australia,AU,New South Wales,-34.500838,150.204711,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.463036,150.519655,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-29.484203,153.104106,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,17,Australia,AU,New South Wales,-31.459061,152.92622,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-34.385911,150.624588,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160M,1,,occurrenceRemarks withheld,2022,10,15,Australia,AU,New South Wales,-34.059901,150.99975,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.423809,150.637431,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,29,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011000,1,,occurrenceRemarks withheld,2023,8,23,Australia,AU,New South Wales,-32.23314,152.21157,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.455435,150.607775,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-29.488564,153.093479,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,11,Australia,AU,New South Wales,-34.420946,150.630201,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,3,15,Australia,AU,New South Wales,-28.396494,153.557721,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,10,18,Australia,AU,New South Wales,-31.464152,152.928613,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032807,1,,occurrenceRemarks withheld,2022,9,1,Australia,AU,New South Wales,-32.649084,149.945905,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-33.714067,150.785071,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-34.445726,150.513866,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.402485,152.138047,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,5,18,Australia,AU,New South Wales,-29.021761,153.284425,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-29.631042,152.899282,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.449979,150.516417,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.46282,150.524124,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210Y,1,,occurrenceRemarks withheld,2020,9,14,Australia,AU,New South Wales,-32.768873,152.02908,EPSG:4326 +HUMAN_OBSERVATION,WARC-BM,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-33.383311,151.466275,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.655143,153.4627,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.466269,150.523053,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-31.459148,152.926202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,30,Australia,AU,New South Wales,-34.437485,150.519573,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,12,Australia,AU,New South Wales,-36.547042,150.003238,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-31.241898,152.901678,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,11,6,Australia,AU,New South Wales,-34.068546,150.842335,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-28.841696,153.560036,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-29.488695,153.103581,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404041A,1,MALE,occurrenceRemarks withheld,2022,9,24,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,12,3,Australia,AU,New South Wales,-34.021287,150.987654,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-28.241573,153.488066,EPSG:4326 +HUMAN_OBSERVATION,OIXR16111000,1,FEMALE,occurrenceRemarks withheld,2020,5,10,Australia,AU,New South Wales,-34.040711,150.872102,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-29.485562,153.10379,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2024,1,9,Australia,AU,New South Wales,-31.44103,152.8833,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-31.480891,152.922074,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040424,1,MALE,occurrenceRemarks withheld,2022,12,11,Australia,AU,New South Wales,-31.439121,152.916379,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,FEMALE,occurrenceRemarks withheld,2021,9,29,Australia,AU,New South Wales,-34.188363,150.797684,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.427292,150.604704,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,27,Australia,AU,New South Wales,-34.447446,150.519093,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160J,1,,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-32.73257,152.106467,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.465859,150.522401,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110220Q,1,,occurrenceRemarks withheld,2020,9,12,Australia,AU,New South Wales,-32.711371,152.160391,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.447239,150.513767,EPSG:4326 +HUMAN_OBSERVATION,OJKB22031418,1,MALE,occurrenceRemarks withheld,2021,10,16,Australia,AU,New South Wales,-31.200174,152.938154,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,5,27,Australia,AU,New South Wales,-33.771309,150.056169,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-30.298635,153.120587,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.400162,150.622576,EPSG:4326 +HUMAN_OBSERVATION,GOLDI-NO,1,,occurrenceRemarks withheld,2020,,,Australia,AU,New South Wales,-28.837264,152.743428,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,30,Australia,AU,New South Wales,-29.490105,153.110538,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,7,Australia,AU,New South Wales,-29.482204,153.104262,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.392883,150.632646,EPSG:4326 +HUMAN_OBSERVATION,WONG-NO,1,,occurrenceRemarks withheld,2021,9,26,Australia,AU,New South Wales,-34.498603,150.554112,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,5,Australia,AU,New South Wales,-28.258526,153.402091,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022523,1,,occurrenceRemarks withheld,2020,3,15,Australia,AU,New South Wales,-29.78653,151.19597,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.417574,150.633418,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2023,12,6,Australia,AU,New South Wales,-30.229746,152.640543,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-28.570486,153.151906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,1,Australia,AU,New South Wales,-34.42121,150.627093,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,FEMALE,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-33.127055,151.242835,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,3,21,Australia,AU,New South Wales,-29.477502,153.104444,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,3,23,Australia,AU,New South Wales,-31.920313,152.405107,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.420803,150.629781,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,MALE,occurrenceRemarks withheld,2023,2,5,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.449846,150.603222,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,16,Australia,AU,New South Wales,-31.462423,152.870436,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,FEMALE,occurrenceRemarks withheld,2022,4,21,Australia,AU,New South Wales,-31.915653,152.373971,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-29.490507,153.109428,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-34.90812,150.05172,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,4,20,Australia,AU,New South Wales,-31.519661,152.879645,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-34.106856,150.956718,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210F,1,,occurrenceRemarks withheld,2022,11,10,Australia,AU,New South Wales,-32.748535,152.068796,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,16,Australia,AU,New South Wales,-36.632151,149.941399,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.466738,150.521298,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-31.419488,152.107655,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,12,14,Australia,AU,New South Wales,-29.662087,152.878736,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.464176,150.522092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.430359,150.616781,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-28.842379,153.403951,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,15,Australia,AU,New South Wales,-29.182812,153.002523,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,9,2,Australia,AU,New South Wales,-28.68266,153.48781,EPSG:4326 +HUMAN_OBSERVATION,OPRS04081700,1,,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-29.803991,152.811916,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,31,Australia,AU,New South Wales,-30.333952,153.055997,EPSG:4326 +HUMAN_OBSERVATION,OJJS1910020G,1,,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-33.526603,150.659001,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.458798,150.528944,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.447763,150.518735,EPSG:4326 +HUMAN_OBSERVATION,OLHP2309040A,1,FEMALE,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-34.045428,151.008583,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.389942,150.627867,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,25,Australia,AU,New South Wales,-28.835621,153.127675,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.418868,150.63274,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,2,22,Australia,AU,New South Wales,-28.844797,153.317596,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.447804,150.514969,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.864604,153.293124,EPSG:4326 +HUMAN_OBSERVATION,BREHS-HO,1,,occurrenceRemarks withheld,2020,7,29,Australia,AU,New South Wales,-33.404535,151.088534,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100510,1,,occurrenceRemarks withheld,2023,9,14,Australia,AU,New South Wales,-32.612569,151.84928,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002784,1,,occurrenceRemarks withheld,2021,9,16,Australia,AU,New South Wales,-29.505522,152.824717,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.435763,150.616072,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,9,11,Australia,AU,New South Wales,-34.184731,150.791382,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,26,Australia,AU,New South Wales,-31.63346,152.281838,EPSG:4326 +HUMAN_OBSERVATION,ODMP21102206,1,,occurrenceRemarks withheld,2020,12,25,Australia,AU,New South Wales,-32.697701,151.696001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-34.447267,150.512928,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-28.237356,153.467083,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004210,1,,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-28.665765,153.392503,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.575978,149.984095,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160J,1,,occurrenceRemarks withheld,2022,12,14,Australia,AU,New South Wales,-32.732497,152.104709,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-34.319304,150.726552,EPSG:4326 +HUMAN_OBSERVATION,OJJS20101306,1,,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-33.511111,150.733297,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,25,Australia,AU,New South Wales,-34.420228,150.610432,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-880,1,,occurrenceRemarks withheld,2021,1,15,Australia,AU,New South Wales,-30.298281,153.12104,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.42235,150.637059,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,11,29,Australia,AU,New South Wales,-30.893434,152.794854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.439139,150.605215,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122109,1,,occurrenceRemarks withheld,2022,11,6,Australia,AU,New South Wales,-30.264717,153.111704,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-34.453922,150.520588,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.472592,150.52722,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031Q,1,,occurrenceRemarks withheld,2023,5,3,Australia,AU,New South Wales,-31.437331,152.896262,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211F,1,,occurrenceRemarks withheld,2022,11,25,Australia,AU,New South Wales,-32.732791,152.103528,EPSG:4326 +HUMAN_OBSERVATION,OCHV19051300,1,,occurrenceRemarks withheld,2020,1,4,Australia,AU,New South Wales,-29.667406,152.867965,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,9,3,Australia,AU,New South Wales,-28.816394,153.325439,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.486503,150.63562,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210L,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-32.728381,152.089896,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.419046,150.609454,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.459681,150.519145,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.383796,150.622908,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,5,24,Australia,AU,New South Wales,-28.864588,153.293266,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-29.490161,153.110511,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,22,Australia,AU,New South Wales,-31.536677,152.826246,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,,occurrenceRemarks withheld,2022,11,3,Australia,AU,New South Wales,-29.027561,153.40565,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-256,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-31.262756,152.819337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.490635,150.638563,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122106,1,,occurrenceRemarks withheld,2024,2,13,Australia,AU,New South Wales,-28.831073,153.279661,EPSG:4326 +HUMAN_OBSERVATION,OIXR16092900,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-32.299531,152.018253,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,9,10,Australia,AU,New South Wales,-29.487668,153.090904,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.435023,150.520396,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.43686,150.606705,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001217,1,,occurrenceRemarks withheld,,,,Australia,AU,New South Wales,-28.981717,153.440619,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,1,13,Australia,AU,New South Wales,-28.690975,153.605004,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,1,10,Australia,AU,New South Wales,-31.48619,152.915623,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.458564,150.663695,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,4,19,Australia,AU,New South Wales,-36.567944,149.950099,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-29.489577,153.103886,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.438125,150.616517,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004191,1,,occurrenceRemarks withheld,2023,8,24,Australia,AU,New South Wales,-29.016289,153.389441,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,1,18,Australia,AU,New South Wales,-34.110735,150.980224,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080104,1,,occurrenceRemarks withheld,2021,2,22,Australia,AU,New South Wales,-34.017372,150.885988,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,11,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.387338,150.630768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.464925,150.522124,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.551144,149.998977,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,FEMALE,occurrenceRemarks withheld,2020,4,18,Australia,AU,New South Wales,-33.780935,150.104419,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,4,16,Australia,AU,New South Wales,-29.485552,153.103956,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.435059,150.520417,EPSG:4326 +HUMAN_OBSERVATION,OLHP24021303,1,,occurrenceRemarks withheld,2024,1,28,Australia,AU,New South Wales,-34.011466,150.998516,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.420706,150.630839,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.388924,150.624209,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.465091,150.522326,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,22,Australia,AU,New South Wales,-31.432268,152.896049,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,10,13,Australia,AU,New South Wales,-28.960255,153.394348,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,28,Australia,AU,New South Wales,-36.040933,149.361279,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.423807,150.637355,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003989,1,MALE,occurrenceRemarks withheld,2023,1,18,Australia,AU,New South Wales,-28.883548,153.352221,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070H,1,,occurrenceRemarks withheld,2020,9,19,Australia,AU,New South Wales,-28.82599,153.314524,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.465716,150.521556,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032303,1,,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-29.027939,153.406134,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,11,11,Australia,AU,New South Wales,-29.485286,153.103999,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.437558,150.605053,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.420778,150.629912,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004094,1,,occurrenceRemarks withheld,2023,9,26,Australia,AU,New South Wales,-28.679386,153.27933,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,12,Australia,AU,New South Wales,-34.420422,150.630161,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,20,Australia,AU,New South Wales,-29.489685,153.104203,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2020,12,23,Australia,AU,New South Wales,-31.933379,152.415189,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.434687,150.606647,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-30.374914,153.017126,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,11,1,Australia,AU,New South Wales,-31.63871,152.794032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.449191,150.516255,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-30.091962,152.744978,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132R,1,,occurrenceRemarks withheld,2023,10,22,Australia,AU,New South Wales,-31.415267,152.897294,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003837,1,,occurrenceRemarks withheld,2023,2,10,Australia,AU,New South Wales,-28.639579,153.628991,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.466125,150.525724,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.466297,150.524446,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-32.589817,151.794214,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.465751,150.522404,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,7,Australia,AU,New South Wales,-34.9049,150.04942,EPSG:4326 +HUMAN_OBSERVATION,ODMP99111100,1,,occurrenceRemarks withheld,2021,11,18,Australia,AU,New South Wales,-29.074833,153.033864,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.386127,150.62456,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-28.29826,153.370721,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-34.101185,150.809757,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-33.301671,150.309858,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,11,24,Australia,AU,New South Wales,-31.443585,152.919119,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907171A,1,FEMALE,occurrenceRemarks withheld,2023,1,28,Australia,AU,New South Wales,-29.707279,152.879037,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,11,9,Australia,AU,New South Wales,-33.572779,150.666534,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-32.230264,152.196338,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,25,Australia,AU,New South Wales,-28.373789,153.558181,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-30.32537,153.10363,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.465035,150.524418,EPSG:4326 +HUMAN_OBSERVATION,OJJS1207250G,1,,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-32.729205,151.989877,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2021,12,24,Australia,AU,New South Wales,-34.103453,150.984288,EPSG:4326 +HUMAN_OBSERVATION,OPXE00110600,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-30.428515,153.019889,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-28.862228,153.335182,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,8,Australia,AU,New South Wales,-29.490142,153.108092,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-29.812061,152.807594,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.466261,150.523989,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2021,4,3,Australia,AU,New South Wales,-30.083636,152.216162,EPSG:4326 +HUMAN_OBSERVATION,OIXR16111000;OMFZ2303230D,1,FEMALE,occurrenceRemarks withheld,2023,4,30,Australia,AU,New South Wales,-34.097435,150.807693,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,30,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,7,3,Australia,AU,New South Wales,-29.485424,153.103878,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,8,2,Australia,AU,New South Wales,-33.712214,150.785537,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,10,15,Australia,AU,New South Wales,-31.457529,152.921954,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060805,1,,occurrenceRemarks withheld,2022,12,19,Australia,AU,New South Wales,-31.441551,152.91109,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,12,15,Australia,AU,New South Wales,-28.937203,153.278038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.418886,150.63274,EPSG:4326 +HUMAN_OBSERVATION,OJFO20102000,1,,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.638926,149.927266,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050C,1,,occurrenceRemarks withheld,2023,11,4,Australia,AU,New South Wales,-34.528125,150.289168,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100606,1,,occurrenceRemarks withheld,2023,9,25,Australia,AU,New South Wales,-31.440177,152.896755,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,10,Australia,AU,New South Wales,-34.420746,150.609264,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,6,24,Australia,AU,New South Wales,-28.260135,153.400746,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2023,10,16,Australia,AU,New South Wales,-30.321822,153.085277,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100B,1,,occurrenceRemarks withheld,2023,7,6,Australia,AU,New South Wales,-30.52251,152.904459,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181S,1,MALE,occurrenceRemarks withheld,2022,7,30,Australia,AU,New South Wales,-28.814468,153.313931,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,10,23,Australia,AU,New South Wales,-32.706601,152.065095,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-28.821061,153.272477,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-30.879092,153.069135,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004204,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-28.726205,153.327831,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,29,Australia,AU,New South Wales,-34.394776,150.642881,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.444963,150.515369,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030W,1,MALE,occurrenceRemarks withheld,2022,9,8,Australia,AU,New South Wales,-31.441098,152.903497,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-32.70769,152.066519,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-31.346927,152.722319,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040432,1,,occurrenceRemarks withheld,2023,2,24,Australia,AU,New South Wales,-30.355053,153.087946,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,7,11,Australia,AU,New South Wales,-31.642661,152.79327,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2024,2,5,Australia,AU,New South Wales,-31.631545,152.786017,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,5,Australia,AU,New South Wales,-34.456505,150.519489,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050F,1,,occurrenceRemarks withheld,2021,9,28,Australia,AU,New South Wales,-31.933492,152.415606,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.418613,150.634977,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2020,7,5,Australia,AU,New South Wales,-32.691092,151.706193,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-29.485473,153.103672,EPSG:4326 +HUMAN_OBSERVATION,OLHP2403050C,1,,occurrenceRemarks withheld,2024,3,26,Australia,AU,New South Wales,-31.431842,152.893814,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,7,18,Australia,AU,New South Wales,-31.553745,152.853644,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,10,11,Australia,AU,New South Wales,-34.068546,150.842335,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,12,3,Australia,AU,New South Wales,-32.727319,152.079108,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,30,Australia,AU,New South Wales,-34.422562,150.608081,EPSG:4326 +HUMAN_OBSERVATION,ODFK23081701,1,,occurrenceRemarks withheld,2023,8,4,Australia,AU,New South Wales,-31.580685,152.191234,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.415821,150.640245,EPSG:4326 +HUMAN_OBSERVATION,SMIMI-HO,1,,occurrenceRemarks withheld,2021,11,10,Australia,AU,New South Wales,-30.437417,152.98112,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJKB21040702,1,,occurrenceRemarks withheld,2021,4,9,Australia,AU,New South Wales,-31.43963,152.904957,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-28.958945,153.394104,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012801;OGDS21032500,1,,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-29.339319,152.848879,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,12,4,Australia,AU,New South Wales,-31.442585,152.900965,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2022,6,28,Australia,AU,New South Wales,-31.490236,152.877346,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.447647,150.518772,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,23,Australia,AU,New South Wales,-34.434049,150.613673,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-33.496074,149.54979,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2024,2,20,Australia,AU,New South Wales,-32.706239,152.063604,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2024,3,30,Australia,AU,New South Wales,-34.022255,150.989642,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-28.681838,153.524599,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.457643,150.607287,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.38656,150.627376,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-31.449737,152.920787,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,21,Australia,AU,New South Wales,-34.396885,150.641941,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,10,24,Australia,AU,New South Wales,-32.706601,152.065095,EPSG:4326 +HUMAN_OBSERVATION,OVGI98110201,1,,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-30.477605,151.739759,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,31,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-34.395523,150.643306,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,30,Australia,AU,New South Wales,-33.711263,150.78402,EPSG:4326 +HUMAN_OBSERVATION,ODFK24041201,1,,occurrenceRemarks withheld,2024,2,22,Australia,AU,New South Wales,-33.047215,151.481003,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,3,12,Australia,AU,New South Wales,-34.08429,150.9803,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,6,15,Australia,AU,New South Wales,-28.603818,153.509709,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,11,15,Australia,AU,New South Wales,-30.231856,152.937582,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,7,29,Australia,AU,New South Wales,-33.707986,150.785038,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.491638,150.639145,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2020,5,3,Australia,AU,New South Wales,-30.338571,153.094752,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403154P,1,MALE,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-28.678443,153.279515,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.465771,150.521609,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290I,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-31.930394,152.397651,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-28.96082,153.400099,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.561675,149.967242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.419379,150.635848,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,21,Australia,AU,New South Wales,-29.485576,153.103967,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,12,Australia,AU,New South Wales,-31.465214,152.921164,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.457343,150.659267,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.419184,150.603608,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-30.274954,153.069656,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.426036,150.599072,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.491965,150.639723,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-28.244494,153.490788,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS;ODFK23090501,1,,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-30.415917,151.626846,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,,occurrenceRemarks withheld,2023,7,15,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-29.488751,153.093447,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,26,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-28.257873,153.402592,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.84526,153.316234,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,24,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,1,25,Australia,AU,New South Wales,-29.490231,153.108237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.418002,150.63271,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.395329,150.629988,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.420452,150.627963,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.452381,150.522843,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,10,13,Australia,AU,New South Wales,-31.456648,152.922295,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.395111,150.630397,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,13,Australia,AU,New South Wales,-34.451529,150.517275,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.423294,150.60497,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.463486,150.523179,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.46026,150.515285,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0001235,1,FEMALE,occurrenceRemarks withheld,2020,10,1,Australia,AU,New South Wales,-29.028882,153.395386,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.418912,150.632717,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.445998,150.51437,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,12,13,Australia,AU,New South Wales,-29.487425,153.091157,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,10,Australia,AU,New South Wales,-31.443559,152.899255,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,,occurrenceRemarks withheld,2022,1,22,Australia,AU,New South Wales,-32.446115,151.774796,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.494732,150.641072,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-29.48791,153.091741,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-29.479813,153.104079,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.447289,150.51888,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,11,24,Australia,AU,New South Wales,-28.836044,153.336879,EPSG:4326 +HUMAN_OBSERVATION,OJJS20070601,1,,occurrenceRemarks withheld,2020,5,13,Australia,AU,New South Wales,-34.352835,150.685193,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG16032901,1,,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-31.818443,152.436372,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,2,24,Australia,AU,New South Wales,-29.485557,153.103817,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,10,20,Australia,AU,New South Wales,-28.644521,153.454566,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2022,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.463783,150.523148,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,6,3,Australia,AU,New South Wales,-28.260556,153.402945,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,26,Australia,AU,New South Wales,-31.469155,152.919654,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.388741,150.630555,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,5,Australia,AU,New South Wales,-34.445981,150.513119,EPSG:4326 +HUMAN_OBSERVATION,SHARM,1,MALE,occurrenceRemarks withheld,2022,11,15,Australia,AU,New South Wales,-32.628889,149.559996,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,7,2,Australia,AU,New South Wales,-28.814585,153.276579,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.400561,150.624576,EPSG:4326 +HUMAN_OBSERVATION,ODMP2212210O,1,,occurrenceRemarks withheld,2022,4,17,Australia,AU,New South Wales,-28.260407,153.399379,EPSG:4326 +HUMAN_OBSERVATION,OGRJ22092600,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-31.57459,152.777417,EPSG:4326 +HUMAN_OBSERVATION,OJJS20020408,1,MALE,occurrenceRemarks withheld,2023,9,5,Australia,AU,New South Wales,-34.158907,150.790322,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404042X,1,MALE,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-34.072422,150.831738,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-34.42348,150.594238,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,6,5,Australia,AU,New South Wales,-33.717885,150.783506,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,10,Australia,AU,New South Wales,-28.660528,153.61512,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,2,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,3,Australia,AU,New South Wales,-34.462411,150.535553,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-34.421408,150.627501,EPSG:4326 +HUMAN_OBSERVATION,OLHP23111315,1,,occurrenceRemarks withheld,2023,10,17,Australia,AU,New South Wales,-32.657717,151.642129,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403181V,1,,occurrenceRemarks withheld,2022,8,11,Australia,AU,New South Wales,-28.818114,153.299268,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,20,Australia,AU,New South Wales,-28.818579,153.296004,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.447144,150.513106,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.466076,150.523298,EPSG:4326 +HUMAN_OBSERVATION,OMXP98101200,1,,occurrenceRemarks withheld,2023,9,28,Australia,AU,New South Wales,-36.019081,149.240647,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.448232,150.516055,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.459173,150.522555,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,6,18,Australia,AU,New South Wales,-32.7096,151.844763,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011014,1,,occurrenceRemarks withheld,2020,9,30,Australia,AU,New South Wales,-32.737733,152.041196,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,11,22,Australia,AU,New South Wales,-31.454517,152.926358,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435974,150.615794,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,19,Australia,AU,New South Wales,-29.477525,153.104466,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,FEMALE,occurrenceRemarks withheld,2020,8,4,Australia,AU,New South Wales,-32.727892,152.084414,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-34.388334,150.630033,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,22,Australia,AU,New South Wales,-34.458248,150.659427,EPSG:4326 +HUMAN_OBSERVATION,OJJS2010130B,1,,occurrenceRemarks withheld,2020,8,19,Australia,AU,New South Wales,-30.885737,153.071526,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-34.434962,150.608261,EPSG:4326 +HUMAN_OBSERVATION,CHADL,1,,occurrenceRemarks withheld,2020,2,7,Australia,AU,New South Wales,-28.974028,153.354921,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,3,Australia,AU,New South Wales,-36.587122,149.958519,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100600,1,,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-30.411253,152.996398,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,MALE,occurrenceRemarks withheld,2023,5,29,Australia,AU,New South Wales,-31.481081,152.921722,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.434093,150.608547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.430271,150.610429,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.418392,150.633787,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.829111,153.60195,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012911,1,,occurrenceRemarks withheld,2024,2,13,Australia,AU,New South Wales,-31.637029,152.788977,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,1,24,Australia,AU,New South Wales,-32.708766,152.064469,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,7,2,Australia,AU,New South Wales,-30.501562,151.6662,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,,occurrenceRemarks withheld,2023,6,18,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,26,Australia,AU,New South Wales,-29.490283,153.107985,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-29.49025,153.110291,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,7,8,Australia,AU,New South Wales,-33.281893,150.278971,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.465689,150.520687,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,9,3,Australia,AU,New South Wales,-29.185113,153.005938,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,3,11,Australia,AU,New South Wales,-31.384504,152.864942,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,4,7,Australia,AU,New South Wales,-29.739273,151.056661,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,1,4,Australia,AU,New South Wales,-28.818946,153.337677,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2024,1,8,Australia,AU,New South Wales,-31.431853,152.893861,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150S,1,MALE,occurrenceRemarks withheld,2020,5,21,Australia,AU,New South Wales,-32.560405,151.740463,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2023,7,26,Australia,AU,New South Wales,-29.490609,153.108087,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,12,19,Australia,AU,New South Wales,-28.389285,153.560285,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2022,12,26,Australia,AU,New South Wales,-28.625029,152.966522,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,6,17,Australia,AU,New South Wales,-33.777547,150.102191,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-31.441071,152.923384,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-31.445972,152.915479,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,11,20,Australia,AU,New South Wales,-34.027733,150.989365,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,11,18,Australia,AU,New South Wales,-34.044729,150.986715,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,MALE,occurrenceRemarks withheld,2021,11,16,Australia,AU,New South Wales,-29.489764,153.101676,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180F,1,,occurrenceRemarks withheld,2022,7,6,Australia,AU,New South Wales,-28.864629,153.293229,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-31.446036,152.916003,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,1,9,Australia,AU,New South Wales,-31.452645,152.926234,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003919,1,,occurrenceRemarks withheld,2023,4,18,Australia,AU,New South Wales,-28.85243,153.176173,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.42183,150.636258,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,25,Australia,AU,New South Wales,-34.420612,150.630656,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2024,2,7,Australia,AU,New South Wales,-31.245942,152.819594,EPSG:4326 +HUMAN_OBSERVATION,ODFK2408220A,1,FEMALE,occurrenceRemarks withheld,2024,7,18,Australia,AU,New South Wales,-31.470263,152.925635,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032302,1,MALE,occurrenceRemarks withheld,2022,10,25,Australia,AU,New South Wales,-28.982564,153.421509,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,FEMALE,occurrenceRemarks withheld,2022,2,21,Australia,AU,New South Wales,-31.905008,152.418213,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2020,9,11,Australia,AU,New South Wales,-31.441744,152.881447,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2021,1,24,Australia,AU,New South Wales,-30.374914,153.017126,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-29.488093,153.091602,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.435412,150.615157,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-31.446308,152.918309,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,1,17,Australia,AU,New South Wales,-29.737514,151.058167,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.418925,150.638972,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.492981,150.639096,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.428397,150.597644,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-34.391018,150.628065,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,1,Australia,AU,New South Wales,-34.427033,150.604809,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,29,Australia,AU,New South Wales,-34.447144,150.513106,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.469326,150.526653,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080905,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-34.067524,150.881531,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.420377,150.635287,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,6,Australia,AU,New South Wales,-29.489657,153.103988,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,26,Australia,AU,New South Wales,-29.490656,153.10932,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-28.799393,153.371368,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003974,1,MALE,occurrenceRemarks withheld,2023,5,15,Australia,AU,New South Wales,-28.824921,153.301454,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,MALE,occurrenceRemarks withheld,2020,11,17,Australia,AU,New South Wales,-30.295589,153.123642,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,2,Australia,AU,New South Wales,-34.388922,150.624133,EPSG:4326 +HUMAN_OBSERVATION,OPJG22080904;OMFZ23032403,1,,occurrenceRemarks withheld,2023,1,7,Australia,AU,New South Wales,-32.660788,150.001792,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2020,1,27,Australia,AU,New South Wales,-29.485277,153.104149,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,12,30,Australia,AU,New South Wales,-34.716479,146.446568,EPSG:4326 +HUMAN_OBSERVATION,OPUR19060400,1,,occurrenceRemarks withheld,2021,11,5,Australia,AU,New South Wales,-32.697502,151.694667,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.469749,150.527054,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.452222,150.522968,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.418472,150.597656,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,3,5,Australia,AU,New South Wales,-28.691492,153.51719,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.419983,150.631207,EPSG:4326 +HUMAN_OBSERVATION,ODFK2408220P,1,,occurrenceRemarks withheld,2024,6,28,Australia,AU,New South Wales,-31.457248,152.927017,EPSG:4326 +HUMAN_OBSERVATION,ODFK23092101,1,,occurrenceRemarks withheld,2024,6,7,Australia,AU,New South Wales,-30.426799,152.953593,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,15,Australia,AU,New South Wales,-36.108532,149.309119,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.394997,150.630552,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.446566,150.514364,EPSG:4326 +HUMAN_OBSERVATION,ODMP06091900,1,,occurrenceRemarks withheld,2021,10,28,Australia,AU,New South Wales,-31.450866,152.916421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.434959,150.609044,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,FEMALE,occurrenceRemarks withheld,2023,8,16,Australia,AU,New South Wales,-33.712845,150.785944,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,19,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,27,Australia,AU,New South Wales,-34.451582,150.51724,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.428925,150.614439,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,8,19,Australia,AU,New South Wales,-34.185835,150.790633,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.449776,150.605607,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122007,1,FEMALE,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-36.169502,149.384515,EPSG:4326 +HUMAN_OBSERVATION,ODMP2110210B,1,,occurrenceRemarks withheld,2023,3,21,Australia,AU,New South Wales,-32.709669,152.064528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,24,Australia,AU,New South Wales,-34.465751,150.522404,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.435029,150.606616,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.390113,150.627384,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003975,1,MALE,occurrenceRemarks withheld,2023,5,12,Australia,AU,New South Wales,-28.823714,153.307678,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100B,1,,occurrenceRemarks withheld,2023,8,10,Australia,AU,New South Wales,-30.467965,152.889542,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,2,5,Australia,AU,New South Wales,-29.486734,153.103232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.438886,150.604275,EPSG:4326 +HUMAN_OBSERVATION,VEG-LEEEN,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.07132,150.893093,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-865,1,,occurrenceRemarks withheld,2021,2,9,Australia,AU,New South Wales,-30.173815,152.820659,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.446761,150.51599,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,23,Australia,AU,New South Wales,-28.788736,153.582378,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,3,7,Australia,AU,New South Wales,-29.490273,153.110206,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.388431,150.631792,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-34.399407,150.652116,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.447666,150.518804,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,4,29,Australia,AU,New South Wales,-31.429994,152.911113,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002776,1,,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-29.70213,152.928454,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2022,5,5,Australia,AU,New South Wales,-30.346169,153.085359,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,4,21,Australia,AU,New South Wales,-31.44288,152.889054,EPSG:4326 +HUMAN_OBSERVATION,ODFK24091904,1,,occurrenceRemarks withheld,2024,8,27,Australia,AU,New South Wales,-31.843749,152.066861,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,2,10,Australia,AU,New South Wales,-31.470533,152.911995,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240E,1,,occurrenceRemarks withheld,2021,10,3,Australia,AU,New South Wales,-32.709635,152.061389,EPSG:4326 +HUMAN_OBSERVATION,OEMM10042801;OPJG21111802;ODMP2212210P;ODMP2212210Q;ODMP2212210R;ODMP2212210S;ODMP2212210T;ODMP2212210U,1,,occurrenceRemarks withheld,2020,9,29,Australia,AU,New South Wales,-30.053999,152.247202,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.458798,150.528944,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-28.649639,153.303494,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,4,Australia,AU,New South Wales,-28.755891,153.353705,EPSG:4326 +HUMAN_OBSERVATION,OPJG21111500,1,,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-33.458501,150.592018,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.422233,150.604207,EPSG:4326 +HUMAN_OBSERVATION,ODFK23083000,1,,occurrenceRemarks withheld,2023,2,19,Australia,AU,New South Wales,-29.640911,152.830617,EPSG:4326 +HUMAN_OBSERVATION,ZOOT-HO,1,MALE,occurrenceRemarks withheld,2022,4,11,Australia,AU,New South Wales,-34.068105,150.807228,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.420351,150.635331,EPSG:4326 +HUMAN_OBSERVATION,ODMP21081307,1,,occurrenceRemarks withheld,2022,7,26,Australia,AU,New South Wales,-31.134302,152.817172,EPSG:4326 +HUMAN_OBSERVATION,OJJS20022606,1,MALE,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-31.578847,149.337971,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003856,1,,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-28.430318,153.020236,EPSG:4326 +HUMAN_OBSERVATION,OPJG22022101,1,,occurrenceRemarks withheld,2023,1,18,Australia,AU,New South Wales,-30.271872,153.061476,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2021,12,19,Australia,AU,New South Wales,-31.452398,152.922003,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.430094,150.616603,EPSG:4326 +HUMAN_OBSERVATION,OCAM13082900,1,,occurrenceRemarks withheld,2020,10,15,Australia,AU,New South Wales,-33.379674,150.210172,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,21,Australia,AU,New South Wales,-34.438859,150.603329,EPSG:4326 +HUMAN_OBSERVATION,OJJS17032800,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-31.079438,150.095687,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,10,Australia,AU,New South Wales,-35.085334,150.028587,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,16,Australia,AU,New South Wales,-34.385928,150.624968,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,10,Australia,AU,New South Wales,-34.420965,150.630222,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-29.485562,153.103736,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004254,1,,occurrenceRemarks withheld,2023,8,7,Australia,AU,New South Wales,-28.820794,153.296899,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401110F,1,,occurrenceRemarks withheld,2023,12,15,Australia,AU,New South Wales,-32.737588,152.088396,EPSG:4326 +HUMAN_OBSERVATION,OMCE18052100,1,,occurrenceRemarks withheld,2023,9,27,Australia,AU,New South Wales,-34.246887,150.670854,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,7,21,Australia,AU,New South Wales,-28.825066,153.303255,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,9,7,Australia,AU,New South Wales,-29.490619,153.108135,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.444799,150.514394,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,1,Australia,AU,New South Wales,-28.334234,153.534773,EPSG:4326 +HUMAN_OBSERVATION,OJKB2208030O,1,,occurrenceRemarks withheld,2022,2,15,Australia,AU,New South Wales,-31.253756,152.966363,EPSG:4326 +HUMAN_OBSERVATION,OJJS16060700;OPJG22072600;OPJG22072601,1,,occurrenceRemarks withheld,2021,9,1,Australia,AU,New South Wales,-28.257425,153.400553,EPSG:4326 +HUMAN_OBSERVATION,OJJS2002260X,1,,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-32.76229,151.958311,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.434721,150.616733,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.392775,150.639163,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100M,1,,occurrenceRemarks withheld,2020,11,9,Australia,AU,New South Wales,-29.834546,150.845011,EPSG:4326 +HUMAN_OBSERVATION,OLHP2404040X,1,FEMALE,occurrenceRemarks withheld,2022,11,19,Australia,AU,New South Wales,-32.931347,151.541578,EPSG:4326 +HUMAN_OBSERVATION,OPJG21060804,1,,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-31.249312,152.825905,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.385874,150.625459,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-34.096828,150.984889,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,6,23,Australia,AU,New South Wales,-29.487938,153.091156,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2022,4,30,Australia,AU,New South Wales,-28.829497,153.233289,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,30,Australia,AU,New South Wales,-28.866891,153.343646,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,9,14,Australia,AU,New South Wales,-28.809314,153.288292,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2021,3,4,Australia,AU,New South Wales,-28.583824,153.554509,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060100,1,,occurrenceRemarks withheld,2023,2,7,Australia,AU,New South Wales,-29.367536,151.539714,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,2,28,Australia,AU,New South Wales,-31.455029,152.908564,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,11,7,Australia,AU,New South Wales,-28.824165,153.293121,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,12,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,14,Australia,AU,New South Wales,-29.490217,153.109857,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,8,12,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,3,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.454805,150.520083,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,12,1,Australia,AU,New South Wales,-29.489848,153.101569,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-29.48671,153.10321,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS;ODFK23090501,1,,occurrenceRemarks withheld,2022,12,18,Australia,AU,New South Wales,-30.424567,151.630025,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.437649,150.605083,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-32.349456,151.811161,EPSG:4326 +HUMAN_OBSERVATION,OVGI99051402,1,,occurrenceRemarks withheld,2021,8,10,Australia,AU,New South Wales,-30.197461,152.775279,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-34.447163,150.517578,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,13,Australia,AU,New South Wales,-28.385238,153.55439,EPSG:4326 +HUMAN_OBSERVATION,OPJG2111150P,1,MALE,occurrenceRemarks withheld,2020,4,3,Australia,AU,New South Wales,-33.775591,150.056907,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,MALE,occurrenceRemarks withheld,2020,10,12,Australia,AU,New South Wales,-32.632576,152.00028,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.386688,150.625143,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.392789,150.639435,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.420992,150.630232,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,14,Australia,AU,New South Wales,-34.384428,150.625304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.466896,150.521532,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.429714,150.614253,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.436974,150.603285,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.421056,150.629806,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,4,4,Australia,AU,New South Wales,-36.599554,149.951303,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.437908,150.604945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.452871,150.519879,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2021,4,23,Australia,AU,New South Wales,-36.579991,150.006515,EPSG:4326 +HUMAN_OBSERVATION,ODFK24042609,1,,occurrenceRemarks withheld,2024,8,20,Australia,AU,New South Wales,-32.176412,152.088131,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.465053,150.524428,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071103,1,,occurrenceRemarks withheld,2024,6,2,Australia,AU,New South Wales,-28.620871,152.979442,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032908,1,,occurrenceRemarks withheld,2022,3,13,Australia,AU,New South Wales,-32.726404,152.103489,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004246,1,,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-28.695632,153.489096,EPSG:4326 +HUMAN_OBSERVATION,OICG18022200,1,,occurrenceRemarks withheld,2021,2,1,Australia,AU,New South Wales,-28.93797,153.277455,EPSG:4326 +HUMAN_OBSERVATION,F-OBS000277,1,,occurrenceRemarks withheld,2024,1,19,Australia,AU,New South Wales,-31.139712,152.801768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.487989,150.637364,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.542417,152.819577,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.454691,150.520718,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,9,21,Australia,AU,New South Wales,-28.821377,153.338118,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,15,Australia,AU,New South Wales,-34.409916,150.596715,EPSG:4326 +HUMAN_OBSERVATION,OJKB2111150S,1,,occurrenceRemarks withheld,2024,9,2,Australia,AU,New South Wales,-32.059776,152.543061,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.454008,150.516831,EPSG:4326 +HUMAN_OBSERVATION,OIXN98070900,1,FEMALE,occurrenceRemarks withheld,2022,3,5,Australia,AU,New South Wales,-34.096352,150.985075,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004157,1,,occurrenceRemarks withheld,2023,9,20,Australia,AU,New South Wales,-28.939532,153.277364,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,,occurrenceRemarks withheld,2021,9,18,Australia,AU,New South Wales,-32.748165,152.069601,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,6,4,Australia,AU,New South Wales,-29.761888,151.103377,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-34.388378,150.63001,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-34.465698,150.520218,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090408,1,,occurrenceRemarks withheld,2023,9,2,Australia,AU,New South Wales,-32.655674,151.961667,EPSG:4326 +HUMAN_OBSERVATION,OSHD19121001,1,FEMALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.098102,150.808237,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.420851,150.630432,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,1,3,Australia,AU,New South Wales,-31.474984,152.912063,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,2,15,Australia,AU,New South Wales,-28.657932,153.387185,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,12,9,Australia,AU,New South Wales,-31.434572,152.894669,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-33.706065,150.786186,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,11,Australia,AU,New South Wales,-36.297726,149.954748,EPSG:4326 +HUMAN_OBSERVATION,OJJS15061602,1,MALE,occurrenceRemarks withheld,2020,8,5,Australia,AU,New South Wales,-29.542712,152.721029,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,8,Australia,AU,New South Wales,-34.418297,150.632582,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-34.348037,150.357369,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.467036,150.519101,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.389247,150.628768,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.43637,150.603313,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,MALE,occurrenceRemarks withheld,2020,9,13,Australia,AU,New South Wales,-32.723551,152.067952,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,,occurrenceRemarks withheld,2023,6,15,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,ODMP10100606,1,FEMALE,occurrenceRemarks withheld,2022,12,20,Australia,AU,New South Wales,-34.188884,150.624377,EPSG:4326 +HUMAN_OBSERVATION,OJJS19070207,1,,occurrenceRemarks withheld,2021,4,16,Australia,AU,New South Wales,-30.343686,153.084263,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.491626,150.639004,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,7,Australia,AU,New South Wales,-34.430244,150.607677,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,20,Australia,AU,New South Wales,-33.714346,150.784881,EPSG:4326 +HUMAN_OBSERVATION,OPJG21121401,1,MALE,occurrenceRemarks withheld,2021,10,29,Australia,AU,New South Wales,-34.063928,150.841272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.491962,150.639114,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.435753,150.519961,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23033006,1,,occurrenceRemarks withheld,2021,10,18,Australia,AU,New South Wales,-29.798458,152.812369,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,13,Australia,AU,New South Wales,-28.383121,153.561956,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,10,7,Australia,AU,New South Wales,-29.488415,153.110254,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,11,22,Australia,AU,New South Wales,-29.490269,153.110147,EPSG:4326 +HUMAN_OBSERVATION,OPJG21031202,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-32.604163,151.725053,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,11,20,Australia,AU,New South Wales,-36.503585,149.989088,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.447293,150.513798,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,,occurrenceRemarks withheld,2023,9,8,Australia,AU,New South Wales,-28.553447,153.076265,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.469469,150.527498,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,3,Australia,AU,New South Wales,-34.437885,150.517961,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2021,10,30,Australia,AU,New South Wales,-29.489377,153.101671,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2023,6,23,Australia,AU,New South Wales,-31.281716,152.861404,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150U,1,,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-28.692216,153.495002,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.434472,150.616414,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150C,1,MALE,occurrenceRemarks withheld,2022,6,1,Australia,AU,New South Wales,-32.101206,152.383656,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,18,Australia,AU,New South Wales,-28.941392,153.361038,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003956,1,,occurrenceRemarks withheld,2023,4,12,Australia,AU,New South Wales,-28.848151,153.302728,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2022,12,27,Australia,AU,New South Wales,-31.946553,152.421401,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2022,11,28,Australia,AU,New South Wales,-32.710493,152.072388,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,4,24,Australia,AU,New South Wales,-28.640224,153.479693,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,7,9,Australia,AU,New South Wales,-28.614394,153.367578,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.420649,150.630688,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.424704,150.602374,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.432401,150.615656,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-28.572182,153.538195,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.446204,150.516953,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,22,Australia,AU,New South Wales,-34.448663,150.516445,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,16,Australia,AU,New South Wales,-34.463744,150.522997,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,23,Australia,AU,New South Wales,-34.430182,150.610051,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.426578,150.604159,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,1,Australia,AU,New South Wales,-34.429755,150.609889,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.450714,150.520618,EPSG:4326 +HUMAN_OBSERVATION,ODMP17070701;ODMP22122200,1,,occurrenceRemarks withheld,2020,5,4,Australia,AU,New South Wales,-34.90815,150.06795,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-34.438729,150.516467,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,8,9,Australia,AU,New South Wales,-29.490007,153.110517,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2022,9,14,Australia,AU,New South Wales,-34.197582,150.789152,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.390998,150.645184,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,14,Australia,AU,New South Wales,-34.449066,150.516292,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,10,27,Australia,AU,New South Wales,-28.818638,153.367603,EPSG:4326 +HUMAN_OBSERVATION,OLHP23101000;ODFK23120502,1,,occurrenceRemarks withheld,2023,10,25,Australia,AU,New South Wales,-31.459656,152.929092,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.494815,150.641178,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-36.288695,149.972032,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.463806,150.523844,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OPJG18020707,1,,occurrenceRemarks withheld,2020,6,29,Australia,AU,New South Wales,-30.218024,152.795484,EPSG:4326 +HUMAN_OBSERVATION,ODMP21080902,1,,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-31.448905,152.920725,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,8,Australia,AU,New South Wales,-34.418324,150.632603,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,FEMALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,7,17,Australia,AU,New South Wales,-28.400365,153.556904,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.427486,150.603556,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,2,Australia,AU,New South Wales,-34.460211,150.531972,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403151T,1,,occurrenceRemarks withheld,2022,11,10,Australia,AU,New South Wales,-28.692644,153.288541,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,6,Australia,AU,New South Wales,-34.434555,150.609165,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,24,Australia,AU,New South Wales,-31.442867,152.905321,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-28.67595,153.277461,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170B,1,FEMALE,occurrenceRemarks withheld,2022,9,22,Australia,AU,New South Wales,-29.49183,153.10917,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.392741,150.639284,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,FEMALE,occurrenceRemarks withheld,2022,9,20,Australia,AU,New South Wales,-28.820261,153.30288,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,28,Australia,AU,New South Wales,-34.434926,150.604127,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.421224,150.627321,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,FEMALE,occurrenceRemarks withheld,2022,3,28,Australia,AU,New South Wales,-34.068105,150.807228,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.425693,150.595807,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,8,Australia,AU,New South Wales,-34.430389,150.529944,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,10,8,Australia,AU,New South Wales,-31.640496,152.792197,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2021,7,3,Australia,AU,New South Wales,-31.447944,152.925723,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.435598,150.615468,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,10,4,Australia,AU,New South Wales,-31.217454,152.958021,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2020,1,3,Australia,AU,New South Wales,-28.981516,152.885273,EPSG:4326 +HUMAN_OBSERVATION,ODFK24011001,1,MALE,occurrenceRemarks withheld,2023,11,3,Australia,AU,New South Wales,-32.237057,152.190362,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,11,25,Australia,AU,New South Wales,-28.839565,153.279241,EPSG:4326 +HUMAN_OBSERVATION,OJJS17051722,1,FEMALE,occurrenceRemarks withheld,2021,8,11,Australia,AU,New South Wales,-32.722008,152.07769,EPSG:4326 +HUMAN_OBSERVATION,OJKB21041303,1,MALE,occurrenceRemarks withheld,2021,8,18,Australia,AU,New South Wales,-31.944127,152.413455,EPSG:4326 +HUMAN_OBSERVATION,OJNV22121600,1,,occurrenceRemarks withheld,2023,7,11,Australia,AU,New South Wales,-36.92043,149.873203,EPSG:4326 +HUMAN_OBSERVATION,ODMP22111603,1,MALE,occurrenceRemarks withheld,2022,10,31,Australia,AU,New South Wales,-36.296979,149.256859,EPSG:4326 +HUMAN_OBSERVATION,OSHD1912100E,1,,occurrenceRemarks withheld,2022,11,2,Australia,AU,New South Wales,-34.038268,150.870732,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-34.465846,150.520432,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100R,1,FEMALE,occurrenceRemarks withheld,2020,10,6,Australia,AU,New South Wales,-32.738495,152.079448,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,MALE,occurrenceRemarks withheld,2022,4,24,Australia,AU,New South Wales,-31.929248,152.382372,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031814,1,FEMALE,occurrenceRemarks withheld,2023,9,30,Australia,AU,New South Wales,-28.843546,153.302906,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2023,4,4,Australia,AU,New South Wales,-33.961565,150.974091,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,1,30,Australia,AU,New South Wales,-29.490465,153.109433,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,22,Australia,AU,New South Wales,-34.386403,150.625792,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-29.485697,153.096521,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,9,Australia,AU,New South Wales,-34.436061,150.616543,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.384492,150.625324,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,7,Australia,AU,New South Wales,-34.423807,150.637344,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,MALE,occurrenceRemarks withheld,2020,7,3,Australia,AU,New South Wales,-33.971509,150.89337,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.493244,150.639176,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,10,Australia,AU,New South Wales,-33.709295,150.785683,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.58553,149.96897,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,11,16,Australia,AU,New South Wales,-28.868258,153.577621,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,11,29,Australia,AU,New South Wales,-34.089316,150.990319,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,8,3,Australia,AU,New South Wales,-31.127013,152.793613,EPSG:4326 +HUMAN_OBSERVATION,OLHP24051302,1,,occurrenceRemarks withheld,2024,4,25,Australia,AU,New South Wales,-31.685488,152.349322,EPSG:4326 +HUMAN_OBSERVATION,OLHP23081117,1,,occurrenceRemarks withheld,2023,7,14,Australia,AU,New South Wales,-31.460803,152.923452,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,23,Australia,AU,New South Wales,-34.446438,150.520048,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.451786,150.518388,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,26,Australia,AU,New South Wales,-31.631922,152.785634,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,2,4,Australia,AU,New South Wales,-31.437077,152.895212,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.433254,150.607591,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.438689,150.617687,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,30,Australia,AU,New South Wales,-34.43789,150.604946,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,8,29,Australia,AU,New South Wales,-34.447314,150.513906,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,27,Australia,AU,New South Wales,-34.491651,150.638883,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311100F,1,,occurrenceRemarks withheld,2024,6,30,Australia,AU,New South Wales,-33.56482,150.672045,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2020,6,5,Australia,AU,New South Wales,-31.479611,152.905944,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-28.665633,153.255014,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,8,Australia,AU,New South Wales,-34.420649,150.629763,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,8,5,Australia,AU,New South Wales,-28.327767,153.564642,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,4,10,Australia,AU,New South Wales,-28.682671,153.487886,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2020,10,22,Australia,AU,New South Wales,-30.193052,152.783319,EPSG:4326 +HUMAN_OBSERVATION,OLHP23100407,1,,occurrenceRemarks withheld,2023,10,2,Australia,AU,New South Wales,-34.046026,151.007764,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021804,1,FEMALE,occurrenceRemarks withheld,2021,10,23,Australia,AU,New South Wales,-29.354295,150.200379,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,22,Australia,AU,New South Wales,-34.432644,150.607304,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.391551,150.644918,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,4,Australia,AU,New South Wales,-34.397346,150.622905,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211F,1,,occurrenceRemarks withheld,2022,11,12,Australia,AU,New South Wales,-32.72777,152.105332,EPSG:4326 +HUMAN_OBSERVATION,OJKB21111504,1,,occurrenceRemarks withheld,2022,9,4,Australia,AU,New South Wales,-34.743479,146.522268,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.421975,150.607576,EPSG:4326 +HUMAN_OBSERVATION,OLHP2308110U,1,,occurrenceRemarks withheld,2023,11,11,Australia,AU,New South Wales,-31.45961,152.928993,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,20,Australia,AU,New South Wales,-34.383418,150.623386,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.399747,150.624926,EPSG:4326 +HUMAN_OBSERVATION,ODFK24031543,1,FEMALE,occurrenceRemarks withheld,2022,10,5,Australia,AU,New South Wales,-28.952499,153.45941,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,8,Australia,AU,New South Wales,-34.456195,150.614849,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,26,Australia,AU,New South Wales,-31.62973,152.786681,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.451672,150.522538,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,1,17,Australia,AU,New South Wales,-29.489974,153.101322,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-31.459137,152.926156,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.466098,150.521306,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,28,Australia,AU,New South Wales,-34.437529,150.518189,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,10,2,Australia,AU,New South Wales,-28.818573,153.330136,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2022,8,25,Australia,AU,New South Wales,-30.330868,151.640641,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,1,28,Australia,AU,New South Wales,-28.828069,153.323817,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-29.485071,153.088099,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,12,27,Australia,AU,New South Wales,-33.70395,150.785909,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202251P,1,,occurrenceRemarks withheld,2021,10,10,Australia,AU,New South Wales,-32.707572,152.064437,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,MALE,occurrenceRemarks withheld,2024,1,13,Australia,AU,New South Wales,-29.770486,150.945342,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,1,15,Australia,AU,New South Wales,-29.488125,153.092321,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,18,Australia,AU,New South Wales,-34.420966,150.627992,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,FEMALE,occurrenceRemarks withheld,2023,4,6,Australia,AU,New South Wales,-31.466294,152.918867,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2023,12,7,Australia,AU,New South Wales,-31.452395,152.926003,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.363394,150.556893,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-29.632874,152.896627,EPSG:4326 +HUMAN_OBSERVATION,OMCE97042908,1,MALE,occurrenceRemarks withheld,2020,1,17,Australia,AU,New South Wales,-30.214467,152.67874,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,11,Australia,AU,New South Wales,-34.427054,150.604983,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,7,27,Australia,AU,New South Wales,-33.964095,150.934362,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,13,Australia,AU,New South Wales,-34.400009,150.644964,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,6,Australia,AU,New South Wales,-33.71692,150.785208,EPSG:4326 +HUMAN_OBSERVATION,OLHP2307031L,1,,occurrenceRemarks withheld,2023,5,17,Australia,AU,New South Wales,-28.600723,153.248515,EPSG:4326 +HUMAN_OBSERVATION,OJKB2104070W,1,MALE,occurrenceRemarks withheld,2023,2,2,Australia,AU,New South Wales,-29.446779,153.077179,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2021,8,28,Australia,AU,New South Wales,-29.484338,153.103988,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,11,21,Australia,AU,New South Wales,-29.488732,153.094043,EPSG:4326 +HUMAN_OBSERVATION,ODFK24071101,1,,occurrenceRemarks withheld,2024,5,15,Australia,AU,New South Wales,-32.650658,152.047043,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,7,9,Australia,AU,New South Wales,-29.490217,153.109964,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.451728,150.514221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,6,Australia,AU,New South Wales,-34.398165,150.644243,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.437864,150.605001,EPSG:4326 +HUMAN_OBSERVATION,OJJS1208150M,1,,occurrenceRemarks withheld,2023,11,19,Australia,AU,New South Wales,-32.762954,152.107959,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.385791,150.627223,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,9,25,Australia,AU,New South Wales,-28.65996,153.616323,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032808;OLHP2310050S,1,,occurrenceRemarks withheld,2022,10,26,Australia,AU,New South Wales,-31.447957,152.839142,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,3,Australia,AU,New South Wales,-34.446584,150.517943,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-34.446775,150.520234,EPSG:4326 +HUMAN_OBSERVATION,OJJS07072600,1,,occurrenceRemarks withheld,2021,8,7,Australia,AU,New South Wales,-33.569558,150.623874,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,Obs_1453,1,MALE,occurrenceRemarks withheld,2022,9,30,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,7,Australia,AU,New South Wales,-34.447965,150.518893,EPSG:4326 +HUMAN_OBSERVATION,OJNV22121600,1,,occurrenceRemarks withheld,2023,3,21,Australia,AU,New South Wales,-36.592569,149.923567,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.447295,150.513874,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.432132,150.608341,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,12,Australia,AU,New South Wales,-34.446893,150.520263,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,14,Australia,AU,New South Wales,-34.445013,150.517794,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2303280B,1,,occurrenceRemarks withheld,2023,7,5,Australia,AU,New South Wales,-32.748434,152.069221,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,19,Australia,AU,New South Wales,-34.446204,150.516953,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,1,16,Australia,AU,New South Wales,-28.396392,153.557953,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004273,1,,occurrenceRemarks withheld,2023,8,29,Australia,AU,New South Wales,-28.645326,153.340091,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,8,25,Australia,AU,New South Wales,-34.465683,150.521296,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-707,1,,occurrenceRemarks withheld,2020,11,10,Australia,AU,New South Wales,-30.210309,152.749523,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,9,6,Australia,AU,New South Wales,-29.489634,153.104771,EPSG:4326 +HUMAN_OBSERVATION,OJJS19012203,1,,occurrenceRemarks withheld,2020,2,23,Australia,AU,New South Wales,-34.491777,150.471004,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311131H,1,,occurrenceRemarks withheld,2023,10,24,Australia,AU,New South Wales,-31.474059,152.900332,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.421746,150.638904,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,4,Australia,AU,New South Wales,-34.417702,150.602987,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,5,14,Australia,AU,New South Wales,-32.70658,152.063612,EPSG:4326 +HUMAN_OBSERVATION,SFOBS-490,1,,occurrenceRemarks withheld,2020,7,28,Australia,AU,New South Wales,-31.558461,152.591754,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,19,Australia,AU,New South Wales,-34.383838,150.623233,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,19,Australia,AU,New South Wales,-34.452916,150.519878,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,FEMALE,occurrenceRemarks withheld,2021,9,6,Australia,AU,New South Wales,-31.432827,152.888523,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,22,Australia,AU,New South Wales,-34.423009,150.638487,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,FEMALE,occurrenceRemarks withheld,2021,8,26,Australia,AU,New South Wales,-29.492599,153.09347,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2024,1,8,Australia,AU,New South Wales,-33.712954,150.785903,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,29,Australia,AU,New South Wales,-36.564828,149.977333,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-29.051666,153.428317,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003976,1,MALE,occurrenceRemarks withheld,2023,3,5,Australia,AU,New South Wales,-28.829843,153.296131,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,9,24,Australia,AU,New South Wales,-33.715178,150.785212,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.940376,153.327635,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,26,Australia,AU,New South Wales,-34.420377,150.635243,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,11,29,Australia,AU,New South Wales,-29.489601,153.103865,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,28,Australia,AU,New South Wales,-34.422426,150.607106,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004208,1,,occurrenceRemarks withheld,2023,9,9,Australia,AU,New South Wales,-28.874133,153.26475,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002845,1,FEMALE,occurrenceRemarks withheld,2021,8,22,Australia,AU,New South Wales,-29.492626,153.093231,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,6,25,Australia,AU,New South Wales,-28.623614,153.007423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,27,Australia,AU,New South Wales,-34.450792,150.60547,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2022,9,12,Australia,AU,New South Wales,-29.477464,153.104112,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.434341,150.617114,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,19,Australia,AU,New South Wales,-34.421394,150.637499,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,ODMP22021802,1,,occurrenceRemarks withheld,2022,2,8,Australia,AU,New South Wales,-31.451291,152.907338,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,6,Australia,AU,New South Wales,-34.465726,150.521621,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.4196,150.632839,EPSG:4326 +HUMAN_OBSERVATION,ODMP2202240A,1,,occurrenceRemarks withheld,2023,12,23,Australia,AU,New South Wales,-32.706589,152.063752,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,9,11,Australia,AU,New South Wales,-34.183434,150.790809,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,12,16,Australia,AU,New South Wales,-28.847774,153.323091,EPSG:4326 +HUMAN_OBSERVATION,ODFK24102500,1,,occurrenceRemarks withheld,2024,9,21,Australia,AU,New South Wales,-34.770422,146.587402,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.455535,150.657619,EPSG:4326 +HUMAN_OBSERVATION,OLHP24040412,1,FEMALE,occurrenceRemarks withheld,2023,6,3,Australia,AU,New South Wales,-31.930397,152.405625,EPSG:4326 +HUMAN_OBSERVATION,OPJG22072601;ODMP2212210O,1,,occurrenceRemarks withheld,2022,5,2,Australia,AU,New South Wales,-28.260219,153.402692,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002517,1,,occurrenceRemarks withheld,2021,9,20,Australia,AU,New South Wales,-31.445045,152.15231,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,2,24,Australia,AU,New South Wales,-34.454304,150.648892,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,9,1,Australia,AU,New South Wales,-29.631806,152.898649,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211K,1,MALE,occurrenceRemarks withheld,2023,9,18,Australia,AU,New South Wales,-32.724126,152.075641,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,4,13,Australia,AU,New South Wales,-29.489573,153.10394,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,1,Australia,AU,New South Wales,-34.446872,150.52145,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2020,11,15,Australia,AU,New South Wales,-29.631834,152.898241,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.467964,150.529752,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2021,12,13,Australia,AU,New South Wales,-28.838291,153.260484,EPSG:4326 +HUMAN_OBSERVATION,OLHP23090409,1,,occurrenceRemarks withheld,2023,8,11,Australia,AU,New South Wales,-32.060634,151.672445,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,4,5,Australia,AU,New South Wales,-29.071088,153.082659,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303211C,1,,occurrenceRemarks withheld,2022,10,16,Australia,AU,New South Wales,-32.734408,152.100663,EPSG:4326 +HUMAN_OBSERVATION,OJJS19091709,1,MALE,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-34.027296,151.030692,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,17,Australia,AU,New South Wales,-34.48802,150.635251,EPSG:4326 +HUMAN_OBSERVATION,ODMP06091900,1,,occurrenceRemarks withheld,2021,9,5,Australia,AU,New South Wales,-31.450537,152.916477,EPSG:4326 +HUMAN_OBSERVATION,OPJG21020200,1,FEMALE,occurrenceRemarks withheld,2023,8,3,Australia,AU,New South Wales,-34.073874,150.834831,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,,occurrenceRemarks withheld,2023,2,20,Australia,AU,New South Wales,-31.459632,152.922697,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.383759,150.622844,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-28.949201,153.314983,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,25,Australia,AU,New South Wales,-34.434917,150.617032,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100207,1,MALE,occurrenceRemarks withheld,2021,9,12,Australia,AU,New South Wales,-34.184103,150.797339,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,10,Australia,AU,New South Wales,-34.451167,150.519407,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,15,Australia,AU,New South Wales,-34.400082,150.639861,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2020,12,1,Australia,AU,New South Wales,-31.165117,152.674671,EPSG:4326 +HUMAN_OBSERVATION,ODFK23090503,1,,occurrenceRemarks withheld,2022,7,25,Australia,AU,New South Wales,-31.134713,152.816178,EPSG:4326 +HUMAN_OBSERVATION,ODMP10022809;OIXR13100100,1,MALE,occurrenceRemarks withheld,2022,12,1,Australia,AU,New South Wales,-30.865145,152.774091,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.433689,150.616947,EPSG:4326 +HUMAN_OBSERVATION,OMFZ2304190H,1,,occurrenceRemarks withheld,2023,7,8,Australia,AU,New South Wales,-28.960685,153.402459,EPSG:4326 +HUMAN_OBSERVATION,OJJS1710040G,1,,occurrenceRemarks withheld,2020,7,31,Australia,AU,New South Wales,-31.458323,152.926317,EPSG:4326 +HUMAN_OBSERVATION,ODMP23032905,1,,occurrenceRemarks withheld,2022,5,16,Australia,AU,New South Wales,-32.775808,152.082183,EPSG:4326 +HUMAN_OBSERVATION,OJJS1801100A,1,,occurrenceRemarks withheld,2021,4,12,Australia,AU,New South Wales,-32.734103,152.040474,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,23,Australia,AU,New South Wales,-36.559404,149.938213,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,28,Australia,AU,New South Wales,-34.412067,150.595174,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310050N,1,,occurrenceRemarks withheld,2023,9,1,Australia,AU,New South Wales,-33.491314,149.552181,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290K,1,FEMALE,occurrenceRemarks withheld,2024,2,9,Australia,AU,New South Wales,-31.96603,152.398428,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.493732,150.640675,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,2,Australia,AU,New South Wales,-34.398217,150.640392,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002819,1,,occurrenceRemarks withheld,2021,2,8,Australia,AU,New South Wales,-29.631335,152.899582,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,26,Australia,AU,New South Wales,-34.420294,150.627271,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.447161,150.513029,EPSG:4326 +HUMAN_OBSERVATION,OLHP23103009,1,,occurrenceRemarks withheld,2023,10,27,Australia,AU,New South Wales,-35.020574,150.062355,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,11,1,Australia,AU,New South Wales,-28.650072,153.506402,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2021,10,25,Australia,AU,New South Wales,-28.620426,153.434589,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,20,Australia,AU,New South Wales,-34.451669,150.515301,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.402485,152.138047,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,FEMALE,occurrenceRemarks withheld,2023,9,12,Australia,AU,New South Wales,-29.489573,153.103865,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,9,21,Australia,AU,New South Wales,-34.449591,150.615494,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2022,8,22,Australia,AU,New South Wales,-28.394389,153.558923,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-31.402485,152.138047,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,7,Australia,AU,New South Wales,-34.478449,150.534211,EPSG:4326 +HUMAN_OBSERVATION,OIXR14090500,1,MALE,occurrenceRemarks withheld,2021,3,2,Australia,AU,New South Wales,-28.589077,153.549848,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190P,1,,occurrenceRemarks withheld,2024,8,27,Australia,AU,New South Wales,-31.783392,152.699792,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,31,Australia,AU,New South Wales,-34.418373,150.633744,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,17,Australia,AU,New South Wales,-34.458642,150.656041,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,12,30,Australia,AU,New South Wales,-28.688847,153.608513,EPSG:4326 +HUMAN_OBSERVATION,OPJG1903150B,1,MALE,occurrenceRemarks withheld,2022,1,5,Australia,AU,New South Wales,-31.456006,152.907547,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,21,Australia,AU,New South Wales,-34.471192,150.529787,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2023,5,21,Australia,AU,New South Wales,-29.042091,152.989328,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.436755,150.617459,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,17,Australia,AU,New South Wales,-34.395077,150.629071,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,9,Australia,AU,New South Wales,-34.465699,150.521611,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,24,Australia,AU,New South Wales,-34.437749,150.605135,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,OLHP2311132Q,1,FEMALE,occurrenceRemarks withheld,2023,10,30,Australia,AU,New South Wales,-34.097116,150.986412,EPSG:4326 +HUMAN_OBSERVATION,OJJS19100204,1,,occurrenceRemarks withheld,2020,12,8,Australia,AU,New South Wales,-28.930398,153.306488,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2020,11,13,Australia,AU,New South Wales,-30.298612,153.109392,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,9,13,Australia,AU,New South Wales,-29.489573,153.103865,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2020,9,19,Australia,AU,New South Wales,-28.821683,153.281346,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2022,5,22,Australia,AU,New South Wales,-31.442736,152.919813,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-29.016276,153.393231,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003969,1,,occurrenceRemarks withheld,2023,8,12,Australia,AU,New South Wales,-28.556666,153.051789,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.435047,150.615875,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.464798,150.522509,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,9,Australia,AU,New South Wales,-34.475677,150.533095,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,13,Australia,AU,New South Wales,-34.427655,150.605771,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,23,Australia,AU,New South Wales,-34.470133,150.512696,EPSG:4326 +HUMAN_OBSERVATION,OSOH05012700,1,,occurrenceRemarks withheld,2021,9,30,Australia,AU,New South Wales,-28.943423,153.442632,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.491412,150.639118,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,20,Australia,AU,New South Wales,-34.394442,150.630296,EPSG:4326 +HUMAN_OBSERVATION,OJJS19071602,1,,occurrenceRemarks withheld,2020,1,9,Australia,AU,New South Wales,-29.667471,152.867804,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,,occurrenceRemarks withheld,2023,9,22,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,OAZK23100500,1,,occurrenceRemarks withheld,2022,9,29,Australia,AU,New South Wales,-30.238283,152.90337,EPSG:4326 +HUMAN_OBSERVATION,OEOS21083000;OJGR22080500;OXDB22080901,1,MALE,occurrenceRemarks withheld,2023,11,2,Australia,AU,New South Wales,-33.713653,150.785479,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2021,2,28,Australia,AU,New South Wales,-28.677947,153.525427,EPSG:4326 +HUMAN_OBSERVATION,OPJG16061001,1,,occurrenceRemarks withheld,2020,7,24,Australia,AU,New South Wales,-31.127228,152.798511,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,9,4,Australia,AU,New South Wales,-34.447549,150.514421,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,19,Australia,AU,New South Wales,-34.438679,150.518874,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,,occurrenceRemarks withheld,2021,1,23,Australia,AU,New South Wales,-29.692524,152.851464,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,,occurrenceRemarks withheld,2020,9,22,Australia,AU,New South Wales,-31.443731,152.900272,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,18,Australia,AU,New South Wales,-34.430562,150.617014,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,11,Australia,AU,New South Wales,-34.446968,150.515973,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,2,1,Australia,AU,New South Wales,-28.858963,153.259836,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,MALE,occurrenceRemarks withheld,2022,4,8,Australia,AU,New South Wales,-28.821456,153.292106,EPSG:4326 +HUMAN_OBSERVATION,OJJS18011014,1,,occurrenceRemarks withheld,2021,1,26,Australia,AU,New South Wales,-32.730618,152.039945,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.388486,150.630932,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,10,7,Australia,AU,New South Wales,-28.681525,153.471326,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,21,Australia,AU,New South Wales,-34.485592,150.636996,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2023,7,7,Australia,AU,New South Wales,-31.498791,152.804727,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,6,Australia,AU,New South Wales,-34.446858,150.520329,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004051,1,,occurrenceRemarks withheld,2023,8,20,Australia,AU,New South Wales,-28.949866,153.313773,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,3,Australia,AU,New South Wales,-34.436556,150.607747,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,27,Australia,AU,New South Wales,-34.454589,150.606928,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,30,Australia,AU,New South Wales,-34.411554,150.596114,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,MALE,occurrenceRemarks withheld,2022,12,6,Australia,AU,New South Wales,-31.474879,152.897333,EPSG:4326 +HUMAN_OBSERVATION,OLHP2310300Q,1,,occurrenceRemarks withheld,2023,7,27,Australia,AU,New South Wales,-32.709669,152.064528,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,1,Australia,AU,New South Wales,-34.399212,150.639635,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2023,2,14,Australia,AU,New South Wales,-28.886026,153.319168,EPSG:4326 +HUMAN_OBSERVATION,OIXR13100100;OIXR14021000,1,,occurrenceRemarks withheld,2020,11,,Australia,AU,New South Wales,-34.548357,150.644174,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.4352,150.618177,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080901,1,FEMALE,occurrenceRemarks withheld,2023,7,11,Australia,AU,New South Wales,-31.631701,152.786516,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,2,Australia,AU,New South Wales,-34.437173,150.613921,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.388889,150.630757,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.420772,150.609242,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,6,Australia,AU,New South Wales,-34.427124,150.603947,EPSG:4326 +HUMAN_OBSERVATION,ODMP04032301,1,,occurrenceRemarks withheld,2023,4,19,Australia,AU,New South Wales,-36.567944,149.950099,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-36.648169,149.934793,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,7,26,Australia,AU,New South Wales,-34.420639,150.630656,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,FEMALE,occurrenceRemarks withheld,2020,5,25,Australia,AU,New South Wales,-28.623614,153.007423,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.384438,150.622542,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,26,Australia,AU,New South Wales,-34.469533,150.526614,EPSG:4326 +HUMAN_OBSERVATION,OLHP24012907,1,,occurrenceRemarks withheld,2023,12,20,Australia,AU,New South Wales,-31.439965,152.903968,EPSG:4326 +HUMAN_OBSERVATION,ODFK2410250E,2,FEMALE,occurrenceRemarks withheld,2024,9,30,Australia,AU,New South Wales,-34.072062,150.836753,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,14,Australia,AU,New South Wales,-34.440234,150.618361,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,13,Australia,AU,New South Wales,-36.581514,149.880784,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,2,14,Australia,AU,New South Wales,-29.485101,153.104244,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,31,Australia,AU,New South Wales,-34.436669,150.607973,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0004151,1,,occurrenceRemarks withheld,2023,8,31,Australia,AU,New South Wales,-28.824581,153.321568,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,4,Australia,AU,New South Wales,-34.420931,150.630354,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.492814,150.640277,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,26,Australia,AU,New South Wales,-34.453359,150.520812,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,29,Australia,AU,New South Wales,-34.459918,150.525516,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0002733,1,FEMALE,occurrenceRemarks withheld,2021,11,7,Australia,AU,New South Wales,-29.666762,152.868576,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.394366,150.630527,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,8,Australia,AU,New South Wales,-34.447299,150.520305,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,30,Australia,AU,New South Wales,-34.421812,150.636258,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,18,Australia,AU,New South Wales,-34.436565,150.607715,EPSG:4326 +HUMAN_OBSERVATION,ODMP2211160N,1,,occurrenceRemarks withheld,2023,1,6,Australia,AU,New South Wales,-29.741249,151.061116,EPSG:4326 +HUMAN_OBSERVATION,ODMP21090402,1,FEMALE,occurrenceRemarks withheld,2021,3,20,Australia,AU,New South Wales,-32.767142,152.043528,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,17,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,5,Australia,AU,New South Wales,-34.456504,150.608517,EPSG:4326 +HUMAN_OBSERVATION,WIRES-HO,1,FEMALE,occurrenceRemarks withheld,2020,10,9,Australia,AU,New South Wales,-34.053416,150.838978,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403150Y,1,MALE,occurrenceRemarks withheld,2022,12,12,Australia,AU,New South Wales,-28.661518,153.452014,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,4,21,Australia,AU,New South Wales,-29.490231,153.110216,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,11,Australia,AU,New South Wales,-34.450533,150.52194,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,14,Australia,AU,New South Wales,-36.581514,149.880784,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,MALE,occurrenceRemarks withheld,2023,1,28,Australia,AU,New South Wales,-28.635764,153.516787,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2022,5,27,Australia,AU,New South Wales,-29.479005,153.104192,EPSG:4326 +HUMAN_OBSERVATION,OPUR19091901,1,,occurrenceRemarks withheld,2020,8,16,Australia,AU,New South Wales,-29.049587,152.934134,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2023,10,5,Australia,AU,New South Wales,-29.490535,153.108113,EPSG:4326 +HUMAN_OBSERVATION,OLHP2401290T,1,,occurrenceRemarks withheld,2024,2,6,Australia,AU,New South Wales,-31.944145,152.395857,EPSG:4326 +HUMAN_OBSERVATION,OJKB22080303,1,MALE,occurrenceRemarks withheld,2022,9,5,Australia,AU,New South Wales,-34.018423,150.890303,EPSG:4326 +HUMAN_OBSERVATION,ODFK2403180G,1,,occurrenceRemarks withheld,2022,10,27,Australia,AU,New South Wales,-28.825226,153.325913,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,15,Australia,AU,New South Wales,-34.443537,150.515737,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,5,23,Australia,AU,New South Wales,-29.483509,153.094981,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,24,Australia,AU,New South Wales,-34.465772,150.521653,EPSG:4326 +HUMAN_OBSERVATION,ODFK2409190R,1,,occurrenceRemarks withheld,2024,8,19,Australia,AU,New South Wales,-31.951997,152.401176,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2020,12,27,Australia,AU,New South Wales,-29.488018,153.091763,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,7,7,Australia,AU,New South Wales,-34.418964,150.604811,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,6,13,Australia,AU,New South Wales,-34.43259,150.611941,EPSG:4326 +HUMAN_OBSERVATION,OCBI21081700,1,,occurrenceRemarks withheld,2023,12,17,Australia,AU,New South Wales,-32.062306,151.929076,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302,1,MALE,occurrenceRemarks withheld,2022,5,26,Australia,AU,New South Wales,-31.436601,152.906301,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,29,Australia,AU,New South Wales,-34.429609,150.614854,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,4,25,Australia,AU,New South Wales,-34.388352,150.630033,EPSG:4326 +HUMAN_OBSERVATION,SHARM,1,,occurrenceRemarks withheld,2021,10,31,Australia,AU,New South Wales,-32.658052,150.037501,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23032800,1,,occurrenceRemarks withheld,2022,8,14,Australia,AU,New South Wales,-34.511389,150.549056,EPSG:4326 +HUMAN_OBSERVATION,OIXR16063000,1,FEMALE,occurrenceRemarks withheld,2020,7,22,Australia,AU,New South Wales,-28.810669,153.299729,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,11,Australia,AU,New South Wales,-34.489606,150.633344,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,16,Australia,AU,New South Wales,-34.434287,150.617137,EPSG:4326 +HUMAN_OBSERVATION,OJKB2203140T,1,,occurrenceRemarks withheld,2022,9,17,Australia,AU,South Australia,-34.956972,138.697401,EPSG:4326 +HUMAN_OBSERVATION,ODMP22020302;OLHP23101000,1,,occurrenceRemarks withheld,2022,10,11,Australia,AU,New South Wales,-31.434891,152.925096,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,18,Australia,AU,New South Wales,-36.595007,149.931009,EPSG:4326 +HUMAN_OBSERVATION,OJJS1907170T,1,,occurrenceRemarks withheld,2024,2,16,Australia,AU,New South Wales,-29.490147,153.110533,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,4,5,Australia,AU,New South Wales,-34.450714,150.520618,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,20,Australia,AU,New South Wales,-34.383991,150.623185,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,28,Australia,AU,New South Wales,-34.436964,150.603275,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,6,18,Australia,AU,New South Wales,-34.436278,150.618876,EPSG:4326 +HUMAN_OBSERVATION,ODMP2303210Z,1,,occurrenceRemarks withheld,2022,12,9,Australia,AU,New South Wales,-32.709669,152.064528,EPSG:4326 +HUMAN_OBSERVATION,ODFK2308230A,1,,occurrenceRemarks withheld,2022,8,4,Australia,AU,New South Wales,-34.216551,150.796891,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2022,1,27,Australia,AU,New South Wales,-34.440641,150.618861,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,1,6,Australia,AU,New South Wales,-34.085987,150.833136,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003898,1,,occurrenceRemarks withheld,2023,7,13,Australia,AU,New South Wales,-28.819753,153.31535,EPSG:4326 +HUMAN_OBSERVATION,OPJGI0003883,1,,occurrenceRemarks withheld,2023,5,3,Australia,AU,New South Wales,-28.984392,153.33967,EPSG:4326 +HUMAN_OBSERVATION,ODMP02080201,1,,occurrenceRemarks withheld,2021,1,20,Australia,AU,New South Wales,-34.085987,150.833136,EPSG:4326 +HUMAN_OBSERVATION,UNKN,1,MALE,occurrenceRemarks withheld,2020,10,28,Australia,AU,New South Wales,-36.555504,149.976368,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,3,5,Australia,AU,New South Wales,-34.420499,150.611882,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,23,Australia,AU,New South Wales,-34.432204,150.605543,EPSG:4326 +HUMAN_OBSERVATION,OJKB21090802,1,,occurrenceRemarks withheld,2023,12,18,Australia,AU,New South Wales,-31.918745,152.374672,EPSG:4326 +HUMAN_OBSERVATION,OJJS20120100,1,,occurrenceRemarks withheld,2020,8,26,Australia,AU,New South Wales,-28.679301,153.278134,EPSG:4326 +HUMAN_OBSERVATION,OMFZ23060500,1,,occurrenceRemarks withheld,2021,7,12,Australia,AU,New South Wales,-28.837037,153.316219,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,5,12,Australia,AU,New South Wales,-34.427532,150.605437,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,FEMALE,occurrenceRemarks withheld,2021,5,16,Australia,AU,New South Wales,-34.389221,150.628812,EPSG:4326 +HUMAN_OBSERVATION,TURJ-AGIS,1,,occurrenceRemarks withheld,2020,10,,Australia,AU,New South Wales,-31.477808,152.892385,EPSG:4326 +HUMAN_OBSERVATION,ODMP2302060B,1,,occurrenceRemarks withheld,2024,2,11,Australia,AU,New South Wales,-34.149997,150.825434,EPSG:4326 +HUMAN_OBSERVATION,OLAW12081500,1,MALE,occurrenceRemarks withheld,2021,3,6,Australia,AU,New South Wales,-34.459084,150.515048,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122106,1,,occurrenceRemarks withheld,2023,5,14,Australia,AU,New South Wales,-28.831073,153.279661,EPSG:4326 +HUMAN_OBSERVATION,ODMP22122106,1,,occurrenceRemarks withheld,2023,6,7,Australia,AU,New South Wales,-28.831073,153.279661,EPSG:4326 diff --git a/Jingmiao Fei_Koala observation/index.html b/Jingmiao Fei_Koala observation/index.html new file mode 100644 index 0000000..a131eb7 --- /dev/null +++ b/Jingmiao Fei_Koala observation/index.html @@ -0,0 +1,117 @@ + + + + + + Koala Observation + + + + + + + + + + +

      +

      Koala Observation

      +
      + + +
      +
      + + +
      + +
      +
      +

      Data Analysis

      + + +
      Year: 2020 ~ 2024
      +
      + +
      + +
      Number of Koalas by Province
      +
      + + +
      +

      Report Your Observation

      +
      +
      +
      + + +
      +
      + + +
      +
      + + + + + + + + + + + + + + +
      +
      +
      + + +
      +
      + +
      +
      +
      + + +
      +
      +
      + Queensland +
      +
      +
      + New South Wales +
      +
      +
      + Victoria +
      +
      +
      + South Australia +
      +
      +
      + Australian Capital Territory +
      + +
      +
      + Others +
      +
      + + + + + + diff --git a/Jingmiao Fei_Koala observation/js/chart.js b/Jingmiao Fei_Koala observation/js/chart.js new file mode 100644 index 0000000..499a62e --- /dev/null +++ b/Jingmiao Fei_Koala observation/js/chart.js @@ -0,0 +1,47 @@ +function initializeChart() { + const ctx = document.getElementById('bar-chart').getContext('2d'); + return new Chart(ctx, { + type: 'bar', + data: { + labels: [], + datasets: [{ + label: 'Koala Number by State', + data: [], + backgroundColor: 'rgba(135, 206, 250, 0.5)', + borderColor: 'rgba(135, 206, 250, 1)', + borderWidth: 1 + }] + }, + options: { + indexAxis: 'y', + maintainAspectRatio: false, + responsive: true, + plugins: { + legend: { display: false } + }, + scales: { + x: { beginAtZero: true, ticks: { stepSize: 100 } }, + y: { beginAtZero: true } + } + } + }); + } + + function updateChart(chart, data) { + chart.data.labels = data.map(item => item.state); + chart.data.datasets[0].data = data.map(item => item.individual); + chart.update(); + } + + function updateBarChart(chart) { + // 此函数可以重新加载条形图的数据 + fetch('data/koalaRecords.geojson') + .then(response => response.json()) + .then(data => { + const chartData = processChartData(data, currentYear); + updateChart(chart, chartData); + }); + } + + + export{initializeChart, updateChart, updateBarChart}; \ No newline at end of file diff --git a/Jingmiao Fei_Koala observation/js/filter.js b/Jingmiao Fei_Koala observation/js/filter.js new file mode 100644 index 0000000..5f5c204 --- /dev/null +++ b/Jingmiao Fei_Koala observation/js/filter.js @@ -0,0 +1,39 @@ +function filterPointsByYear(map, year) { + const filter = year === 'all' + ? ['has', 'year'] + : ['==', ['get', 'year'], parseInt(year)]; + + // 设置点图层过滤 + map.setFilter('koala-points', filter); + + // 设置热力图层过滤 + map.setFilter('koala-heatmap', filter); + } + + +function processChartData(data, year, firestoreData) { +const filteredData = [ + ...data.features.filter(feature => year === 'all' || feature.properties.year === parseInt(year)), + ...firestoreData.filter(doc => year === 'all' || doc.year === parseInt(year)) // 合并 Firestore 数据 +]; + +const stateCounts = {}; + +filteredData.forEach(item => { + const state = item.properties ? item.properties.stateProvi : item.province; // 从 geojson 或 firestore 中提取 + const individual = item.properties ? item.properties.individual : item.numberOfKoalas; // 同上 + + stateCounts[state] = (stateCounts[state] || 0) + individual; +}); + +const result = Object.keys(stateCounts) + .map(state => ({ state, individual: stateCounts[state] })) + .filter(item => item.individual > 0) + .sort((a, b) => b.individual - a.individual); + +return result; +} + + + + export{filterPointsByYear, processChartData} \ No newline at end of file diff --git a/Jingmiao Fei_Koala observation/js/firebase-config.js b/Jingmiao Fei_Koala observation/js/firebase-config.js new file mode 100644 index 0000000..9ab6e70 --- /dev/null +++ b/Jingmiao Fei_Koala observation/js/firebase-config.js @@ -0,0 +1,18 @@ +import { initializeApp } from 'https://www.gstatic.com/firebasejs/11.0.2/firebase-app.js'; +import { getFirestore } from 'https://www.gstatic.com/firebasejs/11.0.2/firebase-firestore.js'; + +const firebaseConfig = { + apiKey: "AIzaSyAwg_66u7gSWgJh6dDAIVssCpD8sPBSwb0", + authDomain: "koala-observation.firebaseapp.com", + projectId: "koala-observation", + storageBucket: "koala-observation.firebaseapp.com", + messagingSenderId: "655967433755", + appId: "1:655967433755:web:ea02c3eb49fc89be63f4be", + measurementId: "G-ERYX3NM73V" +}; + +// Initialize Firebase +const app = initializeApp(firebaseConfig); +const db = getFirestore(app); + +export { app, db }; diff --git a/Jingmiao Fei_Koala observation/js/main.js b/Jingmiao Fei_Koala observation/js/main.js new file mode 100644 index 0000000..dd10dd0 --- /dev/null +++ b/Jingmiao Fei_Koala observation/js/main.js @@ -0,0 +1,94 @@ +import { initializeMap, addPointToMap, removeFirestoreMarkers } from './map.js'; +import { initializeChart, updateChart } from './chart.js'; +import { filterPointsByYear, processChartData } from './filter.js'; +import { setupReportForm } from './report.js'; +import { collection, getDocs } from "https://www.gstatic.com/firebasejs/11.0.2/firebase-firestore.js"; +import { db } from './firebase-config.js'; + +// Initialize map and barchart +const map = initializeMap(); +const chart = initializeChart(); + +// Slide bar logic +const yearSlider = document.getElementById('year-slider'); +const yearLabel = document.getElementById('year-label'); +const years = ['2020', '2021', '2022', '2023', '2024', 'all']; + +// Load data from Firestore and process it +function loadDataFromFirestore(map, chart, year) { + const koalaObservationsRef = collection(db, "koalaObservations"); + + getDocs(koalaObservationsRef) + .then((querySnapshot) => { + const firestoreData = []; + removeFirestoreMarkers(); + + querySnapshot.forEach((doc) => { + const data = doc.data(); + + // 仅在年份匹配时添加标记 + if (year === 'all' || data.year === parseInt(year) ) { + addPointToMap(map, data.location, data.province, data.year); + } + + + firestoreData.push({ + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [data.location.lon, data.location.lat], + }, + properties: { + year: data.year, + stateProvi: data.province, + individual: data.numberOfKoalas, + }, + }); + }); + + // 加载静态 GeoJSON 数据并合并 Firestore 数据 + fetch('data/koalaRecords.geojson') + .then(response => response.json()) + .then(staticData => { + const mergedData = { + type: 'FeatureCollection', + features: [ + ...staticData.features, + ...firestoreData, // 合并 Firestore 数据 + ], + }; + + // 更新热力图数据 + const koalaSource = map.getSource('koala-records'); + if (koalaSource) { + koalaSource.setData(mergedData); // 更新地图数据源 + } + + // 更新图表 + const chartData = processChartData(mergedData, year, []); // Firestore 数据已合并 + updateChart(chart, chartData); + }); + }) + .catch((error) => { + console.error("Error loading Firestore data: ", error); + }); + } + + +// 在滑动条更新时调用 +yearSlider.addEventListener('input', () => { + const yearIndex = parseInt(yearSlider.value); + const currentYear = years[yearIndex]; + yearLabel.innerText = `Year: ${currentYear === 'all' ? '2020 ~ 2024' : currentYear}`; + + filterPointsByYear(map, currentYear); + loadDataFromFirestore(map, chart, currentYear); + + +}); + +// Set up user report form +setupReportForm(map, chart, loadDataFromFirestore); + +// Load initial data +loadDataFromFirestore(map, chart, 'all', []); // Load all data by default (no filter) diff --git a/Jingmiao Fei_Koala observation/js/map.js b/Jingmiao Fei_Koala observation/js/map.js new file mode 100644 index 0000000..989dbdc --- /dev/null +++ b/Jingmiao Fei_Koala observation/js/map.js @@ -0,0 +1,169 @@ + +const mapboxglAccessToken = 'pk.eyJ1IjoiamFzbWluZTQwNCIsImEiOiJjbTEybGFoMXExMm93MnFwdjltNTVuYTY5In0.jcDywHe2QQm4DhVU0hPV9A'; + +let firestoreMarkers = []; // 全局数组,存储 Firestore 标记 +let selectedLayer = 'points'; // 定义为全局变量 + +function removeFirestoreMarkers() { + firestoreMarkers.forEach(marker => marker.remove()); // 移除所有动态标记 + firestoreMarkers = []; // 清空数组 +} + +function initializeMap() { + mapboxgl.accessToken = mapboxglAccessToken; + + const map = new mapboxgl.Map({ + container: 'map', + style: 'mapbox://styles/mapbox/streets-v12', + center: [146.5, -32.5], + zoom: 5, + attributionControl: false, // 禁用默认 attribution + }); + + map.addControl(new mapboxgl.NavigationControl()); + + map.addControl( + new mapboxgl.AttributionControl({ + customAttribution: 'Data Source: Atlas of Living Australia | Koala icons created by Freepik - Flaticon
      Koala icons created by Freepik - Flaticon' + + }) + ); + + // 在地图加载时添加数据源和图层 + map.on('load', () => { + map.addSource('koala-records', { + type: 'geojson', + data: 'data/koalaRecords.geojson' + }); + + // 添加点图层 + map.addLayer({ + id: 'koala-points', + type: 'circle', + source: 'koala-records', + paint: { + 'circle-radius': 5, + 'circle-opacity': 0.5, + 'circle-color': [ + 'match', + ['get', 'stateProvi'], + 'Queensland', '#F4A6A1', + 'New South Wales', '#64B5F6', + 'Victoria', '#81C784', + 'South Australia', '#7986CB', + 'Australian Capital Territory', '#FFEB3B', + '#AAAAAA', + ] + } + }); + + // 添加热力图层 + map.addLayer({ + id: 'koala-heatmap', + type: 'heatmap', + source: 'koala-records', + maxzoom: 15, + paint: { + 'heatmap-weight': [ + 'interpolate', + ['linear'], + ['get', 'individual'], // 使用点的考拉数量 + 0, 0, + 100, 1 + ], + 'heatmap-intensity': [ + 'interpolate', + ['linear'], + ['zoom'], + 0, 1, + 15, 3 + ], + 'heatmap-color': [ + 'interpolate', + ['linear'], + ['heatmap-density'], + 0, 'rgba(0, 0, 255, 0)', + 0.1, 'royalblue', + 0.3, 'cyan', + 0.5, 'lime', + 0.7, 'yellow', + 1, 'red' + ], + 'heatmap-radius': [ + 'interpolate', + ['linear'], + ['zoom'], + 0, 2, + 15, 20 + ], + 'heatmap-opacity': 0.6 + } + }); + + // 默认显示点图层,隐藏热力图层 + map.setLayoutProperty('koala-heatmap', 'visibility', 'none'); + }); + + // 下拉菜单切换事件监听器 + const layerSelect = document.getElementById('layer-toggle-select'); + layerSelect.addEventListener('change', () => { + selectedLayer = layerSelect.value; + // console.log('In map.js:', selectedLayer); // 这里可以访问 selectedLayer + + if (selectedLayer === 'points') { + map.setLayoutProperty('koala-points', 'visibility', 'visible'); + map.setLayoutProperty('koala-heatmap', 'visibility', 'none'); + } else if (selectedLayer === 'heatmap') { + map.setLayoutProperty('koala-points', 'visibility', 'none'); + map.setLayoutProperty('koala-heatmap', 'visibility', 'visible'); + removeFirestoreMarkers(); + } + + + }); + + return map; + } + + +// add firestore points + function addPointToMap(map, location, province, year, selectedLayer) { + const { lat, lon } = location; + + // 创建一个新的 div 元素作为 Marker 的内容 + const markerElement = document.createElement('div'); + markerElement.style.width = '10px'; + markerElement.style.height = '10px'; + markerElement.style.backgroundColor = getMarkerColor(province); + markerElement.style.borderRadius = '50%'; + markerElement.style.opacity = '0.5'; + markerElement.style.cursor = 'pointer'; + + // 创建标记并添加到地图 + + const marker = new mapboxgl.Marker(markerElement) + .setLngLat([lon, lat]); + if (selectedLayer === "points"){ + marker.addTo(map); + } + + + // 将年份信息绑定到标记对象上 + marker.year = year; + + firestoreMarkers.push(marker); // 存储到全局数组 + } + + function getMarkerColor(province) { + const colors = { + 'Queensland': '#F4A6A1', + 'New South Wales': '#64B5F6', + 'Victoria': '#81C784', + 'South Australia': '#7986CB', + 'Australian Capital Territory': '#FFEB3B', + 'Others': '#AAAAAA' + }; + return colors[province] || '#AAAAAA'; + } + +export{mapboxglAccessToken, initializeMap, addPointToMap, removeFirestoreMarkers}; \ No newline at end of file diff --git a/Jingmiao Fei_Koala observation/js/report.js b/Jingmiao Fei_Koala observation/js/report.js new file mode 100644 index 0000000..009150b --- /dev/null +++ b/Jingmiao Fei_Koala observation/js/report.js @@ -0,0 +1,150 @@ +import { collection, addDoc, serverTimestamp } from "https://www.gstatic.com/firebasejs/11.0.2/firebase-firestore.js"; +import { db } from "./firebase-config.js"; +import {mapboxglAccessToken} from "./map.js" + +// 定义澳大利亚省份的合法名称 +const AUSTRALIAN_PROVINCES = ["New South Wales", "Queensland", "South Australia", "Tasmania", "Victoria", "Western Australia", "Northern Territory", "Australian Capital Territory"]; + +function setupReportForm(map, chart, loadDataFromFirestore) { + const form = document.getElementById("koala-form"); + const getLocationButton = document.getElementById("get-location"); + const clickMapButton = document.getElementById("click-on-map"); + const latitudeInput = document.getElementById("latitude"); + const longitudeInput = document.getElementById("longitude"); + + let currentMarker = null; // 用于存储当前标记 + + // 反向地理编码函数:根据经纬度获取省份 + async function getProvinceFromCoordinates(lat, lon) { + const url = `https://api.mapbox.com/geocoding/v5/mapbox.places/${lon},${lat}.json?access_token=${mapboxglAccessToken}`; + try { + const response = await fetch(url); + const data = await response.json(); + + // 检查返回的地理信息 + const context = data.features[0]?.context || []; + let province = "Others"; // 默认值为 "Others" + let country = null; + + for (const entry of context) { + if (entry.id.startsWith("region")) { + // 如果找到省份,将其临时存储为 `province` + province = entry.text; + } + if (entry.id.startsWith("country")) { + // 获取国家名称 + country = entry.text; + } + } + + // 确保点击位置在澳大利亚境内,并且省份在指定列表中 + if (country === "Australia" && AUSTRALIAN_PROVINCES.includes(province)) { + return province; + } else { + return "Others"; // 如果不在澳大利亚境内,或省份无效,返回 "Others" + } + } catch (error) { + console.error("Error in reverse geocoding:", error); + return "Unknown"; // 如果出错,返回 Unknown + } + } + + // 点击地图功能 + clickMapButton.addEventListener("click", () => { + alert("Click on the map to select a location."); + const clickHandler = (event) => { + const { lng, lat } = event.lngLat; // 获取地图点击的经纬度 + + // 填充经纬度输入框 + latitudeInput.value = lat.toFixed(3); // 保留3位小数 + longitudeInput.value = lng.toFixed(3); // 保留3位小数 + + // 移除之前的标记 + if (currentMarker) { + currentMarker.remove(); + } + + // Create a custom marker using an HTML element + const markerElement = document.createElement('div'); + markerElement.className = 'custom-marker'; + + // 在地图上添加新的标记 + currentMarker = new mapboxgl.Marker({ element: markerElement }) // Use the custom element + .setLngLat([lng, lat]) + .addTo(map); + + map.off("click", clickHandler); // 移除地图的点击事件监听器 + }; + + map.on("click", clickHandler); // 启用地图点击事件监听器 + }); + + // 为 "Get Current Location" 按钮添加事件监听器 + getLocationButton.addEventListener("click", () => { + if (navigator.geolocation) { + navigator.geolocation.getCurrentPosition( + (position) => { + const { latitude, longitude } = position.coords; + latitudeInput.value = latitude.toFixed(3); // 保留3位小数 + longitudeInput.value = longitude.toFixed(3); + }, + (error) => { + console.error("Error getting location:", error); + alert("Unable to retrieve your location. Please enter it manually."); + } + ); + } else { + alert("Geolocation is not supported by your browser."); + } + }); + + // 表单提交处理 + form.addEventListener("submit", async function (event) { + event.preventDefault(); + + const latitude = parseFloat(latitudeInput.value); // 获取纬度 + const longitude = parseFloat(longitudeInput.value); // 获取经度 + const date = document.getElementById("date").value; + const number = parseInt(document.getElementById("number").value); + const description = document.getElementById("description").value; + const year = parseInt(date.split("-")[0]); + + // 确保纬度和经度有效 + if (isNaN(latitude) || isNaN(longitude) || latitude > 90 || latitude < -90 || longitude > 180 || longitude < -180) { + alert("Please enter valid latitude and longitude values."); + return; + } + + // 根据经纬度获取省份 + const province = await getProvinceFromCoordinates(latitude, longitude); + + const koalaObservationsRef = collection(db, "koalaObservations"); + + // 添加新的观察记录 + addDoc(koalaObservationsRef, { + location: { lat: latitude, lon: longitude }, + date, + year, + province, // 自动获取的省份 + numberOfKoalas: number, + description, + timestamp: serverTimestamp(), + }) + .then(() => { + alert("Observation submitted!"); + form.reset(); + loadDataFromFirestore(map, chart, "all", []); // 提交后刷新数据 + + // 移除地图上的标记 + if (currentMarker) { + currentMarker.remove(); + currentMarker = null; + } + }) + .catch((error) => { + console.error("Error adding document: ", error); + }); + }); +} + +export { setupReportForm }; diff --git a/Jingmiao Fei_Koala observation/js/ui-controller.js b/Jingmiao Fei_Koala observation/js/ui-controller.js new file mode 100644 index 0000000..857ff56 --- /dev/null +++ b/Jingmiao Fei_Koala observation/js/ui-controller.js @@ -0,0 +1,41 @@ +// 获取必要的 DOM 元素 +const dataAnalysisButton = document.getElementById('data-analysis-btn'); +const reportObservationButton = document.getElementById('report-observation-btn'); +const sliderContainer = document.getElementById('slider-container'); +const chartContainer = document.getElementById('chart-container'); +const reportForm = document.getElementById('report-form'); + +// 初始状态设置 +function initializeUI() { + sliderContainer.style.display = 'block'; // 默认显示滑块 + chartContainer.style.display = 'block'; // 默认显示条形图 + reportForm.style.display = 'none'; // 默认隐藏表单 + + // 设置“Data Analysis”按钮为激活状态 + dataAnalysisButton.classList.add('active'); +} + +// 点击“Data Analysis”按钮时的逻辑 +dataAnalysisButton.addEventListener('click', () => { + sliderContainer.style.display = 'block'; // 显示滑块 + chartContainer.style.display = 'block'; // 显示条形图 + reportForm.style.display = 'none'; // 隐藏表单 + + // 可选:添加按钮激活状态样式 + dataAnalysisButton.classList.add('active'); + reportObservationButton.classList.remove('active'); +}); + +// 点击“Report Observation”按钮时的逻辑 +reportObservationButton.addEventListener('click', () => { + sliderContainer.style.display = 'none'; // 隐藏滑块 + chartContainer.style.display = 'none'; // 隐藏条形图 + reportForm.style.display = 'block'; // 显示表单 + + // 可选:添加按钮激活状态样式 + reportObservationButton.classList.add('active'); + dataAnalysisButton.classList.remove('active'); +}); + +// 初始化 +initializeUI(); From ef4069d777acdd062d84eecb1d128346e9e0193a Mon Sep 17 00:00:00 2001 From: Jasmine-404 Date: Sun, 23 Mar 2025 00:42:36 -0400 Subject: [PATCH 2/2] update firestore --- Jingmiao Fei_Koala observation/js/firebase-config.js | 4 ++-- Jingmiao Fei_Koala observation/js/main.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Jingmiao Fei_Koala observation/js/firebase-config.js b/Jingmiao Fei_Koala observation/js/firebase-config.js index 9ab6e70..f434671 100644 --- a/Jingmiao Fei_Koala observation/js/firebase-config.js +++ b/Jingmiao Fei_Koala observation/js/firebase-config.js @@ -1,5 +1,5 @@ -import { initializeApp } from 'https://www.gstatic.com/firebasejs/11.0.2/firebase-app.js'; -import { getFirestore } from 'https://www.gstatic.com/firebasejs/11.0.2/firebase-firestore.js'; +import { initializeApp } from 'https://www.gstatic.com/firebasejs/11.5.0/firebase-app.js'; +import { getFirestore } from 'https://www.gstatic.com/firebasejs/11.5.0/firebase-firestore.js'; const firebaseConfig = { apiKey: "AIzaSyAwg_66u7gSWgJh6dDAIVssCpD8sPBSwb0", diff --git a/Jingmiao Fei_Koala observation/js/main.js b/Jingmiao Fei_Koala observation/js/main.js index dd10dd0..46a0ecf 100644 --- a/Jingmiao Fei_Koala observation/js/main.js +++ b/Jingmiao Fei_Koala observation/js/main.js @@ -2,7 +2,7 @@ import { initializeMap, addPointToMap, removeFirestoreMarkers } from './map.js'; import { initializeChart, updateChart } from './chart.js'; import { filterPointsByYear, processChartData } from './filter.js'; import { setupReportForm } from './report.js'; -import { collection, getDocs } from "https://www.gstatic.com/firebasejs/11.0.2/firebase-firestore.js"; +import { collection, getDocs } from "https://www.gstatic.com/firebasejs/11.5.0/firebase-firestore.js"; import { db } from './firebase-config.js'; // Initialize map and barchart

      O52n|n{~$pm`i-_*heg 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 b)pPXpxgjwD^Tl-b3j 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%0D+4z$ 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]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